From 7016400278d9857eac8e0a2f6310d400ecfa2d3f Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Fri, 16 Oct 2009 00:23:40 +0000 Subject: [PATCH 001/412] Zoom to mouse pointer with mouse wheel works again. The point where it zooms to can now be specified as operator properties and will be used if zoom to pointer is on. (when not specified, it will use the x and y of the event) --- .../editors/space_view3d/view3d_edit.c | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index cee5c82ef38..921ee2deaa4 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -926,6 +926,8 @@ static int viewzoom_exec(bContext *C, wmOperator *op) View3D *v3d = CTX_wm_view3d(C); RegionView3D *rv3d= CTX_wm_region_view3d(C); int delta= RNA_int_get(op->ptr, "delta"); + int mx = RNA_int_get(op->ptr, "mx"); + int my = RNA_int_get(op->ptr, "my"); if(delta < 0) { /* this min and max is also in viewmove() */ @@ -933,14 +935,18 @@ static int viewzoom_exec(bContext *C, wmOperator *op) rv3d->camzoom-= 10; if(rv3d->camzoom<-30) rv3d->camzoom= -30; } - else if(rv3d->dist<10.0*v3d->far) rv3d->dist*=1.2f; + else if(rv3d->dist<10.0*v3d->far) { + view_zoom_mouseloc(CTX_wm_region(C), 1.2f, mx, my); + } } else { if(rv3d->persp==V3D_CAMOB) { rv3d->camzoom+= 10; if(rv3d->camzoom>300) rv3d->camzoom= 300; } - else if(rv3d->dist> 0.001*v3d->grid) rv3d->dist*=.83333f; + else if(rv3d->dist> 0.001*v3d->grid) { + view_zoom_mouseloc(CTX_wm_region(C), .83333f, mx, my); + } } if(rv3d->viewlock & RV3D_BOXVIEW) @@ -955,6 +961,13 @@ static int viewzoom_exec(bContext *C, wmOperator *op) static int viewzoom_invoke(bContext *C, wmOperator *op, wmEvent *event) { int delta= RNA_int_get(op->ptr, "delta"); + + /* if one or the other zoom position aren't set, set from event */ + if (!RNA_property_is_set(op->ptr, "mx") || !RNA_property_is_set(op->ptr, "my")) + { + RNA_int_set(op->ptr, "mx", event->x); + RNA_int_set(op->ptr, "my", event->y); + } if(delta) { viewzoom_exec(C, op); @@ -988,7 +1001,9 @@ void VIEW3D_OT_zoom(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_BLOCKING|OPTYPE_GRAB_POINTER; - RNA_def_int(ot->srna, "delta", 0, INT_MIN, INT_MAX, "Delta", "", INT_MIN, INT_MAX); + RNA_def_int(ot->srna, "delta", 0, 0, INT_MAX, "Delta", "", 0, INT_MAX); + RNA_def_int(ot->srna, "mx", 0, 0, INT_MAX, "Zoom Position X", "", 0, INT_MAX); + RNA_def_int(ot->srna, "my", 0, 0, INT_MAX, "Zoom Position Y", "", 0, INT_MAX); } static int viewhome_exec(bContext *C, wmOperator *op) /* was view3d_home() in 2.4x */ From 004199efd4708ad903e8d53df09163dc282b9cee Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 16 Oct 2009 06:24:39 +0000 Subject: [PATCH 002/412] Graph Editor - Transform Crash Fix The code for transforming a mixture of keyframes with bezier and non-bezier interpolation was crashing. The old code only took all the handles when a keyframe was bezier, and one when it was not; but sometimes this underestimated the situation (the first handle is only really used if the previous keyframe was bezier, as per the standard evaluation rules for these, but it didn't really check for this). Now, it just adds them whenever, since there is the possibility that keyframes may be moved before other unselected ones, in which case the handles may become invalid. Thanks to Lee (from Durian, who found the crash), and Jess Balint (who had submitted a patch with some steps towards fixing this) --- .../editors/transform/transform_conversions.c | 82 +++++++++---------- 1 file changed, 39 insertions(+), 43 deletions(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 496a9665371..abcf1748149 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -3342,7 +3342,7 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) bAnimListElem *ale; int filter; - BezTriple *bezt, *prevbezt; + BezTriple *bezt; int count=0, i; float cfra; char side; @@ -3382,29 +3382,28 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) else cfra = (float)CFRA; + /* F-Curve may not have any keyframes */ + if (fcu->bezt == NULL) + continue; + /* only include BezTriples whose 'keyframe' occurs on the same side of the current frame as mouse */ - if (fcu->bezt) { - for (i=0, bezt=fcu->bezt; i < fcu->totvert; i++, bezt++) { - if (FrameOnMouseSide(side, bezt->vec[1][0], cfra)) { - if (v2d->around == V3D_LOCAL) { - /* for local-pivot we only need to count the number of selected handles only, so that centerpoitns don't - * don't get moved wrong - */ - if (bezt->ipo == BEZT_IPO_BEZ) { - if (bezt->f1 & SELECT) count++; - if (bezt->f3 & SELECT) count++; - } - else if (bezt->f2 & SELECT) count++; - } - else { - /* for 'normal' pivots */ - if (bezt->ipo == BEZT_IPO_BEZ) { - if (bezt->f1 & SELECT) count++; - if (bezt->f2 & SELECT) count++; - if (bezt->f3 & SELECT) count++; - } - else if (bezt->f2 & SELECT) count++; + for (i=0, bezt=fcu->bezt; i < fcu->totvert; i++, bezt++) { + if (FrameOnMouseSide(side, bezt->vec[1][0], cfra)) { + if (v2d->around == V3D_LOCAL) { + /* for local-pivot we only need to count the number of selected handles only, so that centerpoints don't + * don't get moved wrong + */ + if (bezt->ipo == BEZT_IPO_BEZ) { + if (bezt->f1 & SELECT) count++; + if (bezt->f3 & SELECT) count++; } + else if (bezt->f2 & SELECT) count++; // TODO: could this cause problems? + } + else { + /* for 'normal' pivots - just include anything that is selected */ + if (bezt->f1 & SELECT) count++; + if (bezt->f2 & SELECT) count++; + if (bezt->f3 & SELECT) count++; } } } @@ -3440,38 +3439,35 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) cfra = BKE_nla_tweakedit_remap(adt, (float)CFRA, NLATIME_CONVERT_UNMAP); else cfra = (float)CFRA; + + /* F-Curve may not have any keyframes */ + if (fcu->bezt == NULL) + continue; /* only include BezTriples whose 'keyframe' occurs on the same side of the current frame as mouse (if applicable) */ - bezt= fcu->bezt; - prevbezt= NULL; - - for (i=0; i < fcu->totvert; i++, prevbezt=bezt, bezt++) { + for (i=0, bezt= fcu->bezt; i < fcu->totvert; i++, bezt++) { if (FrameOnMouseSide(side, bezt->vec[1][0], cfra)) { TransDataCurveHandleFlags *hdata = NULL; short h1=1, h2=1; - /* only include handles if selected, and interpolaton mode uses beztriples */ - if ( (!prevbezt && (bezt->ipo==BEZT_IPO_BEZ)) || (prevbezt && (prevbezt->ipo==BEZT_IPO_BEZ)) ) { - if (bezt->f1 & SELECT) { + /* only include handles if selected, irrespective of the interpolation modes */ + if (bezt->f1 & SELECT) { + hdata = initTransDataCurveHandes(td, bezt); + bezt_to_transdata(td++, td2d++, adt, bezt->vec[0], bezt->vec[1], 1, 1, intvals); + } + else + h1= 0; + if (bezt->f3 & SELECT) { + if (hdata==NULL) hdata = initTransDataCurveHandes(td, bezt); - bezt_to_transdata(td++, td2d++, adt, bezt->vec[0], bezt->vec[1], 1, 1, intvals); - } - else - h1= 0; - } - if (bezt->ipo == BEZT_IPO_BEZ) { - if (bezt->f3 & SELECT) { - if (hdata==NULL) - hdata = initTransDataCurveHandes(td, bezt); - bezt_to_transdata(td++, td2d++, adt, bezt->vec[2], bezt->vec[1], 1, 1, intvals); - } - else - h2= 0; + bezt_to_transdata(td++, td2d++, adt, bezt->vec[2], bezt->vec[1], 1, 1, intvals); } + else + h2= 0; /* only include main vert if selected */ if (bezt->f2 & SELECT) { - /* if scaling around individuals centers, do no include keyframes */ + /* if scaling around individuals centers, do not include keyframes */ if (v2d->around != V3D_LOCAL) { /* if handles were not selected, store their selection status */ if (!(bezt->f1 & SELECT) && !(bezt->f3 & SELECT)) { From 3d80fa97281c72ad0261a09d043056b5795e0b62 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Oct 2009 10:00:45 +0000 Subject: [PATCH 003/412] new operator - OBJECT_OT_make_single_user Added keybindings and menu items - Make Single User, Ukey - Make Local, Lkey - Make Duplis real, Ctrl+Shift+A --- release/scripts/ui/space_view3d.py | 27 +++++ source/blender/blenloader/intern/readfile.c | 2 +- source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 9 +- .../blender/editors/object/object_relations.c | 112 +++++++++++------- 5 files changed, 103 insertions(+), 48 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index cac2b88f39e..3a596766c89 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -409,6 +409,8 @@ class VIEW3D_MT_object(bpy.types.Menu): layout.item_booleanO("object.duplicate", "linked", True, text="Duplicate Linked") layout.itemO("object.delete", text="Delete...") layout.itemO("object.proxy_make", text="Make Proxy...") + layout.item_menu_enumO("object.make_local", "type", text="Make Local...") + layout.itemM("VIEW3D_MT_make_single_user") layout.itemS() @@ -449,6 +451,8 @@ class VIEW3D_MT_object_apply(bpy.types.Menu): layout.itemO("object.scale_apply", text="Scale") layout.itemS() layout.itemO("object.visual_transform_apply", text="Visual Transform") + layout.itemO("object.duplicates_make_real") + class VIEW3D_MT_object_parent(bpy.types.Menu): __label__ = "Parent" @@ -501,6 +505,27 @@ class VIEW3D_MT_object_showhide(bpy.types.Menu): layout.itemO("object.restrictview_set", text="Hide Selected") layout.item_booleanO("object.restrictview_set", "unselected", True, text="Hide Unselected") +class VIEW3D_MT_make_single_user(bpy.types.Menu): + __label__ = "Make Single User" + + def draw(self, context): + layout = self.layout + + props = layout.itemO("object.make_single_user", properties=True, text="Object") + props.object = True + + props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData") + props.object = props.obdata = True + + props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData & Materials+Tex") + props.object = props.obdata = props.material = props.texture = True + + props = layout.itemO("object.make_single_user", properties=True, text="Materials+Tex") + props.material = props.texture = True + + props = layout.itemO("object.make_single_user", properties=True, text="Animation") + props.animation = True + # ********** Vertex paint menu ********** class VIEW3D_MT_paint_vertex(bpy.types.Menu): @@ -1416,6 +1441,8 @@ bpy.types.register(VIEW3D_MT_object_track) bpy.types.register(VIEW3D_MT_object_group) bpy.types.register(VIEW3D_MT_object_constraints) bpy.types.register(VIEW3D_MT_object_showhide) +bpy.types.register(VIEW3D_MT_make_single_user) + bpy.types.register(VIEW3D_MT_sculpt) # Sculpt Menu diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 0004187b1c6..448eb834818 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -6430,7 +6430,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main) } } if(main->versionfile <= 140) { - /* r-g-b-fac in texure */ + /* r-g-b-fac in texture */ Tex *tex = main->tex.first; while (tex) { if ((tex->rfac == 0.0) && diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index dc7ae1490fd..420b6a21946 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -58,6 +58,7 @@ void OBJECT_OT_track_clear(struct wmOperatorType *ot); void OBJECT_OT_slow_parent_set(struct wmOperatorType *ot); void OBJECT_OT_slow_parent_clear(struct wmOperatorType *ot); void OBJECT_OT_make_local(struct wmOperatorType *ot); +void OBJECT_OT_make_single_user(struct wmOperatorType *ot); void OBJECT_OT_move_to_layer(struct wmOperatorType *ot); /* object_edit.c */ diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 5c53e041f6e..1e95eca4386 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -90,6 +90,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_slow_parent_set); WM_operatortype_append(OBJECT_OT_slow_parent_clear); WM_operatortype_append(OBJECT_OT_make_local); + WM_operatortype_append(OBJECT_OT_make_single_user); WM_operatortype_append(OBJECT_OT_move_to_layer); WM_operatortype_append(OBJECT_OT_select_inverse); @@ -249,15 +250,21 @@ void ED_keymap_object(wmKeyConfig *keyconf) kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", AKEY, KM_PRESS, KM_SHIFT, 0); RNA_string_set(kmi->ptr, "name", "INFO_MT_add"); + WM_keymap_add_item(keymap, "OBJECT_OT_duplicates_make_real", AKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); + kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", AKEY, KM_PRESS, KM_CTRL, 0); RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_object_apply"); + kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", UKEY, KM_PRESS, 0, 0); + RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_make_single_user"); + WM_keymap_add_item(keymap, "OBJECT_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0); RNA_boolean_set(WM_keymap_add_item(keymap, "OBJECT_OT_duplicate", DKEY, KM_PRESS, KM_ALT, 0)->ptr, "linked", 1); WM_keymap_add_item(keymap, "OBJECT_OT_join", JKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "OBJECT_OT_convert", CKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "OBJECT_OT_proxy_make", PKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); - + WM_keymap_add_item(keymap, "OBJECT_OT_make_local", LKEY, KM_PRESS, 0, 0); + // XXX this should probably be in screen instead... here for testing purposes in the meantime... - Aligorith WM_keymap_verify_item(keymap, "ANIM_OT_insert_keyframe_menu", IKEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "ANIM_OT_delete_keyframe_v3d", IKEY, KM_PRESS, KM_ALT, 0); diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 0c97b945037..c2550a6b1e8 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -1456,7 +1456,7 @@ void single_ipo_users(Scene *scene, int flag) #endif // XXX old animation system } -void single_mat_users(Scene *scene, int flag) +static void single_mat_users(Scene *scene, int flag, int do_textures) { Object *ob; Base *base; @@ -1486,17 +1486,17 @@ void single_mat_users(Scene *scene, int flag) ipo_idnew(ma->ipo); /* drivers */ } #endif // XXX old animation system - - for(b=0; bmtex[b] && ma->mtex[b]->tex) { - tex= ma->mtex[b]->tex; - if(tex->id.us>1) { - ma->mtex[b]->tex= copy_texture(tex); - tex->id.us--; + if(do_textures) { + for(b=0; bmtex[b] && ma->mtex[b]->tex) { + tex= ma->mtex[b]->tex; + if(tex->id.us>1) { + ma->mtex[b]->tex= copy_texture(tex); + tex->id.us--; + } } } } - } } } @@ -1599,42 +1599,6 @@ static void single_mat_users_expand(void) ID_NEW(ma->mtex[a]->object); } -void single_user(Scene *scene, View3D *v3d) -{ - int nr; - - if(scene->id.lib) return; - - clear_id_newpoins(); - - nr= pupmenu("Make Single User%t|Object|Object & ObData|Object & ObData & Materials+Tex|Materials+Tex|Ipos"); - if(nr>0) { - - if(nr==1) single_object_users(scene, v3d, 1); - - else if(nr==2) { - single_object_users(scene, v3d, 1); - single_obdata_users(scene, 1); - } - else if(nr==3) { - single_object_users(scene, v3d, 1); - single_obdata_users(scene, 1); - single_mat_users(scene, 1); /* also tex */ - - } - else if(nr==4) { - single_mat_users(scene, 1); - } - else if(nr==5) { - single_ipo_users(scene, 1); - } - - - clear_id_newpoins(); - - } -} - /* used for copying scenes */ void ED_object_single_users(Scene *scene, int full) { @@ -1676,7 +1640,7 @@ static int make_local_exec(bContext *C, wmOperator *op) Material *ma, ***matarar; Lamp *la; ID *id; - int a, b, mode= RNA_boolean_get(op->ptr, "type"); + int a, b, mode= RNA_enum_get(op->ptr, "type");; if(mode==3) { all_local(NULL, 0); /* NULL is all libs */ @@ -1777,3 +1741,59 @@ void OBJECT_OT_make_local(wmOperatorType *ot) RNA_def_enum(ot->srna, "type", type_items, 0, "Type", ""); } +static int make_single_user_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + View3D *v3d= CTX_wm_view3d(C); /* ok if this is NULL */ + int flag= RNA_enum_get(op->ptr, "type"); /* 0==ALL, SELECTED==selected objecs */ + + if(RNA_boolean_get(op->ptr, "object")) + single_object_users(scene, v3d, flag); + + if(RNA_boolean_get(op->ptr, "obdata")) + single_obdata_users(scene, flag); + + if(RNA_boolean_get(op->ptr, "material")) + single_mat_users(scene, flag, FALSE); + + if(RNA_boolean_get(op->ptr, "texture")) + single_mat_users(scene, flag, TRUE); + + if(RNA_boolean_get(op->ptr, "animation")) + single_ipo_users(scene, flag); + + clear_id_newpoins(); + + WM_event_add_notifier(C, NC_WINDOW, NULL); + return OPERATOR_FINISHED; +} + +void OBJECT_OT_make_single_user(wmOperatorType *ot) +{ + static EnumPropertyItem type_items[]= { + {SELECT, "SELECTED_OBJECTS", 0, "Selected Objects", ""}, + {0, "ALL", 0, "All", ""}, + {0, NULL, 0, NULL, NULL}}; + + /* identifiers */ + ot->name= "Make Single User"; + ot->description = "Make linked data local to each object."; + ot->idname= "OBJECT_OT_make_single_user"; + + /* api callbacks */ + ot->invoke= WM_menu_invoke; + ot->exec= make_single_user_exec; + ot->poll= ED_operator_scene_editable; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ + RNA_def_enum(ot->srna, "type", type_items, 0, "Type", ""); + + RNA_def_boolean(ot->srna, "object", 0, "Object", "Make single user objects"); + RNA_def_boolean(ot->srna, "obdata", 0, "Object Data", "Make single user object data"); + RNA_def_boolean(ot->srna, "material", 0, "Materials", "Make materials local to each datablock"); + RNA_def_boolean(ot->srna, "texture", 0, "Textures", "Make textures local to each material"); + RNA_def_boolean(ot->srna, "animation", 0, "Animation Data", "Make animation data local to each object"); +} From 680888419d40f36d37d4df5ccdeccd4916f0649d Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 16 Oct 2009 10:01:15 +0000 Subject: [PATCH 004/412] A few Graph Editor tweaks: * Tiny tweak of GL commands used when drawing F-Curves (single GL_LINES instead of multiple GL_LINE_STRIPS) to hopefully improve the performance with heaps of handles drawn a bit * Spelling fix for initTransDataCurveHandes -> initTransDataCurveHandles --- .../blender/editors/space_graph/graph_draw.c | 33 +++++++++---------- .../editors/transform/transform_conversions.c | 18 +++++----- 2 files changed, 24 insertions(+), 27 deletions(-) diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 57e2208f089..6ba6fee3890 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -155,7 +155,7 @@ static void draw_fcurve_modifier_controls_envelope (FCurve *fcu, FModifier *fcm, glVertex2f(fed->time, fed->max); } } - bglEnd(); + bglEnd(); // GL_POINTS glPointSize(1.0f); } @@ -198,7 +198,7 @@ static void draw_fcurve_vertices_keyframes (FCurve *fcu, View2D *v2d, short edit } } - bglEnd(); + bglEnd(); // GL_POINTS } @@ -333,21 +333,24 @@ void draw_fcurve_vertices (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) static void draw_fcurve_handles (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) { extern unsigned int nurbcol[]; - unsigned int *col; int sel, b; /* don't draw handle lines if handles are not shown */ if ((sipo->flag & SIPO_NOHANDLES) || (fcu->flag & FCURVE_PROTECTED) || (fcu->flag & FCURVE_INT_VALUES)) return; + /* a single call to GL_LINES here around these calls should be sufficient to still + * get separate line segments, but which aren't wrapped with GL_LINE_STRIP everytime we + * want a single line + */ + glBegin(GL_LINES); + /* slightly hacky, but we want to draw unselected points before selected ones */ for (sel= 0; sel < 2; sel++) { BezTriple *bezt=fcu->bezt, *prevbezt=NULL; + unsigned int *col= (sel)? (nurbcol+4) : (nurbcol); float *fp; - if (sel) col= nurbcol+4; - else col= nurbcol; - for (b= 0; b < fcu->totvert; b++, prevbezt=bezt, bezt++) { if ((bezt->f2 & SELECT)==sel) { fp= bezt->vec[0]; @@ -356,19 +359,15 @@ static void draw_fcurve_handles (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) if ( (!prevbezt && (bezt->ipo==BEZT_IPO_BEZ)) || (prevbezt && (prevbezt->ipo==BEZT_IPO_BEZ)) ) { cpackA(col[(unsigned char)bezt->h1], drawFCurveFade(fcu)); - glBegin(GL_LINE_STRIP); - glVertex2fv(fp); glVertex2fv(fp+3); - glEnd(); + glVertex2fv(fp); glVertex2fv(fp+3); } /* only draw second handle if this segment is bezier */ if (bezt->ipo == BEZT_IPO_BEZ) { cpackA(col[(unsigned char)bezt->h2], drawFCurveFade(fcu)); - glBegin(GL_LINE_STRIP); - glVertex2fv(fp+3); glVertex2fv(fp+6); - glEnd(); + glVertex2fv(fp+3); glVertex2fv(fp+6); } } else { @@ -379,9 +378,7 @@ static void draw_fcurve_handles (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) fp= bezt->vec[0]; cpackA(col[(unsigned char)bezt->h1], drawFCurveFade(fcu)); - glBegin(GL_LINE_STRIP); - glVertex2fv(fp); glVertex2fv(fp+3); - glEnd(); + glVertex2fv(fp); glVertex2fv(fp+3); } /* only draw second handle if this segment is bezier, and selection is ok */ @@ -391,13 +388,13 @@ static void draw_fcurve_handles (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) fp= bezt->vec[1]; cpackA(col[(unsigned char)bezt->h2], drawFCurveFade(fcu)); - glBegin(GL_LINE_STRIP); - glVertex2fv(fp); glVertex2fv(fp+3); - glEnd(); + glVertex2fv(fp); glVertex2fv(fp+3); } } } } + + glEnd(); // GL_LINES } /* Samples ---------------- */ diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index abcf1748149..d8770afbaae 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -1334,7 +1334,7 @@ static void calc_distanceCurveVerts(TransData *head, TransData *tail) { } /* Utility function for getting the handle data from bezier's */ -TransDataCurveHandleFlags *initTransDataCurveHandes(TransData *td, struct BezTriple *bezt) { +TransDataCurveHandleFlags *initTransDataCurveHandles(TransData *td, struct BezTriple *bezt) { TransDataCurveHandleFlags *hdata; td->flag |= TD_BEZTRIPLE; hdata = td->hdata = MEM_mallocN(sizeof(TransDataCurveHandleFlags), "CuHandle Data"); @@ -1424,7 +1424,7 @@ static void createTransCurveVerts(bContext *C, TransInfo *t) td->ext = NULL; td->val = NULL; - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); Mat3CpyMat3(td->smtx, smtx); Mat3CpyMat3(td->mtx, mtx); @@ -1459,7 +1459,7 @@ static void createTransCurveVerts(bContext *C, TransInfo *t) if ((bezt->f1&SELECT)==0 && (bezt->f3&SELECT)==0) /* If the middle is selected but the sides arnt, this is needed */ if (hdata==NULL) { /* if the handle was not saved by the previous handle */ - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); } td++; @@ -1484,7 +1484,7 @@ static void createTransCurveVerts(bContext *C, TransInfo *t) td->val = NULL; if (hdata==NULL) { /* if the handle was not saved by the previous handle */ - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); } Mat3CpyMat3(td->smtx, smtx); @@ -1503,7 +1503,7 @@ static void createTransCurveVerts(bContext *C, TransInfo *t) if (propmode && head != tail) calc_distanceCurveVerts(head, tail-1); - /* TODO - in the case of tilt and radius we can also avoid allocating the initTransDataCurveHandes + /* TODO - in the case of tilt and radius we can also avoid allocating the initTransDataCurveHandles * but for now just dont change handle types */ if (ELEM(t->mode, TFM_CURVE_SHRINKFATTEN, TFM_TILT) == 0) testhandlesNurb(nu); /* sets the handles based on their selection, do this after the data is copied to the TransData */ @@ -3452,14 +3452,14 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) /* only include handles if selected, irrespective of the interpolation modes */ if (bezt->f1 & SELECT) { - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); bezt_to_transdata(td++, td2d++, adt, bezt->vec[0], bezt->vec[1], 1, 1, intvals); } else h1= 0; if (bezt->f3 & SELECT) { if (hdata==NULL) - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); bezt_to_transdata(td++, td2d++, adt, bezt->vec[2], bezt->vec[1], 1, 1, intvals); } else @@ -3472,13 +3472,13 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) /* if handles were not selected, store their selection status */ if (!(bezt->f1 & SELECT) && !(bezt->f3 & SELECT)) { if (hdata == NULL) - hdata = initTransDataCurveHandes(td, bezt); + hdata = initTransDataCurveHandles(td, bezt); } bezt_to_transdata(td++, td2d++, adt, bezt->vec[1], bezt->vec[1], 1, 0, intvals); } - /* special hack (must be done after initTransDataCurveHandes(), as that stores handle settings to restore...): + /* special hack (must be done after initTransDataCurveHandles(), as that stores handle settings to restore...): * - Check if we've got entire BezTriple selected and we're scaling/rotating that point, * then check if we're using auto-handles. * - If so, change them auto-handles to aligned handles so that handles get affected too From 61a88bb5975e4df0b0944e8f246b596b5153d061 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Oct 2009 10:03:39 +0000 Subject: [PATCH 005/412] Bugfix: z-offset for materials was not added back yet. --- release/scripts/ui/buttons_material.py | 3 +++ source/blender/makesrna/intern/rna_material.c | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index e0e2fc736c0..e38eb583447 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -202,6 +202,9 @@ class MATERIAL_PT_options(MaterialButtonsPanel): col.itemR(mat, "sky") col.itemR(mat, "exclude_mist") col.itemR(mat, "invert_z") + sub = col.row() + sub.itemR(mat, "z_offset") + sub.active = mat.transparency and mat.transparency_method == 'Z_TRANSPARENCY' sub = col.column(align=True) sub.itemL(text="Light Group:") sub.itemR(mat, "light_group", text="") diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c index 74cb8675ad5..3ddbb937b5b 100644 --- a/source/blender/makesrna/intern/rna_material.c +++ b/source/blender/makesrna/intern/rna_material.c @@ -1600,6 +1600,11 @@ void RNA_def_material(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "mode", MA_ZINV); RNA_def_property_ui_text(prop, "Invert Z Depth", "Renders material's faces with an inverted Z buffer (scanline only)."); RNA_def_property_update(prop, 0, "rna_Material_update"); + + prop= RNA_def_property(srna, "z_offset", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "zoffs"); + RNA_def_property_ui_text(prop, "Z Offset", "Gives faces an artificial offset in the Z buffer for Z transparency."); + RNA_def_property_update(prop, 0, "rna_Material_update"); prop= RNA_def_property(srna, "sky", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "mode", MA_ENV); From 59f330cce06abaccc34845e4f2cae89bd9e705be Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Oct 2009 10:05:58 +0000 Subject: [PATCH 006/412] Add back Blend From Shape in mesh edit mode. --- release/scripts/ui/space_view3d.py | 14 +- source/blender/blenlib/BLI_arithb.h | 1 + source/blender/editors/mesh/editmesh_tools.c | 212 ++++++++----------- source/blender/editors/mesh/mesh_intern.h | 2 + source/blender/editors/mesh/mesh_ops.c | 1 + 5 files changed, 97 insertions(+), 133 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 3a596766c89..2382e866091 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -794,18 +794,18 @@ class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): layout.itemO("mesh.subdivide", text="Subdivide") layout.item_floatO("mesh.subdivide", "smoothness", 1.0, text="Subdivide Smooth") layout.itemO("mesh.merge", text="Merge...") - layout.itemO("mesh.remove_doubles", text="Remove Doubles") + layout.itemO("mesh.remove_doubles") layout.itemO("mesh.hide", text="Hide") layout.itemO("mesh.reveal", text="Reveal") - layout.itemO("mesh.select_inverse", text="Select Inverse") + layout.itemO("mesh.select_inverse") layout.itemO("mesh.flip_normals") layout.itemO("mesh.vertices_smooth", text="Smooth") # layout.itemO("mesh.bevel", text="Bevel") layout.itemO("mesh.faces_shade_smooth") layout.itemO("mesh.faces_shade_flat") - # layout.itemO("mesh.blend_from_shape", text="Blend From Shape") - # layout.itemO("mesh.shape_propagate_to_all", text="Propagate to All Shapes") - layout.itemO("mesh.select_vertex_path", text="Select Vertex Path") + layout.itemO("mesh.blend_from_shape") + # layout.itemO("mesh.shape_propagate_to_all") + layout.itemO("mesh.select_vertex_path") class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): __label__ = "Vertices" @@ -824,9 +824,9 @@ class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): layout.itemO("mesh.vertices_smooth") layout.itemO("mesh.remove_doubles") - layout.itemO("mesh.select_vertex_path", text="Select Vertex Path") + layout.itemO("mesh.select_vertex_path") - # uiItemO(layout, "Blend From Shape", 0, "mesh.blend_from_shape"); + layout.itemO("mesh.blend_from_shape") # uiItemO(layout, "Propagate to All Shapes", 0, "mesh.shape_propagate_to_all"); class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): diff --git a/source/blender/blenlib/BLI_arithb.h b/source/blender/blenlib/BLI_arithb.h index e6aded12f3b..fdccb3854a6 100644 --- a/source/blender/blenlib/BLI_arithb.h +++ b/source/blender/blenlib/BLI_arithb.h @@ -457,6 +457,7 @@ void i_window( #define BLI_CS_CIE 2 #define RAD2DEG(_rad) ((_rad)*(180.0/M_PI)) +#define DEG2RAD(_deg) ((_deg)*(M_PI/180.0)) void hsv_to_rgb(float h, float s, float v, float *r, float *g, float *b); void hex_to_rgb(char *hexcol, float *r, float *g, float *b); diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index d447040e8ea..30fda95cf9b 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -69,6 +69,7 @@ editmesh_tool.c: UI called tools for editmesh, geometry changes here, otherwise #include "BKE_customdata.h" #include "BKE_depsgraph.h" #include "BKE_global.h" +#include "BKE_key.h" #include "BKE_library.h" #include "BKE_mesh.h" #include "BKE_object.h" @@ -5024,6 +5025,7 @@ void MESH_OT_rip(wmOperatorType *ot) /************************ Shape Operators *************************/ +#if 0 void shape_propagate(Scene *scene, Object *obedit, EditMesh *em, wmOperator *op) { EditVert *ev = NULL; @@ -5065,152 +5067,110 @@ void shape_propagate(Scene *scene, Object *obedit, EditMesh *em, wmOperator *op) DAG_id_flush_update(obedit->data, OB_RECALC_DATA); return; } +#endif -void shape_copy_from_lerp(EditMesh *em, KeyBlock* thisBlock, KeyBlock* fromBlock) +static int blend_from_shape_exec(bContext *C, wmOperator *op) { - EditVert *ev = NULL; - short mval[2], curval[2], event = 0, finished = 0, canceled = 0, fullcopy=0 ; - float perc = 0; - char str[64]; - float *data, *odata; + Object *obedit= CTX_data_edit_object(C); + Mesh *me= obedit->data; + Key *key= me->key; + EditMesh *em= BKE_mesh_get_editmesh(me); + EditVert *eve; + KeyBlock *kb; + float *data, co[3]; + float blend= RNA_float_get(op->ptr, "blend"); + int shape= RNA_enum_get(op->ptr, "shape"); + int add= RNA_int_get(op->ptr, "add"); + int blended= 0; - data = fromBlock->data; - odata = thisBlock->data; + kb= BLI_findlink(&key->block, shape); -// XXX getmouseco_areawin(mval); - curval[0] = mval[0] + 1; curval[1] = mval[1] + 1; + if(kb) { + data= kb->data; - while (finished == 0) - { -// XXX getmouseco_areawin(mval); - if (mval[0] != curval[0] || mval[1] != curval[1]) - { + for(eve=em->verts.first; eve; eve=eve->next){ + if(eve->f & SELECT) { + if(eve->keyindex >= 0 && eve->keyindex < kb->totelem) { + VECCOPY(co, data + eve->keyindex*3); - if(mval[0] > curval[0]) - perc += 0.1; - else if(mval[0] < curval[0]) - perc -= 0.1; + if(add) { + VecMulf(co, blend); + VecAddf(eve->co, eve->co, co); + } + else + VecLerpf(eve->co, eve->co, co, blend); - if(perc < 0) perc = 0; - if(perc > 1) perc = 1; - - curval[0] = mval[0]; - curval[1] = mval[1]; - - if(fullcopy == 1){ - perc = 1; - } - - for(ev = em->verts.first; ev ; ev = ev->next){ - if(ev->f & SELECT){ - VecLerpf(ev->co,odata+(ev->keyindex*3),data+(ev->keyindex*3),perc); - } - } - sprintf(str,"Blending at %d%c MMB to Copy at 100%c",(int)(perc*100),'%','%'); -// DAG_id_flush_update(obedit->data, OB_RECALC_DATA); -// headerprint(str); -// force_draw(0); - - if(fullcopy == 1){ - break; - } - - } else { - PIL_sleep_ms(10); - } - - while(qtest()) { - short val=0; - event= extern_qread(&val); - if(val){ - if(ELEM3(event, PADENTER, LEFTMOUSE, RETKEY)){ - finished = 1; - } - else if (event == MIDDLEMOUSE){ - fullcopy = 1; - } - else if (ELEM3(event,ESCKEY,RIGHTMOUSE,RIGHTMOUSE)){ - canceled = 1; - finished = 1; + blended= 1; } } } } - if(!canceled); - else - for(ev = em->verts.first; ev ; ev = ev->next){ - if(ev->f & SELECT){ - VECCOPY(ev->co, odata+(ev->keyindex*3)); - } - } - return; + + BKE_mesh_end_editmesh(me, em); + + if(!blended) + return OPERATOR_CANCELLED; + + DAG_id_flush_update(&me->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, me); + + return OPERATOR_FINISHED; } +static EnumPropertyItem *shape_itemf(bContext *C, PointerRNA *ptr, int *free) +{ + Object *obedit= CTX_data_edit_object(C); + Mesh *me= obedit->data; + Key *key; + KeyBlock *kb, *actkb; + EnumPropertyItem tmp= {0, "", 0, "", ""}, *item= NULL; + int totitem= 0, a; + if(obedit && obedit->type == OB_MESH) { + key= me->key; + actkb= ob_get_keyblock(obedit); -void shape_copy_select_from(Object *obedit, EditMesh *em, wmOperator *op) + if(key && actkb) { + for(kb=key->block.first, a=0; kb; kb=kb->next, a++) { + if(kb != actkb) { + tmp.value= a; + tmp.identifier= kb->name; + tmp.name= kb->name; + RNA_enum_item_add(&item, &totitem, &tmp); + } + } + } + } + + RNA_enum_item_end(&item, &totitem); + *free= 1; + + return item; +} + +void MESH_OT_blend_from_shape(wmOperatorType *ot) { - Mesh* me = (Mesh*)obedit->data; - EditVert *ev = NULL; - int totverts = 0,curshape = obedit->shapenr; + PropertyRNA *prop; + static EnumPropertyItem shape_items[]= {{0, NULL, 0, NULL, NULL}}; - Key* ky = NULL; - KeyBlock *kb = NULL,*thisBlock = NULL; - int maxlen=32, nr=0, a=0; - char *menu; + /* identifiers */ + ot->name= "Blend From Shape"; + ot->description= "Blend in shape from a shape key."; + ot->idname= "MESH_OT_blend_from_shape"; - if(me->key){ - ky = me->key; - } else { - BKE_report(op->reports, RPT_ERROR, "Object Has No Key"); - return; - } + /* api callbacks */ + ot->exec= blend_from_shape_exec; + ot->invoke= WM_operator_props_popup; + ot->poll= ED_operator_editmesh; - if(ky->block.first){ - for(kb=ky->block.first;kb;kb = kb->next){ - maxlen += 40; // Size of a block name - if(a == curshape-1){ - thisBlock = kb; - } + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - a++; - } - a=0; - menu = MEM_callocN(maxlen, "Copy Shape Menu Text"); - strcpy(menu, "Copy Vert Positions from Shape %t|"); - for(kb=ky->block.first;kb;kb = kb->next){ - if(a != curshape-1){ - sprintf(menu,"%s %s %cx%d|",menu,kb->name,'%',a); - } - a++; - } -// XXX nr = pupmenu_col(menu, 20); - MEM_freeN(menu); - } else { - BKE_report(op->reports, RPT_ERROR, "Object Has No Blendshapes"); - return; - } - - a = 0; - - for(kb=ky->block.first;kb;kb = kb->next){ - if(a == nr){ - - for(ev = em->verts.first;ev;ev = ev->next){ - totverts++; - } - - if(me->totvert != totverts){ - BKE_report(op->reports, RPT_ERROR, "Shape Has had Verts Added/Removed, please cycle editmode before copying"); - return; - } - shape_copy_from_lerp(em, thisBlock,kb); - - return; - } - a++; - } - return; + /* properties */ + prop= RNA_def_enum(ot->srna, "shape", shape_items, 0, "Shape", "Shape key to use for blending."); + RNA_def_enum_funcs(prop, shape_itemf); + RNA_def_float(ot->srna, "blend", 1.0f, -FLT_MAX, FLT_MAX, "Blend", "Blending factor.", -2.0f, 2.0f); + RNA_def_boolean(ot->srna, "add", 1, "Add", "Add rather then blend between shapes."); } /************************ Merge Operator *************************/ diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 7ee7fe1ebde..8b55afa4a0d 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -227,6 +227,8 @@ void MESH_OT_colors_mirror(struct wmOperatorType *ot); void MESH_OT_delete(struct wmOperatorType *ot); void MESH_OT_rip(struct wmOperatorType *ot); +void MESH_OT_blend_from_shape(struct wmOperatorType *ot); + /* ******************* mesh_layers.c */ void MESH_OT_uv_texture_add(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index c8d85aace47..df80b74f19f 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -139,6 +139,7 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_flip_normals); WM_operatortype_append(MESH_OT_knife_cut); WM_operatortype_append(MESH_OT_rip); + WM_operatortype_append(MESH_OT_blend_from_shape); WM_operatortype_append(MESH_OT_uv_texture_add); WM_operatortype_append(MESH_OT_uv_texture_remove); From 5938b4c93e92c6663f134a3e1e4ec36e22469ee2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Oct 2009 10:22:11 +0000 Subject: [PATCH 007/412] new utility function for BLI_storage.h - BLI_is_dir currently unsupported on windows. should fix this too [#19656] N-Panel in filebrowser not working though typing in invalid names then becomes possible --- source/blender/blenlib/BLI_storage.h | 3 +++ source/blender/blenlib/intern/storage.c | 9 +++++++++ source/blender/editors/space_file/filesel.c | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_storage.h b/source/blender/blenlib/BLI_storage.h index fa44bb36e15..96e88ec8e89 100644 --- a/source/blender/blenlib/BLI_storage.h +++ b/source/blender/blenlib/BLI_storage.h @@ -66,6 +66,9 @@ int BLI_exist(char *name); * @param name The name of the file to read. * @retval A list of strings representing the file lines. */ + +int BLI_is_dir(char *file); + struct LinkNode *BLI_read_file_as_lines(char *name); /** diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c index cdc5cec705f..b48b6784c23 100644 --- a/source/blender/blenlib/intern/storage.c +++ b/source/blender/blenlib/intern/storage.c @@ -468,6 +468,15 @@ int BLI_exist(char *name) return(st.st_mode); } +/* would be better in fileops.c except that it needs stat.h so add here */ +int BLI_is_dir(char *file) { +#ifdef WIN32 + return 1; /* XXX - TODO */ +#else + return S_ISDIR(BLI_exist(file)); +#endif +} + LinkNode *BLI_read_file_as_lines(char *name) { FILE *fp= fopen(name, "r"); diff --git a/source/blender/editors/space_file/filesel.c b/source/blender/editors/space_file/filesel.c index 89678bffd01..cc0c1ca33aa 100644 --- a/source/blender/editors/space_file/filesel.c +++ b/source/blender/editors/space_file/filesel.c @@ -388,7 +388,7 @@ void file_change_dir(struct SpaceFile *sfile, int checkdir) { if (sfile->params) { - if(checkdir && S_ISDIR(BLI_exists(sfile->params->dir)) == 0) { + if(checkdir && BLI_is_dir(sfile->params->dir)==0) { BLI_strncpy(sfile->params->dir, filelist_dir(sfile->files), sizeof(sfile->params->dir)); /* could return but just refresh the current dir */ } From 04f17fed4d2972bcf4ffc544d1715b5b253f9e54 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 16 Oct 2009 10:25:39 +0000 Subject: [PATCH 008/412] 2.5 Outliner: Finally, the Outliner Header is drawn via Python too. * Also added some Operators to the View Menu. --- release/scripts/ui/space_outliner.py | 51 +-- .../editors/space_outliner/outliner_header.c | 309 ------------------ .../editors/space_outliner/space_outliner.c | 23 -- 3 files changed, 28 insertions(+), 355 deletions(-) delete mode 100644 source/blender/editors/space_outliner/outliner_header.c diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index f3c45983d76..79f0aa0f98a 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -5,9 +5,11 @@ class OUTLINER_HT_header(bpy.types.Header): __space_type__ = 'OUTLINER' def draw(self, context): - so = context.space_data - sce = context.scene layout = self.layout + + space = context.space_data + scene = context.scene + ks = context.scene.active_keying_set row = layout.row(align=True) row.template_header() @@ -15,37 +17,40 @@ class OUTLINER_HT_header(bpy.types.Header): if context.area.show_menus: sub = row.row(align=True) sub.itemM("OUTLINER_MT_view") - - row = layout.row() - row.itemR(so, "display_mode", text="") + + layout.itemR(space, "display_mode", text="") - if so.display_mode == 'DATABLOCKS': + layout.itemS() + + if space.display_mode == 'DATABLOCKS': row = layout.row(align=True) - row.itemO("anim.keyingset_add_new", text="", icon=31) - # row.itemR(sce, "active_keyingset", text="KS: ") - # ks = sce.keyingsets[sce.active_keyingset - 1] - # row.itemR(ks, "name", text="") - ## row.itemR(sce, "keyingsets") - - row = layout.row() - row.itemO("outliner.keyingset_add_selected", text="", icon=31) - row.itemO("outliner.keyingset_remove_selected", text="", icon=32) - - row.itemO("anim.insert_keyframe", text="", icon=514) - row.itemO("anim.delete_keyframe", text="", icon=513) - + row.itemO("anim.keying_set_add", icon='ICON_ZOOMIN', text="") + row.itemO("anim.keying_set_remove", icon='ICON_ZOOMOUT', text="") + if ks: + row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") + + row = layout.row(align=True) + row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') + row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') + else: + row.itemL(text="No Keying Set active") class OUTLINER_MT_view(bpy.types.Menu): __label__ = "View" def draw(self, context): layout = self.layout - so = context.space_data + + space = context.space_data col = layout.column() - col.itemR(so, "show_restriction_columns") - #layout.itemO("text.new") + if space.display_mode not in ('DATABLOCKS', 'USER_PREFERENCES', 'KEYMAPS'): + col.itemR(space, "show_restriction_columns") + col.itemS() + col.itemO("outliner.show_active") + + col.itemO("outliner.show_one_level") + col.itemO("outliner.show_hierarchy") bpy.types.register(OUTLINER_HT_header) bpy.types.register(OUTLINER_MT_view) - diff --git a/source/blender/editors/space_outliner/outliner_header.c b/source/blender/editors/space_outliner/outliner_header.c deleted file mode 100644 index b60cc075869..00000000000 --- a/source/blender/editors/space_outliner/outliner_header.c +++ /dev/null @@ -1,309 +0,0 @@ -/** - * $Id$ - * - * ***** BEGIN GPL LICENSE BLOCK ***** - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * - * The Original Code is Copyright (C) 2008 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#include -#include - -#include "DNA_ID.h" -#include "DNA_anim_types.h" -#include "DNA_space_types.h" -#include "DNA_scene_types.h" -#include "DNA_screen_types.h" -#include "DNA_windowmanager_types.h" - -#include "MEM_guardedalloc.h" - -#include "BLI_blenlib.h" - -#include "BKE_animsys.h" -#include "BKE_context.h" -#include "BKE_global.h" -#include "BKE_main.h" -#include "BKE_screen.h" - -#include "ED_keyframing.h" -#include "ED_screen.h" -#include "ED_util.h" -#include "ED_types.h" - -#include "WM_api.h" -#include "WM_types.h" - -#include "BIF_gl.h" -#include "BIF_glutil.h" - -#include "UI_interface.h" -#include "UI_resources.h" -#include "UI_view2d.h" - -#include "outliner_intern.h" - - -/* ************************ header area region *********************** */ - -static void do_viewmenu(bContext *C, void *arg, int event) -{ - ScrArea *curarea= CTX_wm_area(C); - SpaceOops *soops= curarea->spacedata.first; - - switch(event) { - case 0: /* Shuffle Selected Blocks */ - //shuffle_oops(); - break; - case 1: /* Shrink Selected Blocks */ - //shrink_oops(); - break; - case 2: /* View All */ - //do_oops_buttons(B_OOPSHOME); - break; - case 3: /* View All */ - //do_oops_buttons(B_OOPSVIEWSEL); - break; - case 4: /* Maximize Window */ - /* using event B_FULL */ - break; - break; - case 6: - //outliner_toggle_visible(curarea); - break; - case 7: - //outliner_show_hierarchy(curarea); - break; - case 8: - //outliner_show_active(curarea); - break; - case 9: - //outliner_one_level(curarea, 1); - break; - case 10: - //outliner_one_level(curarea, -1); - break; - case 12: - if (soops->flag & SO_HIDE_RESTRICTCOLS) soops->flag &= ~SO_HIDE_RESTRICTCOLS; - else soops->flag |= SO_HIDE_RESTRICTCOLS; - break; - } - ED_area_tag_redraw(curarea); -} - -static uiBlock *outliner_viewmenu(bContext *C, ARegion *ar, void *arg_unused) -{ - ScrArea *curarea= CTX_wm_area(C); - SpaceOops *soops= curarea->spacedata.first; - uiBlock *block; - short yco= 0, menuwidth=120; - - block= uiBeginBlock(C, ar, "outliner_viewmenu", UI_EMBOSSP); - uiBlockSetButmFunc(block, do_viewmenu, NULL); - - if (soops->flag & SO_HIDE_RESTRICTCOLS) - uiDefIconTextBut(block, BUTM, 1, ICON_CHECKBOX_DEHLT, "Show Restriction Columns", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 12, ""); - else - uiDefIconTextBut(block, BUTM, 1, ICON_CHECKBOX_HLT, "Show Restriction Columns", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 12, ""); - - uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); - - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Expand One Level|NumPad +", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 9, ""); - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Collapse One Level|NumPad -", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 10, ""); - - uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); - - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show/Hide All", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 6, ""); - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Hierarchy|Home", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 7, ""); - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Active|NumPad .", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 8, ""); - -// uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); -// if(!curarea->full) uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Maximize Window|Ctrl UpArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 4, ""); -// else uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Tile Window|Ctrl DownArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 4, ""); - - - if(curarea->headertype==HEADERTOP) { - uiBlockSetDirection(block, UI_DOWN); - } - else { - uiBlockSetDirection(block, UI_TOP); - uiBlockFlipOrder(block); - } - - uiTextBoundsBlock(block, 50); - uiEndBlock(C, block); - - return block; -} - -enum { - B_REDR = 1, - - B_KEYINGSET_CHANGE, - B_KEYINGSET_REMOVE, -} eOutlinerHeader_Events; - -static void do_outliner_buttons(bContext *C, void *arg, int event) -{ - ScrArea *sa= CTX_wm_area(C); - Scene *scene= CTX_data_scene(C); - - switch(event) { - case B_REDR: - ED_area_tag_redraw(sa); - break; - - case B_KEYINGSET_CHANGE: - /* add a new KeyingSet if active is -1 */ - if (scene->active_keyingset == -1) { - // XXX the default settings have yet to evolve... need to keep this in sync with the - BKE_keyingset_add(&scene->keyingsets, NULL, KEYINGSET_ABSOLUTE, 0); - scene->active_keyingset= BLI_countlist(&scene->keyingsets); - } - - /* redraw regions with KeyingSet info */ - WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, scene); - break; - - case B_KEYINGSET_REMOVE: - /* remove the active KeyingSet */ - if (scene->active_keyingset) { - KeyingSet *ks= BLI_findlink(&scene->keyingsets, scene->active_keyingset-1); - - /* firstly free KeyingSet's data, then free the KeyingSet itself */ - if (ks) { - BKE_keyingset_free(ks); - BLI_freelinkN(&scene->keyingsets, ks); - scene->active_keyingset= 0; - } - else - scene->active_keyingset= 0; - } - - /* redraw regions with KeyingSet info */ - WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, scene); - break; - } -} - - -void outliner_header_buttons(const bContext *C, ARegion *ar) -{ - ScrArea *sa= CTX_wm_area(C); - Scene *scene= CTX_data_scene(C); - SpaceOops *soutliner= CTX_wm_space_outliner(C); - uiBlock *block; - int xco, yco= 3, xmax; - - block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS); - uiBlockSetHandleFunc(block, do_outliner_buttons, NULL); - - xco= ED_area_header_standardbuttons(C, block, yco); - - if((sa->flag & HEADER_NO_PULLDOWN)==0) { - - xmax= GetButStringLength("View"); - uiDefPulldownBut(block, outliner_viewmenu, CTX_wm_area(C), - "View", xco, yco-2, xmax-3, 24, ""); - xco += xmax; - - /* header text */ - xco += XIC; - - uiBlockSetEmboss(block, UI_EMBOSS); - } - - /* data selector*/ - if(G.main->library.first) - uiDefButS(block, MENU, B_REDR, "Outliner Display%t|Libraries %x7|All Scenes %x0|Current Scene %x1|Visible Layers %x2|Groups %x6|Same Types %x5|Selected %x3|Active %x4|Sequence %x10|Datablocks %x11|User Preferences %x12||Key Maps %x13", xco, yco, 120, 20, &soutliner->outlinevis, 0, 0, 0, 0, ""); - else - uiDefButS(block, MENU, B_REDR, "Outliner Display%t|All Scenes %x0|Current Scene %x1|Visible Layers %x2|Groups %x6|Same Types %x5|Selected %x3|Active %x4|Sequence %x10|Datablocks %x11|User Preferences %x12||Key Maps %x13", xco, yco, 120, 20, &soutliner->outlinevis, 0, 0, 0, 0, ""); - xco += 120; - - /* KeyingSet editing buttons */ - if ((soutliner->flag & SO_HIDE_KEYINGSETINFO)==0 && (soutliner->outlinevis==SO_DATABLOCKS)) { - KeyingSet *ks= NULL; - char *menustr= NULL; - - xco+= (int)(XIC*1.5); - - if (scene->active_keyingset) - ks= (KeyingSet *)BLI_findlink(&scene->keyingsets, scene->active_keyingset-1); - - uiBlockBeginAlign(block); - /* currently 'active' KeyingSet */ - menustr= ANIM_build_keyingsets_menu(&scene->keyingsets, 1); - uiDefButI(block, MENU, B_KEYINGSET_CHANGE, menustr, xco,yco, 18,20, &scene->active_keyingset, 0, 0, 0, 0, "Browse Keying Sets"); - MEM_freeN(menustr); - xco += 18; - - /* currently 'active' KeyingSet - change name */ - if (ks) { - /* active KeyingSet */ - uiDefBut(block, TEX, B_KEYINGSET_CHANGE,"", xco,yco,120,20, ks->name, 0, 63, 0, 0, "Name of Active Keying Set"); - xco += 120; - uiDefIconBut(block, BUT, B_KEYINGSET_REMOVE, VICON_X, xco, yco, 20, 20, NULL, 0.0, 0.0, 0.0, 0.0, "Remove this Keying Set"); - xco += 20; - } - else { - /* no active KeyingSet... so placeholder instead */ - uiDefBut(block, LABEL, 0,"", xco,yco,140,20, NULL, 0, 63, 0, 0, "Name of Active Keying Set"); - xco += 140; - } - uiBlockEndAlign(block); - - /* current 'active' KeyingSet */ - if (ks) { - xco += 5; - - /* operator buttons to add/remove selected items from set */ - uiBlockBeginAlign(block); - // XXX the icons here are temporary - uiDefIconButO(block, BUT, "OUTLINER_OT_keyingset_remove_selected", WM_OP_INVOKE_REGION_WIN, ICON_ZOOMOUT, xco,yco,XIC,YIC, "Remove selected properties from active Keying Set (Alt-K)"); - xco += XIC; - uiDefIconButO(block, BUT, "OUTLINER_OT_keyingset_add_selected", WM_OP_INVOKE_REGION_WIN, ICON_ZOOMIN, xco,yco,XIC,YIC, "Add selected properties to active Keying Set (K)"); - xco += XIC; - uiBlockEndAlign(block); - - xco += 10; - - /* operator buttons to insert/delete keyframes for the active set */ - uiBlockBeginAlign(block); - uiDefIconButO(block, BUT, "ANIM_OT_delete_keyframe", WM_OP_INVOKE_REGION_WIN, ICON_KEY_DEHLT, xco,yco,XIC,YIC, "Delete Keyframes for the Active Keying Set (Alt-I)"); - xco+= XIC; - uiDefIconButO(block, BUT, "ANIM_OT_insert_keyframe", WM_OP_INVOKE_REGION_WIN, ICON_KEY_HLT, xco,yco,XIC,YIC, "Insert Keyframes for the Active Keying Set (I)"); - xco+= XIC; - uiBlockEndAlign(block); - } - - xco += XIC*2; - } - - /* always as last */ - UI_view2d_totRect_set(&ar->v2d, xco+XIC+100, (int)(ar->v2d.tot.ymax-ar->v2d.tot.ymin)); - - uiEndBlock(C, block); - uiDrawBlock(C, block); -} - - diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c index fabe889ace6..826a313217a 100644 --- a/source/blender/editors/space_outliner/space_outliner.c +++ b/source/blender/editors/space_outliner/space_outliner.c @@ -153,38 +153,15 @@ static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn) /* ************************ header outliner area region *********************** */ -//#define PY_HEADER - /* add handlers, stuff you only do once or on area/region changes */ static void outliner_header_area_init(wmWindowManager *wm, ARegion *ar) { -#ifdef PY_HEADER ED_region_header_init(ar); -#else - UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy); -#endif } static void outliner_header_area_draw(const bContext *C, ARegion *ar) { -#ifdef PY_HEADER ED_region_header(C, ar); -#else - float col[3]; - - if(ED_screen_area_active(C)) - UI_GetThemeColor3fv(TH_HEADER, col); - else - UI_GetThemeColor3fv(TH_HEADERDESEL, col); - - glClearColor(col[0], col[1], col[2], 0.0); - glClear(GL_COLOR_BUFFER_BIT); - - /* set view2d view matrix for scrolling (without scrollers) */ - UI_view2d_view_ortho(C, &ar->v2d); - - outliner_header_buttons(C, ar); -#endif } static void outliner_header_area_free(ARegion *ar) From 2e74a6ba30fe0357338e032f22db3eb3795c0b6f Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Oct 2009 10:29:41 +0000 Subject: [PATCH 009/412] Added a button to clear the weights of all shape keys, useful when editing shapes and doing blending tests. --- release/scripts/ui/buttons_data_mesh.py | 1 + source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 1 + source/blender/editors/object/object_select.c | 1 - .../blender/editors/object/object_shapekey.c | 41 +++++++++++++++++-- 5 files changed, 41 insertions(+), 4 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 8dc5af5cf4f..81e2ac15859 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -146,6 +146,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): row = layout.row() row.enabled = ob.shape_key_lock == False row.itemR(kb, "value", slider=True) + row.itemO("object.shape_key_clear", icon='ICON_X', text="") split = layout.split() sub = split.column(align=True) diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 420b6a21946..6a9974830b3 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -175,6 +175,7 @@ void OBJECT_OT_game_property_remove(struct wmOperatorType *ot); /* object_shapekey.c */ void OBJECT_OT_shape_key_add(struct wmOperatorType *ot); void OBJECT_OT_shape_key_remove(struct wmOperatorType *ot); +void OBJECT_OT_shape_key_clear(struct wmOperatorType *ot); /* object_group.c */ void OBJECT_OT_group_add(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 1e95eca4386..c6baf84fb68 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -171,6 +171,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_shape_key_add); WM_operatortype_append(OBJECT_OT_shape_key_remove); + WM_operatortype_append(OBJECT_OT_shape_key_clear); WM_operatortype_append(LATTICE_OT_select_all_toggle); WM_operatortype_append(LATTICE_OT_make_regular); diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c index 90d1a9df93e..47730496296 100644 --- a/source/blender/editors/object/object_select.c +++ b/source/blender/editors/object/object_select.c @@ -95,7 +95,6 @@ void ED_base_object_select(Base *base, short mode) void ED_base_object_activate(bContext *C, Base *base) { Scene *scene= CTX_data_scene(C); - Base *tbase; /* sets scene->basact */ BASACT= base; diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 2ec3edd846a..b7db3a20ed1 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -72,6 +72,7 @@ #include "ED_object.h" #include "RNA_access.h" +#include "RNA_define.h" #include "WM_api.h" #include "WM_types.h" @@ -416,7 +417,7 @@ void ED_object_shape_key_add(bContext *C, Scene *scene, Object *ob) /*********************** remove shape key ***********************/ -int ED_object_shape_key_remove(bContext *C, Scene *scene, Object *ob) +int ED_object_shape_key_remove(bContext *C, Object *ob) { Main *bmain= CTX_data_main(C); KeyBlock *kb, *rkb; @@ -502,6 +503,7 @@ void OBJECT_OT_shape_key_add(wmOperatorType *ot) { /* identifiers */ ot->name= "Add Shape Key"; + ot->name= "Add shape key to the object."; ot->idname= "OBJECT_OT_shape_key_add"; /* api callbacks */ @@ -514,10 +516,9 @@ void OBJECT_OT_shape_key_add(wmOperatorType *ot) static int shape_key_remove_exec(bContext *C, wmOperator *op) { - Scene *scene= CTX_data_scene(C); Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; - if(!ED_object_shape_key_remove(C, scene, ob)) + if(!ED_object_shape_key_remove(C, ob)) return OPERATOR_CANCELLED; return OPERATOR_FINISHED; @@ -527,6 +528,7 @@ void OBJECT_OT_shape_key_remove(wmOperatorType *ot) { /* identifiers */ ot->name= "Remove Shape Key"; + ot->name= "Remove shape key from the object."; ot->idname= "OBJECT_OT_shape_key_remove"; /* api callbacks */ @@ -537,3 +539,36 @@ void OBJECT_OT_shape_key_remove(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } +static int shape_key_clear_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + Key *key= ob_get_key(ob); + KeyBlock *kb= ob_get_keyblock(ob); + + if(!key || !kb) + return OPERATOR_CANCELLED; + + for(kb=key->block.first; kb; kb=kb->next) + kb->curval= 0.0f; + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_shape_key_clear(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Clear Shape Keys"; + ot->description= "Clear weights for all shape keys."; + ot->idname= "OBJECT_OT_shape_key_clear"; + + /* api callbacks */ + ot->poll= shape_key_poll; + ot->exec= shape_key_clear_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + From 299d7531ed07ba7cefb7344dd528dba4b3dd5844 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 16 Oct 2009 10:40:03 +0000 Subject: [PATCH 010/412] Fix for last commit, used wrong operators. --- release/scripts/ui/space_outliner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 79f0aa0f98a..87c31e1aa94 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -24,8 +24,8 @@ class OUTLINER_HT_header(bpy.types.Header): if space.display_mode == 'DATABLOCKS': row = layout.row(align=True) - row.itemO("anim.keying_set_add", icon='ICON_ZOOMIN', text="") - row.itemO("anim.keying_set_remove", icon='ICON_ZOOMOUT', text="") + row.itemO("outliner.keyingset_add_selected", icon='ICON_ZOOMIN', text="") + row.itemO("outliner.keyingset_remove_selected", icon='ICON_ZOOMOUT', text="") if ks: row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") From fbfbb2afe99da6ca4343c7f48b6d98796735086a Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 16 Oct 2009 10:44:10 +0000 Subject: [PATCH 011/412] Toggle visibility of channels operator (VKEY) in Graph Editor channels view now works for channels with the toggles other than F-Curves and Groups --- .../editors/animation/anim_channels_edit.c | 20 +++---------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 7ee591f8cab..3b6c7fad471 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -904,28 +904,14 @@ static int animchannels_visibility_toggle_exec(bContext *C, wmOperator *op) if (vis == ACHANNEL_SETFLAG_CLEAR) break; - if ((ale->type == ANIMTYPE_FCURVE) && (ale->flag & FCURVE_VISIBLE)) - vis= ACHANNEL_SETFLAG_CLEAR; - else if ((ale->type == ANIMTYPE_GROUP) && !(ale->flag & AGRP_NOTVISIBLE)) + /* set the setting in the appropriate way (if available) */ + if (ANIM_channel_setting_get(&ac, ale, ACHANNEL_SETTING_VISIBLE)) vis= ACHANNEL_SETFLAG_CLEAR; } /* Now set the flags */ for (ale= anim_data.first; ale; ale= ale->next) { - switch (ale->type) { - case ANIMTYPE_FCURVE: /* F-Curve */ - { - FCurve *fcu= (FCurve *)ale->data; - ACHANNEL_SET_FLAG(fcu, vis, FCURVE_VISIBLE); - } - break; - case ANIMTYPE_GROUP: /* Group */ - { - bActionGroup *agrp= (bActionGroup *)ale->data; - ACHANNEL_SET_FLAG_NEG(agrp, vis, AGRP_NOTVISIBLE); - } - break; - } + ANIM_channel_setting_set(&ac, ale, ACHANNEL_SETTING_VISIBLE, vis); } /* cleanup */ From 6846abb2cae3efd3e5b9943d7eba3423cbef9da3 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 16 Oct 2009 10:49:54 +0000 Subject: [PATCH 012/412] Added Notifier for Adding and Removing Keying sets. --- source/blender/editors/animation/keyingsets.c | 6 ++++++ source/blender/editors/space_buttons/space_buttons.c | 1 + 2 files changed, 7 insertions(+) diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index 30eaea8b82e..bf859ac6017 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -142,6 +142,9 @@ static int add_default_keyingset_exec (bContext *C, wmOperator *op) scene->active_keyingset= BLI_countlist(&scene->keyingsets); + /* send notifiers */ + WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, NULL); + return OPERATOR_FINISHED; } @@ -182,6 +185,9 @@ static int remove_active_keyingset_exec (bContext *C, wmOperator *op) /* the active one should now be the previously second-to-last one */ scene->active_keyingset--; + /* send notifiers */ + WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, NULL); + return OPERATOR_FINISHED; } diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index c1f06d99985..47806ba7937 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -251,6 +251,7 @@ static void buttons_area_listener(ScrArea *sa, wmNotifier *wmn) case ND_FRAME: case ND_MODE: case ND_RENDER_OPTIONS: + case ND_KEYINGSET: ED_area_tag_redraw(sa); break; From f6494ff3cf132e326cd18b4ec74b9d9ee61406fa Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 16 Oct 2009 12:08:47 +0000 Subject: [PATCH 013/412] ShapeKey Editor (sub-mode of DopeSheet Editor) Special priority request from Durian team to get this sub-editor of the DopeSheet Editor restored. Originally I was kindof planning to drop it, but obviously it still has a role! It now supports all the modern features that the DopeSheet supports, complete with selection, muting, locking, DopeSheet summary, and all the other tools that you know and love from the other views. Also, this no longer uses the old hacky sliders that 2.4x used (instead it uses RNA-based ones), so should function just the same as other DopeSheet views). --- source/blender/blenkernel/BKE_key.h | 1 + source/blender/blenkernel/intern/key.c | 25 ++- .../editors/animation/anim_channels_defines.c | 204 +++++++++++++++--- .../editors/animation/anim_channels_edit.c | 32 ++- .../blender/editors/animation/anim_filter.c | 82 ++++++- source/blender/editors/include/ED_anim_api.h | 10 +- source/blender/makesdna/DNA_key_types.h | 6 +- 7 files changed, 317 insertions(+), 43 deletions(-) diff --git a/source/blender/blenkernel/BKE_key.h b/source/blender/blenkernel/BKE_key.h index 4bfa6a41099..1b4cbc1cf2a 100644 --- a/source/blender/blenkernel/BKE_key.h +++ b/source/blender/blenkernel/BKE_key.h @@ -65,6 +65,7 @@ struct Key *ob_get_key(struct Object *ob); struct KeyBlock *ob_get_keyblock(struct Object *ob); struct KeyBlock *key_get_keyblock(struct Key *key, int index); struct KeyBlock *key_get_named_keyblock(struct Key *key, const char name[]); +char *key_get_curValue_rnaPath(struct Key *key, struct KeyBlock *kb); // needed for the GE void do_rel_key(int start, int end, int tot, char *basispoin, struct Key *key, int mode); diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c index b6e4ffd6cc3..3fffdef478b 100644 --- a/source/blender/blenkernel/intern/key.c +++ b/source/blender/blenkernel/intern/key.c @@ -35,6 +35,8 @@ #include "MEM_guardedalloc.h" +#include "BLI_blenlib.h" + #include "DNA_anim_types.h" #include "DNA_curve_types.h" #include "DNA_key_types.h" @@ -57,7 +59,7 @@ #include "BKE_object.h" #include "BKE_utildefines.h" -#include "BLI_blenlib.h" +#include "RNA_access.h" #ifdef HAVE_CONFIG_H @@ -1489,3 +1491,24 @@ KeyBlock *key_get_named_keyblock(Key *key, const char name[]) return NULL; } + +/* Get RNA-Path for 'value' setting of the given ShapeKey + * NOTE: the user needs to free the returned string once they're finishe with it + */ +char *key_get_curValue_rnaPath(Key *key, KeyBlock *kb) +{ + PointerRNA ptr; + PropertyRNA *prop; + + /* sanity checks */ + if ELEM(NULL, key, kb) + return NULL; + + /* create the RNA pointer */ + RNA_pointer_create(key, &RNA_ShapeKey, kb, &ptr); + /* get pointer to the property too */ + prop= RNA_struct_find_property(&ptr, "value"); + + /* return the path */ + return RNA_path_from_ID_to_property(&ptr, prop); +} diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c index 7c9814eda7b..2cd41b0ffb7 100644 --- a/source/blender/editors/animation/anim_channels_defines.c +++ b/source/blender/editors/animation/anim_channels_defines.c @@ -1386,7 +1386,7 @@ static int acf_dsskey_setting_flag(int setting, short *neg) switch (setting) { case ACHANNEL_SETTING_EXPAND: /* expanded */ - return KEYBLOCK_DS_EXPAND; + return KEY_DS_EXPAND; case ACHANNEL_SETTING_MUTE: /* mute (only in NLA) */ return ADT_NLA_EVAL_OFF; @@ -1737,28 +1737,91 @@ static bAnimChannelType ACF_DSARM= /* ShapeKey Entry ------------------------------------------- */ -// XXX ... this is currently obsolete... -#if 0 -static void dummy_olddraw_shapekeys () +/* name for ShapeKey */ +static void acf_shapekey_name(bAnimListElem *ale, char *name) { - case ANIMTYPE_SHAPEKEY: /* shapekey channel */ - { - KeyBlock *kb = (KeyBlock *)ale->data; - - indent = 0; - special = -1; - - offset= (ale->id) ? 21 : 0; - - if (kb->name[0] == '\0') - sprintf(name, "Key %d", ale->index); - else + KeyBlock *kb= (KeyBlock *)ale->data; + + /* just copy the name... */ + if (kb && name) { + /* if the KeyBlock had a name, use it, otherwise use the index */ + if (kb->name[0]) strcpy(name, kb->name); + else + sprintf(name, "Key %d", ale->index); } - break; } -#endif + +/* check if some setting exists for this channel */ +static short acf_shapekey_setting_valid(bAnimContext *ac, bAnimListElem *ale, int setting) +{ + switch (setting) { + case ACHANNEL_SETTING_SELECT: /* selected */ + case ACHANNEL_SETTING_MUTE: /* muted */ + case ACHANNEL_SETTING_PROTECT: /* protected */ + return 1; + + /* nothing else is supported */ + default: + return 0; + } +} + +/* get the appropriate flag(s) for the setting when it is valid */ +static int acf_shapekey_setting_flag(int setting, short *neg) +{ + /* clear extra return data first */ + *neg= 0; + + switch (setting) { + case ACHANNEL_SETTING_MUTE: /* mute */ + return KEYBLOCK_MUTE; + + case ACHANNEL_SETTING_SELECT: /* selected */ + return KEYBLOCK_SEL; + + case ACHANNEL_SETTING_PROTECT: /* locked */ + return KEYBLOCK_LOCKED; + + default: /* unsupported */ + return 0; + } +} + +/* get pointer to the setting */ +static void *acf_shapekey_setting_ptr(bAnimListElem *ale, int setting, short *type) +{ + KeyBlock *kb= (KeyBlock *)ale->data; + + /* clear extra return data first */ + *type= 0; + + switch (setting) { + case ACHANNEL_SETTING_SELECT: /* selected */ + case ACHANNEL_SETTING_MUTE: /* muted */ + case ACHANNEL_SETTING_PROTECT: /* protected */ + GET_ACF_FLAG_PTR(kb->flag) + + default: /* unsupported */ + return NULL; + } +} + +/* shapekey expander type define */ +static bAnimChannelType ACF_SHAPEKEY= +{ + acf_generic_channel_backdrop, /* backdrop */ + acf_generic_indention_0, /* indent level */ + acf_generic_basic_offset, /* offset */ + + acf_shapekey_name, /* name */ + NULL, /* icon */ + + acf_shapekey_setting_valid, /* has setting */ + acf_shapekey_setting_flag, /* flag for setting */ + acf_shapekey_setting_ptr /* pointer for setting */ +}; /* Grease Pencil entries ------------------------------------------- */ // XXX ... this is currently not restored yet @@ -1923,7 +1986,7 @@ void ANIM_init_channel_typeinfo_data (void) animchannelTypeInfo[type++]= &ACF_DSMBALL; /* MetaBall Channel */ animchannelTypeInfo[type++]= &ACF_DSARM; /* Armature Channel */ - animchannelTypeInfo[type++]= NULL; /* ShapeKey */ // XXX this is no longer used for now... + animchannelTypeInfo[type++]= &ACF_SHAPEKEY; /* ShapeKey */ // XXX not restored yet animchannelTypeInfo[type++]= NULL; /* Grease Pencil Datablock */ @@ -2237,7 +2300,57 @@ static void achannel_setting_slider_cb(bContext *C, void *id_poin, void *fcu_poi } } - +/* callback for shapekey widget sliders - insert keyframes */ +static void achannel_setting_slider_shapekey_cb(bContext *C, void *key_poin, void *kb_poin) +{ + Key *key= (Key *)key_poin; + KeyBlock *kb= (KeyBlock *)kb_poin; + char *rna_path= key_get_curValue_rnaPath(key, kb); + + Scene *scene= CTX_data_scene(C); + PointerRNA id_ptr, ptr; + PropertyRNA *prop; + short flag=0, done=0; + float cfra; + + /* get current frame */ + // NOTE: this will do for now... + cfra= (float)CFRA; + + /* get flags for keyframing */ + if (IS_AUTOKEY_FLAG(INSERTNEEDED)) + flag |= INSERTKEY_NEEDED; + if (IS_AUTOKEY_FLAG(AUTOMATKEY)) + flag |= INSERTKEY_MATRIX; + if (IS_AUTOKEY_MODE(scene, EDITKEYS)) + flag |= INSERTKEY_REPLACE; + + + /* get RNA pointer, and resolve the path */ + RNA_id_pointer_create((ID *)key, &id_ptr); + + /* try to resolve the path stored in the F-Curve */ + if (RNA_path_resolve(&id_ptr, rna_path, &ptr, &prop)) { + /* find or create new F-Curve */ + // XXX is the group name for this ok? + bAction *act= verify_adt_action((ID *)key, 1); + FCurve *fcu= verify_fcurve(act, NULL, rna_path, 0, 1); + + /* set the special 'replace' flag if on a keyframe */ + if (fcurve_frame_has_keyframe(fcu, cfra, 0)) + flag |= INSERTKEY_REPLACE; + + /* insert a keyframe for this F-Curve */ + done= insert_keyframe_direct(ptr, prop, fcu, cfra, flag); + + if (done) + WM_event_add_notifier(C, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL); + } + + /* free the path */ + if (rna_path) + MEM_freeN(rna_path); +} /* Draw a widget for some setting */ static void draw_setting_widget (bAnimContext *ac, bAnimListElem *ale, bAnimChannelType *acf, uiBlock *block, int xpos, int ypos, int setting) @@ -2445,7 +2558,7 @@ void ANIM_channel_draw_widgets (bAnimContext *ac, bAnimListElem *ale, uiBlock *b * and wouldn't be able to auto-keyframe... * - slider should start before the toggles (if they're visible) to keep a clean line down the side */ - if ((draw_sliders) && (ale->type == ANIMTYPE_FCURVE)) { + if ((draw_sliders) && ELEM(ale->type, ANIMTYPE_FCURVE, ANIMTYPE_SHAPEKEY)) { /* adjust offset */ offset += SLIDER_WIDTH; @@ -2453,20 +2566,49 @@ void ANIM_channel_draw_widgets (bAnimContext *ac, bAnimListElem *ale, uiBlock *b uiBlockSetEmboss(block, UI_EMBOSS); if (ale->id) { /* Slider using RNA Access -------------------- */ - FCurve *fcu= (FCurve *)ale->data; PointerRNA id_ptr, ptr; PropertyRNA *prop; + char *rna_path = NULL; + int array_index = 0; + short free_path = 0; - /* get RNA pointer, and resolve the path */ - RNA_id_pointer_create(ale->id, &id_ptr); - - /* try to resolve the path */ - if (RNA_path_resolve(&id_ptr, fcu->rna_path, &ptr, &prop)) { - uiBut *but; + /* get destination info */ + if (ale->type == ANIMTYPE_FCURVE) { + FCurve *fcu= (FCurve *)ale->data; - /* create the slider button, and assign relevant callback to ensure keyframes are inserted... */ - but= uiDefAutoButR(block, &ptr, prop, fcu->array_index, "", 0, (int)v2d->cur.xmax-offset, ymid, SLIDER_WIDTH, (int)ymaxc-yminc); - uiButSetFunc(but, achannel_setting_slider_cb, ale->id, fcu); + rna_path= fcu->rna_path; + array_index= fcu->array_index; + } + else if (ale->type == ANIMTYPE_SHAPEKEY) { + KeyBlock *kb= (KeyBlock *)ale->data; + Key *key= (Key *)ale->id; + + rna_path= key_get_curValue_rnaPath(key, kb); + free_path= 1; + } + + /* only if RNA-Path found */ + if (rna_path) { + /* get RNA pointer, and resolve the path */ + RNA_id_pointer_create(ale->id, &id_ptr); + + /* try to resolve the path */ + if (RNA_path_resolve(&id_ptr, rna_path, &ptr, &prop)) { + uiBut *but; + + /* create the slider button, and assign relevant callback to ensure keyframes are inserted... */ + but= uiDefAutoButR(block, &ptr, prop, array_index, "", 0, (int)v2d->cur.xmax-offset, ymid, SLIDER_WIDTH, (int)ymaxc-yminc); + + /* assign keyframing function according to slider type */ + if (ale->type == ANIMTYPE_SHAPEKEY) + uiButSetFunc(but, achannel_setting_slider_shapekey_cb, ale->id, ale->data); + else + uiButSetFunc(but, achannel_setting_slider_cb, ale->id, ale->data); + } + + /* free the path if necessary */ + if (free_path) + MEM_freeN(rna_path); } } else { /* Special Slider for stuff without RNA Access ---------- */ diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 3b6c7fad471..efdad53f89f 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -238,6 +238,10 @@ void ANIM_deselect_anim_channels (void *data, short datatype, short test, short if (ale->flag & FCURVE_SELECTED) sel= ACHANNEL_SETFLAG_CLEAR; break; + case ANIMTYPE_SHAPEKEY: + if (ale->flag & KEYBLOCK_SEL) + sel= ACHANNEL_SETFLAG_CLEAR; + break; case ANIMTYPE_NLATRACK: if (ale->flag & NLATRACK_SELECTED) sel= ACHANNEL_SETFLAG_CLEAR; @@ -307,6 +311,13 @@ void ANIM_deselect_anim_channels (void *data, short datatype, short test, short fcu->flag &= ~FCURVE_ACTIVE; } break; + case ANIMTYPE_SHAPEKEY: + { + KeyBlock *kb= (KeyBlock *)ale->data; + + ACHANNEL_SET_FLAG(kb, sel, KEYBLOCK_SEL); + } + break; case ANIMTYPE_NLATRACK: { NlaTrack *nlt= (NlaTrack *)ale->data; @@ -1517,6 +1528,24 @@ static int mouse_anim_channels (bAnimContext *ac, float x, int channel_index, sh if (fcu->flag & FCURVE_SELECTED) ANIM_set_active_channel(ac, ac->data, ac->datatype, filter, fcu, ANIMTYPE_FCURVE); + notifierFlags |= ND_ANIMCHAN_SELECT; + } + break; + case ANIMTYPE_SHAPEKEY: + { + KeyBlock *kb= (KeyBlock *)ale->data; + + /* select/deselect */ + if (selectmode == SELECT_INVERT) { + /* inverse selection status of this ShapeKey only */ + kb->flag ^= KEYBLOCK_SEL; + } + else { + /* select ShapeKey by itself */ + ANIM_deselect_anim_channels(ac->data, ac->datatype, 0, ACHANNEL_SETFLAG_CLEAR); + kb->flag |= KEYBLOCK_SEL; + } + notifierFlags |= ND_ANIMCHAN_SELECT; } break; @@ -1557,9 +1586,6 @@ static int mouse_anim_channels (bAnimContext *ac, float x, int channel_index, sh #endif // XXX future of this is unclear } break; - case ANIMTYPE_SHAPEKEY: - /* TODO: shapekey channels cannot be selected atm... */ - break; default: printf("Error: Invalid channel type in mouse_anim_channels() \n"); } diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index ea097420d1a..84da3662661 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -647,6 +647,36 @@ bAnimListElem *make_new_animlistelem (void *data, short datatype, void *owner, s ale->datatype= ALE_FCURVE; } break; + + case ANIMTYPE_SHAPEKEY: + { + KeyBlock *kb= (KeyBlock *)data; + Key *key= (Key *)ale->id; + + ale->flag= kb->flag; + + /* whether we have keyframes depends on whether there is a Key block to find it from */ + if (key) { + /* index of shapekey is defined by place in key's list */ + ale->index= BLI_findindex(&key->block, kb); + + /* the corresponding keyframes are from the animdata */ + if (ale->adt && ale->adt->action) { + bAction *act= ale->adt->action; + char *rna_path = key_get_curValue_rnaPath(key, kb); + + /* try to find the F-Curve which corresponds to this exactly, + * then free the MEM_alloc'd string + */ + if (rna_path) { + ale->key_data= list_find_fcurve(&act->curves, rna_path, 0); + MEM_freeN(rna_path); + } + } + ale->datatype= (ale->key_data)? ALE_FCURVE : ALE_NONE; + } + } + break; case ANIMTYPE_GPLAYER: { @@ -892,7 +922,51 @@ static int animdata_filter_nla (ListBase *anim_data, bDopeSheet *ads, AnimData * /* return the number of items added to the list */ return items; } - + +/* Include ShapeKey Data for ShapeKey Editor */ +static int animdata_filter_shapekey (ListBase *anim_data, Key *key, int filter_mode) +{ + int items = 0; + + /* check if channels or only F-Curves */ + if ((filter_mode & ANIMFILTER_CURVESONLY) == 0) { + bAnimListElem *ale; + KeyBlock *kb; + + /* loop through the channels adding ShapeKeys as appropriate */ + for (kb= key->block.first; kb; kb= kb->next) { + /* skip the first one, since that's the non-animateable basis */ + // XXX maybe in future this may become handy? + if (kb == key->block.first) continue; + + /* only work with this channel and its subchannels if it is editable */ + if (!(filter_mode & ANIMFILTER_FOREDIT) || EDITABLE_SHAPEKEY(kb)) { + /* only include this track if selected in a way consistent with the filtering requirements */ + if ( ANIMCHANNEL_SELOK(SEL_SHAPEKEY(kb)) ) { + // TODO: consider 'active' too? + + /* owner-id here must be key so that the F-Curve can be resolved... */ + ale= make_new_animlistelem(kb, ANIMTYPE_SHAPEKEY, NULL, ANIMTYPE_NONE, (ID *)key); + + if (ale) { + BLI_addtail(anim_data, ale); + items++; + } + } + } + } + } + else { + /* just use the action associated with the shapekey */ + // FIXME: is owner-id and having no owner/dopesheet really fine? + if (key->adt && key->adt->action) + items= animdata_filter_action(anim_data, NULL, key->adt->action, filter_mode, NULL, ANIMTYPE_NONE, (ID *)key); + } + + /* return the number of items added to the list */ + return items; +} + #if 0 // FIXME: switch this to use the bDopeSheet... static int animdata_filter_gpencil (ListBase *anim_data, bScreen *sc, int filter_mode) @@ -1944,9 +2018,11 @@ int ANIM_animdata_filter (bAnimContext *ac, ListBase *anim_data, int filter_mode } break; - case ANIMCONT_SHAPEKEY: + case ANIMCONT_SHAPEKEY: /* 'ShapeKey Editor' */ { - //items= animdata_filter_shapekey(anim_data, data, filter_mode, NULL, ANIMTYPE_NONE, (ID *)obact); + /* the check for the DopeSheet summary is included here since the summary works here too */ + if (animdata_filter_dopesheet_summary(ac, anim_data, filter_mode, &items)) + items= animdata_filter_shapekey(anim_data, data, filter_mode); } break; diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h index 271827c2aba..316f1b58d33 100644 --- a/source/blender/editors/include/ED_anim_api.h +++ b/source/blender/editors/include/ED_anim_api.h @@ -99,7 +99,7 @@ typedef struct bAnimListElem { void *data; /* source data this elem represents */ int type; /* one of the ANIMTYPE_* values */ int flag; /* copy of elem's flags for quick access */ - int index; /* copy of adrcode where applicable */ + int index; /* for un-named data, the index of the data in it's collection */ void *key_data; /* motion data - mostly F-Curves, but can be other types too */ short datatype; /* type of motion data to expect */ @@ -144,7 +144,7 @@ typedef enum eAnim_ChannelType { ANIMTYPE_DSMBALL, ANIMTYPE_DSARM, - ANIMTYPE_SHAPEKEY, // XXX probably can become depreceated??? + ANIMTYPE_SHAPEKEY, ANIMTYPE_GPDATABLOCK, ANIMTYPE_GPLAYER, @@ -209,7 +209,7 @@ typedef enum eAnimFilter_Flags { #define FILTER_MAT_OBJC(ob) ((ob->nlaflag & OB_ADS_SHOWMATS)) #define FILTER_PART_OBJC(ob) ((ob->nlaflag & OB_ADS_SHOWPARTS)) /* 'Sub-object' channels (flags stored in Data block) */ -#define FILTER_SKE_OBJD(key) ((key->flag & KEYBLOCK_DS_EXPAND)) +#define FILTER_SKE_OBJD(key) ((key->flag & KEY_DS_EXPAND)) #define FILTER_MAT_OBJD(ma) ((ma->flag & MA_DS_EXPAND)) #define FILTER_LAM_OBJD(la) ((la->flag & LA_DS_EXPAND)) #define FILTER_CAM_OBJD(ca) ((ca->flag & CAM_DS_EXPAND)) @@ -232,6 +232,10 @@ typedef enum eAnimFilter_Flags { #define EDITABLE_FCU(fcu) ((fcu->flag & FCURVE_PROTECTED)==0) #define SEL_FCU(fcu) (fcu->flag & (FCURVE_ACTIVE|FCURVE_SELECTED)) +/* ShapeKey mode only */ +#define EDITABLE_SHAPEKEY(kb) ((kb->flag & KEYBLOCK_LOCKED)==0) +#define SEL_SHAPEKEY(kb) (kb->flag & KEYBLOCK_SEL) + /* Grease Pencil only */ /* Grease Pencil datablock settings */ #define EXPANDED_GPD(gpd) (gpd->flag & GP_DATA_EXPAND) diff --git a/source/blender/makesdna/DNA_key_types.h b/source/blender/makesdna/DNA_key_types.h index c42e555d562..e86abf12424 100644 --- a/source/blender/makesdna/DNA_key_types.h +++ b/source/blender/makesdna/DNA_key_types.h @@ -80,6 +80,7 @@ typedef struct Key { #define KEY_RELATIVE 1 /* key->flag */ +#define KEY_DS_EXPAND 1 /* keyblock->type */ #define KEY_LINEAR 0 @@ -87,8 +88,9 @@ typedef struct Key { #define KEY_BSPLINE 2 /* keyblock->flag */ -#define KEYBLOCK_MUTE 1 -#define KEYBLOCK_DS_EXPAND 2 +#define KEYBLOCK_MUTE (1<<0) +#define KEYBLOCK_SEL (1<<1) +#define KEYBLOCK_LOCKED (1<<2) #endif From 299adde803de5f0bb6f5fd7cc95ea9e61219aea2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Oct 2009 13:04:59 +0000 Subject: [PATCH 014/412] shape key mirror tool, access from shapekey list buttons --- release/scripts/ui/buttons_data_mesh.py | 1 + source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 1 + .../blender/editors/object/object_shapekey.c | 88 ++++++++++++++++++- 4 files changed, 89 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 81e2ac15859..eeee1512978 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -125,6 +125,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): subcol = col.column(align=True) subcol.itemO("object.shape_key_add", icon='ICON_ZOOMIN', text="") subcol.itemO("object.shape_key_remove", icon='ICON_ZOOMOUT', text="") + subcol.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") if kb: col.itemS() diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 6a9974830b3..d56814d847d 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -176,6 +176,7 @@ void OBJECT_OT_game_property_remove(struct wmOperatorType *ot); void OBJECT_OT_shape_key_add(struct wmOperatorType *ot); void OBJECT_OT_shape_key_remove(struct wmOperatorType *ot); void OBJECT_OT_shape_key_clear(struct wmOperatorType *ot); +void OBJECT_OT_shape_key_mirror(struct wmOperatorType *ot); /* object_group.c */ void OBJECT_OT_group_add(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index c6baf84fb68..7c705335630 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -172,6 +172,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_shape_key_add); WM_operatortype_append(OBJECT_OT_shape_key_remove); WM_operatortype_append(OBJECT_OT_shape_key_clear); + WM_operatortype_append(OBJECT_OT_shape_key_mirror); WM_operatortype_append(LATTICE_OT_select_all_toggle); WM_operatortype_append(LATTICE_OT_make_regular); diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index b7db3a20ed1..442b86abd98 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -70,6 +70,7 @@ #include "BLO_sys_types.h" // for intptr_t support #include "ED_object.h" +#include "ED_mesh.h" #include "RNA_access.h" #include "RNA_define.h" @@ -401,7 +402,7 @@ void insert_curvekey(Scene *scene, Curve *cu, short rel) /*********************** add shape key ***********************/ -void ED_object_shape_key_add(bContext *C, Scene *scene, Object *ob) +static void ED_object_shape_key_add(bContext *C, Scene *scene, Object *ob) { Key *key; @@ -417,7 +418,7 @@ void ED_object_shape_key_add(bContext *C, Scene *scene, Object *ob) /*********************** remove shape key ***********************/ -int ED_object_shape_key_remove(bContext *C, Object *ob) +static int ED_object_shape_key_remove(bContext *C, Object *ob) { Main *bmain= CTX_data_main(C); KeyBlock *kb, *rkb; @@ -480,6 +481,63 @@ int ED_object_shape_key_remove(bContext *C, Object *ob) return 1; } +static int ED_object_shape_key_mirror(bContext *C, Scene *scene, Object *ob) +{ + KeyBlock *kb; + Key *key; + + key= ob_get_key(ob); + if(key==NULL) + return 0; + + kb= BLI_findlink(&key->block, ob->shapenr-1); + + if(kb) { + int i1, i2; + float *fp1, *fp2; + float tvec[3]; + char *tag_elem= MEM_callocN(sizeof(char) * kb->totelem, "shape_key_mirror"); + + + if(ob->type==OB_MESH) { + Mesh *me= ob->data; + MVert *mv; + + mesh_octree_table(ob, NULL, NULL, 's'); + + for(i1=0, mv=me->mvert; i1totvert; i1++, mv++) { + i2= mesh_get_x_mirror_vert(ob, i1); + if(i2 != -1) { + if(tag_elem[i1]==0 && tag_elem[i2]==0) { + fp1= ((float *)kb->data) + i1*3; + fp2= ((float *)kb->data) + i2*3; + + VECCOPY(tvec, fp1); + VECCOPY(fp1, fp2); + VECCOPY(fp2, tvec); + + /* flip x axis */ + fp1[0] = -fp1[0]; + fp2[0] = -fp2[0]; + } + tag_elem[i1]= tag_elem[i2]= 1; + } + + } + + mesh_octree_table(ob, NULL, NULL, 'e'); + } + /* todo, other types? */ + + MEM_freeN(tag_elem); + } + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + + return 1; +} + /********************** shape key operators *********************/ static int shape_key_poll(bContext *C) @@ -572,3 +630,29 @@ void OBJECT_OT_shape_key_clear(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } + +static int shape_key_mirror_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + + if(!ED_object_shape_key_mirror(C, scene, ob)) + return OPERATOR_CANCELLED; + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_shape_key_mirror(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Mirror Shape Key"; + ot->idname= "OBJECT_OT_shape_key_mirror"; + + /* api callbacks */ + ot->poll= shape_key_poll; + ot->exec= shape_key_mirror_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + From 863e661cc363067fbbe39f4e876e35268bb97ab8 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 16 Oct 2009 15:28:43 +0000 Subject: [PATCH 015/412] Bugfix: sculpting with a multires modifier at level 1 would crash. --- source/blender/editors/sculpt_paint/sculpt.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c index 4f667ab7976..c4c7f436f12 100644 --- a/source/blender/editors/sculpt_paint/sculpt.c +++ b/source/blender/editors/sculpt_paint/sculpt.c @@ -1107,7 +1107,7 @@ char sculpt_modifiers_active(Object *ob) it's the last modifier on the stack and it is not on the first level */ static struct MultiresModifierData *sculpt_multires_active(Object *ob) { - ModifierData *md; + ModifierData *md, *nmd; for(md= modifiers_getVirtualModifierList(ob); md; md= md->next) { if(md->type == eModifierType_Multires) { @@ -1115,12 +1115,11 @@ static struct MultiresModifierData *sculpt_multires_active(Object *ob) /* Check if any of the modifiers after multires are active * if not it can use the multires struct */ - for (md= md->next; md; md= md->next) { - if(md->mode & eModifierMode_Realtime) - return NULL; - } + for (nmd= md->next; nmd; nmd= nmd->next) + if(nmd->mode & eModifierMode_Realtime) + break; - if(mmd->lvl != 1) + if(!nmd && mmd->lvl != 1) return mmd; } } From 4957d50b790aa6c9b149531faacdeae1d8856aae Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Oct 2009 16:09:57 +0000 Subject: [PATCH 016/412] shape key mirror failed with center verts --- source/blender/editors/object/object_shapekey.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 442b86abd98..61ea9ab44a0 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -507,7 +507,12 @@ static int ED_object_shape_key_mirror(bContext *C, Scene *scene, Object *ob) for(i1=0, mv=me->mvert; i1totvert; i1++, mv++) { i2= mesh_get_x_mirror_vert(ob, i1); - if(i2 != -1) { + if(i2==i1) { + fp1= ((float *)kb->data) + i1*3; + fp1[0] = -fp1[0]; + tag_elem[i1]= 1; + } + else if(i2 != -1) { if(tag_elem[i1]==0 && tag_elem[i2]==0) { fp1= ((float *)kb->data) + i1*3; fp2= ((float *)kb->data) + i2*3; @@ -522,7 +527,6 @@ static int ED_object_shape_key_mirror(bContext *C, Scene *scene, Object *ob) } tag_elem[i1]= tag_elem[i2]= 1; } - } mesh_octree_table(ob, NULL, NULL, 'e'); From 99ec29193aee1c4d1469091492746c6ec416384f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Oct 2009 18:03:38 +0000 Subject: [PATCH 017/412] bisplay shapekeys as sliders in the dope sheet editor --- release/scripts/ui/buttons_data_mesh.py | 2 +- source/blender/editors/animation/anim_channels_defines.c | 2 +- source/blender/makesrna/intern/rna_key.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index eeee1512978..35d0ecafdf1 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -146,7 +146,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): row = layout.row() row.enabled = ob.shape_key_lock == False - row.itemR(kb, "value", slider=True) + row.itemR(kb, "value") row.itemO("object.shape_key_clear", icon='ICON_X', text="") split = layout.split() diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c index 2cd41b0ffb7..54a08cf4702 100644 --- a/source/blender/editors/animation/anim_channels_defines.c +++ b/source/blender/editors/animation/anim_channels_defines.c @@ -2147,7 +2147,7 @@ void ANIM_channel_setting_set (bAnimContext *ac, bAnimListElem *ale, int setting // XXX hardcoded size of icons #define ICON_WIDTH 17 // XXX hardcoded width of sliders -#define SLIDER_WIDTH 70 +#define SLIDER_WIDTH 80 /* Draw the given channel */ // TODO: make this use UI controls for the buttons diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index e1551404438..230ed90c131 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -363,7 +363,7 @@ static void rna_def_keyblock(BlenderRNA *brna) RNA_def_property_update(prop, 0, "rna_Key_update_data"); /* for now, this is editable directly, as users can set this even if they're not animating them (to test results) */ - prop= RNA_def_property(srna, "value", PROP_FLOAT, PROP_NONE); + prop= RNA_def_property(srna, "value", PROP_FLOAT, PROP_FACTOR); RNA_def_property_float_sdna(prop, NULL, "curval"); RNA_def_property_float_funcs(prop, NULL, "rna_ShapeKey_value_set", "rna_ShapeKey_value_range"); RNA_def_property_ui_text(prop, "Value", "Value of shape key at the current frame."); From 38ce0c64cd49222b7e42867f2eb81036b71a336d Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 16 Oct 2009 19:25:51 +0000 Subject: [PATCH 018/412] Forgot to commit these files in 23837. --- release/scripts/ui/buttons_game.py | 28 ++++++++++++++-------------- release/scripts/ui/space_view3d.py | 8 +++++--- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/buttons_game.py index 5f5d4f916d0..bf25289333f 100644 --- a/release/scripts/ui/buttons_game.py +++ b/release/scripts/ui/buttons_game.py @@ -158,16 +158,16 @@ class PHYSICS_PT_game_collision_bounds(PhysicsButtonsPanel): bpy.types.register(PHYSICS_PT_game_physics) bpy.types.register(PHYSICS_PT_game_collision_bounds) -class SceneButtonsPanel(bpy.types.Panel): +class RenderButtonsPanel(bpy.types.Panel): __space_type__ = 'PROPERTIES' __region_type__ = 'WINDOW' - __context__ = "scene" + __context__ = "render" def poll(self, context): rd = context.scene.render_data return (rd.engine == 'BLENDER_GAME') -class SCENE_PT_game(SceneButtonsPanel): +class RENDER_PT_game(RenderButtonsPanel): __label__ = "Game" def draw(self, context): @@ -177,7 +177,7 @@ class SCENE_PT_game(SceneButtonsPanel): row.itemO("view3d.game_start", text="Start") row.itemL() -class SCENE_PT_game_player(SceneButtonsPanel): +class RENDER_PT_game_player(RenderButtonsPanel): __label__ = "Standalone Player" def draw(self, context): @@ -208,7 +208,7 @@ class SCENE_PT_game_player(SceneButtonsPanel): if gs.framing_type == 'LETTERBOX': col.itemR(gs, "framing_color", text="") -class SCENE_PT_game_stereo(SceneButtonsPanel): +class RENDER_PT_game_stereo(RenderButtonsPanel): __label__ = "Stereo" def draw(self, context): @@ -257,7 +257,7 @@ class SCENE_PT_game_stereo(SceneButtonsPanel): layout.itemR(gs, "dome_text") -class SCENE_PT_game_shading(SceneButtonsPanel): +class RENDER_PT_game_shading(RenderButtonsPanel): __label__ = "Shading" def draw(self, context): @@ -279,7 +279,7 @@ class SCENE_PT_game_shading(SceneButtonsPanel): col.itemR(gs, "glsl_nodes", text="Nodes") col.itemR(gs, "glsl_extra_textures", text="Extra Textures") -class SCENE_PT_game_performance(SceneButtonsPanel): +class RENDER_PT_game_performance(RenderButtonsPanel): __label__ = "Performance" def draw(self, context): @@ -301,7 +301,7 @@ class SCENE_PT_game_performance(SceneButtonsPanel): col.itemR(gs, "all_frames") col.itemR(gs, "display_lists") -class SCENE_PT_game_sound(SceneButtonsPanel): +class RENDER_PT_game_sound(RenderButtonsPanel): __label__ = "Sound" def draw(self, context): @@ -313,12 +313,12 @@ class SCENE_PT_game_sound(SceneButtonsPanel): layout.itemR(scene, "speed_of_sound", text="Speed") layout.itemR(scene, "doppler_factor") -bpy.types.register(SCENE_PT_game) -bpy.types.register(SCENE_PT_game_player) -bpy.types.register(SCENE_PT_game_stereo) -bpy.types.register(SCENE_PT_game_shading) -bpy.types.register(SCENE_PT_game_performance) -bpy.types.register(SCENE_PT_game_sound) +bpy.types.register(RENDER_PT_game) +bpy.types.register(RENDER_PT_game_player) +bpy.types.register(RENDER_PT_game_stereo) +bpy.types.register(RENDER_PT_game_shading) +bpy.types.register(RENDER_PT_game_performance) +bpy.types.register(RENDER_PT_game_sound) class WorldButtonsPanel(bpy.types.Panel): __space_type__ = 'PROPERTIES' diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 2382e866091..b4300710dab 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1229,8 +1229,11 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): def draw(self, context): layout = self.layout + view = context.space_data gs = context.scene.game_data + ob = context.object + mesh = context.active_object.data col = layout.column() col.itemR(view, "display_floor", text="Grid Floor") @@ -1240,13 +1243,14 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): col.itemR(view, "outline_selected") col.itemR(view, "all_object_centers") col.itemR(view, "relationship_lines") + if ob.type =='MESH': + col.itemR(mesh, "all_edges") col = layout.column() col.itemL(text="Shading:") col.itemR(gs, "material_mode", text="") col.itemR(view, "textured_solid") - # XXX - the Quad View options don't work yet # layout.itemS() # @@ -1273,8 +1277,6 @@ class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): col = layout.column() col.itemL(text="Overlays:") col.itemR(mesh, "draw_edges", text="Edges") - col.itemR(mesh, "all_edges") - col.itemS() col.itemR(mesh, "draw_faces", text="Faces") col.itemR(mesh, "draw_creases", text="Creases") col.itemR(mesh, "draw_bevel_weights", text="Bevel Weights") From 474e97e6d22973cf95262d5262e880c15683b828 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 16 Oct 2009 19:46:53 +0000 Subject: [PATCH 019/412] Fix for World tab: Unlinking an World Data block caused the whole tab to disappear. --- source/blender/editors/space_buttons/buttons_context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index eb88ea8519e..504e4a6866e 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -132,7 +132,9 @@ static int buttons_context_path_world(ButsContextPath *path) if(world) { RNA_id_pointer_create(&scene->world->id, &path->ptr[path->len]); path->len++; - + return 1; + } + else { return 1; } } From 53624a53d9054a91688a1a988c6f3515ab601923 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 17 Oct 2009 04:22:52 +0000 Subject: [PATCH 020/412] Assorted tweaks for animation editors: * Changing to the ShapeKey editor now automatically enables the value sliders * Filtering code for ShapeKey editor can now do AnimData block filtering too (internal details...) * Silenced console warnings when inserting keyframes on F-Curves with no keyframes already (for Animation Editor sliders) * Made the update code for keyframe transforms send more general depsgraph updates. Unfortuately, this still doesn't resolve the update problems with shapekeys --- source/blender/blenkernel/intern/depsgraph.c | 13 ++++++++++++- source/blender/editors/animation/anim_filter.c | 10 +++++++--- source/blender/editors/animation/keyframing.c | 2 +- source/blender/editors/space_action/action_draw.c | 13 +------------ source/blender/editors/space_action/action_header.c | 12 +++++++++++- .../blender/editors/transform/transform_generics.c | 11 ++--------- 6 files changed, 34 insertions(+), 27 deletions(-) diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c index 26ea17a296a..d60a26e8feb 100644 --- a/source/blender/blenkernel/intern/depsgraph.c +++ b/source/blender/blenkernel/intern/depsgraph.c @@ -2235,7 +2235,18 @@ void DAG_id_flush_update(ID *id, short flag) } } } - + + /* set flags based on ShapeKey */ + if(idtype == ID_KE) { + for(obt=bmain->object.first; obt; obt= obt->id.next) { + Key *key= ob_get_key(obt); + if(!(ob && obt == ob) && ((ID *)key == id)) { + obt->flag |= (OB_RECALC|OB_RECALC_DATA); + BKE_ptcache_object_reset(sce, obt, PTCACHE_RESET_DEPSGRAPH); + } + } + } + /* set flags based on particle settings */ if(idtype == ID_PA) { ParticleSystem *psys; diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index 84da3662661..aa1bc108176 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -926,11 +926,11 @@ static int animdata_filter_nla (ListBase *anim_data, bDopeSheet *ads, AnimData * /* Include ShapeKey Data for ShapeKey Editor */ static int animdata_filter_shapekey (ListBase *anim_data, Key *key, int filter_mode) { + bAnimListElem *ale; int items = 0; /* check if channels or only F-Curves */ if ((filter_mode & ANIMFILTER_CURVESONLY) == 0) { - bAnimListElem *ale; KeyBlock *kb; /* loop through the channels adding ShapeKeys as appropriate */ @@ -959,8 +959,12 @@ static int animdata_filter_shapekey (ListBase *anim_data, Key *key, int filter_m else { /* just use the action associated with the shapekey */ // FIXME: is owner-id and having no owner/dopesheet really fine? - if (key->adt && key->adt->action) - items= animdata_filter_action(anim_data, NULL, key->adt->action, filter_mode, NULL, ANIMTYPE_NONE, (ID *)key); + if (key->adt) { + if (filter_mode & ANIMFILTER_ANIMDATA) + ANIMDATA_ADD_ANIMDATA(key) + else if (key->adt->action) + items= animdata_filter_action(anim_data, NULL, key->adt->action, filter_mode, NULL, ANIMTYPE_NONE, (ID *)key); + } } /* return the number of items added to the list */ diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 75218e6ea6e..6a16d6d0ee1 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -1430,7 +1430,7 @@ int autokeyframe_cfra_can_key(Scene *scene, ID *id) short fcurve_frame_has_keyframe (FCurve *fcu, float frame, short filter) { /* quick sanity check */ - if (fcu == NULL) + if (ELEM(NULL, fcu, fcu->bezt)) return 0; /* we either include all regardless of muting, or only non-muted */ diff --git a/source/blender/editors/space_action/action_draw.c b/source/blender/editors/space_action/action_draw.c index 7181a6b5aa1..7f2e1bd09e4 100644 --- a/source/blender/editors/space_action/action_draw.c +++ b/source/blender/editors/space_action/action_draw.c @@ -258,7 +258,7 @@ void draw_channel_strips(bAnimContext *ac, SpaceAction *saction, ARegion *ar) if (acf->has_setting(ac, ale, ACHANNEL_SETTING_SELECT)) sel= ANIM_channel_setting_get(ac, ale, ACHANNEL_SETTING_SELECT); - if (ELEM(ac->datatype, ANIMCONT_ACTION, ANIMCONT_DOPESHEET)) { + if (ELEM3(ac->datatype, ANIMCONT_ACTION, ANIMCONT_DOPESHEET, ANIMCONT_SHAPEKEY)) { switch (ale->type) { case ANIMTYPE_SUMMARY: { @@ -307,17 +307,6 @@ void draw_channel_strips(bAnimContext *ac, SpaceAction *saction, ARegion *ar) if (ac->datatype == ANIMCONT_ACTION) glRectf(act_start, (float)y-ACHANNEL_HEIGHT_HALF, act_end, (float)y+ACHANNEL_HEIGHT_HALF); } - else if (ac->datatype == ANIMCONT_SHAPEKEY) { - /* all frames that have a frame number less than one - * get a desaturated orange background - */ - glColor4ub(col2[0], col2[1], col2[2], 0x22); - glRectf(0.0f, (float)y-ACHANNEL_HEIGHT_HALF, 1.0f, (float)y+ACHANNEL_HEIGHT_HALF); - - /* frames one and higher get a saturated orange background */ - glColor4ub(col2[0], col2[1], col2[2], 0x44); - glRectf(1.0f, (float)y-ACHANNEL_HEIGHT_HALF, v2d->cur.xmax+EXTRA_SCROLL_PAD, (float)y+ACHANNEL_HEIGHT_HALF); - } else if (ac->datatype == ANIMCONT_GPENCIL) { /* frames less than one get less saturated background */ if (sel) glColor4ub(col1[0], col1[1], col1[2], 0x22); diff --git a/source/blender/editors/space_action/action_header.c b/source/blender/editors/space_action/action_header.c index ba5fc0893ec..aaf4b51c75e 100644 --- a/source/blender/editors/space_action/action_header.c +++ b/source/blender/editors/space_action/action_header.c @@ -69,6 +69,7 @@ enum { B_REDR= 1, + B_MODECHANGE, } eActHeader_Events; /* ********************************************************* */ @@ -254,6 +255,15 @@ static void act_editmenu(bContext *C, uiLayout *layout, void *arg_unused) static void do_action_buttons(bContext *C, void *arg, int event) { + /* special exception for mode changing - enable custom settings? */ + if (event == B_MODECHANGE) { + SpaceAction *saction= CTX_wm_space_action(C); + + /* if the new mode is ShapeKeys editor, enable sliders */ + if (saction->mode == SACTCONT_SHAPEKEY) + saction->flag |= SACTION_SLIDERS; + } + ED_area_tag_refresh(CTX_wm_area(C)); ED_area_tag_redraw(CTX_wm_area(C)); } @@ -318,7 +328,7 @@ void action_header_buttons(const bContext *C, ARegion *ar) uiBlockSetEmboss(block, UI_EMBOSS); /* MODE SELECTOR */ - uiDefButC(block, MENU, B_REDR, + uiDefButC(block, MENU, B_MODECHANGE, "Editor Mode %t|DopeSheet %x3|Action Editor %x0|ShapeKey Editor %x1|Grease Pencil %x2", xco,yco,90,YIC, &saction->mode, 0, 1, 0, 0, "Editing modes for this editor"); diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 8dc71710d82..a7a35c281fd 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -284,15 +284,8 @@ static void animedit_refresh_id_tags (Scene *scene, ID *id) if (adt) adt->recalc |= ADT_RECALC_ANIM; - /* if ID-block is Object, set recalc flags */ - switch (GS(id->name)) { - case ID_OB: - { - Object *ob= (Object *)id; - DAG_id_flush_update(&ob->id, OB_RECALC_DATA); /* sets recalc flags */ - } - break; - } + /* set recalc flags */ + DAG_id_flush_update(id, OB_RECALC); // XXX or do we want something more restrictive? } } From 91d89c1ff7c215744e46957a1e7cc40adb7ac066 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Oct 2009 14:08:01 +0000 Subject: [PATCH 021/412] Adjustments to continuous grab - Use an enum for grab modes rather then boolean options. -- GHOST_kGrabNormal: continuous grab userpref disabled -- GHOST_kGrabWrap: wrap the mouse at the screen bounds * -- GHOST_kGrabHide: hide the mouse while grabbing and restore the mouse where it was initially pressed * GrabWrap is nice for transform and tools where you want some idea where the cursor is, previously I found both restoring the mouse at its original location and restoring at a clamped location was confusing with operators like transform, wrapping is not ideal but IMHO the best of a bad bunch of options. GrabHide is for numbuts, where restoring the mouse at the initial location isnt so confusing. --- intern/ghost/GHOST_C-api.h | 2 +- intern/ghost/GHOST_IWindow.h | 2 +- intern/ghost/GHOST_Rect.h | 22 +++++++ intern/ghost/GHOST_Types.h | 6 ++ intern/ghost/intern/GHOST_C-api.cpp | 4 +- intern/ghost/intern/GHOST_SystemX11.cpp | 43 +++++++------- intern/ghost/intern/GHOST_Window.cpp | 15 +++-- intern/ghost/intern/GHOST_Window.h | 57 ++++++------------- intern/ghost/intern/GHOST_WindowCocoa.h | 2 +- intern/ghost/intern/GHOST_WindowX11.cpp | 46 +++++---------- intern/ghost/intern/GHOST_WindowX11.h | 5 +- .../editors/interface/interface_handlers.c | 4 +- source/blender/windowmanager/WM_api.h | 4 +- .../blender/windowmanager/intern/wm_cursors.c | 13 +++-- .../windowmanager/intern/wm_event_system.c | 6 +- 15 files changed, 114 insertions(+), 117 deletions(-) diff --git a/intern/ghost/GHOST_C-api.h b/intern/ghost/GHOST_C-api.h index 00d2cdb1e3b..93bd12437ab 100644 --- a/intern/ghost/GHOST_C-api.h +++ b/intern/ghost/GHOST_C-api.h @@ -376,7 +376,7 @@ extern GHOST_TSuccess GHOST_SetCursorPosition(GHOST_SystemHandle systemhandle, * @return Indication of success. */ extern GHOST_TSuccess GHOST_SetCursorGrab(GHOST_WindowHandle windowhandle, - int grab, int warp, int restore); + GHOST_TGrabCursorMode mode); /*************************************************************************************** ** Access to mouse button and keyboard states. diff --git a/intern/ghost/GHOST_IWindow.h b/intern/ghost/GHOST_IWindow.h index 993b41a4d4f..3ab9bef2bfa 100644 --- a/intern/ghost/GHOST_IWindow.h +++ b/intern/ghost/GHOST_IWindow.h @@ -271,7 +271,7 @@ public: * @param grab The new grab state of the cursor. * @return Indication of success. */ - virtual GHOST_TSuccess setCursorGrab(bool grab, bool warp, bool restore) { return GHOST_kSuccess; }; + virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode) { return GHOST_kSuccess; }; }; diff --git a/intern/ghost/GHOST_Rect.h b/intern/ghost/GHOST_Rect.h index 6271ecad408..98169ad2aa4 100644 --- a/intern/ghost/GHOST_Rect.h +++ b/intern/ghost/GHOST_Rect.h @@ -126,6 +126,13 @@ public: */ virtual inline void unionPoint(GHOST_TInt32 x, GHOST_TInt32 y); + /** + * Grows the rectangle to included a point. + * @param x The x-coordinate of the point. + * @param y The y-coordinate of the point. + */ + virtual inline void wrapPoint(GHOST_TInt32 &x, GHOST_TInt32 &y, GHOST_TInt32 ofs); + /** * Returns whether the point is inside this rectangle. * Point on the boundary is considered inside. @@ -222,6 +229,21 @@ inline void GHOST_Rect::unionPoint(GHOST_TInt32 x, GHOST_TInt32 y) if (y > m_b) m_b = y; } +inline void GHOST_Rect::wrapPoint(GHOST_TInt32 &x, GHOST_TInt32 &y, GHOST_TInt32 ofs) +{ + GHOST_TInt32 w= getWidth(); + GHOST_TInt32 h= getHeight(); + + /* highly unlikely but avoid eternal loop */ + if(w-ofs <= 0 || h-ofs <= 0) + return; + + while(x-ofs < m_l) x+= w; + while(y-ofs < m_t) y+= h; + while(x+ofs > m_r) x-= w; + while(y+ofs > m_b) y-= h; +} + inline bool GHOST_Rect::isInside(GHOST_TInt32 x, GHOST_TInt32 y) const { return (x >= m_l) && (x <= m_r) && (y >= m_t) && (y <= m_b); diff --git a/intern/ghost/GHOST_Types.h b/intern/ghost/GHOST_Types.h index 14e3c4bb5f7..e98e58740ad 100644 --- a/intern/ghost/GHOST_Types.h +++ b/intern/ghost/GHOST_Types.h @@ -341,6 +341,12 @@ typedef enum { GHOST_kKeyF24 } GHOST_TKey; +typedef enum { + GHOST_kGrabDisable = 0, /* grab not set */ + GHOST_kGrabNormal, /* no cursor adjustments */ + GHOST_kGrabWrap, /* wrap the mouse location to prevent limiting screen bounds */ + GHOST_kGrabHide, /* hide the mouse while grabbing and restore the original location on release (numbuts) */ +} GHOST_TGrabCursorMode; typedef void* GHOST_TEventDataPtr; diff --git a/intern/ghost/intern/GHOST_C-api.cpp b/intern/ghost/intern/GHOST_C-api.cpp index e225ad4fd90..5563e0d1aa8 100644 --- a/intern/ghost/intern/GHOST_C-api.cpp +++ b/intern/ghost/intern/GHOST_C-api.cpp @@ -355,11 +355,11 @@ GHOST_TSuccess GHOST_SetCursorPosition(GHOST_SystemHandle systemhandle, GHOST_TSuccess GHOST_SetCursorGrab(GHOST_WindowHandle windowhandle, - int grab, int warp, int restore) + GHOST_TGrabCursorMode mode) { GHOST_IWindow* window = (GHOST_IWindow*) windowhandle; - return window->setCursorGrab(grab?true:false, warp?true:false, restore?true:false); + return window->setCursorGrab(mode); } diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp index 8c87abf16bc..abf0b612f9a 100644 --- a/intern/ghost/intern/GHOST_SystemX11.cpp +++ b/intern/ghost/intern/GHOST_SystemX11.cpp @@ -388,31 +388,36 @@ GHOST_SystemX11::processEvent(XEvent *xe) { XMotionEvent &xme = xe->xmotion; - if(window->getCursorWarp()) { - /* Calculate offscreen location and re-center the mouse */ - GHOST_TInt32 x_warp, y_warp, x_new, y_new, x_accum, y_accum; + if(window->getCursorGrabMode() != GHOST_kGrabDisable && window->getCursorGrabMode() != GHOST_kGrabNormal) + { + GHOST_TInt32 x_new= xme.x_root; + GHOST_TInt32 y_new= xme.y_root; + GHOST_TInt32 x_accum, y_accum; + GHOST_Rect bounds; - window->getCursorWarpPos(x_warp, y_warp); - getCursorPosition(x_new, y_new); + window->getClientBounds(bounds); - if(x_warp != x_new || y_warp != y_new) { - window->getCursorWarpAccum(x_accum, y_accum); - x_accum += x_new - x_warp; - y_accum += y_new - y_warp; + /* could also clamp to screen bounds + * wrap with a window outside the view will fail atm */ - window->setCursorWarpAccum(x_accum, y_accum); - setCursorPosition(x_warp, y_warp); /* reset */ + bounds.wrapPoint(x_new, y_new, 1); /* offset of one incase blender is at screen bounds */ - g_event = new - GHOST_EventCursor( - getMilliSeconds(), - GHOST_kEventCursorMove, - window, - x_warp + x_accum, - y_warp + y_accum - ); + window->getCursorGrabAccum(x_accum, y_accum); + if(x_new != xme.x_root || y_new != xme.y_root) { + setCursorPosition(x_new, y_new); /* wrap */ + window->setCursorGrabAccum(x_accum + (xme.x_root - x_new), y_accum + (xme.y_root - y_new)); } + + g_event = new + GHOST_EventCursor( + getMilliSeconds(), + GHOST_kEventCursorMove, + window, + xme.x_root + x_accum, + xme.y_root + y_accum + ); + } else { g_event = new diff --git a/intern/ghost/intern/GHOST_Window.cpp b/intern/ghost/intern/GHOST_Window.cpp index 94feb83e003..cda6bfa06ee 100644 --- a/intern/ghost/intern/GHOST_Window.cpp +++ b/intern/ghost/intern/GHOST_Window.cpp @@ -48,15 +48,14 @@ GHOST_Window::GHOST_Window( : m_drawingContextType(type), m_cursorVisible(true), - m_cursorGrabbed(false), - m_cursorWarp(false), + m_cursorGrab(GHOST_kGrabDisable), m_cursorShape(GHOST_kStandardCursorDefault), m_stereoVisual(stereoVisual) { m_isUnsavedChanges = false; - m_cursorWarpAccumPos[0] = 0; - m_cursorWarpAccumPos[1] = 0; + m_cursorGrabAccumPos[0] = 0; + m_cursorGrabAccumPos[1] = 0; m_fullScreen = state == GHOST_kWindowStateFullScreen; if (m_fullScreen) { @@ -98,13 +97,13 @@ GHOST_TSuccess GHOST_Window::setCursorVisibility(bool visible) } } -GHOST_TSuccess GHOST_Window::setCursorGrab(bool grab, bool warp, bool restore) +GHOST_TSuccess GHOST_Window::setCursorGrab(GHOST_TGrabCursorMode mode) { - if(m_cursorGrabbed == grab) + if(m_cursorGrab == mode) return GHOST_kSuccess; - if (setWindowCursorGrab(grab, warp, restore)) { - m_cursorGrabbed = grab; + if (setWindowCursorGrab(mode)) { + m_cursorGrab = mode; return GHOST_kSuccess; } else { diff --git a/intern/ghost/intern/GHOST_Window.h b/intern/ghost/intern/GHOST_Window.h index 786918716c5..e66a3c2fd36 100644 --- a/intern/ghost/intern/GHOST_Window.h +++ b/intern/ghost/intern/GHOST_Window.h @@ -158,10 +158,9 @@ public: * @return The visibility state of the cursor. */ inline virtual bool getCursorVisibility() const; - inline virtual bool getCursorWarp() const; - inline virtual bool getCursorWarpPos(GHOST_TInt32 &x, GHOST_TInt32 &y) const; - inline virtual bool getCursorWarpAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const; - inline virtual bool setCursorWarpAccum(GHOST_TInt32 x, GHOST_TInt32 y); + inline virtual GHOST_TGrabCursorMode getCursorGrabMode() const; + inline virtual void getCursorGrabAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const; + inline virtual void setCursorGrabAccum(GHOST_TInt32 x, GHOST_TInt32 y); /** * Shows or hides the cursor. @@ -175,7 +174,7 @@ public: * @param grab The new grab state of the cursor. * @return Indication of success. */ - virtual GHOST_TSuccess setCursorGrab(bool grab, bool warp, bool restore); + virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode); /** * Sets the window "modified" status, indicating unsaved changes @@ -247,7 +246,7 @@ protected: * Sets the cursor grab on the window using * native window system calls. */ - virtual GHOST_TSuccess setWindowCursorGrab(bool grab, bool warp, bool restore) { return GHOST_kSuccess; }; + virtual GHOST_TSuccess setWindowCursorGrab(GHOST_TGrabCursorMode mode) { return GHOST_kSuccess; }; /** * Sets the cursor shape on the window using @@ -274,16 +273,13 @@ protected: bool m_cursorVisible; /** The current grabbed state of the cursor */ - bool m_cursorGrabbed; - - /** The current warped state of the cursor */ - bool m_cursorWarp; + GHOST_TGrabCursorMode m_cursorGrab; /** Initial grab location. */ - GHOST_TInt32 m_cursorWarpInitPos[2]; + GHOST_TInt32 m_cursorGrabInitPos[2]; - /** Accumulated offset from m_cursorWarpInitPos. */ - GHOST_TInt32 m_cursorWarpAccumPos[2]; + /** Accumulated offset from m_cursorGrabInitPos. */ + GHOST_TInt32 m_cursorGrabAccumPos[2]; /** The current shape of the cursor */ GHOST_TStandardCursor m_cursorShape; @@ -317,40 +313,21 @@ inline bool GHOST_Window::getCursorVisibility() const return m_cursorVisible; } -inline bool GHOST_Window::getCursorWarp() const +inline GHOST_TGrabCursorMode GHOST_Window::getCursorGrabMode() const { - return m_cursorWarp; + return m_cursorGrab; } -inline bool GHOST_Window::getCursorWarpPos(GHOST_TInt32 &x, GHOST_TInt32 &y) const +inline void GHOST_Window::getCursorGrabAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const { - if(m_cursorWarp==false) - return GHOST_kFailure; - - x= m_cursorWarpInitPos[0]; - y= m_cursorWarpInitPos[1]; - return GHOST_kSuccess; + x= m_cursorGrabAccumPos[0]; + y= m_cursorGrabAccumPos[1]; } -inline bool GHOST_Window::getCursorWarpAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const +inline void GHOST_Window::setCursorGrabAccum(GHOST_TInt32 x, GHOST_TInt32 y) { - if(m_cursorWarp==false) - return GHOST_kFailure; - - x= m_cursorWarpAccumPos[0]; - y= m_cursorWarpAccumPos[1]; - return GHOST_kSuccess; -} - -inline bool GHOST_Window::setCursorWarpAccum(GHOST_TInt32 x, GHOST_TInt32 y) -{ - if(m_cursorWarp==false) - return GHOST_kFailure; - - m_cursorWarpAccumPos[0]= x; - m_cursorWarpAccumPos[1]= y; - - return GHOST_kSuccess; + m_cursorGrabAccumPos[0]= x; + m_cursorGrabAccumPos[1]= y; } inline GHOST_TStandardCursor GHOST_Window::getCursorShape() const diff --git a/intern/ghost/intern/GHOST_WindowCocoa.h b/intern/ghost/intern/GHOST_WindowCocoa.h index d6c154535a9..e5fff75c66e 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.h +++ b/intern/ghost/intern/GHOST_WindowCocoa.h @@ -239,7 +239,7 @@ protected: /** * Sets the cursor warp accumulator. Overriden for workaround due to Cocoa next event after cursor set giving delta values non zero */ - inline virtual bool setCursorWarpAccum(GHOST_TInt32 x, GHOST_TInt32 y); + inline virtual bool setCursorGrabAccum(GHOST_TInt32 x, GHOST_TInt32 y); /** * Sets the cursor grab on the window using diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index d197b534352..9914bad23c8 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -1400,47 +1400,27 @@ setWindowCursorVisibility( GHOST_TSuccess GHOST_WindowX11:: setWindowCursorGrab( - bool grab, bool warp, bool restore + GHOST_TGrabCursorMode mode ){ - if(grab) { - if(warp) { - m_system->getCursorPosition(m_cursorWarpInitPos[0], m_cursorWarpInitPos[1]); + if(mode != GHOST_kGrabDisable) { + if(mode != GHOST_kGrabNormal) { + m_system->getCursorPosition(m_cursorGrabInitPos[0], m_cursorGrabInitPos[1]); + setCursorGrabAccum(0, 0); + + if(mode == GHOST_kGrabHide) + setWindowCursorVisibility(false); - setCursorWarpAccum(0, 0); - setWindowCursorVisibility(false); - m_cursorWarp= true; } XGrabPointer(m_display, m_window, True, ButtonPressMask| ButtonReleaseMask|PointerMotionMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime); } else { - if(m_cursorWarp) { /* are we exiting warp */ + if (m_cursorGrab==GHOST_kGrabHide) { + m_system->setCursorPosition(m_cursorGrabInitPos[0], m_cursorGrabInitPos[1]); setWindowCursorVisibility(true); - /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ - if(restore) { - GHOST_Rect bounds; - GHOST_TInt32 x_new, y_new, x_rel, y_rel; - - getClientBounds(bounds); - - x_new= m_cursorWarpInitPos[0]+m_cursorWarpAccumPos[0]; - y_new= m_cursorWarpInitPos[1]+m_cursorWarpAccumPos[1]; - - screenToClient(x_new, y_new, x_rel, y_rel); - - if(x_rel < 0) x_new = (x_new-x_rel) + 2; - if(y_rel < 0) y_new = (y_new-y_rel) + 2; - if(x_rel > bounds.getWidth()) x_new -= (x_rel-bounds.getWidth()) + 2; - if(y_rel > bounds.getHeight()) y_new -= (y_rel-bounds.getHeight()) + 2; - m_system->setCursorPosition(x_new, y_new); - - } - else { - m_system->setCursorPosition(m_cursorWarpInitPos[0], m_cursorWarpInitPos[1]); - } - - setCursorWarpAccum(0, 0); - m_cursorWarp= false; } + + /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ + setCursorGrabAccum(0, 0); XUngrabPointer(m_display, CurrentTime); } diff --git a/intern/ghost/intern/GHOST_WindowX11.h b/intern/ghost/intern/GHOST_WindowX11.h index eb0689ab410..0dba1776553 100644 --- a/intern/ghost/intern/GHOST_WindowX11.h +++ b/intern/ghost/intern/GHOST_WindowX11.h @@ -256,9 +256,12 @@ protected: */ GHOST_TSuccess setWindowCursorGrab( - bool grab, bool warp, bool restore + GHOST_TGrabCursorMode mode ); + GHOST_TGrabCursorMode + getWindowCursorGrab() const; + /** * Sets the cursor shape on the window using * native window system calls. diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 479c72304b2..bce38066899 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -3723,12 +3723,12 @@ static void button_activate_state(bContext *C, uiBut *but, uiHandleButtonState s /* number editing */ if(state == BUTTON_STATE_NUM_EDITING) { if(ui_is_a_warp_but(but)) - WM_cursor_grab(CTX_wm_window(C), TRUE); + WM_cursor_grab(CTX_wm_window(C), TRUE, TRUE); ui_numedit_begin(but, data); } else if(data->state == BUTTON_STATE_NUM_EDITING) { ui_numedit_end(but, data); if(ui_is_a_warp_but(but)) - WM_cursor_ungrab(CTX_wm_window(C), FALSE); + WM_cursor_ungrab(CTX_wm_window(C)); } /* menu open */ if(state == BUTTON_STATE_MENU_OPEN) diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index 958b388f574..d90d812d0bb 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -76,8 +76,8 @@ void WM_cursor_set (struct wmWindow *win, int curs); void WM_cursor_modal (struct wmWindow *win, int curs); void WM_cursor_restore (struct wmWindow *win); void WM_cursor_wait (int val); -void WM_cursor_grab(struct wmWindow *win, int warp); -void WM_cursor_ungrab(wmWindow *win, int restore); +void WM_cursor_grab(struct wmWindow *win, int wrap, int hide); +void WM_cursor_ungrab(struct wmWindow *win); void WM_timecursor (struct wmWindow *win, int nr); void *WM_paint_cursor_activate(struct wmWindowManager *wm, int (*poll)(struct bContext *C), void (*draw)(struct bContext *C, int, int, void *customdata), void *customdata); diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c index c1dfd9ee9fb..1d5b10f2583 100644 --- a/source/blender/windowmanager/intern/wm_cursors.c +++ b/source/blender/windowmanager/intern/wm_cursors.c @@ -163,21 +163,26 @@ void WM_cursor_wait(int val) } } -void WM_cursor_grab(wmWindow *win, int warp) +void WM_cursor_grab(wmWindow *win, int wrap, int hide) { /* Only grab cursor when not running debug. * It helps not to get a stuck WM when hitting a breakpoint * */ + GHOST_TGrabCursorMode mode = GHOST_kGrabNormal; + + if(hide) mode = GHOST_kGrabHide; + else if(wrap) mode = GHOST_kGrabWrap; + if ((G.f & G_DEBUG) == 0) if(win) - GHOST_SetCursorGrab(win->ghostwin, 1, warp, -1); + GHOST_SetCursorGrab(win->ghostwin, mode); } -void WM_cursor_ungrab(wmWindow *win, int restore) +void WM_cursor_ungrab(wmWindow *win) { if ((G.f & G_DEBUG) == 0) if(win) - GHOST_SetCursorGrab(win->ghostwin, 0, -1, restore); + GHOST_SetCursorGrab(win->ghostwin, GHOST_kGrabDisable); } /* afer this you can call restore too */ diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index f1104feaf5b..9e5f982880e 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -464,7 +464,7 @@ static int wm_operator_invoke(bContext *C, wmOperatorType *ot, wmEvent *event, P /* grab cursor during blocking modal ops (X11) */ if(ot->flag & OPTYPE_BLOCKING) { int warp = (U.uiflag & USER_CONTINUOUS_MOUSE) && ((op->flag & OP_GRAB_POINTER) || (ot->flag & OPTYPE_GRAB_POINTER)); - WM_cursor_grab(CTX_wm_window(C), warp); + WM_cursor_grab(CTX_wm_window(C), warp, FALSE); } } else @@ -660,7 +660,7 @@ void WM_event_remove_handlers(bContext *C, ListBase *handlers) CTX_wm_region_set(C, region); } - WM_cursor_ungrab(CTX_wm_window(C), TRUE); + WM_cursor_ungrab(CTX_wm_window(C)); WM_operator_free(handler->op); } else if(handler->ui_remove) { @@ -858,7 +858,7 @@ static int wm_handler_operator_call(bContext *C, ListBase *handlers, wmEventHand /* remove modal handler, operator itself should have been cancelled and freed */ if(retval & (OPERATOR_CANCELLED|OPERATOR_FINISHED)) { - WM_cursor_ungrab(CTX_wm_window(C), TRUE); + WM_cursor_ungrab(CTX_wm_window(C)); BLI_remlink(handlers, handler); wm_event_free_handler(handler); From 9d98b489256ef3783a5a8a1dc40b837dbc5b064d Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sat, 17 Oct 2009 14:45:49 +0000 Subject: [PATCH 022/412] Temporary remap extrude to Ctrl+Alt+Click, to avoid conflict with transform. --- source/blender/editors/mesh/mesh_ops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index df80b74f19f..dc22e023856 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -267,8 +267,10 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) RNA_string_set(kmi->ptr, "name", "INFO_MT_mesh_add"); WM_keymap_add_item(keymap, "MESH_OT_separate", PKEY, KM_PRESS, 0, 0); - /* use KM_RELEASE because same key is used for tweaks */ - WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL, 0); + /* use KM_RELEASE because same key is used for tweaks + * TEMPORARY REMAP TO ALT+CTRL TO AVOID CONFLICT + * */ + WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL|KM_ALT, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", XKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", DELKEY, KM_PRESS, 0, 0); From d11888b470d03a36d60e8332e8c108ce18ea4948 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Oct 2009 14:54:13 +0000 Subject: [PATCH 023/412] - wrapping failed with the cursor at the screen edge, - changed numbuts behavior with continuous grab so dragging back after passing the button limit immediately adjusts the value --- intern/ghost/GHOST_Rect.h | 13 ++++---- intern/ghost/intern/GHOST_SystemX11.cpp | 4 +-- .../editors/interface/interface_handlers.c | 31 +++++++++++++++++-- 3 files changed, 36 insertions(+), 12 deletions(-) diff --git a/intern/ghost/GHOST_Rect.h b/intern/ghost/GHOST_Rect.h index 98169ad2aa4..6a29b1ffc26 100644 --- a/intern/ghost/GHOST_Rect.h +++ b/intern/ghost/GHOST_Rect.h @@ -228,20 +228,19 @@ inline void GHOST_Rect::unionPoint(GHOST_TInt32 x, GHOST_TInt32 y) if (y < m_t) m_t = y; if (y > m_b) m_b = y; } - +#include inline void GHOST_Rect::wrapPoint(GHOST_TInt32 &x, GHOST_TInt32 &y, GHOST_TInt32 ofs) { GHOST_TInt32 w= getWidth(); GHOST_TInt32 h= getHeight(); /* highly unlikely but avoid eternal loop */ - if(w-ofs <= 0 || h-ofs <= 0) + if(w-ofs*2 <= 0 || h-ofs*2 <= 0) return; - - while(x-ofs < m_l) x+= w; - while(y-ofs < m_t) y+= h; - while(x+ofs > m_r) x-= w; - while(y+ofs > m_b) y-= h; + while(x-ofs < m_l) x+= w-(ofs*2); + while(y-ofs < m_t) y+= h-(ofs*2); + while(x+ofs > m_r) x-= w-(ofs*2); + while(y+ofs > m_b) y-= h-(ofs*2); } inline bool GHOST_Rect::isInside(GHOST_TInt32 x, GHOST_TInt32 y) const diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp index abf0b612f9a..122e6c55241 100644 --- a/intern/ghost/intern/GHOST_SystemX11.cpp +++ b/intern/ghost/intern/GHOST_SystemX11.cpp @@ -399,9 +399,7 @@ GHOST_SystemX11::processEvent(XEvent *xe) /* could also clamp to screen bounds * wrap with a window outside the view will fail atm */ - - bounds.wrapPoint(x_new, y_new, 1); /* offset of one incase blender is at screen bounds */ - + bounds.wrapPoint(x_new, y_new, 2); /* offset of one incase blender is at screen bounds */ window->getCursorGrabAccum(x_accum, y_accum); if(x_new != xme.x_root || y_new != xme.y_root) { diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index bce38066899..018098b539b 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -2056,9 +2056,21 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i /* Mouse location isn't screen clamped to the screen so use a linear mapping * 2px == 1-int, or 1px == 1-ClickStep */ if(ui_is_but_float(but)) { - tempf = data->startvalue + ((mx - data->dragstartx) * fac * 0.01*but->a1); + fac *= 0.01*but->a1; + tempf = data->startvalue + ((mx - data->dragstartx) * fac); tempf= ui_numedit_apply_snapf(tempf, softmin, softmax, softrange, snap); + +#if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ + if(tempf < softmin) { + data->dragstartx -= (softmin-tempf) / fac; + tempf= softmin; + } else if (tempf > softmax) { + data->dragstartx += (tempf-softmax) / fac; + tempf= softmax; + } +#else CLAMP(tempf, softmin, softmax); +#endif if(tempf != data->value) { data->dragchange= 1; @@ -2067,9 +2079,22 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i } } else { - temp= data->startvalue + (mx - data->dragstartx)/2; /* simple 2px == 1 */ + fac = 0.5; /* simple 2px == 1 */ + + temp= data->startvalue + ((mx - data->dragstartx) * fac); temp= ui_numedit_apply_snap(temp, softmin, softmax, snap); + +#if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ + if(temp < softmin) { + data->dragstartx -= (softmin-temp) / fac; + temp= softmin; + } else if (temp > softmax) { + data->dragstartx += (temp-softmax) / fac; + temp= softmax; + } +#else CLAMP(temp, softmin, softmax); +#endif if(temp != data->value) { data->dragchange= 1; @@ -2077,6 +2102,8 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i changed= 1; } } + + data->draglastx= mx; } else { /* Use a non-linear mapping of the mouse drag especially for large floats (normal behavior) */ From bdafc20cffe740e45ee00dba70ab5358a22f4dcb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Oct 2009 15:25:19 +0000 Subject: [PATCH 024/412] enable wrap cursor for transform. might want this disabled when the manipulator is used? --- source/blender/editors/transform/transform_ops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c index 5173245734b..207cf4b9aee 100644 --- a/source/blender/editors/transform/transform_ops.c +++ b/source/blender/editors/transform/transform_ops.c @@ -327,6 +327,7 @@ static int transform_invoke(bContext *C, wmOperator *op, wmEvent *event) t->flag |= T_MODAL; // XXX meh maybe somewhere else + op->flag |= OP_GRAB_POINTER; // XXX maybe we want this with the manipulator only? return OPERATOR_RUNNING_MODAL; } } From 484bf962c66a5ffb7592cf8e4b462dbfb8d21214 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Oct 2009 16:52:09 +0000 Subject: [PATCH 025/412] simple fix for blend from shape when no keys exist --- source/blender/editors/mesh/editmesh_tools.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 30fda95cf9b..c44d63666c2 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -94,10 +94,8 @@ editmesh_tool.c: UI called tools for editmesh, geometry changes here, otherwise #include "mesh_intern.h" /* XXX */ -static int extern_qread() {return 0;} static void waitcursor(int val) {} static int pupmenu() {return 0;} -static int qtest() {return 0;} #define add_numbut(a, b, c, d, e, f, g) {} /* XXX */ @@ -5083,9 +5081,7 @@ static int blend_from_shape_exec(bContext *C, wmOperator *op) int add= RNA_int_get(op->ptr, "add"); int blended= 0; - kb= BLI_findlink(&key->block, shape); - - if(kb) { + if(key && (kb= BLI_findlink(&key->block, shape))) { data= kb->data; for(eve=em->verts.first; eve; eve=eve->next){ From 69c6a33ba1a064aa13da3ef6a74b310620cfafd5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 17 Oct 2009 19:32:28 +0000 Subject: [PATCH 026/412] wrap the mouse within the region while grabbing so on release the current view never changes and less likelyhood of loosing the cursor when running blender on 2+ screens. (assuming the 3d view isnt stretched over both) --- intern/ghost/GHOST_C-api.h | 6 ++++-- intern/ghost/GHOST_IWindow.h | 2 +- intern/ghost/intern/GHOST_C-api.cpp | 14 ++++++++++++-- intern/ghost/intern/GHOST_SystemX11.cpp | 4 +++- intern/ghost/intern/GHOST_Window.cpp | 14 +++++++++++++- intern/ghost/intern/GHOST_Window.h | 13 +++++++++++-- intern/ghost/intern/GHOST_WindowX11.cpp | 1 + source/blender/editors/animation/anim_filter.c | 3 ++- .../editors/interface/interface_handlers.c | 2 +- source/blender/makesrna/intern/rna_userdef.c | 2 +- source/blender/makesrna/intern/rna_wm.c | 5 +++-- source/blender/windowmanager/WM_api.h | 2 +- source/blender/windowmanager/intern/wm_cursors.c | 7 ++++--- .../windowmanager/intern/wm_event_system.c | 16 ++++++++++++++-- 14 files changed, 71 insertions(+), 20 deletions(-) diff --git a/intern/ghost/GHOST_C-api.h b/intern/ghost/GHOST_C-api.h index 93bd12437ab..bd812177f17 100644 --- a/intern/ghost/GHOST_C-api.h +++ b/intern/ghost/GHOST_C-api.h @@ -372,11 +372,13 @@ extern GHOST_TSuccess GHOST_SetCursorPosition(GHOST_SystemHandle systemhandle, * events when the mouse is outside the window. X11 only, others * do this automatically. * @param windowhandle The handle to the window - * @param grab The new grab state of the cursor. + * @param mode The new grab state of the cursor. + * @param bounds The grab ragion (optional) - left,top,right,bottom * @return Indication of success. */ extern GHOST_TSuccess GHOST_SetCursorGrab(GHOST_WindowHandle windowhandle, - GHOST_TGrabCursorMode mode); + GHOST_TGrabCursorMode mode, + int* bounds); /*************************************************************************************** ** Access to mouse button and keyboard states. diff --git a/intern/ghost/GHOST_IWindow.h b/intern/ghost/GHOST_IWindow.h index 3ab9bef2bfa..512fad877cb 100644 --- a/intern/ghost/GHOST_IWindow.h +++ b/intern/ghost/GHOST_IWindow.h @@ -271,7 +271,7 @@ public: * @param grab The new grab state of the cursor. * @return Indication of success. */ - virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode) { return GHOST_kSuccess; }; + virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode, GHOST_Rect *bounds) { return GHOST_kSuccess; }; }; diff --git a/intern/ghost/intern/GHOST_C-api.cpp b/intern/ghost/intern/GHOST_C-api.cpp index 5563e0d1aa8..0160df552cc 100644 --- a/intern/ghost/intern/GHOST_C-api.cpp +++ b/intern/ghost/intern/GHOST_C-api.cpp @@ -355,11 +355,21 @@ GHOST_TSuccess GHOST_SetCursorPosition(GHOST_SystemHandle systemhandle, GHOST_TSuccess GHOST_SetCursorGrab(GHOST_WindowHandle windowhandle, - GHOST_TGrabCursorMode mode) + GHOST_TGrabCursorMode mode, + int *bounds) { GHOST_IWindow* window = (GHOST_IWindow*) windowhandle; + GHOST_Rect bounds_rect, bounds_win; + + if(bounds) { + /* if this is X11 specific we need a function that converts */ + window->getClientBounds(bounds_win); + window->clientToScreen(bounds[0], bounds_win.getHeight() - bounds[1], bounds_rect.m_l, bounds_rect.m_t); + window->clientToScreen(bounds[2], bounds_win.getHeight() - bounds[3], bounds_rect.m_r, bounds_rect.m_b); + + } - return window->setCursorGrab(mode); + return window->setCursorGrab(mode, bounds ? &bounds_rect:NULL); } diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp index 122e6c55241..774fd025b85 100644 --- a/intern/ghost/intern/GHOST_SystemX11.cpp +++ b/intern/ghost/intern/GHOST_SystemX11.cpp @@ -395,7 +395,9 @@ GHOST_SystemX11::processEvent(XEvent *xe) GHOST_TInt32 x_accum, y_accum; GHOST_Rect bounds; - window->getClientBounds(bounds); + /* fallback to window bounds */ + if(window->getCursorGrabBounds(bounds)==GHOST_kFailure) + window->getClientBounds(bounds); /* could also clamp to screen bounds * wrap with a window outside the view will fail atm */ diff --git a/intern/ghost/intern/GHOST_Window.cpp b/intern/ghost/intern/GHOST_Window.cpp index cda6bfa06ee..33484284d7c 100644 --- a/intern/ghost/intern/GHOST_Window.cpp +++ b/intern/ghost/intern/GHOST_Window.cpp @@ -97,12 +97,18 @@ GHOST_TSuccess GHOST_Window::setCursorVisibility(bool visible) } } -GHOST_TSuccess GHOST_Window::setCursorGrab(GHOST_TGrabCursorMode mode) +GHOST_TSuccess GHOST_Window::setCursorGrab(GHOST_TGrabCursorMode mode, GHOST_Rect *bounds) { if(m_cursorGrab == mode) return GHOST_kSuccess; if (setWindowCursorGrab(mode)) { + + if(mode==GHOST_kGrabDisable) + m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; + else if (bounds) { + m_cursorGrabBounds= *bounds; + } m_cursorGrab = mode; return GHOST_kSuccess; } @@ -111,6 +117,12 @@ GHOST_TSuccess GHOST_Window::setCursorGrab(GHOST_TGrabCursorMode mode) } } +GHOST_TSuccess GHOST_Window::getCursorGrabBounds(GHOST_Rect& bounds) +{ + bounds= m_cursorGrabBounds; + return (bounds.m_l==-1 && bounds.m_r==-1) ? GHOST_kFailure : GHOST_kSuccess; +} + GHOST_TSuccess GHOST_Window::setCursorShape(GHOST_TStandardCursor cursorShape) { if (setWindowCursorShape(cursorShape)) { diff --git a/intern/ghost/intern/GHOST_Window.h b/intern/ghost/intern/GHOST_Window.h index e66a3c2fd36..0986fc57430 100644 --- a/intern/ghost/intern/GHOST_Window.h +++ b/intern/ghost/intern/GHOST_Window.h @@ -171,10 +171,16 @@ public: /** * Sets the cursor grab. - * @param grab The new grab state of the cursor. + * @param mode The new grab state of the cursor. * @return Indication of success. */ - virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode); + virtual GHOST_TSuccess setCursorGrab(GHOST_TGrabCursorMode mode, GHOST_Rect *bounds); + + /** + * Gets the cursor grab region, if unset the window is used. + * reset when grab is disabled. + */ + virtual GHOST_TSuccess getCursorGrabBounds(GHOST_Rect& bounds); /** * Sets the window "modified" status, indicating unsaved changes @@ -281,6 +287,9 @@ protected: /** Accumulated offset from m_cursorGrabInitPos. */ GHOST_TInt32 m_cursorGrabAccumPos[2]; + /** Wrap the cursor within this region. */ + GHOST_Rect m_cursorGrabBounds; + /** The current shape of the cursor */ GHOST_TStandardCursor m_cursorShape; diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index 9914bad23c8..dba1be1b862 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -1421,6 +1421,7 @@ setWindowCursorGrab( /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ setCursorGrabAccum(0, 0); + m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; /* disable */ XUngrabPointer(m_display, CurrentTime); } diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index aa1bc108176..96bdb9aa848 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -78,6 +78,7 @@ #include "BKE_animsys.h" #include "BKE_action.h" +#include "BKE_fcurve.h" #include "BKE_context.h" #include "BKE_global.h" #include "BKE_key.h" @@ -669,7 +670,7 @@ bAnimListElem *make_new_animlistelem (void *data, short datatype, void *owner, s * then free the MEM_alloc'd string */ if (rna_path) { - ale->key_data= list_find_fcurve(&act->curves, rna_path, 0); + ale->key_data= (void *)list_find_fcurve(&act->curves, rna_path, 0); MEM_freeN(rna_path); } } diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 018098b539b..29d84076533 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -3750,7 +3750,7 @@ static void button_activate_state(bContext *C, uiBut *but, uiHandleButtonState s /* number editing */ if(state == BUTTON_STATE_NUM_EDITING) { if(ui_is_a_warp_but(but)) - WM_cursor_grab(CTX_wm_window(C), TRUE, TRUE); + WM_cursor_grab(CTX_wm_window(C), TRUE, TRUE, NULL); ui_numedit_begin(but, data); } else if(data->state == BUTTON_STATE_NUM_EDITING) { ui_numedit_end(but, data); diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 722b686218b..1acf3c8effa 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -52,6 +52,7 @@ static void rna_userdef_update(bContext *C, PointerRNA *ptr) WM_event_add_notifier(C, NC_WINDOW, NULL); } +#if 0 static void rna_userdef_lmb_select_set(PointerRNA *ptr,int value) { UserDef *userdef = (UserDef*)ptr->data; @@ -64,7 +65,6 @@ static void rna_userdef_lmb_select_set(PointerRNA *ptr,int value) userdef->flag &= ~USER_LMOUSESELECT; } -#if 0 static void rna_userdef_rmb_select_set(PointerRNA *ptr,int value) { rna_userdef_lmb_select_set(ptr, !value); diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 82b244fa702..2189412783a 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -680,8 +680,9 @@ static void rna_def_windowmanager(BlenderRNA *brna) static void rna_def_keyconfig(BlenderRNA *brna) { StructRNA *srna; - FunctionRNA *func; - PropertyRNA *prop, *parm; + // FunctionRNA *func; + // PropertyRNA *parm; + PropertyRNA *prop; static EnumPropertyItem map_type_items[] = { {KMI_TYPE_KEYBOARD, "KEYBOARD", 0, "Keyboard", ""}, diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index d90d812d0bb..59f3bcd4edc 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -76,7 +76,7 @@ void WM_cursor_set (struct wmWindow *win, int curs); void WM_cursor_modal (struct wmWindow *win, int curs); void WM_cursor_restore (struct wmWindow *win); void WM_cursor_wait (int val); -void WM_cursor_grab(struct wmWindow *win, int wrap, int hide); +void WM_cursor_grab(struct wmWindow *win, int wrap, int hide, int *bounds); void WM_cursor_ungrab(struct wmWindow *win); void WM_timecursor (struct wmWindow *win, int nr); diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c index 1d5b10f2583..5fe62157979 100644 --- a/source/blender/windowmanager/intern/wm_cursors.c +++ b/source/blender/windowmanager/intern/wm_cursors.c @@ -163,26 +163,27 @@ void WM_cursor_wait(int val) } } -void WM_cursor_grab(wmWindow *win, int wrap, int hide) +void WM_cursor_grab(wmWindow *win, int wrap, int hide, int *bounds) { /* Only grab cursor when not running debug. * It helps not to get a stuck WM when hitting a breakpoint * */ GHOST_TGrabCursorMode mode = GHOST_kGrabNormal; + int bounds_arr[4] = {-1, -1, -1, -1}; /* l/t/r/b */ if(hide) mode = GHOST_kGrabHide; else if(wrap) mode = GHOST_kGrabWrap; if ((G.f & G_DEBUG) == 0) if(win) - GHOST_SetCursorGrab(win->ghostwin, mode); + GHOST_SetCursorGrab(win->ghostwin, mode, bounds); } void WM_cursor_ungrab(wmWindow *win) { if ((G.f & G_DEBUG) == 0) if(win) - GHOST_SetCursorGrab(win->ghostwin, GHOST_kGrabDisable); + GHOST_SetCursorGrab(win->ghostwin, GHOST_kGrabDisable, NULL); } /* afer this you can call restore too */ diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index 9e5f982880e..8eca0a1b416 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -463,8 +463,20 @@ static int wm_operator_invoke(bContext *C, wmOperatorType *ot, wmEvent *event, P else if(retval & OPERATOR_RUNNING_MODAL) { /* grab cursor during blocking modal ops (X11) */ if(ot->flag & OPTYPE_BLOCKING) { - int warp = (U.uiflag & USER_CONTINUOUS_MOUSE) && ((op->flag & OP_GRAB_POINTER) || (ot->flag & OPTYPE_GRAB_POINTER)); - WM_cursor_grab(CTX_wm_window(C), warp, FALSE); + int bounds[4] = {-1,-1,-1,-1}; + int wrap = (U.uiflag & USER_CONTINUOUS_MOUSE) && ((op->flag & OP_GRAB_POINTER) || (ot->flag & OPTYPE_GRAB_POINTER)); + + if(wrap) { + ARegion *ar= CTX_wm_region(C); + if(ar) { + bounds[0]= ar->winrct.xmin; + bounds[1]= ar->winrct.ymax; + bounds[2]= ar->winrct.xmax; + bounds[3]= ar->winrct.ymin; + } + } + + WM_cursor_grab(CTX_wm_window(C), wrap, FALSE, bounds); } } else From 13a70d22f93e915dec2596183ba26554e8af816b Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sat, 17 Oct 2009 21:08:22 +0000 Subject: [PATCH 027/412] Added torus icon to the add menu, and made naming consistent with the other add menus. --- release/scripts/io/add_mesh_torus.py | 2 +- release/scripts/ui/space_info.py | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index a0f41db15d6..f413fe72e4d 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -92,7 +92,7 @@ bpy.ops.add(MESH_OT_primitive_torus_add) # Add to a menu import dynamic_menu import space_info -menu_item = dynamic_menu.add(bpy.types.INFO_MT_mesh_add, (lambda self, context: self.layout.itemO("mesh.primitive_torus_add", text="Add Torus")) ) +menu_item = dynamic_menu.add(bpy.types.INFO_MT_mesh_add, (lambda self, context: self.layout.itemO("mesh.primitive_torus_add", text="Torus", icon='ICON_MESH_DONUT')) ) if __name__ == "__main__": bpy.ops.mesh.primitive_torus_add() \ No newline at end of file diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 961329ea5d0..7246159be7a 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -124,20 +124,20 @@ class INFO_MT_file_external_data(bpy.types.Menu): class INFO_MT_mesh_add(dynamic_menu.DynMenu): - __label__ = "Add Mesh" + __label__ = "Mesh" def draw(self, context): layout = self.layout layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemO("mesh.primitive_plane_add", icon='ICON_MESH_PLANE') - layout.itemO("mesh.primitive_cube_add", icon='ICON_MESH_CUBE') - layout.itemO("mesh.primitive_circle_add", icon='ICON_MESH_CIRCLE') - layout.itemO("mesh.primitive_uv_sphere_add", icon='ICON_MESH_UVSPHERE') - layout.itemO("mesh.primitive_ico_sphere_add", icon='ICON_MESH_ICOSPHERE') - layout.itemO("mesh.primitive_cylinder_add", icon='ICON_MESH_TUBE') - layout.itemO("mesh.primitive_cone_add", icon='ICON_MESH_CONE') + layout.itemO("mesh.primitive_plane_add", icon='ICON_MESH_PLANE', text="Plane") + layout.itemO("mesh.primitive_cube_add", icon='ICON_MESH_CUBE', text="Cube") + layout.itemO("mesh.primitive_circle_add", icon='ICON_MESH_CIRCLE', text="Circle") + layout.itemO("mesh.primitive_uv_sphere_add", icon='ICON_MESH_UVSPHERE', text="UV Sphere") + layout.itemO("mesh.primitive_ico_sphere_add", icon='ICON_MESH_ICOSPHERE', text="Icosphere") + layout.itemO("mesh.primitive_cylinder_add", icon='ICON_MESH_TUBE', text="Tube") + layout.itemO("mesh.primitive_cone_add", icon='ICON_MESH_CONE', text="Cone") layout.itemS() - layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID') - layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY') + layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID', text="Grid") + layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY', text="Monkey") class INFO_MT_add(bpy.types.Menu): __label__ = "Add" From 2d7587bf0c8405d0ecda26d79ca3e52ca3a87a24 Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Sat, 17 Oct 2009 22:34:40 +0000 Subject: [PATCH 028/412] Smoke: *Should fix crash with collision objects --- source/blender/blenkernel/intern/smoke.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/smoke.c b/source/blender/blenkernel/intern/smoke.c index fbc052db6f3..ab56623ed5e 100644 --- a/source/blender/blenkernel/intern/smoke.c +++ b/source/blender/blenkernel/intern/smoke.c @@ -1027,7 +1027,7 @@ static void smoke_calc_domain(Scene *scene, Object *ob, SmokeModifierData *smd) { SmokeModifierData *smd2 = (SmokeModifierData *)md; - if((smd2->type & MOD_SMOKE_TYPE_COLL) && smd2->coll) + if((smd2->type & MOD_SMOKE_TYPE_COLL) && smd2->coll && smd2->coll->points) { // we got nice collision object SmokeCollSettings *scs = smd2->coll; From eff008385b4acbd3ea8efac23184ab6a18eb57d9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 18 Oct 2009 02:06:06 +0000 Subject: [PATCH 029/412] Bugfix #19673: Blender crashes when I open "operator cheat sheet" Missing check before using 'obedit' pointer for shape_itemf() (i.e. shapekey enum generator) --- source/blender/editors/mesh/editmesh_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index c44d63666c2..e9ef3b15706 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -5116,7 +5116,7 @@ static int blend_from_shape_exec(bContext *C, wmOperator *op) static EnumPropertyItem *shape_itemf(bContext *C, PointerRNA *ptr, int *free) { Object *obedit= CTX_data_edit_object(C); - Mesh *me= obedit->data; + Mesh *me= (obedit) ? obedit->data : NULL; Key *key; KeyBlock *kb, *actkb; EnumPropertyItem tmp= {0, "", 0, "", ""}, *item= NULL; From babf9b2d8898ee793381246c7d9a198c978de11b Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 18 Oct 2009 02:15:55 +0000 Subject: [PATCH 030/412] Another attempt to fix the problems with confirming transforms while snapping (LMB confirm, CTRL-key still held for snapping) and "ctrl-click" extrusion. Made the confirm keymap for transforms use KM_RELEASE instead of KM_ANY (I didn't see any case where this failed yet?), and restored the "ctrl-click" as it was before r23903 --- source/blender/editors/mesh/mesh_ops.c | 6 ++---- source/blender/editors/transform/transform.c | 3 ++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index dc22e023856..2fa1ce8ceed 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -267,10 +267,8 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) RNA_string_set(kmi->ptr, "name", "INFO_MT_mesh_add"); WM_keymap_add_item(keymap, "MESH_OT_separate", PKEY, KM_PRESS, 0, 0); - /* use KM_RELEASE because same key is used for tweaks - * TEMPORARY REMAP TO ALT+CTRL TO AVOID CONFLICT - * */ - WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL|KM_ALT, 0); + /* KM_CTRL+KM_RELEASE is used here, since KM_CTRL+KM_PRESS is taken for lasso */ + WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", XKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", DELKEY, KM_PRESS, 0, 0); diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 4c24d366162..c776aa4bc9a 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -536,7 +536,8 @@ void transform_modal_keymap(wmKeyConfig *keyconf) /* items for modal map */ WM_modalkeymap_add_item(keymap, ESCKEY, KM_PRESS, KM_ANY, 0, TFM_MODAL_CANCEL); - WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_ANY, KM_ANY, 0, TFM_MODAL_CONFIRM); + /* only use KM_RELEASE, otherwise LMB-CTRL extrude will catch the release event when we finish and were snapping */ + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, KM_ANY, 0, TFM_MODAL_CONFIRM); WM_modalkeymap_add_item(keymap, RETKEY, KM_PRESS, KM_ANY, 0, TFM_MODAL_CONFIRM); WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, KM_ANY, 0, TFM_MODAL_CONFIRM); From adba1c302d7f05c7ca69b15d6b2a5e647d2b532d Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 18 Oct 2009 02:45:05 +0000 Subject: [PATCH 031/412] Reverting revision 23913. Actions on press is used everywhere in Blender, lets not make an exception here because there's something missing in the event system. Bug report and potential solution is here, if anyone wants to have a go at it: http://projects.blender.org/tracker/index.php?func=detail&aid=19510 --- source/blender/editors/mesh/mesh_ops.c | 6 ++++-- source/blender/editors/transform/transform.c | 3 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index 2fa1ce8ceed..dc22e023856 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -267,8 +267,10 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) RNA_string_set(kmi->ptr, "name", "INFO_MT_mesh_add"); WM_keymap_add_item(keymap, "MESH_OT_separate", PKEY, KM_PRESS, 0, 0); - /* KM_CTRL+KM_RELEASE is used here, since KM_CTRL+KM_PRESS is taken for lasso */ - WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL, 0); + /* use KM_RELEASE because same key is used for tweaks + * TEMPORARY REMAP TO ALT+CTRL TO AVOID CONFLICT + * */ + WM_keymap_add_item(keymap, "MESH_OT_dupli_extrude_cursor", LEFTMOUSE, KM_RELEASE, KM_CTRL|KM_ALT, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", XKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "MESH_OT_delete", DELKEY, KM_PRESS, 0, 0); diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index c776aa4bc9a..4c24d366162 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -536,8 +536,7 @@ void transform_modal_keymap(wmKeyConfig *keyconf) /* items for modal map */ WM_modalkeymap_add_item(keymap, ESCKEY, KM_PRESS, KM_ANY, 0, TFM_MODAL_CANCEL); - /* only use KM_RELEASE, otherwise LMB-CTRL extrude will catch the release event when we finish and were snapping */ - WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, KM_ANY, 0, TFM_MODAL_CONFIRM); + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_ANY, KM_ANY, 0, TFM_MODAL_CONFIRM); WM_modalkeymap_add_item(keymap, RETKEY, KM_PRESS, KM_ANY, 0, TFM_MODAL_CONFIRM); WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, KM_ANY, 0, TFM_MODAL_CONFIRM); From 55e6aa77c4fa014730096f2debba2cb979a0f9de Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 18 Oct 2009 02:55:30 +0000 Subject: [PATCH 032/412] Removing MESH_OT_vertices_transform_to_sphere. This operator was a port of the old ToSphere button that worked only around the cursor. To Sphere transform (Alt-Shift-S) can already do it around cursor if pivot is set to that, can be used interactively and work on more data types, so this is unneeded. --- source/blender/editors/mesh/editmesh_mods.c | 93 --------------------- source/blender/editors/mesh/mesh_intern.h | 1 - source/blender/editors/mesh/mesh_ops.c | 3 - 3 files changed, 97 deletions(-) diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c index 74870778d02..968bb30b0cd 100644 --- a/source/blender/editors/mesh/editmesh_mods.c +++ b/source/blender/editors/mesh/editmesh_mods.c @@ -4397,99 +4397,6 @@ void vertexnoise(Object *obedit, EditMesh *em) } -static void vertices_to_sphere(Scene *scene, View3D *v3d, Object *obedit, EditMesh *em, float perc) -{ - EditVert *eve; - float *curs, len, vec[3], cent[3], fac, facm, imat[3][3], bmat[3][3]; - int tot; - -// XXX if(button(&perc, 1, 100, "Percentage:")==0) return; - - fac= perc/100.0f; - facm= 1.0f-fac; - - Mat3CpyMat4(bmat, obedit->obmat); - Mat3Inv(imat, bmat); - - /* center */ - curs= give_cursor(scene, v3d); - cent[0]= curs[0]-obedit->obmat[3][0]; - cent[1]= curs[1]-obedit->obmat[3][1]; - cent[2]= curs[2]-obedit->obmat[3][2]; - Mat3MulVecfl(imat, cent); - - len= 0.0; - tot= 0; - eve= em->verts.first; - while(eve) { - if(eve->f & SELECT) { - tot++; - len+= VecLenf(cent, eve->co); - } - eve= eve->next; - } - len/=tot; - - if(len==0.0) len= 10.0; - - eve= em->verts.first; - while(eve) { - if(eve->f & SELECT) { - vec[0]= eve->co[0]-cent[0]; - vec[1]= eve->co[1]-cent[1]; - vec[2]= eve->co[2]-cent[2]; - - Normalize(vec); - - eve->co[0]= fac*(cent[0]+vec[0]*len) + facm*eve->co[0]; - eve->co[1]= fac*(cent[1]+vec[1]*len) + facm*eve->co[1]; - eve->co[2]= fac*(cent[2]+vec[2]*len) + facm*eve->co[2]; - - } - eve= eve->next; - } - - recalc_editnormals(em); -// DAG_id_flush_update(obedit->data, OB_RECALC_DATA); - -} - -static int vertices_to_sphere_exec(bContext *C, wmOperator *op) -{ - Scene *scene= CTX_data_scene(C); - Object *obedit= CTX_data_edit_object(C); - View3D *v3d = CTX_wm_view3d(C); - EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)obedit->data)); - - vertices_to_sphere(scene, v3d, obedit, em, RNA_float_get(op->ptr,"percent")); - - BKE_mesh_end_editmesh(obedit->data, em); - - DAG_id_flush_update(obedit->data, OB_RECALC_DATA); - WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data); - - return OPERATOR_FINISHED; -} - -void MESH_OT_vertices_transform_to_sphere(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Vertices to Sphere"; - //added "around cursor" to differentiate between "TFM_OT_tosphere()" - ot->description= "Move selected vertices outward in a spherical shape around cursor."; - ot->idname= "MESH_OT_vertices_transform_to_sphere"; - - /* api callbacks */ - ot->exec= vertices_to_sphere_exec; - ot->poll= ED_operator_editmesh; - - /* flags */ - ot->flag= OPTYPE_REGISTER/*|OPTYPE_UNDO*/; - - /* props */ - RNA_def_float(ot->srna, "percent", 100.0f, 0.0f, 100.0f, "Percent", "DOC_BROKEN", 0.01f, 100.0f); -} - void flipface(EditMesh *em, EditFace *efa) { if(efa->v4) { diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 8b55afa4a0d..98cfd2c8c92 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -158,7 +158,6 @@ void MESH_OT_edges_select_sharp(struct wmOperatorType *ot); void MESH_OT_select_shortest_path(struct wmOperatorType *ot); void MESH_OT_select_similar(struct wmOperatorType *ot); void MESH_OT_select_random(struct wmOperatorType *ot); -void MESH_OT_vertices_transform_to_sphere(struct wmOperatorType *ot); void MESH_OT_selection_type(struct wmOperatorType *ot); void MESH_OT_loop_multi_select(struct wmOperatorType *ot); void MESH_OT_mark_seam(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index dc22e023856..da2d45bcd00 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -103,7 +103,6 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_spin); WM_operatortype_append(MESH_OT_screw); - WM_operatortype_append(MESH_OT_vertices_transform_to_sphere); WM_operatortype_append(MESH_OT_split); WM_operatortype_append(MESH_OT_extrude_repeat); WM_operatortype_append(MESH_OT_edge_rotate); @@ -215,8 +214,6 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) RNA_float_set(WM_keymap_add_item(keymap, "MESH_OT_faces_select_linked_flat", FKEY, KM_PRESS, (KM_CTRL|KM_SHIFT|KM_ALT), 0)->ptr,"sharpness",135.0); RNA_float_set(WM_keymap_add_item(keymap, "MESH_OT_edges_select_sharp", SKEY, KM_PRESS, (KM_CTRL|KM_SHIFT|KM_ALT), 0)->ptr,"sharpness",135.0); - - WM_keymap_add_item(keymap, "MESH_OT_vertices_transform_to_sphere", SKEY, KM_PRESS, KM_CTRL|KM_SHIFT , 0); WM_keymap_add_item(keymap, "MESH_OT_select_similar", GKEY, KM_PRESS, KM_SHIFT, 0); From 9b26e7d7caca6834d7d70430993d1bb715695292 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 18 Oct 2009 09:55:39 +0000 Subject: [PATCH 033/412] minor changes to x11 cursor grab wrapping - when wrapping 2 mouse events were added. - on release blender still had the last event (possibly outside the screen), where menus would fail to show. Add a mouse event by calling XWarpPointer with no movement when leaving grab. --- intern/ghost/intern/GHOST_SystemX11.cpp | 22 ++++++++++--------- intern/ghost/intern/GHOST_WindowX11.cpp | 7 ++++++ .../blender/windowmanager/intern/wm_cursors.c | 1 - 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp index 774fd025b85..ff4a5956a12 100644 --- a/intern/ghost/intern/GHOST_SystemX11.cpp +++ b/intern/ghost/intern/GHOST_SystemX11.cpp @@ -405,19 +405,21 @@ GHOST_SystemX11::processEvent(XEvent *xe) window->getCursorGrabAccum(x_accum, y_accum); if(x_new != xme.x_root || y_new != xme.y_root) { + /* when wrapping we don't need to add an event because the + * setCursorPosition call will cause a new event after */ setCursorPosition(x_new, y_new); /* wrap */ window->setCursorGrabAccum(x_accum + (xme.x_root - x_new), y_accum + (xme.y_root - y_new)); } - - g_event = new - GHOST_EventCursor( - getMilliSeconds(), - GHOST_kEventCursorMove, - window, - xme.x_root + x_accum, - xme.y_root + y_accum - ); - + else { + g_event = new + GHOST_EventCursor( + getMilliSeconds(), + GHOST_kEventCursorMove, + window, + xme.x_root + x_accum, + xme.y_root + y_accum + ); + } } else { g_event = new diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index dba1be1b862..95441e74771 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -1419,6 +1419,13 @@ setWindowCursorGrab( setWindowCursorVisibility(true); } + if(m_cursorGrab != GHOST_kGrabNormal) { + /* use to generate a mouse move event, otherwise the last event + * blender gets can be outside the screen causing menus not to show + * properly unless the user moves the mouse */ + XWarpPointer(m_display,None,None,0,0,0,0,0,0); + } + /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ setCursorGrabAccum(0, 0); m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; /* disable */ diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c index 5fe62157979..e2aedf42bd8 100644 --- a/source/blender/windowmanager/intern/wm_cursors.c +++ b/source/blender/windowmanager/intern/wm_cursors.c @@ -169,7 +169,6 @@ void WM_cursor_grab(wmWindow *win, int wrap, int hide, int *bounds) * It helps not to get a stuck WM when hitting a breakpoint * */ GHOST_TGrabCursorMode mode = GHOST_kGrabNormal; - int bounds_arr[4] = {-1, -1, -1, -1}; /* l/t/r/b */ if(hide) mode = GHOST_kGrabHide; else if(wrap) mode = GHOST_kGrabWrap; From 505f5c58cea5a42d8567dc16229b61cbe66a6a1c Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 18 Oct 2009 16:55:33 +0000 Subject: [PATCH 034/412] Bug fixes: [#19596] Child particle in particle mode show for one redraw, then disappear [#19598] Draw actual particles options draws in wrong location --- source/blender/blenkernel/intern/particle.c | 75 +++++++++++++++++-- .../blender/editors/space_view3d/drawobject.c | 35 +++++---- .../makesrna/intern/rna_sculpt_paint.c | 2 +- 3 files changed, 89 insertions(+), 23 deletions(-) diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index ea8562c0ca8..322904136ea 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -2277,15 +2277,20 @@ static int psys_threads_init_path(ParticleThread *threads, Scene *scene, float c ParticleSettings *part = psys->part; ParticleEditSettings *pset = &scene->toolsettings->particle; int totparent=0, between=0; - int steps = (int)pow(2.0,(double)part->draw_step); + int steps = (int)pow(2.0, (double)part->draw_step); int totchild = psys->totchild; int i, seed, totthread= threads[0].tot; /*---start figuring out what is actually wanted---*/ - if(psys_in_edit_mode(scene, psys)) + if(psys_in_edit_mode(scene, psys)) { + ParticleEditSettings *pset = &scene->toolsettings->particle; + if(psys->renderdata==0 && (psys->edit==NULL || pset->flag & PE_DRAW_PART)==0) totchild=0; + steps = (int)pow(2.0, (double)pset->draw_step); + } + if(totchild && part->from!=PART_FROM_PARTICLE && part->childtype==PART_CHILD_FACES){ totparent=(int)(totchild*part->parents*0.3); @@ -2360,7 +2365,7 @@ static void psys_thread_create_path(ParticleThread *thread, struct ChildParticle ParticleSystem *psys = ctx->sim.psys; ParticleSettings *part = psys->part; ParticleCacheKey **cache= psys->childcache; - ParticleCacheKey **pcache= psys->pathcache; + ParticleCacheKey **pcache= psys_in_edit_mode(ctx->sim.scene, psys) ? psys->edit->pathcache : psys->pathcache; ParticleCacheKey *state, *par = NULL, *key[4]; ParticleData *pa=NULL; ParticleTexture ptex; @@ -2372,6 +2377,9 @@ static void psys_thread_create_path(ParticleThread *thread, struct ChildParticle int k, cpa_num; short cpa_from; + if(!pcache) + return; + if(part->flag & PART_BRANCHING) { branch_begin=rng_getFloat(thread->rng_path); branch_end=branch_begin+(1.0f-branch_begin)*rng_getFloat(thread->rng_path); @@ -2954,7 +2962,7 @@ void psys_cache_edit_paths(Scene *scene, Object *ob, PTCacheEdit *edit, float cf float birthtime = 0.0, dietime = 0.0; float t, time = 0.0, keytime = 0.0, frs_sec; - float hairmat[4][4]; + float hairmat[4][4], rotmat[3][3], prev_tangent[3]; int k,i; int steps = (int)pow(2.0, (double)pset->draw_step); int totpart = edit->totpoint; @@ -2998,8 +3006,12 @@ void psys_cache_edit_paths(Scene *scene, Object *ob, PTCacheEdit *edit, float cf /*--get the first data points--*/ init_particle_interpolation(ob, psys, pa, &pind); - if(psys) + if(psys) { psys_mat_hair_to_global(ob, psmd->dm, psys->part->from, pa, hairmat); + VECCOPY(rotmat[0], hairmat[2]); + VECCOPY(rotmat[1], hairmat[1]); + VECCOPY(rotmat[2], hairmat[0]); + } birthtime = pind.birthtime; dietime = pind.dietime; @@ -3020,9 +3032,55 @@ void psys_cache_edit_paths(Scene *scene, Object *ob, PTCacheEdit *edit, float cf do_particle_interpolation(psys, i, pa, t, frs_sec, &pind, &result); /* non-hair points are allready in global space */ - if(psys && !(psys->flag & PSYS_GLOBAL_HAIR)) + if(psys && !(psys->flag & PSYS_GLOBAL_HAIR)) { Mat4MulVecfl(hairmat, result.co); + /* create rotations for proper creation of children */ + if(k) { + float cosangle, angle, tangent[3], normal[3], q[4]; + + if(k == 1) { + /* calculate initial tangent for incremental rotations */ + VECSUB(tangent, ca->co, (ca - 1)->co); + VECCOPY(prev_tangent, tangent); + Normalize(prev_tangent); + + /* First rotation is based on emitting face orientation. */ + /* This is way better than having flipping rotations resulting */ + /* from using a global axis as a rotation pole (vec_to_quat()). */ + /* It's not an ideal solution though since it disregards the */ + /* initial tangent, but taking that in to account will allow */ + /* the possibility of flipping again. -jahka */ + Mat3ToQuat_is_ok(rotmat, (ca-1)->rot); + } + else { + VECSUB(tangent, ca->co, (ca - 1)->co); + Normalize(tangent); + + cosangle= Inpf(tangent, prev_tangent); + + /* note we do the comparison on cosangle instead of + * angle, since floating point accuracy makes it give + * different results across platforms */ + if(cosangle > 0.999999f) { + QUATCOPY((ca - 1)->rot, (ca - 2)->rot); + } + else { + angle= saacos(cosangle); + Crossf(normal, prev_tangent, tangent); + VecRotToQuat(normal, angle, q); + QuatMul((ca - 1)->rot, q, (ca - 2)->rot); + } + + VECCOPY(prev_tangent, tangent); + } + + if(k == steps) + QUATCOPY(ca->rot, (ca - 1)->rot); + } + + } + VECCOPY(ca->co, result.co); ca->vel[0] = ca->vel[1] = 0.0f; @@ -3053,6 +3111,11 @@ void psys_cache_edit_paths(Scene *scene, Object *ob, PTCacheEdit *edit, float cf } edit->totcached = totpart; + + if(psys && psys->part->type == PART_HAIR) { + ParticleSimulationData sim = {scene, ob, psys, psys_get_modifier(ob, psys), NULL}; + psys_cache_child_paths(&sim, cfra, 1); + } } /************************************************/ /* Particle Key handling */ diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 78dd53e7271..d2988772abe 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -3658,7 +3658,7 @@ static void draw_new_particle_system(Scene *scene, View3D *v3d, RegionView3D *rv //if(part->flag&PART_GLOB_TIME) cfra=bsystem_time(scene, 0, (float)CFRA, 0.0f); - if(draw_as==PART_DRAW_PATH && psys->pathcache==NULL) + if(draw_as==PART_DRAW_PATH && psys->pathcache==NULL && psys->childcache==NULL) draw_as=PART_DRAW_DOT; /* 3. */ @@ -4009,6 +4009,8 @@ static void draw_new_particle_system(Scene *scene, View3D *v3d, RegionView3D *rv if(totchild && (part->draw&PART_DRAW_PARENT)==0) totpart=0; + else if(psys->pathcache==NULL) + totpart=0; /* draw actual/parent particles */ cache=psys->pathcache; @@ -5709,6 +5711,22 @@ void draw_object(Scene *scene, ARegion *ar, View3D *v3d, Base *base, int flag) } if(ob->pd && ob->pd->forcefield) draw_forcefield(scene, ob); + /* particle mode has to be drawn first so that possible child particles get cached in edit mode */ + if( (warning_recursive==0) && + (flag & DRAW_PICKING)==0 && + (!scene->obedit) + ) { + + if(ob->mode & OB_MODE_PARTICLE_EDIT && ob==OBACT) { + PTCacheEdit *edit = PE_get_current(scene, ob); + if(edit) { + wmLoadMatrix(rv3d->viewmat); + draw_ptcache_edit(scene, v3d, rv3d, ob, edit, dt); + wmMultMatrix(ob->obmat); + } + } + } + /* code for new particle system */ if( (warning_recursive==0) && (ob->particlesystem.first) && @@ -5733,21 +5751,6 @@ void draw_object(Scene *scene, ARegion *ar, View3D *v3d, Base *base, int flag) //glDepthMask(GL_TRUE); if(col) cpack(col); } - - if( (warning_recursive==0) && - (flag & DRAW_PICKING)==0 && - (!scene->obedit) - ) { - - if(ob->mode & OB_MODE_PARTICLE_EDIT && ob==OBACT) { - PTCacheEdit *edit = PE_get_current(scene, ob); - if(edit) { - wmLoadMatrix(rv3d->viewmat); - draw_ptcache_edit(scene, v3d, rv3d, ob, edit, dt); - wmMultMatrix(ob->obmat); - } - } - } /* draw code for smoke */ if((md = modifiers_findByType(ob, eModifierType_Smoke))) diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c index 7f8ded7d3ee..481abc983c2 100644 --- a/source/blender/makesrna/intern/rna_sculpt_paint.c +++ b/source/blender/makesrna/intern/rna_sculpt_paint.c @@ -405,7 +405,7 @@ static void rna_def_particle_edit(BlenderRNA *brna) prop= RNA_def_property(srna, "draw_particles", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", PE_DRAW_PART); RNA_def_property_ui_text(prop, "Draw Particles", "Draw actual particles."); - RNA_def_property_update(prop, NC_OBJECT, NULL); + RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL); prop= RNA_def_property(srna, "mirror_x", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", PE_X_MIRROR); From a0c567d1b1d4ce7a9df5bf7f7899641d6ce36f3d Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Sun, 18 Oct 2009 17:41:42 +0000 Subject: [PATCH 035/412] fix Win64 compile: Should now work with cmake again, does this break win64 scons anyone? --- source/creator/buildinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c index cef98915d79..ac14010f572 100644 --- a/source/creator/buildinfo.c +++ b/source/creator/buildinfo.c @@ -32,7 +32,7 @@ #endif #ifdef BUILD_DATE -#ifndef WIN32 +#if (!defined(WIN32) || defined(_WIN64)) const char * build_date=BUILD_DATE; const char * build_time=BUILD_TIME; const char * build_rev=BUILD_REV; From 1f0f2cc6292f21fcd62c9c6782f74cd2077b28fe Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Sun, 18 Oct 2009 18:05:34 +0000 Subject: [PATCH 036/412] Bugfix: memory was leaking when opening a new file (Ctl-N). Reports were not being freed. Brecht (or someone), can you check this? --- source/blender/windowmanager/intern/wm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/windowmanager/intern/wm.c b/source/blender/windowmanager/intern/wm.c index 5b7f892592b..f4baa42515c 100644 --- a/source/blender/windowmanager/intern/wm.c +++ b/source/blender/windowmanager/intern/wm.c @@ -290,6 +290,7 @@ void wm_close_and_free(bContext *C, wmWindowManager *wm) BLI_freelistN(&wm->queue); BLI_freelistN(&wm->paintcursors); + BKE_reports_clear(&wm->reports); if(C && CTX_wm_manager(C)==wm) CTX_wm_manager_set(C, NULL); } From 5506d12bba76fc89e809c418920fdd4fe00e4cb8 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sun, 18 Oct 2009 18:48:48 +0000 Subject: [PATCH 037/412] 2.5/Sculpt: Fixed "Persistent" option for layer brush, someone changed the RNA name but missed the UI script --- release/scripts/ui/space_view3d_toolbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index d93a2d26040..a72caec5e9f 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -449,7 +449,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): col.row().itemR(brush, "direction", expand=True) if brush.sculpt_tool == 'LAYER': - col.itemR(brush, "persistent") + col.itemR(brush, "use_persistent") col.itemO("sculpt.set_persistent_base") # Texture Paint Mode # From 442d767d16e86f0e293109d2543912d37af3030d Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 18 Oct 2009 19:48:33 +0000 Subject: [PATCH 038/412] Fix for [#19610] Hair cut tool, keeps cutting hidden hairs. --- source/blender/editors/physics/particle_edit.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index 74ed6451d29..6fc34c4fcf8 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -2708,6 +2708,10 @@ static void brush_cut(PEData *data, int pa_index) /* blunt scissors */ if(BLI_frand() > data->cutfac) return; + /* don't cut hidden */ + if(edit->points[pa_index].flag & PEP_HIDE) + return; + rad2= data->rad * data->rad; cut=0; From f750cc7dbd893b0e37feead00bfbbaac2c5b6a09 Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 18 Oct 2009 20:52:15 +0000 Subject: [PATCH 039/412] Changing particle physics type to boids and not boids multiple times crashed. --- source/blender/blenkernel/intern/particle_system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c index 45050127582..d66c990cbe1 100644 --- a/source/blender/blenkernel/intern/particle_system.c +++ b/source/blender/blenkernel/intern/particle_system.c @@ -3504,8 +3504,6 @@ static void psys_changed_physics(ParticleSimulationData *sim) if(part->phystype == PART_PHYS_BOIDS && part->boids == NULL) { BoidState *state; - psys_check_boid_data(sim->psys); - part->boids = MEM_callocN(sizeof(BoidSettings), "Boid Settings"); boid_default_settings(part->boids); @@ -3518,6 +3516,8 @@ static void psys_changed_physics(ParticleSimulationData *sim) state->flag |= BOIDSTATE_CURRENT; BLI_addtail(&part->boids->states, state); } + + psys_check_boid_data(sim->psys); } static void particles_fluid_step(ParticleSimulationData *sim, int cfra) { From 816856f953250f7da59c819bde1b77d59c32017c Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 18 Oct 2009 21:12:04 +0000 Subject: [PATCH 040/412] Small particles feature: Multiple group visualization counts per group object are now possible (+/- buttons next to the count list). This allows for example an array of duplicated objects "ob1, ob2, ob1, ob3" without duplicating the actual object (ob1 in the example) in the group. --- release/scripts/ui/buttons_particle.py | 2 + .../blender/editors/physics/particle_object.c | 84 +++++++++++++++++++ .../blender/editors/physics/physics_intern.h | 2 + source/blender/editors/physics/physics_ops.c | 2 + 4 files changed, 90 insertions(+) diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/buttons_particle.py index b0be974727a..dcc93bd9c75 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/buttons_particle.py @@ -650,6 +650,8 @@ class PARTICLE_PT_render(ParticleButtonsPanel): col = row.column() subrow = col.row() subcol = subrow.column(align=True) + subcol.itemO("particle.dupliob_copy", icon='ICON_ZOOMIN', text="") + subcol.itemO("particle.dupliob_remove", icon='ICON_ZOOMOUT', text="") subcol.itemO("particle.dupliob_move_up", icon='VICON_MOVE_UP', text="") subcol.itemO("particle.dupliob_move_down", icon='VICON_MOVE_DOWN', text="") diff --git a/source/blender/editors/physics/particle_object.c b/source/blender/editors/physics/particle_object.c index 1dc08a162b7..34e2b062e98 100644 --- a/source/blender/editors/physics/particle_object.c +++ b/source/blender/editors/physics/particle_object.c @@ -386,6 +386,90 @@ void PARTICLE_OT_dupliob_move_up(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } +/********************** particle dupliweight operators *********************/ + +static int copy_particle_dupliob_exec(bContext *C, wmOperator *op) +{ + PointerRNA ptr = CTX_data_pointer_get_type(C, "particle_system", &RNA_ParticleSystem); + ParticleSystem *psys= ptr.data; + ParticleSettings *part; + ParticleDupliWeight *dw; + + if(!psys) + return OPERATOR_CANCELLED; + part = psys->part; + for(dw=part->dupliweights.first; dw; dw=dw->next) { + if(dw->flag & PART_DUPLIW_CURRENT) { + dw->flag &= ~PART_DUPLIW_CURRENT; + dw = MEM_dupallocN(dw); + dw->flag |= PART_DUPLIW_CURRENT; + BLI_addhead(&part->dupliweights, dw); + + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, NULL); + break; + } + } + + return OPERATOR_FINISHED; +} + +void PARTICLE_OT_dupliob_copy(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Copy Particle Dupliob"; + ot->idname= "PARTICLE_OT_dupliob_copy"; + ot->description="Duplicate the current dupliobject."; + + /* api callbacks */ + ot->exec= copy_particle_dupliob_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + +static int remove_particle_dupliob_exec(bContext *C, wmOperator *op) +{ + PointerRNA ptr = CTX_data_pointer_get_type(C, "particle_system", &RNA_ParticleSystem); + ParticleSystem *psys= ptr.data; + ParticleSettings *part; + ParticleDupliWeight *dw; + + if(!psys) + return OPERATOR_CANCELLED; + + part = psys->part; + for(dw=part->dupliweights.first; dw; dw=dw->next) { + if(dw->flag & PART_DUPLIW_CURRENT) { + BLI_remlink(&part->dupliweights, dw); + MEM_freeN(dw); + break; + } + + } + dw = part->dupliweights.last; + + if(dw) + dw->flag |= PART_DUPLIW_CURRENT; + + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, NULL); + + return OPERATOR_FINISHED; +} + +void PARTICLE_OT_dupliob_remove(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Remove Particle Dupliobject"; + ot->idname= "PARTICLE_OT_dupliob_remove"; + ot->description="Remove the selected dupliobject."; + + /* api callbacks */ + ot->exec= remove_particle_dupliob_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + /************************ move down particle dupliweight operator *********************/ static int dupliob_move_down_exec(bContext *C, wmOperator *op) diff --git a/source/blender/editors/physics/physics_intern.h b/source/blender/editors/physics/physics_intern.h index 3847ec8032a..a930d8663dd 100644 --- a/source/blender/editors/physics/physics_intern.h +++ b/source/blender/editors/physics/physics_intern.h @@ -77,6 +77,8 @@ void PARTICLE_OT_target_move_down(struct wmOperatorType *ot); void PARTICLE_OT_connect_hair(struct wmOperatorType *ot); void PARTICLE_OT_disconnect_hair(struct wmOperatorType *ot); +void PARTICLE_OT_dupliob_copy(struct wmOperatorType *ot); +void PARTICLE_OT_dupliob_remove(struct wmOperatorType *ot); void PARTICLE_OT_dupliob_move_up(struct wmOperatorType *ot); void PARTICLE_OT_dupliob_move_down(struct wmOperatorType *ot); diff --git a/source/blender/editors/physics/physics_ops.c b/source/blender/editors/physics/physics_ops.c index 0ebbfa6b701..ee46279d567 100644 --- a/source/blender/editors/physics/physics_ops.c +++ b/source/blender/editors/physics/physics_ops.c @@ -79,6 +79,8 @@ static void operatortypes_particle(void) WM_operatortype_append(PARTICLE_OT_connect_hair); WM_operatortype_append(PARTICLE_OT_disconnect_hair); + WM_operatortype_append(PARTICLE_OT_dupliob_copy); + WM_operatortype_append(PARTICLE_OT_dupliob_remove); WM_operatortype_append(PARTICLE_OT_dupliob_move_up); WM_operatortype_append(PARTICLE_OT_dupliob_move_down); } From 5d97c9f595a4bff343782fc92c07129fd34a487b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 18 Oct 2009 21:32:03 +0000 Subject: [PATCH 041/412] select all seq strips removed other flags, add menu was running exec rather then invoke. --- release/scripts/ui/space_sequencer.py | 3 ++- source/blender/editors/space_sequencer/sequencer_select.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 582481401a6..ca84e345885 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -147,6 +147,7 @@ class SEQUENCER_MT_add(bpy.types.Menu): def draw(self, context): layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' st = context.space_data @@ -163,7 +164,7 @@ class SEQUENCER_MT_add_effect(bpy.types.Menu): def draw(self, context): layout = self.layout - + layout.operator_context = 'INVOKE_REGION_WIN' st = context.space_data layout.column() diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index 747e1609213..fe46cb178ae 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -218,7 +218,7 @@ static int sequencer_deselect_exec(bContext *C, wmOperator *op) seq->flag &= SEQ_DESEL; } else { - seq->flag &= (SEQ_LEFTSEL+SEQ_RIGHTSEL); + seq->flag &= ~(SEQ_LEFTSEL+SEQ_RIGHTSEL); seq->flag |= SELECT; } } @@ -259,7 +259,7 @@ static int sequencer_select_inverse_exec(bContext *C, wmOperator *op) seq->flag &= SEQ_DESEL; } else { - seq->flag &= (SEQ_LEFTSEL+SEQ_RIGHTSEL); + seq->flag &= ~(SEQ_LEFTSEL+SEQ_RIGHTSEL); seq->flag |= SELECT; } } From e029e05646da87707667076ab95c547e3ce071a3 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 18 Oct 2009 23:23:41 +0000 Subject: [PATCH 042/412] [#19680] Add cap ends option for new cylinders in 2.5 Patch by Howard Brooks --- source/blender/editors/mesh/editmesh_add.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index d703ba1fb35..bb340c450d7 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -1415,7 +1415,8 @@ static int add_primitive_cylinder_exec(bContext *C, wmOperator *op) { make_prim_ext(C, PRIM_CYLINDER, RNA_int_get(op->ptr, "vertices"), 0, 0, RNA_float_get(op->ptr,"radius"), - RNA_float_get(op->ptr, "depth"), 1, 1); + RNA_float_get(op->ptr, "depth"), 1, + RNA_boolean_get(op->ptr, "cap_ends")); return OPERATOR_FINISHED; } @@ -1438,6 +1439,7 @@ void MESH_OT_primitive_cylinder_add(wmOperatorType *ot) RNA_def_int(ot->srna, "vertices", 32, INT_MIN, INT_MAX, "Vertices", "", 2, 500); RNA_def_float(ot->srna, "radius", 1.0f, 0.0, FLT_MAX, "Radius", "", 0.001, 100.00); RNA_def_float(ot->srna, "depth", 1.0f, 0.0, FLT_MAX, "Depth", "", 0.001, 100.00); + RNA_def_boolean(ot->srna, "cap_ends", 1, "Cap Ends", ""); } static int add_primitive_tube_exec(bContext *C, wmOperator *op) From 3c26d886b571384aa168c4ae860bed98c86aa7c5 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 19 Oct 2009 02:17:57 +0000 Subject: [PATCH 043/412] Graph Editor: Visibility toggles improved (Durian Request) Toggling one of the visibility toggles in the Graph Editor now flushes the new value up/down the hierarchy. - when enabling a visibility toggle, all the 'higher' up and lower down channels get their visibility turned on - when disabling a visibility toggle, only the ones lower down get their visibility turned off (since there might still be other channels at the same level which are still enabled. This makes showing/hiding groups of F-Curves much easier, since previously you'd have to use multiple clicks to isolate particular F-Curves. For example, to isolate only X Location curves, previously, the workflow would have been to select all AKEY, hide all VKEY, then toggle the individual X Location curves in group, then make sure the groups and objects, etc. were also visible. Now, the steps of making sure that the parents were visible too has been eliminated. --- Also, fixed a few minor bugs with the animation-backend code for Graph Editor. --- .../editors/animation/anim_channels_defines.c | 144 +++++++++++++++++- .../editors/animation/anim_channels_edit.c | 2 +- .../blender/editors/animation/anim_filter.c | 27 ++-- .../blender/editors/space_graph/space_graph.c | 7 +- 4 files changed, 161 insertions(+), 19 deletions(-) diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c index 54a08cf4702..efbdd505bcb 100644 --- a/source/blender/editors/animation/anim_channels_defines.c +++ b/source/blender/editors/animation/anim_channels_defines.c @@ -2258,6 +2258,134 @@ static void achannel_setting_widget_cb(bContext *C, void *poin, void *poin2) WM_event_add_notifier(C, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL); } +/* callback for visiblility-toggle widget settings - perform value flushing (Graph Editor only) */ +static void achannel_setting_visible_widget_cb(bContext *C, void *ale_npoin, void *dummy_poin) +{ + bAnimListElem *ale_setting= (bAnimListElem *)ale_npoin; + int prevLevel=0, matchLevel=0; + short vizOn = 0; + + bAnimContext ac; + ListBase anim_data = {NULL, NULL}; + bAnimListElem *ale, *match=NULL; + int filter; + + /* send notifiers before doing anything else... */ + WM_event_add_notifier(C, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL); + + /* verify animation context */ + if (ANIM_animdata_get_context(C, &ac) == 0) + return; + + /* verify that we have a channel to operate on, and that it has all we need */ + if (ale_setting) { + /* check if the setting is on... */ + vizOn= ANIM_channel_setting_get(&ac, ale_setting, ACHANNEL_SETTING_VISIBLE); + + /* vizOn == -1 means setting not found... */ + if (vizOn == -1) + return; + } + else + return; + + /* get all channels that can possibly be chosen + * - therefore, the filter is simply ANIMFILTER_CHANNELS, since if we took VISIBLE too, + * then the channels under closed expanders get ignored... + */ + filter= ANIMFILTER_CHANNELS; + ANIM_animdata_filter(&ac, &anim_data, filter, ac.data, ac.datatype); + + /* find the channel that got changed */ + for (ale= anim_data.first; ale; ale= ale->next) { + /* compare data, and type as main way of identifying the channel */ + if ((ale->data == ale_setting->data) && (ale->type == ale_setting->type)) { + /* we also have to check the ID, this is assigned to, since a block may have multiple users */ + // TODO: is the owner-data more revealing? + if (ale->id == ale_setting->id) { + match= ale; + break; + } + } + } + if (match == NULL) { + printf("ERROR: no channel matching the one changed was found \n"); + BLI_freelistN(&anim_data); + return; + } + else { + bAnimChannelType *acf= ANIM_channel_get_typeinfo(ale_setting); + + /* get the level of the channel that was affected + * - we define the level as simply being the offset for the start of the channel + */ + matchLevel= (acf->get_offset)? acf->get_offset(&ac, ale_setting) : 0; + } + + /* flush up? + * - only flush up if the current state is now enabled + * (otherwise, it's too much work to force the parents to be inactive too) + */ + if (vizOn) { + /* go backwards in the list, until the highest-ranking element (by indention has been covered) */ + for (ale= match->prev; ale; ale= ale->prev) { + bAnimChannelType *acf= ANIM_channel_get_typeinfo(ale); + int level; + + /* get the level of the current channel traversed + * - we define the level as simply being the offset for the start of the channel + */ + level= (acf->get_offset)? acf->get_offset(&ac, ale) : 0; + + /* if the level is 'less than' (i.e. more important) the previous channel, + * flush the new status... + */ + if (level < matchLevel) + ANIM_channel_setting_set(&ac, ale, ACHANNEL_SETTING_VISIBLE, vizOn); + /* however, if the level is 'greater than' (i.e. less important than the previous channel, + * stop searching, since we've already reached the bottom of another hierarchy + */ + else if (level > matchLevel) + break; + + /* store this level as the 'old' level now */ + prevLevel= level; + } + } + + /* flush down (always) */ + { + /* go forwards in the list, until the lowest-ranking element (by indention has been covered) */ + for (ale= match->next; ale; ale= ale->next) { + bAnimChannelType *acf= ANIM_channel_get_typeinfo(ale); + int level; + + /* get the level of the current channel traversed + * - we define the level as simply being the offset for the start of the channel + */ + level= (acf->get_offset)? acf->get_offset(&ac, ale) : 0; + + /* if the level is 'greater than' (i.e. less important) the channel that was changed, + * flush the new status... + */ + if (level > matchLevel) + ANIM_channel_setting_set(&ac, ale, ACHANNEL_SETTING_VISIBLE, vizOn); + /* however, if the level is 'less than or equal to' the channel that was changed, + * (i.e. the current channel is as important if not more important than the changed channel) + * then we should stop, since we've found the last one of the children we should flush + */ + else + break; + + /* store this level as the 'old' level now */ + prevLevel= level; + } + } + + /* free temp data */ + BLI_freelistN(&anim_data); +} + /* callback for widget sliders - insert keyframes */ static void achannel_setting_slider_cb(bContext *C, void *id_poin, void *fcu_poin) { @@ -2373,9 +2501,9 @@ static void draw_setting_widget (bAnimContext *ac, bAnimListElem *ale, bAnimChan icon= ICON_CHECKBOX_DEHLT; if (ale->type == ANIMTYPE_FCURVE) - tooltip= "F-Curve is visible in Graph Editor for editing."; + tooltip= "Channel is visible in Graph Editor for editing."; else - tooltip= "F-Curve(s) are visible in Graph Editor for editing."; + tooltip= "Channel(s) are visible in Graph Editor for editing."; break; case ACHANNEL_SETTING_EXPAND: /* expanded triangle */ @@ -2440,10 +2568,14 @@ static void draw_setting_widget (bAnimContext *ac, bAnimListElem *ale, bAnimChan break; } - /* set call to send relevant notifiers */ - // NOTE: for now, we only need to send 'edited' - if (but) - uiButSetFunc(but, achannel_setting_widget_cb, NULL, NULL); + /* set call to send relevant notifiers and/or perform type-specific updates */ + if (but) { + /* 'visibility' toggles for Graph Editor need special flushing */ + if (setting == ACHANNEL_SETTING_VISIBLE) + uiButSetNFunc(but, achannel_setting_visible_widget_cb, MEM_dupallocN(ale), 0); + else + uiButSetFunc(but, achannel_setting_widget_cb, NULL, NULL); + } } } diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index efdad53f89f..01945a9733e 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -1358,7 +1358,7 @@ static int mouse_anim_channels (bAnimContext *ac, float x, int channel_index, sh /* get the channel that was clicked on */ /* filter channels */ filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CHANNELS); - filter= ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype); + ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype); /* get channel from index */ ale= BLI_findlink(&anim_data, channel_index); diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index 96bdb9aa848..7414d2fdf85 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -208,8 +208,10 @@ static short actedit_get_context (bAnimContext *ac, SpaceAction *saction) static short graphedit_get_context (bAnimContext *ac, SpaceIpo *sipo) { /* init dopesheet data if non-existant (i.e. for old files) */ - if (sipo->ads == NULL) + if (sipo->ads == NULL) { sipo->ads= MEM_callocN(sizeof(bDopeSheet), "GraphEdit DopeSheet"); + sipo->ads->source= (ID *)ac->scene; + } /* set settings for Graph Editor - "Selected = Editable" */ if (sipo->flag & SIPO_SELCUVERTSONLY) @@ -1102,7 +1104,7 @@ static int animdata_filter_dopesheet_mats (ListBase *anim_data, bDopeSheet *ads, } /* add material's animation data */ - if (FILTER_MAT_OBJD(ma) || (filter_mode & ANIMFILTER_CURVESONLY)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_MAT_OBJD(ma) || (filter_mode & ANIMFILTER_CURVESONLY)) { ANIMDATA_FILTER_CASES(ma, { /* AnimData blocks - do nothing... */ }, items += animdata_filter_nla(anim_data, ads, ma->adt, filter_mode, ma, ANIMTYPE_DSMAT, (ID *)ma);, @@ -1162,7 +1164,7 @@ static int animdata_filter_dopesheet_particles (ListBase *anim_data, bDopeSheet } } - if (FILTER_PART_OBJD(psys->part) || (filter_mode & ANIMFILTER_CURVESONLY)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_PART_OBJD(psys->part) || (filter_mode & ANIMFILTER_CURVESONLY)) { ANIMDATA_FILTER_CASES(psys->part, { /* AnimData blocks - do nothing... */ }, items += animdata_filter_nla(anim_data, ads, psys->part->adt, filter_mode, psys->part, ANIMTYPE_DSPART, (ID *)psys->part);, @@ -1243,7 +1245,7 @@ static int animdata_filter_dopesheet_obdata (ListBase *anim_data, bDopeSheet *ad } /* add object-data animation channels? */ - if ((expanded) || (filter_mode & ANIMFILTER_CURVESONLY)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || (expanded) || (filter_mode & ANIMFILTER_CURVESONLY)) { /* filtering for channels - nla, drivers, keyframes */ ANIMDATA_FILTER_CASES(iat, { /* AnimData blocks - do nothing... */ }, @@ -1281,7 +1283,8 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* if collapsed, don't go any further (unless adding keyframes only) */ - if ( (EXPANDED_OBJC(ob) == 0) && !(filter_mode & (ANIMFILTER_CURVESONLY|ANIMFILTER_NLATRACKS)) ) + if ( ((filter_mode & ANIMFILTER_VISIBLE) && EXPANDED_OBJC(ob) == 0) && + !(filter_mode & (ANIMFILTER_CURVESONLY|ANIMFILTER_NLATRACKS)) ) return items; /* Action, Drivers, or NLA */ @@ -1304,7 +1307,7 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* add F-Curve channels (drivers are F-Curves) */ - if (EXPANDED_DRVD(adt) || !(filter_mode & ANIMFILTER_CHANNELS)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || EXPANDED_DRVD(adt) || !(filter_mode & ANIMFILTER_CHANNELS)) { // need to make the ownertype normal object here... (maybe type should be a separate one for clarity?) items += animdata_filter_fcurves(anim_data, ads, adt->drivers.first, NULL, ob, ANIMTYPE_OBJECT, filter_mode, (ID *)ob); } @@ -1320,7 +1323,7 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* add F-Curve channels? */ - if (EXPANDED_ACTC(adt->action) || !(filter_mode & ANIMFILTER_CHANNELS)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || EXPANDED_ACTC(adt->action) || !(filter_mode & ANIMFILTER_CHANNELS)) { // need to make the ownertype normal object here... (maybe type should be a separate one for clarity?) items += animdata_filter_action(anim_data, ads, adt->action, filter_mode, ob, ANIMTYPE_OBJECT, (ID *)ob); } @@ -1348,7 +1351,7 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* add NLA tracks - only if expanded or so */ - if (FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) + if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) items += animdata_filter_nla(anim_data, ads, adt, filter_mode, ob, ANIMTYPE_OBJECT, (ID *)ob); }, { /* drivers */ @@ -1362,7 +1365,7 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* add channels */ - if (FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) { items += animdata_filter_fcurves(anim_data, ads, adt->drivers.first, NULL, key, ANIMTYPE_DSSKEY, filter_mode, (ID *)key); } }, @@ -1380,7 +1383,7 @@ static int animdata_filter_dopesheet_ob (ListBase *anim_data, bDopeSheet *ads, B } /* add channels */ - if (FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) { + if (!(filter_mode & ANIMFILTER_VISIBLE) || FILTER_SKE_OBJD(key) || (filter_mode & ANIMFILTER_CURVESONLY)) { items += animdata_filter_action(anim_data, ads, adt->action, filter_mode, key, ANIMTYPE_DSSKEY, (ID *)key); } } @@ -1595,7 +1598,9 @@ static int animdata_filter_dopesheet (ListBase *anim_data, bAnimContext *ac, bDo /* check that we do indeed have a scene */ if ((ads->source == NULL) || (GS(ads->source->name)!=ID_SCE)) { - printf("DopeSheet Error: Not scene! \n"); + printf("DopeSheet Error: Not scene!\n"); + if (G.f & G_DEBUG) + printf("\tPointer = %p, Name = '%s' \n", ads->source, (ads->source)?ads->source->name:NULL); return 0; } diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index c8d2c571a16..1f65a8cd7ea 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -42,6 +42,8 @@ #include "BLI_rand.h" #include "BKE_context.h" +#include "BKE_global.h" +#include "BKE_main.h" #include "BKE_fcurve.h" #include "BKE_screen.h" #include "BKE_utildefines.h" @@ -110,6 +112,7 @@ static SpaceLink *graph_new(const bContext *C) /* allocate DopeSheet data for Graph Editor */ sipo->ads= MEM_callocN(sizeof(bDopeSheet), "GraphEdit DopeSheet"); + sipo->ads->source= (ID *)scene; /* header */ ar= MEM_callocN(sizeof(ARegion), "header for graphedit"); @@ -183,8 +186,10 @@ static void graph_init(struct wmWindowManager *wm, ScrArea *sa) SpaceIpo *sipo= (SpaceIpo *)sa->spacedata.first; /* init dopesheet data if non-existant (i.e. for old files) */ - if (sipo->ads == NULL) + if (sipo->ads == NULL) { sipo->ads= MEM_callocN(sizeof(bDopeSheet), "GraphEdit DopeSheet"); + sipo->ads->source= (ID *)(G.main->scene.first); // FIXME: this is a really nasty hack here for now... + } ED_area_tag_refresh(sa); } From ed032e13f230a156bbe95412036c37f5f4a8d4b5 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 19 Oct 2009 03:54:30 +0000 Subject: [PATCH 044/412] Patch #19034: (2.5) Display titles of closed panels in horizontal mode This patch was one of the patches submitted by Wolfgang W. (bender) (the others have already been committed). In the patch, there was commented out code for counter-clockwise rotation of the text, but I've removed that. -- In this commit, I've also removed all of the panel tabbing code instead of merely commenting it out. --- source/blender/editors/include/UI_interface.h | 1 + .../editors/interface/interface_panel.c | 248 ++---------------- .../editors/interface/interface_style.c | 54 ++++ 3 files changed, 74 insertions(+), 229 deletions(-) diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index bd8214db29b..53a75662f32 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -683,6 +683,7 @@ void uiIDContextProperty(struct bContext *C, struct PointerRNA *ptr, struct Prop /* Styled text draw */ void uiStyleFontSet(struct uiFontStyle *fs); void uiStyleFontDraw(struct uiFontStyle *fs, struct rcti *rect, char *str); +void uiStyleFontDrawRotated(struct uiFontStyle *fs, struct rcti *rect, char *str); int UI_GetStringWidth(char *str); // XXX temp void UI_DrawString(float x, float y, char *str); // XXX temp diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c index fa24aa72b9f..2123b412d61 100644 --- a/source/blender/editors/interface/interface_panel.c +++ b/source/blender/editors/interface/interface_panel.c @@ -309,20 +309,6 @@ void uiPanelToMouse(const bContext *C, Panel *pa) } #endif -static int panel_has_tabs(ARegion *ar, Panel *panel) -{ - Panel *pa= ar->panels.first; - - if(panel==NULL) return 0; - - while(pa) { - if((pa->runtime_flag & PNL_ACTIVE) && pa->paneltab==panel) { - return 1; - } - pa= pa->next; - } - return 0; -} static void ui_offset_panel_block(uiBlock *block) { @@ -465,62 +451,32 @@ static void ui_draw_panel_dragwidget(rctf *rect) } -static void ui_draw_aligned_panel_header(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) +static void ui_draw_aligned_panel_header(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect, char dir) { Panel *panel= block->panel; - Panel *pa; rcti hrect; - float width; - int a, nr= 1, pnl_icons; + int pnl_icons; char *activename= panel->drawname[0]?panel->drawname:panel->panelname; - char *panelname; - - /* count */ - for(pa= ar->panels.first; pa; pa=pa->next) - if(pa->runtime_flag & PNL_ACTIVE) - if(pa->paneltab==panel) - nr++; /* + 0.001f to avoid flirting with float inaccuracy */ if(panel->control & UI_PNL_CLOSE) pnl_icons=(panel->labelofs+2*PNL_ICON+5)/block->aspect + 0.001f; else pnl_icons= (panel->labelofs+PNL_ICON+5)/block->aspect + 0.001f; - if(nr==1) { - - /* active tab */ - /* draw text label */ - UI_ThemeColor(TH_TITLE); - - hrect= *rect; + /* active tab */ + /* draw text label */ + UI_ThemeColor(TH_TITLE); + + hrect= *rect; + if(dir == 'h') { hrect.xmin= rect->xmin+pnl_icons; uiStyleFontDraw(&style->paneltitle, &hrect, activename); - - return; } - - a= 0; - width= (rect->xmax-rect->xmin - 3 - pnl_icons - PNL_ICON)/nr; - for(pa= ar->panels.first; pa; pa=pa->next) { - panelname= pa->drawname[0]?pa->drawname:pa->panelname; - - if((pa->runtime_flag & PNL_ACTIVE) && (pa==panel || pa->paneltab==panel)) { - float col[3]; - - UI_GetThemeColor3fv(TH_TITLE, col); - - /* active tab */ - if(pa==panel) - glColor4f(col[0], col[1], col[2], 1.0f); - else - glColor4f(col[0], col[1], col[2], 0.5f); - - hrect= *rect; - hrect.xmin= rect->xmin+pnl_icons + a*width; - hrect.xmax= hrect.xmin + width; - uiStyleFontDraw(&style->paneltitle, &hrect, panelname); - - a++; - } + else { + /* ignore 'pnl_icons', otherwise the text gets offset horizontally + * + 0.001f to avoid flirting with float inaccuracy + */ + hrect.xmin= rect->xmin + (PNL_ICON+5)/block->aspect + 0.001f; + uiStyleFontDrawRotated(&style->paneltitle, &hrect, activename); } } @@ -567,9 +523,9 @@ void ui_draw_aligned_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *re glDisable(GL_BLEND); } - /* title */ + /* horizontal title */ if(!(panel->flag & PNL_CLOSEDX)) { - ui_draw_aligned_panel_header(ar, style, block, &headrect); + ui_draw_aligned_panel_header(ar, style, block, &headrect, 'h'); /* itemrect smaller */ itemrect.xmax= headrect.xmax - 5.0f/block->aspect; @@ -585,16 +541,10 @@ void ui_draw_aligned_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *re */ if(panel->flag & PNL_CLOSEDY) { - - /* if it's being overlapped by a panel being dragged */ - if(panel->flag & PNL_OVERLAP) { - UI_ThemeColor(TH_TEXT_HI); - uiRoundRect(rect->xmin, rect->ymax, rect->xmax, rect->ymax+PNL_HEADER, 8); - } - } else if(panel->flag & PNL_CLOSEDX) { - + /* draw vertical title */ + ui_draw_aligned_panel_header(ar, style, block, &headrect, 'v'); } /* an open panel */ else { @@ -607,13 +557,6 @@ void ui_draw_aligned_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *re UI_ThemeColorShade(TH_BACK, -120); uiRoundRect(0.5f + rect->xmin, 0.5f + rect->ymin, 0.5f + rect->xmax, 0.5f + headrect.ymax+1, 8); } - if(panel->flag & PNL_OVERLAP) { - if(panel->control & UI_PNL_SOLID) uiSetRoundBox(15); - else uiSetRoundBox(3); - - UI_ThemeColor(TH_TEXT_HI); - uiRoundRect(rect->xmin, rect->ymin, rect->xmax, headrect.ymax+1, 8); - } if(panel->control & UI_PNL_SCALE) ui_draw_panel_scalewidget(rect); @@ -963,62 +906,6 @@ static void check_panel_overlap(ARegion *ar, Panel *panel) } } -#if 0 // XXX panel docking/tabbing code that's no longer used -static void test_add_new_tabs(ARegion *ar) -{ - Panel *pa, *pasel=NULL, *palap=NULL; - /* search selected and overlapped panel */ - - pa= ar->panels.first; - while(pa) { - if(pa->runtime_flag & PNL_ACTIVE) { - if(pa->flag & PNL_SELECT) pasel= pa; - if(pa->flag & PNL_OVERLAP) palap= pa; - } - pa= pa->next; - } - - if(pasel && palap==NULL) { - - /* copy locations */ - pa= ar->panels.first; - while(pa) { - if(pa->paneltab==pasel) { - ui_panel_copy_offset(pa, pasel); - } - pa= pa->next; - } - } - - if(pasel==NULL || palap==NULL) return; - if(palap->type && palap->type->flag & PNL_NO_HEADER) return; - - /* the overlapped panel becomes a tab */ - palap->paneltab= pasel; - - /* the selected panel gets coords of overlapped one */ - ui_panel_copy_offset(pasel, palap); - - /* and its tabs */ - pa= ar->panels.first; - while(pa) { - if(pa->paneltab == pasel) { - ui_panel_copy_offset(pa, palap); - } - pa= pa->next; - } - - /* but, the overlapped panel already can have tabs too! */ - pa= ar->panels.first; - while(pa) { - if(pa->paneltab == palap) { - pa->paneltab = pasel; - } - pa= pa->next; - } -} -#endif - /************************ panel dragging ****************************/ static void ui_do_drag(const bContext *C, wmEvent *event, Panel *panel) @@ -1061,99 +948,8 @@ static void ui_do_drag(const bContext *C, wmEvent *event, Panel *panel) ED_region_tag_redraw(ar); } -static void ui_do_untab(const bContext *C, wmEvent *event, Panel *panel) -{ - uiHandlePanelData *data= panel->activedata; - ARegion *ar= CTX_wm_region(C); - Panel *pa, *panew= NULL; - int nr; - - /* wait until a threshold is passed to untab */ - if(abs(event->x-data->startx) + abs(event->y-data->starty) > 6) { - /* find new parent panel */ - nr= 0; - for(pa= ar->panels.first; pa; pa=pa->next) { - if(pa->paneltab==panel) { - panew= pa; - nr++; - } - } - - /* make old tabs point to panew */ - panew->paneltab= NULL; - - for(pa= ar->panels.first; pa; pa=pa->next) - if(pa->paneltab==panel) - pa->paneltab= panew; - - panel_activate_state(C, panel, PANEL_STATE_DRAG); - } -} - /******************* region level panel interaction *****************/ -static void panel_clicked_tabs(const bContext *C, ScrArea *sa, ARegion *ar, uiBlock *block, int mousex) -{ - Panel *pa, *tabsel=NULL, *panel= block->panel; - int nr= 1, a, width, ofsx; - - ofsx= PNL_ICON; - if(block->panel->type && (block->panel->control & UI_PNL_CLOSE)) ofsx+= PNL_ICON; - - /* count */ - for(pa= ar->panels.first; pa; pa=pa->next) - if(pa!=panel) - if((pa->runtime_flag & PNL_ACTIVE) && pa->paneltab==panel) - nr++; - - if(nr==1) return; - - /* find clicked tab, mouse in panel coords */ - a= 0; - width= (int)((float)(panel->sizex - ofsx-10)/nr); - pa= ar->panels.first; - while(pa) { - if(pa==panel || ((pa->runtime_flag & PNL_ACTIVE) && pa->paneltab==panel)) { - if((mousex > ofsx+a*width) && (mousex < ofsx+(a+1)*width)) { - tabsel= pa; - break; - } - a++; - } - pa= pa->next; - } - - if(tabsel) { - if(tabsel == panel) { - panel_activate_state(C, panel, PANEL_STATE_WAIT_UNTAB); - } - else { - /* tabsel now becomes parent for all others */ - panel->paneltab= tabsel; - tabsel->paneltab= NULL; - - pa= ar->panels.first; - while(pa) { - if(pa->paneltab == panel) pa->paneltab = tabsel; - pa= pa->next; - } - - /* copy locations to tabs */ - for(pa= ar->panels.first; pa; pa= pa->next) { - if(pa->paneltab && pa->runtime_flag & PNL_ACTIVE) { - ui_panel_copy_offset(pa, pa->paneltab); - } - } - - /* panels now differ size.. */ - if(panel_aligned(sa, ar)) - panel_activate_state(C, tabsel, PANEL_STATE_ANIMATION); - - ED_region_tag_redraw(ar); - } - } - -} /* this function is supposed to call general window drawing too */ /* also it supposes a block has panel, and isnt a menu */ @@ -1217,10 +1013,6 @@ static void ui_handle_panel_header(const bContext *C, uiBlock *block, int mx, in else if(block->panel->flag & PNL_CLOSED) { panel_activate_state(C, block->panel, PANEL_STATE_DRAG); } - /* check if clicked in tabbed area */ - else if(mx < block->maxx-PNL_ICON-3 && panel_has_tabs(ar, block->panel)) { - panel_clicked_tabs(C, sa, ar, block, mx); - } else { panel_activate_state(C, block->panel, PANEL_STATE_DRAG); } @@ -1346,9 +1138,7 @@ static int ui_handler_panel(bContext *C, wmEvent *event, void *userdata) panel_activate_state(C, panel, PANEL_STATE_EXIT); } else if(event->type == MOUSEMOVE) { - if(data->state == PANEL_STATE_WAIT_UNTAB) - ui_do_untab(C, event, panel); - else if(data->state == PANEL_STATE_DRAG) + if(data->state == PANEL_STATE_DRAG) ui_do_drag(C, event, panel); } else if(event->type == TIMER && event->customdata == data->animtimer) { diff --git a/source/blender/editors/interface/interface_style.c b/source/blender/editors/interface/interface_style.c index cb9216ec1c5..5c058889107 100644 --- a/source/blender/editors/interface/interface_style.c +++ b/source/blender/editors/interface/interface_style.c @@ -184,6 +184,60 @@ void uiStyleFontDraw(uiFontStyle *fs, rcti *rect, char *str) BLF_disable(BLF_KERNING_DEFAULT); } +/* drawn same as above, but at 90 degree angle */ +void uiStyleFontDrawRotated(uiFontStyle *fs, rcti *rect, char *str) +{ + float height; + int xofs, yofs; + float angle; + rcti txtrect; + + uiStyleFontSet(fs); + + height= BLF_height("2"); /* correct offset is on baseline, the j is below that */ + /* becomes x-offset when rotated */ + xofs= floor( 0.5f*(rect->ymax - rect->ymin - height)) + 1; + + /* ignore UI_STYLE, always aligned to top */ + + /* rotate counter-clockwise for now (assumes left-to-right language)*/ + xofs+= height; + yofs= BLF_width(str) + 5; + angle= 90.0f; + + /* translate rect to vertical */ + txtrect.xmin= rect->xmin - (rect->ymax - rect->ymin); + txtrect.ymin= rect->ymin - (rect->xmax - rect->xmin); + txtrect.xmax= rect->xmin; + txtrect.ymax= rect->ymin; + + /* clip is very strict, so we give it some space */ + /* clipping is done without rotation, so make rect big enough to contain both positions */ + BLF_clipping(txtrect.xmin-1, txtrect.ymin-yofs-xofs-4, rect->xmax+1, rect->ymax+4); + BLF_enable(BLF_CLIPPING); + BLF_position(txtrect.xmin+xofs, txtrect.ymax-yofs, 0.0f); + + BLF_enable(BLF_ROTATION); + BLF_rotation(angle); + + if (fs->shadow) { + BLF_enable(BLF_SHADOW); + BLF_shadow(fs->shadow, fs->shadowcolor, fs->shadowcolor, fs->shadowcolor, fs->shadowalpha); + BLF_shadow_offset(fs->shadx, fs->shady); + } + + if (fs->kerning == 1) + BLF_enable(BLF_KERNING_DEFAULT); + + BLF_draw(str); + BLF_disable(BLF_ROTATION); + BLF_disable(BLF_CLIPPING); + if (fs->shadow) + BLF_disable(BLF_SHADOW); + if (fs->kerning == 1) + BLF_disable(BLF_KERNING_DEFAULT); +} + /* ************** helpers ************************ */ /* temporarily, does widget font */ From 1a7ec53dc446f417592d077f3b736ad35f72ae2e Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 19 Oct 2009 04:56:19 +0000 Subject: [PATCH 045/412] Assorted 3D-View Tweaks: * Paste Flipped Pose in PoseMode should now work. The parameters weren't getting set before * Added a notifier that gets sent when changing layers with scene lock on. For some reason, this doesn't seem to be sending the correct updates though. * Made the tools region no longer overlap the 3D-View. The default .b.blend file still needs to be updated so that this gets reflected. --- source/blender/editors/space_nla/space_nla.c | 7 ++++++- .../editors/space_view3d/space_view3d.c | 20 +++++++++++++++++-- .../editors/space_view3d/view3d_header.c | 12 +++++++---- 3 files changed, 32 insertions(+), 7 deletions(-) diff --git a/source/blender/editors/space_nla/space_nla.c b/source/blender/editors/space_nla/space_nla.c index 32ff7766690..5f2f75b7b6f 100644 --- a/source/blender/editors/space_nla/space_nla.c +++ b/source/blender/editors/space_nla/space_nla.c @@ -47,6 +47,8 @@ #include "BKE_nla.h" #include "BKE_colortools.h" #include "BKE_context.h" +#include "BKE_global.h" +#include "BKE_main.h" #include "BKE_screen.h" #include "BKE_utildefines.h" @@ -112,6 +114,7 @@ static SpaceLink *nla_new(const bContext *C) /* allocate DopeSheet data for NLA Editor */ snla->ads= MEM_callocN(sizeof(bDopeSheet), "NlaEdit DopeSheet"); + snla->ads->source= (ID *)scene; /* set auto-snapping settings */ snla->autosnap = SACTSNAP_FRAME; @@ -189,8 +192,10 @@ static void nla_init(struct wmWindowManager *wm, ScrArea *sa) SpaceNla *snla= (SpaceNla *)sa->spacedata.first; /* init dopesheet data if non-existant (i.e. for old files) */ - if (snla->ads == NULL) + if (snla->ads == NULL) { snla->ads= MEM_callocN(sizeof(bDopeSheet), "NlaEdit DopeSheet"); + snla->ads->source= (ID *)G.main->scene.first; // XXX this is bad, but we need this to be set correct + } ED_area_tag_refresh(sa); } diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index 2cade9bb685..86e9743d5bb 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -123,7 +123,7 @@ ARegion *view3d_has_tools_region(ScrArea *sa) BLI_insertlinkafter(&sa->regionbase, arhead, artool); artool->regiontype= RGN_TYPE_TOOLS; - artool->alignment= RGN_OVERLAP_LEFT; + artool->alignment= RGN_ALIGN_LEFT; //RGN_OVERLAP_LEFT; artool->flag = RGN_FLAG_HIDDEN; } @@ -218,12 +218,28 @@ static SpaceLink *view3d_new(const bContext *C) ar->regiontype= RGN_TYPE_HEADER; ar->alignment= RGN_ALIGN_BOTTOM; + /* toolbar */ + ar= MEM_callocN(sizeof(ARegion), "toolbar for view3d"); + + BLI_addtail(&v3d->regionbase, ar); + ar->regiontype= RGN_TYPE_UI; + ar->alignment= RGN_ALIGN_LEFT; + ar->flag = RGN_FLAG_HIDDEN; + + /* tool properties */ + ar= MEM_callocN(sizeof(ARegion), "tool properties for view3d"); + + BLI_addtail(&v3d->regionbase, ar); + ar->regiontype= RGN_TYPE_UI; + ar->alignment= RGN_ALIGN_BOTTOM|RGN_SPLIT_PREV; + ar->flag = RGN_FLAG_HIDDEN; + /* buttons/list view */ ar= MEM_callocN(sizeof(ARegion), "buttons for view3d"); BLI_addtail(&v3d->regionbase, ar); ar->regiontype= RGN_TYPE_UI; - ar->alignment= RGN_ALIGN_LEFT; + ar->alignment= RGN_ALIGN_RIGHT; ar->flag = RGN_FLAG_HIDDEN; /* main area */ diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index c0a0241c74c..e6fe8fabc13 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -178,12 +178,12 @@ static void handle_view3d_lock(bContext *C) if (v3d != NULL && sa != NULL) { if(v3d->localvd==NULL && v3d->scenelock && sa->spacetype==SPACE_VIEW3D) { - /* copy to scene */ scene->lay= v3d->lay; scene->camera= v3d->camera; - //copy_view3d_lock(REDRAW); + /* notifiers for scene update */ + WM_event_add_notifier(C, NC_SCENE, scene); } } } @@ -2204,6 +2204,9 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) uiDefIconBut(block, BUT, B_VIEWRENDER, ICON_SCENE, xco,yco,XIC,YIC, NULL, 0, 1.0, 0, 0, "Render this window (Ctrl Click for anim)"); if (ob && (ob->mode & OB_MODE_POSE)) { + PointerRNA *but_ptr; + uiBut *but; + xco+= XIC*2; uiBlockBeginAlign(block); @@ -2213,8 +2216,9 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) uiDefIconButO(block, BUT, "POSE_OT_paste", WM_OP_INVOKE_REGION_WIN, ICON_PASTEDOWN, xco,yco,XIC,YIC, NULL); xco+= XIC; - // FIXME: this needs an extra arg... - uiDefIconButO(block, BUT, "POSE_OT_paste", WM_OP_INVOKE_REGION_WIN, ICON_PASTEFLIPDOWN, xco,yco,XIC,YIC, NULL); + but=uiDefIconButO(block, BUT, "POSE_OT_paste", WM_OP_INVOKE_REGION_WIN, ICON_PASTEFLIPDOWN, xco,yco,XIC,YIC, NULL); + but_ptr= uiButGetOperatorPtrRNA(but); + RNA_boolean_set(but_ptr, "flipped", 1); uiBlockEndAlign(block); header_xco_step(ar, &xco, &yco, &maxco, XIC); From 0445ff1ae9ce619efa1eb065eecbc03e45e90d62 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 08:01:30 +0000 Subject: [PATCH 046/412] Give sequencer its own transform freeing function. Updating the sequencer after transform could not use special_aftertrans_update because it relies on data that is freed theeth: moved the customFree function to run before freeing t->data, t->data2d in postTrans(), checked that customData is not needed. --- .../editors/transform/transform_conversions.c | 112 ++++++++---------- .../editors/transform/transform_generics.c | 16 +-- 2 files changed, 59 insertions(+), 69 deletions(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index d8770afbaae..7d5ca4d57a1 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4012,6 +4012,53 @@ static int SeqToTransData_Recursive(TransInfo *t, ListBase *seqbase, TransData * } +static void freeSeqData(TransInfo *t) +{ + Editing *ed= seq_give_editing(t->scene, FALSE); + if (ed && !(t->state == TRANS_CANCEL)) { + ListBase *seqbasep= ed->seqbasep; + Sequence *seq; + + int a; + TransData *td= t->data; + + /* prevent updating the same seq twice + * if the transdata order is changed this will mess up + * but so will TransDataSeq */ + Sequence *seq_prev= NULL; + + /* flush to 2d vector from internally used 3d vector */ + for(a=0; atotal; a++, td++) { + seq= ((TransDataSeq *)td->extra)->seq; + if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { + shuffle_seq(seqbasep, seq); + } + + seq_prev= seq; + } + + for(seq= seqbasep->first; seq; seq= seq->next) { + /* We might want to build a list of effects that need to be updated during transform */ + if(seq->type & SEQ_EFFECT) { + if (seq->seq1 && seq->seq1->flag & SELECT) calc_sequence(seq); + else if (seq->seq2 && seq->seq2->flag & SELECT) calc_sequence(seq); + else if (seq->seq3 && seq->seq3->flag & SELECT) calc_sequence(seq); + } + } + + sort_seq(t->scene); + } + + if (t->customData) { + MEM_freeN(t->customData); + t->customData= NULL; + } + if (t->data) { + MEM_freeN(t->data); // XXX postTrans usually does this + t->data= NULL; + } +} + static void createTransSeqData(bContext *C, TransInfo *t) { @@ -4029,6 +4076,8 @@ static void createTransSeqData(bContext *C, TransInfo *t) return; } + t->customFree= freeSeqData; + /* which side of the current frame should be allowed */ if (t->mode == TFM_TIME_EXTEND) { /* only side on which mouse is gets transformed */ @@ -4480,6 +4529,7 @@ void autokeyframe_pose_cb_func(Scene *scene, View3D *v3d, Object *ob, int tmode, /* inserting keys, refresh ipo-keys, pointcache, redraw events... (ton) */ /* note: transdata has been freed already! */ /* note: this runs even when createTransData exits early because (t->total==0), is this correct?... (campbell) */ +/* note: sequencer freeing has its own function now because of a conflict with transform's order of freeing (campbell)*/ void special_aftertrans_update(TransInfo *t) { Object *ob; @@ -4494,68 +4544,6 @@ void special_aftertrans_update(TransInfo *t) } } } - - if (t->spacetype == SPACE_SEQ) { - Editing *ed= seq_give_editing(t->scene, FALSE); - if (ed && !cancelled) { - ListBase *seqbasep= ed->seqbasep; - Sequence *seq; -#if 0 // TRANSFORM_FIX_ME, Would prefer to use this since the array takes into - // account what where transforming (with extend, locked strips etc) - // But at the moment t->data is freed in postTrans so for now re-shuffeling selected strips works ok. - Campbell - - int a; - TransData *td= t->data; - - /* prevent updating the same seq twice - * if the transdata order is changed this will mess up - * but so will TransDataSeq */ - Sequence *seq_prev= NULL; - - /* flush to 2d vector from internally used 3d vector */ - for(a=0; atotal; a++, td++) { - seq= ((TransDataSeq *)td->extra)->seq; - if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { - shuffle_seq(seqbasep, seq); - } - - seq_prev= seq; - } -#else // while t->data is not available... - int machine, max_machine = 0; - - /* update in order so we always move bottom strips first */ - for(seq= seqbasep->first; seq; seq= seq->next) { - max_machine = MAX2(max_machine, seq->machine); - } - - for (machine = 0; machine <= max_machine; machine++) - { - for(seq= seqbasep->first; seq; seq= seq->next) { - if (seq->machine == machine && seq->depth == 0 && (seq->flag & (SELECT|SEQ_LEFTSEL|SEQ_RIGHTSEL)) != 0 && (seq->flag & SEQ_OVERLAP)) { - shuffle_seq(seqbasep, seq); - } - } - } -#endif - - for(seq= seqbasep->first; seq; seq= seq->next) { - /* We might want to build a list of effects that need to be updated during transform */ - if(seq->type & SEQ_EFFECT) { - if (seq->seq1 && seq->seq1->flag & SELECT) calc_sequence(seq); - else if (seq->seq2 && seq->seq2->flag & SELECT) calc_sequence(seq); - else if (seq->seq3 && seq->seq3->flag & SELECT) calc_sequence(seq); - } - } - - sort_seq(t->scene); - } - - if (t->customData) - MEM_freeN(t->customData); - if (t->data) - MEM_freeN(t->data); // XXX postTrans usually does this - } else if (t->spacetype == SPACE_ACTION) { SpaceAction *saction= (SpaceAction *)t->sa->spacedata.first; Scene *scene; diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index a7a35c281fd..c2046621c3a 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -1052,6 +1052,15 @@ void postTrans (TransInfo *t) ED_region_draw_cb_exit(t->ar->type, t->draw_handle); } + + if (t->customFree) { + /* Can take over freeing t->data and data2d etc... */ + t->customFree(t); + } + else if (t->customData) { + MEM_freeN(t->customData); + } + /* postTrans can be called when nothing is selected, so data is NULL already */ if (t->data) { int a; @@ -1080,13 +1089,6 @@ void postTrans (TransInfo *t) { MEM_freeN(t->mouse.data); } - - if (t->customFree) { - t->customFree(t); - } - else if (t->customData) { - MEM_freeN(t->customData); - } } void applyTransObjects(TransInfo *t) From 73d0c673e8df02dc14457215eb46bd5e1468450f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 19 Oct 2009 09:50:02 +0000 Subject: [PATCH 047/412] Fixed Layout-Engine bug that was causing checkbox menu entries to draw with the wrong icon when enabled. --- source/blender/editors/interface/interface_layout.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 233d3b214ae..51458f75ed9 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -892,10 +892,13 @@ void uiItemFullR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, Proper name= ui_item_name_add_colon(name, namestr); if(layout->root->type == UI_LAYOUT_MENU) { - if(type == PROP_BOOLEAN) - icon= (RNA_property_boolean_get(ptr, prop))? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; - else if(type == PROP_ENUM && index == RNA_ENUM_VALUE) - icon= (RNA_property_enum_get(ptr, prop) == value)? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; + /* whether the property is actually enabled doesn't matter, + * since the widget code for drawing toggles takes care of the + * rest (i.e. given the deactivated icon, it finds the active one + * based on the state of the setting) + */ + if ( (type == PROP_BOOLEAN) || (type==PROP_ENUM && index==RNA_ENUM_VALUE) ) + icon= ICON_CHECKBOX_DEHLT; /* ICON_CHECKBOX_HLT when on... */ } slider= (flag & UI_ITEM_R_SLIDER); From 256348eb6b56ef77c124080dcc14203c77901fe2 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 09:54:25 +0000 Subject: [PATCH 048/412] Fix #19657: crash when cancelling volume material render, raytree is invalid if it cancels during build, so don't use it then. Also fixes some use of unitialized variables in raytracing code. --- .../blender/render/intern/source/rayshade.c | 20 +++++++++++++------ .../blender/render/intern/source/volumetric.c | 4 ++-- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/source/blender/render/intern/source/rayshade.c b/source/blender/render/intern/source/rayshade.c index 4ad4d6370f8..7043837166a 100644 --- a/source/blender/render/intern/source/rayshade.c +++ b/source/blender/render/intern/source/rayshade.c @@ -242,7 +242,7 @@ RayObject* makeraytree_object(Render *re, ObjectInstanceRen *obi) assert( faces > 0 ); //Create Ray cast accelaration structure - raytree = obr->raytree = RE_rayobject_create( re, re->r.raytrace_structure, faces ); + raytree = RE_rayobject_create( re, re->r.raytrace_structure, faces ); if( (re->r.raytrace_options & R_RAYTRACE_USE_LOCAL_COORDS) ) vlakprimitive = obr->rayprimitives = (VlakPrimitive*)MEM_callocN(faces*sizeof(VlakPrimitive), "ObjectRen primitives"); else @@ -269,13 +269,20 @@ RayObject* makeraytree_object(Render *re, ObjectInstanceRen *obi) } } RE_rayobject_done( raytree ); + + /* in case of cancel during build, raytree is not usable */ + if(test_break(re)) + RE_rayobject_free(raytree); + else + obr->raytree= raytree; } - - if((obi->flag & R_TRANSFORMED) && obi->raytree == NULL) - { - obi->transform_primitives = 0; - obi->raytree = RE_rayobject_instance_create( obr->raytree, obi->mat, obi, obi->obr->rayobi ); + if(obr->raytree) { + if((obi->flag & R_TRANSFORMED) && obi->raytree == NULL) + { + obi->transform_primitives = 0; + obi->raytree = RE_rayobject_instance_create( obr->raytree, obi->mat, obi, obi->obr->rayobi ); + } } if(obi->raytree) return obi->raytree; @@ -439,6 +446,7 @@ void makeraytree(Render *re) { //Calculate raytree max_size //This is ONLY needed to kept a bogus behaviour of SUN and HEMI lights + INIT_MINMAX(min, max); RE_rayobject_merge_bb( re->raytree, min, max ); for(i=0; i<3; i++) { diff --git a/source/blender/render/intern/source/volumetric.c b/source/blender/render/intern/source/volumetric.c index 7cb165ccaea..cf4b6b4002f 100644 --- a/source/blender/render/intern/source/volumetric.c +++ b/source/blender/render/intern/source/volumetric.c @@ -78,7 +78,6 @@ static float vol_get_shadow(ShadeInput *shi, LampRen *lar, float *co) float visibility = 1.f; if(lar->shb) { - float dot=1.f; float dxco[3]={0.f, 0.f, 0.f}, dyco[3]={0.f, 0.f, 0.f}; visibility = testshadowbuf(&R, lar->shb, co, dxco, dyco, 1.0, 0.0); @@ -139,7 +138,8 @@ static int vol_get_bounds(ShadeInput *shi, float *co, float *vec, float *hitco, isect->skip = RE_SKIP_VLR_NEIGHBOUR; isect->orig.face = (void*)shi->vlr; isect->orig.ob = (void*)shi->obi; - } else if (intersect_type == VOL_BOUNDS_SS) { + } else { // if (intersect_type == VOL_BOUNDS_SS) { + isect->skip= 0; isect->orig.face= NULL; isect->orig.ob = NULL; } From 8802bea7a07ab0e29f5b4bcbf7b6074eced21a1b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 09:57:55 +0000 Subject: [PATCH 049/412] Fix for a preview render crash that happened sometimes, when the thread was marked as ready while it had not started yet. --- source/blender/windowmanager/intern/wm_jobs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_jobs.c b/source/blender/windowmanager/intern/wm_jobs.c index 9e16ce4082f..498306484e9 100644 --- a/source/blender/windowmanager/intern/wm_jobs.c +++ b/source/blender/windowmanager/intern/wm_jobs.c @@ -192,7 +192,6 @@ static void *do_job_thread(void *job_v) { wmJob *steve= job_v; - steve->stop= steve->ready= 0; steve->startjob(steve->run_customdata, &steve->stop, &steve->do_update); steve->ready= 1; @@ -245,6 +244,9 @@ void WM_jobs_start(wmWindowManager *wm, wmJob *steve) if(steve->initjob) steve->initjob(steve->run_customdata); + steve->stop= 0; + steve->ready= 0; + BLI_init_threads(&steve->threads, do_job_thread, 1); BLI_insert_thread(&steve->threads, steve); From 2c985dee976eb5b3ee6729312f046a344cb9947c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 10:07:19 +0000 Subject: [PATCH 050/412] - listener for sequencer space panels added for frame changes, now redraws during transform - invalid pointer was used for getting the sequencer length crashing blender or setting the length to negative values. - printf_strip(seq) for debugging sequence strip locations - Spelling: Cheet Sheet -> Cheat Sheet --- release/scripts/ui/space_info.py | 2 +- source/blender/blenkernel/BKE_sequence.h | 1 + source/blender/blenkernel/intern/sequence.c | 11 +++- .../editors/space_sequencer/space_sequencer.c | 8 +++ .../editors/transform/transform_conversions.c | 52 ++++++++++++------- source/blender/makesrna/intern/rna_sequence.c | 2 +- 6 files changed, 53 insertions(+), 23 deletions(-) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 7246159be7a..634e9653da9 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -287,7 +287,7 @@ class HELP_OT_user_community(HelpOperator): class HELP_OT_operator_cheat_sheet(bpy.types.Operator): __idname__ = "help.operator_cheat_sheet" - __label__ = "Operator Cheet Sheet (new textblock)" + __label__ = "Operator Cheat Sheet (new textblock)" def execute(self, context): op_strings = [] tot = 0 diff --git a/source/blender/blenkernel/BKE_sequence.h b/source/blender/blenkernel/BKE_sequence.h index f72617c8312..55c9d978f26 100644 --- a/source/blender/blenkernel/BKE_sequence.h +++ b/source/blender/blenkernel/BKE_sequence.h @@ -135,6 +135,7 @@ struct SeqEffectHandle { /* ********************* prototypes *************** */ /* sequence.c */ +void printf_strip(struct Sequence *seq); // extern void seq_free_sequence(struct Scene *scene, struct Sequence *seq); diff --git a/source/blender/blenkernel/intern/sequence.c b/source/blender/blenkernel/intern/sequence.c index b80df60e726..20433e4a3b1 100644 --- a/source/blender/blenkernel/intern/sequence.c +++ b/source/blender/blenkernel/intern/sequence.c @@ -69,6 +69,13 @@ static int blender_test_break() {return 0;} /* **** XXX ******** */ +void printf_strip(Sequence *seq) +{ + fprintf(stderr, "name: '%s', len:%d, start:%d, (startofs:%d, endofs:%d), (startstill:%d, endstill:%d), machine:%d, (startdisp:%d, enddisp:%d)\n", + seq->name, seq->len, seq->start, seq->startofs, seq->endofs, seq->startstill, seq->endstill, seq->machine, seq->startdisp, seq->enddisp); + fprintf(stderr, "\tseq_tx_set_final_left: %d %d\n\n", seq_tx_get_final_left(seq, 0), seq_tx_get_final_right(seq, 0)); +} + /* ********************************************************************** alloc / free functions ********************************************************************** */ @@ -3238,7 +3245,7 @@ void seq_tx_set_final_left(Sequence *seq, int val) { if (val < (seq)->start) { seq->startstill = abs(val - (seq)->start); - (seq)->startofs = 0; + seq->startofs = 0; } else { seq->startofs = abs(val - (seq)->start); seq->startstill = 0; @@ -3249,7 +3256,7 @@ void seq_tx_set_final_right(Sequence *seq, int val) { if (val > (seq)->start + (seq)->len) { seq->endstill = abs(val - (seq->start + (seq)->len)); - (seq)->endofs = 0; + seq->endofs = 0; } else { seq->endofs = abs(val - ((seq)->start + (seq)->len)); seq->endstill = 0; diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c index 626a3e6e2e0..206070b7095 100644 --- a/source/blender/editors/space_sequencer/space_sequencer.c +++ b/source/blender/editors/space_sequencer/space_sequencer.c @@ -245,6 +245,14 @@ static void sequencer_buttons_area_listener(ARegion *ar, wmNotifier *wmn) { /* context changes */ switch(wmn->category) { + case NC_SCENE: + switch(wmn->data) { + case ND_FRAME: + case ND_SEQUENCER: + ED_region_tag_redraw(ar); + break; + } + break; case NC_SPACE: if(wmn->data == ND_SPACE_SEQUENCER) ED_region_tag_redraw(ar); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 7d5ca4d57a1..51316a6c050 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4015,38 +4015,52 @@ static int SeqToTransData_Recursive(TransInfo *t, ListBase *seqbase, TransData * static void freeSeqData(TransInfo *t) { Editing *ed= seq_give_editing(t->scene, FALSE); - if (ed && !(t->state == TRANS_CANCEL)) { - ListBase *seqbasep= ed->seqbasep; - Sequence *seq; - int a; + if(ed != NULL) { + ListBase *seqbasep= ed->seqbasep; TransData *td= t->data; + int a; /* prevent updating the same seq twice * if the transdata order is changed this will mess up * but so will TransDataSeq */ Sequence *seq_prev= NULL; + Sequence *seq; - /* flush to 2d vector from internally used 3d vector */ - for(a=0; atotal; a++, td++) { - seq= ((TransDataSeq *)td->extra)->seq; - if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { - shuffle_seq(seqbasep, seq); + + if (!(t->state == TRANS_CANCEL)) { + + /* flush to 2d vector from internally used 3d vector */ + for(a=0; atotal; a++, td++) { + seq= ((TransDataSeq *)td->extra)->seq; + if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { + shuffle_seq(seqbasep, seq); + } + + seq_prev= seq; } - seq_prev= seq; - } + for(seq= seqbasep->first; seq; seq= seq->next) { + /* We might want to build a list of effects that need to be updated during transform */ + if(seq->type & SEQ_EFFECT) { + if (seq->seq1 && seq->seq1->flag & SELECT) calc_sequence(seq); + else if (seq->seq2 && seq->seq2->flag & SELECT) calc_sequence(seq); + else if (seq->seq3 && seq->seq3->flag & SELECT) calc_sequence(seq); + } + } - for(seq= seqbasep->first; seq; seq= seq->next) { - /* We might want to build a list of effects that need to be updated during transform */ - if(seq->type & SEQ_EFFECT) { - if (seq->seq1 && seq->seq1->flag & SELECT) calc_sequence(seq); - else if (seq->seq2 && seq->seq2->flag & SELECT) calc_sequence(seq); - else if (seq->seq3 && seq->seq3->flag & SELECT) calc_sequence(seq); + sort_seq(t->scene); + } + else { + /* Cancelled, need to update the strips display */ + for(a=0; atotal; a++, td++) { + seq= ((TransDataSeq *)td->extra)->seq; + if ((seq != seq_prev) && (seq->depth==0)) { + calc_sequence_disp(seq); + } + seq_prev= seq; } } - - sort_seq(t->scene); } if (t->customData) { diff --git a/source/blender/makesrna/intern/rna_sequence.c b/source/blender/makesrna/intern/rna_sequence.c index c48031d51b3..8bbffa4425a 100644 --- a/source/blender/makesrna/intern/rna_sequence.c +++ b/source/blender/makesrna/intern/rna_sequence.c @@ -85,7 +85,7 @@ static void rna_SequenceEditor_length_set(PointerRNA *ptr, int value) static int rna_SequenceEditor_length_get(PointerRNA *ptr) { Sequence *seq= (Sequence*)ptr->data; - return seq_tx_get_final_right(seq, 1)-seq_tx_get_final_left(seq, 1); + return seq_tx_get_final_right(seq, 0)-seq_tx_get_final_left(seq, 0); } static void rna_SequenceEditor_channel_set(PointerRNA *ptr, int value) From e2fa58f7f3cceb89fd248d5361d875224e62de38 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 10:10:05 +0000 Subject: [PATCH 051/412] Fix #19669 and other: triple buffer & icon texture drawing could cause a system crash and other issues on ATI/Apple, due to a buggy driver (similar issues reported for other OpenGL applications). For now, work around it by not using non-power-of-two textures on this combination. --- .../editors/interface/interface_icons.c | 2 +- .../blender/editors/space_view3d/drawobject.c | 2 +- .../blender/editors/space_view3d/drawvolume.c | 2 +- source/blender/gpu/GPU_extensions.h | 3 +- source/blender/gpu/intern/gpu_extensions.c | 30 +++++++++++++------ source/blender/windowmanager/intern/wm_draw.c | 2 +- .../BlenderRoutines/BL_KetsjiEmbedStart.cpp | 2 +- .../GamePlayer/ghost/GPG_Application.cpp | 2 +- 8 files changed, 29 insertions(+), 16 deletions(-) diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c index 1153c475339..7648c9412b7 100644 --- a/source/blender/editors/interface/interface_icons.c +++ b/source/blender/editors/interface/interface_icons.c @@ -489,7 +489,7 @@ static void init_internal_icons() } /* we only use a texture for cards with non-power of two */ - if(GLEW_ARB_texture_non_power_of_two) { + if(GPU_non_power_of_two_support()) { glGenTextures(1, &icongltex.id); if(icongltex.id) { diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index d2988772abe..0688f9b5e0e 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -212,7 +212,7 @@ static void view3d_project_short_noclip(ARegion *ar, float *vec, short *adr) int draw_glsl_material(Scene *scene, Object *ob, View3D *v3d, int dt) { - if(!GPU_extensions_minimum_support()) + if(!GPU_glsl_support()) return 0; if(G.f & G_PICKSEL) return 0; diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index ef3627e2b12..ea022d1b670 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -349,7 +349,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture else printf("No volume shadow\n"); - if (!GLEW_ARB_texture_non_power_of_two) { + if (!GPU_non_power_of_two_support()) { cor[0] = (float)res[0]/(float)larger_pow2(res[0]); cor[1] = (float)res[1]/(float)larger_pow2(res[1]); cor[2] = (float)res[2]/(float)larger_pow2(res[2]); diff --git a/source/blender/gpu/GPU_extensions.h b/source/blender/gpu/GPU_extensions.h index e00cab79ce0..a910ff9c3e7 100644 --- a/source/blender/gpu/GPU_extensions.h +++ b/source/blender/gpu/GPU_extensions.h @@ -54,7 +54,8 @@ typedef struct GPUShader GPUShader; void GPU_extensions_disable(void); void GPU_extensions_init(void); /* call this before running any of the functions below */ void GPU_extensions_exit(void); -int GPU_extensions_minimum_support(void); +int GPU_glsl_support(void); +int GPU_non_power_of_two_support(void); int GPU_print_error(char *str); /* GPU Texture diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 55e4b337a77..52a6b0dd1e8 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -69,7 +69,7 @@ static struct GPUGlobal { GLint maxtextures; GLuint currentfb; - int minimumsupport; + int glslsupport; int extdisabled; } GG = {1, 0, 0, 0}; @@ -87,15 +87,27 @@ void GPU_extensions_init() if (GLEW_ARB_multitexture) glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, &GG.maxtextures); - GG.minimumsupport = 1; - if (!GLEW_ARB_multitexture) GG.minimumsupport = 0; - if (!GLEW_ARB_vertex_shader) GG.minimumsupport = 0; - if (!GLEW_ARB_fragment_shader) GG.minimumsupport = 0; + GG.glslsupport = 1; + if (!GLEW_ARB_multitexture) GG.glslsupport = 0; + if (!GLEW_ARB_vertex_shader) GG.glslsupport = 0; + if (!GLEW_ARB_fragment_shader) GG.glslsupport = 0; } -int GPU_extensions_minimum_support() +int GPU_glsl_support() { - return !GG.extdisabled && GG.minimumsupport; + return !GG.extdisabled && GG.glslsupport; +} + +int GPU_non_power_of_two_support() +{ + /* Exception for buggy ATI/Apple driver in Mac OS X 10.5/10.6, + * they claim to support this but can cause system freeze */ +#ifdef __APPLE__ + if(strcmp(glGetString(GL_VENDOR), "ATI Technologies Inc.") == 0) + return 0; +#endif + + return GLEW_ARB_texture_non_power_of_two; } int GPU_print_error(char *str) @@ -231,7 +243,7 @@ static GPUTexture *GPU_texture_create_nD(int w, int h, int n, float *fpixels, in return NULL; } - if (!GLEW_ARB_texture_non_power_of_two) { + if (!GPU_non_power_of_two_support()) { tex->w = larger_pow2(tex->w); tex->h = larger_pow2(tex->h); } @@ -337,7 +349,7 @@ GPUTexture *GPU_texture_create_3D(int w, int h, int depth, float *fpixels) return NULL; } - if (!GLEW_ARB_texture_non_power_of_two) { + if (!GPU_non_power_of_two_support()) { tex->w = larger_pow2(tex->w); tex->h = larger_pow2(tex->h); tex->depth = larger_pow2(tex->depth); diff --git a/source/blender/windowmanager/intern/wm_draw.c b/source/blender/windowmanager/intern/wm_draw.c index 1df567e3c92..93ecd4076a3 100644 --- a/source/blender/windowmanager/intern/wm_draw.c +++ b/source/blender/windowmanager/intern/wm_draw.c @@ -376,7 +376,7 @@ static int wm_triple_gen_textures(wmWindow *win, wmDrawTriple *triple) triple->x[0]= win->sizex; triple->y[0]= win->sizey; } - else if(GLEW_ARB_texture_non_power_of_two) { + else if(GPU_non_power_of_two_support()) { triple->target= GL_TEXTURE_2D; triple->nx= 1; triple->ny= 1; diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp index df7f35d7773..ca5faf00bb6 100644 --- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp +++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp @@ -356,7 +356,7 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int alw if(GLEW_ARB_multitexture && GLEW_VERSION_1_1) usemat = true; - if(GPU_extensions_minimum_support()) + if(GPU_glsl_support()) useglslmat = true; else if(blscene->gm.matmode == GAME_MAT_GLSL) usemat = false; diff --git a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp index 3c989293c94..e771d12988c 100644 --- a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp +++ b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp @@ -539,7 +539,7 @@ bool GPG_Application::initEngine(GHOST_IWindow* window, const int stereoMode) if(GLEW_ARB_multitexture && GLEW_VERSION_1_1) m_blendermat = (SYS_GetCommandLineInt(syshandle, "blender_material", 1) != 0); - if(GPU_extensions_minimum_support()) + if(GPU_glsl_support()) m_blenderglslmat = (SYS_GetCommandLineInt(syshandle, "blender_glsl_material", 1) != 0); else if(gm->matmode == GAME_MAT_GLSL) m_blendermat = false; From 55249e255a2bddda9042f2a608f1d7ee113a6fe4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 10:37:50 +0000 Subject: [PATCH 052/412] fix for bug where moving strips that are next to eachother would detect invalid overlaps first update strips, then check overlap in a second loop --- .../editors/transform/transform_conversions.c | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 51316a6c050..63361e31c6e 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -2325,8 +2325,8 @@ void flushTransSeq(TransInfo *t) { ListBase *seqbasep= seq_give_editing(t->scene, FALSE)->seqbasep; /* Editing null check alredy done */ int a, new_frame; - TransData *td= t->data; - TransData2D *td2d= t->data2d; + TransData *td= NULL; + TransData2D *td2d= NULL; TransDataSeq *tdsq= NULL; Sequence *seq; @@ -2338,7 +2338,7 @@ void flushTransSeq(TransInfo *t) Sequence *seq_prev= NULL; /* flush to 2d vector from internally used 3d vector */ - for(a=0; atotal; a++, td++, td2d++) { + for(a=0, td= t->data, td2d= t->data2d; atotal; a++, td++, td2d++) { tdsq= (TransDataSeq *)td->extra; seq= tdsq->seq; @@ -2372,16 +2372,30 @@ void flushTransSeq(TransInfo *t) * children are ALWAYS transformed first * so we dont need to do this in another loop. */ calc_sequence(seq); + } + else { + calc_sequence_disp(seq); + } + } + seq_prev= seq; + } + /* need to do the overlap check in a new loop otherwise adjacent strips + * will not be updated and we'll get false positives */ + seq_prev= NULL; + for(a=0, td= t->data, td2d= t->data2d; atotal; a++, td++, td2d++) { + + tdsq= (TransDataSeq *)td->extra; + seq= tdsq->seq; + + if (seq != seq_prev) { + if(seq->depth==0) { /* test overlap, displayes red outline */ seq->flag &= ~SEQ_OVERLAP; if( seq_test_overlap(seqbasep, seq) ) { seq->flag |= SEQ_OVERLAP; } } - else { - calc_sequence_disp(seq); - } } seq_prev= seq; } From b18eeed2256ee078e7ebfccdcf6a4d3131507067 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 19 Oct 2009 10:49:45 +0000 Subject: [PATCH 053/412] Cocoa : - fix#19592 : implemented updated continuous grab feature (fixing compilation issues) - fix some 10.6 & 64bit warnings --- intern/ghost/intern/GHOST_SystemCocoa.h | 34 +---- intern/ghost/intern/GHOST_SystemCocoa.mm | 175 ++++++++++------------- intern/ghost/intern/GHOST_Window.h | 7 + intern/ghost/intern/GHOST_WindowCocoa.h | 10 +- intern/ghost/intern/GHOST_WindowCocoa.mm | 116 +++++++-------- 5 files changed, 146 insertions(+), 196 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.h b/intern/ghost/intern/GHOST_SystemCocoa.h index ee7f9d8ed37..e880f851267 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.h +++ b/intern/ghost/intern/GHOST_SystemCocoa.h @@ -228,34 +228,7 @@ protected: * @return Indication whether the event was handled. */ GHOST_TSuccess handleKeyEvent(void *eventPtr); - - /** - * Handles all basic Mac application stuff for a mouse down event. - * @param eventPtr An NSEvent pointer (casted to void* to enable compilation in standard C++) - * @return Indication whether the event was handled. - */ - // bool handleMouseDown(void *eventPtr); - - /** - * Handles a Mac menu command. - * @param menuResult A Mac menu/item identifier. - * @return Indication whether the event was handled. - */ - // bool handleMenuCommand(GHOST_TInt32 menuResult); - /* callback for blender generated events */ -// static OSStatus blendEventHandlerProc(EventHandlerCallRef handler, EventRef event, void* userData); - - - /** - * Callback for Mac Timer tasks that expire. - * @param tmTask Pointer to the timer task that expired. - */ - //static void s_timerCallback(TMTaskPtr tmTask); - - /** Event handler reference. */ - //EventHandlerRef m_handler; - /** Start time at initialization. */ GHOST_TUns64 m_start_time; @@ -266,7 +239,12 @@ protected: GHOST_TUns32 m_modifierMask; /** Ignores window size messages (when window is dragged). */ - bool m_ignoreWindowSizedMessages; + bool m_ignoreWindowSizedMessages; + + /** Stores the mouse cursor delta due to setting a new cursor position + * Needed because cocoa event delta cursor move takes setCursorPosition changes too. + */ + GHOST_TInt32 m_cursorDelta_x, m_cursorDelta_y; }; #endif // _GHOST_SYSTEM_COCOA_H_ diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 62f0c538e7e..f8e124991af 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -565,6 +565,8 @@ GHOST_SystemCocoa::GHOST_SystemCocoa() { m_modifierMask =0; m_pressedMouseButtons =0; + m_cursorDelta_x=0; + m_cursorDelta_y=0; m_displayManager = new GHOST_DisplayManagerCocoa (); GHOST_ASSERT(m_displayManager, "GHOST_SystemCocoa::GHOST_SystemCocoa(): m_displayManager==0\n"); m_displayManager->initialize(); @@ -873,15 +875,6 @@ bool GHOST_SystemCocoa::processEvents(bool waitForEvent) if (timerMgr->fireTimers(getMilliSeconds())) { anyProcessed = true; - } - - if (getFullScreen()) { - // Check if the full-screen window is dirty - GHOST_IWindow* window = m_windowManager->getFullScreenWindow(); - if (((GHOST_WindowCarbon*)window)->getFullScreenDirty()) { - pushEvent( new GHOST_Event(getMilliSeconds(), GHOST_kEventWindowUpdate, window) ); - anyProcessed = true; - } }*/ do { @@ -999,6 +992,12 @@ GHOST_TSuccess GHOST_SystemCocoa::handleWindowEvent(GHOST_TEventType eventType, GHOST_TUns8 GHOST_SystemCocoa::handleQuitRequest() { + GHOST_Window* window = (GHOST_Window*)m_windowManager->getActiveWindow(); + + //Discard quit event if we are in cursor grab sequence + if ((window->getCursorGrabMode() != GHOST_kGrabDisable) && (window->getCursorGrabMode() != GHOST_kGrabNormal)) + return GHOST_kExitCancel; + //Check open windows if some changes are not saved if (m_windowManager->getAnyModifiedState()) { @@ -1129,27 +1128,78 @@ GHOST_TSuccess GHOST_SystemCocoa::handleMouseEvent(void *eventPtr) //No tablet event included : do nothing break; } + case NSMouseMoved: - { - if(window->getCursorWarp()) { - GHOST_TInt32 x_warp, y_warp, x_accum, y_accum; - - window->getCursorWarpPos(x_warp, y_warp); - - window->getCursorWarpAccum(x_accum, y_accum); - x_accum += [event deltaX]; - y_accum += -[event deltaY]; //Strange Apple implementation (inverted coordinates for the deltaY) ... - window->setCursorWarpAccum(x_accum, y_accum); - - pushEvent(new GHOST_EventCursor([event timestamp], GHOST_kEventCursorMove, window, x_warp+x_accum, y_warp+y_accum)); - } - else { //Normal cursor operation: send mouse position in window - NSPoint mousePos = [event locationInWindow]; - pushEvent(new GHOST_EventCursor([event timestamp], GHOST_kEventCursorMove, window, mousePos.x, mousePos.y)); - window->setCursorWarpAccum(0, 0); //Mouse motion occured between two cursor warps, so we can reset the delta counter + switch (window->getCursorGrabMode()) { + case GHOST_kGrabHide: //Cursor hidden grab operation : no cursor move + { + GHOST_TInt32 x_warp, y_warp, x_accum, y_accum; + + window->getCursorGrabInitPos(x_warp, y_warp); + + window->getCursorGrabAccum(x_accum, y_accum); + x_accum += [event deltaX]; + y_accum += -[event deltaY]; //Strange Apple implementation (inverted coordinates for the deltaY) ... + window->setCursorGrabAccum(x_accum, y_accum); + + pushEvent(new GHOST_EventCursor([event timestamp], GHOST_kEventCursorMove, window, x_warp+x_accum, y_warp+y_accum)); + } + break; + case GHOST_kGrabWrap: //Wrap cursor at area/window boundaries + { + NSPoint mousePos = [event locationInWindow]; + GHOST_TInt32 x_mouse= mousePos.x; + GHOST_TInt32 y_mouse= mousePos.y; + GHOST_TInt32 x_accum, y_accum, x_cur, y_cur; + GHOST_Rect bounds, windowBounds, correctedBounds; + + /* fallback to window bounds */ + if(window->getCursorGrabBounds(bounds)==GHOST_kFailure) + window->getClientBounds(bounds); + + //Switch back to Cocoa coordinates orientation (y=0 at botton,the same as blender internal btw!), and to client coordinates + window->getClientBounds(windowBounds); + bounds.m_b = (windowBounds.m_b - windowBounds.m_t) - bounds.m_b; + bounds.m_t = (windowBounds.m_b - windowBounds.m_t) - bounds.m_t; + window->screenToClient(bounds.m_l,bounds.m_b, correctedBounds.m_l, correctedBounds.m_t); + window->screenToClient(bounds.m_r, bounds.m_t, correctedBounds.m_r, correctedBounds.m_b); + + //Update accumulation counts + window->getCursorGrabAccum(x_accum, y_accum); + x_accum += [event deltaX]-m_cursorDelta_x; + y_accum += -[event deltaY]-m_cursorDelta_y; //Strange Apple implementation (inverted coordinates for the deltaY) ... + window->setCursorGrabAccum(x_accum, y_accum); + + + //Warp mouse cursor if needed + x_mouse += [event deltaX]-m_cursorDelta_x; + y_mouse += -[event deltaY]-m_cursorDelta_y; + correctedBounds.wrapPoint(x_mouse, y_mouse, 2); + + //Compensate for mouse moved event taking cursor position set into account + m_cursorDelta_x = x_mouse-mousePos.x; + m_cursorDelta_y = y_mouse-mousePos.y; + + //Set new cursor position + window->clientToScreen(x_mouse, y_mouse, x_cur, y_cur); + setCursorPosition(x_cur, y_cur); /* wrap */ + + //Post event + window->getCursorGrabInitPos(x_cur, y_cur); + pushEvent(new GHOST_EventCursor([event timestamp], GHOST_kEventCursorMove, window, x_cur + x_accum, y_cur + y_accum)); + } + break; + default: + { + //Normal cursor operation: send mouse position in window + NSPoint mousePos = [event locationInWindow]; + pushEvent(new GHOST_EventCursor([event timestamp], GHOST_kEventCursorMove, window, mousePos.x, mousePos.y)); + m_cursorDelta_x=0; + m_cursorDelta_y=0; //Mouse motion occured between two cursor warps, so we can reset the delta counter + } + break; } break; - } case NSScrollWheel: { @@ -1323,74 +1373,3 @@ void GHOST_SystemCocoa::putClipboard(GHOST_TInt8 *buffer, bool selection) const [pool drain]; } - -#pragma mark Carbon stuff to remove - -#ifdef WITH_CARBON - - -OSErr GHOST_SystemCarbon::sAEHandlerLaunch(const AppleEvent *event, AppleEvent *reply, SInt32 refCon) -{ - //GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon; - - return noErr; -} - -OSErr GHOST_SystemCarbon::sAEHandlerOpenDocs(const AppleEvent *event, AppleEvent *reply, SInt32 refCon) -{ - //GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon; - AEDescList docs; - SInt32 ndocs; - OSErr err; - - err = AEGetParamDesc(event, keyDirectObject, typeAEList, &docs); - if (err != noErr) return err; - - err = AECountItems(&docs, &ndocs); - if (err==noErr) { - int i; - - for (i=0; ipushEvent( new GHOST_Event(sys->getMilliSeconds(), GHOST_kEventQuit, NULL) ); - - return noErr; -} -#endif \ No newline at end of file diff --git a/intern/ghost/intern/GHOST_Window.h b/intern/ghost/intern/GHOST_Window.h index 0986fc57430..86447a8623c 100644 --- a/intern/ghost/intern/GHOST_Window.h +++ b/intern/ghost/intern/GHOST_Window.h @@ -159,6 +159,7 @@ public: */ inline virtual bool getCursorVisibility() const; inline virtual GHOST_TGrabCursorMode getCursorGrabMode() const; + inline virtual void getCursorGrabInitPos(GHOST_TInt32 &x, GHOST_TInt32 &y) const; inline virtual void getCursorGrabAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const; inline virtual void setCursorGrabAccum(GHOST_TInt32 x, GHOST_TInt32 y); @@ -327,6 +328,12 @@ inline GHOST_TGrabCursorMode GHOST_Window::getCursorGrabMode() const return m_cursorGrab; } +inline void GHOST_Window::getCursorGrabInitPos(GHOST_TInt32 &x, GHOST_TInt32 &y) const +{ + x = m_cursorGrabInitPos[0]; + y = m_cursorGrabInitPos[1]; +} + inline void GHOST_Window::getCursorGrabAccum(GHOST_TInt32 &x, GHOST_TInt32 &y) const { x= m_cursorGrabAccumPos[0]; diff --git a/intern/ghost/intern/GHOST_WindowCocoa.h b/intern/ghost/intern/GHOST_WindowCocoa.h index e5fff75c66e..5368d0f1e13 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.h +++ b/intern/ghost/intern/GHOST_WindowCocoa.h @@ -236,18 +236,12 @@ protected: */ virtual GHOST_TSuccess setWindowCursorVisibility(bool visible); - /** - * Sets the cursor warp accumulator. Overriden for workaround due to Cocoa next event after cursor set giving delta values non zero - */ - inline virtual bool setCursorGrabAccum(GHOST_TInt32 x, GHOST_TInt32 y); - /** * Sets the cursor grab on the window using * native window system calls. - * @param warp Only used when grab is enabled, hides the mouse and allows gragging outside the screen. */ - virtual GHOST_TSuccess setWindowCursorGrab(bool grab, bool warp, bool restore); - + virtual GHOST_TSuccess setWindowCursorGrab(GHOST_TGrabCursorMode mode); + /** * Sets the cursor shape on the window using * native window system calls. diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index e41c773a4c3..c9b4fe40001 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -50,14 +50,27 @@ static NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[] = }; #pragma mark Cocoa window delegate object - +/* live resize ugly patch +extern "C" { + struct bContext; + typedef struct bContext bContext; + bContext* ghostC; + extern int wm_window_timer(const bContext *C); + extern void wm_window_process_events(const bContext *C); + extern void wm_event_do_handlers(bContext *C); + extern void wm_event_do_notifiers(bContext *C); + extern void wm_draw_update(bContext *C); +};*/ @interface CocoaWindowDelegate : NSObject +#ifdef MAC_OS_X_VERSION_10_6 + +#endif { GHOST_SystemCocoa *systemCocoa; GHOST_WindowCocoa *associatedWindow; } -- (void)setSystemAndWindowCocoa:(const GHOST_SystemCocoa *)sysCocoa windowCocoa:(GHOST_WindowCocoa *)winCocoa; +- (void)setSystemAndWindowCocoa:(GHOST_SystemCocoa *)sysCocoa windowCocoa:(GHOST_WindowCocoa *)winCocoa; - (void)windowWillClose:(NSNotification *)notification; - (void)windowDidBecomeKey:(NSNotification *)notification; - (void)windowDidResignKey:(NSNotification *)notification; @@ -97,7 +110,18 @@ static NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[] = - (void)windowDidResize:(NSNotification *)notification { - systemCocoa->handleWindowEvent(GHOST_kEventWindowSize, associatedWindow); + if (![[notification object] inLiveResize]) { + //Send event only once, at end of resize operation (when user has released mouse button) + systemCocoa->handleWindowEvent(GHOST_kEventWindowSize, associatedWindow); + } + /* Live resize ugly patch. Needed because live resize runs in a modal loop, not letting main loop run + if ([[notification object] inLiveResize]) { + systemCocoa->dispatchEvents(); + wm_window_timer(ghostC); + wm_event_do_handlers(ghostC); + wm_event_do_notifiers(ghostC); + wm_draw_update(ghostC); + }*/ } @end @@ -107,8 +131,6 @@ static NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[] = { } --(BOOL)canBecomeKeyWindow; - @end @implementation CocoaWindow @@ -125,7 +147,6 @@ static NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[] = //We need to subclass it in order to give Cocoa the feeling key events are trapped @interface CocoaOpenGLView : NSOpenGLView { - } @end @implementation CocoaOpenGLView @@ -515,6 +536,7 @@ GHOST_TSuccess GHOST_WindowCocoa::setState(GHOST_TWindowState state) //Make window borderless and enlarge it [m_window setStyleMask:NSBorderlessWindowMask]; [m_window setFrame:[[m_window screen] frame] display:YES]; + [m_window makeFirstResponder:m_openGLView]; #else //With 10.5, we need to create a new window to change its style to borderless //Hide menu & dock if needed @@ -572,6 +594,7 @@ GHOST_TSuccess GHOST_WindowCocoa::setState(GHOST_TWindowState state) //Make window normal and resize it [m_window setStyleMask:(NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask)]; [m_window setFrame:[[m_window screen] visibleFrame] display:YES]; + [m_window makeFirstResponder:m_openGLView]; #else //With 10.5, we need to create a new window to change its style to borderless //Show menu & dock if needed @@ -849,73 +872,42 @@ GHOST_TSuccess GHOST_WindowCocoa::setWindowCursorVisibility(bool visible) } -//Override this method to provide set feature even if not in warp -inline bool GHOST_WindowCocoa::setCursorWarpAccum(GHOST_TInt32 x, GHOST_TInt32 y) +GHOST_TSuccess GHOST_WindowCocoa::setWindowCursorGrab(GHOST_TGrabCursorMode mode) { - m_cursorWarpAccumPos[0]= x; - m_cursorWarpAccumPos[1]= y; + GHOST_TSuccess err = GHOST_kSuccess; - return GHOST_kSuccess; -} - - -GHOST_TSuccess GHOST_WindowCocoa::setWindowCursorGrab(bool grab, bool warp, bool restore) -{ - if (grab) + if (mode != GHOST_kGrabDisable) { //No need to perform grab without warp as it is always on in OS X - if(warp) { + if(mode != GHOST_kGrabNormal) { GHOST_TInt32 x_old,y_old; - m_cursorWarp= true; m_systemCocoa->getCursorPosition(x_old,y_old); - screenToClient(x_old, y_old, m_cursorWarpInitPos[0], m_cursorWarpInitPos[1]); + screenToClient(x_old, y_old, m_cursorGrabInitPos[0], m_cursorGrabInitPos[1]); //Warp position is stored in client (window base) coordinates - setWindowCursorVisibility(false); - return CGAssociateMouseAndMouseCursorPosition(false) == kCGErrorSuccess ? GHOST_kSuccess : GHOST_kFailure; + setCursorGrabAccum(0, 0); + + if(mode == GHOST_kGrabHide) { + setWindowCursorVisibility(false); + } + + //Dissociate cursor position even for warp mode, to allow mouse acceleration to work even when warping the cursor + err = CGAssociateMouseAndMouseCursorPosition(false) == kCGErrorSuccess ? GHOST_kSuccess : GHOST_kFailure; } } else { - if(m_cursorWarp) - {/* are we exiting warp */ + if(m_cursorGrab==GHOST_kGrabHide) + { + //No need to set again cursor position, as it has not changed for Cocoa setWindowCursorVisibility(true); - /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ - if(restore) { - GHOST_Rect bounds; - GHOST_TInt32 x_new, y_new, x_cur, y_cur; - - getClientBounds(bounds); - x_new= m_cursorWarpInitPos[0]+m_cursorWarpAccumPos[0]; - y_new= m_cursorWarpInitPos[1]+m_cursorWarpAccumPos[1]; - - if(x_new < 0) x_new = 0; - if(y_new < 0) y_new = 0; - if(x_new > bounds.getWidth()) x_new = bounds.getWidth(); - if(y_new > bounds.getHeight()) y_new = bounds.getHeight(); - - //get/set cursor position works in screen coordinates - clientToScreen(x_new, y_new, x_cur, y_cur); - m_systemCocoa->setCursorPosition(x_cur, y_cur); - - //As Cocoa will give as first deltaX,deltaY this change in cursor position, we need to compensate for it - //Issue appearing in case of two transform operations conducted w/o mouse motion in between - x_new=m_cursorWarpAccumPos[0]; - y_new=m_cursorWarpAccumPos[1]; - setCursorWarpAccum(-x_new, -y_new); - } - else { - GHOST_TInt32 x_new, y_new; - //get/set cursor position works in screen coordinates - clientToScreen(m_cursorWarpInitPos[0], m_cursorWarpInitPos[1], x_new, y_new); - m_systemCocoa->setCursorPosition(x_new, y_new); - setCursorWarpAccum(0, 0); - } - - m_cursorWarp= false; - return CGAssociateMouseAndMouseCursorPosition(true) == kCGErrorSuccess ? GHOST_kSuccess : GHOST_kFailure; } + + err = CGAssociateMouseAndMouseCursorPosition(true) == kCGErrorSuccess ? GHOST_kSuccess : GHOST_kFailure; + /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ + setCursorGrabAccum(0, 0); + m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; /* disable */ } - return GHOST_kSuccess; + return err; } GHOST_TSuccess GHOST_WindowCocoa::setWindowCursorShape(GHOST_TStandardCursor shape) @@ -979,7 +971,7 @@ GHOST_TSuccess GHOST_WindowCocoa::setWindowCustomCursorShape(GHOST_TUns8 *bitmap samplesPerPixel:2 hasAlpha:YES isPlanar:YES - colorSpaceName:NSDeviceBlackColorSpace + colorSpaceName:NSDeviceWhiteColorSpace bytesPerRow:(sizex/8 + (sizex%8 >0 ?1:0)) bitsPerPixel:1]; @@ -989,10 +981,10 @@ GHOST_TSuccess GHOST_WindowCocoa::setWindowCustomCursorShape(GHOST_TUns8 *bitmap for (y=0; y Date: Mon, 19 Oct 2009 10:49:46 +0000 Subject: [PATCH 054/412] Fix #19622: crash in glsl, forgot to commit this file when I changed the GLSL code for texture influences update. --- .../gpu/intern/gpu_shader_material.glsl.c | 1179 ++++++++--------- 1 file changed, 587 insertions(+), 592 deletions(-) diff --git a/source/blender/gpu/intern/gpu_shader_material.glsl.c b/source/blender/gpu/intern/gpu_shader_material.glsl.c index 8287efe84ea..1728fd9b68c 100644 --- a/source/blender/gpu/intern/gpu_shader_material.glsl.c +++ b/source/blender/gpu/intern/gpu_shader_material.glsl.c @@ -1,313 +1,341 @@ /* DataToC output of file */ -int datatoc_gpu_shader_material_glsl_size= 32828; +int datatoc_gpu_shader_material_glsl_size= 32658; char datatoc_gpu_shader_material_glsl[]= { - 10,102,108,111, 97,116, 32,101,120,112, 95, 98,108,101,110,100,101,114, 40,102,108,111, 97,116, 32,102, 41, 10, -123, 10, 9,114,101,116,117,114,110, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 50, 56, 52, 54, 44, 32,102, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,114,103, 98, 95,116,111, 95,104,115,118, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117, -116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32, 99,109, 97,120, 44, 32, 99,109, -105,110, 44, 32,104, 44, 32,115, 44, 32,118, 44, 32, 99,100,101,108,116, 97, 59, 10, 9,118,101, 99, 51, 32, 99, 59, 10, 10, 9, - 99,109, 97,120, 32, 61, 32,109, 97,120, 40,114,103, 98, 91, 48, 93, 44, 32,109, 97,120, 40,114,103, 98, 91, 49, 93, 44, 32,114, -103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,109,105,110, 32, 61, 32,109,105,110, 40,114,103, 98, 91, 48, 93, 44, 32,109,105,110, - 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,100,101,108,116, 97, 32, 61, 32, 99,109, 97, -120, 45, 99,109,105,110, 59, 10, 10, 9,118, 32, 61, 32, 99,109, 97,120, 59, 10, 9,105,102, 32, 40, 99,109, 97,120, 33, 61, 48, - 46, 48, 41, 10, 9, 9,115, 32, 61, 32, 99,100,101,108,116, 97, 47, 99,109, 97,120, 59, 10, 9,101,108,115,101, 32,123, 10, 9, - 9,115, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 10, 9,105,102, 32, 40,115, 32, - 61, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, - 9, 9, 99, 32, 61, 32, 40,118,101, 99, 51, 40, 99,109, 97,120, 44, 32, 99,109, 97,120, 44, 32, 99,109, 97,120, 41, 32, 45, 32, -114,103, 98, 46,120,121,122, 41, 47, 99,100,101,108,116, 97, 59, 10, 10, 9, 9,105,102, 32, 40,114,103, 98, 46,120, 61, 61, 99, -109, 97,120, 41, 32,104, 32, 61, 32, 99, 91, 50, 93, 32, 45, 32, 99, 91, 49, 93, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, - 40,114,103, 98, 46,121, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 50, 46, 48, 32, 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, - 99, 91, 50, 93, 59, 10, 9, 9,101,108,115,101, 32,104, 32, 61, 32, 52, 46, 48, 32, 43, 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, - 48, 93, 59, 10, 10, 9, 9,104, 32, 47, 61, 32, 54, 46, 48, 59, 10, 10, 9, 9,105,102, 32, 40,104, 60, 48, 46, 48, 41, 10, 9, - 9, 9,104, 32, 43, 61, 32, 49, 46, 48, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,104, - 44, 32,115, 44, 32,118, 44, 32,114,103, 98, 46,119, 41, 59, 10,125, 10, 10,118,111,105,100, 32,104,115,118, 95,116,111, 95,114, -103, 98, 40,118,101, 99, 52, 32,104,115,118, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, - 9,102,108,111, 97,116, 32,105, 44, 32,102, 44, 32,112, 44, 32,113, 44, 32,116, 44, 32,104, 44, 32,115, 44, 32,118, 59, 10, 9, -118,101, 99, 51, 32,114,103, 98, 59, 10, 10, 9,104, 32, 61, 32,104,115,118, 91, 48, 93, 59, 10, 9,115, 32, 61, 32,104,115,118, - 91, 49, 93, 59, 10, 9,118, 32, 61, 32,104,115,118, 91, 50, 93, 59, 10, 10, 9,105,102, 40,115, 61, 61, 48, 46, 48, 41, 32,123, - 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,118, 44, 32,118, 41, 59, 10, 9,125, 10, 9,101,108,115,101, - 32,123, 10, 9, 9,105,102, 40,104, 61, 61, 49, 46, 48, 41, 10, 9, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9, 10, 9, - 9,104, 32, 42, 61, 32, 54, 46, 48, 59, 10, 9, 9,105, 32, 61, 32,102,108,111,111,114, 40,104, 41, 59, 10, 9, 9,102, 32, 61, - 32,104, 32, 45, 32,105, 59, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,102, 44, 32,102, 44, 32,102, 41, 59, 10, 9, - 9,112, 32, 61, 32,118, 42, 40, 49, 46, 48, 45,115, 41, 59, 10, 9, 9,113, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42, -102, 41, 41, 59, 10, 9, 9,116, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42, 40, 49, 46, 48, 45,102, 41, 41, 41, 59, 10, - 9, 9, 10, 9, 9,105,102, 32, 40,105, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, - 32,116, 44, 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 49, 46, 48, 41, 32,114,103, 98, - 32, 61, 32,118,101, 99, 51, 40,113, 44, 32,118, 44, 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, - 61, 32, 50, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,118, 44, 32,116, 41, 59, 10, 9, 9,101,108, -115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 51, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,113, - 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 52, 46, 48, 41, 32,114,103, 98, 32, 61, - 32,118,101, 99, 51, 40,116, 44, 32,112, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32,114,103, 98, 32, 61, 32,118,101, 99, - 51, 40,118, 44, 32,112, 44, 32,113, 41, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114, -103, 98, 44, 32,104,115,118, 46,119, 41, 59, 10,125, 10, 10, 35,100,101,102,105,110,101, 32, 77, 95, 80, 73, 32, 51, 46, 49, 52, - 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, 50, 51, 56, 52, 54, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, - 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10, -118,111,105,100, 32,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 41, 10,123, 10, 9,118, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, - 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,121, 47, 50, 53, 53, 46, 48, - 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, 53, 53, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, 32,118,101, - 99, 51, 32,117,118, 41, 10,123, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32, -118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,103,101, -111,109, 40,118,101, 99, 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,109, 97,116, 52, 32,118,105,101,119,105, -110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,118,101, 99, 50, 32, 97,116,116,117,118, 44, - 32,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 44, 32, -111,117,116, 32,118,101, 99, 51, 32,108,111, 99, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,111, -117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 44, 32,111,117,116, 32,102, -108,111, 97,116, 32,102,114,111,110,116, 98, 97, 99,107, 41, 10,123, 10, 9,108,111, 99, 97,108, 32, 61, 32, 99,111, 59, 10, 9, -118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108,111, 99, 97,108, 41, 59, 10, 9,103,108,111, 98, 97,108, - 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40,108,111, 99, 97,108, 44, 32, 49, 46, 48, 41, 41, - 46,120,121,122, 59, 10, 9,111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, 10, 9,117,118, 95, 97,116,116,114,105, - 98,117,116,101, 40, 97,116,116,117,118, 44, 32,117,118, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, - 97,108,105,122,101, 40,110,111,114, 41, 59, 9, 47, 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111, -114,109, 97,108, 32,105,115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,118, 99,111,108, 95, 97,116,116,114,105, 98,117, -116,101, 40, 97,116,116,118, 99,111,108, 44, 32,118, 99,111,108, 41, 59, 10, 9,102,114,111,110,116, 98, 97, 99,107, 32, 61, 32, - 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,109, - 97,116, 52, 32,109, 97,116, 44, 32,118,101, 99, 51, 32,109,105,110,118,101, 99, 44, 32,118,101, 99, 51, 32,109, 97,120,118,101, - 99, 44, 32,102,108,111, 97,116, 32,100,111,109,105,110, 44, 32,102,108,111, 97,116, 32,100,111,109, 97,120, 44, 32,111,117,116, - 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 40,109, 97,116, 32, 42, - 32,118,101, 99, 52, 40,118,101, 99, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9,105,102, 40,100,111,109,105,110, 32, - 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109, 97,120, 40,111,117,116,118,101, 99, 44, 32,109, -105,110,118,101, 99, 41, 59, 10, 9,105,102, 40,100,111,109, 97,120, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, -101, 99, 32, 61, 32,109,105,110, 40,111,117,116,118,101, 99, 44, 32,109, 97,120,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105, -100, 32, 99, 97,109,101,114, 97, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,105, -101,119, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,101,112,116,104, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,100,105,115,116, 41, 10,123, 10, 9,111,117,116,100,101,112,116,104, 32, 61, 32, 97, 98,115, 40, 99,111, 46, -122, 41, 59, 10, 9,111,117,116,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, 99,111, 41, 59, 10, 9,111,117,116,118, -105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116, -104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, - 32, 43, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,115,117, 98,116,114, 97, 99,116, 40,102, + 10,102,108,111, 97,116, 32,101,120,112, 95, 98,108,101,110,100,101,114, + 40,102,108,111, 97,116, 32,102, 41, 10,123, 10, 9,114,101,116,117,114,110, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, + 56, 50, 56, 52, 54, 44, 32,102, 41, 59, 10,125, 10, 10,118,111,105,100, 32,114,103, 98, 95,116,111, 95,104,115,118, 40,118,101, + 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97, +116, 32, 99,109, 97,120, 44, 32, 99,109,105,110, 44, 32,104, 44, 32,115, 44, 32,118, 44, 32, 99,100,101,108,116, 97, 59, 10, 9, +118,101, 99, 51, 32, 99, 59, 10, 10, 9, 99,109, 97,120, 32, 61, 32,109, 97,120, 40,114,103, 98, 91, 48, 93, 44, 32,109, 97,120, + 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,109,105,110, 32, 61, 32,109,105,110, 40,114, +103, 98, 91, 48, 93, 44, 32,109,105,110, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,100, +101,108,116, 97, 32, 61, 32, 99,109, 97,120, 45, 99,109,105,110, 59, 10, 10, 9,118, 32, 61, 32, 99,109, 97,120, 59, 10, 9,105, +102, 32, 40, 99,109, 97,120, 33, 61, 48, 46, 48, 41, 10, 9, 9,115, 32, 61, 32, 99,100,101,108,116, 97, 47, 99,109, 97,120, 59, + 10, 9,101,108,115,101, 32,123, 10, 9, 9,115, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, +125, 10, 10, 9,105,102, 32, 40,115, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, +125, 10, 9,101,108,115,101, 32,123, 10, 9, 9, 99, 32, 61, 32, 40,118,101, 99, 51, 40, 99,109, 97,120, 44, 32, 99,109, 97,120, + 44, 32, 99,109, 97,120, 41, 32, 45, 32,114,103, 98, 46,120,121,122, 41, 47, 99,100,101,108,116, 97, 59, 10, 10, 9, 9,105,102, + 32, 40,114,103, 98, 46,120, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 99, 91, 50, 93, 32, 45, 32, 99, 91, 49, 93, 59, 10, + 9, 9,101,108,115,101, 32,105,102, 32, 40,114,103, 98, 46,121, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 50, 46, 48, 32, + 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, 99, 91, 50, 93, 59, 10, 9, 9,101,108,115,101, 32,104, 32, 61, 32, 52, 46, 48, 32, 43, + 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, 48, 93, 59, 10, 10, 9, 9,104, 32, 47, 61, 32, 54, 46, 48, 59, 10, 10, 9, 9,105,102, + 32, 40,104, 60, 48, 46, 48, 41, 10, 9, 9, 9,104, 32, 43, 61, 32, 49, 46, 48, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111, +108, 32, 61, 32,118,101, 99, 52, 40,104, 44, 32,115, 44, 32,118, 44, 32,114,103, 98, 46,119, 41, 59, 10,125, 10, 10,118,111,105, +100, 32,104,115,118, 95,116,111, 95,114,103, 98, 40,118,101, 99, 52, 32,104,115,118, 44, 32,111,117,116, 32,118,101, 99, 52, 32, +111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,105, 44, 32,102, 44, 32,112, 44, 32,113, 44, 32,116, 44, 32, +104, 44, 32,115, 44, 32,118, 59, 10, 9,118,101, 99, 51, 32,114,103, 98, 59, 10, 10, 9,104, 32, 61, 32,104,115,118, 91, 48, 93, + 59, 10, 9,115, 32, 61, 32,104,115,118, 91, 49, 93, 59, 10, 9,118, 32, 61, 32,104,115,118, 91, 50, 93, 59, 10, 10, 9,105,102, + 40,115, 61, 61, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,118, 44, 32,118, 41, + 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,105,102, 40,104, 61, 61, 49, 46, 48, 41, 10, 9, 9, 9,104, 32, 61, + 32, 48, 46, 48, 59, 10, 9, 9, 10, 9, 9,104, 32, 42, 61, 32, 54, 46, 48, 59, 10, 9, 9,105, 32, 61, 32,102,108,111,111,114, + 40,104, 41, 59, 10, 9, 9,102, 32, 61, 32,104, 32, 45, 32,105, 59, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,102, + 44, 32,102, 44, 32,102, 41, 59, 10, 9, 9,112, 32, 61, 32,118, 42, 40, 49, 46, 48, 45,115, 41, 59, 10, 9, 9,113, 32, 61, 32, +118, 42, 40, 49, 46, 48, 45, 40,115, 42,102, 41, 41, 59, 10, 9, 9,116, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42, 40, + 49, 46, 48, 45,102, 41, 41, 41, 59, 10, 9, 9, 10, 9, 9,105,102, 32, 40,105, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,103, 98, + 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,116, 44, 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, + 61, 32, 49, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,113, 44, 32,118, 44, 32,112, 41, 59, 10, 9, 9,101,108, +115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 50, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,118, + 44, 32,116, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 51, 46, 48, 41, 32,114,103, 98, 32, 61, + 32,118,101, 99, 51, 40,112, 44, 32,113, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, + 52, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,116, 44, 32,112, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, + 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,112, 44, 32,113, 41, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111, +108, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 44, 32,104,115,118, 46,119, 41, 59, 10,125, 10, 10, 35,100,101,102,105,110,101, + 32, 77, 95, 80, 73, 32, 51, 46, 49, 52, 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, 50, 51, 56, 52, 54, 10, 10, 47, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, + 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 41, 10,123, 10, 9,118, 99, +111,108, 32, 61, 32,118,101, 99, 52, 40, 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99, +111,108, 46,121, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, 53, 53, 46, 48, 44, 32, 49, 46, 48, + 41, 59, 10,125, 10, 10,118,111,105,100, 32,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 50, 32, 97,116,116, +117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116, +116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 10, +125, 10, 10,118,111,105,100, 32,103,101,111,109, 40,118,101, 99, 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32, +109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,118, +101, 99, 50, 32, 97,116,116,117,118, 44, 32,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, + 51, 32,103,108,111, 98, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,111, 99, 97,108, 44, 32,111,117,116, 32,118,101, + 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, + 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102,114,111,110,116, 98, 97, 99,107, 41, 10,123, 10, 9,108,111, 99, + 97,108, 32, 61, 32, 99,111, 59, 10, 9,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108,111, 99, 97,108, + 41, 59, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40,108,111, + 99, 97,108, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9,111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, + 10, 9,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,117,118, 44, 32,117,118, 41, 59, 10, 9,110,111,114,109, + 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114, 41, 59, 9, 47, 42, 32, 98,108,101,110,100,101,114, + 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,118, 99, +111,108, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,118, 99,111,108, 44, 32,118, 99,111,108, 41, 59, 10, 9,102,114, +111,110,116, 98, 97, 99,107, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,112,112,105,110,103, 40,118, +101, 99, 51, 32,118,101, 99, 44, 32,109, 97,116, 52, 32,109, 97,116, 44, 32,118,101, 99, 51, 32,109,105,110,118,101, 99, 44, 32, +118,101, 99, 51, 32,109, 97,120,118,101, 99, 44, 32,102,108,111, 97,116, 32,100,111,109,105,110, 44, 32,102,108,111, 97,116, 32, +100,111,109, 97,120, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, + 99, 32, 61, 32, 40,109, 97,116, 32, 42, 32,118,101, 99, 52, 40,118,101, 99, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, + 9,105,102, 40,100,111,109,105,110, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109, 97,120, + 40,111,117,116,118,101, 99, 44, 32,109,105,110,118,101, 99, 41, 59, 10, 9,105,102, 40,100,111,109, 97,120, 32, 61, 61, 32, 49, + 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109,105,110, 40,111,117,116,118,101, 99, 44, 32,109, 97,120,118,101, + 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99, 97,109,101,114, 97, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32, +118,101, 99, 51, 32,111,117,116,118,105,101,119, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,101,112,116,104, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,105,115,116, 41, 10,123, 10, 9,111,117,116,100,101,112,116,104, + 32, 61, 32, 97, 98,115, 40, 99,111, 46,122, 41, 59, 10, 9,111,117,116,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, + 99,111, 41, 59, 10, 9,111,117,116,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 41, 59, 10,125, + 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97, +116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116, +118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 43, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, +115,117, 98,116,114, 97, 99,116, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, + 97,108, 49, 32, 45, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,117,108,116,105,112,108, +121, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 42, 32,118, + 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,100,105,118,105,100,101, 40,102,108,111, 97,116, 32,118, + 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, +108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 50, 32, 61, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, + 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 47, 32,118, + 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, +115,105,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 99,111,115,105,110,101, 40,102,108, +111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117, +116,118, 97,108, 32, 61, 32, 99,111,115, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,116, 97, +110,103,101,110,116, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, +108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, + 32,109, 97,116,104, 95, 97,115,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, +111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, + 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115,105,110, 40,118, 97,108, 41, 59, 10, + 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97, +116,104, 95, 97, 99,111,115, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, +118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, + 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97, 99,111,115, 40,118, 97,108, 41, 59, 10, 9,101,108, +115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, + 97,116, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, + 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 97,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, + 32,109, 97,116,104, 95,112,111,119, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 49, 32, + 62, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40,118, 97,108, 49, 44, 32,118, 97,108, + 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105, +100, 32,109, 97,116,104, 95,108,111,103, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, + 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, + 62, 32, 48, 46, 48, 32, 32, 38, 38, 32,118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 61, 32, +108,111,103, 50, 40,118, 97,108, 49, 41, 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, 9, + 9,111,117,116,118, 97,108, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109, 97,120, 40,102, 108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 45, 32,118, 97,108, 50, - 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,117,108,116,105,112,108,121, 40,102,108,111, 97,116, 32,118, 97, -108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, - 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 42, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111, -105,100, 32,109, 97,116,104, 95,100,105,118,105,100,101, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, - 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40, -118, 97,108, 50, 32, 61, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108, -115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 47, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111, -105,100, 32,109, 97,116,104, 95,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,115,105,110, 40,118, 97,108, 41, 59, 10, -125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 99,111,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,115, - 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,116, 97,110,103,101,110,116, 40,102,108,111, 97, -116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, - 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,115,105,110, - 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, - 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, - 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115,105,110, 40,118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117, -116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97, 99,111,115, 40,102,108, -111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, - 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111, -117,116,118, 97,108, 32, 61, 32, 97, 99,111,115, 40,118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97, -108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,116, 97,110, 40,102,108,111, 97,116, - 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97, -108, 32, 61, 32, 97,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,112,111,119, 40, -102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 49, 32, 62, 61, 32, 48, 46, 48, 41, 10, 9, 9, -111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, - 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,111,103, - 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, - 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32, 48, 46, 48, 32, 32, 38, 38, 32, -118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 61, 32,108,111,103, 50, 40,118, 97,108, 49, 41, - 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 61, 32, 48, - 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109, 97,120, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, - 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, - 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97,120, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,109, 97,116,104, 95,109,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, - 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, - 32, 61, 32,109,105,110, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, - 95,114,111,117,110,100, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, - 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 61, 32,102,108,111,111,114, 40,118, 97,108, 32, 43, 32, 48, 46, 53, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,101,115,115, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97, -108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, - 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 60, 32,118, 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, - 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111, -105,100, 32,109, 97,116,104, 95,103,114,101, 97,116,101,114, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, - 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, - 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, - 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32, -115,113,117,101,101,122,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,102,108,111, 97,116, 32,119,105,100,116,104, 44, 32, -102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10, -123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 47, 40, 49, 46, 48, 32, 43, 32,112,111,119, 40, 50, 46, 55, 49, 56, - 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, 45, 99,101,110,116,101,114, 41, 42,119,105,100,116,104, 41, 41, 41, 59, 10, -125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,100,100, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, - 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9, -111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111, -117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, - 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,115,117, 98, 40,118,101, 99, 51, 32,118, 49, 44, 32,118, -101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, - 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 45, 32,118, 50, 59, 10, - 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40, -111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, - 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,118,101,114, 97,103,101, 40,118,101, 99, 51, 32, + 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97,120, 40,118, 97,108, 49, 44, 32,118, + 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,105,110, 40,102,108,111, 97,116, 32,118, 97,108, + 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, + 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109,105,110, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, + 10,118,111,105,100, 32,109, 97,116,104, 95,114,111,117,110,100, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 61, 32,102,108,111,111,114, 40,118, + 97,108, 32, 43, 32, 48, 46, 53, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,101,115,115, 95,116,104, 97, +110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 60, 32,118, 97,108, 50, 41, 10, 9, + 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, + 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,103,114,101, 97,116,101,114, 95,116,104, 97,110, 40,102, +108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, 97,108, 50, 41, 10, 9, 9,111,117, +116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, + 59, 10,125, 10, 10,118,111,105,100, 32,115,113,117,101,101,122,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,102,108,111, + 97,116, 32,119,105,100,116,104, 44, 32,102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 47, 40, 49, 46, 48, 32, 43, + 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, 45, 99,101,110,116,101,114, 41, 42, +119,105,100,116,104, 41, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,100,100, 40,118, +101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, + 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, +118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, + 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, + 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,115,117, 98, 40, +118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, + 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, + 32,118, 49, 32, 45, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, + 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, + 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,118,101, +114, 97,103,101, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32, +111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116, +118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40, +111,117,116,118,101, 99, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116, +118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,100,111,116, 40,118,101, 99, 51, 32, 118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, - 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, 41, 59, 10, 9, -111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,100,111,116, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, - 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117, -116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 51, 40, 48, 44, 32, 48, 44, 32, 48, 41, 59, - 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111,116, 40,118, 49, 44, 32,118, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32, -118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115,115, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, - 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 99,114,111,115,115, 40,118, 49, 44, 32,118, 50, 41, 59, 10, 9, -111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114,109, 97,108,105,122,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32, -118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, - 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,118, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32, -110,111,114,109, 97,108,105,122,101, 40,118, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110, -101,103, 97,116,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 41, 10,123, 10, 9, -111,117,116,118, 32, 61, 32, 45,118, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,100, -105,114, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, 44, 32,111, -117,116, 32,102,108,111, 97,116, 32,111,117,116,100,111,116, 41, 10,123, 10, 9,111,117,116,110,111,114, 32, 61, 32,100,105,114, - 59, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45,100,111,116, 40,100,105,114, 44, 32,110,111,114, 41, 59, 10,125, 10, 10,118, -111,105,100, 32, 99,117,114,118,101,115, 95,118,101, 99, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, - 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, - 9,111,117,116,118,101, 99, 46,120, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, - 40,118,101, 99, 46,120, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,120, 59, 10, 9,111,117,116,118,101, 99, 46,121, 32, - 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,121, 32, 43, 32, 49, - 46, 48, 41, 42, 48, 46, 53, 41, 46,121, 59, 10, 9,111,117,116,118,101, 99, 46,122, 32, 61, 32,116,101,120,116,117,114,101, 49, - 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,122, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,122, - 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,115, - 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, -111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118, -101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46,114, 41, - 46, 97, 41, 46,114, 59, 10, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114, -118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46,103, - 41, 46, 97, 41, 46,103, 59, 10, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117, -114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46, - 98, 41, 46, 97, 41, 46, 98, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 46, 97, 59, 10,125, 10, 10,118, -111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, - 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 10,125, 10, 10,118, -111,105,100, 32,115,101,116, 95,114,103, 98, 40,118,101, 99, 51, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111, -117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32, -115,101,116, 95,114,103, 98, 97, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, -111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, - 95,118, 97,108,117,101, 95,122,101,114,111, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, - 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, - 95,111,110,101, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, - 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 95,122,101,114,111, 40,111,117,116, - 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, - 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 95,122,101,114,111, 40,111,117,116, 32,118, -101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118,101, 99, 52, 40, 48, 46, 48, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, -118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, -117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, - 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 50, 44, 32, -102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105, -100, 32,109,105,120, 95, 97,100,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32, -118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, - 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99, -111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 43, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, - 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105, -120, 95,109,117,108,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, - 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, - 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, - 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 42, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9, -111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, - 99,114,101,101,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, - 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, - 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, - 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, - 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 52, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99, 42, 40,118,101, 99, 52, 40, 49, - 46, 48, 41, 32, 45, 32, 99,111,108, 50, 41, 41, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 49, 41, 59, - 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, - 95,111,118,101,114,108, 97,121, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118, +116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 51, + 40, 48, 44, 32, 48, 44, 32, 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111,116, 40,118, 49, 44, 32,118, 50, 41, + 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115,115, 40,118,101, 99, 51, 32,118, 49, + 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 99,114,111,115,115, 40, +118, 49, 44, 32,118, 50, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, + 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114,109, 97,108,105,122,101, 40,118,101, + 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,118, 41, 59, 10, + 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 41, 59, 10,125, 10, 10,118,111,105,100, 32, +118,101, 99, 95,109, 97,116,104, 95,110,101,103, 97,116,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,111,117,116,118, 41, 10,123, 10, 9,111,117,116,118, 32, 61, 32, 45,118, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,114, +109, 97,108, 40,118,101, 99, 51, 32,100,105,114, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, + 32,111,117,116,110,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,111,116, 41, 10,123, 10, 9,111,117, +116,110,111,114, 32, 61, 32,100,105,114, 59, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45,100,111,116, 40,100,105,114, 44, 32, +110,111,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,118,101, 99, 40,118,101, 99, 51, 32,118,101, + 99, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 51, 32, +111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 46,120, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, + 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,120, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,120, 59, 10, + 9,111,117,116,118,101, 99, 46,121, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, + 40,118,101, 99, 46,121, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,121, 59, 10, 9,111,117,116,118,101, 99, 46,122, 32, + 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,122, 32, 43, 32, 49, + 46, 48, 41, 42, 48, 46, 53, 41, 46,122, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,114,103, 98, 40,118, +101, 99, 52, 32, 99,111,108, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, + 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,101,120,116, +117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, + 97,112, 44, 32, 99,111,108, 46,114, 41, 46, 97, 41, 46,114, 59, 10, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,101,120, +116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101, +109, 97,112, 44, 32, 99,111,108, 46,103, 41, 46, 97, 41, 46,103, 59, 10, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,101, +120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118, +101,109, 97,112, 44, 32, 99,111,108, 46, 98, 41, 46, 97, 41, 46, 98, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99, +111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 40,102,108,111, 97,116, 32,118, 97, +108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, + 32,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 40,118,101, 99, 51, 32, 99,111,108, 44, 32, +111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, + 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, + 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, + 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 95,122,101,114,111, 40,111,117,116, 32,102,108,111, 97,116, 32, +111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, + 32,115,101,116, 95,118, 97,108,117,101, 95,111,110,101, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, + 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, + 98, 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97, +108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 95, +122,101,114,111, 40,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, + 61, 32,118,101, 99, 52, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,108,101,110,100, 40,102, +108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, +111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, +102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111, +108, 49, 44, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, + 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 97,100,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118, +101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117, +116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, + 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 43, 32, + 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, +125, 10, 10,118,111,105,100, 32,109,105,120, 95,109,117,108,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, + 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111, +108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, + 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 42, 32, 99,111,108, + 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10, +118,111,105,100, 32,109,105,120, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, + 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, + 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, + 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99, +111,108, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 52, 40,102, 97, 99,109, 41, 32, 43, 32,102, + 97, 99, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 50, 41, 41, 42, 40,118,101, 99, 52, 40, 49, 46, 48, + 41, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, + 10, 10,118,111,105,100, 32,109,105,120, 95,111,118,101,114,108, 97,121, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, + 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, + 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, + 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111, +117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, + 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, + 99,111,108, 50, 46,114, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, + 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,114, 41, 41, + 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, + 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, + 42,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, + 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, + 50, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, + 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 42, 61, 32,102, 97, 99,109, 32, + 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, + 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, + 45, 32, 99,111,108, 50, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, 10, 10, +118,111,105,100, 32,109,105,120, 95,115,117, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, + 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, + 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111, +117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 44, 32,102, + 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, + 32,109,105,120, 95,100,105,118, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118, 101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111, -108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111, -108, 46,114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,101, -108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, - 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117, -116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9, -111,117,116, 99,111,108, 46,103, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46, -103, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99, -109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,103, 41, 41, 42, 40, 49, 46, 48, - 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, - 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, - 99,111,108, 50, 46, 98, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, - 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46, 98, 41, 41, - 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, -117, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111, -108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, - 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105, -120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99, -111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,118, 40,102, +108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,114, + 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,114, 47, + 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40, 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111, +108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, + 46,103, 47, 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117, +116, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, 42,111,117,116, + 99,111,108, 46, 98, 47, 99,111,108, 50, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,102,102, 40,102, 108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, 111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, -102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, - 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40, 99, -111,108, 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,114, 32, 61, 32,102, 97, 99,109, 42,111,117, -116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,114, 47, 99,111,108, 50, 46,114, 59, 10, 9,105, -102, 40, 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, - 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,103, 47, 99,111,108, 50, 46,103, 59, - 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46, 98, 32, 61, 32,102, - 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46, 98, 47, 99,111,108, 50, - 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,102,102, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32, -118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111, -117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, - 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 97, 98,115, 40, 99,111, -108, 49, 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111, -108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,102, 97, 99, - 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, - 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, - 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32,109,105,110, 40, 99,111,108, 49, 46,114, -103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99, -111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,102, - 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, - 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, - 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32,109, 97,120, 40, 99,111,108, 49, - 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, - 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,111,100,103,101, 40,102,108,111, 97,116, - 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32, -118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, - 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, - 40,111,117,116, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, - 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, - 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105, -102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,114, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, - 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111, -108, 46,114, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, - 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, - 50, 46,103, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, -103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, - 46,103, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, - 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9, -105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109, -112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, - 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, - 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, - 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, - 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,117,114,110, +102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111, +108, 49, 44, 32, 97, 98,115, 40, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, + 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, -112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,116,109,112, 44, 32,102, 97, - 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, - 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40, -116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101, -108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99, -111,108, 46,114, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, - 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111, -108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109, -112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,105, -102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, - 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117, -116, 99,111,108, 46,103, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, - 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, - 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, -116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, - 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, - 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32, -111,117,116, 99,111,108, 46, 98, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, - 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111, -117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, - 61, 32,116,109,112, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,104,117,101, 40,102,108,111, 97,116, 32,102, 97, 99, +112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32, +109,105,110, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117, +116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,108,105,103, +104,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111, +108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, + 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, + 61, 32,109, 97,120, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9, +111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, +111,100,103,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, + 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, + 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32, + 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9, +102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9, 9, +105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, + 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,114, 47,116,109,112, 41, + 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115, +101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99, +111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, + 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, + 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109, +112, 32, 61, 32,111,117,116, 99,111,108, 46,103, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99, +111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, + 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, + 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, + 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, + 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 47,116,109, +112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101, +108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105, +100, 32,109,105,120, 95, 98,117,114,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, + 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9, +102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, + 97,116, 32,116,109,112, 44, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99, +111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111, +108, 50, 46,114, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, + 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, + 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111, +117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, + 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, + 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, + 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, + 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, + 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, + 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, + 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111, +117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, + 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99, +111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, + 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, + 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, + 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, + 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,104,117,101, + 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, + 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, +112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, + 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, + 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99, +111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32, +123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104, +115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, + 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32, +116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, + 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, 97,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, + 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, + 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, + 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111, +117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, + 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, 9,105,102, 40,104, +115,118, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, + 44, 32,104,115,118, 50, 41, 59, 10, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,121, 32, 43, + 32,102, 97, 99, 42,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111, +117,116, 99,111,108, 41, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,118, 97,108, 40,102,108,111, 97,116, + 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32, +118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, + 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32, +102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104, +115,118, 40, 99,111,108, 49, 44, 32,104,115,118, 41, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, + 32,104,115,118, 50, 41, 59, 10, 10, 9,104,115,118, 46,122, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,122, 32, 43, 32,102, + 97, 99, 42,104,115,118, 50, 46,122, 59, 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99, +111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 99,111,108,111,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, @@ -315,306 +343,273 @@ char datatoc_gpu_shader_material_glsl[]= { 118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, - 50, 46,120, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, - 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, - 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, - 32,109,105,120, 95,115, 97,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118, -101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, - 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, - 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111, -108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115, -118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 46,121, 32, 33, 61, 32, 48, 46, - 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, - 9, 9,104,115,118, 46,121, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,121, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46, -121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10, 9,125, - 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,118, 97,108, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, - 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111, -108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, - 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,118,101, 99, - 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 49, 44, 32,104, -115,118, 41, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9, -104,115,118, 46,122, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,122, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,122, 59, - 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111, -105,100, 32,109,105,120, 95, 99,111,108,111,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, - 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, - 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102, -108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, - 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9, -114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, - 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111, -108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, - 46,121, 32, 61, 32,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,116, -109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32,116,109, -112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, - 10,125, 10, 10,118,111,105,100, 32,118, 97,108,116,111,114,103, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,115, 97,109, -112,108,101,114, 49, 68, 32, 99,111,108,111,114,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, 97,108,112,104, 97, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, - 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,111,108,111,114,109, 97,112, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, - 97,108,112,104, 97, 32, 61, 32,111,117,116, 99,111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,114,103, 98,116,111, 98, -119, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10, -123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, 51, 53, 32, 43, 32, 99,111,108,111,114, - 46,103, 42, 48, 46, 52, 53, 32, 43, 32, 99,111,108,111,114, 46, 98, 42, 48, 46, 50, 59, 10,125, 10, 10,118,111,105,100, 32,105, -110,118,101,114,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118, -101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,120,121,122, 32, 61, 32,109,105,120, 40, - 99,111,108, 46,120,121,122, 44, 32,118,101, 99, 51, 40, 49, 46, 48, 44, 32, 49, 46, 48, 44, 32, 49, 46, 48, 41, 32, 45, 32, 99, -111,108, 46,120,121,122, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46,119, 32, 61, 32, 99,111,108, 46,119, 59, - 10,125, 10, 10,118,111,105,100, 32,104,117,101, 95,115, 97,116, 40,102,108,111, 97,116, 32,104,117,101, 44, 32,102,108,111, 97, -116, 32,115, 97,116, 44, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118, -101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,118,101, 99, - 52, 32,104,115,118, 59, 10, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, - 9,104,115,118, 91, 48, 93, 32, 43, 61, 32, 40,104,117,101, 32, 45, 32, 48, 46, 53, 41, 59, 10, 9,105,102, 40,104,115,118, 91, - 48, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 48, 93, 45, 61, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, - 91, 48, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 48, 93, 43, 61, 32, 49, 46, 48, 59, 10, 9,104,115,118, 91, 49, 93, 32, 42, - 61, 32,115, 97,116, 59, 10, 9,105,102, 40,104,115,118, 91, 49, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, 49, - 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 49, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 49, 93, 61, 32, - 48, 46, 48, 59, 10, 9,104,115,118, 91, 50, 93, 32, 42, 61, 32,118, 97,108,117,101, 59, 10, 9,105,102, 40,104,115,118, 91, 50, - 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, - 50, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 48, 46, 48, 59, 10, 10, 9,104,115,118, 95,116,111, 95,114,103, - 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99, -111,108, 44, 32,111,117,116, 99,111,108, 44, 32,102, 97, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,112, 97,114, 97, -116,101, 95,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,114, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 98, 41, 10,123, 10, 9,114, 32, 61, 32, 99, -111,108, 46,114, 59, 10, 9,103, 32, 61, 32, 99,111,108, 46,103, 59, 10, 9, 98, 32, 61, 32, 99,111,108, 46, 98, 59, 10,125, 10, - 10,118,111,105,100, 32, 99,111,109, 98,105,110,101, 95,114,103, 98, 40,102,108,111, 97,116, 32,114, 44, 32,102,108,111, 97,116, - 32,103, 44, 32,102,108,111, 97,116, 32, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108, 41, 10,123, 10, 9, 99,111, -108, 32, 61, 32,118,101, 99, 52, 40,114, 44, 32,103, 44, 32, 98, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32, -111,117,116,112,117,116, 95,110,111,100,101, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,102,108,111, 97,116, 32, 97,108,112,104, - 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 10,123, 10, 9,111,117,116,114,103, 98, 32, 61, 32, -118,101, 99, 52, 40,114,103, 98, 46,114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 42, 32, 84, 69, 88, 84, 85, 82, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, - 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,102,108,105,112, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,118,101, - 99, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, -118,101, 99, 46,121,120,122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95,108, -105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, - 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 59, 10,125, 10, 10,118, -111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95,113,117, 97,100, 40,118,101, 99, 51, 32,118,101, 99, 44, - 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, - 97,120, 40, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 44, 32, 48, 46, 48, 41, 59, 10, 9,111,117,116,118, 97, -108, 32, 42, 61, 32,111,117,116,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,119,111,111, -100, 95,115,105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, - 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, - 41, 10,123, 10, 9,102,108,111, 97,116, 32, 97, 32, 61, 32,115,113,114,116, 40,118,101, 99, 46,120, 42,118,101, 99, 46,120, 32, - 43, 32,118,101, 99, 46,121, 42,118,101, 99, 46,121, 32, 43, 32,118,101, 99, 46,122, 42,118,101, 99, 46,122, 41, 42, 50, 48, 46, - 48, 59, 10, 9,102,108,111, 97,116, 32,119,105, 32, 61, 32, 48, 46, 53, 32, 43, 32, 48, 46, 53, 42,115,105,110, 40, 97, 41, 59, - 10, 10, 9,118, 97,108,117,101, 32, 61, 32,119,105, 59, 10, 9, 99,111,108,111,114, 32, 61, 32,118,101, 99, 52, 40,119,105, 44, - 32,119,105, 44, 32,119,105, 44, 32, 49, 46, 48, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, - 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,105,109, - 97,103,101, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 50, 68, 32,105,109, 97, 44, 32,111,117,116, - 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 10,123, 10, 9, 99,111,108,111,114, 32, 61, 32,116,101,120,116,117,114, -101, 50, 68, 40,105,109, 97, 44, 32, 40,118,101, 99, 46,120,121, 32, 43, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, - 41, 41, 42, 48, 46, 53, 41, 59, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, 10, 10, 9,110,111,114,109, 97,108, 46, -120, 32, 61, 32, 50, 46, 48, 42, 40, 99,111,108,111,114, 46,114, 32, 45, 32, 48, 46, 53, 41, 59, 10, 9,110,111,114,109, 97,108, - 46,121, 32, 61, 32, 50, 46, 48, 42, 40, 48, 46, 53, 32, 45, 32, 99,111,108,111,114, 46,103, 41, 59, 10, 9,110,111,114,109, 97, -108, 46,122, 32, 61, 32, 50, 46, 48, 42, 40, 99,111,108,111,114, 46, 98, 32, 45, 32, 48, 46, 53, 41, 59, 10,125, 10, 10, 47, 42, - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 77, 84, 69, 88, 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 47, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,111,114, 99,111, 40,118,101, 99, 51, 32, 97,116,116,111,114, - 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 41, 10,123, 10, 9,111,114, 99,111, 32, 61, 32, 97,116,116, -111,114, 99,111, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,117,118, 40,118,101, 99, 50, 32, 97,116,116,117, -118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9, 47, 42, 32,100,105,115, 97, 98,108,101,100, 32,102, -111,114, 32,110,111,119, 44, 32,119,111,114,107,115, 32,116,111,103,101,116,104,101,114, 32,119,105,116,104, 32,108,101, 97,118, -105,110,103, 32,111,117,116, 32,109,116,101,120, 95, 50,100, 95,109, 97,112,112,105,110,103, 10, 9, 32, 32, 32,117,118, 32, 61, - 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, - 44, 32, 48, 46, 48, 41, 59, 32, 42, 47, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 44, 32, 48, 46, 48, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,110,111,114,109, 40,118,101, 99, 51, 32,110,111,114,109, 97, -108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9, 47, 42, 32, 99,111,114, -114,101,115,112,111,110,100,115, 32,116,111, 32,115,104,105, 45, 62,111,114,110, 44, 32,119,104,105, 99,104, 32,105,115, 32,110, -101,103, 97,116,101,100, 32,115,111, 32, 99, 97,110, 99,101,108,115, 10, 9, 32, 32, 32,111,117,116, 32, 98,108,101,110,100,101, -114, 32,110,111,114,109, 97,108, 32,110,101,103, 97,116,105,111,110, 32, 42, 47, 10, 9,111,117,116,110,111,114,109, 97,108, 32, - 61, 32,110,111,114,109, 97,108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, - 99,111, 95,116, 97,110,103,101,110,116, 40,118,101, 99, 51, 32,116, 97,110,103,101,110,116, 44, 32,111,117,116, 32,118,101, 99, - 51, 32,111,117,116,116, 97,110,103,101,110,116, 41, 10,123, 10, 9,111,117,116,116, 97,110,103,101,110,116, 32, 61, 32,110,111, -114,109, 97,108,105,122,101, 40,116, 97,110,103,101,110,116, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95, -103,108,111, 98, 97,108, 40,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 99,111, 44, - 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 41, 10,123, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118, -105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10,125, 10, - 10,118,111,105,100, 32,116,101,120, 99,111, 95,111, 98,106,101, 99,116, 40,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, - 97,116, 44, 32,109, 97,116, 52, 32,111, 98,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32, -118,101, 99, 51, 32,111, 98,106,101, 99,116, 41, 10,123, 10, 9,111, 98,106,101, 99,116, 32, 61, 32, 40,111, 98,105,110,118,109, - 97,116, 42, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, 41, 41, 41, 46,120, -121,122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,114,101,102,108, 40,118,101, 99, 51, 32,118,110, 44, 32, -118,101, 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,114,101,102, 41, 10,123, 10, 9,114,101,102, 32, - 61, 32,118,105,101,119, 32, 45, 32, 50, 46, 48, 42,100,111,116, 40,118,110, 44, 32,118,105,101,119, 41, 42,118,110, 59, 10,125, - 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,110,111,114,109, 40,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111, -117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9, 47, 42, 32, 98,108,101,110,100,101,114, - 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,111,117, -116,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 10,125, 10, - 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 98,108,101,110,100, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, - 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, - 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32, -102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, - 48, 45,102, 97, 99,116, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32, -102, 97, 99,109, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,109,117, -108, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97, -116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99, -111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99, -103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32, 40, -102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 99,114,101,101,110, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, - 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, - 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, - 45,102, 97, 99,103, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, - 99, 51, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99,116, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,116,101,120, - 99,111,108, 41, 41, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,111,118,101,114,108, 97,121, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, - 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, - 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32, -102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, - 48, 45,102, 97, 99,103, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105, -110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, - 99,116, 42,116,101,120, 99,111,108, 46,114, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46,114, 32, 61, 32, - 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101, -120, 99,111,108, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40, -111,117,116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99, -111,108, 46,103, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 41, 59, - 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, - 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46,103, 41, 41, 42, 40, 49, 46, 48, - 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, - 53, 41, 10, 9, 9,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 42, 40,102, 97, 99,109, 32, 43, 32, - 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111, -108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, - 48, 32, 45, 32,116,101,120, 99,111,108, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, - 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,117, 98, 40,118,101, 99, 51, 32,111,117,116, 99,111, -108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97, -116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,105,110, 99,111,108, - 32, 61, 32, 45,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, - 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 97,100,100, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, - 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,105,110, 99,111,108, 32, 61, - 32,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100,105,118, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, - 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99, -103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, - 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, - 99,116, 59, 10, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46, -114, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46, -114, 47,116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, - 32,105,110, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99,116, 42, -111,117,116, 99,111,108, 46,103, 47,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40,116,101,120, 99,111,108, 46, 98, 32, - 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, - 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46, 98, 47,116,101,120, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105, -100, 32,109,116,101,120, 95,114,103, 98, 95,100,105,102,102, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, - 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, - 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, - 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99, -116, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42, - 97, 98,115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116, -101,120, 95,114,103, 98, 95,100, 97,114,107, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101, + 50, 46,120, 59, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95, +114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, +111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, + 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,118, 97,108,116,111,114,103, 98, 40,102,108,111, 97, +116, 32,102, 97, 99, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,111,108,111,114,109, 97,112, 44, 32,111,117,116, 32,118, +101, 99, 52, 32,111,117,116, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, 97,108,112,104, 97, 41, 10, +123, 10, 9,111,117,116, 99,111,108, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,111,108,111,114,109, 97,112, 44, 32, +102, 97, 99, 41, 59, 10, 9,111,117,116, 97,108,112,104, 97, 32, 61, 32,111,117,116, 99,111,108, 46, 97, 59, 10,125, 10, 10,118, +111,105,100, 32,114,103, 98,116,111, 98,119, 40,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,108,111,114, 46,114, 42, 48, 46, + 51, 53, 32, 43, 32, 99,111,108,111,114, 46,103, 42, 48, 46, 52, 53, 32, 43, 32, 99,111,108,111,114, 46, 98, 42, 48, 46, 50, 59, + 10,125, 10, 10,118,111,105,100, 32,105,110,118,101,114,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, + 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46, +120,121,122, 32, 61, 32,109,105,120, 40, 99,111,108, 46,120,121,122, 44, 32,118,101, 99, 51, 40, 49, 46, 48, 44, 32, 49, 46, 48, + 44, 32, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 46,120,121,122, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, +119, 32, 61, 32, 99,111,108, 46,119, 59, 10,125, 10, 10,118,111,105,100, 32,104,117,101, 95,115, 97,116, 40,102,108,111, 97,116, + 32,104,117,101, 44, 32,102,108,111, 97,116, 32,115, 97,116, 44, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,102,108, +111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, +111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32,104,115,118, 59, 10, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111, +108, 44, 32,104,115,118, 41, 59, 10, 10, 9,104,115,118, 91, 48, 93, 32, 43, 61, 32, 40,104,117,101, 32, 45, 32, 48, 46, 53, 41, + 59, 10, 9,105,102, 40,104,115,118, 91, 48, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 48, 93, 45, 61, 49, 46, 48, 59, 32,101, +108,115,101, 32,105,102, 40,104,115,118, 91, 48, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 48, 93, 43, 61, 32, 49, 46, 48, 59, + 10, 9,104,115,118, 91, 49, 93, 32, 42, 61, 32,115, 97,116, 59, 10, 9,105,102, 40,104,115,118, 91, 49, 93, 62, 49, 46, 48, 41, + 32,104,115,118, 91, 49, 93, 61, 32, 49, 46, 48, 59, 32,101,108,115,101, 32,105,102, 40,104,115,118, 91, 49, 93, 60, 48, 46, 48, + 41, 32,104,115,118, 91, 49, 93, 61, 32, 48, 46, 48, 59, 10, 9,104,115,118, 91, 50, 93, 32, 42, 61, 32,118, 97,108,117,101, 59, + 10, 9,105,102, 40,104,115,118, 91, 50, 93, 62, 49, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 49, 46, 48, 59, 32,101,108, +115,101, 32,105,102, 40,104,115,118, 91, 50, 93, 60, 48, 46, 48, 41, 32,104,115,118, 91, 50, 93, 61, 32, 48, 46, 48, 59, 10, 10, + 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10, 10, 9,111,117,116, 99, +111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 44, 32,111,117,116, 99,111,108, 44, 32,102, 97, 99, 41, 59, 10,125, 10, 10,118, +111,105,100, 32,115,101,112, 97,114, 97,116,101, 95,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, 32,102, +108,111, 97,116, 32,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, 98, + 41, 10,123, 10, 9,114, 32, 61, 32, 99,111,108, 46,114, 59, 10, 9,103, 32, 61, 32, 99,111,108, 46,103, 59, 10, 9, 98, 32, 61, + 32, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32, 99,111,109, 98,105,110,101, 95,114,103, 98, 40,102,108,111, 97, +116, 32,114, 44, 32,102,108,111, 97,116, 32,103, 44, 32,102,108,111, 97,116, 32, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32, + 99,111,108, 41, 10,123, 10, 9, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114, 44, 32,103, 44, 32, 98, 44, 32, 49, 46, 48, 41, + 59, 10,125, 10, 10,118,111,105,100, 32,111,117,116,112,117,116, 95,110,111,100,101, 40,118,101, 99, 52, 32,114,103, 98, 44, 32, +102,108,111, 97,116, 32, 97,108,112,104, 97, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116,114,103, 98, 41, 10,123, 10, + 9,111,117,116,114,103, 98, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 46,114,103, 98, 44, 32, 97,108,112,104, 97, 41, 59, 10, +125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 84, 69, 88, 84, 85, 82, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95,102,108,105,112, 95, 98,108,101, +110,100, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, + 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 46,121,120,122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117, +114,101, 95, 98,108,101,110,100, 95,108,105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, + 47, 50, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120,116,117,114,101, 95, 98,108,101,110,100, 95,113,117, 97,100, + 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, +111,117,116,118, 97,108, 32, 61, 32,109, 97,120, 40, 40, 49, 46, 48, 43,118,101, 99, 46,120, 41, 47, 50, 46, 48, 44, 32, 48, 46, + 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 42, 61, 32,111,117,116,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,116, +101,120,116,117,114,101, 95,119,111,111,100, 95,115,105,110, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,110,111,114,109, 97,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32, 97, 32, 61, 32,115,113,114,116, 40,118,101, + 99, 46,120, 42,118,101, 99, 46,120, 32, 43, 32,118,101, 99, 46,121, 42,118,101, 99, 46,121, 32, 43, 32,118,101, 99, 46,122, 42, +118,101, 99, 46,122, 41, 42, 50, 48, 46, 48, 59, 10, 9,102,108,111, 97,116, 32,119,105, 32, 61, 32, 48, 46, 53, 32, 43, 32, 48, + 46, 53, 42,115,105,110, 40, 97, 41, 59, 10, 10, 9,118, 97,108,117,101, 32, 61, 32,119,105, 59, 10, 9, 99,111,108,111,114, 32, + 61, 32,118,101, 99, 52, 40,119,105, 44, 32,119,105, 44, 32,119,105, 44, 32, 49, 46, 48, 41, 59, 10, 9,110,111,114,109, 97,108, + 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32, +116,101,120,116,117,114,101, 95,105,109, 97,103,101, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 50, + 68, 32,105,109, 97, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,118, 97,108,117,101, 44, 32,111,117,116, 32,118,101, 99, 52, + 32, 99,111,108,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 41, 10,123, 10, 9, 99,111,108,111, +114, 32, 61, 32,116,101,120,116,117,114,101, 50, 68, 40,105,109, 97, 44, 32, 40,118,101, 99, 46,120,121, 32, 43, 32,118,101, 99, + 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 41, 42, 48, 46, 53, 41, 59, 10, 9,118, 97,108,117,101, 32, 61, 32, 49, 46, 48, 59, + 10, 10, 9,110,111,114,109, 97,108, 46,120, 32, 61, 32, 50, 46, 48, 42, 40, 99,111,108,111,114, 46,114, 32, 45, 32, 48, 46, 53, + 41, 59, 10, 9,110,111,114,109, 97,108, 46,121, 32, 61, 32, 50, 46, 48, 42, 40, 48, 46, 53, 32, 45, 32, 99,111,108,111,114, 46, +103, 41, 59, 10, 9,110,111,114,109, 97,108, 46,122, 32, 61, 32, 50, 46, 48, 42, 40, 99,111,108,111,114, 46, 98, 32, 45, 32, 48, + 46, 53, 41, 59, 10,125, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 77, 84, 69, 88, 32, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,111,114, 99,111, 40, +118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 41, 10,123, 10, 9, +111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,117,118, + 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9, 47, 42, 32, +100,105,115, 97, 98,108,101,100, 32,102,111,114, 32,110,111,119, 44, 32,119,111,114,107,115, 32,116,111,103,101,116,104,101,114, + 32,119,105,116,104, 32,108,101, 97,118,105,110,103, 32,111,117,116, 32,109,116,101,120, 95, 50,100, 95,109, 97,112,112,105,110, +103, 10, 9, 32, 32, 32,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, + 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 32, 42, 47, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, + 97,116,116,117,118, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,110,111,114,109, 40, +118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, + 10,123, 10, 9, 47, 42, 32, 99,111,114,114,101,115,112,111,110,100,115, 32,116,111, 32,115,104,105, 45, 62,111,114,110, 44, 32, +119,104,105, 99,104, 32,105,115, 32,110,101,103, 97,116,101,100, 32,115,111, 32, 99, 97,110, 99,101,108,115, 10, 9, 32, 32, 32, +111,117,116, 32, 98,108,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,110,101,103, 97,116,105,111,110, 32, 42, 47, 10, 9, +111,117,116,110,111,114,109, 97,108, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,110,111,114,109, 97,108, 41, 59, 10,125, + 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,116, 97,110,103,101,110,116, 40,118,101, 99, 51, 32,116, 97,110,103,101,110, +116, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,116, 97,110,103,101,110,116, 41, 10,123, 10, 9,111,117,116,116, 97, +110,103,101,110,116, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,116, 97,110,103,101,110,116, 41, 59, 10,125, 10, 10,118, +111,105,100, 32,116,101,120, 99,111, 95,103,108,111, 98, 97,108, 40,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, + 44, 32,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 41, 10,123, 10, 9,103, +108,111, 98, 97,108, 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, 44, 32, 49, 46, 48, + 41, 41, 46,120,121,122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,111, 98,106,101, 99,116, 40,109, 97,116, + 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,109, 97,116, 52, 32,111, 98,105,110,118,109, 97,116, 44, 32,118,101, 99, + 51, 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111, 98,106,101, 99,116, 41, 10,123, 10, 9,111, 98,106,101, 99,116, + 32, 61, 32, 40,111, 98,105,110,118,109, 97,116, 42, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40, 99,111, + 44, 32, 49, 46, 48, 41, 41, 41, 46,120,121,122, 59, 10,125, 10, 10,118,111,105,100, 32,116,101,120, 99,111, 95,114,101,102,108, + 40,118,101, 99, 51, 32,118,110, 44, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,114,101, +102, 41, 10,123, 10, 9,114,101,102, 32, 61, 32,118,105,101,119, 32, 45, 32, 50, 46, 48, 42,100,111,116, 40,118,110, 44, 32,118, +105,101,119, 41, 42,118,110, 59, 10,125, 10, 10,118,111,105,100, 32,115,104, 97,100,101, 95,110,111,114,109, 40,118,101, 99, 51, + 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114,109, 97,108, 41, 10,123, 10, 9, + 47, 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97, +116,101,100, 32, 42, 47, 10, 9,111,117,116,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110, +111,114,109, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 98,108,101,110,100, 40,118, +101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, + 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, + 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, + 42,116,101,120, 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109, +116,101,120, 95,114,103, 98, 95,109,117,108, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101, 120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 44, 32, 99,111,108, - 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, - 99,116, 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40, 99, -111,108, 32, 60, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32, 99,111,108, 59, 32,101,108, -115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, - 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46,103, 41, - 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,103, 32, 61, 32,111, -117,116, 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 59, 10, 9, -105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32, 99,111,108, - 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111, -105,100, 32,109,116,101,120, 95,114,103, 98, 95,108,105,103,104,116, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118, -101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, - 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99, -109, 44, 32, 99,111,108, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, - 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 59, - 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32, 99, -111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, 10, 9, 99,111, -108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, - 99,111,108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, - 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111, -108, 46, 98, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99,111,108, 46, 98, - 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 59, - 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,104,117,101, 40,118,101, 99, 51, 32,111,117,116, 99,111, +116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, + 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 10, 10, + 9,105,110, 99,111,108, 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 41, 42,111,117, +116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 99,114,101,101,110, 40,118,101, + 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, + 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10, +123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9, +102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,118,101, 99, 51, 40, + 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 51, 40,102, 97, 99,109, 41, 32, 43, 32,102, 97, 99,116, 42, 40,118,101, 99, 51, 40, + 49, 46, 48, 41, 32, 45, 32,116,101,120, 99,111,108, 41, 41, 42, 40,118,101, 99, 51, 40, 49, 46, 48, 41, 32, 45, 32,111,117,116, + 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,111,118,101,114,108, 97,121, 40,118, +101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, + 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, + 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,103, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, + 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 42, 40,102, 97, 99, +109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,114, 41, 59, 10, 9,101,108,115,101, 10, 9, 9, +105,110, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, + 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, + 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99,111, +108, 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, +116,101,120, 99,111,108, 46,103, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, + 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111, +108, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, + 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111,108, 46, + 98, 42, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 41, 59, 10, 9,101, +108,115,101, 10, 9, 9,105,110, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, + 48, 42,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32, +111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115,117, 98, 40, +118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, +102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, + 41, 10,123, 10, 9,105,110, 99,111,108, 32, 61, 32, 45,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, + 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 97,100,100, 40,118,101, + 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, + 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10, +123, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,102, 97, 99,103, 42,116,101,120, 99,111,108, 32, 43, 32,111,117, +116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100,105,118, 40,118,101, 99, 51, 32, +111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9, +102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99, +109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9,105,102, 40,116,101,120, 99,111,108, 46,114, 32, 33, 61, 32, 48, + 46, 48, 41, 32,105,110, 99,111,108, 46,114, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, + 99,116, 42,111,117,116, 99,111,108, 46,114, 47,116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40,116,101,120, 99,111,108, + 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, + 46,103, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46,103, 47,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, + 40,116,101,120, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, + 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 46, 98, 47,116,101,120, 99,111,108, + 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100,105,102,102, 40,118,101, 99, 51, 32,111, +117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32, +102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102, +108,111, 97,116, 32,102, 97, 99,109, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, + 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99, +111,108, 32, 43, 32,102, 97, 99,116, 42, 97, 98,115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10, +125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,100, 97,114,107, 40,118,101, 99, 51, 32,111,117,116, 99,111, +108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97, +116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, + 32,102, 97, 99,109, 44, 32, 99,111,108, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99, +109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111, +108, 46,114, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46,114, 41, 32,105,110, 99,111,108, 46,114, + 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, 99,111,108, 46,114, 59, + 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, + 32,111,117,116, 99,111,108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105, +110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116, +101,120, 99,111,108, 46, 98, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 46, 98, 41, 32,105,110, 99, +111,108, 46, 98, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, 32,111,117,116, 99,111, +108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,108,105,103,104,116, 40,118,101, 99, 51, + 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, + 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, + 9,102,108,111, 97,116, 32,102, 97, 99,109, 44, 32, 99,111,108, 59, 10, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, + 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, + 42,116,101,120, 99,111,108, 46,114, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46,114, 41, 32,105, +110, 99,111,108, 46,114, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46,114, 32, 61, 32,111,117,116, + 99,111,108, 46,114, 59, 10, 9, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 46,103, 59, 10, 9,105,102, + 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46,103, 41, 32,105,110, 99,111,108, 46,103, 32, 61, 32, 99,111,108, 59, 32, +101,108,115,101, 32,105,110, 99,111,108, 46,103, 32, 61, 32,111,117,116, 99,111,108, 46,103, 59, 10, 9, 99,111,108, 32, 61, 32, +102, 97, 99,116, 42,116,101,120, 99,111,108, 46, 98, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 46, + 98, 41, 32,105,110, 99,111,108, 46, 98, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 46, 98, 32, 61, + 32,111,117,116, 99,111,108, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,104,117,101, 40, +118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, +102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, + 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, 95,104,117,101, 40,102, 97, 99,116, 42,102, 97, + 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99, +111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, + 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 97,116, 40,118,101, 99, 51, 32, +111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9, +118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, 95,115, 97,116, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118, +101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, + 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, + 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,118, 97,108, 40,118,101, 99, 51, 32,111,117,116, 99,111, 108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97, 116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, - 99,111,108, 59, 10, 10, 9,109,105,120, 95,104,117,101, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111, + 99,111,108, 59, 10, 10, 9,109,105,120, 95,118, 97,108, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111, 117,116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,114,103, 98, 95,115, 97,116, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, - 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99, -103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, - 10, 9,109,105,120, 95,115, 97,116, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, - 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, - 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109, -116,101,120, 95,114,103, 98, 95,118, 97,108, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101, -120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117, -116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, - 95,118, 97,108, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, - 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99, -111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,114, -103, 98, 95, 99,111,108,111,114, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32,118,101, 99, 51, 32,116,101,120, 99,111, -108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,118, -101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, 59, 10, 10, 9,109,105,120, 95, 99,111, -108,111,114, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117,116, 99,111,108, 44, 32, 49, 46, 48, 41, - 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99,111,108, 41, 59, 10, 9,105,110, 99,111, -108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97, -108,117,101, 95,118, 97,114,115, 40,105,110,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, - 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,109, 44, 32,102,108,111, 97,116, 32,102,108,105, -112, 41, 10,123, 10, 9,102, 97, 99,116, 32, 42, 61, 32,102, 97, 99,103, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 45, -102, 97, 99,116, 59, 10, 10, 9,105,102, 40,102,108,105,112, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97, -116, 32,116,109,112, 32, 61, 32,102, 97, 99,116, 59, 10, 9, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,109, 59, 10, 9, 9,102, - 97, 99,109, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, - 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111, -108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,102,108,111, 97,116, - 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, - 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, - 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42, -116,101,120, 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116, -101,120, 95,118, 97,108,117,101, 95,109,117,108, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, - 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, - 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, - 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, - 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, - 49, 46, 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105,110, 99,111,108, 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99, -116, 42,116,101,120, 99,111,108, 41, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, - 97,108,117,101, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32, -116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32, -102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9, -102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99, -116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, 49, - 46, 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105,110, 99,111,108, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, - 43, 32,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117, -116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,115,117, 98, 40,102,108, -111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32, -102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109, -116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, - 32,102,108,105,112, 41, 59, 10, 10, 9,102, 97, 99,116, 32, 61, 32, 45,102, 97, 99,116, 59, 10, 9,105,110, 99,111,108, 32, 61, - 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109, -116,101,120, 95,118, 97,108,117,101, 95, 97,100,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97, -116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, - 44, 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, - 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, - 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9,102, 97, 99,116, 32, 61, - 32,102, 97, 99,116, 59, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,111,117, -116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100,105,118, 40,102,108,111, - 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, - 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, +111,105,100, 32,109,116,101,120, 95,114,103, 98, 95, 99,111,108,111,114, 40,118,101, 99, 51, 32,111,117,116, 99,111,108, 44, 32, +118,101, 99, 51, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,103, 44, 32,111,117,116, 32,118,101, 99, 51, 32,105,110, 99,111,108, 41, 10,123, 10, 9,118,101, 99, 52, 32, 99,111,108, + 59, 10, 10, 9,109,105,120, 95, 99,111,108,111,114, 40,102, 97, 99,116, 42,102, 97, 99,103, 44, 32,118,101, 99, 52, 40,111,117, +116, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32,118,101, 99, 52, 40,116,101,120, 99,111,108, 44, 32, 49, 46, 48, 41, 44, 32, 99, +111,108, 41, 59, 10, 9,105,110, 99,111,108, 46,114,103, 98, 32, 61, 32, 99,111,108, 46,114,103, 98, 59, 10,125, 10, 10,118,111, +105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,105,110,111,117,116, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102, 97, 99,109, 41, + 10,123, 10, 9,102, 97, 99,116, 32, 42, 61, 32, 97, 98,115, 40,102, 97, 99,103, 41, 59, 10, 9,102, 97, 99,109, 32, 61, 32, 49, + 46, 48, 45,102, 97, 99,116, 59, 10, 10, 9,105,102, 40,102, 97, 99,103, 32, 60, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108, +111, 97,116, 32,116,109,112, 32, 61, 32,102, 97, 99,116, 59, 10, 9, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,109, 59, 10, 9, + 9,102, 97, 99,109, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108, +117,101, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, + 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116, -101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32, -102,108,105,112, 41, 59, 10, 10, 9,105,102, 40,116,101,120, 99,111,108, 32, 33, 61, 32, 48, 46, 48, 41, 10, 9, 9,105,110, 99, -111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 47,116, -101,120, 99,111,108, 59, 10, 9,101,108,115,101, 10, 9, 9,105,110, 99,111,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118, -111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,100,105,102,102, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, - 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97, -116, 32,102, 97, 99,103, 44, 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, - 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95, -118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9, -105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42, 97, 98,115, 40,116, -101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97, -108,117,101, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, - 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,102,108,111, - 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, - 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32, -102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108,105,112, 41, 59, 10, 10, 9,102,108,111, 97,116, 32, 99,111,108, 32, 61, - 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 41, 32, -105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101,108,115,101, 32,105,110, 99,111,108, 32, 61, 32,111,117,116, 99,111,108, - 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,108,105,103,104,116, 40,102,108,111, 97,116, - 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99, -116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,102,108,111, 97,116, 32,102,108,105,112, 44, 32,111,117,116, 32,102, -108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, - 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 44, 32,102,108, -105,112, 41, 59, 10, 10, 9,102,108,111, 97,116, 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, +101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, + 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 32, 43, 32,102, 97, 99,109, 42,111,117, +116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95,109,117,108, 40,102,108,111, + 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, + 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, + 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114, +115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, + 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105,110, 99,111,108, 32, 61, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42, +116,101,120, 99,111,108, 41, 42,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108, +117,101, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101, +120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117, +116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109, +116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, + 59, 10, 10, 9,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99,103, 59, 10, 9,105,110, 99,111,108, 32, 61, 32, + 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32,102, 97, 99,116, 42, 40, 49, 46, 48, 32, 45, 32,116,101,120, 99,111,108, + 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95, +118, 97,108,117,101, 95,115,117, 98, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101, +120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117, +116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109, +116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, + 59, 10, 10, 9,102, 97, 99,116, 32, 61, 32, 45,102, 97, 99,116, 59, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42, +116,101,120, 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97, +108,117,101, 95, 97,100,100, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99, +111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101, +120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, + 10, 9,102, 97, 99,116, 32, 61, 32,102, 97, 99,116, 59, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, + 99,111,108, 32, 43, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, + 95,100,105,118, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101,120, 99,111,108, 44, + 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117,116, 32,102,108,111, + 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109,116,101,120, 95,118, + 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, 59, 10, 10, 9,105, +102, 40,116,101,120, 99,111,108, 32, 33, 61, 32, 48, 46, 48, 41, 10, 9, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42, +111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42,111,117,116, 99,111,108, 47,116,101,120, 99,111,108, 59, 10, 9,101,108, +115,101, 10, 9, 9,105,110, 99,111,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, + 97,108,117,101, 95,100,105,102,102, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, 32,116,101, +120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, 32,111,117, +116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, 10, 9,109, +116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, 99,109, 41, + 59, 10, 10, 9,105,110, 99,111,108, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 32, 43, 32,102, 97, 99,116, 42, 97, + 98,115, 40,116,101,120, 99,111,108, 32, 45, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101, +120, 95,118, 97,108,117,101, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, + 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, + 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, + 99,109, 41, 59, 10, 10, 9,102,108,111, 97,116, 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, + 9,105,102, 40, 99,111,108, 32, 60, 32,111,117,116, 99,111,108, 41, 32,105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101, +108,115,101, 32,105,110, 99,111,108, 32, 61, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, + 95,118, 97,108,117,101, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,111,117,116, 99,111,108, 44, 32,102,108,111, 97,116, + 32,116,101,120, 99,111,108, 44, 32,102,108,111, 97,116, 32,102, 97, 99,116, 44, 32,102,108,111, 97,116, 32,102, 97, 99,103, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,105,110, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 59, + 10, 9,109,116,101,120, 95,118, 97,108,117,101, 95,118, 97,114,115, 40,102, 97, 99,116, 44, 32,102, 97, 99,103, 44, 32,102, 97, + 99,109, 41, 59, 10, 10, 9,102,108,111, 97,116, 32, 99,111,108, 32, 61, 32,102, 97, 99,116, 42,116,101,120, 99,111,108, 59, 10, 9,105,102, 40, 99,111,108, 32, 62, 32,111,117,116, 99,111,108, 41, 32,105,110, 99,111,108, 32, 61, 32, 99,111,108, 59, 32,101, 108,115,101, 32,105,110, 99,111,108, 32, 61, 32,111,117,116, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,109,116,101,120, 95,118, 97,108,117,101, 95, 99,108, 97,109,112, 95,112,111,115,105,116,105,118,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, From 05d33dc6af190a774b61eeff66cc1cb66b5a5319 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 11:00:43 +0000 Subject: [PATCH 055/412] Fix #19633: material & texture didn't use autocomplete for selecting uv layers yet. --- release/scripts/ui/buttons_material.py | 4 +++- release/scripts/ui/buttons_texture.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index e38eb583447..9499478a029 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -150,7 +150,9 @@ class MATERIAL_PT_strand(MaterialButtonsPanel): col = split.column() col.itemL(text="Shading:") col.itemR(tan, "width_fade") - col.itemR(tan, "uv_layer") + ob = context.object + if ob and ob.type == 'MESH': col.item_pointerR(tan, "uv_layer", ob.data, "uv_textures", text="") + else: col.itemR(tan, "uv_layer", text="") col.itemS() sub = col.column() sub.active = (not mat.shadeless) diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 270ecaf19aa..4e4fbd2bc25 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -171,7 +171,9 @@ class TEXTURE_PT_mapping(TextureSlotPanel): elif tex.texture_coordinates == 'UV': split = layout.split(percentage=0.3) split.itemL(text="Layer:") - split.itemR(tex, "uv_layer", text="") + ob = context.object + if ob and ob.type == 'MESH': split.item_pointerR(tex, "uv_layer", ob.data, "uv_textures", text="") + else: split.itemR(tex, "uv_layer", text="") elif tex.texture_coordinates == 'OBJECT': split = layout.split(percentage=0.3) split.itemL(text="Object:") From 243e024a6316820a66f55a229cfca53e9895b759 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 11:04:56 +0000 Subject: [PATCH 056/412] Fix #19683: rendering with compo nodes but no render layer node crashed. --- source/blender/render/intern/source/pipeline.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c index edf3cd83404..52adecde58e 100644 --- a/source/blender/render/intern/source/pipeline.c +++ b/source/blender/render/intern/source/pipeline.c @@ -2386,6 +2386,7 @@ static void do_render_composite_fields_blur_3d(Render *re) ntree->sdh= re->sdh; ntree->tbh= re->tbh; /* in case it was never initialized */ + R.sdh= re->sdh; R.stats_draw= re->stats_draw; if(re->r.scemode & R_FULL_SAMPLE) From 915c40708e033f20928ccfc0355534b691473369 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 11:11:35 +0000 Subject: [PATCH 057/412] Fix #19640: user defined keymaps did not use poll function. --- source/blender/windowmanager/intern/wm_keymap.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c index eedacb056b7..3caca041be7 100644 --- a/source/blender/windowmanager/intern/wm_keymap.c +++ b/source/blender/windowmanager/intern/wm_keymap.c @@ -415,15 +415,19 @@ wmKeyMap *WM_keymap_active(wmWindowManager *wm, wmKeyMap *keymap) /* first user defined keymaps */ km= wm_keymap_list_find(&U.keymaps, keymap->idname, keymap->spaceid, keymap->regionid); - if(km) + if(km) { + km->poll= keymap->poll; /* lazy init */ return km; + } /* then user key config */ keyconf= wm_keyconfig_list_find(&wm->keyconfigs, U.keyconfigstr); if(keyconf) { km= wm_keymap_list_find(&keyconf->keymaps, keymap->idname, keymap->spaceid, keymap->regionid); - if(km) + if(km) { + km->poll= keymap->poll; /* lazy init */ return km; + } } /* then use default */ From a216ce6cf84fdb27011020abc08b4d58aeccf78b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 11:39:57 +0000 Subject: [PATCH 058/412] - fixed python error when there is no active object - made sequence strip selection more like object mode - only de-select the active with Shift+RMB --- release/scripts/ui/space_view3d.py | 4 ++-- .../blender/editors/space_sequencer/sequencer_select.c | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index b4300710dab..9fd9e1283cd 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1233,7 +1233,6 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): view = context.space_data gs = context.scene.game_data ob = context.object - mesh = context.active_object.data col = layout.column() col.itemR(view, "display_floor", text="Grid Floor") @@ -1243,7 +1242,8 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): col.itemR(view, "outline_selected") col.itemR(view, "all_object_centers") col.itemR(view, "relationship_lines") - if ob.type =='MESH': + if ob and ob.type =='MESH': + mesh = context.active_object.data col.itemR(mesh, "all_edges") col = layout.column() diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index fe46cb178ae..e03cb6ddc94 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -296,8 +296,8 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) short mval[2]; - Sequence *seq,*neighbor; - int hand,sel_side, shift= 0; // XXX + Sequence *seq,*neighbor, *act_orig; + int hand,sel_side; TimeMarker *marker; if(ed==NULL) @@ -311,7 +311,7 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) if (marker) { int oldflag; /* select timeline marker */ - if (shift) { + if (extend) { oldflag= marker->flag; if (oldflag & SELECT) marker->flag &= ~SELECT; @@ -326,6 +326,7 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) } else { seq= find_nearest_seq(scene, v2d, &hand, mval); + act_orig= ed->act_seq; if(extend == 0 && linked_left==0 && linked_right==0) deselect_all_seq(scene); @@ -344,7 +345,7 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) } } - if(extend && (seq->flag & SELECT)) { + if(extend && (seq->flag & SELECT) && ed->act_seq == act_orig ) { switch(hand) { case SEQ_SIDE_NONE: if (linked_left==0 && linked_right==0) From 23101be4d653e726cf93cbb4aadd35e59e2702cd Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 11:49:23 +0000 Subject: [PATCH 059/412] Fix use of uninitialized variable in node editor. --- source/blender/editors/space_node/node_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c index 13421adf6e6..046ae8b1f5d 100644 --- a/source/blender/editors/space_node/node_edit.c +++ b/source/blender/editors/space_node/node_edit.c @@ -583,7 +583,7 @@ void ED_node_texture_default(Tex *tx) void node_tree_from_ID(ID *id, bNodeTree **ntree, bNodeTree **edittree, int *treetype) { - bNode *node; + bNode *node= NULL; short idtype= GS(id->name); if(idtype == ID_MA) { From 952322e71c7a44e5be9a4da510f697fa5d123fcd Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 11:50:01 +0000 Subject: [PATCH 060/412] Fix #19632: GLSL was not updated for soft/linear light blending modes. --- source/blender/blenkernel/intern/material.c | 122 +-- source/blender/gpu/intern/gpu_material.c | 2 +- .../gpu/intern/gpu_shader_material.glsl | 32 + .../gpu/intern/gpu_shader_material.glsl.c | 705 +++++++++--------- .../nodes/intern/SHD_nodes/SHD_mixRgb.c | 2 +- 5 files changed, 459 insertions(+), 404 deletions(-) diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c index c1093c119dc..ab700ab283c 100644 --- a/source/blender/blenkernel/intern/material.c +++ b/source/blender/blenkernel/intern/material.c @@ -982,7 +982,7 @@ int object_remove_material_slot(Object *ob) /* if g==NULL, it only does r channel */ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) { - float tmp, facm= 1.0-fac; + float tmp, facm= 1.0f-fac; switch (type) { case MA_RAMP_BLEND: @@ -1007,26 +1007,26 @@ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) } break; case MA_RAMP_SCREEN: - *r = 1.0 - (facm + fac*(1.0 - col[0])) * (1.0 - *r); + *r = 1.0f - (facm + fac*(1.0f - col[0])) * (1.0f - *r); if(g) { - *g = 1.0 - (facm + fac*(1.0 - col[1])) * (1.0 - *g); - *b = 1.0 - (facm + fac*(1.0 - col[2])) * (1.0 - *b); + *g = 1.0f - (facm + fac*(1.0f - col[1])) * (1.0f - *g); + *b = 1.0f - (facm + fac*(1.0f - col[2])) * (1.0f - *b); } break; case MA_RAMP_OVERLAY: if(*r < 0.5f) *r *= (facm + 2.0f*fac*col[0]); else - *r = 1.0 - (facm + 2.0f*fac*(1.0 - col[0])) * (1.0 - *r); + *r = 1.0f - (facm + 2.0f*fac*(1.0f - col[0])) * (1.0f - *r); if(g) { if(*g < 0.5f) *g *= (facm + 2.0f*fac*col[1]); else - *g = 1.0 - (facm + 2.0f*fac*(1.0 - col[1])) * (1.0 - *g); + *g = 1.0f - (facm + 2.0f*fac*(1.0f - col[1])) * (1.0f - *g); if(*b < 0.5f) *b *= (facm + 2.0f*fac*col[2]); else - *b = 1.0 - (facm + 2.0f*fac*(1.0 - col[2])) * (1.0 - *b); + *b = 1.0f - (facm + 2.0f*fac*(1.0f - col[2])) * (1.0f - *b); } break; case MA_RAMP_SUB: @@ -1037,12 +1037,12 @@ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) } break; case MA_RAMP_DIV: - if(col[0]!=0.0) + if(col[0]!=0.0f) *r = facm*(*r) + fac*(*r)/col[0]; if(g) { - if(col[1]!=0.0) + if(col[1]!=0.0f) *g = facm*(*g) + fac*(*g)/col[1]; - if(col[2]!=0.0) + if(col[2]!=0.0f) *b = facm*(*b) + fac*(*b)/col[2]; } break; @@ -1076,31 +1076,31 @@ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) case MA_RAMP_DODGE: - if(*r !=0.0){ - tmp = 1.0 - fac*col[0]; - if(tmp <= 0.0) - *r = 1.0; - else if ((tmp = (*r) / tmp)> 1.0) - *r = 1.0; + if(*r !=0.0f){ + tmp = 1.0f - fac*col[0]; + if(tmp <= 0.0f) + *r = 1.0f; + else if ((tmp = (*r) / tmp)> 1.0f) + *r = 1.0f; else *r = tmp; } if(g) { - if(*g !=0.0){ - tmp = 1.0 - fac*col[1]; - if(tmp <= 0.0 ) - *g = 1.0; - else if ((tmp = (*g) / tmp) > 1.0 ) - *g = 1.0; + if(*g !=0.0f){ + tmp = 1.0f - fac*col[1]; + if(tmp <= 0.0f ) + *g = 1.0f; + else if ((tmp = (*g) / tmp) > 1.0f ) + *g = 1.0f; else *g = tmp; } - if(*b !=0.0){ - tmp = 1.0 - fac*col[2]; - if(tmp <= 0.0) - *b = 1.0; - else if ((tmp = (*b) / tmp) > 1.0 ) - *b = 1.0; + if(*b !=0.0f){ + tmp = 1.0f - fac*col[2]; + if(tmp <= 0.0f) + *b = 1.0f; + else if ((tmp = (*b) / tmp) > 1.0f ) + *b = 1.0f; else *b = tmp; } @@ -1111,33 +1111,33 @@ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) tmp = facm + fac*col[0]; - if(tmp <= 0.0) - *r = 0.0; - else if (( tmp = (1.0 - (1.0 - (*r)) / tmp )) < 0.0) - *r = 0.0; - else if (tmp > 1.0) - *r=1.0; + if(tmp <= 0.0f) + *r = 0.0f; + else if (( tmp = (1.0f - (1.0f - (*r)) / tmp )) < 0.0f) + *r = 0.0f; + else if (tmp > 1.0f) + *r=1.0f; else *r = tmp; if(g) { tmp = facm + fac*col[1]; - if(tmp <= 0.0) - *g = 0.0; - else if (( tmp = (1.0 - (1.0 - (*g)) / tmp )) < 0.0 ) - *g = 0.0; - else if(tmp >1.0) - *g=1.0; + if(tmp <= 0.0f) + *g = 0.0f; + else if (( tmp = (1.0f - (1.0f - (*g)) / tmp )) < 0.0f ) + *g = 0.0f; + else if(tmp >1.0f) + *g=1.0f; else *g = tmp; tmp = facm + fac*col[2]; - if(tmp <= 0.0) - *b = 0.0; - else if (( tmp = (1.0 - (1.0 - (*b)) / tmp )) < 0.0 ) - *b = 0.0; - else if(tmp >1.0) - *b= 1.0; + if(tmp <= 0.0f) + *b = 0.0f; + else if (( tmp = (1.0f - (1.0f - (*b)) / tmp )) < 0.0f ) + *b = 0.0f; + else if(tmp >1.0f) + *b= 1.0f; else *b = tmp; } @@ -1197,29 +1197,29 @@ void ramp_blend(int type, float *r, float *g, float *b, float fac, float *col) float scr, scg, scb; /* first calculate non-fac based Screen mix */ - scr = 1.0 - ((1.0 - col[0])) * (1.0 - *r); - scg = 1.0 - ((1.0 - col[1])) * (1.0 - *g); - scb = 1.0 - ((1.0 - col[2])) * (1.0 - *b); + scr = 1.0f - (1.0f - col[0]) * (1.0f - *r); + scg = 1.0f - (1.0f - col[1]) * (1.0f - *g); + scb = 1.0f - (1.0f - col[2]) * (1.0f - *b); - *r = facm*(*r) + fac*(((1.0 - *r) * col[0] * (*r)) + (*r * scr)); - *g = facm*(*g) + fac*(((1.0 - *g) * col[1] * (*g)) + (*g * scg)); - *b = facm*(*b) + fac*(((1.0 - *b) * col[2] * (*b)) + (*b * scb)); + *r = facm*(*r) + fac*(((1.0f - *r) * col[0] * (*r)) + (*r * scr)); + *g = facm*(*g) + fac*(((1.0f - *g) * col[1] * (*g)) + (*g * scg)); + *b = facm*(*b) + fac*(((1.0f - *b) * col[2] * (*b)) + (*b * scb)); } break; case MA_RAMP_LINEAR: - if (col[0] > 0.5) - *r = *r + fac*(2*(col[0]-0.5)); + if (col[0] > 0.5f) + *r = *r + fac*(2.0f*(col[0]-0.5f)); else - *r = *r + fac*(2*(col[0]) - 1); + *r = *r + fac*(2.0f*(col[0]) - 1.0f); if (g){ - if (col[1] > 0.5) - *g = *g + fac*(2*(col[1]-0.5)); + if (col[1] > 0.5f) + *g = *g + fac*(2.0f*(col[1]-0.5f)); else - *g = *g + fac*(2*(col[1]) -1); - if (col[2] > 0.5) - *b = *b + fac*(2*(col[2]-0.5)); + *g = *g + fac*(2.0f*(col[1]) -1.0f); + if (col[2] > 0.5f) + *b = *b + fac*(2.0f*(col[2]-0.5f)); else - *b = *b + fac*(2*(col[2]) - 1); + *b = *b + fac*(2.0f*(col[2]) - 1.0f); } break; } diff --git a/source/blender/gpu/intern/gpu_material.c b/source/blender/gpu/intern/gpu_material.c index d01266c8765..0dc17da93a1 100644 --- a/source/blender/gpu/intern/gpu_material.c +++ b/source/blender/gpu/intern/gpu_material.c @@ -471,7 +471,7 @@ static void ramp_blend(GPUMaterial *mat, GPUNodeLink *fac, GPUNodeLink *col1, GP static char *names[] = {"mix_blend", "mix_add", "mix_mult", "mix_sub", "mix_screen", "mix_div", "mix_diff", "mix_dark", "mix_light", "mix_overlay", "mix_dodge", "mix_burn", "mix_hue", "mix_sat", - "mix_val", "mix_color"}; + "mix_val", "mix_color", "mix_soft", "mix_linear"}; GPU_link(mat, names[type], fac, col1, col2, outcol); } diff --git a/source/blender/gpu/intern/gpu_shader_material.glsl b/source/blender/gpu/intern/gpu_shader_material.glsl index 0d7e00a541b..e59be0217b5 100644 --- a/source/blender/gpu/intern/gpu_shader_material.glsl +++ b/source/blender/gpu/intern/gpu_shader_material.glsl @@ -563,6 +563,38 @@ void mix_color(float fac, vec4 col1, vec4 col2, out vec4 outcol) } } +void mix_soft(float fac, vec4 col1, vec4 col2, out vec4 outcol) +{ + fac = clamp(fac, 0.0, 1.0); + float facm = 1.0 - fac; + + vec4 one= vec4(1.0); + vec4 scr= one - (one - col2)*(one - col1); + outcol = facm*col1 + fac*((one - col1)*col2*col1 + col1*scr); +} + +void mix_linear(float fac, vec4 col1, vec4 col2, out vec4 outcol) +{ + fac = clamp(fac, 0.0, 1.0); + + outcol = col1; + + if(col2.r > 0.5) + outcol.r= col1.r + fac*(2.0*(col2.r - 0.5)); + else + outcol.r= col1.r + fac*(2.0*(col2.r) - 1.0); + + if(col2.g > 0.5) + outcol.g= col1.g + fac*(2.0*(col2.g - 0.5)); + else + outcol.g= col1.g + fac*(2.0*(col2.g) - 1.0); + + if(col2.b > 0.5) + outcol.b= col1.b + fac*(2.0*(col2.b - 0.5)); + else + outcol.b= col1.b + fac*(2.0*(col2.b) - 1.0); +} + void valtorgb(float fac, sampler1D colormap, out vec4 outcol, out float outalpha) { outcol = texture1D(colormap, fac); diff --git a/source/blender/gpu/intern/gpu_shader_material.glsl.c b/source/blender/gpu/intern/gpu_shader_material.glsl.c index 1728fd9b68c..d61491ad57a 100644 --- a/source/blender/gpu/intern/gpu_shader_material.glsl.c +++ b/source/blender/gpu/intern/gpu_shader_material.glsl.c @@ -1,352 +1,375 @@ /* DataToC output of file */ -int datatoc_gpu_shader_material_glsl_size= 32658; +int datatoc_gpu_shader_material_glsl_size= 33385; char datatoc_gpu_shader_material_glsl[]= { - 10,102,108,111, 97,116, 32,101,120,112, 95, 98,108,101,110,100,101,114, - 40,102,108,111, 97,116, 32,102, 41, 10,123, 10, 9,114,101,116,117,114,110, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, - 56, 50, 56, 52, 54, 44, 32,102, 41, 59, 10,125, 10, 10,118,111,105,100, 32,114,103, 98, 95,116,111, 95,104,115,118, 40,118,101, - 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97, -116, 32, 99,109, 97,120, 44, 32, 99,109,105,110, 44, 32,104, 44, 32,115, 44, 32,118, 44, 32, 99,100,101,108,116, 97, 59, 10, 9, -118,101, 99, 51, 32, 99, 59, 10, 10, 9, 99,109, 97,120, 32, 61, 32,109, 97,120, 40,114,103, 98, 91, 48, 93, 44, 32,109, 97,120, - 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,109,105,110, 32, 61, 32,109,105,110, 40,114, -103, 98, 91, 48, 93, 44, 32,109,105,110, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,100, -101,108,116, 97, 32, 61, 32, 99,109, 97,120, 45, 99,109,105,110, 59, 10, 10, 9,118, 32, 61, 32, 99,109, 97,120, 59, 10, 9,105, -102, 32, 40, 99,109, 97,120, 33, 61, 48, 46, 48, 41, 10, 9, 9,115, 32, 61, 32, 99,100,101,108,116, 97, 47, 99,109, 97,120, 59, - 10, 9,101,108,115,101, 32,123, 10, 9, 9,115, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, -125, 10, 10, 9,105,102, 32, 40,115, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, -125, 10, 9,101,108,115,101, 32,123, 10, 9, 9, 99, 32, 61, 32, 40,118,101, 99, 51, 40, 99,109, 97,120, 44, 32, 99,109, 97,120, - 44, 32, 99,109, 97,120, 41, 32, 45, 32,114,103, 98, 46,120,121,122, 41, 47, 99,100,101,108,116, 97, 59, 10, 10, 9, 9,105,102, - 32, 40,114,103, 98, 46,120, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 99, 91, 50, 93, 32, 45, 32, 99, 91, 49, 93, 59, 10, - 9, 9,101,108,115,101, 32,105,102, 32, 40,114,103, 98, 46,121, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 50, 46, 48, 32, - 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, 99, 91, 50, 93, 59, 10, 9, 9,101,108,115,101, 32,104, 32, 61, 32, 52, 46, 48, 32, 43, - 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, 48, 93, 59, 10, 10, 9, 9,104, 32, 47, 61, 32, 54, 46, 48, 59, 10, 10, 9, 9,105,102, - 32, 40,104, 60, 48, 46, 48, 41, 10, 9, 9, 9,104, 32, 43, 61, 32, 49, 46, 48, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111, -108, 32, 61, 32,118,101, 99, 52, 40,104, 44, 32,115, 44, 32,118, 44, 32,114,103, 98, 46,119, 41, 59, 10,125, 10, 10,118,111,105, -100, 32,104,115,118, 95,116,111, 95,114,103, 98, 40,118,101, 99, 52, 32,104,115,118, 44, 32,111,117,116, 32,118,101, 99, 52, 32, -111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,105, 44, 32,102, 44, 32,112, 44, 32,113, 44, 32,116, 44, 32, -104, 44, 32,115, 44, 32,118, 59, 10, 9,118,101, 99, 51, 32,114,103, 98, 59, 10, 10, 9,104, 32, 61, 32,104,115,118, 91, 48, 93, - 59, 10, 9,115, 32, 61, 32,104,115,118, 91, 49, 93, 59, 10, 9,118, 32, 61, 32,104,115,118, 91, 50, 93, 59, 10, 10, 9,105,102, - 40,115, 61, 61, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,118, 44, 32,118, 41, - 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,105,102, 40,104, 61, 61, 49, 46, 48, 41, 10, 9, 9, 9,104, 32, 61, - 32, 48, 46, 48, 59, 10, 9, 9, 10, 9, 9,104, 32, 42, 61, 32, 54, 46, 48, 59, 10, 9, 9,105, 32, 61, 32,102,108,111,111,114, - 40,104, 41, 59, 10, 9, 9,102, 32, 61, 32,104, 32, 45, 32,105, 59, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,102, - 44, 32,102, 44, 32,102, 41, 59, 10, 9, 9,112, 32, 61, 32,118, 42, 40, 49, 46, 48, 45,115, 41, 59, 10, 9, 9,113, 32, 61, 32, -118, 42, 40, 49, 46, 48, 45, 40,115, 42,102, 41, 41, 59, 10, 9, 9,116, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42, 40, - 49, 46, 48, 45,102, 41, 41, 41, 59, 10, 9, 9, 10, 9, 9,105,102, 32, 40,105, 32, 61, 61, 32, 48, 46, 48, 41, 32,114,103, 98, - 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,116, 44, 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, - 61, 32, 49, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,113, 44, 32,118, 44, 32,112, 41, 59, 10, 9, 9,101,108, -115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 50, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,118, - 44, 32,116, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 51, 46, 48, 41, 32,114,103, 98, 32, 61, - 32,118,101, 99, 51, 40,112, 44, 32,113, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, - 52, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,116, 44, 32,112, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, - 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,112, 44, 32,113, 41, 59, 10, 9,125, 10, 10, 9,111,117,116, 99,111, -108, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 44, 32,104,115,118, 46,119, 41, 59, 10,125, 10, 10, 35,100,101,102,105,110,101, - 32, 77, 95, 80, 73, 32, 51, 46, 49, 52, 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, 50, 51, 56, 52, 54, 10, 10, 47, 42, - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, 32, 42, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, - 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 41, 10,123, 10, 9,118, 99, -111,108, 32, 61, 32,118,101, 99, 52, 40, 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99, -111,108, 46,121, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, 53, 53, 46, 48, 44, 32, 49, 46, 48, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40,118,101, 99, 50, 32, 97,116,116, -117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9,117,118, 32, 61, 32,118,101, 99, 51, 40, 97,116, -116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, 41, 44, 32, 48, 46, 48, 41, 59, 10, -125, 10, 10,118,111,105,100, 32,103,101,111,109, 40,118,101, 99, 51, 32, 99,111, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32, -109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 97,116,116,111,114, 99,111, 44, 32,118, -101, 99, 50, 32, 97,116,116,117,118, 44, 32,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, - 51, 32,103,108,111, 98, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,111, 99, 97,108, 44, 32,111,117,116, 32,118,101, - 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, - 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102,114,111,110,116, 98, 97, 99,107, 41, 10,123, 10, 9,108,111, 99, - 97,108, 32, 61, 32, 99,111, 59, 10, 9,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,108,111, 99, 97,108, - 41, 59, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97,116, 42,118,101, 99, 52, 40,108,111, - 99, 97,108, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9,111,114, 99,111, 32, 61, 32, 97,116,116,111,114, 99,111, 59, - 10, 9,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,117,118, 44, 32,117,118, 41, 59, 10, 9,110,111,114,109, - 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114, 41, 59, 9, 47, 42, 32, 98,108,101,110,100,101,114, - 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97,116,101,100, 32, 42, 47, 10, 9,118, 99, -111,108, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,118, 99,111,108, 44, 32,118, 99,111,108, 41, 59, 10, 9,102,114, -111,110,116, 98, 97, 99,107, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,112,112,105,110,103, 40,118, -101, 99, 51, 32,118,101, 99, 44, 32,109, 97,116, 52, 32,109, 97,116, 44, 32,118,101, 99, 51, 32,109,105,110,118,101, 99, 44, 32, -118,101, 99, 51, 32,109, 97,120,118,101, 99, 44, 32,102,108,111, 97,116, 32,100,111,109,105,110, 44, 32,102,108,111, 97,116, 32, -100,111,109, 97,120, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, - 99, 32, 61, 32, 40,109, 97,116, 32, 42, 32,118,101, 99, 52, 40,118,101, 99, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, - 9,105,102, 40,100,111,109,105,110, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109, 97,120, - 40,111,117,116,118,101, 99, 44, 32,109,105,110,118,101, 99, 41, 59, 10, 9,105,102, 40,100,111,109, 97,120, 32, 61, 61, 32, 49, - 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109,105,110, 40,111,117,116,118,101, 99, 44, 32,109, 97,120,118,101, - 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99, 97,109,101,114, 97, 40,118,101, 99, 51, 32, 99,111, 44, 32,111,117,116, 32, -118,101, 99, 51, 32,111,117,116,118,105,101,119, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,101,112,116,104, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,105,115,116, 41, 10,123, 10, 9,111,117,116,100,101,112,116,104, - 32, 61, 32, 97, 98,115, 40, 99,111, 46,122, 41, 59, 10, 9,111,117,116,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, - 99,111, 41, 59, 10, 9,111,117,116,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 99,111, 41, 59, 10,125, - 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97, -116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116, -118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 43, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, -115,117, 98,116,114, 97, 99,116, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, - 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, - 97,108, 49, 32, 45, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,117,108,116,105,112,108, -121, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 42, 32,118, - 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,100,105,118,105,100,101, 40,102,108,111, 97,116, 32,118, + 10,102,108,111, 97,116, 32,101,120, +112, 95, 98,108,101,110,100,101,114, 40,102,108,111, 97,116, 32,102, 41, 10,123, 10, 9,114,101,116,117,114,110, 32,112,111,119, + 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 50, 56, 52, 54, 44, 32,102, 41, 59, 10,125, 10, 10,118,111,105,100, 32,114,103, 98, 95, +116,111, 95,104,115,118, 40,118,101, 99, 52, 32,114,103, 98, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, + 41, 10,123, 10, 9,102,108,111, 97,116, 32, 99,109, 97,120, 44, 32, 99,109,105,110, 44, 32,104, 44, 32,115, 44, 32,118, 44, 32, + 99,100,101,108,116, 97, 59, 10, 9,118,101, 99, 51, 32, 99, 59, 10, 10, 9, 99,109, 97,120, 32, 61, 32,109, 97,120, 40,114,103, + 98, 91, 48, 93, 44, 32,109, 97,120, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, 50, 93, 41, 41, 59, 10, 9, 99,109,105, +110, 32, 61, 32,109,105,110, 40,114,103, 98, 91, 48, 93, 44, 32,109,105,110, 40,114,103, 98, 91, 49, 93, 44, 32,114,103, 98, 91, + 50, 93, 41, 41, 59, 10, 9, 99,100,101,108,116, 97, 32, 61, 32, 99,109, 97,120, 45, 99,109,105,110, 59, 10, 10, 9,118, 32, 61, + 32, 99,109, 97,120, 59, 10, 9,105,102, 32, 40, 99,109, 97,120, 33, 61, 48, 46, 48, 41, 10, 9, 9,115, 32, 61, 32, 99,100,101, +108,116, 97, 47, 99,109, 97,120, 59, 10, 9,101,108,115,101, 32,123, 10, 9, 9,115, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9,104, + 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 10, 9,105,102, 32, 40,115, 32, 61, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,104, + 32, 61, 32, 48, 46, 48, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9, 99, 32, 61, 32, 40,118,101, 99, 51, 40, 99, +109, 97,120, 44, 32, 99,109, 97,120, 44, 32, 99,109, 97,120, 41, 32, 45, 32,114,103, 98, 46,120,121,122, 41, 47, 99,100,101,108, +116, 97, 59, 10, 10, 9, 9,105,102, 32, 40,114,103, 98, 46,120, 61, 61, 99,109, 97,120, 41, 32,104, 32, 61, 32, 99, 91, 50, 93, + 32, 45, 32, 99, 91, 49, 93, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,114,103, 98, 46,121, 61, 61, 99,109, 97,120, 41, + 32,104, 32, 61, 32, 50, 46, 48, 32, 43, 32, 99, 91, 48, 93, 32, 45, 32, 32, 99, 91, 50, 93, 59, 10, 9, 9,101,108,115,101, 32, +104, 32, 61, 32, 52, 46, 48, 32, 43, 32, 99, 91, 49, 93, 32, 45, 32, 99, 91, 48, 93, 59, 10, 10, 9, 9,104, 32, 47, 61, 32, 54, + 46, 48, 59, 10, 10, 9, 9,105,102, 32, 40,104, 60, 48, 46, 48, 41, 10, 9, 9, 9,104, 32, 43, 61, 32, 49, 46, 48, 59, 10, 9, +125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,104, 44, 32,115, 44, 32,118, 44, 32,114,103, 98, 46,119, + 41, 59, 10,125, 10, 10,118,111,105,100, 32,104,115,118, 95,116,111, 95,114,103, 98, 40,118,101, 99, 52, 32,104,115,118, 44, 32, +111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102,108,111, 97,116, 32,105, 44, 32,102, 44, 32, +112, 44, 32,113, 44, 32,116, 44, 32,104, 44, 32,115, 44, 32,118, 59, 10, 9,118,101, 99, 51, 32,114,103, 98, 59, 10, 10, 9,104, + 32, 61, 32,104,115,118, 91, 48, 93, 59, 10, 9,115, 32, 61, 32,104,115,118, 91, 49, 93, 59, 10, 9,118, 32, 61, 32,104,115,118, + 91, 50, 93, 59, 10, 10, 9,105,102, 40,115, 61, 61, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 32, 61, 32,118,101, 99, 51, + 40,118, 44, 32,118, 44, 32,118, 41, 59, 10, 9,125, 10, 9,101,108,115,101, 32,123, 10, 9, 9,105,102, 40,104, 61, 61, 49, 46, + 48, 41, 10, 9, 9, 9,104, 32, 61, 32, 48, 46, 48, 59, 10, 9, 9, 10, 9, 9,104, 32, 42, 61, 32, 54, 46, 48, 59, 10, 9, 9, +105, 32, 61, 32,102,108,111,111,114, 40,104, 41, 59, 10, 9, 9,102, 32, 61, 32,104, 32, 45, 32,105, 59, 10, 9, 9,114,103, 98, + 32, 61, 32,118,101, 99, 51, 40,102, 44, 32,102, 44, 32,102, 41, 59, 10, 9, 9,112, 32, 61, 32,118, 42, 40, 49, 46, 48, 45,115, + 41, 59, 10, 9, 9,113, 32, 61, 32,118, 42, 40, 49, 46, 48, 45, 40,115, 42,102, 41, 41, 59, 10, 9, 9,116, 32, 61, 32,118, 42, + 40, 49, 46, 48, 45, 40,115, 42, 40, 49, 46, 48, 45,102, 41, 41, 41, 59, 10, 9, 9, 10, 9, 9,105,102, 32, 40,105, 32, 61, 61, + 32, 48, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,116, 44, 32,112, 41, 59, 10, 9, 9,101,108,115, +101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 49, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,113, 44, 32,118, 44, + 32,112, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 50, 46, 48, 41, 32,114,103, 98, 32, 61, 32, +118,101, 99, 51, 40,112, 44, 32,118, 44, 32,116, 41, 59, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,105, 32, 61, 61, 32, 51, + 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,112, 44, 32,113, 44, 32,118, 41, 59, 10, 9, 9,101,108,115,101, 32, +105,102, 32, 40,105, 32, 61, 61, 32, 52, 46, 48, 41, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,116, 44, 32,112, 44, 32,118, + 41, 59, 10, 9, 9,101,108,115,101, 32,114,103, 98, 32, 61, 32,118,101, 99, 51, 40,118, 44, 32,112, 44, 32,113, 41, 59, 10, 9, +125, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40,114,103, 98, 44, 32,104,115,118, 46,119, 41, 59, 10,125, + 10, 10, 35,100,101,102,105,110,101, 32, 77, 95, 80, 73, 32, 51, 46, 49, 52, 49, 53, 57, 50, 54, 53, 51, 53, 56, 57, 55, 57, 51, + 50, 51, 56, 52, 54, 10, 10, 47, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 32, 83, 72, 65, 68, 69, 82, 32, 78, 79, 68, 69, 83, + 32, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 47, 10, 10,118,111,105,100, 32,118, 99,111,108, 95, 97,116,116, +114,105, 98,117,116,101, 40,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,118, 99, +111,108, 41, 10,123, 10, 9,118, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 97,116,116,118, 99,111,108, 46,120, 47, 50, 53, 53, + 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,121, 47, 50, 53, 53, 46, 48, 44, 32, 97,116,116,118, 99,111,108, 46,122, 47, 50, + 53, 53, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,117,118, 95, 97,116,116,114,105, 98,117,116,101, + 40,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 41, 10,123, 10, 9,117,118, 32, + 61, 32,118,101, 99, 51, 40, 97,116,116,117,118, 42, 50, 46, 48, 32, 45, 32,118,101, 99, 50, 40, 49, 46, 48, 44, 32, 49, 46, 48, + 41, 44, 32, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,103,101,111,109, 40,118,101, 99, 51, 32, 99,111, 44, 32,118, +101, 99, 51, 32,110,111,114, 44, 32,109, 97,116, 52, 32,118,105,101,119,105,110,118,109, 97,116, 44, 32,118,101, 99, 51, 32, 97, +116,116,111,114, 99,111, 44, 32,118,101, 99, 50, 32, 97,116,116,117,118, 44, 32,118,101, 99, 52, 32, 97,116,116,118, 99,111,108, + 44, 32,111,117,116, 32,118,101, 99, 51, 32,103,108,111, 98, 97,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,108,111, 99, 97, +108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,118,105,101,119, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,114, 99,111, 44, + 32,111,117,116, 32,118,101, 99, 51, 32,117,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,110,111,114,109, 97,108, 44, 32,111, +117,116, 32,118,101, 99, 52, 32,118, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,102,114,111,110,116, 98, 97, 99, +107, 41, 10,123, 10, 9,108,111, 99, 97,108, 32, 61, 32, 99,111, 59, 10, 9,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108, +105,122,101, 40,108,111, 99, 97,108, 41, 59, 10, 9,103,108,111, 98, 97,108, 32, 61, 32, 40,118,105,101,119,105,110,118,109, 97, +116, 42,118,101, 99, 52, 40,108,111, 99, 97,108, 44, 32, 49, 46, 48, 41, 41, 46,120,121,122, 59, 10, 9,111,114, 99,111, 32, 61, + 32, 97,116,116,111,114, 99,111, 59, 10, 9,117,118, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,117,118, 44, 32,117, +118, 41, 59, 10, 9,110,111,114,109, 97,108, 32, 61, 32, 45,110,111,114,109, 97,108,105,122,101, 40,110,111,114, 41, 59, 9, 47, + 42, 32, 98,108,101,110,100,101,114, 32,114,101,110,100,101,114, 32,110,111,114,109, 97,108, 32,105,115, 32,110,101,103, 97,116, +101,100, 32, 42, 47, 10, 9,118, 99,111,108, 95, 97,116,116,114,105, 98,117,116,101, 40, 97,116,116,118, 99,111,108, 44, 32,118, + 99,111,108, 41, 59, 10, 9,102,114,111,110,116, 98, 97, 99,107, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32, +109, 97,112,112,105,110,103, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,109, 97,116, 52, 32,109, 97,116, 44, 32,118,101, 99, 51, + 32,109,105,110,118,101, 99, 44, 32,118,101, 99, 51, 32,109, 97,120,118,101, 99, 44, 32,102,108,111, 97,116, 32,100,111,109,105, +110, 44, 32,102,108,111, 97,116, 32,100,111,109, 97,120, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, + 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 40,109, 97,116, 32, 42, 32,118,101, 99, 52, 40,118,101, 99, 44, 32, 49, 46, + 48, 41, 41, 46,120,121,122, 59, 10, 9,105,102, 40,100,111,109,105,110, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, +118,101, 99, 32, 61, 32,109, 97,120, 40,111,117,116,118,101, 99, 44, 32,109,105,110,118,101, 99, 41, 59, 10, 9,105,102, 40,100, +111,109, 97,120, 32, 61, 61, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116,118,101, 99, 32, 61, 32,109,105,110, 40,111,117,116,118, +101, 99, 44, 32,109, 97,120,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99, 97,109,101,114, 97, 40,118,101, 99, 51, + 32, 99,111, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,105,101,119, 44, 32,111,117,116, 32,102,108,111, 97,116, + 32,111,117,116,100,101,112,116,104, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,105,115,116, 41, 10,123, 10, + 9,111,117,116,100,101,112,116,104, 32, 61, 32, 97, 98,115, 40, 99,111, 46,122, 41, 59, 10, 9,111,117,116,100,105,115,116, 32, + 61, 32,108,101,110,103,116,104, 40, 99,111, 41, 59, 10, 9,111,117,116,118,105,101,119, 32, 61, 32,110,111,114,109, 97,108,105, +122,101, 40, 99,111, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,100,100, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, -108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 50, 32, 61, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, - 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 47, 32,118, - 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, -115,105,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 99,111,115,105,110,101, 40,102,108, -111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117, -116,118, 97,108, 32, 61, 32, 99,111,115, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,116, 97, -110,103,101,110,116, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, -108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,109, 97,116,104, 95, 97,115,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32, -111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, - 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115,105,110, 40,118, 97,108, 41, 59, 10, - 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97, -116,104, 95, 97, 99,111,115, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, -118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, - 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97, 99,111,115, 40,118, 97,108, 41, 59, 10, 9,101,108, -115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, - 97,116, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, - 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 97,116, 97,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, - 32,109, 97,116,104, 95,112,111,119, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 49, 32, - 62, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40,118, 97,108, 49, 44, 32,118, 97,108, - 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105, -100, 32,109, 97,116,104, 95,108,111,103, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, +108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 43, 32,118, 97,108, 50, 59, 10,125, 10, 10,118, +111,105,100, 32,109, 97,116,104, 95,115,117, 98,116,114, 97, 99,116, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108, +111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111, +117,116,118, 97,108, 32, 61, 32,118, 97,108, 49, 32, 45, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116, +104, 95,109,117,108,116,105,112,108,121, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, + 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, + 32,118, 97,108, 49, 32, 42, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,100,105,118,105,100, +101, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 50, 32, 61, 61, 32, 48, 46, 48, 41, 10, + 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, + 32,118, 97,108, 49, 32, 47, 32,118, 97,108, 50, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,115,105,110,101, 40, +102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, +111,117,116,118, 97,108, 32, 61, 32,115,105,110, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, + 99,111,115,105,110,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, + 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 99,111,115, 40,118, 97,108, 41, 59, 10,125, 10, 10,118,111,105, +100, 32,109, 97,116,104, 95,116, 97,110,103,101,110,116, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108, +111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,116, 97,110, 40,118, 97,108, 41, + 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97,115,105,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111, +117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, + 46, 48, 32, 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97,115, +105,110, 40,118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, + 10, 10,118,111,105,100, 32,109, 97,116,104, 95, 97, 99,111,115, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32, +102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 32, 40,118, 97,108, 32, 60, 61, 32, 49, 46, 48, 32, + 38, 38, 32,118, 97,108, 32, 62, 61, 32, 45, 49, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 97, 99,111,115, 40, +118, 97,108, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118, +111,105,100, 32,109, 97,116,104, 95, 97,116, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, + 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 97,116, 97,110, 40,118, 97,108, 41, + 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,112,111,119, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102, +108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, +105,102, 32, 40,118, 97,108, 49, 32, 62, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32,112,111,119, 40, +118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, + 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,111,103, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32, +102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, + 9,105,102, 40,118, 97,108, 49, 32, 62, 32, 48, 46, 48, 32, 32, 38, 38, 32,118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 10, 9, + 9,111,117,116,118, 97,108, 61, 32,108,111,103, 50, 40,118, 97,108, 49, 41, 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, + 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, + 97,116,104, 95,109, 97,120, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97, +120, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,105,110, 40, +102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109,105,110, 40,118, 97,108, 49, 44, 32, +118, 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,114,111,117,110,100, 40,102,108,111, 97,116, 32, +118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, + 61, 32,102,108,111,111,114, 40,118, 97,108, 32, 43, 32, 48, 46, 53, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, + 95,108,101,115,115, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, - 62, 32, 48, 46, 48, 32, 32, 38, 38, 32,118, 97,108, 50, 32, 62, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116,118, 97,108, 61, 32, -108,111,103, 50, 40,118, 97,108, 49, 41, 32, 47, 32,108,111,103, 50, 40,118, 97,108, 50, 41, 59, 10, 9,101,108,115,101, 10, 9, - 9,111,117,116,118, 97,108, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109, 97,120, 40,102, -108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109, 97,120, 40,118, 97,108, 49, 44, 32,118, - 97,108, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,109,105,110, 40,102,108,111, 97,116, 32,118, 97,108, - 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, - 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,109,105,110, 40,118, 97,108, 49, 44, 32,118, 97,108, 50, 41, 59, 10,125, 10, - 10,118,111,105,100, 32,109, 97,116,104, 95,114,111,117,110,100, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 61, 32,102,108,111,111,114, 40,118, - 97,108, 32, 43, 32, 48, 46, 53, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,108,101,115,115, 95,116,104, 97, -110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108, -111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 60, 32,118, 97,108, 50, 41, 10, 9, - 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, - 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,103,114,101, 97,116,101,114, 95,116,104, 97,110, 40,102, -108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, 97,108, 50, 41, 10, 9, 9,111,117, -116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, - 59, 10,125, 10, 10,118,111,105,100, 32,115,113,117,101,101,122,101, 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,102,108,111, - 97,116, 32,119,105,100,116,104, 44, 32,102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, 32,111,117,116, 32,102,108,111, 97, -116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 47, 40, 49, 46, 48, 32, 43, - 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, 45, 99,101,110,116,101,114, 41, 42, -119,105,100,116,104, 41, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,100,100, 40,118, -101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, - 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, -118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, 48, - 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, - 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,115,117, 98, 40, -118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, - 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, - 32,118, 49, 32, 45, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, 40,111,117,116,118,101, 99, 91, - 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, - 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 97,118,101, -114, 97,103,101, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32, -111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116, -118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40, -111,117,116,118,101, 99, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,111,117,116, -118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,100,111,116, 40,118,101, 99, 51, 32, -118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117, -116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118,101, 99, 51, - 40, 48, 44, 32, 48, 44, 32, 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111,116, 40,118, 49, 44, 32,118, 50, 41, - 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115,115, 40,118,101, 99, 51, 32,118, 49, - 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32, -102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32, 99,114,111,115,115, 40, -118, 49, 44, 32,118, 50, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, - 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114,109, 97,108,105,122,101, 40,118,101, - 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, - 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103,116,104, 40,118, 41, 59, 10, - 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 41, 59, 10,125, 10, 10,118,111,105,100, 32, -118,101, 99, 95,109, 97,116,104, 95,110,101,103, 97,116,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,111,117,116,118, 41, 10,123, 10, 9,111,117,116,118, 32, 61, 32, 45,118, 59, 10,125, 10, 10,118,111,105,100, 32,110,111,114, -109, 97,108, 40,118,101, 99, 51, 32,100,105,114, 44, 32,118,101, 99, 51, 32,110,111,114, 44, 32,111,117,116, 32,118,101, 99, 51, - 32,111,117,116,110,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100,111,116, 41, 10,123, 10, 9,111,117, -116,110,111,114, 32, 61, 32,100,105,114, 59, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45,100,111,116, 40,100,105,114, 44, 32, -110,111,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,118,101, 99, 40,118,101, 99, 51, 32,118,101, - 99, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 51, 32, -111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 46,120, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, - 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,120, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,120, 59, 10, - 9,111,117,116,118,101, 99, 46,121, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, - 40,118,101, 99, 46,121, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,121, 59, 10, 9,111,117,116,118,101, 99, 46,122, 32, - 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,122, 32, 43, 32, 49, - 46, 48, 41, 42, 48, 46, 53, 41, 46,122, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,114,103, 98, 40,118, -101, 99, 52, 32, 99,111,108, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32,111,117,116, - 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,101,120,116, -117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, - 97,112, 44, 32, 99,111,108, 46,114, 41, 46, 97, 41, 46,114, 59, 10, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,101,120, -116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101, -109, 97,112, 44, 32, 99,111,108, 46,103, 41, 46, 97, 41, 46,103, 59, 10, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,101, -120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118, -101,109, 97,112, 44, 32, 99,111,108, 46, 98, 41, 46, 97, 41, 46, 98, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99, -111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 40,102,108,111, 97,116, 32,118, 97, -108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, - 32,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 40,118,101, 99, 51, 32, 99,111,108, 44, 32, -111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, - 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,111,117,116, - 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, - 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 95,122,101,114,111, 40,111,117,116, 32,102,108,111, 97,116, 32, -111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, - 32,115,101,116, 95,118, 97,108,117,101, 95,111,110,101, 40,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, - 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, - 98, 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97, -108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 95, -122,101,114,111, 40,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, - 61, 32,118,101, 99, 52, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,108,101,110,100, 40,102, -108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, -111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, -102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111, -108, 49, 44, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, - 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 97,100,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118, + 60, 32,118, 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9, +111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,109, 97,116,104, 95,103,114,101, 97,116, +101,114, 95,116,104, 97,110, 40,102,108,111, 97,116, 32,118, 97,108, 49, 44, 32,102,108,111, 97,116, 32,118, 97,108, 50, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,105,102, 40,118, 97,108, 49, 32, 62, 32,118, + 97,108, 50, 41, 10, 9, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, +118, 97,108, 32, 61, 32, 48, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,115,113,117,101,101,122,101, 40,102,108,111, 97,116, + 32,118, 97,108, 44, 32,102,108,111, 97,116, 32,119,105,100,116,104, 44, 32,102,108,111, 97,116, 32, 99,101,110,116,101,114, 44, + 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, + 46, 48, 47, 40, 49, 46, 48, 32, 43, 32,112,111,119, 40, 50, 46, 55, 49, 56, 50, 56, 49, 56, 51, 44, 32, 45, 40, 40,118, 97,108, + 45, 99,101,110,116,101,114, 41, 42,119,105,100,116,104, 41, 41, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, + 97,116,104, 95, 97,100,100, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, + 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9, +111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98,115, + 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, 97, + 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95, +109, 97,116,104, 95,115,117, 98, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118, +101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, + 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 45, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 40, 97, 98, +115, 40,111,117,116,118,101, 99, 91, 48, 93, 41, 32, 43, 32, 97, 98,115, 40,111,117,116,118,101, 99, 91, 49, 93, 41, 32, 43, 32, + 97, 98,115, 40,111,117,116,118,101, 99, 91, 50, 93, 41, 41, 47, 51, 46, 48, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, + 95,109, 97,116,104, 95, 97,118,101,114, 97,103,101, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32, +111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97, +108, 41, 10,123, 10, 9,111,117,116,118,101, 99, 32, 61, 32,118, 49, 32, 43, 32,118, 50, 59, 10, 9,111,117,116,118, 97,108, 32, + 61, 32,108,101,110,103,116,104, 40,111,117,116,118,101, 99, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, + 97,108,105,122,101, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, +100,111,116, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111, +117,116,118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, +101, 99, 32, 61, 32,118,101, 99, 51, 40, 48, 44, 32, 48, 44, 32, 48, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,100,111, +116, 40,118, 49, 44, 32,118, 50, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95, 99,114,111,115, +115, 40,118,101, 99, 51, 32,118, 49, 44, 32,118,101, 99, 51, 32,118, 50, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, +118,101, 99, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118,101, 99, + 32, 61, 32, 99,114,111,115,115, 40,118, 49, 44, 32,118, 50, 41, 59, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101,110,103, +116,104, 40,111,117,116,118,101, 99, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,111,114, +109, 97,108,105,122,101, 40,118,101, 99, 51, 32,118, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 44, 32, +111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,108,101, +110,103,116,104, 40,118, 41, 59, 10, 9,111,117,116,118,101, 99, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,118, 41, 59, + 10,125, 10, 10,118,111,105,100, 32,118,101, 99, 95,109, 97,116,104, 95,110,101,103, 97,116,101, 40,118,101, 99, 51, 32,118, 44, + 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 41, 10,123, 10, 9,111,117,116,118, 32, 61, 32, 45,118, 59, 10,125, 10, + 10,118,111,105,100, 32,110,111,114,109, 97,108, 40,118,101, 99, 51, 32,100,105,114, 44, 32,118,101, 99, 51, 32,110,111,114, 44, + 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116,110,111,114, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,100, +111,116, 41, 10,123, 10, 9,111,117,116,110,111,114, 32, 61, 32,100,105,114, 59, 10, 9,111,117,116,100,111,116, 32, 61, 32, 45, +100,111,116, 40,100,105,114, 44, 32,110,111,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114,118,101,115, 95,118,101, + 99, 40,118,101, 99, 51, 32,118,101, 99, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118,101,109, 97,112, 44, 32, +111,117,116, 32,118,101, 99, 51, 32,111,117,116,118,101, 99, 41, 10,123, 10, 9,111,117,116,118,101, 99, 46,120, 32, 61, 32,116, +101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,120, 32, 43, 32, 49, 46, 48, 41, + 42, 48, 46, 53, 41, 46,120, 59, 10, 9,111,117,116,118,101, 99, 46,121, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99, +117,114,118,101,109, 97,112, 44, 32, 40,118,101, 99, 46,121, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,121, 59, 10, 9, +111,117,116,118,101, 99, 46,122, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 40, +118,101, 99, 46,122, 32, 43, 32, 49, 46, 48, 41, 42, 48, 46, 53, 41, 46,122, 59, 10,125, 10, 10,118,111,105,100, 32, 99,117,114, +118,101,115, 95,114,103, 98, 40,118,101, 99, 52, 32, 99,111,108, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,117,114,118, +101,109, 97,112, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, + 46,114, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114,101, + 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46,114, 41, 46, 97, 41, 46,114, 59, 10, 9,111,117,116, 99,111, +108, 46,103, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117,114, +101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46,103, 41, 46, 97, 41, 46,103, 59, 10, 9,111,117,116, 99, +111,108, 46, 98, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32,116,101,120,116,117, +114,101, 49, 68, 40, 99,117,114,118,101,109, 97,112, 44, 32, 99,111,108, 46, 98, 41, 46, 97, 41, 46, 98, 59, 10, 9,111,117,116, + 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, + 40,102,108,111, 97,116, 32,118, 97,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, + 9,111,117,116,118, 97,108, 32, 61, 32,118, 97,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 40,118, +101, 99, 51, 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 51, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, + 99,111,108, 32, 61, 32, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,114,103, 98, 97, 40,118,101, 99, 52, + 32, 99,111,108, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,111,117,116, 99,111,108, + 32, 61, 32, 99,111,108, 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 95,122,101,114,111, 40,111, +117,116, 32,102,108,111, 97,116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 48, 46, 48, + 59, 10,125, 10, 10,118,111,105,100, 32,115,101,116, 95,118, 97,108,117,101, 95,111,110,101, 40,111,117,116, 32,102,108,111, 97, +116, 32,111,117,116,118, 97,108, 41, 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32, 49, 46, 48, 59, 10,125, 10, 10,118,111, +105,100, 32,115,101,116, 95,114,103, 98, 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 51, 32,111,117,116,118, 97,108, 41, + 10,123, 10, 9,111,117,116,118, 97,108, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32, +115,101,116, 95,114,103, 98, 97, 95,122,101,114,111, 40,111,117,116, 32,118,101, 99, 52, 32,111,117,116,118, 97,108, 41, 10,123, + 10, 9,111,117,116,118, 97,108, 32, 61, 32,118,101, 99, 52, 40, 48, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105, +120, 95, 98,108,101,110,100, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, + 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, + 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, + 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, + 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 97,100,100, 40,102,108,111, + 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117, +116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, + 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, + 44, 32, 99,111,108, 49, 32, 43, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, + 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,109,117,108,116, 40,102,108,111, 97,116, 32, +102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118, +101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, + 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99, +111,108, 49, 32, 42, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111, +108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,102, + 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, + 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, + 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, + 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 52, 40, +102, 97, 99,109, 41, 32, 43, 32,102, 97, 99, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 50, 41, 41, 42, + 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, + 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,111,118,101,114,108, 97,121, 40,102,108,111, 97, +116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, + 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, + 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, + 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99, +111,108, 46,114, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, + 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, +114, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, + 32, 99,111,108, 50, 46,114, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, + 40,111,117,116, 99,111,108, 46,103, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 42, 61, 32,102, + 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117, +116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, + 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, + 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, + 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,101,108,115,101, + 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42, +102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111, +108, 46, 98, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115,117, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, + 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32, +111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, + 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, + 45, 32, 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, + 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,118, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, + 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99, +111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, + 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117, +116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, + 32,111,117,116, 99,111,108, 46,114, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99, 42, +111,117,116, 99,111,108, 46,114, 47, 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40, 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, + 46, 48, 41, 32,111,117,116, 99,111,108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, + 97, 99, 42,111,117,116, 99,111,108, 46,103, 47, 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 33, + 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, + 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46, 98, 47, 99,111,108, 50, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109, +105,120, 95,100,105,102,102, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, + 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, + 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, + 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 97, 98,115, 40, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, + 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, + 32,109,105,120, 95,100, 97,114,107, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32, +118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, + 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99, +111,108, 46,114,103, 98, 32, 61, 32,109,105,110, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42, +102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105, +100, 32,109,105,120, 95,108,105,103,104,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, + 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, + 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117, +116, 99,111,108, 46,114,103, 98, 32, 61, 32,109, 97,120, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, + 98, 42,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118, +111,105,100, 32,109,105,120, 95,100,111,100,103,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111, +108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10, +123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9, +111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 33, 61, 32, + 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99, +111,108, 50, 46,114, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111, +108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99, +111,108, 46,114, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, + 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 9,125, + 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32, +116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9, 9,105,102, 40,116,109,112, + 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108, +115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,103, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, + 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111, +117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 33, + 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, + 42, 99,111,108, 50, 46, 98, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, + 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117, +116, 99,111,108, 46, 98, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, + 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10, + 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 98,117,114,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118, 101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117, 116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, - 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 43, 32, - 99,111,108, 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, -125, 10, 10,118,111,105,100, 32,109,105,120, 95,109,117,108,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, - 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111, -108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, - 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 42, 32, 99,111,108, - 50, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10, -118,111,105,100, 32,109,105,120, 95,115, 99,114,101,101,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, - 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, - 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, - 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99, -111,108, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 40,118,101, 99, 52, 40,102, 97, 99,109, 41, 32, 43, 32,102, - 97, 99, 42, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 32, 45, 32, 99,111,108, 50, 41, 41, 42, 40,118,101, 99, 52, 40, 49, 46, 48, - 41, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, - 10, 10,118,111,105,100, 32,109,105,120, 95,111,118,101,114,108, 97,121, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, - 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, - 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, - 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111, -117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 60, 32, 48, 46, - 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, - 99,111,108, 50, 46,114, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 32, 45, - 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, 50, 46,114, 41, 41, - 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,103, - 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 42, 61, 32,102, 97, 99,109, 32, 43, 32, 50, 46, 48, - 42,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, - 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, 45, 32, 99,111,108, - 50, 46,103, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 59, 10, 10, 9,105,102, 40,111,117,116, - 99,111,108, 46, 98, 32, 60, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 42, 61, 32,102, 97, 99,109, 32, - 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, - 46, 98, 32, 61, 32, 49, 46, 48, 32, 45, 32, 40,102, 97, 99,109, 32, 43, 32, 50, 46, 48, 42,102, 97, 99, 42, 40, 49, 46, 48, 32, - 45, 32, 99,111,108, 50, 46, 98, 41, 41, 42, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 59, 10,125, 10, 10, -118,111,105,100, 32,109,105,120, 95,115,117, 98, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, - 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, - 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111, -117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111,108, 49, 44, 32, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 44, 32,102, - 97, 99, 41, 59, 10, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, - 32,109,105,120, 95,100,105,118, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118, -101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, - 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, - 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111, -108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111,108, 46,114, - 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,114, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, 46,114, 47, - 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40, 99,111,108, 50, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117,116, 99,111, -108, 46,103, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46,103, 32, 43, 32,102, 97, 99, 42,111,117,116, 99,111,108, - 46,103, 47, 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,111,117, -116, 99,111,108, 46, 98, 32, 61, 32,102, 97, 99,109, 42,111,117,116, 99,111,108, 46, 98, 32, 43, 32,102, 97, 99, 42,111,117,116, - 99,111,108, 46, 98, 47, 99,111,108, 50, 46, 98, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100,105,102,102, 40,102, -108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32, -111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40, -102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, 99,111, -108, 49, 44, 32, 97, 98,115, 40, 99,111,108, 49, 32, 45, 32, 99,111,108, 50, 41, 44, 32,102, 97, 99, 41, 59, 10, 9,111,117,116, - 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, 97,114,107, - 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, -112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, 61, 32, -109,105,110, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9,111,117, -116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,108,105,103, -104,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111, -108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, - 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 46,114,103, 98, 32, - 61, 32,109, 97,120, 40, 99,111,108, 49, 46,114,103, 98, 44, 32, 99,111,108, 50, 46,114,103, 98, 42,102, 97, 99, 41, 59, 10, 9, -111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,100, -111,100,103,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, + 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,116,109,112, 44, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, + 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, + 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, + 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, + 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 47,116,109,112, 41, 41, 32, 60, + 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, + 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101, +108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, + 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, + 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, + 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 47,116,109,112, 41, 41, + 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32, +105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, + 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32, +102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, + 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116, +109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 47,116,109,112, + 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115, +101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, + 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10,125, 10, 10,118,111,105, +100, 32,109,105,120, 95,104,117,101, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32, +118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, + 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97, +116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99, +111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, + 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, + 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32, +104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, 95,116,111, + 95,114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, + 40,111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, + 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, 97,116, 40,102,108,111, 97, +116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, + 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, + 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, + 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115, +118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, + 41, 59, 10, 10, 9,105,102, 40,104,115,118, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, + 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,102, 97, 99, +109, 42,104,115,118, 46,121, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114, +103, 98, 40,104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, +118, 97,108, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99, +111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99, +108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, + 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, + 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 49, 44, 32,104,115,118, 41, 59, 10, 9,114,103, 98, 95,116,111, 95, +104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,104,115,118, 46,122, 32, 61, 32,102, 97, 99,109, 42, +104,115,118, 46,122, 32, 43, 32,102, 97, 99, 42,104,115,118, 50, 46,122, 59, 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40, +104,115,118, 44, 32,111,117,116, 99,111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 99,111,108,111,114, 40, +102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, + 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, + 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, + 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, + 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111, +108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, + 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104,115, +118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,104,115,118, 50, 46,121, 59, 10, + 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99, +111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117, +116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, +115,111,102,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, - 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32, - 99,111,108, 49, 59, 10, 10, 9,105,102, 40,111,117,116, 99,111,108, 46,114, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9, -102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,114, 59, 10, 9, 9, -105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, - 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46,114, 47,116,109,112, 41, - 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115, -101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99, -111,108, 46,103, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, - 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46,103, 59, 10, 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, - 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109, -112, 32, 61, 32,111,117,116, 99,111,108, 46,103, 47,116,109,112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99, -111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101,108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, - 32,116,109,112, 59, 10, 9,125, 10, 9,105,102, 40,111,117,116, 99,111,108, 46, 98, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, - 9, 9,102,108,111, 97,116, 32,116,109,112, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 42, 99,111,108, 50, 46, 98, 59, 10, - 9, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, - 46, 48, 59, 10, 9, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32,111,117,116, 99,111,108, 46, 98, 47,116,109, -112, 41, 32, 62, 32, 49, 46, 48, 41, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9, 9,101, -108,115,101, 10, 9, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10, 9,125, 10,125, 10, 10,118,111,105, -100, 32,109,105,120, 95, 98,117,114,110, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, - 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9, -102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, - 97,116, 32,116,109,112, 44, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99, -111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, 99,111, -108, 50, 46,114, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, - 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, 32, 40, - 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,114, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, 9,111, -117,116, 99,111,108, 46,114, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, 49, 46, - 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,114, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, - 99,111,108, 46,114, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, 99, 42, - 99,111,108, 50, 46,103, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, - 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, 32, 45, - 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46,103, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, 10, 9, - 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, 62, 32, - 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, 9,111, -117,116, 99,111,108, 46,103, 32, 61, 32,116,109,112, 59, 10, 10, 9,116,109,112, 32, 61, 32,102, 97, 99,109, 32, 43, 32,102, 97, - 99, 42, 99,111,108, 50, 46, 98, 59, 10, 9,105,102, 40,116,109,112, 32, 60, 61, 32, 48, 46, 48, 41, 10, 9, 9,111,117,116, 99, -111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40, 40,116,109,112, 32, 61, 32, 40, 49, 46, 48, - 32, 45, 32, 40, 49, 46, 48, 32, 45, 32,111,117,116, 99,111,108, 46, 98, 41, 47,116,109,112, 41, 41, 32, 60, 32, 48, 46, 48, 41, - 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 48, 46, 48, 59, 10, 9,101,108,115,101, 32,105,102, 40,116,109,112, 32, - 62, 32, 49, 46, 48, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32, 49, 46, 48, 59, 10, 9,101,108,115,101, 10, 9, - 9,111,117,116, 99,111,108, 46, 98, 32, 61, 32,116,109,112, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,104,117,101, - 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, - 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109, -112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, - 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, - 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99, -111,108, 50, 44, 32,104,115,118, 50, 41, 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32, -123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104, -115,118, 46,120, 32, 61, 32,104,115,118, 50, 46,120, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, - 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40,111,117,116, 99,111,108, 44, 32, -116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, 99,111,108, 49, 46, 97, 59, 10, - 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,115, 97,116, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, - 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, - 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, - 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,111, -117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, - 9,114,103, 98, 95,116,111, 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 10, 9,105,102, 40,104, -115,118, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, - 44, 32,104,115,118, 50, 41, 59, 10, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,121, 32, 43, - 32,102, 97, 99, 42,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111, -117,116, 99,111,108, 41, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,118, 97,108, 40,102,108,111, 97,116, - 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32, -118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, - 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32, -102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115,118, 50, 59, 10, 9,114,103, 98, 95,116,111, 95,104, -115,118, 40, 99,111,108, 49, 44, 32,104,115,118, 41, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, - 32,104,115,118, 50, 41, 59, 10, 10, 9,104,115,118, 46,122, 32, 61, 32,102, 97, 99,109, 42,104,115,118, 46,122, 32, 43, 32,102, - 97, 99, 42,104,115,118, 50, 46,122, 59, 10, 9,104,115,118, 95,116,111, 95,114,103, 98, 40,104,115,118, 44, 32,111,117,116, 99, -111,108, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95, 99,111,108,111,114, 40,102,108,111, 97,116, 32,102, 97, 99, - 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99,111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, - 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, - 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99,109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, - 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, 99,111,108, 49, 59, 10, 10, 9,118,101, 99, 52, 32,104,115,118, 44, 32,104,115, -118, 50, 44, 32,116,109,112, 59, 10, 9,114,103, 98, 95,116,111, 95,104,115,118, 40, 99,111,108, 50, 44, 32,104,115,118, 50, 41, - 59, 10, 10, 9,105,102, 40,104,115,118, 50, 46,121, 32, 33, 61, 32, 48, 46, 48, 41, 32,123, 10, 9, 9,114,103, 98, 95,116,111, - 95,104,115,118, 40,111,117,116, 99,111,108, 44, 32,104,115,118, 41, 59, 10, 9, 9,104,115,118, 46,120, 32, 61, 32,104,115,118, - 50, 46,120, 59, 10, 9, 9,104,115,118, 46,121, 32, 61, 32,104,115,118, 50, 46,121, 59, 10, 9, 9,104,115,118, 95,116,111, 95, -114,103, 98, 40,104,115,118, 44, 32,116,109,112, 41, 59, 32, 10, 10, 9, 9,111,117,116, 99,111,108, 32, 61, 32,109,105,120, 40, -111,117,116, 99,111,108, 44, 32,116,109,112, 44, 32,102, 97, 99, 41, 59, 10, 9, 9,111,117,116, 99,111,108, 46, 97, 32, 61, 32, - 99,111,108, 49, 46, 97, 59, 10, 9,125, 10,125, 10, 10,118,111,105,100, 32,118, 97,108,116,111,114,103, 98, 40,102,108,111, 97, + 99,108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 9,102,108,111, 97,116, 32,102, 97, 99, +109, 32, 61, 32, 49, 46, 48, 32, 45, 32,102, 97, 99, 59, 10, 10, 9,118,101, 99, 52, 32,111,110,101, 61, 32,118,101, 99, 52, 40, + 49, 46, 48, 41, 59, 10, 9,118,101, 99, 52, 32,115, 99,114, 61, 32,111,110,101, 32, 45, 32, 40,111,110,101, 32, 45, 32, 99,111, +108, 50, 41, 42, 40,111,110,101, 32, 45, 32, 99,111,108, 49, 41, 59, 10, 9,111,117,116, 99,111,108, 32, 61, 32,102, 97, 99,109, + 42, 99,111,108, 49, 32, 43, 32,102, 97, 99, 42, 40, 40,111,110,101, 32, 45, 32, 99,111,108, 49, 41, 42, 99,111,108, 50, 42, 99, +111,108, 49, 32, 43, 32, 99,111,108, 49, 42,115, 99,114, 41, 59, 10,125, 10, 10,118,111,105,100, 32,109,105,120, 95,108,105,110, +101, 97,114, 40,102,108,111, 97,116, 32,102, 97, 99, 44, 32,118,101, 99, 52, 32, 99,111,108, 49, 44, 32,118,101, 99, 52, 32, 99, +111,108, 50, 44, 32,111,117,116, 32,118,101, 99, 52, 32,111,117,116, 99,111,108, 41, 10,123, 10, 9,102, 97, 99, 32, 61, 32, 99, +108, 97,109,112, 40,102, 97, 99, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 10, 10, 9,111,117,116, 99,111,108, 32, 61, 32, + 99,111,108, 49, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46,114, 32, 62, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111, +108, 46,114, 61, 32, 99,111,108, 49, 46,114, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,114, 32, 45, + 32, 48, 46, 53, 41, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,114, 61, 32, 99,111,108, 49, 46,114, + 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,114, 41, 32, 45, 32, 49, 46, 48, 41, 59, 10, 10, 9,105, +102, 40, 99,111,108, 50, 46,103, 32, 62, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46,103, 61, 32, 99,111,108, 49, + 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46,103, 32, 45, 32, 48, 46, 53, 41, 41, 59, 10, 9, +101,108,115,101, 10, 9, 9,111,117,116, 99,111,108, 46,103, 61, 32, 99,111,108, 49, 46,103, 32, 43, 32,102, 97, 99, 42, 40, 50, + 46, 48, 42, 40, 99,111,108, 50, 46,103, 41, 32, 45, 32, 49, 46, 48, 41, 59, 10, 10, 9,105,102, 40, 99,111,108, 50, 46, 98, 32, + 62, 32, 48, 46, 53, 41, 10, 9, 9,111,117,116, 99,111,108, 46, 98, 61, 32, 99,111,108, 49, 46, 98, 32, 43, 32,102, 97, 99, 42, + 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, 98, 32, 45, 32, 48, 46, 53, 41, 41, 59, 10, 9,101,108,115,101, 10, 9, 9,111,117, +116, 99,111,108, 46, 98, 61, 32, 99,111,108, 49, 46, 98, 32, 43, 32,102, 97, 99, 42, 40, 50, 46, 48, 42, 40, 99,111,108, 50, 46, + 98, 41, 32, 45, 32, 49, 46, 48, 41, 59, 10,125, 10, 10,118,111,105,100, 32,118, 97,108,116,111,114,103, 98, 40,102,108,111, 97, 116, 32,102, 97, 99, 44, 32,115, 97,109,112,108,101,114, 49, 68, 32, 99,111,108,111,114,109, 97,112, 44, 32,111,117,116, 32,118, 101, 99, 52, 32,111,117,116, 99,111,108, 44, 32,111,117,116, 32,102,108,111, 97,116, 32,111,117,116, 97,108,112,104, 97, 41, 10, 123, 10, 9,111,117,116, 99,111,108, 32, 61, 32,116,101,120,116,117,114,101, 49, 68, 40, 99,111,108,111,114,109, 97,112, 44, 32, diff --git a/source/blender/nodes/intern/SHD_nodes/SHD_mixRgb.c b/source/blender/nodes/intern/SHD_nodes/SHD_mixRgb.c index 2da1dee5623..560f9dc5128 100644 --- a/source/blender/nodes/intern/SHD_nodes/SHD_mixRgb.c +++ b/source/blender/nodes/intern/SHD_nodes/SHD_mixRgb.c @@ -65,7 +65,7 @@ static int gpu_shader_mix_rgb(GPUMaterial *mat, bNode *node, GPUNodeStack *in, G static char *names[] = {"mix_blend", "mix_add", "mix_mult", "mix_sub", "mix_screen", "mix_div", "mix_diff", "mix_dark", "mix_light", "mix_overlay", "mix_dodge", "mix_burn", "mix_hue", "mix_sat", - "mix_val", "mix_color"}; + "mix_val", "mix_color", "mix_soft", "mix_linear"}; return GPU_stack_link(mat, names[node->custom1], in, out); } From a84a59b64e5d7bfe3be4bcf5c41b6c481ecde880 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 12:13:32 +0000 Subject: [PATCH 061/412] Fix #19638: crash when assiging self in boolean modifier. Also: * UI now takes ID self check flag into account so that e.g. it doesn't offer to the make object it's own parent. * Mesh loop cuts number of cuts had wrong limits. * Don't use mesh_get_derived_final in modifier stack, but ob->derivedFinal instead. Avoids crashes on dependency loops, and in case there is no loop it should have been created. --- source/blender/blenkernel/intern/modifier.c | 6 +-- .../editors/interface/interface_layout.c | 6 ++- source/blender/editors/mesh/loopcut.c | 2 +- source/blender/makesrna/RNA_types.h | 1 - source/blender/makesrna/intern/rna_modifier.c | 51 ++++++++++--------- source/blender/makesrna/intern/rna_object.c | 2 +- 6 files changed, 36 insertions(+), 32 deletions(-) diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c index 532c3e5da73..c4de67014b4 100644 --- a/source/blender/blenkernel/intern/modifier.c +++ b/source/blender/blenkernel/intern/modifier.c @@ -1187,9 +1187,9 @@ static DerivedMesh *arrayModifier_doArray(ArrayModifierData *amd, /* need to avoid infinite recursion here */ if(amd->start_cap && amd->start_cap != ob) - start_cap = mesh_get_derived_final(scene, amd->start_cap, CD_MASK_MESH); + start_cap = amd->start_cap->derivedFinal; if(amd->end_cap && amd->end_cap != ob) - end_cap = mesh_get_derived_final(scene, amd->end_cap, CD_MASK_MESH); + end_cap = amd->end_cap->derivedFinal; Mat4One(offset); @@ -6356,7 +6356,7 @@ static DerivedMesh *booleanModifier_applyModifier( { // XXX doesn't handle derived data BooleanModifierData *bmd = (BooleanModifierData*) md; - DerivedMesh *dm = mesh_get_derived_final(md->scene, bmd->object, CD_MASK_BAREMESH); + DerivedMesh *dm = bmd->object->derivedFinal; /* we do a quick sanity check */ if(dm && (derivedData->getNumFaces(derivedData) > 3) diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 51458f75ed9..abe40e747c8 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -1054,10 +1054,14 @@ static void rna_search_cb(const struct bContext *C, void *arg_but, char *str, ui { uiBut *but= arg_but; char *name; - int i, iconid; + int i, iconid, flag= RNA_property_flag(but->rnaprop); i = 0; RNA_PROP_BEGIN(&but->rnasearchpoin, itemptr, but->rnasearchprop) { + if(flag & PROP_ID_SELF_CHECK) + if(itemptr.data == but->rnapoin.id.data) + continue; + iconid= 0; if(RNA_struct_is_ID(itemptr.type)) iconid= ui_id_icon_get((bContext*)C, itemptr.data); diff --git a/source/blender/editors/mesh/loopcut.c b/source/blender/editors/mesh/loopcut.c index 4ef25238a84..b7a37f74938 100644 --- a/source/blender/editors/mesh/loopcut.c +++ b/source/blender/editors/mesh/loopcut.c @@ -480,5 +480,5 @@ void MESH_OT_loopcut (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING; /* properties */ - RNA_def_int(ot->srna, "number_cuts", 1, 1, 10, "Number of Cuts", "", 1, INT_MAX); + RNA_def_int(ot->srna, "number_cuts", 1, 1, INT_MAX, "Number of Cuts", "", 1, 10); } diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h index 20160946ff3..5e29827270f 100644 --- a/source/blender/makesrna/RNA_types.h +++ b/source/blender/makesrna/RNA_types.h @@ -159,7 +159,6 @@ typedef enum PropertyFlag { /* disallow assigning a variable to its self, eg an object tracking its self * only apply this to types that are derived from an ID ()*/ PROP_ID_SELF_CHECK = 1<<20, - PROP_NEVER_NULL = 1<<18, /* internal flags */ diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 09d80e75a49..1be610ee392 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -331,72 +331,73 @@ static void rna_MultiresModifier_level_range(PointerRNA *ptr, int *min, int *max *max = mmd->totlvl; } -static void modifier_object_set(Object **ob_p, int type, PointerRNA value) +static void modifier_object_set(Object *self, Object **ob_p, int type, PointerRNA value) { Object *ob= value.data; - if(!ob || ob->type == type) - *ob_p= ob; + if(!self || ob != self) + if(!ob || ob->type == type) + *ob_p= ob; } static void rna_LatticeModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((LatticeModifierData*)ptr->data)->object, OB_LATTICE, value); + modifier_object_set(ptr->id.data, &((LatticeModifierData*)ptr->data)->object, OB_LATTICE, value); } static void rna_BooleanModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((BooleanModifierData*)ptr->data)->object, OB_MESH, value); + modifier_object_set(ptr->id.data, &((BooleanModifierData*)ptr->data)->object, OB_MESH, value); } static void rna_CurveModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((CurveModifierData*)ptr->data)->object, OB_CURVE, value); + modifier_object_set(ptr->id.data, &((CurveModifierData*)ptr->data)->object, OB_CURVE, value); } static void rna_CastModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((CastModifierData*)ptr->data)->object, OB_MESH, value); + modifier_object_set(ptr->id.data, &((CastModifierData*)ptr->data)->object, OB_MESH, value); } static void rna_ArmatureModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ArmatureModifierData*)ptr->data)->object, OB_ARMATURE, value); + modifier_object_set(ptr->id.data, &((ArmatureModifierData*)ptr->data)->object, OB_ARMATURE, value); } static void rna_MaskModifier_armature_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((MaskModifierData*)ptr->data)->ob_arm, OB_ARMATURE, value); + modifier_object_set(ptr->id.data, &((MaskModifierData*)ptr->data)->ob_arm, OB_ARMATURE, value); } static void rna_ShrinkwrapModifier_auxiliary_target_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ShrinkwrapModifierData*)ptr->data)->auxTarget, OB_MESH, value); + modifier_object_set(ptr->id.data, &((ShrinkwrapModifierData*)ptr->data)->auxTarget, OB_MESH, value); } static void rna_ShrinkwrapModifier_target_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ShrinkwrapModifierData*)ptr->data)->target, OB_MESH, value); + modifier_object_set(ptr->id.data, &((ShrinkwrapModifierData*)ptr->data)->target, OB_MESH, value); } static void rna_MeshDeformModifier_object_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((MeshDeformModifierData*)ptr->data)->object, OB_MESH, value); + modifier_object_set(ptr->id.data, &((MeshDeformModifierData*)ptr->data)->object, OB_MESH, value); } static void rna_ArrayModifier_end_cap_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ArrayModifierData*)ptr->data)->end_cap, OB_MESH, value); + modifier_object_set(ptr->id.data, &((ArrayModifierData*)ptr->data)->end_cap, OB_MESH, value); } static void rna_ArrayModifier_start_cap_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ArrayModifierData*)ptr->data)->start_cap, OB_MESH, value); + modifier_object_set(ptr->id.data, &((ArrayModifierData*)ptr->data)->start_cap, OB_MESH, value); } static void rna_ArrayModifier_curve_set(PointerRNA *ptr, PointerRNA value) { - modifier_object_set(&((ArrayModifierData*)ptr->data)->curve_ob, OB_CURVE, value); + modifier_object_set(ptr->id.data, &((ArrayModifierData*)ptr->data)->curve_ob, OB_CURVE, value); } static int rna_MeshDeformModifier_is_bound_get(PointerRNA *ptr) @@ -534,7 +535,7 @@ static void rna_def_modifier_lattice(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Lattice object to deform with."); RNA_def_property_pointer_funcs(prop, NULL, "rna_LatticeModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -566,7 +567,7 @@ static void rna_def_modifier_curve(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Curve object to deform with."); RNA_def_property_pointer_funcs(prop, NULL, "rna_CurveModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -667,7 +668,7 @@ static void rna_def_modifier_mirror(BlenderRNA *brna) prop= RNA_def_property(srna, "mirror_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "mirror_ob"); RNA_def_property_ui_text(prop, "Mirror Object", "Object to use as mirror."); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); } @@ -857,7 +858,7 @@ static void rna_def_modifier_armature(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Armature object to deform with."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ArmatureModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -920,7 +921,7 @@ static void rna_def_modifier_hook(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Parent Object for hook, also recalculates and clears offset"); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "subtarget", PROP_STRING, PROP_NONE); @@ -977,7 +978,7 @@ static void rna_def_modifier_boolean(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Mesh object to use for boolean operation."); RNA_def_property_pointer_funcs(prop, NULL, "rna_BooleanModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "operation", PROP_ENUM, PROP_NONE); @@ -1024,7 +1025,7 @@ static void rna_def_modifier_array(BlenderRNA *brna) RNA_def_property_pointer_sdna(prop, NULL, "curve_ob"); RNA_def_property_ui_text(prop, "Curve", "Curve object to fit array length to."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ArrayModifier_curve_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); /* Offset parameters */ @@ -1075,20 +1076,20 @@ static void rna_def_modifier_array(BlenderRNA *brna) prop= RNA_def_property(srna, "offset_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "offset_ob"); RNA_def_property_ui_text(prop, "Offset Object", ""); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); /* Caps */ prop= RNA_def_property(srna, "start_cap", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Start Cap", "Mesh object to use as a start cap."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ArrayModifier_start_cap_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_update"); prop= RNA_def_property(srna, "end_cap", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "End Cap", "Mesh object to use as an end cap."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ArrayModifier_end_cap_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); } diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 09e0ac3feac..1a78a2b9cd5 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -1178,7 +1178,7 @@ static void rna_def_object(BlenderRNA *brna) /* parent and track */ prop= RNA_def_property(srna, "parent", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_funcs(prop, NULL, "rna_Object_parent_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_ui_text(prop, "Parent", "Parent Object"); RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, "rna_Object_dependency_update"); From 666b480830a978044a7e36e5db0deff919c388a9 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 12:19:19 +0000 Subject: [PATCH 062/412] Fix #19646: changing collision bounds type in game physics was missing viewport redraw. --- source/blender/makesrna/intern/rna_object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 1a78a2b9cd5..1e8d5fa6351 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -1024,6 +1024,7 @@ static void rna_def_object_game_settings(BlenderRNA *brna) RNA_def_property_enum_sdna(prop, NULL, "boundtype"); RNA_def_property_enum_items(prop, collision_bounds_items); RNA_def_property_ui_text(prop, "Collision Bounds", "Selects the collision type."); + RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL); prop= RNA_def_property(srna, "collision_compound", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "gameflag", OB_CHILD); From 520e805dadc0b1dce10e9fb5efa1a22bbadcf2a4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 12:27:40 +0000 Subject: [PATCH 063/412] Make the sequencer Ctrl+RMB select all strips on the mouse side of the playhead (just like the dope sheet). Changes how selecting linked left/right work since this conflicts. rather then Ctrl for left and Alt for right, Just use Alt and select the side based on the handle selected. --- .../editors/space_sequencer/sequencer_ops.c | 15 ++++++- .../space_sequencer/sequencer_select.c | 45 ++++++++++++++----- 2 files changed, 48 insertions(+), 12 deletions(-) diff --git a/source/blender/editors/space_sequencer/sequencer_ops.c b/source/blender/editors/space_sequencer/sequencer_ops.c index eedbab779c0..58ac143d349 100644 --- a/source/blender/editors/space_sequencer/sequencer_ops.c +++ b/source/blender/editors/space_sequencer/sequencer_ops.c @@ -146,6 +146,9 @@ void sequencer_keymap(wmKeyConfig *keyconf) /* Mouse selection, a bit verbose :/ */ WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); RNA_boolean_set(WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_SHIFT, 0)->ptr, "extend", 1); + + /* 2.4x method, now use Alt for handles and select the side based on which handle was selected */ + /* RNA_boolean_set(WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_CTRL, 0)->ptr, "linked_left", 1); RNA_boolean_set(WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_ALT, 0)->ptr, "linked_right", 1); @@ -165,8 +168,18 @@ void sequencer_keymap(wmKeyConfig *keyconf) kmi= WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_SHIFT|KM_ALT, 0); RNA_boolean_set(kmi->ptr, "extend", 1); RNA_boolean_set(kmi->ptr, "linked_right", 1); + */ - + /* 2.5 method, Alt and use selected handle */ + RNA_boolean_set(WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_ALT, 0)->ptr, "linked_handle", 1); + + kmi= WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_SHIFT|KM_ALT, 0); + RNA_boolean_set(kmi->ptr, "extend", 1); + RNA_boolean_set(kmi->ptr, "linked_handle", 1); + + /* match action editor */ + RNA_boolean_set(WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, KM_CTRL, 0)->ptr, "left_right", 1); + /* adjusted since 2.4 */ WM_keymap_add_item(keymap, "SEQUENCER_OT_select_more", PADPLUSKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "SEQUENCER_OT_select_less", PADMINUS, KM_PRESS, KM_CTRL, 0); diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index e03cb6ddc94..fc33dc139b6 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -291,8 +291,8 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, FALSE); short extend= RNA_boolean_get(op->ptr, "extend"); - short linked_left= RNA_boolean_get(op->ptr, "linked_left"); - short linked_right= RNA_boolean_get(op->ptr, "linked_right"); + short linked_handle= RNA_boolean_get(op->ptr, "linked_handle"); + short left_right= RNA_boolean_get(op->ptr, "left_right"); short mval[2]; @@ -323,12 +323,34 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) marker->flag |= SELECT; } + } else if (left_right) { + /* use different logic for this */ + float x; + deselect_all_seq(scene); + UI_view2d_region_to_view(v2d, mval[0], mval[1], &x, NULL); + + SEQP_BEGIN(ed, seq) { + if (x < CFRA) { + if(seq->enddisp < CFRA) { + seq->flag |= SELECT; + recurs_sel_seq(seq); + } + } + else { + if(seq->startdisp > CFRA) { + seq->flag |= SELECT; + recurs_sel_seq(seq); + } + } + + } + SEQ_END } else { seq= find_nearest_seq(scene, v2d, &hand, mval); act_orig= ed->act_seq; - if(extend == 0 && linked_left==0 && linked_right==0) + if(extend == 0 && linked_handle==0) deselect_all_seq(scene); if(seq) { @@ -348,7 +370,7 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) if(extend && (seq->flag & SELECT) && ed->act_seq == act_orig ) { switch(hand) { case SEQ_SIDE_NONE: - if (linked_left==0 && linked_right==0) + if (linked_handle==0) seq->flag &= SEQ_DESEL; break; case SEQ_SIDE_LEFT: @@ -365,19 +387,19 @@ static int sequencer_select_invoke(bContext *C, wmOperator *op, wmEvent *event) if(hand==SEQ_SIDE_RIGHT) seq->flag |= SEQ_RIGHTSEL; } - /* On Ctrl-Alt selection, select the strip and bordering handles */ - if (linked_left && linked_right) { + /* On Alt selection, select the strip and bordering handles */ + if (linked_handle && !ELEM(hand, SEQ_SIDE_LEFT, SEQ_SIDE_RIGHT)) { if(extend==0) deselect_all_seq(scene); seq->flag |= SELECT; select_surrounding_handles(scene, seq); } - else if ((linked_left || linked_right) && (seq->flag & SELECT)) { + else if (linked_handle && ELEM(hand, SEQ_SIDE_LEFT, SEQ_SIDE_RIGHT) && (seq->flag & SELECT)) { /* * First click selects adjacent handles on that side. * Second click selects all strips in that direction. * If there are no adjacent strips, it just selects all in that direction. */ - sel_side= linked_left ? SEQ_SIDE_LEFT:SEQ_SIDE_RIGHT; + sel_side= hand; neighbor=find_neighboring_sequence(scene, seq, sel_side, -1); if (neighbor) { switch (sel_side) { @@ -461,9 +483,10 @@ void SEQUENCER_OT_select(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ - RNA_def_boolean(ot->srna, "extend", 0, "Extend", "extend the selection"); - RNA_def_boolean(ot->srna, "linked_left", 0, "Linked Left", "Select strips to the left of the active strip"); - RNA_def_boolean(ot->srna, "linked_right", 0, "Linked Right", "Select strips to the right of the active strip"); + RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend the selection."); + RNA_def_boolean(ot->srna, "linked_handle", 0, "Linked Handle", "Select handles next to the active strip."); + /* for animation this is an enum but atm having an enum isnt useful for us */ + RNA_def_boolean(ot->srna, "left_right", 0, "Left/Right", "select based on the frame side the cursor is on."); } From 4c6b66132ee6357160d1e7015e095e6c58c7dc15 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 13:09:13 +0000 Subject: [PATCH 064/412] use the meshes mirror flag for weight painting --- source/blender/editors/armature/poseobject.c | 2 +- source/blender/editors/sculpt_paint/paint_vertex.c | 8 ++++---- source/blender/makesdna/DNA_scene_types.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/armature/poseobject.c b/source/blender/editors/armature/poseobject.c index 57fe083b319..331bd6fa28f 100644 --- a/source/blender/editors/armature/poseobject.c +++ b/source/blender/editors/armature/poseobject.c @@ -1154,7 +1154,7 @@ void pose_adds_vgroups(Scene *scene, Object *meshobj, int heatweights) return; } -// XXX add_verts_to_dgroups(meshobj, poseobj, heatweights, (Gwp.flag & VP_MIRROR_X)); +// XXX add_verts_to_dgroups(meshobj, poseobj, heatweights, ((Mesh *)(meshobj->data))->editflag & ME_EDIT_MIRROR_X); if(heatweights) BIF_undo_push("Apply Bone Heat Weights to Vertex Groups"); diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 5afc4954c9c..65893a9ede8 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -394,7 +394,7 @@ void clear_wpaint_selectedfaces(Scene *scene) /* directly copied from weight_paint, should probaby split into a seperate function */ /* if mirror painting, find the other group */ - if(wp->flag & VP_MIRROR_X) { + if(me->editflag & ME_EDIT_MIRROR_X) { bDeformGroup *defgroup= BLI_findlink(&ob->defbase, ob->actdef-1); if(defgroup) { bDeformGroup *curdef; @@ -437,7 +437,7 @@ void clear_wpaint_selectedfaces(Scene *scene) uw->weight= dw->weight; /* set the undo weight */ dw->weight= paintweight; - if(wp->flag & VP_MIRROR_X) { /* x mirror painting */ + if(me->editflag & ME_EDIT_MIRROR_X) { /* x mirror painting */ int j= mesh_get_x_mirror_vert(ob, faceverts[i]); if(j>=0) { /* copy, not paint again */ @@ -1009,7 +1009,7 @@ static void do_weight_paint_vertex(VPaint *wp, Object *ob, int index, int alpha, wpaint_blend(wp, dw, uw, (float)alpha/255.0, paintweight); - if(wp->flag & VP_MIRROR_X) { /* x mirror painting */ + if(me->editflag & ME_EDIT_MIRROR_X) { /* x mirror painting */ int j= mesh_get_x_mirror_vert(ob, index); if(j>=0) { /* copy, not paint again */ @@ -1284,7 +1284,7 @@ static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *event) Mat3CpyMat4(wpd->wpimat, imat); /* if mirror painting, find the other group */ - if(wp->flag & VP_MIRROR_X) { + if(me->editflag & ME_EDIT_MIRROR_X) { bDeformGroup *defgroup= BLI_findlink(&ob->defbase, ob->actdef-1); if(defgroup) { bDeformGroup *curdef; diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 91f8e8d5c41..38342be689a 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -556,7 +556,7 @@ typedef struct VPaint { #define VP_SOFT 4 #define VP_NORMALS 8 #define VP_SPRAY 16 -#define VP_MIRROR_X 32 +// #define VP_MIRROR_X 32 // depricated in 2.5x use (me->editflag & ME_EDIT_MIRROR_X) #define VP_HARD 64 #define VP_ONLYVGROUP 128 From 60c50dda70cb8354660e92775033086d43a2ce3b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 13:09:24 +0000 Subject: [PATCH 065/412] Fix #19678: full sample / save buffers was crashing due to two issues: * Nested write lock on render results. * RayHits pass was always enabled, commented it out now. --- source/blender/render/intern/source/pipeline.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c index 52adecde58e..5dcfb12a080 100644 --- a/source/blender/render/intern/source/pipeline.c +++ b/source/blender/render/intern/source/pipeline.c @@ -416,7 +416,7 @@ static int passtype_from_name(char *str) if(strcmp(str, "Mist")==0) return SCE_PASS_MIST; - if(strcmp(str, "RAYHITS")==0) + if(strcmp(str, "RayHits")==0) return SCE_PASS_RAYHITS; return 0; } @@ -545,7 +545,7 @@ static RenderResult *new_render_result(Render *re, rcti *partrct, int crop, int rl->lay= srl->lay; rl->lay_zmask= srl->lay_zmask; rl->layflag= srl->layflag; - rl->passflag= srl->passflag | SCE_PASS_RAYHITS; + rl->passflag= srl->passflag; // for debugging: srl->passflag|SCE_PASS_RAYHITS; rl->pass_xor= srl->pass_xor; rl->light_override= srl->light_override; rl->mat_override= srl->mat_override; @@ -589,7 +589,7 @@ static RenderResult *new_render_result(Render *re, rcti *partrct, int crop, int render_layer_add_pass(rr, rl, 1, SCE_PASS_INDEXOB); if(srl->passflag & SCE_PASS_MIST) render_layer_add_pass(rr, rl, 1, SCE_PASS_MIST); - if(rl->passflag & SCE_PASS_RAYHITS) + if(rl->passflag & SCE_PASS_RAYHITS) render_layer_add_pass(rr, rl, 4, SCE_PASS_RAYHITS); } @@ -1704,11 +1704,10 @@ static void threaded_tile_processor(Render *re) } - BLI_rw_mutex_lock(&re->resultmutex, THREAD_LOCK_WRITE); - if(re->result->exrhandle) { RenderResult *rr; + BLI_rw_mutex_lock(&re->resultmutex, THREAD_LOCK_WRITE); save_empty_result_tiles(re); for(rr= re->result; rr; rr= rr->next) { @@ -1718,11 +1717,11 @@ static void threaded_tile_processor(Render *re) free_render_result(&re->fullresult, re->result); re->result= NULL; + + BLI_rw_mutex_unlock(&re->resultmutex); read_render_result(re, 0); } - - BLI_rw_mutex_unlock(&re->resultmutex); /* unset threadsafety */ g_break= 0; From 2d0f3274bd8625a22d39f506bbc707084622244d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 13:17:47 +0000 Subject: [PATCH 066/412] Fix #19588: duplicating objects with particle systems would crash. Also an unrelated warning fix. --- source/blender/blenkernel/intern/key.c | 2 +- source/blender/blenkernel/intern/object.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c index 3fffdef478b..0f0f63a668b 100644 --- a/source/blender/blenkernel/intern/key.c +++ b/source/blender/blenkernel/intern/key.c @@ -1505,7 +1505,7 @@ char *key_get_curValue_rnaPath(Key *key, KeyBlock *kb) return NULL; /* create the RNA pointer */ - RNA_pointer_create(key, &RNA_ShapeKey, kb, &ptr); + RNA_pointer_create(&key->id, &RNA_ShapeKey, kb, &ptr); /* get pointer to the property too */ prop= RNA_struct_find_property(&ptr, "value"); diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c index eb5beb734a1..5dcfa63e667 100644 --- a/source/blender/blenkernel/intern/object.c +++ b/source/blender/blenkernel/intern/object.c @@ -1133,6 +1133,7 @@ ParticleSystem *copy_particlesystem(ParticleSystem *psys) psysn->pathcache= NULL; psysn->childcache= NULL; psysn->edit= NULL; + psysn->pdd= NULL; psysn->pathcachebufs.first = psysn->pathcachebufs.last = NULL; psysn->childcachebufs.first = psysn->childcachebufs.last = NULL; From 596d25773a41e801637c2427878ece81aa7bfb2b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 13:21:37 +0000 Subject: [PATCH 067/412] Another fix for duplicating objects with particles. --- source/blender/blenkernel/intern/object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c index 5dcfa63e667..ba8d41f54bb 100644 --- a/source/blender/blenkernel/intern/object.c +++ b/source/blender/blenkernel/intern/object.c @@ -1133,6 +1133,7 @@ ParticleSystem *copy_particlesystem(ParticleSystem *psys) psysn->pathcache= NULL; psysn->childcache= NULL; psysn->edit= NULL; + psysn->frand= NULL; psysn->pdd= NULL; psysn->pathcachebufs.first = psysn->pathcachebufs.last = NULL; From c3f18a2d7364140097d4dd3edc608d5161afdf27 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 19 Oct 2009 13:24:18 +0000 Subject: [PATCH 068/412] Moved some tool settings (mirror, auto-IK) to the tools pane. --- release/scripts/ui/buttons_data_armature.py | 3 - release/scripts/ui/buttons_data_mesh.py | 3 - release/scripts/ui/space_view3d_toolbar.py | 112 +++++++++++++------- 3 files changed, 71 insertions(+), 47 deletions(-) diff --git a/release/scripts/ui/buttons_data_armature.py b/release/scripts/ui/buttons_data_armature.py index bbec295a165..0fb00b03961 100644 --- a/release/scripts/ui/buttons_data_armature.py +++ b/release/scripts/ui/buttons_data_armature.py @@ -47,9 +47,6 @@ class DATA_PT_skeleton(DataButtonsPanel): col.itemR(arm, "layer", text="") col.itemL(text="Protected Layers:") col.itemR(arm, "layer_protection", text="") - col.itemL(text="Edit Options:") - col.itemR(arm, "x_axis_mirror") - col.itemR(arm, "auto_ik") col = split.column() col.itemL(text="Deform:") diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 35d0ecafdf1..76c66f7aece 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -60,9 +60,6 @@ class DATA_PT_settings(DataButtonsPanel): col = split.column() col.itemR(mesh, "texture_mesh") - - col = split.column() - col.itemR(mesh, "use_mirror_x") class DATA_PT_vertex_groups(DataButtonsPanel): __label__ = "Vertex Groups" diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index a72caec5e9f..9bdd25da3e1 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -38,11 +38,11 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): col.itemO("anim.insert_keyframe_menu", text="Insert") col.itemO("anim.delete_keyframe_v3d", text="Remove") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -91,17 +91,29 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("mesh.uvs_rotate") col.itemO("mesh.uvs_mirror") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") col.itemO("screen.repeat_last") col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + +class VIEW3D_PT_tools_mesheditoptions(View3DPanel): + __context__ = "mesh_edit" + __label__ = "Mesh Options" + + def draw(self, context): + layout = self.layout + + mesh = context.active_object.data + + col = layout.column(align=True) + col.itemR(mesh, "use_mirror_x") # ********** default tools for editmode_curve **************** @@ -138,11 +150,11 @@ class VIEW3D_PT_tools_curveedit(View3DPanel): col.itemO("curve.extrude") col.itemO("curve.subdivide") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -177,11 +189,11 @@ class VIEW3D_PT_tools_surfaceedit(View3DPanel): col.itemO("curve.extrude") col.itemO("curve.subdivide") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -240,17 +252,20 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col.itemL(text="Modeling:") col.itemO("armature.extrude") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") col.itemO("screen.repeat_last") col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + + + # ********** default tools for editmode_mball **************** @@ -267,11 +282,11 @@ class VIEW3D_PT_tools_mballedit(View3DPanel): col.itemO("tfm.rotate") col.itemO("tfm.resize", text="Scale") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -294,11 +309,11 @@ class VIEW3D_PT_tools_latticeedit(View3DPanel): col.itemO("tfm.rotate") col.itemO("tfm.resize", text="Scale") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -344,17 +359,30 @@ class VIEW3D_PT_tools_posemode(View3DPanel): col.itemO("pose.push", text="Push") col.itemO("pose.breakdown", text="Breakdowner") - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") +# col = layout.column(align=True) +# col.itemL(text="Grease Pencil:") +# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") +# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") +# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") col.itemO("screen.repeat_last") col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + +class VIEW3D_PT_tools_posemode_options(View3DPanel): + __context__ = "posemode" + __label__ = "Pose Options" + + def draw(self, context): + layout = self.layout + + arm = context.active_object.data + + col = layout.column(align=True) + col.itemR(arm, "x_axis_mirror") + col.itemR(arm, "auto_ik") # ********** default tools for paint modes **************** @@ -449,7 +477,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): col.row().itemR(brush, "direction", expand=True) if brush.sculpt_tool == 'LAYER': - col.itemR(brush, "use_persistent") + col.itemR(brush, "persistent") col.itemO("sculpt.set_persistent_base") # Texture Paint Mode # @@ -775,6 +803,7 @@ class VIEW3D_PT_tools_particlemode(View3DPanel): bpy.types.register(VIEW3D_PT_tools_objectmode) bpy.types.register(VIEW3D_PT_tools_meshedit) +bpy.types.register(VIEW3D_PT_tools_mesheditoptions) bpy.types.register(VIEW3D_PT_tools_curveedit) bpy.types.register(VIEW3D_PT_tools_surfaceedit) bpy.types.register(VIEW3D_PT_tools_textedit) @@ -782,6 +811,7 @@ bpy.types.register(VIEW3D_PT_tools_armatureedit) bpy.types.register(VIEW3D_PT_tools_mballedit) bpy.types.register(VIEW3D_PT_tools_latticeedit) bpy.types.register(VIEW3D_PT_tools_posemode) +bpy.types.register(VIEW3D_PT_tools_posemode_options) bpy.types.register(VIEW3D_PT_tools_brush) bpy.types.register(VIEW3D_PT_tools_brush_stroke) bpy.types.register(VIEW3D_PT_tools_brush_curve) From 51f11abe45097cbba59626ede06c3832bcc522e2 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 13:41:02 +0000 Subject: [PATCH 069/412] Fix #19605: material hardness was wrapped as float while it is an int, which made number buttons not increase the value on clicking the arrows. --- source/blender/makesrna/intern/rna_material.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c index 3ddbb937b5b..d0aa4e4439c 100644 --- a/source/blender/makesrna/intern/rna_material.c +++ b/source/blender/makesrna/intern/rna_material.c @@ -1338,8 +1338,8 @@ static void rna_def_material_specularity(StructRNA *srna) * multiple times, which may give somewhat strange changes in the outliner, * but in the UI they are never visible at the same time. */ - prop= RNA_def_property(srna, "specular_hardness", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "har"); + prop= RNA_def_property(srna, "specular_hardness", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "har"); RNA_def_property_range(prop, 1, 511); RNA_def_property_ui_text(prop, "Specular Hardness", ""); RNA_def_property_update(prop, 0, "rna_Material_update"); From dd96bf6168b60639701dd0ff512806e3fe1b65d0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 14:03:02 +0000 Subject: [PATCH 070/412] - added xmirror to the weightpaint options - made texture_slot return the texture slot for the node texture --- release/scripts/ui/buttons_texture.py | 4 ++++ release/scripts/ui/space_view3d_toolbar.py | 5 +++++ source/blender/blenkernel/BKE_material.h | 1 + source/blender/blenkernel/intern/material.c | 12 ++++++++++++ .../blender/editors/interface/interface_icons.c | 2 ++ .../editors/space_buttons/buttons_context.c | 4 +++- source/blender/makesrna/intern/rna_material.c | 16 +++------------- 7 files changed, 30 insertions(+), 14 deletions(-) diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 4e4fbd2bc25..30262ea3415 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -219,8 +219,12 @@ class TEXTURE_PT_mapping(TextureSlotPanel): class TEXTURE_PT_influence(TextureSlotPanel): __label__ = "Influence" + def poll(self, context): + return 1 + def draw(self, context): + layout = self.layout idblock = context_tex_datablock(context) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 9bdd25da3e1..f354a3314f2 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -650,6 +650,11 @@ class VIEW3D_PT_tools_weightpaint(View3DPanel): col.itemR(wpaint, "normals") col.itemR(wpaint, "spray") col.itemR(wpaint, "vertex_dist", text="Distance") + + + data = context.weight_paint_object.data + if type(data) == bpy.types.Mesh: + col.itemR(data, "use_mirror_x") # Commented out because the Apply button isn't an operator yet, making these settings useless # col.itemL(text="Gamma:") diff --git a/source/blender/blenkernel/BKE_material.h b/source/blender/blenkernel/BKE_material.h index 85316dddedf..3ea7cae2c86 100644 --- a/source/blender/blenkernel/BKE_material.h +++ b/source/blender/blenkernel/BKE_material.h @@ -47,6 +47,7 @@ void test_object_materials(struct ID *id); void init_material(struct Material *ma); struct Material *add_material(char *name); struct Material *copy_material(struct Material *ma); +struct Material *give_node_material(struct Material *ma); /* returns node material or self */ void make_local_material(struct Material *ma); void automatname(struct Material *); diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c index ab700ab283c..c2260e1e761 100644 --- a/source/blender/blenkernel/intern/material.c +++ b/source/blender/blenkernel/intern/material.c @@ -485,6 +485,18 @@ ID *material_from(Object *ob, int act) else return ob->data; } +Material *give_node_material(Material *ma) +{ + if(ma && ma->use_nodes && ma->nodetree) { + bNode *node= nodeGetActiveID(ma->nodetree, ID_MA); + + if(node) + return (Material *)node->id; + } + + return NULL; +} + /* GS reads the memory pointed at in a specific ordering. There are, * however two definitions for it. I have jotted them down here, both, * but I think the first one is actually used. The thing is that diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c index 7648c9412b7..ad96796213d 100644 --- a/source/blender/editors/interface/interface_icons.c +++ b/source/blender/editors/interface/interface_icons.c @@ -38,6 +38,8 @@ #endif #include "MEM_guardedalloc.h" +#include "GPU_extensions.h" + #include "BLI_arithb.h" #include "BLI_blenlib.h" #include "BLI_storage_types.h" diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index 504e4a6866e..bc0cc536857 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -622,7 +622,9 @@ int buttons_context(const bContext *C, const char *member, bContextDataResult *r PointerRNA *ptr; if((ptr=get_pointer_type(path, &RNA_Material))) { - Material *ma= ptr->data; + Material *ma= ptr->data; /* should this be made a different option? */ + Material *ma_node= give_node_material(ma); + ma= ma_node?ma_node:ma; if(ma) CTX_data_pointer_set(result, &ma->id, &RNA_MaterialTextureSlot, ma->mtex[(int)ma->texact]); diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c index d0aa4e4439c..fbecf2b5f07 100644 --- a/source/blender/makesrna/intern/rna_material.c +++ b/source/blender/makesrna/intern/rna_material.c @@ -58,6 +58,7 @@ static EnumPropertyItem prop_texture_coordinates_items[] = { #include "BKE_depsgraph.h" #include "BKE_main.h" +#include "BKE_material.h" #include "BKE_texture.h" #include "BKE_node.h" @@ -143,19 +144,8 @@ static void rna_Material_active_texture_set(PointerRNA *ptr, PointerRNA value) static PointerRNA rna_Material_active_node_material_get(PointerRNA *ptr) { - Material *ma= (Material*)ptr->data; - Material *ma_node= NULL; - - /* used in buttons to check context, also checks for edited groups */ - - if(ma && ma->use_nodes && ma->nodetree) { - bNode *node= nodeGetActiveID(ma->nodetree, ID_MA); - - if(node) - ma_node= (Material *)node->id; - } - - return rna_pointer_inherit_refine(ptr, &RNA_Material, ma_node); + Material *ma= give_node_material((Material*)ptr->data); + return rna_pointer_inherit_refine(ptr, &RNA_Material, ma); } static void rna_Material_active_node_material_set(PointerRNA *ptr, PointerRNA value) From 652ea9ee303143a1bf5a457d1842c0878e36932f Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 14:10:37 +0000 Subject: [PATCH 071/412] Fix #19627: previews in materials nodes were not cleared before re-render. --- source/blender/blenkernel/intern/node.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c index 1a89de7e8d6..2776444c8a0 100644 --- a/source/blender/blenkernel/intern/node.c +++ b/source/blender/blenkernel/intern/node.c @@ -1198,6 +1198,8 @@ static void node_init_preview(bNode *node, int xsize, int ysize) node->preview->xsize= xsize; node->preview->ysize= ysize; } + else + memset(node->preview->rect, 0, 4*xsize + xsize*ysize*sizeof(float)*4); } void ntreeInitPreview(bNodeTree *ntree, int xsize, int ysize) From 54abd775d33ef35a217bb26413341c67fc638fed Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 14:32:32 +0000 Subject: [PATCH 072/412] Fix #19604: defocus node was not using camera object yet. Could use a proper fix, but for now this makes things work again. --- source/blender/blenloader/intern/readfile.c | 2 +- source/blender/nodes/intern/CMP_nodes/CMP_defocus.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 448eb834818..761fc8b079a 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -4119,7 +4119,7 @@ static void composite_patch(bNodeTree *ntree, Scene *scene) bNode *node; for(node= ntree->nodes.first; node; node= node->next) - if(node->id==NULL && ELEM(node->type, CMP_NODE_R_LAYERS, CMP_NODE_COMPOSITE)) + if(node->id==NULL && ELEM3(node->type, CMP_NODE_R_LAYERS, CMP_NODE_COMPOSITE, CMP_NODE_DEFOCUS)) node->id= &scene->id; } diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_defocus.c b/source/blender/nodes/intern/CMP_nodes/CMP_defocus.c index b9a4f4c0cc5..0b0df4634a0 100644 --- a/source/blender/nodes/intern/CMP_nodes/CMP_defocus.c +++ b/source/blender/nodes/intern/CMP_nodes/CMP_defocus.c @@ -253,7 +253,8 @@ static void defocus_blur(bNode *node, CompBuf *new, CompBuf *img, CompBuf *zbuf, // get some required params from the current scene camera // (ton) this is wrong, needs fixed - Object* camob = NULL; // XXX G.scene->camera; + Scene *scene= (Scene*)node->id; + Object* camob = (scene)? scene->camera: NULL; if (camob && camob->type==OB_CAMERA) { Camera* cam = (Camera*)camob->data; cam_lens = cam->lens; From 8d7c69ffa922d4d360b1eabe114e0f8e0e6a28e2 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 19 Oct 2009 14:38:19 +0000 Subject: [PATCH 073/412] CMake files update to allow use of MAC OSX 10.5 libs (and build 64bit blender on mac) The WITH_LIBS10.5 option switches the use of the libs included in the darwin-9.x.universal folder Use the CMAKE_OSX_ARCHITECTURES variable to set the architecture you want to build for (e.g. i386, x86_64). Only one at a time, this value is used to select the python_?.zip that is bundled with the app. WITH_COCOA (build Cocoa ghost and not Carbon) is now on by default. --- CMakeLists.txt | 34 ++++++++++++++++++++-------------- source/creator/CMakeLists.txt | 7 ++++++- 2 files changed, 26 insertions(+), 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d53f4ed9966..55d5956783c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,7 +82,8 @@ OPTION(WITH_BUILDINFO "Include extra build details" ON) OPTION(WITH_INSTALL "Install accompanying scripts and language files needed to run blender" ON) IF (APPLE) -OPTION(WITH_COCOA "Use Cocoa framework instead of deprecated Carbon" OFF) +OPTION(WITH_COCOA "Use Cocoa framework instead of deprecated Carbon" ON) +OPTION(WITH_LIBS10.5 "Use 10.5 libs (needed for 64bit builds)" OFF) ENDIF (APPLE) IF(NOT WITH_GAMEENGINE AND WITH_PLAYER) @@ -396,17 +397,22 @@ IF(WIN32) ENDIF(WIN32) IF(APPLE) - IF(CMAKE_OSX_ARCHITECTURES MATCHES i386) - SET(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/darwin-8.x.i386) - ELSE(CMAKE_OSX_ARCHITECTURES MATCHES i386) - SET(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/darwin-6.1-powerpc) - ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES i386) + IF(WITH_LIBS10.5) + SET(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/darwin-9.x.universal) + ELSE(WITH_LIBS10.5) + IF(CMAKE_OSX_ARCHITECTURES MATCHES i386) + SET(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/darwin-8.x.i386) + ELSE(CMAKE_OSX_ARCHITECTURES MATCHES i386) + SET(LIBDIR ${CMAKE_SOURCE_DIR}/../lib/darwin-6.1-powerpc) + ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES i386) + ENDIF(WITH_LIBS10.5) + IF(WITH_OPENAL) FIND_PACKAGE(OpenAL) IF(OPENAL_FOUND) SET(WITH_OPENAL ON) - SET(OPENAL_INCLUDE_DIR "${OPENAL_INCLUDE_DIR};${LIBDIR}/openal/include") + SET(OPENAL_INCLUDE_DIR "${LIBDIR}/openal/include") ELSE(OPENAL_FOUND) SET(WITH_OPENAL OFF) ENDIF(OPENAL_FOUND) @@ -432,20 +438,20 @@ IF(APPLE) # we use precompiled libraries for py 3.1 and up by default SET(PYTHON ${LIBDIR}/python) - SET(PYTHON_INC "${PYTHON}/include/python${PYTHON_VERSION}" CACHE STRING "") - # SET(PYTHON_BINARY "${PYTHON}/bin/python${PYTHON_VERSION}" CACHE STRING "") # not used yet + SET(PYTHON_INC "${PYTHON}/include/python${PYTHON_VERSION}") + # SET(PYTHON_BINARY "${PYTHON}/bin/python${PYTHON_VERSION}") # not used yet SET(PYTHON_LIB python${PYTHON_VERSION}) - SET(PYTHON_LIBPATH "${PYTHON}/lib/python${PYTHON_VERSION}" CACHE STRING "") + SET(PYTHON_LIBPATH "${PYTHON}/lib/python${PYTHON_VERSION}") # SET(PYTHON_LINKFLAGS "-u _PyMac_Error") # won't build with this enabled ELSE(PYTHON_VERSION MATCHES 3.1) # otherwise, use custom system framework SET(PYTHON /System/Library/Frameworks/Python.framework/Versions/) SET(PYTHON_VERSION 2.5) - SET(PYTHON_INC "${PYTHON}${PYTHON_VERSION}/include/python${PYTHON_VERSION}" CACHE STRING "") - # SET(PYTHON_BINARY ${PYTHON}${PYTHON_VERSION}/bin/python${PYTHON_VERSION} CACHE STRING "") # not used yet + SET(PYTHON_INC "${PYTHON}${PYTHON_VERSION}/include/python${PYTHON_VERSION}") + # SET(PYTHON_BINARY ${PYTHON}${PYTHON_VERSION}/bin/python${PYTHON_VERSION}) # not used yet SET(PYTHON_LIB "") - SET(PYTHON_LIBPATH ${PYTHON}${PYTHON_VERSION}/lib/python${PYTHON_VERSION}/config CACHE STRING "") + SET(PYTHON_LIBPATH ${PYTHON}${PYTHON_VERSION}/lib/python${PYTHON_VERSION}/config) SET(PYTHON_LINKFLAGS "-u _PyMac_Error -framework System -framework Python") ENDIF(PYTHON_VERSION MATCHES 3.1) @@ -457,7 +463,7 @@ IF(APPLE) IF(WITH_FFTW3) SET(FFTW3 ${LIBDIR}/fftw3) SET(FFTW3_INC ${FFTW3}/include) - SET(FFTW3_LIB libfftw) + SET(FFTW3_LIB fftw3) SET(FFTW3_LIBPATH ${FFTW3}/lib) ENDIF(WITH_FFTW3) diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index bef41983bab..28985daf466 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -225,11 +225,16 @@ IF(WITH_INSTALL) ENDIF(WITH_INTERNATIONAL) IF(WITH_PYTHON) + IF(WITH_LIBS10.5) + SET(PYTHON_ZIP "python_${CMAKE_OSX_ARCHITECTURES}.zip") + ELSE(WITH_LIBS10.5) + SET(PYTHON_ZIP "python.zip") + ENDIF(WITH_LIBS10.5) ADD_CUSTOM_COMMAND( TARGET blender POST_BUILD MAIN_DEPENDENCY blender COMMAND cp -Rf ${CMAKE_SOURCE_DIR}/release/scripts ${TARGETDIR}/blender.app/Contents/MacOS/.blender/ COMMAND mkdir ${TARGETDIR}/blender.app/Contents/MacOS/.blender/python/ - COMMAND unzip -q ${LIBDIR}/release/python.zip -d ${TARGETDIR}/blender.app/Contents/MacOS/.blender/python/ + COMMAND unzip -q ${LIBDIR}/release/${PYTHON_ZIP} -d ${TARGETDIR}/blender.app/Contents/MacOS/.blender/python/ COMMAND find ${TARGETDIR}/blender.app -name "*.py?" -prune -exec rm -rf {} "\;" ) ENDIF(WITH_PYTHON) From fc1dcc4748804eca9bff23b53cc688b6efd3dbff Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 14:48:35 +0000 Subject: [PATCH 074/412] Fix #19645: debug properties not showing while game is running. --- source/blender/editors/space_view3d/view3d_view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index 8b378f05eb2..ae496158a46 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -1523,7 +1523,7 @@ void game_set_commmandline_options(GameData *gm) SYS_WriteCommandLineInt(syshandle, "show_framerate", test); SYS_WriteCommandLineInt(syshandle, "show_profile", test); - test = (gm->flag & GAME_SHOW_FRAMERATE); + test = (gm->flag & GAME_SHOW_DEBUG_PROPS); SYS_WriteCommandLineInt(syshandle, "show_properties", test); test= (gm->flag & GAME_SHOW_PHYSICS); From 7af69ffa24ca308fc8a25d99326e3cfce8246acc Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 14:54:42 +0000 Subject: [PATCH 075/412] Scons/make update for use of GPU include in interface module. --- source/blender/editors/interface/Makefile | 1 + source/blender/editors/interface/SConscript | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/interface/Makefile b/source/blender/editors/interface/Makefile index 5968660eb91..115740a8403 100644 --- a/source/blender/editors/interface/Makefile +++ b/source/blender/editors/interface/Makefile @@ -49,6 +49,7 @@ CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../imbuf CPPFLAGS += -I../../blenfont CPPFLAGS += -I../../python +CPPFLAGS += -I../../gpu # own include diff --git a/source/blender/editors/interface/SConscript b/source/blender/editors/interface/SConscript index bca0350d4fc..09868345fc4 100644 --- a/source/blender/editors/interface/SConscript +++ b/source/blender/editors/interface/SConscript @@ -7,7 +7,7 @@ for source in env.Glob('*_api.c'): sources.remove(source) incs = '../include ../../blenlib ../../blenfont ../../blenkernel ../../makesdna ../../imbuf' -incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc' +incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc ../../gpu' incs += ' #/extern/glew/include' incs += ' ../../python/' # python button eval From 655d34f9cdf0b796876c0f74cf0a268aaeea1341 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 15:01:07 +0000 Subject: [PATCH 076/412] weightpaint bug where hidden faces would not draw into the backbuffer, now check face mask mode first which is where hidden faces also dont draw. --- .../blender/editors/space_view3d/drawobject.c | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 0688f9b5e0e..695f30072df 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -6086,7 +6086,7 @@ static void bbs_mesh_solid_EM(Scene *scene, View3D *v3d, Object *ob, DerivedMesh } } -static int bbs_mesh_solid__setDrawOpts(void *userData, int index, int *drawSmooth_r) +static int bbs_mesh_solid_hide__setDrawOpts(void *userData, int index, int *drawSmooth_r) { Mesh *me = userData; @@ -6096,7 +6096,14 @@ static int bbs_mesh_solid__setDrawOpts(void *userData, int index, int *drawSmoot return 0; } } + static int bbs_mesh_solid__setDrawOpts_legacy(void *userData, int index, int *drawSmooth_r) +{ + WM_set_framebuffer_index_color(index+1); + return 1; +} + +static int bbs_mesh_solid_hide__setDrawOpts_legacy(void *userData, int index, int *drawSmooth_r) { Mesh *me = userData; @@ -6108,13 +6115,13 @@ static int bbs_mesh_solid__setDrawOpts_legacy(void *userData, int index, int *dr } } -/* TODO remove this - since face select mode now only works with painting */ static void bbs_mesh_solid(Scene *scene, View3D *v3d, Object *ob) { DerivedMesh *dm = mesh_get_derived_final(scene, ob, v3d->customdata_mask); Mesh *me = (Mesh*)ob->data; MCol *colors; int i,j; + int face_sel_mode = (G.f & G_FACESELECT) ? 1:0; glColor3ub(0, 0, 0); @@ -6127,7 +6134,7 @@ static void bbs_mesh_solid(Scene *scene, View3D *v3d, Object *ob) ind = index[i]; else ind = i; - if (!(me->mface[ind].flag&ME_HIDE)) { + if (face_sel_mode==0 || !(me->mface[ind].flag&ME_HIDE)) { unsigned int fbindex = index_to_framebuffer(ind+1); for(j=0;j<4;j++) { colors[i*4+j].b = ((fbindex)&0xFF); @@ -6143,10 +6150,13 @@ static void bbs_mesh_solid(Scene *scene, View3D *v3d, Object *ob) CustomData_add_layer( &dm->faceData, CD_ID_MCOL, CD_ASSIGN, colors, dm->numFaceData ); GPU_buffer_free(dm->drawObject->colors,0); dm->drawObject->colors = 0; - dm->drawMappedFaces(dm, bbs_mesh_solid__setDrawOpts, me, 1); + + if(face_sel_mode) dm->drawMappedFaces(dm, bbs_mesh_solid_hide__setDrawOpts, me, 1); + else dm->drawMappedFaces(dm, NULL, me, 1); } else { - dm->drawMappedFaces(dm, bbs_mesh_solid__setDrawOpts_legacy, me, 0); + if(face_sel_mode) dm->drawMappedFaces(dm, bbs_mesh_solid_hide__setDrawOpts_legacy, me, 0); + else dm->drawMappedFaces(dm, bbs_mesh_solid__setDrawOpts_legacy, me, 0); } dm->release(dm); From 653815923fb0478773da9bbe702b8eaafee9da89 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 15:53:57 +0000 Subject: [PATCH 077/412] Fix #19523: spot lamp blend display size was tweaked so it was always showing, but that also is confusing because it then shows the wrong size, so just hide it now when blend size is 0 or 1. --- source/blender/editors/space_view3d/drawobject.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 695f30072df..280a2e4e998 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -922,11 +922,11 @@ static void drawlamp(Scene *scene, View3D *v3d, RegionView3D *rv3d, Object *ob) /* draw the circle/square representing spotbl */ if(la->type==LA_SPOT) { float spotblcirc = fabs(z)*(1 - pow(la->spotblend, 2)); - /* make sure the line is always visible - prevent it from reaching the outer border (or 0) - * values are kinda arbitrary - just what seemed to work well */ - if (spotblcirc == 0) spotblcirc = 0.15; - else if (spotblcirc == fabs(z)) spotblcirc = fabs(z) - 0.07; - circ(0.0, 0.0, spotblcirc); + /* hide line if it is zero size or overlaps with outer border, + previously it adjusted to always to show it but that seems + confusing because it doesn't show the actual blend size */ + if (spotblcirc != 0 && spotblcirc != fabs(z)) + circ(0.0, 0.0, spotblcirc); } } From 16c1a2944cd52be2b4f80669ebe145937b4b9275 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 15:58:09 +0000 Subject: [PATCH 078/412] Fix/workaround #19617: new raytracer use of SSE is crashing Mingw builds, so disable SSE in that case now. --- source/blender/render/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/render/SConscript b/source/blender/render/SConscript index 17c20e8807a..f89e81708b4 100644 --- a/source/blender/render/SConscript +++ b/source/blender/render/SConscript @@ -1,7 +1,7 @@ #!/usr/bin/python Import ('env') -if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'): +if env['OURPLATFORM'] in ('win32-vc', 'win64-vc', 'win32-mingw'): # FIXME: need to set the appropriate flags for msvc, otherwise we get warnings cflags = [] cxxflags = [] From 85a8f315b44f23ebae7d3b95c0e4c390b892a06d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 16:29:26 +0000 Subject: [PATCH 079/412] Bugfix: scons builds didn't print build info when running blender -v. --- source/creator/SConscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/creator/SConscript b/source/creator/SConscript index 7b3d1493ed2..6c95f25a0b2 100644 --- a/source/creator/SConscript +++ b/source/creator/SConscript @@ -36,5 +36,7 @@ else: if env['WITH_BF_FHS']: # /usr -> /usr/share/blender/2.5 defs.append('BLENDERPATH=\\"' + os.path.join(env['BF_INSTALLDIR'], 'share', 'blender', env['BF_VERSION']) + '\\"') +if env['BF_BUILDINFO']: + defs.append('BUILD_DATE') env.BlenderLib ( libname = 'bf_creator', sources = Split(sources), includes = Split(incs), defines = defs, libtype='core', priority = 0 ) From cb44f290435b245078526871dc37b8b8a528103c Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 16:55:51 +0000 Subject: [PATCH 080/412] Fix #19574: winbuildinfo.h error when compiling with cmake on windows. I've now removed winbuildinfo.h code and let scons on window just set environment vars like other operating systems. Note that cmake still doesn't get the date information on windows, implementation is missing for this. --- source/creator/buildinfo.c | 4 ---- tools/Blender.py | 22 ++++++---------------- 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c index ac14010f572..3473814360b 100644 --- a/source/creator/buildinfo.c +++ b/source/creator/buildinfo.c @@ -32,13 +32,9 @@ #endif #ifdef BUILD_DATE -#if (!defined(WIN32) || defined(_WIN64)) const char * build_date=BUILD_DATE; const char * build_time=BUILD_TIME; const char * build_rev=BUILD_REV; const char * build_platform=BUILD_PLATFORM; const char * build_type=BUILD_TYPE; -#else -#include "winbuildinfo.h" -#endif #endif diff --git a/tools/Blender.py b/tools/Blender.py index 38d2747889a..5641104ab15 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -243,22 +243,12 @@ def buildinfo(lenv, build_type): obj = [] if lenv['BF_BUILDINFO']: - if sys.platform=='win32': - build_info_file = open("source/creator/winbuildinfo.h", 'w') - build_info_file.write("char *build_date=\"%s\";\n"%build_date) - build_info_file.write("char *build_time=\"%s\";\n"%build_time) - build_info_file.write("char *build_rev=\"%s\";\n"%build_rev) - build_info_file.write("char *build_platform=\"win32\";\n") - build_info_file.write("char *build_type=\"dynamic\";\n") - build_info_file.close() - lenv.Append (CPPDEFINES = ['NAN_BUILDINFO', 'BUILD_DATE']) - else: - lenv.Append (CPPDEFINES = ['BUILD_TIME=\'"%s"\''%(build_time), - 'BUILD_DATE=\'"%s"\''%(build_date), - 'BUILD_TYPE=\'"dynamic"\'', - 'BUILD_REV=\'"%s"\''%(build_rev), - 'NAN_BUILDINFO', - 'BUILD_PLATFORM=\'"%s"\''%(sys.platform)]) + lenv.Append (CPPDEFINES = ['BUILD_TIME=\'"%s"\''%(build_time), + 'BUILD_DATE=\'"%s"\''%(build_date), + 'BUILD_TYPE=\'"dynamic"\'', + 'BUILD_REV=\'"%s"\''%(build_rev), + 'NAN_BUILDINFO', + 'BUILD_PLATFORM=\'"%s"\''%(sys.platform)]) obj = [lenv.Object (root_build_dir+'source/creator/%s_buildinfo'%build_type, [root_build_dir+'source/creator/buildinfo.c'])] return obj From 7cc9998eb48832be33c95f0b0c3dc48ff0b6e7e4 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 19 Oct 2009 17:10:16 +0000 Subject: [PATCH 081/412] Added old 2.4x keymap entries for Open, Save As, and Save Image, per request from Ton. --- source/blender/editors/space_image/space_image.c | 1 + source/blender/windowmanager/intern/wm_operators.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c index e64bb1a4209..115f970046f 100644 --- a/source/blender/editors/space_image/space_image.c +++ b/source/blender/editors/space_image/space_image.c @@ -210,6 +210,7 @@ void image_keymap(struct wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "IMAGE_OT_open", OKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "IMAGE_OT_reload", RKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "IMAGE_OT_save", SKEY, KM_PRESS, KM_ALT, 0); + WM_keymap_add_item(keymap, "IMAGE_OT_save_as", F3KEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "IMAGE_OT_properties", NKEY, KM_PRESS, 0, 0); keymap= WM_keymap_find(keyconf, "Image", SPACE_IMAGE, 0); diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 5ad138c3890..cc5967ab23a 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2205,9 +2205,13 @@ void wm_window_keymap(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "WM_OT_save_homefile", UKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_open_recentfile", OKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_open_mainfile", OKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "WM_OT_open_mainfile", F1KEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "WM_OT_link_append", OKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); + WM_keymap_add_item(keymap, "WM_OT_link_append", F1KEY, KM_PRESS, KM_SHIFT, 0); WM_keymap_add_item(keymap, "WM_OT_save_mainfile", SKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "WM_OT_save_mainfile", WKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_save_as_mainfile", SKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); + WM_keymap_add_item(keymap, "WM_OT_save_as_mainfile", F2KEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "WM_OT_window_fullscreen_toggle", F11KEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "WM_OT_exit_blender", QKEY, KM_PRESS, KM_CTRL, 0); From 48f3e3340aca9a10be2b455243c2cea651e665a9 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 17:11:42 +0000 Subject: [PATCH 082/412] Fix #19618: invalid vertex group data could be created when assign vertices without an existing vertex group, causing e.g. armature modifiers to crash. --- release/scripts/ui/buttons_data_mesh.py | 2 +- source/blender/editors/object/object_vgroup.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 76c66f7aece..3c8f655f17a 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -88,7 +88,7 @@ class DATA_PT_vertex_groups(DataButtonsPanel): row = layout.row() row.itemR(group, "name") - if ob.mode == 'EDIT': + if ob.mode == 'EDIT' and len(ob.vertex_groups) > 0: row = layout.row() sub = row.row(align=True) diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index dd3e5969a75..0de1c79b796 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -876,6 +876,8 @@ static void vgroup_assign_verts(Object *ob, float weight) int i, done; dg=BLI_findlink(&ob->defbase, ob->actdef-1); + if(!dg) + return; if(ob->type == OB_MESH) { Mesh *me= ob->data; From 5821e0ddf7b54c0f827b875ca3ee8302d0784a86 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 19 Oct 2009 17:18:31 +0000 Subject: [PATCH 083/412] Patch #19667: cmake/windows build info now has time & date, patch by Guillaume, thanks! --- CMakeLists.txt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 55d5956783c..ea62bbceb0e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -535,15 +535,21 @@ ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux") # buildinfo -IF(UNIX) - IF(WITH_BUILDINFO) +IF(WITH_BUILDINFO) + # BUILD_PLATFORM and BUILD_PLATFORM are taken from CMake + IF(UNIX) EXEC_PROGRAM("date \"+%Y-%m-%d\"" OUTPUT_VARIABLE BUILD_DATE) EXEC_PROGRAM("date \"+%H:%M:%S\"" OUTPUT_VARIABLE BUILD_TIME) EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV) - # BUILD_PLATFORM and BUILD_PLATFORM are taken from CMake - ENDIF(WITH_BUILDINFO) -ENDIF(UNIX) - + ENDIF(UNIX) + + IF(WIN32) + EXEC_PROGRAM("cmd /c date /t" OUTPUT_VARIABLE BUILD_DATE) + EXEC_PROGRAM("cmd /c time /t" OUTPUT_VARIABLE BUILD_TIME) + EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV) + ENDIF(WIN32) +ENDIF(WITH_BUILDINFO) + #----------------------------------------------------------------------------- # Common. From 031da438e47a2cf88bf81f7c2c7a3274cfe97e63 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 17:20:09 +0000 Subject: [PATCH 084/412] - enable snap to work for particle editmode so you can snap onto the emitter. theeth: maybe there needs to be a new SnapMode for this? - SNAP_SELF?, like editmode but without setting t->editob - dont run special_aftertrans_update on scene objects when after sequencer transform --- .../editors/transform/transform_conversions.c | 4 ++++ source/blender/editors/transform/transform_snap.c | 12 +++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 63361e31c6e..2e4111cee40 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4572,6 +4572,10 @@ void special_aftertrans_update(TransInfo *t) } } } + else if (t->spacetype == SPACE_SEQ) { + /* freeSeqData in transform_conversions.c does this + * keep here so the else at the end wont run... */ + } else if (t->spacetype == SPACE_ACTION) { SpaceAction *saction= (SpaceAction *)t->sa->spacedata.first; Scene *scene; diff --git a/source/blender/editors/transform/transform_snap.c b/source/blender/editors/transform/transform_snap.c index 6cfffd1ade7..b9b9ca034cf 100644 --- a/source/blender/editors/transform/transform_snap.c +++ b/source/blender/editors/transform/transform_snap.c @@ -1453,9 +1453,19 @@ int snapObjects(Scene *scene, View3D *v3d, ARegion *ar, Object *obedit, float mv if (mode == SNAP_ALL && obedit) { Object *ob = obedit; - + retval |= snapObject(scene, ar, ob, 1, ob->obmat, ray_start, ray_normal, mval, loc, no, dist, &depth); } + + /* This isn't so great, particles only need to snap with the mesh object + * that emits them, but this doesnt fit into a current snap mode + * */ + if(BASACT->object && BASACT->object->mode & OB_MODE_PARTICLE_EDIT) + { + Object *ob = BASACT->object; + + retval |= snapObject(scene, ar, ob, 0, ob->obmat, ray_start, ray_normal, mval, loc, no, dist, &depth); + } base= FIRSTBASE; for ( base = FIRSTBASE; base != NULL; base = base->next ) { From 401c185fbc80d2ab01de1789bdb02701aa1804f6 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 19 Oct 2009 17:47:24 +0000 Subject: [PATCH 085/412] Get 2.5 trunk to compile. this C++ code failed for gcc 3.3. Error log: /usr/include/gcc/darwin/3.3/c++/cmath: In function `float std::ceil(float)': /usr/include/gcc/darwin/3.3/c++/cmath:175: error: parse error before `(' token /usr/include/gcc/darwin/3.3/c++/cmath: In function `float std::floor(float)': /usr/include/gcc/darwin/3.3/c++/cmath:249: error: parse error before `(' token /usr/include/gcc/darwin/3.3/c++/cmath: In function `float std::fmod(float, float)': /usr/include/gcc/darwin/3.3/c++/cmath:267: error: parse error before `(' token --- source/blender/render/intern/raytrace/reorganize.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/render/intern/raytrace/reorganize.h b/source/blender/render/intern/raytrace/reorganize.h index f0335b769d5..6bf31014712 100644 --- a/source/blender/render/intern/raytrace/reorganize.h +++ b/source/blender/render/intern/raytrace/reorganize.h @@ -26,9 +26,10 @@ * * ***** END GPL LICENSE BLOCK ***** */ + #include -#include #include +#include #include #include @@ -289,7 +290,6 @@ float bvh_refit(Node *node) * with the purpose to reduce the expected cost (eg.: number of BB tests). */ #include -#include #define MAX_CUT_SIZE 16 #define MAX_OPTIMIZE_CHILDS MAX_CUT_SIZE From 1f4d07fd199041726d2bb77eebe702bf3351b4e8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 17:50:26 +0000 Subject: [PATCH 086/412] run flushTransParticles after snapping applyProject so you can project/snap particles in editmode --- source/blender/editors/transform/transform_generics.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index c2046621c3a..5372a9112c3 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -343,11 +343,6 @@ void recalcData(TransInfo *t) Scene *scene = t->scene; Base *base = scene->basact; - if (t->obedit) { - } - else if(base && (base->object->mode & OB_MODE_PARTICLE_EDIT) && PE_get_current(scene, base->object)) { - flushTransParticles(t); - } if (t->spacetype==SPACE_NODE) { flushTransNodes(t); } @@ -777,6 +772,9 @@ void recalcData(TransInfo *t) else where_is_pose(scene, ob); } + else if(base && (base->object->mode & OB_MODE_PARTICLE_EDIT) && PE_get_current(scene, base->object)) { + flushTransParticles(t); + } else { for(base= FIRSTBASE; base; base= base->next) { Object *ob= base->object; From 680e724e37e10a3e6e7e42691d2e07d3dd62b6b7 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Mon, 19 Oct 2009 18:44:09 +0000 Subject: [PATCH 087/412] Continue development of bfile system. Still not usable, but some parts could be made more portable already. Help welcome for MacOSX and MSWindows calls and paths. --- release/environment-macosx | 18 + release/environment-mswindows | 18 + release/environment-unix | 18 + source/blender/blenlib/BLI_bfile.h | 30 +- source/blender/blenlib/BLI_util.h | 1 + source/blender/blenlib/intern/BLI_bfile.c | 408 ++++++++++++++++++---- source/blender/blenlib/intern/util.c | 18 +- 7 files changed, 434 insertions(+), 77 deletions(-) create mode 100644 release/environment-macosx create mode 100644 release/environment-mswindows create mode 100644 release/environment-unix diff --git a/release/environment-macosx b/release/environment-macosx new file mode 100644 index 00000000000..d41d5ec485f --- /dev/null +++ b/release/environment-macosx @@ -0,0 +1,18 @@ +# This is a Blender Environment Variable config file. +# +# Comment lines start with "#", other lines will be split at the "=" +# and the part before will be used as env var name and the part after +# as env var value. The value can make reference to previous or +# prelaunch variables with "${}" and the content will be replaced. +# Once set, values of variables will not be overwritten. +# +# BLENDER_SHARE should be /Library/Application Support/Blender for typical installs. +# BLENDER_VERSION will be set by the program before processing this file. +BLENDER_USER_BASE=${HOME}/Library/Application Support/Blender/${BLENDER_VERSION} +BLENDER_SYSTEM_BASE=${BLENDER_SHARE}/${BLENDER_VERSION} +BLENDER_USER_DATAFILES=${HOME}/Library/Application Support/Blender/${BLENDER_VERSION}/datafiles +BLENDER_SYSTEM_DATAFILES=${BLENDER_SHARE}/${BLENDER_VERSION}/datafiles +BLENDER_USER_PY=${HOME}/Library/Application Support/Blender/${BLENDER_VERSION}/py +BLENDER_SYSTEM_PY=${BLENDER_SHARE}/${BLENDER_VERSION}/py +BLENDER_USER_PLUGINS=${HOME}/Library/Application Support/Blender/${BLENDER_VERSION}/plugins +BLENDER_SYSTEM_PLUGINS=${BLENDER_SHARE}/${BLENDER_VERSION}/plugins diff --git a/release/environment-mswindows b/release/environment-mswindows new file mode 100644 index 00000000000..f8890f89af8 --- /dev/null +++ b/release/environment-mswindows @@ -0,0 +1,18 @@ +# This is a Blender Environment Variable config file. +# +# Comment lines start with "#", other lines will be split at the "=" +# and the part before will be used as env var name and the part after +# as env var value. The value can make reference to previous or +# prelaunch variables with "%%" and the content will be replaced. +# Once set, values of variables will not be overwritten. +# +# BLENDER_SHARE should be COMMON_APPDATA\\Blender Foundation\\Blender for typical installs. +# BLENDER_VERSION will be set by the program before processing this file. +BLENDER_USER_BASE=%USERPROFILE%\\Blender Foundation\\Blender\\%BLENDER_VERSION% +BLENDER_SYSTEM_BASE=%BLENDER_SHARE%\\%BLENDER_VERSION% +BLENDER_USER_DATAFILES=%USERPROFILE%\\Blender Foundation\\%BLENDER_VERSION%\\datafiles +BLENDER_SYSTEM_DATAFILES=%BLENDER_SHARE%\\%BLENDER_VERSION%\\datafiles +BLENDER_USER_PY=%USERPROFILE%\\Blender Foundation\\%BLENDER_VERSION%\\py +BLENDER_SYSTEM_PY=%BLENDER_SHARE%\\%BLENDER_VERSION%\\py +BLENDER_USER_PLUGINS=%USERPROFILE%\\Blender Foundation\\%BLENDER_VERSION%\\plugins +BLENDER_SYSTEM_PLUGINS=%BLENDER_SHARE%\\%BLENDER_VERSION%\\plugins diff --git a/release/environment-unix b/release/environment-unix new file mode 100644 index 00000000000..8a13c288306 --- /dev/null +++ b/release/environment-unix @@ -0,0 +1,18 @@ +# This is a Blender Environment Variable config file. +# +# Comment lines start with "#", other lines will be split at the "=" +# and the part before will be used as env var name and the part after +# as env var value. The value can make reference to previous or +# prelaunch variables with "${}" and the content will be replaced. +# Once set, values of variables will not be overwritten. +# +# BLENDER_SHARE should be /usr/share/blender for typical distro installs. +# BLENDER_VERSION will be set by the program before processing this file. +BLENDER_USER_BASE=${HOME}/.blender/${BLENDER_VERSION} +BLENDER_SYSTEM_BASE=${BLENDER_SHARE}/${BLENDER_VERSION} +BLENDER_USER_DATAFILES=${HOME}/.blender/${BLENDER_VERSION}/datafiles +BLENDER_SYSTEM_DATAFILES=${BLENDER_SHARE}/${BLENDER_VERSION}/datafiles +BLENDER_USER_PY=${HOME}/.blender/${BLENDER_VERSION}/py +BLENDER_SYSTEM_PY=${BLENDER_SHARE}/${BLENDER_VERSION}/py +BLENDER_USER_PLUGINS=${HOME}/.blender/${BLENDER_VERSION}/plugins +BLENDER_SYSTEM_PLUGINS=${BLENDER_SHARE}/${BLENDER_VERSION}/plugins diff --git a/source/blender/blenlib/BLI_bfile.h b/source/blender/blenlib/BLI_bfile.h index 92543558a19..15374b4d445 100644 --- a/source/blender/blenlib/BLI_bfile.h +++ b/source/blender/blenlib/BLI_bfile.h @@ -38,9 +38,9 @@ #define BFILE_NORMAL (0) /* No supervision, just translate // if needed, RISKY */ #define BFILE_RAW (1<<0) -/* Path is relative to config dirs */ +/* Path is based in env vars specified by "envvars" */ #define BFILE_CONFIG (1<<1) -/* Path is for current session temp file */ +/* Path is for current session temp files */ #define BFILE_TEMP (1<<2) /* Config handling, special cases: */ @@ -50,6 +50,17 @@ /* Compression to apply on close: */ #define BFILE_GZIP (1<<5) +/** + For the envvars param. + */ +typedef enum BEnvVarFamilies { + BENV_NONE, + BENV_BASE, + BENV_DATAFILES, + BENV_PYTHON, + BENV_PLUGINS +} BEnvVarFam; + /** File descriptor for Blender abstracted file access. */ @@ -58,22 +69,23 @@ typedef struct { int fd; /* Anything below should not be touched directly */ - int uflags; /* Special options requested by upper level, copy of bflags */ - char *fpath; /* Final/requested path name */ - char *tpath; /* Temp path name if applicable */ - int type; /* Own flags, common classification of open and fopen */ - int error; /* An op caused an error, unsafe to replace older files */ + int uflags; /* Special options requested by upper level, copy of bflags */ + BEnvVarFam evars; /* What kind of file, describe the env vars to use */ + char *fpath; /* Final/requested path name */ + char *tpath; /* Temp path name if applicable */ + int classf; /* Own flags, common classification of open and fopen */ + int error; /* An op caused an error, unsafe to replace older files */ } BFILE; /** Open a BFILE* with fopen()-like syntax. */ -BFILE *BLI_bfile_fopen(const char *path, const char *mode, int bflags); +BFILE *BLI_bfile_fopen(const char *path, const char *mode, int bflags, BEnvVarFam envvars); /** Open a BFILE* with open()-like syntax. */ -BFILE *BLI_bfile_open(const char *pathname, int flags, int bflags); +BFILE *BLI_bfile_open(const char *pathname, int flags, int bflags, BEnvVarFam envvars); /** Get the FILE* associated with the BFILE*. diff --git a/source/blender/blenlib/BLI_util.h b/source/blender/blenlib/BLI_util.h index 1ce7a8cdb77..7642b71eea0 100644 --- a/source/blender/blenlib/BLI_util.h +++ b/source/blender/blenlib/BLI_util.h @@ -51,6 +51,7 @@ char *BLI_gethome_folder(char *folder_name, int flag); #define BLI_GETHOME_ALL (BLI_GETHOME_SYSTEM|BLI_GETHOME_LOCAL|BLI_GETHOME_USER) void BLI_setenv(const char *env, const char *val); +void BLI_setenv_if_new(const char *env, const char* val); void BLI_make_file_string(const char *relabase, char *string, const char *dir, const char *file); void BLI_make_exist(char *dir); diff --git a/source/blender/blenlib/intern/BLI_bfile.c b/source/blender/blenlib/intern/BLI_bfile.c index a7ce1df5712..4de1e6ce4a1 100644 --- a/source/blender/blenlib/intern/BLI_bfile.c +++ b/source/blender/blenlib/intern/BLI_bfile.c @@ -25,89 +25,70 @@ */ #include - +#include #ifndef WIN32 #include #else #include #include "BLI_winstuff.h" #endif - +#include #include #include #include +#include #include "MEM_guardedalloc.h" - +#include "BKE_utildefines.h" +#include "BKE_blender.h" +#include "BLI_util.h" +#include "BLI_fileops.h" +#include "BLI_storage.h" #include "BLI_bfile.h" -// This would provide config paths and their oldest viable version -// so if there is an uncompatible change, user's old versions are not loaded -//#include "bfile_tables.h" +/* Internal bfile classification flags */ +#define BCF_OPEN (0) +#define BCF_FOPEN (1<<0) +#define BCF_READ (1<<1) +#define BCF_WRITE (1<<2) +#define BCF_AT_END (1<<3) +#define BCF_DISCARD (1<<4) -/* Internal bfile type flags */ -#define BTF_OPEN (0) -#define BTF_FOPEN (1<<0) -#define BTF_READ (1<<1) -#define BTF_WRITE (1<<2) -#define BTF_AT_END (1<<3) -#define BTF_DISCARD (1<<4) +/* Declaration of internal functions */ +void chomp(char* line); +void expand_envvars(char* src, char* dst); +void fill_paths(BFILE *bfile, const char *path); +char* find_in_pathlist(char* filename, char* pathlist); +void init_vars_from_file(const char* path); +void setup_temp(); +/*** Exported functions ***/ -void fill_paths(BFILE *bfile, const char *path) { - char* source_path = NULL; - int bflags = bfile->uflags; - - if(bflags & BFILE_NORMAL || bflags & BFILE_RAW) { -// bfile->fpath is path with // replaced - } - if(bflags & BFILE_TEMP) { -// bfile->fpath is tempdir+path - } - if(bflags & BFILE_CONFIG) { -// bfile->fpath is userdir+version+path -// source_path is first hit in (if using fallback to older versions) -// userdir+curversion+path (... userdir+limitversion+path) sysdir+path -// (limitversion is based in path, using some kind of regex or "tables") - } - - if(bfile->type & BTF_WRITE && !(bflags & BFILE_RAW)) { - /* Generate temp path */ - // bfile->tpath is fpath+randstring - if(!(bfile->type & BTF_DISCARD)) { - /* Copy data to tpath */ - if(source_path) { - // copy it from older version or sys version - } - } - } else { - bfile->tpath = bfile->fpath; - } -} - -BFILE *BLI_bfile_fopen(const char *path, const char *mode, int bflags) { +BFILE *BLI_bfile_fopen(const char *path, const char *mode, int bflags, + BEnvVarFam envvars) +{ BFILE *bfile; bfile = MEM_mallocN(sizeof(BFILE), "bfile-fopen"); - bfile->type = BTF_FOPEN; + bfile->classf = BCF_FOPEN; bfile->uflags = bflags; /* From fopen() doc, we can guess some logic: - r BTF_READ - r+ BTF_READ | BTF_WRITE - w BTF_DISCARD | BTF_WRITE - w+ BTF_DISCARD | BTF_WRITE | BTF_READ - a BTF_AT_END | BTF_WRITE - a+ BTF_AT_END | BTF_WRITE | BTF_READ + r BCF_READ + r+ BCF_READ | BCF_WRITE + w BCF_DISCARD | BCF_WRITE + w+ BCF_DISCARD | BCF_WRITE | BCF_READ + a BCF_AT_END | BCF_WRITE + a+ BCF_AT_END | BCF_WRITE | BCF_READ */ if(strchr(mode, 'r')) - bfile->type |= BTF_READ; + bfile->classf |= BCF_READ; if(strchr(mode, 'w')) - bfile->type |= (BTF_DISCARD | BTF_WRITE); + bfile->classf |= (BCF_DISCARD | BCF_WRITE); if(strchr(mode, 'a')) - bfile->type |= (BTF_AT_END | BTF_WRITE); + bfile->classf |= (BCF_AT_END | BCF_WRITE); if(strchr(mode, '+')) - bfile->type |= (BTF_READ | BTF_WRITE); + bfile->classf |= (BCF_READ | BCF_WRITE); fill_paths(bfile, path); @@ -118,24 +99,26 @@ BFILE *BLI_bfile_fopen(const char *path, const char *mode, int bflags) { } -BFILE *BLI_bfile_open(const char *pathname, int flags, int bflags) { +BFILE *BLI_bfile_open(const char *pathname, int flags, int bflags, + BEnvVarFam envvars) +{ BFILE *bfile; bfile = MEM_mallocN(sizeof(BFILE), "bfile-open"); - bfile->type = BTF_OPEN; + bfile->classf = BCF_OPEN; bfile->uflags = bflags; /* Easy mapping for open() */ if(flags & O_RDONLY) - bfile->type |= BTF_READ; + bfile->classf |= BCF_READ; if(flags & O_WRONLY) - bfile->type |= BTF_WRITE; + bfile->classf |= BCF_WRITE; if(flags & O_RDWR) - bfile->type |= (BTF_READ | BTF_WRITE); + bfile->classf |= (BCF_READ | BCF_WRITE); if(flags & O_APPEND) - bfile->type |= BTF_AT_END; + bfile->classf |= BCF_AT_END; if(flags & O_TRUNC) - bfile->type |= BTF_DISCARD; + bfile->classf |= BCF_DISCARD; fill_paths(bfile, pathname); @@ -180,7 +163,9 @@ ssize_t BLI_bfile_read(BFILE *f, void *buf, size_t count) { } -size_t BLI_bfile_fwrite(const void *ptr, size_t size, size_t nmemb, BFILE *f) { +size_t BLI_bfile_fwrite(const void *ptr, size_t size, size_t nmemb, + BFILE *f) +{ size_t ret; ret = fwrite(ptr, size, nmemb, f->stream); @@ -205,7 +190,7 @@ size_t BLI_bfile_fread(void *ptr, size_t size, size_t nmemb, BFILE *f) { void BLI_bfile_close(BFILE *bfile) { - if((bfile->type | BTF_WRITE) && + if((bfile->classf | BCF_WRITE) && !(bfile->uflags | BFILE_RAW)) { /* Make sure data is on disk */ /* Move to final name if no errors */ @@ -234,3 +219,296 @@ void BLI_bfile_set_error(BFILE *bfile, int error) { bfile->error = error; } } + + +#if defined(WIN32) + #define LAST_SESSION_FILE "%HOME%\\Blender\\last-session FIXME FIXME FIXME" + #define ENVIRONMENT_FILE "FIXME" + #define SHARED_DIRECTORY "FIXME TOO" +#elif defined(OSX) + #define LAST_SESSION_FILE "${HOME}/Library/Application Support/Blender/last-session" + #define ENVIRONMENT_FILE "${HOME}/Library/Application Support/Blender/${BLENDER_VERSION}/environment" + #define SHARED_DIRECTORY "/Library/Application Support/Blender" +#else + #define LAST_SESSION_FILE "${HOME}/.blender/last-session" + #define ENVIRONMENT_FILE "${HOME}/.blender/${BLENDER_VERSION}/environment" + #define SHARED_DIRECTORY "/usr/share/blender" +#endif +void BLI_bfile_init_vars() { + char file[MAXPATHLEN]; + char temp[MAXPATHLEN]; + extern char bprogname[]; + FILE* fp; + + /* This one is unconditional */ + sprintf(temp, "%d", BLENDER_VERSION); + BLI_setenv("BLENDER_VERSION", temp); + + /* Is this unpack&run? */ + sprintf(temp, "%s/%d/environment", dirname(bprogname), BLENDER_VERSION); + if(BLI_exist(temp)) { + BLI_setenv_if_new("BLENDER_SHARE", dirname(bprogname)); + } else { + BLI_setenv_if_new("BLENDER_SHARE", SHARED_DIRECTORY); + } + + expand_envvars(LAST_SESSION_FILE, file); + fp = fopen(file, "r"); + /* 1st line, read previous version */ + if (fp && (fscanf(fp, "%3c\n", temp) == 1)) { + temp[3] = '\0'; + BLI_setenv("BLENDER_VERSION_PREV", temp); + /* 2nd line, read previous session path if needed */ + if(!getenv("BLENDER_TEMP")) { + if ((fgets(temp, MAXPATHLEN, fp) != NULL)) { + /* Clean any \n */ + chomp(temp); + /* Check the dir is still there or generate new one */ + if(!BLI_exist(temp)) { + setup_temp(); + } + } else { + /* We have to generate it for sure */ + setup_temp(); + } + } + } else { + /* Probably new user, or only <=249 before */ + BLI_setenv("BLENDER_VERSION_PREV", "0"); + setup_temp(); + } + + if(fp) { + fclose(fp); + } + + /* Load vars from user and system files */ + expand_envvars(ENVIRONMENT_FILE, file); + init_vars_from_file(file); + sprintf(temp, "/%d/environment", BLENDER_VERSION); + BLI_make_file_string("/", file, getenv("BLENDER_SHARE"), temp); + init_vars_from_file(file); +} + + +/*** Internal functions ***/ + +/** + Eliminate trailing EOL by writing a \0 over it. + Name taken from Perl. + */ +void chomp(char* line) { + int len = strlen(line); +#ifndef WIN32 + if (line[len - 1] == '\n') { + line[len - 1] = '\0'; + } +#else + if ((line[len - 2] == '\r' ) && ((line[len - 1] == '\n'))) { + line[len - 2] = '\0'; + } +#endif /* WIN32 */ +} + + +/** + Parse a file with lines like FOO=bar (comment lines have # as first + character) assigning to envvar FOO the value bar if FOO does not + exist yet. + Any white space before FOO, around the = or trailing will be used, + so beware. + */ +#define MAX_LINE 4096 +#define ENV_VAR 256 +#define VAR_LEN 8192 +void init_vars_from_file(const char* path) { + char line[MAX_LINE]; + char name[ENV_VAR]; + FILE *fp; + char* separator; + char expanded[VAR_LEN]; + + fp = fopen(path, "r"); + if (!fp) return; + + while (fgets(line, MAX_LINE, fp) != NULL) { + /* Ignore comment lines */ + if (line[0] == '#') + continue; + + /* Split into envvar name and contents */ + separator = strchr(line, '='); + if(separator && ((separator - line) < ENV_VAR)) { + /* First remove EOL */ + chomp(line); + strncpy(name, line, separator - line); + name[separator - line] = '\0'; + expand_envvars(separator + 1, expanded); + BLI_setenv_if_new(name, expanded); + } + } + fclose(fp); +} + + +/** + Look for ${} (or %%) env vars in src and expand if the var + exists (even if empty value). If not exist, the name is left as is. + The process is done all over src, and nested ${${}} is not supported. + src must be \0 terminated, and dst must be big enough. +*/ +#ifndef WIN32 + #define ENVVAR_PREFFIX "${" + #define ENVVAR_P_SIZE 2 + #define ENVVAR_SUFFIX "}" + #define ENVVAR_S_SIZE 1 +#else + #define ENVVAR_PREFFIX "%" + #define ENVVAR_P_SIZE 1 + #define ENVVAR_SUFFIX "%" + #define ENVVAR_S_SIZE 1 +#endif /* WIN32 */ +void expand_envvars(char* src, char* dst) { + char* hit1; + char* hit2; + char name[ENV_VAR]; + char* value; + int prevlen; + int done = 0; + char* source = src; + + dst[0] = '\0'; + while (!done) { + hit1 = strstr(source, ENVVAR_PREFFIX); + if (hit1) { + hit2 = strstr(hit1 + ENVVAR_P_SIZE, ENVVAR_SUFFIX); + if (hit2) { + /* "Copy" the leading part, if any */ + if (hit1 != source) { + prevlen = strlen(dst); + strncat(dst, source, hit1 - source); + dst[prevlen + (hit1 - source)] = '\0'; + } + /* Figure the name of the env var we just found */ + strncpy(name, hit1 + ENVVAR_P_SIZE, + hit2 - (hit1 + ENVVAR_P_SIZE)); + name[hit2 - (hit1 + ENVVAR_P_SIZE)] = '\0'; + /* See if we can get something with that name */ + value = getenv(name); + if (value) { + /* Push the var value */ + strcat(dst, value); + } else { + /* Leave the var name, so it is clear that it failed */ + strcat(dst, ENVVAR_PREFFIX); + strcat(dst, name); + strcat(dst, ENVVAR_SUFFIX); + } + /* Continue after closing mark, like a new string */ + source = hit2 + ENVVAR_S_SIZE; + } else { + /* Non terminated var so "copy as is" and finish */ + strcat(dst, source); + done = 1; + } + } else { + /* "Copy" whatever is left */ + strcat(dst, source); + done = 1; + } + } +} + + +/** + Return a full path if the filename exists when combined + with any item from pathlist. Or NULL otherwise. + */ +#ifdef WIN32 + #define SEPARATOR ';' +#else + #define SEPARATOR ':' +#endif +char* find_in_pathlist(char* filename, char* pathlist) { + char first[FILE_MAX + 10]; + char* rest = NULL; + + /* Separate first path from rest, use typical separator for current OS */ + rest = strchr(pathlist, SEPARATOR); + if (rest) { + strncpy(first, pathlist, rest - pathlist); + first[rest - pathlist] = '\0'; + /* Skip the separator so it becomes a valid new pathlist */ + rest++; + } else { + strcpy(first, pathlist); + } + + /* Check if combination exists */ + BLI_add_slash(first); + strcat(first, filename); + if(BLI_exist(first)) { + return strdup(first); + } + + /* First path failed, try with rest of paths if possible */ + if(rest) { + return find_in_pathlist(filename, rest); + } else { + return NULL; + } +} + + +/** + Setup fpath and tpath based in the needs of the bfile. + */ +void fill_paths(BFILE *bfile, const char *path) { + char* source_path = NULL; + int bflags = bfile->uflags; + + if(bflags & BFILE_NORMAL || bflags & BFILE_RAW) { +// bfile->fpath is path with // replaced + } + if(bflags & BFILE_TEMP) { +// bfile->fpath is tempdir+path + } + if(bflags & BFILE_CONFIG) { +// bfile->fpath is userdir+version+path +// source_path is first hit in (if using fallback to older versions) +// userdir+curversion+path (... userdir+limitversion+path) sysdir+path +// (limitversion is based in path, using some kind of regex or "tables") + } + + if(bfile->classf & BCF_WRITE && !(bflags & BFILE_RAW)) { + /* Generate temp path */ + // bfile->tpath is fpath+randstring + if(!(bfile->classf & BCF_DISCARD)) { + /* Copy data to tpath */ + if(source_path) { + // copy it from older version or sys version + } + } + } else { + bfile->tpath = bfile->fpath; + } +} + + +/** + Create a temp directory in safe and multiuser way. + */ +void setup_temp() { + char template[MAXPATHLEN]; + char* tempdir; + + if(getenv("TMPDIR")) { + sprintf(template, "%s/blender-XXXXXX", getenv("TMPDIR")); + } else { + sprintf(template, "/tmp/blender-XXXXXX"); +// MacOSX NSTemporaryDirectory and WIN32 ??? + } + tempdir = mkdtemp(template); + BLI_setenv("BLENDER_TEMP", tempdir); +} + diff --git a/source/blender/blenlib/intern/util.c b/source/blender/blenlib/intern/util.c index 387d1881d3c..e2acbf21624 100644 --- a/source/blender/blenlib/intern/util.c +++ b/source/blender/blenlib/intern/util.c @@ -992,6 +992,18 @@ void BLI_setenv(const char *env, const char*val) #endif } + +/** + Only set an env var if already not there. + Like Unix setenv(env, val, 0); + */ +void BLI_setenv_if_new(const char *env, const char* val) +{ + if(getenv(env) == NULL) + BLI_setenv(env, val); +} + + void BLI_clean(char *path) { if(path==0) return; @@ -1374,10 +1386,10 @@ void BLI_where_am_i(char *fullname, const char *name) char *path = NULL, *temp; #ifdef _WIN32 - char *seperator = ";"; + char *separator = ";"; char slash = '\\'; #else - char *seperator = ":"; + char *separator = ":"; char slash = '/'; #endif @@ -1415,7 +1427,7 @@ void BLI_where_am_i(char *fullname, const char *name) path = getenv("PATH"); if (path) { do { - temp = strstr(path, seperator); + temp = strstr(path, separator); if (temp) { strncpy(filename, path, temp - path); filename[temp - path] = 0; From 45a21e4736553e8109c2cae3e314e37f90a6e881 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 19 Oct 2009 18:49:04 +0000 Subject: [PATCH 088/412] Some cleanup for particle edit snap. Update comment to point at the root of the problem. --- .../blender/editors/transform/transform_snap.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/transform/transform_snap.c b/source/blender/editors/transform/transform_snap.c index b9b9ca034cf..37cd94c21c5 100644 --- a/source/blender/editors/transform/transform_snap.c +++ b/source/blender/editors/transform/transform_snap.c @@ -344,6 +344,7 @@ void initSnapping(TransInfo *t, wmOperator *op) { ToolSettings *ts = t->settings; Object *obedit = t->obedit; + Scene *scene = t->scene; int snapping = 0; short snap_mode = t->settings->snap_target; @@ -407,6 +408,15 @@ void initSnapping(TransInfo *t, wmOperator *op) t->tsnap.mode = SNAP_ALL; } } + /* Particles edit mode*/ + else if (t->tsnap.applySnap != NULL && // A snapping function actually exist + (snapping) && // Only if the snap flag is on + (obedit == NULL && BASACT->object && BASACT->object->mode & OB_MODE_PARTICLE_EDIT )) + { + t->tsnap.status |= SNAP_ON; + t->tsnap.modePoint = SNAP_GEO; + t->tsnap.mode = SNAP_ALL; + } /* Object mode */ else if (t->tsnap.applySnap != NULL && // A snapping function actually exist (snapping) && // Only if the snap flag is on @@ -1457,13 +1467,14 @@ int snapObjects(Scene *scene, View3D *v3d, ARegion *ar, Object *obedit, float mv retval |= snapObject(scene, ar, ob, 1, ob->obmat, ray_start, ray_normal, mval, loc, no, dist, &depth); } - /* This isn't so great, particles only need to snap with the mesh object - * that emits them, but this doesnt fit into a current snap mode + /* Need an exception for particle edit because the base is flagged with BA_HAS_RECALC_DATA + * which makes the loop skip it, even the derived mesh will never change + * + * To solve that problem, we do it first as an exception. * */ if(BASACT->object && BASACT->object->mode & OB_MODE_PARTICLE_EDIT) { Object *ob = BASACT->object; - retval |= snapObject(scene, ar, ob, 0, ob->obmat, ray_start, ray_normal, mval, loc, no, dist, &depth); } From 631fbf88e8df14924bc72e5f508c9d9ed403a536 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 19 Oct 2009 19:16:15 +0000 Subject: [PATCH 089/412] Consolidate tube and cylinder primitives. Removing old add tube operator and replacing it with add cylinder. The resulting operator is called add tube, since that's the name in the menu. Other people can debate about the name and change it later if they feel like it. --- release/scripts/ui/space_info.py | 2 +- source/blender/editors/mesh/editmesh_add.c | 35 ++-------------------- source/blender/editors/mesh/mesh_intern.h | 1 - source/blender/editors/mesh/mesh_ops.c | 1 - 4 files changed, 4 insertions(+), 35 deletions(-) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 634e9653da9..6e5c4b9147d 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -133,7 +133,7 @@ class INFO_MT_mesh_add(dynamic_menu.DynMenu): layout.itemO("mesh.primitive_circle_add", icon='ICON_MESH_CIRCLE', text="Circle") layout.itemO("mesh.primitive_uv_sphere_add", icon='ICON_MESH_UVSPHERE', text="UV Sphere") layout.itemO("mesh.primitive_ico_sphere_add", icon='ICON_MESH_ICOSPHERE', text="Icosphere") - layout.itemO("mesh.primitive_cylinder_add", icon='ICON_MESH_TUBE', text="Tube") + layout.itemO("mesh.primitive_tube_add", icon='ICON_MESH_TUBE', text="Tube") layout.itemO("mesh.primitive_cone_add", icon='ICON_MESH_CONE', text="Cone") layout.itemS() layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID', text="Grid") diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index bb340c450d7..1514f725705 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -1411,7 +1411,7 @@ void MESH_OT_primitive_circle_add(wmOperatorType *ot) RNA_def_boolean(ot->srna, "fill", 0, "Fill", ""); } -static int add_primitive_cylinder_exec(bContext *C, wmOperator *op) +static int add_primitive_tube_exec(bContext *C, wmOperator *op) { make_prim_ext(C, PRIM_CYLINDER, RNA_int_get(op->ptr, "vertices"), 0, 0, RNA_float_get(op->ptr,"radius"), @@ -1421,41 +1421,11 @@ static int add_primitive_cylinder_exec(bContext *C, wmOperator *op) return OPERATOR_FINISHED; } -void MESH_OT_primitive_cylinder_add(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Add Cylinder"; - ot->description= "Construct a cylindrical mesh (ends filled)."; - ot->idname= "MESH_OT_primitive_cylinder_add"; - - /* api callbacks */ - ot->exec= add_primitive_cylinder_exec; - ot->poll= ED_operator_scene_editable; - - /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - - /* props */ - RNA_def_int(ot->srna, "vertices", 32, INT_MIN, INT_MAX, "Vertices", "", 2, 500); - RNA_def_float(ot->srna, "radius", 1.0f, 0.0, FLT_MAX, "Radius", "", 0.001, 100.00); - RNA_def_float(ot->srna, "depth", 1.0f, 0.0, FLT_MAX, "Depth", "", 0.001, 100.00); - RNA_def_boolean(ot->srna, "cap_ends", 1, "Cap Ends", ""); -} - -static int add_primitive_tube_exec(bContext *C, wmOperator *op) -{ - make_prim_ext(C, PRIM_CYLINDER, RNA_int_get(op->ptr, "vertices"), 0, 0, - RNA_float_get(op->ptr,"radius"), - RNA_float_get(op->ptr, "depth"), 1, 0); - - return OPERATOR_FINISHED; -} - void MESH_OT_primitive_tube_add(wmOperatorType *ot) { /* identifiers */ ot->name= "Add Tube"; - ot->description= "Construct a cylindrical mesh (ends not filled)."; + ot->description= "Construct a tube mesh."; ot->idname= "MESH_OT_primitive_tube_add"; /* api callbacks */ @@ -1469,6 +1439,7 @@ void MESH_OT_primitive_tube_add(wmOperatorType *ot) RNA_def_int(ot->srna, "vertices", 32, INT_MIN, INT_MAX, "Vertices", "", 2, 500); RNA_def_float(ot->srna, "radius", 1.0f, 0.0, FLT_MAX, "Radius", "", 0.001, 100.00); RNA_def_float(ot->srna, "depth", 1.0f, 0.0, FLT_MAX, "Depth", "", 0.001, 100.00); + RNA_def_boolean(ot->srna, "cap_ends", 1, "Cap Ends", ""); } static int add_primitive_cone_exec(bContext *C, wmOperator *op) diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 98cfd2c8c92..8615f97f58f 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -69,7 +69,6 @@ void MESH_OT_separate(struct wmOperatorType *ot); void MESH_OT_primitive_plane_add(struct wmOperatorType *ot); void MESH_OT_primitive_cube_add(struct wmOperatorType *ot); void MESH_OT_primitive_circle_add(struct wmOperatorType *ot); -void MESH_OT_primitive_cylinder_add(struct wmOperatorType *ot); void MESH_OT_primitive_tube_add(struct wmOperatorType *ot); void MESH_OT_primitive_cone_add(struct wmOperatorType *ot); void MESH_OT_primitive_grid_add(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index da2d45bcd00..e49dc0a5869 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -88,7 +88,6 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_primitive_plane_add); WM_operatortype_append(MESH_OT_primitive_cube_add); WM_operatortype_append(MESH_OT_primitive_circle_add); - WM_operatortype_append(MESH_OT_primitive_cylinder_add); WM_operatortype_append(MESH_OT_primitive_tube_add); WM_operatortype_append(MESH_OT_primitive_cone_add); WM_operatortype_append(MESH_OT_primitive_grid_add); From 0ce295064907b42e3f3140fc498b78c71304e03f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 19:17:05 +0000 Subject: [PATCH 090/412] fix for crashing when unlinking a world from a scene --- source/blender/editors/space_buttons/buttons_context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index bc0cc536857..d7375ee4e55 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -114,6 +114,8 @@ static int buttons_context_path_scene(ButsContextPath *path) return RNA_struct_is_a(ptr->type, &RNA_Scene); } +/* note: this function can return 1 without adding a world to the path + * so the buttons stay visible, but be sure to check the ID type if a ID_WO */ static int buttons_context_path_world(ButsContextPath *path) { Scene *scene; @@ -372,7 +374,7 @@ static int buttons_context_path_texture(const bContext *C, ButsContextPath *path else if((path->flag & SB_WORLD_TEX) && buttons_context_path_world(path)) { wo= path->ptr[path->len-1].data; - if(wo) { + if(wo && GS(wo->id.name)==ID_WO) { tex= give_current_world_texture(wo); RNA_id_pointer_create(&tex->id, &path->ptr[path->len]); From 059d4f181cf2b0dfe735bbbcc35fa945ee466cc8 Mon Sep 17 00:00:00 2001 From: Andrea Weikert Date: Mon, 19 Oct 2009 19:26:28 +0000 Subject: [PATCH 091/412] file browser * the code for BLI_is_dir can be shared on Windows, no need of extra implementation - error was usage of BLI_exists instead of BLI_exist! * left BLI_is_dir in since it's nicer to read and understand * also removed deprecated outliner_header from MSVC projectfiles. --- projectfiles_vc9/blender/editors/ED_editors.vcproj | 4 ---- source/blender/blenlib/intern/storage.c | 4 ---- 2 files changed, 8 deletions(-) diff --git a/projectfiles_vc9/blender/editors/ED_editors.vcproj b/projectfiles_vc9/blender/editors/ED_editors.vcproj index c49e817196e..4a8063bb5f0 100644 --- a/projectfiles_vc9/blender/editors/ED_editors.vcproj +++ b/projectfiles_vc9/blender/editors/ED_editors.vcproj @@ -539,10 +539,6 @@ RelativePath="..\..\..\source\blender\editors\space_outliner\outliner.c" > - - diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c index b48b6784c23..dbf1f5100a6 100644 --- a/source/blender/blenlib/intern/storage.c +++ b/source/blender/blenlib/intern/storage.c @@ -470,11 +470,7 @@ int BLI_exist(char *name) /* would be better in fileops.c except that it needs stat.h so add here */ int BLI_is_dir(char *file) { -#ifdef WIN32 - return 1; /* XXX - TODO */ -#else return S_ISDIR(BLI_exist(file)); -#endif } LinkNode *BLI_read_file_as_lines(char *name) From fcc27ca8aabc272df8f0e2a15c1d35ced6c45863 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 19 Oct 2009 21:34:38 +0000 Subject: [PATCH 092/412] separate image strip length popup --- .../blender/editors/space_sequencer/sequencer_edit.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index 4e71e4883d1..80b018eec66 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -1970,11 +1970,7 @@ static int sequencer_separate_images_exec(bContext *C, wmOperator *op) Strip *strip_new; StripElem *se, *se_new; int start_ofs, cfra, frame_end; - static int step= 1; - -// add_numbut(0, NUM|INT, "Image Duration:", 1, 256, &step, NULL); -// if (!do_clever_numbuts("Separate Images", 1, REDRAW)) -// return; + int step= RNA_int_get(op->ptr, "length"); if(ed==NULL) return OPERATOR_CANCELLED; @@ -2044,13 +2040,15 @@ void SEQUENCER_OT_images_separate(wmOperatorType *ot) ot->description="On image sequences strips, it return a strip for each image."; /* api callbacks */ - ot->invoke= WM_operator_confirm; + ot->invoke= WM_operator_props_popup; ot->exec= sequencer_separate_images_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_int(ot->srna, "length", 1, 1, 1000, "Length", "Length of each frame", 1, INT_MAX); } From b8141658a8e751f3c602c1d2ef228752d766283c Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Tue, 20 Oct 2009 00:45:51 +0000 Subject: [PATCH 093/412] etch-a-ton RNA and UI, back in 2.5 --- release/scripts/ui/space_view3d.py | 43 ++++++++++ .../blender/editors/armature/armature_ops.c | 32 +++---- source/blender/makesdna/DNA_scene_types.h | 1 + source/blender/makesrna/intern/rna_scene.c | 86 +++++++++++++++++++ 4 files changed, 146 insertions(+), 16 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 9fd9e1283cd..3dac3700c94 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1379,6 +1379,48 @@ class VIEW3D_PT_transform_orientations(bpy.types.Panel): col.itemR(orientation, "name") col.itemO("tfm.delete_orientation", text="Delete") +class VIEW3D_PT_etch_a_ton(bpy.types.Panel): + __space_type__ = 'VIEW_3D' + __region_type__ = 'UI' + __label__ = "Skeleton Sketching" + __default_closed__ = True + + def poll(self, context): + scene = context.space_data + ob = context.active_object + return scene and ob and ob.type == 'ARMATURE' and ob.mode == 'EDIT' + + def draw_header(self, context): + layout = self.layout + toolsettings = context.scene.tool_settings + + layout.itemR(toolsettings, "bone_sketching", text="") + + def draw(self, context): + layout = self.layout + toolsettings = context.scene.tool_settings + + col = layout.column() + + col.itemR(toolsettings, "etch_quick") + col.itemR(toolsettings, "etch_overdraw") + + col.itemR(toolsettings, "etch_convert_mode") + + if toolsettings.etch_convert_mode == "LENGTH": + col.itemR(toolsettings, "etch_length_limit") + elif toolsettings.etch_convert_mode == "ADAPTIVE": + col.itemR(toolsettings, "etch_adaptive_limit") + elif toolsettings.etch_convert_mode == "FIXED": + col.itemR(toolsettings, "etch_subdivision_number") + elif toolsettings.etch_convert_mode == "RETARGET": + col.itemR(toolsettings, "etch_template") + col.itemR(toolsettings, "etch_roll_mode") + col.itemR(toolsettings, "etch_autoname") + col.itemR(toolsettings, "etch_number") + col.itemR(toolsettings, "etch_side") + + # Operators class OBJECT_OT_select_pattern(bpy.types.Operator): @@ -1497,6 +1539,7 @@ bpy.types.register(VIEW3D_PT_3dview_meshdisplay) bpy.types.register(VIEW3D_PT_3dview_curvedisplay) bpy.types.register(VIEW3D_PT_background_image) bpy.types.register(VIEW3D_PT_transform_orientations) +bpy.types.register(VIEW3D_PT_etch_a_ton) bpy.ops.add(OBJECT_OT_select_pattern) diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 2bf414ef969..3a7ad8fc5ec 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -214,6 +214,22 @@ void ED_keymap_armature(wmKeyConfig *keyconf) keymap= WM_keymap_find(keyconf, "Armature", 0, 0); keymap->poll= ED_operator_editarmature; + /* Armature -> Etch-A-Ton ------------------------ */ + WM_keymap_add_item(keymap, "SKETCH_OT_delete", XKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SKETCH_OT_delete", DELKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SKETCH_OT_finish_stroke", SELECTMOUSE, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SKETCH_OT_cancel_stroke", ESCKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SKETCH_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); + + /* sketch poll checks mode */ + WM_keymap_add_item(keymap, "SKETCH_OT_gesture", ACTIONMOUSE, KM_PRESS, KM_SHIFT, 0); + WM_keymap_add_item(keymap, "SKETCH_OT_draw_stroke", ACTIONMOUSE, KM_PRESS, 0, 0); + kmi = WM_keymap_add_item(keymap, "SKETCH_OT_draw_stroke", ACTIONMOUSE, KM_PRESS, KM_CTRL, 0); + RNA_boolean_set(kmi->ptr, "snap", 1); + WM_keymap_add_item(keymap, "SKETCH_OT_draw_preview", MOUSEMOVE, KM_ANY, 0, 0); + kmi = WM_keymap_add_item(keymap, "SKETCH_OT_draw_preview", MOUSEMOVE, KM_ANY, KM_CTRL, 0); + RNA_boolean_set(kmi->ptr, "snap", 1); + /* only set in editmode armature, by space_view3d listener */ // WM_keymap_add_item(keymap, "ARMATURE_OT_hide", HKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_align", AKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); @@ -278,22 +294,6 @@ void ED_keymap_armature(wmKeyConfig *keyconf) /* 2) set roll */ kmi= WM_keymap_add_item(keymap, "TFM_OT_transform", RKEY, KM_PRESS, KM_CTRL, 0); RNA_enum_set(kmi->ptr, "mode", TFM_BONE_ROLL); - - /* Armature -> Etch-A-Ton ------------------------ */ - WM_keymap_add_item(keymap, "SKETCH_OT_delete", XKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "SKETCH_OT_delete", DELKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "SKETCH_OT_finish_stroke", SELECTMOUSE, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "SKETCH_OT_cancel_stroke", ESCKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "SKETCH_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); - - /* sketch poll checks mode */ - WM_keymap_add_item(keymap, "SKETCH_OT_gesture", ACTIONMOUSE, KM_PRESS, KM_SHIFT, 0); - WM_keymap_add_item(keymap, "SKETCH_OT_draw_stroke", ACTIONMOUSE, KM_PRESS, 0, 0); - kmi = WM_keymap_add_item(keymap, "SKETCH_OT_draw_stroke", ACTIONMOUSE, KM_PRESS, KM_CTRL, 0); - RNA_boolean_set(kmi->ptr, "snap", 1); - WM_keymap_add_item(keymap, "SKETCH_OT_draw_preview", MOUSEMOVE, KM_ANY, 0, 0); - kmi = WM_keymap_add_item(keymap, "SKETCH_OT_draw_preview", MOUSEMOVE, KM_ANY, KM_CTRL, 0); - RNA_boolean_set(kmi->ptr, "snap", 1); /* Pose ------------------------ */ /* only set in posemode, by space_view3d listener */ diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 38342be689a..f14f7b58bef 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -1169,6 +1169,7 @@ typedef enum SculptFlags { #define SK_RETARGET_AUTONAME 1 /* toolsettings->skgen_retarget_roll */ +#define SK_RETARGET_ROLL_NONE 0 #define SK_RETARGET_ROLL_VIEW 1 #define SK_RETARGET_ROLL_JOINT 2 diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index b9fd2926ca3..3ab147701df 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -95,6 +95,15 @@ static PointerRNA rna_Scene_objects_get(CollectionPropertyIterator *iter) return rna_pointer_inherit_refine(&iter->parent, &RNA_Object, ((Base*)internal->link)->object); } +static void rna_Scene_skgen_etch_template_set(PointerRNA *ptr, PointerRNA value) +{ + ToolSettings *ts = (ToolSettings*)ptr->data; + if(value.data && ((Object*)value.data)->type == OB_ARMATURE) + ts->skgen_template = value.data; + else + ts->skgen_template = NULL; +} + static PointerRNA rna_Scene_active_object_get(PointerRNA *ptr) { Scene *scene= (Scene*)ptr->data; @@ -523,6 +532,19 @@ static void rna_def_tool_settings(BlenderRNA *brna) {AUTOKEY_MODE_EDITKEYS, "REPLACE_KEYS", 0, "Replace", ""}, {0, NULL, 0, NULL, NULL}}; + static EnumPropertyItem retarget_roll_items[] = { + {SK_RETARGET_ROLL_NONE, "NONE", 0, "None", "Don't adjust roll."}, + {SK_RETARGET_ROLL_VIEW, "VIEW", 0, "View", "Roll bones to face the view."}, + {SK_RETARGET_ROLL_JOINT, "JOINT", 0, "Joint", "Roll bone to original joint plane offset."}, + {0, NULL, 0, NULL, NULL}}; + + static EnumPropertyItem sketch_convert_items[] = { + {SK_CONVERT_CUT_FIXED, "FIXED", 0, "Fixed", "Subdivide stroke in fixed number of bones."}, + {SK_CONVERT_CUT_LENGTH, "LENGTH", 0, "Length", "Subdivide stroke in bones of specific length."}, + {SK_CONVERT_CUT_ADAPTATIVE, "ADAPTIVE", 0, "Adaptive", "Subdivide stroke adaptively, with more subdivision in curvier parts."}, + {SK_CONVERT_RETARGET, "RETARGET", 0, "Retarget", "Retarget template bone chain to stroke."}, + {0, NULL, 0, NULL, NULL}}; + srna= RNA_def_struct(brna, "ToolSettings", NULL); RNA_def_struct_ui_text(srna, "Tool Settings", ""); @@ -638,6 +660,70 @@ static void rna_def_tool_settings(BlenderRNA *brna) prop= RNA_def_property(srna, "vertex_group_weight", PROP_FLOAT, PROP_FACTOR); RNA_def_property_float_sdna(prop, NULL, "vgroup_weight"); RNA_def_property_ui_text(prop, "Vertex Group Weight", "Weight to assign in vertex groups."); + + /* etch-a-ton */ + prop= RNA_def_property(srna, "bone_sketching", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "bone_sketching", BONE_SKETCHING); + RNA_def_property_ui_text(prop, "Use Bone Sketching", "DOC BROKEN"); +// RNA_def_property_ui_icon(prop, ICON_EDIT, 0); + + prop= RNA_def_property(srna, "etch_quick", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "bone_sketching", BONE_SKETCHING_QUICK); + RNA_def_property_ui_text(prop, "Quick Sketching", "DOC BROKEN"); + + prop= RNA_def_property(srna, "etch_overdraw", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "bone_sketching", BONE_SKETCHING_ADJUST); + RNA_def_property_ui_text(prop, "Overdraw Sketching", "DOC BROKEN"); + + prop= RNA_def_property(srna, "etch_autoname", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "skgen_retarget_options", SK_RETARGET_AUTONAME); + RNA_def_property_ui_text(prop, "Autoname", "DOC BROKEN"); + + prop= RNA_def_property(srna, "etch_number", PROP_STRING, PROP_NONE); + RNA_def_property_string_sdna(prop, NULL, "skgen_num_string"); + RNA_def_property_ui_text(prop, "Number", "DOC BROKEN"); + + prop= RNA_def_property(srna, "etch_side", PROP_STRING, PROP_NONE); + RNA_def_property_string_sdna(prop, NULL, "skgen_num_string"); + RNA_def_property_ui_text(prop, "Side", "DOC BROKEN"); + + prop= RNA_def_property(srna, "etch_template", PROP_POINTER, PROP_NONE); + RNA_def_property_pointer_sdna(prop, NULL, "skgen_template"); + RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_struct_type(prop, "Object"); + RNA_def_property_pointer_funcs(prop, NULL, "rna_Scene_skgen_etch_template_set", NULL); + RNA_def_property_ui_text(prop, "Template", "Template armature that will be retargeted to the stroke."); + + prop= RNA_def_property(srna, "etch_subdivision_number", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "skgen_subdivision_number"); + RNA_def_property_range(prop, 1, 10000); + RNA_def_property_ui_text(prop, "Subdivisions", "Number of bones in the subdivided stroke."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); + + prop= RNA_def_property(srna, "etch_adaptive_limit", PROP_FLOAT, PROP_FACTOR); + RNA_def_property_float_sdna(prop, NULL, "skgen_correlation_limit"); + RNA_def_property_range(prop, 0.00001, 1.0); + RNA_def_property_ui_range(prop, 0.01, 1.0, 0.01, 2); + RNA_def_property_ui_text(prop, "Limit", "Number of bones in the subdivided stroke."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); + + prop= RNA_def_property(srna, "etch_length_limit", PROP_FLOAT, PROP_DISTANCE); + RNA_def_property_float_sdna(prop, NULL, "skgen_length_limit"); + RNA_def_property_range(prop, 0.00001, 100000.0); + RNA_def_property_ui_range(prop, 0.001, 100.0, 0.1, 3); + RNA_def_property_ui_text(prop, "Length", "Number of bones in the subdivided stroke."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); + + prop= RNA_def_property(srna, "etch_roll_mode", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "skgen_retarget_roll"); + RNA_def_property_enum_items(prop, retarget_roll_items); + RNA_def_property_ui_text(prop, "Retarget roll mode", "Method used to adjust the roll of bones when retargeting."); + + prop= RNA_def_property(srna, "etch_convert_mode", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "bone_sketching_convert"); + RNA_def_property_enum_items(prop, sketch_convert_items); + RNA_def_property_ui_text(prop, "Stroke conversion method", "Method used to convert stroke to bones."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); } From 9e6d1c6cfaf5e06d734a2a1124bd4ee3c030fd38 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Tue, 20 Oct 2009 02:20:00 +0000 Subject: [PATCH 094/412] Rearrange includes, and more fill_paths code. --- source/blender/blenlib/intern/BLI_bfile.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/source/blender/blenlib/intern/BLI_bfile.c b/source/blender/blenlib/intern/BLI_bfile.c index 4de1e6ce4a1..093168bbb82 100644 --- a/source/blender/blenlib/intern/BLI_bfile.c +++ b/source/blender/blenlib/intern/BLI_bfile.c @@ -27,12 +27,12 @@ #include #include #ifndef WIN32 - #include + #include + #include #else - #include - #include "BLI_winstuff.h" + #include + #include "BLI_winstuff.h" #endif -#include #include #include #include @@ -465,13 +465,16 @@ char* find_in_pathlist(char* filename, char* pathlist) { */ void fill_paths(BFILE *bfile, const char *path) { char* source_path = NULL; + char* temp_path = NULL; int bflags = bfile->uflags; if(bflags & BFILE_NORMAL || bflags & BFILE_RAW) { // bfile->fpath is path with // replaced } if(bflags & BFILE_TEMP) { -// bfile->fpath is tempdir+path + temp_path = MEM_mallocN(MAXPATHLEN, "bfile-fpath-1"); + snprintf(temp_path, MAXPATHLEN, "%s/%s", getenv("BLENDER_TEMP"), path); + bfile->fpath = temp_path; } if(bflags & BFILE_CONFIG) { // bfile->fpath is userdir+version+path @@ -482,7 +485,9 @@ void fill_paths(BFILE *bfile, const char *path) { if(bfile->classf & BCF_WRITE && !(bflags & BFILE_RAW)) { /* Generate temp path */ - // bfile->tpath is fpath+randstring + temp_path = MEM_mallocN(MAXPATHLEN, "bfile-fpath-2"); + snprintf(temp_path, MAXPATHLEN, "%s.XXXXXX", path); + bfile->tpath = mkdtemp(temp_path); if(!(bfile->classf & BCF_DISCARD)) { /* Copy data to tpath */ if(source_path) { From 7f133f65b2049546adddec77720c90aafb9add97 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 03:44:35 +0000 Subject: [PATCH 095/412] Bugfix #19663: Renaming named data doesn't fix F-Curves RNA Paths used in F-Curve, Drivers, etc. now get renamed when some data that they use gets renamed. This only works when things like Bones, Constraints, Shape Keys, and Modifiers get renamed, but other cases can get added easily. The code here only performs simple string replacements, so there is the potential for problems when several sets of data with the same names are present. For example, if there are multiple armatures with bones that have the same names, renaming a bone on one armature (with a bone on another armature having the same name) will break all the drivers on the other one, even though they aren't really connected. However, I don't expect the aforementioned scenario to really be a problem in most production scenarios. --- source/blender/blenkernel/BKE_animsys.h | 10 ++ source/blender/blenkernel/intern/anim_sys.c | 156 +++++++++++++++--- .../blender/editors/armature/editarmature.c | 11 +- source/blender/makesrna/RNA_access.h | 2 + source/blender/makesrna/intern/rna_access.c | 75 +++++++++ .../blender/makesrna/intern/rna_constraint.c | 7 + source/blender/makesrna/intern/rna_key.c | 24 +++ source/blender/makesrna/intern/rna_modifier.c | 7 + 8 files changed, 269 insertions(+), 23 deletions(-) diff --git a/source/blender/blenkernel/BKE_animsys.h b/source/blender/blenkernel/BKE_animsys.h index cc5b4dfdcaf..045095567bc 100644 --- a/source/blender/blenkernel/BKE_animsys.h +++ b/source/blender/blenkernel/BKE_animsys.h @@ -67,6 +67,7 @@ struct KeyingSet *BKE_keyingset_add(struct ListBase *list, const char name[], sh /* Add a destination to a KeyingSet */ void BKE_keyingset_add_destination(struct KeyingSet *ks, struct ID *id, const char group_name[], const char rna_path[], int array_index, short flag, short groupmode); +/* Find the destination matching the criteria given */ struct KS_Path *BKE_keyingset_find_destination(struct KeyingSet *ks, struct ID *id, const char group_name[], const char rna_path[], int array_index, int group_mode); /* Copy all KeyingSets in the given list */ @@ -78,6 +79,15 @@ void BKE_keyingset_free(struct KeyingSet *ks); /* Free all the KeyingSets in the given list */ void BKE_keyingsets_free(struct ListBase *list); +/* ************************************* */ +/* Path Fixing API */ + +/* Fix all the paths for the given ID+AnimData */ +void BKE_animdata_fix_paths_rename(struct ID *owner_id, struct AnimData *adt, char *prefix, char *oldName, char *newName); + +/* Fix all the paths for the entire database... */ +void BKE_all_animdata_fix_paths_rename(char *prefix, char *oldName, char *newName); + /* ************************************* */ // TODO: overrides, remapping, and path-finding api's diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index 47f5dd116d7..316ac484484 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -238,24 +238,69 @@ void BKE_animdata_make_local(AnimData *adt) /* Path Validation -------------------------------------------- */ -#if 0 -/* Check if some given RNA Path needs fixing - free the given path and set a new one as appropriate */ -static char *rna_path_rename_fix (ID *owner_id, PointerRNA *modPtr, char *newName, char *oldpath) +/* Check if some given RNA Path needs fixing - free the given path and set a new one as appropriate + * + * NOTE: it is assumed that the structure we're replacing is <["><"]> + * i.e. pose.pose_channels["Bone"] + */ +static char *rna_path_rename_fix (ID *owner_id, char *prefix, char *oldName, char *newName, char *oldpath) { + char *prefixPtr= strstr(oldpath, prefix); + char *oldNamePtr= strstr(oldpath, oldName); + int prefixLen= strlen(prefix); + int oldNameLen= strlen(oldName); + /* only start fixing the path if the prefix and oldName feature in the path, + * and prefix occurs immediately before oldName (the +2 should take care of any [") + */ + if ( (prefixPtr && oldNamePtr) && (prefixPtr+prefixLen+2 == oldNamePtr) ) { + DynStr *ds= BLI_dynstr_new(); + char *postfixPtr= oldNamePtr+oldNameLen+2; + char *newPath = NULL; + char oldChar; + + /* add the part of the string that goes up to the start of the prefix */ + if (prefixPtr > oldpath) { + oldChar= prefixPtr[0]; + prefixPtr[0]= 0; + BLI_dynstr_append(ds, oldpath); + prefixPtr[0]= oldChar; + } + + /* add the prefix, and opening brackets */ + BLI_dynstr_append(ds, prefix); + BLI_dynstr_append(ds, "[\""); + + /* add the new name */ + BLI_dynstr_append(ds, newName); + + /* add the closing brackets, then the postfix */ + BLI_dynstr_append(ds, "\"]"); + BLI_dynstr_append(ds, postfixPtr); + + /* create new path, and cleanup old data */ + newPath= BLI_dynstr_get_cstring(ds); + BLI_dynstr_free(ds); + + MEM_freeN(oldpath); + + /* return the new path */ + return newPath; + } - return oldpath; // FIXME!!! + /* the old path doesn't need to be changed */ + return oldpath; } /* Check RNA-Paths for a list of F-Curves */ -static void fcurves_path_rename_fix (ID *owner_id, PointerRNA *modPtr, char *newName, ListBase *curves) +static void fcurves_path_rename_fix (ID *owner_id, char *prefix, char *oldName, char *newName, ListBase *curves) { FCurve *fcu; /* we need to check every curve... */ for (fcu= curves->first; fcu; fcu= fcu->next) { /* firstly, handle the F-Curve's own path */ - fcu->rna_path= rna_path_rename_fix(owner_id, modPtr, newName, fcu->rna_path); + fcu->rna_path= rna_path_rename_fix(owner_id, prefix, oldName, newName, fcu->rna_path); /* driver? */ if (fcu->driver) { @@ -264,14 +309,14 @@ static void fcurves_path_rename_fix (ID *owner_id, PointerRNA *modPtr, char *new /* driver targets */ for (dtar= driver->targets.first; dtar; dtar=dtar->next) { - dtat->rna_path= rna_path_rename_fix(dtar->id, modPtr, newName, dtar->rna_path); + dtar->rna_path= rna_path_rename_fix(dtar->id, prefix, oldName, newName, dtar->rna_path); } } } } /* Fix all RNA-Paths for Actions linked to NLA Strips */ -static void nlastrips_path_rename_fix (ID *owner_id, PointerRNA *modPtr, char *newName, ListBase *strips) +static void nlastrips_path_rename_fix (ID *owner_id, char *prefix, char *oldName, char *newName, ListBase *strips) { NlaStrip *strip; @@ -279,42 +324,113 @@ static void nlastrips_path_rename_fix (ID *owner_id, PointerRNA *modPtr, char *n for (strip= strips->first; strip; strip= strip->next) { /* fix strip's action */ if (strip->act) - fcurves_path_rename_fix(owner_id, modPtr, newName, &strip->act->curves); + fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &strip->act->curves); /* ignore own F-Curves, since those are local... */ /* check sub-strips (if metas) */ - nlastrips_path_rename_fix(owner_id, modPtr, newName, &strip->strips); + nlastrips_path_rename_fix(owner_id, prefix, oldName, newName, &strip->strips); } } /* Fix all RNA-Paths in the AnimData block used by the given ID block - * - the pointer of interest must not have had its new name assigned already, otherwise - * path matching for this will never work + * NOTE: it is assumed that the structure we're replacing is <["><"]> + * i.e. pose.pose_channels["Bone"] */ -void BKE_animdata_fix_paths_rename (ID *owner_id, PointerRNA *modPtr, char *newName) +void BKE_animdata_fix_paths_rename (ID *owner_id, AnimData *adt, char *prefix, char *oldName, char *newName) { - AnimData *adt= BKE_animdata_from_id(owner_id); NlaTrack *nlt; /* if no AnimData, no need to proceed */ - if (ELEM4(NULL, owner_id, adt, modPtr, newName)) + if (ELEM4(NULL, owner_id, adt, oldName, newName)) return; /* Active action and temp action */ if (adt->action) - fcurves_path_rename_fix(owner_id, modPtr, newName, &adt->action->curves); + fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->action->curves); if (adt->tmpact) - fcurves_path_rename_fix(owner_id, modPtr, newName, &adt->tmpact->curves); + fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->tmpact->curves); /* Drivers - Drivers are really F-Curves */ - fcurves_path_rename_fix(owner_id, modPtr, newName, &adt->drivers); + fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->drivers); /* NLA Data - Animation Data for Strips */ - for (nlt= adt->nla_tracks.first; nlt; nlt= nlt->next) { + for (nlt= adt->nla_tracks.first; nlt; nlt= nlt->next) + nlastrips_path_rename_fix(owner_id, prefix, oldName, newName, &nlt->strips); +} + +/* Fix all RNA-Paths throughout the database (directly access the Global.main version) + * NOTE: it is assumed that the structure we're replacing is <["><"]> + * i.e. pose.pose_channels["Bone"] + */ +void BKE_all_animdata_fix_paths_rename (char *prefix, char *oldName, char *newName) +{ + Main *mainptr= G.main; + ID *id; + + /* macro for less typing + * - whether animdata exists is checked for by the main renaming callback, though taking + * this outside of the function may make things slightly faster? + */ +#define RENAMEFIX_ANIM_IDS(first) \ + for (id= first; id; id= id->next) { \ + AnimData *adt= BKE_animdata_from_id(id); \ + BKE_animdata_fix_paths_rename(id, adt, prefix, oldName, newName);\ + } + + /* nodes */ + RENAMEFIX_ANIM_IDS(mainptr->nodetree.first); + + /* textures */ + RENAMEFIX_ANIM_IDS(mainptr->tex.first); + + /* lamps */ + RENAMEFIX_ANIM_IDS(mainptr->lamp.first); + + /* materials */ + RENAMEFIX_ANIM_IDS(mainptr->mat.first); + + /* cameras */ + RENAMEFIX_ANIM_IDS(mainptr->camera.first); + + /* shapekeys */ + RENAMEFIX_ANIM_IDS(mainptr->key.first); + + /* metaballs */ + RENAMEFIX_ANIM_IDS(mainptr->mball.first); + + /* curves */ + RENAMEFIX_ANIM_IDS(mainptr->curve.first); + + /* armatures */ + RENAMEFIX_ANIM_IDS(mainptr->armature.first); + + /* meshes */ + // TODO... + + /* particles */ + RENAMEFIX_ANIM_IDS(mainptr->particle.first); + + /* objects */ + RENAMEFIX_ANIM_IDS(mainptr->object.first); + + /* worlds */ + RENAMEFIX_ANIM_IDS(mainptr->world.first); + + /* scenes */ + for (id= mainptr->scene.first; id; id= id->next) { + AnimData *adt= BKE_animdata_from_id(id); + Scene *scene= (Scene *)id; + /* do compositing nodes first (since these aren't included in main tree) */ + if (scene->nodetree) { + AnimData *adt2= BKE_animdata_from_id((ID *)scene->nodetree); + BKE_animdata_fix_paths_rename((ID *)scene->nodetree, adt2, prefix, oldName, newName); + } + + /* now fix scene animation data as per normal */ + BKE_animdata_fix_paths_rename((ID *)id, adt, prefix, oldName, newName); } } -#endif /* *********************************** */ /* KeyingSet API */ diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 0343fea5bfb..1c2ec920d41 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -5289,9 +5289,8 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) /* now check if we're in editmode, we need to find the unique name */ if (arm->edbo) { - EditBone *eBone; + EditBone *eBone= editbone_name_exists(arm->edbo, oldname); - eBone= editbone_name_exists(arm->edbo, oldname); if (eBone) { unique_editbone_name(arm->edbo, newname, NULL); BLI_strncpy(eBone->name, newname, MAXBONENAME); @@ -5302,7 +5301,7 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) Bone *bone= get_named_bone(arm, oldname); if (bone) { - unique_bone_name (arm, newname); + unique_bone_name(arm, newname); BLI_strncpy(bone->name, newname, MAXBONENAME); } else return; @@ -5379,6 +5378,12 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) BLI_strncpy(dg->name, newname, MAXBONENAME); } } + + /* Fix animation data attached to this object */ + if (ob->adt) { + /* posechannels only... */ + BKE_animdata_fix_paths_rename(&ob->id, ob->adt, "pose.pose_channels", oldname, newname); + } } /* do entire db - ipo's for the drivers */ diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 810fb110f7a..a3cdf29669f 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -704,6 +704,8 @@ char *RNA_path_back(const char *path); int RNA_path_resolve(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, PropertyRNA **r_prop); +int RNA_path_resolve_next(PointerRNA *ptr, char **path, + PointerRNA *r_ptr, PropertyRNA **r_prop); char *RNA_path_from_ID_to_struct(PointerRNA *ptr); char *RNA_path_from_ID_to_property(PointerRNA *ptr, PropertyRNA *prop); diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index 6cf2fd0c60f..a2202b36c0c 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -2216,6 +2216,81 @@ static char *rna_path_token(const char **path, char *fixedbuf, int fixedlen, int return buf; } +/* Resolve the given RNA path to find the next pointer+property pointed to in the path */ +// NOTE: this is the same as the code below, except that we don't have the while() loop to traverse the entire path +int RNA_path_resolve_next(PointerRNA *ptr, char **path, PointerRNA *r_ptr, PropertyRNA **r_prop) +{ + PropertyRNA *prop; + PointerRNA curptr, nextptr; + char fixedbuf[256], *token; + int len, intkey; + + prop= NULL; + curptr= *ptr; + + if ((path == NULL) || (*path == 0)) + return 0; + + /* look up property name in current struct */ + token= rna_path_token(&path, fixedbuf, sizeof(fixedbuf), 0); + if (!token) + return 0; + + prop= RNA_struct_find_property(&curptr, token); + + if(token != fixedbuf) + MEM_freeN(token); + if (!prop) + return 0; + + /* now look up the value of this property if it is a pointer or + * collection, otherwise return the property rna so that the + * caller can read the value of the property itself */ + if(RNA_property_type(prop) == PROP_POINTER) { + nextptr= RNA_property_pointer_get(&curptr, prop); + + if(nextptr.data) + curptr= nextptr; + else + return 0; + } + else if(RNA_property_type(prop) == PROP_COLLECTION && *path) { + /* resolve the lookup with [] brackets */ + token= rna_path_token(&path, fixedbuf, sizeof(fixedbuf), 1); + + if(!token) + return 0; + + len= strlen(token); + + /* check for "" to see if it is a string */ + if(len >= 2 && token[0] == '"' && token[len-1] == '"') { + /* strip away "" */ + token[len-1]= 0; + RNA_property_collection_lookup_string(&curptr, prop, token+1, &nextptr); + } + else { + /* otherwise do int lookup */ + intkey= atoi(token); + RNA_property_collection_lookup_int(&curptr, prop, intkey, &nextptr); + } + + if(token != fixedbuf) + MEM_freeN(token); + + if(nextptr.data) + curptr= nextptr; + else + return 0; + } + + *r_ptr= curptr; + *r_prop= prop; + + return 1; +} + +/* Resolve the given RNA path to find the pointer+property indicated at the end of the path */ int RNA_path_resolve(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, PropertyRNA **r_prop) { PropertyRNA *prop; diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 53c8db6ff0f..54097f25b99 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -155,6 +155,10 @@ static StructRNA *rna_ConstraintType_refine(struct PointerRNA *ptr) static void rna_Constraint_name_set(PointerRNA *ptr, const char *value) { bConstraint *con= ptr->data; + char oldname[32]; + + /* make a copy of the old name first */ + BLI_strncpy(oldname, con->name, sizeof(oldname)); /* copy the new name into the name slot */ BLI_strncpy(con->name, value, sizeof(con->name)); @@ -168,6 +172,9 @@ static void rna_Constraint_name_set(PointerRNA *ptr, const char *value) if (list) unique_constraint_name(con, list); } + + /* fix all the animation data which may link to this */ + BKE_all_animdata_fix_paths_rename("constraints", oldname, con->name); } static char *rna_Constraint_path(PointerRNA *ptr) diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index 230ed90c131..1e1eb9b055f 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -37,6 +37,8 @@ #ifdef RNA_RUNTIME +#include + #include "DNA_object_types.h" #include "DNA_scene_types.h" @@ -47,6 +49,27 @@ #include "WM_api.h" #include "WM_types.h" +void rna_ShapeKey_name_set(PointerRNA *ptr, const char *value) +{ + KeyBlock *kb= ptr->data; + char oldname[32]; + + /* make a copy of the old name first */ + BLI_strncpy(oldname, kb->name, sizeof(oldname)); + + /* copy the new name into the name slot */ + BLI_strncpy(kb->name, value, sizeof(kb->name)); + + /* make sure the name is truly unique */ + if (ptr->id.data) { + Key *key= ptr->id.data; + BLI_uniquename(&key->block, kb, "Key", '.', offsetof(KeyBlock, name), 32); + } + + /* fix all the animation data which may link to this */ + BKE_all_animdata_fix_paths_rename("keys", oldname, kb->name); +} + static void rna_ShapeKey_value_set(PointerRNA *ptr, float value) { KeyBlock *data= (KeyBlock*)ptr->data; @@ -353,6 +376,7 @@ static void rna_def_keyblock(BlenderRNA *brna) prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE); RNA_def_property_ui_text(prop, "Name", ""); + RNA_def_property_string_funcs(prop, NULL, NULL, "rna_ShapeKey_name_set"); RNA_def_struct_name_property(srna, prop); /* keys need to be sorted to edit this */ diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 1be610ee392..91df7800156 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -168,6 +168,10 @@ static StructRNA* rna_Modifier_refine(struct PointerRNA *ptr) void rna_Modifier_name_set(PointerRNA *ptr, const char *value) { ModifierData *md= ptr->data; + char oldname[32]; + + /* make a copy of the old name first */ + BLI_strncpy(oldname, md->name, sizeof(oldname)); /* copy the new name into the name slot */ BLI_strncpy(md->name, value, sizeof(md->name)); @@ -177,6 +181,9 @@ void rna_Modifier_name_set(PointerRNA *ptr, const char *value) Object *ob= ptr->id.data; modifier_unique_name(&ob->modifiers, md); } + + /* fix all the animation data which may link to this */ + BKE_all_animdata_fix_paths_rename("modifiers", oldname, md->name); } static char *rna_Modifier_path(PointerRNA *ptr) From 8bc1087e2eaff7c3cede2def027de672312af386 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 04:07:57 +0000 Subject: [PATCH 096/412] Fixes for Path-Renaming Fix: * Now the old/new names get tagged with [" "] before the search and replace operation, which should alleviate problems with searching for 'bone' and ending up with all instances of 'boney' 'boney.r' etc. also getting renamed. * Cleaned up some compiler warnings, and removed an unused function from an earlier attempt at this work. --- source/blender/blenkernel/intern/anim_sys.c | 33 +++++---- .../blender/editors/armature/editarmature.c | 1 + source/blender/makesrna/RNA_access.h | 2 - source/blender/makesrna/intern/rna_access.c | 74 ------------------- .../blender/makesrna/intern/rna_constraint.c | 1 + source/blender/makesrna/intern/rna_key.c | 1 + source/blender/makesrna/intern/rna_modifier.c | 1 + 7 files changed, 23 insertions(+), 90 deletions(-) diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index 316ac484484..7088081d66f 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -239,9 +239,7 @@ void BKE_animdata_make_local(AnimData *adt) /* Path Validation -------------------------------------------- */ /* Check if some given RNA Path needs fixing - free the given path and set a new one as appropriate - * - * NOTE: it is assumed that the structure we're replacing is <["><"]> - * i.e. pose.pose_channels["Bone"] + * NOTE: we assume that oldName and newName have [" "] padding around them */ static char *rna_path_rename_fix (ID *owner_id, char *prefix, char *oldName, char *newName, char *oldpath) { @@ -253,9 +251,9 @@ static char *rna_path_rename_fix (ID *owner_id, char *prefix, char *oldName, cha /* only start fixing the path if the prefix and oldName feature in the path, * and prefix occurs immediately before oldName (the +2 should take care of any [") */ - if ( (prefixPtr && oldNamePtr) && (prefixPtr+prefixLen+2 == oldNamePtr) ) { + if ( (prefixPtr && oldNamePtr) && (prefixPtr+prefixLen == oldNamePtr) ) { DynStr *ds= BLI_dynstr_new(); - char *postfixPtr= oldNamePtr+oldNameLen+2; + char *postfixPtr= oldNamePtr+oldNameLen; char *newPath = NULL; char oldChar; @@ -267,15 +265,13 @@ static char *rna_path_rename_fix (ID *owner_id, char *prefix, char *oldName, cha prefixPtr[0]= oldChar; } - /* add the prefix, and opening brackets */ + /* add the prefix */ BLI_dynstr_append(ds, prefix); - BLI_dynstr_append(ds, "[\""); - /* add the new name */ + /* add the new name (complete with brackets) */ BLI_dynstr_append(ds, newName); - /* add the closing brackets, then the postfix */ - BLI_dynstr_append(ds, "\"]"); + /* add the postfix */ BLI_dynstr_append(ds, postfixPtr); /* create new path, and cleanup old data */ @@ -339,23 +335,32 @@ static void nlastrips_path_rename_fix (ID *owner_id, char *prefix, char *oldName void BKE_animdata_fix_paths_rename (ID *owner_id, AnimData *adt, char *prefix, char *oldName, char *newName) { NlaTrack *nlt; + char *oldN, *newN; /* if no AnimData, no need to proceed */ if (ELEM4(NULL, owner_id, adt, oldName, newName)) return; + /* pad the names with [" "] so that only exact matches are made */ + oldN= BLI_sprintfN("[\"%s\"]", oldName); + newN= BLI_sprintfN("[\"%s\"]", newName); + /* Active action and temp action */ if (adt->action) - fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->action->curves); + fcurves_path_rename_fix(owner_id, prefix, oldN, newN, &adt->action->curves); if (adt->tmpact) - fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->tmpact->curves); + fcurves_path_rename_fix(owner_id, prefix, oldN, newN, &adt->tmpact->curves); /* Drivers - Drivers are really F-Curves */ - fcurves_path_rename_fix(owner_id, prefix, oldName, newName, &adt->drivers); + fcurves_path_rename_fix(owner_id, prefix, oldN, newN, &adt->drivers); /* NLA Data - Animation Data for Strips */ for (nlt= adt->nla_tracks.first; nlt; nlt= nlt->next) - nlastrips_path_rename_fix(owner_id, prefix, oldName, newName, &nlt->strips); + nlastrips_path_rename_fix(owner_id, prefix, oldN, newN, &nlt->strips); + + /* free the temp names */ + MEM_freeN(oldN); + MEM_freeN(newN); } /* Fix all RNA-Paths throughout the database (directly access the Global.main version) diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 1c2ec920d41..b92b69c4e8e 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -55,6 +55,7 @@ #include "BLI_editVert.h" #include "BLI_ghash.h" +#include "BKE_animsys.h" #include "BKE_action.h" #include "BKE_armature.h" #include "BKE_constraint.h" diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index a3cdf29669f..810fb110f7a 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -704,8 +704,6 @@ char *RNA_path_back(const char *path); int RNA_path_resolve(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, PropertyRNA **r_prop); -int RNA_path_resolve_next(PointerRNA *ptr, char **path, - PointerRNA *r_ptr, PropertyRNA **r_prop); char *RNA_path_from_ID_to_struct(PointerRNA *ptr); char *RNA_path_from_ID_to_property(PointerRNA *ptr, PropertyRNA *prop); diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index a2202b36c0c..525218c5185 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -2216,80 +2216,6 @@ static char *rna_path_token(const char **path, char *fixedbuf, int fixedlen, int return buf; } -/* Resolve the given RNA path to find the next pointer+property pointed to in the path */ -// NOTE: this is the same as the code below, except that we don't have the while() loop to traverse the entire path -int RNA_path_resolve_next(PointerRNA *ptr, char **path, PointerRNA *r_ptr, PropertyRNA **r_prop) -{ - PropertyRNA *prop; - PointerRNA curptr, nextptr; - char fixedbuf[256], *token; - int len, intkey; - - prop= NULL; - curptr= *ptr; - - if ((path == NULL) || (*path == 0)) - return 0; - - /* look up property name in current struct */ - token= rna_path_token(&path, fixedbuf, sizeof(fixedbuf), 0); - if (!token) - return 0; - - prop= RNA_struct_find_property(&curptr, token); - - if(token != fixedbuf) - MEM_freeN(token); - if (!prop) - return 0; - - /* now look up the value of this property if it is a pointer or - * collection, otherwise return the property rna so that the - * caller can read the value of the property itself */ - if(RNA_property_type(prop) == PROP_POINTER) { - nextptr= RNA_property_pointer_get(&curptr, prop); - - if(nextptr.data) - curptr= nextptr; - else - return 0; - } - else if(RNA_property_type(prop) == PROP_COLLECTION && *path) { - /* resolve the lookup with [] brackets */ - token= rna_path_token(&path, fixedbuf, sizeof(fixedbuf), 1); - - if(!token) - return 0; - - len= strlen(token); - - /* check for "" to see if it is a string */ - if(len >= 2 && token[0] == '"' && token[len-1] == '"') { - /* strip away "" */ - token[len-1]= 0; - RNA_property_collection_lookup_string(&curptr, prop, token+1, &nextptr); - } - else { - /* otherwise do int lookup */ - intkey= atoi(token); - RNA_property_collection_lookup_int(&curptr, prop, intkey, &nextptr); - } - - if(token != fixedbuf) - MEM_freeN(token); - - if(nextptr.data) - curptr= nextptr; - else - return 0; - } - - *r_ptr= curptr; - *r_prop= prop; - - return 1; -} - /* Resolve the given RNA path to find the pointer+property indicated at the end of the path */ int RNA_path_resolve(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, PropertyRNA **r_prop) { diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 54097f25b99..a820073d385 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -95,6 +95,7 @@ EnumPropertyItem constraint_ik_axisref_items[] ={ #ifdef RNA_RUNTIME +#include "BKE_animsys.h" #include "BKE_action.h" #include "BKE_constraint.h" #include "BKE_context.h" diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index 1e1eb9b055f..9daf1155149 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -42,6 +42,7 @@ #include "DNA_object_types.h" #include "DNA_scene_types.h" +#include "BKE_animsys.h" #include "BKE_depsgraph.h" #include "BKE_key.h" #include "BKE_main.h" diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 91df7800156..6f45c8c2e20 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -37,6 +37,7 @@ #include "DNA_object_force.h" #include "DNA_scene_types.h" +#include "BKE_animsys.h" #include "BKE_bmesh.h" /* For BevelModifierData */ #include "BKE_smoke.h" /* For smokeModifier_free & smokeModifier_createType */ From cae71123e5b31b22913c8d143c6dacb3838c9f21 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 07:51:42 +0000 Subject: [PATCH 097/412] set the min size hints for x11 to prevent tiny windows messing up blenders internal ui layout --- intern/ghost/intern/GHOST_WindowX11.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index 95441e74771..d40ce4145f5 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -297,11 +297,13 @@ GHOST_WindowX11( // we want this window treated. XSizeHints * xsizehints = XAllocSizeHints(); - xsizehints->flags = USPosition | USSize; + xsizehints->flags = USPosition | USSize | PMinSize; xsizehints->x = left; xsizehints->y = top; xsizehints->width = width; xsizehints->height = height; + xsizehints->min_width= 320; // size hints, could be made apart of the ghost api + xsizehints->min_height= 240; // limits are also arbitrary, but should not allow 1x1 window XSetWMNormalHints(m_display, m_window, xsizehints); XFree(xsizehints); @@ -382,7 +384,6 @@ GHOST_WindowX11( XSetWMHints(display, m_window, xwmhints ); XFree(xwmhints); // done setting the icon - setTitle(title); From 8a8e00af0770e019ac1d9e829a38efbf61cc9c51 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 08:01:17 +0000 Subject: [PATCH 098/412] Attempted fix for mingw buildinfo.c compile problem. --- source/creator/buildinfo.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c index 3473814360b..db24b50b82d 100644 --- a/source/creator/buildinfo.c +++ b/source/creator/buildinfo.c @@ -31,10 +31,13 @@ #include #endif +#define STRINGIFY(x) XSTRINGIFY(x) +#define XSTRINGIFY(x) #x + #ifdef BUILD_DATE -const char * build_date=BUILD_DATE; -const char * build_time=BUILD_TIME; -const char * build_rev=BUILD_REV; -const char * build_platform=BUILD_PLATFORM; -const char * build_type=BUILD_TYPE; +const char * build_date=STRINGIFY(BUILD_DATE); +const char * build_time=STRINGIFY(BUILD_TIME); +const char * build_rev=STRINGIFY(BUILD_REV); +const char * build_platform=STRINGIFY(BUILD_PLATFORM); +const char * build_type=STRINGIFY(BUILD_TYPE); #endif From 1f9d8826dbe94a8d616fe1d90efcb242b233cbd9 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Tue, 20 Oct 2009 08:13:12 +0000 Subject: [PATCH 099/412] Cocoa: - fix 10.6 API used in window resizing callback causing crash on 10.5 systems (Thx Jasper Mine for the bug report) - implemented min window size enforcement to prevent tiny windows messing up blender's internal ui layout (same as done by Campbell on X11, is a partial fix of bug #19550) - added (commented) code for enabling multithreaded opengl (this optimization is here for experimental tests, not for mainstream, so bleeding edge testers would want to uncomment the three "Multithreaded opengl code : uncomment for enabling" sections) --- intern/ghost/intern/GHOST_WindowCocoa.mm | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index c9b4fe40001..197b2de1f32 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -34,6 +34,10 @@ #include #endif +/***** Multithreaded opengl code : uncomment for enabling +#include +*/ + #include "GHOST_WindowCocoa.h" #include "GHOST_SystemCocoa.h" #include "GHOST_Debug.h" @@ -110,10 +114,14 @@ extern "C" { - (void)windowDidResize:(NSNotification *)notification { +#ifdef MAC_OS_X_VERSION_10_6 if (![[notification object] inLiveResize]) { //Send event only once, at end of resize operation (when user has released mouse button) +#endif systemCocoa->handleWindowEvent(GHOST_kEventWindowSize, associatedWindow); +#ifdef MAC_OS_X_VERSION_10_6 } +#endif /* Live resize ugly patch. Needed because live resize runs in a modal loop, not letting main loop run if ([[notification object] inLiveResize]) { systemCocoa->dispatchEvents(); @@ -194,6 +202,7 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( //Creates the window NSRect rect; + NSSize minSize; rect.origin.x = left; rect.origin.y = top; @@ -208,6 +217,11 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( return; } + //Forbid to resize the window below the blender defined minimum one + minSize.width = 320; + minSize.height = 240; + [m_window setContentMinSize:minSize]; + setTitle(title); @@ -719,6 +733,10 @@ GHOST_TSuccess GHOST_WindowCocoa::installDrawingContext(GHOST_TDrawingContextTyp NSOpenGLPixelFormat *pixelFormat; NSOpenGLContext *tmpOpenGLContext; + /***** Multithreaded opengl code : uncomment for enabling + CGLContextObj cglCtx; + */ + switch (type) { case GHOST_kDrawingContextTypeOpenGL: if (!getValid()) break; @@ -731,6 +749,13 @@ GHOST_TSuccess GHOST_WindowCocoa::installDrawingContext(GHOST_TDrawingContextTyp break; } + //Switch openGL to multhreaded mode + /******* Multithreaded opengl code : uncomment for enabling + cglCtx = (CGLContextObj)[tmpOpenGLContext CGLContextObj]; + if (CGLEnable(cglCtx, kCGLCEMPEngine) == kCGLNoError) + printf("\nSwitched openGL to multithreaded mode"); + */ + if (!s_firstOpenGLcontext) s_firstOpenGLcontext = tmpOpenGLContext; #ifdef WAIT_FOR_VSYNC /* wait for vsync, to avoid tearing artifacts */ From 2c455098056b4d9ce17dede92adb620f0ab0f3c9 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 08:47:28 +0000 Subject: [PATCH 100/412] Renamed "Save Key Configuration" to "Export Key Configuration", so it is clear this is different from "Save As Default". --- release/scripts/ui/space_userpref.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 46a56f7d133..c887289e45d 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -15,7 +15,7 @@ class USERPREF_HT_header(bpy.types.Header): if userpref.active_section == 'INPUT': layout.operator_context = "INVOKE_DEFAULT" - layout.itemO("wm.keyconfig_save", "Save Key Configuration...") + layout.itemO("wm.keyconfig_export", "Export Key Configuration...") class USERPREF_MT_view(bpy.types.Menu): __label__ = "View" @@ -548,10 +548,10 @@ bpy.types.register(USERPREF_PT_system) bpy.types.register(USERPREF_PT_file) bpy.types.register(USERPREF_PT_input) -class WM_OT_keyconfig_save(bpy.types.Operator): - "Save key configuration to a python script." - __idname__ = "wm.keyconfig_save" - __label__ = "Save Key Configuration..." +class WM_OT_keyconfig_export(bpy.types.Operator): + "Export key configuration to a python script." + __idname__ = "wm.keyconfig_export" + __label__ = "Export Key Configuration..." __props__ = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path to write file to.")] @@ -578,7 +578,7 @@ class WM_OT_keyconfig_save(bpy.types.Operator): result += ", " result += "]" else: - print("Save key configuration: can't write ", value) + print("Export key configuration: can't write ", value) return result @@ -688,7 +688,7 @@ class WM_OT_keyitem_remove(bpy.types.Operator): km.remove_item(kmi) return ('FINISHED',) -bpy.ops.add(WM_OT_keyconfig_save) +bpy.ops.add(WM_OT_keyconfig_export) bpy.ops.add(WM_OT_keymap_edit) bpy.ops.add(WM_OT_keymap_restore) bpy.ops.add(WM_OT_keyitem_add) From cf29a237230abd4547d4435d5a5ab4cdcd46b332 Mon Sep 17 00:00:00 2001 From: Benoit Bolsee Date: Tue, 20 Oct 2009 09:50:24 +0000 Subject: [PATCH 101/412] Use Eigen2 2.0 head version rather then 2.0.6. It contains various bug fix. --- extern/Eigen2/Eigen/src/Array/Functors.h | 4 ++ extern/Eigen2/Eigen/src/Array/PartialRedux.h | 5 ++ .../Eigen2/Eigen/src/Core/CommaInitializer.h | 3 ++ extern/Eigen2/Eigen/src/Core/Cwise.h | 3 ++ extern/Eigen2/Eigen/src/Core/Flagged.h | 3 ++ extern/Eigen2/Eigen/src/Core/Functors.h | 10 ++++ extern/Eigen2/Eigen/src/Core/Matrix.h | 4 +- extern/Eigen2/Eigen/src/Core/NestByValue.h | 3 ++ extern/Eigen2/Eigen/src/Core/Part.h | 4 +- extern/Eigen2/Eigen/src/Core/Swap.h | 3 ++ extern/Eigen2/Eigen/src/Core/util/Memory.h | 49 +++++++++++++------ extern/Eigen2/Eigen/src/SVD/SVD.h | 1 + extern/Eigen2/Eigen/src/Sparse/AmbiVector.h | 10 +++- .../Eigen/src/Sparse/DynamicSparseMatrix.h | 4 +- extern/Eigen2/Eigen/src/Sparse/SparseBlock.h | 5 ++ extern/Eigen2/Eigen/src/Sparse/SparseCwise.h | 3 ++ .../Eigen/src/Sparse/SparseCwiseBinaryOp.h | 11 +++++ .../Eigen/src/Sparse/SparseCwiseUnaryOp.h | 3 ++ .../Eigen/src/Sparse/SparseDiagonalProduct.h | 2 + .../Eigen2/Eigen/src/Sparse/SparseFlagged.h | 7 ++- extern/Eigen2/Eigen/src/Sparse/SparseMatrix.h | 11 +++-- .../Eigen2/Eigen/src/Sparse/SparseTranspose.h | 7 ++- extern/Eigen2/Eigen/src/Sparse/SparseVector.h | 3 ++ extern/Eigen2/eigen-update.sh | 2 +- 24 files changed, 135 insertions(+), 25 deletions(-) diff --git a/extern/Eigen2/Eigen/src/Array/Functors.h b/extern/Eigen2/Eigen/src/Array/Functors.h index 0aae7fd2c40..c2c325a788e 100644 --- a/extern/Eigen2/Eigen/src/Array/Functors.h +++ b/extern/Eigen2/Eigen/src/Array/Functors.h @@ -43,6 +43,8 @@ struct ei_scalar_add_op { inline const PacketScalar packetOp(const PacketScalar& a) const { return ei_padd(a, ei_pset1(m_other)); } const Scalar m_other; +private: + ei_scalar_add_op& operator=(const ei_scalar_add_op&); }; template struct ei_functor_traits > @@ -138,6 +140,8 @@ struct ei_scalar_pow_op { inline ei_scalar_pow_op(const Scalar& exponent) : m_exponent(exponent) {} inline Scalar operator() (const Scalar& a) const { return ei_pow(a, m_exponent); } const Scalar m_exponent; +private: + ei_scalar_pow_op& operator=(const ei_scalar_pow_op&); }; template struct ei_functor_traits > diff --git a/extern/Eigen2/Eigen/src/Array/PartialRedux.h b/extern/Eigen2/Eigen/src/Array/PartialRedux.h index b1e8fd4babd..3a052ca8a3d 100644 --- a/extern/Eigen2/Eigen/src/Array/PartialRedux.h +++ b/extern/Eigen2/Eigen/src/Array/PartialRedux.h @@ -133,6 +133,8 @@ struct ei_member_redux { inline result_type operator()(const MatrixBase& mat) const { return mat.redux(m_functor); } const BinaryOp m_functor; +private: + ei_member_redux& operator=(const ei_member_redux&); }; /** \array_module \ingroup Array @@ -290,6 +292,9 @@ template class PartialRedux protected: ExpressionTypeNested m_matrix; + + private: + PartialRedux& operator=(const PartialRedux&); }; /** \array_module diff --git a/extern/Eigen2/Eigen/src/Core/CommaInitializer.h b/extern/Eigen2/Eigen/src/Core/CommaInitializer.h index ed28e0ca371..f66cbd6d5e1 100644 --- a/extern/Eigen2/Eigen/src/Core/CommaInitializer.h +++ b/extern/Eigen2/Eigen/src/Core/CommaInitializer.h @@ -116,6 +116,9 @@ struct CommaInitializer int m_row; // current row id int m_col; // current col id int m_currentBlockRows; // current block height + +private: + CommaInitializer& operator=(const CommaInitializer&); }; /** \anchor MatrixBaseCommaInitRef diff --git a/extern/Eigen2/Eigen/src/Core/Cwise.h b/extern/Eigen2/Eigen/src/Core/Cwise.h index 0e92dce4e12..4dc9d514b04 100644 --- a/extern/Eigen2/Eigen/src/Core/Cwise.h +++ b/extern/Eigen2/Eigen/src/Core/Cwise.h @@ -178,6 +178,9 @@ template class Cwise protected: ExpressionTypeNested m_matrix; + + private: + Cwise& operator=(const Cwise&); }; /** \returns a Cwise wrapper of *this providing additional coefficient-wise operations diff --git a/extern/Eigen2/Eigen/src/Core/Flagged.h b/extern/Eigen2/Eigen/src/Core/Flagged.h index ce50246cb67..e3d25341d9e 100644 --- a/extern/Eigen2/Eigen/src/Core/Flagged.h +++ b/extern/Eigen2/Eigen/src/Core/Flagged.h @@ -109,6 +109,9 @@ template clas protected: ExpressionTypeNested m_matrix; + +private: + Flagged& operator=(const Flagged&); }; /** \returns an expression of *this with added flags diff --git a/extern/Eigen2/Eigen/src/Core/Functors.h b/extern/Eigen2/Eigen/src/Core/Functors.h index c8ca3dac1cf..969cad78d8f 100644 --- a/extern/Eigen2/Eigen/src/Core/Functors.h +++ b/extern/Eigen2/Eigen/src/Core/Functors.h @@ -279,6 +279,8 @@ struct ei_scalar_multiple_op { EIGEN_STRONG_INLINE const PacketScalar packetOp(const PacketScalar& a) const { return ei_pmul(a, ei_pset1(m_other)); } const Scalar m_other; +private: + ei_scalar_multiple_op& operator=(const ei_scalar_multiple_op&); }; template struct ei_functor_traits > @@ -294,6 +296,8 @@ struct ei_scalar_quotient1_impl { EIGEN_STRONG_INLINE const PacketScalar packetOp(const PacketScalar& a) const { return ei_pmul(a, ei_pset1(m_other)); } const Scalar m_other; +private: + ei_scalar_quotient1_impl& operator=(const ei_scalar_quotient1_impl&); }; template struct ei_functor_traits > @@ -306,6 +310,8 @@ struct ei_scalar_quotient1_impl { EIGEN_STRONG_INLINE ei_scalar_quotient1_impl(const Scalar& other) : m_other(other) {} EIGEN_STRONG_INLINE Scalar operator() (const Scalar& a) const { return a / m_other; } const Scalar m_other; +private: + ei_scalar_quotient1_impl& operator=(const ei_scalar_quotient1_impl&); }; template struct ei_functor_traits > @@ -323,6 +329,8 @@ template struct ei_scalar_quotient1_op : ei_scalar_quotient1_impl::HasFloatingPoint > { EIGEN_STRONG_INLINE ei_scalar_quotient1_op(const Scalar& other) : ei_scalar_quotient1_impl::HasFloatingPoint >(other) {} +private: + ei_scalar_quotient1_op& operator=(const ei_scalar_quotient1_op&); }; // nullary functors @@ -335,6 +343,8 @@ struct ei_scalar_constant_op { EIGEN_STRONG_INLINE const Scalar operator() (int, int = 0) const { return m_other; } EIGEN_STRONG_INLINE const PacketScalar packetOp() const { return ei_pset1(m_other); } const Scalar m_other; +private: + ei_scalar_constant_op& operator=(const ei_scalar_constant_op&); }; template struct ei_functor_traits > diff --git a/extern/Eigen2/Eigen/src/Core/Matrix.h b/extern/Eigen2/Eigen/src/Core/Matrix.h index ffd16d37606..22090c777da 100644 --- a/extern/Eigen2/Eigen/src/Core/Matrix.h +++ b/extern/Eigen2/Eigen/src/Core/Matrix.h @@ -505,7 +505,9 @@ class Matrix template EIGEN_STRONG_INLINE Matrix& _set(const MatrixBase& other) { - _set_selector(other.derived(), typename ei_meta_if::ret()); + // this enum introduced to fix compilation with gcc 3.3 + enum { cond = int(OtherDerived::Flags) & EvalBeforeAssigningBit }; + _set_selector(other.derived(), typename ei_meta_if::ret()); return *this; } diff --git a/extern/Eigen2/Eigen/src/Core/NestByValue.h b/extern/Eigen2/Eigen/src/Core/NestByValue.h index da79315bffe..2a14ab1f156 100644 --- a/extern/Eigen2/Eigen/src/Core/NestByValue.h +++ b/extern/Eigen2/Eigen/src/Core/NestByValue.h @@ -100,6 +100,9 @@ template class NestByValue protected: const ExpressionType m_expression; + + private: + NestByValue& operator=(const NestByValue&); }; /** \returns an expression of the temporary version of *this. diff --git a/extern/Eigen2/Eigen/src/Core/Part.h b/extern/Eigen2/Eigen/src/Core/Part.h index 9c273f249ec..96229f43b68 100644 --- a/extern/Eigen2/Eigen/src/Core/Part.h +++ b/extern/Eigen2/Eigen/src/Core/Part.h @@ -124,8 +124,10 @@ template class Part } protected: - const typename MatrixType::Nested m_matrix; + + private: + Part& operator=(const Part&); }; /** \nonstableyet diff --git a/extern/Eigen2/Eigen/src/Core/Swap.h b/extern/Eigen2/Eigen/src/Core/Swap.h index 77d562cd3ac..9aaac652fd8 100644 --- a/extern/Eigen2/Eigen/src/Core/Swap.h +++ b/extern/Eigen2/Eigen/src/Core/Swap.h @@ -117,6 +117,9 @@ template class SwapWrapper protected: ExpressionType& m_expression; + + private: + SwapWrapper& operator=(const SwapWrapper&); }; /** swaps *this with the expression \a other. diff --git a/extern/Eigen2/Eigen/src/Core/util/Memory.h b/extern/Eigen2/Eigen/src/Core/util/Memory.h index 09ad39d5be9..0a43e7f7bf2 100644 --- a/extern/Eigen2/Eigen/src/Core/util/Memory.h +++ b/extern/Eigen2/Eigen/src/Core/util/Memory.h @@ -1,5 +1,5 @@ // This file is part of Eigen, a lightweight C++ template library -// for linear algebra. Eigen itself is part of the KDE project. +// for linear algebra. // // Copyright (C) 2008 Gael Guennebaud // Copyright (C) 2008-2009 Benoit Jacob @@ -27,7 +27,17 @@ #ifndef EIGEN_MEMORY_H #define EIGEN_MEMORY_H -#if defined(__APPLE__) || defined(_WIN64) +// FreeBSD 6 seems to have 16-byte aligned malloc +// See http://svn.freebsd.org/viewvc/base/stable/6/lib/libc/stdlib/malloc.c?view=markup +// FreeBSD 7 seems to have 16-byte aligned malloc except on ARM and MIPS architectures +// See http://svn.freebsd.org/viewvc/base/stable/7/lib/libc/stdlib/malloc.c?view=markup +#if defined(__FreeBSD__) && !defined(__arm__) && !defined(__mips__) +#define EIGEN_FREEBSD_MALLOC_ALREADY_ALIGNED 1 +#else +#define EIGEN_FREEBSD_MALLOC_ALREADY_ALIGNED 0 +#endif + +#if defined(__APPLE__) || defined(_WIN64) || EIGEN_FREEBSD_MALLOC_ALREADY_ALIGNED #define EIGEN_MALLOC_ALREADY_ALIGNED 1 #else #define EIGEN_MALLOC_ALREADY_ALIGNED 0 @@ -65,7 +75,7 @@ inline void ei_handmade_aligned_free(void *ptr) } /** \internal allocates \a size bytes. The returned pointer is guaranteed to have 16 bytes alignment. - * On allocation error, the returned pointer is undefined, but if exceptions are enabled then a std::bad_alloc is thrown. + * On allocation error, the returned pointer is null, and if exceptions are enabled then a std::bad_alloc is thrown. */ inline void* ei_aligned_malloc(size_t size) { @@ -96,7 +106,7 @@ inline void* ei_aligned_malloc(size_t size) } /** allocates \a size bytes. If Align is true, then the returned ptr is 16-byte-aligned. - * On allocation error, the returned pointer is undefined, but if exceptions are enabled then a std::bad_alloc is thrown. + * On allocation error, the returned pointer is null, and if exceptions are enabled then a std::bad_alloc is thrown. */ template inline void* ei_conditional_aligned_malloc(size_t size) { @@ -116,20 +126,29 @@ template<> inline void* ei_conditional_aligned_malloc(size_t size) return result; } +/** \internal construct the elements of an array. + * The \a size parameter tells on how many objects to call the constructor of T. + */ +template inline T* ei_construct_elements_of_array(T *ptr, size_t size) +{ + for (size_t i=0; i < size; ++i) ::new (ptr + i) T; + return ptr; +} + /** allocates \a size objects of type T. The returned pointer is guaranteed to have 16 bytes alignment. * On allocation error, the returned pointer is undefined, but if exceptions are enabled then a std::bad_alloc is thrown. * The default constructor of T is called. */ template inline T* ei_aligned_new(size_t size) { - void *void_result = ei_aligned_malloc(sizeof(T)*size); - return ::new(void_result) T[size]; + T *result = reinterpret_cast(ei_aligned_malloc(sizeof(T)*size)); + return ei_construct_elements_of_array(result, size); } template inline T* ei_conditional_aligned_new(size_t size) { - void *void_result = ei_conditional_aligned_malloc(sizeof(T)*size); - return ::new(void_result) T[size]; + T *result = reinterpret_cast(ei_conditional_aligned_malloc(sizeof(T)*size)); + return ei_construct_elements_of_array(result, size); } /** \internal free memory allocated with ei_aligned_malloc @@ -163,10 +182,10 @@ template<> inline void ei_conditional_aligned_free(void *ptr) free(ptr); } -/** \internal delete the elements of an array. +/** \internal destruct the elements of an array. * The \a size parameters tells on how many objects to call the destructor of T. */ -template inline void ei_delete_elements_of_array(T *ptr, size_t size) +template inline void ei_destruct_elements_of_array(T *ptr, size_t size) { // always destruct an array starting from the end. while(size) ptr[--size].~T(); @@ -177,7 +196,7 @@ template inline void ei_delete_elements_of_array(T *ptr, size_t size */ template inline void ei_aligned_delete(T *ptr, size_t size) { - ei_delete_elements_of_array(ptr, size); + ei_destruct_elements_of_array(ptr, size); ei_aligned_free(ptr); } @@ -186,7 +205,7 @@ template inline void ei_aligned_delete(T *ptr, size_t size) */ template inline void ei_conditional_aligned_delete(T *ptr, size_t size) { - ei_delete_elements_of_array(ptr, size); + ei_destruct_elements_of_array(ptr, size); ei_conditional_aligned_free(ptr); } @@ -225,8 +244,8 @@ inline static int ei_alignmentOffset(const Scalar* ptr, int maxOffset) #define ei_aligned_stack_free(PTR,SIZE) ei_aligned_free(PTR) #endif -#define ei_aligned_stack_new(TYPE,SIZE) ::new(ei_aligned_stack_alloc(sizeof(TYPE)*SIZE)) TYPE[SIZE] -#define ei_aligned_stack_delete(TYPE,PTR,SIZE) do {ei_delete_elements_of_array(PTR, SIZE); \ +#define ei_aligned_stack_new(TYPE,SIZE) ei_construct_elements_of_array(reinterpret_cast(ei_aligned_stack_alloc(sizeof(TYPE)*SIZE)), SIZE) +#define ei_aligned_stack_delete(TYPE,PTR,SIZE) do {ei_destruct_elements_of_array(PTR, SIZE); \ ei_aligned_stack_free(PTR,sizeof(TYPE)*SIZE);} while(0) @@ -244,7 +263,7 @@ inline static int ei_alignmentOffset(const Scalar* ptr, int maxOffset) return Eigen::ei_conditional_aligned_malloc(size); \ } #endif - + #define EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(NeedsToAlign) \ void *operator new(size_t size) { \ return Eigen::ei_conditional_aligned_malloc(size); \ diff --git a/extern/Eigen2/Eigen/src/SVD/SVD.h b/extern/Eigen2/Eigen/src/SVD/SVD.h index 0a52acf3d5b..d117c158397 100644 --- a/extern/Eigen2/Eigen/src/SVD/SVD.h +++ b/extern/Eigen2/Eigen/src/SVD/SVD.h @@ -107,6 +107,7 @@ void SVD::compute(const MatrixType& matrix) const int m = matrix.rows(); const int n = matrix.cols(); const int nu = std::min(m,n); + ei_assert(m>=n && "In Eigen 2.0, SVD only works for MxN matrices with M>=N. Sorry!"); m_matU.resize(m, nu); m_matU.setZero(); diff --git a/extern/Eigen2/Eigen/src/Sparse/AmbiVector.h b/extern/Eigen2/Eigen/src/Sparse/AmbiVector.h index 75001a2fa25..f279e80f00a 100644 --- a/extern/Eigen2/Eigen/src/Sparse/AmbiVector.h +++ b/extern/Eigen2/Eigen/src/Sparse/AmbiVector.h @@ -99,6 +99,8 @@ template class AmbiVector allocSize = allocSize/sizeof(Scalar) + (allocSize%sizeof(Scalar)>0?1:0); Scalar* newBuffer = new Scalar[allocSize]; memcpy(newBuffer, m_buffer, copyElements * sizeof(ListEl)); + delete[] m_buffer; + m_buffer = newBuffer; } protected: @@ -238,8 +240,11 @@ Scalar& AmbiVector::coeffRef(int i) else { if (m_llSize>=m_allocatedElements) + { reallocateSparse(); - ei_internal_assert(m_llSize(m_buffer); + } + ei_internal_assert(m_llSize::Iterator int m_cachedIndex; // current coordinate Scalar m_cachedValue; // current value bool m_isDense; // mode of the vector + + private: + Iterator& operator=(const Iterator&); }; diff --git a/extern/Eigen2/Eigen/src/Sparse/DynamicSparseMatrix.h b/extern/Eigen2/Eigen/src/Sparse/DynamicSparseMatrix.h index 7119a84bd51..01f97cd6d94 100644 --- a/extern/Eigen2/Eigen/src/Sparse/DynamicSparseMatrix.h +++ b/extern/Eigen2/Eigen/src/Sparse/DynamicSparseMatrix.h @@ -289,9 +289,11 @@ class DynamicSparseMatrix::InnerIterator : public SparseVector, Size> inline InnerIterator(const SparseInnerVectorSet& xpr, int outer) : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer) {} + private: + InnerIterator& operator=(const InnerIterator&); }; inline SparseInnerVectorSet(const MatrixType& matrix, int outerStart, int outerSize) diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseCwise.h b/extern/Eigen2/Eigen/src/Sparse/SparseCwise.h index 2206883cc76..ac285ec1aa3 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseCwise.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseCwise.h @@ -156,6 +156,9 @@ template class SparseCwise protected: ExpressionTypeNested m_matrix; + + private: + SparseCwise& operator=(const SparseCwise&); }; template diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseCwiseBinaryOp.h b/extern/Eigen2/Eigen/src/Sparse/SparseCwiseBinaryOp.h index d19970efcb1..da9746e2099 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseCwiseBinaryOp.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseCwiseBinaryOp.h @@ -126,6 +126,8 @@ class SparseCwiseBinaryOp::InnerIterator EIGEN_STRONG_INLINE InnerIterator(const SparseCwiseBinaryOp& binOp, int outer) : Base(binOp,outer) {} + private: + InnerIterator& operator=(const InnerIterator&); }; /*************************************************************************** @@ -197,6 +199,9 @@ class ei_sparse_cwise_binary_op_inner_iterator_selector, LhsIterator m_lhsIter; RhsIterator m_rhsIter; const BinaryFunc& m_functor; + + private: + ei_sparse_cwise_binary_op_inner_iterator_selector& operator=(const ei_sparse_cwise_binary_op_inner_iterator_selector&); }; // sparse - dense (product) @@ -290,6 +298,9 @@ class ei_sparse_cwise_binary_op_inner_iterator_selector, LhsIterator m_lhsIter; const BinaryFunc m_functor; const int m_outer; + + private: + ei_sparse_cwise_binary_op_inner_iterator_selector& operator=(const ei_sparse_cwise_binary_op_inner_iterator_selector&); }; // sparse - dense (product) diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseCwiseUnaryOp.h b/extern/Eigen2/Eigen/src/Sparse/SparseCwiseUnaryOp.h index b11c0f8a377..2ed7a15579f 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseCwiseUnaryOp.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseCwiseUnaryOp.h @@ -90,6 +90,9 @@ class SparseCwiseUnaryOp::InnerIterator protected: MatrixTypeIterator m_iter; const UnaryOp m_functor; + + private: + InnerIterator& operator=(const InnerIterator&); }; template diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseDiagonalProduct.h b/extern/Eigen2/Eigen/src/Sparse/SparseDiagonalProduct.h index 932daf220b9..9b7432a8216 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseDiagonalProduct.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseDiagonalProduct.h @@ -120,6 +120,8 @@ class ei_sparse_diagonal_product_inner_iterator_selector const SparseDiagonalProductType& expr, int outer) : Base(expr.rhs().innerVector(outer) .cwise()* expr.lhs().diagonal(), 0) {} + private: + ei_sparse_diagonal_product_inner_iterator_selector& operator=(const ei_sparse_diagonal_product_inner_iterator_selector&); }; template diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseFlagged.h b/extern/Eigen2/Eigen/src/Sparse/SparseFlagged.h index c47e162f538..315ec4af39f 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseFlagged.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseFlagged.h @@ -64,16 +64,21 @@ template clas protected: ExpressionTypeNested m_matrix; + + private: + SparseFlagged& operator=(const SparseFlagged&); }; template class SparseFlagged::InnerIterator : public ExpressionType::InnerIterator { public: - EIGEN_STRONG_INLINE InnerIterator(const SparseFlagged& xpr, int outer) : ExpressionType::InnerIterator(xpr.m_matrix, outer) {} + + private: + InnerIterator& operator=(const InnerIterator&); }; template diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseMatrix.h b/extern/Eigen2/Eigen/src/Sparse/SparseMatrix.h index 3f09596bc64..65c609686d2 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseMatrix.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseMatrix.h @@ -259,19 +259,21 @@ class SparseMatrix m_data.resize(k,0); } + /** Resizes the matrix to a \a rows x \a cols matrix and initializes it to zero + * \sa resizeNonZeros(int), reserve(), setZero() + */ void resize(int rows, int cols) { -// std::cerr << this << " resize " << rows << "x" << cols << "\n"; const int outerSize = IsRowMajor ? rows : cols; m_innerSize = IsRowMajor ? cols : rows; m_data.clear(); - if (m_outerSize != outerSize) + if (m_outerSize != outerSize || m_outerSize==0) { delete[] m_outerIndex; m_outerIndex = new int [outerSize+1]; m_outerSize = outerSize; - memset(m_outerIndex, 0, (m_outerSize+1)*sizeof(int)); } + memset(m_outerIndex, 0, (m_outerSize+1)*sizeof(int)); } void resizeNonZeros(int size) { @@ -442,6 +444,9 @@ class SparseMatrix::InnerIterator int m_id; const int m_start; const int m_end; + + private: + InnerIterator& operator=(const InnerIterator&); }; #endif // EIGEN_SPARSEMATRIX_H diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseTranspose.h b/extern/Eigen2/Eigen/src/Sparse/SparseTranspose.h index 89a14d70707..7386294e4d4 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseTranspose.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseTranspose.h @@ -62,15 +62,20 @@ template class SparseTranspose protected: const typename MatrixType::Nested m_matrix; + + private: + SparseTranspose& operator=(const SparseTranspose&); }; template class SparseTranspose::InnerIterator : public MatrixType::InnerIterator { public: - EIGEN_STRONG_INLINE InnerIterator(const SparseTranspose& trans, int outer) : MatrixType::InnerIterator(trans.m_matrix, outer) {} + + private: + InnerIterator& operator=(const InnerIterator&); }; template class SparseTranspose::ReverseInnerIterator : public MatrixType::ReverseInnerIterator diff --git a/extern/Eigen2/Eigen/src/Sparse/SparseVector.h b/extern/Eigen2/Eigen/src/Sparse/SparseVector.h index 8e5a6efeda8..5d47209f790 100644 --- a/extern/Eigen2/Eigen/src/Sparse/SparseVector.h +++ b/extern/Eigen2/Eigen/src/Sparse/SparseVector.h @@ -360,6 +360,9 @@ class SparseVector::InnerIterator const CompressedStorage& m_data; int m_id; const int m_end; + + private: + InnerIterator& operator=(const InnerIterator&); }; #endif // EIGEN_SPARSEVECTOR_H diff --git a/extern/Eigen2/eigen-update.sh b/extern/Eigen2/eigen-update.sh index 926a36ef120..797c710c196 100755 --- a/extern/Eigen2/eigen-update.sh +++ b/extern/Eigen2/eigen-update.sh @@ -17,7 +17,7 @@ if [ -d eigen2 ] then cd eigen2 # put here the version you want to use - hg up 2.0.6 + hg up 2.0 rm -f `find Eigen/ -type f -name "CMakeLists.txt"` cp -r Eigen .. cd .. From 9f841f5b35e8f4f0f7f4866ba65d0d3d5d14b7e3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 10:19:48 +0000 Subject: [PATCH 102/412] weight paint operators - normalize/clean/invert --- source/blender/editors/include/ED_mesh.h | 1 + source/blender/editors/object/object_intern.h | 3 + source/blender/editors/object/object_ops.c | 3 + source/blender/editors/object/object_vgroup.c | 371 +++++++++++++++--- 4 files changed, 324 insertions(+), 54 deletions(-) diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 50411c9d998..59f8c2441c1 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -175,6 +175,7 @@ struct bDeformGroup *ED_vgroup_add(struct Object *ob); struct bDeformGroup *ED_vgroup_add_name(struct Object *ob, char *name); void ED_vgroup_select_by_name(struct Object *ob, char *name); void ED_vgroup_data_create(struct ID *id); +int ED_vgroup_give_array(struct ID *id, struct MDeformVert **dvert_arr, int *dvert_tot); void ED_vgroup_vert_add(struct Object *ob, struct bDeformGroup *dg, int vertnum, float weight, int assignmode); void ED_vgroup_vert_remove(struct Object *ob, struct bDeformGroup *dg, int vertnum); diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index d56814d847d..866180f01a0 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -166,6 +166,9 @@ void OBJECT_OT_vertex_group_select(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_deselect(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_copy_to_linked(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_copy(struct wmOperatorType *ot); +void OBJECT_OT_vertex_group_normalize(struct wmOperatorType *ot); +void OBJECT_OT_vertex_group_invert(struct wmOperatorType *ot); +void OBJECT_OT_vertex_group_clean(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_menu(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_set_active(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 7c705335630..17487ea6aca 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -163,6 +163,9 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_vertex_group_deselect); WM_operatortype_append(OBJECT_OT_vertex_group_copy_to_linked); WM_operatortype_append(OBJECT_OT_vertex_group_copy); + WM_operatortype_append(OBJECT_OT_vertex_group_normalize); + WM_operatortype_append(OBJECT_OT_vertex_group_invert); + WM_operatortype_append(OBJECT_OT_vertex_group_clean); WM_operatortype_append(OBJECT_OT_vertex_group_menu); WM_operatortype_append(OBJECT_OT_vertex_group_set_active); diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 0de1c79b796..7c206ce300a 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -166,6 +166,33 @@ void ED_vgroup_data_create(ID *id) } } +/* returns true if the id type supports weights */ +int ED_vgroup_give_array(ID *id, MDeformVert **dvert_arr, int *dvert_tot) +{ + if(id) { + switch(GS(id->name)) { + case ID_ME: + { + Mesh *me = (Mesh *)id; + *dvert_arr= me->dvert; + *dvert_tot= me->totvert; + return TRUE; + } + case ID_LT: + { + Lattice *lt= (Lattice *)id; + lt= (lt->editlatt)? lt->editlatt: lt; + *dvert_arr= lt->dvert; + *dvert_tot= lt->pntsu*lt->pntsv*lt->pntsw; + return TRUE; + } + } + } + + *dvert_arr= NULL; + *dvert_tot= 0; + return FALSE; +} /* for mesh in object mode lattice can be in editmode */ void ED_vgroup_nr_vert_remove(Object *ob, int def_nr, int vertnum) @@ -182,25 +209,18 @@ void ED_vgroup_nr_vert_remove(Object *ob, int def_nr, int vertnum) MDeformWeight *newdw; MDeformVert *dvert= NULL; - int i; + int i, tot; /* get the deform vertices corresponding to the * vertnum */ - if(ob->type==OB_MESH) { - if(((Mesh*)ob->data)->dvert) - dvert = ((Mesh*)ob->data)->dvert + vertnum; - } - else if(ob->type==OB_LATTICE) { - Lattice *lt= vgroup_edit_lattice(ob); - - if(lt->dvert) - dvert = lt->dvert + vertnum; - } - + ED_vgroup_give_array(ob->data, &dvert, &tot); + if(dvert==NULL) return; + dvert+= vertnum; + /* for all of the deform weights in the * deform vert */ @@ -250,23 +270,16 @@ void ED_vgroup_nr_vert_add(Object *ob, int def_nr, int vertnum, float weight, in */ MDeformVert *dv= NULL; MDeformWeight *newdw; - int i; + int i, tot; /* get the vert */ - if(ob->type==OB_MESH) { - if(((Mesh*)ob->data)->dvert) - dv = ((Mesh*)ob->data)->dvert + vertnum; - } - else if(ob->type==OB_LATTICE) { - Lattice *lt= vgroup_edit_lattice(ob); - - if(lt->dvert) - dv = lt->dvert + vertnum; - } + ED_vgroup_give_array(ob->data, &dv, &tot); if(dv==NULL) return; + dv+= vertnum; + /* Lets first check to see if this vert is * already in the weight group -- if so * lets update it @@ -341,23 +354,19 @@ void ED_vgroup_vert_add(Object *ob, bDeformGroup *dg, int vertnum, float weight, */ int def_nr; + MDeformVert *dv= NULL; + int tot; + /* get the deform group number, exit if * it can't be found */ def_nr = get_defgroup_num(ob, dg); if(def_nr < 0) return; - /* if there's no deform verts then - * create some + /* if there's no deform verts then create some, */ - if(ob->type==OB_MESH) { - if(!((Mesh*)ob->data)->dvert) - ED_vgroup_data_create(ob->data); - } - else if(ob->type==OB_LATTICE) { - if(!((Lattice*)ob->data)->dvert) - ED_vgroup_data_create(ob->data); - } + if(ED_vgroup_give_array(ob->data, &dv, &tot) && dv==NULL) + ED_vgroup_data_create(ob->data); /* call another function to do the work */ @@ -550,16 +559,7 @@ static void vgroup_duplicate(Object *ob) ob->actdef = BLI_countlist(&ob->defbase); icdg = (ob->actdef-1); - if(ob->type == OB_MESH) { - Mesh *me = get_mesh(ob); - dvert_array= me->dvert; - dvert_tot= me->totvert; - } - else if(ob->type == OB_LATTICE) { - Lattice *lt= (Lattice *)ob->data; - dvert_array= lt->dvert; - dvert_tot= lt->pntsu*lt->pntsv*lt->pntsw; - } + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); if(!dvert_array) return; @@ -576,6 +576,176 @@ static void vgroup_duplicate(Object *ob) } } +static void vgroup_normalize(Object *ob) +{ + bDeformGroup *dg; + MDeformWeight *dw; + MDeformVert *dvert, *dvert_array=NULL; + int i, def_nr, dvert_tot=0; + + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); + + if(dg) { + float weight_max; + + def_nr= ob->actdef-1; + + for(i = 0; i < dvert_tot; i++) { + dvert = dvert_array+i; + dw = ED_vgroup_weight_get(dvert, def_nr); + if(dw) { + weight_max = MAX2(dw->weight, weight_max); + } + } + + if(weight_max > 0.0f) { + for(i = 0; i < dvert_tot; i++) { + dvert = dvert_array+i; + dw = ED_vgroup_weight_get(dvert, def_nr); + if(dw) { + dw->weight /= weight_max; + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } + } + } + } +} + +/* TODO - select between groups */ +static void vgroup_normalize_all(Object *ob) +{ + MDeformWeight *dw; + MDeformVert *dvert, *dvert_array=NULL; + int i, dvert_tot=0; + float tot_weight; + + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + if(dvert_array) { + for(i = 0; i < dvert_tot; i++) { + int j; + tot_weight= 0.0f; + dvert = dvert_array+i; + + j= dvert->totweight; + while(j--) { + dw= dvert->dw + j; + tot_weight += dw->weight; + } + + if(tot_weight) { + j= dvert->totweight; + while(j--) { + dw= dvert->dw + j; + dw->weight /= tot_weight; + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } + } + } + } +} + + +static void vgroup_invert(Object *ob, int auto_assign, int auto_remove) +{ + bDeformGroup *dg; + MDeformWeight *dw; + MDeformVert *dvert, *dvert_array=NULL; + int i, def_nr, dvert_tot=0; + + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); + + if(dg) { + def_nr= ob->actdef-1; + + + for(i = 0; i < dvert_tot; i++) { + dvert = dvert_array+i; + + if(auto_assign) { + dw= ED_vgroup_weight_verify(dvert, def_nr); + } else { + dw= ED_vgroup_weight_get(dvert, def_nr); + } + + if(dw) { + dw->weight = 1.0f-dw->weight; + + if(auto_remove && dw->weight <= 0.0f) { + /* could have a faster function for this */ + ED_vgroup_nr_vert_remove(ob, def_nr, i); + } + } + } + } +} + +static void vgroup_clean(Object *ob, float eul, int keep_single) +{ + bDeformGroup *dg; + MDeformWeight *dw; + MDeformVert *dvert, *dvert_array=NULL; + int i, def_nr, dvert_tot=0; + + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + /* only the active group */ + dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); + if(dg) { + def_nr= ob->actdef-1; + + for(i = 0; i < dvert_tot; i++) { + dvert = dvert_array+i; + + dw= ED_vgroup_weight_get(dvert, def_nr); + + if(dw) { + if(dw->weight <= eul) + if(keep_single==FALSE || dvert->totweight > 1) + ED_vgroup_nr_vert_remove(ob, def_nr, i); + } + } + } +} + +static void vgroup_clean_all(Object *ob, float eul, int keep_single) +{ + + MDeformWeight *dw; + MDeformVert *dvert, *dvert_array=NULL; + int i, dvert_tot=0; + + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + if(dvert_array) { + for(i = 0; i < dvert_tot; i++) { + int j; + dvert = dvert_array+i; + j= dvert->totweight; + + while(j--) { + + if(keep_single && dvert->totweight == 1) + break; + + dw= dvert->dw + j; + + if(dw->weight <= eul) + ED_vgroup_nr_vert_remove(ob, dw->def_nr, i); + + } + } + } +} + static void vgroup_delete_update_users(Object *ob, int id) { ExplodeModifierData *emd; @@ -641,22 +811,13 @@ static void vgroup_delete_object_mode(Object *ob) bDeformGroup *dg; MDeformVert *dvert, *dvert_array=NULL; int i, e, dvert_tot=0; - - if(ob->type == OB_MESH) { - Mesh *me = get_mesh(ob); - dvert_array= me->dvert; - dvert_tot= me->totvert; - } - else if(ob->type == OB_LATTICE) { - Lattice *lt= (Lattice *)ob->data; - dvert_array= lt->dvert; - dvert_tot= lt->pntsu*lt->pntsv*lt->pntsw; - } dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); if(!dg) return; + ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + if(dvert_array) { for(i = 0; i < dvert_tot; i++) { dvert = dvert_array + i; @@ -1177,6 +1338,108 @@ void OBJECT_OT_vertex_group_copy(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } + +static int vertex_group_normalize_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + int all_groups= RNA_boolean_get(op->ptr,"all_groups"); + + if(all_groups) + vgroup_normalize_all(ob); + else + vgroup_normalize(ob); + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob->data); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_vertex_group_normalize(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Normalize Vertex Group"; + ot->idname= "OBJECT_OT_vertex_group_normalize"; + + /* api callbacks */ + ot->poll= vertex_group_poll; + ot->exec= vertex_group_normalize_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_boolean(ot->srna, "all_groups", FALSE, "All Groups", "Normalize all vertex groups."); +} + +static int vertex_group_invert_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + int auto_assign= RNA_boolean_get(op->ptr,"auto_assign"); + int auto_remove= RNA_boolean_get(op->ptr,"auto_remove"); + + vgroup_invert(ob, auto_assign, auto_remove); + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob->data); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_vertex_group_invert(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Invert Vertex Group"; + ot->idname= "OBJECT_OT_vertex_group_invert"; + + /* api callbacks */ + ot->poll= vertex_group_poll; + ot->exec= vertex_group_invert_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_boolean(ot->srna, "auto_assign", TRUE, "Add Weights", "Add verts from groups that have zero weight before inverting."); + RNA_def_boolean(ot->srna, "auto_remove", TRUE, "Remove Weights", "Remove verts from groups that have zero weight after inverting."); +} + +static int vertex_group_clean_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + + float limit= RNA_float_get(op->ptr,"limit"); + int all_groups= RNA_boolean_get(op->ptr,"all_groups"); + int keep_single= RNA_boolean_get(op->ptr,"keep_single"); + + if(all_groups) vgroup_clean_all(ob, limit, keep_single); + else vgroup_clean(ob, limit, keep_single); + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob->data); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_vertex_group_clean(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Clean Vertex Group"; + ot->idname= "OBJECT_OT_vertex_group_clean"; + + /* api callbacks */ + ot->poll= vertex_group_poll; + ot->exec= vertex_group_clean_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_float(ot->srna, "limit", 0.01f, 0.0f, 1.0, "Limit", "Remove weights under this limit.", 0.001f, 0.99f); + RNA_def_boolean(ot->srna, "all_groups", FALSE, "All Groups", "Clean all vertex groups."); + RNA_def_boolean(ot->srna, "keep_single", FALSE, "Keep Single", "Keep verts assigned to at least one group when cleaning."); +} + + static int vertex_group_copy_to_linked_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); From c01c716346bba69bb1a2fe072b5e3d5c27b8cbeb Mon Sep 17 00:00:00 2001 From: William Reynish Date: Tue, 20 Oct 2009 10:41:44 +0000 Subject: [PATCH 103/412] *Made the Add Constraint menu similar to modifiers, with categories in columns. Makes them consistent, and also ensures the menu fits even on smaller displays. *Put the Modifiers tab *before* the ObData (mesh, curve etc) tab, because modifiers actually apply to Object , not the ObData, even though the opposite would appear to make more sense. --- source/blender/editors/include/UI_icons.h | 2 +- .../editors/space_buttons/buttons_header.c | 4 +- .../blender/makesrna/intern/rna_constraint.c | 56 +++++++++---------- 3 files changed, 29 insertions(+), 33 deletions(-) diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index e8c99a51bf8..f071111660b 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -523,7 +523,7 @@ DEF_ICON(ICON_MOD_UVPROJECT) DEF_ICON(ICON_MOD_DISPLACE) DEF_ICON(ICON_MOD_CURVE) DEF_ICON(ICON_MOD_LATTICE) -DEF_ICON(ICON_BLANK143) +DEF_ICON(ICON_CONSTRAINT_DATA) DEF_ICON(ICON_MOD_ARMATURE) DEF_ICON(ICON_MOD_SHRINKWRAP) DEF_ICON(ICON_MOD_CAST) diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index 1bf2a058b5a..37a08bcf2ed 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -117,10 +117,10 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_OBJECT_DATA, xco+=BUTS_UI_UNIT, yco, BUTS_UI_UNIT, BUTS_UI_UNIT, &(sbuts->mainb), 0.0, (float)BCONTEXT_OBJECT, 0, 0, "Object"); if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_CONSTRAINT, 0, 0, "Object Constraints"); - if(sbuts->pathflag & (1<dataicon, xco+=BUTS_UI_UNIT, yco, BUTS_UI_UNIT, BUTS_UI_UNIT, &(sbuts->mainb), 0.0, (float)BCONTEXT_DATA, 0, 0, "Object Data"); if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_MODIFIER, 0, 0, "Modifiers"); + if(sbuts->pathflag & (1<dataicon, xco+=BUTS_UI_UNIT, yco, BUTS_UI_UNIT, BUTS_UI_UNIT, &(sbuts->mainb), 0.0, (float)BCONTEXT_DATA, 0, 0, "Object Data"); if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_BONE, 0, 0, "Bone"); if(sbuts->pathflag & (1< Date: Tue, 20 Oct 2009 11:26:21 +0000 Subject: [PATCH 104/412] Renamed the modifier category 'Physics' to 'Simulate'. Seems to better encompass those modifiers. --- source/blender/makesrna/intern/rna_modifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 6f45c8c2e20..f2648503003 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -69,7 +69,7 @@ EnumPropertyItem modifier_type_items[] ={ {eModifierType_SimpleDeform, "SIMPLE_DEFORM", ICON_MOD_SIMPLEDEFORM, "Simple Deform", ""}, {eModifierType_Smooth, "SMOOTH", ICON_MOD_SMOOTH, "Smooth", ""}, {eModifierType_Wave, "WAVE", ICON_MOD_WAVE, "Wave", ""}, - {0, "", 0, "Physics", ""}, + {0, "", 0, "Simulate", ""}, {eModifierType_Cloth, "CLOTH", ICON_MOD_CLOTH, "Cloth", ""}, {eModifierType_Collision, "COLLISION", ICON_MOD_PHYSICS, "Collision", ""}, {eModifierType_Explode, "EXPLODE", ICON_MOD_EXPLODE, "Explode", ""}, From 00f3d83b6ab5f4f9ee4f69457e492db72a03cf30 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 12:04:56 +0000 Subject: [PATCH 105/412] Graph Editor: Added 2D Cursor I've finally given in, and implemented a '2d-cursor' for the Graph Editor. This is simply represented as an additional horizontal line that meets with the current frame indicator, forming a cross-hair. It can be disabled from the View menu. Currently, the only tool which takes this into account is the Snapping tools (Shift-S), where I've hooked up a tool I added some time ago. TODO: - expose this cursor to the transform tools for scaling/rotation options... --- source/blender/editors/animation/anim_draw.c | 2 +- source/blender/editors/animation/anim_ops.c | 26 ++-- .../blender/editors/armature/editarmature.c | 63 +------- .../blender/editors/space_graph/graph_edit.c | 7 +- .../editors/space_graph/graph_header.c | 2 + .../editors/space_graph/graph_intern.h | 1 + .../blender/editors/space_graph/graph_ops.c | 140 +++++++++++++++++- .../blender/editors/space_graph/space_graph.c | 21 +++ source/blender/makesdna/DNA_space_types.h | 8 +- source/blender/makesrna/intern/rna_space.c | 11 ++ 10 files changed, 204 insertions(+), 77 deletions(-) diff --git a/source/blender/editors/animation/anim_draw.c b/source/blender/editors/animation/anim_draw.c index 2dc4aa09407..aa581a7d15a 100644 --- a/source/blender/editors/animation/anim_draw.c +++ b/source/blender/editors/animation/anim_draw.c @@ -156,7 +156,7 @@ static void draw_cfra_number (Scene *scene, View2D *v2d, float cfra, short time) glScalef(xscale, 1.0, 1.0); } -/* General call for drawing current frame indicator in a */ +/* General call for drawing current frame indicator in animation editor */ void ANIM_draw_cfra (const bContext *C, View2D *v2d, short flag) { Scene *scene= CTX_data_scene(C); diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c index 35eac6d23f1..33eed1ff2a4 100644 --- a/source/blender/editors/animation/anim_ops.c +++ b/source/blender/editors/animation/anim_ops.c @@ -62,6 +62,18 @@ /* ********************** frame change operator ***************************/ +/* Check if the operator can be run from the current context */ +static int change_frame_poll(bContext *C) +{ + ScrArea *curarea= CTX_wm_area(C); + + /* as long as there is an active area, and it isn't a Graph Editor + * (since the Graph Editor has its own version which does extra stuff), + * we're fine + */ + return ((curarea) && (curarea->spacetype != SPACE_IPO)); +} + /* Set any flags that are necessary to indicate modal time-changing operation */ static int change_frame_init(bContext *C, wmOperator *op) { @@ -85,18 +97,12 @@ static int change_frame_init(bContext *C, wmOperator *op) static void change_frame_apply(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); - int cfra; - /* get frame, and clamp to MINAFRAME - * - not MINFRAME, since it's useful to be able to key a few-frames back - */ - cfra= RNA_int_get(op->ptr, "frame"); - - if (cfra < MINAFRAME) cfra= MINAFRAME; - CFRA= cfra; + /* set the new frame number */ + CFRA= RNA_int_get(op->ptr, "frame"); + /* do updates */ sound_scrub(C); - WM_event_add_notifier(C, NC_SCENE|ND_FRAME, scene); } @@ -210,12 +216,14 @@ void ANIM_OT_change_frame(wmOperatorType *ot) /* identifiers */ ot->name= "Change frame"; ot->idname= "ANIM_OT_change_frame"; + ot->description= "Interactively change the current frame number."; /* api callbacks */ ot->exec= change_frame_exec; ot->invoke= change_frame_invoke; ot->cancel= change_frame_cancel; ot->modal= change_frame_modal; + ot->poll= change_frame_poll; /* flags */ ot->flag= OPTYPE_BLOCKING; diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index b92b69c4e8e..f379ff6c395 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -5037,11 +5037,11 @@ static int pose_de_select_all_exec(bContext *C, wmOperator *op) /* Set the flags */ CTX_DATA_BEGIN(C, bPoseChannel *, pchan, visible_pchans) { - /* select pchan, only if selectable */ - if ((pchan->bone->flag & BONE_UNSELECTABLE) == 0) { - if (sel==0) pchan->bone->flag &= ~(BONE_SELECTED|BONE_TIPSEL|BONE_ROOTSEL|BONE_ACTIVE); - else pchan->bone->flag |= BONE_SELECTED; - } + /* select pchan only if selectable, but deselect works always */ + if (sel==0) + pchan->bone->flag &= ~(BONE_SELECTED|BONE_TIPSEL|BONE_ROOTSEL|BONE_ACTIVE); + else if ((pchan->bone->flag & BONE_UNSELECTABLE)==0) + pchan->bone->flag |= BONE_SELECTED; } CTX_DATA_END; @@ -5313,21 +5313,7 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) /* we have the object using the armature */ if (arm==ob->data) { Object *cob; - //bAction *act; - //bActionChannel *achan; - //bActionStrip *strip; - /* Rename action channel if necessary */ -#if 0 // XXX old animation system - act = ob->action; - if (act && !act->id.lib) { - /* Find the appropriate channel */ - achan= get_action_channel(act, oldname); - if (achan) - BLI_strncpy(achan->name, newname, MAXBONENAME); - } -#endif // XXX old animation system - /* Rename the pose channel, if it exists */ if (ob->pose) { bPoseChannel *pchan = get_pose_channel(ob->pose, oldname); @@ -5335,20 +5321,6 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) BLI_strncpy(pchan->name, newname, MAXBONENAME); } - /* check all nla-strips too */ -#if 0 // XXX old animation system - for (strip= ob->nlastrips.first; strip; strip= strip->next) { - /* Rename action channel if necessary */ - act = strip->act; - if (act && !act->id.lib) { - /* Find the appropriate channel */ - achan= get_action_channel(act, oldname); - if (achan) - BLI_strncpy(achan->name, newname, MAXBONENAME); - } - } -#endif // XXX old animation system - /* Update any object constraints to use the new bone name */ for (cob= G.main->object.first; cob; cob= cob->id.next) { if (cob->constraints.first) @@ -5381,35 +5353,12 @@ void ED_armature_bone_rename(bArmature *arm, char *oldnamep, char *newnamep) } /* Fix animation data attached to this object */ + // TODO: should we be using the database wide version instead (since drivers may break) if (ob->adt) { /* posechannels only... */ BKE_animdata_fix_paths_rename(&ob->id, ob->adt, "pose.pose_channels", oldname, newname); } } - - /* do entire db - ipo's for the drivers */ -#if 0 // XXX old animation system - for (ipo= G.main->ipo.first; ipo; ipo= ipo->id.next) { - IpoCurve *icu; - - /* check each curve's driver */ - for (icu= ipo->curve.first; icu; icu= icu->next) { - IpoDriver *icd= icu->driver; - - if ((icd) && (icd->ob)) { - ob= icd->ob; - - if (icu->driver->type == IPO_DRIVER_TYPE_NORMAL) { - if (!strcmp(oldname, icd->name)) - BLI_strncpy(icd->name, newname, MAXBONENAME); - } - else { - /* TODO: pydrivers need to be treated differently */ - } - } - } - } -#endif // XXX old animation system } } diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 22272479e4a..bcd57aa233f 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1450,7 +1450,8 @@ void GRAPH_OT_frame_jump (wmOperatorType *ot) /* defines for snap keyframes tool */ EnumPropertyItem prop_graphkeys_snap_types[] = { - {GRAPHKEYS_SNAP_CFRA, "CFRA", 0, "Current frame", ""}, + {GRAPHKEYS_SNAP_CFRA, "CFRA", 0, "Current Frame", ""}, + {GRAPHKEYS_SNAP_VALUE, "VALUE", 0, "Cursor Value", ""}, {GRAPHKEYS_SNAP_NEAREST_FRAME, "NEAREST_FRAME", 0, "Nearest Frame", ""}, // XXX as single entry? {GRAPHKEYS_SNAP_NEAREST_SECOND, "NEAREST_SECOND", 0, "Nearest Second", ""}, // XXX as single entry? {GRAPHKEYS_SNAP_NEAREST_MARKER, "NEAREST_MARKER", 0, "Nearest Marker", ""}, @@ -1481,6 +1482,10 @@ static void snap_graph_keys(bAnimContext *ac, short mode) bed.list.first= (ac->markers) ? ac->markers->first : NULL; bed.list.last= (ac->markers) ? ac->markers->last : NULL; } + else if (mode == GRAPHKEYS_SNAP_VALUE) { + SpaceIpo *sipo= (SpaceIpo *)ac->sa->spacedata.first; + bed.f1= (sipo) ? sipo->cursorVal : 0.0f; + } /* snap keyframes */ for (ale= anim_data.first; ale; ale= ale->next) { diff --git a/source/blender/editors/space_graph/graph_header.c b/source/blender/editors/space_graph/graph_header.c index 8d8c8702987..a52ab8beaca 100644 --- a/source/blender/editors/space_graph/graph_header.c +++ b/source/blender/editors/space_graph/graph_header.c @@ -81,6 +81,7 @@ static void graph_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); uiItemR(layout, NULL, 0, &spaceptr, "show_cframe_indicator", 0); + uiItemR(layout, NULL, 0, &spaceptr, "show_cursor", 0); uiItemR(layout, NULL, 0, &spaceptr, "show_sliders", 0); uiItemR(layout, NULL, 0, &spaceptr, "automerge_keyframes", 0); @@ -162,6 +163,7 @@ static void graph_edit_snapmenu(bContext *C, uiLayout *layout, void *arg_unused) { uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_CFRA); + uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_VALUE); uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_FRAME); uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_SECOND); uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_MARKER); diff --git a/source/blender/editors/space_graph/graph_intern.h b/source/blender/editors/space_graph/graph_intern.h index 9b7c2eb3656..f03c9ece262 100644 --- a/source/blender/editors/space_graph/graph_intern.h +++ b/source/blender/editors/space_graph/graph_intern.h @@ -119,6 +119,7 @@ enum { GRAPHKEYS_SNAP_NEAREST_SECOND, GRAPHKEYS_SNAP_NEAREST_MARKER, GRAPHKEYS_SNAP_HORIZONTAL, + GRAPHKEYS_SNAP_VALUE, } eGraphKeys_Snap_Mode; /* defines for mirror keyframes diff --git a/source/blender/editors/space_graph/graph_ops.c b/source/blender/editors/space_graph/graph_ops.c index ab35bda0e2f..1780942a123 100644 --- a/source/blender/editors/space_graph/graph_ops.c +++ b/source/blender/editors/space_graph/graph_ops.c @@ -41,6 +41,7 @@ #include "BLI_blenlib.h" #include "BKE_context.h" +#include "BKE_sound.h" #include "BKE_utildefines.h" #include "UI_interface.h" @@ -57,12 +58,133 @@ #include "WM_api.h" #include "WM_types.h" -/* ************************** poll callbacks **********************************/ - - - /* ************************** view-based operators **********************************/ -// XXX this probably shouldn't be here.. +// XXX should these really be here? + +/* Set Cursor --------------------------------------------------------------------- */ +/* The 'cursor' in the Graph Editor consists of two parts: + * 1) Current Frame Indicator (as per ANIM_OT_change_frame) + * 2) Value Indicator (stored per Graph Editor instance) + */ + +/* Set the new frame number */ +static void graphview_cursor_apply(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + SpaceIpo *sipo= CTX_wm_space_graph(C); + + /* adjust the frame + * NOTE: sync this part of the code with ANIM_OT_change_frame + */ + CFRA= RNA_int_get(op->ptr, "frame"); + sound_scrub(C); + + /* set the cursor value */ + sipo->cursorVal= RNA_float_get(op->ptr, "value"); + + /* send notifiers - notifiers for frame should force an update for both vars ok... */ + WM_event_add_notifier(C, NC_SCENE|ND_FRAME, scene); +} + +/* ... */ + +/* Non-modal callback for running operator without user input */ +static int graphview_cursor_exec(bContext *C, wmOperator *op) +{ + graphview_cursor_apply(C, op); + return OPERATOR_FINISHED; +} + +/* ... */ + +/* set the operator properties from the initial event */ +static void graphview_cursor_setprops(bContext *C, wmOperator *op, wmEvent *event) +{ + ARegion *ar= CTX_wm_region(C); + float viewx, viewy; + int x, y; + + /* abort if not active region (should not really be possible) */ + if (ar == NULL) + return; + + /* convert screen coordinates to region coordinates */ + x= event->x - ar->winrct.xmin; + y= event->y - ar->winrct.ymin; + + /* convert from region coordinates to View2D 'tot' space */ + UI_view2d_region_to_view(&ar->v2d, x, y, &viewx, &viewy); + + /* store the values in the operator properties */ + /* frame is rounded to the nearest int, since frames are ints */ + RNA_int_set(op->ptr, "frame", (int)floor(viewx+0.5f)); + RNA_float_set(op->ptr, "value", viewy); +} + +/* Modal Operator init */ +static int graphview_cursor_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + /* Change to frame that mouse is over before adding modal handler, + * as user could click on a single frame (jump to frame) as well as + * click-dragging over a range (modal scrubbing). + */ + graphview_cursor_setprops(C, op, event); + + /* apply these changes first */ + graphview_cursor_apply(C, op); + + /* add temp handler */ + WM_event_add_modal_handler(C, op); + return OPERATOR_RUNNING_MODAL; +} + +/* Modal event handling of cursor changing */ +static int graphview_cursor_modal(bContext *C, wmOperator *op, wmEvent *event) +{ + /* execute the events */ + switch (event->type) { + case ESCKEY: + return OPERATOR_FINISHED; + + case MOUSEMOVE: + /* set the new values */ + graphview_cursor_setprops(C, op, event); + graphview_cursor_apply(C, op); + break; + + case LEFTMOUSE: + case RIGHTMOUSE: + /* we check for either mouse-button to end, as checking for ACTIONMOUSE (which is used to init + * the modal op) doesn't work for some reason + */ + if (event->val==KM_RELEASE) + return OPERATOR_FINISHED; + break; + } + + return OPERATOR_RUNNING_MODAL; +} + +void GRAPH_OT_cursor_set(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Set Cursor"; + ot->idname= "GRAPH_OT_cursor_set"; + ot->description= "Interactively set the current frame number and value cursor"; + + /* api callbacks */ + ot->exec= graphview_cursor_exec; + ot->invoke= graphview_cursor_invoke; + ot->modal= graphview_cursor_modal; + ot->poll= ED_operator_ipo_active; + + /* flags */ + ot->flag= OPTYPE_BLOCKING; + + /* rna */ + RNA_def_int(ot->srna, "frame", 0, MINAFRAME, MAXFRAME, "Frame", "", MINAFRAME, MAXFRAME); + RNA_def_float(ot->srna, "value", 0, FLT_MIN, FLT_MAX, "Value", "", -100.0f, 100.0f); +} /* Toggle Handles ----------------------------------------------------------------- */ @@ -100,6 +222,8 @@ void graphedit_operatortypes(void) { /* view */ WM_operatortype_append(GRAPH_OT_view_togglehandles); + WM_operatortype_append(GRAPH_OT_cursor_set); + WM_operatortype_append(GRAPH_OT_previewrange_set); WM_operatortype_append(GRAPH_OT_view_all); WM_operatortype_append(GRAPH_OT_properties); @@ -147,6 +271,11 @@ static void graphedit_keymap_keyframes (wmKeyConfig *keyconf, wmKeyMap *keymap) /* view */ WM_keymap_add_item(keymap, "GRAPH_OT_handles_view_toggle", HKEY, KM_PRESS, KM_CTRL, 0); + /* NOTE: 'ACTIONMOUSE' not 'LEFTMOUSE', as user may have swapped mouse-buttons + * This keymap is supposed to override ANIM_OT_change_frame, which does the same except it doesn't do y-values + */ + WM_keymap_add_item(keymap, "GRAPH_OT_cursor_set", ACTIONMOUSE, KM_PRESS, 0, 0); + /* graph_select.c - selection tools */ /* click-select */ @@ -175,7 +304,6 @@ static void graphedit_keymap_keyframes (wmKeyConfig *keyconf, wmKeyMap *keymap) RNA_boolean_set(WM_keymap_add_item(keymap, "GRAPH_OT_select_border", BKEY, KM_PRESS, KM_ALT, 0)->ptr, "axis_range", 1); /* column select */ - // XXX KKEY would be nice to keep for 'keyframe' lines RNA_enum_set(WM_keymap_add_item(keymap, "GRAPH_OT_select_column", KKEY, KM_PRESS, 0, 0)->ptr, "mode", GRAPHKEYS_COLUMNSEL_KEYS); RNA_enum_set(WM_keymap_add_item(keymap, "GRAPH_OT_select_column", KKEY, KM_PRESS, KM_CTRL, 0)->ptr, "mode", GRAPHKEYS_COLUMNSEL_CFRA); RNA_enum_set(WM_keymap_add_item(keymap, "GRAPH_OT_select_column", KKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", GRAPHKEYS_COLUMNSEL_MARKERS_COLUMN); diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index 1f65a8cd7ea..b4b06844d13 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -261,6 +261,27 @@ static void graph_main_area_draw(const bContext *C, ARegion *ar) /* only free grid after drawing data, as we need to use it to determine sampling rate */ UI_view2d_grid_free(grid); + /* horizontal component of value-cursor (value line before the current frame line) */ + if ((sipo->flag & SIPO_NODRAWCURSOR)==0) { + float vec[2]; + + /* Draw a green line to indicate the cursor value */ + vec[1]= sipo->cursorVal; + + UI_ThemeColorShadeAlpha(TH_CFRAME, -10, -50); + glLineWidth(2.0); + + glEnable(GL_BLEND); + glBegin(GL_LINE_STRIP); + vec[0]= v2d->cur.xmin; + glVertex2fv(vec); + + vec[0]= v2d->cur.xmax; + glVertex2fv(vec); + glEnd(); // GL_LINE_STRIP + glDisable(GL_BLEND); + } + /* current frame */ if (sipo->flag & SIPO_DRAWTIME) flag |= DRAWCFRA_UNIT_SECONDS; if ((sipo->flag & SIPO_NODRAWCFRANUM)==0) flag |= DRAWCFRA_SHOW_NUMBOX; diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index d7793b88bea..8de701d9109 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -86,7 +86,6 @@ typedef struct SpaceInfo { } SpaceInfo; /* 'Graph' Editor (formerly known as the IPO Editor) */ -/* XXX for now, we keep all old data... */ typedef struct SpaceIpo { SpaceLink *next, *prev; ListBase regionbase; /* storage of regions for inactive spaces */ @@ -101,9 +100,11 @@ typedef struct SpaceIpo { ListBase ghostCurves; /* sampled snapshots of F-Curves used as in-session guides */ short mode; /* mode for the Graph editor (eGraphEdit_Mode) */ - short flag; /* settings for Graph editor */ short autosnap; /* time-transform autosnapping settings for Graph editor (eAnimEdit_AutoSnap in DNA_action_types.h) */ - char pin, lock; // XXX old, unused vars that are probably going to be depreceated soon... + int flag; /* settings for Graph editor */ + + float cursorVal; /* cursor value (y-value, x-value is current frame) */ + int pad; } SpaceIpo; typedef struct SpaceButs { @@ -723,6 +724,7 @@ enum FileSortTypeE { #define SIPO_SELCUVERTSONLY (1<<5) #define SIPO_DRAWNAMES (1<<6) #define SIPO_SLIDERS (1<<7) +#define SIPO_NODRAWCURSOR (1<<8) /* SpaceIpo->mode (Graph Editor Mode) */ enum { diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 72856e54bdf..b989c83fbc3 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1241,6 +1241,17 @@ static void rna_def_space_graph(BlenderRNA *brna) RNA_def_property_ui_text(prop, "AutoMerge Keyframes", "Show handles of Bezier control points."); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_GRAPH, NULL); + /* cursor */ + prop= RNA_def_property(srna, "show_cursor", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NODRAWCURSOR); + RNA_def_property_ui_text(prop, "Show Cursor", "Show 2D cursor."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_GRAPH, NULL); + + prop= RNA_def_property(srna, "cursor_value", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "cursorVal"); + RNA_def_property_ui_text(prop, "Cursor Y-Value", "Graph Editor 2D-Value cursor - Y-Value component"); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_GRAPH, NULL); + // TODO... autosnap, dopesheet? } From 5e2ddea1f3a6253f57f101ee55ace1cd50095129 Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Tue, 20 Oct 2009 13:46:47 +0000 Subject: [PATCH 106/412] Smoke: * Fix 3dview drawing issue which caused smoke to disappear in some cases, reported by nudelZ --- .../blender/editors/space_view3d/drawvolume.c | 45 ++++++++++++++----- 1 file changed, 35 insertions(+), 10 deletions(-) diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index ea022d1b670..5140736cbe8 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -172,8 +172,8 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture RegionView3D *rv3d= ar->regiondata; float viewnormal[3]; - int i, j, n; - float d, d0, dd; + int i, j, n, good_index, count = 0; + float d, d0, dd, ds; float *points = NULL; int numpoints = 0; float cor[3] = {1.,1.,1.}; @@ -279,6 +279,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture VECCOPY(edges[11][0], cv[5]); // minx, maxy, minz // printf("size x: %f, y: %f, z: %f\n", size[0], size[1], size[2]); + // printf("min[2]: %f, max[2]: %f\n", min[2], max[2]); edges[0][1][2] = size[2]; edges[1][1][2] = size[2]; @@ -306,6 +307,13 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + /* + printf("Viewinv:\n"); + printf("%f, %f, %f\n", rv3d->viewinv[0][0], rv3d->viewinv[0][1], rv3d->viewinv[0][2]); + printf("%f, %f, %f\n", rv3d->viewinv[1][0], rv3d->viewinv[1][1], rv3d->viewinv[1][2]); + printf("%f, %f, %f\n", rv3d->viewinv[2][0], rv3d->viewinv[2][1], rv3d->viewinv[2][2]); + */ + // get view vector VECCOPY(viewnormal, rv3d->viewinv[2]); Normalize(viewnormal); @@ -314,9 +322,9 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture for (i=0; i<8; i++) { float x,y,z; - x = cv[i][0] + viewnormal[0]; - y = cv[i][1] + viewnormal[1]; - z = cv[i][2] + viewnormal[2]; + x = cv[i][0] - viewnormal[0]; + y = cv[i][1] - viewnormal[1]; + z = cv[i][2] - viewnormal[2]; if ((x>=min[0])&&(x<=max[0]) &&(y>=min[1])&&(y<=max[1]) @@ -326,6 +334,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture } // printf("i: %d\n", i); + // printf("point %f, %f, %f\n", cv[i][0], cv[i][1], cv[i][2]); if (GL_TRUE == glewIsSupported("GL_ARB_fragment_program")) { @@ -359,19 +368,35 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture // (a,b,c), the plane normal, are given by viewdir // d is the parameter along the view direction. the first d is given by // inserting previously found vertex into the plane equation - d0 = -(viewnormal[0]*cv[i][0] + viewnormal[1]*cv[i][1] + viewnormal[2]*cv[i][2]); - dd = 2.0*d0/64.0f; + d0 = (viewnormal[0]*cv[i][0] + viewnormal[1]*cv[i][1] + viewnormal[2]*cv[i][2]); + ds = (ABS(viewnormal[0])*size[0] + ABS(viewnormal[1])*size[1] + ABS(viewnormal[2])*size[2]); + dd = ds/128.0f; n = 0; + good_index = i; - // printf("d0: %f, dd: %f\n", d0, dd); + // printf("d0: %f, dd: %f, ds: %f\n\n", d0, dd, ds); points = MEM_callocN(sizeof(float)*12*3, "smoke_points_preview"); - for (d = d0; d > -d0; d -= dd) { + while(1) { float p0[3]; + float tmp_point[3], tmp_point2[3]; + + if(dd*n > ds) + break; + + VECCOPY(tmp_point, viewnormal); + VecMulf(tmp_point, -dd*(128.0f-(float)n)); + VECADD(tmp_point2, cv[good_index], tmp_point); + d = INPR(tmp_point2, viewnormal); + + // printf("my d: %f\n", d); + // intersect_edges returns the intersection points of all cube edges with // the given plane that lie within the cube - numpoints = intersect_edges(points, viewnormal[0], viewnormal[1], viewnormal[2], d, edges); + numpoints = intersect_edges(points, viewnormal[0], viewnormal[1], viewnormal[2], -d, edges); + + // printf("points: %d\n", numpoints); if (numpoints > 2) { VECCOPY(p0, points); From b8eec2b8fe123b118aef925ce2f786842764413d Mon Sep 17 00:00:00 2001 From: William Reynish Date: Tue, 20 Oct 2009 13:56:53 +0000 Subject: [PATCH 107/412] Added a button in the header to toggle full screen mode. It'd be nice to have this right-aligned, but this doesn't seem possible in the layout engine currently. --- release/scripts/ui/buttons_data_empty.py | 4 ++-- release/scripts/ui/space_info.py | 3 ++- source/blender/makesrna/intern/rna_object.c | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/release/scripts/ui/buttons_data_empty.py b/release/scripts/ui/buttons_data_empty.py index c07f3136fae..eda6cced0ae 100644 --- a/release/scripts/ui/buttons_data_empty.py +++ b/release/scripts/ui/buttons_data_empty.py @@ -17,7 +17,7 @@ class DATA_PT_empty(DataButtonsPanel): ob = context.object - layout.itemR(ob, "empty_draw_type", text="Draw Type") - layout.itemR(ob, "empty_draw_size", text="Draw Size") + layout.itemR(ob, "empty_draw_type", text="Display") + layout.itemR(ob, "empty_draw_size", text="Size") bpy.types.register(DATA_PT_empty) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 6e5c4b9147d..f9feef6f023 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -39,7 +39,8 @@ class INFO_HT_header(bpy.types.Header): layout.template_running_jobs() layout.itemL(text=scene.statistics()) - + + layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") class INFO_MT_file(bpy.types.Menu): __label__ = "File" diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 1e8d5fa6351..834cea93864 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -1405,13 +1405,13 @@ static void rna_def_object(BlenderRNA *brna) prop= RNA_def_property(srna, "empty_draw_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "empty_drawtype"); RNA_def_property_enum_items(prop, empty_drawtype_items); - RNA_def_property_ui_text(prop, "Empty Draw Type", "Viewport display style for empties."); + RNA_def_property_ui_text(prop, "Empty Display Type", "Viewport display style for empties."); RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL); prop= RNA_def_property(srna, "empty_draw_size", PROP_FLOAT, PROP_DISTANCE); RNA_def_property_float_sdna(prop, NULL, "empty_drawsize"); RNA_def_property_range(prop, 0.01, 10.0); - RNA_def_property_ui_text(prop, "Empty Draw Size", "Size of of display for empties in the viewport."); + RNA_def_property_ui_text(prop, "Empty Display Size", "Size of of display for empties in the viewport."); RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL); /* render */ From cb8f7fd385251d22ab97a48466e33ce0e42d5e4d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 13:58:53 +0000 Subject: [PATCH 108/412] Auto Save Auto save is now working again in 2.5. It will also remember now what the location of the original file was when recovering it, so that library links still work and saving the restored file does not save to the temp directory. There is also a new Recover Auto Save operator which will open the filebrowser in the temp directory and show the auto saved .blends. Implemenation Notes: * Timer storage was moved from window to windowmanager, so we can have windowmanager level timers too now, doesn't make sense to have autosave timer attached to a particular window. * FileGlobal now has a filename field storing where the file was saved. Note that this is only used when loading a file through the recover operators, regular file read doesn't use it, so copying the quit.blend manually over the original file will still work as expected. * Jobs timer no longer uses operator now, this seems more like an internal thing, changing keymaps should not make it possible to break the jobs manager. * Autosave is postponed by 10 seconds when a modal operator is running, e.g. transform or file browsing. * Moved setting G.sce in setup_app_data before depsgraph updates, these can use the filename for pointcaches. --- intern/ghost/intern/GHOST_WindowX11.cpp | 4 +- release/scripts/ui/space_info.py | 1 + source/blender/blenkernel/BKE_global.h | 1 + source/blender/blenkernel/intern/blender.c | 20 +- source/blender/blenloader/BLO_readfile.h | 1 + source/blender/blenloader/intern/readfile.c | 3 +- source/blender/blenloader/intern/writefile.c | 7 +- .../editors/interface/interface_handlers.c | 22 ++- .../editors/interface/interface_panel.c | 4 +- source/blender/editors/screen/screen_edit.c | 13 +- .../editors/sculpt_paint/paint_image.c | 4 +- .../editors/sculpt_paint/paint_stroke.c | 4 +- source/blender/editors/space_file/file_draw.c | 2 +- .../blender/editors/space_image/image_ops.c | 4 +- .../editors/space_view3d/view3d_view.c | 10 +- .../editors/uvedit/uvedit_unwrap_ops.c | 4 +- .../blender/makesdna/DNA_fileglobal_types.h | 3 + .../makesdna/DNA_windowmanager_types.h | 5 +- source/blender/makesrna/intern/rna_userdef.c | 8 +- source/blender/makesrna/intern/rna_wm.c | 2 - source/blender/windowmanager/WM_api.h | 10 +- source/blender/windowmanager/WM_types.h | 3 + source/blender/windowmanager/intern/wm.c | 11 +- source/blender/windowmanager/intern/wm_draw.c | 2 + .../windowmanager/intern/wm_event_system.c | 2 +- .../blender/windowmanager/intern/wm_files.c | 179 ++++++++++-------- .../windowmanager/intern/wm_init_exit.c | 2 +- source/blender/windowmanager/intern/wm_jobs.c | 27 +-- .../windowmanager/intern/wm_operators.c | 79 ++++++-- .../blender/windowmanager/intern/wm_window.c | 98 +++++----- source/blender/windowmanager/wm.h | 12 +- source/blender/windowmanager/wm_event_types.h | 3 +- source/blender/windowmanager/wm_window.h | 4 +- 33 files changed, 329 insertions(+), 225 deletions(-) diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index d40ce4145f5..5e6bb93d9ba 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -1412,7 +1412,7 @@ setWindowCursorGrab( setWindowCursorVisibility(false); } - XGrabPointer(m_display, m_window, True, ButtonPressMask| ButtonReleaseMask|PointerMotionMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime); + //XGrabPointer(m_display, m_window, True, ButtonPressMask| ButtonReleaseMask|PointerMotionMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime); } else { if (m_cursorGrab==GHOST_kGrabHide) { @@ -1430,7 +1430,7 @@ setWindowCursorGrab( /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ setCursorGrabAccum(0, 0); m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; /* disable */ - XUngrabPointer(m_display, CurrentTime); + //XUngrabPointer(m_display, CurrentTime); } XFlush(m_display); diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index f9feef6f023..d1e4ac13ab7 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -54,6 +54,7 @@ class INFO_MT_file(bpy.types.Menu): layout.itemO("wm.open_mainfile", text="Open...", icon='ICON_FILE_FOLDER') layout.item_menu_enumO("wm.open_recentfile", "file", text="Open Recent") layout.itemO("wm.recover_last_session") + layout.itemO("wm.recover_auto_save", text="Recover Auto Save...") layout.itemS() diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h index 5d0b89220d5..ccd21603c49 100644 --- a/source/blender/blenkernel/BKE_global.h +++ b/source/blender/blenkernel/BKE_global.h @@ -145,6 +145,7 @@ typedef struct Global { #define G_FILE_GLSL_NO_NODES (1 << 20) /* deprecated */ #define G_FILE_GLSL_NO_EXTRA_TEX (1 << 21) /* deprecated */ #define G_FILE_IGNORE_DEPRECATION_WARNINGS (1 << 22) /* deprecated */ +#define G_FILE_RECOVER (1 << 23) /* G.windowstate */ #define G_WINDOWSTATE_USERDEF 0 diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c index 2df5b7c173c..7570369827b 100644 --- a/source/blender/blenkernel/intern/blender.c +++ b/source/blender/blenkernel/intern/blender.c @@ -281,12 +281,15 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename) Object *ob; bScreen *curscreen= NULL; Scene *curscene= NULL; + int recover; char mode; - + /* 'u' = undo save, 'n' = no UI load */ if(bfd->main->screen.first==NULL) mode= 'u'; else if(G.fileflags & G_FILE_NO_UI) mode= 'n'; else mode= 0; + + recover= (G.fileflags & G_FILE_RECOVER); clean_paths(bfd->main); @@ -371,6 +374,16 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename) if(G.main->versionfile < 250) do_versions_ipos_to_animato(G.main); // XXX fixme... complicated versionpatching + /* in case of autosave or quit.blend, use original filename instead */ + if(recover && bfd->filename[0]) + filename= bfd->filename; + + /* these are the same at times, should never copy to the same location */ + if(G.sce != filename) + BLI_strncpy(G.sce, filename, FILE_MAX); + + BLI_strncpy(G.main->name, filename, FILE_MAX); /* is guaranteed current file */ + /* baseflags, groups, make depsgraph, etc */ set_scene_bg(CTX_data_scene(C)); @@ -383,11 +396,6 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename) /* now tag update flags, to ensure deformers get calculated on redraw */ DAG_scene_update_flags(CTX_data_scene(C), CTX_data_scene(C)->lay); - if (G.sce != filename) /* these are the same at times, should never copy to the same location */ - strcpy(G.sce, filename); - - BLI_strncpy(G.main->name, filename, FILE_MAX); /* is guaranteed current file */ - MEM_freeN(bfd); } diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h index 52295dc3092..408d07b965c 100644 --- a/source/blender/blenloader/BLO_readfile.h +++ b/source/blender/blenloader/BLO_readfile.h @@ -62,6 +62,7 @@ typedef struct BlendFileData { int fileflags; int displaymode; int globalf; + char filename[240]; /* 240 = FILE_MAX */ struct bScreen* curscreen; struct Scene* curscene; diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 761fc8b079a..ca2e5f4de75 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -4432,7 +4432,6 @@ static void direct_link_windowmanager(FileData *fd, wmWindowManager *wm) win->curswin= NULL; win->tweak= NULL; - win->timers.first= win->timers.last= NULL; win->queue.first= win->queue.last= NULL; win->handlers.first= win->handlers.last= NULL; win->modalhandlers.first= win->modalhandlers.last= NULL; @@ -4444,6 +4443,7 @@ static void direct_link_windowmanager(FileData *fd, wmWindowManager *wm) win->drawfail= 0; } + wm->timers.first= wm->timers.last= NULL; wm->operators.first= wm->operators.last= NULL; wm->paintcursors.first= wm->paintcursors.last= NULL; wm->queue.first= wm->queue.last= NULL; @@ -5468,6 +5468,7 @@ static BHead *read_global(BlendFileData *bfd, FileData *fd, BHead *bhead) bfd->fileflags= fg->fileflags; bfd->displaymode= fg->displaymode; bfd->globalf= fg->globalf; + BLI_strncpy(bfd->filename, fg->filename, sizeof(bfd->filename)); bfd->curscreen= fg->curscreen; bfd->curscene= fg->curscene; diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index e3d061d8e4b..f0c584b6267 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2308,7 +2308,7 @@ static void write_scripts(WriteData *wd, ListBase *idbase) /* context is usually defined by WM, two cases where no WM is available: * - for forward compatibility, curscreen has to be saved * - for undofile, curscene needs to be saved */ -static void write_global(WriteData *wd, Main *mainvar) +static void write_global(WriteData *wd, int fileflags, Main *mainvar) { FileGlobal fg; bScreen *screen; @@ -2321,8 +2321,9 @@ static void write_global(WriteData *wd, Main *mainvar) fg.curscene= screen->scene; fg.displaymode= G.displaymode; fg.winpos= G.winpos; - fg.fileflags= (G.fileflags & ~G_FILE_NO_UI); // prevent to save this, is not good convention, and feature with concerns... + fg.fileflags= (fileflags & ~G_FILE_NO_UI); // prevent to save this, is not good convention, and feature with concerns... fg.globalf= G.f; + BLI_strncpy(fg.filename, mainvar->name, sizeof(fg.filename)); sprintf(subvstr, "%4d", BLENDER_SUBVERSION); memcpy(fg.subvstr, subvstr, 4); @@ -2351,7 +2352,7 @@ static int write_file_handle(Main *mainvar, int handle, MemFile *compare, MemFil mywrite(wd, buf, 12); write_renderinfo(wd, mainvar); - write_global(wd, mainvar); + write_global(wd, write_flags, mainvar); /* no UI save in undo */ if(current==NULL) { diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 29d84076533..554e729e0e2 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -92,6 +92,7 @@ typedef enum uiHandleButtonState { } uiHandleButtonState; typedef struct uiHandleButtonData { + wmWindowManager *wm; wmWindow *window; ARegion *region; @@ -3677,7 +3678,7 @@ static void button_timers_tooltip_remove(bContext *C, uiBut *but) data= but->active; if(data->tooltiptimer) { - WM_event_remove_window_timer(data->window, data->tooltiptimer); + WM_event_remove_timer(data->wm, data->window, data->tooltiptimer); data->tooltiptimer= NULL; } if(data->tooltip) { @@ -3686,7 +3687,7 @@ static void button_timers_tooltip_remove(bContext *C, uiBut *but) } if(data->autoopentimer) { - WM_event_remove_window_timer(data->window, data->autoopentimer); + WM_event_remove_timer(data->wm, data->window, data->autoopentimer); data->autoopentimer= NULL; } } @@ -3698,13 +3699,13 @@ static void button_tooltip_timer_reset(uiBut *but) data= but->active; if(data->tooltiptimer) { - WM_event_remove_window_timer(data->window, data->tooltiptimer); + WM_event_remove_timer(data->wm, data->window, data->tooltiptimer); data->tooltiptimer= NULL; } if(U.flag & USER_TOOLTIPS) if(!but->block->tooltipdisabled) - data->tooltiptimer= WM_event_add_window_timer(data->window, TIMER, BUTTON_TOOLTIP_DELAY); + data->tooltiptimer= WM_event_add_timer(data->wm, data->window, TIMER, BUTTON_TOOLTIP_DELAY); } static void button_activate_state(bContext *C, uiBut *but, uiHandleButtonState state) @@ -3732,7 +3733,7 @@ static void button_activate_state(bContext *C, uiBut *but, uiHandleButtonState s else time= -1; if(time >= 0) - data->autoopentimer= WM_event_add_window_timer(data->window, TIMER, 0.02*(double)time); + data->autoopentimer= WM_event_add_timer(data->wm, data->window, TIMER, 0.02*(double)time); } } } @@ -3765,10 +3766,10 @@ static void button_activate_state(bContext *C, uiBut *but, uiHandleButtonState s /* add a short delay before exiting, to ensure there is some feedback */ if(state == BUTTON_STATE_WAIT_FLASH) { - data->flashtimer= WM_event_add_window_timer(data->window, TIMER, BUTTON_FLASH_DELAY); + data->flashtimer= WM_event_add_timer(data->wm, data->window, TIMER, BUTTON_FLASH_DELAY); } else if(data->flashtimer) { - WM_event_remove_window_timer(data->window, data->flashtimer); + WM_event_remove_timer(data->wm, data->window, data->flashtimer); data->flashtimer= NULL; } @@ -3799,6 +3800,7 @@ static void button_activate_init(bContext *C, ARegion *ar, uiBut *but, uiButtonA /* setup struct */ data= MEM_callocN(sizeof(uiHandleButtonData), "uiHandleButtonData"); + data->wm= CTX_wm_manager(C); data->window= CTX_wm_window(C); data->region= ar; if( ELEM(but->type, BUT_CURVE, SEARCH_MENU) ); // XXX curve is temp @@ -4036,7 +4038,7 @@ static int ui_handle_button_event(bContext *C, wmEvent *event, uiBut *but) case TIMER: { /* handle tooltip timer */ if(event->customdata == data->tooltiptimer) { - WM_event_remove_window_timer(data->window, data->tooltiptimer); + WM_event_remove_timer(data->wm, data->window, data->tooltiptimer); data->tooltiptimer= NULL; if(!data->tooltip) @@ -4044,7 +4046,7 @@ static int ui_handle_button_event(bContext *C, wmEvent *event, uiBut *but) } /* handle menu auto open timer */ else if(event->customdata == data->autoopentimer) { - WM_event_remove_window_timer(data->window, data->autoopentimer); + WM_event_remove_timer(data->wm, data->window, data->autoopentimer); data->autoopentimer= NULL; if(ui_mouse_inside_button(ar, but, event->x, event->y)) @@ -4058,7 +4060,7 @@ static int ui_handle_button_event(bContext *C, wmEvent *event, uiBut *but) case MIDDLEMOUSE: /* XXX hardcoded keymap check... but anyway, while view changes, tooltips should be removed */ if(data->tooltiptimer) { - WM_event_remove_window_timer(data->window, data->tooltiptimer); + WM_event_remove_timer(data->wm, data->window, data->tooltiptimer); data->tooltiptimer= NULL; } /* pass on purposedly */ diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c index 2123b412d61..20cd6ebf971 100644 --- a/source/blender/editors/interface/interface_panel.c +++ b/source/blender/editors/interface/interface_panel.c @@ -1189,7 +1189,7 @@ static void panel_activate_state(const bContext *C, Panel *pa, uiHandlePanelStat pa->flag |= PNL_SELECT; if(data && data->animtimer) { - WM_event_remove_window_timer(win, data->animtimer); + WM_event_remove_timer(CTX_wm_manager(C), win, data->animtimer); data->animtimer= NULL; } @@ -1208,7 +1208,7 @@ static void panel_activate_state(const bContext *C, Panel *pa, uiHandlePanelStat } if(ELEM(state, PANEL_STATE_ANIMATION, PANEL_STATE_DRAG)) - data->animtimer= WM_event_add_window_timer(win, TIMER, ANIMATION_INTERVAL); + data->animtimer= WM_event_add_timer(CTX_wm_manager(C), win, TIMER, ANIMATION_INTERVAL); data->state= state; data->startx= win->eventstate->x; diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c index 2cc5500c3ef..6b71ccaba10 100644 --- a/source/blender/editors/screen/screen_edit.c +++ b/source/blender/editors/screen/screen_edit.c @@ -1040,7 +1040,7 @@ void ED_screen_refresh(wmWindowManager *wm, wmWindow *win) /* wake up animtimer */ if(win->screen->animtimer) - WM_event_window_timer_sleep(win, win->screen->animtimer, 0); + WM_event_timer_sleep(wm, win, win->screen->animtimer, 0); if(G.f & G_DEBUG) printf("set screen\n"); win->screen->do_refresh= 0; @@ -1097,6 +1097,7 @@ void ED_area_exit(bContext *C, ScrArea *sa) void ED_screen_exit(bContext *C, wmWindow *window, bScreen *screen) { + wmWindowManager *wm= CTX_wm_manager(C); wmWindow *prevwin= CTX_wm_window(C); ScrArea *sa; ARegion *ar; @@ -1104,7 +1105,7 @@ void ED_screen_exit(bContext *C, wmWindow *window, bScreen *screen) CTX_wm_window_set(C, window); if(screen->animtimer) - WM_event_remove_window_timer(window, screen->animtimer); + WM_event_remove_timer(wm, window, screen->animtimer); screen->animtimer= NULL; if(screen->mainwin) @@ -1232,6 +1233,7 @@ int ED_screen_area_active(const bContext *C) /* Do NOT call in area/region queues! */ void ED_screen_set(bContext *C, bScreen *sc) { + wmWindowManager *wm= CTX_wm_manager(C); wmWindow *win= CTX_wm_window(C); bScreen *oldscreen= CTX_wm_screen(C); ID *id; @@ -1264,7 +1266,7 @@ void ED_screen_set(bContext *C, bScreen *sc) /* we put timer to sleep, so screen_exit has to think there's no timer */ oldscreen->animtimer= NULL; if(wt) - WM_event_window_timer_sleep(win, wt, 1); + WM_event_timer_sleep(wm, win, wt, 1); ED_screen_exit(C, win, oldscreen); oldscreen->animtimer= wt; @@ -1519,17 +1521,18 @@ void ED_screen_full_prevspace(bContext *C) void ED_screen_animation_timer(bContext *C, int redraws, int sync, int enable) { bScreen *screen= CTX_wm_screen(C); + wmWindowManager *wm= CTX_wm_manager(C); wmWindow *win= CTX_wm_window(C); Scene *scene= CTX_data_scene(C); if(screen->animtimer) - WM_event_remove_window_timer(win, screen->animtimer); + WM_event_remove_timer(wm, win, screen->animtimer); screen->animtimer= NULL; if(enable) { struct ScreenAnimData *sad= MEM_callocN(sizeof(ScreenAnimData), "ScreenAnimData"); - screen->animtimer= WM_event_add_window_timer(win, TIMER0, (1.0/FPS)); + screen->animtimer= WM_event_add_timer(wm, win, TIMER0, (1.0/FPS)); sad->ar= CTX_wm_region(C); sad->redraws= redraws; sad->flag |= (enable < 0)? ANIMPLAY_FLAG_REVERSE: 0; diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 7596191e781..21651afe417 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -4645,7 +4645,7 @@ static void paint_exit(bContext *C, wmOperator *op) PaintOperation *pop= op->customdata; if(pop->timer) - WM_event_remove_window_timer(CTX_wm_window(C), pop->timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), pop->timer); settings->imapaint.flag &= ~IMAGEPAINT_DRAWING; imapaint_canvas_free(&pop->s); @@ -4757,7 +4757,7 @@ static int paint_invoke(bContext *C, wmOperator *op, wmEvent *event) WM_event_add_modal_handler(C, op); if(pop->s.brush->flag & BRUSH_AIRBRUSH) - pop->timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER, 0.01f); + pop->timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, 0.01f); return OPERATOR_RUNNING_MODAL; } diff --git a/source/blender/editors/sculpt_paint/paint_stroke.c b/source/blender/editors/sculpt_paint/paint_stroke.c index b83352ae70c..6e256bee7f2 100644 --- a/source/blender/editors/sculpt_paint/paint_stroke.c +++ b/source/blender/editors/sculpt_paint/paint_stroke.c @@ -243,7 +243,7 @@ int paint_stroke_modal(bContext *C, wmOperator *op, wmEvent *event) WM_paint_cursor_activate(CTX_wm_manager(C), paint_poll, paint_draw_smooth_stroke, stroke); if(stroke->brush->flag & BRUSH_AIRBRUSH) - stroke->timer = WM_event_add_window_timer(CTX_wm_window(C), TIMER, stroke->brush->rate); + stroke->timer = WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, stroke->brush->rate); } ED_region_tag_redraw(ar); @@ -270,7 +270,7 @@ int paint_stroke_modal(bContext *C, wmOperator *op, wmEvent *event) WM_paint_cursor_end(CTX_wm_manager(C), stroke->smooth_stroke_cursor); if(stroke->timer) - WM_event_remove_window_timer(CTX_wm_window(C), stroke->timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), stroke->timer); stroke->done(C, stroke); MEM_freeN(stroke); diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index 77a1b671054..2a1bb8b4add 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -610,7 +610,7 @@ void file_draw_list(const bContext *C, ARegion *ar) } if (!sfile->loadimage_timer) - sfile->loadimage_timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER1, 1.0/30.0); /* max 30 frames/sec. */ + sfile->loadimage_timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER1, 1.0/30.0); /* max 30 frames/sec. */ } diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index 482750e5b2e..ffc737eb9af 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -1680,7 +1680,7 @@ static void record_composite_exit(bContext *C, wmOperator *op) WM_cursor_restore(CTX_wm_window(C)); if(rcd->timer) - WM_event_remove_window_timer(CTX_wm_window(C), rcd->timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), rcd->timer); WM_event_add_notifier(C, NC_IMAGE|NA_EDITED, sima->image); @@ -1711,7 +1711,7 @@ static int record_composite_invoke(bContext *C, wmOperator *op, wmEvent *event) return OPERATOR_CANCELLED; rcd= op->customdata; - rcd->timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER, 0.0f); + rcd->timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, 0.0f); WM_event_add_modal_handler(C, op); if(!record_composite_apply(C, op)) diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index ae496158a46..12654bdac14 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -292,9 +292,9 @@ void smooth_view(bContext *C, Object *oldcamera, Object *camera, float *ofs, flo rv3d->sms= MEM_mallocN(sizeof(struct SmoothViewStore), "smoothview v3d"); *rv3d->sms= sms; if(rv3d->smooth_timer) - WM_event_remove_window_timer(CTX_wm_window(C), rv3d->smooth_timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), rv3d->smooth_timer); /* TIMER1 is hardcoded in keymap */ - rv3d->smooth_timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER1, 1.0/30.0); /* max 30 frs/sec */ + rv3d->smooth_timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER1, 1.0/30.0); /* max 30 frs/sec */ return; } @@ -346,7 +346,7 @@ static int view3d_smoothview_invoke(bContext *C, wmOperator *op, wmEvent *event) MEM_freeN(rv3d->sms); rv3d->sms= NULL; - WM_event_remove_window_timer(CTX_wm_window(C), rv3d->smooth_timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), rv3d->smooth_timer); rv3d->smooth_timer= NULL; } else { @@ -1798,7 +1798,7 @@ int initFlyInfo (bContext *C, FlyInfo *fly, wmOperator *op, wmEvent *event) fly->dvec_prev[0]= fly->dvec_prev[1]= fly->dvec_prev[2]= 0.0f; - fly->timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER, 0.01f); + fly->timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, 0.01f); /* we have to rely on events to give proper mousecoords after a warp_pointer */ @@ -1867,7 +1867,7 @@ static int flyEnd(bContext *C, FlyInfo *fly) if(fly->state == FLY_RUNNING) return OPERATOR_RUNNING_MODAL; - WM_event_remove_window_timer(CTX_wm_window(C), fly->timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), fly->timer); rv3d->dist= fly->dist_backup; diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c index c7258e616fa..019ac33dfd0 100644 --- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c +++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c @@ -303,7 +303,7 @@ static void minimize_stretch_exit(bContext *C, wmOperator *op, int cancel) if(sa) ED_area_headerprint(sa, NULL); if(ms->timer) - WM_event_remove_window_timer(CTX_wm_window(C), ms->timer); + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), ms->timer); if(cancel) param_flush_restore(ms->handle); @@ -343,7 +343,7 @@ static int minimize_stretch_invoke(bContext *C, wmOperator *op, wmEvent *event) ms= op->customdata; WM_event_add_modal_handler(C, op); - ms->timer= WM_event_add_window_timer(CTX_wm_window(C), TIMER, 0.01f); + ms->timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, 0.01f); return OPERATOR_RUNNING_MODAL; } diff --git a/source/blender/makesdna/DNA_fileglobal_types.h b/source/blender/makesdna/DNA_fileglobal_types.h index 43ab895b398..271c8d2a33e 100644 --- a/source/blender/makesdna/DNA_fileglobal_types.h +++ b/source/blender/makesdna/DNA_fileglobal_types.h @@ -47,6 +47,9 @@ typedef struct FileGlobal { struct Scene *curscene; int fileflags; int globalf; + + /* file path where this was saved, for recover */ + char filename[240]; /* 240 = FILE_MAX */ } FileGlobal; diff --git a/source/blender/makesdna/DNA_windowmanager_types.h b/source/blender/makesdna/DNA_windowmanager_types.h index 7a024e35ff0..5cdd74c8262 100644 --- a/source/blender/makesdna/DNA_windowmanager_types.h +++ b/source/blender/makesdna/DNA_windowmanager_types.h @@ -124,6 +124,9 @@ typedef struct wmWindowManager { ListBase keyconfigs; /* known key configurations */ struct wmKeyConfig *defaultconf; /* default configuration, not saved */ int defaultactmap, pad2; /* active keymap from default for editing */ + + ListBase timers; /* active timers */ + struct wmTimer *autosavetimer; /* timer for auto save */ } wmWindowManager; /* wmWindowManager.initialized */ @@ -160,8 +163,6 @@ typedef struct wmWindow { int drawmethod, drawfail; /* internal for wm_draw.c only */ void *drawdata; /* internal for wm_draw.c only */ - ListBase timers; - ListBase queue; /* all events (ghost level events were handled) */ ListBase handlers; /* window+screen handlers, handled last */ ListBase modalhandlers; /* priority handlers, handled first */ diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 1acf3c8effa..f9192a9473e 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -146,7 +146,11 @@ static void rna_UserDef_weight_color_update(bContext *C, PointerRNA *ptr) rna_userdef_update(C, ptr); } - +static void rna_userdef_autosave_update(bContext *C, PointerRNA *ptr) +{ + WM_autosave_init(C); + rna_userdef_update(C, ptr); +} #else @@ -2344,11 +2348,13 @@ static void rna_def_userdef_filepaths(BlenderRNA *brna) prop= RNA_def_property(srna, "auto_save_temporary_files", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_AUTOSAVE); RNA_def_property_ui_text(prop, "Auto Save Temporary Files", "Automatic saving of temporary files."); + RNA_def_property_update(prop, 0, "rna_userdef_autosave_update"); prop= RNA_def_property(srna, "auto_save_time", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "savetime"); RNA_def_property_range(prop, 1, 60); RNA_def_property_ui_text(prop, "Auto Save Time", "The time (in minutes) to wait between automatic temporary saves."); + RNA_def_property_update(prop, 0, "rna_userdef_autosave_update"); prop= RNA_def_property(srna, "recent_files", PROP_INT, PROP_NONE); RNA_def_property_range(prop, 0, 30); diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 2189412783a..e2e50b695fd 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -93,7 +93,6 @@ EnumPropertyItem event_timer_type_items[]= { {TIMER0, "TIMER0", 0, "Timer 0", ""}, {TIMER1, "TIMER1", 0, "Timer 1", ""}, {TIMER2, "TIMER2", 0, "Timer 2", ""}, - {TIMERJOBS, "JOBS_TIMER", 0, "Jobs Timer", ""}, {0, NULL, 0, NULL, NULL}}; /* not returned: CAPSLOCKKEY, UNKNOWNKEY, GRLESSKEY */ @@ -229,7 +228,6 @@ EnumPropertyItem event_type_items[] = { {TIMER0, "TIMER0", 0, "Timer 0", ""}, {TIMER1, "TIMER1", 0, "Timer 1", ""}, {TIMER2, "TIMER2", 0, "Timer 2", ""}, - {TIMERJOBS, "JOBS_TIMER", 0, "Jobs Timer", ""}, {0, NULL, 0, NULL, NULL}}; #define KMI_TYPE_KEYBOARD 0 diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index 59f3bcd4edc..224338e557a 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -67,9 +67,9 @@ void WM_window_open_temp (struct bContext *C, struct rcti *position, int type); int WM_read_homefile (struct bContext *C, struct wmOperator *op); int WM_write_homefile (struct bContext *C, struct wmOperator *op); void WM_read_file (struct bContext *C, char *name, struct ReportList *reports); -void WM_write_file (struct bContext *C, char *target, int compress, struct ReportList *reports); +void WM_write_file (struct bContext *C, char *target, int fileflags, struct ReportList *reports); void WM_read_autosavefile(struct bContext *C); -void WM_write_autosave (struct bContext *C); +void WM_autosave_init (struct bContext *C); /* mouse cursors */ void WM_cursor_set (struct wmWindow *win, int curs); @@ -141,9 +141,9 @@ void WM_main_add_notifier(unsigned int type, void *reference); void wm_event_add (struct wmWindow *win, struct wmEvent *event_to_add); /* XXX only for warning */ /* at maximum, every timestep seconds it triggers event_type events */ -struct wmTimer *WM_event_add_window_timer(struct wmWindow *win, int event_type, double timestep); -void WM_event_remove_window_timer(struct wmWindow *win, struct wmTimer *timer); -void WM_event_window_timer_sleep(struct wmWindow *win, struct wmTimer *timer, int dosleep); +struct wmTimer *WM_event_add_timer(struct wmWindowManager *wm, struct wmWindow *win, int event_type, double timestep); +void WM_event_remove_timer(struct wmWindowManager *wm, struct wmWindow *win, struct wmTimer *timer); +void WM_event_timer_sleep(struct wmWindowManager *wm, struct wmWindow *win, struct wmTimer *timer, int dosleep); /* operator api, default callbacks */ /* invoke callback, uses enum property named "type" */ diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h index 31cb5ee0832..0ef7e9670dc 100644 --- a/source/blender/windowmanager/WM_types.h +++ b/source/blender/windowmanager/WM_types.h @@ -289,6 +289,9 @@ typedef struct wmTabletData { typedef struct wmTimer { struct wmTimer *next, *prev; + + struct wmWindow *win; /* window this timer is attached to (optional) */ + double timestep; /* set by timer user */ int event_type; /* set by timer user, goes to event system */ void *customdata; /* set by timer user, to allow custom values */ diff --git a/source/blender/windowmanager/intern/wm.c b/source/blender/windowmanager/intern/wm.c index f4baa42515c..1d173005d85 100644 --- a/source/blender/windowmanager/intern/wm.c +++ b/source/blender/windowmanager/intern/wm.c @@ -209,8 +209,10 @@ void wm_check(bContext *C) if(wm->windows.first==NULL) return; /* case: fileread */ - if((wm->initialized & WM_INIT_WINDOW) == 0) + if((wm->initialized & WM_INIT_WINDOW) == 0) { WM_keymap_init(C); + WM_autosave_init(C); + } /* case: no open windows at all, for old file reads */ wm_window_add_ghostwindows(wm); @@ -269,12 +271,15 @@ void wm_close_and_free(bContext *C, wmWindowManager *wm) wmWindow *win; wmOperator *op; wmKeyConfig *keyconf; - + + if(wm->autosavetimer) + wm_autosave_timer_ended(wm); + while((win= wm->windows.first)) { BLI_remlink(&wm->windows, win); win->screen= NULL; /* prevent draw clear to use screen */ wm_draw_window_clear(win); - wm_window_free(C, win); + wm_window_free(C, wm, win); } while((op= wm->operators.first)) { diff --git a/source/blender/windowmanager/intern/wm_draw.c b/source/blender/windowmanager/intern/wm_draw.c index 93ecd4076a3..e7c04141ad3 100644 --- a/source/blender/windowmanager/intern/wm_draw.c +++ b/source/blender/windowmanager/intern/wm_draw.c @@ -44,6 +44,8 @@ #include "ED_screen.h" +#include "GPU_extensions.h" + #include "WM_api.h" #include "WM_types.h" #include "wm.h" diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index 8eca0a1b416..f301a20a7c1 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -791,7 +791,7 @@ static int wm_eventmatch(wmEvent *winevent, wmKeyMapItem *kmi) static int wm_event_always_pass(wmEvent *event) { /* some events we always pass on, to ensure proper communication */ - return ELEM5(event->type, TIMER, TIMER0, TIMER1, TIMER2, TIMERJOBS); + return ELEM4(event->type, TIMER, TIMER0, TIMER1, TIMER2); } /* operator exists */ diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index ff0e69b74d4..b2e55c8532e 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -95,6 +95,7 @@ #include "WM_types.h" #include "wm.h" #include "wm_window.h" +#include "wm_event_system.h" static void writeBlog(void); @@ -348,49 +349,6 @@ int WM_read_homefile(bContext *C, wmOperator *op) } -static void get_autosave_location(char buf[FILE_MAXDIR+FILE_MAXFILE]) -{ - char pidstr[32]; -#ifdef WIN32 - char subdir[9]; - char savedir[FILE_MAXDIR]; -#endif - - sprintf(pidstr, "%d.blend", abs(getpid())); - -#ifdef WIN32 - if (!BLI_exists(U.tempdir)) { - BLI_strncpy(subdir, "autosave", sizeof(subdir)); - BLI_make_file_string("/", savedir, BLI_gethome(), subdir); - - /* create a new autosave dir - * function already checks for existence or not */ - BLI_recurdir_fileops(savedir); - - BLI_make_file_string("/", buf, savedir, pidstr); - return; - } -#endif - - BLI_make_file_string("/", buf, U.tempdir, pidstr); -} - -void WM_read_autosavefile(bContext *C) -{ - char tstr[FILE_MAX], scestr[FILE_MAX]; - int save_over; - - BLI_strncpy(scestr, G.sce, FILE_MAX); /* temporal store */ - - get_autosave_location(tstr); - - save_over = G.save_over; - BKE_read_file(C, tstr, NULL, NULL); - G.save_over = save_over; - BLI_strncpy(G.sce, scestr, FILE_MAX); -} - - void read_Blog(void) { char name[FILE_MAX]; @@ -496,10 +454,10 @@ static void do_history(char *name, ReportList *reports) BKE_report(reports, RPT_ERROR, "Unable to make version backup"); } -void WM_write_file(bContext *C, char *target, int compress, ReportList *reports) +void WM_write_file(bContext *C, char *target, int fileflags, ReportList *reports) { Library *li; - int writeflags, len; + int len; char di[FILE_MAX]; len = strlen(target); @@ -537,20 +495,14 @@ void WM_write_file(bContext *C, char *target, int compress, ReportList *reports) do_history(di, reports); - writeflags= G.fileflags; - - /* set compression flag */ - if(compress) writeflags |= G_FILE_COMPRESS; - else writeflags &= ~G_FILE_COMPRESS; - - if (BLO_write_file(CTX_data_main(C), di, writeflags, reports)) { + if (BLO_write_file(CTX_data_main(C), di, fileflags, reports)) { strcpy(G.sce, di); G.relbase_valid = 1; strcpy(G.main->name, di); /* is guaranteed current file */ G.save_over = 1; /* disable untitled.blend convention */ - if(compress) G.fileflags |= G_FILE_COMPRESS; + if(fileflags & G_FILE_COMPRESS) G.fileflags |= G_FILE_COMPRESS; else G.fileflags &= ~G_FILE_COMPRESS; writeBlog(); @@ -562,56 +514,125 @@ void WM_write_file(bContext *C, char *target, int compress, ReportList *reports) /* operator entry */ int WM_write_homefile(bContext *C, wmOperator *op) { + wmWindowManager *wm= CTX_wm_manager(C); wmWindow *win= CTX_wm_window(C); char tstr[FILE_MAXDIR+FILE_MAXFILE]; - int write_flags; + int fileflags; /* check current window and close it if temp */ - if(win->screen->full == SCREENTEMP) { - wm_window_close(C, win); - } + if(win->screen->full == SCREENTEMP) + wm_window_close(C, wm, win); BLI_make_file_string("/", tstr, BLI_gethome(), ".B25.blend"); /* force save as regular blend file */ - write_flags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN); + fileflags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN); - BLO_write_file(CTX_data_main(C), tstr, write_flags, op->reports); + BLO_write_file(CTX_data_main(C), tstr, fileflags, op->reports); G.save_over= 0; return OPERATOR_FINISHED; } -void WM_write_autosave(bContext *C) +/************************ autosave ****************************/ + +void wm_autosave_location(char *filename) { - char tstr[FILE_MAXDIR+FILE_MAXFILE]; - int write_flags; + char pidstr[32]; +#ifdef WIN32 + char subdir[9]; + char savedir[FILE_MAXDIR]; +#endif + + sprintf(pidstr, "%d.blend", abs(getpid())); - get_autosave_location(tstr); - - /* force save as regular blend file */ - write_flags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN); - - /* error reporting to console */ - BLO_write_file(CTX_data_main(C), tstr, write_flags, NULL); +#ifdef WIN32 + if (!BLI_exists(U.tempdir)) { + BLI_strncpy(subdir, "autosave", sizeof(subdir)); + BLI_make_file_string("/", savedir, BLI_gethome(), subdir); + + /* create a new autosave dir + * function already checks for existence or not */ + BLI_recurdir_fileops(savedir); + + BLI_make_file_string("/", filename, savedir, pidstr); + return; + } +#endif + + BLI_make_file_string("/", filename, U.tempdir, pidstr); } -/* if global undo; remove tempsave, otherwise rename */ -void delete_autosave(void) +void WM_autosave_init(bContext *C) { - char tstr[FILE_MAXDIR+FILE_MAXFILE]; + wmWindowManager *wm= CTX_wm_manager(C); + wm_autosave_timer_ended(wm); + + if(U.flag & USER_AUTOSAVE) + wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0); +} + +void wm_autosave_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt) +{ + wmWindow *win; + wmEventHandler *handler; + char filename[FILE_MAX]; + int fileflags; + + WM_event_remove_timer(wm, NULL, wm->autosavetimer); + + /* if a modal operator is running, don't autosave, but try again in 10 seconds */ + for(win=wm->windows.first; win; win=win->next) { + for(handler=win->modalhandlers.first; handler; handler=handler->next) { + if(handler->op) { + wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, 10.0); + return; + } + } + } - get_autosave_location(tstr); + wm_autosave_location(filename); - if (BLI_exists(tstr)) { - char str[FILE_MAXDIR+FILE_MAXFILE]; - BLI_make_file_string("/", str, U.tempdir, "quit.blend"); + /* force save as regular blend file */ + fileflags = G.fileflags & ~(G_FILE_COMPRESS|G_FILE_LOCK|G_FILE_SIGN); - if(U.uiflag & USER_GLOBALUNDO) BLI_delete(tstr, 0, 0); - else BLI_rename(tstr, str); + /* no error reporting to console */ + BLO_write_file(CTX_data_main(C), filename, fileflags, NULL); + + /* do timer after file write, just in case file write takes a long time */ + wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0); +} + +void wm_autosave_timer_ended(wmWindowManager *wm) +{ + if(wm->autosavetimer) { + WM_event_remove_timer(wm, NULL, wm->autosavetimer); + wm->autosavetimer= NULL; } } -/***/ +void wm_autosave_delete(void) +{ + char filename[FILE_MAX]; + + wm_autosave_location(filename); + + if(BLI_exists(filename)) { + char str[FILE_MAXDIR+FILE_MAXFILE]; + BLI_make_file_string("/", str, U.tempdir, "quit.blend"); + + /* if global undo; remove tempsave, otherwise rename */ + if(U.uiflag & USER_GLOBALUNDO) BLI_delete(filename, 0, 0); + else BLI_rename(filename, str); + } +} + +void wm_autosave_read(bContext *C, ReportList *reports) +{ + char filename[FILE_MAX]; + + wm_autosave_location(filename); + WM_read_file(C, filename, reports); +} diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 2e456669cb1..8097822acbc 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -283,7 +283,7 @@ void WM_exit(bContext *C) printf("Error Totblock: %d\n", MEM_get_memory_blocks_in_use()); MEM_printmemlist(); } -// delete_autosave(); + wm_autosave_delete(); printf("\nBlender quit\n"); diff --git a/source/blender/windowmanager/intern/wm_jobs.c b/source/blender/windowmanager/intern/wm_jobs.c index 498306484e9..c2ecf0c59e7 100644 --- a/source/blender/windowmanager/intern/wm_jobs.c +++ b/source/blender/windowmanager/intern/wm_jobs.c @@ -255,7 +255,7 @@ void WM_jobs_start(wmWindowManager *wm, wmJob *steve) /* restarted job has timer already */ if(steve->wt==NULL) - steve->wt= WM_event_add_window_timer(steve->win, TIMERJOBS, steve->timestep); + steve->wt= WM_event_add_timer(wm, steve->win, TIMERJOBS, steve->timestep); } else printf("job fails, not initialized\n"); } @@ -271,7 +271,7 @@ static void wm_jobs_kill_job(wmWindowManager *wm, wmJob *steve) } if(steve->wt) - WM_event_remove_window_timer(steve->win, steve->wt); + WM_event_remove_timer(wm, steve->win, steve->wt); if(steve->customdata) steve->free(steve->customdata); if(steve->run_customdata) @@ -317,14 +317,13 @@ void wm_jobs_timer_ended(wmWindowManager *wm, wmTimer *wt) } /* hardcoded to event TIMERJOBS */ -static int wm_jobs_timer(bContext *C, wmOperator *op, wmEvent *evt) +void wm_jobs_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt) { - wmWindowManager *wm= CTX_wm_manager(C); wmJob *steve= wm->jobs.first; for(; steve; steve= steve->next) { - if(evt->customdata==steve->wt) { + if(steve->wt==wt) { /* running threads */ if(steve->threads.first) { @@ -358,7 +357,7 @@ static int wm_jobs_timer(bContext *C, wmOperator *op, wmEvent *evt) WM_jobs_start(wm, steve); } else { - WM_event_remove_window_timer(steve->win, steve->wt); + WM_event_remove_timer(wm, steve->win, steve->wt); steve->wt= NULL; /* remove steve */ @@ -370,23 +369,7 @@ static int wm_jobs_timer(bContext *C, wmOperator *op, wmEvent *evt) else if(steve->suspended) { WM_jobs_start(wm, steve); } - - return OPERATOR_FINISHED; } } - return OPERATOR_PASS_THROUGH; } -void WM_OT_jobs_timer(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Jobs timer"; - ot->idname= "WM_OT_jobs_timer"; - ot->description="Jobs timer operator."; - - /* api callbacks */ - ot->invoke= wm_jobs_timer; - - ot->poll= ED_operator_screenactive; - -} diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index cc5967ab23a..7a97ebf0de7 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -972,7 +972,7 @@ static int wm_open_mainfile_exec(bContext *C, wmOperator *op) WM_read_file(C, path, op->reports); - return 0; + return OPERATOR_FINISHED; } static void WM_OT_open_mainfile(wmOperatorType *ot) @@ -1154,12 +1154,9 @@ static void WM_OT_link_append(wmOperatorType *ot) static int wm_recover_last_session_exec(bContext *C, wmOperator *op) { - char scestr[FILE_MAX], filename[FILE_MAX]; - int save_over; + char filename[FILE_MAX]; - /* back up some values */ - BLI_strncpy(scestr, G.sce, sizeof(scestr)); - save_over = G.save_over; + G.fileflags |= G_FILE_RECOVER; // XXX wm in context is not set correctly after WM_read_file -> crash // do it before for now, but is this correct with multiple windows? @@ -1169,11 +1166,9 @@ static int wm_recover_last_session_exec(bContext *C, wmOperator *op) BLI_make_file_string("/", filename, btempdir, "quit.blend"); WM_read_file(C, filename, op->reports); - /* restore */ - G.save_over = save_over; - BLI_strncpy(G.sce, scestr, sizeof(G.sce)); + G.fileflags &= ~G_FILE_RECOVER; - return 0; + return OPERATOR_FINISHED; } static void WM_OT_recover_last_session(wmOperatorType *ot) @@ -1186,6 +1181,52 @@ static void WM_OT_recover_last_session(wmOperatorType *ot) ot->poll= WM_operator_winactive; } +/* *************** recover auto save **************** */ + +static int wm_recover_auto_save_exec(bContext *C, wmOperator *op) +{ + char path[FILE_MAX]; + + RNA_string_get(op->ptr, "path", path); + + G.fileflags |= G_FILE_RECOVER; + + // XXX wm in context is not set correctly after WM_read_file -> crash + // do it before for now, but is this correct with multiple windows? + WM_event_add_notifier(C, NC_WINDOW, NULL); + + /* load file */ + WM_read_file(C, path, op->reports); + + G.fileflags &= ~G_FILE_RECOVER; + + return OPERATOR_FINISHED; +} + +static int wm_recover_auto_save_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + char filename[FILE_MAX]; + + wm_autosave_location(filename); + RNA_string_set(op->ptr, "path", filename); + WM_event_add_fileselect(C, op); + + return OPERATOR_RUNNING_MODAL; +} + +static void WM_OT_recover_auto_save(wmOperatorType *ot) +{ + ot->name= "Recover Auto Save"; + ot->idname= "WM_OT_recover_auto_save"; + ot->description="Open an automatically saved file to recover it."; + + ot->exec= wm_recover_auto_save_exec; + ot->invoke= wm_recover_auto_save_invoke; + ot->poll= WM_operator_winactive; + + WM_operator_properties_filesel(ot, BLENDERFILE, FILE_BLENDER); +} + /* *************** save file as **************** */ static void untitled(char *name) @@ -1229,10 +1270,9 @@ static int wm_save_as_mainfile_invoke(bContext *C, wmOperator *op, wmEvent *even static int wm_save_as_mainfile_exec(bContext *C, wmOperator *op) { char path[FILE_MAX]; - int compress; + int fileflags; save_set_compress(op); - compress= RNA_boolean_get(op->ptr, "compress"); if(RNA_property_is_set(op->ptr, "path")) RNA_string_get(op->ptr, "path", path); @@ -1241,7 +1281,15 @@ static int wm_save_as_mainfile_exec(bContext *C, wmOperator *op) untitled(path); } - WM_write_file(C, path, compress, op->reports); + fileflags= G.fileflags; + + /* set compression flag */ + if(RNA_boolean_get(op->ptr, "compress")) + fileflags |= G_FILE_COMPRESS; + else + fileflags &= ~G_FILE_COMPRESS; + + WM_write_file(C, path, fileflags, op->reports); WM_event_add_notifier(C, NC_WM|ND_FILESAVE, NULL); @@ -2173,7 +2221,7 @@ void wm_operatortype_init(void) WM_operatortype_append(WM_OT_open_mainfile); WM_operatortype_append(WM_OT_link_append); WM_operatortype_append(WM_OT_recover_last_session); - WM_operatortype_append(WM_OT_jobs_timer); + WM_operatortype_append(WM_OT_recover_auto_save); WM_operatortype_append(WM_OT_save_as_mainfile); WM_operatortype_append(WM_OT_save_mainfile); WM_operatortype_append(WM_OT_redraw_timer); @@ -2188,9 +2236,6 @@ void wm_window_keymap(wmKeyConfig *keyconf) wmKeyMap *keymap= WM_keymap_find(keyconf, "Window", 0, 0); wmKeyMapItem *km; - /* items to make WM work */ - WM_keymap_verify_item(keymap, "WM_OT_jobs_timer", TIMERJOBS, KM_ANY, KM_ANY, 0); - /* note, this doesn't replace existing keymap items */ WM_keymap_verify_item(keymap, "WM_OT_window_duplicate", WKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); #ifdef __APPLE__ diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c index f7116a2bd1f..70d40df4532 100644 --- a/source/blender/windowmanager/intern/wm_window.c +++ b/source/blender/windowmanager/intern/wm_window.c @@ -130,37 +130,39 @@ static void wm_ghostwindow_destroy(wmWindow *win) /* including window itself, C can be NULL. ED_screen_exit should have been called */ -void wm_window_free(bContext *C, wmWindow *win) +void wm_window_free(bContext *C, wmWindowManager *wm, wmWindow *win) { wmTimer *wt, *wtnext; /* update context */ if(C) { - wmWindowManager *wm= CTX_wm_manager(C); - - if(wm->windrawable==win) - wm->windrawable= NULL; - if(wm->winactive==win) - wm->winactive= NULL; - if(CTX_wm_window(C)==win) - CTX_wm_window_set(C, NULL); - WM_event_remove_handlers(C, &win->handlers); WM_event_remove_handlers(C, &win->modalhandlers); - /* end running jobs, a job end also removes its timer */ - for(wt= win->timers.first; wt; wt= wtnext) { - wtnext= wt->next; - if(wt->event_type==TIMERJOBS) - wm_jobs_timer_ended(wm, wt); - } + if(CTX_wm_window(C)==win) + CTX_wm_window_set(C, NULL); } - - if(win->eventstate) MEM_freeN(win->eventstate); + + if(wm->windrawable==win) + wm->windrawable= NULL; + if(wm->winactive==win) + wm->winactive= NULL; + + /* end running jobs, a job end also removes its timer */ + for(wt= wm->timers.first; wt; wt= wtnext) { + wtnext= wt->next; + if(wt->win==win && wt->event_type==TIMERJOBS) + wm_jobs_timer_ended(wm, wt); + } /* timer removing, need to call this api function */ - while((wt= win->timers.first)) - WM_event_remove_window_timer(win, wt); + for(wt= wm->timers.first; wt; wt=wtnext) { + wtnext= wt->next; + if(wt->win==win) + WM_event_remove_timer(wm, win, wt); + } + + if(win->eventstate) MEM_freeN(win->eventstate); wm_event_free_all(win); wm_subwindows_free(win); @@ -223,14 +225,13 @@ wmWindow *wm_window_copy(bContext *C, wmWindow *winorig) } /* this is event from ghost, or exit-blender op */ -void wm_window_close(bContext *C, wmWindow *win) +void wm_window_close(bContext *C, wmWindowManager *wm, wmWindow *win) { - wmWindowManager *wm= CTX_wm_manager(C); BLI_remlink(&wm->windows, win); wm_draw_window_clear(win); ED_screen_exit(C, win, win->screen); - wm_window_free(C, win); + wm_window_free(C, wm, win); /* check remaining windows */ if(wm->windows.first) { @@ -544,6 +545,7 @@ void wm_window_make_drawable(bContext *C, wmWindow *win) static int ghost_event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) { bContext *C= private; + wmWindowManager *wm= CTX_wm_manager(C); GHOST_TEventType type= GHOST_GetEventType(evt); if (type == GHOST_kEventQuit) { @@ -576,7 +578,7 @@ static int ghost_event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) GHOST_TEventKeyData kdata; int cx, cy, wx, wy; - CTX_wm_manager(C)->winactive= win; /* no context change! c->wm->windrawable is drawable, or for area queues */ + wm->winactive= win; /* no context change! c->wm->windrawable is drawable, or for area queues */ win->active= 1; // window_handle(win, INPUTCHANGE, win->active); @@ -619,7 +621,7 @@ static int ghost_event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) break; } case GHOST_kEventWindowClose: { - wm_window_close(C, win); + wm_window_close(C, wm, win); break; } case GHOST_kEventWindowUpdate: { @@ -719,22 +721,29 @@ static int ghost_event_proc(GHOST_EventHandle evt, GHOST_TUserDataPtr private) static int wm_window_timer(const bContext *C) { wmWindowManager *wm= CTX_wm_manager(C); + wmTimer *wt, *wtnext; wmWindow *win; double time= PIL_check_seconds_timer(); int retval= 0; - for(win= wm->windows.first; win; win= win->next) { - wmTimer *wt; - for(wt= win->timers.first; wt; wt= wt->next) { - if(wt->sleep==0) { - if(time > wt->ntime) { + for(wt= wm->timers.first; wt; wt= wtnext) { + wtnext= wt->next; /* in case timer gets removed */ + win= wt->win; + + if(wt->sleep==0) { + if(time > wt->ntime) { + wt->delta= time - wt->ltime; + wt->duration += wt->delta; + wt->ltime= time; + wt->ntime= wt->stime + wt->timestep*ceil(wt->duration/wt->timestep); + + if(wt->event_type == TIMERJOBS) + wm_jobs_timer(C, wm, wt); + else if(wt->event_type == TIMERAUTOSAVE) + wm_autosave_timer(C, wm, wt); + else if(win) { wmEvent event= *(win->eventstate); - wt->delta= time - wt->ltime; - wt->duration += wt->delta; - wt->ltime= time; - wt->ntime= wt->stime + wt->timestep*ceil(wt->duration/wt->timestep); - event.type= wt->event_type; event.custom= EVT_DATA_TIMER; event.customdata= wt; @@ -810,19 +819,19 @@ void wm_ghost_exit(void) /* **************** timer ********************** */ /* to (de)activate running timers temporary */ -void WM_event_window_timer_sleep(wmWindow *win, wmTimer *timer, int dosleep) +void WM_event_timer_sleep(wmWindowManager *wm, wmWindow *win, wmTimer *timer, int dosleep) { wmTimer *wt; - for(wt= win->timers.first; wt; wt= wt->next) + for(wt= wm->timers.first; wt; wt= wt->next) if(wt==timer) break; - if(wt) { + + if(wt) wt->sleep= dosleep; - } } -wmTimer *WM_event_add_window_timer(wmWindow *win, int event_type, double timestep) +wmTimer *WM_event_add_timer(wmWindowManager *wm, wmWindow *win, int event_type, double timestep) { wmTimer *wt= MEM_callocN(sizeof(wmTimer), "window timer"); @@ -831,23 +840,24 @@ wmTimer *WM_event_add_window_timer(wmWindow *win, int event_type, double timeste wt->ntime= wt->ltime + timestep; wt->stime= wt->ltime; wt->timestep= timestep; + wt->win= win; - BLI_addtail(&win->timers, wt); + BLI_addtail(&wm->timers, wt); return wt; } -void WM_event_remove_window_timer(wmWindow *win, wmTimer *timer) +void WM_event_remove_timer(wmWindowManager *wm, wmWindow *win, wmTimer *timer) { wmTimer *wt; /* extra security check */ - for(wt= win->timers.first; wt; wt= wt->next) + for(wt= wm->timers.first; wt; wt= wt->next) if(wt==timer) break; if(wt) { - BLI_remlink(&win->timers, wt); + BLI_remlink(&wm->timers, wt); if(wt->customdata) MEM_freeN(wt->customdata); MEM_freeN(wt); diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h index 832558b961f..609b6142640 100644 --- a/source/blender/windowmanager/wm.h +++ b/source/blender/windowmanager/wm.h @@ -29,6 +29,7 @@ #define WM_H struct wmWindow; +struct ReportList; typedef struct wmPaintCursor { struct wmPaintCursor *next, *prev; @@ -64,9 +65,16 @@ void wm_gesture_draw(struct wmWindow *win); int wm_gesture_evaluate(bContext *C, wmGesture *gesture); void wm_gesture_tag_redraw(bContext *C); -/* wm_jobs.h */ -void WM_OT_jobs_timer(struct wmOperatorType *ot); +/* wm_jobs.c */ +void wm_jobs_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt); void wm_jobs_timer_ended(wmWindowManager *wm, wmTimer *wt); +/* wm_files.c */ +void wm_autosave_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt); +void wm_autosave_timer_ended(wmWindowManager *wm); +void wm_autosave_delete(void); +void wm_autosave_read(bContext *C, struct ReportList *reports); +void wm_autosave_location(char *filename); + #endif /* WM_H */ diff --git a/source/blender/windowmanager/wm_event_types.h b/source/blender/windowmanager/wm_event_types.h index b33c4bd14e8..c7588795a15 100644 --- a/source/blender/windowmanager/wm_event_types.h +++ b/source/blender/windowmanager/wm_event_types.h @@ -75,6 +75,7 @@ #define TIMER1 0x0112 /* timer event, slot for internal use */ #define TIMER2 0x0113 /* timer event, slot for internal use */ #define TIMERJOBS 0x0114 /* timer event, internal use */ +#define TIMERAUTOSAVE 0x0115 /* timer event, internal use */ /* standard keyboard */ #define AKEY 'a' @@ -203,7 +204,7 @@ #define ISMOUSE(event) (event >= LEFTMOUSE && event <= WHEELOUTMOUSE) /* test wether the event is timer event */ -#define ISTIMER(event) (event >= TIMER && event <= TIMERJOBS) +#define ISTIMER(event) (event >= TIMER && event <= TIMERAUTOSAVE) /* test wether the event is tweak event */ #define ISTWEAK(event) (event >= EVT_TWEAK_L && event <= EVT_GESTURE) diff --git a/source/blender/windowmanager/wm_window.h b/source/blender/windowmanager/wm_window.h index 44c31e7cb69..f0a2c0ec9a9 100644 --- a/source/blender/windowmanager/wm_window.h +++ b/source/blender/windowmanager/wm_window.h @@ -36,8 +36,8 @@ void wm_ghost_init (bContext *C); void wm_ghost_exit(void); wmWindow *wm_window_new (bContext *C); -void wm_window_free (bContext *C, wmWindow *win); -void wm_window_close (bContext *C, wmWindow *win); +void wm_window_free (bContext *C, wmWindowManager *wm, wmWindow *win); +void wm_window_close (bContext *C, wmWindowManager *wm, wmWindow *win); void wm_window_title (wmWindowManager *wm, wmWindow *win); void wm_window_add_ghostwindows (wmWindowManager *wm); From 4197253b26dd86b1c06f400542fd073340f644a0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 13:59:26 +0000 Subject: [PATCH 109/412] split weight normalize into 2 operators, normalize and normalize_all. Added an option for normalize_all that keeps the active group at its existing weight while normaling all other groups around it. Thsi makes it easy to paint up to 100% where all other groups will use progressivly less until the active group is 100% and all others are 0. Added weight operators to the toolbar --- release/scripts/ui/space_view3d_toolbar.py | 23 +++- source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 1 + source/blender/editors/object/object_vgroup.c | 111 ++++++++++++++---- 4 files changed, 112 insertions(+), 24 deletions(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index f354a3314f2..a552bb7de14 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -103,7 +103,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") -class VIEW3D_PT_tools_mesheditoptions(View3DPanel): +class VIEW3D_PT_tools_meshedit_options(View3DPanel): __context__ = "mesh_edit" __label__ = "Mesh Options" @@ -635,6 +635,22 @@ class VIEW3D_PT_sculpt_options(PaintPanel): # ********** default tools for weightpaint **************** class VIEW3D_PT_tools_weightpaint(View3DPanel): + __context__ = "weightpaint" + __label__ = "Weight Tools" + + def draw(self, context): + layout = self.layout + + wpaint = context.tool_settings.weight_paint + + col = layout.column() + # col.itemL(text="Blend:") + col.itemO("object.vertex_group_normalize_all", text="Normalize All") + col.itemO("object.vertex_group_normalize", text="Normalize") + col.itemO("object.vertex_group_invert", text="Invert") + col.itemO("object.vertex_group_clean", text="Clean") + +class VIEW3D_PT_tools_weightpaint_options(View3DPanel): __context__ = "weightpaint" __label__ = "Options" @@ -806,9 +822,10 @@ class VIEW3D_PT_tools_particlemode(View3DPanel): sub.active = pe.fade_time sub.itemR(pe, "fade_frames", slider=True) +bpy.types.register(VIEW3D_PT_tools_weightpaint) bpy.types.register(VIEW3D_PT_tools_objectmode) bpy.types.register(VIEW3D_PT_tools_meshedit) -bpy.types.register(VIEW3D_PT_tools_mesheditoptions) +bpy.types.register(VIEW3D_PT_tools_meshedit_options) bpy.types.register(VIEW3D_PT_tools_curveedit) bpy.types.register(VIEW3D_PT_tools_surfaceedit) bpy.types.register(VIEW3D_PT_tools_textedit) @@ -822,6 +839,6 @@ bpy.types.register(VIEW3D_PT_tools_brush_stroke) bpy.types.register(VIEW3D_PT_tools_brush_curve) bpy.types.register(VIEW3D_PT_sculpt_options) bpy.types.register(VIEW3D_PT_tools_vertexpaint) -bpy.types.register(VIEW3D_PT_tools_weightpaint) +bpy.types.register(VIEW3D_PT_tools_weightpaint_options) bpy.types.register(VIEW3D_PT_tools_projectpaint) bpy.types.register(VIEW3D_PT_tools_particlemode) diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 866180f01a0..36d897b76c8 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -167,6 +167,7 @@ void OBJECT_OT_vertex_group_deselect(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_copy_to_linked(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_copy(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_normalize(struct wmOperatorType *ot); +void OBJECT_OT_vertex_group_normalize_all(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_invert(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_clean(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_menu(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 17487ea6aca..06b554f0406 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -164,6 +164,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_vertex_group_copy_to_linked); WM_operatortype_append(OBJECT_OT_vertex_group_copy); WM_operatortype_append(OBJECT_OT_vertex_group_normalize); + WM_operatortype_append(OBJECT_OT_vertex_group_normalize_all); WM_operatortype_append(OBJECT_OT_vertex_group_invert); WM_operatortype_append(OBJECT_OT_vertex_group_clean); WM_operatortype_append(OBJECT_OT_vertex_group_menu); diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 7c206ce300a..e5467e50972 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -616,9 +616,9 @@ static void vgroup_normalize(Object *ob) } /* TODO - select between groups */ -static void vgroup_normalize_all(Object *ob) +static void vgroup_normalize_all(Object *ob, int lock_active) { - MDeformWeight *dw; + MDeformWeight *dw, *dw_act; MDeformVert *dvert, *dvert_array=NULL; int i, dvert_tot=0; float tot_weight; @@ -626,25 +626,70 @@ static void vgroup_normalize_all(Object *ob) ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); if(dvert_array) { - for(i = 0; i < dvert_tot; i++) { - int j; - tot_weight= 0.0f; - dvert = dvert_array+i; + if(lock_active) { + int def_nr= ob->actdef-1; - j= dvert->totweight; - while(j--) { - dw= dvert->dw + j; - tot_weight += dw->weight; - } + for(i = 0; i < dvert_tot; i++) { + float lock_iweight= 1.0f; + int j; + + tot_weight= 0.0f; + dw_act= NULL; + dvert = dvert_array+i; - if(tot_weight) { j= dvert->totweight; while(j--) { dw= dvert->dw + j; - dw->weight /= tot_weight; - /* incase of division errors with very low weights */ - CLAMP(dw->weight, 0.0f, 1.0f); + if(dw->def_nr==def_nr) { + dw_act= dw; + lock_iweight = (1.0f - dw_act->weight); + } + else { + tot_weight += dw->weight; + } + } + + if(tot_weight) { + j= dvert->totweight; + while(j--) { + dw= dvert->dw + j; + if(dw == dw_act) { + if (dvert->totweight==1) { + dw_act->weight= 1.0f; /* no other weights, set to 1.0 */ + } + } else { + if(dw->weight > 0.0f) + dw->weight = (dw->weight / tot_weight) * lock_iweight; + } + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } + } + } + } + else { + for(i = 0; i < dvert_tot; i++) { + int j; + tot_weight= 0.0f; + dvert = dvert_array+i; + + j= dvert->totweight; + while(j--) { + dw= dvert->dw + j; + tot_weight += dw->weight; + } + + if(tot_weight) { + j= dvert->totweight; + while(j--) { + dw= dvert->dw + j; + dw->weight /= tot_weight; + + /* incase of division errors with very low weights */ + CLAMP(dw->weight, 0.0f, 1.0f); + } } } } @@ -1342,12 +1387,8 @@ void OBJECT_OT_vertex_group_copy(wmOperatorType *ot) static int vertex_group_normalize_exec(bContext *C, wmOperator *op) { Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; - int all_groups= RNA_boolean_get(op->ptr,"all_groups"); - if(all_groups) - vgroup_normalize_all(ob); - else - vgroup_normalize(ob); + vgroup_normalize(ob); DAG_id_flush_update(&ob->id, OB_RECALC_DATA); WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); @@ -1368,8 +1409,36 @@ void OBJECT_OT_vertex_group_normalize(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} - RNA_def_boolean(ot->srna, "all_groups", FALSE, "All Groups", "Normalize all vertex groups."); +static int vertex_group_normalize_all_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + int lock_active= RNA_boolean_get(op->ptr,"lock_active"); + + vgroup_normalize_all(ob, lock_active); + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob->data); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_vertex_group_normalize_all(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Normalize All Vertex Groups"; + ot->idname= "OBJECT_OT_vertex_group_normalize_all"; + + /* api callbacks */ + ot->poll= vertex_group_poll; + ot->exec= vertex_group_normalize_all_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_boolean(ot->srna, "lock_active", TRUE, "Lock Active", "Keep the values of the active group while normalizing others."); } static int vertex_group_invert_exec(bContext *C, wmOperator *op) From 5571d37e94a2989ea0dd727abb43887a95f585f3 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Tue, 20 Oct 2009 15:23:04 +0000 Subject: [PATCH 110/412] Cocoa: - fix windowDidResize event not forwarded in some cases on 10.6 - fix crash on repeated Cmd-Q + Cancel quit actions - place stub for .blend drop on blender app icon --- intern/ghost/intern/GHOST_SystemCocoa.mm | 21 ++++++++++++++++++--- intern/ghost/intern/GHOST_WindowCocoa.mm | 4 ++-- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index f8e124991af..3b2c5ea76a3 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -525,7 +525,8 @@ extern "C" int GHOST_HACK_getFirstFile(char buf[FIRSTFILEBUFLG]) { @interface CocoaAppDelegate : NSObject { GHOST_SystemCocoa *systemCocoa; } --(void)setSystemCocoa:(GHOST_SystemCocoa *)sysCocoa; +- (void)setSystemCocoa:(GHOST_SystemCocoa *)sysCocoa; +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename; - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender; - (void)applicationWillTerminate:(NSNotification *)aNotification; @end @@ -536,6 +537,12 @@ extern "C" int GHOST_HACK_getFirstFile(char buf[FIRSTFILEBUFLG]) { systemCocoa = sysCocoa; } +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + NSLog(@"\nGet open file event from cocoa : %@",filename); + return YES; +} + - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender { //TODO: implement graceful termination through Cocoa mechanism to avoid session log off to be cancelled @@ -658,13 +665,14 @@ GHOST_TSuccess GHOST_SystemCocoa::init() [NSApp setWindowsMenu:windowMenu]; [windowMenu release]; } - [NSApp finishLaunching]; } if ([NSApp delegate] == nil) { CocoaAppDelegate *appDelegate = [[CocoaAppDelegate alloc] init]; [appDelegate setSystemCocoa:this]; [NSApp setDelegate:appDelegate]; } + + [NSApp finishLaunching]; [pool drain]; } @@ -995,7 +1003,7 @@ GHOST_TUns8 GHOST_SystemCocoa::handleQuitRequest() GHOST_Window* window = (GHOST_Window*)m_windowManager->getActiveWindow(); //Discard quit event if we are in cursor grab sequence - if ((window->getCursorGrabMode() != GHOST_kGrabDisable) && (window->getCursorGrabMode() != GHOST_kGrabNormal)) + if (window && (window->getCursorGrabMode() != GHOST_kGrabDisable) && (window->getCursorGrabMode() != GHOST_kGrabNormal)) return GHOST_kExitCancel; //Check open windows if some changes are not saved @@ -1007,7 +1015,14 @@ GHOST_TUns8 GHOST_SystemCocoa::handleQuitRequest() { pushEvent( new GHOST_Event(getMilliSeconds(), GHOST_kEventQuit, NULL) ); return GHOST_kExitNow; + } else { + //Give back focus to the blender window if user selected cancel quit + NSArray *windowsList = [NSApp orderedWindows]; + if ([windowsList count]) { + [[windowsList objectAtIndex:0] makeKeyAndOrderFront:nil]; + } } + } else { pushEvent( new GHOST_Event(getMilliSeconds(), GHOST_kEventQuit, NULL) ); diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index 197b2de1f32..b9a598cb265 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -115,12 +115,12 @@ extern "C" { - (void)windowDidResize:(NSNotification *)notification { #ifdef MAC_OS_X_VERSION_10_6 - if (![[notification object] inLiveResize]) { + //if (![[notification object] inLiveResize]) { //Send event only once, at end of resize operation (when user has released mouse button) #endif systemCocoa->handleWindowEvent(GHOST_kEventWindowSize, associatedWindow); #ifdef MAC_OS_X_VERSION_10_6 - } + //} #endif /* Live resize ugly patch. Needed because live resize runs in a modal loop, not letting main loop run if ([[notification object] inLiveResize]) { From 0e5a6a21e880a083ad0b565cbf75095f34b891f4 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 20 Oct 2009 15:51:18 +0000 Subject: [PATCH 111/412] Fixes to get Blender compile and run on PowerPC OSX 10.3, gcc 3.3 (yes antique, but having 5 year old OS's work is very cool) In short: - include after fails - STL template issues (recursion, syntax) --- source/blender/ikplugin/intern/itasc_plugin.cpp | 14 ++++++++------ .../gameengine/Converter/BL_ArmatureActuator.cpp | 2 +- source/gameengine/Ketsji/KX_GameObject.cpp | 3 ++- source/nan_compile.mk | 4 ++-- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/source/blender/ikplugin/intern/itasc_plugin.cpp b/source/blender/ikplugin/intern/itasc_plugin.cpp index b6fceabdb46..3dcb9e462b9 100644 --- a/source/blender/ikplugin/intern/itasc_plugin.cpp +++ b/source/blender/ikplugin/intern/itasc_plugin.cpp @@ -1121,12 +1121,14 @@ static IK_Scene* convert_tree(Scene *blscene, Object *ob, bPoseChannel *pchan) KDL::Frame tip(iTaSC::F_identity); Vector3 *fl = bone->bone_mat; - KDL::Frame head(KDL::Rotation( - fl[0][0], fl[1][0], fl[2][0], - fl[0][1], fl[1][1], fl[2][1], - fl[0][2], fl[1][2], fl[2][2]), - KDL::Vector(bone->head[0], bone->head[1], bone->head[2])*scale); - + KDL::Rotation brot( + fl[0][0], fl[1][0], fl[2][0], + fl[0][1], fl[1][1], fl[2][1], + fl[0][2], fl[1][2], fl[2][2]); + KDL::Vector bpos(bone->head[0], bone->head[1], bone->head[2]); + bpos = bpos*scale; + KDL::Frame head(brot, bpos); + // rest pose length of the bone taking scaling into account length= bone->length*scale; parent = (a > 0) ? ikscene->channels[tree->parent[a]].tail : root; diff --git a/source/gameengine/Converter/BL_ArmatureActuator.cpp b/source/gameengine/Converter/BL_ArmatureActuator.cpp index a018f0f938d..b70a0aa79e7 100644 --- a/source/gameengine/Converter/BL_ArmatureActuator.cpp +++ b/source/gameengine/Converter/BL_ArmatureActuator.cpp @@ -31,9 +31,9 @@ #include "DNA_constraint_types.h" #include "DNA_actuator_types.h" #include "BKE_constraint.h" -#include "BLI_arithb.h" #include "BL_ArmatureActuator.h" #include "BL_ArmatureObject.h" +#include "BLI_arithb.h" /** * This class is the conversion of the Pose channel constraint. diff --git a/source/gameengine/Ketsji/KX_GameObject.cpp b/source/gameengine/Ketsji/KX_GameObject.cpp index 9bb261fcba9..d516d3e03ff 100644 --- a/source/gameengine/Ketsji/KX_GameObject.cpp +++ b/source/gameengine/Ketsji/KX_GameObject.cpp @@ -46,7 +46,6 @@ typedef unsigned long uint_ptr; #define KX_INERTIA_INFINITE 10000 -#include "BLI_arithb.h" #include "RAS_IPolygonMaterial.h" #include "KX_BlenderMaterial.h" #include "KX_GameObject.h" @@ -80,6 +79,8 @@ typedef unsigned long uint_ptr; #include "KX_SG_NodeRelationships.h" +#include "BLI_arithb.h" + static MT_Point3 dummy_point= MT_Point3(0.0, 0.0, 0.0); static MT_Vector3 dummy_scaling = MT_Vector3(1.0, 1.0, 1.0); static MT_Matrix3x3 dummy_orientation = MT_Matrix3x3( 1.0, 0.0, 0.0, diff --git a/source/nan_compile.mk b/source/nan_compile.mk index 8d4da1e2790..6a1263e286c 100644 --- a/source/nan_compile.mk +++ b/source/nan_compile.mk @@ -73,8 +73,8 @@ ifeq ($(OS),darwin) CC ?= gcc CCC ?= g++ ifeq ($(CPU),powerpc) - CFLAGS += -pipe -fPIC -ffast-math -mcpu=7450 -mtune=G5 -funsigned-char -fno-strict-aliasing - CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing + CFLAGS += -pipe -fPIC -ffast-math -mcpu=7450 -mtune=G5 -funsigned-char -fno-strict-aliasing -Wno-long-double + CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -Wno-long-double else CFLAGS += -pipe -fPIC -ffast-math -march=pentium-m -funsigned-char -fno-strict-aliasing CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing From b2d771a4383c7062fb1fb0d934f8aec80af04ff6 Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Tue, 20 Oct 2009 15:51:25 +0000 Subject: [PATCH 112/412] Smoke: * Use GL_QUADS and GL_TRIANGLES instead of GL_POLYGON for faster drawing * Use variable count of slices --- .../blender/editors/space_view3d/drawvolume.c | 116 ++++++++++++++++-- source/blender/gpu/intern/gpu_extensions.c | 6 +- 2 files changed, 108 insertions(+), 14 deletions(-) diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index 5140736cbe8..c427df7b7a4 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -119,6 +119,51 @@ #include "view3d_intern.h" // own include + +#ifdef _WIN32 +#include +#include +#include +#include + +static LARGE_INTEGER liFrequency; +static LARGE_INTEGER liStartTime; +static LARGE_INTEGER liCurrentTime; + +static void tstart ( void ) +{ + QueryPerformanceFrequency ( &liFrequency ); + QueryPerformanceCounter ( &liStartTime ); +} +static void tend ( void ) +{ + QueryPerformanceCounter ( &liCurrentTime ); +} +static double tval() +{ + return ((double)( (liCurrentTime.QuadPart - liStartTime.QuadPart)* (double)1000.0/(double)liFrequency.QuadPart )); +} +#else +#include +static struct timeval _tstart, _tend; +static struct timezone tz; +static void tstart ( void ) +{ + gettimeofday ( &_tstart, &tz ); +} +static void tend ( void ) +{ + gettimeofday ( &_tend,&tz ); +} +static double tval() +{ + double t1, t2; + t1 = ( double ) _tstart.tv_sec*1000 + ( double ) _tstart.tv_usec/ ( 1000 ); + t2 = ( double ) _tend.tv_sec*1000 + ( double ) _tend.tv_usec/ ( 1000 ); + return t2-t1; +} +#endif + struct GPUTexture; int intersect_edges(float *points, float a, float b, float c, float d, float edges[12][2][3]) @@ -227,6 +272,8 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture float size[3]; + tstart(); + VECSUB(size, max, min); // maxx, maxy, maxz @@ -370,7 +417,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture // inserting previously found vertex into the plane equation d0 = (viewnormal[0]*cv[i][0] + viewnormal[1]*cv[i][1] + viewnormal[2]*cv[i][2]); ds = (ABS(viewnormal[0])*size[0] + ABS(viewnormal[1])*size[1] + ABS(viewnormal[2])*size[2]); - dd = ds/128.0f; + dd = 0.03; // ds/512.0f; n = 0; good_index = i; @@ -386,7 +433,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture break; VECCOPY(tmp_point, viewnormal); - VecMulf(tmp_point, -dd*(128.0f-(float)n)); + VecMulf(tmp_point, -dd*((ds/dd)-(float)n)); VECADD(tmp_point2, cv[good_index], tmp_point); d = INPR(tmp_point2, viewnormal); @@ -406,27 +453,74 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture { for(j = i + 1; j < numpoints; j++) { - if(convex(p0, viewnormal, &points[j * 3], &points[i * 3])) + if(!convex(p0, viewnormal, &points[j * 3], &points[i * 3])) { float tmp2[3]; - VECCOPY(tmp2, &points[i * 3]); - VECCOPY(&points[i * 3], &points[j * 3]); - VECCOPY(&points[j * 3], tmp2); + VECCOPY(tmp2, &points[j * 3]); + VECCOPY(&points[j * 3], &points[i * 3]); + VECCOPY(&points[i * 3], tmp2); } } } - glBegin(GL_POLYGON); - for (i = 0; i < numpoints; i++) { + if(numpoints==3) + { + glBegin(GL_TRIANGLES); glColor3f(1.0, 1.0, 1.0); - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + for (i = 0; i < numpoints; i++) { + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + } + glEnd(); + } + else if(numpoints == 4) + { + glBegin(GL_QUADS); + glColor3f(1.0, 1.0, 1.0); + for (i = 0; i < numpoints; i++) { + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + } + glEnd(); + } + else if(numpoints == 5) + { + glBegin(GL_TRIANGLES); + glColor3f(1.0, 1.0, 1.0); + for (i = 0; i < 3; i++) { + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + } + glEnd(); + glBegin(GL_QUADS); + glColor3f(1.0, 1.0, 1.0); + for (i = 2; i < numpoints; i++) { + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + } + i = 0; + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + glEnd(); + } + else + { + // printf("numpoints: %d\n", numpoints); + glBegin(GL_POLYGON); + glColor3f(1.0, 1.0, 1.0); + for (i = 0; i < numpoints; i++) { + glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); + } + glEnd(); } - glEnd(); } n++; } + tend(); + printf ( "Draw Time: %f\n",( float ) tval() ); + if(tex_shadow) GPU_texture_unbind(tex_shadow); GPU_texture_unbind(tex); diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 52a6b0dd1e8..5c8157be789 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -382,9 +382,9 @@ GPUTexture *GPU_texture_create_3D(int w, int h, int depth, float *fpixels) glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); GPU_print_error("3D GL_LINEAR"); - glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_BORDER); - glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_BORDER); - glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_BORDER); + glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE); GPU_print_error("3D GL_CLAMP_TO_BORDER"); if (pixels) From 5d0f5d210a5f7e6e0d10153b573468f39d8eae69 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 20 Oct 2009 16:02:41 +0000 Subject: [PATCH 113/412] Fix in KDL for gcc 3.3 compilation Thanks to Benoit Bolsee and Alexander Clausen for help! --- intern/itasc/kdl/frameacc.hpp | 12 ++++++------ intern/itasc/kdl/framevel.hpp | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/intern/itasc/kdl/frameacc.hpp b/intern/itasc/kdl/frameacc.hpp index 4157237222e..43e38698ef3 100644 --- a/intern/itasc/kdl/frameacc.hpp +++ b/intern/itasc/kdl/frameacc.hpp @@ -98,9 +98,9 @@ public: Vector dw; //!< angular acceration vector public: RotationAcc():R(),w() {} - explicit RotationAcc(const Rotation& _R):R(_R),w(Vector::Zero()){} - RotationAcc(const Rotation& _R,const Vector& _w,const Vector& _dw): - R(_R),w(_w),dw(_dw) {} + explicit RotationAcc(const Rotation& R_):R(R_),w(Vector::Zero()){} + RotationAcc(const Rotation& R_,const Vector& _w,const Vector& _dw): + R(R_),w(_w),dw(_dw) {} IMETHOD RotationAcc& operator = (const RotationAcc& arg); IMETHOD RotationAcc& operator = (const Rotation& arg); IMETHOD static RotationAcc Identity(); @@ -152,9 +152,9 @@ public: VectorAcc p; //!< Translation, velocity and acceleration of origin. public: FrameAcc(){} - explicit FrameAcc(const Frame& _T):M(_T.M),p(_T.p) {} - FrameAcc(const Frame& _T,const Twist& _t,const Twist& _dt): - M(_T.M,_t.rot,_dt.rot),p(_T.p,_t.vel,_dt.vel) {} + explicit FrameAcc(const Frame& T_):M(T_.M),p(T_.p) {} + FrameAcc(const Frame& T_,const Twist& _t,const Twist& _dt): + M(T_.M,_t.rot,_dt.rot),p(T_.p,_t.vel,_dt.vel) {} FrameAcc(const RotationAcc& _M,const VectorAcc& _p):M(_M),p(_p) {} IMETHOD FrameAcc& operator = (const FrameAcc& arg); diff --git a/intern/itasc/kdl/framevel.hpp b/intern/itasc/kdl/framevel.hpp index 21a7844f522..b70182bccde 100644 --- a/intern/itasc/kdl/framevel.hpp +++ b/intern/itasc/kdl/framevel.hpp @@ -133,8 +133,8 @@ public: Vector w; // rotation vector public: RotationVel():R(),w() {} - explicit RotationVel(const Rotation& _R):R(_R),w(Vector::Zero()){} - RotationVel(const Rotation& _R,const Vector& _w):R(_R),w(_w){} + explicit RotationVel(const Rotation& R_):R(R_),w(Vector::Zero()){} + RotationVel(const Rotation& R_,const Vector& _w):R(R_),w(_w){} Rotation value() const { return R;} @@ -194,11 +194,11 @@ public: public: FrameVel(){} - explicit FrameVel(const Frame& _T): - M(_T.M),p(_T.p) {} + explicit FrameVel(const Frame& T_): + M(T_.M),p(T_.p) {} - FrameVel(const Frame& _T,const Twist& _t): - M(_T.M,_t.rot),p(_T.p,_t.vel) {} + FrameVel(const Frame& T_,const Twist& _t): + M(T_.M,_t.rot),p(T_.p,_t.vel) {} FrameVel(const RotationVel& _M,const VectorVel& _p): M(_M),p(_p) {} From 9a00cc55c170cfca5718d89fc8a2036fe05155b1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 16:31:03 +0000 Subject: [PATCH 114/412] - editmesh select mirror (in editmode select menu) - weight blending (Vertex specials menu), currently blends from surrounding unselected verts (nice for blending edge loops), but will eventually support face mask mode. --- release/scripts/ui/space_view3d.py | 2 + source/blender/editors/include/ED_mesh.h | 1 + source/blender/editors/mesh/editmesh_mods.c | 77 ++++++++++-- source/blender/editors/mesh/mesh_intern.h | 1 + source/blender/editors/mesh/mesh_ops.c | 1 + source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 1 + source/blender/editors/object/object_vgroup.c | 113 ++++++++++++++++++ 8 files changed, 185 insertions(+), 12 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 3dac3700c94..4e6438e4271 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -827,6 +827,8 @@ class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): layout.itemO("mesh.select_vertex_path") layout.itemO("mesh.blend_from_shape") + + layout.itemO("object.vertex_group_blend") # uiItemO(layout, "Propagate to All Shapes", 0, "mesh.shape_propagate_to_all"); class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 59f8c2441c1..01444c0ecfb 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -147,6 +147,7 @@ void EM_free_data_layer(struct EditMesh *em, struct CustomData *data, int type) /* editmesh_mods.c */ extern unsigned int em_vertoffs, em_solidoffs, em_wireoffs; +void EM_cache_x_mirror_vert(struct Object *ob, struct EditMesh *em); void mouse_mesh(struct bContext *C, short mval[2], short extend); int EM_check_backbuf(unsigned int index); int EM_mask_init_backbuf_border(struct ViewContext *vc, short mcords[][2], short tot, short xmin, short ymin, short xmax, short ymax); diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c index 968bb30b0cd..7ca044b8087 100644 --- a/source/blender/editors/mesh/editmesh_mods.c +++ b/source/blender/editors/mesh/editmesh_mods.c @@ -100,19 +100,39 @@ static int pupmenu() {return 0;} /* ****************************** MIRROR **************** */ -void EM_select_mirrored(Object *obedit, EditMesh *em) +void EM_cache_x_mirror_vert(struct Object *ob, struct EditMesh *em) { - if(em->selectmode & SCE_SELECT_VERTEX) { - EditVert *eve, *v1; - - for(eve= em->verts.first; eve; eve= eve->next) { - if(eve->f & SELECT) { - v1= editmesh_get_x_mirror_vert(obedit, em, eve->co); - if(v1) { - eve->f &= ~SELECT; - v1->f |= SELECT; - } - } + EditVert *eve, *eve_mirror; + + for(eve= em->verts.first; eve; eve= eve->next) { + eve->tmp.v= NULL; + } + + for(eve= em->verts.first; eve; eve= eve->next) { + if(eve->tmp.v==NULL) { + eve_mirror = editmesh_get_x_mirror_vert(ob, em, eve->co); + eve->tmp.v= eve_mirror; + eve_mirror->tmp.v = eve; + } + } +} + +void EM_select_mirrored(Object *obedit, EditMesh *em, int extend) +{ + + EditVert *eve; + + EM_cache_x_mirror_vert(obedit, em); + + for(eve= em->verts.first; eve; eve= eve->next) { + if(eve->f & SELECT && eve->tmp.v) { + eve->tmp.v->f |= SELECT; + + if(extend==FALSE) + eve->f &= ~SELECT; + + /* remove the interference */ + eve->tmp.v->tmp.v= eve->tmp.v= NULL; } } } @@ -2825,6 +2845,39 @@ void MESH_OT_select_by_number_vertices(wmOperatorType *ot) RNA_def_enum(ot->srna, "type", type_items, 3, "Type", "Type of elements to select."); } + +int select_mirror_exec(bContext *C, wmOperator *op) +{ + Object *obedit= CTX_data_edit_object(C); + EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)obedit->data)); + + int extend= RNA_boolean_get(op->ptr, "extend"); + + EM_select_mirrored(obedit, em, extend); + + WM_event_add_notifier(C, NC_GEOM|ND_SELECT, obedit->data); + + return OPERATOR_FINISHED; +} + +void MESH_OT_select_mirror(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Select Mirror"; + ot->description= "Select mesh items at mirrored locations."; + ot->idname= "MESH_OT_select_mirror"; + + /* api callbacks */ + ot->exec= select_mirror_exec; + ot->poll= ED_operator_editmesh; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* props */ + RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend the existing selection"); +} + static int select_sharp_edges_exec(bContext *C, wmOperator *op) { /* Find edges that have exactly two neighboring faces, diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 8615f97f58f..cab56ad5110 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -151,6 +151,7 @@ void MESH_OT_select_linked_pick(struct wmOperatorType *ot); void MESH_OT_hide(struct wmOperatorType *ot); void MESH_OT_reveal(struct wmOperatorType *ot); void MESH_OT_select_by_number_vertices(struct wmOperatorType *ot); +void MESH_OT_select_mirror(struct wmOperatorType *ot); void MESH_OT_normals_make_consistent(struct wmOperatorType *ot); void MESH_OT_faces_select_linked_flat(struct wmOperatorType *ot); void MESH_OT_edges_select_sharp(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index e49dc0a5869..7159feced03 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -80,6 +80,7 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_hide); WM_operatortype_append(MESH_OT_reveal); WM_operatortype_append(MESH_OT_select_by_number_vertices); + WM_operatortype_append(MESH_OT_select_mirror); WM_operatortype_append(MESH_OT_normals_make_consistent); WM_operatortype_append(MESH_OT_merge); WM_operatortype_append(MESH_OT_subdivide); diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 36d897b76c8..8c206ce9d4b 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -169,6 +169,7 @@ void OBJECT_OT_vertex_group_copy(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_normalize(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_normalize_all(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_invert(struct wmOperatorType *ot); +void OBJECT_OT_vertex_group_blend(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_clean(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_menu(struct wmOperatorType *ot); void OBJECT_OT_vertex_group_set_active(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 06b554f0406..4d823a842b4 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -166,6 +166,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_vertex_group_normalize); WM_operatortype_append(OBJECT_OT_vertex_group_normalize_all); WM_operatortype_append(OBJECT_OT_vertex_group_invert); + WM_operatortype_append(OBJECT_OT_vertex_group_blend); WM_operatortype_append(OBJECT_OT_vertex_group_clean); WM_operatortype_append(OBJECT_OT_vertex_group_menu); WM_operatortype_append(OBJECT_OT_vertex_group_set_active); diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index e5467e50972..5d76990b0e9 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -733,6 +733,90 @@ static void vgroup_invert(Object *ob, int auto_assign, int auto_remove) } } +static void vgroup_blend(Object *ob) +{ + bDeformGroup *dg; + MDeformWeight *dw; + MDeformVert *dvert_array=NULL, *dvert; + int i, def_nr, dvert_tot=0; + + EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)ob->data)); + // ED_vgroup_give_array(ob->data, &dvert_array, &dvert_tot); + + if(em==NULL) + return; + + dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); + + if(dg) { + int sel1, sel2; + int i1, i2; + + EditEdge *eed; + EditVert *eve; + float *vg_weights; + float *vg_users; + + def_nr= ob->actdef-1; + + i= 0; + for(eve= em->verts.first; eve; eve= eve->next) + eve->tmp.l= i++; + + dvert_tot= i; + + vg_weights= MEM_callocN(sizeof(float)*dvert_tot, "vgroup_blend_f"); + vg_users= MEM_callocN(sizeof(int)*dvert_tot, "vgroup_blend_i"); + + for(eed= em->edges.first; eed; eed= eed->next) { + sel1= eed->v1->f & SELECT; + sel2= eed->v2->f & SELECT; + + if(sel1 != sel2) { + /* i1 is always the selected one */ + if(sel1==TRUE && sel2==FALSE) { + i1= eed->v1->tmp.l; + i2= eed->v2->tmp.l; + eve= eed->v2; + } + else { + i2= eed->v1->tmp.l; + i1= eed->v2->tmp.l; + eve= eed->v1; + } + + vg_users[i1]++; + + /* TODO, we may want object mode blending */ + if(em) dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + else dvert= dvert_array+i2; + + dw= ED_vgroup_weight_get(dvert, def_nr); + + if(dw) { + vg_weights[i1] += dw->weight; + } + } + } + + i= 0; + for(eve= em->verts.first; eve; eve= eve->next) { + if(eve->f & SELECT && vg_users[i] > 0) { + /* TODO, we may want object mode blending */ + if(em) dvert= CustomData_em_get(&em->vdata, eve->data, CD_MDEFORMVERT); + else dvert= dvert_array+i; + + dw= ED_vgroup_weight_verify(dvert, def_nr); + dw->weight= vg_weights[i] / (float)vg_users[i]; + } + + i++; + } + MEM_freeN(vg_weights); + MEM_freeN(vg_users); + } +} + static void vgroup_clean(Object *ob, float eul, int keep_single) { bDeformGroup *dg; @@ -1472,6 +1556,35 @@ void OBJECT_OT_vertex_group_invert(wmOperatorType *ot) RNA_def_boolean(ot->srna, "auto_remove", TRUE, "Remove Weights", "Remove verts from groups that have zero weight after inverting."); } + +static int vertex_group_blend_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + + vgroup_blend(ob); + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, ob->data); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_vertex_group_blend(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Blend Vertex Group"; + ot->idname= "OBJECT_OT_vertex_group_blend"; + + /* api callbacks */ + ot->poll= vertex_group_poll; + ot->exec= vertex_group_blend_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + + static int vertex_group_clean_exec(bContext *C, wmOperator *op) { Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; From 5e5a38cdc3f4983eb17588fcaa1c4a44dbb20892 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 16:43:25 +0000 Subject: [PATCH 115/412] Bugfixes for quit.blend + library linking, the last commit didn't solve that completely: * quit.blend is saved from the undo file, which did not save out library ID_LI and ID_ID blocks, for quick undo keeping the library datablocks. However this means library links are lost on reading the quit.blend, so now instead of not writing them, they are not read on undo. * Libraries were not not using the right path yet always. Note the screen setup is still not recovered from the quit.blend if no auto save happened yet, but that is not important enough to spend time on now. --- .../blender/blenloader/intern/readblenentry.c | 2 +- source/blender/blenloader/intern/readfile.c | 37 ++++++++++++++----- source/blender/blenloader/intern/readfile.h | 2 +- source/blender/blenloader/intern/writefile.c | 3 +- 4 files changed, 30 insertions(+), 14 deletions(-) diff --git a/source/blender/blenloader/intern/readblenentry.c b/source/blender/blenloader/intern/readblenentry.c index 3d21bb54e2b..7608f988f4f 100644 --- a/source/blender/blenloader/intern/readblenentry.c +++ b/source/blender/blenloader/intern/readblenentry.c @@ -364,7 +364,7 @@ BlendFileData *BLO_read_from_memfile(Main *oldmain, const char *filename, MemFil fd = blo_openblendermemfile(memfile, reports); if (fd) { fd->reports= reports; - strcpy(fd->filename, filename); + strcpy(fd->relabase, filename); /* clear ob->proxy_from pointers in old main */ blo_clear_proxy_pointers_from_lib(fd, oldmain); diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index ca2e5f4de75..6601d9c3fe2 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -977,7 +977,7 @@ FileData *blo_openblenderfile(char *name, ReportList *reports) fd->read = fd_read_gzip_from_file; /* needed for library_append and read_libraries */ - BLI_strncpy(fd->filename, name, sizeof(fd->filename)); + BLI_strncpy(fd->relabase, name, sizeof(fd->relabase)); return blo_decode_and_check(fd, reports); } @@ -5134,7 +5134,7 @@ static void direct_link_library(FileData *fd, Library *lib, Main *main) } /* make sure we have full path in lib->filename */ BLI_strncpy(lib->filename, lib->name, sizeof(lib->name)); - cleanup_path(fd->filename, lib->filename); + cleanup_path(fd->relabase, lib->filename); // printf("direct_link_library: name %s\n", lib->name); // printf("direct_link_library: filename %s\n", lib->filename); @@ -5469,6 +5469,8 @@ static BHead *read_global(BlendFileData *bfd, FileData *fd, BHead *bhead) bfd->displaymode= fg->displaymode; bfd->globalf= fg->globalf; BLI_strncpy(bfd->filename, fg->filename, sizeof(bfd->filename)); + if(G.fileflags & G_FILE_RECOVER) + BLI_strncpy(fd->relabase, fg->filename, sizeof(fd->relabase)); bfd->curscreen= fg->curscreen; bfd->curscene= fg->curscene; @@ -6284,7 +6286,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main) /* WATCH IT!!!: pointers from libdata have not been converted */ if(G.f & G_DEBUG) - printf("read file %s\n Version %d sub %d\n", fd->filename, main->versionfile, main->subversionfile); + printf("read file %s\n Version %d sub %d\n", fd->relabase, main->versionfile, main->subversionfile); if(main->versionfile == 100) { /* tex->extend and tex->imageflag have changed: */ @@ -10058,14 +10060,25 @@ BlendFileData *blo_read_file_internal(FileData *fd, char *file) break; case ID_LI: - bhead = read_libblock(fd, bfd->main, bhead, LIB_LOCAL, NULL); + /* skip library datablocks in undo, this works together with + BLO_read_from_memfile, where the old main->library is restored + overwriting the libraries from the memory file. previously + it did not save ID_LI/ID_ID blocks in this case, but they are + needed to make quit.blend recover them correctly. */ + if(fd->memfile) + bhead= blo_nextbhead(fd, bhead); + else + bhead= read_libblock(fd, bfd->main, bhead, LIB_LOCAL, NULL); break; case ID_ID: + /* same as above */ + if(fd->memfile) + bhead= blo_nextbhead(fd, bhead); + else /* always adds to the most recently loaded * ID_LI block, see direct_link_library. - * this is part of the file format definition. - */ - bhead = read_libblock(fd, fd->mainlist.last, bhead, LIB_READ+LIB_EXTERN, NULL); + * this is part of the file format definition. */ + bhead = read_libblock(fd, fd->mainlist.last, bhead, LIB_READ+LIB_EXTERN, NULL); break; /* in 2.50+ files, the file identifier for screens is patched, forward compatibility */ @@ -10087,7 +10100,7 @@ BlendFileData *blo_read_file_internal(FileData *fd, char *file) lib_link_all(fd, bfd->main); lib_verify_nodetree(bfd->main, 1); - fix_relpaths_library(fd->filename, bfd->main); /* make all relative paths, relative to the open blend file */ + fix_relpaths_library(fd->relabase, bfd->main); /* make all relative paths, relative to the open blend file */ link_global(fd, bfd); /* as last */ @@ -10135,6 +10148,10 @@ static void sort_bhead_old_map(FileData *fd) static BHead *find_previous_lib(FileData *fd, BHead *bhead) { + /* skip library datablocks in undo, see comment in read_libblock */ + if(fd->memfile) + return NULL; + for (; bhead; bhead= blo_prevbhead(fd, bhead)) if (bhead->code==ID_LI) break; @@ -10206,7 +10223,7 @@ static void expand_doit(FileData *fd, Main *mainvar, void *old) if(bheadlib) { Library *lib= read_struct(fd, bheadlib, "Library"); - Main *ptr= blo_find_main(fd, &fd->mainlist, lib->name, fd->filename); + Main *ptr= blo_find_main(fd, &fd->mainlist, lib->name, fd->relabase); id= is_yet_read(fd, ptr, bhead); @@ -11464,7 +11481,7 @@ BlendFileData *blo_read_blendafterruntime(int file, char *name, int actualsize, fd->read = fd_read_from_file; /* needed for library_append and read_libraries */ - BLI_strncpy(fd->filename, name, sizeof(fd->filename)); + BLI_strncpy(fd->relabase, name, sizeof(fd->relabase)); fd = blo_decode_and_check(fd, reports); if (!fd) diff --git a/source/blender/blenloader/intern/readfile.h b/source/blender/blenloader/intern/readfile.h index 2a0b6c327d3..41bc8f80fec 100644 --- a/source/blender/blenloader/intern/readfile.h +++ b/source/blender/blenloader/intern/readfile.h @@ -56,7 +56,7 @@ typedef struct FileData { gzFile gzfiledes; // now only in use for library appending - char filename[FILE_MAXDIR+FILE_MAXFILE]; + char relabase[FILE_MAXDIR+FILE_MAXFILE]; // variables needed for reading from stream char headerdone; diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index f0c584b6267..7368663f64a 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2383,8 +2383,7 @@ static int write_file_handle(Main *mainvar, int handle, MemFile *compare, MemFil write_brushes (wd, &mainvar->brush); write_scripts (wd, &mainvar->script); write_gpencils (wd, &mainvar->gpencil); - if(current==NULL) - write_libraries(wd, mainvar->next); /* no library save in undo */ + write_libraries(wd, mainvar->next); if (write_user_block) { write_userdef(wd); From 25e9be000228e57f5504e171d9ac7155395a631d Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Tue, 20 Oct 2009 17:08:07 +0000 Subject: [PATCH 116/412] Smoke: * "Fixing" slowdown (no idea where it comes from) by lowering the number of drawn slices again --- source/blender/editors/space_view3d/drawvolume.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index c427df7b7a4..6b9fe0ed259 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -417,7 +417,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture // inserting previously found vertex into the plane equation d0 = (viewnormal[0]*cv[i][0] + viewnormal[1]*cv[i][1] + viewnormal[2]*cv[i][2]); ds = (ABS(viewnormal[0])*size[0] + ABS(viewnormal[1])*size[1] + ABS(viewnormal[2])*size[2]); - dd = 0.03; // ds/512.0f; + dd = 0.05; // ds/512.0f; n = 0; good_index = i; @@ -429,7 +429,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture float p0[3]; float tmp_point[3], tmp_point2[3]; - if(dd*n > ds) + if(dd*(float)n > ds) break; VECCOPY(tmp_point, viewnormal); From 49a937c52180a6e81b56c1604fa782df4ffd557f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 17:10:01 +0000 Subject: [PATCH 117/412] fix for mirror select and added to the menu --- release/scripts/ui/space_view3d.py | 2 ++ source/blender/editors/mesh/editmesh_mods.c | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 4e6438e4271..eae97febf14 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -256,6 +256,8 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): layout.itemO("mesh.select_more", text="More") layout.itemS() + + layout.itemO("mesh.select_mirror", text="Mirror") layout.itemO("mesh.select_linked", text="Linked") layout.itemO("mesh.select_vertex_path", text="Vertex Path") diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c index 7ca044b8087..02fb166a4e1 100644 --- a/source/blender/editors/mesh/editmesh_mods.c +++ b/source/blender/editors/mesh/editmesh_mods.c @@ -111,8 +111,10 @@ void EM_cache_x_mirror_vert(struct Object *ob, struct EditMesh *em) for(eve= em->verts.first; eve; eve= eve->next) { if(eve->tmp.v==NULL) { eve_mirror = editmesh_get_x_mirror_vert(ob, em, eve->co); - eve->tmp.v= eve_mirror; - eve_mirror->tmp.v = eve; + if(eve_mirror) { + eve->tmp.v= eve_mirror; + eve_mirror->tmp.v = eve; + } } } } From 022be64517b1d3f17d640fb9a1bafe4941e51e03 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 18:27:46 +0000 Subject: [PATCH 118/412] Bugfix: raytracer building could crash (abort due to an assert), when using for example a text object scaled down to size zero. This was due to nan's generated through division by zero. --- source/blender/render/intern/raytrace/reorganize.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/render/intern/raytrace/reorganize.h b/source/blender/render/intern/raytrace/reorganize.h index 6bf31014712..bcf7f6f2078 100644 --- a/source/blender/render/intern/raytrace/reorganize.h +++ b/source/blender/render/intern/raytrace/reorganize.h @@ -159,7 +159,7 @@ void pushup(Node *parent) { float c_area = bb_area(child->bb, child->bb+3) ; int nchilds = count_childs(child); - float original_cost = (c_area / p_area)*nchilds + 1; + float original_cost = ((p_area != 0.0f)? (c_area / p_area)*nchilds: 1.0f) + 1; float flatten_cost = nchilds; if(flatten_cost < original_cost && nchilds >= 2) { @@ -397,7 +397,7 @@ struct VBVH_optimalPackSIMD for(Node *child = node->child; child && RE_rayobject_isAligned(child); child = child->sibling) { this->child[nchilds] = child; - this->child_hit_prob[nchilds] = bb_area(child->bb, child->bb+3) / parent_area; + this->child_hit_prob[nchilds] = (parent_area != 0.0f)? bb_area(child->bb, child->bb+3) / parent_area: 1.0f; nchilds++; } @@ -467,7 +467,7 @@ struct VBVH_optimalPackSIMD float parent_area = bb_area(node->bb, node->bb+3); for(Node *child = node->child; child && RE_rayobject_isAligned(child); child = child->sibling) { - cost += ( bb_area(child->bb, child->bb+3) / parent_area ) * child->get_cost(1); + cost += ((parent_area != 0.0f)? ( bb_area(child->bb, child->bb+3) / parent_area ): 1.0f) * child->get_cost(1); } cost += testcost(nchilds); From d8ee1e27375b475e610bc04f2c7cf3efee0d6c1b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 18:49:21 +0000 Subject: [PATCH 119/412] Bugfix for a crash with the cut tool in particle mode. --- .../blender/editors/physics/particle_edit.c | 29 ++++++++++++------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index 6fc34c4fcf8..be4df93eff3 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -2901,7 +2901,7 @@ static void brush_smooth_do(PEData *data, float mat[][4], float imat[][4], int p (data->edit->points + point_index)->flag |= PEP_EDIT_RECALC; } -static void brush_add(PEData *data, short number) +static int brush_add(PEData *data, short number) { Scene *scene= data->scene; Object *ob= data->ob; @@ -2922,7 +2922,7 @@ static void brush_add(PEData *data, short number) Mat4Invert(imat,ob->obmat); if(psys->flag & PSYS_GLOBAL_HAIR) - return; + return 0; BLI_srandom(psys->seed+data->mval[0]+data->mval[1]); @@ -3097,6 +3097,8 @@ static void brush_add(PEData *data, short number) if(!psmd->dm->deformedOnly) dm->release(dm); + + return n; } /************************* brush edit operator ********************/ @@ -3147,7 +3149,7 @@ static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr) ARegion *ar= CTX_wm_region(C); float vec[3], mousef[2]; short mval[2], mvalo[2]; - int flip, mouse[2], dx, dy, removed= 0, selected= 0; + int flip, mouse[2], dx, dy, removed= 0, added=0, selected= 0; int lock_root = pset->flag & PE_LOCK_FIRST; if(!PE_start_edit(edit)) @@ -3225,6 +3227,9 @@ static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr) if(pset->flag & PE_KEEP_LENGTHS) recalc_lengths(edit); } + else + removed= 0; + break; } case PE_BRUSH_LENGTH: @@ -3279,11 +3284,13 @@ static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr) PE_set_view3d_data(C, &data); data.mval= mval; - brush_add(&data, brush->strength); + added= brush_add(&data, brush->strength); if(pset->flag & PE_KEEP_LENGTHS) recalc_lengths(edit); } + else + added= 0; break; } case PE_BRUSH_SMOOTH: @@ -3314,13 +3321,15 @@ static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr) if((pset->flag & PE_KEEP_LENGTHS)==0) recalc_lengths(edit); - if(pset->brushtype == PE_BRUSH_ADD || removed) { - if(pset->brushtype == PE_BRUSH_ADD && (pset->flag & PE_X_MIRROR)) - PE_mirror_x(scene, ob, 1); + if(ELEM(pset->brushtype, PE_BRUSH_ADD, PE_BRUSH_CUT)) { + if(added || removed) { + if(pset->brushtype == PE_BRUSH_ADD && (pset->flag & PE_X_MIRROR)) + PE_mirror_x(scene, ob, 1); - update_world_cos(ob,edit); - psys_free_path_cache(NULL, edit); - DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + update_world_cos(ob,edit); + psys_free_path_cache(NULL, edit); + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + } } else PE_update_object(scene, ob, 1); From ad260a03706e7ad589430911448285dceafe5370 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Tue, 20 Oct 2009 19:09:12 +0000 Subject: [PATCH 120/412] basename() function, at least know it should compile. Feel free to replace with the proper WIN32 code. --- source/blender/blenlib/BLI_winstuff.h | 1 + source/blender/blenlib/intern/BLI_bfile.c | 2 +- source/blender/blenlib/intern/winstuff.c | 26 +++++++++++++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_winstuff.h b/source/blender/blenlib/BLI_winstuff.h index 757b3605203..77d41e2b96a 100644 --- a/source/blender/blenlib/BLI_winstuff.h +++ b/source/blender/blenlib/BLI_winstuff.h @@ -129,6 +129,7 @@ struct dirent *readdir(DIR *dp); int closedir (DIR *dp); void get_default_root(char *root); int check_file_chars(char *filename); +char *dirname(char *path); #ifdef WIN32 int BLI_getInstallationDir(char *str); diff --git a/source/blender/blenlib/intern/BLI_bfile.c b/source/blender/blenlib/intern/BLI_bfile.c index 093168bbb82..042cf4beffc 100644 --- a/source/blender/blenlib/intern/BLI_bfile.c +++ b/source/blender/blenlib/intern/BLI_bfile.c @@ -29,6 +29,7 @@ #ifndef WIN32 #include #include +// #include #else #include #include "BLI_winstuff.h" @@ -36,7 +37,6 @@ #include #include #include -#include #include "MEM_guardedalloc.h" #include "BKE_utildefines.h" diff --git a/source/blender/blenlib/intern/winstuff.c b/source/blender/blenlib/intern/winstuff.c index 2f96f7b6af1..16295fc2680 100644 --- a/source/blender/blenlib/intern/winstuff.c +++ b/source/blender/blenlib/intern/winstuff.c @@ -217,6 +217,32 @@ int check_file_chars(char *filename) return 1; } +/* Copied from http://sourceware.org/ml/newlib/2005/msg00248.html */ +/* Copyright 2005 Shaun Jackman + * Permission to use, copy, modify, and distribute this software + * is freely granted, provided that this notice is preserved. + */ +#include +char* dirname(char *path) +{ + char *p; + if( path == NULL || *path == '\0' ) + return "."; + p = path + strlen(path) - 1; + while( *p == '/' ) { + if( p == path ) + return path; + *p-- = '\0'; + } + while( p >= path && *p != '/' ) + p--; + return + p < path ? "." : + p == path ? "/" : + (*p = '\0', path); +} +/* End of copied part */ + #else /* intentionally empty for UNIX */ From 9327dd91124e9ac03370d112b7c016884ad2f727 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 19:14:55 +0000 Subject: [PATCH 121/412] Bugfix: render clipping was not using correct matrix, own mistake in recent commit. --- source/blender/render/intern/source/zbuf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/render/intern/source/zbuf.c b/source/blender/render/intern/source/zbuf.c index 6e305a2b82b..6c1055ec9e0 100644 --- a/source/blender/render/intern/source/zbuf.c +++ b/source/blender/render/intern/source/zbuf.c @@ -2137,7 +2137,7 @@ void zbuffer_solid(RenderPart *pa, RenderLayer *rl, void(*fillfunc)(RenderPart*, else Mat4CpyMat4(obwinmat, winmat); - if(clip_render_object(obi->obr->boundbox, bounds, winmat)) + if(clip_render_object(obi->obr->boundbox, bounds, obwinmat)) continue; zbuf_project_cache_clear(cache, obr->totvert); @@ -2555,7 +2555,7 @@ void zbuffer_sss(RenderPart *pa, unsigned int lay, void *handle, void (*func)(vo else Mat4CpyMat4(obwinmat, winmat); - if(clip_render_object(obi->obr->boundbox, bounds, winmat)) + if(clip_render_object(obi->obr->boundbox, bounds, obwinmat)) continue; zbuf_project_cache_clear(cache, obr->totvert); @@ -3301,7 +3301,7 @@ static int zbuffer_abuf(Render *re, RenderPart *pa, APixstr *APixbuf, ListBase * else Mat4CpyMat4(obwinmat, winmat); - if(clip_render_object(obi->obr->boundbox, bounds, winmat)) + if(clip_render_object(obi->obr->boundbox, bounds, obwinmat)) continue; zbuf_project_cache_clear(cache, obr->totvert); From 5240d39e48f97d032853da63377de23db36d657d Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Tue, 20 Oct 2009 19:22:19 +0000 Subject: [PATCH 122/412] Smoke: * Revert "speedup" through not using GL_POLYGON - wasn't helping at all, only confusing the source --- .../blender/editors/space_view3d/drawvolume.c | 55 ++----------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index 6b9fe0ed259..a1a59fb0e6a 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -463,57 +463,14 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture } } - if(numpoints==3) - { - glBegin(GL_TRIANGLES); - glColor3f(1.0, 1.0, 1.0); - for (i = 0; i < numpoints; i++) { - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - } - glEnd(); - } - else if(numpoints == 4) - { - glBegin(GL_QUADS); - glColor3f(1.0, 1.0, 1.0); - for (i = 0; i < numpoints; i++) { - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - } - glEnd(); - } - else if(numpoints == 5) - { - glBegin(GL_TRIANGLES); - glColor3f(1.0, 1.0, 1.0); - for (i = 0; i < 3; i++) { - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - } - glEnd(); - glBegin(GL_QUADS); - glColor3f(1.0, 1.0, 1.0); - for (i = 2; i < numpoints; i++) { - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - } - i = 0; + // printf("numpoints: %d\n", numpoints); + glBegin(GL_POLYGON); + glColor3f(1.0, 1.0, 1.0); + for (i = 0; i < numpoints; i++) { glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - glEnd(); - } - else - { - // printf("numpoints: %d\n", numpoints); - glBegin(GL_POLYGON); - glColor3f(1.0, 1.0, 1.0); - for (i = 0; i < numpoints; i++) { - glTexCoord3d((points[i * 3 + 0] - min[0] )*cor[0]/size[0], (points[i * 3 + 1] - min[1])*cor[1]/size[1], (points[i * 3 + 2] - min[2])*cor[2]/size[2]); - glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); - } - glEnd(); + glVertex3f(points[i * 3 + 0], points[i * 3 + 1], points[i * 3 + 2]); } + glEnd(); } n++; } From 23f69cbe92bec250a1b850d379d921c34ecfd6a7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 19:27:27 +0000 Subject: [PATCH 123/412] move G_FACESELECT from G.f to mesh->editflag, renamed to ME_EDIT_PAINT_MASK --- source/blender/blenkernel/BKE_global.h | 2 +- source/blender/blenkernel/intern/blender.c | 2 -- source/blender/blenkernel/intern/paint.c | 4 ++-- source/blender/editors/sculpt_paint/paint_image.c | 4 ++-- source/blender/editors/sculpt_paint/paint_vertex.c | 10 +++++----- source/blender/editors/space_view3d/drawobject.c | 2 +- source/blender/editors/space_view3d/view3d_header.c | 4 +++- source/blender/makesdna/DNA_mesh_types.h | 2 ++ source/blender/makesrna/intern/rna_mesh.c | 6 ++++++ 9 files changed, 22 insertions(+), 14 deletions(-) diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h index ccd21603c49..dd846038603 100644 --- a/source/blender/blenkernel/BKE_global.h +++ b/source/blender/blenkernel/BKE_global.h @@ -110,7 +110,7 @@ typedef struct Global { #define G_BACKBUFSEL (1 << 4) #define G_PICKSEL (1 << 5) -#define G_FACESELECT (1 << 8) +/* #define G_FACESELECT (1 << 8) use mesh mode */ #define G_DEBUG (1 << 12) #define G_DOSCRIPTLINKS (1 << 13) diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c index 7570369827b..94b03730e54 100644 --- a/source/blender/blenkernel/intern/blender.c +++ b/source/blender/blenkernel/intern/blender.c @@ -226,8 +226,6 @@ static void clear_global(void) // free_vertexpaint(); G.main= NULL; - - G.f &= ~(G_FACESELECT); } /* make sure path names are correct for OS */ diff --git a/source/blender/blenkernel/intern/paint.c b/source/blender/blenkernel/intern/paint.c index f17d2fbdcac..9a8f6d284f3 100644 --- a/source/blender/blenkernel/intern/paint.c +++ b/source/blender/blenkernel/intern/paint.c @@ -29,6 +29,7 @@ #include "DNA_brush_types.h" #include "DNA_object_types.h" +#include "DNA_mesh_types.h" #include "DNA_scene_types.h" #include "BKE_brush.h" @@ -160,8 +161,7 @@ void paint_brush_slot_remove(Paint *p) int paint_facesel_test(Object *ob) { - return (G.f&G_FACESELECT) && (ob && (ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT))); - + return (ob && (((Mesh *)ob->data)->editflag & ME_EDIT_PAINT_MASK) && (ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT))); } void paint_init(Paint *p, const char col[3]) diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 21651afe417..ebda56274ca 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -3182,7 +3182,7 @@ static void project_paint_begin(ProjPaintState *ps) } #endif - if (tf->tpage && ((G.f & G_FACESELECT)==0 || mf->flag & ME_FACE_SEL)) { + if (tf->tpage && ((((Mesh *)ps->ob->data)->editflag & ME_EDIT_PAINT_MASK)==0 || mf->flag & ME_FACE_SEL)) { float *v1coSS, *v2coSS, *v3coSS, *v4coSS=NULL; @@ -4290,7 +4290,7 @@ static int imapaint_paint_stroke(ViewContext *vc, ImagePaintState *s, BrushPaint if (texpaint) { /* pick new face and image */ if ( imapaint_pick_face(vc, s->me, mval, &newfaceindex) && - ((G.f & G_FACESELECT)==0 || (s->me->mface+newfaceindex)->flag & ME_FACE_SEL) + ((s->me->editflag & ME_EDIT_PAINT_MASK)==0 || (s->me->mface+newfaceindex)->flag & ME_FACE_SEL) ) { ImBuf *ibuf; diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 65893a9ede8..5dd69cdf030 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -203,7 +203,7 @@ static unsigned int vpaint_get_current_col(VPaint *vp) return rgba_to_mcol(brush->rgb[0], brush->rgb[1], brush->rgb[2], 1.0f); } -void do_shared_vertexcol(Mesh *me) +static void do_shared_vertexcol(Mesh *me) { /* if no mcol: do not do */ /* if tface: only the involved faces, otherwise all */ @@ -221,7 +221,7 @@ void do_shared_vertexcol(Mesh *me) mface= me->mface; mcol= (char *)me->mcol; for(a=me->totface; a>0; a--, mface++, mcol+=16) { - if((tface && tface->mode & TF_SHAREDCOL) || (G.f & G_FACESELECT)==0) { + if((tface && tface->mode & TF_SHAREDCOL) || (me->editflag & ME_EDIT_PAINT_MASK)==0) { scol= scolmain+4*mface->v1; scol[0]++; scol[1]+= mcol[1]; scol[2]+= mcol[2]; scol[3]+= mcol[3]; scol= scolmain+4*mface->v2; @@ -251,7 +251,7 @@ void do_shared_vertexcol(Mesh *me) mface= me->mface; mcol= (char *)me->mcol; for(a=me->totface; a>0; a--, mface++, mcol+=16) { - if((tface && tface->mode & TF_SHAREDCOL) || (G.f & G_FACESELECT)==0) { + if((tface && tface->mode & TF_SHAREDCOL) || (me->editflag & ME_EDIT_PAINT_MASK)==0) { scol= scolmain+4*mface->v1; mcol[1]= scol[1]; mcol[2]= scol[2]; mcol[3]= scol[3]; scol= scolmain+4*mface->v2; @@ -1361,7 +1361,7 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P } } - if((G.f & G_FACESELECT) && me->mface) { + if((me->editflag & ME_EDIT_PAINT_MASK) && me->mface) { for(index=0; indextotface) { MFace *mface= ((MFace *)me->mface) + (indexar[index]-1); @@ -1675,7 +1675,7 @@ static void vpaint_paint_face(VPaint *vp, VPaintData *vpd, Object *ob, int index int alpha, i; if((vp->flag & VP_COLINDEX && mface->mat_nr!=ob->actcol-1) || - (G.f & G_FACESELECT && !(mface->flag & ME_FACE_SEL))) + ((me->editflag & ME_EDIT_PAINT_MASK) && !(mface->flag & ME_FACE_SEL))) return; if(vp->mode==VP_BLUR) { diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 280a2e4e998..b4ffc022471 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -6121,7 +6121,7 @@ static void bbs_mesh_solid(Scene *scene, View3D *v3d, Object *ob) Mesh *me = (Mesh*)ob->data; MCol *colors; int i,j; - int face_sel_mode = (G.f & G_FACESELECT) ? 1:0; + int face_sel_mode = (me->flag & ME_EDIT_PAINT_MASK) ? 1:0; glColor3ub(0, 0, 0); diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index e6fe8fabc13..8a232b71c36 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -1818,6 +1818,7 @@ static void do_view3d_header_buttons(bContext *C, void *arg, int event) ED_area_tag_redraw(sa); break; case B_VIEW_BUTSEDIT: + ED_area_tag_redraw(sa); break; default: @@ -2031,7 +2032,8 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) } } else { if (obedit==NULL && ((ob && ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT)))) { - uiDefIconButBitI(block, TOG, G_FACESELECT, B_VIEW_BUTSEDIT, ICON_FACESEL_HLT,xco,yco,XIC,YIC, &G.f, 0, 0, 0, 0, "Painting Mask (FKey)"); + Mesh *me= ob->data; + uiDefIconButBitS(block, TOG, ME_EDIT_PAINT_MASK, B_VIEW_BUTSEDIT, ICON_FACESEL_HLT,xco,yco,XIC,YIC, &me->editflag, 0, 0, 0, 0, "Painting Mask (FKey)"); header_xco_step(ar, &xco, &yco, &maxco, XIC+10); } else { /* Manipulators aren't used in weight paint mode */ diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h index 0f4dbaa8218..d12d81bb9f7 100644 --- a/source/blender/makesdna/DNA_mesh_types.h +++ b/source/blender/makesdna/DNA_mesh_types.h @@ -121,6 +121,8 @@ typedef struct TFace { #define ME_EDIT_MIRROR_Y (1 << 1) // unused so far #define ME_EDIT_MIRROR_Z (1 << 2) // unused so far +#define ME_EDIT_PAINT_MASK (1 << 3) + /* me->flag */ #define ME_ISDONE 1 #define ME_NOPUNOFLIP 2 diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c index 039109f75a1..bdf60849a84 100644 --- a/source/blender/makesrna/intern/rna_mesh.c +++ b/source/blender/makesrna/intern/rna_mesh.c @@ -1615,6 +1615,12 @@ static void rna_def_mesh(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Z Mirror", "Z Axis mirror editing"); */ + prop= RNA_def_property(srna, "use_paint_mask", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "editflag", ME_EDIT_PAINT_MASK); + RNA_def_property_ui_text(prop, "Paint Mask", "Face selection masking for painting"); + + + rna_def_texmat_common(srna, "rna_Mesh_texspace_editable"); RNA_api_mesh(srna); From d27649e9f06771335197eee7db3c5885b58b4ee4 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 19:37:49 +0000 Subject: [PATCH 124/412] Bugfix: adding a curve path did not mark it as being a path/3d correctly, causing e.g. curve guides not to work with it. --- source/blender/editors/object/object_add.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 25ecb41a523..f2022cb490f 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -293,17 +293,20 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) Object *obedit= CTX_data_edit_object(C); ListBase *editnurb; Nurb *nu; - int newob= 0; + int newob= 0, type= RNA_enum_get(op->ptr, "type"); if(obedit==NULL || obedit->type!=OB_CURVE) { ED_object_add_type(C, OB_CURVE); ED_object_enter_editmode(C, 0); newob = 1; + obedit= CTX_data_edit_object(C); + + if(type & CU_PRIM_PATH) + ((Curve*)obedit->data)->flag |= CU_PATH|CU_3D; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); - obedit= CTX_data_edit_object(C); - nu= add_nurbs_primitive(C, RNA_enum_get(op->ptr, "type"), newob); + nu= add_nurbs_primitive(C, type, newob); editnurb= curve_get_editcurve(obedit); BLI_addtail(editnurb, nu); From f22872dded0ffd3753383f2d9f60c796aaf57b43 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 19:46:36 +0000 Subject: [PATCH 125/412] Bugfix for use of freed memory in jobs manager. --- source/blender/windowmanager/intern/wm_jobs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_jobs.c b/source/blender/windowmanager/intern/wm_jobs.c index c2ecf0c59e7..8ad63d6ba15 100644 --- a/source/blender/windowmanager/intern/wm_jobs.c +++ b/source/blender/windowmanager/intern/wm_jobs.c @@ -319,9 +319,10 @@ void wm_jobs_timer_ended(wmWindowManager *wm, wmTimer *wt) /* hardcoded to event TIMERJOBS */ void wm_jobs_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt) { - wmJob *steve= wm->jobs.first; + wmJob *steve= wm->jobs.first, *stevenext; - for(; steve; steve= steve->next) { + for(; steve; steve= stevenext) { + stevenext= steve->next; if(steve->wt==wt) { From f8d3f0582d79b2e040c1bac61cf7a821321ca950 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 19:52:31 +0000 Subject: [PATCH 126/412] Bugfix for paint cursor not showing up in paint/sculpt modes after saving the file in that mode and reloading. --- source/blender/blenloader/intern/readfile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 6601d9c3fe2..6f9a41893e3 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -4232,8 +4232,10 @@ static void link_recurs_seq(FileData *fd, ListBase *lb) static void direct_link_paint(FileData *fd, Paint **paint) { (*paint)= newdataadr(fd, (*paint)); - if(*paint) + if(*paint) { + (*paint)->paint_cursor= NULL; (*paint)->brushes= newdataadr(fd, (*paint)->brushes); + } } static void direct_link_scene(FileData *fd, Scene *sce) From a864b7037ba0bd30d2a5383126affc3c662703e0 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 20:00:12 +0000 Subject: [PATCH 127/412] Bugfix for node editor refreshing too often when moving nodes, split up notifier in redraw/refresh. --- source/blender/editors/space_node/space_node.c | 2 ++ source/blender/editors/transform/transform.c | 2 +- source/blender/makesrna/intern/rna_space.c | 2 +- source/blender/windowmanager/WM_types.h | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c index 41140eae776..77a8210a2a5 100644 --- a/source/blender/editors/space_node/space_node.c +++ b/source/blender/editors/space_node/space_node.c @@ -171,6 +171,8 @@ static void node_area_listener(ScrArea *sa, wmNotifier *wmn) case NC_SPACE: if(wmn->data==ND_SPACE_NODE) ED_area_tag_refresh(sa); + else if(wmn->data==ND_SPACE_NODE_VIEW) + ED_area_tag_redraw(sa); break; } } diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 4c24d366162..1319fdc0bc4 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -322,7 +322,7 @@ static void viewRedrawForce(bContext *C, TransInfo *t) else if(t->spacetype == SPACE_NODE) { //ED_area_tag_redraw(t->sa); - WM_event_add_notifier(C, NC_SPACE|ND_SPACE_NODE, NULL); + WM_event_add_notifier(C, NC_SPACE|ND_SPACE_NODE_VIEW, NULL); } else if(t->spacetype == SPACE_SEQ) { diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index b989c83fbc3..86d546b3fe0 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1624,7 +1624,7 @@ static void rna_def_space_node(BlenderRNA *brna) prop= RNA_def_property(srna, "backdrop", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", SNODE_BACKDRAW); RNA_def_property_ui_text(prop, "Backdrop", "Use active Viewer Node output as backdrop for compositing nodes."); - RNA_def_property_update(prop, NC_SPACE|ND_SPACE_NODE, NULL); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_NODE_VIEW, NULL); } static void rna_def_space_logic(BlenderRNA *brna) diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h index 0ef7e9670dc..d326fadeba4 100644 --- a/source/blender/windowmanager/WM_types.h +++ b/source/blender/windowmanager/WM_types.h @@ -227,6 +227,7 @@ typedef struct wmNotifier { #define ND_SPACE_DOPESHEET (13<<16) #define ND_SPACE_NLA (14<<16) #define ND_SPACE_SEQUENCER (15<<16) +#define ND_SPACE_NODE_VIEW (16<<16) /* subtype, 256 entries too */ #define NOTE_SUBTYPE 0x0000FF00 From 487a5045c91e1f910e947ed53a2f5b0e652b855b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 20:59:02 +0000 Subject: [PATCH 128/412] [#19688] pressing O and alt+O doesn't toggle proportional edit mode when editing a lattice. - proportional edit keybindings for particle and lattice --- source/blender/blenkernel/BKE_global.h | 2 +- source/blender/editors/object/object_ops.c | 2 ++ source/blender/editors/physics/physics_ops.c | 3 +++ source/blender/editors/space_api/spacetypes.c | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h index dd846038603..2e9ac2f65f0 100644 --- a/source/blender/blenkernel/BKE_global.h +++ b/source/blender/blenkernel/BKE_global.h @@ -110,7 +110,7 @@ typedef struct Global { #define G_BACKBUFSEL (1 << 4) #define G_PICKSEL (1 << 5) -/* #define G_FACESELECT (1 << 8) use mesh mode */ +/* #define G_FACESELECT (1 << 8) use (mesh->editflag & ME_EDIT_PAINT_MASK) */ #define G_DEBUG (1 << 12) #define G_DOSCRIPTLINKS (1 << 13) diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 4d823a842b4..8950fdcb049 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -286,6 +286,8 @@ void ED_keymap_object(wmKeyConfig *keyconf) keymap->poll= ED_operator_editlattice; WM_keymap_add_item(keymap, "LATTICE_OT_select_all_toggle", AKEY, KM_PRESS, 0, 0); + + ED_object_generic_keymap(keyconf, keymap, TRUE); } void ED_object_generic_keymap(struct wmKeyConfig *keyconf, struct wmKeyMap *keymap, int do_pet) diff --git a/source/blender/editors/physics/physics_ops.c b/source/blender/editors/physics/physics_ops.c index ee46279d567..8fb91a6c296 100644 --- a/source/blender/editors/physics/physics_ops.c +++ b/source/blender/editors/physics/physics_ops.c @@ -35,6 +35,7 @@ #include "WM_types.h" #include "ED_physics.h" +#include "ED_object.h" #include "physics_intern.h" // own include @@ -111,6 +112,8 @@ static void keymap_particle(wmKeyConfig *keyconf) RNA_enum_set(WM_keymap_add_item(keymap, "PARTICLE_OT_brush_radial_control", FKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", WM_RADIALCONTROL_STRENGTH); WM_keymap_add_item(keymap, "PARTICLE_OT_specials_menu", WKEY, KM_PRESS, 0, 0); + + ED_object_generic_keymap(keyconf, keymap, 1); } /******************************* boids *************************************/ diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c index 60b9c5a6da7..bdcfd20b5f0 100644 --- a/source/blender/editors/space_api/spacetypes.c +++ b/source/blender/editors/space_api/spacetypes.c @@ -126,7 +126,7 @@ void ED_spacetypes_keymap(wmKeyConfig *keyconf) ED_keymap_anim(keyconf); ED_keymap_animchannels(keyconf); ED_keymap_gpencil(keyconf); - ED_keymap_object(keyconf); + ED_keymap_object(keyconf); /* defines lattice also */ ED_keymap_mesh(keyconf); ED_keymap_uvedit(keyconf); ED_keymap_curve(keyconf); From cac0e48dfb0f568ef83ff014647f0193a3a03a66 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 21:05:22 +0000 Subject: [PATCH 129/412] Region post redraw is now split up in a view space and pixel space part. This fixes a bug where transform help line drawing would not work with view clipping and mess up the z-buffer. This avoids the transform code having to figure out what kind of opengl state is enabled and disable it temporarily. --- source/blender/editors/include/ED_space_api.h | 4 +-- source/blender/editors/mesh/loopcut.c | 2 +- source/blender/editors/space_api/spacetypes.c | 4 --- .../blender/editors/space_image/image_draw.c | 2 -- .../blender/editors/space_image/image_ops.c | 2 +- .../blender/editors/space_image/space_image.c | 6 +++-- .../editors/space_view3d/view3d_draw.c | 4 ++- source/blender/editors/transform/transform.c | 26 ++++++++----------- source/blender/editors/transform/transform.h | 3 ++- .../editors/transform/transform_generics.c | 8 +++--- 10 files changed, 28 insertions(+), 33 deletions(-) diff --git a/source/blender/editors/include/ED_space_api.h b/source/blender/editors/include/ED_space_api.h index 04b6be3bcaa..14819206dfa 100644 --- a/source/blender/editors/include/ED_space_api.h +++ b/source/blender/editors/include/ED_space_api.h @@ -60,8 +60,8 @@ void ED_spacetype_userpref(void); void ED_file_init(void); void ED_file_exit(void); -#define REGION_DRAW_PRE 1 -#define REGION_DRAW_POST 0 +#define REGION_DRAW_POST_VIEW 0 +#define REGION_DRAW_POST_PIXEL 1 void *ED_region_draw_cb_activate(struct ARegionType *, void (*draw)(const struct bContext *, struct ARegion *, void *), diff --git a/source/blender/editors/mesh/loopcut.c b/source/blender/editors/mesh/loopcut.c index b7a37f74938..e12f3c99fcd 100644 --- a/source/blender/editors/mesh/loopcut.c +++ b/source/blender/editors/mesh/loopcut.c @@ -301,7 +301,7 @@ static int ringsel_init (bContext *C, wmOperator *op, int do_cut) /* assign the drawing handle for drawing preview line... */ lcd->ar= CTX_wm_region(C); - lcd->draw_handle= ED_region_draw_cb_activate(lcd->ar->type, ringsel_draw, lcd, REGION_DRAW_POST); + lcd->draw_handle= ED_region_draw_cb_activate(lcd->ar->type, ringsel_draw, lcd, REGION_DRAW_POST_VIEW); lcd->ob = CTX_data_edit_object(C); lcd->em= BKE_mesh_get_editmesh((Mesh *)lcd->ob->data); lcd->extend = do_cut ? 0 : RNA_boolean_get(op->ptr, "extend"); diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c index bdcfd20b5f0..f3db414099f 100644 --- a/source/blender/editors/space_api/spacetypes.c +++ b/source/blender/editors/space_api/spacetypes.c @@ -151,10 +151,6 @@ void ED_spacetypes_keymap(wmKeyConfig *keyconf) /* ********************** custom drawcall api ***************** */ -/* type */ -#define REGION_DRAW_PRE 1 -#define REGION_DRAW_POST 0 - typedef struct RegionDrawCB { struct RegionDrawCB *next, *prev; diff --git a/source/blender/editors/space_image/image_draw.c b/source/blender/editors/space_image/image_draw.c index a42fec30c45..46ec41eda58 100644 --- a/source/blender/editors/space_image/image_draw.c +++ b/source/blender/editors/space_image/image_draw.c @@ -173,8 +173,6 @@ void draw_image_info(ARegion *ar, int channels, int x, int y, char *cp, float *f { char str[256]; int ofs; - - ED_region_pixelspace(ar); ofs= sprintf(str, "X: %d Y: %d ", x, y); if(cp) diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index ffc737eb9af..8d7295e9f20 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -1539,7 +1539,7 @@ static int sample_invoke(bContext *C, wmOperator *op, wmEvent *event) info= MEM_callocN(sizeof(ImageSampleInfo), "ImageSampleInfo"); info->art= ar->type; - info->draw_handle = ED_region_draw_cb_activate(ar->type, sample_draw, info, REGION_DRAW_POST); + info->draw_handle = ED_region_draw_cb_activate(ar->type, sample_draw, info, REGION_DRAW_POST_PIXEL); op->customdata= info; sample_apply(C, op, event); diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c index 115f970046f..36d1573a12c 100644 --- a/source/blender/editors/space_image/space_image.c +++ b/source/blender/editors/space_image/space_image.c @@ -431,15 +431,17 @@ static void image_main_area_draw(const bContext *C, ARegion *ar) UI_view2d_view_ortho(C, v2d); draw_uvedit_main(sima, ar, scene, obedit); - ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST); + ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_VIEW); /* Grease Pencil too (in addition to UV's) */ draw_image_grease_pencil((bContext *)C, 1); UI_view2d_view_restore(C); - + /* draw Grease Pencil - screen space only */ draw_image_grease_pencil((bContext *)C, 0); + + ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_PIXEL); /* scrollers? */ /*scrollers= UI_view2d_scrollers_calc(C, v2d, V2D_UNIT_VALUES, V2D_GRID_CLAMP, V2D_ARG_DUMMY, V2D_ARG_DUMMY); diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index fac3f9fb555..15e41a66981 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -2056,7 +2056,7 @@ void view3d_main_area_draw(const bContext *C, ARegion *ar) view3d_update_depths(ar, v3d); } - ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST); + ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_VIEW); // REEB_draw(); @@ -2123,6 +2123,8 @@ void view3d_main_area_draw(const bContext *C, ARegion *ar) ob= OBACT; if(U.uiflag & USER_DRAWVIEWINFO) draw_selected_name(scene, ob, v3d); + + ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_PIXEL); /* XXX here was the blockhandlers for floating panels */ diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 1319fdc0bc4..3df74020fab 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -1124,14 +1124,7 @@ void drawHelpline(const struct bContext *C, TransInfo *t) projectFloatView(t, vecrot, cent); // no overflow in extreme cases - glDisable(GL_DEPTH_TEST); - - glMatrixMode(GL_PROJECTION); glPushMatrix(); - glMatrixMode(GL_MODELVIEW); - glPushMatrix(); - - ED_region_pixelspace(t->ar); switch(t->helpline) { @@ -1238,22 +1231,23 @@ void drawHelpline(const struct bContext *C, TransInfo *t) } } - glMatrixMode(GL_PROJECTION); glPopMatrix(); - glMatrixMode(GL_MODELVIEW); - glPopMatrix(); - - glEnable(GL_DEPTH_TEST); } } -void drawTransform(const struct bContext *C, struct ARegion *ar, void *arg) +void drawTransformView(const struct bContext *C, struct ARegion *ar, void *arg) { TransInfo *t = arg; drawConstraint(C, t); drawPropCircle(C, t); drawSnapping(C, t); +} + +void drawTransformPixel(const struct bContext *C, struct ARegion *ar, void *arg) +{ + TransInfo *t = arg; + drawHelpline(C, t); } @@ -1373,11 +1367,13 @@ int initTransform(bContext *C, TransInfo *t, wmOperator *op, wmEvent *event, int //calc_manipulator_stats(curarea); initTransformOrientation(C, t); - t->draw_handle = ED_region_draw_cb_activate(t->ar->type, drawTransform, t, REGION_DRAW_POST); + t->draw_handle_view = ED_region_draw_cb_activate(t->ar->type, drawTransformView, t, REGION_DRAW_POST_VIEW); + t->draw_handle_pixel = ED_region_draw_cb_activate(t->ar->type, drawTransformPixel, t, REGION_DRAW_POST_PIXEL); } else if(t->spacetype == SPACE_IMAGE) { Mat3One(t->spacemtx); - t->draw_handle = ED_region_draw_cb_activate(t->ar->type, drawTransform, t, REGION_DRAW_POST); + t->draw_handle_view = ED_region_draw_cb_activate(t->ar->type, drawTransformView, t, REGION_DRAW_POST_VIEW); + t->draw_handle_pixel = ED_region_draw_cb_activate(t->ar->type, drawTransformPixel, t, REGION_DRAW_POST_PIXEL); } else Mat3One(t->spacemtx); diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index fc31fad622a..46e5dad3e05 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -302,7 +302,8 @@ typedef struct TransInfo { struct wmTimer *animtimer; short mval[2]; /* current mouse position */ struct Object *obedit; - void *draw_handle; + void *draw_handle_view; + void *draw_handle_pixel; } TransInfo; diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 5372a9112c3..2af92719d19 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -1045,10 +1045,10 @@ void postTrans (TransInfo *t) { TransData *td; - if (t->draw_handle) - { - ED_region_draw_cb_exit(t->ar->type, t->draw_handle); - } + if (t->draw_handle_view) + ED_region_draw_cb_exit(t->ar->type, t->draw_handle_view); + if (t->draw_handle_pixel) + ED_region_draw_cb_exit(t->ar->type, t->draw_handle_pixel); if (t->customFree) { From 29b0afde6e2220c581ebff9c3f41f43f687ec6bc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Oct 2009 21:12:09 +0000 Subject: [PATCH 130/412] [#19445] New Object is not Grabbed after using Duplicate Linked --- source/blender/editors/object/object_ops.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 8950fdcb049..f9fe5ca28fa 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -189,12 +189,21 @@ void ED_operatortypes_object(void) void ED_operatormacros_object(void) { wmOperatorType *ot; + wmOperatorTypeMacro *otmacro; ot= WM_operatortype_append_macro("OBJECT_OT_duplicate_move", "Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); if(ot) { WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); WM_operatortype_macro_define(ot, "TFM_OT_translate"); } + + /* grr, should be able to pass options on... */ + ot= WM_operatortype_append_macro("OBJECT_OT_duplicate_move_linked", "Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); + if(ot) { + otmacro= WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); + RNA_boolean_set(otmacro->ptr, "linked", 1); + WM_operatortype_macro_define(ot, "TFM_OT_translate"); + } } static int object_mode_poll(bContext *C) @@ -266,7 +275,8 @@ void ED_keymap_object(wmKeyConfig *keyconf) RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_make_single_user"); WM_keymap_add_item(keymap, "OBJECT_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0); - RNA_boolean_set(WM_keymap_add_item(keymap, "OBJECT_OT_duplicate", DKEY, KM_PRESS, KM_ALT, 0)->ptr, "linked", 1); + WM_keymap_add_item(keymap, "OBJECT_OT_duplicate_move_linked", DKEY, KM_PRESS, KM_ALT, 0); + WM_keymap_add_item(keymap, "OBJECT_OT_join", JKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "OBJECT_OT_convert", CKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "OBJECT_OT_proxy_make", PKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); From 4044f057ca4b123721520e0dc20794a4eeb3b80a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 20 Oct 2009 21:13:42 +0000 Subject: [PATCH 131/412] Bugfix: rendering with multiple windows open did not use image editors with render results in other windows. --- source/blender/editors/screen/screen_ops.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index eeddeee25bf..aadba50bb84 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -2518,18 +2518,22 @@ static ScrArea *biggest_area(bContext *C) static ScrArea *find_area_showing_r_result(bContext *C) { - bScreen *sc= CTX_wm_screen(C); + wmWindowManager *wm= CTX_wm_manager(C); + wmWindow *win; ScrArea *sa; SpaceImage *sima; /* find an imagewindow showing render result */ - for(sa=sc->areabase.first; sa; sa= sa->next) { - if(sa->spacetype==SPACE_IMAGE) { - sima= sa->spacedata.first; - if(sima->image && sima->image->type==IMA_TYPE_R_RESULT) - break; + for(win=wm->windows.first; win; win=win->next) { + for(sa=win->screen->areabase.first; sa; sa= sa->next) { + if(sa->spacetype==SPACE_IMAGE) { + sima= sa->spacedata.first; + if(sima->image && sima->image->type==IMA_TYPE_R_RESULT) + break; + } } } + return sa; } From 122483518850f0d44d8e12a2f06c66ded878e894 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Tue, 20 Oct 2009 21:58:19 +0000 Subject: [PATCH 132/412] Size and position are normally requested by program, not user. --- intern/ghost/intern/GHOST_WindowX11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index 5e6bb93d9ba..3459f2fcc94 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -297,7 +297,7 @@ GHOST_WindowX11( // we want this window treated. XSizeHints * xsizehints = XAllocSizeHints(); - xsizehints->flags = USPosition | USSize | PMinSize; + xsizehints->flags = PPosition | PSize | PMinSize; xsizehints->x = left; xsizehints->y = top; xsizehints->width = width; From ca87f28f5bcb4811757631464a32a80fe91dbb41 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 22:51:20 +0000 Subject: [PATCH 133/412] Text Editor: Scrollbar now drawn on the right --- source/blender/editors/space_text/text_draw.c | 15 ++++----------- source/blender/editors/space_text/text_ops.c | 2 +- source/blender/makesdna/DNA_text_types.h | 4 ++-- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/source/blender/editors/space_text/text_draw.c b/source/blender/editors/space_text/text_draw.c index 5996770c206..035c56005fe 100644 --- a/source/blender/editors/space_text/text_draw.c +++ b/source/blender/editors/space_text/text_draw.c @@ -650,8 +650,10 @@ static void calc_text_rcts(SpaceText *st, ARegion *ar, rcti *scroll) blank_lines = st->viewlines / 2; /* nicer code: use scroll rect for entire bar */ - scroll->xmin= 5; - scroll->xmax= 17; + //scroll->xmin= 5; + //scroll->xmax= 17; + scroll->xmin= ar->winx - 17; + scroll->xmax= ar->winx - 5; scroll->ymin= 4; scroll->ymax= 4+pix_available; @@ -752,15 +754,6 @@ static void draw_textscroll(SpaceText *st, ARegion *ar, rcti *scroll) char col[3]; float rad; -// UI_ThemeColorShade(TH_SHADE1, -20); -// glRecti(2, 2, 20, ar->winy-6); -// uiEmboss(2, 2, 20, ar->winy-6, 1); - -// UI_ThemeColor(TH_SHADE1); -// glRecti(st->txtbar.xmin, st->txtbar.ymin, st->txtbar.xmax, st->txtbar.ymax); - -// uiEmboss(st->txtbar.xmin, st->txtbar.ymin, st->txtbar.xmax, st->txtbar.ymax, st->flags & ST_SCROLL_SELECT); - uiWidgetScrollDraw(&wcol, scroll, &st->txtbar, (st->flags & ST_SCROLL_SELECT)?UI_SCROLL_PRESSED:0); uiSetRoundBox(15); diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index a7b40deda22..09c74666b69 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -1901,7 +1901,7 @@ static int scroll_bar_invoke(bContext *C, wmOperator *op, wmEvent *event) return scroll_exec(C, op); /* verify we are in the right zone */ - if(!(mval[0]>2 && mval[0]<20 && mval[1]>2 && mval[1]winy)) + if(!(mval[0]>ar->winx-20 && mval[0]winx-2 && mval[1]>2 && mval[1]winy)) return OPERATOR_PASS_THROUGH; tsc= MEM_callocN(sizeof(TextScroll), "TextScroll"); diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h index 8f9d4b5f4b4..5793f061f06 100644 --- a/source/blender/makesdna/DNA_text_types.h +++ b/source/blender/makesdna/DNA_text_types.h @@ -70,8 +70,8 @@ typedef struct Text { double mtime; } Text; - -#define TXT_OFFSET 35 + /* TXT_OFFSET used to be 35 when the scrollbar was on the left... */ +#define TXT_OFFSET 15 #define TXT_TABSIZE 4 #define TXT_INIT_UNDO 1024 #define TXT_MAX_UNDO (TXT_INIT_UNDO*TXT_INIT_UNDO) From c0d74fa1922541c44dd57aa787704d2ef99b2a7a Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 23:18:00 +0000 Subject: [PATCH 134/412] Bugfix #19696: Crash when adding an Empty or Force field --- source/blender/blenkernel/intern/paint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/paint.c b/source/blender/blenkernel/intern/paint.c index 9a8f6d284f3..3dfe3966e2f 100644 --- a/source/blender/blenkernel/intern/paint.c +++ b/source/blender/blenkernel/intern/paint.c @@ -161,7 +161,7 @@ void paint_brush_slot_remove(Paint *p) int paint_facesel_test(Object *ob) { - return (ob && (((Mesh *)ob->data)->editflag & ME_EDIT_PAINT_MASK) && (ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT))); + return (ob && ob->data && (((Mesh *)ob->data)->editflag & ME_EDIT_PAINT_MASK) && (ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT))); } void paint_init(Paint *p, const char col[3]) From daa1e5449db6de63e1dc15a0362722716c163b2d Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 20 Oct 2009 23:51:31 +0000 Subject: [PATCH 135/412] Graph Editor: Small optimisations for drawing Moving out a few gl state changes to higher-level calls to improve performance when drawing handles. This already improves the responsiveness a lot on a few files, though a few other tweaks will also help. --- .../blender/editors/space_graph/graph_draw.c | 38 +++++++++++-------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 6ba6fee3890..5baa2372e0d 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -202,7 +202,10 @@ static void draw_fcurve_vertices_keyframes (FCurve *fcu, View2D *v2d, short edit } -/* helper func - draw handle vertex for an F-Curve as a round unfilled circle */ +/* helper func - draw handle vertex for an F-Curve as a round unfilled circle + * NOTE: the caller MUST HAVE GL_LINE_SMOOTH & GL_BLEND ENABLED, otherwise, the controls don't + * have a consistent appearance (due to off-pixel alignments)... + */ static void draw_fcurve_handle_control (float x, float y, float xscale, float yscale, float hsize) { static GLuint displist=0; @@ -226,16 +229,9 @@ static void draw_fcurve_handle_control (float x, float y, float xscale, float ys glTranslatef(x, y, 0.0f); glScalef(1.0f/xscale*hsize, 1.0f/yscale*hsize, 1.0f); - /* anti-aliased lines for more consistent appearance */ - glEnable(GL_LINE_SMOOTH); - glEnable(GL_BLEND); - /* draw! */ glCallList(displist); - glDisable(GL_LINE_SMOOTH); - glDisable(GL_BLEND); - /* restore view transform */ glScalef(xscale/hsize, yscale/hsize, 1.0); glTranslatef(-x, -y, 0.0f); @@ -257,6 +253,10 @@ static void draw_fcurve_vertices_handles (FCurve *fcu, View2D *v2d, short sel) if (sel) UI_ThemeColor(TH_HANDLE_VERTEX_SELECT); else UI_ThemeColor(TH_HANDLE_VERTEX); + /* anti-aliased lines for more consistent appearance */ + glEnable(GL_LINE_SMOOTH); + glEnable(GL_BLEND); + for (i=0; i < fcu->totvert; i++, prevbezt=bezt, bezt++) { /* Draw the editmode handels for a bezier curve (others don't have handles) * if their selection status matches the selection status we're drawing for @@ -273,6 +273,9 @@ static void draw_fcurve_vertices_handles (FCurve *fcu, View2D *v2d, short sel) draw_fcurve_handle_control(bezt->vec[2][0], bezt->vec[2][1], xscale, yscale, hsize); } } + + glDisable(GL_LINE_SMOOTH); + glDisable(GL_BLEND); } /* helper func - set color to draw F-Curve data with */ @@ -399,7 +402,10 @@ static void draw_fcurve_handles (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) /* Samples ---------------- */ -/* helper func - draw sample-range marker for an F-Curve as a cross */ +/* helper func - draw sample-range marker for an F-Curve as a cross + * NOTE: the caller MUST HAVE GL_LINE_SMOOTH & GL_BLEND ENABLED, otherwise, the controls don't + * have a consistent appearance (due to off-pixel alignments)... + */ static void draw_fcurve_sample_control (float x, float y, float xscale, float yscale, float hsize) { static GLuint displist=0; @@ -424,16 +430,9 @@ static void draw_fcurve_sample_control (float x, float y, float xscale, float ys glTranslatef(x, y, 0.0f); glScalef(1.0f/xscale*hsize, 1.0f/yscale*hsize, 1.0f); - /* anti-aliased lines for more consistent appearance */ - glEnable(GL_LINE_SMOOTH); - glEnable(GL_BLEND); - /* draw! */ glCallList(displist); - glDisable(GL_BLEND); - glDisable(GL_LINE_SMOOTH); - /* restore view transform */ glScalef(xscale/hsize, yscale/hsize, 1.0); glTranslatef(-x, -y, 0.0f); @@ -459,8 +458,15 @@ static void draw_fcurve_samples (SpaceIpo *sipo, ARegion *ar, FCurve *fcu) /* draw */ if (first && last) { + /* anti-aliased lines for more consistent appearance */ + glEnable(GL_LINE_SMOOTH); + glEnable(GL_BLEND); + draw_fcurve_sample_control(first->vec[0], first->vec[1], xscale, yscale, hsize); draw_fcurve_sample_control(last->vec[0], last->vec[1], xscale, yscale, hsize); + + glDisable(GL_BLEND); + glDisable(GL_LINE_SMOOTH); } } From 908061378c9dd56bd2f1408ac0d3072c5464c72d Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 21 Oct 2009 00:33:08 +0000 Subject: [PATCH 136/412] * fix for colour management, compositor image node wasn't working correctly. There are a few other issues around here I need to get to eventually as well.. --- source/blender/nodes/intern/CMP_nodes/CMP_image.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_image.c b/source/blender/nodes/intern/CMP_nodes/CMP_image.c index 5e22f5cf016..89a3072ac8d 100644 --- a/source/blender/nodes/intern/CMP_nodes/CMP_image.c +++ b/source/blender/nodes/intern/CMP_nodes/CMP_image.c @@ -67,11 +67,15 @@ static CompBuf *node_composit_get_image(RenderData *rd, Image *ima, ImageUser *i if (rd->color_mgt_flag & R_COLOR_MANAGEMENT) { if (ibuf->profile == IB_PROFILE_NONE) { - if (ibuf->rect_float != NULL) { + /* if float buffer already exists = already linear */ + /* else ... */ + if (ibuf->rect_float == NULL) { imb_freerectfloatImBuf(ibuf); + ibuf->profile = IB_PROFILE_SRGB; + IMB_float_from_rect(ibuf); + } else { + ibuf->profile = IB_PROFILE_LINEAR_RGB; } - ibuf->profile = IB_PROFILE_SRGB; - IMB_float_from_rect(ibuf); } } else { if (ibuf->profile == IB_PROFILE_SRGB) { From ddb1f64fff1c4ea9c0f93e71d89996d1144af671 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 21 Oct 2009 05:59:51 +0000 Subject: [PATCH 137/412] Outliner: Tweaks for Driver Operators * Driver adding/removing operators in the Outliner now work properly for arrays * Renamed these operators so that their names are more indicative of how they work (i.e. based on the data in the Outliner that is selected) * Added a menu labelled 'Edit' in the Datablocks view which gives access to (and includes the hotkeys for) these tools. --- release/scripts/ui/space_outliner.py | 22 +++++++ .../blender/editors/space_outliner/outliner.c | 60 ++++++++++++------- .../editors/space_outliner/outliner_intern.h | 4 +- .../editors/space_outliner/outliner_ops.c | 8 +-- 4 files changed, 67 insertions(+), 27 deletions(-) diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 87c31e1aa94..40816309e7e 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -17,6 +17,8 @@ class OUTLINER_HT_header(bpy.types.Header): if context.area.show_menus: sub = row.row(align=True) sub.itemM("OUTLINER_MT_view") + if space.display_mode == 'DATABLOCKS': + sub.itemM("OUTLINER_MT_edit_datablocks") layout.itemR(space, "display_mode", text="") @@ -26,13 +28,16 @@ class OUTLINER_HT_header(bpy.types.Header): row = layout.row(align=True) row.itemO("outliner.keyingset_add_selected", icon='ICON_ZOOMIN', text="") row.itemO("outliner.keyingset_remove_selected", icon='ICON_ZOOMOUT', text="") + if ks: + row = layout.row(align=False) row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") row = layout.row(align=True) row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') else: + row = layout.row(align=False) row.itemL(text="No Keying Set active") class OUTLINER_MT_view(bpy.types.Menu): @@ -51,6 +56,23 @@ class OUTLINER_MT_view(bpy.types.Menu): col.itemO("outliner.show_one_level") col.itemO("outliner.show_hierarchy") + +class OUTLINER_MT_edit_datablocks(bpy.types.Menu): + __label__ = "Edit" + + def draw(self, context): + layout = self.layout + + col = layout.column() + + col.itemO("outliner.keyingset_add_selected") + col.itemO("outliner.keyingset_remove_selected") + + col.itemS() + + col.itemO("outliner.drivers_add_selected") + col.itemO("outliner.drivers_delete_selected") bpy.types.register(OUTLINER_HT_header) bpy.types.register(OUTLINER_MT_view) +bpy.types.register(OUTLINER_MT_edit_datablocks) diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 2612f8a024c..5e67e9372fc 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3771,21 +3771,39 @@ static void do_outliner_drivers_editop(SpaceOops *soops, ListBase *tree, short m } /* only if ID and path were set, should we perform any actions */ + // FIXME: if whole array flag is set, mus add the entire array if (id && path) { - /* action depends on mode */ - switch (mode) { - case DRIVERS_EDITMODE_ADD: - { - /* add a new driver with the information obtained (only if valid) */ - ANIM_add_driver(id, path, array_index, flag, DRIVER_TYPE_AVERAGE); + int arraylen, i; + + /* array checks */ + if (flag & KSP_FLAG_WHOLE_ARRAY) { + /* entire array was selected, so add drivers for all */ + arraylen= RNA_property_array_length(&te->rnaptr, te->directdata); + } + else + arraylen= array_index; + + /* we should do at least one step */ + if (arraylen == array_index) + arraylen++; + + /* for each array element we should affect, add driver */ + for (; array_index < arraylen; array_index++) { + /* action depends on mode */ + switch (mode) { + case DRIVERS_EDITMODE_ADD: + { + /* add a new driver with the information obtained (only if valid) */ + ANIM_add_driver(id, path, array_index, flag, DRIVER_TYPE_PYTHON); + } + break; + case DRIVERS_EDITMODE_REMOVE: + { + /* remove driver matching the information obtained (only if valid) */ + ANIM_remove_driver(id, path, array_index, flag); + } + break; } - break; - case DRIVERS_EDITMODE_REMOVE: - { - /* remove driver matching the information obtained (only if valid) */ - ANIM_remove_driver(id, path, array_index, flag); - } - break; } /* free path, since it had to be generated */ @@ -3815,16 +3833,16 @@ static int outliner_drivers_addsel_exec(bContext *C, wmOperator *op) do_outliner_drivers_editop(soutliner, &soutliner->tree, DRIVERS_EDITMODE_ADD); /* send notifiers */ - WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, NULL); + WM_event_add_notifier(C, ND_KEYS, NULL); // XXX return OPERATOR_FINISHED; } -void OUTLINER_OT_drivers_add(wmOperatorType *ot) +void OUTLINER_OT_drivers_add_selected(wmOperatorType *ot) { /* api callbacks */ - ot->idname= "OUTLINER_OT_drivers_add"; - ot->name= "Add Drivers"; + ot->idname= "OUTLINER_OT_drivers_add_selected"; + ot->name= "Add Drivers for Selected"; ot->description= "Add drivers to selected items."; /* api callbacks */ @@ -3850,16 +3868,16 @@ static int outliner_drivers_deletesel_exec(bContext *C, wmOperator *op) do_outliner_drivers_editop(soutliner, &soutliner->tree, DRIVERS_EDITMODE_REMOVE); /* send notifiers */ - WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, NULL); + WM_event_add_notifier(C, ND_KEYS, NULL); // XXX return OPERATOR_FINISHED; } -void OUTLINER_OT_drivers_delete(wmOperatorType *ot) +void OUTLINER_OT_drivers_delete_selected(wmOperatorType *ot) { /* identifiers */ - ot->idname= "OUTLINER_OT_drivers_delete"; - ot->name= "Delete Drivers"; + ot->idname= "OUTLINER_OT_drivers_delete_selected"; + ot->name= "Delete Drivers for Selected"; ot->description= "Delete drivers assigned to selected items."; /* api callbacks */ diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h index c71b5181d16..a1fc2f11bc4 100644 --- a/source/blender/editors/space_outliner/outliner_intern.h +++ b/source/blender/editors/space_outliner/outliner_intern.h @@ -143,8 +143,8 @@ void OUTLINER_OT_visibility_toggle(struct wmOperatorType *ot); void OUTLINER_OT_keyingset_add_selected(struct wmOperatorType *ot); void OUTLINER_OT_keyingset_remove_selected(struct wmOperatorType *ot); -void OUTLINER_OT_drivers_add(struct wmOperatorType *ot); -void OUTLINER_OT_drivers_delete(struct wmOperatorType *ot); +void OUTLINER_OT_drivers_add_selected(struct wmOperatorType *ot); +void OUTLINER_OT_drivers_delete_selected(struct wmOperatorType *ot); #if 0 extern void outliner_mouse_event(Scene *scene, ARegion *ar, SpaceOops *soops, short event); diff --git a/source/blender/editors/space_outliner/outliner_ops.c b/source/blender/editors/space_outliner/outliner_ops.c index 3cdd054fe0e..431801d50f2 100644 --- a/source/blender/editors/space_outliner/outliner_ops.c +++ b/source/blender/editors/space_outliner/outliner_ops.c @@ -70,8 +70,8 @@ void outliner_operatortypes(void) WM_operatortype_append(OUTLINER_OT_keyingset_add_selected); WM_operatortype_append(OUTLINER_OT_keyingset_remove_selected); - WM_operatortype_append(OUTLINER_OT_drivers_add); - WM_operatortype_append(OUTLINER_OT_drivers_delete); + WM_operatortype_append(OUTLINER_OT_drivers_add_selected); + WM_operatortype_append(OUTLINER_OT_drivers_delete_selected); } void outliner_keymap(wmKeyConfig *keyconf) @@ -110,7 +110,7 @@ void outliner_keymap(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "ANIM_OT_insert_keyframe", IKEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "ANIM_OT_delete_keyframe", IKEY, KM_PRESS, KM_ALT, 0); - WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_add", DKEY, KM_PRESS, 0, 0); - WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_delete", DKEY, KM_PRESS, KM_ALT, 0); + WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_add_selected", DKEY, KM_PRESS, 0, 0); + WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_delete_selected", DKEY, KM_PRESS, KM_ALT, 0); } From f4d6bbd656810c3248debb909204df0135b74e65 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Oct 2009 07:56:08 +0000 Subject: [PATCH 138/412] =?UTF-8?q?-=20improvements=20from=20Mathias=20Pan?= =?UTF-8?q?zenb=C3=B6ck=20(panzi)=20patch=20[#19695],=20which=20avoid=20co?= =?UTF-8?q?nversion=20to/from=20strings=20with=20context=20property=20assi?= =?UTF-8?q?gnment.=20though=20didnt=20apply=20entire=20patch.=20-=20[#1969?= =?UTF-8?q?8]=20Add=20Menu=20Item:=20View3d=20->=20Object=20->=20Move=20to?= =?UTF-8?q?=20layer=20=20=20from=20Howard=20Brooks=20(hbroo)=20-=20had=20c?= =?UTF-8?q?ursor=20grab=20commented=20by=20mistake=20for=20X11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- intern/ghost/intern/GHOST_WindowX11.cpp | 4 ++-- release/scripts/modules/bpy_ops.py | 24 +++++++++--------------- release/scripts/ui/space_view3d.py | 1 + 3 files changed, 12 insertions(+), 17 deletions(-) diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp index 3459f2fcc94..d9c2654f446 100644 --- a/intern/ghost/intern/GHOST_WindowX11.cpp +++ b/intern/ghost/intern/GHOST_WindowX11.cpp @@ -1412,7 +1412,7 @@ setWindowCursorGrab( setWindowCursorVisibility(false); } - //XGrabPointer(m_display, m_window, True, ButtonPressMask| ButtonReleaseMask|PointerMotionMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime); + XGrabPointer(m_display, m_window, True, ButtonPressMask| ButtonReleaseMask|PointerMotionMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime); } else { if (m_cursorGrab==GHOST_kGrabHide) { @@ -1430,7 +1430,7 @@ setWindowCursorGrab( /* Almost works without but important otherwise the mouse GHOST location can be incorrect on exit */ setCursorGrabAccum(0, 0); m_cursorGrabBounds.m_l= m_cursorGrabBounds.m_r= -1; /* disable */ - //XUngrabPointer(m_display, CurrentTime); + XUngrabPointer(m_display, CurrentTime); } XFlush(m_display); diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 6772a3771cb..61c6dc24ad7 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -155,50 +155,44 @@ class MESH_OT_delete_edgeloop(bpy.types.Operator): rna_path_prop = bpy.props.StringProperty(attr="path", name="Context Attributes", description="rna context string", maxlen= 1024, default= "") +def execute_context_assign(self, context): + exec("context.%s=self.value" % self.path) + return ('FINISHED',) + class WM_OT_context_set_boolean(bpy.types.Operator): '''Set a context value.''' __idname__ = "wm.context_set_boolean" __label__ = "Context Set" __props__ = [rna_path_prop, bpy.props.BoolProperty(attr="value", name="Value", description="Assignment value", default= True)] - def execute(self, context): - exec("context.%s=%s" % (self.path, self.value)) # security nuts will complain. - return ('FINISHED',) + execute = execute_context_assign class WM_OT_context_set_int(bpy.types.Operator): # same as enum '''Set a context value.''' __idname__ = "wm.context_set_int" __label__ = "Context Set" __props__ = [rna_path_prop, bpy.props.IntProperty(attr="value", name="Value", description="Assignment value", default= 0)] - def execute(self, context): - exec("context.%s=%d" % (self.path, self.value)) # security nuts will complain. - return ('FINISHED',) + execute = execute_context_assign class WM_OT_context_set_float(bpy.types.Operator): # same as enum '''Set a context value.''' __idname__ = "wm.context_set_int" __label__ = "Context Set" __props__ = [rna_path_prop, bpy.props.FloatProperty(attr="value", name="Value", description="Assignment value", default= 0.0)] - def execute(self, context): - exec("context.%s=%f" % (self.path, self.value)) # security nuts will complain. - return ('FINISHED',) + execute = execute_context_assign class WM_OT_context_set_string(bpy.types.Operator): # same as enum '''Set a context value.''' __idname__ = "wm.context_set_string" __label__ = "Context Set" __props__ = [rna_path_prop, bpy.props.StringProperty(attr="value", name="Value", description="Assignment value", maxlen= 1024, default= "")] - def execute(self, context): - exec("context.%s='%s'" % (self.path, self.value)) # security nuts will complain. - return ('FINISHED',) + execute = execute_context_assign class WM_OT_context_set_enum(bpy.types.Operator): '''Set a context value.''' __idname__ = "wm.context_set_enum" __label__ = "Context Set" __props__ = [rna_path_prop, bpy.props.StringProperty(attr="value", name="Value", description="Assignment value (as a string)", maxlen= 1024, default= "")] - def execute(self, context): - exec("context.%s='%s'" % (self.path, self.value)) # security nuts will complain. - return ('FINISHED',) + execute = execute_context_assign class WM_OT_context_toggle(bpy.types.Operator): '''Toggle a context value.''' diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index eae97febf14..689250d0c45 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -427,6 +427,7 @@ class VIEW3D_MT_object(bpy.types.Menu): layout.itemS() + layout.itemO("object.move_to_layer", text="Move to Layer...") layout.itemM("VIEW3D_MT_object_showhide") layout.item_menu_enumO("object.convert", "target") From 1f33a90f059a886add7ed5be2fea0e1a331ca3c4 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 21 Oct 2009 09:17:46 +0000 Subject: [PATCH 139/412] Bugfix to allow list templates to have more than 5 rows when you set it in the python script, didn't work correct with scrolling. --- source/blender/editors/interface/interface_templates.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index 7965a4c3b53..d5d94262ad8 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -2117,7 +2117,7 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr if(prop) len= RNA_property_collection_length(ptr, prop); - items= CLAMPIS(len, rows, 5); + items= CLAMPIS(len, rows, MAX2(rows, 5)); pa->list_scroll= MIN2(pa->list_scroll, len-items); pa->list_scroll= MAX2(pa->list_scroll, 0); From 3a6da12ab101f2406c951638141641ad634c397e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Oct 2009 10:11:03 +0000 Subject: [PATCH 140/412] added new context operator WM_OT_context_cycle_int, use for switching between active shape keys --- release/scripts/modules/bpy_ops.py | 24 +++++++++++++++++++++- source/blender/editors/object/object_ops.c | 9 ++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 61c6dc24ad7..3471ca7be90 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -154,6 +154,7 @@ class MESH_OT_delete_edgeloop(bpy.types.Operator): return ('FINISHED',) rna_path_prop = bpy.props.StringProperty(attr="path", name="Context Attributes", description="rna context string", maxlen= 1024, default= "") +rna_reverse_prop = bpy.props.BoolProperty(attr="reverse", name="Reverse", description="Cycle backwards", default= False) def execute_context_assign(self, context): exec("context.%s=self.value" % self.path) @@ -216,11 +217,30 @@ class WM_OT_context_toggle_enum(bpy.types.Operator): exec("context.%s = ['%s', '%s'][context.%s!='%s']" % (self.path, self.value_1, self.value_2, self.path, self.value_2)) # security nuts will complain. return ('FINISHED',) +class WM_OT_context_cycle_int(bpy.types.Operator): + '''Set a context value. Useful for cycling active material, vertex keys, groups' etc.''' + __idname__ = "wm.context_cycle_int" + __label__ = "Context Int Cycle" + __props__ = [rna_path_prop, rna_reverse_prop] + def execute(self, context): + self.value = eval("context.%s" % self.path) + if self.reverse: self.value -= 1 + else: self.value += 1 + execute_context_assign(self, context) + + if self.value != eval("context.%s" % self.path): + # relies on rna clamping int's out of the range + if self.reverse: self.value = (1<<32) + else: self.value = -(1<<32) + execute_context_assign(self, context) + + return ('FINISHED',) + class WM_OT_context_cycle_enum(bpy.types.Operator): '''Toggle a context value.''' __idname__ = "wm.context_cycle_enum" __label__ = "Context Enum Cycle" - __props__ = [rna_path_prop, bpy.props.BoolProperty(attr="reverse", name="Reverse", description="Cycle backwards", default= False)] + __props__ = [rna_path_prop, rna_reverse_prop] def execute(self, context): orig_value = eval("context.%s" % self.path) # security nuts will complain. @@ -251,6 +271,7 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): exec("context.%s=advance_enum" % self.path) return ('FINISHED',) + bpy.ops.add(MESH_OT_delete_edgeloop) bpy.ops.add(WM_OT_context_set_boolean) @@ -261,4 +282,5 @@ bpy.ops.add(WM_OT_context_set_enum) bpy.ops.add(WM_OT_context_toggle) bpy.ops.add(WM_OT_context_toggle_enum) bpy.ops.add(WM_OT_context_cycle_enum) +bpy.ops.add(WM_OT_context_cycle_int) diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index f9fe5ca28fa..624825a18ac 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -291,6 +291,15 @@ void ED_keymap_object(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "GROUP_OT_objects_add_active", GKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_remove_active", GKEY, KM_PRESS, KM_SHIFT|KM_ALT, 0); + /* if 2.4x keys use these can be replaced, could also use page up/down keys to switch vgroups */ + kmi = WM_keymap_add_item(keymap, "WM_OT_context_cycle_int", PAGEUPKEY, KM_PRESS, 0, 0); + RNA_string_set(kmi->ptr, "path", "object.active_shape_key_index"); + RNA_boolean_set(kmi->ptr, "reverse", TRUE); + + kmi = WM_keymap_add_item(keymap, "WM_OT_context_cycle_int", PAGEDOWNKEY, KM_PRESS, 0, 0); + RNA_string_set(kmi->ptr, "path", "object.active_shape_key_index"); + + /* Lattice */ keymap= WM_keymap_find(keyconf, "Lattice", 0, 0); keymap->poll= ED_operator_editlattice; From 7685def9af9f69c2ff176a32d586fcbf0d938512 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 21 Oct 2009 10:36:46 +0000 Subject: [PATCH 141/412] Graph Editor: Pivot Modes for Transform It is now possible to choose from 'Bounding Box' (default), '2D-Cursor', and 'Individual Centers' as the pivot point(s) that rotation/scaling is performed around. --- .../editors/space_graph/graph_header.c | 19 +++++++++++++++- .../editors/transform/transform_conversions.c | 7 +++--- .../editors/transform/transform_generics.c | 22 ++++++++++++++++++- source/blender/makesdna/DNA_space_types.h | 2 +- source/blender/makesrna/intern/rna_space.c | 15 +++++++++++++ 5 files changed, 59 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/space_graph/graph_header.c b/source/blender/editors/space_graph/graph_header.c index a52ab8beaca..7385642801a 100644 --- a/source/blender/editors/space_graph/graph_header.c +++ b/source/blender/editors/space_graph/graph_header.c @@ -250,17 +250,30 @@ static void do_graph_buttons(bContext *C, void *arg, int event) ED_area_tag_redraw(CTX_wm_area(C)); } +static char *garound_pup(const bContext *C) +{ + static char string[512]; + char *str = string; + + str += sprintf(str, "%s", "Pivot: %t"); + str += sprintf(str, "%s", "|Bounding Box Center %x0"); + //str += sprintf(str, "%s", "|Median Point %x3"); + str += sprintf(str, "%s", "|2D Cursor %x1"); + str += sprintf(str, "%s", "|Individual Centers %x2"); + return string; +} void graph_header_buttons(const bContext *C, ARegion *ar) { - ScrArea *sa= CTX_wm_area(C); SpaceIpo *sipo= CTX_wm_space_graph(C); + ScrArea *sa= CTX_wm_area(C); uiBlock *block; int xco, yco= 3; block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS); uiBlockSetHandleFunc(block, do_graph_buttons, NULL); + /* standard buttosn in header - viewtype selector and menus */ xco= ED_area_header_standardbuttons(C, block, yco); if ((sa->flag & HEADER_NO_PULLDOWN)==0) { @@ -310,6 +323,10 @@ void graph_header_buttons(const bContext *C, ARegion *ar) } xco += 98; + /* pivot mode setting */ + uiDefIconTextButI(block, ICONTEXTROW,B_REDR, ICON_ROTATE, garound_pup(C), xco,yco,XIC+10,YIC, &(sipo->around), 0, 3.0, 0, 0, "Rotation/Scaling Pivot"); + xco+= XIC+10; + /* copy + paste */ uiBlockBeginAlign(block); uiDefIconButO(block, BUT, "GRAPH_OT_copy", WM_OP_INVOKE_REGION_WIN, ICON_COPYDOWN, xco+=XIC,yco,XIC,YIC, "Copies the selected keyframes from the selected channel(s) to the buffer"); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 2e4111cee40..8998550c6d1 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -3344,6 +3344,7 @@ static void bezt_to_transdata (TransData *td, TransData2D *td2d, AnimData *adt, static void createTransGraphEditData(bContext *C, TransInfo *t) { + SpaceIpo *sipo= CTX_wm_space_graph(C); Scene *scene= CTX_data_scene(C); ARegion *ar= CTX_wm_region(C); View2D *v2d= &ar->v2d; @@ -3375,7 +3376,7 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) /* only side on which mouse is gets transformed */ float xmouse, ymouse; - UI_view2d_region_to_view(&ac.ar->v2d, t->imval[0], t->imval[1], &xmouse, &ymouse); + UI_view2d_region_to_view(v2d, t->imval[0], t->imval[1], &xmouse, &ymouse); side = (xmouse > CFRA) ? 'R' : 'L'; // XXX use t->frame_side } else { @@ -3403,7 +3404,7 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) /* only include BezTriples whose 'keyframe' occurs on the same side of the current frame as mouse */ for (i=0, bezt=fcu->bezt; i < fcu->totvert; i++, bezt++) { if (FrameOnMouseSide(side, bezt->vec[1][0], cfra)) { - if (v2d->around == V3D_LOCAL) { + if (sipo->around == V3D_LOCAL) { /* for local-pivot we only need to count the number of selected handles only, so that centerpoints don't * don't get moved wrong */ @@ -3482,7 +3483,7 @@ static void createTransGraphEditData(bContext *C, TransInfo *t) /* only include main vert if selected */ if (bezt->f2 & SELECT) { /* if scaling around individuals centers, do not include keyframes */ - if (v2d->around != V3D_LOCAL) { + if (sipo->around != V3D_LOCAL) { /* if handles were not selected, store their selection status */ if (!(bezt->f1 & SELECT) && !(bezt->f3 & SELECT)) { if (hdata == NULL) diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 2af92719d19..4b800ba1409 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -952,11 +952,17 @@ int initTransInfo (bContext *C, TransInfo *t, wmOperator *op, wmEvent *event) t->view = &ar->v2d; t->around = sima->around; } + else if(t->spacetype==SPACE_IPO) + { + SpaceIpo *sipo= sa->spacedata.first; + t->view = &ar->v2d; + t->around = sipo->around; + } else { // XXX for now, get View2D from the active region t->view = &ar->v2d; - + // XXX for now, the center point is the midpoint of the data t->around = V3D_CENTER; } @@ -1196,6 +1202,18 @@ void calculateCenterCursor2D(TransInfo *t) calculateCenter2D(t); } +void calculateCenterCursorGraph2D(TransInfo *t) +{ + SpaceIpo *sipo= (SpaceIpo *)t->sa->spacedata.first; + Scene *scene= t->scene; + + /* cursor is combination of current frame, and graph-editor cursor value */ + t->center[0]= (float)(scene->r.cfra); + t->center[1]= sipo->cursorVal; + + calculateCenter2D(t); +} + void calculateCenterMedian(TransInfo *t) { float partial[3] = {0.0f, 0.0f, 0.0f}; @@ -1267,6 +1285,8 @@ void calculateCenter(TransInfo *t) case V3D_CURSOR: if(t->spacetype==SPACE_IMAGE) calculateCenterCursor2D(t); + else if(t->spacetype==SPACE_IPO) + calculateCenterCursorGraph2D(t); else calculateCenterCursor(t); break; diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index 8de701d9109..3a61902e119 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -104,7 +104,7 @@ typedef struct SpaceIpo { int flag; /* settings for Graph editor */ float cursorVal; /* cursor value (y-value, x-value is current frame) */ - int pad; + int around; /* pivot point for transforms */ } SpaceIpo; typedef struct SpaceButs { diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 86d546b3fe0..e46ba16e3d9 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1195,6 +1195,15 @@ static void rna_def_space_graph(BlenderRNA *brna) {SIPO_MODE_ANIMATION, "FCURVES", 0, "F-Curves", ""}, {SIPO_MODE_DRIVERS, "DRIVERS", 0, "Drivers", ""}, {0, NULL, 0, NULL, NULL}}; + + /* this is basically the same as the one for the 3D-View, but with some entries ommitted */ + static EnumPropertyItem gpivot_items[] = { + {V3D_CENTER, "BOUNDING_BOX_CENTER", 0, "Bounding Box Center", ""}, + {V3D_CURSOR, "CURSOR", 0, "2D Cursor", ""}, + {V3D_LOCAL, "INDIVIDUAL_CENTERS", 0, "Individual Centers", ""}, + //{V3D_CENTROID, "MEDIAN_POINT", 0, "Median Point", ""}, + //{V3D_ACTIVE, "ACTIVE_ELEMENT", 0, "Active Element", ""}, + {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "SpaceGraphEditor", "Space"); @@ -1252,6 +1261,12 @@ static void rna_def_space_graph(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Cursor Y-Value", "Graph Editor 2D-Value cursor - Y-Value component"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_GRAPH, NULL); + prop= RNA_def_property(srna, "pivot_point", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "around"); + RNA_def_property_enum_items(prop, gpivot_items); + RNA_def_property_ui_text(prop, "Pivot Point", "Pivot center for rotation/scaling."); + RNA_def_property_update(prop, NC_SPACE|ND_SPACE_GRAPH, NULL); + // TODO... autosnap, dopesheet? } From 2344d62dfbb6f41318ea75fb610d1823baf23cfb Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 21 Oct 2009 10:56:31 +0000 Subject: [PATCH 142/412] Silencing some compiler warnings for mingw * Unused functions * Uninitialised vars --- source/blender/editors/include/ED_physics.h | 5 ++++ source/blender/editors/mesh/editmesh_add.c | 2 +- source/blender/editors/mesh/editmesh_mods.c | 1 - .../blender/editors/physics/particle_edit.c | 4 +-- .../blender/editors/physics/particle_object.c | 2 +- .../blender/editors/physics/physics_intern.h | 4 --- source/blender/editors/screen/screen_ops.c | 2 +- .../editors/space_console/console_ops.c | 3 ++ source/blender/editors/space_node/drawnode.c | 28 ------------------- .../blender/editors/space_outliner/outliner.c | 3 +- .../blender/editors/space_view3d/drawobject.c | 2 +- .../blender/editors/space_view3d/drawvolume.c | 2 +- .../editors/space_view3d/view3d_buttons.c | 25 ++--------------- 13 files changed, 19 insertions(+), 64 deletions(-) diff --git a/source/blender/editors/include/ED_physics.h b/source/blender/editors/include/ED_physics.h index df303d7c9f1..57d0fc271b8 100644 --- a/source/blender/editors/include/ED_physics.h +++ b/source/blender/editors/include/ED_physics.h @@ -32,6 +32,11 @@ struct wmKeyConfig; +/* particle_edit.c */ +int PE_poll(struct bContext *C); +int PE_hair_poll(struct bContext *C); +int PE_poll_3dview(struct bContext *C); + /* operators */ void ED_operatortypes_physics(void); void ED_keymap_physics(struct wmKeyConfig *keyconf); diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index 1514f725705..e7cf03cd230 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -1311,7 +1311,7 @@ static void make_prim_ext(bContext *C, int type, int tot, int seg, int subdiv, float dia, float depth, int ext, int fill) { Object *obedit= CTX_data_edit_object(C); - int newob; + int newob = 0; float mat[4][4]; if(obedit==NULL || obedit->type!=OB_MESH) { diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c index 02fb166a4e1..737f658d46f 100644 --- a/source/blender/editors/mesh/editmesh_mods.c +++ b/source/blender/editors/mesh/editmesh_mods.c @@ -4240,7 +4240,6 @@ void editmesh_align_view_to_selected(Object *obedit, EditMesh *em, wmOperator *o static int smooth_vertex(bContext *C, wmOperator *op) { - ToolSettings *ts= CTX_data_tool_settings(C); Object *obedit= CTX_data_edit_object(C); EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)obedit->data)); EditVert *eve, *eve_mir = NULL; diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index be4df93eff3..9875051e1ad 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -851,7 +851,7 @@ static void pe_deflect_emitter(Scene *scene, Object *ob, PTCacheEdit *edit) ParticleSystemModifierData *psmd; POINT_P; KEY_K; int index; - float *vec, *nor, dvec[3], dot, dist_1st; + float *vec, *nor, dvec[3], dot, dist_1st=0.0f; float hairimat[4][4], hairmat[4][4]; if(edit==NULL || edit->psys==NULL || (pset->flag & PE_DEFLECT_EMITTER)==0 || (edit->psys->flag & PSYS_GLOBAL_HAIR)) @@ -2819,7 +2819,7 @@ static void brush_puff(PEData *data, int point_index) PTCacheEditPoint *point = edit->points + point_index; KEY_K; float mat[4][4], imat[4][4]; - float lastco[3], rootco[3], co[3], nor[3], kco[3], dco[3], fac, length; + float lastco[3], rootco[3], co[3], nor[3], kco[3], dco[3], fac=0.0f, length=0.0f; if(psys && !(psys->flag & PSYS_GLOBAL_HAIR)) { psys_mat_hair_to_global(data->ob, data->dm, psys->part->from, psys->particles + point_index, mat); diff --git a/source/blender/editors/physics/particle_object.c b/source/blender/editors/physics/particle_object.c index 34e2b062e98..d227591739b 100644 --- a/source/blender/editors/physics/particle_object.c +++ b/source/blender/editors/physics/particle_object.c @@ -601,7 +601,7 @@ static void connect_hair(Scene *scene, Object *ob, ParticleSystem *psys) ParticleData *pa; PTCacheEdit *edit; PTCacheEditPoint *point; - PTCacheEditKey *ekey; + PTCacheEditKey *ekey = NULL; HairKey *key; BVHTreeFromMesh bvhtree; BVHTreeNearest nearest; diff --git a/source/blender/editors/physics/physics_intern.h b/source/blender/editors/physics/physics_intern.h index a930d8663dd..babaaefe155 100644 --- a/source/blender/editors/physics/physics_intern.h +++ b/source/blender/editors/physics/physics_intern.h @@ -36,10 +36,6 @@ struct wmOperatorType; /* particle_edit.c */ -int PE_poll(struct bContext *C); -int PE_hair_poll(struct bContext *C); -int PE_poll_3dview(struct bContext *C); - void PARTICLE_OT_select_all_toggle(struct wmOperatorType *ot); void PARTICLE_OT_select_first(struct wmOperatorType *ot); void PARTICLE_OT_select_last(struct wmOperatorType *ot); diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index aadba50bb84..0baadf8d01a 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -2520,7 +2520,7 @@ static ScrArea *find_area_showing_r_result(bContext *C) { wmWindowManager *wm= CTX_wm_manager(C); wmWindow *win; - ScrArea *sa; + ScrArea *sa = NULL; SpaceImage *sima; /* find an imagewindow showing render result */ diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c index ccf7dbff946..a2e11dc6bd5 100644 --- a/source/blender/editors/space_console/console_ops.c +++ b/source/blender/editors/space_console/console_ops.c @@ -135,6 +135,7 @@ static char cursor_char_prev(ConsoleLine *cl) return cl->line[cl->cursor-1]; } +#if 0 // XXX unused static char cursor_char_next(ConsoleLine *cl) { /* assume cursor is clamped */ @@ -159,8 +160,10 @@ static void console_history_debug(const bContext *C) { SpaceConsole *sc= CTX_wm_space_console(C); + console_lb_debug__internal(&sc->history); } +#endif static ConsoleLine *console_lb_add__internal(ListBase *lb, ConsoleLine *from) { diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 42c664520fe..9f60f94defa 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -1077,35 +1077,7 @@ static void node_composit_buts_renderlayers(uiLayout *layout, PointerRNA *ptr) } } -static void node_blur_relative_cb(bContext *C, void *node, void *poin2) -{ - bNode *nodev= node; - NodeBlurData *nbd= nodev->storage; - if(nbd->image_in_width != 0){ - if(nbd->relative){ /* convert absolute values to relative */ - nbd->percentx= (float)(nbd->sizex)/nbd->image_in_width; - nbd->percenty= (float)(nbd->sizey)/nbd->image_in_height; - }else{ /* convert relative values to absolute */ - nbd->sizex= (int)(nbd->percentx*nbd->image_in_width); - nbd->sizey= (int)(nbd->percenty*nbd->image_in_height); - } - } - // allqueue(REDRAWNODE, 0); -} -static void node_blur_update_sizex_cb(bContext *C, void *node, void *poin2) -{ - bNode *nodev= node; - NodeBlurData *nbd= nodev->storage; - nbd->sizex= (int)(nbd->percentx*nbd->image_in_width); -} -static void node_blur_update_sizey_cb(bContext *C, void *node, void *poin2) -{ - bNode *nodev= node; - NodeBlurData *nbd= nodev->storage; - - nbd->sizey= (int)(nbd->percenty*nbd->image_in_height); -} static void node_composit_buts_blur(uiLayout *layout, PointerRNA *ptr) { uiLayout *col; diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 5e67e9372fc..bc203a9c80b 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3771,9 +3771,8 @@ static void do_outliner_drivers_editop(SpaceOops *soops, ListBase *tree, short m } /* only if ID and path were set, should we perform any actions */ - // FIXME: if whole array flag is set, mus add the entire array if (id && path) { - int arraylen, i; + int arraylen; /* array checks */ if (flag & KSP_FLAG_WHOLE_ARRAY) { diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index b4ffc022471..22fd77afd88 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -4157,7 +4157,7 @@ static void draw_ptcache_edit(Scene *scene, View3D *v3d, RegionView3D *rv3d, Obj PTCacheEditKey *key; ParticleEditSettings *pset = PE_settings(scene); int i, k, totpoint = edit->totpoint, timed = pset->flag & PE_FADE_TIME ? pset->fade_frames : 0; - int steps; + int steps=1; char nosel[4], sel[4]; float sel_col[3]; float nosel_col[3]; diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c index a1a59fb0e6a..3c80441b9e6 100644 --- a/source/blender/editors/space_view3d/drawvolume.c +++ b/source/blender/editors/space_view3d/drawvolume.c @@ -217,7 +217,7 @@ void draw_volume(Scene *scene, ARegion *ar, View3D *v3d, Base *base, GPUTexture RegionView3D *rv3d= ar->regiondata; float viewnormal[3]; - int i, j, n, good_index, count = 0; + int i, j, n, good_index; float d, d0, dd, ds; float *points = NULL; int numpoints = 0; diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 0cdf849d453..276ce52c2a9 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -1300,6 +1300,7 @@ static void view3d_panel_preview(bContext *C, ARegion *ar, short cntrl) // VIEW3 } #endif +#if 0 // XXX not used static void delete_sketch_armature(bContext *C, void *arg1, void *arg2) { BIF_deleteSketch(C); @@ -1316,6 +1317,7 @@ static void assign_template_sketch_armature(bContext *C, void *arg1, void *arg2) BIF_setTemplate(C, index); } + static int view3d_panel_bonesketch_spaces_poll(const bContext *C, PanelType *pt) { Object *obedit = CTX_data_edit_object(C); @@ -1432,8 +1434,6 @@ static void view3d_panel_bonesketch_spaces(const bContext *C, Panel *pa) uiBlockEndAlign(block); } -#if 0 // XXX not used - /* op->invoke */ static void redo_cb(bContext *C, void *arg_op, void *arg2) { @@ -1496,26 +1496,7 @@ void view3d_buttons_register(ARegionType *art) strcpy(pt->label, "Grease Pencil"); pt->draw= gpencil_panel_standard; BLI_addtail(&art->paneltypes, pt); -/* - pt= MEM_callocN(sizeof(PanelType), "spacetype view3d panel properties"); - strcpy(pt->idname, "VIEW3D_PT_properties"); - strcpy(pt->label, "View Properties"); - pt->draw= view3d_panel_properties; - BLI_addtail(&art->paneltypes, pt); - - pt= MEM_callocN(sizeof(PanelType), "spacetype view3d panel transform spaces"); - strcpy(pt->idname, "VIEW3D_PT_transform spaces"); - strcpy(pt->label, "Transform Orientations"); - pt->draw= view3d_panel_transform_spaces; - BLI_addtail(&art->paneltypes, pt); - - pt= MEM_callocN(sizeof(PanelType), "spacetype view3d panel bonesketch spaces"); - strcpy(pt->idname, "VIEW3D_PT_bonesketch_spaces"); - strcpy(pt->label, "Bone Sketching"); - pt->draw= view3d_panel_bonesketch_spaces; - pt->poll= view3d_panel_bonesketch_spaces_poll; - BLI_addtail(&art->paneltypes, pt); -*/ + // XXX view3d_panel_preview(C, ar, 0); } From 77ccb5aec1cc53cd6ab85d3cfc5eb3a073b982b0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Oct 2009 14:33:52 +0000 Subject: [PATCH 143/412] shape key operators and buttons for reordering --- release/scripts/ui/buttons_data_mesh.py | 7 +++ source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 1 + .../blender/editors/object/object_shapekey.c | 60 +++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 3c8f655f17a..a11fb27e1f6 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -125,6 +125,13 @@ class DATA_PT_shape_keys(DataButtonsPanel): subcol.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") if kb: + + col.itemS() + + subcol = col.column(align=True) + subcol.item_enumO("object.shape_key_move", "type", 'UP', icon='ICON_TRIA_UP', text="") + subcol.item_enumO("object.shape_key_move", "type", 'DOWN', icon='ICON_TRIA_DOWN', text="") + col.itemS() subcol = col.column(align=True) diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 8c206ce9d4b..93bbc69eff8 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -182,6 +182,7 @@ void OBJECT_OT_shape_key_add(struct wmOperatorType *ot); void OBJECT_OT_shape_key_remove(struct wmOperatorType *ot); void OBJECT_OT_shape_key_clear(struct wmOperatorType *ot); void OBJECT_OT_shape_key_mirror(struct wmOperatorType *ot); +void OBJECT_OT_shape_key_move(struct wmOperatorType *ot); /* object_group.c */ void OBJECT_OT_group_add(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 624825a18ac..9e1811fe158 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -178,6 +178,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_shape_key_remove); WM_operatortype_append(OBJECT_OT_shape_key_clear); WM_operatortype_append(OBJECT_OT_shape_key_mirror); + WM_operatortype_append(OBJECT_OT_shape_key_move); WM_operatortype_append(LATTICE_OT_select_all_toggle); WM_operatortype_append(LATTICE_OT_make_regular); diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 61ea9ab44a0..53970596f55 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -660,3 +660,63 @@ void OBJECT_OT_shape_key_mirror(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } + +static int shape_key_move_exec(bContext *C, wmOperator *op) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + + int type= RNA_enum_get(op->ptr, "type"); + Key *key= ob_get_key(ob); + + if(key) { + KeyBlock *kb, *kb_other; + kb= BLI_findlink(&key->block, ob->shapenr-1); + + if(type==-1) { + /* move back */ + if(kb->prev) { + kb_other= kb->prev; + BLI_remlink(&key->block, kb); + BLI_insertlinkbefore(&key->block, kb_other, kb); + ob->shapenr--; + } + } + else { + /* move next */ + if(kb->next) { + kb_other= kb->next; + BLI_remlink(&key->block, kb); + BLI_insertlinkafter(&key->block, kb_other, kb); + ob->shapenr++; + } + } + } + + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_shape_key_move(wmOperatorType *ot) +{ + static EnumPropertyItem slot_move[] = { + {-1, "UP", 0, "Up", ""}, + {1, "DOWN", 0, "Down", ""}, + {0, NULL, 0, NULL, NULL} + }; + + /* identifiers */ + ot->name= "Move Shape Key"; + ot->idname= "OBJECT_OT_shape_key_move"; + + /* api callbacks */ + ot->poll= shape_key_poll; + ot->exec= shape_key_move_exec; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_enum(ot->srna, "type", slot_move, 0, "Type", ""); +} + From eab11543f3c411940744ab2f447a5c222d5a50dd Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Wed, 21 Oct 2009 15:39:32 +0000 Subject: [PATCH 144/412] Cocoa / Mac: - fix set mouse cursor position in case of multi-display setting. Enables continuous grab to work when blender window is on a secondary display --- intern/ghost/intern/GHOST_SystemCocoa.mm | 27 ++++++++++++++++-------- intern/ghost/intern/GHOST_WindowCocoa.h | 6 ++++++ intern/ghost/intern/GHOST_WindowCocoa.mm | 7 ++++++ 3 files changed, 31 insertions(+), 9 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 3b2c5ea76a3..2d665012bf1 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -797,7 +797,9 @@ GHOST_TSuccess GHOST_SystemCocoa::endFullScreen(void) - +/** + * @note : returns coordinates in Cocoa screen coordinates + */ GHOST_TSuccess GHOST_SystemCocoa::getCursorPosition(GHOST_TInt32& x, GHOST_TInt32& y) const { NSPoint mouseLoc = [NSEvent mouseLocation]; @@ -808,17 +810,24 @@ GHOST_TSuccess GHOST_SystemCocoa::getCursorPosition(GHOST_TInt32& x, GHOST_TInt3 return GHOST_kSuccess; } - +/** + * @note : expect Cocoa screen coordinates + */ GHOST_TSuccess GHOST_SystemCocoa::setCursorPosition(GHOST_TInt32 x, GHOST_TInt32 y) const { float xf=(float)x, yf=(float)y; + GHOST_WindowCocoa* window = (GHOST_WindowCocoa*)m_windowManager->getActiveWindow(); + NSScreen *windowScreen = window->getScreen(); + NSRect screenRect = [windowScreen frame]; + + //Set position relative to current screen + xf -= screenRect.origin.x; + yf -= screenRect.origin.y; //Quartz Display Services uses the old coordinates (top left origin) - yf = [[NSScreen mainScreen] frame].size.height -yf; - - //CGAssociateMouseAndMouseCursorPosition(false); - CGWarpMouseCursorPosition(CGPointMake(xf, yf)); - //CGAssociateMouseAndMouseCursorPosition(true); + yf = screenRect.size.height -yf; + + CGDisplayMoveCursorToPoint([[[windowScreen deviceDescription] objectForKey:@"NSScreenNumber"] unsignedIntValue], CGPointMake(xf, yf)); return GHOST_kSuccess; } @@ -1174,10 +1183,10 @@ GHOST_TSuccess GHOST_SystemCocoa::handleMouseEvent(void *eventPtr) //Switch back to Cocoa coordinates orientation (y=0 at botton,the same as blender internal btw!), and to client coordinates window->getClientBounds(windowBounds); - bounds.m_b = (windowBounds.m_b - windowBounds.m_t) - bounds.m_b; - bounds.m_t = (windowBounds.m_b - windowBounds.m_t) - bounds.m_t; window->screenToClient(bounds.m_l,bounds.m_b, correctedBounds.m_l, correctedBounds.m_t); window->screenToClient(bounds.m_r, bounds.m_t, correctedBounds.m_r, correctedBounds.m_b); + correctedBounds.m_b = (windowBounds.m_b - windowBounds.m_t) - correctedBounds.m_b; + correctedBounds.m_t = (windowBounds.m_b - windowBounds.m_t) - correctedBounds.m_t; //Update accumulation counts window->getCursorGrabAccum(x_accum, y_accum); diff --git a/intern/ghost/intern/GHOST_WindowCocoa.h b/intern/ghost/intern/GHOST_WindowCocoa.h index 5368d0f1e13..e3479ada5d6 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.h +++ b/intern/ghost/intern/GHOST_WindowCocoa.h @@ -169,6 +169,12 @@ public: */ virtual void clientToScreen(GHOST_TInt32 inX, GHOST_TInt32 inY, GHOST_TInt32& outX, GHOST_TInt32& outY) const; + /** + * Gets the screen the window is displayed in + * @return The NSScreen object + */ + NSScreen* getScreen(); + /** * Sets the state of the window (normal, minimized, maximized). * @param state The state of the window. diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index b9a598cb265..0090d8e1038 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -515,6 +515,13 @@ void GHOST_WindowCocoa::clientToScreen(GHOST_TInt32 inX, GHOST_TInt32 inY, GHOST outY = screenCoord.y; } + +NSScreen* GHOST_WindowCocoa::getScreen() +{ + return [m_window screen]; +} + + /** * @note Fullscreen switch is not actual fullscreen with display capture. As this capture removes all OS X window manager features. * Instead, the menu bar and the dock are hidden, and the window is made borderless and enlarged. From 5fb73d8b81fbd1823a6c807714d6b3589e918a3b Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Wed, 21 Oct 2009 17:56:26 +0000 Subject: [PATCH 145/412] Make compiler happy, remove doubtful non init usage. --- source/blender/blenkernel/intern/curve.c | 2 +- source/blender/blenkernel/intern/softbody.c | 2 +- source/blender/editors/mesh/editmesh_loop.c | 4 ++-- source/blender/editors/physics/particle_edit.c | 4 ++-- source/blender/editors/sculpt_paint/paint_vertex.c | 2 +- source/blender/editors/space_text/text_python.c | 2 +- source/blender/editors/space_view3d/view3d_edit.c | 2 +- source/blender/editors/transform/transform_snap.c | 2 +- source/blender/gpu/intern/gpu_buffers.c | 2 +- source/blender/nodes/intern/CMP_util.c | 2 +- source/blender/nodes/intern/TEX_nodes/TEX_output.c | 2 +- source/blender/python/generic/vector.c | 2 +- source/blender/python/intern/bpy_rna.c | 4 ++-- source/blender/render/intern/source/volume_precache.c | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c index 2ce877bd847..c0391bb5406 100644 --- a/source/blender/blenkernel/intern/curve.c +++ b/source/blender/blenkernel/intern/curve.c @@ -1922,7 +1922,7 @@ void makeBevelList(Object *ob) BevPoint *bevp, *bevp2, *bevp1 = NULL, *bevp0; float min, inp, x1, x2, y1, y2; struct bevelsort *sortdata, *sd, *sd1; - int a, b, nr, poly, resolu, len=0; + int a, b, nr, poly, resolu = 0, len = 0; int do_tilt, do_radius; /* this function needs an object, because of tflag and upflag */ diff --git a/source/blender/blenkernel/intern/softbody.c b/source/blender/blenkernel/intern/softbody.c index 089f2a5ebfb..a17b4b0be68 100644 --- a/source/blender/blenkernel/intern/softbody.c +++ b/source/blender/blenkernel/intern/softbody.c @@ -1705,7 +1705,7 @@ static int sb_detect_vertex_collisionCached(float opco[3], float facenormal[3], GHash *hash; GHashIterator *ihash; float nv1[3], nv2[3], nv3[3], nv4[3], edge1[3], edge2[3],d_nvect[3], dv1[3],ve[3],avel[3]={0.0,0.0,0.0}, - vv1[3], vv2[3], vv3[3], vv4[3], coledge[3], mindistedge = 1000.0f, + vv1[3], vv2[3], vv3[3], vv4[3], coledge[3]={0.0f, 0.0f, 0.0f}, mindistedge = 1000.0f, outerforceaccu[3],innerforceaccu[3], facedist,n_mag,force_mag_norm,minx,miny,minz,maxx,maxy,maxz, innerfacethickness = -0.5f, outerfacethickness = 0.2f, diff --git a/source/blender/editors/mesh/editmesh_loop.c b/source/blender/editors/mesh/editmesh_loop.c index 28103828dd4..3dc9c81a213 100644 --- a/source/blender/editors/mesh/editmesh_loop.c +++ b/source/blender/editors/mesh/editmesh_loop.c @@ -207,7 +207,7 @@ void CutEdgeloop(Object *obedit, wmOperator *op, EditMesh *em, int numcuts) EditEdge *nearest=NULL, *eed; float fac; int keys = 0, holdnum=0, selectmode, dist; - short mvalo[2] = {0,0}, mval[2]; + short mvalo[2] = {0, 0}, mval[2] = {0, 0}; short event=0, val, choosing=1, cancel=0, cuthalf = 0, smooth=0; short hasHidden = 0; char msg[128]; @@ -251,7 +251,7 @@ void CutEdgeloop(Object *obedit, wmOperator *op, EditMesh *em, int numcuts) // } #endif } - else PIL_sleep_ms(10); // idle + else PIL_sleep_ms(10); // idle while(qtest()) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index 9875051e1ad..ee1a21db7e5 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -2795,7 +2795,7 @@ static void brush_length(PEData *data, int point_index) PTCacheEdit *edit= data->edit; PTCacheEditPoint *point = edit->points + point_index; KEY_K; - float dvec[3],pvec[3]; + float dvec[3],pvec[3] = {0.0f, 0.0f, 0.0f}; LOOP_KEYS { if(k==0) { @@ -2819,7 +2819,7 @@ static void brush_puff(PEData *data, int point_index) PTCacheEditPoint *point = edit->points + point_index; KEY_K; float mat[4][4], imat[4][4]; - float lastco[3], rootco[3], co[3], nor[3], kco[3], dco[3], fac=0.0f, length=0.0f; + float lastco[3], rootco[3] = {0.0f, 0.0f, 0.0f}, co[3], nor[3], kco[3], dco[3], fac=0.0f, length=0.0f; if(psys && !(psys->flag & PSYS_GLOBAL_HAIR)) { psys_mat_hair_to_global(data->ob, data->dm, psys->part->from, psys->particles + point_index, mat); diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 5dd69cdf030..4f38e1e0c84 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -860,7 +860,7 @@ void sample_wpaint(Scene *scene, ARegion *ar, View3D *v3d, int mode) Object *ob= OBACT; Mesh *me= get_mesh(ob); int index; - short mval[2], sco[2]; + short mval[2] = {0, 0}, sco[2]; if (!me) return; diff --git a/source/blender/editors/space_text/text_python.c b/source/blender/editors/space_text/text_python.c index 4400747a731..92a64720210 100644 --- a/source/blender/editors/space_text/text_python.c +++ b/source/blender/editors/space_text/text_python.c @@ -50,7 +50,7 @@ int text_do_suggest_select(SpaceText *st, ARegion *ar) TextLine *tmp; int l, x, y, w, h, i; int tgti, *top; - short mval[2]; + short mval[2] = {0, 0}; if(!st || !st->text) return 0; if(!texttool_text_is_active(st->text)) return 0; diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index 921ee2deaa4..51f257da432 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -94,7 +94,7 @@ static void view3d_boxview_clip(ScrArea *sa) ARegion *ar; BoundBox *bb = MEM_callocN(sizeof(BoundBox), "clipbb"); float clip[6][4]; - float x1= 0.0f, y1= 0.0f, z1= 0.0f, ofs[3]; + float x1= 0.0f, y1= 0.0f, z1= 0.0f, ofs[3] = {0.0f, 0.0f, 0.0f}; int val; /* create bounding box */ diff --git a/source/blender/editors/transform/transform_snap.c b/source/blender/editors/transform/transform_snap.c index 37cd94c21c5..1d26649fea2 100644 --- a/source/blender/editors/transform/transform_snap.c +++ b/source/blender/editors/transform/transform_snap.c @@ -633,7 +633,7 @@ void CalcSnapGeometry(TransInfo *t, float *vec) DepthPeel *p1, *p2; float *last_p = NULL; float dist = FLT_MAX; - float p[3]; + float p[3] = {0.0f, 0.0f, 0.0f}; depth_peels.first = depth_peels.last = NULL; diff --git a/source/blender/gpu/intern/gpu_buffers.c b/source/blender/gpu/intern/gpu_buffers.c index 2563f7977cc..9e164f46e4c 100644 --- a/source/blender/gpu/intern/gpu_buffers.c +++ b/source/blender/gpu/intern/gpu_buffers.c @@ -1168,7 +1168,7 @@ void GPU_color4_upload( DerivedMesh *dm, unsigned char *data ) void GPU_color_switch( int mode ) { if( mode ) { - if( !GLStates & GPU_BUFFER_COLOR_STATE ) + if( !(GLStates & GPU_BUFFER_COLOR_STATE) ) glEnableClientState( GL_COLOR_ARRAY ); GLStates |= GPU_BUFFER_COLOR_STATE; } diff --git a/source/blender/nodes/intern/CMP_util.c b/source/blender/nodes/intern/CMP_util.c index 175a0a54371..eb32436bf2c 100644 --- a/source/blender/nodes/intern/CMP_util.c +++ b/source/blender/nodes/intern/CMP_util.c @@ -1255,7 +1255,7 @@ CompBuf* qd_downScaledCopy(CompBuf* src, int scale) fbuf = alloc_compbuf(nw, nh, src->type, 1); { int x, y, xx, yy, sx, sy, mx, my; - float colsum[4]; + float colsum[4] = {0.0f, 0.0f, 0.0f, 0.0f}; float fscale = 1.f/(float)(scale*scale); for (y=0; yrect[y*fbuf->x*fbuf->type]; diff --git a/source/blender/nodes/intern/TEX_nodes/TEX_output.c b/source/blender/nodes/intern/TEX_nodes/TEX_output.c index 580b4cde8bf..ab8920e67ad 100644 --- a/source/blender/nodes/intern/TEX_nodes/TEX_output.c +++ b/source/blender/nodes/intern/TEX_nodes/TEX_output.c @@ -118,7 +118,7 @@ static void unique_name(bNode *node) { TexNodeOutput *tno = (TexNodeOutput *)node->storage; char *new_name = 0; - int new_len; + int new_len = 0; int suffix; bNode *i; char *name = tno->name; diff --git a/source/blender/python/generic/vector.c b/source/blender/python/generic/vector.c index 605f45be128..0ce7b83e653 100644 --- a/source/blender/python/generic/vector.c +++ b/source/blender/python/generic/vector.c @@ -1271,7 +1271,7 @@ static PyObject *Vector_getSwizzle(VectorObject * self, void *closure) unchanged. */ static int Vector_setSwizzle(VectorObject * self, PyObject * value, void *closure) { - VectorObject *vecVal; + VectorObject *vecVal = NULL; PyObject *item; size_t listLen; float scalarVal; diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index fb83ae3f205..a60de529e8f 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1590,7 +1590,7 @@ static int foreach_compat_buffer(RawPropertyType raw_type, int attr_signed, cons static PyObject *foreach_getset(BPy_PropertyRNA *self, PyObject *args, int set) { - PyObject *item; + PyObject *item = NULL; int i=0, ok, buffer_is_compat; void *array= NULL; @@ -2677,7 +2677,7 @@ PyObject *BPY_rna_props( void ) static StructRNA *pyrna_struct_as_srna(PyObject *self) { - BPy_StructRNA *py_srna; + BPy_StructRNA *py_srna = NULL; StructRNA *srna; /* ack, PyObject_GetAttrString wont look up this types tp_dict first :/ */ diff --git a/source/blender/render/intern/source/volume_precache.c b/source/blender/render/intern/source/volume_precache.c index 62d7343036a..25645d9cce2 100644 --- a/source/blender/render/intern/source/volume_precache.c +++ b/source/blender/render/intern/source/volume_precache.c @@ -594,7 +594,7 @@ void vol_precache_objectinstance_threads(Render *re, ObjectInstanceRen *obi, Mat ShadeInput shi; ListBase threads; float *bbmin=obi->obr->boundbox[0], *bbmax=obi->obr->boundbox[1]; - int parts[3], totparts; + int parts[3] = {1, 1, 1}, totparts; int caching=1, counter=0; int totthread = re->r.threads; From 180d74ab572830958ecba6541d3cc7c652fa2296 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 21 Oct 2009 20:58:10 +0000 Subject: [PATCH 146/412] UI: List Template tweaks to get it a bit more usable * Mouse wheel now scrolls the list. * Up/down key and alt mouse wheel change the active item. * Adding/removing items from the list now automatically scrolls so the active item is in the view. * Shift mouse wheel changes the size of the list widget to display more items. Lazy replacement for a proper grip. * Shape key list now displays the influence value next to the name, * Also fix the range of the value slider to match the defined min/max range. --- source/blender/editors/include/UI_interface.h | 17 +-- .../editors/interface/interface_handlers.c | 105 ++++++++++++- .../editors/interface/interface_layout.c | 100 +++++++++--- .../editors/interface/interface_regions.c | 3 + .../editors/interface/interface_templates.c | 144 +++++++++--------- source/blender/makesdna/DNA_screen_types.h | 1 + source/blender/makesrna/intern/rna_key.c | 1 + source/blender/makesrna/intern/rna_ui.c | 29 ---- source/blender/makesrna/intern/rna_ui_api.c | 2 - 9 files changed, 263 insertions(+), 139 deletions(-) diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index 53a75662f32..78992769725 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -148,6 +148,7 @@ typedef struct uiLayout uiLayout; #define UI_BUT_LAST_ACTIVE (1<<24) #define UI_BUT_UNDO (1<<25) #define UI_BUT_IMMEDIATE (1<<26) +#define UI_BUT_NO_TOOLTIP (1<<27) #define UI_PANEL_WIDTH 340 #define UI_COMPACT_PANEL_WIDTH 160 @@ -603,16 +604,17 @@ int uiLayoutGetKeepAspect(uiLayout *layout); int uiLayoutGetWidth(uiLayout *layout); float uiLayoutGetScaleX(uiLayout *layout); float uiLayoutGetScaleY(uiLayout *layout); -ListBase *uiLayoutBoxGetList(uiLayout *layout); /* layout specifiers */ uiLayout *uiLayoutRow(uiLayout *layout, int align); uiLayout *uiLayoutColumn(uiLayout *layout, int align); uiLayout *uiLayoutColumnFlow(uiLayout *layout, int number, int align); uiLayout *uiLayoutBox(uiLayout *layout); -uiLayout *uiLayoutListBox(uiLayout *layout); -uiLayout *uiLayoutFree(uiLayout *layout, int align); +uiLayout *uiLayoutListBox(uiLayout *layout, struct PointerRNA *ptr, struct PropertyRNA *prop, + struct PointerRNA *actptr, struct PropertyRNA *actprop); +uiLayout *uiLayoutAbsolute(uiLayout *layout, int align); uiLayout *uiLayoutSplit(uiLayout *layout, float percentage); +uiLayout *uiLayoutOverlap(uiLayout *layout); uiBlock *uiLayoutAbsoluteBlock(uiLayout *layout); @@ -639,14 +641,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C); void uiTemplate_view3d_select_faceselmenu(uiLayout *layout, struct bContext *C); void uiTemplateTextureImage(uiLayout *layout, struct bContext *C, struct Tex *tex); -typedef struct uiListItem { - struct uiListItem *next, *prev; - - struct PointerRNA data; - uiLayout *layout; -} uiListItem; - -ListBase uiTemplateList(uiLayout *layout, struct bContext *C, struct PointerRNA *ptr, char *propname, struct PointerRNA *activeptr, char *activeprop, int rows, int type); +void uiTemplateList(uiLayout *layout, struct bContext *C, struct PointerRNA *ptr, char *propname, struct PointerRNA *activeptr, char *activeprop, int rows, int type); /* items */ void uiItemO(uiLayout *layout, char *name, int icon, char *opname); diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 554e729e0e2..c963848b923 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -1944,8 +1944,11 @@ static int ui_do_but_TEX(bContext *C, uiBlock *block, uiBut *but, uiHandleButton { if(data->state == BUTTON_STATE_HIGHLIGHT) { if(ELEM4(event->type, LEFTMOUSE, PADENTER, RETKEY, EVT_BUT_OPEN) && event->val==KM_PRESS) { - button_activate_state(C, but, BUTTON_STATE_TEXT_EDITING); - return WM_UI_HANDLER_BREAK; + if(but->dt == UI_EMBOSSN && !event->ctrl); + else { + button_activate_state(C, but, BUTTON_STATE_TEXT_EDITING); + return WM_UI_HANDLER_BREAK; + } } } else if(data->state == BUTTON_STATE_TEXT_EDITING) { @@ -3653,15 +3656,35 @@ static uiBut *ui_but_find_mouse_over(ARegion *ar, int x, int y) if(but->flag & UI_HIDDEN) continue; if(ui_but_contains_pt(but, mx, my)) - /* give precedence to already activated buttons */ - if(!butover || (!butover->active && but->active)) - butover= but; + butover= but; } } return butover; } +static uiBut *ui_list_find_mouse_over(ARegion *ar, int x, int y) +{ + uiBlock *block; + uiBut *but; + int mx, my; + + if(!ui_mouse_inside_region(ar, x, y)) + return NULL; + + for(block=ar->uiblocks.first; block; block=block->next) { + mx= x; + my= y; + ui_window_to_block(ar, block, &mx, &my); + + for(but=block->buttons.last; but; but= but->prev) + if(but->type == LISTBOX && ui_but_contains_pt(but, mx, my)) + return but; + } + + return NULL; +} + /* ****************** button state handling **************************/ static int button_modal_state(uiHandleButtonState state) @@ -4028,6 +4051,10 @@ static int ui_handle_button_event(bContext *C, wmEvent *event, uiBut *but) data->cancel= 1; button_activate_state(C, but, BUTTON_STATE_EXIT); } + else if(ui_but_find_mouse_over(ar, event->x, event->y) != but) { + data->cancel= 1; + button_activate_state(C, but, BUTTON_STATE_EXIT); + } else if(event->x!=event->prevx || event->y!=event->prevy) { /* re-enable tooltip on mouse move */ ui_blocks_set_tooltips(ar, 1); @@ -4151,6 +4178,71 @@ static int ui_handle_button_event(bContext *C, wmEvent *event, uiBut *but) return retval; } +static int ui_handle_list_event(bContext *C, wmEvent *event, ARegion *ar) +{ + uiBut *but= ui_list_find_mouse_over(ar, event->x, event->y); + int retval= WM_UI_HANDLER_CONTINUE; + int value, min, max; + + if(but && (event->val == KM_PRESS)) { + Panel *pa= but->block->panel; + + if(ELEM(event->type, UPARROWKEY, DOWNARROWKEY) || + ((ELEM(event->type, WHEELUPMOUSE, WHEELDOWNMOUSE) && event->alt))) { + /* activate up/down the list */ + value= RNA_property_int_get(&but->rnapoin, but->rnaprop); + + if(ELEM(event->type, UPARROWKEY, WHEELUPMOUSE)) + value--; + else + value++; + + if(value < pa->list_scroll) + pa->list_scroll= value; + else if(value >= pa->list_scroll+pa->list_size) + pa->list_scroll= value - pa->list_size + 1; + + RNA_property_int_range(&but->rnapoin, but->rnaprop, &min, &max); + value= CLAMPIS(value, min, max); + + RNA_property_int_set(&but->rnapoin, but->rnaprop, value); + RNA_property_update(C, &but->rnapoin, but->rnaprop); + ED_region_tag_redraw(ar); + + retval= WM_UI_HANDLER_BREAK; + } + else if(ELEM(event->type, WHEELUPMOUSE, WHEELDOWNMOUSE) && event->shift) { + /* silly replacement for proper grip */ + if(pa->list_grip_size == 0) + pa->list_grip_size= pa->list_size; + + if(event->type == WHEELUPMOUSE) + pa->list_grip_size--; + else + pa->list_grip_size++; + + pa->list_grip_size= MAX2(pa->list_grip_size, 1); + + ED_region_tag_redraw(ar); + + retval= WM_UI_HANDLER_BREAK; + } + else if(ELEM(event->type, WHEELUPMOUSE, WHEELDOWNMOUSE)) { + /* list template will clamp */ + if(event->type == WHEELUPMOUSE) + pa->list_scroll--; + else + pa->list_scroll++; + + ED_region_tag_redraw(ar); + + retval= WM_UI_HANDLER_BREAK; + } + } + + return retval; +} + static void ui_handle_button_return_submenu(bContext *C, wmEvent *event, uiBut *but) { uiHandleButtonData *data; @@ -4615,6 +4707,9 @@ static int ui_handler_region(bContext *C, wmEvent *event, void *userdata) if(!but || !button_modal_state(but->active->state)) retval= ui_handler_panel_region(C, event); + if(retval == WM_UI_HANDLER_CONTINUE) + retval= ui_handle_list_event(C, event, ar); + if(retval == WM_UI_HANDLER_CONTINUE) { if(but) retval= ui_handle_button_event(C, event, but); diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index abe40e747c8..10449a1133e 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -98,6 +98,7 @@ typedef enum uiItemType { ITEM_LAYOUT_BOX, ITEM_LAYOUT_ABSOLUTE, ITEM_LAYOUT_SPLIT, + ITEM_LAYOUT_OVERLAP, ITEM_LAYOUT_ROOT #if 0 @@ -148,7 +149,6 @@ typedef struct uiLayoutItemFlow { typedef struct uiLayoutItemBx { uiLayout litem; uiBut *roundbox; - ListBase items; } uiLayoutItemBx; typedef struct uiLayoutItemSplt { @@ -286,6 +286,7 @@ static int ui_layout_local_dir(uiLayout *layout) switch(layout->item.type) { case ITEM_LAYOUT_ROW: case ITEM_LAYOUT_ROOT: + case ITEM_LAYOUT_OVERLAP: return UI_LAYOUT_HORIZONTAL; case ITEM_LAYOUT_COLUMN: case ITEM_LAYOUT_COLUMN_FLOW: @@ -362,7 +363,7 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon int cols= (len >= 20)? 2: 1; int colbuts= len/(2*cols); - uiBlockSetCurLayout(block, uiLayoutFree(layout, 0)); + uiBlockSetCurLayout(block, uiLayoutAbsolute(layout, 0)); unit= UI_UNIT_X*0.75; butw= unit; @@ -390,7 +391,7 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon /* matrix layout */ int row, col; - uiBlockSetCurLayout(block, uiLayoutFree(layout, 1)); + uiBlockSetCurLayout(block, uiLayoutAbsolute(layout, 1)); len= ceil(sqrt(len)); @@ -1869,6 +1870,42 @@ static void ui_litem_layout_split(uiLayout *litem) litem->y= y; } +/* overlap layout */ +static void ui_litem_estimate_overlap(uiLayout *litem) +{ + uiItem *item; + int itemw, itemh; + + litem->w= 0; + litem->h= 0; + + for(item=litem->items.first; item; item=item->next) { + ui_item_size(item, &itemw, &itemh); + + litem->w= MAX2(itemw, litem->w); + litem->h= MAX2(itemh, litem->h); + } +} + +static void ui_litem_layout_overlap(uiLayout *litem) +{ + uiItem *item; + int itemw, itemh, x, y; + + x= litem->x; + y= litem->y; + + for(item=litem->items.first; item; item=item->next) { + ui_item_size(item, &itemw, &itemh); + ui_item_position(item, x, y-itemh, litem->w, itemh); + + litem->h= MAX2(litem->h, itemh); + } + + litem->x= x; + litem->y= y - litem->h; +} + /* layout create functions */ uiLayout *uiLayoutRow(uiLayout *layout, int align) { @@ -1928,7 +1965,7 @@ uiLayout *uiLayoutColumnFlow(uiLayout *layout, int number, int align) return &flow->litem; } -static uiLayout *ui_layout_box(uiLayout *layout, int type) +static uiLayoutItemBx *ui_layout_box(uiLayout *layout, int type) { uiLayoutItemBx *box; @@ -1945,30 +1982,32 @@ static uiLayout *ui_layout_box(uiLayout *layout, int type) box->roundbox= uiDefBut(layout->root->block, type, 0, "", 0, 0, 0, 0, NULL, 0.0, 0.0, 0, 0, ""); - return &box->litem; + return box; } uiLayout *uiLayoutBox(uiLayout *layout) { - return ui_layout_box(layout, ROUNDBOX); + return (uiLayout*)ui_layout_box(layout, ROUNDBOX); } -uiLayout *uiLayoutListBox(uiLayout *layout) +uiLayout *uiLayoutListBox(uiLayout *layout, PointerRNA *ptr, PropertyRNA *prop, PointerRNA *actptr, PropertyRNA *actprop) { - return ui_layout_box(layout, LISTBOX); + uiLayoutItemBx *box= ui_layout_box(layout, LISTBOX); + uiBut *but= box->roundbox; + + but->rnasearchpoin= *ptr; + but->rnasearchprop= prop; + but->rnapoin= *actptr; + but->rnaprop= actprop; + + return (uiLayout*)box; } -ListBase *uiLayoutBoxGetList(uiLayout *layout) -{ - uiLayoutItemBx *box= (uiLayoutItemBx*)layout; - return &box->items; -} - -uiLayout *uiLayoutFree(uiLayout *layout, int align) +uiLayout *uiLayoutAbsolute(uiLayout *layout, int align) { uiLayout *litem; - litem= MEM_callocN(sizeof(uiLayout), "uiLayoutFree"); + litem= MEM_callocN(sizeof(uiLayout), "uiLayoutAbsolute"); litem->item.type= ITEM_LAYOUT_ABSOLUTE; litem->root= layout->root; litem->align= align; @@ -1987,11 +2026,28 @@ uiBlock *uiLayoutAbsoluteBlock(uiLayout *layout) uiBlock *block; block= uiLayoutGetBlock(layout); - uiLayoutFree(layout, 0); + uiLayoutAbsolute(layout, 0); return block; } +uiLayout *uiLayoutOverlap(uiLayout *layout) +{ + uiLayout *litem; + + litem= MEM_callocN(sizeof(uiLayout), "uiLayoutOverlap"); + litem->item.type= ITEM_LAYOUT_OVERLAP; + litem->root= layout->root; + litem->active= 1; + litem->enabled= 1; + litem->context= layout->context; + BLI_addtail(&layout->items, litem); + + uiBlockSetCurLayout(layout->root->block, litem); + + return litem; +} + uiLayout *uiLayoutSplit(uiLayout *layout, float percentage) { uiLayoutItemSplt *split; @@ -2149,6 +2205,9 @@ static void ui_item_estimate(uiItem *item) case ITEM_LAYOUT_SPLIT: ui_litem_estimate_split(litem); break; + case ITEM_LAYOUT_OVERLAP: + ui_litem_estimate_overlap(litem); + break; default: break; } @@ -2169,6 +2228,7 @@ static void ui_item_align(uiLayout *litem, int nr) bitem->but->alignnr= nr; } else if(item->type == ITEM_LAYOUT_ABSOLUTE); + else if(item->type == ITEM_LAYOUT_OVERLAP); else if(item->type == ITEM_LAYOUT_BOX) { box= (uiLayoutItemBx*)item; box->roundbox->alignnr= nr; @@ -2234,6 +2294,9 @@ static void ui_item_layout(uiItem *item) case ITEM_LAYOUT_SPLIT: ui_litem_layout_split(litem); break; + case ITEM_LAYOUT_OVERLAP: + ui_litem_layout_overlap(litem); + break; default: break; } @@ -2268,9 +2331,6 @@ static void ui_layout_free(uiLayout *layout) ui_layout_free((uiLayout*)item); } - if(layout->item.type == ITEM_LAYOUT_BOX) - BLI_freelistN(&((uiLayoutItemBx*)layout)->items); - MEM_freeN(layout); } diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index c837599baf3..e3b7d173961 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -357,6 +357,9 @@ ARegion *ui_tooltip_create(bContext *C, ARegion *butregion, uiBut *but) float x1f, x2f, y1f, y2f; int x1, x2, y1, y2, winx, winy, ofsx, ofsy, w, h, a; + if(but->flag & UI_BUT_NO_TOOLTIP) + return NULL; + /* create tooltip data */ data= MEM_callocN(sizeof(uiTooltipData), "uiTooltipData"); diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index d5d94262ad8..960574ae8a9 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -1925,25 +1925,6 @@ void uiTemplateLayers(uiLayout *layout, PointerRNA *ptr, char *propname) /************************* List Template **************************/ -#if 0 -static void list_item_add(ListBase *lb, ListBase *itemlb, uiLayout *layout, PointerRNA *data) -{ - CollectionPointerLink *link; - uiListItem *item; - - /* add to list to store in box */ - item= MEM_callocN(sizeof(uiListItem), "uiListItem"); - item->layout= layout; - item->data= *data; - BLI_addtail(itemlb, item); - - /* add to list to return from function */ - link= MEM_callocN(sizeof(CollectionPointerLink), "uiTemplateList return"); - RNA_pointer_create(NULL, &RNA_UIListItem, item, &link->ptr); - BLI_addtail(lb, link); -} -#endif - static int list_item_icon_get(bContext *C, PointerRNA *itemptr, int rnaicon) { ID *id= NULL; @@ -1974,60 +1955,102 @@ static int list_item_icon_get(bContext *C, PointerRNA *itemptr, int rnaicon) return rnaicon; } -ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *propname, PointerRNA *activeptr, char *activepropname, int rows, int listtype) +static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, PointerRNA *itemptr, int i, int rnaicon) +{ + uiBlock *block= uiLayoutGetBlock(layout); + uiLayout *split; + char *name, *namebuf; + int icon; + + /* retrieve icon and name */ + icon= list_item_icon_get(C, itemptr, rnaicon); + if(!icon || icon == ICON_DOT) + icon= 0; + + namebuf= RNA_struct_name_get_alloc(itemptr, NULL, 0); + name= (namebuf)? namebuf: ""; + + /* hardcoded types */ + uiBlockSetEmboss(block, UI_EMBOSSN); + + if(itemptr->type == &RNA_MeshTextureFaceLayer || itemptr->type == &RNA_MeshColorLayer) { + uiItemL(layout, name, icon); + uiDefIconButR(block, TOG, 0, ICON_SCENE, 0, 0, UI_UNIT_X, UI_UNIT_Y, itemptr, "active_render", 0, 0, 0, 0, 0, NULL); + } + else if(itemptr->type == &RNA_MaterialTextureSlot) { + uiItemL(layout, name, icon); + uiDefButR(block, OPTION, 0, "", 0, 0, UI_UNIT_X, UI_UNIT_Y, ptr, "use_textures", i, 0, 0, 0, 0, NULL); + } + else if(itemptr->type == &RNA_ShapeKey) { + split= uiLayoutSplit(layout, 0.75f); + + uiItemL(split, name, icon); + + if(i == 0) uiItemL(split, "", 0); + else uiItemR(split, "", 0, itemptr, "value", 0); + //uiItemR(split, "", ICON_MUTE_IPO_OFF, itemptr, "mute", 0); + } + else + uiItemL(layout, name, icon); + + uiBlockSetEmboss(block, UI_EMBOSS); + + /* free name */ + if(namebuf) + MEM_freeN(namebuf); +} + +void uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *propname, PointerRNA *activeptr, char *activepropname, int rows, int listtype) { //Scene *scene= CTX_data_scene(C); PropertyRNA *prop= NULL, *activeprop; PropertyType type, activetype; StructRNA *ptype; - uiLayout *box, *row, *col, *subrow; + uiLayout *box, *row, *col, *subrow, *overlap; uiBlock *block; uiBut *but; Panel *pa; - ListBase lb, *itemlb; char *name, str[32]; int rnaicon=0, icon=0, i= 0, activei= 0, len= 0, items, found, min, max; - lb.first= lb.last= NULL; - /* validate arguments */ block= uiLayoutGetBlock(layout); pa= block->panel; if(!pa) { printf("uiTemplateList: only works inside a panel.\n"); - return lb; + return; } if(!activeptr->data) - return lb; + return; if(ptr->data) { prop= RNA_struct_find_property(ptr, propname); if(!prop) { printf("uiTemplateList: property not found: %s\n", propname); - return lb; + return; } } activeprop= RNA_struct_find_property(activeptr, activepropname); if(!activeprop) { printf("uiTemplateList: property not found: %s\n", activepropname); - return lb; + return; } if(prop) { type= RNA_property_type(prop); if(type != PROP_COLLECTION) { printf("uiTemplateList: expected collection property.\n"); - return lb; + return; } } activetype= RNA_property_type(activeprop); if(activetype != PROP_INT) { printf("uiTemplateList: expected integer property.\n"); - return lb; + return; } /* get icon */ @@ -2040,12 +2063,10 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr activei= RNA_property_int_get(activeptr, activeprop); if(listtype == 'i') { - box= uiLayoutListBox(layout); + box= uiLayoutListBox(layout, ptr, prop, activeptr, activeprop); col= uiLayoutColumn(box, 1); row= uiLayoutRow(col, 0); - itemlb= uiLayoutBoxGetList(box); - if(ptr->data && prop) { /* create list items */ RNA_PROP_BEGIN(ptr, itemptr, prop) { @@ -2054,9 +2075,8 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr row= uiLayoutRow(col, 0); icon= list_item_icon_get(C, &itemptr, rnaicon); - uiDefIconButR(block, LISTROW, 0, icon, 0,0,UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); - - //list_item_add(&lb, itemlb, uiLayoutRow(row, 1), &itemptr); + but= uiDefIconButR(block, LISTROW, 0, icon, 0,0,UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); + uiButSetFlag(but, UI_BUT_NO_TOOLTIP); i++; } @@ -2082,9 +2102,6 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr if(name) MEM_freeN(name); - - /* add to list to return */ - //list_item_add(&lb, itemlb, uiLayoutRow(row, 1), &itemptr); } i++; @@ -2106,9 +2123,11 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr /* default rows */ if(rows == 0) rows= 5; + if(pa->list_grip_size != 0) + rows= pa->list_grip_size; /* layout */ - box= uiLayoutListBox(layout); + box= uiLayoutListBox(layout, ptr, prop, activeptr, activeprop); row= uiLayoutRow(box, 0); col = uiLayoutColumn(row, 1); @@ -2119,44 +2138,28 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr len= RNA_property_collection_length(ptr, prop); items= CLAMPIS(len, rows, MAX2(rows, 5)); + /* if list length changes and active is out of view, scroll to it */ + if(pa->list_last_len != len) + if((activei < pa->list_scroll || activei >= pa->list_scroll+items)) + pa->list_scroll= activei; + pa->list_scroll= MIN2(pa->list_scroll, len-items); pa->list_scroll= MAX2(pa->list_scroll, 0); - - itemlb= uiLayoutBoxGetList(box); + pa->list_size= items; + pa->list_last_len= len; if(ptr->data && prop) { /* create list items */ RNA_PROP_BEGIN(ptr, itemptr, prop) { if(i >= pa->list_scroll && ilist_scroll+items) { - name= RNA_struct_name_get_alloc(&itemptr, NULL, 0); + overlap= uiLayoutOverlap(col); - subrow= uiLayoutRow(col, 0); - - icon= list_item_icon_get(C, &itemptr, rnaicon); + subrow= uiLayoutRow(overlap, 0); + but= uiDefButR(block, LISTROW, 0, "", 0,0, UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); + uiButSetFlag(but, UI_BUT_NO_TOOLTIP); - /* create button */ - if(!icon || icon == ICON_DOT) - but= uiDefButR(block, LISTROW, 0, (name)? name: "", 0,0,UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); - else - but= uiDefIconTextButR(block, LISTROW, 0, icon, (name)? name: "", 0,0,UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); - uiButSetFlag(but, UI_ICON_LEFT|UI_TEXT_LEFT); - - /* XXX hardcoded */ - if(itemptr.type == &RNA_MeshTextureFaceLayer || itemptr.type == &RNA_MeshColorLayer) { - uiBlockSetEmboss(block, UI_EMBOSSN); - uiDefIconButR(block, TOG, 0, ICON_SCENE, 0, 0, UI_UNIT_X, UI_UNIT_Y, &itemptr, "active_render", 0, 0, 0, 0, 0, NULL); - uiBlockSetEmboss(block, UI_EMBOSS); - } - else if (itemptr.type == &RNA_MaterialTextureSlot) { - uiDefButR(block, OPTION, 0, "", 0, 0, UI_UNIT_X, UI_UNIT_Y, ptr, "use_textures", i, 0, 0, 0, 0, NULL); - } - /* XXX - end hardcoded cruft */ - - if(name) - MEM_freeN(name); - - /* add to list to return */ - //list_item_add(&lb, itemlb, subrow, &itemptr); + subrow= uiLayoutRow(overlap, 0); + list_item_row(C, subrow, ptr, &itemptr, i, rnaicon); } i++; @@ -2177,9 +2180,6 @@ ListBase uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *pr uiDefButI(block, SCROLL, 0, "", 0,0,UI_UNIT_X*0.75,UI_UNIT_Y*items, &pa->list_scroll, 0, len-items, items, 0, ""); } } - - /* return items in list */ - return lb; } /************************* Operator Search Template **************************/ diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h index e51da0c0818..b091a0529e7 100644 --- a/source/blender/makesdna/DNA_screen_types.h +++ b/source/blender/makesdna/DNA_screen_types.h @@ -106,6 +106,7 @@ typedef struct Panel { /* the part from uiBlock that needs saved in file */ void *activedata; /* runtime for panel manipulation */ int list_scroll, list_size; + int list_last_len, list_grip_size; char list_search[64]; } Panel; diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index 9daf1155149..433e5a7e4a3 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -391,6 +391,7 @@ static void rna_def_keyblock(BlenderRNA *brna) prop= RNA_def_property(srna, "value", PROP_FLOAT, PROP_FACTOR); RNA_def_property_float_sdna(prop, NULL, "curval"); RNA_def_property_float_funcs(prop, NULL, "rna_ShapeKey_value_set", "rna_ShapeKey_value_range"); + RNA_def_property_ui_range(prop, -10.0f, 10.0f, 10, 3); RNA_def_property_ui_text(prop, "Value", "Value of shape key at the current frame."); RNA_def_property_update(prop, 0, "rna_Key_update_data"); diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 303511a2dca..0a661e9aaf3 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -489,20 +489,6 @@ static void rna_UILayout_scale_y_set(PointerRNA *ptr, float value) uiLayoutSetScaleY(ptr->data, value); } -static PointerRNA rna_UIListItem_layout_get(PointerRNA *ptr) -{ - uiListItem *item= (uiListItem*)ptr->data; - PointerRNA newptr; - RNA_pointer_create(NULL, &RNA_UILayout, item->layout, &newptr); - return newptr; -} - -static PointerRNA rna_UIListItem_data_get(PointerRNA *ptr) -{ - uiListItem *item= (uiListItem*)ptr->data; - return item->data; -} - #else // RNA_RUNTIME static void rna_def_ui_layout(BlenderRNA *brna) @@ -566,21 +552,6 @@ static void rna_def_ui_layout(BlenderRNA *brna) RNA_def_property_float_funcs(prop, "rna_UILayout_scale_y_get", "rna_UILayout_scale_y_set", NULL); RNA_api_ui_layout(srna); - - /* list item */ - - srna= RNA_def_struct(brna, "UIListItem", NULL); - RNA_def_struct_ui_text(srna, "UI List Item", "User interface list."); - - prop= RNA_def_property(srna, "layout", PROP_POINTER, PROP_NONE); - RNA_def_property_struct_type(prop, "UILayout"); - RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_pointer_funcs(prop, "rna_UIListItem_layout_get", NULL, NULL); - - prop= RNA_def_property(srna, "data", PROP_POINTER, PROP_NONE); - RNA_def_property_struct_type(prop, "AnyType"); - RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_pointer_funcs(prop, "rna_UIListItem_data_get", NULL, NULL); } static void rna_def_panel(BlenderRNA *brna) diff --git a/source/blender/makesrna/intern/rna_ui_api.c b/source/blender/makesrna/intern/rna_ui_api.c index cce8fb0fef7..ad4557f76a1 100644 --- a/source/blender/makesrna/intern/rna_ui_api.c +++ b/source/blender/makesrna/intern/rna_ui_api.c @@ -335,8 +335,6 @@ void RNA_api_ui_layout(StructRNA *srna) RNA_def_property_flag(parm, PROP_REQUIRED); parm= RNA_def_int(func, "rows", 5, 0, INT_MAX, "", "Number of rows to display.", 0, INT_MAX); parm= RNA_def_enum(func, "type", list_type_items, 0, "Type", "Type of list to use."); - parm= RNA_def_collection(func, "items", 0, "", "Items visible in the list."); - RNA_def_function_return(func, parm); func= RNA_def_function(srna, "template_running_jobs", "uiTemplateRunningJobs"); RNA_def_function_flag(func, FUNC_USE_CONTEXT); From 64d4ae639b6f8a6d0ccb2024c58566cac1ad7547 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 21 Oct 2009 23:05:54 +0000 Subject: [PATCH 147/412] Bugfix #19707: Save Over (Ctrl+W/ Ctrl+S) anoyiance Using standard 'save' now pops up a filebrowser when the file hasn't been saved before instead of just assuming that the file should be called "untitled.blend" and dumped in the last used directory. --- source/blender/windowmanager/intern/wm_operators.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 7a97ebf0de7..e37b6e919c6 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1321,8 +1321,12 @@ static int wm_save_mainfile_invoke(bContext *C, wmOperator *op, wmEvent *event) BLI_strncpy(name, G.sce, FILE_MAX); untitled(name); RNA_string_set(op->ptr, "path", name); - uiPupMenuSaveOver(C, op, name); - + + if (G.save_over) + uiPupMenuSaveOver(C, op, name); + else + WM_event_add_fileselect(C, op); + return OPERATOR_RUNNING_MODAL; } From c825a9aeaa26de781789296edd894a5aacff20bb Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 22 Oct 2009 02:14:11 +0000 Subject: [PATCH 148/412] Bugfix #19703: Axis Angle wont work * Transform code was not properly fixed to work with the new way that axis-angle data was stored * The order of the args for the conversion function when switching rotation representations was wrong, causing problems when switching from quaternion to axis angle (i.e. these occurred for newly created bones). --- source/blender/blenkernel/intern/armature.c | 2 +- source/blender/editors/transform/transform.c | 51 ++++++++----------- source/blender/editors/transform/transform.h | 6 +++ .../editors/transform/transform_conversions.c | 50 +++++++++++++++--- 4 files changed, 71 insertions(+), 38 deletions(-) diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 9894cc85784..504450e0334 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -1286,7 +1286,7 @@ void armature_mat_pose_to_delta(float delta_mat[][4], float pose_mat[][4], float * - the result should be that the rotations given in the provided pointers have had conversions * applied (as appropriate), such that the rotation of the element hasn't 'visually' changed */ -void BKE_rotMode_change_values (float quat[4], float eul[3], float *axis, float angle[3], short oldMode, short newMode) +void BKE_rotMode_change_values (float quat[4], float eul[3], float axis[3], float *angle, short oldMode, short newMode) { /* check if any change - if so, need to convert data */ if (newMode > 0) { /* to euler */ diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 3df74020fab..3b001bff12f 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -1634,7 +1634,7 @@ static void protectedRotateBits(short protectflag, float *eul, float *oldeul) /* this function only does the delta rotation */ /* axis-angle is usually internally stored as quats... */ -static void protectedAxisAngleBits(short protectflag, float *quat, float *oldquat) +static void protectedAxisAngleBits(short protectflag, float axis[3], float *angle, float oldAxis[3], float oldAngle) { /* check that protection flags are set */ if ((protectflag & (OB_LOCK_ROTX|OB_LOCK_ROTY|OB_LOCK_ROTZ|OB_LOCK_ROTW)) == 0) @@ -1643,21 +1643,20 @@ static void protectedAxisAngleBits(short protectflag, float *quat, float *oldqua if (protectflag & OB_LOCK_ROT4D) { /* axis-angle getting limited as 4D entities that they are... */ if (protectflag & OB_LOCK_ROTW) - quat[0]= oldquat[0]; + *angle= oldAngle; if (protectflag & OB_LOCK_ROTX) - quat[1]= oldquat[1]; + axis[0]= oldAxis[0]; if (protectflag & OB_LOCK_ROTY) - quat[2]= oldquat[2]; + axis[1]= oldAxis[1]; if (protectflag & OB_LOCK_ROTZ) - quat[3]= oldquat[3]; + axis[2]= oldAxis[2]; } else { /* axis-angle get limited with euler... */ - float eul[3], oldeul[3], quat1[4]; + float eul[3], oldeul[3]; - QUATCOPY(quat1, quat); - AxisAngleToEulO(quat+1, quat[0], eul, EULER_ORDER_DEFAULT); - AxisAngleToEulO(oldquat+1, oldquat[0], oldeul, EULER_ORDER_DEFAULT); + AxisAngleToEulO(axis, *angle, eul, EULER_ORDER_DEFAULT); + AxisAngleToEulO(oldAxis, oldAngle, oldeul, EULER_ORDER_DEFAULT); if (protectflag & OB_LOCK_ROTX) eul[0]= oldeul[0]; @@ -1666,12 +1665,12 @@ static void protectedAxisAngleBits(short protectflag, float *quat, float *oldqua if (protectflag & OB_LOCK_ROTZ) eul[2]= oldeul[2]; - EulOToAxisAngle(eul, EULER_ORDER_DEFAULT, quat+1, quat); + EulOToAxisAngle(eul, EULER_ORDER_DEFAULT, axis, angle); /* when converting to axis-angle, we need a special exception for the case when there is no axis */ - if (IS_EQ(quat[1], quat[2]) && IS_EQ(quat[2], quat[3])) { + if (IS_EQ(axis[0], axis[1]) && IS_EQ(axis[1], axis[2])) { /* for now, rotate around y-axis then (so that it simply becomes the roll) */ - quat[2]= 1.0f; + axis[1]= 1.0f; } } } @@ -2690,22 +2689,18 @@ static void ElementRotation(TransInfo *t, TransData *td, float mat[3][3], short } else if (td->rotOrder == ROT_MODE_AXISANGLE) { /* calculate effect based on quats */ - float iquat[4]; + float iquat[4], tquat[4]; - /* td->ext->(i)quat is in axis-angle form, not quats! */ - AxisAngleToQuat(iquat, &td->ext->iquat[1], td->ext->iquat[0]); + AxisAngleToQuat(iquat, td->ext->irotAxis, td->ext->irotAngle); Mat3MulSerie(fmat, td->mtx, mat, td->smtx, 0, 0, 0, 0, 0); Mat3ToQuat(fmat, quat); // Actual transform + QuatMul(tquat, quat, iquat); - QuatMul(td->ext->quat, quat, iquat); - - /* make temp copy (since stored in same place) */ - QUATCOPY(quat, td->ext->quat); // this is just a 4d vector copying macro - QuatToAxisAngle(quat, &td->ext->quat[1], &td->ext->quat[0]); + QuatToAxisAngle(tquat, td->ext->rotAxis, td->ext->rotAngle); /* this function works on end result */ - protectedAxisAngleBits(td->protectflag, td->ext->quat, td->ext->iquat); + protectedAxisAngleBits(td->protectflag, td->ext->rotAxis, td->ext->rotAngle, td->ext->irotAxis, td->ext->irotAngle); } else { float eulmat[3][3]; @@ -2762,22 +2757,18 @@ static void ElementRotation(TransInfo *t, TransData *td, float mat[3][3], short } else if (td->rotOrder == ROT_MODE_AXISANGLE) { /* calculate effect based on quats */ - float iquat[4]; + float iquat[4], tquat[4]; - /* td->ext->(i)quat is in axis-angle form, not quats! */ - AxisAngleToQuat(iquat, &td->ext->iquat[1], td->ext->iquat[0]); + AxisAngleToQuat(iquat, td->ext->irotAxis, td->ext->irotAngle); Mat3MulSerie(fmat, td->mtx, mat, td->smtx, 0, 0, 0, 0, 0); Mat3ToQuat(fmat, quat); // Actual transform + QuatMul(tquat, quat, iquat); - QuatMul(td->ext->quat, quat, iquat); - - /* make temp copy (since stored in same place) */ - QUATCOPY(quat, td->ext->quat); // this is just a 4d vector copying macro - QuatToAxisAngle(quat, &td->ext->quat[1], &td->ext->quat[0]); + QuatToAxisAngle(quat, td->ext->rotAxis, td->ext->rotAngle); /* this function works on end result */ - protectedAxisAngleBits(td->protectflag, td->ext->quat, td->ext->iquat); + protectedAxisAngleBits(td->protectflag, td->ext->rotAxis, td->ext->rotAngle, td->ext->irotAxis, td->ext->irotAngle); } else { float obmat[3][3]; diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index 46e5dad3e05..819cb95d948 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -125,12 +125,18 @@ typedef struct TransCon { typedef struct TransDataExtension { float drot[3]; /* Initial object drot */ + float drotAngle; /* Initial object drotAngle */ + float drotAxis[3]; /* Initial object drotAxis */ float dquat[4]; /* Initial object dquat */ float dsize[3]; /* Initial object dsize */ float *rot; /* Rotation of the data to transform (Faculative) */ float irot[3]; /* Initial rotation */ float *quat; /* Rotation quaternion of the data to transform (Faculative) */ float iquat[4]; /* Initial rotation quaternion */ + float *rotAngle; /* Rotation angle of the data to transform (Faculative) */ + float irotAngle; /* Initial rotation angle */ + float *rotAxis; /* Rotation axis of the data to transform (Faculative) */ + float irotAxis[4]; /* Initial rotation axis */ float *size; /* Size of the data to transform (Faculative) */ float isize[3]; /* Initial size */ float obmat[4][4]; /* Object matrix */ diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 8998550c6d1..71ce97b2d48 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -575,12 +575,25 @@ static void add_pose_transdata(TransInfo *t, bPoseChannel *pchan, Object *ob, Tr if (pchan->rotmode > 0) { td->ext->rot= pchan->eul; + td->ext->rotAxis= NULL; + td->ext->rotAngle= NULL; td->ext->quat= NULL; VECCOPY(td->ext->irot, pchan->eul); } + else if (pchan->rotmode == ROT_MODE_AXISANGLE) { + td->ext->rot= NULL; + td->ext->rotAxis= pchan->rotAxis; + td->ext->rotAngle= &pchan->rotAngle; + td->ext->quat= NULL; + + td->ext->irotAngle= pchan->rotAngle; + VECCOPY(td->ext->irotAxis, pchan->rotAxis); + } else { td->ext->rot= NULL; + td->ext->rotAxis= NULL; + td->ext->rotAngle= NULL; td->ext->quat= pchan->quat; QUATCOPY(td->ext->iquat, pchan->quat); @@ -4195,14 +4208,37 @@ static void ObjectToTransData(bContext *C, TransInfo *t, TransData *td, Object * td->loc = ob->loc; VECCOPY(td->iloc, td->loc); - - td->ext->rot = ob->rot; - VECCOPY(td->ext->irot, ob->rot); - VECCOPY(td->ext->drot, ob->drot); - td->ext->quat = ob->quat; - QUATCOPY(td->ext->iquat, ob->quat); - QUATCOPY(td->ext->dquat, ob->dquat); + if (ob->rotmode > 0) { + td->ext->rot= ob->rot; + td->ext->rotAxis= NULL; + td->ext->rotAngle= NULL; + td->ext->quat= NULL; + + VECCOPY(td->ext->irot, ob->rot); + VECCOPY(td->ext->drot, ob->drot); + } + else if (ob->rotmode == ROT_MODE_AXISANGLE) { + td->ext->rot= NULL; + td->ext->rotAxis= ob->rotAxis; + td->ext->rotAngle= &ob->rotAngle; + td->ext->quat= NULL; + + td->ext->irotAngle= ob->rotAngle; + VECCOPY(td->ext->irotAxis, ob->rotAxis); + td->ext->drotAngle= ob->drotAngle; + VECCOPY(td->ext->drotAxis, ob->drotAxis); + } + else { + td->ext->rot= NULL; + td->ext->rotAxis= NULL; + td->ext->rotAngle= NULL; + td->ext->quat= ob->quat; + + QUATCOPY(td->ext->iquat, ob->quat); + QUATCOPY(td->ext->dquat, ob->dquat); + } + td->rotOrder=ob->rotmode; td->ext->size = ob->size; VECCOPY(td->ext->isize, ob->size); From 359a3d1811f05590de165f04a292b862d0f43b3f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 22 Oct 2009 03:12:44 +0000 Subject: [PATCH 149/412] Two fixes: * RNA Path fixing when renaming data now checks if a path in question cannot be resolved before trying to fix it. This should reduce the number of misindentified cases I hope. * Silenced compiler warnings for EdgeSlide stuff that mingw was making about unused variables. --- source/blender/blenkernel/intern/anim_sys.c | 83 +++++++++++++------- source/blender/editors/transform/transform.c | 24 ++---- 2 files changed, 61 insertions(+), 46 deletions(-) diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c index 7088081d66f..61e754ffbec 100644 --- a/source/blender/blenkernel/intern/anim_sys.c +++ b/source/blender/blenkernel/intern/anim_sys.c @@ -238,6 +238,19 @@ void BKE_animdata_make_local(AnimData *adt) /* Path Validation -------------------------------------------- */ +/* Check if a given RNA Path is valid, by tracing it from the given ID, and seeing if we can resolve it */ +static short check_rna_path_is_valid (ID *owner_id, char *path) +{ + PointerRNA id_ptr, ptr; + PropertyRNA *prop=NULL; + + /* make initial RNA pointer to start resolving from */ + RNA_id_pointer_create(owner_id, &id_ptr); + + /* try to resolve */ + return RNA_path_resolve(&id_ptr, path, &ptr, &prop); +} + /* Check if some given RNA Path needs fixing - free the given path and set a new one as appropriate * NOTE: we assume that oldName and newName have [" "] padding around them */ @@ -249,39 +262,49 @@ static char *rna_path_rename_fix (ID *owner_id, char *prefix, char *oldName, cha int oldNameLen= strlen(oldName); /* only start fixing the path if the prefix and oldName feature in the path, - * and prefix occurs immediately before oldName (the +2 should take care of any [") + * and prefix occurs immediately before oldName */ if ( (prefixPtr && oldNamePtr) && (prefixPtr+prefixLen == oldNamePtr) ) { - DynStr *ds= BLI_dynstr_new(); - char *postfixPtr= oldNamePtr+oldNameLen; - char *newPath = NULL; - char oldChar; - - /* add the part of the string that goes up to the start of the prefix */ - if (prefixPtr > oldpath) { - oldChar= prefixPtr[0]; - prefixPtr[0]= 0; - BLI_dynstr_append(ds, oldpath); - prefixPtr[0]= oldChar; + /* if we haven't aren't able to resolve the path now, try again after fixing it */ + if (check_rna_path_is_valid(owner_id, oldpath) == 0) { + DynStr *ds= BLI_dynstr_new(); + char *postfixPtr= oldNamePtr+oldNameLen; + char *newPath = NULL; + char oldChar; + + /* add the part of the string that goes up to the start of the prefix */ + if (prefixPtr > oldpath) { + oldChar= prefixPtr[0]; + prefixPtr[0]= 0; + BLI_dynstr_append(ds, oldpath); + prefixPtr[0]= oldChar; + } + + /* add the prefix */ + BLI_dynstr_append(ds, prefix); + + /* add the new name (complete with brackets) */ + BLI_dynstr_append(ds, newName); + + /* add the postfix */ + BLI_dynstr_append(ds, postfixPtr); + + /* create new path, and cleanup old data */ + newPath= BLI_dynstr_get_cstring(ds); + BLI_dynstr_free(ds); + + /* check if the new path will solve our problems */ + // TODO: will need to check whether this step really helps in practice + if (check_rna_path_is_valid(owner_id, newPath)) { + /* free the old path, and return the new one, since we've solved the issues */ + MEM_freeN(oldpath); + return newPath; + } + else { + /* still couldn't resolve the path... so, might as well just leave it alone */ + MEM_freeN(newPath); + } } - - /* add the prefix */ - BLI_dynstr_append(ds, prefix); - - /* add the new name (complete with brackets) */ - BLI_dynstr_append(ds, newName); - - /* add the postfix */ - BLI_dynstr_append(ds, postfixPtr); - - /* create new path, and cleanup old data */ - newPath= BLI_dynstr_get_cstring(ds); - BLI_dynstr_free(ds); - - MEM_freeN(oldpath); - - /* return the new path */ - return newPath; } /* the old path doesn't need to be changed */ diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 3b001bff12f..7497cd73055 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -3942,10 +3942,8 @@ static int createSlideVerts(TransInfo *t) LinkNode *edgelist = NULL, *vertlist=NULL, *look; GHash *vertgh; TransDataSlideVert *tempsv; - float perc = 0, percp = 0,vertdist; // XXX, projectMat[4][4]; - float shiftlabda= 0.0f,len = 0.0f; - int i, j, numsel, numadded=0, timesthrough = 0, vertsel=0, prop=1, cancel = 0,flip=0; - int wasshift = 0; + float vertdist; // XXX, projectMat[4][4]; + int i, j, numsel, numadded=0, timesthrough = 0, vertsel=0; /* UV correction vars */ GHash **uvarray= NULL; SlideData *sld = MEM_callocN(sizeof(*sld), "sld"); @@ -3956,8 +3954,7 @@ static int createSlideVerts(TransInfo *t) float projectMat[4][4]; float start[3] = {0.0f, 0.0f, 0.0f}, end[3] = {0.0f, 0.0f, 0.0f}; float vec[3]; - //short mval[2], mvalo[2]; - float labda = 0.0f, totvec=0.0; + float totvec=0.0; if (!v3d) { /*ok, let's try to survive this*/ @@ -3965,8 +3962,7 @@ static int createSlideVerts(TransInfo *t) } else { view3d_get_object_project_mat(v3d, t->obedit, projectMat); } - - //mvalo[0] = -1; mvalo[1] = -1; + numsel =0; // Get number of selected edges and clear some flags @@ -4468,23 +4464,20 @@ int doEdgeSlide(TransInfo *t, float perc) Mesh *me= t->obedit->data; EditMesh *em = me->edit_mesh; SlideData *sld = t->customData; - EditEdge *first=NULL,*last=NULL, *temp = NULL; EditVert *ev, *nearest = sld->nearest; EditVert *centerVert, *upVert, *downVert; - LinkNode *edgelist = sld->edgelist, *vertlist=sld->vertlist, *look; + LinkNode *vertlist=sld->vertlist, *look; GHash *vertgh = sld->vhash; TransDataSlideVert *tempsv; - float shiftlabda= 0.0f,len = 0.0f; - int i = 0, numadded=0, timesthrough = 0, vertsel=0, prop=1, cancel = 0,flip=0; - int wasshift = 0; + float len = 0.0f; + int prop=1, flip=0; /* UV correction vars */ GHash **uvarray= sld->uvhash; int uvlay_tot= CustomData_number_of_layers(&em->fdata, CD_MTFACE); int uvlay_idx; - TransDataSlideUv *slideuvs=sld->slideuv, *suv=sld->slideuv, *suv_last=NULL; + TransDataSlideUv *suv=sld->slideuv; float uv_tmp[2]; LinkNode *fuv_link; - float labda = 0.0f; len = 0.0f; @@ -4579,7 +4572,6 @@ int doEdgeSlide(TransInfo *t, float perc) int EdgeSlide(TransInfo *t, short mval[2]) { - TransData *td = t->data; char str[50]; float final; From c9092a6738d8f1dbf9fc76330d506771af4f90bb Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 22 Oct 2009 06:09:43 +0000 Subject: [PATCH 150/412] Patch [#19708] Add Menu Item: View3d -> View -> View Global/Local by Jeff Doyle (nfz). --- release/scripts/ui/space_view3d.py | 1 + 1 file changed, 1 insertion(+) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 689250d0c45..ad2597d6c24 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -110,6 +110,7 @@ class VIEW3D_MT_view(bpy.types.Menu): layout.itemS() + layout.itemO("view3d.localview", text="View Global/Local") layout.itemO("view3d.view_center") layout.itemO("view3d.view_all") From 5777c624a54c4d834ec755a92079b504f04035e8 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 22 Oct 2009 09:07:19 +0000 Subject: [PATCH 151/412] Animation Editors: Menu Tweaks * Submenus displaying the options available for certain operators now will now show the hotkey for the operator on the menu entries. * Added an option for mirroring keyframes in the Graph Editor which makes use of the new cursor --- .../blender/editors/animation/anim_filter.c | 11 +++- .../editors/animation/keyframes_edit.c | 15 +++++ .../editors/include/ED_keyframes_edit.h | 1 + .../editors/space_action/action_header.c | 63 ++----------------- .../blender/editors/space_graph/graph_draw.c | 5 +- .../blender/editors/space_graph/graph_edit.c | 7 ++- .../editors/space_graph/graph_header.c | 54 ++-------------- .../editors/space_graph/graph_intern.h | 1 + source/blender/editors/space_nla/nla_header.c | 14 +---- 9 files changed, 48 insertions(+), 123 deletions(-) diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index 7414d2fdf85..8c4f10fb222 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -373,9 +373,18 @@ short ANIM_animdata_get_context (const bContext *C, bAnimContext *ac) * * - id: ID block which should have an AnimData pointer following it immediately, to use * - adtOk: line or block of code to execute for AnimData-blocks case (usually ANIMDATA_ADD_ANIMDATA) - * - nlaOk: line or block of code to execute for NLA case + * - nlaOk: line or block of code to execute for NLA tracks+strips case * - driversOk: line or block of code to execute for Drivers case * - keysOk: line or block of code for Keyframes case + * + * The checks for the various cases are as follows: + * 0) top level: checks for animdata and also that all the F-Curves for the block will be visible + * 1) animdata check: for filtering animdata blocks only + * 2A) nla tracks: include animdata block's data as there are NLA tracks+strips there + * 2B) actions to convert to nla: include animdata block's data as there is an action that can be + * converted to a new NLA strip, and the filtering options allow this + * 3) drivers: include drivers from animdata block (for Drivers mode in Graph Editor) + * 4) normal keyframes: only when there is an active action */ #define ANIMDATA_FILTER_CASES(id, adtOk, nlaOk, driversOk, keysOk) \ {\ diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c index 3b2830e9045..7373edb6841 100644 --- a/source/blender/editors/animation/keyframes_edit.c +++ b/source/blender/editors/animation/keyframes_edit.c @@ -669,6 +669,19 @@ static short mirror_bezier_marker(BeztEditData *bed, BezTriple *bezt) return 0; } +static short mirror_bezier_value(BeztEditData *bed, BezTriple *bezt) +{ + float diff; + + /* value to mirror over is stored in the custom data -> first float value slot */ + if (bezt->f2 & SELECT) { + diff= (bed->f1 - bezt->vec[1][1]); + bezt->vec[1][1]= (bed->f1 + diff); + } + + return 0; +} + /* Note: for markers case, need to set global vars (eww...) */ // calchandles_fcurve BeztEditFunc ANIM_editkeyframes_mirror(short type) @@ -682,6 +695,8 @@ BeztEditFunc ANIM_editkeyframes_mirror(short type) return mirror_bezier_xaxis; case MIRROR_KEYS_MARKER: /* mirror over marker */ return mirror_bezier_marker; + case MIRROR_KEYS_VALUE: /* mirror over given value */ + return mirror_bezier_value; default: /* just in case */ return mirror_bezier_yaxis; break; diff --git a/source/blender/editors/include/ED_keyframes_edit.h b/source/blender/editors/include/ED_keyframes_edit.h index 57a6c5fc773..4a0a3ee24db 100644 --- a/source/blender/editors/include/ED_keyframes_edit.h +++ b/source/blender/editors/include/ED_keyframes_edit.h @@ -82,6 +82,7 @@ typedef enum eEditKeyframes_Mirror { MIRROR_KEYS_YAXIS, MIRROR_KEYS_XAXIS, MIRROR_KEYS_MARKER, + MIRROR_KEYS_VALUE, } eEditKeyframes_Mirror; /* ************************************************ */ diff --git a/source/blender/editors/space_action/action_header.c b/source/blender/editors/space_action/action_header.c index aaf4b51c75e..6ec106077f7 100644 --- a/source/blender/editors/space_action/action_header.c +++ b/source/blender/editors/space_action/action_header.c @@ -167,62 +167,11 @@ static void act_edit_transformmenu(bContext *C, uiLayout *layout, void *arg_unus uiItemEnumO(layout, "Scale", 0, "TFM_OT_transform", "mode", TFM_TIME_SCALE); } -static void act_edit_snapmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_snap", "type", ACTKEYS_SNAP_CFRA); - uiItemEnumO(layout, NULL, 0, "ACT_OT_snap", "type", ACTKEYS_SNAP_NEAREST_FRAME); - uiItemEnumO(layout, NULL, 0, "ACT_OT_snap", "type", ACTKEYS_SNAP_NEAREST_SECOND); - uiItemEnumO(layout, NULL, 0, "ACT_OT_snap", "type", ACTKEYS_SNAP_NEAREST_MARKER); -} - -static void act_edit_mirrormenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_mirror", "type", ACTKEYS_MIRROR_CFRA); - uiItemEnumO(layout, NULL, 0, "ACT_OT_mirror", "type", ACTKEYS_MIRROR_YAXIS); - uiItemEnumO(layout, NULL, 0, "ACT_OT_mirror", "type", ACTKEYS_MIRROR_XAXIS); - uiItemEnumO(layout, NULL, 0, "ACT_OT_mirror", "type", ACTKEYS_MIRROR_MARKER); -} - -static void act_edit_keytypesmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_keyframe_type", "type", BEZT_KEYTYPE_KEYFRAME); - uiItemEnumO(layout, NULL, 0, "ACT_OT_keyframe_type", "type", BEZT_KEYTYPE_BREAKDOWN); - uiItemEnumO(layout, NULL, 0, "ACT_OT_keyframe_type", "type", BEZT_KEYTYPE_EXTREME); -} - -static void act_edit_handlesmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_handle_type", "type", HD_FREE); - uiItemEnumO(layout, NULL, 0, "ACT_OT_handle_type", "type", HD_AUTO); - uiItemEnumO(layout, NULL, 0, "ACT_OT_handle_type", "type", HD_VECT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_handle_type", "type", HD_ALIGN); - uiItemEnumO(layout, NULL, 0, "ACT_OT_handle_type", "type", HD_AUTO_ANIM); // xxx? -} - -static void act_edit_ipomenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_interpolation_type", "type", BEZT_IPO_CONST); - uiItemEnumO(layout, NULL, 0, "ACT_OT_interpolation_type", "type", BEZT_IPO_LIN); - uiItemEnumO(layout, NULL, 0, "ACT_OT_interpolation_type", "type", BEZT_IPO_BEZ); -} - -static void act_edit_expomenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_extrapolation_type", "type", FCURVE_EXTRAPOLATE_CONSTANT); - uiItemEnumO(layout, NULL, 0, "ACT_OT_extrapolation_type", "type", FCURVE_EXTRAPOLATE_LINEAR); -} - static void act_editmenu(bContext *C, uiLayout *layout, void *arg_unused) { uiItemMenuF(layout, "Transform", 0, act_edit_transformmenu, NULL); - uiItemMenuF(layout, "Snap", 0, act_edit_snapmenu, NULL); - uiItemMenuF(layout, "Mirror", 0, act_edit_mirrormenu, NULL); + uiItemMenuEnumO(layout, "Snap", 0, "ACT_OT_snap", "type"); + uiItemMenuEnumO(layout, "Mirror", 0, "ACT_OT_mirror", "type"); uiItemS(layout); @@ -235,10 +184,10 @@ static void act_editmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); - uiItemMenuF(layout, "Keyframe Type", 0, act_edit_keytypesmenu, NULL); - uiItemMenuF(layout, "Handle Type", 0, act_edit_handlesmenu, NULL); - uiItemMenuF(layout, "Interpolation Mode", 0, act_edit_ipomenu, NULL); - uiItemMenuF(layout, "Extrapolation Mode", 0, act_edit_expomenu, NULL); + uiItemMenuEnumO(layout, "Keyframe Type", 0, "ACT_OT_keyframe_type", "type"); + uiItemMenuEnumO(layout, "Handle Type", 0, "ACT_OT_handle_type", "type"); + uiItemMenuEnumO(layout, "Interpolation Type", 0, "ACT_OT_interpolation_type", "type"); + uiItemMenuEnumO(layout, "Extrapolation Type", 0, "ACT_OT_extrapolation_type", "type"); uiItemS(layout); diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 5baa2372e0d..052c5c4a743 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -87,9 +87,6 @@ #include "UI_resources.h" #include "UI_view2d.h" -/* XXX */ -extern void gl_round_box(int mode, float minx, float miny, float maxx, float maxy, float rad); - /* *************************** */ /* Utility Drawing Defines */ @@ -881,7 +878,7 @@ void graph_draw_curves (bAnimContext *ac, SpaceIpo *sipo, ARegion *ar, View2DGri draw_fcurve_vertices(sipo, ar, fcu); } else { - /* samples: should we only draw two indicators at either end as indicators? */ + /* samples: only draw two indicators at either end as indicators */ draw_fcurve_samples(sipo, ar, fcu); } } diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index bcd57aa233f..a87cc54fad9 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1551,7 +1551,8 @@ void GRAPH_OT_snap (wmOperatorType *ot) /* defines for mirror keyframes tool */ EnumPropertyItem prop_graphkeys_mirror_types[] = { - {GRAPHKEYS_MIRROR_CFRA, "CFRA", 0, "By Times over Current frame", ""}, + {GRAPHKEYS_MIRROR_CFRA, "CFRA", 0, "By Times over Current Frame", ""}, + {GRAPHKEYS_MIRROR_VALUE, "VALUE", 0, "By Values over Cursor Value", ""}, {GRAPHKEYS_MIRROR_YAXIS, "YAXIS", 0, "By Times over Time=0", ""}, {GRAPHKEYS_MIRROR_XAXIS, "XAXIS", 0, "By Values over Value=0", ""}, {GRAPHKEYS_MIRROR_MARKER, "MARKER", 0, "By Times over First Selected Marker", ""}, @@ -1594,6 +1595,10 @@ static void mirror_graph_keys(bAnimContext *ac, short mode) else return; } + else if (mode == GRAPHKEYS_MIRROR_VALUE) { + SpaceIpo *sipo= (SpaceIpo *)ac->sa->spacedata.first; + bed.f1= (sipo) ? sipo->cursorVal : 0.0f; + } /* filter data */ filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CURVEVISIBLE| ANIMFILTER_FOREDIT | ANIMFILTER_CURVESONLY); diff --git a/source/blender/editors/space_graph/graph_header.c b/source/blender/editors/space_graph/graph_header.c index 7385642801a..63c95b18e2d 100644 --- a/source/blender/editors/space_graph/graph_header.c +++ b/source/blender/editors/space_graph/graph_header.c @@ -159,55 +159,11 @@ static void graph_edit_transformmenu(bContext *C, uiLayout *layout, void *arg_un uiItemEnumO(layout, "Scale", 0, "TFM_OT_transform", "mode", TFM_TIME_SCALE); } -static void graph_edit_snapmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_CFRA); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_VALUE); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_FRAME); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_SECOND); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_snap", "type", GRAPHKEYS_SNAP_NEAREST_MARKER); -} - -static void graph_edit_mirrormenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_mirror", "type", GRAPHKEYS_MIRROR_CFRA); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_mirror", "type", GRAPHKEYS_MIRROR_YAXIS); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_mirror", "type", GRAPHKEYS_MIRROR_XAXIS); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_mirror", "type", GRAPHKEYS_MIRROR_MARKER); -} - -static void graph_edit_handlesmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_handle_type", "type", HD_FREE); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_handle_type", "type", HD_AUTO); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_handle_type", "type", HD_VECT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_handle_type", "type", HD_ALIGN); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_handle_type", "type", HD_AUTO_ANIM); // xxx? -} - -static void graph_edit_ipomenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_interpolation_type", "type", BEZT_IPO_CONST); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_interpolation_type", "type", BEZT_IPO_LIN); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_interpolation_type", "type", BEZT_IPO_BEZ); -} - -static void graph_edit_expomenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiLayoutSetOperatorContext(layout, WM_OP_EXEC_DEFAULT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_extrapolation_type", "type", FCURVE_EXTRAPOLATE_CONSTANT); - uiItemEnumO(layout, NULL, 0, "GRAPH_OT_extrapolation_type", "type", FCURVE_EXTRAPOLATE_LINEAR); -} - static void graph_editmenu(bContext *C, uiLayout *layout, void *arg_unused) { uiItemMenuF(layout, "Transform", 0, graph_edit_transformmenu, NULL); - uiItemMenuF(layout, "Snap", 0, graph_edit_snapmenu, NULL); - uiItemMenuF(layout, "Mirror", 0, graph_edit_mirrormenu, NULL); + uiItemMenuEnumO(layout, "Snap", 0, "GRAPH_OT_snap", "type"); + uiItemMenuEnumO(layout, "Mirror", 0, "GRAPH_OT_mirror", "type"); uiItemS(layout); @@ -221,9 +177,9 @@ static void graph_editmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); - uiItemMenuF(layout, "Handle Type", 0, graph_edit_handlesmenu, NULL); - uiItemMenuF(layout, "Interpolation Mode", 0, graph_edit_ipomenu, NULL); - uiItemMenuF(layout, "Extrapolation Mode", 0, graph_edit_expomenu, NULL); + uiItemMenuEnumO(layout, "Handle Type", 0, "GRAPH_OT_handle_type", "type"); + uiItemMenuEnumO(layout, "Interpolation Mode", 0, "GRAPH_OT_interpolation_type", "type"); + uiItemMenuEnumO(layout, "Extrapolation Mode", 0, "GRAPH_OT_extrapolation_type", "type"); uiItemS(layout); diff --git a/source/blender/editors/space_graph/graph_intern.h b/source/blender/editors/space_graph/graph_intern.h index f03c9ece262..1e0f66751f0 100644 --- a/source/blender/editors/space_graph/graph_intern.h +++ b/source/blender/editors/space_graph/graph_intern.h @@ -130,6 +130,7 @@ enum { GRAPHKEYS_MIRROR_YAXIS, GRAPHKEYS_MIRROR_XAXIS, GRAPHKEYS_MIRROR_MARKER, + GRAPHKEYS_MIRROR_VALUE, } eGraphKeys_Mirror_Mode; /* ----------- */ diff --git a/source/blender/editors/space_nla/nla_header.c b/source/blender/editors/space_nla/nla_header.c index be0b4381f00..a2524a1b2dc 100644 --- a/source/blender/editors/space_nla/nla_header.c +++ b/source/blender/editors/space_nla/nla_header.c @@ -139,20 +139,12 @@ static void nla_edit_transformmenu(bContext *C, uiLayout *layout, void *arg_unus uiItemEnumO(layout, "Scale", 0, "TFM_OT_transform", "mode", TFM_TIME_SCALE); } -static void nla_edit_snapmenu(bContext *C, uiLayout *layout, void *arg_unused) -{ - uiItemEnumO(layout, NULL, 0, "NLA_OT_snap", "type", NLAEDIT_SNAP_CFRA); - uiItemEnumO(layout, NULL, 0, "NLA_OT_snap", "type", NLAEDIT_SNAP_NEAREST_FRAME); - uiItemEnumO(layout, NULL, 0, "NLA_OT_snap", "type", NLAEDIT_SNAP_NEAREST_SECOND); - uiItemEnumO(layout, NULL, 0, "NLA_OT_snap", "type", NLAEDIT_SNAP_NEAREST_MARKER); -} - static void nla_editmenu(bContext *C, uiLayout *layout, void *arg_unused) { Scene *scene= CTX_data_scene(C); uiItemMenuF(layout, "Transform", 0, nla_edit_transformmenu, NULL); - uiItemMenuF(layout, "Snap", 0, nla_edit_snapmenu, NULL); + uiItemMenuEnumO(layout, "Snap", 0, "NLA_OT_snap", "type"); uiItemS(layout); @@ -248,13 +240,13 @@ void nla_header_buttons(const bContext *C, ARegion *ar) /* auto-snap selector */ if (snla->flag & SNLA_DRAWTIME) { uiDefButS(block, MENU, B_REDR, - "Auto-Snap Keyframes %t|No Time-Snap %x0|Nearest Second %x2|Nearest Marker %x3", + "Auto-Snap %t|No Time-Snap %x0|Nearest Second %x2|Nearest Marker %x3", xco,yco,90,YIC, &snla->autosnap, 0, 1, 0, 0, "Auto-snapping mode for times when transforming"); } else { uiDefButS(block, MENU, B_REDR, - "Auto-Snap Keyframes %t|No Time-Snap %x0|Nearest Frame %x2|Nearest Marker %x3", + "Auto-Snap %t|No Time-Snap %x0|Nearest Frame %x2|Nearest Marker %x3", xco,yco,90,YIC, &snla->autosnap, 0, 1, 0, 0, "Auto-snapping mode for times when transforming"); } From ddf965b63acd86912d9d1d12633ccd1822198d48 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 22 Oct 2009 09:15:56 +0000 Subject: [PATCH 152/412] Graph Editor: Jump to Keyframes Operator now also sets the cursor value --- source/blender/editors/animation/keyframes_edit.c | 9 +++++++-- source/blender/editors/space_graph/graph_edit.c | 6 +++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c index 7373edb6841..7a167cb6c0c 100644 --- a/source/blender/editors/animation/keyframes_edit.c +++ b/source/blender/editors/animation/keyframes_edit.c @@ -521,9 +521,14 @@ short bezt_calc_average(BeztEditData *bed, BezTriple *bezt) { /* only if selected */ if (bezt->f2 & SELECT) { - /* store average time in float (only do rounding at last step */ + /* store average time in float 1 (only do rounding at last step) */ bed->f1 += bezt->vec[1][0]; + /* store average value in float 2 (only do rounding at last step) + * - this isn't always needed, but some operators may also require this + */ + bed->f2 += bezt->vec[1][1]; + /* increment number of items */ bed->i1++; } @@ -682,7 +687,7 @@ static short mirror_bezier_value(BeztEditData *bed, BezTriple *bezt) return 0; } -/* Note: for markers case, need to set global vars (eww...) */ +/* Note: for markers and 'value', the values to use must be supplied as the first float value */ // calchandles_fcurve BeztEditFunc ANIM_editkeyframes_mirror(short type) { diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index a87cc54fad9..442b44bb482 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1419,10 +1419,14 @@ static int graphkeys_framejump_exec(bContext *C, wmOperator *op) BLI_freelistN(&anim_data); - /* set the new current frame value, based on the average time */ + /* set the new current frame and cursor values, based on the average time and value */ if (bed.i1) { + SpaceIpo *sipo= ac.sa->spacedata.first; Scene *scene= ac.scene; + + /* take the average values, rounding to the nearest int for the current frame */ CFRA= (int)floor((bed.f1 / bed.i1) + 0.5f); + sipo->cursorVal= bed.f2 / (float)bed.i1; } /* set notifier that things have changed */ From 06d57fdae05bad63438d360204c890d7ab81387a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 22 Oct 2009 09:31:07 +0000 Subject: [PATCH 153/412] Shape Keys Internal change to not apply the shape keys to the Mesh vertex coordinates, but rather use it as part of the derivedmesh/displist evaluation. This only has one practical advantage right now, which is that you can now make a linked duplicate and pin it's shape key to a different shape than the first object. Further, this makes shape keys correctly fit into the modifier stack design, which will help implement some other features later. Also it means the mesh vertex coordinates are now really the orco's. --- source/blender/blenkernel/BKE_blender.h | 2 +- source/blender/blenkernel/BKE_curve.h | 3 + source/blender/blenkernel/BKE_key.h | 5 +- source/blender/blenkernel/BKE_mesh.h | 1 - .../blender/blenkernel/intern/DerivedMesh.c | 9 +- source/blender/blenkernel/intern/curve.c | 61 ++- source/blender/blenkernel/intern/displist.c | 25 +- source/blender/blenkernel/intern/key.c | 487 ++++++++---------- source/blender/blenkernel/intern/lattice.c | 5 +- source/blender/blenkernel/intern/mesh.c | 72 +-- source/blender/blenloader/intern/readfile.c | 66 ++- source/blender/editors/mesh/editmesh.c | 10 +- source/blender/editors/mesh/meshtools.c | 59 +-- .../blender/editors/object/object_modifier.c | 8 +- .../blender/editors/object/object_shapekey.c | 5 +- source/blender/makesrna/intern/rna_object.c | 9 - .../gameengine/Converter/BL_ShapeDeformer.cpp | 19 +- .../gameengine/Converter/BL_SkinDeformer.cpp | 21 +- source/gameengine/Converter/BL_SkinDeformer.h | 1 + 19 files changed, 424 insertions(+), 444 deletions(-) diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index e91e434b97d..ebeec31c984 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -43,7 +43,7 @@ struct bContext; struct ReportList; #define BLENDER_VERSION 250 -#define BLENDER_SUBVERSION 6 +#define BLENDER_SUBVERSION 7 #define BLENDER_MINVERSION 250 #define BLENDER_MINSUBVERSION 0 diff --git a/source/blender/blenkernel/BKE_curve.h b/source/blender/blenkernel/BKE_curve.h index 78a2f13a7cc..2d1bec09dbf 100644 --- a/source/blender/blenkernel/BKE_curve.h +++ b/source/blender/blenkernel/BKE_curve.h @@ -92,6 +92,9 @@ void switchdirectionNurb( struct Nurb *nu); float (*curve_getVertexCos(struct Curve *cu, struct ListBase *lb, int *numVerts_r))[3]; void curve_applyVertexCos(struct Curve *cu, struct ListBase *lb, float (*vertexCos)[3]); +float (*curve_getKeyVertexCos(struct Curve *cu, struct ListBase *lb, float *key))[3]; +void curve_applyKeyVertexTilts(struct Curve *cu, struct ListBase *lb, float *key); + /* nurb checks if they can be drawn, also clamp order func */ int check_valid_nurb_u( struct Nurb *nu); int check_valid_nurb_v( struct Nurb *nu); diff --git a/source/blender/blenkernel/BKE_key.h b/source/blender/blenkernel/BKE_key.h index 1b4cbc1cf2a..59d7f99112e 100644 --- a/source/blender/blenkernel/BKE_key.h +++ b/source/blender/blenkernel/BKE_key.h @@ -56,10 +56,7 @@ void key_curve_position_weights(float t, float *data, int type); void key_curve_tangent_weights(float t, float *data, int type); void key_curve_normal_weights(float t, float *data, int type); -/* only exported to curve.c! */ -void cp_cu_key(struct Curve *cu, struct KeyBlock *kb, int start, int end); - -int do_ob_key(struct Scene *scene, struct Object *ob); +float *do_ob_key(struct Scene *scene, struct Object *ob); struct Key *ob_get_key(struct Object *ob); struct KeyBlock *ob_get_keyblock(struct Object *ob); diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h index d2f5e0faa0f..09c1ab9f7d6 100644 --- a/source/blender/blenkernel/BKE_mesh.h +++ b/source/blender/blenkernel/BKE_mesh.h @@ -92,7 +92,6 @@ void mesh_calc_normals(struct MVert *mverts, int numVerts, struct MFace *mfaces, /* Return a newly MEM_malloc'd array of all the mesh vertex locations * (_numVerts_r_ may be NULL) */ float (*mesh_getVertexCos(struct Mesh *me, int *numVerts_r))[3]; -float (*mesh_getRefKeyCos(struct Mesh *me, int *numVerts_r))[3]; /* map from uv vertex to face (for select linked, stitch, uv suburf) */ diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c index a8ea83a45fc..59cf786af1e 100644 --- a/source/blender/blenkernel/intern/DerivedMesh.c +++ b/source/blender/blenkernel/intern/DerivedMesh.c @@ -1755,8 +1755,8 @@ static void mesh_calc_modifiers(Scene *scene, Object *ob, float (*inputVertexCos *final_r = NULL; if(useDeform) { - if(useDeform > 0 && do_ob_key(scene, ob)) /* shape key makes deform verts */ - deformedVerts = mesh_getVertexCos(me, &numVerts); + if(useDeform > 0) + deformedVerts= (float(*)[3])do_ob_key(scene, ob); /* shape key makes deform verts */ else if(inputVertexCos) deformedVerts = inputVertexCos; @@ -1800,7 +1800,7 @@ static void mesh_calc_modifiers(Scene *scene, Object *ob, float (*inputVertexCos if(inputVertexCos) deformedVerts = inputVertexCos; else - deformedVerts = mesh_getRefKeyCos(me, &numVerts); + deformedVerts = mesh_getVertexCos(me, &numVerts); } @@ -2031,6 +2031,9 @@ static void editmesh_calc_modifiers(Scene *scene, Object *ob, EditMesh *em, Deri datamasks = modifiers_calcDataMasks(ob, md, dataMask, required_mode); + /* doesn't work, shape keys are not updated from editmesh. + deformedVerts= (float(*)[3])do_ob_key(scene, ob); */ + curr = datamasks; for(i = 0; md; i++, md = md->next, curr = curr->next) { ModifierTypeInfo *mti = modifierType_getInfo(md->type); diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c index c0391bb5406..f31f4cd9753 100644 --- a/source/blender/blenkernel/intern/curve.c +++ b/source/blender/blenkernel/intern/curve.c @@ -1099,8 +1099,7 @@ float *make_orco_curve(Scene *scene, Object *ob) float *fp, *coord_array; int remakeDisp = 0; - if (!(cu->flag&CU_UV_ORCO) && cu->key && cu->key->refkey) { - cp_cu_key(cu, cu->key->refkey, 0, count_curveverts(&cu->nurb)); + if (!(cu->flag&CU_UV_ORCO) && cu->key && cu->key->block.first) { makeDispListCurveTypes(scene, ob, 1); remakeDisp = 1; } @@ -2905,6 +2904,64 @@ void curve_applyVertexCos(Curve *cu, ListBase *lb, float (*vertexCos)[3]) } } +float (*curve_getKeyVertexCos(Curve *cu, ListBase *lb, float *key))[3] +{ + int i, numVerts; + float *co, (*cos)[3] = MEM_mallocN(sizeof(*cos)*numVerts, "cu_vcos"); + Nurb *nu; + + co = cos[0]; + for (nu=lb->first; nu; nu=nu->next) { + if (nu->type == CU_BEZIER) { + BezTriple *bezt = nu->bezt; + + for (i=0; ipntsu; i++,bezt++) { + VECCOPY(co, key); co+=3; key+=3; + VECCOPY(co, key); co+=3; key+=3; + VECCOPY(co, key); co+=3; key+=3; + key++; /* skip tilt */ + } + } + else { + BPoint *bp = nu->bp; + + for(i=0; ipntsu*nu->pntsv; i++,bp++) { + VECCOPY(co, key); co+=3; key+=3; + key++; /* skip tilt */ + } + } + } + + return cos; +} + +void curve_applyKeyVertexTilts(Curve *cu, ListBase *lb, float *key) +{ + Nurb *nu; + int i; + + for(nu=lb->first; nu; nu=nu->next) { + if(nu->type == CU_BEZIER) { + BezTriple *bezt = nu->bezt; + + for(i=0; ipntsu; i++,bezt++) { + key+=3*3; + bezt->alfa= *key; + key++; + } + } + else { + BPoint *bp = nu->bp; + + for(i=0; ipntsu*nu->pntsv; i++,bp++) { + key+=3; + bp->alfa= *key; + key++; + } + } + } +} + int check_valid_nurb_u( struct Nurb *nu ) { if (nu==NULL) return 0; diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c index 266a528dc57..39b07cae2ab 100644 --- a/source/blender/blenkernel/intern/displist.c +++ b/source/blender/blenkernel/intern/displist.c @@ -1245,6 +1245,7 @@ static void curve_calc_modifiers_pre(Scene *scene, Object *ob, int forRender, fl int editmode = (!forRender && cu->editnurb); float (*originalVerts)[3] = NULL; float (*deformedVerts)[3] = NULL; + float *keyVerts= NULL; int required_mode; if(forRender) required_mode = eModifierMode_Render; @@ -1254,9 +1255,15 @@ static void curve_calc_modifiers_pre(Scene *scene, Object *ob, int forRender, fl if(editmode) required_mode |= eModifierMode_Editmode; - if(cu->editnurb==NULL && do_ob_key(scene, ob)) { - deformedVerts = curve_getVertexCos(ob->data, nurb, &numVerts); - originalVerts = MEM_dupallocN(deformedVerts); + if(cu->editnurb==NULL) { + keyVerts= do_ob_key(scene, ob); + + if(keyVerts) { + /* split coords from key data, the latter also includes + tilts, which is passed through in the modifier stack */ + deformedVerts= curve_getKeyVertexCos(cu, nurb, keyVerts); + originalVerts= MEM_dupallocN(deformedVerts); + } } if (preTesselatePoint) { @@ -1270,7 +1277,7 @@ static void curve_calc_modifiers_pre(Scene *scene, Object *ob, int forRender, fl if (mti->type!=eModifierTypeType_OnlyDeform) continue; if (!deformedVerts) { - deformedVerts = curve_getVertexCos(ob->data, nurb, &numVerts); + deformedVerts = curve_getVertexCos(cu, nurb, &numVerts); originalVerts = MEM_dupallocN(deformedVerts); } @@ -1281,9 +1288,13 @@ static void curve_calc_modifiers_pre(Scene *scene, Object *ob, int forRender, fl } } - if (deformedVerts) { - curve_applyVertexCos(ob->data, nurb, deformedVerts); - } + if (deformedVerts) + curve_applyVertexCos(cu, nurb, deformedVerts); + if (keyVerts) /* these are not passed through modifier stack */ + curve_applyKeyVertexTilts(cu, nurb, keyVerts); + + if(keyVerts) + MEM_freeN(keyVerts); *originalVerts_r = originalVerts; *deformedVerts_r = deformedVerts; diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c index 0f0f63a668b..78b9c04e4d2 100644 --- a/source/blender/blenkernel/intern/key.c +++ b/source/blender/blenkernel/intern/key.c @@ -168,7 +168,7 @@ Key *copy_key(Key *key) while(kbn) { if(kbn->data) kbn->data= MEM_dupallocN(kbn->data); - if( kb==key->refkey ) keyn->refkey= kbn; + if(kb==key->refkey) keyn->refkey= kbn; kbn= kbn->next; kb= kb->next; @@ -497,7 +497,34 @@ static void rel_flerp(int aantal, float *in, float *ref, float *out, float fac) } } -static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock *k, float *weights, int mode) +static void *key_block_get_data(Key *key, KeyBlock *kb) +{ + /* editmode shape key apply test */ +#if 0 + EditVert *eve; + Mesh *me; + float (*co)[3]; + int a; + + if(kb != key->refkey) { + if(GS(key->from->name) == ID_ME) { + me= (Mesh*)key->from; + + if(me->edit_mesh) { + a= 0; + co= kb->data; + + for(eve=me->edit_mesh->verts.first; eve; eve=eve->next, a++) + VECCOPY(co[a], eve->co); + } + } + } +#endif + + return kb->data; +} + +static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock *kb, float *weights, int mode) { float ktot = 0.0, kd = 0.0; int elemsize, poinsize = 0, a, *ofsp, ofs[32], flagflo=0; @@ -507,34 +534,33 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(key->from==NULL) return; if( GS(key->from->name)==ID_ME ) { - ofs[0]= sizeof(MVert); + ofs[0]= sizeof(float)*3; ofs[1]= 0; poinsize= ofs[0]; } else if( GS(key->from->name)==ID_LT ) { - ofs[0]= sizeof(BPoint); + ofs[0]= sizeof(float)*3; ofs[1]= 0; poinsize= ofs[0]; } else if( GS(key->from->name)==ID_CU ) { - if(mode==KEY_BPOINT) ofs[0]= sizeof(BPoint); - else ofs[0]= sizeof(BezTriple); + if(mode==KEY_BPOINT) ofs[0]= sizeof(float)*4; + else ofs[0]= sizeof(float)*10; ofs[1]= 0; poinsize= ofs[0]; } - if(end>tot) end= tot; - k1= k->data; - kref= key->refkey->data; + k1= key_block_get_data(key, kb); + kref= key_block_get_data(key, key->refkey); - if(tot != k->totelem) { + if(tot != kb->totelem) { ktot= 0.0; flagflo= 1; - if(k->totelem) { - kd= k->totelem/(float)tot; + if(kb->totelem) { + kd= kb->totelem/(float)tot; } else return; } @@ -575,33 +601,24 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * switch(cp[1]) { case IPO_FLOAT: - if(weights) { - memcpy(poin, kref, sizeof(float)*cp[0]); + memcpy(poin, kref, sizeof(float)*3); if(*weights!=0.0f) rel_flerp(cp[0], (float *)poin, (float *)kref, (float *)k1, *weights); weights++; } else - memcpy(poin, k1, sizeof(float)*cp[0]); - - poin+= ofsp[0]; - + memcpy(poin, k1, sizeof(float)*3); break; case IPO_BPOINT: - memcpy(poin, k1, 3*sizeof(float)); - memcpy(poin+4*sizeof(float), k1+3*sizeof(float), sizeof(float)); - - poin+= ofsp[0]; - + memcpy(poin, k1, sizeof(float)*4); break; case IPO_BEZTRIPLE: memcpy(poin, k1, sizeof(float)*10); - poin+= ofsp[0]; - break; } + poin+= ofsp[0]; cp+= 2; ofsp++; } @@ -623,44 +640,34 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * } } -void cp_cu_key(Curve *cu, KeyBlock *kb, int start, int end) +static void cp_cu_key(Curve *cu, KeyBlock *kb, int start, int end, char *out, int tot) { Nurb *nu; - int a, step = 0, tot, a1, a2; char *poin; + int a, step, a1, a2; - tot= count_curveverts(&cu->nurb); - nu= cu->nurb.first; - a= 0; - while(nu) { + for(a=0, nu=cu->nurb.first; nu; nu=nu->next, a+=step) { if(nu->bp) { - step= nu->pntsu*nu->pntsv; /* exception because keys prefer to work with complete blocks */ - poin= (char *)nu->bp->vec; - poin -= a*sizeof(BPoint); - + poin= out - a*sizeof(float)*4; a1= MAX2(a, start); a2= MIN2(a+step, end); if(a1key, kb, NULL, KEY_BPOINT); } else if(nu->bezt) { - step= 3*nu->pntsu; - poin= (char *)nu->bezt->vec; - poin -= a*sizeof(BezTriple); - + poin= out - a*sizeof(float)*10; a1= MAX2(a, start); a2= MIN2(a+step, end); if(a1key, kb, NULL, KEY_BEZTRIPLE); - } - a+= step; - nu=nu->next; + else + step= 0; } } @@ -673,19 +680,17 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode if(key->from==NULL) return; - if (G.f & G_DEBUG) printf("do_rel_key() \n"); - if( GS(key->from->name)==ID_ME ) { - ofs[0]= sizeof(MVert); + ofs[0]= sizeof(float)*3; ofs[1]= 0; } else if( GS(key->from->name)==ID_LT ) { - ofs[0]= sizeof(BPoint); + ofs[0]= sizeof(float)*3; ofs[1]= 0; } else if( GS(key->from->name)==ID_CU ) { - if(mode==KEY_BPOINT) ofs[0]= sizeof(BPoint); - else ofs[0]= sizeof(BezTriple); + if(mode==KEY_BPOINT) ofs[0]= sizeof(float)*4; + else ofs[0]= sizeof(float)*10; ofs[1]= 0; } @@ -710,21 +715,17 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode if(kb!=key->refkey) { float icuval= kb->curval; - if (G.f & G_DEBUG) printf("\tdo rel key %s : %s = %f \n", key->id.name+2, kb->name, icuval); - /* only with value, and no difference allowed */ if(!(kb->flag & KEYBLOCK_MUTE) && icuval!=0.0f && kb->totelem==tot) { KeyBlock *refb; float weight, *weights= kb->weights; - if (G.f & G_DEBUG) printf("\t\tnot skipped \n"); - poin= basispoin; - from= kb->data; + from= key_block_get_data(key, kb); /* reference now can be any block */ refb= BLI_findlink(&key->block, kb->relative); if(refb==NULL) continue; - reffrom= refb->data; + reffrom= key_block_get_data(key, refb); poin+= start*ofs[0]; reffrom+= key->elemsize*start; // key elemsize yes! @@ -746,17 +747,13 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode switch(cp[1]) { case IPO_FLOAT: - rel_flerp(cp[0], (float *)poin, (float *)reffrom, (float *)from, weight); - + rel_flerp(3, (float *)poin, (float *)reffrom, (float *)from, weight); break; case IPO_BPOINT: - rel_flerp(3, (float *)poin, (float *)reffrom, (float *)from, icuval); - rel_flerp(1, (float *)(poin+16), (float *)(reffrom+16), (float *)(from+16), icuval); - + rel_flerp(4, (float *)poin, (float *)reffrom, (float *)from, weight); break; case IPO_BEZTRIPLE: - rel_flerp(9, (float *)poin, (float *)reffrom, (float *)from, icuval); - + rel_flerp(10, (float *)poin, (float *)reffrom, (float *)from, weight); break; } @@ -789,21 +786,19 @@ static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(key->from==0) return; - if (G.f & G_DEBUG) printf("do_key() \n"); - if( GS(key->from->name)==ID_ME ) { - ofs[0]= sizeof(MVert); + ofs[0]= sizeof(float)*3; ofs[1]= 0; poinsize= ofs[0]; } else if( GS(key->from->name)==ID_LT ) { - ofs[0]= sizeof(BPoint); + ofs[0]= sizeof(float)*3; ofs[1]= 0; poinsize= ofs[0]; } else if( GS(key->from->name)==ID_CU ) { - if(mode==KEY_BPOINT) ofs[0]= sizeof(BPoint); - else ofs[0]= sizeof(BezTriple); + if(mode==KEY_BPOINT) ofs[0]= sizeof(float)*4; + else ofs[0]= sizeof(float)*10; ofs[1]= 0; poinsize= ofs[0]; @@ -811,10 +806,10 @@ static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(end>tot) end= tot; - k1= k[0]->data; - k2= k[1]->data; - k3= k[2]->data; - k4= k[3]->data; + k1= key_block_get_data(key, k[0]); + k2= key_block_get_data(key, k[1]); + k3= key_block_get_data(key, k[2]); + k4= key_block_get_data(key, k[3]); /* test for more or less points (per key!) */ if(tot != k[0]->totelem) { @@ -922,26 +917,17 @@ static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * switch(cp[1]) { case IPO_FLOAT: - flerp(cp[0], (float *)poin, (float *)k1, (float *)k2, (float *)k3, (float *)k4, t); - poin+= ofsp[0]; - + flerp(3, (float *)poin, (float *)k1, (float *)k2, (float *)k3, (float *)k4, t); break; case IPO_BPOINT: - flerp(3, (float *)poin, (float *)k1, (float *)k2, (float *)k3, (float *)k4, t); - flerp(1, (float *)(poin+16), (float *)(k1+12), (float *)(k2+12), (float *)(k3+12), (float *)(k4+12), t); - - poin+= ofsp[0]; - + flerp(4, (float *)poin, (float *)k1, (float *)k2, (float *)k3, (float *)k4, t); break; case IPO_BEZTRIPLE: - flerp(9, (void *)poin, (void *)k1, (void *)k2, (void *)k3, (void *)k4, t); - flerp(1, (float *)(poin+36), (float *)(k1+36), (float *)(k2+36), (float *)(k3+36), (float *)(k4+36), t); - poin+= ofsp[0]; - + flerp(10, (void *)poin, (void *)k1, (void *)k2, (void *)k3, (void *)k4, t); break; } - + poin+= ofsp[0]; cp+= 2; ofsp++; } @@ -1038,41 +1024,30 @@ static float *get_weights_array(Object *ob, char *vgroup) return NULL; } -static int do_mesh_key(Scene *scene, Object *ob, Mesh *me) +static void do_mesh_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { KeyBlock *k[4]; - float cfra, ctime, t[4], delta, loc[3], size[3]; + float cfra, ctime, t[4], delta; int a, flag = 0, step; - if(me->totvert==0) return 0; - if(me->key==NULL) return 0; - if(me->key->block.first==NULL) return 0; - - /* prevent python from screwing this up? anyhoo, the from pointer could be dropped */ - me->key->from= (ID *)me; - - if (G.f & G_DEBUG) printf("do mesh key ob:%s me:%s ke:%s \n", ob->id.name+2, me->id.name+2, me->key->id.name+2); - - if(me->key->slurph && me->key->type!=KEY_RELATIVE ) { - if (G.f & G_DEBUG) printf("\tslurph key\n"); - - delta= me->key->slurph; - delta/= me->totvert; + if(key->slurph && key->type!=KEY_RELATIVE ) { + delta= key->slurph; + delta/= tot; step= 1; - if(me->totvert>100 && slurph_opt) { - step= me->totvert/50; + if(tot>100 && slurph_opt) { + step= tot/50; delta*= step; /* in do_key and cp_key the case a>tot is handled */ } cfra= (float)scene->r.cfra; - for(a=0; atotvert; a+=step, cfra+= delta) { + for(a=0; akey->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } @@ -1081,42 +1056,33 @@ static int do_mesh_key(Scene *scene, Object *ob, Mesh *me) ctime /= 100.0f; CLAMP(ctime, 0.0f, 1.0f); // XXX for compat, we use this, but this clamping was confusing - flag= setkeys(ctime, &me->key->block, k, t, 0); - if(flag==0) { - - do_key(a, a+step, me->totvert, (char *)me->mvert->co, me->key, k, t, 0); - } - else { - cp_key(a, a+step, me->totvert, (char *)me->mvert->co, me->key, k[2], NULL, 0); - } + flag= setkeys(ctime, &key->block, k, t, 0); + + if(flag==0) + do_key(a, a+step, tot, (char *)out, key, k, t, 0); + else + cp_key(a, a+step, tot, (char *)out, key, k[2], NULL, 0); } - - if(flag && k[2]==me->key->refkey) tex_space_mesh(me); - else boundbox_mesh(me, loc, size); } else { - if(me->key->type==KEY_RELATIVE) { + if(key->type==KEY_RELATIVE) { KeyBlock *kb; - if (G.f & G_DEBUG) printf("\tdo relative \n"); - - for(kb= me->key->block.first; kb; kb= kb->next) + for(kb= key->block.first; kb; kb= kb->next) kb->weights= get_weights_array(ob, kb->vgroup); - do_rel_key(0, me->totvert, me->totvert, (char *)me->mvert->co, me->key, 0); + do_rel_key(0, tot, tot, (char *)out, key, 0); - for(kb= me->key->block.first; kb; kb= kb->next) { + for(kb= key->block.first; kb; kb= kb->next) { if(kb->weights) MEM_freeN(kb->weights); kb->weights= NULL; } } else { - if (G.f & G_DEBUG) printf("\tdo absolute \n"); - ctime= bsystem_time(scene, ob, (float)scene->r.cfra, 0.0f); // xxx old cruft #if 0 // XXX old animation system - if(calc_ipo_spec(me->key->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } @@ -1125,106 +1091,69 @@ static int do_mesh_key(Scene *scene, Object *ob, Mesh *me) ctime /= 100.0f; CLAMP(ctime, 0.0f, 1.0f); // XXX for compat, we use this, but this clamping was confusing - flag= setkeys(ctime, &me->key->block, k, t, 0); - if(flag==0) { - do_key(0, me->totvert, me->totvert, (char *)me->mvert->co, me->key, k, t, 0); - } - else { - cp_key(0, me->totvert, me->totvert, (char *)me->mvert->co, me->key, k[2], NULL, 0); - } - - if(flag && k[2]==me->key->refkey) tex_space_mesh(me); - else boundbox_mesh(me, loc, size); + flag= setkeys(ctime, &key->block, k, t, 0); + + if(flag==0) + do_key(0, tot, tot, (char *)out, key, k, t, 0); + else + cp_key(0, tot, tot, (char *)out, key, k[2], NULL, 0); } } - return 1; } -static void do_cu_key(Curve *cu, KeyBlock **k, float *t) +static void do_cu_key(Curve *cu, KeyBlock **k, float *t, char *out, int tot) { Nurb *nu; - int a, step = 0, tot; char *poin; + int a, step; - tot= count_curveverts(&cu->nurb); - nu= cu->nurb.first; - a= 0; - - while(nu) { + for(a=0, nu=cu->nurb.first; nu; nu=nu->next, a+=step) { if(nu->bp) { - step= nu->pntsu*nu->pntsv; - - /* exception because keys prefer to work with complete blocks */ - poin= (char *)nu->bp->vec; - poin -= a*sizeof(BPoint); - + poin= out - a*sizeof(float)*4; do_key(a, a+step, tot, poin, cu->key, k, t, KEY_BPOINT); } else if(nu->bezt) { - step= 3*nu->pntsu; - - poin= (char *)nu->bezt->vec; - poin -= a*sizeof(BezTriple); - + poin= out - a*sizeof(float)*10; do_key(a, a+step, tot, poin, cu->key, k, t, KEY_BEZTRIPLE); - } - a+= step; - nu=nu->next; + else + step= 0; } } -static void do_rel_cu_key(Curve *cu, float ctime) +static void do_rel_cu_key(Curve *cu, float ctime, char *out, int tot) { Nurb *nu; - int a, step = 0, tot; char *poin; + int a, step; - tot= count_curveverts(&cu->nurb); - nu= cu->nurb.first; - a= 0; - while(nu) { + for(a=0, nu=cu->nurb.first; nu; nu=nu->next, a+=step) { if(nu->bp) { - step= nu->pntsu*nu->pntsv; - - /* exception because keys prefer to work with complete blocks */ - poin= (char *)nu->bp->vec; - poin -= a*sizeof(BPoint); - - do_rel_key(a, a+step, tot, poin, cu->key, KEY_BPOINT); + poin= out - a*sizeof(float)*3; + do_rel_key(a, a+step, tot, out, cu->key, KEY_BPOINT); } else if(nu->bezt) { - step= 3*nu->pntsu; - - poin= (char *)nu->bezt->vec; - poin -= a*sizeof(BezTriple); - + poin= out - a*sizeof(float)*10; do_rel_key(a, a+step, tot, poin, cu->key, KEY_BEZTRIPLE); } - a+= step; - - nu=nu->next; + else + step= 0; } } -static int do_curve_key(Scene *scene, Curve *cu) +static void do_curve_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { + Curve *cu= ob->data; KeyBlock *k[4]; float cfra, ctime, t[4], delta; - int a, flag = 0, step = 0, tot; + int a, flag = 0, step = 0; - tot= count_curveverts(&cu->nurb); - - if(tot==0) return 0; - if(cu->key==NULL) return 0; - if(cu->key->block.first==NULL) return 0; - - if(cu->key->slurph) { - delta= cu->key->slurph; + if(key->slurph) { + delta= key->slurph; delta/= tot; step= 1; @@ -1239,66 +1168,52 @@ static int do_curve_key(Scene *scene, Curve *cu) for(a=0; akey->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } #endif // XXX old animation system - flag= setkeys(ctime, &cu->key->block, k, t, 0); - if(flag==0) { - - /* do_key(a, a+step, tot, (char *)cu->mvert->co, cu->key, k, t, 0); */ - } - else { - /* cp_key(a, a+step, tot, (char *)cu->mvert->co, cu->key, k[2],0); */ - } - } + flag= setkeys(ctime, &key->block, k, t, 0); - if(flag && k[2]==cu->key->refkey) tex_space_curve(cu); - - + if(flag==0) + ; /* do_key(a, a+step, tot, (char *)out, key, k, t, 0); */ + else + ; /* cp_key(a, a+step, tot, (char *)out, key, k[2],0); */ + } } else { ctime= bsystem_time(scene, NULL, (float)scene->r.cfra, 0.0); - if(cu->key->type==KEY_RELATIVE) { - do_rel_cu_key(cu, ctime); + if(key->type==KEY_RELATIVE) { + do_rel_cu_key(cu, ctime, out, tot); } else { #if 0 // XXX old animation system - if(calc_ipo_spec(cu->key->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } #endif // XXX old animation system - flag= setkeys(ctime, &cu->key->block, k, t, 0); + flag= setkeys(ctime, &key->block, k, t, 0); - if(flag==0) do_cu_key(cu, k, t); - else cp_cu_key(cu, k[2], 0, tot); - - if(flag && k[2]==cu->key->refkey) tex_space_curve(cu); + if(flag==0) do_cu_key(cu, k, t, out, tot); + else cp_cu_key(cu, k[2], 0, tot, out, tot); } } - - return 1; } -static int do_latt_key(Scene *scene, Object *ob, Lattice *lt) +static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { + Lattice *lt= ob->data; KeyBlock *k[4]; float delta, cfra, ctime, t[4]; - int a, tot, flag; + int a, flag; - if(lt->key==NULL) return 0; - if(lt->key->block.first==NULL) return 0; - - tot= lt->pntsu*lt->pntsv*lt->pntsw; - - if(lt->key->slurph) { - delta= lt->key->slurph; + if(key->slurph) { + delta= key->slurph; delta/= (float)tot; cfra= (float)scene->r.cfra; @@ -1307,74 +1222,109 @@ static int do_latt_key(Scene *scene, Object *ob, Lattice *lt) ctime= bsystem_time(scene, 0, cfra, 0.0); // XXX old cruft #if 0 // XXX old animation system - if(calc_ipo_spec(lt->key->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } #endif // XXX old animation system - flag= setkeys(ctime, <->key->block, k, t, 0); - if(flag==0) { - - do_key(a, a+1, tot, (char *)lt->def->vec, lt->key, k, t, 0); - } - else { - cp_key(a, a+1, tot, (char *)lt->def->vec, lt->key, k[2], NULL, 0); - } + flag= setkeys(ctime, &key->block, k, t, 0); + + if(flag==0) + do_key(a, a+1, tot, (char *)out, key, k, t, 0); + else + cp_key(a, a+1, tot, (char *)out, key, k[2], NULL, 0); } } else { - ctime= bsystem_time(scene, NULL, (float)scene->r.cfra, 0.0); - - if(lt->key->type==KEY_RELATIVE) { + if(key->type==KEY_RELATIVE) { KeyBlock *kb; - for(kb= lt->key->block.first; kb; kb= kb->next) + for(kb= key->block.first; kb; kb= kb->next) kb->weights= get_weights_array(ob, kb->vgroup); - do_rel_key(0, tot, tot, (char *)lt->def->vec, lt->key, 0); + do_rel_key(0, tot, tot, (char *)out, key, 0); - for(kb= lt->key->block.first; kb; kb= kb->next) { + for(kb= key->block.first; kb; kb= kb->next) { if(kb->weights) MEM_freeN(kb->weights); kb->weights= NULL; } } else { + ctime= bsystem_time(scene, NULL, (float)scene->r.cfra, 0.0); + #if 0 // XXX old animation system - if(calc_ipo_spec(lt->key->ipo, KEY_SPEED, &ctime)==0) { + if(calc_ipo_spec(key->ipo, KEY_SPEED, &ctime)==0) { ctime /= 100.0; CLAMP(ctime, 0.0, 1.0); } #endif // XXX old animation system - flag= setkeys(ctime, <->key->block, k, t, 0); - if(flag==0) { - do_key(0, tot, tot, (char *)lt->def->vec, lt->key, k, t, 0); - } - else { - cp_key(0, tot, tot, (char *)lt->def->vec, lt->key, k[2], NULL, 0); - } + flag= setkeys(ctime, &key->block, k, t, 0); + + if(flag==0) + do_key(0, tot, tot, (char *)out, key, k, t, 0); + else + cp_key(0, tot, tot, (char *)out, key, k[2], NULL, 0); } } if(lt->flag & LT_OUTSIDE) outside_lattice(lt); - - return 1; } -/* returns 1 when key applied */ -int do_ob_key(Scene *scene, Object *ob) +/* returns key coordinates (+ tilt) when key applied, NULL otherwise */ +float *do_ob_key(Scene *scene, Object *ob) { Key *key= ob_get_key(ob); + char *out; + int tot= 0, size= 0; - if(key==NULL) - return 0; + if(key==NULL || key->block.first==NULL) + return NULL; + + /* compute size of output array */ + if(ob->type == OB_MESH) { + Mesh *me= ob->data; + + tot= me->totvert; + size= tot*3*sizeof(float); + } + else if(ob->type == OB_LATTICE) { + Lattice *lt= ob->data; + + tot= lt->pntsu*lt->pntsv*lt->pntsw; + size= tot*3*sizeof(float); + } + else if(ELEM(ob->type, OB_CURVE, OB_SURF)) { + Curve *cu= ob->data; + Nurb *nu; + + for(nu=cu->nurb.first; nu; nu=nu->next) { + if(nu->bezt) { + tot += 3*nu->pntsu; + size += nu->pntsu*10*sizeof(float); + } + else if(nu->bp) { + tot += nu->pntsu*nu->pntsv; + size += nu->pntsu*nu->pntsv*10*sizeof(float); + } + } + } + + /* if nothing to interpolate, cancel */ + if(tot == 0 || size == 0) + return NULL; + + /* allocate array */ + out= MEM_callocN(size, "do_ob_key out"); + + /* prevent python from screwing this up? anyhoo, the from pointer could be dropped */ + key->from= (ID *)ob->data; if(ob->shapeflag & OB_SHAPE_LOCK) { + /* shape locked, copy the locked shape instead of blending */ KeyBlock *kb= BLI_findlink(&key->block, ob->shapenr-1); - if (G.f & G_DEBUG) printf("ob %s, key %s locked \n", ob->id.name+2, key->id.name+2); - if(kb && (kb->flag & KEYBLOCK_MUTE)) kb= key->refkey; @@ -1383,46 +1333,29 @@ int do_ob_key(Scene *scene, Object *ob) ob->shapenr= 1; } - if(ob->type==OB_MESH) { - Mesh *me= ob->data; + if(ELEM(ob->type, OB_MESH, OB_LATTICE)) { float *weights= get_weights_array(ob, kb->vgroup); - cp_key(0, me->totvert, me->totvert, (char *)me->mvert->co, key, kb, weights, 0); - + cp_key(0, tot, tot, (char*)out, key, kb, weights, 0); + if(weights) MEM_freeN(weights); } - else if(ob->type==OB_LATTICE) { - Lattice *lt= ob->data; - float *weights= get_weights_array(ob, kb->vgroup); - int tot= lt->pntsu*lt->pntsv*lt->pntsw; - - cp_key(0, tot, tot, (char *)lt->def->vec, key, kb, weights, 0); - - if(weights) MEM_freeN(weights); - } - else if ELEM(ob->type, OB_CURVE, OB_SURF) { - Curve *cu= ob->data; - int tot= count_curveverts(&cu->nurb); - - cp_cu_key(cu, kb, 0, tot); - } - return 1; + else if(ELEM(ob->type, OB_CURVE, OB_SURF)) + cp_cu_key(ob->data, kb, 0, tot, out, tot); } else { /* do shapekey local drivers */ float ctime= (float)scene->r.cfra; // XXX this needs to be checked - if (G.f & G_DEBUG) - printf("ob %s - do shapekey (%s) drivers \n", ob->id.name+2, key->id.name+2); BKE_animsys_evaluate_animdata(&key->id, key->adt, ctime, ADT_RECALC_DRIVERS); - if(ob->type==OB_MESH) return do_mesh_key(scene, ob, ob->data); - else if(ob->type==OB_CURVE) return do_curve_key(scene, ob->data); - else if(ob->type==OB_SURF) return do_curve_key(scene, ob->data); - else if(ob->type==OB_LATTICE) return do_latt_key(scene, ob, ob->data); + if(ob->type==OB_MESH) do_mesh_key(scene, ob, key, out, tot); + else if(ob->type==OB_LATTICE) do_latt_key(scene, ob, key, out, tot); + else if(ob->type==OB_CURVE) do_curve_key(scene, ob, key, out, tot); + else if(ob->type==OB_SURF) do_curve_key(scene, ob, key, out, tot); } - return 0; + return (float*)out; } Key *ob_get_key(Object *ob) diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c index a957be4704c..128d3229a3c 100644 --- a/source/blender/blenkernel/intern/lattice.c +++ b/source/blender/blenkernel/intern/lattice.c @@ -995,9 +995,8 @@ void lattice_calc_modifiers(Scene *scene, Object *ob) freedisplist(&ob->disp); - if (!editmode) { - do_ob_key(scene, ob); - } + if (!editmode) + vertexCos= (float(*)[3])do_ob_key(scene, ob); for (; md; md=md->next) { ModifierTypeInfo *mti = modifierType_getInfo(md->type); diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c index 0065c348ad0..6ef557ca879 100644 --- a/source/blender/blenkernel/intern/mesh.c +++ b/source/blender/blenkernel/intern/mesh.c @@ -362,35 +362,12 @@ void boundbox_mesh(Mesh *me, float *loc, float *size) void tex_space_mesh(Mesh *me) { - KeyBlock *kb; - float *fp, loc[3], size[3], min[3], max[3]; + float loc[3], size[3]; int a; boundbox_mesh(me, loc, size); if(me->texflag & AUTOSPACE) { - if(me->key) { - kb= me->key->refkey; - if (kb) { - - INIT_MINMAX(min, max); - - fp= kb->data; - for(a=0; atotelem; a++, fp+=3) { - DO_MINMAX(fp, min, max); - } - if(kb->totelem) { - loc[0]= (min[0]+max[0])/2.0f; loc[1]= (min[1]+max[1])/2.0f; loc[2]= (min[2]+max[2])/2.0f; - size[0]= (max[0]-min[0])/2.0f; size[1]= (max[1]-min[1])/2.0f; size[2]= (max[2]-min[2])/2.0f; - } - else { - loc[0]= loc[1]= loc[2]= 0.0; - size[0]= size[1]= size[2]= 0.0; - } - - } - } - for (a=0; a<3; a++) { if(size[a]==0.0) size[a]= 1.0; else if(size[a]>0.0 && size[a]<0.00001) size[a]= 0.00001; @@ -430,26 +407,20 @@ void mesh_get_texspace(Mesh *me, float *loc_r, float *rot_r, float *size_r) float *get_mesh_orco_verts(Object *ob) { Mesh *me = ob->data; + MVert *mvert = NULL; + Mesh *tme = me->texcomesh?me->texcomesh:me; int a, totvert; float (*vcos)[3] = NULL; /* Get appropriate vertex coordinates */ - if(me->key && me->texcomesh==0 && me->key->refkey) { - vcos= mesh_getRefKeyCos(me, &totvert); - } - else { - MVert *mvert = NULL; - Mesh *tme = me->texcomesh?me->texcomesh:me; + vcos = MEM_callocN(sizeof(*vcos)*me->totvert, "orco mesh"); + mvert = tme->mvert; + totvert = MIN2(tme->totvert, me->totvert); - vcos = MEM_callocN(sizeof(*vcos)*me->totvert, "orco mesh"); - mvert = tme->mvert; - totvert = MIN2(tme->totvert, me->totvert); - - for(a=0; aco[0]; - vcos[a][1]= mvert->co[1]; - vcos[a][2]= mvert->co[2]; - } + for(a=0; aco[0]; + vcos[a][1]= mvert->co[1]; + vcos[a][2]= mvert->co[2]; } return (float*)vcos; @@ -1220,29 +1191,6 @@ float (*mesh_getVertexCos(Mesh *me, int *numVerts_r))[3] return cos; } -float (*mesh_getRefKeyCos(Mesh *me, int *numVerts_r))[3] -{ - KeyBlock *kb; - float (*cos)[3] = NULL; - int totvert; - - if(me->key && me->key->refkey) { - if(numVerts_r) *numVerts_r= me->totvert; - - kb= me->key->refkey; - - /* prevent accessing invalid memory */ - if (me->totvert > kb->totelem) cos= MEM_callocN(sizeof(*cos)*me->totvert, "vertexcos1"); - else cos= MEM_mallocN(sizeof(*cos)*me->totvert, "vertexcos1"); - - totvert= MIN2(kb->totelem, me->totvert); - - memcpy(cos, kb->data, sizeof(*cos)*totvert); - } - - return cos; -} - UvVertMap *make_uv_vert_map(struct MFace *mface, struct MTFace *tface, unsigned int totface, unsigned int totvert, int selected, float *limit) { UvVertMap *vmap; diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 6f9a41893e3..658e238e81d 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -9924,7 +9924,6 @@ static void do_versions(FileData *fd, Library *lib, Main *main) } } - /* put 2.50 compatibility code here until next subversion bump */ if (main->versionfile < 250 || (main->versionfile == 250 && main->subversionfile < 6)) { Object *ob; Lamp *la; @@ -9950,6 +9949,71 @@ static void do_versions(FileData *fd, Library *lib, Main *main) la->compressthresh= 0.05f; } + if (main->versionfile < 250 || (main->versionfile == 250 && main->subversionfile < 7)) { + Mesh *me; + Nurb *nu; + Lattice *lt; + Curve *cu; + Key *key; + float *data; + int a, tot; + + /* shape keys are no longer applied to the mesh itself, but rather + to the derivedmesh/displist, so here we ensure that the basis + shape key is always set in the mesh coordinates. */ + + for(me= main->mesh.first; me; me= me->id.next) { + if((key = newlibadr(fd, lib, me->key)) && key->refkey) { + data= key->refkey->data; + tot= MIN2(me->totvert, key->refkey->totelem); + + for(a=0; amvert[a].co, data) + } + } + + for(lt= main->latt.first; lt; lt= lt->id.next) { + if((key = newlibadr(fd, lib, lt->key)) && key->refkey) { + data= key->refkey->data; + tot= MIN2(lt->pntsu*lt->pntsv*lt->pntsw, key->refkey->totelem); + + for(a=0; adef[a].vec, data) + } + } + + for(cu= main->curve.first; cu; cu= cu->id.next) { + if((key = newlibadr(fd, lib, cu->key)) && key->refkey) { + data= key->refkey->data; + + for(nu=cu->nurb.first; nu; nu=nu->next) { + if(nu->bezt) { + BezTriple *bezt = nu->bezt; + + for(a=0; apntsu; a++, bezt++) { + VECCOPY(bezt->vec[0], data); data+=3; + VECCOPY(bezt->vec[1], data); data+=3; + VECCOPY(bezt->vec[2], data); data+=3; + bezt->alfa= *data; data++; + } + } + else if(nu->bp) { + BPoint *bp = nu->bp; + + for(a=0; apntsu*nu->pntsv; a++, bp++) { + VECCOPY(bp->vec, data); data+=3; + bp->alfa= *data; data++; + } + } + } + } + } + } + + /* put 2.50 compatibility code here until next subversion bump */ + { + } + /* WATCH IT!!!: pointers from libdata have not been converted yet here! */ /* WATCH IT 2!: Userdef struct init has to be in src/usiblender.c! */ diff --git a/source/blender/editors/mesh/editmesh.c b/source/blender/editors/mesh/editmesh.c index b0c51131041..408c793751b 100644 --- a/source/blender/editors/mesh/editmesh.c +++ b/source/blender/editors/mesh/editmesh.c @@ -756,7 +756,7 @@ void make_editMesh(Scene *scene, Object *ob) EditFace *efa; EditEdge *eed; EditSelection *ese; - float *co; + float *co, (*keyco)[3]= NULL; int tot, a, eekadoodle= 0; if(me->edit_mesh==NULL) @@ -782,9 +782,9 @@ void make_editMesh(Scene *scene, Object *ob) actkey = ob_get_keyblock(ob); if(actkey) { - tot= actkey->totelem; /* undo-ing in past for previous editmode sessions gives corrupt 'keyindex' values */ undo_editmode_clear(); + keyco= actkey->data; } /* make editverts */ @@ -797,8 +797,8 @@ void make_editMesh(Scene *scene, Object *ob) co= mvert->co; /* edit the shape key coordinate if available */ - if(actkey && a < actkey->totelem) - co= (float*)actkey->data + 3*a; + if(keyco && a < actkey->totelem) + co= keyco[a]; eve= addvertlist(em, co, NULL); evlist[a]= eve; @@ -1201,7 +1201,7 @@ void load_editMesh(Scene *scene, Object *ob) while(eve) { if (eve->keyindex >= 0 && eve->keyindex < currkey->totelem) { // valid old vertex if(currkey == actkey) { - if (actkey == me->key->refkey) { + if(actkey == me->key->refkey) { VECCOPY(fp, mvert->co); } else { diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index fad73e19e16..8bd8629a595 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -795,7 +795,7 @@ static void mesh_octree_add_nodes(MocNode **basetable, float *co, float *offs, f } -static intptr_t mesh_octree_find_index(MocNode **bt, float (*orco)[3], MVert *mvert, float *co) +static intptr_t mesh_octree_find_index(MocNode **bt, MVert *mvert, float *co) { float *vec; int a; @@ -806,12 +806,7 @@ static intptr_t mesh_octree_find_index(MocNode **bt, float (*orco)[3], MVert *mv for(a=0; aindex[a]) { /* does mesh verts and editmode, code looks potential dangerous, octree should really be filled OK! */ - if(orco) { - vec= orco[(*bt)->index[a]-1]; - if(FloatCompare(vec, co, MOC_THRESH)) - return (*bt)->index[a]-1; - } - else if(mvert) { + if(mvert) { vec= (mvert+(*bt)->index[a]-1)->co; if(FloatCompare(vec, co, MOC_THRESH)) return (*bt)->index[a]-1; @@ -825,7 +820,7 @@ static intptr_t mesh_octree_find_index(MocNode **bt, float (*orco)[3], MVert *mv else return -1; } if( (*bt)->next) - return mesh_octree_find_index(&(*bt)->next, orco, mvert, co); + return mesh_octree_find_index(&(*bt)->next, mvert, co); return -1; } @@ -833,9 +828,7 @@ static intptr_t mesh_octree_find_index(MocNode **bt, float (*orco)[3], MVert *mv static struct { MocNode **table; float offs[3], div[3]; - float (*orco)[3]; - float orcoloc[3]; -} MeshOctree = {NULL, {0, 0, 0}, {0, 0, 0}, NULL}; +} MeshOctree = {NULL, {0, 0, 0}, {0, 0, 0}}; /* mode is 's' start, or 'e' end, or 'u' use */ /* if end, ob can be NULL */ @@ -851,9 +844,9 @@ intptr_t mesh_octree_table(Object *ob, EditMesh *em, float *co, char mode) Mesh *me= ob->data; bt= MeshOctree.table + mesh_octree_get_base_offs(co, MeshOctree.offs, MeshOctree.div); if(em) - return mesh_octree_find_index(bt, NULL, NULL, co); + return mesh_octree_find_index(bt, NULL, co); else - return mesh_octree_find_index(bt, MeshOctree.orco, me->mvert, co); + return mesh_octree_find_index(bt, me->mvert, co); } return -1; } @@ -873,16 +866,10 @@ intptr_t mesh_octree_table(Object *ob, EditMesh *em, float *co, char mode) } else { MVert *mvert; - float *vco; - int a, totvert; + int a; - MeshOctree.orco= mesh_getRefKeyCos(me, &totvert); - mesh_get_texspace(me, MeshOctree.orcoloc, NULL, NULL); - - for(a=0, mvert= me->mvert; atotvert; a++, mvert++) { - vco= (MeshOctree.orco)? MeshOctree.orco[a]: mvert->co; - DO_MINMAX(vco, min, max); - } + for(a=0, mvert= me->mvert; atotvert; a++, mvert++) + DO_MINMAX(mvert->co, min, max); } /* for quick unit coordinate calculus */ @@ -915,13 +902,10 @@ intptr_t mesh_octree_table(Object *ob, EditMesh *em, float *co, char mode) } else { MVert *mvert; - float *vco; int a; - for(a=0, mvert= me->mvert; atotvert; a++, mvert++) { - vco= (MeshOctree.orco)? MeshOctree.orco[a]: mvert->co; - mesh_octree_add_nodes(MeshOctree.table, vco, MeshOctree.offs, MeshOctree.div, a+1); - } + for(a=0, mvert= me->mvert; atotvert; a++, mvert++) + mesh_octree_add_nodes(MeshOctree.table, mvert->co, MeshOctree.offs, MeshOctree.div, a+1); } } else if(mode=='e') { /* end table */ @@ -934,10 +918,6 @@ intptr_t mesh_octree_table(Object *ob, EditMesh *em, float *co, char mode) MEM_freeN(MeshOctree.table); MeshOctree.table= NULL; } - if(MeshOctree.orco) { - MEM_freeN(MeshOctree.orco); - MeshOctree.orco= NULL; - } } return 0; } @@ -948,19 +928,10 @@ int mesh_get_x_mirror_vert(Object *ob, int index) MVert *mvert; float vec[3]; - if(MeshOctree.orco) { - float *loc= MeshOctree.orcoloc; - - vec[0]= -(MeshOctree.orco[index][0] + loc[0]) - loc[0]; - vec[1]= MeshOctree.orco[index][1]; - vec[2]= MeshOctree.orco[index][2]; - } - else { - mvert= me->mvert+index; - vec[0]= -mvert->co[0]; - vec[1]= mvert->co[1]; - vec[2]= mvert->co[2]; - } + mvert= me->mvert+index; + vec[0]= -mvert->co[0]; + vec[1]= mvert->co[1]; + vec[2]= mvert->co[2]; return mesh_octree_table(ob, NULL, vec, 'u'); } diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c index f58e8cfeb9d..1b0dc95480a 100644 --- a/source/blender/editors/object/object_modifier.c +++ b/source/blender/editors/object/object_modifier.c @@ -349,10 +349,10 @@ int ED_object_modifier_apply(ReportList *reports, Scene *scene, Object *ob, Modi mesh_pmv_off(ob, me); - /* Multires: ensure that recent sculpting is applied */ - if(md->type == eModifierType_Multires) - multires_force_update(ob); - + /* Multires: ensure that recent sculpting is applied */ + if(md->type == eModifierType_Multires) + multires_force_update(ob); + dm = mesh_create_derived_for_modifier(scene, ob, md); if (!dm) { BKE_report(reports, RPT_ERROR, "Modifier is disabled or returned error, skipping apply"); diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 53970596f55..5f3d73ec348 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -383,6 +383,7 @@ void insert_curvekey(Scene *scene, Curve *cu, short rel) { Key *key; KeyBlock *kb; + ListBase *lb= (cu->editnurb)? cu->editnurb: &cu->nurb; if(cu->key==NULL) { cu->key= add_key( (ID *)cu); @@ -396,8 +397,7 @@ void insert_curvekey(Scene *scene, Curve *cu, short rel) kb= add_keyblock(scene, key); - if(cu->editnurb->first) curve_to_key(cu, kb, cu->editnurb); - else curve_to_key(cu, kb, &cu->nurb); + curve_to_key(cu, kb, lb); } /*********************** add shape key ***********************/ @@ -634,7 +634,6 @@ void OBJECT_OT_shape_key_clear(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } - static int shape_key_mirror_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 834cea93864..3fb132b24fd 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -759,14 +759,6 @@ static PointerRNA rna_Object_active_shape_key_get(PointerRNA *ptr) return keyptr; } -static void rna_Object_shape_key_lock_set(PointerRNA *ptr, int value) -{ - Object *ob= (Object*)ptr->id.data; - - if(value) ob->shapeflag |= OB_SHAPE_LOCK; - else ob->shapeflag &= ~OB_SHAPE_LOCK; -} - static PointerRNA rna_Object_field_get(PointerRNA *ptr) { Object *ob= (Object*)ptr->id.data; @@ -1646,7 +1638,6 @@ static void rna_def_object(BlenderRNA *brna) /* shape keys */ prop= RNA_def_property(srna, "shape_key_lock", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "shapeflag", OB_SHAPE_LOCK); - RNA_def_property_boolean_funcs(prop, NULL, "rna_Object_shape_key_lock_set"); RNA_def_property_ui_text(prop, "Shape Key Lock", "Always show the current Shape for this Object."); RNA_def_property_ui_icon(prop, ICON_UNPINNED, 1); RNA_def_property_update(prop, 0, "rna_Object_update_data"); diff --git a/source/gameengine/Converter/BL_ShapeDeformer.cpp b/source/gameengine/Converter/BL_ShapeDeformer.cpp index 20ca7f07f2b..41ff3cc3274 100644 --- a/source/gameengine/Converter/BL_ShapeDeformer.cpp +++ b/source/gameengine/Converter/BL_ShapeDeformer.cpp @@ -148,10 +148,13 @@ bool BL_ShapeDeformer::Update(void) // make sure the vertex weight cache is in line with this object m_pMeshObject->CheckWeightCache(blendobj); - /* we will blend the key directly in mvert array: it is used by armature as the start position */ + /* we will blend the key directly in m_transverts array: it is used by armature as the start position */ /* m_bmesh->key can be NULL in case of Modifier deformer */ if (m_bmesh->key) { - do_rel_key(0, m_bmesh->totvert, m_bmesh->totvert, (char *)m_bmesh->mvert->co, m_bmesh->key, 0); + /* store verts locally */ + VerifyStorage(); + + do_rel_key(0, m_bmesh->totvert, m_bmesh->totvert, (char *)(float *)m_transverts, m_bmesh->key, 0); m_bDynamic = true; } @@ -167,18 +170,12 @@ bool BL_ShapeDeformer::Update(void) bShapeUpdate = true; } // check for armature deform - bSkinUpdate = BL_SkinDeformer::Update(); + bSkinUpdate = BL_SkinDeformer::UpdateInternal(bShapeUpdate && m_bDynamic); // non dynamic deformer = Modifer without armature and shape keys, no need to create storage if (!bSkinUpdate && bShapeUpdate && m_bDynamic) { - // this means that there is no armature, we still need to copy the vertex to m_transverts - // and update the normal (was not done after shape key calculation) - - /* store verts locally */ - VerifyStorage(); - - for (int v =0; vtotvert; v++) - VECCOPY(m_transverts[v], m_bmesh->mvert[v].co); + // this means that there is no armature, we still need to + // update the normal (was not done after shape key calculation) #ifdef __NLA_DEFNORMALS if (m_recalcNormal) diff --git a/source/gameengine/Converter/BL_SkinDeformer.cpp b/source/gameengine/Converter/BL_SkinDeformer.cpp index a13f78e1b27..f166a7252ad 100644 --- a/source/gameengine/Converter/BL_SkinDeformer.cpp +++ b/source/gameengine/Converter/BL_SkinDeformer.cpp @@ -172,7 +172,7 @@ void BL_SkinDeformer::ProcessReplica() //void where_is_pose (Object *ob); //void armature_deform_verts(Object *armOb, Object *target, float (*vertexCos)[3], int numVerts, int deformflag); -bool BL_SkinDeformer::Update(void) +bool BL_SkinDeformer::UpdateInternal(bool shape_applied) { /* See if the armature has been updated for this frame */ if (PoseUpdated()){ @@ -182,12 +182,14 @@ bool BL_SkinDeformer::Update(void) /* but it requires the blender object pointer... */ Object* par_arma = m_armobj->GetArmatureObject(); - /* store verts locally */ - VerifyStorage(); - - /* duplicate */ - for (int v =0; vtotvert; v++) - VECCOPY(m_transverts[v], m_bmesh->mvert[v].co); + if(!shape_applied) { + /* store verts locally */ + VerifyStorage(); + + /* duplicate */ + for (int v =0; vtotvert; v++) + VECCOPY(m_transverts[v], m_bmesh->mvert[v].co); + } m_armobj->ApplyPose(); @@ -219,6 +221,11 @@ bool BL_SkinDeformer::Update(void) return false; } +bool BL_SkinDeformer::Update(void) +{ + return UpdateInternal(false); +} + /* XXX note: I propose to drop this function */ void BL_SkinDeformer::SetArmature(BL_ArmatureObject *armobj) { diff --git a/source/gameengine/Converter/BL_SkinDeformer.h b/source/gameengine/Converter/BL_SkinDeformer.h index b83895d5609..9c6f5db2b95 100644 --- a/source/gameengine/Converter/BL_SkinDeformer.h +++ b/source/gameengine/Converter/BL_SkinDeformer.h @@ -72,6 +72,7 @@ public: virtual ~BL_SkinDeformer(); bool Update (void); + bool UpdateInternal (bool shape_applied); bool Apply (class RAS_IPolyMaterial *polymat); bool UpdateBuckets(void) { From 76879599f529095e1831e498bc5d095307d9611a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 22 Oct 2009 09:48:44 +0000 Subject: [PATCH 154/412] Shape Key UI * Curves/Surfaces now have the shape key panel as well, this is new compared to 2.4x. * The previous commit also fixed curve tilt blending for relative keys, this was writing to the wrong memory location. * Minor button tweaks --- release/scripts/ui/buttons_data_mesh.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index a11fb27e1f6..5ae004514bd 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -105,7 +105,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): __label__ = "Shape Keys" def poll(self, context): - return (context.object and context.object.type in ('MESH', 'LATTICE')) + return (context.object and context.object.type in ('MESH', 'LATTICE', 'CURVE', 'SURFACE')) def draw(self, context): layout = self.layout @@ -122,9 +122,9 @@ class DATA_PT_shape_keys(DataButtonsPanel): subcol = col.column(align=True) subcol.itemO("object.shape_key_add", icon='ICON_ZOOMIN', text="") subcol.itemO("object.shape_key_remove", icon='ICON_ZOOMOUT', text="") - subcol.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") if kb: + subcol.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") col.itemS() @@ -160,7 +160,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): sub.itemR(kb, "slider_min", text="Min") sub.itemR(kb, "slider_max", text="Max") - sub = split.column() + sub = split.column(align=True) sub.itemL(text="Blend:") sub.item_pointerR(kb, "vertex_group", ob, "vertex_groups", text="") sub.item_pointerR(kb, "relative_key", key, "keys", text="") @@ -224,3 +224,4 @@ bpy.types.register(DATA_PT_vertex_groups) bpy.types.register(DATA_PT_shape_keys) bpy.types.register(DATA_PT_uv_texture) bpy.types.register(DATA_PT_vertex_colors) + From a407a21bfb08632f2384b5b07eea945a107b1945 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 22 Oct 2009 12:59:14 +0000 Subject: [PATCH 155/412] added back face mask mouse selection and made shift+k fill weight paint and vertex color --- source/blender/editors/include/ED_mesh.h | 1 + source/blender/editors/mesh/editface.c | 43 +++++---- .../editors/sculpt_paint/paint_image.c | 5 ++ .../editors/sculpt_paint/paint_intern.h | 13 ++- .../blender/editors/sculpt_paint/paint_ops.c | 19 ++-- .../editors/sculpt_paint/paint_vertex.c | 88 ++++++++++++------- .../editors/space_view3d/view3d_select.c | 4 +- 7 files changed, 108 insertions(+), 65 deletions(-) diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 01444c0ecfb..991f87707c8 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -165,6 +165,7 @@ void EM_automerge(struct Scene *scene, struct Object *obedit, int update); /* editface.c */ struct MTFace *EM_get_active_mtface(struct EditMesh *em, struct EditFace **act_efa, struct MCol **mcol, int sloppy); +int face_select(struct bContext *C, struct Object *ob, short mval[2], int extend); /* object_vgroup.c */ diff --git a/source/blender/editors/mesh/editface.c b/source/blender/editors/mesh/editface.c index 8f9dea00a1b..3b15593916c 100644 --- a/source/blender/editors/mesh/editface.c +++ b/source/blender/editors/mesh/editface.c @@ -82,8 +82,6 @@ #include "mesh_intern.h" /* ***************** XXX **************** */ -static int sample_backbuf_rect() {return 0;} -static int sample_backbuf() {return 0;} static void error() {} static int pupmenu() {return 0;} /* ***************** XXX **************** */ @@ -118,25 +116,30 @@ void object_facesel_flush_dm(Object *ob) } /* returns 0 if not found, otherwise 1 */ -int facesel_face_pick(View3D *v3d, Mesh *me, short *mval, unsigned int *index, short rect) +int facesel_face_pick(struct bContext *C, Mesh *me, short *mval, unsigned int *index, short rect) { + ViewContext vc; + view3d_set_viewcontext(C, &vc); + if (!me || me->totface==0) return 0; - if (v3d->flag & V3D_NEEDBACKBUFDRAW) { +// XXX if (v3d->flag & V3D_NEEDBACKBUFDRAW) { // XXX drawview.c! check_backbuf(); // XXX persp(PERSP_VIEW); - } +// XXX } if (rect) { /* sample rect to increase changes of selecting, so that when clicking on an edge in the backbuf, we can still select a face */ + int dist; - *index = sample_backbuf_rect(mval, 3, 1, me->totface+1, &dist,0,NULL); + *index = view3d_sample_backbuf_rect(&vc, mval, 3, 1, me->totface+1, &dist,0,NULL, NULL); } - else + else { /* sample only on the exact position */ - *index = sample_backbuf(mval[0], mval[1]); + *index = view3d_sample_backbuf(&vc, mval[0], mval[1]); + } if ((*index)<=0 || (*index)>(unsigned int)me->totface) return 0; @@ -646,32 +649,25 @@ void seam_mark_clear_tface(Scene *scene, short mode) // XXX notifier! object_tface_flags_changed(OBACT, 1); } -void face_select(Scene *scene, View3D *v3d) +int face_select(struct bContext *C, Object *ob, short mval[2], int extend) { - Object *ob; Mesh *me; MFace *mface, *msel; - short mval[2]; unsigned int a, index; - int shift= 0; // XXX /* Get the face under the cursor */ - ob = OBACT; - if (!(ob->lay & v3d->lay)) { - error("The active object is not in this layer"); - } me = get_mesh(ob); -// XXX getmouseco_areawin(mval); - if (!facesel_face_pick(v3d, me, mval, &index, 1)) return; + if (!facesel_face_pick(C, me, mval, &index, 1)) + return 0; msel= (((MFace*)me->mface)+index); - if (msel->flag & ME_HIDE) return; + if (msel->flag & ME_HIDE) return 0; /* clear flags */ mface = me->mface; a = me->totface; - if ((shift)==0) { + if (!extend) { while (a--) { mface->flag &= ~ME_FACE_SEL; mface++; @@ -680,7 +676,7 @@ void face_select(Scene *scene, View3D *v3d) me->act_face = (int)index; - if (shift) { + if (extend) { if (msel->flag & ME_FACE_SEL) msel->flag &= ~ME_FACE_SEL; else @@ -690,8 +686,11 @@ void face_select(Scene *scene, View3D *v3d) /* image window redraw */ - object_facesel_flush_dm(OBACT); + object_facesel_flush_dm(ob); // XXX notifier! object_tface_flags_changed(OBACT, 1); + WM_event_add_notifier(C, NC_GEOM|ND_SELECT, ob->data); + ED_region_tag_redraw(CTX_wm_region(C)); // XXX - should redraw all 3D views + return 1; } void face_borderselect(Scene *scene, ScrArea *sa, ARegion *ar) diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index ebda56274ca..92ef8ae8fd1 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -5252,3 +5252,8 @@ void PAINT_OT_texture_paint_radial_control(wmOperatorType *ot) } +int facemask_paint_poll(bContext *C) +{ + Object *obact = CTX_data_active_object(C); + return paint_facesel_test(obact); +} diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h index 8251d1a5a1a..d1ecc3e4dc0 100644 --- a/source/blender/editors/sculpt_paint/paint_intern.h +++ b/source/blender/editors/sculpt_paint/paint_intern.h @@ -40,20 +40,21 @@ struct wmEvent; struct wmOperator; struct wmOperatorType; struct ARegion; +struct VPaint; /* paint_stroke.c */ typedef int (*StrokeTestStart)(struct bContext *C, struct wmOperator *op, struct wmEvent *event); typedef void (*StrokeUpdateStep)(struct bContext *C, struct PaintStroke *stroke, struct PointerRNA *itemptr); typedef void (*StrokeDone)(struct bContext *C, struct PaintStroke *stroke); -struct PaintStroke *paint_stroke_new(bContext *C, StrokeTestStart test_start, +struct PaintStroke *paint_stroke_new(struct bContext *C, StrokeTestStart test_start, StrokeUpdateStep update_step, StrokeDone done); int paint_stroke_modal(struct bContext *C, struct wmOperator *op, struct wmEvent *event); int paint_stroke_exec(struct bContext *C, struct wmOperator *op); struct ViewContext *paint_stroke_view_context(struct PaintStroke *stroke); void *paint_stroke_mode_data(struct PaintStroke *stroke); void paint_stroke_set_mode_data(struct PaintStroke *stroke, void *mode_data); -int paint_poll(bContext *C); +int paint_poll(struct bContext *C); void paint_cursor_start(struct bContext *C, int (*poll)(struct bContext *C)); /* paint_vertex.c */ @@ -61,16 +62,20 @@ int weight_paint_poll(struct bContext *C); int vertex_paint_poll(struct bContext *C); int vertex_paint_mode_poll(struct bContext *C); -void clear_vpaint(Scene *scene, int selected); +void vpaint_fill(struct Object *ob, unsigned int paintcol); +void wpaint_fill(struct VPaint *wp, struct Object *ob, float paintweight); void PAINT_OT_weight_paint_toggle(struct wmOperatorType *ot); void PAINT_OT_weight_paint_radial_control(struct wmOperatorType *ot); void PAINT_OT_weight_paint(struct wmOperatorType *ot); +void PAINT_OT_weight_set(struct wmOperatorType *ot); void PAINT_OT_vertex_paint_radial_control(struct wmOperatorType *ot); void PAINT_OT_vertex_paint_toggle(struct wmOperatorType *ot); void PAINT_OT_vertex_paint(struct wmOperatorType *ot); +unsigned int vpaint_get_current_col(struct VPaint *vp); + /* paint_image.c */ int image_texture_paint_poll(struct bContext *C); @@ -89,5 +94,7 @@ void imapaint_pick_uv(struct Scene *scene, struct Object *ob, struct Mesh *mesh, void paint_sample_color(struct Scene *scene, struct ARegion *ar, int x, int y); void BRUSH_OT_curve_preset(struct wmOperatorType *ot); +int facemask_paint_poll(struct bContext *C); + #endif /* ED_PAINT_INTERN_H */ diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c index 11dbeffdb22..8184471c8d8 100644 --- a/source/blender/editors/sculpt_paint/paint_ops.c +++ b/source/blender/editors/sculpt_paint/paint_ops.c @@ -28,6 +28,7 @@ #include "BKE_paint.h" #include "ED_sculpt.h" +#include "ED_screen.h" #include "UI_resources.h" #include "WM_api.h" @@ -52,7 +53,7 @@ static int brush_add_exec(bContext *C, wmOperator *op) if(br) paint_brush_set(paint_get_active(CTX_data_scene(C)), br); - + return OPERATOR_FINISHED; } @@ -81,11 +82,12 @@ void BRUSH_OT_add(wmOperatorType *ot) static int vertex_color_set_exec(bContext *C, wmOperator *op) { - int selected = RNA_boolean_get(op->ptr, "selected"); Scene *scene = CTX_data_scene(C); - - clear_vpaint(scene, selected); + Object *obact = CTX_data_active_object(C); + unsigned int paintcol = vpaint_get_current_col(scene->toolsettings->vpaint); + vpaint_fill(obact, paintcol); + ED_region_tag_redraw(CTX_wm_region(C)); // XXX - should redraw all 3D views return OPERATOR_FINISHED; } @@ -101,8 +103,6 @@ void PAINT_OT_vertex_color_set(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - - RNA_def_boolean(ot->srna, "selected", 0, "Type", "Only color selected faces."); } /**************************** registration **********************************/ @@ -126,6 +126,7 @@ void ED_operatortypes_paint(void) WM_operatortype_append(PAINT_OT_weight_paint_toggle); WM_operatortype_append(PAINT_OT_weight_paint_radial_control); WM_operatortype_append(PAINT_OT_weight_paint); + WM_operatortype_append(PAINT_OT_weight_set); /* vertex */ WM_operatortype_append(PAINT_OT_vertex_paint_radial_control); @@ -158,6 +159,9 @@ void ED_keymap_paint(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "PAINT_OT_vertex_paint", LEFTMOUSE, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "PAINT_OT_sample_color", RIGHTMOUSE, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, + "PAINT_OT_vertex_color_set",KKEY, KM_PRESS, KM_SHIFT, 0); + /* Weight Paint mode */ keymap= WM_keymap_find(keyconf, "Weight Paint", 0, 0); keymap->poll= weight_paint_poll; @@ -167,6 +171,9 @@ void ED_keymap_paint(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "PAINT_OT_weight_paint", LEFTMOUSE, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, + "PAINT_OT_weight_set", KKEY, KM_PRESS, KM_SHIFT, 0); + /* Image/Texture Paint mode */ keymap= WM_keymap_find(keyconf, "Image Paint", 0, 0); keymap->poll= image_texture_paint_poll; diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 4f38e1e0c84..1dac98780da 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -197,7 +197,7 @@ unsigned int rgba_to_mcol(float r, float g, float b, float a) } -static unsigned int vpaint_get_current_col(VPaint *vp) +unsigned int vpaint_get_current_col(VPaint *vp) { Brush *brush = paint_brush(&vp->paint); return rgba_to_mcol(brush->rgb[0], brush->rgb[1], brush->rgb[2], 1.0f); @@ -269,20 +269,13 @@ static void do_shared_vertexcol(Mesh *me) MEM_freeN(scolmain); } -void make_vertexcol(Scene *scene, int shade) /* single ob */ +static void make_vertexcol(Object *ob) /* single ob */ { - Object *ob; Mesh *me; - - if(scene->obedit) { - error("Unable to perform function in Edit Mode"); - return; - } - - ob= OBACT; if(!ob || ob->id.lib) return; me= get_mesh(ob); if(me==0) return; + if(me->edit_mesh) return; /* copies from shadedisplist to mcol */ if(!me->mcol) { @@ -290,10 +283,11 @@ void make_vertexcol(Scene *scene, int shade) /* single ob */ mesh_update_customdata_pointers(me); } - if(shade) - shadeMeshMCol(scene, ob, me); - else - memset(me->mcol, 255, 4*sizeof(MCol)*me->totface); + //if(shade) + // shadeMeshMCol(scene, ob, me); + //else + + memset(me->mcol, 255, 4*sizeof(MCol)*me->totface); DAG_id_flush_update(&me->id, OB_RECALC_DATA); @@ -330,22 +324,20 @@ static void copy_wpaint_prev (VPaint *wp, MDeformVert *dverts, int dcount) } -void clear_vpaint(Scene *scene, int selected) +void vpaint_fill(Object *ob, unsigned int paintcol) { Mesh *me; MFace *mf; - Object *ob; - unsigned int paintcol, *mcol; - int i; + unsigned int *mcol; + int i, selected; - ob= OBACT; me= get_mesh(ob); if(me==0 || me->totface==0) return; if(!me->mcol) - make_vertexcol(scene, 0); + make_vertexcol(ob); - paintcol= vpaint_get_current_col(scene->toolsettings->vpaint); + selected= (me->editflag & ME_EDIT_PAINT_MASK); mf = me->mface; mcol = (unsigned int*)me->mcol; @@ -363,30 +355,34 @@ void clear_vpaint(Scene *scene, int selected) /* fills in the selected faces with the current weight and vertex group */ -void clear_wpaint_selectedfaces(Scene *scene) +void wpaint_fill(VPaint *wp, Object *ob, float paintweight) { - ToolSettings *ts= scene->toolsettings; - VPaint *wp= ts->wpaint; - float paintweight= ts->vgroup_weight; Mesh *me; MFace *mface; - Object *ob; MDeformWeight *dw, *uw; int *indexar; int index, vgroup; unsigned int faceverts[5]={0,0,0,0,0}; unsigned char i; int vgroup_mirror= -1; + int selected; - ob= OBACT; me= ob->data; if(me==0 || me->totface==0 || me->dvert==0 || !me->mface) return; + selected= (me->editflag & ME_EDIT_PAINT_MASK); + indexar= get_indexarray(); - for(index=0, mface=me->mface; indextotface; index++, mface++) { - if((mface->flag & ME_FACE_SEL)==0) - indexar[index]= 0; - else + if(selected) { + for(index=0, mface=me->mface; indextotface; index++, mface++) { + if((mface->flag & ME_FACE_SEL)==0) + indexar[index]= 0; + else + indexar[index]= index+1; + } + } + else { + for(index=0; indextotface; index++) indexar[index]= index+1; } @@ -1528,6 +1524,32 @@ void PAINT_OT_weight_paint(wmOperatorType *ot) RNA_def_collection_runtime(ot->srna, "stroke", &RNA_OperatorStrokeElement, "Stroke", ""); } +static int weight_paint_set_exec(bContext *C, wmOperator *op) +{ + struct Scene *scene= CTX_data_scene(C); + Object *obact = CTX_data_active_object(C); + + wpaint_fill(scene->toolsettings->wpaint, obact, scene->toolsettings->vgroup_weight); + ED_region_tag_redraw(CTX_wm_region(C)); // XXX - should redraw all 3D views + return OPERATOR_FINISHED; +} + +void PAINT_OT_weight_set(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Weight Set"; + ot->idname= "PAINT_OT_weight_set"; + + /* api callbacks */ + ot->exec= weight_paint_set_exec; + ot->poll= facemask_paint_poll; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend selection instead of deselecting everything first."); +} + /* ************ set / clear vertex paint mode ********** */ @@ -1551,7 +1573,7 @@ static int set_vpaint(bContext *C, wmOperator *op) /* toggle */ return OPERATOR_FINISHED; } - if(me && me->mcol==NULL) make_vertexcol(scene, 0); + if(me && me->mcol==NULL) make_vertexcol(ob); /* toggle: end vpaint */ if(ob->mode & OB_MODE_VERTEX_PAINT) { @@ -1642,7 +1664,7 @@ static int vpaint_stroke_test_start(bContext *C, struct wmOperator *op, wmEvent me= get_mesh(ob); if(me==NULL || me->totface==0) return OPERATOR_PASS_THROUGH; - if(me->mcol==NULL) make_vertexcol(CTX_data_scene(C), 0); + if(me->mcol==NULL) make_vertexcol(ob); if(me->mcol==NULL) return OPERATOR_CANCELLED; /* make mode data storage */ diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 8dc7d6a0518..adb40a017ba 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -1631,7 +1631,9 @@ static int view3d_select_invoke(bContext *C, wmOperator *op, wmEvent *event) } else if(obact && obact->mode & OB_MODE_PARTICLE_EDIT) PE_mouse_particles(C, event->mval, extend); - else + else if(obact && paint_facesel_test(obact)) + face_select(C, obact, event->mval, extend); + else mouse_select(C, event->mval, extend, center, enumerate); /* allowing tweaks */ From d037061b68e2b2a1ec9c84a054c5cc5ff7ad0617 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 22 Oct 2009 14:40:32 +0000 Subject: [PATCH 156/412] after transform if strips overlap, move the frame rather then the channel to fix. useful while snap isnt working. metastrips still need to be supported. --- source/blender/blenkernel/BKE_sequence.h | 1 + source/blender/blenkernel/intern/sequence.c | 89 +++++++++++++++++-- .../editors/transform/transform_conversions.c | 37 +++++++- 3 files changed, 119 insertions(+), 8 deletions(-) diff --git a/source/blender/blenkernel/BKE_sequence.h b/source/blender/blenkernel/BKE_sequence.h index 55c9d978f26..fb3c282b090 100644 --- a/source/blender/blenkernel/BKE_sequence.h +++ b/source/blender/blenkernel/BKE_sequence.h @@ -182,6 +182,7 @@ int check_single_seq(struct Sequence *seq); void fix_single_seq(struct Sequence *seq); int seq_test_overlap(struct ListBase * seqbasep, struct Sequence *test); int shuffle_seq(struct ListBase * seqbasep, struct Sequence *test); +int shuffle_seq_time(ListBase * seqbasep); void free_imbuf_seq(struct ListBase * seqbasep, int check_mem_usage); void seq_update_sound(struct Sequence *seq); diff --git a/source/blender/blenkernel/intern/sequence.c b/source/blender/blenkernel/intern/sequence.c index 20433e4a3b1..48eb58687da 100644 --- a/source/blender/blenkernel/intern/sequence.c +++ b/source/blender/blenkernel/intern/sequence.c @@ -3341,18 +3341,25 @@ int seq_tx_test(Sequence * seq) return (seq->type < SEQ_EFFECT) || (get_sequence_effect_num_inputs(seq->type) == 0); } +static int seq_overlap(Sequence *seq1, Sequence *seq2) +{ + if(seq1 != seq2) + if(seq1->machine==seq2->machine) + if(((seq1->enddisp <= seq2->startdisp) || (seq1->startdisp >= seq2->enddisp))==0) + return 1; + + return 0; +} + int seq_test_overlap(ListBase * seqbasep, Sequence *test) { Sequence *seq; seq= seqbasep->first; while(seq) { - if(seq!=test) { - if(test->machine==seq->machine) { - if( (test->enddisp <= seq->startdisp) || (test->startdisp >= seq->enddisp) ); - else return 1; - } - } + if(seq_overlap(test, seq)) + return 1; + seq= seq->next; } return 0; @@ -3410,6 +3417,76 @@ int shuffle_seq(ListBase * seqbasep, Sequence *test) } } +static int shuffle_seq_time_offset_test(ListBase * seqbasep, char dir) +{ + int offset= 0; + Sequence *seq, *seq_other; + + for(seq= seqbasep->first; seq; seq= seq->next) { + if(seq->tmp) { + for(seq_other= seqbasep->first; seq_other; seq_other= seq_other->next) { + if(seq_overlap(seq, seq_other)) { + if(dir=='L') { + offset= MIN2(offset, seq_other->startdisp - seq->enddisp); + } + else { + offset= MAX2(offset, seq_other->enddisp - seq->startdisp); + } + } + } + } + } + return offset; +} + +static int shuffle_seq_time_offset(ListBase * seqbasep, char dir) +{ + int ofs= 0; + int tot_ofs= 0; + Sequence *seq; + while( (ofs= shuffle_seq_time_offset_test(seqbasep, dir)) ) { + for(seq= seqbasep->first; seq; seq= seq->next) { + if(seq->tmp) { + /* seq_test_overlap only tests display values */ + seq->startdisp += ofs; + seq->enddisp += ofs; + } + } + + tot_ofs+= ofs; + } + + for(seq= seqbasep->first; seq; seq= seq->next) { + if(seq->tmp) + calc_sequence_disp(seq); /* corrects dummy startdisp/enddisp values */ + } + + return tot_ofs; +} + +int shuffle_seq_time(ListBase * seqbasep) +{ + /* note: seq->tmp is used to tag strips to move */ + + Sequence *seq; + + int offset_l = shuffle_seq_time_offset(seqbasep, 'L'); + int offset_r = shuffle_seq_time_offset(seqbasep, 'R'); + int offset = (-offset_l < offset_r) ? offset_l:offset_r; + + if(offset) { + for(seq= seqbasep->first; seq; seq= seq->next) { + if(seq->tmp) { + seq_translate(seq, offset); + seq->flag &= ~SEQ_OVERLAP; + } + } + } + + return offset? 0:1; +} + + void seq_update_sound(struct Sequence *seq) { if(seq->type == SEQ_SOUND) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 71ce97b2d48..cdfdcaffb0d 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4039,7 +4039,6 @@ static int SeqToTransData_Recursive(TransInfo *t, ListBase *seqbase, TransData * return tot; } - static void freeSeqData(TransInfo *t) { Editing *ed= seq_give_editing(t->scene, FALSE); @@ -4058,16 +4057,50 @@ static void freeSeqData(TransInfo *t) if (!(t->state == TRANS_CANCEL)) { +#if 0 // default 2.4 behavior + /* flush to 2d vector from internally used 3d vector */ for(a=0; atotal; a++, td++) { - seq= ((TransDataSeq *)td->extra)->seq; if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { + seq= ((TransDataSeq *)td->extra)->seq; shuffle_seq(seqbasep, seq); } seq_prev= seq; } +#else // durian hack + { + int overlap= 0; + + for(a=0; atotal; a++, td++) { + seq_prev= NULL; + seq= ((TransDataSeq *)td->extra)->seq; + if ((seq != seq_prev) && (seq->depth==0) && (seq->flag & SEQ_OVERLAP)) { + overlap= 1; + break; + } + seq_prev= seq; + } + + if(overlap) { + for(seq= seqbasep->first; seq; seq= seq->next) + seq->tmp= NULL; + + td= t->data; + seq_prev= NULL; + for(a=0; atotal; a++, td++) { + seq= ((TransDataSeq *)td->extra)->seq; + if ((seq != seq_prev)) { + seq->tmp= 1; + } + } + + shuffle_seq_time(seqbasep); + } + } +#endif + for(seq= seqbasep->first; seq; seq= seq->next) { /* We might want to build a list of effects that need to be updated during transform */ if(seq->type & SEQ_EFFECT) { From fe823ce3ce37641615776d5e9663259722275391 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 22 Oct 2009 15:33:53 +0000 Subject: [PATCH 157/412] Fix for Texture Tab. Influence Panel got shown even when no active slot was selected, raised errors. --- release/scripts/ui/buttons_texture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 30262ea3415..1680a80bb6c 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -220,7 +220,7 @@ class TEXTURE_PT_mapping(TextureSlotPanel): class TEXTURE_PT_influence(TextureSlotPanel): __label__ = "Influence" def poll(self, context): - return 1 + return context.texture_slot def draw(self, context): From b06640c583ed9900223855004d8e9cd6947adf21 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 22 Oct 2009 16:21:06 +0000 Subject: [PATCH 158/412] changed WM_OT_context_* operators to pass through if one of the members in the path is None, rather then raising an error. This means if you refer to a member of an object it will fail silently if there is no active object, but if you use an invalid attribute of the object it raises an error. The method to check this is not nice but works well enough. also removed pageup/down keys for changing the active shape since listviews can do this now. --- release/scripts/modules/bpy_ops.py | 44 +++++++++++++++++++++- source/blender/editors/object/object_ops.c | 9 ----- 2 files changed, 42 insertions(+), 11 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 3471ca7be90..639b9836b0c 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -156,7 +156,29 @@ class MESH_OT_delete_edgeloop(bpy.types.Operator): rna_path_prop = bpy.props.StringProperty(attr="path", name="Context Attributes", description="rna context string", maxlen= 1024, default= "") rna_reverse_prop = bpy.props.BoolProperty(attr="reverse", name="Reverse", description="Cycle backwards", default= False) +class NullPathMember: + pass + +def context_path_validate(context, path): + import sys + try: + value = eval("context.%s" % path) + except AttributeError: + if "'NoneType'" in str(sys.exc_info()[1]): + # One of the items in the rna path is None, just ignore this + value = NullPathMember + else: + # We have a real error in the rna path, dont ignore that + raise + + return value + + + def execute_context_assign(self, context): + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + exec("context.%s=self.value" % self.path) return ('FINISHED',) @@ -201,6 +223,10 @@ class WM_OT_context_toggle(bpy.types.Operator): __label__ = "Context Toggle" __props__ = [rna_path_prop] def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + exec("context.%s=not (context.%s)" % (self.path, self.path)) # security nuts will complain. return ('FINISHED',) @@ -214,6 +240,10 @@ class WM_OT_context_toggle_enum(bpy.types.Operator): bpy.props.StringProperty(attr="value_2", name="Value", description="Toggle enum", maxlen= 1024, default= "") ] def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + exec("context.%s = ['%s', '%s'][context.%s!='%s']" % (self.path, self.value_1, self.value_2, self.path, self.value_2)) # security nuts will complain. return ('FINISHED',) @@ -223,7 +253,12 @@ class WM_OT_context_cycle_int(bpy.types.Operator): __label__ = "Context Int Cycle" __props__ = [rna_path_prop, rna_reverse_prop] def execute(self, context): - self.value = eval("context.%s" % self.path) + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + self.value = value if self.reverse: self.value -= 1 else: self.value += 1 execute_context_assign(self, context) @@ -242,7 +277,12 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): __label__ = "Context Enum Cycle" __props__ = [rna_path_prop, rna_reverse_prop] def execute(self, context): - orig_value = eval("context.%s" % self.path) # security nuts will complain. + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + orig_value = value # Have to get rna enum values rna_struct_str, rna_prop_str = self.path.rsplit('.', 1) diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 9e1811fe158..ff0566efbcf 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -292,15 +292,6 @@ void ED_keymap_object(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "GROUP_OT_objects_add_active", GKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_remove_active", GKEY, KM_PRESS, KM_SHIFT|KM_ALT, 0); - /* if 2.4x keys use these can be replaced, could also use page up/down keys to switch vgroups */ - kmi = WM_keymap_add_item(keymap, "WM_OT_context_cycle_int", PAGEUPKEY, KM_PRESS, 0, 0); - RNA_string_set(kmi->ptr, "path", "object.active_shape_key_index"); - RNA_boolean_set(kmi->ptr, "reverse", TRUE); - - kmi = WM_keymap_add_item(keymap, "WM_OT_context_cycle_int", PAGEDOWNKEY, KM_PRESS, 0, 0); - RNA_string_set(kmi->ptr, "path", "object.active_shape_key_index"); - - /* Lattice */ keymap= WM_keymap_find(keyconf, "Lattice", 0, 0); keymap->poll= ED_operator_editlattice; From 3ffb695b10bd85f7cd431f6144dbc2c427a365ee Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 22 Oct 2009 16:35:51 +0000 Subject: [PATCH 159/412] Shape Keys Blended shape keys can now be displayed & edited in edit mode. This is much like showing an armature modifier in edit mode, and shape keys now are a applied as a virtual modifier (for mesh & lattice only, curve doesn't fit in the stack well due to tilt). The main thing missing still is being able to switch between the active shape key in edit mode, that's more complicated.. but the weights of other shapes can be edited while in edit mode. One thing to be careful about is that this does automatic crazyspace correction, which means that if you edit a shape key with a low value, the actual vertices will be moved to correct for that and actually move a (potentially much) longer distance. Also includes some UI tweaks, mainly placing some buttons horizontally since the vertical list was getting too long. --- release/scripts/ui/buttons_data_mesh.py | 69 ++++++---- source/blender/blenkernel/BKE_key.h | 2 +- source/blender/blenkernel/BKE_modifier.h | 2 +- .../blender/blenkernel/intern/DerivedMesh.c | 15 +- source/blender/blenkernel/intern/displist.c | 4 +- source/blender/blenkernel/intern/key.c | 130 ++++++++++-------- source/blender/blenkernel/intern/lattice.c | 3 - source/blender/blenkernel/intern/modifier.c | 100 ++++++++++++-- source/blender/blenkernel/intern/particle.c | 1 + .../editors/interface/interface_layout.c | 4 +- .../editors/interface/interface_templates.c | 51 ++++--- .../blender/editors/object/object_shapekey.c | 15 +- .../editors/transform/transform_conversions.c | 2 +- source/blender/makesdna/DNA_modifier_types.h | 5 + source/blender/makesdna/DNA_object_types.h | 1 + source/blender/makesrna/intern/rna_object.c | 6 + source/blender/makesrna/intern/rna_ui.c | 2 +- .../gameengine/Converter/BL_ShapeDeformer.cpp | 2 +- 18 files changed, 275 insertions(+), 139 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 5ae004514bd..e29166a505f 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -71,9 +71,14 @@ class DATA_PT_vertex_groups(DataButtonsPanel): layout = self.layout ob = context.object + group = ob.active_vertex_group + + rows = 2 + if group: + rows= 5 row = layout.row() - row.template_list(ob, "vertex_groups", ob, "active_vertex_group_index", rows=2) + row.template_list(ob, "vertex_groups", ob, "active_vertex_group_index", rows=rows) col = row.column(align=True) col.itemO("object.vertex_group_add", icon='ICON_ZOOMIN', text="") @@ -83,7 +88,6 @@ class DATA_PT_vertex_groups(DataButtonsPanel): if ob.data.users > 1: col.itemO("object.vertex_group_copy_to_linked", icon='ICON_LINK_AREA', text="") - group = ob.active_vertex_group if group: row = layout.row() row.itemR(group, "name") @@ -114,8 +118,19 @@ class DATA_PT_shape_keys(DataButtonsPanel): key = ob.data.shape_keys kb = ob.active_shape_key + enable_edit = ob.mode != 'EDIT' + enable_edit_value = False + + if ob.shape_key_lock == False: + if enable_edit or (ob.type == 'MESH' and ob.shape_key_edit_mode): + enable_edit_value = True + row = layout.row() - row.template_list(key, "keys", ob, "active_shape_key_index", rows=2) + + rows = 2 + if kb: + rows= 5 + row.template_list(key, "keys", ob, "active_shape_key_index", rows=rows) col = row.column() @@ -124,57 +139,57 @@ class DATA_PT_shape_keys(DataButtonsPanel): subcol.itemO("object.shape_key_remove", icon='ICON_ZOOMOUT', text="") if kb: - subcol.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") - col.itemS() subcol = col.column(align=True) subcol.item_enumO("object.shape_key_move", "type", 'UP', icon='ICON_TRIA_UP', text="") subcol.item_enumO("object.shape_key_move", "type", 'DOWN', icon='ICON_TRIA_DOWN', text="") - - col.itemS() - subcol = col.column(align=True) - subcol.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") - subcol.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + split = layout.split(percentage=0.4) + sub = split.row() + sub.enabled = enable_edit + sub.itemR(key, "relative") + + sub = split.row() + sub.alignment = 'RIGHT' + + subrow = sub.row(align=True) + subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") + subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") + + sub.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") + + sub.itemR(ob, "shape_key_edit_mode", text="") + + row = layout.row() + row.enabled = enable_edit_value + row.itemR(kb, "name") if key.relative: - row = layout.row() - row.itemR(key, "relative") - row.itemL() - - row = layout.row() - row.itemR(kb, "name") - if ob.active_shape_key_index != 0: - row = layout.row() - row.enabled = ob.shape_key_lock == False + row.enabled = enable_edit_value row.itemR(kb, "value") - row.itemO("object.shape_key_clear", icon='ICON_X', text="") split = layout.split() sub = split.column(align=True) - sub.enabled = ob.shape_key_lock == False + sub.enabled = enable_edit_value sub.itemL(text="Range:") sub.itemR(kb, "slider_min", text="Min") sub.itemR(kb, "slider_max", text="Max") sub = split.column(align=True) + sub.enabled = enable_edit_value sub.itemL(text="Blend:") sub.item_pointerR(kb, "vertex_group", ob, "vertex_groups", text="") sub.item_pointerR(kb, "relative_key", key, "keys", text="") else: row = layout.row() - row.itemR(key, "relative") + row.enabled = enable_edit row.itemR(key, "slurph") - layout.itemR(kb, "name") - - if ob.mode == 'EDIT': - layout.enabled = False - class DATA_PT_uv_texture(DataButtonsPanel): __label__ = "UV Texture" diff --git a/source/blender/blenkernel/BKE_key.h b/source/blender/blenkernel/BKE_key.h index 59d7f99112e..b70801a9edd 100644 --- a/source/blender/blenkernel/BKE_key.h +++ b/source/blender/blenkernel/BKE_key.h @@ -64,7 +64,7 @@ struct KeyBlock *key_get_keyblock(struct Key *key, int index); struct KeyBlock *key_get_named_keyblock(struct Key *key, const char name[]); char *key_get_curValue_rnaPath(struct Key *key, struct KeyBlock *kb); // needed for the GE -void do_rel_key(int start, int end, int tot, char *basispoin, struct Key *key, int mode); +void do_rel_key(int start, int end, int tot, char *basispoin, struct Key *key, struct KeyBlock *actkb, int mode); #ifdef __cplusplus }; diff --git a/source/blender/blenkernel/BKE_modifier.h b/source/blender/blenkernel/BKE_modifier.h index 9957ced9555..245db7e35ff 100644 --- a/source/blender/blenkernel/BKE_modifier.h +++ b/source/blender/blenkernel/BKE_modifier.h @@ -293,7 +293,7 @@ void modifiers_foreachIDLink(struct Object *ob, struct ModifierData *modifiers_findByType(struct Object *ob, ModifierType type); void modifiers_clearErrors(struct Object *ob); int modifiers_getCageIndex(struct Object *ob, - int *lastPossibleCageIndex_r); + int *lastPossibleCageIndex_r, int virtual_); int modifiers_isSoftbodyEnabled(struct Object *ob); int modifiers_isClothEnabled(struct Object *ob); diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c index 59cf786af1e..11e58203bb3 100644 --- a/source/blender/blenkernel/intern/DerivedMesh.c +++ b/source/blender/blenkernel/intern/DerivedMesh.c @@ -1755,9 +1755,7 @@ static void mesh_calc_modifiers(Scene *scene, Object *ob, float (*inputVertexCos *final_r = NULL; if(useDeform) { - if(useDeform > 0) - deformedVerts= (float(*)[3])do_ob_key(scene, ob); /* shape key makes deform verts */ - else if(inputVertexCos) + if(inputVertexCos) deformedVerts = inputVertexCos; /* Apply all leading deforming modifiers */ @@ -2013,7 +2011,7 @@ static void editmesh_calc_modifiers(Scene *scene, Object *ob, EditMesh *em, Deri float (*deformedVerts)[3] = NULL; CustomDataMask mask; DerivedMesh *dm, *orcodm = NULL; - int i, numVerts = 0, cageIndex = modifiers_getCageIndex(ob, NULL); + int i, numVerts = 0, cageIndex = modifiers_getCageIndex(ob, NULL, 1); LinkNode *datamasks, *curr; int required_mode = eModifierMode_Realtime | eModifierMode_Editmode; @@ -2024,16 +2022,13 @@ static void editmesh_calc_modifiers(Scene *scene, Object *ob, EditMesh *em, Deri } dm = NULL; - md = ob->modifiers.first; + md = modifiers_getVirtualModifierList(ob); /* we always want to keep original indices */ dataMask |= CD_MASK_ORIGINDEX; datamasks = modifiers_calcDataMasks(ob, md, dataMask, required_mode); - /* doesn't work, shape keys are not updated from editmesh. - deformedVerts= (float(*)[3])do_ob_key(scene, ob); */ - curr = datamasks; for(i = 0; md; i++, md = md->next, curr = curr->next) { ModifierTypeInfo *mti = modifierType_getInfo(md->type); @@ -2463,13 +2458,13 @@ int editmesh_get_first_deform_matrices(Object *ob, EditMesh *em, float (**deform ModifierData *md; DerivedMesh *dm; int i, a, numleft = 0, numVerts = 0; - int cageIndex = modifiers_getCageIndex(ob, NULL); + int cageIndex = modifiers_getCageIndex(ob, NULL, 1); float (*defmats)[3][3] = NULL, (*deformedVerts)[3] = NULL; modifiers_clearErrors(ob); dm = NULL; - md = ob->modifiers.first; + md = modifiers_getVirtualModifierList(ob); /* compute the deformation matrices and coordinates for the first modifiers with on cage editing that are enabled and support computing diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c index 39b07cae2ab..64af08d6f6a 100644 --- a/source/blender/blenkernel/intern/displist.c +++ b/source/blender/blenkernel/intern/displist.c @@ -1260,7 +1260,9 @@ static void curve_calc_modifiers_pre(Scene *scene, Object *ob, int forRender, fl if(keyVerts) { /* split coords from key data, the latter also includes - tilts, which is passed through in the modifier stack */ + tilts, which is passed through in the modifier stack. + this is also the reason curves do not use a virtual + shape key modifier yet. */ deformedVerts= curve_getKeyVertexCos(cu, nurb, keyVerts); originalVerts= MEM_dupallocN(deformedVerts); } diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c index 78b9c04e4d2..61f51d61e0b 100644 --- a/source/blender/blenkernel/intern/key.c +++ b/source/blender/blenkernel/intern/key.c @@ -36,6 +36,7 @@ #include "MEM_guardedalloc.h" #include "BLI_blenlib.h" +#include "BLI_editVert.h" #include "DNA_anim_types.h" #include "DNA_curve_types.h" @@ -497,38 +498,41 @@ static void rel_flerp(int aantal, float *in, float *ref, float *out, float fac) } } -static void *key_block_get_data(Key *key, KeyBlock *kb) +static char *key_block_get_data(Key *key, KeyBlock *actkb, KeyBlock *kb, char **freedata) { - /* editmode shape key apply test */ -#if 0 - EditVert *eve; - Mesh *me; - float (*co)[3]; - int a; - - if(kb != key->refkey) { + if(kb == actkb) { + /* this hack makes it possible to edit shape keys in + edit mode with shape keys blending applied */ if(GS(key->from->name) == ID_ME) { + Mesh *me; + EditVert *eve; + float (*co)[3]; + int a; + me= (Mesh*)key->from; - if(me->edit_mesh) { + if(me->edit_mesh && me->edit_mesh->totvert == kb->totelem) { a= 0; - co= kb->data; + co= MEM_callocN(sizeof(float)*3*me->edit_mesh->totvert, "key_block_get_data"); for(eve=me->edit_mesh->verts.first; eve; eve=eve->next, a++) VECCOPY(co[a], eve->co); + + *freedata= (char*)co; + return (char*)co; } } } -#endif + *freedata= NULL; return kb->data; } -static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock *kb, float *weights, int mode) +static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock *actkb, KeyBlock *kb, float *weights, int mode) { float ktot = 0.0, kd = 0.0; int elemsize, poinsize = 0, a, *ofsp, ofs[32], flagflo=0; - char *k1, *kref; + char *k1, *kref, *freek1, *freekref; char *cp, elemstr[8]; if(key->from==NULL) return; @@ -553,9 +557,6 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(end>tot) end= tot; - k1= key_block_get_data(key, kb); - kref= key_block_get_data(key, key->refkey); - if(tot != kb->totelem) { ktot= 0.0; flagflo= 1; @@ -565,6 +566,9 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * else return; } + k1= key_block_get_data(key, actkb, kb, &freek1); + kref= key_block_get_data(key, actkb, key->refkey, &freekref); + /* this exception is needed for slurphing */ if(start!=0) { @@ -638,9 +642,12 @@ static void cp_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(mode==KEY_BEZTRIPLE) a+=2; } + + if(freek1) MEM_freeN(freek1); + if(freekref) MEM_freeN(freekref); } -static void cp_cu_key(Curve *cu, KeyBlock *kb, int start, int end, char *out, int tot) +static void cp_cu_key(Curve *cu, Key *key, KeyBlock *actkb, KeyBlock *kb, int start, int end, char *out, int tot) { Nurb *nu; char *poin; @@ -655,7 +662,7 @@ static void cp_cu_key(Curve *cu, KeyBlock *kb, int start, int end, char *out, in a1= MAX2(a, start); a2= MIN2(a+step, end); - if(a1key, kb, NULL, KEY_BPOINT); + if(a1bezt) { step= 3*nu->pntsu; @@ -664,7 +671,7 @@ static void cp_cu_key(Curve *cu, KeyBlock *kb, int start, int end, char *out, in a1= MAX2(a, start); a2= MIN2(a+step, end); - if(a1key, kb, NULL, KEY_BEZTRIPLE); + if(a1from==NULL) return; @@ -707,7 +715,7 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode if(mode==KEY_BEZTRIPLE) elemsize*= 3; /* step 1 init */ - cp_key(start, end, tot, basispoin, key, key->refkey, NULL, mode); + cp_key(start, end, tot, basispoin, key, actkb, key->refkey, NULL, mode); /* step 2: do it */ @@ -719,13 +727,14 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode if(!(kb->flag & KEYBLOCK_MUTE) && icuval!=0.0f && kb->totelem==tot) { KeyBlock *refb; float weight, *weights= kb->weights; - - poin= basispoin; - from= key_block_get_data(key, kb); + /* reference now can be any block */ refb= BLI_findlink(&key->block, kb->relative); if(refb==NULL) continue; - reffrom= key_block_get_data(key, refb); + + poin= basispoin; + from= key_block_get_data(key, actkb, kb, &freefrom); + reffrom= key_block_get_data(key, actkb, refb, &freereffrom); poin+= start*ofs[0]; reffrom+= key->elemsize*start; // key elemsize yes! @@ -769,19 +778,22 @@ void do_rel_key(int start, int end, int tot, char *basispoin, Key *key, int mode if(mode==KEY_BEZTRIPLE) b+= 2; if(weights) weights++; } + + if(freefrom) MEM_freeN(freefrom); + if(freereffrom) MEM_freeN(freereffrom); } } } } -static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock **k, float *t, int mode) +static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock *actkb, KeyBlock **k, float *t, int mode) { float k1tot = 0.0, k2tot = 0.0, k3tot = 0.0, k4tot = 0.0; float k1d = 0.0, k2d = 0.0, k3d = 0.0, k4d = 0.0; int a, ofs[32], *ofsp; int flagdo= 15, flagflo=0, elemsize, poinsize=0; - char *k1, *k2, *k3, *k4; + char *k1, *k2, *k3, *k4, *freek1, *freek2, *freek3, *freek4; char *cp, elemstr[8];; if(key->from==0) return; @@ -806,10 +818,10 @@ static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(end>tot) end= tot; - k1= key_block_get_data(key, k[0]); - k2= key_block_get_data(key, k[1]); - k3= key_block_get_data(key, k[2]); - k4= key_block_get_data(key, k[3]); + k1= key_block_get_data(key, actkb, k[0], &freek1); + k2= key_block_get_data(key, actkb, k[1], &freek2); + k3= key_block_get_data(key, actkb, k[2], &freek3); + k4= key_block_get_data(key, actkb, k[3], &freek4); /* test for more or less points (per key!) */ if(tot != k[0]->totelem) { @@ -975,6 +987,11 @@ static void do_key(int start, int end, int tot, char *poin, Key *key, KeyBlock * if(mode==KEY_BEZTRIPLE) a+= 2; } + + if(freek1) MEM_freeN(freek1); + if(freek2) MEM_freeN(freek2); + if(freek3) MEM_freeN(freek3); + if(freek4) MEM_freeN(freek4); } static float *get_weights_array(Object *ob, char *vgroup) @@ -1026,7 +1043,7 @@ static float *get_weights_array(Object *ob, char *vgroup) static void do_mesh_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { - KeyBlock *k[4]; + KeyBlock *k[4], *actkb= ob_get_keyblock(ob); float cfra, ctime, t[4], delta; int a, flag = 0, step; @@ -1059,9 +1076,9 @@ static void do_mesh_key(Scene *scene, Object *ob, Key *key, char *out, int tot) flag= setkeys(ctime, &key->block, k, t, 0); if(flag==0) - do_key(a, a+step, tot, (char *)out, key, k, t, 0); + do_key(a, a+step, tot, (char *)out, key, actkb, k, t, 0); else - cp_key(a, a+step, tot, (char *)out, key, k[2], NULL, 0); + cp_key(a, a+step, tot, (char *)out, key, actkb, k[2], NULL, 0); } } else { @@ -1071,7 +1088,7 @@ static void do_mesh_key(Scene *scene, Object *ob, Key *key, char *out, int tot) for(kb= key->block.first; kb; kb= kb->next) kb->weights= get_weights_array(ob, kb->vgroup); - do_rel_key(0, tot, tot, (char *)out, key, 0); + do_rel_key(0, tot, tot, (char *)out, key, actkb, 0); for(kb= key->block.first; kb; kb= kb->next) { if(kb->weights) MEM_freeN(kb->weights); @@ -1094,14 +1111,14 @@ static void do_mesh_key(Scene *scene, Object *ob, Key *key, char *out, int tot) flag= setkeys(ctime, &key->block, k, t, 0); if(flag==0) - do_key(0, tot, tot, (char *)out, key, k, t, 0); + do_key(0, tot, tot, (char *)out, key, actkb, k, t, 0); else - cp_key(0, tot, tot, (char *)out, key, k[2], NULL, 0); + cp_key(0, tot, tot, (char *)out, key, actkb, k[2], NULL, 0); } } } -static void do_cu_key(Curve *cu, KeyBlock **k, float *t, char *out, int tot) +static void do_cu_key(Curve *cu, Key *key, KeyBlock *actkb, KeyBlock **k, float *t, char *out, int tot) { Nurb *nu; char *poin; @@ -1111,19 +1128,19 @@ static void do_cu_key(Curve *cu, KeyBlock **k, float *t, char *out, int tot) if(nu->bp) { step= nu->pntsu*nu->pntsv; poin= out - a*sizeof(float)*4; - do_key(a, a+step, tot, poin, cu->key, k, t, KEY_BPOINT); + do_key(a, a+step, tot, poin, key, actkb, k, t, KEY_BPOINT); } else if(nu->bezt) { step= 3*nu->pntsu; poin= out - a*sizeof(float)*10; - do_key(a, a+step, tot, poin, cu->key, k, t, KEY_BEZTRIPLE); + do_key(a, a+step, tot, poin, key, actkb, k, t, KEY_BEZTRIPLE); } else step= 0; } } -static void do_rel_cu_key(Curve *cu, float ctime, char *out, int tot) +static void do_rel_cu_key(Curve *cu, Key *key, KeyBlock *actkb, float ctime, char *out, int tot) { Nurb *nu; char *poin; @@ -1133,12 +1150,12 @@ static void do_rel_cu_key(Curve *cu, float ctime, char *out, int tot) if(nu->bp) { step= nu->pntsu*nu->pntsv; poin= out - a*sizeof(float)*3; - do_rel_key(a, a+step, tot, out, cu->key, KEY_BPOINT); + do_rel_key(a, a+step, tot, out, key, actkb, KEY_BPOINT); } else if(nu->bezt) { step= 3*nu->pntsu; poin= out - a*sizeof(float)*10; - do_rel_key(a, a+step, tot, poin, cu->key, KEY_BEZTRIPLE); + do_rel_key(a, a+step, tot, poin, key, actkb, KEY_BEZTRIPLE); } else step= 0; @@ -1148,7 +1165,7 @@ static void do_rel_cu_key(Curve *cu, float ctime, char *out, int tot) static void do_curve_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { Curve *cu= ob->data; - KeyBlock *k[4]; + KeyBlock *k[4], *actkb= ob_get_keyblock(ob); float cfra, ctime, t[4], delta; int a, flag = 0, step = 0; @@ -1187,7 +1204,7 @@ static void do_curve_key(Scene *scene, Object *ob, Key *key, char *out, int tot) ctime= bsystem_time(scene, NULL, (float)scene->r.cfra, 0.0); if(key->type==KEY_RELATIVE) { - do_rel_cu_key(cu, ctime, out, tot); + do_rel_cu_key(cu, cu->key, actkb, ctime, out, tot); } else { #if 0 // XXX old animation system @@ -1199,8 +1216,8 @@ static void do_curve_key(Scene *scene, Object *ob, Key *key, char *out, int tot) flag= setkeys(ctime, &key->block, k, t, 0); - if(flag==0) do_cu_key(cu, k, t, out, tot); - else cp_cu_key(cu, k[2], 0, tot, out, tot); + if(flag==0) do_cu_key(cu, key, actkb, k, t, out, tot); + else cp_cu_key(cu, key, actkb, k[2], 0, tot, out, tot); } } } @@ -1208,7 +1225,7 @@ static void do_curve_key(Scene *scene, Object *ob, Key *key, char *out, int tot) static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) { Lattice *lt= ob->data; - KeyBlock *k[4]; + KeyBlock *k[4], *actkb= ob_get_keyblock(ob); float delta, cfra, ctime, t[4]; int a, flag; @@ -1231,9 +1248,9 @@ static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) flag= setkeys(ctime, &key->block, k, t, 0); if(flag==0) - do_key(a, a+1, tot, (char *)out, key, k, t, 0); + do_key(a, a+1, tot, (char *)out, key, actkb, k, t, 0); else - cp_key(a, a+1, tot, (char *)out, key, k[2], NULL, 0); + cp_key(a, a+1, tot, (char *)out, key, actkb, k[2], NULL, 0); } } else { @@ -1243,7 +1260,7 @@ static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) for(kb= key->block.first; kb; kb= kb->next) kb->weights= get_weights_array(ob, kb->vgroup); - do_rel_key(0, tot, tot, (char *)out, key, 0); + do_rel_key(0, tot, tot, (char *)out, key, actkb, 0); for(kb= key->block.first; kb; kb= kb->next) { if(kb->weights) MEM_freeN(kb->weights); @@ -1263,9 +1280,9 @@ static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) flag= setkeys(ctime, &key->block, k, t, 0); if(flag==0) - do_key(0, tot, tot, (char *)out, key, k, t, 0); + do_key(0, tot, tot, (char *)out, key, actkb, k, t, 0); else - cp_key(0, tot, tot, (char *)out, key, k[2], NULL, 0); + cp_key(0, tot, tot, (char *)out, key, actkb, k[2], NULL, 0); } } @@ -1276,6 +1293,7 @@ static void do_latt_key(Scene *scene, Object *ob, Key *key, char *out, int tot) float *do_ob_key(Scene *scene, Object *ob) { Key *key= ob_get_key(ob); + KeyBlock *actkb= ob_get_keyblock(ob); char *out; int tot= 0, size= 0; @@ -1336,12 +1354,12 @@ float *do_ob_key(Scene *scene, Object *ob) if(ELEM(ob->type, OB_MESH, OB_LATTICE)) { float *weights= get_weights_array(ob, kb->vgroup); - cp_key(0, tot, tot, (char*)out, key, kb, weights, 0); + cp_key(0, tot, tot, (char*)out, key, actkb, kb, weights, 0); if(weights) MEM_freeN(weights); } else if(ELEM(ob->type, OB_CURVE, OB_SURF)) - cp_cu_key(ob->data, kb, 0, tot, out, tot); + cp_cu_key(ob->data, key, actkb, kb, 0, tot, out, tot); } else { /* do shapekey local drivers */ diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c index 128d3229a3c..c53101299c6 100644 --- a/source/blender/blenkernel/intern/lattice.c +++ b/source/blender/blenkernel/intern/lattice.c @@ -995,9 +995,6 @@ void lattice_calc_modifiers(Scene *scene, Object *ob) freedisplist(&ob->disp); - if (!editmode) - vertexCos= (float(*)[3])do_ob_key(scene, ob); - for (; md; md=md->next) { ModifierTypeInfo *mti = modifierType_getInfo(md->type); diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c index c4de67014b4..a445b6986f6 100644 --- a/source/blender/blenkernel/intern/modifier.c +++ b/source/blender/blenkernel/intern/modifier.c @@ -60,6 +60,7 @@ #include "DNA_curve_types.h" #include "DNA_effect_types.h" #include "DNA_group_types.h" +#include "DNA_key_types.h" #include "DNA_material_types.h" #include "DNA_mesh_types.h" #include "DNA_meshdata_types.h" @@ -92,6 +93,7 @@ #include "BKE_fluidsim.h" #include "BKE_global.h" #include "BKE_multires.h" +#include "BKE_key.h" #include "BKE_lattice.h" #include "BKE_library.h" #include "BKE_material.h" @@ -8341,6 +8343,52 @@ static void simpledeformModifier_deformVertsEM(ModifierData *md, Object *ob, Edi dm->release(dm); } +/* Shape Key */ + +static void shapekeyModifier_deformVerts( + ModifierData *md, Object *ob, DerivedMesh *derivedData, + float (*vertexCos)[3], int numVerts, int useRenderParams, int isFinalCalc) +{ + KeyBlock *kb= ob_get_keyblock(ob); + float (*deformedVerts)[3]; + + if(kb && kb->totelem == numVerts) { + deformedVerts= (float(*)[3])do_ob_key(md->scene, ob); + if(deformedVerts) { + memcpy(vertexCos, deformedVerts, sizeof(float)*3*numVerts); + MEM_freeN(deformedVerts); + } + } +} + +static void shapekeyModifier_deformVertsEM( + ModifierData *md, Object *ob, EditMesh *editData, + DerivedMesh *derivedData, float (*vertexCos)[3], int numVerts) +{ + Key *key= ob_get_key(ob); + + if(key && key->type == KEY_RELATIVE) + shapekeyModifier_deformVerts(md, ob, derivedData, vertexCos, numVerts, 0, 0); +} + +static void shapekeyModifier_deformMatricesEM( + ModifierData *md, Object *ob, EditMesh *editData, + DerivedMesh *derivedData, float (*vertexCos)[3], + float (*defMats)[3][3], int numVerts) +{ + Key *key= ob_get_key(ob); + KeyBlock *kb= ob_get_keyblock(ob); + float scale[3][3]; + int a; + + if(kb && kb->totelem==numVerts && kb!=key->refkey) { + Mat3Scale(scale, kb->curval); + + for(a=0; acopyData = multiresModifier_copyData; mti->applyModifier = multiresModifier_applyModifier; + mti = INIT_TYPE(ShapeKey); + mti->type = eModifierTypeType_OnlyDeform; + mti->flags = eModifierTypeFlag_AcceptsCVs + | eModifierTypeFlag_SupportsEditmode; + mti->deformVerts = shapekeyModifier_deformVerts; + mti->deformVertsEM = shapekeyModifier_deformVertsEM; + mti->deformMatricesEM = shapekeyModifier_deformMatricesEM; + typeArrInit = 0; #undef INIT_TYPE } @@ -8909,9 +8965,9 @@ void modifier_setError(ModifierData *md, char *format, ...) * also used in transform_conversion.c, to detect CrazySpace [tm] (2nd arg * then is NULL) */ -int modifiers_getCageIndex(Object *ob, int *lastPossibleCageIndex_r) +int modifiers_getCageIndex(Object *ob, int *lastPossibleCageIndex_r, int virtual_) { - ModifierData *md = ob->modifiers.first; + ModifierData *md = (virtual_)? modifiers_getVirtualModifierList(ob): ob->modifiers.first; int i, cageIndex = -1; /* Find the last modifier acting on the cage. */ @@ -9020,11 +9076,11 @@ ModifierData *modifiers_getVirtualModifierList(Object *ob) static ArmatureModifierData amd; static CurveModifierData cmd; static LatticeModifierData lmd; + static ShapeKeyModifierData smd; static int init = 1; + ModifierData *md; if (init) { - ModifierData *md; - md = modifier_new(eModifierType_Armature); amd = *((ArmatureModifierData*) md); modifier_free(md); @@ -9037,32 +9093,50 @@ ModifierData *modifiers_getVirtualModifierList(Object *ob) lmd = *((LatticeModifierData*) md); modifier_free(md); + md = modifier_new(eModifierType_ShapeKey); + smd = *((ShapeKeyModifierData*) md); + modifier_free(md); + amd.modifier.mode |= eModifierMode_Virtual; cmd.modifier.mode |= eModifierMode_Virtual; lmd.modifier.mode |= eModifierMode_Virtual; + smd.modifier.mode |= eModifierMode_Virtual; init = 0; } - if (ob->parent) { + md = ob->modifiers.first; + + if(ob->parent) { if(ob->parent->type==OB_ARMATURE && ob->partype==PARSKEL) { amd.object = ob->parent; - amd.modifier.next = ob->modifiers.first; + amd.modifier.next = md; amd.deformflag= ((bArmature *)(ob->parent->data))->deformflag; - return &amd.modifier; + md = &amd.modifier; } else if(ob->parent->type==OB_CURVE && ob->partype==PARSKEL) { cmd.object = ob->parent; cmd.defaxis = ob->trackflag + 1; - cmd.modifier.next = ob->modifiers.first; - return &cmd.modifier; + cmd.modifier.next = md; + md = &cmd.modifier; } else if(ob->parent->type==OB_LATTICE && ob->partype==PARSKEL) { lmd.object = ob->parent; - lmd.modifier.next = ob->modifiers.first; - return &lmd.modifier; + lmd.modifier.next = md; + md = &lmd.modifier; } } - return ob->modifiers.first; + /* shape key modifier, not yet for curves */ + if(ELEM(ob->type, OB_MESH, OB_LATTICE) && ob_get_key(ob)) { + if(ob->type == OB_MESH && (ob->shapeflag & OB_SHAPE_EDIT_MODE)) + smd.modifier.mode |= eModifierMode_Editmode|eModifierMode_OnCage; + else + smd.modifier.mode &= ~eModifierMode_Editmode|eModifierMode_OnCage; + + smd.modifier.next = md; + md = &smd.modifier; + } + + return md; } /* Takes an object and returns its first selected armature, else just its * armature @@ -9139,6 +9213,8 @@ int modifier_isDeformer(ModifierData *md) return 1; if (md->type==eModifierType_Lattice) return 1; + if (md->type==eModifierType_ShapeKey) + return 1; return 0; } diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index 322904136ea..feec4866a18 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -3828,6 +3828,7 @@ void psys_get_particle_on_path(ParticleSimulationData *sim, int p, ParticleKey * pind.keyed = keyed; pind.cache = cached ? psys->pointcache : NULL; pind.epoint = NULL; + pind.bspline = (psys->part->flag & PART_HAIR_BSPLINE); pind.dm = psys->hair_out_dm; init_particle_interpolation(sim->ob, psys, pa, &pind); do_particle_interpolation(psys, p, pa, t, frs_sec, &pind, state); diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 10449a1133e..41a0ad7d4b0 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -1503,11 +1503,11 @@ static void ui_litem_layout_row(uiLayout *litem) /* align right/center */ offset= 0; if(litem->alignment == UI_LAYOUT_ALIGN_RIGHT) { - if(fixedw == 0 && freew < w-fixedw) + if(freew > 0 && freew < w-fixedw) offset= (w - fixedw) - freew; } else if(litem->alignment == UI_LAYOUT_ALIGN_CENTER) { - if(fixedw == 0 && freew < w-fixedw) + if(freew > 0 && freew < w-fixedw) offset= ((w - fixedw) - freew)/2; } diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index 960574ae8a9..75ae475435a 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -506,7 +506,7 @@ static void modifiers_setOnCage(bContext *C, void *ob_v, void *md_v) { Object *ob = ob_v; ModifierData *md= md_v; - int i, cageIndex = modifiers_getCageIndex(ob, NULL ); + int i, cageIndex = modifiers_getCageIndex(ob, NULL, 0); /* undo button operation */ md->mode ^= eModifierMode_OnCage; @@ -715,7 +715,7 @@ uiLayout *uiTemplateModifier(uiLayout *layout, PointerRNA *ptr) uiBlockSetButLock(uiLayoutGetBlock(layout), (ob && ob->id.lib), ERROR_LIBDATA_MESSAGE); /* find modifier and draw it */ - cageIndex = modifiers_getCageIndex(ob, &lastCageIndex); + cageIndex = modifiers_getCageIndex(ob, &lastCageIndex, 0); // XXX virtual modifiers are not accesible for python vmd = modifiers_getVirtualModifierList(ob); @@ -1955,13 +1955,30 @@ static int list_item_icon_get(bContext *C, PointerRNA *itemptr, int rnaicon) return rnaicon; } -static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, PointerRNA *itemptr, int i, int rnaicon) +static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, PointerRNA *itemptr, int i, int rnaicon, PointerRNA *activeptr, char *activepropname) { + Object *ob; uiBlock *block= uiLayoutGetBlock(layout); - uiLayout *split; + uiBut *but; + uiLayout *split, *overlap, *sub; char *name, *namebuf; int icon; + overlap= uiLayoutOverlap(layout); + + /* list item behind label & other buttons */ + sub= uiLayoutRow(overlap, 0); + + if(itemptr->type == &RNA_ShapeKey) { + ob= (Object*)activeptr->data; + uiLayoutSetEnabled(sub, ob->mode != OB_MODE_EDIT); + } + + but= uiDefButR(block, LISTROW, 0, "", 0,0, UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); + uiButSetFlag(but, UI_BUT_NO_TOOLTIP); + + sub= uiLayoutRow(overlap, 0); + /* retrieve icon and name */ icon= list_item_icon_get(C, itemptr, rnaicon); if(!icon || icon == ICON_DOT) @@ -1974,24 +1991,28 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe uiBlockSetEmboss(block, UI_EMBOSSN); if(itemptr->type == &RNA_MeshTextureFaceLayer || itemptr->type == &RNA_MeshColorLayer) { - uiItemL(layout, name, icon); + uiItemL(sub, name, icon); uiDefIconButR(block, TOG, 0, ICON_SCENE, 0, 0, UI_UNIT_X, UI_UNIT_Y, itemptr, "active_render", 0, 0, 0, 0, 0, NULL); } else if(itemptr->type == &RNA_MaterialTextureSlot) { - uiItemL(layout, name, icon); + uiItemL(sub, name, icon); uiDefButR(block, OPTION, 0, "", 0, 0, UI_UNIT_X, UI_UNIT_Y, ptr, "use_textures", i, 0, 0, 0, 0, NULL); } else if(itemptr->type == &RNA_ShapeKey) { - split= uiLayoutSplit(layout, 0.75f); + ob= (Object*)activeptr->data; + + split= uiLayoutSplit(sub, 0.75f); uiItemL(split, name, icon); if(i == 0) uiItemL(split, "", 0); else uiItemR(split, "", 0, itemptr, "value", 0); + if(ob->mode == OB_MODE_EDIT && !(ob->shapeflag & OB_SHAPE_EDIT_MODE)) + uiLayoutSetEnabled(split, 0); //uiItemR(split, "", ICON_MUTE_IPO_OFF, itemptr, "mute", 0); } else - uiItemL(layout, name, icon); + uiItemL(sub, name, icon); uiBlockSetEmboss(block, UI_EMBOSS); @@ -2006,7 +2027,7 @@ void uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *propna PropertyRNA *prop= NULL, *activeprop; PropertyType type, activetype; StructRNA *ptype; - uiLayout *box, *row, *col, *subrow, *overlap; + uiLayout *box, *row, *col; uiBlock *block; uiBut *but; Panel *pa; @@ -2151,16 +2172,8 @@ void uiTemplateList(uiLayout *layout, bContext *C, PointerRNA *ptr, char *propna if(ptr->data && prop) { /* create list items */ RNA_PROP_BEGIN(ptr, itemptr, prop) { - if(i >= pa->list_scroll && ilist_scroll+items) { - overlap= uiLayoutOverlap(col); - - subrow= uiLayoutRow(overlap, 0); - but= uiDefButR(block, LISTROW, 0, "", 0,0, UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); - uiButSetFlag(but, UI_BUT_NO_TOOLTIP); - - subrow= uiLayoutRow(overlap, 0); - list_item_row(C, subrow, ptr, &itemptr, i, rnaicon); - } + if(i >= pa->list_scroll && ilist_scroll+items) + list_item_row(C, col, ptr, &itemptr, i, rnaicon, activeptr, activepropname); i++; } diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 5f3d73ec348..4d4dd7a0738 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -544,6 +544,13 @@ static int ED_object_shape_key_mirror(bContext *C, Scene *scene, Object *ob) /********************** shape key operators *********************/ +static int shape_key_mode_poll(bContext *C) +{ + Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; + ID *data= (ob)? ob->data: NULL; + return (ob && !ob->id.lib && data && !data->lib && ob->mode != OB_MODE_EDIT); +} + static int shape_key_poll(bContext *C) { Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; @@ -569,7 +576,7 @@ void OBJECT_OT_shape_key_add(wmOperatorType *ot) ot->idname= "OBJECT_OT_shape_key_add"; /* api callbacks */ - ot->poll= shape_key_poll; + ot->poll= shape_key_mode_poll; ot->exec= shape_key_add_exec; /* flags */ @@ -594,7 +601,7 @@ void OBJECT_OT_shape_key_remove(wmOperatorType *ot) ot->idname= "OBJECT_OT_shape_key_remove"; /* api callbacks */ - ot->poll= shape_key_poll; + ot->poll= shape_key_mode_poll; ot->exec= shape_key_remove_exec; /* flags */ @@ -652,7 +659,7 @@ void OBJECT_OT_shape_key_mirror(wmOperatorType *ot) ot->idname= "OBJECT_OT_shape_key_mirror"; /* api callbacks */ - ot->poll= shape_key_poll; + ot->poll= shape_key_mode_poll; ot->exec= shape_key_mirror_exec; /* flags */ @@ -710,7 +717,7 @@ void OBJECT_OT_shape_key_move(wmOperatorType *ot) ot->idname= "OBJECT_OT_shape_key_move"; /* api callbacks */ - ot->poll= shape_key_poll; + ot->poll= shape_key_mode_poll; ot->exec= shape_key_move_exec; /* flags */ diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index cdfdcaffb0d..cefb7741658 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -2199,7 +2199,7 @@ static void createTransEditVerts(bContext *C, TransInfo *t) /* detect CrazySpace [tm] */ if(propmode==0) { - if(modifiers_getCageIndex(t->obedit, NULL)>=0) { + if(modifiers_getCageIndex(t->obedit, NULL, 1)>=0) { if(modifiers_isDeformed(t->scene, t->obedit)) { /* check if we can use deform matrices for modifier from the start up to stack, they are more accurate than quats */ diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index 7c76a5c099d..db1c261556b 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -63,6 +63,7 @@ typedef enum ModifierType { eModifierType_Multires, eModifierType_Surface, eModifierType_Smoke, + eModifierType_ShapeKey, NUM_MODIFIER_TYPES } ModifierType; @@ -663,4 +664,8 @@ typedef struct SimpleDeformModifierData { #define MOD_UVPROJECT_MAX 10 +typedef struct ShapeKeyModifierData { + ModifierData modifier; +} ShapeKeyModifierData; + #endif diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h index 4cf78c83cd0..267e0192247 100644 --- a/source/blender/makesdna/DNA_object_types.h +++ b/source/blender/makesdna/DNA_object_types.h @@ -500,6 +500,7 @@ extern Object workob; /* ob->shapeflag */ #define OB_SHAPE_LOCK 1 #define OB_SHAPE_TEMPLOCK 2 // deprecated +#define OB_SHAPE_EDIT_MODE 4 /* ob->nlaflag */ // XXX depreceated - old animation system diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 3fb132b24fd..f81e3d5d665 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -1642,6 +1642,12 @@ static void rna_def_object(BlenderRNA *brna) RNA_def_property_ui_icon(prop, ICON_UNPINNED, 1); RNA_def_property_update(prop, 0, "rna_Object_update_data"); + prop= RNA_def_property(srna, "shape_key_edit_mode", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "shapeflag", OB_SHAPE_EDIT_MODE); + RNA_def_property_ui_text(prop, "Shape Key Edit Mode", "Apply shape keys in edit mode (for Meshes only)."); + RNA_def_property_ui_icon(prop, ICON_EDITMODE_HLT, 0); + RNA_def_property_update(prop, 0, "rna_Object_update_data"); + prop= RNA_def_property(srna, "active_shape_key", PROP_POINTER, PROP_NONE); RNA_def_property_struct_type(prop, "ShapeKey"); RNA_def_property_pointer_funcs(prop, "rna_Object_active_shape_key_get", NULL, NULL); diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 0a661e9aaf3..8d6a18dd9c2 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -500,7 +500,7 @@ static void rna_def_ui_layout(BlenderRNA *brna) {UI_LAYOUT_ALIGN_EXPAND, "EXPAND", 0, "Expand", ""}, {UI_LAYOUT_ALIGN_LEFT, "LEFT", 0, "Left", ""}, {UI_LAYOUT_ALIGN_CENTER, "CENTER", 0, "Center", ""}, - {UI_LAYOUT_ALIGN_RIGHT, "RIGHT", 0, "RIght", ""}, + {UI_LAYOUT_ALIGN_RIGHT, "RIGHT", 0, "Right", ""}, {0, NULL, 0, NULL, NULL}}; /* see WM_types.h */ diff --git a/source/gameengine/Converter/BL_ShapeDeformer.cpp b/source/gameengine/Converter/BL_ShapeDeformer.cpp index 41ff3cc3274..125e91e0e0a 100644 --- a/source/gameengine/Converter/BL_ShapeDeformer.cpp +++ b/source/gameengine/Converter/BL_ShapeDeformer.cpp @@ -154,7 +154,7 @@ bool BL_ShapeDeformer::Update(void) /* store verts locally */ VerifyStorage(); - do_rel_key(0, m_bmesh->totvert, m_bmesh->totvert, (char *)(float *)m_transverts, m_bmesh->key, 0); + do_rel_key(0, m_bmesh->totvert, m_bmesh->totvert, (char *)(float *)m_transverts, m_bmesh->key, NULL, 0); m_bDynamic = true; } From e2b74dc7364a11b5328954b6a49a46cd44dfbd2e Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 22 Oct 2009 17:12:28 +0000 Subject: [PATCH 160/412] Shape Keys Active shape key can now be changed while in edit mode. This is based on exit/enter editmode again in the background, which is not ideal, as that loses the undo history. But that already happened anyway when you did exit/change-active/enter manually. --- release/scripts/ui/buttons_data_mesh.py | 10 +++++----- source/blender/blenlib/BLI_editVert.h | 2 ++ .../editors/interface/interface_templates.c | 17 ++++++++++------- source/blender/editors/mesh/editmesh.c | 4 +++- source/blender/editors/object/object_edit.c | 1 - source/blender/makesrna/intern/rna_object.c | 17 ++++++++++++++++- 6 files changed, 36 insertions(+), 15 deletions(-) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index e29166a505f..77c6f834073 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -154,6 +154,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): sub.alignment = 'RIGHT' subrow = sub.row(align=True) + subrow.active= enable_edit_value subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") @@ -163,31 +164,30 @@ class DATA_PT_shape_keys(DataButtonsPanel): sub.itemR(ob, "shape_key_edit_mode", text="") row = layout.row() - row.enabled = enable_edit_value row.itemR(kb, "name") if key.relative: if ob.active_shape_key_index != 0: row = layout.row() - row.enabled = enable_edit_value + row.active = enable_edit_value row.itemR(kb, "value") split = layout.split() sub = split.column(align=True) - sub.enabled = enable_edit_value + sub.active = enable_edit_value sub.itemL(text="Range:") sub.itemR(kb, "slider_min", text="Min") sub.itemR(kb, "slider_max", text="Max") sub = split.column(align=True) - sub.enabled = enable_edit_value + sub.active = enable_edit_value sub.itemL(text="Blend:") sub.item_pointerR(kb, "vertex_group", ob, "vertex_groups", text="") sub.item_pointerR(kb, "relative_key", key, "keys", text="") else: row = layout.row() - row.enabled = enable_edit + row.active = enable_edit_value row.itemR(key, "slurph") class DATA_PT_uv_texture(DataButtonsPanel): diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h index 56a20d8462a..35081086783 100644 --- a/source/blender/blenlib/BLI_editVert.h +++ b/source/blender/blenlib/BLI_editVert.h @@ -173,6 +173,8 @@ typedef struct EditMesh short mat_nr; /* stats */ int totvert, totedge, totface, totvertsel, totedgesel, totfacesel; + /* shape key being edited */ + int shapenr; struct DerivedMesh *derivedCage, *derivedFinal; /* the custom data layer mask that was last used to calculate diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index 75ae475435a..06735badebf 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -1960,7 +1960,7 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe Object *ob; uiBlock *block= uiLayoutGetBlock(layout); uiBut *but; - uiLayout *split, *overlap, *sub; + uiLayout *split, *overlap, *sub, *row; char *name, *namebuf; int icon; @@ -1971,7 +1971,8 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe if(itemptr->type == &RNA_ShapeKey) { ob= (Object*)activeptr->data; - uiLayoutSetEnabled(sub, ob->mode != OB_MODE_EDIT); + if(ob->mode == OB_MODE_EDIT && !(ob->type == OB_MESH)) + uiLayoutSetEnabled(sub, 0); } but= uiDefButR(block, LISTROW, 0, "", 0,0, UI_UNIT_X*10,UI_UNIT_Y, activeptr, activepropname, 0, 0, i, 0, 0, ""); @@ -2005,11 +2006,13 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe uiItemL(split, name, icon); - if(i == 0) uiItemL(split, "", 0); - else uiItemR(split, "", 0, itemptr, "value", 0); - if(ob->mode == OB_MODE_EDIT && !(ob->shapeflag & OB_SHAPE_EDIT_MODE)) - uiLayoutSetEnabled(split, 0); - //uiItemR(split, "", ICON_MUTE_IPO_OFF, itemptr, "mute", 0); + row= uiLayoutRow(split, 1); + if(i == 0) uiItemL(row, "", 0); + else uiItemR(row, "", 0, itemptr, "value", 0); + + if(ob->mode == OB_MODE_EDIT && !((ob->shapeflag & OB_SHAPE_EDIT_MODE) && ob->type == OB_MESH)) + uiLayoutSetActive(row, 0); + //uiItemR(row, "", ICON_MUTE_IPO_OFF, itemptr, "mute", 0); } else uiItemL(sub, name, icon); diff --git a/source/blender/editors/mesh/editmesh.c b/source/blender/editors/mesh/editmesh.c index 408c793751b..8b9de0f6348 100644 --- a/source/blender/editors/mesh/editmesh.c +++ b/source/blender/editors/mesh/editmesh.c @@ -785,6 +785,7 @@ void make_editMesh(Scene *scene, Object *ob) /* undo-ing in past for previous editmode sessions gives corrupt 'keyindex' values */ undo_editmode_clear(); keyco= actkey->data; + em->shapenr= ob->shapenr; } /* make editverts */ @@ -1184,7 +1185,8 @@ void load_editMesh(Scene *scene, Object *ob) /* are there keys? */ if(me->key) { - KeyBlock *currkey, *actkey = ob_get_keyblock(ob); + KeyBlock *currkey; + KeyBlock *actkey= BLI_findlink(&me->key->block, em->shapenr-1); /* Lets reorder the key data so that things line up roughly * with the way things were before editmode */ diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index bd8b865a6c9..3c332fa3953 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -480,7 +480,6 @@ void ED_object_enter_editmode(bContext *C, int flag) static int editmode_toggle_exec(bContext *C, wmOperator *op) { - if(!CTX_data_edit_object(C)) ED_object_enter_editmode(C, EM_WAITCURSOR); else diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index f81e3d5d665..13ecfd91114 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -121,6 +121,21 @@ void rna_Object_update_data(bContext *C, PointerRNA *ptr) WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ptr->id.data); } +void rna_Object_active_shape_update(bContext *C, PointerRNA *ptr) +{ + Object *ob= ptr->id.data; + Scene *scene= CTX_data_scene(C); + int editmode= (scene->obedit == ob && ob->type == OB_MESH); + + if(editmode) { + /* exit/enter editmode to get new shape */ + ED_object_exit_editmode(C, EM_FREEDATA|EM_FREEUNDO); + ED_object_enter_editmode(C, EM_WAITCURSOR); + } + + rna_Object_update_data(C, ptr); +} + static void rna_Object_dependency_update(bContext *C, PointerRNA *ptr) { DAG_id_flush_update(ptr->id.data, OB_RECALC_OB); @@ -1657,7 +1672,7 @@ static void rna_def_object(BlenderRNA *brna) RNA_def_property_int_sdna(prop, NULL, "shapenr"); RNA_def_property_int_funcs(prop, "rna_Object_active_shape_key_index_get", "rna_Object_active_shape_key_index_set", "rna_Object_active_shape_key_index_range"); RNA_def_property_ui_text(prop, "Active Shape Key Index", "Current shape key index."); - RNA_def_property_update(prop, 0, "rna_Object_update_data"); + RNA_def_property_update(prop, 0, "rna_Object_active_shape_update"); RNA_api_object(srna); } From e8af794441bbce7ef49d872e8c3b2c2b7971e0e6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 22 Oct 2009 19:17:46 +0000 Subject: [PATCH 161/412] face mask mode - border select - linked selection (Ctrl+L) - select all --- source/blender/editors/include/ED_mesh.h | 4 + source/blender/editors/mesh/editface.c | 238 +++++++++++++----- .../editors/sculpt_paint/paint_image.c | 3 +- .../editors/sculpt_paint/paint_intern.h | 4 + .../blender/editors/sculpt_paint/paint_ops.c | 15 +- .../editors/sculpt_paint/paint_utils.c | 68 +++++ .../editors/space_view3d/space_view3d.c | 3 + .../editors/space_view3d/view3d_select.c | 2 +- 8 files changed, 270 insertions(+), 67 deletions(-) diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 991f87707c8..8c7e0bf607a 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -53,6 +53,7 @@ struct UvMapVert; struct CustomData; struct Material; struct Object; +struct recti; #define EM_FGON_DRAW 1 // face flag #define EM_FGON 2 // edge and face flag both @@ -166,6 +167,9 @@ void EM_automerge(struct Scene *scene, struct Object *obedit, int update); /* editface.c */ struct MTFace *EM_get_active_mtface(struct EditMesh *em, struct EditFace **act_efa, struct MCol **mcol, int sloppy); int face_select(struct bContext *C, struct Object *ob, short mval[2], int extend); +void face_borderselect(struct bContext *C, struct Object *ob, struct rcti *rect, int select); +void deselectall_tface(struct Object *ob); +void select_linked_tfaces(struct bContext *C, struct Object *ob, short mval[2], int mode); /* object_vgroup.c */ diff --git a/source/blender/editors/mesh/editface.c b/source/blender/editors/mesh/editface.c index 3b15593916c..0042ad9483b 100644 --- a/source/blender/editors/mesh/editface.c +++ b/source/blender/editors/mesh/editface.c @@ -60,6 +60,7 @@ #include "BKE_texture.h" #include "BKE_utildefines.h" #include "BKE_customdata.h" +#include "BKE_context.h" #include "BIF_gl.h" #include "BIF_glutil.h" @@ -72,6 +73,7 @@ #endif #include "ED_mesh.h" +#include "ED_screen.h" #include "ED_object.h" #include "ED_view3d.h" @@ -82,7 +84,6 @@ #include "mesh_intern.h" /* ***************** XXX **************** */ -static void error() {} static int pupmenu() {return 0;} /* ***************** XXX **************** */ @@ -234,35 +235,156 @@ void hide_tface(Scene *scene) // XXX notifier! object_tface_flags_changed(OBACT, 0); } -void select_linked_tfaces(Scene *scene, View3D *v3d, int mode) +/* Set tface seams based on edge data, uses hash table to find seam edges. */ + +static void hash_add_face(EdgeHash *ehash, MFace *mf) +{ + BLI_edgehash_insert(ehash, mf->v1, mf->v2, NULL); + BLI_edgehash_insert(ehash, mf->v2, mf->v3, NULL); + if(mf->v4) { + BLI_edgehash_insert(ehash, mf->v3, mf->v4, NULL); + BLI_edgehash_insert(ehash, mf->v4, mf->v1, NULL); + } + else + BLI_edgehash_insert(ehash, mf->v3, mf->v1, NULL); +} + + +void select_linked_tfaces_with_seams(int mode, Mesh *me, unsigned int index) +{ + MFace *mf; + int a, doit=1, mark=0; + char *linkflag; + EdgeHash *ehash, *seamhash; + MEdge *med; + + ehash= BLI_edgehash_new(); + seamhash = BLI_edgehash_new(); + linkflag= MEM_callocN(sizeof(char)*me->totface, "linkflaguv"); + + for(med=me->medge, a=0; a < me->totedge; a++, med++) + if(med->flag & ME_SEAM) + BLI_edgehash_insert(seamhash, med->v1, med->v2, NULL); + + if (mode==0 || mode==1) { + /* only put face under cursor in array */ + mf= ((MFace*)me->mface) + index; + hash_add_face(ehash, mf); + linkflag[index]= 1; + } + else { + /* fill array by selection */ + mf= me->mface; + for(a=0; atotface; a++, mf++) { + if(mf->flag & ME_HIDE); + else if(mf->flag & ME_FACE_SEL) { + hash_add_face(ehash, mf); + linkflag[a]= 1; + } + } + } + + while(doit) { + doit= 0; + + /* expand selection */ + mf= me->mface; + for(a=0; atotface; a++, mf++) { + if(mf->flag & ME_HIDE) + continue; + + if(!linkflag[a]) { + mark= 0; + + if(!BLI_edgehash_haskey(seamhash, mf->v1, mf->v2)) + if(BLI_edgehash_haskey(ehash, mf->v1, mf->v2)) + mark= 1; + if(!BLI_edgehash_haskey(seamhash, mf->v2, mf->v3)) + if(BLI_edgehash_haskey(ehash, mf->v2, mf->v3)) + mark= 1; + if(mf->v4) { + if(!BLI_edgehash_haskey(seamhash, mf->v3, mf->v4)) + if(BLI_edgehash_haskey(ehash, mf->v3, mf->v4)) + mark= 1; + if(!BLI_edgehash_haskey(seamhash, mf->v4, mf->v1)) + if(BLI_edgehash_haskey(ehash, mf->v4, mf->v1)) + mark= 1; + } + else if(!BLI_edgehash_haskey(seamhash, mf->v3, mf->v1)) + if(BLI_edgehash_haskey(ehash, mf->v3, mf->v1)) + mark = 1; + + if(mark) { + linkflag[a]= 1; + hash_add_face(ehash, mf); + doit= 1; + } + } + } + + } + + BLI_edgehash_free(ehash, NULL); + BLI_edgehash_free(seamhash, NULL); + + if(mode==0 || mode==2) { + for(a=0, mf=me->mface; atotface; a++, mf++) + if(linkflag[a]) + mf->flag |= ME_FACE_SEL; + else + mf->flag &= ~ME_FACE_SEL; + } + else if(mode==1) { + for(a=0, mf=me->mface; atotface; a++, mf++) + if(linkflag[a] && (mf->flag & ME_FACE_SEL)) + break; + + if (atotface) { + for(a=0, mf=me->mface; atotface; a++, mf++) + if(linkflag[a]) + mf->flag &= ~ME_FACE_SEL; + } + else { + for(a=0, mf=me->mface; atotface; a++, mf++) + if(linkflag[a]) + mf->flag |= ME_FACE_SEL; + } + } + + MEM_freeN(linkflag); + + // BIF_undo_push("Select linked UV face"); + // object_tface_flags_changed(OBACT, 0); +} + +void select_linked_tfaces(bContext *C, Object *ob, short mval[2], int mode) { - Object *ob; Mesh *me; - short mval[2]; unsigned int index=0; - ob = OBACT; me = get_mesh(ob); if(me==0 || me->totface==0) return; if (mode==0 || mode==1) { - if (!(ob->lay & v3d->lay)) - error("The active object is not in this layer"); - -// XXX getmouseco_areawin(mval); - if (!facesel_face_pick(v3d, me, mval, &index, 1)) return; + // XXX - Causes glitches, not sure why + /* + if (!facesel_face_pick(C, me, mval, &index, 1)) + return; + */ } -// XXX unwrapper.c select_linked_tfaces_with_seams(mode, me, index); + select_linked_tfaces_with_seams(mode, me, index); + + object_facesel_flush_dm(ob); } -void deselectall_tface(Scene *scene) +void deselectall_tface(Object *ob) { Mesh *me; MFace *mface; int a, sel; - - me= get_mesh(OBACT); + + me= get_mesh(ob); if(me==0) return; mface= me->mface; @@ -288,7 +410,7 @@ void deselectall_tface(Scene *scene) mface++; } - object_facesel_flush_dm(OBACT); + object_facesel_flush_dm(ob); // XXX notifier! object_tface_flags_changed(OBACT, 0); } @@ -693,73 +815,63 @@ int face_select(struct bContext *C, Object *ob, short mval[2], int extend) return 1; } -void face_borderselect(Scene *scene, ScrArea *sa, ARegion *ar) +void face_borderselect(struct bContext *C, Object *ob, rcti *rect, int select) { Mesh *me; MFace *mface; - rcti rect; struct ImBuf *ibuf; unsigned int *rt; - int a, sx, sy, index, val= 0; + int a, sx, sy, index; char *selar; - me= get_mesh(OBACT); + ViewContext vc; + view3d_set_viewcontext(C, &vc); + + me= get_mesh(ob); if(me==0) return; if(me->totface==0) return; - -// XXX val= get_border(&rect, 3); - - if(val) { - /* without this border select often fails */ -#if 0 /* XXX untested in 2.5 */ - if (v3d->flag & V3D_NEEDBACKBUFDRAW) { - check_backbuf(); - persp(PERSP_VIEW); - } -#endif - - selar= MEM_callocN(me->totface+1, "selar"); - - sx= (rect.xmax-rect.xmin+1); - sy= (rect.ymax-rect.ymin+1); - if(sx*sy<=0) return; - ibuf = IMB_allocImBuf(sx,sy,32,IB_rect,0); - rt = ibuf->rect; - glReadPixels(rect.xmin+ar->winrct.xmin, rect.ymin+ar->winrct.ymin, sx, sy, GL_RGBA, GL_UNSIGNED_BYTE, ibuf->rect); - if(ENDIAN_ORDER==B_ENDIAN) IMB_convert_rgba_to_abgr(ibuf); + selar= MEM_callocN(me->totface+1, "selar"); - a= sx*sy; - while(a--) { - if(*rt) { - index= WM_framebuffer_to_index(*rt); - if(index<=me->totface) selar[index]= 1; - } - rt++; + sx= (rect->xmax-rect->xmin+1); + sy= (rect->ymax-rect->ymin+1); + if(sx*sy<=0) return; + + view3d_validate_backbuf(&vc); + + ibuf = IMB_allocImBuf(sx,sy,32,IB_rect,0); + rt = ibuf->rect; + glReadPixels(rect->xmin+vc.ar->winrct.xmin, rect->ymin+vc.ar->winrct.ymin, sx, sy, GL_RGBA, GL_UNSIGNED_BYTE, ibuf->rect); + if(ENDIAN_ORDER==B_ENDIAN) IMB_convert_rgba_to_abgr(ibuf); + + a= sx*sy; + while(a--) { + if(*rt) { + index= WM_framebuffer_to_index(*rt); + if(index<=me->totface) selar[index]= 1; } - - mface= me->mface; - for(a=1; a<=me->totface; a++, mface++) { - if(selar[a]) { - if(mface->flag & ME_HIDE); - else { - if(val==LEFTMOUSE) mface->flag |= ME_FACE_SEL; - else mface->flag &= ~ME_FACE_SEL; - } + rt++; + } + + mface= me->mface; + for(a=1; a<=me->totface; a++, mface++) { + if(selar[a]) { + if(mface->flag & ME_HIDE); + else { + if(select) mface->flag |= ME_FACE_SEL; + else mface->flag &= ~ME_FACE_SEL; } } - - IMB_freeImBuf(ibuf); - MEM_freeN(selar); + } + + IMB_freeImBuf(ibuf); + MEM_freeN(selar); // XXX notifier! object_tface_flags_changed(OBACT, 0); - } #ifdef __APPLE__ glReadBuffer(GL_BACK); #endif - object_facesel_flush_dm(OBACT); + object_facesel_flush_dm(ob); } - - diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c index 92ef8ae8fd1..929f854242f 100644 --- a/source/blender/editors/sculpt_paint/paint_image.c +++ b/source/blender/editors/sculpt_paint/paint_image.c @@ -5254,6 +5254,5 @@ void PAINT_OT_texture_paint_radial_control(wmOperatorType *ot) int facemask_paint_poll(bContext *C) { - Object *obact = CTX_data_active_object(C); - return paint_facesel_test(obact); + return paint_facesel_test(CTX_data_active_object(C)); } diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h index d1ecc3e4dc0..b5748d7bc88 100644 --- a/source/blender/editors/sculpt_paint/paint_intern.h +++ b/source/blender/editors/sculpt_paint/paint_intern.h @@ -94,6 +94,10 @@ void imapaint_pick_uv(struct Scene *scene, struct Object *ob, struct Mesh *mesh, void paint_sample_color(struct Scene *scene, struct ARegion *ar, int x, int y); void BRUSH_OT_curve_preset(struct wmOperatorType *ot); +void PAINT_OT_face_select_linked(struct wmOperatorType *ot); +void PAINT_OT_face_select_linked_pick(struct wmOperatorType *ot); +void PAINT_OT_face_deselect_all(struct wmOperatorType *ot); + int facemask_paint_poll(struct bContext *C); #endif /* ED_PAINT_INTERN_H */ diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c index 8184471c8d8..d8f13f679a5 100644 --- a/source/blender/editors/sculpt_paint/paint_ops.c +++ b/source/blender/editors/sculpt_paint/paint_ops.c @@ -133,6 +133,11 @@ void ED_operatortypes_paint(void) WM_operatortype_append(PAINT_OT_vertex_paint_toggle); WM_operatortype_append(PAINT_OT_vertex_paint); WM_operatortype_append(PAINT_OT_vertex_color_set); + + /* face-select */ + WM_operatortype_append(PAINT_OT_face_select_linked); + WM_operatortype_append(PAINT_OT_face_select_linked_pick); + WM_operatortype_append(PAINT_OT_face_deselect_all); } void ED_keymap_paint(wmKeyConfig *keyconf) @@ -184,5 +189,13 @@ void ED_keymap_paint(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "PAINT_OT_image_paint", LEFTMOUSE, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "PAINT_OT_sample_color", RIGHTMOUSE, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "PAINT_OT_clone_cursor_set", LEFTMOUSE, KM_PRESS, KM_CTRL, 0); -} + /* face-mask mode */ + keymap= WM_keymap_find(keyconf, "Face Mask", 0, 0); + keymap->poll= facemask_paint_poll; + + WM_keymap_add_item(keymap, "PAINT_OT_face_deselect_all", AKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "PAINT_OT_face_select_linked", LKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "PAINT_OT_face_select_linked_pick", LKEY, KM_PRESS, 0, 0); + +} diff --git a/source/blender/editors/sculpt_paint/paint_utils.c b/source/blender/editors/sculpt_paint/paint_utils.c index 13fbd2179b8..15104068350 100644 --- a/source/blender/editors/sculpt_paint/paint_utils.c +++ b/source/blender/editors/sculpt_paint/paint_utils.c @@ -26,6 +26,10 @@ #include "BIF_gl.h" #include "ED_view3d.h" +#include "ED_screen.h" + +#include "BLO_sys_types.h" +#include "ED_mesh.h" /* for face mask functions */ #include "WM_api.h" #include "WM_types.h" @@ -224,3 +228,67 @@ void BRUSH_OT_curve_preset(wmOperatorType *ot) RNA_def_enum(ot->srna, "shape", prop_shape_items, BRUSH_PRESET_SHARP, "Mode", ""); } + + +/* face-select ops */ +static int paint_select_linked_exec(bContext *C, wmOperator *op) +{ + select_linked_tfaces(C, CTX_data_active_object(C), NULL, 2); + ED_region_tag_redraw(CTX_wm_region(C)); + return OPERATOR_FINISHED; +} + +void PAINT_OT_face_select_linked(wmOperatorType *ot) +{ + ot->name= "Select Linked"; + ot->description= "Select linked faces."; + ot->idname= "PAINT_OT_face_select_linked"; + + ot->exec= paint_select_linked_exec; + ot->poll= facemask_paint_poll; + + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + +static int paint_select_linked_pick_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + int mode= RNA_boolean_get(op->ptr, "extend") ? 1:0; + select_linked_tfaces(C, CTX_data_active_object(C), event->mval, mode); + ED_region_tag_redraw(CTX_wm_region(C)); + return OPERATOR_FINISHED; +} + +void PAINT_OT_face_select_linked_pick(wmOperatorType *ot) +{ + ot->name= "Select Linked Pick"; + ot->description= "Select linked faces."; + ot->idname= "PAINT_OT_face_select_linked_pick"; + + ot->invoke= paint_select_linked_pick_invoke; + ot->poll= facemask_paint_poll; + + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend the existing selection"); +} + + +static int face_deselect_all_exec(bContext *C, wmOperator *op) +{ + deselectall_tface(CTX_data_active_object(C)); + ED_region_tag_redraw(CTX_wm_region(C)); + return OPERATOR_FINISHED; +} + + +void PAINT_OT_face_deselect_all(wmOperatorType *ot) +{ + ot->name= "Select Linked"; + ot->description= "Select linked faces under the mouse."; + ot->idname= "PAINT_OT_face_deselect_all"; + + ot->exec= face_deselect_all_exec; + ot->poll= facemask_paint_poll; + + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index 86e9743d5bb..695d86bb51b 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -330,6 +330,9 @@ static void view3d_main_area_init(wmWindowManager *wm, ARegion *ar) keymap= WM_keymap_find(wm->defaultconf, "Weight Paint", 0, 0); WM_event_add_keymap_handler(&ar->handlers, keymap); + + keymap= WM_keymap_find(wm->defaultconf, "Face Mask", 0, 0); + WM_event_add_keymap_handler(&ar->handlers, keymap); keymap= WM_keymap_find(wm->defaultconf, "Sculpt", 0, 0); WM_event_add_keymap_handler(&ar->handlers, keymap); diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index adb40a017ba..12b26e1d815 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -1392,7 +1392,7 @@ static int view3d_borderselect_exec(bContext *C, wmOperator *op) rect.ymax= RNA_int_get(op->ptr, "ymax"); if(obedit==NULL && (paint_facesel_test(OBACT))) { -// XXX face_borderselect(); + face_borderselect(C, obact, &rect, (val==LEFTMOUSE)); return OPERATOR_FINISHED; } else if(obedit==NULL && (obact && obact->mode & OB_MODE_PARTICLE_EDIT)) { From caa27f09fd19a5d37ae7775b8c80246bd7befe13 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 22 Oct 2009 23:23:09 +0000 Subject: [PATCH 162/412] Bugfixes: * The python 'math' library is now included in the py-namespace used to evaluate button expressions. So it is now possible to do 'radians(somevalue)' to get a rotation value that Blender can understand... * Shapekey path getting function now uses the appropriate wrapper for grabbing the pointer to the ID block for the ShapeKey * Made the Graph Editor's minimum zoom size finer... --- .../blender/editors/space_graph/space_graph.c | 4 ++-- source/blender/makesrna/intern/rna_key.c | 24 +++++++++---------- source/blender/python/intern/bpy_interface.c | 16 ++++++++++++- 3 files changed, 29 insertions(+), 15 deletions(-) diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index b4b06844d13..342afab7534 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -151,8 +151,8 @@ static SpaceLink *graph_new(const bContext *C) ar->v2d.cur= ar->v2d.tot; - ar->v2d.min[0]= 0.01f; - ar->v2d.min[1]= 0.01f; + ar->v2d.min[0]= 0.001f; + ar->v2d.min[1]= 0.001f; ar->v2d.max[0]= MAXFRAMEF; ar->v2d.max[1]= 50000.0f; diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index 433e5a7e4a3..ca36da5d03b 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -50,6 +50,17 @@ #include "WM_api.h" #include "WM_types.h" +static Key *rna_ShapeKey_find_key(ID *id) +{ + switch(GS(id->name)) { + case ID_CU: return ((Curve*)id)->key; + case ID_KE: return (Key*)id; + case ID_LT: return ((Lattice*)id)->key; + case ID_ME: return ((Mesh*)id)->key; + default: return NULL; + } +} + void rna_ShapeKey_name_set(PointerRNA *ptr, const char *value) { KeyBlock *kb= ptr->data; @@ -63,7 +74,7 @@ void rna_ShapeKey_name_set(PointerRNA *ptr, const char *value) /* make sure the name is truly unique */ if (ptr->id.data) { - Key *key= ptr->id.data; + Key *key= rna_ShapeKey_find_key(ptr->id.data); BLI_uniquename(&key->block, kb, "Key", '.', offsetof(KeyBlock, name), 32); } @@ -86,17 +97,6 @@ static void rna_ShapeKey_value_range(PointerRNA *ptr, float *min, float *max) *max= data->slidermax; } -static Key *rna_ShapeKey_find_key(ID *id) -{ - switch(GS(id->name)) { - case ID_CU: return ((Curve*)id)->key; - case ID_KE: return (Key*)id; - case ID_LT: return ((Lattice*)id)->key; - case ID_ME: return ((Mesh*)id)->key; - default: return NULL; - } -} - static PointerRNA rna_ShapeKey_relative_key_get(PointerRNA *ptr) { Key *key= rna_ShapeKey_find_key(ptr->id.data); diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index 9e76c1d03aa..095bfab45c4 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -884,7 +884,7 @@ float BPY_pydriver_eval (ChannelDriver *driver) int BPY_button_eval(bContext *C, char *expr, double *value) { PyGILState_STATE gilstate; - PyObject *dict, *retval; + PyObject *dict, *mod, *retval; int error_ret = 0; if (!value || !expr || expr[0]=='\0') return -1; @@ -892,6 +892,20 @@ int BPY_button_eval(bContext *C, char *expr, double *value) bpy_context_set(C, &gilstate); dict= CreateGlobalDictionary(C); + + /* import some modules: builtins,math*/ + PyDict_SetItemString(dict, "__builtins__", PyEval_GetBuiltins()); + + mod = PyImport_ImportModule("math"); + if (mod) { + PyDict_Merge(dict, PyModule_GetDict(mod), 0); /* 0 - dont overwrite existing values */ + + /* Only keep for backwards compat! - just import all math into root, they are standard */ + PyDict_SetItemString(dict, "math", mod); + PyDict_SetItemString(dict, "m", mod); + Py_DECREF(mod); + } + retval = PyRun_String(expr, Py_eval_input, dict, dict); if (retval == NULL) { From 5133f75779eda6e9f8f8072dfee318b5877481fd Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Fri, 23 Oct 2009 00:44:18 +0000 Subject: [PATCH 163/412] Python API ---------- Incorrect row and column values were passed to newMatrixObject() by Matrix_new() when the argument to Matrix() was a matrix. --- source/blender/python/generic/matrix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/python/generic/matrix.c b/source/blender/python/generic/matrix.c index 5a49118b519..16ae3501b93 100644 --- a/source/blender/python/generic/matrix.c +++ b/source/blender/python/generic/matrix.c @@ -165,6 +165,8 @@ static PyObject *Matrix_new(PyTypeObject *type, PyObject *args, PyObject *kwds) return NULL; memcpy(matrix, mat->contigPtr, sizeof(float) * mat->rowSize * mat->colSize); + argSize = mat->rowSize; + seqSize = mat->colSize; } }else{ //2-4 arguments (all seqs? all same size?) for(i =0; i < argSize; i++){ From 068ab484aca1af7654d8a710d6a2636f13641a72 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Fri, 23 Oct 2009 12:12:44 +0000 Subject: [PATCH 164/412] Cocoa / Mac: - tablet : fix pressure retrieval => value sliding now works with tablet, UV-painting is pressure sensitive, and no more crash when clicking on window minimize button with the tablet - update CMake file to remove unneeded folders in the app bundle (the __MACOSX stuff). From Jens' patch --- intern/ghost/intern/GHOST_SystemCocoa.mm | 5 ++++- source/creator/CMakeLists.txt | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 2d665012bf1..20b190cc41f 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -1046,11 +1046,14 @@ GHOST_TSuccess GHOST_SystemCocoa::handleTabletEvent(void *eventPtr, short eventT { NSEvent *event = (NSEvent *)eventPtr; GHOST_IWindow* window = m_windowManager->getActiveWindow(); + + if (!window) return GHOST_kFailure; + GHOST_TabletData& ct=((GHOST_WindowCocoa*)window)->GetCocoaTabletData(); switch (eventType) { case NSTabletPoint: - ct.Pressure = [event tangentialPressure]; + ct.Pressure = [event pressure]; ct.Xtilt = [event tilt].x; ct.Ytilt = [event tilt].y; break; diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 28985daf466..57a1f8e00a5 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -173,6 +173,7 @@ IF(WITH_INSTALL) ADD_CUSTOM_COMMAND( TARGET blender POST_BUILD MAIN_DEPENDENCY blender COMMAND find ${TARGETDIR} -name .svn -prune -exec rm -rf {} "\;" + COMMAND find ${TARGETDIR} -name __MACOSX -prune -exec rm -rf {} "\;" ) From 74ed5fd3066fd06be83337bcea9863d6044ad0b2 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Fri, 23 Oct 2009 23:19:23 +0000 Subject: [PATCH 165/412] More human readable formating in enums and others. This makes some code inspection tools give cleaner results. --- source/blender/makesrna/intern/makesrna.c | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c index 7e473fcb096..b16a0f00fd2 100644 --- a/source/blender/makesrna/intern/makesrna.c +++ b/source/blender/makesrna/intern/makesrna.c @@ -1659,21 +1659,21 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr int i, defaultfound= 0; if(eprop->item) { - fprintf(f, "static EnumPropertyItem rna_%s%s_%s_items[%d] = {", srna->identifier, strnest, prop->identifier, eprop->totitem+1); + fprintf(f, "static EnumPropertyItem rna_%s%s_%s_items[%d] = {\n\t", srna->identifier, strnest, prop->identifier, eprop->totitem+1); for(i=0; itotitem; i++) { fprintf(f, "{%d, ", eprop->item[i].value); rna_print_c_string(f, eprop->item[i].identifier); fprintf(f, ", "); fprintf(f, "%d, ", eprop->item[i].icon); rna_print_c_string(f, eprop->item[i].name); fprintf(f, ", "); - rna_print_c_string(f, eprop->item[i].description); fprintf(f, "}, "); + rna_print_c_string(f, eprop->item[i].description); fprintf(f, "},\n\t"); if(eprop->item[i].identifier[0]) if(eprop->defaultvalue == eprop->item[i].value) defaultfound= 1; } - fprintf(f, "{0, NULL, 0, NULL, NULL}};\n\n"); + fprintf(f, "{0, NULL, 0, NULL, NULL}\n};\n\n"); if(!defaultfound) { fprintf(stderr, "rna_generate_structs: %s%s.%s, enum default is not in items.\n", srna->identifier, errnest, prop->identifier); @@ -1691,7 +1691,7 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr unsigned int i; if(prop->arraydimension && prop->totarraylength) { - fprintf(f, "static int rna_%s%s_%s_default[%d] = {", srna->identifier, strnest, prop->identifier, prop->totarraylength); + fprintf(f, "static int rna_%s%s_%s_default[%d] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength); for(i=0; itotarraylength; i++) { if(bprop->defaultarray) @@ -1699,10 +1699,10 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr else fprintf(f, "%d", bprop->defaultvalue); if(i != prop->totarraylength-1) - fprintf(f, ", "); + fprintf(f, ",\n\t"); } - fprintf(f, "};\n\n"); + fprintf(f, "\n};\n\n"); } break; } @@ -1711,7 +1711,7 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr unsigned int i; if(prop->arraydimension && prop->totarraylength) { - fprintf(f, "static int rna_%s%s_%s_default[%d] = {", srna->identifier, strnest, prop->identifier, prop->totarraylength); + fprintf(f, "static int rna_%s%s_%s_default[%d] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength); for(i=0; itotarraylength; i++) { if(iprop->defaultarray) @@ -1719,10 +1719,10 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr else fprintf(f, "%d", iprop->defaultvalue); if(i != prop->totarraylength-1) - fprintf(f, ", "); + fprintf(f, ",\n\t"); } - fprintf(f, "};\n\n"); + fprintf(f, "\n};\n\n"); } break; } @@ -1731,7 +1731,7 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr unsigned int i; if(prop->arraydimension && prop->totarraylength) { - fprintf(f, "static float rna_%s%s_%s_default[%d] = {", srna->identifier, strnest, prop->identifier, prop->totarraylength); + fprintf(f, "static float rna_%s%s_%s_default[%d] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength); for(i=0; itotarraylength; i++) { if(fprop->defaultarray) @@ -1739,10 +1739,10 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr else rna_float_print(f, fprop->defaultvalue); if(i != prop->totarraylength-1) - fprintf(f, ", "); + fprintf(f, ",\n\t"); } - fprintf(f, "};\n\n"); + fprintf(f, "\n};\n\n"); } break; } @@ -1922,7 +1922,7 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f) rna_print_c_string(f, srna->name); fprintf(f, ", "); rna_print_c_string(f, srna->description); - fprintf(f, ",\n %d,\n", srna->icon); + fprintf(f, ",\n\t%d,\n", srna->icon); prop= srna->nameproperty; if(prop) { From 66d47d2f27f9818199fbc171e025d75758a60533 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sat, 24 Oct 2009 07:50:39 +0000 Subject: [PATCH 166/412] New b.blend. -Made it work with new tool area, resizing correctly -Put properties tabs on the top --- source/blender/editors/datafiles/B.blend.c | 5988 +++++++++++--------- 1 file changed, 3159 insertions(+), 2829 deletions(-) diff --git a/source/blender/editors/datafiles/B.blend.c b/source/blender/editors/datafiles/B.blend.c index b22ef5b3053..c43c0bd43dc 100644 --- a/source/blender/editors/datafiles/B.blend.c +++ b/source/blender/editors/datafiles/B.blend.c @@ -1,344 +1,521 @@ -/* DataToC output of file */ +/* DataToC output of file */ -int datatoc_B_blend_size= 102392; +int datatoc_B_blend_size= 112944; char datatoc_B_blend[]= { - 66, 76, 69, 78, 68, 69, 82, 95,118, 50, 53, 48, 82, 69, 78, 68, 32, 0, 0, 0, 36,246, 24, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 32, 0, 0, 0, 20,246, 24, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 52, - 4, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1, 56, 79,201, 2,216,194,213, 2, 0, 16, 0, 0,128, 32, 4, 0, 87, 77, 0, 0, -140, 0, 0, 0,120, 78,201, 2, 93, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 77, 87,105,110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 49,213, 2,240, 49,213, 2,240, 49,213, 2,240, 49,213, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120,123,207, 2, 16,203,131, 3, 68, 65, 84, 65, -156, 0, 0, 0,240, 49,213, 2, 94, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,255,213, 2, 1, 0, 0, 0, - 0, 0, 0, 0, 56, 79,201, 2, 0, 0, 0, 0,115, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 0,110, 7,219, 3, 0, 0, 0, 0, 1, 0,238, 3, 0, 0, 1, 0, - 0, 0, 0, 0,208, 64,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72,103,210, 2, 0, 0, 0, 0, - 0, 0, 0, 0,160, 65,210, 2,160, 65,210, 2,136, 68,207, 2, 0, 69,207, 2,120, 69,207, 2,120, 69,207, 2, 96, 80,201, 2, - 40,174,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,140, 0, 0, 0, 56, 79,201, 2,189, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72,187,200, 2,240,190,200, 2, 56,191,200, 2, -176, 51,213, 2,168,120,207, 2,232,122,207, 2, 0, 0, 0, 0, 0, 0, 0, 0,216,194,213, 2, 0, 0, 0, 0, 0, 0, 1, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,166, 83, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 72,187,200, 2,190, 0, 0, 0, 1, 0, 0, 0, -144,187,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,144,187,200, 2, -190, 0, 0, 0, 1, 0, 0, 0,216,187,200, 2, 72,187,200, 2, 0, 0, 0, 0, 0, 0,219, 3, 0, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0,216,187,200, 2,190, 0, 0, 0, 1, 0, 0, 0, 32,188,200, 2,144,187,200, 2, 0, 0, 0, 0,110, 7,219, 3, - 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 32,188,200, 2,190, 0, 0, 0, 1, 0, 0, 0,104,188,200, 2,216,187,200, 2, - 0, 0, 0, 0,110, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,188,200, 2,190, 0, 0, 0, 1, 0, 0, 0, -176,188,200, 2, 32,188,200, 2, 0, 0, 0, 0, 0, 0,188, 3, 1, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,176,188,200, 2, -190, 0, 0, 0, 1, 0, 0, 0,248,188,200, 2,104,188,200, 2, 0, 0, 0, 0,110, 7,188, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0,248,188,200, 2,190, 0, 0, 0, 1, 0, 0, 0, 64,189,200, 2,176,188,200, 2, 0, 0, 0, 0, 0, 0, 80, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 64,189,200, 2,190, 0, 0, 0, 1, 0, 0, 0,136,189,200, 2,248,188,200, 2, - 0, 0, 0, 0,110, 7, 80, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,136,189,200, 2,190, 0, 0, 0, 1, 0, 0, 0, -208,189,200, 2, 64,189,200, 2, 0, 0, 0, 0, 16, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,208,189,200, 2, -190, 0, 0, 0, 1, 0, 0, 0, 24,190,200, 2,136,189,200, 2, 0, 0, 0, 0, 16, 6,188, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0, 24,190,200, 2,190, 0, 0, 0, 1, 0, 0, 0, 96,190,200, 2,208,189,200, 2, 0, 0, 0, 0, 0, 0, 96, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 96,190,200, 2,190, 0, 0, 0, 1, 0, 0, 0,168,190,200, 2, 24,190,200, 2, - 0, 0, 0, 0, 16, 6, 96, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,168,190,200, 2,190, 0, 0, 0, 1, 0, 0, 0, -240,190,200, 2, 96,190,200, 2, 0, 0, 0, 0, 16, 6,244, 2, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,240,190,200, 2, -190, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,168,190,200, 2, 0, 0, 0, 0,110, 7,244, 2, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0, 56,191,200, 2,191, 0, 0, 0, 1, 0, 0, 0,128,191,200, 2, 0, 0, 0, 0,144,187,200, 2,216,187,200, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,128,191,200, 2,191, 0, 0, 0, 1, 0, 0, 0,200,191,200, 2, - 56,191,200, 2,144,187,200, 2,104,188,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,200,191,200, 2, -191, 0, 0, 0, 1, 0, 0, 0, 16,192,200, 2,128,191,200, 2,216,187,200, 2,176,188,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0, 16,192,200, 2,191, 0, 0, 0, 1, 0, 0, 0, 88,192,200, 2,200,191,200, 2,104,188,200, 2, -176,188,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 88,192,200, 2,191, 0, 0, 0, 1, 0, 0, 0, -160,192,200, 2, 16,192,200, 2, 72,187,200, 2,136,189,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, -160,192,200, 2,191, 0, 0, 0, 1, 0, 0, 0,232,192,200, 2, 88,192,200, 2, 32,188,200, 2,136,189,200, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,232,192,200, 2,191, 0, 0, 0, 1, 0, 0, 0, 48,193,200, 2,160,192,200, 2, -104,188,200, 2,208,189,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 48,193,200, 2,191, 0, 0, 0, - 1, 0, 0, 0,120,193,200, 2,232,192,200, 2,176,188,200, 2,208,189,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0,120,193,200, 2,191, 0, 0, 0, 1, 0, 0, 0,192,193,200, 2, 48,193,200, 2, 72,187,200, 2, 24,190,200, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,192,193,200, 2,191, 0, 0, 0, 1, 0, 0, 0, 8,194,200, 2, -120,193,200, 2,104,188,200, 2, 24,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 8,194,200, 2, -191, 0, 0, 0, 1, 0, 0, 0, 80,194,200, 2,192,193,200, 2,208,189,200, 2, 96,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0, 80,194,200, 2,191, 0, 0, 0, 1, 0, 0, 0,152,194,200, 2, 8,194,200, 2,136,189,200, 2, - 96,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,152,194,200, 2,191, 0, 0, 0, 1, 0, 0, 0, -224,194,200, 2, 80,194,200, 2, 24,190,200, 2, 96,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, -224,194,200, 2,191, 0, 0, 0, 1, 0, 0, 0,216, 50,213, 2,152,194,200, 2,136,189,200, 2,168,190,200, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,216, 50,213, 2,191, 0, 0, 0, 1, 0, 0, 0, 32, 51,213, 2,224,194,200, 2, -208,189,200, 2,168,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 32, 51,213, 2,191, 0, 0, 0, - 1, 0, 0, 0,104, 51,213, 2,216, 50,213, 2,176,188,200, 2,240,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0,104, 51,213, 2,191, 0, 0, 0, 1, 0, 0, 0,176, 51,213, 2, 32, 51,213, 2, 32,188,200, 2,240,190,200, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,176, 51,213, 2,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -104, 51,213, 2,168,190,200, 2,240,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,168,120,207, 2, -193, 0, 0, 0, 1, 0, 0, 0, 56,121,207, 2, 0, 0, 0, 0,104,188,200, 2,144,187,200, 2,216,187,200, 2,176,188,200, 2, - 0, 0, 0, 0, 0, 0, 0, 0,110, 7, 0, 0,189, 3, 0, 0,219, 3, 0, 0, 7, 7,111, 7, 31, 0, 1, 0, 0, 0, 0, 0, - 7, 0, 0, 0, 64,202,201, 2, 32, 42,210, 2, 32, 42,210, 2,192, 66,213, 2,232, 67,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 41,210, 2,192, 41,210, 2, 68, 65, 84, 65,248, 0, 0, 0,192, 66,213, 2,194, 0, 0, 0, 1, 0, 0, 0,232, 67,213, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,158, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,224,237, 68, 0, 0, 0, 0, + 66, 76, 69, 78, 68, 69, 82, 45,118, 50, 53, 48, 82, 69, 78, 68, + 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110, +101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 24, 1, 0, 0,224,236,191, 95, +255,127, 0, 0,196, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 55, 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,112, 24, 39, 3, + 1, 0, 0, 0, 48,216,135, 3, 1, 0, 0, 0, 0, 16, 0, 0,128, 32, 4, 0, 47, 85,115,101,114,115, 47, 87,105,108,108,105, + 97,109, 47, 46, 66, 50, 53, 46, 98,108,101,110,100, 0,191, 95,255,127, 0, 0, 84,212,169, 2, 1, 0, 0, 0,112,237,191, 95, +255,127, 0, 0,214,197, 91, 0, 1, 0, 0, 0, 80,237,191, 95,255,127, 0, 0,208, 90,171, 2, 32, 0, 0, 0,224,237,191, 95, +255,127, 0, 0,160, 65, 13, 3, 1, 0, 0, 0,144,237,191, 95,255,127, 0, 0, 48,212,169, 2, 1, 0, 0, 0,192,237,191, 95, +255,127, 0, 0, 77,200, 91, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 32, 0, 0, 0, + 82, 69, 78, 68,160, 65, 13, 3, 1, 0, 0, 0, 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0,232,237,191, 95,255,127, 0, 0, 16,238,191, 95,255,127, 0, 0, 89,207, 91, 0, 1, 0, 0, 0,224, 18, 39, 3, + 1, 0, 0, 0,160, 65, 13, 3, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87, 77, 0, 0, 8, 1, 0, 0, 0, 22, 39, 3, 1, 0, 0, 0, 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105, +110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, + 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 93, 38, 3, 1, 0, 0, 0,240, 93, 38, 3, 1, 0, 0, 0,240, 93, 38, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 94, 38, 3, 1, 0, 0, 0,208, 94, 38, 3, 1, 0, 0, 0,208, 94, 38, 3, + 1, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 96, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,104, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 24, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,115, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 20, 3, 0, 0, 0, 0, 1, 0,238, 3, 0, 0, 1, 0, + 0, 0, 0, 0,208,174, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,110,234, 24, 1, 0, 0, 0, 0,142,181, 24, 1, 0, 0, 0, 0,142,181, 24, 1, 0, 0, 0,208,245, 38, 3, + 1, 0, 0, 0, 96, 42, 40, 3, 1, 0, 0, 0,208, 43, 40, 3, 1, 0, 0, 0,208, 43, 40, 3, 1, 0, 0, 0,144,225, 39, 3, + 1, 0, 0, 0, 32, 88,234, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0, +208, 0, 0, 0,112, 24, 39, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,101,101,110, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 25, 39, 3, + 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0, 96, 36, 39, 3, 1, 0, 0, 0,192, 36, 39, 3, + 1, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,216,135, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 12, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28,164, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 25, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 26, 39, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 5, 20, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 27, 39, 3, + 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,249, 2, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5,249, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 27, 39, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,124, 4, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4,249, 2, + 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 28, 39, 3, + 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 92, 2, 1, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 92, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 29, 39, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4,100, 0, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 30, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 30, 39, 3, + 1, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 31, 39, 3, + 1, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 31, 39, 3, + 1, 0, 0, 0,192, 30, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 31, 39, 3, + 1, 0, 0, 0, 32, 31, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 32, 39, 3, + 1, 0, 0, 0,128, 31, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 32, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 32, 39, 3, + 1, 0, 0, 0,224, 31, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 32, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 33, 39, 3, + 1, 0, 0, 0, 64, 32, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 33, 39, 3, + 1, 0, 0, 0,160, 32, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 33, 39, 3, + 1, 0, 0, 0, 0, 33, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 34, 39, 3, + 1, 0, 0, 0, 96, 33, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 34, 39, 3, + 1, 0, 0, 0,192, 33, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 34, 39, 3, + 1, 0, 0, 0, 32, 34, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 35, 39, 3, + 1, 0, 0, 0,128, 34, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 35, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 35, 39, 3, + 1, 0, 0, 0,224, 34, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 35, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 36, 39, 3, + 1, 0, 0, 0, 64, 35, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 36, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 36, 39, 3, + 1, 0, 0, 0,160, 35, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 36, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 36, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,192, 36, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96, 40, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, + 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0,250, 2, 0, 0, + 20, 3, 0, 0, 7, 7,161, 5, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 39, 35, 3, 1, 0, 0, 0,176,146, 39, 3, + 1, 0, 0, 0,176,146, 39, 3, 1, 0, 0, 0,160, 37, 39, 3, 1, 0, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 5, 43, 25, 1, 0, 0, 0,144,126, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,160, 37, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,180, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,110, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,111, 7, 26, 0,111, 7, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110, 7, 0, 0, -189, 3, 0, 0,214, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 7, 26, 0, 2, 0, 1, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88,177,201, 2, 96,181,131, 3, 96,181,131, 3, 0, 0, 0, 0, - 0, 0, 0, 0,240, 69,207, 2,104, 70,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,232, 67,213, 2, -194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,192, 66,213, 2, 0, 0, 0, 0, 0,192,107, 69, 0, 0,128,192, 0, 0, 0, 0, - 0, 0, 0, 0,255,191,107, 69, 0, 0, 0,192, 0, 0, 0, 0, 94, 7, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 93, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 93, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, - 18, 0, 0, 4, 6, 0,111, 7, 5, 0, 94, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,110, 7, 0, 0,215, 3, 0, 0,219, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,111, 7, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200,176,201, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 70,207, 2,208, 71,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 96, 0, 0, 0, 56,121,207, 2,193, 0, 0, 0, 1, 0, 0, 0,200,121,207, 2,168,120,207, 2,136,189,200, 2, -168,190,200, 2,240,190,200, 2, 32,188,200, 2, 0, 0, 0, 0, 17, 6, 0, 0,110, 7, 0, 0, 0, 0, 0, 0,243, 2, 0, 0, - 4, 4, 94, 1,244, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,201,201, 2,216, 86,213, 2, 64, 93,213, 2, 16, 69,213, 2, - 56, 70,213, 2, 0, 0, 0, 0, 0, 0, 0, 0,224, 39,210, 2,160, 40,210, 2, 68, 65, 84, 65,248, 0, 0, 0, 16, 69,213, 2, -194, 0, 0, 0, 1, 0, 0, 0, 56, 70,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 0, 0, 0, 0, 0, 0,208, 65, - 0, 0, 0, 0, 0, 0,175, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, - 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, - 4, 0, 12, 4, 10, 0, 94, 1, 31, 0, 94, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 6, 0, 0,110, 7, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 94, 1, 31, 0, 4, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56,176,201, 2, -232, 29,139, 3,232, 29,139, 3, 0, 0, 0, 0, 0, 0, 0, 0, 72, 72,207, 2, 56, 73,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,248, 0, 0, 0, 56, 70,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 69,213, 2, 0, 0, 0, 0, - 0, 0,166, 67, 0, 0, 89,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,166, 67,253,191, 48,196, 0, 0, 0, 0, 77, 1, 0, 0, - 94, 1, 0, 0, 18, 0, 0, 0,212, 2, 0, 0, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 76, 1, 0, 0, 18, 0, 0, 0,212, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 94, 1,213, 2, 77, 1,195, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,136, 36,210, 2, 1, 0, 0, 0, 0, 0, 0, 0, 17, 6, 0, 0,110, 7, 0, 0, 31, 0, 0, 0,243, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 1,213, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,168,175,201, 2,240,161,133, 3,120,181,138, 3, 96, 71,213, 2, 8,165,138, 3,176, 73,207, 2, - 24, 75,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 96, 71,213, 2,192, 0, 0, 0, 1, 0, 0, 0, -200, 72,213, 2, 0, 0, 0, 0, 56, 70,201, 2, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, -120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, -120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,161, 5, 26, 0,161, 5, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 5, 0, 0,250, 2, 0, 0, 19, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 5, 26, 0, + 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 41, 35, 3, 1, 0, 0, 0,240,242,237, 24, + 1, 0, 0, 0,240,242,237, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1, 13, 3, + 1, 0, 0, 0,208,134,118, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 37, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,192,107, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,191,107, 69, 0, 0, 0,192, + 0, 0, 0, 0, 94, 7, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 93, 7, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 93, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,111, 7, 5, 0, 94, 7, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 3, 0, 0, 20, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 40, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 76, 1, 36, 0, 0, 0, 0, 0, 0, 0, 42, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0, 96, 40, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240, 86, 39, 3, 1, 0, 0, 0,192, 36, 39, 3, + 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, 91, 2, 0, 0, 4, 4, 36, 1, + 92, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 36, 35, 3, 1, 0, 0, 0, 96, 78, 39, 3, 1, 0, 0, 0,144, 85, 39, 3, + 1, 0, 0, 0, 64, 41, 39, 3, 1, 0, 0, 0,160, 42, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,192, 77, 41, 25, 1, 0, 0, 0, 0,113, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 41, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 42, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,146, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 35, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 36, 1, 31, 0, 36, 1, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 61, 2, 0, 0, + 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 31, 0, 3, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 35, 3, 1, 0, 0, 0,144, 94,234, 24, 1, 0, 0, 0,144, 94,234, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 66, 40, 25, 1, 0, 0, 0,160, 31,118, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 42, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 41, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,137, 67, 0, 0, 62,196, 0, 0, 0, 0, 0, 0, 0, 0,254,127,137, 67,254,191, 10,196, 0, 0, 0, 0, 19, 1, 0, 0, + 36, 1, 0, 0, 18, 0, 0, 0, 60, 2, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 18, 1, 0, 0, 18, 0, 0, 0, 60, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 36, 1, 61, 2, 19, 1, 43, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48, 49, 40, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, + 60, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 61, 2, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 37, 35, 3, 1, 0, 0, 0, 16,178,237, 24, 1, 0, 0, 0,128, 38,238, 24, + 1, 0, 0, 0, 0, 44, 39, 3, 1, 0, 0, 0,208, 76, 39, 3, 1, 0, 0, 0, 32, 71, 42, 25, 1, 0, 0, 0,144,196,117, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 44, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 45, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 38, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 18, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, -200, 72,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 48, 74,213, 2, 96, 71,213, 2,248, 91,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 45, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 47, 39, 3, + 1, 0, 0, 0, 0, 44, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, 101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 48, 74,213, 2,192, 0, 0, 0, 1, 0, 0, 0,152, 75,213, 2,200, 72,213, 2, -184, 92,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 47, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 48, 39, 3, 1, 0, 0, 0,144, 45, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,152, 75,213, 2,192, 0, 0, 0, - 1, 0, 0, 0, 0, 77,213, 2, 48, 74,213, 2,120, 93,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109, -101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109, -101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, - 0, 0, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 56, 1, 0, 0, 0, 77,213, 2,192, 0, 0, 0, 1, 0, 0, 0,104, 78,213, 2,152, 75,213, 2, 56, 94,137, 3, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 48, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 50, 39, 3, + 1, 0, 0, 0, 32, 47, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,104, 78,213, 2,192, 0, 0, 0, 1, 0, 0, 0,208, 79,213, 2, - 0, 77,213, 2,248, 94,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 50, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 51, 39, 3, 1, 0, 0, 0,176, 48, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,208, 79,213, 2, -192, 0, 0, 0, 1, 0, 0, 0, 56, 81,213, 2,104, 78,213, 2,184, 95,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, - 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 56, 1, 0, 0, 56, 81,213, 2,192, 0, 0, 0, 1, 0, 0, 0,160, 82,213, 2,208, 79,213, 2, 56, 97,137, 3, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 51, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 53, 39, 3, + 1, 0, 0, 0, 64, 50, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,160, 82,213, 2,192, 0, 0, 0, 1, 0, 0, 0, - 8, 84,213, 2, 56, 81,213, 2,248, 97,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114, -111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114, -111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 53, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 54, 39, 3, 1, 0, 0, 0,208, 51, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 10, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, - 8, 84,213, 2,192, 0, 0, 0, 1, 0, 0, 0,112, 85,213, 2,160, 82,213, 2,184, 98,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 54, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 56, 39, 3, + 1, 0, 0, 0, 96, 53, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 56, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0,240, 54, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 59, 39, 3, + 1, 0, 0, 0,128, 56, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,112, 85,213, 2,192, 0, 0, 0, 1, 0, 0, 0,112,166,138, 3, 8, 84,213, 2, -120, 99,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 59, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 10, 0, 0, 0, 0, 0, 10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,112,166,138, 3,192, 0, 0, 0, - 1, 0, 0, 0, 8,165,138, 3,112, 85,213, 2, 56,100,137, 3, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121, -105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121, -105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 2, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 56, 1, 0, 0, 8,165,138, 3,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112,166,138, 3,184,101,137, 3, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 62, 39, 3, + 1, 0, 0, 0,160, 59, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, +110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,216, 86,213, 2,161, 0, 0, 0, 1, 0, 0, 0, 64, 93,213, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 62, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 65, 39, 3, + 1, 0, 0, 0,192, 62, 39, 3, 1, 0, 0, 0,144,118,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, + 18, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 65, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 67, 39, 3, 1, 0, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0,128,129,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 67, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 69, 39, 3, + 1, 0, 0, 0,224, 65, 39, 3, 1, 0, 0, 0, 96,131,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 18, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 69, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,112, 67, 39, 3, 1, 0, 0, 0,192,136,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 18, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 72, 39, 3, + 1, 0, 0, 0, 0, 69, 39, 3, 1, 0, 0, 0, 32,139,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 18, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 72, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 73, 39, 3, 1, 0, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,128,144,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 18, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 73, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 75, 39, 3, + 1, 0, 0, 0, 32, 72, 39, 3, 1, 0, 0, 0,112,101,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 75, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 76, 39, 3, 1, 0, 0, 0,176, 73, 39, 3, 1, 0, 0, 0, 48,153,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 76, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 64, 75, 39, 3, 1, 0, 0, 0,144,155,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, + 18, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96, 78, 39, 3, + 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144, 85, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 32,153,136, 3,255, 20, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -248, 0, 0, 0,232, 87,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 16, 89,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, - 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,240,158,234, 24, 1, 0, 0, 0,255, 21, 0, 0, +160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 79, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 16, 89,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -232, 87,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, - 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 90,213, 2, 68, 65, 84, 65,216, 2, 0, 0, 56, 90,213, 2, -155, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, -226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, -184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, - 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, -184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 79, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,240, 0, 0, 0, 64, 93,213, 2,156, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,216, 86,213, 2,232, 87,213, 2, - 16, 89,213, 2, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0,240,211,213, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96, 82, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96, 82, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,144, 85, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 78, 39, 3, + 1, 0, 0, 0,160, 79, 39, 3, 1, 0, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,200,121,207, 2,193, 0, 0, 0, 1, 0, 0, 0, 88,122,207, 2, 56,121,207, 2, - 72,187,200, 2, 24,190,200, 2, 96,190,200, 2,136,189,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, - 95, 0, 0, 0, 15, 15, 16, 6, 96, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,198,201, 2,176, 96,213, 2,240,102,213, 2, - 96, 94,213, 2,136, 95,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 64, 43,210, 2,128, 42,210, 2, 68, 65, 84, 65,248, 0, 0, 0, - 96, 94,213, 2,194, 0, 0, 0, 1, 0, 0, 0,136, 95,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240, 86, 39, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 98, 39, 3, 1, 0, 0, 0, 96, 40, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, + 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 15, 15,124, 4,100, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224, 7, 35, 3, 1, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,128, 97, 39, 3, 1, 0, 0, 0,208, 87, 39, 3, + 1, 0, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,231, 42, 25, + 1, 0, 0, 0,144, 80, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 87, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0,128,143, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 16, 6, 26, 0, 16, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 6, 26, 0, 6, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 56,167,201, 2,136,163,133, 3,136,163,133, 3, 0, 0, 0, 0, 0, 0, 0, 0,144, 75,207, 2,128, 76,207, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,136, 95,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 96, 94,213, 2, - 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 15, 6, 0, 0, 18, 0, 0, 0, 69, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, -205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 16, 6, 70, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 26, 0, 0, 0, - 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 6, 70, 0, 7, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,166,201, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -248, 76,207, 2,216, 78,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,180, 0, 0, 0,176, 96,213, 2,171, 0, 0, 0, - 1, 0, 0, 0,240,102,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,124, 4, 26, 0,124, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 26, 0, 5, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 9, 35, 3, 1, 0, 0, 0,208, 61,235, 24, 1, 0, 0, 0,208, 61,235, 24, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,218,117, 22, 1, 0, 0, 0, 16,201,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 87, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 18, 0, 0, 0, + 73, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,124, 4, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 26, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 74, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,192, 8, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,203,117, 22, 1, 0, 0, 0,128,185,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0,128, 97, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, -152, 97,213, 2,194, 0, 0, 0, 1, 0, 0, 0,192, 98,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 91, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,240, 92, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,192, 98,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,152, 97,213, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 92, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 91, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, - 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 99,213, 2, 68, 65, 84, 65,216, 2, 0, 0,232, 99,213, 2,155, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 94, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80, 94, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, @@ -361,308 +538,383 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -240, 0, 0, 0,240,102,213, 2,156, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 96,213, 2,152, 97,213, 2,192, 98,213, 2, - 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0,240,211,213, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, - 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 96, 0, 0, 0, 88,122,207, 2,193, 0, 0, 0, 1, 0, 0, 0,232,122,207, 2,200,121,207, 2, 24,190,200, 2, -104,188,200, 2,208,189,200, 2, 96,190,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 97, 0, 0, 0,187, 3, 0, 0, - 1, 1, 16, 6, 91, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,152,198,201, 2,232,151,213, 2,232,151,213, 2, 16,104,213, 2, -184,147,213, 2, 0, 0, 0, 0, 0, 0, 0, 0,128, 45,210, 2,160, 43,210, 2, 68, 65, 84, 65,248, 0, 0, 0, 16,104,213, 2, -194, 0, 0, 0, 1, 0, 0, 0, 56,105,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 68, 0, 0, 0, 0, 0, 0,208, 65, - 0, 0, 0, 0, 0, 0,194, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, - 4, 0, 12, 4, 10, 0, 16, 6, 26, 0, 16, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 97, 0, 0, 0,122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 6, 26, 0, 8, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8,170,201, 2, - 32,165,133, 3, 32,165,133, 3, 0, 0, 0, 0, 0, 0, 0, 0, 80, 79,207, 2,184, 80,207, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,248, 0, 0, 0, 56,105,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 48,109,213, 2, 16,104,213, 2, 0, 0, 0, 0, - 0, 0, 15, 67, 0,192, 45,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0,192, 45,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,200, 2, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,200, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,201, 2,143, 0,183, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,243, 0, 0, 0,187, 3, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,201, 2, 9, 0, 5, 0, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,232,168,201, 2, 80,168,133, 3,184,166,133, 3, 96,106,213, 2,200,107,213, 2, 48, 81,207, 2, -232, 78,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 96,106,213, 2,192, 0, 0, 0, 1, 0, 0, 0, -200,107,213, 2, 0, 0, 0, 0, 56, 64,201, 2, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, -104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, -104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 34, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, -200,107,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 96,106,213, 2,112,160,135, 3, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, - 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,254, -143, 0,120, 1, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 48,109,213, 2,194, 0, 0, 0, 1, 0, 0, 0,192,111,213, 2, 56,105,213, 2, - 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, -143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,123, 0, 0, 0, -242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,120, 0, 10, 0, 6, 0, 34, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120,169,201, 2,232,169,133, 3,232,169,133, 3, 88,110,213, 2, 88,110,213, 2, - 96, 79,210, 2,200, 80,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 88,110,213, 2,192, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,248, 64,201, 2, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, -115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, -115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,112,101,114, 97,116,111,114, 0,105,116,109, -111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -248, 0, 0, 0,192,111,213, 2,194, 0, 0, 0, 1, 0, 0, 0,184,147,213, 2, 48,109,213, 2, 0, 0, 0, 0, 0, 0, 75, 67, - 0,128,118,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, 0,128, 27,196, 0, 0, 0, 0,203, 0, 0, 0,220, 0, 0, 0, - 18, 0, 0, 0,127, 2, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, - 18, 0, 0, 0,127, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, - 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,220, 0,128, 2,203, 0,110, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, 0, 15, 6, 0, 0,123, 0, 0, 0,187, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 88,168,201, 2, 0, 0, 0, 0, 0, 0, 0, 0,232,112,213, 2, 8,120,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0,232,112,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 80,114,213, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, + 32, 1, 0, 0,128, 97, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 90, 39, 3, + 1, 0, 0, 0,144, 91, 39, 3, 1, 0, 0, 0,240, 92, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26,255,203, 0,206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 80,114,213, 2, -192, 0, 0, 0, 1, 0, 0, 0,208,115,213, 2,232,112,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, - 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, - 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80, -101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200,254,203, 0, 58, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 56, 1, 0, 0,208,115,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 56,117,213, 2, 80,114,213, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,129,253,203, 0, 47, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 56,117,213, 2,192, 0, 0, 0, 1, 0, 0, 0, -160,118,213, 2,208,115,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, - 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, - 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66,252,203, 0, 39, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,224, 98, 39, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0,240, 86, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, + 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 93, 2, 0, 0,248, 2, 0, 0, 3, 3, 36, 1,156, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 64, 5, 35, 3, 1, 0, 0, 0,128,102, 39, 3, 1, 0, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,192, 99, 39, 3, + 1, 0, 0, 0, 32,101, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,219,117, 22, + 1, 0, 0, 0,160,185, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 99, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 32,101, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,146, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 36, 1, 26, 0, 36, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0,223, 2, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 26, 0, 7, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 7, 35, 3, 1, 0, 0, 0, 0,237, 42, 25, 1, 0, 0, 0, 0,237, 42, 25, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 10, 42, 25, 1, 0, 0, 0, 16,206,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,101, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 99, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,137, 67, 0, 0,228,194, 0, 0, 0,192, 19, 1, 0, 0, 36, 1, 0, 0, 18, 0, 0, 0, +129, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 18, 0, 0, 0, +129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, + 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 36, 1,130, 0, 19, 1,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 93, 2, 0, 0,222, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1,130, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 32, 6, 35, 3, 1, 0, 0, 0,240,146, 40, 25, 1, 0, 0, 0,240,146, 40, 25, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 22, 12, 3, 1, 0, 0, 0, 96,210,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,102, 39, 3, 1, 0, 0, 0,166, 0, 0, 0, + 1, 0, 0, 0, 0,108, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, -160,118,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 8,120,213, 2, 56,117,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,109,101,115,104,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,109,101,115,104,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77,101,115,104, - 32, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254,250, -203, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, 8,120,213, 2,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,160,118,213, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, -103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, -103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42,252,203, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,184,147,213, 2,194, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0,192,111,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 91, 42, 25, 1, 0, 0, 0,112, 91, 42, 25, + 1, 0, 0, 0,224,103, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 6, 0, 0,123, 0, 0, 0,187, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 6, 65, 3, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200,167,201, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 81,210, 2,176, 89,210, 2, 0, 0, 0, 0,224,148,213, 2, 68, 65, 84, 65, -216, 2, 0, 0,224,148,213, 2,155, 0, 0, 0, 1, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,107, 2, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 13,128,191, 0, 0,128,191, - 0, 0, 0, 0, 0, 0, 0, 0, 74,215, 76,190, 0, 0, 0, 0,238, 4, 53, 63,186,103, 59,190,247,217, 46, 63, 0, 0, 0, 0, -255, 4, 53, 63,126,103, 59, 62,244,217, 46,191, 0, 0, 0, 0,228, 3, 52, 50,248, 70,119, 63,217,131,132, 62, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,152, 60,138,193, 0, 0,128, 63,236, 4, 53, 63,244, 4, 53, 63, 0, 0, 24, 53, 0, 0, 0, 0, -137,103, 59,190,118,103, 59, 62,227, 70,119, 63, 0, 0, 0, 0,238,217, 46, 63,221,217, 46,191,213,131,132, 62, 0, 0, 0, 0, -186,213, 60, 65,168,213, 60,193,221, 28,143, 64, 0, 0,128, 63, 99,253, 69, 63,212,242,190,190,223,235, 46,191,247,217, 46,191, -117,253, 69, 63,151,242,190, 62,220,235, 46, 63,244,217, 46, 63, 64,228, 68, 50,223,243,251, 63,107,145,132,190,217,131,132,190, - 0, 0, 0, 0, 0, 0, 0, 0, 18,177,136, 65,152, 60,138, 65,252,128, 37, 63,190,128, 37, 63, 0, 0,172, 53, 0, 0, 52, 52, - 40,237,183,189, 22,237,183, 61, 53,176,242, 62, 0, 0,160, 50, 25,255,107,194, 2,255,107, 66,239,218,178,193,209,247,159,192, -220, 91,105, 66,198, 91,105,194, 49,219,176, 65, 51, 8,160, 64,238, 4, 53, 63,186,103, 59,190,247,217, 46, 63, 0, 0, 0, 0, -255, 4, 53, 63,126,103, 59, 62,244,217, 46,191, 0, 0, 0, 0,228, 3, 52, 50,248, 70,119, 63,217,131,132, 62, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,152, 60,138,193, 0, 0,128, 63, 99,253, 69, 63,212,242,190,190,223,235, 46,191,247,217, 46,191, -117,253, 69, 63,151,242,190, 62,220,235, 46, 63,244,217, 46, 63, 64,228, 68, 50,223,243,251, 63,107,145,132,190,217,131,132,190, - 0, 0, 0, 0, 0, 0, 0, 0, 18,177,136, 65,152, 60,138, 65,240,113,195, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,113,195, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,113,195, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,122,163, 59, 63,235,250, 15,191,221,141,110,190,230,113,155,190, -152, 60,138, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,109,154, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0,224,103, 39, 3, 1, 0, 0, 0,218, 0, 0, 0, + 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 48,104, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 48,104, 39, 3, + 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 21, 0, 1, 0, + 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,176,155, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,166, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0,208,159, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,224,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,242,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,151, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,150, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64,105, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,106, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, +247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,232,151,213, 2,156, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0,240,211,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0,205,204,204, 61, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0,255,255, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,232,122,207, 2,193, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 88,122,207, 2,168,190,200, 2,208,189,200, 2,176,188,200, 2,240,190,200, 2, 0, 0, 0, 0, 17, 6, 0, 0, -110, 7, 0, 0,245, 2, 0, 0,187, 3, 0, 0, 3, 3, 94, 1,199, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,164,201, 2, - 88,155,213, 2,184,193,213, 2, 8,153,213, 2, 48,154,213, 2, 0, 0, 0, 0, 0, 0, 0, 0,160, 46,210, 2,224, 45,210, 2, - 68, 65, 84, 65,248, 0, 0, 0, 8,153,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 48,154,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,180, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,175, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 93, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 94, 1, 26, 0, 94, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 6, 0, 0,110, 7, 0, 0,245, 2, 0, 0, 14, 3, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 1, 26, 0, 12, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24,166,201, 2,128,171,133, 3,128,171,133, 3, 0, 0, 0, 0, 0, 0, 0, 0, 40, 90,210, 2, -160, 90,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 48,154,213, 2,194, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 8,153,213, 2, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,166, 67, - 0, 0, 27,195, 0, 0, 0, 0, 77, 1, 0, 0, 94, 1, 0, 0, 18, 0, 0, 0,172, 0, 0, 0, 0, 0, 0, 0, 76, 1, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 76, 1, 0, 0, 18, 0, 0, 0,172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 94, 1, -173, 0, 77, 1,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 6, 0, 0, -110, 7, 0, 0, 15, 3, 0, 0,187, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 1,173, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,165,201, 2, 96, 83,133, 3, 96, 83,133, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 91,210, 2, 8, 92,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 1, 0, 0, - 88,155,213, 2,165, 0, 0, 0, 1, 0, 0, 0,160,189,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,139, 3, 24, 6,139, 3,144,156,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 12, 0, 0, 0,144,156,213, 2,217, 0, 0, 0, - 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,208,156,213, 2, 68, 65, 84, 65,156, 0, 0, 0,208,156,213, 2,216, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,216,194,213, 2, 19, 0, 0, 0, 1, 0, 1, 0,216,194,213, 2, 20, 0, 0, 0, - 1, 0, 1, 0,216,194,213, 2, 21, 0, 1, 0, 1, 0, 1, 0,216,194,213, 2, 0, 0, 0, 0, 1, 0, 1, 0,128,205,213, 2, - 0, 0, 0, 0, 1, 0, 1, 0,168,215,213, 2, 0, 0, 0, 0, 1, 0, 1, 0, 80,184,210, 2, 0, 0, 0, 0, 1, 0, 1, 0, - 24,223,213, 2, 0, 0, 0, 0, 1, 0, 1, 0, 32,227,213, 2, 0, 0, 0, 0, 1, 0, 1, 0, 96,219,213, 2, 0, 0, 0, 0, - 1, 0, 1, 0,152,202,213, 2, 0, 0, 0, 0, 1, 0, 1, 0,240,211,213, 2, 0, 0, 0, 0, 1, 0, 1, 0,240,201,213, 2, - 68, 65, 84, 65,248, 0, 0, 0,184,157,213, 2,194, 0, 0, 0, 1, 0, 0, 0,224,158,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,224,158,213, 2,194, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0,184,157,213, 2, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67, -223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0, -156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,160,106, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,105, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, + 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, +156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, 247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0, -160,189,213, 2,161, 0, 0, 0, 1, 0, 0, 0,184,193,213, 2, 88,155,213, 2,184,157,213, 2,224,158,213, 2, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 0, 1, 0, 0, 0,108, 39, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,128,102, 39, 3, + 1, 0, 0, 0, 64,105, 39, 3, 1, 0, 0, 0,160,106, 39, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 8,160,213, 2,194, 0, 0, 0, 1, 0, 0, 0, - 48,161,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, - 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, - 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, - 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, -108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, - 48,161,213, 2,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8,160,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,109, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,110, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,110, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,109, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -176,190,213, 2, 68, 65, 84, 65,216, 2, 0, 0,176,190,213, 2,155, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, + 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,112, 39, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,184,193,213, 2,156, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0,160,189,213, 2, 8,160,213, 2, 48,161,213, 2, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0,240,211,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 0, 0,108, 5, 0, 0,216,194,213, 2, -153, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0, -116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -240,211,213, 2,128,205,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 48, 74,208, 2,208, 74,208, 2, 48, 74,208, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -120,200,213, 2,232,140,138, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, - 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, - 0, 0,128, 0, 0, 0, 8, 0, 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 66,207, 2, - 48, 66,207, 2, 0, 0, 0, 0, 0, 0,200, 66, 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,108, 39, 3, 1, 0, 0, 0, 64,109, 39, 3, 1, 0, 0, 0,160,110, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 98, 39, 3, + 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0,101, 0, 0, 0,248, 2, 0, 0, 1, 1,124, 4, +148, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 10, 35, 3, 1, 0, 0, 0,144,141, 39, 3, 1, 0, 0, 0,176,145, 39, 3, + 1, 0, 0, 0,112,117, 39, 3, 1, 0, 0, 0, 0,137, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16,186, 41, 25, 1, 0, 0, 0,176, 18,119, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,117, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,118, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,143, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +123, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,124, 4, 26, 0,124, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0,101, 0, 0, 0, +126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 26, 0, 9, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 18, 35, 3, 1, 0, 0, 0,144, 46, 43, 25, 1, 0, 0, 0,144, 46, 43, 25, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,243, 40, 25, 1, 0, 0, 0, 16,218,117, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,118, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,123, 39, 3, 1, 0, 0, 0,112,117, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 0,248,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 0,248,195, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, 2, 2,143, 0,240, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,247, 0, 0, 0, +248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0, 2, 2, 13, 0, 5, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 35, 3, 1, 0, 0, 0, 0,172,237, 24, 1, 0, 0, 0, 96,102,235, 24, + 1, 0, 0, 0, 48,120, 39, 3, 1, 0, 0, 0,192,121, 39, 3, 1, 0, 0, 0, 80,244, 40, 25, 1, 0, 0, 0,112,169,236, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,120, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,121, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 15, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,121, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,120, 39, 3, 1, 0, 0, 0,224, 74,191, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, + 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,254, +143, 0,120, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,123, 39, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,126, 39, 3, 1, 0, 0, 0,208,118, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,127, 0, 0, 0, +246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,120, 0, 14, 0, 6, 0, 34, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 16, 35, 3, 1, 0, 0, 0, 80,149,236, 24, 1, 0, 0, 0, 80,149,236, 24, + 1, 0, 0, 0,176,124, 39, 3, 1, 0, 0, 0,176,124, 39, 3, 1, 0, 0, 0,128,158, 40, 25, 1, 0, 0, 0,208,226,117, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,124, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 17, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,126, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,137, 39, 3, + 1, 0, 0, 0, 80,123, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, + 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,123, 4, 0, 0,123, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 12, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,127, 39, 3, 1, 0, 0, 0,112,135, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,127, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,129, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 13, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, +115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, +163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,129, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,130, 39, 3, 1, 0, 0, 0,160,127, 39, 3, 1, 0, 0, 0, 16, 14, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,130, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,132, 39, 3, + 1, 0, 0, 0, 48,129, 39, 3, 1, 0, 0, 0,192,165,190, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, +163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,132, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,133, 39, 3, 1, 0, 0, 0,192,130, 39, 3, 1, 0, 0, 0,208, 66,189, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,133, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,135, 39, 3, + 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0,160, 90,189, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, +103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, +163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,135, 39, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,133, 39, 3, 1, 0, 0, 0,224,171,190, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,137, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 64,126, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 0, 0, 0,123, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,220, 3,122, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 11, 35, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240,228,117, 22, 1, 0, 0, 0, 96,160,118, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,138, 39, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,138, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 43,218, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, + 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, + 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62, +240, 75, 47,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 69,253,168, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188, +176, 69,195, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 62,239,191, 62, +175,116, 85, 63, 48,205, 70,188, 0, 0,115,181, 84, 86,113,190,200,167,232, 61, 7,111, 6, 63, 0, 0,224, 53,215,104, 25,196, +133,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,158, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62, +240, 75, 47,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 69,253,168, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188, +176, 69,195, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, + 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,229,149,242, 58, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,141, 39, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,176,145, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,189, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,142, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 80,144, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,144, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,142, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176,145, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,141, 39, 3, 1, 0, 0, 0,240,142, 39, 3, 1, 0, 0, 0, 80,144, 39, 3, + 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 67, 0, 0, 0, 6, 0, 0, 48,216,135, 3, 1, 0, 0, 0,154, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0,116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,230,135, 3, 1, 0, 0, 0,176,155, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0,240,147, 39, 3, + 1, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,148, 39, 3, + 1, 0, 0, 0, 32,211,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 0, 0, 0, + 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, + 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, + 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 39, 3, 1, 0, 0, 0, 0,150, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 66, 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -672,7 +924,7 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47,116,109,112, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -686,239 +938,279 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0, 154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,187,200, 2, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, - 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, 1, 0, 5, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, -180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0,128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, 1, 0, 0, 0, 68, 65, 84, 65, 28, 0, 0, 0, 48, 74,208, 2, -130, 0, 0, 0, 1, 0, 0, 0,128, 74,208, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 8, 3,160, 1, -168,215,213, 2, 68, 65, 84, 65, 28, 0, 0, 0,128, 74,208, 2,130, 0, 0, 0, 1, 0, 0, 0,208, 74,208, 2, 48, 74,208, 2, - 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,231, 3,223, 2, 96,219,213, 2, 68, 65, 84, 65, 28, 0, 0, 0,208, 74,208, 2, -130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 74,208, 2, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,100, 3,251, 2, -240,211,213, 2, 68, 65, 84, 65, 72, 1, 0, 0,120,200,213, 2,149, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58, -205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, - 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 80, 0, 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, - 50, 0,100, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, - 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60,205,204,204, 61, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, 0, 0,192, 63, 0, 0,240, 65, - 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 72, 0, 0, 0, 48, 66,207, 2,135, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101, -110,100,101,114, 76, 97,121,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,175, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, + 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, +128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0,144,147, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,238, 1, 61, 1, 48,236,135, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0,240,147, 39, 3, + 1, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,126, 2, 26, 2, 48,242,135, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,109, 0,128, 1, 48,230,135, 3, + 1, 0, 0, 0, 68, 65, 84, 65,112, 1, 0, 0, 80,148, 39, 3, 1, 0, 0, 0,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, + 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, + 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, + 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, + 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, + 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 0, 0, 0, 0,150, 39, 3, 1, 0, 0, 0,136, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101, +114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0,255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0, -120, 0, 0, 0,240,201,213, 2, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66, -161, 14,234, 64, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,124, 1, 0, 0,152,202,213, 2, 41, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, +152, 0, 0, 0,144,150, 39, 3, 1, 0, 0, 0, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, +114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,248, 1, 0, 0, 96,151, 39, 3, 1, 0, 0, 0, 41, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 72,204,213, 2, - 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64, 64, 11, 3, 0, 1, 0, 0, 0, - 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 75,208, 2, 68, 65, 84, 65, 8, 1, 0, 0, - 72,204,213, 2, 71, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, 0, 0,128, 67, 0, 0, 0, 0, - 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,248, 51,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,248, 51,213, 2, - 69, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 32, 0, 0, 0, 32, 75,208, 2, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0,104, 1, 0, 0,128,205,213, 2, -129, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61,205,204,204, 61, -205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0,128, 0, 5, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0,112, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 61, 0, 0, 5, 0, 0, 0, 0, 0, 10,215,163, 59, 0, 0, 0, 0, - 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,120, 0, 0, 0, 24,207,213, 2, 27, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, - 1, 0, 0, 0, 64, 52,213, 2, 64, 52,213, 2, 64, 52,213, 2, 64, 52,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192,207,213, 2,255,255,255,255, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0, 64, 52,213, 2, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,180,207, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0, 80,180,207, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, - 79, 66, 0, 0,136, 3, 0, 0,240,211,213, 2,118, 0, 0, 0, 1, 0, 0, 0,168,215,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,201,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, - 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, - 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,125,103,133, 51,176,219,194,178, 0, 0, 0, 0,190, 32, 66, 51, 1, 0,128, 63, -168,200,153, 51, 0, 0, 0, 0, 32,206, 18,179,126,126,149, 50, 1, 0,128, 63, 0, 0, 0, 0,241,251,133, 52,172,182, 27,180, -174,236,252, 51, 0, 0,128, 63, 0, 0,128, 63,157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, - 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51,243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, - 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63, -187,225, 16, 63, 0, 0,128, 63,205,204,204, 62,237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0, -136, 3, 0, 0,168,215,213, 2,118, 0, 0, 0, 1, 0, 0, 0, 96,219,213, 2,240,211,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 79, 66, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232,154,136, 3, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80,184,210, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -136,180,207, 2,192,180,207, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190,227,251,159, 62, 56, 53,101, 63, - 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64,151, 62,208,192, 77,255,170, 64, - 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, - 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,144,153, 39, 3, + 1, 0, 0, 0, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,179,210, 2,120,180,210, 2, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0, -136,180,207, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,192,180,207, 2, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,136, 3, 0, 0, 96,219,213, 2,118, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -168,215,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152,202,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154,112,130, 64, -183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,123, 38, 63, 87, 43, 98, 61, -229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63,236, 13, 98,189, 0, 0, 0, 0, -221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62,164,111, 75, 63, 0, 0, 0, 0, -154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 35,233,134, 49,251,110, 17,179, 0, 0, 0, 0, - 49,158,141, 50, 1, 0,128, 63,126,214,237, 50, 0, 0, 0, 0,155,248, 28,178,199,139, 96,177,254,255,127, 63, 0, 0, 0, 0, - 80,136,159,178,192, 4,158,178,209,114,143,179, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, 37,255, 16, 63, 0, 0, 0,128, - 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63,166,111, 75, 63, 0, 0, 0,128, -208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, - 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, - 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,155, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 56, 1, 0, 0,144,153, 39, 3, 1, 0, 0, 0, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, + 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63, 0,155, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 0,155, 39, 3, 1, 0, 0, 0, 70, 1, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 80,155, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0, +216, 1, 0, 0,176,155, 39, 3, 1, 0, 0, 0,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61, +205,204,204, 61,205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0, +128, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0,112, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 61, 0, 0, 5, 0, 0, 0, 0, 0, 10,215,163, 59, + 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,176, 0, 0, 0,192,157, 39, 3, 1, 0, 0, 0, 27, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0,176,158, 39, 3, + 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,224,135, 3, 1, 0, 0, 0,255,255,255,255, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,158, 39, 3, + 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,159, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0, 16,159, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,230,135, 3, 1, 0, 0, 0, +119, 0, 0, 0, 1, 0, 0, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,150, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, + 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63, +149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0,128, 63, + 1, 0,128, 51, 1, 0, 0,179, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0,128, 63, 1, 0,128, 51, 0, 0, 0, 0, 2, 0, 0,179, + 2, 0, 0,167, 1, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 53, 1, 0, 0, 41, 1, 0,128,168, 0, 0,128, 63, 0, 0,128, 63, +157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51, +243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62, +237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 0, 0,152, 4, 0, 0, 48,236,135, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, 48,242,135, 3, 1, 0, 0, 0, + 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112, +104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,249,236, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,166, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,159, 39, 3, 1, 0, 0, 0,144,159, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190, +227,251,159, 62, 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64, +151, 62,208,192, 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, + 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, + 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 77, 65, 0, 0,160, 2, 0, 0, 24,223,213, 2, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, -232,225,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,236,236, 24, 1, 0, 0, 0, 96,242,236, 24, 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 75,208, 2, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63, -205,204, 76, 63,205,204, 76, 63,205,204, 76, 61,205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0, -232,225,213, 2, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,227,213, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0,144, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, 32, 0, 0, 0,112, 75,208, 2, - 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, 40, 1, 0, 0, 32,227,213, 2, 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0, 0, 64, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 80,159, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,144,159, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,242,135, 3, 1, 0, 0, 0,119, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 77, 69, 0, 0, 24, 1, 0, 0, 80,184,210, 2, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96,151, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +229,123, 38, 63, 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63, +236, 13, 98,189, 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62, +164,111, 75, 63, 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 1, 0,128, 50, + 0, 0, 0,179, 0, 0, 0, 0, 1, 0,128, 50, 1, 0,128, 63, 1, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 39, 1, 0, 0, 52, 1, 0,128, 39, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, + 37,255, 16, 63, 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63, +166,111, 75, 63, 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, +100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, + 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0, + 32, 3, 0, 0,208,159, 39, 3, 1, 0, 0, 0, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, + 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, + 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, + 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 48,163, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -248,180,207, 2,104, 32,131, 3, 0, 0, 0, 0, 0, 0, 0, 0,120,228,213, 2,128, 0,131, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72,140,210, 2, 1, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,208,141,210, 2, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 88,143,210, 2, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, - 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, - 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,248,180,207, 2, 0, 0, 0, 0, - 1, 0, 0, 0, 24,223,213, 2, 68, 65, 84, 65, 84, 1, 0, 0, 72,140,210, 2, 74, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120,228,213, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61, +205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 16, 1, 0, 0, 48,163, 39, 3, + 1, 0, 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,164, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0,144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, + 40, 0, 0, 0,128,164, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, +104, 1, 0, 0,224,164, 39, 3, 1, 0, 0, 0, 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, + 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, +144, 1, 0, 0,128,166, 39, 3, 1, 0, 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,168, 39, 3, 1, 0, 0, 0, 64,175, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,170, 39, 3, 1, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144,168, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,171, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,173, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, + 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 80,168, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,208,159, 39, 3, + 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0,144,168, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0,120,228,213, 2, 60, 0, 0, 0, - 8, 0, 0, 0, 0, 0,128, 63,255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, 0, 0,128, 63, - 0, 0,128,191, 0, 0,128,191,230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, 0, 0,128,191, - 26,182, 26,182, 26,182,255,127, 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, 26,182,255,127, - 1, 0, 0, 0, 4, 0,128, 63,247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0,245,255,127, 63, - 5, 0,128,191, 0, 0,128, 63,230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, 0, 0,128, 63, - 26,182, 26,182,230, 73,255,127, 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73,230, 73,255,127, - 1, 0, 0, 0, 68, 65, 84, 65, 84, 1, 0, 0,208,141,210, 2, 74, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,170, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0,131, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -926,16 +1218,17 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0, 48,170, 39, 3, 1, 0, 0, 0, 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63, +255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191, +230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, 0, 0,128,191, 26,182, 26,182, 26,182,255,127, + 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63, +247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0,245,255,127, 63, 5, 0,128,191, 0, 0,128, 63, +230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, + 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73,230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, +104, 1, 0, 0, 48,171, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 0, 0, 0,128, 0,131, 3, 57, 0, 0, 0, 12, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, - 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, - 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 68, 65, 84, 65, 84, 1, 0, 0, 88,143,210, 2, 74, 1, 0, 0, - 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,104, 32,131, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -943,37 +1236,45 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0, -104, 32,131, 3, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, - 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, - 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, - 0, 0, 0, 2, 85, 83, 69, 82, 56, 11, 0, 0, 0, 94,252, 0,188, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, - 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +144, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 57, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, + 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 35, 0, 68, 65, 84, 65,104, 1, 0, 0,160,173, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,175, 39, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114, -112, 99, 47, 98,105,110, 47, 98,108,101,110,100,101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111, -117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0, 64,175, 39, 3, 1, 0, 0, 0, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,160, 11, 0, 0, 96,186,112, 1, + 1, 0, 0, 0,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, + 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100, +101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -984,7 +1285,6 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -994,16 +1294,7 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 48, 52, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, - 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, -104,229,213, 2,120, 44,131, 3,120,175,210, 2,120,175,210, 2, 24, 76,131, 3, 24, 76,131, 3, 32, 0, 0, 0, 1, 0, 2, 0, - 25, 0, 0, 0, 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62, -205,204, 76, 62, 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -195, 73, 76, 63, 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 16, 47, 93, 62, 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1013,856 +1304,884 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 21, 0, 0,104,229,213, 2,186, 0, 0, 0, - 1, 0, 0, 0,120, 44,131, 3, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255, -255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255, -255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, - 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255, -255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255, -255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255, -255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255, -204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, - 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230,100,100,100,255,160,160,160,255, -255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, - 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180,100,100,100,180,128,128,128,255, 0, 0, 0,255, -255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, 0, 0, 0,255, 0, 0, 0,255, - 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255,240,235,100,255,215,211, 75,255,180, 0,255,255, -153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,130,130,130,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76,255, - 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,140, 25,255,250,250,250,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,250,250,250,255,250,250,250,255, -250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100, -112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255, -135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,173,173,173,255, -127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255, -255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100, -112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255, -135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128, -255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,116,116,116,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, - 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110,110,110,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,132,132,132,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, 94, 94, 94,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255, -198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, - 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,173,173,173,255, -127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255,105,117,110,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, - 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, - 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255, -241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 16, 64, 16,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, - 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255, -246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, - 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, - 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255, -106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, - 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255, -127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255, -139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 21, 0, 0,120, 44,131, 3,186, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0,104,229,213, 2, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, - 1, 0, 25, 0,231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, - 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, - 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, - 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, - 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, - 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, - 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, - 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, - 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, - 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255, -255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0, -255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, - 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255, -255,255,255,255,255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, - 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100, -255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, - 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255, -255, 0, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, - 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, - 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255, -144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, - 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, - 0, 0, 0, 40,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255, -255,255,255,255,230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, -150,150,150,255,129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255, -255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0, -255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255, -250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, - 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255, -135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255, -155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255, -255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255, -187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255, -189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,144,226, 0, 0,184,251,141, 3, 0, 0, 0, 0, 1, 0, 0, 0, 83, 68, 78, 65, - 78, 65, 77, 69, 17, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, 97, 0, 42,102,105,114,115,116, - 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, 0,121,109,105,110, 0,121,109, - 97,120, 0, 42,112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97,108, 50, 0,116,121,112,101, 0, -115,117, 98,116,121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97,118,101,100, 0,100, 97,116, 97, - 0,108,101,110, 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, 98, 0,110, 97,109,101, 91, 50, - 52, 93, 0,117,115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101,115, 0,105,100, 0, 42,105,100, - 98,108,111, 99,107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, 93, 0,102,105,108,101,110, 97, -109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0,119, 91, 50, 93, 0,104, 91, 50, - 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42,114,101, 99,116, 91, 50, 93, 0, - 42,111, 98, 0, 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97,109,101, 91, 49, 50, 56, 93, 0, - 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0,118, 97,114,116,121,112,101, 0, -116,111,116,118,101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105,116,109, 97,115,107, 0,115,108, -105,100,101, 95,109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, 0, 42,100,114,105,118,101,114, - 0, 99,117,114,118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105,112,111, 0,112,111,115, 0,114, -101,108, 97,116,105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101,105,103,104,116,115, 0,118,103, -114,111,117,112, 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101,114,109, 97,120, 0, 42, 97,100, -116, 0, 42,114,101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108,101,109,115,105,122,101, 0, 98, -108,111, 99,107, 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115,108,117,114,112,104, 0, 42,108, -105,110,101, 0, 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0,115,116, 97,114,116, 0,101,110, -100, 0,102,108, 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, 42,110, 97,109,101, 0,110,108, -105,110,101,115, 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99,117,114, 99, 0,115,101,108, 99, - 0,109, 97,114,107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95,112,111,115, 0,117,110,100,111, - 95,108,101,110, 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122,101, 0,115,101,101,107, 0,112, - 97,115,115,101,112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112,115,116, 97, 0, 99,108,105,112, -101,110,100, 0,108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97,119,115,105,122,101, 0,115,104, -105,102,116,120, 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, 70, 95, 97,112,101,114,116,117, -114,101, 0, 89, 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, 0, 89, 70, 95, 98,107,104,114, -111,116, 0, 42,100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101,115, 0,111,102,102,115,101,116, - 0,115,102,114, 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117,108,116,105, 95,105,110,100,101, -120, 0,108, 97,121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101,110,101, 0,105, 98,117,102,115, - 0, 42,103,112,117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115,111,117,114, 99,101, 0,108, 97, -115,116,102,114, 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110,100, 0,120,114,101,112, 0,121, -114,101,112, 0,116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, 0, 42,114,101,112, 98,105,110, -100, 0, 42,112, 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42,114,101,110,100,101,114, 95,116, -101,120,116, 0,108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, 97,110,105,109,115,112,101,101, -100, 0,103,101,110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97,115,112,120, 0, 97,115,112,121, - 0,116,101,120, 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108,101,110,100,116,121,112,101, 0, - 42,111, 98,106,101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0,112,114,111,106,120, 0,112,114, -111,106,121, 0,112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, 0,115,105,122,101, 91, 51, 93, - 0,114,111,116, 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0,112,109, 97,112,116,111, 0,112, -109, 97,112,116,111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, 99,104, 95,111,117,116,112,117, -116, 0, 98,114,117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0,114, 0,103, 0, 98, 0,107, 0, -100,101,102, 95,118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111,114,102, 97, 99, 0,100,105,115, -112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0,109,105,114,114,102, 97, 99, 0, - 97,108,112,104, 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, 0,101,109,105,116,102, 97, 99, - 0,104, 97,114,100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110,115,108,102, 97, 99, 0, 97,109, - 98,102, 97, 99, 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, 97, 99, 0, 99,111,108,116,114, - 97,110,115,102, 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, 99, 0,114,101,102,108,102, 97, - 99, 0,116,105,109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109,112,102, 97, 99, 0,107,105,110, -107,102, 97, 99, 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0,108,105,102,101,102, 97, 99, 0, -115,105,122,101,102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0,115,104, 97,100,111,119,102, 97, - 99, 0,122,101,110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108,101,110,100,102, 97, 99, 0,110, - 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, 42,115,116,110, 97,109,101,115, - 0,115,116,121,112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101,115,117,108,116, 0, 42, 99,102, -114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42,105,110,115,116, 97,110, 99,101, - 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118,101,114,115,105,111,110, 0, 97, - 0,105,112,111,116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105,109, 97,116, 91, 52, 93, 91, 52, - 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101,119,115, 99, 97,108,101, 0,110, -111,116,108, 97,121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97,108, 99, 0,108, 97,115,116,115, -105,122,101, 0,102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, 95,115,111,102,116,110,101,115, -115, 0,114, 97,100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111,116,112,111,105,110,116,115, 0, -112,100,112, 97,100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,111, 98, 95, - 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112,111,105,110,116, 95,116,114,101, -101, 0, 42,112,111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, 0,110,111,105,115,101, 95,100, -101,112,116,104, 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105,115,101, 95, 98, 97,115,105,115, - 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101,101,100, 95,115, 99, 97,108,101, - 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116,121,112,101, 0,102,105,108,101, - 95,102,111,114,109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105,112,108,105,101,114, 0,115,116, -105,108,108, 95,102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, 48, 93, 0, 42,100, 97,116, 97, -115,101,116, 0,110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105,103,104,116, 0, 99,111,110,116, -114, 97,115,116, 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116,101,114,115,105,122,101, 0,109, -103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, 97,118,101,115, 0,109,103, 95, -111,102,102,115,101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117,110,116, 0,110,115, 95,111,117, -116,115, 99, 97,108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, 0,118,110, 95,119, 52, 0,118, -110, 95,109,101,120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121,112,101, 0,110,111,105,115,101, -100,101,112,116,104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115,105,115, 0,110,111,105,115,101, - 98, 97,115,105,115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, 99,114,111,112,121,109,105,110, - 0, 99,114,111,112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105,108,116,101,114, 0, 97,102,109, - 97,120, 0,120,114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107,101,114,100,105,115,116, 0,110, - 97, 98,108, 97, 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108,117,103,105,110, 0, 42,101,110, -118, 0, 42,112,100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, 51, 93, 0,114,111,116, 91, 51, - 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, 93, 0,109,111,100,101, 0,116, -111,116,101,120, 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115,104,100,119,112, 97,100, 0,101, -110,101,114,103,121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, 98,108,101,110,100, 0,104, 97, -105,110,116, 0, 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102,102, 0,115,104, 97,100,115,112, -111,116,115,105,122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117, -102,102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, - 0,114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97, -121, 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, - 0, 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114, -101,115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, - 97,108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100, -116,121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115, -117,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116, -101,114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, - 98,105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97, -116,109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99, -101, 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114, -101, 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116, -111,110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117, -115,101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116, -105, 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, - 95,103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116, -101,120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, - 0,101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0, -101,109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, - 91, 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, - 97,108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115, -105,122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114, -101, 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105, -102,102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97, -108, 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105, -114,103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, - 97,110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, - 0,115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, - 0,102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110, -101,108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108, -105,109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101, -112,116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105, -114, 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95, -103,108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, - 95,116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, - 95,109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95, -108, 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122, -101, 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115, -116,114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, - 0,115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110, -100, 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98, -105, 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115, -101,108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, - 97,103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104, -110,101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115, -115, 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111, -108, 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, - 98,108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, - 99, 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105, -111,110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, - 97,109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115, -115,115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99, -111,108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, - 97, 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101, -120,116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, - 0,105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111, -108, 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97, -100, 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116, -101,108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122, -101, 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, - 99, 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0, -102, 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115, -118, 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, - 97,103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105, -110,116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, - 0,104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114, -111, 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0, -100,114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, - 95,115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101, -120,116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, - 99,116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110, -103, 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, - 0,117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116, -104, 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108, -121, 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102, -111,110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111, -120, 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99, -117,114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, - 97, 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42, -109,115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105, -116, 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, - 0,116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0, 99,117, 98,101, -109, 97,112,115,105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105,118, 0,115,117, 98,100,105,118, -114, 0,115,117, 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116,112, 97,103,101, 0,117,118, 91, - 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, 0,117,110,119,114, 97,112, 0, -118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115,101, 0, 98,119,101,105,103,104, -116, 0,100,101,102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99,111, 91, 51, 93, 0,110,111, 91, - 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, 0,115, 91, 50, 53, 54, 93, 0, -116,111,116,100,105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0,109,105,100, 0,118, 91, 50, 93, - 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, 0, 42,118,101,114,116,115, 0, -108,101,118,101,108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101,110,116, 0,110,101,119,108,118, -108, 0,101,100,103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108,118,108, 0,117,115,101, 95, 99, -111,108, 0, 42,101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 0, 42,118,101, -114,116, 95,109, 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, 99,101,115, 0, 42,111,108,100, - 95,101,100,103,101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115,117, 98,100,105,118, 84,121,112, -101, 0,114,101,110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, 42,109, 67, 97, 99,104,101, 0, -100,101,102, 97,120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97,110,100,111,109,105,122,101, 0, -115,101,101,100, 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, 42,101,110,100, 95, 99, 97,112, - 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102,102,115,101,116, 91, 51, 93, 0, -115, 99, 97,108,101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95,116,121,112,101, 0,111,102,102, -115,101,116, 95,116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101,114, 97,110, 99,101, 0, 42,109, -105,114,114,111,114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108,117,101, 0,114,101,115, 0,118, - 97,108, 95,102,108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97,103,115, 0, 98,101,118,101,108, - 95, 97,110,103,108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42,100,111,109, 97,105,110, 0, 42, -102,108,111,119, 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, 0,115,116,114,101,110,103,116, -104, 0,100,105,114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120,109, 97,112,112,105,110,103, 0, - 42,109, 97,112, 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, 91, 51, 50, 93, 0,117,118,108, - 97,121,101,114, 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, 0, 42,105,109, 97,103,101, 0, -110,117,109, 95,112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97,115,112,101, 99,116,121, 0,112, -101,114, 99,101,110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112,101, 97,116, 0, 42,111, 98,106, -101, 99,116, 99,101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0,104,101,105,103,104,116, 0,110, - 97,114,114,111,119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, 0,116,105,109,101,111,102,102, -115, 0,108,105,102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117,108,116,105, 0, 42,112,114,101, -118, 67,111,115, 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110,116,105,110,118, 91, 52, 93, 91, - 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105,110,100,101,120, 0,102,111,114, - 99,101, 0, 42, 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114,109,115, 0, 42, 99,111,108,108, - 95,112, 97,114,109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, 99,104,101,115, 0, 42,120, 0, - 42,120,110,101,119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101,119, 0, 42, 99,117,114,114,101, -110,116, 95,120, 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0,110,117,109,118,101,114,116,115, - 0,110,117,109,102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100,109, 0, 99,102,114, 97, 0,111, -112,101,114, 97,116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117,101,110, 99,101, 0,103,114,105, -100,115,105,122,101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103,104,116,115, 0, 42, 98,105,110, -100, 99,111,115, 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105,100, 0, 42,100,121,110,105,110, -102,108,117,101,110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, 0,100,121,110,103,114,105,100, -115,105,122,101, 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101,108,108,119,105,100,116,104, 0, - 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0,116,111,116,100,109,101,100,103, -101, 0,116,111,116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111,110, 0,114, 97,110,100,111,109, - 95,112,111,115,105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, 0,112,114,111,116,101, 99,116, - 0, 42,117,110,100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95,116,111,116, 0,117,110,100,111, - 95,115,105,103,110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108,101, 0, 42,102,115,115, 0, 42, -116, 97,114,103,101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, 95,110, 97,109,101, 91, 51, 50, - 93, 0,107,101,101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104,114,105,110,107, 79,112,116,115, - 0,112,114,111,106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, 42,111,114,105,103,105,110, 0, -102, 97, 99,116,111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112,116,115, 0,112,110,116,115,119, - 0,111,112,110,116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121,112,101,117, 0,116,121,112,101, -118, 0,116,121,112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100,119, 0, 42,100,101,102, 0, 42, -108, 97,116,116,105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 42,101,100,105,116,108, 97, -116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114,116,121,112,101, 0,112, 97,114, - 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, 93, 0, 42,116,114, 97, 99,107, - 0, 42,112,114,111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114,111,120,121, 95,102,114,111,109, - 0, 42, 97, 99,116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, 42,103,112,100, 0, 99,111,110, -115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0,109,111,100,105,102,105,101,114, -115, 0,114,101,115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, 97, 99,116, 99,111,108, 0,100, -108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0,100,114,111,116, 91, 51, 93, 0, -100,113,117, 97,116, 91, 52, 93, 0,111, 98,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, - 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116,115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99, -116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97,103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105, -112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0,115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, - 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112,111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100, -117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0,100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111, -114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112,105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, - 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110,116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101, -115,104,111,108,100, 0,114,111,116,109,111,100,101, 0,100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116, -121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109,112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, - 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110,115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, - 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122,101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, - 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105, -115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105,111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0, -110,108, 97,115,116,114,105,112,115, 0,104,111,111,107,115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42, -115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117,112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115, -116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112,101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97, -108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, - 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115, -116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116,101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97, -109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112,108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99, -116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110,111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, - 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105, -101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95,109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105, -115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110,103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0, -102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, - 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97,100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, - 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100,101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, - 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, - 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95, -102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0,107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97, -112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114,101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42, -114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101,105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, - 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95, -116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97,114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, - 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100, -102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109,101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, - 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, - 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, - 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97,110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116, -101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, - 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, - 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0, -107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, - 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, - 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103,115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116, -105,111,110,115, 0,119,101,108,100,105,110,103, 0,116,111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, - 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, - 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97,115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102, -114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112,104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115, -112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99,116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0, -100,101,102,103,111, 97,108, 0,118,101,114,116,103,114,111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, - 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101,115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99, -116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105,110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101, -114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108,118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111, -116,112,111,105,110,116,107,101,121, 0,115,101, 99,111,110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, - 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116,105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101, -100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118, -101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0,115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, - 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102,102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99, -104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119,101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97, -100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101, -118,105,101,119,114,101,115,120,121,122, 0,114,101, 97,108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111, -100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97, -108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110, -101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118,121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, - 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0,109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0, -105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108,122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117, -114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0,115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, - 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83,105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100, -111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0,118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114, -116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110,101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, - 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115,117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117, -114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114, -116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0,102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, - 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112,115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, - 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110, -103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102, -111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, - 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, - 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110,114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97, -109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120,112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108, -105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103,114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, - 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115, -105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112, -104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112,104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, - 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115,116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, - 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114,115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115, -116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111,108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101, -110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, - 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98,105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, - 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, - 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, - 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114,114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101, -116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95, -112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101,114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111, -108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114,109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114, -109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100, -119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, - 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118, -101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42, -112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, - 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0,118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105, -111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111, -108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0,114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, - 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101,114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95, -115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0,109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, - 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112,108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99, -101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111,118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101, -114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115,107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, - 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99, -100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97,116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97, -103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116,104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108, -117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100,103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101, -101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114, -116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109,111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115, -101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120,115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, - 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116, -121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105,115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, - 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112,104, 97, -109,111,100,101, 0,111,115, 97, 0,102,114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116,121, 0, - 98,111,114,100,101,114, 0,100,105,115,112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0,120, 97, -115,112, 0,121, 97,115,112, 0,102,114,115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108,111,114, - 95,109,103,116, 95,102,108, 97,103, 0,112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111,115,116, -115, 97,116, 0,100,105,116,104,101,114, 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, 98, 97, -107,101, 95,102,105,108,116,101,114, 0, 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, 98, 97, -107,101, 95,110,111,114,109, 97,108, 95,115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105,116, 0, - 98, 97,107,101, 95,109, 97,120,100,105,115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107,101, 95, -112, 97,100, 0, 71, 73,113,117, 97,108,105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, 0, 71, - 73,112,104,111,116,111,110,115, 0, 71, 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111,114,116, -120,109,108, 0, 89, 70, 95,110,111, 98,117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97,100, 49, - 0, 71, 73,100,101,112,116,104, 0, 71, 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112,101,114, -115, 97,109,112,108,101, 0, 71, 73,112,104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116,111,110, -115, 0, 71, 73,112,104,111,116,111,110,114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, 70, 95, - 65, 65,112, 97,115,115,101,115, 0, 89, 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, 73,115, -104, 97,100,111,119,113,117, 97,108,105,116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111,119,101, -114, 0, 71, 73,105,110,100,105,114,112,111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112,111,115, -117,114,101, 0, 89, 70, 95,114, 97,121, 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, 89, 70, - 95, 65, 65,116,104,114,101,115,104,111,108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, 49, 54, - 48, 93, 0,115,116, 97,109,112, 0,115,116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117,100, 97, -116, 97, 91, 49, 54, 48, 93, 0,102,103, 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, 93, 0, -115,105,109,112,108,105,102,121, 95,115,117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100,111,119, -115, 97,109,112,108,101,115, 0,115,105,109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109,112,108, -105,102,121, 95, 97,111,115,115,115, 0, 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, 97, 99, -107, 0, 99,105,110,101,111,110,103, 97,109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100,101,112, -116,104, 0,114,112, 97,100, 51, 0,100,111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, 97,110, -103,108,101, 0,100,111,109,101,116,105,108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116,101,120, -116, 0,101,110,103,105,110,101, 91, 51, 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98,115,117, -114,102, 95,109, 97,120, 0,115,104, 97,100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114,114,111, -114, 0,116,105,108,116, 0,114,101,115, 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, 0,109, - 97,116,109,111,100,101, 0,102,114, 97,109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, 0, 42, - 42, 98,114,117,115,104,101,115, 0, 97, 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114,117,115, -104, 95, 99,111,117,110,116, 0, 42,112, 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117,114,115, -111,114, 95, 99,111,108, 91, 52, 93, 0,112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101,100, 0, -110,111,114,109, 97,108, 95, 97,110,103,108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101,114,116, - 0,116,111,116,114,101,107,101,121, 0,116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, 98,114, -117,115,104, 91, 55, 93, 0,101,109,105,116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0,101,100, -105,116,116,121,112,101, 0,100,114, 97,119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, 97,109, -101, 91, 51, 54, 93, 0,109, 97,116, 91, 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101,116, 95, -115,105,122,101, 0,116, 97, 98,108,101,116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, 0, 42, -118,112, 97,105,110,116, 95,112,114,101,118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105,110,116, - 0, 42,119,112, 97,105,110,116, 0,118,103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116,121,112, -101, 0,101,100,105,116, 98,117,116,102,108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103,114, 0, -116,117,114,110, 0,101,120,116,114, 95,111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97,108,115, -105,122,101, 0, 97,117,116,111,109,101,114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118,101,114, -116,105, 99,101,115, 0,117,110,119,114, 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0,117,118, - 99, 97,108, 99, 95, 99,117, 98,101,115,105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, 99, 97, -108, 99, 95,109, 97,112,100,105,114, 0,117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97,108, 99, - 95,102,108, 97,103, 0,117,118, 95,102,108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, 95,112, - 97,100, 91, 50, 93, 0, 97,117,116,111,105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, 0,112, - 97,114,116,105, 99,108,101, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, 99,116, - 95,116,104,114,101,115,104, 0, 99,108,101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109,111,100, -101, 0, 97,117,116,111,107,101,121, 95,102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116,111,112, -111, 95,112, 97,105,110,116, 95,116,111,111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95,100,105, -118, 0,114,101,116,111,112,111, 95,104,111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100,105,118, - 95,116,121,112,101, 0,115,107,103,101,110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116,104,114, -101,115,104,111,108,100, 95,105,110,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95, -101,120,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107,103,101, -110, 95,108,101,110,103,116,104, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109,105,116, - 0,115,107,103,101,110, 95, 99,111,114,114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,115, -121,109,109,101,116,114,121, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97,110,103, -108,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116,104, 95, -119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, 95,119, -101,105,103,104,116, 0,115,107,103,101,110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116,112,114, -111, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115,117, 98, -100,105,118,105,115,105,111,110,115, 91, 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, 0, 42, -115,107,103,101,110, 95,116,101,109,112,108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, 98,111, -110,101, 95,115,107,101,116, 99,104,105,110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98,100,105, -118,105,115,105,111,110, 95,110,117,109, 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111,112,116, -105,111,110,115, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, 95,115, -105,100,101, 95,115,116,114,105,110,103, 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, 91, 56, - 93, 0,101,100,103,101, 95,109,111,100,101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97,103, 0, -115,110, 97,112, 95,116, 97,114,103,101,116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95,109,111, -100,101, 0,116,111,116,111, 98,106, 0,116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99, -117,114,118,101, 0,116,111,116,109,101,115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108, -101,110,103,116,104, 0,115,121,115,116,101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, - 42,119,111,114,108,100, 0, 42,115,101,116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, - 0, 99,117,114,115,111,114, 91, 51, 93, 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119, -109, 97,120, 91, 51, 93, 0, 42,101,100, 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, - 97,117,100,105,111, 0,116,114, 97,110,115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110, -100,108,101,115, 0, 42,116,104,101, 68, 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, - 0,106,117,109,112,102,114, 97,109,101, 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121, -105,110,103,115,101,116, 0,107,101,121,105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99, -115, 95,115,101,116,116,105,110,103,115, 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105, -101,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97, -116, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, - 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, - 93, 0,118,105,101,119,113,117, 97,116, 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112, -105,120,115,105,122,101, 0, 99, 97,109,122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101, -119,108,111, 99,107, 0,112,101,114,115,112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105, -112, 98, 98, 0, 42,108,111, 99, 97,108,118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97, -116, 97, 0, 42,100,101,112,116,104,115, 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118, -105,101,119,113,117, 97,116, 91, 52, 93, 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97, -115,101, 0,115,112, 97, 99,101,116,121,112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110, -100,108,101,114, 91, 56, 93, 0,108, 97,121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112, -105, 99, 0,111, 98, 95, 99,101,110,116,114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97, -119,116,121,112,101, 0,115, 99,101,110,101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115, -116, 0,103,114,105,100, 0,103,114,105,100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114, -105,100,108,105,110,101,115, 0,103,114,105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101, -115,101,108,101, 99,116, 0,107,101,121,102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119, -102,108, 97,103, 0,116,119,100,114, 97,119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, - 97,102,116,101,114,100,114, 97,119, 0,122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111, -102,102,105,108,116,101,114, 0, 42,112,114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, - 0,104,111,114, 0,109, 97,115,107, 0,109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0, -109, 97,120,122,111,111,109, 0,115, 99,114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, - 0,107,101,101,112,122,111,111,109, 0,107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110, -121, 0,111,108,100,119,105,110,120, 0,111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, - 95,111,102,102,115,101,116, 0,116, 97, 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0, -118, 50,100, 0, 42, 97,100,115, 0,103,104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0,112,105, -110, 0,108,111, 99,107, 0,109, 97,105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, - 95, 97,108,105,103,110, 0,112,114,101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, - 0, 42,112,105,110,105,100, 0,114,101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, - 98,114, 97, 0,122,111,111,109, 0,116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, - 91, 56, 48, 93, 0,114,101,110, 97,109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, - 0, 97, 99,116,105,118,101, 95, 98,111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108, -115,116, 97,116,101, 0,102, 95,102,112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101, -110,117, 0, 42,112, 97,114, 97,109,115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, - 42,102,111,108,100,101,114,115, 95,110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109, -101,114, 0, 42,108, 97,121,111,117,116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115, -121,115,116,101,109,110,114, 0,116,114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115, -116,114,105,110,103, 91, 51, 50, 93, 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103, -115, 0,100,111, 95, 0,111,117,116,108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97, -112, 0,105,109, 97,110,114, 0, 99,117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,100,116, 95,117,118, 0,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, + 3, 0, 0, 0, 48, 52, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, 48, 4,136, 3, 1, 0, 0, 0, 48, 28,136, 3, + 1, 0, 0, 0,128,161,118, 22, 1, 0, 0, 0,128,161,118, 22, 1, 0, 0, 0,224,172,118, 22, 1, 0, 0, 0,224,172,118, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, + 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, + 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, + 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, + 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, + 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, 48, 4,136, 3, 1, 0, 0, 0,187, 0, 0, 0, + 1, 0, 0, 0, 48, 28,136, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, + 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255, +255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, +255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, + 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, +128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, +255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255, +255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230, +100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, +255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180,100,100,100,180, +128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255,240,235,100,255, +215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,140, 25,255, +250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, + 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, + 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, + 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, + 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, + 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255,105,117,110,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, + 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, + 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, + 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, + 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, + 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, + 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, + 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +216, 21, 0, 0, 48, 28,136, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 4,136, 3, + 1, 0, 0, 0, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0, +231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, + 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, + 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0, +236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0, +236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, +143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, + 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, +255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, + 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255, +255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, +112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, + 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255, +169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, + 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, +112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40, +255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255, +230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255, +129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, +143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, + 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, +255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, + 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, + 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, + 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, + 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, + 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, + 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, + 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,100,228, 0, 0, 48, 68,168, 2, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, + 97, 0, 42,102,105,114,115,116, 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, + 0,121,109,105,110, 0,121,109, 97,120, 0, 42,112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97, +108, 50, 0,116,121,112,101, 0,115,117, 98,116,121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97, +118,101,100, 0,100, 97,116, 97, 0,108,101,110, 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, + 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117,115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101, +115, 0,105,100, 0, 42,105,100, 98,108,111, 99,107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, + 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0, +119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42, +114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97, +109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0, +118, 97,114,116,121,112,101, 0,116,111,116,118,101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105, +116,109, 97,115,107, 0,115,108,105,100,101, 95,109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, + 0, 42,100,114,105,118,101,114, 0, 99,117,114,118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105, +112,111, 0,112,111,115, 0,114,101,108, 97,116,105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101, +105,103,104,116,115, 0,118,103,114,111,117,112, 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101, +114,109, 97,120, 0, 42, 97,100,116, 0, 42,114,101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108, +101,109,115,105,122,101, 0, 98,108,111, 99,107, 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115, +108,117,114,112,104, 0, 42,108,105,110,101, 0, 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0, +115,116, 97,114,116, 0,101,110,100, 0,102,108, 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, + 42,110, 97,109,101, 0,110,108,105,110,101,115, 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99, +117,114, 99, 0,115,101,108, 99, 0,109, 97,114,107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95, +112,111,115, 0,117,110,100,111, 95,108,101,110, 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122, +101, 0,115,101,101,107, 0,112, 97,115,115,101,112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112, +115,116, 97, 0, 99,108,105,112,101,110,100, 0,108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97, +119,115,105,122,101, 0,115,104,105,102,116,120, 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, + 70, 95, 97,112,101,114,116,117,114,101, 0, 89, 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, + 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42,100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101, +115, 0,111,102,102,115,101,116, 0,115,102,114, 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117, +108,116,105, 95,105,110,100,101,120, 0,108, 97,121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101, +110,101, 0,105, 98,117,102,115, 0, 42,103,112,117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115, +111,117,114, 99,101, 0,108, 97,115,116,102,114, 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110, +100, 0,120,114,101,112, 0,121,114,101,112, 0,116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, + 0, 42,114,101,112, 98,105,110,100, 0, 42,112, 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42, +114,101,110,100,101,114, 95,116,101,120,116, 0,108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, + 97,110,105,109,115,112,101,101,100, 0,103,101,110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97, +115,112,120, 0, 97,115,112,121, 0,116,101,120, 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108, +101,110,100,116,121,112,101, 0, 42,111, 98,106,101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0, +112,114,111,106,120, 0,112,114,111,106,121, 0,112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, + 0,115,105,122,101, 91, 51, 93, 0,114,111,116, 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0, +112,109, 97,112,116,111, 0,112,109, 97,112,116,111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, + 99,104, 95,111,117,116,112,117,116, 0, 98,114,117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0, +114, 0,103, 0, 98, 0,107, 0,100,101,102, 95,118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111, +114,102, 97, 99, 0,100,105,115,112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0, +109,105,114,114,102, 97, 99, 0, 97,108,112,104, 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, + 0,101,109,105,116,102, 97, 99, 0,104, 97,114,100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110, +115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, + 97, 99, 0, 99,111,108,116,114, 97,110,115,102, 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, + 99, 0,114,101,102,108,102, 97, 99, 0,116,105,109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109, +112,102, 97, 99, 0,107,105,110,107,102, 97, 99, 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0, +108,105,102,101,102, 97, 99, 0,115,105,122,101,102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0, +115,104, 97,100,111,119,102, 97, 99, 0,122,101,110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108, +101,110,100,102, 97, 99, 0,110, 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, + 42,115,116,110, 97,109,101,115, 0,115,116,121,112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101, +115,117,108,116, 0, 42, 99,102,114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42, +105,110,115,116, 97,110, 99,101, 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118, +101,114,115,105,111,110, 0, 97, 0,105,112,111,116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105, +109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101, +119,115, 99, 97,108,101, 0,110,111,116,108, 97,121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97, +108, 99, 0,108, 97,115,116,115,105,122,101, 0,102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, + 95,115,111,102,116,110,101,115,115, 0,114, 97,100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111, +116,112,111,105,110,116,115, 0,112,100,112, 97,100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115, +112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112, +111,105,110,116, 95,116,114,101,101, 0, 42,112,111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, + 0,110,111,105,115,101, 95,100,101,112,116,104, 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105, +115,101, 95, 98, 97,115,105,115, 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101, +101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116, +121,112,101, 0,102,105,108,101, 95,102,111,114,109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105, +112,108,105,101,114, 0,115,116,105,108,108, 95,102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, + 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0,110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105, +103,104,116, 0, 99,111,110,116,114, 97,115,116, 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116, +101,114,115,105,122,101, 0,109,103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, + 97,118,101,115, 0,109,103, 95,111,102,102,115,101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117, +110,116, 0,110,115, 95,111,117,116,115, 99, 97,108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, + 0,118,110, 95,119, 52, 0,118,110, 95,109,101,120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121, +112,101, 0,110,111,105,115,101,100,101,112,116,104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115, +105,115, 0,110,111,105,115,101, 98, 97,115,105,115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, + 99,114,111,112,121,109,105,110, 0, 99,114,111,112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105, +108,116,101,114, 0, 97,102,109, 97,120, 0,120,114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107, +101,114,100,105,115,116, 0,110, 97, 98,108, 97, 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108, +117,103,105,110, 0, 42,101,110,118, 0, 42,112,100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, + 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, + 93, 0,109,111,100,101, 0,116,111,116,101,120, 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115, +104,100,119,112, 97,100, 0,101,110,101,114,103,121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, + 98,108,101,110,100, 0,104, 97,105,110,116, 0, 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102, +102, 0,115,104, 97,100,115,112,111,116,115,105,122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115, +115,116,104,114,101,115,104, 0,112, 97,100, 53, 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102, +102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0, +114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, + 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, + 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101, +115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97, +108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116, +121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117, +110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101, +114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98, +105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116, +109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, + 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, + 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111, +110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115, +101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, + 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95, +103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101, +120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0, +101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101, +109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, + 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97, +108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105, +122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, + 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102, +102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, + 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114, +103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97, +110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0, +115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0, +102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101, +108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105, +109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112, +116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, + 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103, +108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95, +116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95, +109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, + 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, + 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116, +114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0, +115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, + 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, + 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101, +108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97, +103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110, +101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, + 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, + 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98, +108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, + 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111, +110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97, +109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115, +115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111, +108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, + 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120, +116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0, +105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, + 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, + 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101, +108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, + 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, + 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, + 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, + 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97, +103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110, +116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0, +104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, + 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100, +114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95, +115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120, +116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99, +116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, + 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0, +117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, + 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, + 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111, +110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, + 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117, +114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, + 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109, +115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, + 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0, +116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102, +108, 97,103, 0, 99,117, 98,101,109, 97,112,115,105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105, +118, 0,115,117, 98,100,105,118,114, 0,115,117, 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116, +112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, + 0,117,110,119,114, 97,112, 0,118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115, +101, 0, 98,119,101,105,103,104,116, 0,100,101,102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99, +111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, + 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100,105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0, +109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, + 0, 42,118,101,114,116,115, 0,108,101,118,101,108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101, +110,116, 0,110,101,119,108,118,108, 0,101,100,103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108, +118,108, 0,117,115,101, 95, 99,111,108, 0, 42,101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, + 97,115,101,115, 0, 42,118,101,114,116, 95,109, 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, + 99,101,115, 0, 42,111,108,100, 95,101,100,103,101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115, +117, 98,100,105,118, 84,121,112,101, 0,114,101,110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, + 42,109, 67, 97, 99,104,101, 0,100,101,102, 97,120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97, +110,100,111,109,105,122,101, 0,115,101,101,100, 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, + 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102, +102,115,101,116, 91, 51, 93, 0,115, 99, 97,108,101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95, +116,121,112,101, 0,111,102,102,115,101,116, 95,116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101, +114, 97,110, 99,101, 0, 42,109,105,114,114,111,114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108, +117,101, 0,114,101,115, 0,118, 97,108, 95,102,108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97, +103,115, 0, 98,101,118,101,108, 95, 97,110,103,108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42, +100,111,109, 97,105,110, 0, 42,102,108,111,119, 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, + 0,115,116,114,101,110,103,116,104, 0,100,105,114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120, +109, 97,112,112,105,110,103, 0, 42,109, 97,112, 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, + 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, + 0, 42,105,109, 97,103,101, 0,110,117,109, 95,112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97, +115,112,101, 99,116,121, 0,112,101,114, 99,101,110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112, +101, 97,116, 0, 42,111, 98,106,101, 99,116, 99,101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0, +104,101,105,103,104,116, 0,110, 97,114,114,111,119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, + 0,116,105,109,101,111,102,102,115, 0,108,105,102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117, +108,116,105, 0, 42,112,114,101,118, 67,111,115, 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110, +116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105, +110,100,101,120, 0,102,111,114, 99,101, 0, 42, 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114, +109,115, 0, 42, 99,111,108,108, 95,112, 97,114,109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, + 99,104,101,115, 0, 42,120, 0, 42,120,110,101,119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101, +119, 0, 42, 99,117,114,114,101,110,116, 95,120, 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0, +110,117,109,118,101,114,116,115, 0,110,117,109,102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100, +109, 0, 99,102,114, 97, 0,111,112,101,114, 97,116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117, +101,110, 99,101, 0,103,114,105,100,115,105,122,101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103, +104,116,115, 0, 42, 98,105,110,100, 99,111,115, 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105, +100, 0, 42,100,121,110,105,110,102,108,117,101,110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, + 0,100,121,110,103,114,105,100,115,105,122,101, 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101, +108,108,119,105,100,116,104, 0, 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0, +116,111,116,100,109,101,100,103,101, 0,116,111,116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111, +110, 0,114, 97,110,100,111,109, 95,112,111,115,105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, + 0,112,114,111,116,101, 99,116, 0, 42,117,110,100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95, +116,111,116, 0,117,110,100,111, 95,115,105,103,110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108, +101, 0, 42,102,115,115, 0, 42,116, 97,114,103,101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, + 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101,101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104, +114,105,110,107, 79,112,116,115, 0,112,114,111,106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, + 42,111,114,105,103,105,110, 0,102, 97, 99,116,111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112, +116,115, 0,112,110,116,115,119, 0,111,112,110,116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121, +112,101,117, 0,116,121,112,101,118, 0,116,121,112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100, +119, 0, 42,100,101,102, 0, 42,108, 97,116,116,105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, + 0, 42,101,100,105,116,108, 97,116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114, +116,121,112,101, 0,112, 97,114, 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, + 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114,111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114, +111,120,121, 95,102,114,111,109, 0, 42, 97, 99,116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, + 42,103,112,100, 0, 99,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0, +109,111,100,105,102,105,101,114,115, 0,114,101,115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, + 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0, +100,114,111,116, 91, 51, 93, 0,100,113,117, 97,116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, + 65,120,105,115, 91, 51, 93, 0,114,111,116, 65,110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, + 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116, +115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97, +103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0, +115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112, +111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0, +100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112, +105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110, +116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0, +100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109, +112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110, +115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122, +101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, + 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105, +111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107, +115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117, +112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112, +101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, + 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, + 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116, +101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112, +108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110, +111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, + 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95, +109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110, +103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, + 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97, +100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100, +101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, + 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, + 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0, +107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114, +101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101, +105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, + 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97, +114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, + 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109, +101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, + 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, + 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97, +110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, + 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, + 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, + 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, + 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, + 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103, +115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116, +111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, + 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97, +115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112, +104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99, +116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114, +111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101, +115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105, +110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108, +118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111, +110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116, +105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, + 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0, +115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102, +102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119, +101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, + 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97, +108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, + 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77, +111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118, +121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0, +109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108, +122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0, +115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83, +105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0, +118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110, +101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115, +117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, + 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0, +102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112, +115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, + 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, + 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118, +101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, + 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110, +114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120, +112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103, +114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, + 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, + 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112, +104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115, +116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114, +115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111, +108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, + 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98, +105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, + 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, + 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114, +114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, + 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101, +114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114, +109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, + 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, + 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, + 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97, +109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99, +111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0, +118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105, +111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0, +114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101, +114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0, +109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112, +108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111, +118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115, +107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, + 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97, +116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116, +104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100, +103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, + 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109, +111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120, +115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, + 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105, +115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97, +121,116,114, 97, 99,101, 95,111,112,116,105,111,110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114, +101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102, +114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115, +112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114, +115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0, +112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, + 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, + 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95, +115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105, +115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108, +105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, + 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98, +117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, + 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112, +104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110, +114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, + 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105, +116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112, +111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, + 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111, +108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115, +116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, + 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115, +117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105, +109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, + 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97, +109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100, +111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105, +108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, + 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97, +100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, + 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97, +109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, + 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, + 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0, +112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103, +108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0, +116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105, +116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97, +119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, + 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101, +116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101, +118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118, +103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102, +108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95, +111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101, +114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, + 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115, +105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0, +117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102, +108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111, +105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114, +111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108, +101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95, +102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111, +111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104, +111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101, +110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116, +101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115, +107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108, +105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114, +114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105, +109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0, +115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103, +101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101, +110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111, +115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, + 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112, +108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105, +110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, + 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, + 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, + 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100, +101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101, +116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0, +116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101, +115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116, +101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101, +116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, + 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, + 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110, +115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, + 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, + 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121, +105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, + 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, + 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101, +114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115, +109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, + 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109, +122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115, +112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108, +118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, + 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, + 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121, +112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97, +121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116, +114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110, +101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105, +100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114, +105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121, +102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97, +119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0, +122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112, +114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0, +109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99, +114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0, +107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0, +111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, + 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103, +104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97, +105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114, +101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114, +101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0, +116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97, +109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98, +111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102, +112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109, +115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95, +110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117, +116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116, +114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, + 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116, +108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99, +117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115, 116,105, 99,107,121, 0,100,116, 95,117,118,115,116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42, 116,101,120,116, 0,116,111,112, 0,118,105,101,119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116, 104, 0,108,105,110,101,110,114,115, 95,116,111,116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, @@ -1934,633 +2253,638 @@ char datatoc_B_blend[]= { 108,101, 0,116,105,112,111, 0,116,105,110,102,111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101, 113, 0,116,105,109, 97, 0,116,105,109, 97,115,101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0, 116,110,111,100,101, 0,116,108,111,103,105, 99, 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, -115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, - 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, - 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0, -112,108,117,103,115,101,113,100,105,114, 91, 49, 54, 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115, -111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0,121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101, -114,115,105,111,110,115, 0,103, 97,109,101,102,108, 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, - 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111, -111,109, 0,109,105,120, 98,117,102,115,105,122,101, 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, - 97,116,101, 0, 97,117,100,105,111,102,111,114,109, 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112, -105, 0,101,110, 99,111,100,105,110,103, 0,116,114, 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111, -108,100, 49, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116, -115, 0,117,105,115,116,121,108,101,115, 0,117,110,100,111,115,116,101,112,115, 0,117,110,100,111,109,101,109,111,114,121, 0, -103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95,101,117, 99,108,105,100,101, 97,110,100,105,115, -116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105,110,103,115, 0,116, 98, 95,108,101,102,116,109, -111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108,105,103,104,116, 91, 51, 93, 0,116,119, 95,104, -111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97,110,100,108,101,115,105,122,101, 0,116,119, 95, -115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99,111,108,108,101, 99,116,114, 97,116,101, 0,119, -109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101,109, 99, 97, 99,104,101,108,105,109,105,116, 0, -112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101,115,101,114,118,101,114,112,111,114,116, 0,112, - 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101,114, 95,100,105, 97, 0,114,118,105,115,105,122, -101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102,105,108,101,115, 0,115,109,111,111,116,104, 95, -118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100,111,102, 95,112, 97,110, 0,110,100,111,102, 95, -114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95,110,101,119, 0,118,101,114,115,101,109, 97,115, -116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99, -108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, 98, 97,115,101, 0,101,100,103,101, 98, 97,115, -101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, 0,102,117,108,108, 0,119,105,110,105,100, 0, -100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100,111, 95,100,114, 97,119, 95,103,101,115,116,117, -114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115,111,114, 0,115,119, 97,112, 0,109, 97,105,110, -119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110,105,109,116,105,109,101,114, 0, 42, 99,111,110, -116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119,118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, - 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, - 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0,111,102,115,121, 0,115,105,122,101,120, 0,115, -105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109,101, 95,102,108, 97,103, 0, 99,111,110,116,114, -111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116, -105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0,108,105,115,116, 95,115,105,122,101, 0,108,105, -115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42,102,117,108,108, 0, 98,117,116,115, -112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, 99,101,100, 97,116, 97, 0,104, 97, -110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, 99,116, 0,100,114, 97,119,114, 99, -116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105,103,110,109,101,110,116, 0,117,105, - 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116,114, 0, 42,114,101,103,105,111,110, -100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115,105,111,110, 0,112, 97,100,115, 0, -109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111,110, 0, 42, 99,117,114,115, 99,114, -101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, 0,103,108,111, 98, 97,108,102, 0, -110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111,109,112, 0, 42,115,101, 49, 0, 42, -115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104,116, 0,120,111,102,115, 0,121,111, -102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105,110, 91, 51, 93, 0,115, 97,116,117, -114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, 97,114,116,115,116,105,108,108, 0, -101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, 0,111,114,121, 0, 42, 99,114,111, -112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, 97,110, 99,101, 0, 42,116,115,116, -114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42, -116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98,117,102, 95,115,116, 97,114,116,115, -116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110,115,116, 97,110, 99,101, 95,112,114, -105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114,105,118, 97,116,101, 95,100, 97,116, - 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0,109, 97, 99,104,105,110,101, 0,115, -116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105,122,101, 0, 97,110,105,109, 95,112, -114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99,102, 49, 0, 42,115,101,113, 49, 0, - 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111,117,110,100, 0, 42,115,111,117,110, -100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110,101,110,114, 0,115,116,114,111, 98, -101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114,116,111,102,115, 0, 97,110,105,109, - 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110,100, 95,111,112, 97, 99,105,116,121, - 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, 98, 97,115,101,112, 0,109,101,116, - 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97,103,101,100,105,114, 91, 50, 53, 54, - 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103,101, 87,105,100,116,104, 0,102,111, -114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67,108, 97,109,112, 0,102, 66,111,111, -115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111,109,112, 0, 83, 99, 97,108,101,120, - 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, 0, 83, 99, 97,108,101,121, 70,105, -110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114,111,116, 73,110,105, 0,114,111,116, - 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109,101, 77, 97,112, 0,103,108,111, 98, - 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, 98,117,116,116,121,112,101, 0,117, -115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109,102, 97, 99, 0,111, 98,102, 97, 99, - 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102,101, 0,102,111,114, 99,101, 91, 51, - 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, 99, 91, 51, 93, 0,109,117,108,116, - 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97,116, 91, 52, 93, 0,116,101,120,109, - 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111,109, 97,116, 0,116,105,109,101,116, -101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101,114,116,103,114,111,117,112, 95,118, - 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, 97,109,101, 95,118, 91, 51, 50, 93, - 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100,101,108,101,109, 0, 42,112,111,105, -110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, 0,107,101,121, 0,113,117, 97,108, - 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116,111,103,103,108,101, 78, 97,109,101, - 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, 91, 51, 50, 93, 0,100,101,108, 97, -121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, 91, 51, 50, 93, 0,100, 97,109,112, -116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, 97,109,101, 91, 51, 50, 93, 0, 97, -120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0, 99,111,110,115,116,114, 97,105, -110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106,101, 99,116, 91, 51, 50, 93, 0, 98, -111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101,113, 0,116,111,116,108,105,110,107, -115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, 97,120,105,115, 95,115,105,110,103, -108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116,102, 0,112,114,101, 99,105,115,105, -111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, 42,109,121,110,101,119, 0,105,110, -112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, 0,118, 97,108,111, 0,115,116, 97, -116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, 51, 50, 93, 0, 98,108,101,110,100, -105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115,116,114,105,100,101, 97,120,105,115, - 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, 49, 91, 50, 93, 0,112,105,116, 99, -104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121,109, 97,100,101, 0,112, 97,100, 50, - 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103, 86,101,108,111, 99,105, -116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101,114, 97,116,105,111,110, 0,102,111, -114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108,105,110,101, 97,114,118,101,108,111, - 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 42,114,101,102,101, -114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, 0,109, 97,120, 0,118,105,115,105, -102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, 97,120,108,111, 99, 91, 51, 93, 0, -109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116,112,114,111,112, 91, 51, 50, 93, 0, -100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0,105,110,116, 95, 97,114,103, 95, 50, - 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, 50, 0,116,111, 80,114,111,112, 78, - 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84,121,112,101, 0,102,105,108,101,110, - 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, 0,105,110,116, 95, 97,114,103, 0, -102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, 0, 97, 99, 99,101,108,108,101,114, - 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112,101,101,100, 0,109, 97,120,116,105, -108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, 97,109,112, 0, 42,115,111,117,114, - 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103,101,100, 0,109,105,110, 95,103, 97, -105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100,105,115,116, 97,110, 99,101, 0,109, - 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99,116,111,114, 0, 99,111,110,101, 95, -105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, 97,110,103,108,101, 0, 99,111,110, -101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100,102,105,108,101, 0, 97,116,116,101, -110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, 0, 42, 97,114,101, 97, 0, 42,108, - 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102,115, 91, 51, 93, 0, 99,104,105,108, -100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, 91, 51, 93, 0, 98,111,110,101, 95, -109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97,114,109, 95,116, 97,105,108, 91, 51, - 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0,122,119,105,100,116,104, 0,101, 97, -115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95,116, 97,105,108, 0, 98,111,110,101, - 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115,107,101,116, 99,104, 0,108, 97,121, -101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104,111,115,116,115,105,122,101, 0,103, -104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116,115,102, 0,103,104,111,115,116,101, -102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0,112, 97,116,104, 97, 99, 0, 42,112, -111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102,114, 97,109,101, 0, 42,112,114,111, -112, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, 99,116,102,108, 97,103, 0, 97,103, -114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105,107,116,114,101,101, 0, 42, 98, 95, - 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, 95, 98,111,110,101, 95,100,117, 97, -108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111, -115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, 51, 93, 0,112,111,115,101, 95,116, - 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105,116,109, 97,120, 91, 51, 93, 0,115, -116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105,107,114,111,116,119,101,105,103,104, -116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99,104, 97,110, 98, 97,115,101, 0,112, -114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101,116, 91, 51, 93, 0, 99,121, 99,108, -105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,103,114,111,117, -112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, 97,114, 97,109, 0,110,117,109,105, -116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120,115,116,101,112, 0,115,111,108,118, -101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112,109, 97,120, 0,100, 97,109,112,101, -112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99,115, 0, 99,117,114,118,101,115, 0, -103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105,108,116,101,114,102,108, 97,103, 0, - 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101,115,108,105,100,101, 0, 42,103,114, -112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99,101, 0,116, 97,114,115,112, 97, 99, -101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95,101,114,114,111,114, 0,114,111,116, - 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, 93, 0,115,112, 97, 99,101, 0,114, -111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0,105,116,101,114, 97,116,105,111,110, -115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, 0, 42,112,111,108,101,116, 97,114, - 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, 97,110,103,108,101, 0,111,114,105, -101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, 0,114,101,115,101,114,118,101,100, - 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0,115,116,117, 99,107, 0, 99, 97, 99, -104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, 97,103, 0,118,111,108,109,111,100, -101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, 0,112,105,118, 88, 0,112,105,118, - 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76,105,109,105,116, 91, 54, 93, 0,109, - 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, 97,116, 91, 52, 93, 91, 52, 93, 0, -102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111,109, 95,109,105,110, 91, 51, 93, 0, -102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116,111, 95,109, 97,120, 91, 51, 93, 0, -122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,110,111, 95, -114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117,114,109,111,100, 0, 97, 99,116,115, -116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114,105,100,101,108,101,110, 0,115, 99, - 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,111, -102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, 97,115,111,117,116,112,117,116, 0, -100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101,119, 95,115,111, 99,107, 0,110,115, - 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101,114,110, 0,115,116, 97, 99,107, 95, -105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, 95,105,110,100,101,120, 0,116,111, - 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110,101,119, 95,110,111,100,101, 0,117, -115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117,116,115, 0, 42,115,116,111,114, 97, -103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117,115,116,111,109, 50, 0, 99,117,115, -116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0,101,120,101, 99, 0, 42,116,104,114, -101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, 42, 98,108,111, 99,107, 0, 42,116, -121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111,100,101, 0, 42,102,114,111,109,115, -111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, 42,116,104,114,101, 97,100,115,116, - 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95,105,110,100,101,120, 0, 97,108,108, -116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42,115,101,108,111,117,116, 0, 40, 42, -116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100,114, 97,119, 41, 40, 41, 0, 40, 42, -116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, 0, 42,115,100,104, 0, 99,121, 99, -108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112,101,101,100, 0,112,101,114, 99,101, -110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118,101,100, 0,105,109, 97,103,101, 95, -105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104,116, 0, 99,101,110,116,101,114, 95, -120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, 97,112, 0,115,105,103,109, 97, 95, - 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, 97,116, 0,116, 49, 0,116, 50, 0, -116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, 91, 52, 93, 0,120, 49, 0,120, 50, - 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121,112,101, 0,114,111,116, 97,116,105, -111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0,109, 97,120, 98,108,117,114, 0, 98, -116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108,101, 95,111,102,115, 0, 99,111,108, -109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0,109, 0, 99, 0,106,105,116, 0,112, -114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, 0,109, 97,120,116, 97, 98,108,101, - 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, 99,117,114,118,101, 0, 42,116, 97, - 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99,108,105,112,114, 0, 99,109, 91, 52, - 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109,117,108, 91, 51, 93, 0,115, 97,109, -112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0,106,105,116,116,101,114, 0,115,109, -111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, - 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117,108,112,116, 95,116,111,111,108, 0, - 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, 0, 97, 99,116,105,118,101, 95,109, - 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97,120,108, 97,121,101,114, 0,116,111, -116,115,105,122,101, 0, 42,112,111,111,108, 0,101,100,105,116,102,108, 97,103, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, + 97, 99,116,105,118,101, 95,116,104,101,109,101, 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, + 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, + 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, + 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, + 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0, +121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, + 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, + 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, + 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, + 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, + 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115, +104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101, +121,109, 97,112,115, 0,107,101,121, 99,111,110,102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, + 0,117,110,100,111,109,101,109,111,114,121, 0,103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95, +101,117, 99,108,105,100,101, 97,110,100,105,115,116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105, +110,103,115, 0,116, 98, 95,108,101,102,116,109,111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108, +105,103,104,116, 91, 51, 93, 0,116,119, 95,104,111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97, +110,100,108,101,115,105,122,101, 0,116,119, 95,115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99, +111,108,108,101, 99,116,114, 97,116,101, 0,119,109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101, +109, 99, 97, 99,104,101,108,105,109,105,116, 0,112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101, +115,101,114,118,101,114,112,111,114,116, 0,112, 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101, +114, 95,100,105, 97, 0,114,118,105,115,105,122,101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102, +105,108,101,115, 0,115,109,111,111,116,104, 95,118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100, +111,102, 95,112, 97,110, 0,110,100,111,102, 95,114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95, +110,101,119, 0,118,101,114,115,101,109, 97,115,116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, + 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99,108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, + 98, 97,115,101, 0,101,100,103,101, 98, 97,115,101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, + 0,102,117,108,108, 0,119,105,110,105,100, 0,100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100, +111, 95,100,114, 97,119, 95,103,101,115,116,117,114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115, +111,114, 0,115,119, 97,112, 0,109, 97,105,110,119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110, +105,109,116,105,109,101,114, 0, 42, 99,111,110,116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119, +118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, + 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0, +111,102,115,121, 0,115,105,122,101,120, 0,115,105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109, +101, 95,102,108, 97,103, 0, 99,111,110,116,114,111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, + 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116,105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0, +108,105,115,116, 95,115,105,122,101, 0,108,105,115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105, +112, 95,115,105,122,101, 0,108,105,115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42, +102,117,108,108, 0, 98,117,116,115,112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, + 99,101,100, 97,116, 97, 0,104, 97,110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, + 99,116, 0,100,114, 97,119,114, 99,116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105, +103,110,109,101,110,116, 0,117,105, 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116, +114, 0, 42,114,101,103,105,111,110,100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115, +105,111,110, 0,112, 97,100,115, 0,109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111, +110, 0, 42, 99,117,114,115, 99,114,101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, + 0,103,108,111, 98, 97,108,102, 0,110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111, +109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104, +116, 0,120,111,102,115, 0,121,111,102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105, +110, 91, 51, 93, 0,115, 97,116,117,114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, + 97,114,116,115,116,105,108,108, 0,101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, + 0,111,114,121, 0, 42, 99,114,111,112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, + 97,110, 99,101, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97, +114,116,115,116,105,108,108, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98, +117,102, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110, +115,116, 97,110, 99,101, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114, +105,118, 97,116,101, 95,100, 97,116, 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0, +109, 97, 99,104,105,110,101, 0,115,116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105, +122,101, 0, 97,110,105,109, 95,112,114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99, +102, 49, 0, 42,115,101,113, 49, 0, 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111, +117,110,100, 0, 42,115,111,117,110,100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110, +101,110,114, 0,115,116,114,111, 98,101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114, +116,111,102,115, 0, 97,110,105,109, 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110, +100, 95,111,112, 97, 99,105,116,121, 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, + 98, 97,115,101,112, 0,109,101,116, 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97, +103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103, +101, 87,105,100,116,104, 0,102,111,114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67, +108, 97,109,112, 0,102, 66,111,111,115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111, +109,112, 0, 83, 99, 97,108,101,120, 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, + 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114, +111,116, 73,110,105, 0,114,111,116, 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109, +101, 77, 97,112, 0,103,108,111, 98, 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, + 98,117,116,116,121,112,101, 0,117,115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109, +102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102, +101, 0,102,111,114, 99,101, 91, 51, 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, + 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97, +116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111, +109, 97,116, 0,116,105,109,101,116,101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101, +114,116,103,114,111,117,112, 95,118, 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, + 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100, +101,108,101,109, 0, 42,112,111,105,110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, + 0,107,101,121, 0,113,117, 97,108, 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116, +111,103,103,108,101, 78, 97,109,101, 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, + 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, + 91, 51, 50, 93, 0,100, 97,109,112,116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, + 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, + 0, 99,111,110,115,116,114, 97,105,110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106, +101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101, +113, 0,116,111,116,108,105,110,107,115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, + 97,120,105,115, 95,115,105,110,103,108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116, +102, 0,112,114,101, 99,105,115,105,111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, + 42,109,121,110,101,119, 0,105,110,112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, + 0,118, 97,108,111, 0,115,116, 97,116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, + 51, 50, 93, 0, 98,108,101,110,100,105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115, +116,114,105,100,101, 97,120,105,115, 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, + 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121, +109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, + 97,110,103, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101, +114, 97,116,105,111,110, 0,102,111,114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108, +105,110,101, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, + 91, 51, 93, 0, 42,114,101,102,101,114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, + 0,109, 97,120, 0,118,105,115,105,102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, + 97,120,108,111, 99, 91, 51, 93, 0,109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116, +112,114,111,112, 91, 51, 50, 93, 0,100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0, +105,110,116, 95, 97,114,103, 95, 50, 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, + 50, 0,116,111, 80,114,111,112, 78, 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84, +121,112,101, 0,102,105,108,101,110, 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, + 0,105,110,116, 95, 97,114,103, 0,102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, + 0, 97, 99, 99,101,108,108,101,114, 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112, +101,101,100, 0,109, 97,120,116,105,108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, + 97,109,112, 0, 42,115,111,117,114, 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103, +101,100, 0,109,105,110, 95,103, 97,105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100, +105,115,116, 97,110, 99,101, 0,109, 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99, +116,111,114, 0, 99,111,110,101, 95,105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, + 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100, +102,105,108,101, 0, 97,116,116,101,110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, + 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102, +115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, + 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97, +114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0, +122,119,105,100,116,104, 0,101, 97,115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95, +116, 97,105,108, 0, 98,111,110,101, 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115, +107,101,116, 99,104, 0,108, 97,121,101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104, +111,115,116,115,105,122,101, 0,103,104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116, +115,102, 0,103,104,111,115,116,101,102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0, +112, 97,116,104, 97, 99, 0, 42,112,111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102, +114, 97,109,101, 0, 42,112,114,111,112, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, + 99,116,102,108, 97,103, 0, 97,103,114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105, +107,116,114,101,101, 0, 42, 98, 95, 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, + 95, 98,111,110,101, 95,100,117, 97,108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, + 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, + 51, 93, 0,112,111,115,101, 95,116, 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105, +116,109, 97,120, 91, 51, 93, 0,115,116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105, +107,114,111,116,119,101,105,103,104,116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99, +104, 97,110, 98, 97,115,101, 0,112,114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101, +116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99, +116,105,118,101, 95,103,114,111,117,112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, + 97,114, 97,109, 0,110,117,109,105,116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120, +115,116,101,112, 0,115,111,108,118,101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112, +109, 97,120, 0,100, 97,109,112,101,112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99, +115, 0, 99,117,114,118,101,115, 0,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105, +108,116,101,114,102,108, 97,103, 0, 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101, +115,108,105,100,101, 0, 42,103,114,112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99, +101, 0,116, 97,114,115,112, 97, 99,101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95, +101,114,114,111,114, 0,114,111,116, 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, + 93, 0,115,112, 97, 99,101, 0,114,111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0, +105,116,101,114, 97,116,105,111,110,115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, + 0, 42,112,111,108,101,116, 97,114, 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, + 97,110,103,108,101, 0,111,114,105,101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, + 0,114,101,115,101,114,118,101,100, 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0, +115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, + 97,103, 0,118,111,108,109,111,100,101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, + 0,112,105,118, 88, 0,112,105,118, 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76, +105,109,105,116, 91, 54, 93, 0,109, 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, + 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111, +109, 95,109,105,110, 91, 51, 93, 0,102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116, +111, 95,109, 97,120, 91, 51, 93, 0,122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101, +108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117, +114,109,111,100, 0, 97, 99,116,115,116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114, +105,100,101,108,101,110, 0,115, 99, 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110, +110,101,108, 91, 51, 50, 93, 0,111,102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, + 97,115,111,117,116,112,117,116, 0,100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101, +119, 95,115,111, 99,107, 0,110,115, 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101, +114,110, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, + 95,105,110,100,101,120, 0,116,111, 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110, +101,119, 95,110,111,100,101, 0,117,115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117, +116,115, 0, 42,115,116,111,114, 97,103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117, +115,116,111,109, 50, 0, 99,117,115,116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0, +101,120,101, 99, 0, 42,116,104,114,101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, + 42, 98,108,111, 99,107, 0, 42,116,121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111, +100,101, 0, 42,102,114,111,109,115,111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, + 42,116,104,114,101, 97,100,115,116, 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95, +105,110,100,101,120, 0, 97,108,108,116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42, +115,101,108,111,117,116, 0, 40, 42,116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100, +114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, + 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112, +101,101,100, 0,112,101,114, 99,101,110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118, +101,100, 0,105,109, 97,103,101, 95,105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104, +116, 0, 99,101,110,116,101,114, 95,120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, + 97,112, 0,115,105,103,109, 97, 95, 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, + 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, + 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121, +112,101, 0,114,111,116, 97,116,105,111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0, +109, 97,120, 98,108,117,114, 0, 98,116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108, +101, 95,111,102,115, 0, 99,111,108,109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0, +109, 0, 99, 0,106,105,116, 0,112,114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, + 0,109, 97,120,116, 97, 98,108,101, 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, + 99,117,114,118,101, 0, 42,116, 97, 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99, +108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109, +117,108, 91, 51, 93, 0,115, 97,109,112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0, +106,105,116,116,101,114, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111, +116,104, 95,115,116,114,111,107,101, 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117, +108,112,116, 95,116,111,111,108, 0, 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, + 0, 97, 99,116,105,118,101, 95,109, 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97, +120,108, 97,121,101,114, 0,116,111,116,115,105,122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103,114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0, 112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, - 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105,101,116,105,109,101, 0, -110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105,114, 95,105,110,100,101, -120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118,101,109,111,100,101, 0, -114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, 97,119, 95,115,105,122, -101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101,112, 0,104, 97,105,114, - 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108,101, 0, 97,100, 97,112, -116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, 98, 95, 97,108,105,103, -110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115,112,108,105,116, 95,111, -102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, 0, 98, 98, 95,111,102, -102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112,108,105,102,121, 95,114, -101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108,105,102,121, 95,116,114, - 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, 0,116,105,109,101,116, -119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95,114,101,115, 0,112, 97, -114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99,116,102, 97, 99, 0, 97, -118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, - 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0,114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, - 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108, -101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0,114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97, -114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104, -105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, - 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117,103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0, -114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117,103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, - 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99,108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97, -110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108,105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114, -116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111, -112,115, 0, 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, - 50, 0, 42,112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, - 42, 99,104,105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, - 97, 99,104,101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, - 95,111,117,116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, - 95,102,114, 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105, -108,100, 99, 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107, -101,115,112, 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, - 50, 93, 0,118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99, -116,111,114,115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, - 91, 51, 93, 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0, -109, 97,120, 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95, -108,101,110, 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102, -102, 95,119,105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105, -116,121, 95,115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0, -109, 97,120,115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, - 98,101,110,100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112, -114,101,115,101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115, -101,108,102, 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111, -111,112, 95, 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, - 99,107,110,101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109, -101, 0,103,115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, - 98,117,102,102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42, -109,101,115,115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118, -101,108, 0, 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111, -119,115, 0,105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116, -111,114,115, 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115, -111,114,115, 0,107,101,121,109, 97,112,115, 0, 42,103,104,111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, - 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119, -115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115, -101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97,116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97, -107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0, -116,105,109,101,114,115, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115,117, 98,119,105,110,100,111,119,115, 0, -103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0, 42,112,116,114, 0,115,104,105,102,116, 0, 99,116, -114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109,111,100,105,102,105,101,114, 0,112,114,111,112,118, 97,108, -117,101, 0,105,110, 97, 99,116,105,118,101, 0,109, 97,112,116,121,112,101, 0,107,101,121,109, 97,112, 0,110, 97,109,101,105, -100, 91, 54, 52, 93, 0,115,112, 97, 99,101,105,100, 0,114,101,103,105,111,110,105,100, 0,105,115, 95,109,111,100, 97,108, 0, - 42,105,116,101,109,115, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42, 99,117,115,116,111,109,100, 97,116, 97, 0, 42,114,101, -112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, 93, 0,112,114,101,118,120, 0,112, -114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121,109, 97,112, 95,105,100,110, 97,109, -101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, 0, 42,101,100, 97,116, 97, 0,105, -110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, 97,114,114, 97,121,115,105,122,101, - 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112,104, 97,115,101, 95,109,117,108,116, -105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108,117,101, 95,111,102,102,115,101,116, - 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116,101,114, 95,109,111,100,101, 0, 98, -101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108,101,115, 0,114,101, 99,116, 0,112, -104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95,112, 97,116,104, 0, 97,114,114, 97, -121, 95,105,110,100,101,120, 0,101,120,112,114,101,115,115,105,111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42, -102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99,111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, - 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110,103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, - 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116,105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120, -116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, 52, 93, 0,105,100,116,121,112,101, 0,116,101,109,112,108, 97, -116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121,105,110,103,102,108, 97,103, 0, 97, - 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95,116,114, 97, 99,107,115, 0, 42, 97, - 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100,101,115, 0, 97, 99,116, 95, 98,108, -101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, 97, 99,116, 95,105,110,102,108,117, -101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95,102, 97, 99,116,111,114, 0,115,105, -103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, 91, 51, 93, 0,113,117,101,117,101, - 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97,110, 99,101, 0,104,101, 97,108,116, -104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116,105,111,110,115, 0, 97, 99,116,105, -111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102,117,122,122,105,110,101,115,115, 0, -108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115,109,111,111,116,104,110,101,115,115, - 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99,117,114, 97, 99,121, 0, 97,105,114, - 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, - 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101,114,115,111,110, 97,108, 95,115,112, - 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95,115,112,101, -101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97,120, 95, 97,118,101, 0,108, 97,110, -100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115,116,105, 99,107, 95,102,111,114, 99, -101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102,108,117,105,100, 95,103,114,111,117, -112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95,119,116, 0, 42,116,101,120, 95,115, -104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, 51, 93, 0,100,120, 0,111,109,101, -103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, 97,109,112,108,105,102,121, 0,109, - 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115,101, 0,100,105,115,115, 95,112,101, -114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, 91, 51, 93, 0,100,120, 95,119,116, - 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, 0,112,116, 99, 97, 99,104,101,115, - 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, 97,116, 95,115, 99, 97,108,101, 91, - 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100,101,110,115,105,116,121, 0,118,103, -114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42,118,101,108, 0,109, 97,116, 95,111, -108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 0, 84, 89, 80, 69,191, 1, 0, 0, 99,104, 97,114, - 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0,108,111,110,103, 0,117,108,111, -110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110,107, 0, 76,105,110,107, 68, 97, -116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0,118,101, 99, 50,102, 0,118,101, - 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, 99, 52,105, 0,118,101, 99, 52, -102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112,101,114,116,121, 68, 97,116, 97, - 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70,105,108,101, 68, 97,116, 97, 0, - 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, 98,106,101, 99,116, 0, 73,112, -111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, 73,112,111, 0, 75,101,121, 66, -108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105,110,101, 0, 84,101,120,116, 77, - 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97,109,101,114, 97, 0, 73,109, 97, -103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101,120,116,117,114,101, 0, 97,110, -105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, 0, 80,108,117,103,105,110, 84, -101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, 97,112, 0, 73,109, 66,117,102, - 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 0, 86,111,120, -101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112,105,110,103, 0, 76, 97,109,112, - 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109,101, 83,101,116,116,105,110,103, -115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, 70,111,110,116, 68, 97,116, 97, - 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, 97,108,108, 0, 78,117,114, 98, - 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, 80, 97,116,104, 0, 83,101,108, - 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, 77, 84, 70, 97, 99,101, 0, 84, - 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, 86,101,114,116, 0, 77, 67,111, -108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101,115,104, 0, 67,117,115,116,111, -109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, - 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, 77, 76,111,111,112, 85, 86, 0, - 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, 77, 73,110,116, 80,114,111,112, -101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105,103, 83,112, 97, 99,101, 70, 97, - 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 32, 40, - 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, 60, 60, 50, 41, 32, 35,100,101, -102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, - 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, - 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, - 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 32, 40, 49, 60, 60, 57, - 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, - 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 32, 52, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, - 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 32, 51, 50, 32, 35,100, -101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, - 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, 35,100,101,102,105,110,101, 32, - 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 32, 52, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, - 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, 32, 32, 32, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 32, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, - 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 32, 50, 32, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 32, 56, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, - 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, 32, 32, 32, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, - 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, - 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 32, 54, 52, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, - 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 32, 53, 49, - 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, 48, 50, 52, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, - 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 32, - 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, 54, 51, 56, 52, 32, 32, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 32, - 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, 51, 32, 32, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, - 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, - 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 32, 56, 32, 35, -100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, - 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102, 32,117,108,116,105,114,101,115, 76,101,118,101,108, 59, - 13, 10, 13, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 77,117,108,116,105,114,101,115, 32,123, 13, 10, 9, - 76,105,115,116, 66, 97,115,101, 32,108,101,118,101,108,115, 59, 13, 10, 9, 77, 86,101,114,116, 32, 42,118,101,114,116,115, 59, - 13, 10, 13, 10, 9,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32,108,101,118,101,108, 95, 99,111,117,110,116, 44, 32, - 99,117,114,114,101,110,116, 44, 32,110,101,119,108,118,108, 44, 32,101,100,103,101,108,118,108, 44, 32,112,105,110,108,118,108, - 44, 32,114,101,110,100,101,114,108,118,108, 59, 13, 10, 9,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32,117,115,101, - 95, 99,111,108, 44, 32,102,108, 97,103, 59, 13, 10, 13, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118,101,108, - 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101,100, 32, -102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 13, 10, 9, 67,117,115,116,111,109, 68, 97,116, - 97, 32,118,100, 97,116, 97, 59, 13, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 13, 10, 9,115, -104,111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 13, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99, -114,101, 97,115,101,115, 59, 13, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 13, 10, 13, 10, 47, 42, 42, 32, 69,110,100, 32, - 77,117,108,116,105,114,101,115, 32, 42, 42, 47, 13, 10, 13, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, - 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 32,123, 13, 10, 9,117,110,115,105,103,110,101,100, 32,105,110, -116, 32, 42,118,101,114,116, 95,109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100, -101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 32, 42, 47, 13, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97, -112, 59, 32, 47, 42, 32,101,100,103,101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73, -110,100,101,120, 44, 32, 45, 49, 61, 32,104,105,100,100,101,110, 32, 42, 47, 13, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, - 95,102, 97, 99,101,115, 59, 13, 10, 9, 77, 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 13, 10, 9,117,110, -115,105,103,110,101,100, 32,105,110,116, 32,116,111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116, -118,101,114,116, 44, 32,112, 97,100, 59, 13, 10,125, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, - 13, 10, 13, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, - 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 83, 84, 9, 50, 13, 10, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, 52, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, - 73, 68, 69, 9, 9, 9, 49, 54, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, - 9, 9, 40, 49, 60, 60, 54, 41, 13, 10, 13, 10, 47, 42, 32,109,101,100,103,101, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, - 76, 69, 67, 84, 41, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, - 49, 60, 60, 49, 41, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, 9, 9, 9, 40, 49, 60, 60, 50, 41, - 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, 60, 51, 41, 13, 10, 9, 9, 9, - 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, 73, 68, 69, 32, 42, 47, 13, - 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, 60, 60, 53, 41, 13, 10, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, 41, 13, 10, 35,100, -101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 13, 10, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 13, 10, 13, 10, 47, 42, 32,112,117,110,111, - 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 13, 10, 47, 42, 32,114, + 0,114,116, 91, 50, 93, 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105, +101,116,105,109,101, 0,110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105, +114, 95,105,110,100,101,120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118, +101,109,111,100,101, 0,114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, + 97,119, 95,115,105,122,101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101, +112, 0,104, 97,105,114, 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108, +101, 0, 97,100, 97,112,116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, + 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115, +112,108,105,116, 95,111,102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, + 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112, +108,105,102,121, 95,114,101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108, +105,102,121, 95,116,114, 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, + 0,116,105,109,101,116,119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95, +114,101,115, 0,112, 97,114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99, +116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, + 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0, +114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, + 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0, +114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, + 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, + 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117, +103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117, +103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99, +108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108, +105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, + 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, + 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42, +112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104, +105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104, +101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117, +116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, + 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, + 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, + 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0, +118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114, +115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, + 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, + 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, + 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119, +105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95, +115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120, +115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110, +100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115, +101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, + 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, + 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110, +101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103, +115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102, +102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115, +115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, + 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0, +105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, + 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, + 0,107,101,121, 99,111,110,102,105,103,115, 0, 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, + 97, 99,116,109, 97,112, 0,116,105,109,101,114,115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104, +111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, + 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, + 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97, +116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, + 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115, +117, 98,119,105,110,100,111,119,115, 0,103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111, +112,118, 97,108,117,101, 0,115,104,105,102,116, 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109, +111,100,105,102,105,101,114, 0,109, 97,112,116,121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101, +105,100, 0,114,101,103,105,111,110,105,100, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101, +109,115, 0, 98, 97,115,101,110, 97,109,101, 91, 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111, +109,100, 97,116, 97, 0, 42,114,101,112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, + 93, 0,112,114,101,118,120, 0,112,114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121, +109, 97,112, 95,105,100,110, 97,109,101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, + 0, 42,101,100, 97,116, 97, 0,105,110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, + 97,114,114, 97,121,115,105,122,101, 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112, +104, 97,115,101, 95,109,117,108,116,105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108, +117,101, 95,111,102,102,115,101,116, 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116, +101,114, 95,109,111,100,101, 0, 98,101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108, +101,115, 0,114,101, 99,116, 0,112,104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95, +112, 97,116,104, 0, 97,114,114, 97,121, 95,105,110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105, +111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99, +111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110, +103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116, +105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, + 52, 93, 0,116,101,109,112,108, 97,116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121, +105,110,103,102,108, 97,103, 0, 97, 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95, +116,114, 97, 99,107,115, 0, 42, 97, 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100, +101,115, 0, 97, 99,116, 95, 98,108,101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, + 97, 99,116, 95,105,110,102,108,117,101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95, +102, 97, 99,116,111,114, 0,115,105,103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, + 91, 51, 93, 0,113,117,101,117,101, 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97, +110, 99,101, 0,104,101, 97,108,116,104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116, +105,111,110,115, 0, 97, 99,116,105,111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102, +117,122,122,105,110,101,115,115, 0,108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115, +109,111,111,116,104,110,101,115,115, 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99, +117,114, 97, 99,121, 0, 97,105,114, 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101, +100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101, +114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110, +100, 95,109, 97,120, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97, +120, 95, 97,118,101, 0,108, 97,110,100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115, +116,105, 99,107, 95,102,111,114, 99,101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102, +108,117,105,100, 95,103,114,111,117,112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95, +119,116, 0, 42,116,101,120, 95,115,104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, + 51, 93, 0,100,120, 0,111,109,101,103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, + 97,109,112,108,105,102,121, 0,109, 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115, +101, 0,100,105,115,115, 95,112,101,114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, + 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, + 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, + 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100, +101,110,115,105,116,121, 0,118,103,114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42, +118,101,108, 0,109, 97,116, 95,111,108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69, +194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0, +108,111,110,103, 0,117,108,111,110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110, +107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0, +118,101, 99, 50,102, 0,118,101, 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, + 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112, +101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70, +105,108,101, 68, 97,116, 97, 0, 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, + 98,106,101, 99,116, 0, 73,112,111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, + 73,112,111, 0, 75,101,121, 66,108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105, +110,101, 0, 84,101,120,116, 77, 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97, +109,101,114, 97, 0, 73,109, 97,103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101, +120,116,117,114,101, 0, 97,110,105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, + 0, 80,108,117,103,105,110, 84,101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, + 97,112, 0, 73,109, 66,117,102, 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121, +115,116,101,109, 0, 86,111,120,101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112, +105,110,103, 0, 76, 97,109,112, 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109, +101, 83,101,116,116,105,110,103,115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, + 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, + 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, + 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, + 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, + 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101, +115,104, 0, 67,117,115,116,111,109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105, +115,105, 98,105,108,105,116,121, 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, + 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, + 77, 73,110,116, 80,114,111,112,101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105, +103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, + 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, + 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101, +102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110, +101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, + 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, + 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, + 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, + 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, + 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, + 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, + 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, + 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, + 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, + 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, + 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, + 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, + 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, + 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102,100, 32, 99,104, 97,114, + 32,117,115,101, 95, 99,111,108, 44, 32,102,108, 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118, +101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101, +100, 32,102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97, +116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104, +111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, + 97,115,101,115, 59, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105, +114,101,115, 32, 42, 42, 47, 10, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86, +105,115,105, 98,105,108,105,116,121, 32,123, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95, +109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, + 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103, +101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, + 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, + 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116, +111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, + 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102, +108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, + 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, + 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, + 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, + 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, + 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, + 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, + 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, + 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, + 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35, +100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110, +111, 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114, 101,110,100,101,114, 32, 97,115,115,117,109,101,115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101, -100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, - 49, 9, 9, 49, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 13, 10, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, - 80, 86, 52, 9, 9, 56, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 13, 10, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 80, 82, 79, 74, 89, 90, 9, 9, 54, 52, 13, 10, 13, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, - 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 13, 10, 35,100,101,102,105,110, -101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, 9, 50, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, - 9, 52, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 13, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 13, 10, 13, 10, 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, - 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 9, 9, 9, 49, 13, 10, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, 13, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97, -103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115,101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, - 47, 32, 13, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 13, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 13, 10, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 13, 10, 13, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,102, -108, 97,103, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, 49, 32, 47, 42, 32,117, -115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, 50, 46, 52, 51, 41, 44, - 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97,102,116,101,114, 32, 50, - 46, 52, 52, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, 32, 47, 42, 32,100, -101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 9, 9, - 52, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 13, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, 13, +100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, + 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, + 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, + 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, + 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, + 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, + 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, + 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115, +101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, + 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116, +102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, + 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, + 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97, +102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, + 32, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, + 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32, -115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 13, 10, 13, 10, 47, 42, 32,109,116,102, 97, 99, -101, 45, 62,109,111,100,101, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, - 49, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 13, 10, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 84, 69, 88, 9, 9, 9, 52, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, - 86, 69, 82, 84, 9, 56, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 13, 10, 13, 10, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 13, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, - 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 13, 10, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 9, 9, 53, 49, 50, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, 52, 13, 10, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, - 79, 76, 9, 9, 50, 48, 52, 56, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, - 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97,120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, - 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 9, 9, 56, 49, 57, 50, 13, 10, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, 56, 52, 13, 10, 13, 10, 47, 42, 32,109,116,102, 97, 99, -101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, 52, 32, 97,114,101, 32,117,115,101,100, 32, 97, -115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, - 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104,105,115, 32, 42, 47, 13, 10, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, - 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, 97, 47, 98,105,110, 97,114,121, - 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, 47, 13, 10, 13, 10, 47, 42, 32, -115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104,101, 32,117,115,101,114, - 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 83, 85, 66, 9, 9, 51, 13, 10, 13, 10, 13, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97,112, 32, - 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 13, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 13, 10, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, - 82, 69, 67, 65, 84, 69, 68, 52, 9, 56, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, - 32, 49, 54, 13, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 13, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 13, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 80, 73, 78, 52, 9, 32, 32, 32, 32, 9, 49, 50, 56, 13, 10, 13, 10, 35,101,110,100,105,102, 13, 10,104, 79, 67, 75, 33, -109, 98,101,114, 82,163, 81,172,147,203, 19, 0, 77,117,108,116,105,114,101,115, 67,111,108, 0, 77,117,108,116,105,114,101,115, - 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 69,100,103, -101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,117, 98, -115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116,105, 99,101, 77,111,100,105,102,105,101,114, - 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,117,105,108,100, 77,111,100,105, -102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65,114,114, 97,121, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 69, -100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,101,118,101,108, 77,111,100,105,102,105, -101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 77,111, -100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105,110, 83,101,116,116,105,110,103,115, 0, 83, -109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 67,111,108,108, 83,101,116,116,105,110, -103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 85, 86, 80,114,111,106,101, 99, -116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116,101, 77,111,100,105,102,105,101,114, 68, 97, -116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67, 97,115,116, 77,111,100,105,102,105, -101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65,114,109, 97,116,117,114,101, - 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,111, -102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 77,111,100,105,102,105,101,114, - 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101,116,116,105,110,103,115, 0, 67,108,111,116, -104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, 99,104,101, 0, 67,111,108,108,105,115,105, -111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101,101, 0, 83,117,114,102, 97, 99,101, 77,111, -100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115,104, 0, 66, 86, 72, 84,114,101,101, 70,114, -111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 68,101,102, 73, -110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115,104, 68,101,102,111,114,109, 77,111,100,105, -102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 77,111,100,105,102,105,101,114, 68, - 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, - 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 77,111,100, -105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70, -108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110,107,119,114, 97,112, 77,111,100,105,102,105, -101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 76, 97,116,116,105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105, -111,110, 0, 98, 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83, -111,102,116, 66,111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72, -111,111,107, 0, 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103, -104,116,115, 0, 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114, -116,101,120, 0, 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, - 99,104, 0, 87,111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107, -116,105,109,101, 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117, -100,105,111, 68, 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, - 97,116, 97, 0, 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70, -114, 97,109,105,110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, - 0, 66,114,117,115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99, -108,101, 66,114,117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, - 0, 84,114, 97,110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97, -105,110,116, 0, 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116, -105,110,103,115, 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101, -110,101, 83,116, 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105, -101,119, 51, 68, 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86, -105,101,119, 68,101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101, -114, 0, 86,105,101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73, -110,102,111, 0, 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, - 83,112, 97, 99,101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, - 97,109,115, 0, 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111, -114, 0, 70,105,108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, - 0, 84,114,101,101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78, -108, 97, 0, 83,112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, - 83,112, 97, 99,101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83, -112, 97, 99,101, 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115, -111,108,101, 0, 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83, -116,121,108,101, 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105, -100,103,101,116, 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, - 99,101, 0, 84,104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105, -103,104,116, 0, 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101, -108, 0, 80, 97,110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, - 99,101, 84,121,112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71, -108,111, 98, 97,108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, - 67,114,111,112, 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97, -108, 97,110, 99,101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, - 0, 83,101,113,117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, - 97, 83,116, 97, 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111, -114,109, 86, 97,114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114, -111,108, 86, 97,114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, - 97,114,116,105, 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83, -101,110,115,111,114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, - 98, 75,101,121, 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, - 98, 65, 99,116,117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111, -108,108,105,115,105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100, -111,109, 83,101,110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110, -115,111,114, 0, 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116, -114,111,108,108,101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105, -111,110, 67,111,110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100, -100, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, - 98, 83,111,117,110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, - 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101, -114,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, - 65, 99,116,117, 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, - 97,105,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110, -100,111,109, 65, 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97, -109,101, 65, 99,116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, - 84,119,111, 68, 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116, -111,114, 0, 98, 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97, -116,111,114, 0, 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, - 98,106,101, 99,116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, - 86,101,114,116, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103, -115, 0, 98, 80,111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, - 65, 99,116,105,111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67, -104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116, -114, 97,105,110,116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67, -111,110,115,116,114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 84,114, 97, 99,107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110, -115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77, -105,110, 77, 97,120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, - 67,111,110,115,116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, - 0, 98, 83,116,114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, - 74,111,105,110,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105, -110,116, 0, 98, 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, - 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 82,111,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110, -115,116,114, 97,105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104, -114,105,110,107,119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105, -101,114, 0, 98, 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, - 83,111, 99,107,101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118, -105,101,119, 0,117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65, -110,105,109, 0, 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78, -111,100,101, 66,105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, - 78,111,100,101, 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, - 88, 89,115, 0, 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78, -111,100,101, 86,101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114, -105,112,116, 68,105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111, -100,101, 76,101,110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97, -112, 80,111,105,110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111, -109, 68, 97,116, 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66, -111,105,100, 80, 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99, -108,101, 0, 80, 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, - 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114, -116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97, -119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116, -114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, - 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110,100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110, -100,111,119, 0,119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114, -101, 0,119,109, 75,101,121,109, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, - 97,112, 0,119,109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, - 95, 71,101,110,101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111, -114, 0, 70, 67, 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, - 0, 70, 77,111,100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105, -109,105,116,115, 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97, -110,110,101,108, 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, - 80, 97,105,114, 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99, -107, 0, 75, 83, 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, - 0, 73,100, 65,100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, - 71,111, 97,108, 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, - 0, 66,111,105,100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118, -101,114, 97,103,101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97, -116,101, 0, 70, 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, - 2, 0, 2, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 8, 0, 12, 0, 8, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, - 12, 0, 24, 0, 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 20, 0, 76, 0, 52, 0, 40, 2, 0, 0, 32, 0,140, 0,136, 3, 92, 0, - 36, 0, 56, 0, 84, 0,112, 0,124, 0, 56, 0, 24, 0, 40, 0,120, 0, 12, 0,120, 0, 36, 0,108, 5,128, 1, 0, 0, 0, 0, - 0, 0, 8, 1, 40, 1, 84, 1, 24, 0, 8, 3,168, 0, 0, 0, 76, 0,124, 1, 24, 1,140, 0,132, 0,124, 1, 8, 1, 56, 0, - 88, 0,160, 2, 76, 0, 60, 1, 0, 0,108, 0,104, 0,148, 0, 56, 0, 8, 0, 16, 0, 92, 1, 0, 0, 0, 0, 0, 0, 24, 1, - 20, 0, 44, 0, 60, 0, 24, 0, 12, 0, 12, 0, 4, 0, 8, 0, 8, 0, 0, 0, 24, 0, 76, 0, 32, 0, 8, 0, 12, 0, 8, 0, - 8, 0, 4, 0, 4, 0, 0, 1, 32, 0, 12, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 40, 0, 56, 0, 72, 0, 92, 0,100, 0, - 72, 0,100, 0,120, 0, 68, 0, 64, 0,112, 0, 64, 0, 76, 0,176, 0, 48, 0,168, 0,152, 0,156, 0, 64, 0, 96, 0,108, 0, -188, 0,104, 0,216, 0, 56, 0, 84, 0, 0, 0,136, 0, 28, 0,240, 1,104, 0, 0, 0, 80, 0, 0, 0, 0, 0, 68, 0, 8, 0, - 8, 0,220, 0, 80, 0, 76, 0, 68, 0, 68, 0, 64, 0,168, 1,112, 0,108, 0,188, 0, 40, 0, 0, 0, 92, 0, 64, 0, 72, 0, -120, 0,144, 0, 0, 1,208, 0,180, 0, 0, 0, 68, 0, 92, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,104, 1, 28, 0,176, 0, -144, 0, 60, 0, 24, 0, 72, 0,248, 3, 56, 0, 20, 0, 16, 0, 92, 0, 80, 0, 24, 0,196, 0, 36, 0, 8, 0,100, 0, 80, 0, - 48, 0, 52, 0, 72, 1, 32, 0, 8, 0, 16, 0, 24, 2, 0, 0, 0, 0, 56, 0,216, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -240, 0, 40, 0,148, 0, 48, 0,140, 0,208, 0, 20, 0,224, 0,216, 0,204, 1, 60, 0, 0, 0,112, 0, 0, 0, 4, 1, 12, 0, - 12, 0,136, 0,200, 0,124, 2, 80, 2, 40, 0,180, 0,244, 0, 52, 0,148, 2, 28, 0, 80, 0, 24, 0, 16, 1, 32, 0,224, 0, - 32, 0, 32, 0, 80, 2, 16, 1, 16, 0,200, 21, 56, 0, 56, 11, 20, 0, 24, 0, 56, 1, 0, 0, 0, 0, 96, 0, 0, 0,248, 0, - 0, 0, 32, 0, 80, 0, 28, 0, 16, 0, 8, 0, 52, 0,252, 0,240, 0,168, 1,196, 0, 8, 1, 48, 0, 16, 0, 12, 0, 24, 0, - 48, 0, 16, 0, 20, 0, 16, 0, 24, 0, 56, 1, 0, 0, 56, 0, 52, 0, 48, 0, 8, 0, 44, 0, 72, 0,104, 0, 40, 0, 8, 0, - 72, 0, 44, 0, 40, 0,108, 0, 72, 0, 68, 0, 76, 0, 80, 0, 60, 0,128, 0, 76, 0, 60, 0, 12, 0, 92, 0, 68, 0, 32, 0, - 80, 0, 16, 0, 76, 0,108, 0, 84, 0, 28, 0, 96, 0, 56, 0, 56, 0,108, 0,140, 0, 4, 0, 20, 0, 12, 0, 8, 0, 80, 0, - 40, 0,196, 0, 24, 0, 4, 1,128, 0, 16, 0, 20, 0, 24, 0,180, 1, 4, 0, 40, 0,104, 0,228, 0, 64, 0, 44, 0, 72, 0, -116, 0, 60, 0,112, 0, 52, 0, 44, 0, 44, 0, 68, 0, 44, 0, 64, 0, 44, 0, 20, 0, 52, 0, 96, 0, 12, 0,108, 0, 92, 0, - 28, 0, 28, 0, 28, 0, 52, 0, 20, 0, 60, 0,140, 0, 36, 0,120, 0, 32, 0,212, 0, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, - 28, 0, 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 8, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, - 44, 0, 20, 0, 68, 0, 24, 0, 56, 0, 52, 0, 20, 0, 64, 0, 28, 0,180, 0,172, 1, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 20, 0, 24, 0,172, 0, 24, 0, 24, 0,140, 0,156, 0, 56, 0, 0, 0, 0, 0,100, 0, 0, 0, 96, 0, 0, 0, 88, 0, - 20, 0, 24, 0, 16, 0, 20, 0, 8, 0, 8, 0, 24, 0, 20, 0, 88, 0, 24, 1, 16, 0, 68, 0, 0, 1, 20, 0,160, 0, 88, 0, - 96, 0, 88, 0, 20, 0, 56, 0, 48, 0, 68, 0, 56, 0, 92, 0, 64, 0, 56, 0, 96, 0, 0, 0, 0, 0, 0, 0, 83, 84, 82, 67, -133, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, +115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, + 62,109,111,100,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35, +100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, + 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, + 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, + 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97, +120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, + 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, + 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, + 52, 32, 97,114,101, 32,117,115,101,100, 32, 97,115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, + 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104, +105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, + 97, 47, 98,105,110, 97,114,121, 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, + 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104, +101, 32,117,115,101,114, 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97, +112, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, + 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, + 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35,101,110,100,105,102, 10,100,105, 79, 67, 75, 33,110,100,101,120, 32,105,110, 32, +110,117,114, 98, 32,108,105,115,116, 32, 42, 47, 10, 9,105,110,116, 32, 97, 99,116,110,117, 59, 10, 9, 47, 42, 32,101,100,105, +116, 44, 32,108, 97,115,116, 32,115,101,108,101, 99,116,101,100, 32, 98,112,111,105,110,116, 32, 42, 47, 10, 9, 66, 80,111,105, +110,116, 32, 42,108, 97,115,116,115,101,108, 98,112, 59, 10, 9, 10, 9, 47, 42, 32,102,111,110,116, 32,112, 97,114,116, 32, 42, + 47, 10, 9,115,104,111,114,116, 32,108,101,110, 44, 32,108,105,110,101,115, 44, 32,112,111,115, 44, 32,115,112, 97, 99,101,109, +111,100,101, 59, 10, 9,102,108,111, 97,116, 32,115,112, 97, 99,105,110,103, 44, 32,108,105,110,101,100,105,115,116, 44, 32,115, +104,101, 97,114, 44, 32,102,115,105,122,101, 44, 32,119,111,114,100,115,112, 97, 99,101, 44, 32,117,108,112,111,115, 44, 32,117, +108,104,101,105,103,104,116, 59, 10, 9,102,108,111, 97,116, 32,120,111,102, 44, 32,121,111,102, 59, 10, 9,102,108,111, 97,116, + 32,108,105,110,101,119,105,100,116,104, 59, 10, 70, 82, 69, 69,216, 24, 0, 77,117,108,116,105,114,101,115, 67,111,108, 0, 77, +117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, 77,117,108,116, +105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102,105,101,114, 68, + 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116,105, 99,101, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,117, +105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, + 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,101,118,101, +108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105,110, 83,101,116, +116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 67,111,108, +108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 85, + 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116,101, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67, 97,115, +116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65, +114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105,102,105,101,114, + 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101,116,116,105,110, +103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, 99,104,101, 0, + 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101,101, 0, 83,117, +114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115,104, 0, 66, 86, + 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101,114, 68, 97,116, + 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115,104, 68,101,102, +111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 77,111, +100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77,111,100,105,102, +105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,117,108,116, +105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110,107,119,114, 97, +112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111,100,105,102,105, +101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, +105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105,111,110, 0, 98, + 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83,111,102,116, 66, +111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72,111,111,107, 0, + 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103,104,116,115, 0, + 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114,116,101,120, 0, + 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, 99,104, 0, 87, +111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107,116,105,109,101, + 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117,100,105,111, 68, + 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, 97,116, 97, 0, + 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70,114, 97,109,105, +110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, 0, 66,114,117, +115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 66,114, +117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, 0, 84,114, 97, +110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97,105,110,116, 0, + 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116,105,110,103,115, + 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101,110,101, 83,116, + 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105,101,119, 51, 68, + 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86,105,101,119, 68, +101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101,114, 0, 86,105, +101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73,110,102,111, 0, + 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, 83,112, 97, 99, +101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, 97,109,115, 0, + 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111,114, 0, 70,105, +108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, 0, 84,114,101, +101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78,108, 97, 0, 83, +112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, 83,112, 97, 99, +101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83,112, 97, 99,101, + 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115,111,108,101, 0, + 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83,116,121,108,101, + 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105,100,103,101,116, + 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, 99,101, 0, 84, +104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105,103,104,116, 0, + 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101,108, 0, 80, 97, +110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, 99,101, 84,121, +112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71,108,111, 98, 97, +108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, 67,114,111,112, + 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97,108, 97,110, 99, +101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, 0, 83,101,113, +117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, 97, 83,116, 97, + 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111,114,109, 86, 97, +114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114,111,108, 86, 97, +114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, 97,114,116,105, + 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83,101,110,115,111, +114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, 98, 75,101,121, + 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, 98, 65, 99,116, +117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111,108,108,105,115, +105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100,111,109, 83,101, +110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110,115,111,114, 0, + 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116,114,111,108,108, +101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105,111,110, 67,111, +110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100,100, 79, 98,106, +101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, 98, 83,111,117, +110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, 99,116, 65, 99, +116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101,114,116,121, 65, + 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, 65, 99,116,117, + 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, 97,105,110,116, + 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110,100,111,109, 65, + 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97,109,101, 65, 99, +116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 84,119,111, 68, + 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, + 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97,116,111,114, 0, + 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, 98,106,101, 99, +116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 86,101,114,116, + 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103,115, 0, 98, 80, +111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, 65, 99,116,105, +111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67,104, 97,110,110, +101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110, +116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67,111,110,115,116, +114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97, 99, +107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77,105,110, 77, 97, +120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, + 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, 67,111,110,115, +116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,116, +114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, 74,111,105,110, +116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, + 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, 67,111,110,115, +116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 76, +105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104,114,105,110,107, +119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105,101,114, 0, 98, + 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, 83,111, 99,107, +101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118,105,101,119, 0, +117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65,110,105,109, 0, + 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 66, +105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, 78,111,100,101, + 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, 88, 89,115, 0, + 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78,111,100,101, 86, +101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114,105,112,116, 68, +105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111,100,101, 76,101, +110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97,112, 80,111,105, +110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111,109, 68, 97,116, + 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66,111,105,100, 80, + 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99,108,101, 0, 80, + 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87,101,105,103,104, +116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, + 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, + 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, + 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, + 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110, +100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110,102,105,103, 0, +119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114,101, 0,119,109, + 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, 97,112, 0,119, +109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, 95, 71,101,110, +101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111,114, 0, 70, 67, + 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, 0, 70, 77,111, +100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105,109,105,116,115, + 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97,110,110,101,108, + 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, 80, 97,105,114, + 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99,107, 0, 75, 83, + 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, 0, 73,100, 65, +100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, 71,111, 97,108, + 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, 0, 66,111,105, +100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118,101,114, 97,103, +101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97,116,101, 0, 70, + 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, 2, 0, 2, 0, + 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 16, 0, 24, 0, 16, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, 12, 0, 24, 0, + 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 32, 0, 96, 0, 72, 0, 72, 2, 0, 0, 40, 0,144, 0,152, 4,112, 0, 36, 0, 56, 0, +112, 0,128, 0,168, 0, 96, 0, 40, 0, 48, 0,176, 0, 16, 0,152, 0, 40, 0, 0, 6,184, 1, 0, 0, 0, 0, 0, 0, 16, 1, +104, 1,120, 1, 24, 0, 8, 3,200, 0, 0, 0, 96, 0,240, 1, 32, 1,232, 0,136, 0,248, 1, 56, 1, 80, 0, 88, 0, 32, 3, +104, 0, 88, 1, 0, 0,128, 0,104, 0,208, 0, 80, 0, 8, 0, 16, 0,216, 1, 0, 0, 0, 0, 0, 0,144, 1, 20, 0, 48, 0, + 64, 0, 24, 0, 12, 0, 16, 0, 4, 0, 8, 0, 8, 0, 0, 0, 32, 0,112, 0, 48, 0, 8, 0, 16, 0, 8, 0, 8, 0, 4, 0, + 4, 0, 0, 1, 32, 0, 16, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 64, 0, 72, 0, 96, 0,112, 0,120, 0, 88, 0,120, 0, +152, 0, 88, 0, 80, 0,128, 0, 80, 0,104, 0,248, 0, 56, 0,192, 0,176, 0,216, 0, 80, 0,112, 0,128, 0,216, 0,128, 0, +240, 0, 72, 0,128, 0, 0, 0,144, 0, 32, 0, 8, 2,152, 0, 0, 0,112, 0, 0, 0, 0, 0, 88, 0, 8, 0, 8, 0, 8, 1, +104, 0, 96, 0, 88, 0, 88, 0, 88, 0,192, 1,136, 0,128, 0, 72, 0,232, 0, 48, 0, 0, 0,144, 0, 88, 0,104, 0,120, 0, +152, 0, 32, 1,224, 0,192, 0, 0, 0, 72, 0,168, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,216, 1, 40, 0,184, 0,152, 0, + 64, 0, 24, 0, 88, 0, 24, 4, 64, 0, 24, 0, 16, 0, 96, 0, 88, 0, 32, 0, 40, 1, 48, 0, 8, 0,112, 0, 88, 0, 56, 0, + 72, 0,112, 1, 32, 0, 8, 0, 16, 0, 48, 2, 0, 0, 0, 0, 64, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, + 56, 0,152, 0, 72, 0,208, 0,248, 0, 32, 0, 0, 1,240, 0,208, 1,104, 0, 0, 0,152, 0, 0, 0, 40, 1, 16, 0, 16, 0, +168, 0,224, 0,144, 2,120, 2, 64, 0,200, 0, 32, 1, 72, 0,208, 2, 40, 0,112, 0, 40, 0, 24, 1, 32, 0,232, 0, 32, 0, + 32, 0, 80, 2, 16, 1, 16, 0,216, 21, 56, 0,160, 11, 32, 0, 40, 0, 88, 1, 0, 0, 0, 0,160, 0, 0, 0, 40, 1, 0, 0, + 24, 1, 80, 0, 48, 0, 16, 0, 8, 0, 52, 0, 0, 1, 32, 1,200, 1, 8, 1, 48, 1, 64, 0, 32, 0, 12, 0, 24, 0, 48, 0, + 16, 0, 24, 0, 24, 0, 32, 0, 72, 1, 0, 0, 64, 0, 64, 0, 48, 0, 8, 0, 48, 0, 72, 0,104, 0, 40, 0, 8, 0, 72, 0, + 44, 0, 40, 0,108, 0, 72, 0, 72, 0, 96, 0,104, 0, 60, 0,128, 0, 80, 0, 80, 0, 16, 0, 96, 0, 72, 0, 32, 0, 88, 0, + 24, 0, 80, 0,112, 0, 84, 0, 32, 0, 96, 0, 56, 0, 56, 0,112, 0,140, 0, 4, 0, 24, 0, 16, 0, 8, 0, 88, 0, 40, 0, +224, 0, 40, 0, 24, 1,176, 0, 16, 0, 24, 0, 24, 0, 0, 2, 4, 0, 40, 0,120, 0, 8, 1, 88, 0, 56, 0, 88, 0,128, 0, + 80, 0,120, 0, 56, 0, 48, 0, 48, 0, 72, 0, 48, 0, 72, 0, 48, 0, 24, 0, 56, 0,104, 0, 16, 0,112, 0, 96, 0, 28, 0, + 28, 0, 28, 0, 56, 0, 24, 0, 72, 0,168, 0, 40, 0,144, 0, 56, 0, 8, 1, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, 28, 0, + 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 16, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, 56, 0, + 24, 0, 72, 0, 24, 0, 56, 0, 56, 0, 20, 0, 64, 0, 40, 0, 32, 0,192, 0, 8, 2,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 32, 0, 40, 0,192, 0, 40, 0, 32, 0, 8, 1,224, 0,168, 0, 72, 0, 0, 0, 0, 0,120, 0, 0, 0,120, 0, 0, 0, +104, 0, 24, 0, 24, 0, 16, 0, 24, 0, 8, 0, 16, 0, 24, 0, 20, 0,112, 0, 32, 1, 16, 0,104, 0, 0, 1, 40, 0,200, 0, +104, 0,112, 0,104, 0, 32, 0, 80, 0, 56, 0, 80, 0, 64, 0,104, 0, 72, 0, 64, 0,128, 0, 0, 0, 0, 0, 83, 84, 82, 67, +136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, 4, 0, 5, 0, 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, 17, 0, 3, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 19, 0, 3, 0, @@ -2621,586 +2945,592 @@ char datatoc_B_blend[]= { 2, 0, 16, 1, 2, 0,127, 0, 4, 0, 23, 0, 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 7, 0, 56, 1, 7, 0, 57, 1, 7, 0,189, 0, 45, 0, 58, 1, 61, 0, 59, 1, 36, 0, 80, 0, 47, 0,238, 0, 53, 0, 60, 1, 55, 0, 12, 1, 56, 0, 61, 1, 30, 0,150, 0, 58, 0, 62, 1, 60, 0, 63, 1, 0, 0, 64, 1, 0, 0,181, 0, 62, 0, 8, 0, 7, 0, 65, 1, 7, 0, 66, 1, - 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 82, 0, 27, 0, 31, 0, + 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 84, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 70, 1, 2, 0,175, 0, 2, 0, 71, 1, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, 7, 0, 72, 1, 7, 0, 73, 1, 7, 0, 74, 1, 7, 0, 75, 1, 7, 0, 76, 1, 7, 0, 77, 1, 7, 0, 78, 1, 7, 0, 79, 1, 7, 0, 80, 1, 7, 0, 81, 1, 7, 0, 82, 1, 64, 0, 83, 1, 2, 0,249, 0, 2, 0, 70, 0, - 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 2, 0, 87, 1, 2, 0, 88, 1, 2, 0, 89, 1, - 2, 0, 90, 1, 0, 0, 91, 1, 0, 0, 92, 1, 2, 0, 93, 1, 2, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, 2, 0, 97, 1, - 7, 0, 98, 1, 7, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 2, 0,102, 1, 2, 0, 43, 0, 2, 0,103, 1, 2, 0,104, 1, - 2, 0,105, 1, 2, 0,106, 1, 7, 0,107, 1, 7, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, 7, 0,112, 1, - 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 2, 0,119, 1, 2, 0,120, 1, - 4, 0,121, 1, 4, 0,122, 1, 2, 0,123, 1, 2, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 7, 0,127, 1, 7, 0,128, 1, - 7, 0,129, 1, 7, 0,130, 1, 2, 0,131, 1, 2, 0,132, 1, 36, 0, 80, 0, 51, 0,133, 1, 2, 0,134, 1, 2, 0,135, 1, - 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, 7, 0,136, 1, 7, 0,137, 1, 7, 0,138, 1, - 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, 2, 0,146, 1, - 2, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 7, 0,150, 1, 7, 0,151, 1, 7, 0,152, 1, 4, 0,153, 1, 67, 0,124, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,154, 1, 2, 0, 19, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,155, 1, - 7, 0,156, 1, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, 7, 0,163, 1, + 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 7, 0, 87, 1, 7, 0, 88, 1, 2, 0, 89, 1, + 2, 0, 90, 1, 2, 0, 91, 1, 2, 0, 92, 1, 0, 0, 93, 1, 0, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, 2, 0, 97, 1, + 2, 0, 98, 1, 2, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 7, 0,102, 1, 7, 0,103, 1, 2, 0,104, 1, 2, 0, 43, 0, + 2, 0,105, 1, 2, 0,106, 1, 2, 0,107, 1, 2, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, 7, 0,112, 1, + 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 7, 0,119, 1, 7, 0,120, 1, + 2, 0,121, 1, 2, 0,122, 1, 4, 0,123, 1, 4, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 2, 0,127, 1, 2, 0,128, 1, + 7, 0,129, 1, 7, 0,130, 1, 7, 0,131, 1, 7, 0,132, 1, 2, 0,133, 1, 2, 0,134, 1, 36, 0, 80, 0, 51, 0,135, 1, + 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, 7, 0,138, 1, + 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, 7, 0,146, 1, + 7, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 2, 0,150, 1, 2, 0,151, 1, 7, 0,152, 1, 7, 0,153, 1, 7, 0,154, 1, + 4, 0,155, 1, 67, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,156, 1, 2, 0, 19, 0, 7, 0,182, 0, 7, 0,183, 0, + 7, 0,184, 0, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, 7, 0,163, 1, 7, 0,164, 1, 7, 0,165, 1, 7, 0,166, 1, 7, 0,167, 1, 7, 0,168, 1, 7, 0,169, 1, 7, 0,170, 1, 7, 0,171, 1, - 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 66, 0,175, 1, 7, 0,176, 1, 7, 0,177, 1, 7, 0,178, 1, 7, 0,179, 1, - 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 2, 0,183, 1, 2, 0,184, 1, 2, 0,185, 1, 0, 0,186, 1, 0, 0,187, 1, - 7, 0,188, 1, 7, 0,189, 1, 2, 0,190, 1, 2, 0,191, 1, 7, 0,192, 1, 7, 0,193, 1, 7, 0,194, 1, 7, 0,195, 1, - 2, 0,196, 1, 2, 0,197, 1, 4, 0, 70, 1, 4, 0,198, 1, 2, 0,199, 1, 2, 0,200, 1, 2, 0,201, 1, 2, 0,202, 1, - 7, 0,203, 1, 7, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, 7, 0,210, 1, - 7, 0,211, 1, 7, 0,212, 1, 0, 0,213, 1, 7, 0,214, 1, 7, 0,215, 1, 7, 0,216, 1, 4, 0,217, 1, 0, 0,218, 1, - 0, 0,103, 1, 0, 0,219, 1, 0, 0, 64, 1, 2, 0,220, 1, 2, 0,221, 1, 2, 0,134, 1, 2, 0,222, 1, 2, 0,223, 1, - 2, 0,224, 1, 7, 0,225, 1, 7, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 2, 0,160, 0, 2, 0,161, 0, - 55, 0,230, 1, 55, 0,231, 1, 0, 0,232, 1, 0, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 2, 0,236, 1, 2, 0,237, 1, - 7, 0,238, 1, 7, 0,239, 1, 51, 0,133, 1, 61, 0, 59, 1, 36, 0, 80, 0, 68, 0,240, 1, 30, 0,150, 0, 7, 0,241, 1, - 7, 0,242, 1, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 2, 0,246, 1, 2, 0, 70, 0, 7, 0,247, 1, 7, 0,248, 1, - 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, 2, 0, 0, 2, - 2, 0, 1, 2, 4, 0, 2, 2, 4, 0,120, 1, 12, 0, 3, 2, 69, 0, 4, 0, 27, 0, 31, 0, 0, 0, 4, 2, 70, 0, 2, 0, - 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 5, 2, 4, 0, 6, 2, 4, 0, 7, 2, 4, 0, 8, 2, - 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 12, 2, 2, 0, 13, 2, 7, 0, 5, 0, - 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 14, 2, 7, 0, 15, 2, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, 7, 0, 19, 2, - 7, 0, 20, 2, 7, 0, 23, 0, 7, 0, 21, 2, 7, 0, 22, 2, 73, 0, 19, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 5, 2, - 12, 0, 23, 2, 12, 0, 24, 2, 12, 0, 25, 2, 36, 0, 80, 0, 67, 0, 26, 2, 0, 0, 19, 0, 0, 0, 27, 2, 2, 0, 28, 2, - 4, 0,174, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0, 29, 2, 7, 0, 30, 2, 7, 0, 31, 2, 71, 0, 32, 2, - 35, 0, 11, 0, 7, 0, 33, 2, 7, 0, 34, 2, 7, 0, 35, 2, 7, 0,251, 0, 2, 0, 55, 0, 0, 0, 36, 2, 0, 0, 37, 2, - 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 34, 0, 7, 0, 7, 0, 42, 2, 7, 0, 34, 2, 7, 0, 35, 2, - 2, 0, 38, 2, 2, 0, 41, 2, 7, 0,251, 0, 7, 0, 37, 0, 74, 0, 21, 0, 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, - 2, 0, 43, 2, 2, 0, 41, 2, 2, 0, 19, 0, 2, 0, 44, 2, 2, 0, 45, 2, 2, 0, 46, 2, 2, 0, 47, 2, 2, 0, 48, 2, - 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 7, 0, 52, 2, 7, 0, 53, 2, 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 54, 2, - 2, 0, 55, 2, 4, 0, 56, 2, 75, 0, 5, 0, 2, 0, 57, 2, 2, 0, 43, 2, 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, - 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 7, 0, 58, 2, 77, 0, 67, 0, 27, 0, 31, 0, 39, 0, 75, 0, - 72, 0, 5, 2, 12, 0, 59, 2, 12, 0, 24, 2, 12, 0, 60, 2, 32, 0, 61, 2, 32, 0, 62, 2, 32, 0, 63, 2, 36, 0, 80, 0, - 78, 0, 64, 2, 38, 0, 65, 2, 67, 0, 26, 2, 12, 0, 66, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 4, 0,174, 0, - 2, 0, 67, 2, 2, 0, 68, 2, 2, 0, 69, 2, 7, 0, 70, 2, 7, 0, 70, 0, 2, 0, 71, 2, 2, 0, 28, 2, 2, 0, 19, 0, - 2, 0, 72, 2, 7, 0, 73, 2, 7, 0, 74, 2, 7, 0, 75, 2, 2, 0, 46, 2, 2, 0, 47, 2, 2, 0, 76, 2, 2, 0, 77, 2, - 4, 0, 78, 2, 34, 0, 79, 2, 2, 0, 23, 0, 2, 0, 95, 0, 2, 0, 67, 0, 2, 0, 80, 2, 7, 0, 81, 2, 7, 0, 82, 2, - 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, 7, 0, 88, 2, 7, 0, 89, 2, 7, 0, 90, 2, - 0, 0, 91, 2, 79, 0, 92, 2, 80, 0, 93, 2, 0, 0, 94, 2, 69, 0, 95, 2, 69, 0, 96, 2, 69, 0, 97, 2, 69, 0, 98, 2, - 4, 0, 99, 2, 7, 0,100, 2, 4, 0,101, 2, 4, 0,102, 2, 76, 0,103, 2, 4, 0,104, 2, 4, 0,105, 2, 75, 0,106, 2, - 75, 0,107, 2, 81, 0, 39, 0, 27, 0, 31, 0, 72, 0, 5, 2, 12, 0,108, 2, 36, 0, 80, 0, 38, 0, 65, 2, 67, 0, 26, 2, - 82, 0,109, 2, 83, 0,110, 2, 84, 0,111, 2, 85, 0,112, 2, 86, 0,113, 2, 87, 0,114, 2, 88, 0,115, 2, 89, 0,116, 2, - 81, 0,117, 2, 90, 0,118, 2, 91, 0,119, 2, 92, 0,120, 2, 92, 0,121, 2, 92, 0,122, 2, 4, 0, 54, 0, 4, 0,123, 2, - 4, 0,124, 2, 4, 0,125, 2, 4, 0,126, 2, 4, 0,174, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,127, 2, - 4, 0, 67, 2, 2, 0,128, 2, 2, 0, 19, 0, 2, 0,129, 2, 2, 0,130, 2, 2, 0, 28, 2, 2, 0,131, 2, 93, 0,132, 2, - 94, 0,133, 2, 84, 0, 8, 0, 9, 0,134, 2, 7, 0,135, 2, 4, 0,136, 2, 0, 0, 19, 0, 0, 0,137, 2, 2, 0, 70, 1, - 2, 0,138, 2, 2, 0,139, 2, 82, 0, 7, 0, 4, 0,140, 2, 4, 0,141, 2, 4, 0,142, 2, 4, 0,143, 2, 2, 0, 43, 2, - 0, 0,144, 2, 0, 0, 19, 0, 86, 0, 5, 0, 4, 0,140, 2, 4, 0,141, 2, 0, 0,145, 2, 0, 0,146, 2, 2, 0, 19, 0, - 95, 0, 2, 0, 4, 0,147, 2, 7, 0, 35, 2, 87, 0, 3, 0, 95, 0,148, 2, 4, 0,149, 2, 4, 0, 19, 0, 85, 0, 6, 0, - 7, 0,150, 2, 2, 0,151, 2, 2, 0, 43, 2, 0, 0, 19, 0, 0, 0,146, 2, 0, 0, 69, 2, 88, 0, 4, 0, 0, 0,236, 0, - 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 96, 0, 6, 0, 47, 0,134, 2, 0, 0, 19, 0, 0, 0,137, 2, 2, 0, 70, 1, - 2, 0,138, 2, 2, 0,139, 2, 97, 0, 1, 0, 7, 0,152, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, - 0, 0,184, 0, 4, 0, 37, 0, 89, 0, 1, 0, 7, 0,153, 2, 90, 0, 2, 0, 4, 0,154, 2, 4, 0, 17, 0, 83, 0, 7, 0, - 7, 0,135, 2, 47, 0,134, 2, 0, 0, 19, 0, 0, 0,137, 2, 2, 0, 70, 1, 2, 0,138, 2, 2, 0,139, 2, 99, 0, 1, 0, - 7, 0,155, 2,100, 0, 1, 0, 4, 0,156, 2,101, 0, 1, 0, 0, 0,157, 2,102, 0, 1, 0, 7, 0,135, 2,103, 0, 3, 0, - 4, 0,158, 2, 0, 0, 92, 0, 7, 0,159, 2,105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, -106, 0, 1, 0,105, 0,136, 2,107, 0, 5, 0, 4, 0,160, 2, 4, 0,161, 2, 0, 0, 19, 0, 0, 0, 43, 2, 0, 0, 69, 2, -108, 0, 2, 0, 4, 0,162, 2, 4, 0,161, 2,109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,163, 2,106, 0,164, 2, -108, 0,165, 2, 4, 0, 54, 0, 4, 0,124, 2, 4, 0,123, 2, 4, 0, 37, 0, 85, 0,166, 2, 93, 0, 14, 0, 12, 0,167, 2, - 85, 0,166, 2, 0, 0,168, 2, 0, 0,169, 2, 0, 0,170, 2, 0, 0,171, 2, 0, 0,172, 2, 0, 0,173, 2, 0, 0,174, 2, - 0, 0, 19, 0, 92, 0,120, 2, 92, 0,122, 2, 2, 0,175, 2, 0, 0,176, 2, 94, 0, 8, 0, 4, 0,177, 2, 4, 0,178, 2, - 82, 0,179, 2, 86, 0,180, 2, 4, 0,124, 2, 4, 0,123, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0, -110, 0, 1, 0, 4, 0, 17, 0, 4, 0, 70, 1, 0, 0, 20, 0, 46, 0,134, 0, 0, 0,181, 2,111, 0, 7, 0,110, 0,182, 2, - 2, 0,183, 2, 2, 0,167, 2, 2, 0,184, 2, 2, 0, 90, 0, 9, 0,185, 2, 9, 0,186, 2,112, 0, 3, 0,110, 0,182, 2, - 32, 0,164, 0, 0, 0, 20, 0,113, 0, 5, 0,110, 0,182, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,187, 2, 0, 0,188, 2, -114, 0, 5, 0,110, 0,182, 2, 7, 0, 88, 0, 7, 0,189, 2, 4, 0,190, 2, 4, 0,191, 2,115, 0, 5, 0,110, 0,182, 2, - 32, 0,192, 2, 0, 0, 72, 0, 4, 0, 70, 1, 4, 0, 19, 0,116, 0, 13, 0,110, 0,182, 2, 32, 0,193, 2, 32, 0,194, 2, - 32, 0,195, 2, 32, 0,196, 2, 7, 0,197, 2, 7, 0,198, 2, 7, 0,189, 2, 7, 0,199, 2, 4, 0,200, 2, 4, 0,201, 2, - 4, 0, 90, 0, 4, 0,202, 2,117, 0, 5, 0,110, 0,182, 2, 2, 0,203, 2, 2, 0, 19, 0, 7, 0,204, 2, 32, 0,205, 2, -118, 0, 3, 0,110, 0,182, 2, 7, 0,206, 2, 4, 0, 90, 0,119, 0, 10, 0,110, 0,182, 2, 7, 0,207, 2, 4, 0,208, 2, - 4, 0, 37, 0, 2, 0, 90, 0, 2, 0,209, 2, 2, 0,210, 2, 2, 0,211, 2, 7, 0,212, 2, 0, 0,213, 2,120, 0, 3, 0, -110, 0,182, 2, 7, 0, 37, 0, 4, 0, 17, 0,121, 0, 6, 0,110, 0,182, 2,122, 0,214, 2,123, 0,215, 2,124, 0,216, 2, - 7, 0,217, 2, 4, 0, 17, 0,125, 0, 11, 0,110, 0,182, 2, 52, 0,218, 2, 7, 0,219, 2, 4, 0,220, 2, 0, 0,213, 2, - 7, 0,221, 2, 4, 0,222, 2, 32, 0,223, 2, 0, 0,224, 2, 4, 0,225, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,182, 2, - 32, 0,226, 2, 47, 0,227, 2, 4, 0, 90, 0, 4, 0,228, 2, 7, 0,229, 2, 7, 0,230, 2, 0, 0,224, 2, 4, 0,225, 2, - 4, 0, 37, 0,127, 0, 3, 0,110, 0,182, 2, 7, 0,231, 2, 4, 0,232, 2,128, 0, 5, 0,110, 0,182, 2, 7, 0,233, 2, - 0, 0,213, 2, 2, 0, 19, 0, 2, 0,234, 2,129, 0, 8, 0,110, 0,182, 2, 32, 0,164, 0, 7, 0,233, 2, 7, 0,251, 0, - 7, 0,106, 0, 0, 0,213, 2, 2, 0, 19, 0, 2, 0, 17, 0,130, 0, 21, 0,110, 0,182, 2, 32, 0,235, 2, 0, 0,213, 2, - 52, 0,218, 2, 32, 0,223, 2, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0,236, 2, 7, 0,237, 2, 7, 0,238, 2, 7, 0, 73, 2, - 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0,242, 2, 4, 0,222, 2, 4, 0,225, 2, 0, 0,224, 2, 7, 0,243, 2, - 7, 0,244, 2, 7, 0, 43, 0,131, 0, 7, 0,110, 0,182, 2, 2, 0,245, 2, 2, 0,246, 2, 4, 0, 70, 0, 32, 0,164, 0, - 7, 0,247, 2, 0, 0,213, 2,132, 0, 10, 0,110, 0,182, 2, 32, 0,164, 0, 0, 0,248, 2, 7, 0,249, 2, 7, 0,250, 2, - 7, 0,242, 2, 4, 0,251, 2, 4, 0,252, 2, 7, 0,253, 2, 0, 0, 20, 0,133, 0, 1, 0,110, 0,182, 2,134, 0, 7, 0, -110, 0,182, 2, 46, 0,134, 0,135, 0,254, 2,136, 0,255, 2,137, 0, 0, 3,138, 0, 1, 3, 12, 0, 2, 3,139, 0, 13, 0, -110, 0,182, 2, 85, 0, 3, 3, 85, 0, 4, 3, 85, 0, 5, 3, 85, 0, 6, 3, 85, 0, 7, 3, 85, 0, 8, 3, 82, 0, 9, 3, - 4, 0, 10, 3, 4, 0, 11, 3, 7, 0,217, 2, 7, 0, 37, 0,140, 0, 12, 3,141, 0, 7, 0,110, 0,182, 2, 85, 0, 3, 3, - 85, 0, 13, 3,142, 0, 14, 3,143, 0, 12, 3, 4, 0, 15, 3, 4, 0, 10, 3,144, 0, 4, 0,110, 0,182, 2, 32, 0,164, 0, - 4, 0, 16, 3, 4, 0, 37, 0,145, 0, 2, 0, 4, 0, 17, 3, 7, 0, 35, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 18, 3, -147, 0, 20, 0,110, 0,182, 2, 32, 0,164, 0, 0, 0,213, 2, 2, 0, 19, 3, 2, 0, 20, 3, 2, 0, 19, 0, 2, 0, 37, 0, - 7, 0, 21, 3, 7, 0, 22, 3, 4, 0, 54, 0, 4, 0, 23, 3,146, 0, 24, 3,145, 0, 25, 3, 4, 0, 26, 3, 4, 0, 27, 3, - 4, 0, 28, 3, 4, 0, 18, 3, 7, 0, 29, 3, 7, 0, 30, 3, 7, 0, 31, 3,148, 0, 8, 0,110, 0,182, 2, 59, 0,255, 0, -142, 0, 14, 3, 4, 0, 32, 3, 4, 0, 33, 3, 4, 0, 34, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,182, 2, - 32, 0, 45, 0, 2, 0, 35, 3, 2, 0, 19, 0, 2, 0,203, 2, 2, 0, 57, 0, 7, 0, 36, 3, 7, 0, 37, 3,150, 0, 5, 0, -110, 0,182, 2, 4, 0, 38, 3, 2, 0, 19, 0, 2, 0, 39, 3, 7, 0, 40, 3,151, 0, 7, 0,110, 0,182, 2, 85, 0, 41, 3, - 4, 0, 42, 3, 0, 0, 43, 3, 0, 0, 44, 3, 0, 0, 45, 3, 0, 0, 46, 3,152, 0, 3, 0,110, 0,182, 2,153, 0, 47, 3, -138, 0, 1, 3,154, 0, 10, 0,110, 0,182, 2, 32, 0, 48, 3, 32, 0, 49, 3, 0, 0, 50, 3, 7, 0, 51, 3, 2, 0, 52, 3, - 2, 0, 53, 3, 0, 0, 54, 3, 0, 0, 55, 3, 0, 0,188, 2,155, 0, 9, 0,110, 0,182, 2, 32, 0, 56, 3, 0, 0, 50, 3, - 7, 0, 57, 3, 7, 0, 58, 3, 0, 0, 70, 1, 0, 0,203, 2, 0, 0, 59, 3, 0, 0, 37, 0,156, 0, 27, 0, 27, 0, 31, 0, - 2, 0, 44, 2, 2, 0, 45, 2, 2, 0, 60, 3, 2, 0, 19, 0, 2, 0, 61, 3, 2, 0, 62, 3, 2, 0, 63, 3, 2, 0, 70, 0, - 0, 0, 64, 3, 0, 0, 65, 3, 0, 0, 66, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 67, 3, 7, 0, 68, 3, 7, 0, 69, 3, - 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, 34, 0, 73, 3, 36, 0, 80, 0, 38, 0, 65, 2, 87, 0,114, 2, 7, 0, 74, 3, - 7, 0, 75, 3,156, 0, 76, 3,157, 0, 3, 0,157, 0, 0, 0,157, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 77, 3, - 4, 0, 19, 0, 4, 0, 37, 0, 32, 0,120, 0, 27, 0, 31, 0, 39, 0, 75, 0,158, 0, 78, 3, 2, 0, 17, 0, 2, 0, 79, 3, - 4, 0, 80, 3, 4, 0, 81, 3, 4, 0, 82, 3, 0, 0, 83, 3, 32, 0, 38, 0, 32, 0, 84, 3, 32, 0, 85, 3, 32, 0, 86, 3, - 32, 0, 87, 3, 36, 0, 80, 0, 78, 0, 64, 2, 72, 0, 5, 2,159, 0, 88, 3,159, 0, 89, 3,160, 0, 90, 3, 9, 0, 2, 0, -161, 0, 91, 3, 12, 0, 92, 3, 12, 0,108, 2, 12, 0, 24, 2, 12, 0, 93, 3, 12, 0, 94, 3, 4, 0, 70, 1, 4, 0, 95, 3, - 67, 0, 26, 2, 0, 0, 96, 3, 4, 0, 28, 2, 4, 0, 97, 3, 7, 0, 65, 1, 7, 0, 98, 3, 7, 0, 99, 3, 7, 0,172, 0, - 7, 0,100, 3, 7, 0, 66, 1, 7, 0,101, 3, 7, 0, 14, 2, 7, 0,102, 3, 7, 0,103, 3, 7, 0,249, 2, 7, 0,104, 3, - 7, 0,240, 0, 4, 0,105, 3, 2, 0, 19, 0, 2, 0,106, 3, 2, 0,107, 3, 2, 0,108, 3, 2, 0,109, 3, 2, 0,110, 3, - 2, 0,111, 3, 2, 0,112, 3, 2, 0,113, 3, 2, 0,114, 3, 2, 0,115, 3, 2, 0,116, 3, 4, 0,117, 3, 4, 0,118, 3, - 4, 0,119, 3, 4, 0,120, 3, 7, 0,121, 3, 7, 0,100, 2, 7, 0,122, 3, 7, 0,123, 3, 7, 0,124, 3, 7, 0,125, 3, - 7, 0,126, 3, 7, 0,215, 0, 7, 0,127, 3, 7, 0,128, 3, 7, 0,129, 3, 7, 0,130, 3, 2, 0,131, 3, 0, 0,132, 3, - 0, 0,133, 3, 0, 0,134, 3, 0, 0,135, 3, 7, 0,136, 3, 7, 0,137, 3, 12, 0,138, 3, 12, 0,139, 3, 12, 0,140, 3, - 12, 0,141, 3, 7, 0,142, 3, 2, 0,154, 2, 2, 0,143, 3, 7, 0,136, 2, 4, 0,144, 3, 4, 0,145, 3,162, 0,146, 3, - 2, 0,147, 3, 2, 0,247, 0, 7, 0,148, 3, 12, 0,149, 3, 12, 0,150, 3, 12, 0,151, 3, 12, 0,152, 3,163, 0, 62, 1, -164, 0,153, 3, 68, 0,154, 3, 2, 0,155, 3, 2, 0,156, 3, 2, 0,157, 3, 2, 0,158, 3, 7, 0,128, 2, 2, 0,159, 3, - 2, 0,160, 3,153, 0,161, 3,142, 0,162, 3,142, 0,163, 3, 4, 0,164, 3, 4, 0,165, 3, 4, 0,166, 3, 4, 0, 70, 0, - 12, 0,167, 3, 12, 0,168, 3, 12, 0,169, 3,165, 0, 14, 0,165, 0, 0, 0,165, 0, 1, 0, 32, 0, 38, 0, 7, 0,249, 2, - 7, 0, 67, 1, 7, 0,250, 2, 7, 0,242, 2, 0, 0, 20, 0, 4, 0,251, 2, 4, 0,252, 2, 4, 0,170, 3, 2, 0, 17, 0, - 2, 0,171, 3, 7, 0,253, 2,166, 0, 12, 0,166, 0, 0, 0,166, 0, 1, 0, 32, 0, 45, 0, 4, 0,172, 3, 4, 0,154, 2, - 4, 0,173, 3, 4, 0, 17, 0, 4, 0,174, 3, 7, 0, 67, 1, 7, 0,175, 3, 7, 0,176, 3, 7, 0,152, 2,163, 0, 41, 0, - 2, 0,177, 3, 2, 0,178, 3, 2, 0, 19, 0, 2, 0,242, 2, 2, 0,179, 3, 2, 0,180, 3, 2, 0,181, 3, 2, 0,182, 3, - 2, 0,183, 3, 2, 0, 57, 0, 7, 0,184, 3, 7, 0,185, 3, 7, 0,186, 3, 7, 0,187, 3, 7, 0,188, 3, 7, 0,189, 3, - 7, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, 7, 0,194, 3, 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, - 7, 0,198, 3, 7, 0,199, 3, 7, 0, 37, 0, 7, 0,200, 3, 7, 0,201, 3, 7, 0,202, 3, 7, 0,203, 3, 7, 0,204, 3, - 7, 0,205, 3, 7, 0,206, 3, 7, 0,207, 3, 7, 0,208, 3, 7, 0,209, 3, 52, 0,165, 0,167, 0,210, 3, 7, 0,211, 3, - 4, 0,191, 2,168, 0, 5, 0, 68, 0,240, 1, 7, 0,212, 3, 7, 0,213, 3, 2, 0, 19, 0, 2, 0,214, 3,169, 0, 9, 0, -169, 0, 0, 0,169, 0, 1, 0, 4, 0,215, 3, 4, 0,216, 3, 4, 0,217, 3, 4, 0, 19, 0, 4, 0,218, 3, 9, 0,219, 3, - 9, 0,220, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, 4, 0,221, 3, 4, 0,222, 3, 4, 0,223, 3, - 4, 0,224, 3, 4, 0,225, 3, 4, 0,226, 3, 4, 0,216, 3, 4, 0,154, 2, 4, 0, 57, 0, 0, 0,227, 3, 0, 0,228, 3, - 0, 0,229, 3, 0, 0,230, 3, 12, 0,231, 3,170, 0,232, 3, 9, 0,233, 3,171, 0, 1, 0, 7, 0, 42, 2,162, 0, 30, 0, - 4, 0, 19, 0, 7, 0,234, 3, 7, 0,235, 3, 7, 0,236, 3, 4, 0,237, 3, 4, 0,238, 3, 4, 0,239, 3, 4, 0,240, 3, - 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 7, 0,244, 3, 7, 0,245, 3, 7, 0,246, 3, 7, 0,247, 3, 7, 0,248, 3, - 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, 7, 0,253, 3, 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, - 7, 0, 1, 4, 7, 0, 2, 4, 4, 0, 3, 4, 4, 0, 4, 4, 7, 0, 5, 4, 7, 0,127, 3,164, 0, 50, 0, 4, 0,216, 3, - 4, 0, 6, 4,172, 0, 7, 4,173, 0, 8, 4, 0, 0, 37, 0, 0, 0, 9, 4, 2, 0, 10, 4, 7, 0, 11, 4, 0, 0, 12, 4, - 7, 0, 13, 4, 7, 0, 14, 4, 7, 0, 15, 4, 7, 0, 16, 4, 7, 0, 17, 4, 7, 0, 18, 4, 7, 0, 19, 4, 7, 0, 20, 4, - 7, 0, 21, 4, 2, 0, 22, 4, 0, 0, 23, 4, 2, 0, 24, 4, 7, 0, 25, 4, 7, 0, 26, 4, 0, 0, 27, 4, 4, 0,126, 0, - 4, 0, 28, 4, 4, 0, 29, 4, 2, 0, 30, 4, 2, 0, 31, 4,171, 0, 32, 4, 4, 0, 33, 4, 4, 0, 82, 0, 7, 0, 34, 4, - 7, 0, 35, 4, 7, 0, 36, 4, 7, 0, 37, 4, 2, 0, 38, 4, 2, 0, 39, 4, 2, 0, 40, 4, 2, 0, 41, 4, 2, 0, 42, 4, - 2, 0, 43, 4, 2, 0, 44, 4, 2, 0, 45, 4,174, 0, 46, 4, 7, 0, 47, 4, 7, 0, 48, 4,138, 0, 49, 4, 12, 0, 2, 3, -168, 0, 50, 4,153, 0, 49, 0,152, 0, 51, 4, 2, 0, 17, 0, 2, 0, 52, 4, 2, 0, 53, 4, 2, 0, 54, 4, 7, 0, 55, 4, - 2, 0, 56, 4, 2, 0, 57, 4, 7, 0, 58, 4, 2, 0, 59, 4, 2, 0, 60, 4, 7, 0, 61, 4, 7, 0, 62, 4, 7, 0, 63, 4, - 7, 0, 64, 4, 7, 0, 65, 4, 7, 0, 66, 4, 4, 0, 67, 4, 7, 0, 68, 4, 7, 0, 69, 4, 7, 0, 70, 4, 81, 0, 71, 4, - 81, 0, 72, 4, 81, 0, 73, 4, 0, 0, 74, 4, 7, 0, 75, 4, 7, 0, 76, 4, 36, 0, 80, 0, 2, 0, 77, 4, 0, 0, 78, 4, - 0, 0, 79, 4, 7, 0, 80, 4, 4, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, 4, 0, 84, 4, 4, 0, 19, 0, 7, 0, 85, 4, - 7, 0, 86, 4, 7, 0, 87, 4, 85, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, 7, 0, 91, 4, 7, 0, 92, 4, 7, 0, 93, 4, - 7, 0, 94, 4, 7, 0, 95, 4, 4, 0, 96, 4,175, 0, 73, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,175, 0, 2, 0, 71, 1, - 2, 0,103, 1, 2, 0, 97, 4, 7, 0, 98, 4, 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 7, 0,103, 4, - 7, 0,104, 4, 7, 0,105, 4, 7, 0,161, 1, 7, 0,163, 1, 7, 0,162, 1, 7, 0,106, 4, 4, 0,107, 4, 7, 0,108, 4, - 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,113, 4, 7, 0,114, 4, 2, 0,115, 4, 2, 0, 70, 1, - 2, 0,116, 4, 2, 0,117, 4, 2, 0,118, 4, 2, 0,119, 4, 2, 0,120, 4, 2, 0,121, 4, 7, 0,122, 4, 7, 0,123, 4, - 7, 0,124, 4, 7, 0,125, 4, 7, 0,126, 4, 7, 0,127, 4, 7, 0,128, 4, 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, - 7, 0,132, 4, 7, 0,133, 4, 2, 0,134, 4, 2, 0,135, 4, 2, 0,136, 4, 2, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, - 7, 0,140, 4, 7, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, 2, 0,144, 4, 2, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, - 7, 0,148, 4, 7, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, 2, 0,152, 4, 2, 0, 19, 0, 7, 0,153, 4, 7, 0,154, 4, - 36, 0, 80, 0, 51, 0,133, 1, 2, 0,134, 1, 2, 0,135, 1, 30, 0,150, 0,176, 0, 8, 0,176, 0, 0, 0,176, 0, 1, 0, - 4, 0,105, 3, 4, 0,155, 4, 4, 0, 19, 0, 2, 0,156, 4, 2, 0,157, 4, 32, 0,164, 0,177, 0, 13, 0, 9, 0,158, 4, - 9, 0,159, 4, 4, 0,160, 4, 4, 0,161, 4, 4, 0,162, 4, 4, 0,163, 4, 4, 0,164, 4, 4, 0,165, 4, 4, 0,166, 4, - 4, 0,167, 4, 4, 0,168, 4, 4, 0, 37, 0, 0, 0,169, 4,178, 0, 5, 0, 9, 0,170, 4, 9, 0,171, 4, 4, 0,172, 4, - 4, 0, 70, 0, 0, 0,173, 4,179, 0, 15, 0, 4, 0, 17, 0, 4, 0,174, 4, 4, 0,175, 4, 4, 0,176, 4, 4, 0,177, 4, - 4, 0,178, 4, 7, 0,179, 4, 4, 0,180, 4, 4, 0, 90, 0, 4, 0,181, 4, 4, 0,182, 4, 4, 0,183, 4, 4, 0,184, 4, - 4, 0,185, 4, 26, 0, 30, 0,180, 0, 7, 0, 4, 0,186, 4, 7, 0,187, 4, 7, 0,188, 4, 7, 0,189, 4, 4, 0,190, 4, - 2, 0, 19, 0, 2, 0, 37, 0,181, 0, 11, 0,181, 0, 0, 0,181, 0, 1, 0, 0, 0, 20, 0, 67, 0,191, 4, 68, 0,192, 4, - 4, 0,105, 3, 4, 0,193, 4, 4, 0,194, 4, 4, 0, 37, 0, 4, 0,195, 4, 4, 0,196, 4,182, 0,131, 0,177, 0,197, 4, -178, 0,198, 4,179, 0,199, 4, 4, 0, 15, 3, 4, 0,126, 0, 4, 0, 28, 4, 4, 0,200, 4, 4, 0,201, 4, 4, 0,202, 4, - 4, 0,203, 4, 2, 0, 19, 0, 2, 0,204, 4, 7, 0,100, 2, 7, 0,205, 4, 7, 0,206, 4, 7, 0,207, 4, 7, 0,208, 4, - 7, 0,209, 4, 2, 0,210, 4, 2, 0,211, 4, 2, 0,212, 4, 2, 0,213, 4, 2, 0,246, 0, 2, 0,214, 4, 2, 0,215, 4, - 2, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0, 90, 1, 2, 0,106, 0, 2, 0,219, 4, 2, 0,220, 4, 2, 0,221, 4, - 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0,226, 4, 2, 0,227, 4, 2, 0, 91, 1, 2, 0,228, 4, - 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 4, 0,232, 4, 4, 0, 70, 1, 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, - 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 24, 0,239, 4, 24, 0,240, 4, 23, 0,241, 4, 12, 0,242, 4, 2, 0,243, 4, - 2, 0, 37, 0, 7, 0,244, 4, 7, 0,245, 4, 7, 0,246, 4, 7, 0,247, 4, 4, 0,248, 4, 7, 0,249, 4, 7, 0,250, 4, - 7, 0,251, 4, 7, 0,252, 4, 2, 0,253, 4, 2, 0,254, 4, 2, 0,255, 4, 2, 0, 0, 5, 2, 0, 1, 5, 2, 0, 2, 5, - 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, 2, 0, 6, 5, 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, - 2, 0, 11, 5, 2, 0, 12, 5, 2, 0, 13, 5, 2, 0, 14, 5, 2, 0, 15, 5, 4, 0, 16, 5, 4, 0, 17, 5, 4, 0, 18, 5, - 4, 0, 19, 5, 4, 0, 20, 5, 7, 0, 21, 5, 4, 0, 22, 5, 4, 0, 23, 5, 4, 0, 24, 5, 4, 0, 25, 5, 7, 0, 26, 5, - 7, 0, 27, 5, 7, 0, 28, 5, 7, 0, 29, 5, 7, 0, 30, 5, 7, 0, 31, 5, 7, 0, 32, 5, 7, 0, 33, 5, 7, 0, 34, 5, - 0, 0, 35, 5, 0, 0, 36, 5, 4, 0, 37, 5, 2, 0, 38, 5, 2, 0,237, 1, 0, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, - 4, 0, 42, 5, 4, 0, 43, 5, 7, 0, 44, 5, 7, 0, 45, 5, 2, 0, 46, 5, 2, 0, 47, 5, 7, 0, 48, 5, 2, 0, 49, 5, - 2, 0, 50, 5, 4, 0, 51, 5, 2, 0, 52, 5, 2, 0, 53, 5, 2, 0, 54, 5, 2, 0, 55, 5, 7, 0, 56, 5, 7, 0, 70, 0, - 42, 0, 57, 5, 0, 0, 58, 5,183, 0, 9, 0,183, 0, 0, 0,183, 0, 1, 0, 0, 0, 20, 0, 2, 0, 59, 5, 2, 0, 60, 5, - 2, 0, 61, 5, 2, 0, 43, 0, 7, 0, 62, 5, 7, 0, 70, 0,184, 0, 7, 0, 2, 0,208, 2, 2, 0, 70, 1, 2, 0,109, 0, - 2, 0, 63, 5, 7, 0, 64, 5, 7, 0, 70, 0, 42, 0, 65, 5,185, 0, 5, 0, 7, 0, 66, 5, 0, 0, 17, 0, 0, 0, 43, 0, - 0, 0, 70, 0, 0, 0,237, 1,186, 0, 26, 0, 7, 0,113, 4, 7, 0,114, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 67, 5, - 2, 0,135, 1, 2, 0,116, 4, 2, 0,117, 4, 2, 0,118, 4, 2, 0,119, 4, 2, 0,120, 4, 2, 0,121, 4,185, 0, 68, 5, - 2, 0,210, 4, 2, 0,211, 4, 2, 0,212, 4, 2, 0,213, 4, 2, 0,246, 0, 2, 0,214, 4, 2, 0,215, 4, 2, 0,216, 4, -184, 0, 69, 5, 2, 0, 70, 5, 2, 0,217, 4, 2, 0,220, 4, 2, 0,221, 4,187, 0, 5, 0,187, 0, 0, 0,187, 0, 1, 0, - 4, 0,215, 3, 0, 0,227, 3, 4, 0, 19, 0,188, 0, 6, 0,189, 0, 71, 5, 4, 0, 72, 5, 4, 0, 73, 5, 9, 0, 74, 5, - 0, 0, 75, 5, 4, 0, 37, 0,190, 0, 6, 0,188, 0, 76, 5, 2, 0, 19, 0, 2, 0, 77, 5, 2, 0, 78, 5, 2, 0, 79, 5, - 9, 0, 80, 5,191, 0, 4, 0, 2, 0,106, 0, 2, 0,219, 2, 2, 0,221, 3, 2, 0, 81, 5,192, 0, 14, 0, 2, 0, 19, 0, - 2, 0, 82, 5, 2, 0, 83, 5, 2, 0, 84, 5,191, 0, 85, 5, 9, 0, 80, 5, 7, 0, 86, 5, 7, 0, 57, 0, 4, 0, 87, 5, - 4, 0, 88, 5, 4, 0, 89, 5, 4, 0, 90, 5, 46, 0,134, 0, 32, 0,164, 0,193, 0, 4, 0,193, 0, 0, 0,193, 0, 1, 0, - 0, 0, 91, 5, 7, 0, 92, 5,194, 0, 6, 0,188, 0, 76, 5, 7, 0, 93, 5, 4, 0, 90, 0, 0, 0, 94, 5, 0, 0, 95, 5, - 0, 0,188, 2,195, 0, 9, 0,188, 0, 76, 5, 7, 0, 96, 5, 7, 0, 97, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, - 4, 0, 98, 5, 87, 0, 99, 5, 9, 0, 80, 5,196, 0, 72, 0,195, 0,100, 5,195, 0,101, 5,194, 0, 78, 3, 7, 0,102, 5, - 2, 0,103, 5, 2, 0,104, 5, 7, 0,105, 5, 7, 0,106, 5, 2, 0,221, 3, 2, 0,107, 5, 7, 0,108, 5, 7, 0,109, 5, - 7, 0,110, 5, 2, 0,111, 5, 2, 0, 87, 5, 2, 0,112, 5, 2, 0,113, 5, 2, 0,114, 5, 2, 0,115, 5, 7, 0,116, 5, - 7, 0,117, 5, 7, 0,118, 5, 2, 0,119, 5, 2, 0,120, 5, 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, - 2, 0,125, 5,190, 0,126, 5,192, 0,127, 5, 7, 0,128, 5, 7, 0,129, 5, 7, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, - 0, 0,133, 5, 0, 0,134, 5, 0, 0,135, 5, 0, 0,136, 5, 0, 0,137, 5, 0, 0,138, 5, 2, 0,139, 5, 7, 0,140, 5, - 7, 0,141, 5, 7, 0,142, 5, 7, 0,143, 5, 7, 0,144, 5, 7, 0,145, 5, 7, 0,146, 5, 7, 0,147, 5, 7, 0,148, 5, - 7, 0,149, 5, 2, 0,150, 5, 0, 0,151, 5, 0, 0,152, 5, 0, 0,153, 5, 0, 0,154, 5, 32, 0,155, 5, 0, 0,156, 5, - 0, 0,157, 5, 0, 0,158, 5, 0, 0,159, 5, 0, 0,160, 5, 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 2, 0,164, 5, - 2, 0,165, 5, 2, 0,166, 5, 2, 0,167, 5, 2, 0,168, 5,197, 0, 8, 0, 4, 0,169, 5, 4, 0,170, 5, 4, 0,171, 5, - 4, 0,172, 5, 4, 0,173, 5, 4, 0,174, 5, 4, 0, 54, 0, 4, 0,124, 2,198, 0, 3, 0, 7, 0,175, 5, 2, 0,176, 5, - 2, 0, 19, 0,199, 0, 2, 0, 7, 0,177, 5, 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,178, 5, -175, 0,179, 5, 46, 0,180, 5, 47, 0,238, 0, 12, 0,181, 5,176, 0,182, 5, 32, 0,183, 5, 7, 0,184, 5, 7, 0,185, 5, - 7, 0,186, 5, 7, 0,187, 5, 4, 0,105, 3, 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,200, 0,188, 5,196, 0,189, 5, -201, 0,190, 5,182, 0,182, 0,180, 0,191, 5, 12, 0,100, 0, 12, 0,192, 5, 12, 0,193, 5,202, 0,194, 5, 2, 0,195, 5, - 2, 0,196, 5, 2, 0,247, 0, 2, 0,197, 5, 4, 0,198, 5, 4, 0,199, 5, 12, 0,200, 5,185, 0, 68, 5,186, 0,201, 5, -198, 0,202, 5,161, 0, 91, 3,199, 0,203, 5,203, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 88, 2, 7, 0, 89, 2, - 7, 0,106, 0, 7, 0,204, 5,204, 0, 35, 0, 7, 0,205, 5, 7, 0,206, 5, 7, 0,207, 5, 7, 0,208, 5, 7, 0,209, 5, - 7, 0,210, 5, 7, 0,211, 5, 7, 0,212, 5, 7, 0,213, 5, 7, 0, 77, 1, 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, - 7, 0,217, 5, 7, 0,171, 0, 2, 0,218, 5, 2, 0,219, 5, 2, 0, 69, 2, 2, 0,220, 5, 2, 0,221, 5, 2, 0,222, 5, - 2, 0,223, 5, 7, 0,224, 5, 72, 0,225, 5,161, 0, 91, 3,204, 0,226, 5,205, 0,227, 5,206, 0,228, 5,207, 0,229, 5, -208, 0,230, 5,209, 0,231, 5, 7, 0,232, 5, 2, 0,233, 5, 2, 0,234, 5, 4, 0,237, 1,210, 0, 54, 0,211, 0, 0, 0, -211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5, 7, 0,213, 5, 7, 0, 77, 1, 7, 0, 43, 0, - 4, 0,239, 5, 2, 0,222, 5, 2, 0,223, 5, 32, 0,178, 5, 32, 0,240, 5,203, 0,241, 5,210, 0,226, 5, 0, 0,242, 5, - 4, 0,105, 3, 4, 0,243, 5, 2, 0,244, 5, 2, 0, 70, 0, 2, 0,245, 5, 2, 0,246, 5, 2, 0,237, 1, 2, 0, 19, 0, - 2, 0, 27, 2, 2, 0,247, 5, 7, 0,112, 0, 7, 0,248, 5, 7, 0,249, 5, 7, 0,250, 5, 7, 0,251, 5, 7, 0,252, 5, - 7, 0,171, 0, 7, 0,184, 5, 2, 0,253, 5, 2, 0,120, 1, 2, 0,254, 5, 2, 0,255, 5, 2, 0, 0, 6, 2, 0, 1, 6, - 2, 0, 2, 6, 2, 0, 3, 6, 2, 0, 4, 6, 2, 0, 5, 6, 4, 0, 6, 6, 12, 0, 7, 6, 2, 0, 8, 6, 2, 0,137, 2, - 2, 0, 9, 6, 0, 0, 10, 6, 0, 0, 11, 6, 9, 0, 12, 6,161, 0, 91, 3,212, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, - 23, 0, 13, 6, 23, 0, 14, 6, 23, 0, 15, 6, 7, 0, 16, 6, 7, 0, 17, 6, 7, 0, 18, 6, 7, 0, 19, 6, 2, 0, 20, 6, - 2, 0, 21, 6, 2, 0, 22, 6, 2, 0, 23, 6, 2, 0, 24, 6, 2, 0, 19, 0, 2, 0, 25, 6, 2, 0, 26, 6, 2, 0, 27, 6, - 2, 0, 28, 6, 2, 0, 29, 6, 2, 0,246, 5, 7, 0, 30, 6, 7, 0, 31, 6, 4, 0, 32, 6, 4, 0, 33, 6,211, 0, 6, 0, -211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,213, 0, 8, 0,211, 0, 0, 0, -211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,214, 0, 34, 6, 46, 0,134, 0,215, 0, 14, 0, -211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6,216, 0, 36, 6, - 12, 0, 37, 6, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 38, 6, 0, 0, 39, 6, 0, 0, 40, 6,217, 0, 20, 0,211, 0, 0, 0, -211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,205, 0,227, 5,212, 0, 35, 6, 2, 0, 41, 6, - 2, 0, 42, 6, 2, 0, 43, 6, 2, 0, 44, 6, 2, 0, 25, 6, 2, 0, 45, 6, 0, 0, 19, 0, 0, 0,135, 1, 9, 0, 64, 2, - 4, 0, 46, 6, 4, 0, 47, 6, 27, 0, 48, 6,218, 0, 16, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, - 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6, 7, 0, 88, 2, 7, 0, 89, 2, 2, 0, 41, 6, 2, 0, 49, 6, 2, 0, 50, 6, - 2, 0, 51, 6, 4, 0, 19, 0, 7, 0, 52, 6,161, 0, 91, 3,219, 0, 16, 0, 0, 0, 53, 6, 0, 0, 54, 6, 0, 0, 55, 6, - 0, 0, 56, 6, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0,180, 1, 2, 0, 59, 6, 4, 0, 60, 6, - 4, 0, 61, 6, 2, 0, 62, 6, 2, 0, 63, 6, 0, 0, 64, 6, 0, 0, 65, 6,220, 0, 16, 0,211, 0, 0, 0,211, 0, 1, 0, - 12, 0,235, 5, 4, 0,236, 5, 4, 0, 37, 0,219, 0, 66, 6,221, 0, 67, 6, 12, 0, 68, 6, 12, 0, 69, 6,222, 0, 70, 6, -209, 0, 71, 6,223, 0, 72, 6, 2, 0, 73, 6, 2, 0, 74, 6, 2, 0, 75, 6, 2, 0, 70, 0,224, 0, 17, 0,211, 0, 0, 0, -211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6, 12, 0, 76, 6,225, 0, 77, 6, - 0, 0, 78, 6,226, 0, 79, 6, 4, 0, 80, 6, 4, 0, 81, 6, 2, 0, 19, 0, 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 37, 0, -227, 0, 29, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5, 47, 0,227, 2, - 45, 0, 58, 1, 64, 0, 84, 6, 2, 0,133, 0, 2, 0, 85, 6, 2, 0, 70, 0, 2, 0, 86, 6, 4, 0, 19, 0, 2, 0, 87, 6, - 2, 0, 40, 6, 2, 0, 39, 6, 2, 0,237, 1, 0, 0, 88, 6, 0, 0, 89, 6, 0, 0, 90, 6, 0, 0,246, 5, 7, 0, 88, 2, - 7, 0, 89, 2, 7, 0, 52, 6, 7, 0,120, 1, 7, 0, 91, 6, 7, 0, 92, 6,161, 0, 91, 3,228, 0, 11, 0,211, 0, 0, 0, -211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5, 2, 0, 38, 6, 2, 0, 19, 0, 4, 0, 37, 0, -216, 0, 36, 6,212, 0, 35, 6,229, 0, 27, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, - 2, 0,238, 5, 42, 0, 93, 6, 4, 0, 94, 6, 4, 0, 95, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0, 96, 6, 0, 0, 97, 6, - 0, 0, 98, 6, 4, 0, 99, 6, 4, 0,100, 6, 4, 0,101, 6, 4, 0,102, 6, 2, 0,103, 6, 2, 0,104, 6, 7, 0,105, 6, - 23, 0,106, 6, 23, 0,107, 6, 4, 0,108, 6, 4, 0,109, 6, 0, 0,110, 6, 0, 0,111, 6,230, 0, 10, 0, 27, 0, 31, 0, - 9, 0,112, 6, 9, 0,113, 6, 9, 0,114, 6, 9, 0,115, 6, 9, 0,116, 6, 4, 0, 90, 0, 4, 0,117, 6, 0, 0,118, 6, - 0, 0,119, 6,231, 0, 10, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5,230, 0,120, 6, - 2, 0, 90, 0, 2, 0,133, 0, 4, 0, 43, 0, 9, 0,121, 6,232, 0, 8, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, - 4, 0,236, 5, 7, 0,237, 5,212, 0, 35, 6, 4, 0, 19, 0, 4, 0,122, 6,233, 0, 23, 0,211, 0, 0, 0,211, 0, 1, 0, - 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6, 27, 0,123, 6, 27, 0, 81, 0, 2, 0, 19, 0, - 2, 0,133, 0, 7, 0,124, 6, 9, 0,125, 6, 7, 0, 88, 2, 7, 0, 89, 2, 7, 0,126, 6, 7, 0,127, 6, 61, 0, 59, 1, - 61, 0,128, 6, 4, 0,129, 6, 2, 0,130, 6, 2, 0, 37, 0,161, 0, 91, 3,234, 0, 10, 0,211, 0, 0, 0,211, 0, 1, 0, - 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5, 2, 0, 19, 0, 2, 0,114, 3, 4, 0, 37, 0,161, 0, 91, 3, -235, 0, 42, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6, -221, 0, 67, 6, 0, 0, 53, 6, 0, 0, 54, 6, 0, 0, 55, 6, 2, 0, 17, 0, 2, 0, 63, 6, 2, 0, 19, 0, 2, 0, 57, 6, - 9, 0,125, 6, 4, 0, 60, 6, 4, 0,131, 6, 4, 0,132, 6, 4, 0, 61, 6, 23, 0,133, 6, 23, 0,134, 6, 7, 0,135, 6, - 7, 0,136, 6, 7, 0,137, 6, 7, 0,124, 6, 2, 0,138, 6, 2, 0,237, 0, 2, 0,180, 1, 2, 0, 59, 6, 2, 0, 37, 0, - 2, 0, 43, 0, 2, 0,139, 6, 2, 0,140, 6, 9, 0,141, 6, 9, 0,142, 6, 9, 0,143, 6, 9, 0,144, 6, 9, 0,145, 6, - 2, 0,146, 6, 0, 0, 65, 6, 57, 0,147, 6,236, 0, 7, 0,236, 0, 0, 0,236, 0, 1, 0, 4, 0,148, 6, 4, 0, 23, 0, - 0, 0, 84, 0, 4, 0,149, 6, 4, 0, 17, 0,237, 0, 13, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, - 7, 0,237, 5, 2, 0,238, 5, 4, 0, 17, 0, 4, 0,150, 6, 4, 0, 19, 0, 4, 0, 96, 6, 12, 0,151, 6, 12, 0,152, 6, - 0, 0,153, 6,238, 0, 5, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 4, 0, 37, 0,239, 0, 7, 0, -239, 0, 0, 0,239, 0, 1, 0, 0, 0,154, 6, 2, 0,155, 6, 2, 0,156, 6, 2, 0,157, 6, 2, 0, 37, 0,240, 0, 12, 0, - 2, 0,156, 6, 2, 0,158, 6, 2, 0,159, 6, 0, 0,188, 2, 2, 0,160, 6, 2, 0,161, 6, 2, 0,162, 6, 2, 0,163, 6, - 2, 0,164, 6, 2, 0, 25, 6, 7, 0,165, 6, 7, 0,166, 6,241, 0, 18, 0,241, 0, 0, 0,241, 0, 1, 0, 0, 0,227, 3, -240, 0,167, 6,240, 0,168, 6,240, 0,169, 6,240, 0,170, 6, 7, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, - 2, 0,175, 6, 2, 0,176, 6, 2, 0,177, 6, 2, 0,178, 6, 2, 0,179, 6, 2, 0,180, 6, 2, 0,181, 6,242, 0, 10, 0, - 0, 0,182, 6, 0, 0,183, 6, 0, 0,184, 6, 0, 0,185, 6, 0, 0,186, 6, 0, 0,187, 6, 2, 0,188, 6, 2, 0,189, 6, - 2, 0,190, 6, 2, 0, 37, 0,243, 0, 8, 0, 0, 0,191, 6, 0, 0,192, 6, 0, 0,193, 6, 0, 0,194, 6, 0, 0,195, 6, - 0, 0,196, 6, 7, 0,204, 5, 7, 0, 37, 0,244, 0, 17, 0,242, 0,197, 6,242, 0,198, 6,242, 0,199, 6,242, 0,200, 6, -242, 0,201, 6,242, 0,202, 6,242, 0,203, 6,242, 0,204, 6,242, 0,205, 6,242, 0,206, 6,242, 0,207, 6,242, 0,208, 6, -242, 0,209, 6,242, 0,210, 6,242, 0,211, 6,243, 0,212, 6, 0, 0,213, 6,245, 0, 71, 0, 0, 0,214, 6, 0, 0,215, 6, - 0, 0,186, 6, 0, 0,216, 6, 0, 0,217, 6, 0, 0,218, 6, 0, 0,219, 6, 0, 0,220, 6, 0, 0,221, 6, 0, 0,222, 6, - 0, 0,223, 6, 0, 0,224, 6, 0, 0,225, 6, 0, 0,226, 6, 0, 0,227, 6, 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, - 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, 0, 0,235, 6, 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, - 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, 0, 0,243, 6, 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, - 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, 0, 0,251, 6, 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, - 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, 0, 0, 3, 7, 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, - 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, 0, 0, 11, 7, 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, - 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, 0, 0, 19, 7, 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, - 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, 0, 0, 92, 0,246, 0, 5, 0, 0, 0, 27, 7, 0, 0,238, 6, - 0, 0,240, 6, 2, 0, 19, 0, 2, 0, 37, 0,247, 0, 22, 0,247, 0, 0, 0,247, 0, 1, 0, 0, 0, 20, 0,244, 0, 28, 7, -245, 0, 29, 7,245, 0, 30, 7,245, 0, 31, 7,245, 0, 32, 7,245, 0, 33, 7,245, 0, 34, 7,245, 0, 35, 7,245, 0, 36, 7, -245, 0, 37, 7,245, 0, 38, 7,245, 0, 39, 7,245, 0, 40, 7,245, 0, 41, 7,245, 0, 42, 7,245, 0, 43, 7,245, 0, 44, 7, -245, 0, 45, 7,246, 0, 46, 7,248, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,136, 2, 7, 0, 47, 7, 7, 0, 42, 2, -249, 0, 71, 0, 4, 0, 19, 0, 4, 0, 48, 7, 4, 0, 49, 7, 0, 0, 50, 7, 0, 0, 51, 7, 0, 0, 52, 7, 0, 0, 53, 7, - 0, 0, 54, 7, 0, 0, 55, 7, 0, 0, 56, 7, 0, 0, 57, 7, 0, 0, 58, 7, 2, 0, 59, 7, 2, 0, 37, 0, 4, 0, 60, 7, - 4, 0, 61, 7, 4, 0, 62, 7, 4, 0, 63, 7, 2, 0, 64, 7, 2, 0, 65, 7, 4, 0, 66, 7, 4, 0, 67, 7, 4, 0, 68, 7, - 4, 0, 69, 7, 4, 0, 70, 7, 4, 0,151, 6, 4, 0, 71, 7, 2, 0, 72, 7, 2, 0, 73, 7, 2, 0, 74, 7, 2, 0, 75, 7, - 12, 0, 76, 7, 12, 0, 77, 7, 12, 0, 78, 7, 2, 0, 79, 7, 2, 0, 80, 7, 2, 0, 81, 7, 2, 0, 82, 7, 2, 0, 83, 7, - 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7,248, 0, 87, 7, 2, 0, 88, 7, 2, 0, 89, 7, 2, 0, 90, 7, 2, 0, 91, 7, - 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, 4, 0, 96, 7, 4, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7, - 2, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, 2, 0,103, 7, 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, - 2, 0,108, 7, 2, 0,109, 7, 0, 0,110, 7, 0, 0,111, 7, 7, 0,112, 7, 2, 0,131, 5, 2, 0,132, 5, 55, 0,113, 7, -214, 0, 21, 0, 27, 0, 31, 0, 12, 0,114, 7, 12, 0,115, 7, 12, 0,116, 7, 12, 0,235, 5, 46, 0,134, 0, 46, 0,117, 7, - 2, 0,118, 7, 2, 0,119, 7, 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 2, 0,123, 7, 2, 0,124, 7, 2, 0, 37, 0, - 2, 0,125, 7, 2, 0,126, 7, 4, 0, 70, 0,209, 0,127, 7, 9, 0,128, 7, 2, 0,129, 7,250, 0, 5, 0,250, 0, 0, 0, -250, 0, 1, 0,250, 0,130, 7, 13, 0,131, 7, 4, 0, 19, 0,251, 0, 7, 0,251, 0, 0, 0,251, 0, 1, 0,250, 0,132, 7, -250, 0,133, 7, 2, 0,240, 4, 2, 0, 19, 0, 4, 0, 37, 0,252, 0, 23, 0,252, 0, 0, 0,252, 0, 1, 0,253, 0,134, 7, -254, 0, 72, 6, 0, 0,135, 7, 0, 0,136, 7, 0, 0,137, 7, 2, 0,138, 7, 2, 0,139, 7, 2, 0,140, 7, 2, 0,141, 7, - 2, 0,142, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,143, 7, 2, 0,144, 7, 2, 0,145, 7, 4, 0,146, 7,252, 0,147, 7, - 9, 0,148, 7, 4, 0,149, 7, 4, 0,150, 7, 0, 0,151, 7,255, 0, 22, 0,255, 0, 0, 0,255, 0, 1, 0,250, 0,132, 7, -250, 0,133, 7,250, 0,152, 7,250, 0,153, 7,214, 0,154, 7, 23, 0, 52, 0, 0, 0,236, 5, 0, 0,155, 7, 2, 0, 26, 6, - 2, 0, 27, 6, 2, 0,156, 7, 2, 0, 37, 0, 2, 0,121, 7, 2, 0,149, 6, 2, 0, 19, 0, 0, 1,134, 7, 12, 0,157, 7, - 12, 0,235, 5, 12, 0,158, 7, 12, 0,159, 7, 1, 1, 21, 0, 1, 1, 0, 0, 1, 1, 1, 0,212, 0, 35, 6, 23, 0,160, 7, - 23, 0,161, 7, 2, 0, 26, 6, 2, 0, 27, 6, 2, 0,162, 7, 2, 0,163, 7, 2, 0,164, 7, 2, 0, 19, 0, 7, 0, 84, 2, - 2, 0,120, 7, 2, 0,124, 7, 4, 0, 43, 0, 2, 1,134, 7, 12, 0,165, 7, 12, 0,166, 7, 12, 0,158, 7, 0, 0,167, 7, - 9, 0,168, 7, 3, 1, 11, 0, 0, 0,169, 7, 2, 0,170, 7, 2, 0,171, 7, 2, 0,172, 7, 2, 0,173, 7, 2, 0,229, 4, - 2, 0,224, 4,214, 0,174, 7, 46, 0,175, 7, 4, 0,176, 7, 4, 0,177, 7, 4, 1, 1, 0, 0, 0,178, 7, 5, 1, 8, 0, - 57, 0,179, 7, 57, 0,180, 7, 5, 1,181, 7, 5, 1,182, 7, 5, 1,183, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,184, 7, - 6, 1, 4, 0, 4, 0, 94, 6, 4, 0,185, 7, 4, 0, 99, 6, 4, 0,186, 7, 7, 1, 2, 0, 4, 0,187, 7, 4, 0,188, 7, - 8, 1, 7, 0, 7, 0,189, 7, 7, 0,190, 7, 7, 0,191, 7, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,108, 4, 7, 0,192, 7, - 9, 1, 6, 0, 0, 0,193, 7, 0, 0, 55, 6, 49, 0,137, 0, 2, 0,106, 0, 2, 0,228, 4, 4, 0, 37, 0, 10, 1, 21, 0, - 10, 1, 0, 0, 10, 1, 1, 0, 4, 0, 57, 0, 4, 0, 23, 0, 4, 0, 28, 0, 4, 0,194, 7, 4, 0,195, 7, 4, 0,196, 7, - 4, 1,197, 7, 0, 0,193, 7, 4, 0,198, 7, 4, 0,199, 7, 9, 1, 85, 3, 6, 1,200, 7, 7, 1,201, 7, 8, 1,202, 7, - 5, 1,203, 7, 5, 1,204, 7, 5, 1,205, 7, 57, 0,206, 7, 57, 0,207, 7, 11, 1, 12, 0, 0, 0, 4, 2, 9, 0,223, 0, - 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, 9, 0,228, 0, 7, 0,230, 0, 7, 0,231, 0, 9, 0,208, 7, 9, 0,209, 7, - 9, 0,232, 0, 9, 0,234, 0, 12, 1, 43, 0, 12, 1, 0, 0, 12, 1, 1, 0, 9, 0,210, 7, 9, 0, 26, 0, 0, 0, 27, 0, - 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, 4, 0, 88, 0, 4, 0,211, 7, 4, 0,212, 7, 4, 0,195, 7, 4, 0,196, 7, - 4, 0,213, 7, 4, 0,246, 0, 4, 0,214, 7, 4, 0,215, 7, 7, 0, 97, 5, 7, 0,216, 7, 4, 0,126, 0, 4, 0,217, 7, - 10, 1,218, 7, 36, 0, 80, 0, 46, 0,134, 0, 49, 0,137, 0, 7, 0,219, 7, 7, 0,220, 7, 11, 1, 60, 1, 12, 1,221, 7, - 12, 1,222, 7, 12, 1,223, 7, 12, 0,224, 7, 13, 1,225, 7, 14, 1,226, 7, 7, 0,227, 7, 7, 0,228, 7, 4, 0,229, 7, - 7, 0,230, 7, 9, 0,231, 7, 4, 0,232, 7, 4, 0,233, 7, 4, 0,234, 7, 7, 0,235, 7, 15, 1, 4, 0, 15, 1, 0, 0, - 15, 1, 1, 0, 12, 0,236, 7, 12, 1,237, 7,200, 0, 6, 0, 12, 0,238, 7, 12, 0,224, 7, 12, 0,239, 7, 12, 1,240, 7, - 0, 0,241, 7, 0, 0,242, 7, 16, 1, 4, 0, 7, 0,243, 7, 7, 0,109, 0, 2, 0,244, 7, 2, 0,245, 7, 17, 1, 6, 0, - 7, 0,246, 7, 7, 0,247, 7, 7, 0,248, 7, 7, 0,249, 7, 4, 0,250, 7, 4, 0,251, 7, 18, 1, 12, 0, 7, 0,252, 7, - 7, 0,253, 7, 7, 0,254, 7, 7, 0,255, 7, 7, 0, 0, 8, 7, 0, 1, 8, 7, 0, 2, 8, 7, 0, 3, 8, 7, 0, 4, 8, - 7, 0, 5, 8, 4, 0,231, 2, 4, 0, 6, 8, 19, 1, 2, 0, 7, 0, 66, 5, 7, 0, 37, 0, 20, 1, 5, 0, 7, 0, 7, 8, - 7, 0, 8, 8, 4, 0, 90, 0, 4, 0,189, 2, 4, 0, 9, 8, 21, 1, 6, 0, 21, 1, 0, 0, 21, 1, 1, 0, 2, 0, 17, 0, - 2, 0, 19, 0, 2, 0, 10, 8, 2, 0, 57, 0, 22, 1, 8, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 10, 8, 2, 0, 57, 0, 7, 0, 23, 0, 7, 0,126, 0, 23, 1, 45, 0, 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, - 2, 0, 19, 0, 2, 0, 10, 8, 2, 0,242, 0, 2, 0, 22, 4, 2, 0, 11, 8, 7, 0, 12, 8, 7, 0, 89, 0, 7, 0,244, 2, - 4, 0, 13, 8, 4, 0, 82, 0, 4, 0,191, 2, 7, 0, 14, 8, 7, 0, 15, 8, 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, - 7, 0, 19, 8, 7, 0,241, 2, 7, 0, 57, 1, 7, 0, 20, 8, 7, 0, 21, 8, 7, 0, 37, 0, 7, 0, 22, 8, 7, 0, 23, 8, - 7, 0, 24, 8, 2, 0, 25, 8, 2, 0, 26, 8, 2, 0, 27, 8, 2, 0, 28, 8, 2, 0, 29, 8, 2, 0, 30, 8, 2, 0, 31, 8, - 2, 0, 32, 8, 2, 0, 27, 2, 2, 0, 33, 8, 2, 0, 24, 2, 2, 0, 34, 8, 0, 0, 35, 8, 0, 0, 36, 8, 7, 0,240, 0, - 24, 1, 37, 8, 68, 0,240, 1, 25, 1, 16, 0, 25, 1, 0, 0, 25, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 10, 8, - 2, 0,242, 0, 7, 0,236, 2, 7, 0,237, 2, 7, 0,238, 2, 7, 0, 73, 2, 7, 0,239, 2, 7, 0,240, 2, 7, 0, 38, 8, - 7, 0,241, 2, 7, 0,243, 2, 7, 0,244, 2,226, 0, 5, 0, 2, 0, 17, 0, 2, 0,184, 7, 2, 0, 19, 0, 2, 0, 39, 8, - 27, 0,123, 6,225, 0, 3, 0, 4, 0, 69, 0, 4, 0, 40, 8,226, 0, 2, 0, 26, 1, 7, 0, 26, 1, 0, 0, 26, 1, 1, 0, - 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 22, 0, 9, 0, 41, 8, 27, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, - 7, 0, 42, 8, 4, 0, 43, 8, 4, 0, 37, 0, 28, 1, 4, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, - 29, 1, 4, 0, 0, 0, 20, 0, 67, 0, 44, 8, 7, 0, 77, 1, 7, 0, 37, 0, 30, 1, 6, 0, 2, 0, 45, 8, 2, 0, 46, 8, - 2, 0, 17, 0, 2, 0, 47, 8, 0, 0, 48, 8, 0, 0, 49, 8, 31, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, - 0, 0, 50, 8, 0, 0, 51, 8, 32, 1, 3, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 33, 1, 4, 0, 2, 0, 52, 8, - 2, 0, 53, 8, 2, 0, 19, 0, 2, 0, 37, 0, 34, 1, 6, 0, 0, 0, 20, 0, 0, 0, 54, 8, 2, 0, 55, 8, 2, 0,241, 2, - 2, 0, 70, 1, 2, 0, 70, 0, 35, 1, 5, 0, 0, 0, 20, 0, 7, 0,109, 0, 7, 0,110, 4, 2, 0, 19, 0, 2, 0,203, 2, - 36, 1, 3, 0, 0, 0, 20, 0, 4, 0,191, 2, 4, 0, 52, 8, 37, 1, 7, 0, 0, 0, 20, 0, 7, 0,110, 4, 0, 0, 56, 8, - 0, 0, 57, 8, 2, 0, 70, 1, 2, 0, 43, 0, 4, 0, 58, 8, 38, 1, 4, 0, 0, 0, 59, 8, 0, 0, 60, 8, 4, 0, 17, 0, - 7, 0,207, 2, 39, 1, 3, 0, 32, 0, 61, 8, 0, 0, 62, 8, 0, 0, 63, 8, 40, 1, 18, 0, 40, 1, 0, 0, 40, 1, 1, 0, - 2, 0, 17, 0, 2, 0, 64, 8, 2, 0, 19, 0, 2, 0, 65, 8, 2, 0, 66, 8, 2, 0, 67, 8, 2, 0, 43, 0, 2, 0, 70, 0, - 0, 0, 20, 0, 9, 0, 2, 0, 41, 1, 68, 8, 32, 0, 45, 0, 2, 0, 81, 5, 2, 0,227, 7, 2, 0, 69, 8, 2, 0, 37, 0, - 42, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 0, 70, 8, 2, 0, 19, 0, 2, 0,203, 2, 2, 0, 71, 8, 4, 0, 72, 8, - 4, 0, 73, 8, 4, 0, 74, 8, 4, 0, 75, 8, 4, 0, 76, 8, 43, 1, 1, 0, 0, 0, 77, 8, 44, 1, 4, 0, 42, 0, 93, 6, - 0, 0, 78, 8, 4, 0, 70, 1, 4, 0, 19, 0, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 41, 1, 79, 8, 2, 0, 17, 0, - 2, 0, 19, 0, 2, 0, 80, 8, 2, 0, 67, 8, 2, 0, 64, 8, 2, 0, 81, 8, 2, 0, 70, 0, 2, 0,237, 1, 0, 0, 20, 0, - 9, 0, 2, 0, 45, 1, 68, 8, 40, 1, 82, 8, 2, 0, 15, 0, 2, 0, 83, 8, 4, 0, 84, 8, 46, 1, 3, 0, 4, 0,217, 2, - 4, 0, 37, 0, 32, 0, 45, 0, 47, 1, 12, 0,159, 0, 85, 8, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 12, 8, 4, 0, 89, 0, - 0, 0, 20, 0, 0, 0, 86, 8, 2, 0, 87, 8, 2, 0, 88, 8, 2, 0, 89, 8, 2, 0, 90, 8, 7, 0, 91, 8, 48, 1, 13, 0, - 2, 0, 19, 0, 2, 0, 92, 8, 4, 0, 12, 8, 4, 0, 89, 0, 2, 0, 93, 8, 7, 0,236, 3, 7, 0, 94, 8, 13, 1,225, 7, - 49, 1, 95, 8, 2, 0, 17, 0, 2, 0, 96, 8, 2, 0, 97, 8, 2, 0, 98, 8, 50, 1, 11, 0, 4, 0,217, 2, 2, 0, 17, 0, - 2, 0, 19, 0, 32, 0, 45, 0, 81, 0, 99, 8, 0, 0, 20, 0, 7, 0,100, 8, 7, 0,101, 8, 7, 0,122, 3, 2, 0,102, 8, - 2, 0,103, 8, 51, 1, 5, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 37, 0, 46, 0,134, 0, 32, 0,178, 5, 52, 1, 5, 0, - 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, 0, 0, 50, 8, 32, 0, 45, 0, 53, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, - 2, 0, 64, 8, 2, 0,123, 3, 7, 0,104, 8, 7, 0,105, 8, 7, 0, 65, 1, 7, 0, 66, 1, 7, 0, 98, 3, 7, 0,101, 3, - 7, 0,106, 8, 7, 0,107, 8, 32, 0,108, 8, 54, 1, 10, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 12, 8, 4, 0, 89, 0, - 0, 0, 20, 0, 0, 0, 86, 8, 2, 0, 43, 0, 2, 0, 64, 0, 2, 0,109, 8, 2, 0,110, 8, 55, 1, 8, 0, 32, 0, 45, 0, - 7, 0,238, 2, 7, 0,111, 8, 7, 0,112, 8, 7, 0,233, 2, 2, 0, 19, 0, 2, 0,203, 2, 7, 0,113, 8, 56, 1, 12, 0, - 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0,241, 2, 2, 0,217, 2, 2, 0,114, 8, 4, 0, 37, 0, 7, 0,115, 8, - 7, 0,116, 8, 7, 0,117, 8, 7, 0,118, 8, 0, 0,119, 8, 57, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 12, 8, - 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,135, 1, 2, 0, 64, 0, 2, 0,109, 8, 2, 0,110, 8, 58, 1, 7, 0, 4, 0,191, 2, - 4, 0,120, 8, 4, 0,121, 8, 4, 0,122, 8, 7, 0,123, 8, 7, 0,124, 8, 0, 0, 56, 8, 59, 1, 7, 0, 0, 0,125, 8, - 32, 0,126, 8, 0, 0, 62, 8, 2, 0,127, 8, 2, 0, 43, 0, 4, 0, 70, 0, 0, 0, 63, 8, 60, 1, 6, 0, 2, 0, 19, 0, - 2, 0, 17, 0, 4, 0, 12, 8, 4, 0, 89, 0, 0, 0,128, 8, 0, 0,129, 8, 61, 1, 1, 0, 4, 0, 19, 0, 62, 1, 6, 0, - 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0,130, 8, 7, 0,131, 8, 42, 0, 93, 6, 63, 1, 4, 0, 0, 0, 69, 2, - 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, 64, 1, 2, 0, 4, 0, 17, 0, 4, 0, 15, 6, 65, 1, 6, 0, 0, 0, 59, 8, - 0, 0, 60, 8, 4, 0, 17, 0, 7, 0, 35, 2, 32, 0, 48, 3, 32, 0,132, 8, 45, 1, 10, 0, 45, 1, 0, 0, 45, 1, 1, 0, - 45, 1, 79, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 64, 8, 2, 0,133, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, - 66, 1, 10, 0, 7, 0,122, 3, 7, 0,134, 8, 7, 0,135, 8, 7, 0,136, 8, 7, 0,137, 8, 4, 0, 19, 0, 7, 0,114, 8, - 7, 0,138, 8, 7, 0,139, 8, 7, 0, 37, 0, 14, 1, 12, 0, 14, 1, 0, 0, 14, 1, 1, 0, 13, 1,140, 8, 9, 0,223, 0, - 4, 0,165, 3, 4, 0,223, 3, 4, 0,224, 3, 4, 0,141, 8, 4, 0,142, 8, 4, 0,143, 8, 7, 0,236, 3, 7, 0, 37, 0, - 49, 1, 8, 0, 7, 0,144, 8, 7, 0,145, 8, 7, 0,146, 8, 7, 0,147, 8, 7, 0,148, 8, 7, 0,149, 8, 7, 0,150, 8, - 7, 0,151, 8, 13, 1, 15, 0, 27, 0, 31, 0, 0, 0,222, 0, 43, 0,149, 0, 9, 0,223, 0, 43, 0,152, 8, 36, 0, 80, 0, - 7, 0,236, 3, 7, 0,153, 8, 7, 0, 94, 8, 7, 0,144, 8, 7, 0,145, 8, 7, 0,154, 8, 4, 0, 90, 0, 4, 0,143, 8, - 9, 0,155, 8, 67, 1, 15, 0,211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5,255, 0,156, 8, -212, 0, 35, 6, 13, 1,225, 7, 2, 0, 70, 1, 2, 0, 92, 8, 2, 0, 88, 2, 2, 0, 89, 2, 2, 0, 19, 0, 2, 0, 40, 6, - 4, 0, 70, 0, 68, 1, 6, 0, 68, 1, 0, 0, 68, 1, 1, 0, 32, 0, 45, 0, 9, 0,157, 8, 4, 0,247, 0, 4, 0, 37, 0, - 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,158, 8, 4, 0,131, 0, 7, 0,159, 8, 69, 1, 25, 0, 69, 1, 0, 0, 69, 1, 1, 0, - 69, 1, 38, 0, 12, 0,160, 8, 0, 0, 20, 0, 7, 0,161, 8, 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 4, 0, 19, 0, - 7, 0,165, 8, 7, 0,166, 8, 7, 0,167, 8, 7, 0, 77, 1, 7, 0, 35, 2, 7, 0,168, 8, 7, 0,189, 2, 7, 0,169, 8, - 7, 0,170, 8, 7, 0,171, 8, 7, 0,172, 8, 7, 0,173, 8, 7, 0,172, 0, 2, 0,131, 0, 2, 0,112, 5, 70, 1, 22, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,174, 8, 12, 0,175, 8, 12, 0,176, 8, 9, 0,177, 8, 4, 0, 19, 0, 4, 0,244, 5, - 2, 0,245, 2, 2, 0, 46, 6, 2, 0,131, 0, 2, 0,178, 8, 2, 0,179, 8, 2, 0,180, 8, 2, 0,181, 8, 2, 0,182, 8, - 4, 0,183, 8, 4, 0,184, 8, 4, 0,185, 8, 4, 0,186, 8, 4, 0,187, 8, 4, 0,188, 8, 71, 1, 2, 0, 7, 0,150, 2, - 4, 0, 19, 0, 72, 1, 5, 0, 71, 1,189, 8, 4, 0,189, 2, 4, 0,190, 8, 4, 0,191, 8, 4, 0, 19, 0, 73, 1, 6, 0, - 4, 0, 37, 0, 4, 0, 46, 6, 4, 0,185, 8, 4, 0,186, 8, 4, 0,187, 8, 4, 0,188, 8, 74, 1, 40, 0, 74, 1, 0, 0, - 74, 1, 1, 0, 26, 0,192, 8, 12, 0,149, 3, 0, 0, 20, 0, 2, 0, 19, 0, 2, 0,193, 8, 2, 0,194, 8, 2, 0,195, 8, - 2, 0,108, 3, 2, 0,196, 8, 4, 0, 71, 2, 4, 0,185, 8, 4, 0,186, 8, 69, 1,197, 8, 74, 1, 38, 0, 74, 1,198, 8, - 12, 0,199, 8, 9, 0,200, 8, 9, 0,201, 8, 9, 0,202, 8, 7, 0, 65, 1, 7, 0,172, 0, 7, 0,203, 8, 7, 0, 14, 2, - 2, 0,131, 3, 2, 0, 37, 0, 7, 0,204, 8, 7, 0,205, 8, 7, 0,104, 3, 7, 0,206, 8, 7, 0,207, 8, 7, 0,208, 8, - 7, 0,209, 8, 7, 0,210, 8, 7, 0,211, 8, 7, 0,212, 8, 7, 0,213, 8, 7, 0, 64, 2, 32, 0,214, 8,160, 0, 11, 0, - 12, 0,215, 8, 2, 0, 19, 0, 2, 0,216, 8, 7, 0,100, 2, 7, 0,217, 8, 7, 0,218, 8, 12, 0,219, 8, 4, 0,220, 8, - 4, 0,221, 8, 9, 0,222, 8, 9, 0,223, 8, 75, 1, 1, 0, 4, 0,221, 8, 76, 1, 12, 0, 4, 0,221, 8, 7, 0, 76, 8, - 2, 0,224, 8, 2, 0,225, 8, 7, 0,226, 8, 7, 0,227, 8, 2, 0,228, 8, 2, 0, 19, 0, 7, 0,229, 8, 7, 0,230, 8, - 7, 0,231, 8, 7, 0,232, 8, 77, 1, 7, 0, 77, 1, 0, 0, 77, 1, 1, 0, 12, 0,233, 8, 4, 0, 19, 0, 4, 0,234, 8, - 0, 0,227, 3,246, 0,235, 8,159, 0, 7, 0, 27, 0, 31, 0, 12, 0,236, 8, 12, 0,215, 8, 12, 0,237, 8, 12, 0,100, 0, - 4, 0, 19, 0, 4, 0,238, 8,216, 0, 4, 0, 27, 0,140, 8, 12, 0,215, 8, 4, 0,239, 8, 4, 0, 19, 0, 78, 1, 17, 0, -211, 0, 0, 0,211, 0, 1, 0, 12, 0,235, 5, 4, 0,236, 5, 7, 0,237, 5, 2, 0,238, 5,212, 0, 35, 6,159, 0, 88, 3, -216, 0,240, 8, 0, 0, 70, 1, 0, 0, 38, 6, 2, 0, 19, 0, 2, 0,241, 8, 2, 0, 39, 6, 2, 0, 40, 6, 2, 0,242, 8, - 7, 0,243, 8, 79, 1, 8, 0, 79, 1, 0, 0, 79, 1, 1, 0, 77, 1,244, 8, 36, 0, 80, 0, 12, 0, 92, 3, 4, 0, 19, 0, - 0, 0, 20, 0, 4, 0,245, 8, 80, 1, 5, 0, 80, 1, 0, 0, 80, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0,246, 8, - 81, 1, 14, 0, 81, 1, 0, 0, 81, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0,247, 8, 0, 0,248, 8, - 0, 0,246, 8, 7, 0,249, 8, 7, 0,250, 8, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0,251, 8, 7, 0,252, 8, 82, 1, 9, 0, - 82, 1, 0, 0, 82, 1, 1, 0, 32, 0,253, 8, 0, 0,248, 2, 7, 0,254, 8, 2, 0,255, 8, 2, 0, 19, 0, 2, 0, 17, 0, - 2, 0, 0, 9, 83, 1, 7, 0, 42, 0, 93, 6, 26, 0,192, 8, 4, 0, 19, 0, 4, 0, 1, 9, 12, 0, 2, 9, 32, 0,253, 8, - 0, 0,248, 2, 84, 1, 15, 0, 32, 0,253, 8, 2, 0, 3, 9, 2, 0, 19, 0, 2, 0, 4, 9, 2, 0, 5, 9, 0, 0,248, 2, - 32, 0, 6, 9, 0, 0, 7, 9, 7, 0, 8, 9, 7, 0, 35, 2, 7, 0, 9, 9, 7, 0, 10, 9, 2, 0, 17, 0, 2, 0, 70, 1, - 7, 0, 77, 1, 85, 1, 6, 0, 32, 0,253, 8, 4, 0, 11, 9, 4, 0, 12, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,248, 2, - 86, 1, 4, 0, 32, 0,253, 8, 4, 0, 19, 0, 4, 0, 11, 9, 0, 0,248, 2, 87, 1, 4, 0, 32, 0,253, 8, 4, 0, 19, 0, - 4, 0, 11, 9, 0, 0,248, 2, 88, 1, 10, 0, 32, 0,253, 8, 4, 0, 13, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 89, 6, - 2, 0, 14, 9, 2, 0, 43, 0, 2, 0, 70, 0, 7, 0, 15, 9, 0, 0,248, 2, 89, 1, 4, 0, 32, 0,253, 8, 4, 0, 19, 0, - 4, 0, 11, 9, 0, 0,248, 2, 90, 1, 10, 0, 32, 0,253, 8, 2, 0, 17, 0, 2, 0, 30, 4, 4, 0, 88, 0, 4, 0, 89, 0, - 7, 0,111, 8, 7, 0,112, 8, 4, 0, 37, 0,159, 0, 85, 8, 0, 0,248, 2, 91, 1, 4, 0, 32, 0,253, 8, 4, 0,109, 3, - 4, 0, 16, 9, 0, 0,248, 2, 92, 1, 5, 0, 32, 0,253, 8, 7, 0,125, 0, 4, 0, 17, 9, 4, 0,109, 3, 4, 0,110, 3, - 93, 1, 6, 0, 32, 0,253, 8, 4, 0, 18, 9, 4, 0, 19, 9, 7, 0, 20, 9, 7, 0, 21, 9, 0, 0,248, 2, 94, 1, 16, 0, - 32, 0,253, 8, 32, 0,198, 8, 4, 0, 17, 0, 7, 0, 22, 9, 7, 0, 23, 9, 7, 0, 24, 9, 7, 0, 25, 9, 7, 0, 26, 9, - 7, 0, 27, 9, 7, 0, 28, 9, 7, 0, 29, 9, 7, 0, 30, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, - 95, 1, 3, 0, 32, 0,253, 8, 4, 0, 19, 0, 4, 0, 27, 2, 96, 1, 5, 0, 32, 0,253, 8, 4, 0, 19, 0, 4, 0, 37, 0, - 7, 0, 31, 9, 0, 0,248, 2, 97, 1, 10, 0, 32, 0,253, 8, 0, 0,248, 2, 2, 0, 32, 9, 2, 0, 33, 9, 0, 0, 34, 9, - 0, 0, 35, 9, 7, 0, 36, 9, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 98, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, - 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 40, 9, 7, 0, 41, 9, 2, 0, 19, 0, 2, 0, 27, 2, 99, 1, 8, 0, 7, 0, 9, 0, - 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 40, 9, 7, 0, 41, 9, 2, 0, 19, 0, 2, 0, 27, 2,100, 1, 8, 0, - 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 40, 9, 7, 0, 41, 9, 2, 0, 19, 0, 2, 0, 27, 2, -101, 1, 7, 0, 32, 0,253, 8, 0, 0,248, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0, -102, 1, 5, 0, 32, 0, 48, 3, 7, 0, 77, 1, 2, 0, 52, 3, 0, 0, 54, 3, 0, 0, 42, 9,103, 1, 10, 0,103, 1, 0, 0, -103, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 43, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,233, 8, 2, 0, 44, 9, - 32, 0, 45, 0,104, 1, 22, 0,104, 1, 0, 0,104, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 45, 9, 2, 0, 46, 9, - 36, 0, 80, 0,159, 0, 85, 8, 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 47, 9, 7, 0, 48, 9, 7, 0, 49, 9, - 7, 0, 50, 9, 7, 0,234, 2, 7, 0, 51, 9, 7, 0, 87, 8, 7, 0, 52, 9, 0, 0, 53, 9, 0, 0, 54, 9, 12, 0, 94, 3, -105, 1, 8, 0, 7, 0, 42, 2, 7, 0,111, 8, 7, 0,112, 8, 9, 0, 2, 0, 2, 0, 55, 9, 2, 0, 56, 9, 2, 0, 57, 9, - 2, 0, 58, 9,106, 1, 18, 0,106, 1, 0, 0,106, 1, 1, 0,106, 1, 59, 9, 0, 0, 20, 0,105, 1, 60, 9, 2, 0, 17, 0, - 2, 0, 19, 0, 2, 0, 61, 9, 2, 0, 62, 9, 2, 0, 63, 9, 2, 0, 64, 9, 4, 0, 43, 0, 7, 0, 65, 9, 7, 0, 66, 9, - 4, 0, 67, 9, 4, 0, 68, 9,106, 1, 69, 9,107, 1, 70, 9,108, 1, 34, 0,108, 1, 0, 0,108, 1, 1, 0,108, 1, 71, 9, - 0, 0, 20, 0, 0, 0, 72, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,194, 7, 2, 0,227, 7, 2, 0, 73, 9, 2, 0,133, 0, - 2, 0, 62, 9, 2, 0,184, 7, 12, 0, 80, 8, 12, 0, 74, 9, 27, 0,123, 6, 9, 0, 75, 9, 7, 0, 65, 9, 7, 0, 66, 9, - 7, 0, 73, 2, 7, 0, 76, 9, 2, 0, 77, 9, 2, 0, 78, 9, 7, 0, 79, 9, 7, 0, 80, 9, 2, 0, 81, 9, 2, 0, 82, 9, - 9, 0, 83, 9, 24, 0, 84, 9, 24, 0, 85, 9, 24, 0, 86, 9,109, 1,150, 0,110, 1, 87, 9,111, 1, 88, 9,107, 1, 8, 0, -107, 1, 0, 0,107, 1, 1, 0,108, 1, 89, 9,108, 1, 90, 9,106, 1, 91, 9,106, 1, 69, 9, 4, 0, 19, 0, 4, 0, 37, 0, - 61, 0, 20, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0, 92, 9, 12, 0, 93, 9,105, 1, 94, 9, 12, 0, 95, 9, 4, 0, 17, 0, - 4, 0, 96, 9, 4, 0, 97, 9, 4, 0, 98, 9, 12, 0, 99, 9,111, 1,100, 9,106, 1,101, 9,106, 1,102, 9, 9, 0,103, 9, - 9, 0,104, 9, 4, 0,105, 9, 9, 0,106, 9, 9, 0,107, 9, 9, 0,108, 9,112, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, - 4, 0,184, 7, 0, 0,109, 9, 0, 0,110, 9, 2, 0, 37, 0,113, 1, 16, 0, 2, 0,140, 7, 2, 0,141, 7, 2, 0,111, 9, - 2, 0,135, 8, 2, 0,112, 9, 2, 0, 68, 0, 7, 0,233, 2, 7, 0,113, 9, 7, 0,114, 9, 2, 0, 90, 1, 0, 0,115, 9, - 0, 0, 96, 5, 2, 0,116, 9, 2, 0, 37, 0, 4, 0,117, 9, 4, 0,118, 9,114, 1, 9, 0, 7, 0,119, 9, 7, 0,120, 9, - 7, 0,154, 8, 7, 0,109, 0, 7, 0,121, 9, 7, 0, 52, 6, 2, 0,122, 9, 0, 0,123, 9, 0, 0, 37, 0,115, 1, 4, 0, - 7, 0,124, 9, 7, 0,125, 9, 2, 0,122, 9, 2, 0, 37, 0,116, 1, 3, 0, 7, 0,126, 9, 7, 0,127, 9, 7, 0, 15, 0, -117, 1, 7, 0, 0, 0, 4, 2, 2, 0,226, 4, 2, 0,227, 4, 2, 0,228, 4, 2, 0,174, 4, 4, 0,126, 0, 4, 0, 28, 4, -118, 1, 7, 0, 7, 0,128, 9, 7, 0,129, 9, 7, 0,130, 9, 7, 0, 84, 2, 7, 0,131, 9, 7, 0,132, 9, 7, 0,133, 9, -119, 1, 4, 0, 2, 0,134, 9, 2, 0,135, 9, 2, 0,136, 9, 2, 0,137, 9,120, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, -121, 1, 2, 0, 0, 0,166, 0, 0, 0,138, 9,122, 1, 1, 0, 0, 0, 20, 0,123, 1, 10, 0, 0, 0,139, 9, 0, 0,140, 9, - 0, 0, 45, 6, 0, 0,141, 9, 2, 0,111, 9, 2, 0,142, 9, 7, 0,143, 9, 7, 0,144, 9, 7, 0,145, 9, 7, 0, 51, 9, -124, 1, 2, 0, 9, 0,146, 9, 9, 0,147, 9,125, 1, 11, 0, 0, 0,228, 4, 0, 0, 17, 0, 0, 0,122, 9, 0, 0,109, 0, - 0, 0,148, 9, 0, 0,106, 0, 0, 0, 69, 2, 7, 0,149, 9, 7, 0,150, 9, 7, 0,151, 9, 7, 0,152, 9,126, 1, 8, 0, - 7, 0, 45, 8, 7, 0,125, 0, 7, 0, 96, 5, 7, 0,155, 2, 7, 0,153, 9, 7, 0,236, 0, 7, 0,154, 9, 4, 0, 17, 0, -127, 1, 4, 0, 2, 0,155, 9, 2, 0,156, 9, 2, 0,157, 9, 2, 0, 37, 0,128, 1, 1, 0, 0, 0, 20, 0,129, 1, 4, 0, - 7, 0, 5, 0, 7, 0, 6, 0, 2, 0, 19, 0, 2, 0,158, 9,130, 1, 10, 0, 2, 0,216, 3, 2, 0, 19, 0, 7, 0,110, 4, - 7, 0,159, 9, 7, 0,160, 9, 7, 0,161, 9, 7, 0,162, 9,129, 1,163, 9,129, 1,164, 9,129, 1,165, 9, 64, 0, 9, 0, - 4, 0, 19, 0, 4, 0, 64, 0, 24, 0,166, 9, 24, 0,167, 9,130, 1,168, 9, 7, 0,169, 9, 7, 0,170, 9, 7, 0,171, 9, - 7, 0,172, 9,131, 1, 4, 0, 47, 0,227, 2, 7, 0,173, 9, 7, 0,169, 1, 7, 0, 37, 0,189, 0, 17, 0, 27, 0, 31, 0, -131, 1,174, 9, 64, 0,163, 9, 51, 0,133, 1, 2, 0, 19, 0, 2, 0,204, 5, 4, 0,106, 0, 7, 0,175, 9, 7, 0, 81, 2, - 4, 0,176, 9, 7, 0,177, 9, 7, 0,178, 9, 7, 0,179, 9, 7, 0,169, 1, 2, 0,103, 1, 0, 0,180, 9, 0, 0,181, 6, -132, 1, 10, 0, 4, 0, 17, 0, 4, 0,125, 0, 4, 0, 19, 0, 4, 0,171, 3, 4, 0,181, 9, 4, 0,182, 9, 4, 0,183, 9, - 0, 0, 92, 0, 0, 0, 20, 0, 9, 0, 2, 0, 92, 0, 6, 0,132, 1,184, 9, 4, 0,185, 9, 4, 0,186, 9, 4, 0,187, 9, - 4, 0, 37, 0, 9, 0,188, 9,133, 1, 5, 0, 7, 0,150, 2, 7, 0,217, 2, 7, 0, 35, 2, 2, 0,189, 9, 2, 0, 37, 0, -134, 1, 5, 0, 7, 0,150, 2, 7, 0,190, 9, 7, 0,191, 9, 7, 0,192, 9, 7, 0,217, 2,135, 1, 5, 0, 32, 0,193, 9, -136, 1, 22, 0, 7, 0,177, 5, 7, 0,194, 9, 7, 0, 57, 0,137, 1, 7, 0, 4, 0,195, 9, 4, 0,196, 9, 4, 0,197, 9, - 7, 0,198, 9, 7, 0,199, 9, 7, 0,200, 9, 7, 0, 57, 0,138, 1, 8, 0,138, 1, 0, 0,138, 1, 1, 0, 32, 0, 45, 0, - 4, 0, 35, 3, 2, 0, 19, 0, 2, 0, 70, 1, 7, 0,217, 2, 7, 0, 53, 8,139, 1, 18, 0,134, 1,165, 3,134, 1,201, 9, -133, 1,202, 9,134, 1, 37, 8,135, 1,203, 9, 4, 0, 82, 0, 7, 0,217, 2, 7, 0,244, 2, 7, 0,204, 9, 4, 0,195, 9, - 4, 0,205, 9, 7, 0,199, 9, 7, 0,200, 9, 7, 0,106, 0, 2, 0, 19, 0, 2, 0,206, 9, 2, 0,207, 9, 2, 0,208, 9, -140, 1,107, 0, 27, 0, 31, 0, 39, 0, 75, 0,141, 1,209, 9,168, 0, 50, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 32, 9, - 2, 0,210, 9, 2, 0,211, 9, 2, 0,131, 3, 2, 0,212, 9, 2, 0,213, 9, 2, 0,214, 9, 2, 0,215, 9, 2, 0,216, 9, - 2, 0,217, 9, 2, 0,218, 9, 2, 0,216, 4, 2, 0, 89, 5, 2, 0,219, 9, 2, 0,220, 9, 2, 0,221, 9, 2, 0,222, 9, - 2, 0,223, 9, 2, 0, 24, 2, 2, 0, 30, 8, 2, 0, 6, 8, 2, 0,224, 9, 2, 0,225, 9, 2, 0,181, 3, 2, 0,182, 3, - 2, 0,226, 9, 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 7, 0,230, 9, 7, 0,231, 9, 7, 0,232, 9, 2, 0,233, 9, - 2, 0,234, 9, 7, 0,235, 9, 7, 0,236, 9, 7, 0,237, 9, 7, 0, 12, 8, 7, 0, 89, 0, 7, 0,244, 2, 7, 0, 18, 8, - 7, 0,238, 9, 7, 0,239, 9, 7, 0,240, 9, 4, 0, 13, 8, 4, 0, 11, 8, 4, 0,241, 9, 7, 0, 14, 8, 7, 0, 15, 8, - 7, 0, 16, 8, 7, 0,242, 9, 7, 0,243, 9, 7, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 7, 0,248, 9, - 7, 0,249, 9, 7, 0,122, 3, 7, 0,106, 0, 7, 0,250, 9, 7, 0,251, 9, 7, 0,252, 9, 7, 0,253, 9, 7, 0,254, 9, - 7, 0,255, 9, 7, 0, 0, 10, 4, 0, 1, 10, 4, 0, 2, 10, 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 6, 10, - 7, 0, 7, 10, 7, 0,210, 0, 7, 0, 8, 10, 7, 0,207, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 9, 10, 7, 0, 10, 10, - 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, 7, 0, 16, 10, 7, 0, 17, 10, 7, 0, 18, 10, - 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 4, 0, 22, 10, 4, 0, 23, 10, 68, 0,154, 3, 68, 0, 24, 10, 32, 0, 25, 10, - 32, 0, 26, 10, 36, 0, 80, 0,163, 0, 62, 1,163, 0, 27, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,140, 1, 28, 10, -139, 1, 29, 10,137, 1,198, 8,170, 0,232, 3, 9, 0,233, 3,142, 1, 30, 10,142, 1, 31, 10, 12, 0, 32, 10, 12, 0, 33, 10, -134, 0, 34, 10,142, 0, 35, 10,142, 0, 36, 10, 32, 0, 37, 10, 32, 0, 38, 10, 32, 0, 38, 0, 12, 0, 2, 9, 0, 0, 20, 0, - 7, 0,240, 0, 7, 0, 15, 3, 7, 0, 39, 10, 4, 0,191, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 13, 8, 4, 0, 40, 10, - 4, 0, 41, 10, 4, 0, 42, 10, 2, 0,247, 0, 2, 0, 43, 10, 2, 0, 44, 10, 2, 0, 45, 10, 0, 0, 46, 10, 2, 0, 47, 10, - 2, 0, 48, 10, 2, 0, 49, 10, 9, 0, 50, 10,138, 0, 49, 4, 12, 0, 2, 3, 12, 0, 51, 10,143, 1, 52, 10,144, 1, 53, 10, - 7, 0, 54, 10,136, 0, 35, 0,145, 1,155, 8, 7, 0, 19, 4, 7, 0, 55, 10, 7, 0, 56, 10, 7, 0,113, 4, 7, 0, 57, 10, - 7, 0,132, 3, 7, 0,122, 3, 7, 0, 58, 10, 7, 0, 83, 2, 7, 0, 59, 10, 7, 0, 60, 10, 7, 0, 61, 10, 7, 0, 62, 10, - 7, 0, 63, 10, 7, 0, 64, 10, 7, 0, 20, 4, 7, 0, 65, 10, 7, 0, 66, 10, 7, 0, 67, 10, 7, 0, 21, 4, 7, 0, 17, 4, - 7, 0, 18, 4, 7, 0, 68, 10, 4, 0, 69, 10, 4, 0, 90, 0, 4, 0, 70, 10, 4, 0, 71, 10, 2, 0, 72, 10, 2, 0, 73, 10, - 2, 0, 74, 10, 2, 0, 75, 10, 2, 0, 76, 10, 2, 0, 37, 0,168, 0, 50, 4,137, 0, 8, 0,145, 1, 77, 10, 7, 0, 78, 10, - 7, 0, 79, 10, 7, 0,241, 1, 7, 0, 80, 10, 4, 0, 90, 0, 2, 0, 81, 10, 2, 0, 82, 10,146, 1, 4, 0, 7, 0, 5, 0, - 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 83, 10,147, 1, 6, 0,147, 1, 0, 0,147, 1, 1, 0,146, 1,189, 8, 4, 0,253, 0, - 2, 0, 84, 10, 2, 0, 19, 0,148, 1, 5, 0,148, 1, 0, 0,148, 1, 1, 0, 12, 0, 85, 10, 4, 0, 86, 10, 4, 0, 19, 0, -149, 1, 9, 0,149, 1, 0, 0,149, 1, 1, 0, 12, 0,124, 0,148, 1, 87, 10, 4, 0, 19, 0, 2, 0, 84, 10, 2, 0, 88, 10, - 7, 0, 91, 0, 0, 0, 89, 10,161, 0, 6, 0, 27, 0, 31, 0, 12, 0,242, 4, 4, 0, 19, 0, 2, 0, 90, 10, 2, 0, 91, 10, - 9, 0, 92, 10,150, 1, 7, 0,150, 1, 0, 0,150, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0, 93, 10, - 0, 0, 94, 10,151, 1, 5, 0, 12, 0, 95, 10, 4, 0, 96, 10, 4, 0, 97, 10, 4, 0, 19, 0, 4, 0, 37, 0,152, 1, 13, 0, - 27, 0, 31, 0,153, 1, 98, 10,153, 1, 99, 10, 12, 0,100, 10, 4, 0,101, 10, 2, 0,102, 10, 2, 0, 37, 0, 12, 0,103, 10, - 12, 0,104, 10,151, 1,105, 10, 12, 0,106, 10, 12, 0,107, 10, 12, 0,108, 10,153, 1, 31, 0,153, 1, 0, 0,153, 1, 1, 0, - 9, 0,109, 10, 4, 0,119, 7, 4, 0, 37, 0,214, 0, 34, 6,214, 0,110, 10, 0, 0,111, 10, 2, 0,112, 10, 2, 0,113, 10, - 2, 0,140, 7, 2, 0,141, 7, 2, 0,114, 10, 2, 0,115, 10, 2, 0,171, 3, 2, 0,149, 6, 2, 0,116, 10, 2, 0,117, 10, - 4, 0,237, 1,154, 1,118, 10,155, 1,119, 10,156, 1,120, 10, 4, 0,121, 10, 4, 0,122, 10, 9, 0,123, 10, 12, 0,124, 10, - 12, 0,104, 10, 12, 0,158, 7, 12, 0,125, 10, 12, 0,126, 10, 12, 0,127, 10,157, 1, 16, 0,157, 1, 0, 0,157, 1, 1, 0, - 0, 0,128, 10,158, 1,129, 10, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0,130, 10, 2, 0,131, 10, 2, 0,132, 10, 2, 0,133, 10, - 2, 0,134, 10, 2, 0,135, 10, 2, 0,136, 10, 2, 0,137, 10, 2, 0, 70, 0, 2, 0,237, 1,159, 1, 10, 0,159, 1, 0, 0, -159, 1, 1, 0, 12, 0,138, 10, 0, 0,139, 10, 2, 0,140, 10, 2, 0,141, 10, 2, 0,142, 10, 2, 0, 37, 0, 9, 0,143, 10, - 4, 0,144, 10,222, 0, 12, 0,222, 0, 0, 0,222, 0, 1, 0, 0, 0,128, 10, 26, 0, 30, 0,160, 1,134, 7, 9, 0,145, 10, -158, 1,129, 10,151, 1,146, 10, 12, 0,147, 10,222, 0,148, 10, 2, 0, 19, 0, 2, 0,135, 1,154, 1, 23, 0,154, 1, 0, 0, -154, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, 2, 0, 6, 0, 2, 0,149, 10, 2, 0,150, 10, 2, 0,151, 10, - 2, 0,152, 10, 0, 0,153, 10, 0, 0, 37, 0, 2, 0,130, 10, 2, 0,131, 10, 2, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, - 2, 0, 43, 0, 0, 0,154, 10, 2, 0,155, 10, 2, 0,156, 10, 4, 0, 70, 0, 9, 0,145, 10,161, 1, 8, 0,161, 1, 0, 0, -161, 1, 1, 0, 9, 0, 2, 0, 9, 0,157, 10, 0, 0,227, 3, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,158, 10,162, 1, 5, 0, - 7, 0,159, 10, 4, 0,160, 10, 4, 0,161, 10, 4, 0, 70, 1, 4, 0, 19, 0,163, 1, 6, 0, 7, 0,162, 10, 7, 0,163, 10, - 7, 0,164, 10, 7, 0,165, 10, 4, 0, 17, 0, 4, 0, 19, 0,164, 1, 5, 0, 7, 0,111, 8, 7, 0,112, 8, 7, 0,217, 2, - 2, 0, 38, 2, 2, 0, 39, 2,165, 1, 5, 0,164, 1, 2, 0, 4, 0, 54, 0, 7, 0,166, 10, 7, 0,111, 8, 7, 0,112, 8, -166, 1, 4, 0, 2, 0,167, 10, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10,167, 1, 2, 0, 42, 0,120, 6, 26, 0,192, 8, -168, 1, 3, 0, 24, 0,171, 10, 4, 0, 19, 0, 4, 0, 37, 0,169, 1, 6, 0, 7, 0,106, 0, 7, 0,219, 2, 7, 0,172, 10, - 7, 0, 37, 0, 2, 0,246, 0, 2, 0,173, 10,170, 1, 7, 0,170, 1, 0, 0,170, 1, 1, 0, 27, 0,123, 6, 0, 0,174, 10, - 4, 0,175, 10, 4, 0, 90, 0, 0, 0,227, 3,171, 1, 6, 0, 12, 0, 2, 9, 0, 0,176, 10, 7, 0, 61, 0, 7, 0,158, 10, - 4, 0, 17, 0, 4, 0, 19, 0,172, 1, 3, 0, 7, 0,177, 10, 4, 0, 19, 0, 4, 0, 37, 0,173, 1, 15, 0,173, 1, 0, 0, -173, 1, 1, 0, 77, 1,244, 8,171, 1, 62, 0, 12, 0, 94, 3, 35, 0, 50, 0,172, 1,178, 10, 4, 0, 54, 0, 7, 0, 61, 0, - 2, 0, 19, 0, 2, 0, 16, 1, 4, 0,175, 10, 0, 0,174, 10, 4, 0,179, 10, 7, 0,180, 10,174, 1, 2, 0, 0, 0,181, 10, - 0, 0,182, 10,175, 1, 4, 0,175, 1, 0, 0,175, 1, 1, 0,159, 0, 48, 3, 12, 0,183, 10,176, 1, 24, 0,176, 1, 0, 0, -176, 1, 1, 0, 12, 0,184, 10,159, 0, 85, 8,175, 1,185, 10, 12, 0,186, 10, 12, 0, 94, 3, 0, 0,227, 3, 7, 0,158, 10, - 7, 0,187, 10, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 47, 9, 7, 0, 48, 9, 7, 0,234, 2, 7, 0, 51, 9, 7, 0, 87, 8, - 7, 0, 52, 9, 2, 0,188, 10, 2, 0,189, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,177, 1, 6, 0, -177, 1, 0, 0,177, 1, 1, 0, 12, 0,184, 10, 4, 0, 19, 0, 4, 0,154, 2, 0, 0,227, 3,178, 1, 10, 0,178, 1, 0, 0, -178, 1, 1, 0, 27, 0,123, 6, 0, 0,190, 10, 4, 0,191, 10, 4, 0,192, 10, 0, 0,174, 10, 4, 0,175, 10, 2, 0, 19, 0, - 2, 0,193, 10,179, 1, 7, 0,179, 1, 0, 0,179, 1, 1, 0, 12, 0,194, 10, 0, 0,227, 3, 2, 0, 19, 0, 2, 0,195, 10, - 4, 0,196, 10,180, 1, 5, 0,180, 1, 0, 0,180, 1, 1, 0, 0, 0,174, 10, 4, 0,175, 10, 7, 0,207, 2, 39, 0, 12, 0, -159, 0, 88, 3,159, 0,197, 10,175, 1,185, 10, 12, 0,198, 10,176, 1,199, 10, 12, 0,200, 10, 12, 0,201, 10, 4, 0, 19, 0, - 4, 0,247, 0, 2, 0,202, 10, 2, 0,203, 10, 7, 0,204, 10,181, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,182, 1, 5, 0, -182, 1, 0, 0,182, 1, 1, 0, 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,183, 1, 6, 0,182, 1,205, 10, 32, 0, 45, 0, - 4, 0,206, 10, 7, 0,207, 10, 4, 0,208, 10, 4, 0,233, 8,184, 1, 3, 0,182, 1,205, 10, 4, 0,206, 10, 7, 0,209, 10, -185, 1, 8, 0,182, 1,205, 10, 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,210, 10, 7, 0, 15, 3, 7, 0,154, 8, 4, 0,206, 10, - 4, 0,211, 10,186, 1, 5, 0,182, 1,205, 10, 7, 0,212, 10, 7, 0,227, 7, 7, 0,240, 2, 7, 0, 57, 0,187, 1, 3, 0, -182, 1,205, 10, 7, 0,154, 8, 7, 0,213, 10,136, 1, 4, 0, 7, 0,214, 10, 7, 0,252, 9, 2, 0,215, 10, 2, 0, 70, 1, -188, 1, 14, 0,188, 1, 0, 0,188, 1, 1, 0, 12, 0,216, 10, 12, 0,217, 10, 12, 0,218, 10, 0, 0, 20, 0, 4, 0, 31, 0, - 4, 0, 19, 0, 4, 0,219, 10, 7, 0,220, 10, 4, 0,208, 10, 4, 0,233, 8, 7, 0,236, 3, 7, 0,242, 2,141, 1, 23, 0, - 4, 0,206, 10, 4, 0,221, 10, 7, 0,222, 10, 7, 0, 57, 0, 7, 0,223, 10, 7, 0,238, 2, 7, 0,214, 10, 7, 0,224, 10, - 7, 0,219, 2, 7, 0,225, 10, 7, 0,110, 4, 7, 0,226, 10, 7, 0,227, 10, 7, 0,228, 10, 7, 0,229, 10, 7, 0,230, 10, - 7, 0,231, 10, 7, 0,232, 10, 7, 0,233, 10, 7, 0,234, 10, 7, 0,235, 10, 7, 0,236, 10, 12, 0,237, 10,122, 0, 33, 0, -121, 0,238, 10,189, 1,239, 10, 68, 0,240, 10, 68, 0, 24, 10, 68, 0,241, 10,190, 1,242, 10, 48, 0,165, 0, 48, 0,243, 10, - 48, 0,244, 10, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,245, 8, 7, 0,250, 10, - 7, 0,169, 1, 7, 0,251, 10, 4, 0,252, 10, 4, 0,253, 10, 4, 0,254, 10, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0,255, 10, - 2, 0, 0, 11, 2, 0, 1, 11, 4, 0, 2, 11, 7, 0,219, 2, 4, 0, 3, 11, 7, 0, 4, 11, 4, 0, 5, 11,138, 0, 6, 11, - 12, 0, 7, 11,123, 0, 11, 0,121, 0,238, 10, 59, 0,255, 0, 7, 0,136, 1, 7, 0,245, 8, 7, 0, 8, 11, 7, 0, 9, 11, - 2, 0, 10, 11, 2, 0, 11, 11, 2, 0, 12, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0,238, 10,140, 0, 12, 3, -142, 0, 14, 3, 7, 0,189, 8, 7, 0, 13, 11, 7, 0, 14, 11, 7, 0, 67, 1, 7, 0, 15, 11, 4, 0, 16, 11, 4, 0, 10, 3, - 2, 0, 17, 0, 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 7, 0,175, 1, 7, 0,176, 1, 66, 0,177, 1, 7, 0,178, 1, 7, 0,179, 1, + 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 7, 0,183, 1, 7, 0,184, 1, 2, 0,185, 1, 2, 0,186, 1, 2, 0,187, 1, + 0, 0,188, 1, 0, 0,189, 1, 7, 0,190, 1, 7, 0,191, 1, 2, 0,192, 1, 2, 0,193, 1, 7, 0,194, 1, 7, 0,195, 1, + 7, 0,196, 1, 7, 0,197, 1, 2, 0,198, 1, 2, 0,199, 1, 4, 0, 70, 1, 4, 0,200, 1, 2, 0,201, 1, 2, 0,202, 1, + 2, 0,203, 1, 2, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, 7, 0,210, 1, + 7, 0,211, 1, 7, 0,212, 1, 7, 0,213, 1, 7, 0,214, 1, 0, 0,215, 1, 7, 0,216, 1, 7, 0,217, 1, 7, 0,218, 1, + 4, 0,219, 1, 0, 0,220, 1, 0, 0,105, 1, 0, 0,221, 1, 0, 0, 64, 1, 2, 0,222, 1, 2, 0,223, 1, 2, 0,136, 1, + 2, 0,224, 1, 2, 0,225, 1, 2, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 7, 0,230, 1, 7, 0,231, 1, + 2, 0,160, 0, 2, 0,161, 0, 55, 0,232, 1, 55, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 0, 0,236, 1, 0, 0,237, 1, + 2, 0,238, 1, 2, 0,239, 1, 7, 0,240, 1, 7, 0,241, 1, 51, 0,135, 1, 61, 0, 59, 1, 36, 0, 80, 0, 68, 0,242, 1, + 30, 0,150, 0, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 7, 0,246, 1, 7, 0,247, 1, 2, 0,248, 1, 2, 0, 70, 0, + 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, 7, 0, 0, 2, + 7, 0, 1, 2, 2, 0, 2, 2, 2, 0, 3, 2, 4, 0, 4, 2, 4, 0,122, 1, 12, 0, 5, 2, 69, 0, 4, 0, 27, 0, 31, 0, + 0, 0, 6, 2, 70, 0, 2, 0, 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 7, 2, 4, 0, 8, 2, + 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 4, 0, 12, 2, 4, 0, 13, 2, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 14, 2, + 2, 0, 15, 2, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, 7, 0, 19, 2, + 7, 0, 20, 2, 7, 0, 21, 2, 7, 0, 22, 2, 7, 0, 23, 0, 7, 0, 23, 2, 7, 0, 24, 2, 73, 0, 20, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 25, 2, 12, 0, 26, 2, 12, 0, 27, 2, 36, 0, 80, 0, 67, 0, 28, 2, 0, 0, 19, 0, + 0, 0, 29, 2, 2, 0, 30, 2, 2, 0,174, 0, 2, 0, 37, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0, 31, 2, + 7, 0, 32, 2, 7, 0, 33, 2, 71, 0, 34, 2, 35, 0, 11, 0, 7, 0, 35, 2, 7, 0, 36, 2, 7, 0, 37, 2, 7, 0,251, 0, + 2, 0, 55, 0, 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 0, 0, 42, 2, 0, 0, 43, 2, 34, 0, 7, 0, + 7, 0, 44, 2, 7, 0, 36, 2, 7, 0, 37, 2, 2, 0, 40, 2, 2, 0, 43, 2, 7, 0,251, 0, 7, 0, 37, 0, 74, 0, 21, 0, + 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, 2, 0, 45, 2, 2, 0, 43, 2, 2, 0, 19, 0, 2, 0, 46, 2, 2, 0, 47, 2, + 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 2, 0, 52, 2, 2, 0, 53, 2, 7, 0, 54, 2, 7, 0, 55, 2, + 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 56, 2, 2, 0, 57, 2, 4, 0, 58, 2, 75, 0, 5, 0, 2, 0, 59, 2, 2, 0, 45, 2, + 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 7, 0, 60, 2, + 77, 0, 68, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 61, 2, 12, 0, 26, 2, 12, 0, 62, 2, 32, 0, 63, 2, + 32, 0, 64, 2, 32, 0, 65, 2, 36, 0, 80, 0, 78, 0, 66, 2, 38, 0, 67, 2, 67, 0, 28, 2, 12, 0, 68, 2, 7, 0, 65, 1, + 7, 0,172, 0, 7, 0, 66, 1, 2, 0,174, 0, 2, 0, 43, 0, 2, 0, 69, 2, 2, 0, 70, 2, 2, 0, 71, 2, 7, 0, 72, 2, + 7, 0, 70, 0, 2, 0, 73, 2, 2, 0, 30, 2, 2, 0, 19, 0, 2, 0, 74, 2, 7, 0, 75, 2, 7, 0, 76, 2, 7, 0, 77, 2, + 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 78, 2, 2, 0, 79, 2, 4, 0, 80, 2, 34, 0, 81, 2, 2, 0, 23, 0, 2, 0, 95, 0, + 2, 0, 67, 0, 2, 0, 82, 2, 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, 7, 0, 88, 2, + 7, 0, 89, 2, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 92, 2, 0, 0, 93, 2, 79, 0, 94, 2, 80, 0, 95, 2, 0, 0, 96, 2, + 69, 0, 97, 2, 69, 0, 98, 2, 69, 0, 99, 2, 69, 0,100, 2, 4, 0,101, 2, 7, 0,102, 2, 4, 0,103, 2, 4, 0,104, 2, + 76, 0,105, 2, 4, 0,106, 2, 4, 0,107, 2, 75, 0,108, 2, 75, 0,109, 2, 81, 0, 40, 0, 27, 0, 31, 0, 72, 0, 7, 2, + 12, 0,110, 2, 36, 0, 80, 0, 38, 0, 67, 2, 67, 0, 28, 2, 82, 0,111, 2, 83, 0,112, 2, 84, 0,113, 2, 85, 0,114, 2, + 86, 0,115, 2, 87, 0,116, 2, 88, 0,117, 2, 89, 0,118, 2, 81, 0,119, 2, 90, 0,120, 2, 91, 0,121, 2, 92, 0,122, 2, + 92, 0,123, 2, 92, 0,124, 2, 4, 0, 54, 0, 4, 0,125, 2, 4, 0,126, 2, 4, 0,127, 2, 4, 0,128, 2, 2, 0,174, 0, + 2, 0,129, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,130, 2, 4, 0, 69, 2, 2, 0,131, 2, 2, 0, 19, 0, + 2, 0,132, 2, 2, 0,133, 2, 2, 0, 30, 2, 2, 0,134, 2, 93, 0,135, 2, 94, 0,136, 2, 84, 0, 8, 0, 9, 0,137, 2, + 7, 0,138, 2, 4, 0,139, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 82, 0, 7, 0, + 4, 0,143, 2, 4, 0,144, 2, 4, 0,145, 2, 4, 0,146, 2, 2, 0, 45, 2, 0, 0,147, 2, 0, 0, 19, 0, 86, 0, 5, 0, + 4, 0,143, 2, 4, 0,144, 2, 0, 0,148, 2, 0, 0,149, 2, 2, 0, 19, 0, 95, 0, 2, 0, 4, 0,150, 2, 7, 0, 37, 2, + 87, 0, 3, 0, 95, 0,151, 2, 4, 0,152, 2, 4, 0, 19, 0, 85, 0, 6, 0, 7, 0,153, 2, 2, 0,154, 2, 2, 0, 45, 2, + 0, 0, 19, 0, 0, 0,149, 2, 0, 0, 71, 2, 88, 0, 4, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, + 96, 0, 6, 0, 47, 0,137, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 97, 0, 1, 0, + 7, 0,155, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 4, 0, 37, 0, 89, 0, 1, 0, + 7, 0,156, 2, 90, 0, 2, 0, 4, 0,157, 2, 4, 0, 17, 0, 83, 0, 7, 0, 7, 0,138, 2, 47, 0,137, 2, 0, 0, 19, 0, + 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 99, 0, 1, 0, 7, 0,158, 2,100, 0, 1, 0, 4, 0,159, 2, +101, 0, 1, 0, 0, 0,160, 2,102, 0, 1, 0, 7, 0,138, 2,103, 0, 3, 0, 4, 0,161, 2, 0, 0, 92, 0, 7, 0,162, 2, +105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0,106, 0, 1, 0,105, 0,139, 2,107, 0, 5, 0, + 4, 0,163, 2, 4, 0,164, 2, 0, 0, 19, 0, 0, 0, 45, 2, 0, 0, 71, 2,108, 0, 2, 0, 4, 0,165, 2, 4, 0,164, 2, +109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,166, 2,106, 0,167, 2,108, 0,168, 2, 4, 0, 54, 0, 4, 0,126, 2, + 4, 0,125, 2, 4, 0, 37, 0, 85, 0,169, 2, 93, 0, 14, 0, 12, 0,170, 2, 85, 0,169, 2, 0, 0,171, 2, 0, 0,172, 2, + 0, 0,173, 2, 0, 0,174, 2, 0, 0,175, 2, 0, 0,176, 2, 0, 0,177, 2, 0, 0, 19, 0, 92, 0,122, 2, 92, 0,124, 2, + 2, 0,178, 2, 0, 0,179, 2, 94, 0, 8, 0, 4, 0,180, 2, 4, 0,181, 2, 82, 0,182, 2, 86, 0,183, 2, 4, 0,126, 2, + 4, 0,125, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0,110, 0, 1, 0, 4, 0, 17, 0, 4, 0, 70, 1, + 0, 0, 20, 0, 46, 0,134, 0, 0, 0,184, 2,111, 0, 7, 0,110, 0,185, 2, 2, 0,186, 2, 2, 0,170, 2, 2, 0,187, 2, + 2, 0, 90, 0, 9, 0,188, 2, 9, 0,189, 2,112, 0, 3, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0,113, 0, 5, 0, +110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,190, 2, 0, 0,191, 2,114, 0, 5, 0,110, 0,185, 2, 7, 0, 88, 0, + 7, 0,192, 2, 4, 0,193, 2, 4, 0,194, 2,115, 0, 5, 0,110, 0,185, 2, 32, 0,195, 2, 0, 0, 72, 0, 4, 0, 70, 1, + 4, 0, 19, 0,116, 0, 13, 0,110, 0,185, 2, 32, 0,196, 2, 32, 0,197, 2, 32, 0,198, 2, 32, 0,199, 2, 7, 0,200, 2, + 7, 0,201, 2, 7, 0,192, 2, 7, 0,202, 2, 4, 0,203, 2, 4, 0,204, 2, 4, 0, 90, 0, 4, 0,205, 2,117, 0, 5, 0, +110, 0,185, 2, 2, 0,206, 2, 2, 0, 19, 0, 7, 0,207, 2, 32, 0,208, 2,118, 0, 3, 0,110, 0,185, 2, 7, 0,209, 2, + 4, 0, 90, 0,119, 0, 10, 0,110, 0,185, 2, 7, 0,210, 2, 4, 0,211, 2, 4, 0, 37, 0, 2, 0, 90, 0, 2, 0,212, 2, + 2, 0,213, 2, 2, 0,214, 2, 7, 0,215, 2, 0, 0,216, 2,120, 0, 3, 0,110, 0,185, 2, 7, 0, 37, 0, 4, 0, 17, 0, +121, 0, 6, 0,110, 0,185, 2,122, 0,217, 2,123, 0,218, 2,124, 0,219, 2, 7, 0,220, 2, 4, 0, 17, 0,125, 0, 11, 0, +110, 0,185, 2, 52, 0,221, 2, 7, 0,222, 2, 4, 0,223, 2, 0, 0,216, 2, 7, 0,224, 2, 4, 0,225, 2, 32, 0,226, 2, + 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,185, 2, 32, 0,229, 2, 47, 0,230, 2, 4, 0, 90, 0, + 4, 0,231, 2, 7, 0,232, 2, 7, 0,233, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,127, 0, 3, 0,110, 0,185, 2, + 7, 0,234, 2, 4, 0,235, 2,128, 0, 5, 0,110, 0,185, 2, 7, 0,236, 2, 0, 0,216, 2, 2, 0, 19, 0, 2, 0,237, 2, +129, 0, 8, 0,110, 0,185, 2, 32, 0,164, 0, 7, 0,236, 2, 7, 0,251, 0, 7, 0,106, 0, 0, 0,216, 2, 2, 0, 19, 0, + 2, 0, 17, 0,130, 0, 21, 0,110, 0,185, 2, 32, 0,238, 2, 0, 0,216, 2, 52, 0,221, 2, 32, 0,226, 2, 2, 0, 19, 0, + 2, 0, 37, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0,244, 2, + 7, 0,245, 2, 4, 0,225, 2, 4, 0,228, 2, 0, 0,227, 2, 7, 0,246, 2, 7, 0,247, 2, 7, 0, 43, 0,131, 0, 7, 0, +110, 0,185, 2, 2, 0,248, 2, 2, 0,249, 2, 4, 0, 70, 0, 32, 0,164, 0, 7, 0,250, 2, 0, 0,216, 2,132, 0, 10, 0, +110, 0,185, 2, 32, 0,164, 0, 0, 0,251, 2, 7, 0,252, 2, 7, 0,253, 2, 7, 0,245, 2, 4, 0,254, 2, 4, 0,255, 2, + 7, 0, 0, 3, 0, 0, 20, 0,133, 0, 1, 0,110, 0,185, 2,134, 0, 7, 0,110, 0,185, 2, 46, 0,134, 0,135, 0, 1, 3, +136, 0, 2, 3,137, 0, 3, 3,138, 0, 4, 3, 12, 0, 5, 3,139, 0, 13, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 7, 3, + 85, 0, 8, 3, 85, 0, 9, 3, 85, 0, 10, 3, 85, 0, 11, 3, 82, 0, 12, 3, 4, 0, 13, 3, 4, 0, 14, 3, 7, 0,220, 2, + 7, 0, 37, 0,140, 0, 15, 3,141, 0, 7, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 16, 3,142, 0, 17, 3,143, 0, 15, 3, + 4, 0, 18, 3, 4, 0, 13, 3,144, 0, 4, 0,110, 0,185, 2, 32, 0,164, 0, 4, 0, 19, 3, 4, 0, 37, 0,145, 0, 2, 0, + 4, 0, 20, 3, 7, 0, 37, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 21, 3,147, 0, 20, 0,110, 0,185, 2, 32, 0,164, 0, + 0, 0,216, 2, 2, 0, 22, 3, 2, 0, 23, 3, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0, 24, 3, 7, 0, 25, 3, 4, 0, 54, 0, + 4, 0, 26, 3,146, 0, 27, 3,145, 0, 28, 3, 4, 0, 29, 3, 4, 0, 30, 3, 4, 0, 31, 3, 4, 0, 21, 3, 7, 0, 32, 3, + 7, 0, 33, 3, 7, 0, 34, 3,148, 0, 8, 0,110, 0,185, 2, 59, 0,255, 0,142, 0, 17, 3, 4, 0, 35, 3, 4, 0, 36, 3, + 4, 0, 37, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,185, 2, 32, 0, 45, 0, 2, 0, 38, 3, 2, 0, 19, 0, + 2, 0,206, 2, 2, 0, 57, 0, 7, 0, 39, 3, 7, 0, 40, 3,150, 0, 5, 0,110, 0,185, 2, 4, 0, 41, 3, 2, 0, 19, 0, + 2, 0, 42, 3, 7, 0, 43, 3,151, 0, 7, 0,110, 0,185, 2, 85, 0, 44, 3, 4, 0, 45, 3, 0, 0, 46, 3, 0, 0, 47, 3, + 0, 0, 48, 3, 0, 0, 49, 3,152, 0, 3, 0,110, 0,185, 2,153, 0, 50, 3,138, 0, 4, 3,154, 0, 10, 0,110, 0,185, 2, + 32, 0, 51, 3, 32, 0, 52, 3, 0, 0, 53, 3, 7, 0, 54, 3, 2, 0, 55, 3, 2, 0, 56, 3, 0, 0, 57, 3, 0, 0, 58, 3, + 0, 0,191, 2,155, 0, 9, 0,110, 0,185, 2, 32, 0, 59, 3, 0, 0, 53, 3, 7, 0, 60, 3, 7, 0, 61, 3, 0, 0, 70, 1, + 0, 0,206, 2, 0, 0, 62, 3, 0, 0, 37, 0,156, 0, 1, 0,110, 0,185, 2,157, 0, 27, 0, 27, 0, 31, 0, 2, 0, 46, 2, + 2, 0, 47, 2, 2, 0, 63, 3, 2, 0, 19, 0, 2, 0, 64, 3, 2, 0, 65, 3, 2, 0, 66, 3, 2, 0, 70, 0, 0, 0, 67, 3, + 0, 0, 68, 3, 0, 0, 69, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, 7, 0, 73, 3, + 7, 0, 74, 3, 7, 0, 75, 3, 34, 0, 76, 3, 36, 0, 80, 0, 38, 0, 67, 2, 87, 0,116, 2, 7, 0, 77, 3, 7, 0, 78, 3, +157, 0, 79, 3,158, 0, 3, 0,158, 0, 0, 0,158, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 80, 3, 4, 0, 19, 0, + 4, 0, 37, 0, 32, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0,159, 0, 81, 3, 2, 0, 17, 0, 2, 0, 82, 3, 4, 0, 83, 3, + 4, 0, 84, 3, 4, 0, 85, 3, 0, 0, 86, 3, 32, 0, 38, 0, 32, 0, 87, 3, 32, 0, 88, 3, 32, 0, 89, 3, 32, 0, 90, 3, + 36, 0, 80, 0, 78, 0, 66, 2, 72, 0, 7, 2,160, 0, 91, 3,160, 0, 92, 3,161, 0, 93, 3, 9, 0, 2, 0,162, 0, 94, 3, + 12, 0, 95, 3, 12, 0,110, 2, 12, 0, 26, 2, 12, 0, 96, 3, 12, 0, 97, 3, 4, 0, 70, 1, 4, 0, 98, 3, 67, 0, 28, 2, + 0, 0, 99, 3, 4, 0, 30, 2, 4, 0,100, 3, 7, 0, 65, 1, 7, 0,101, 3, 7, 0,102, 3, 7, 0,172, 0, 7, 0,103, 3, + 7, 0, 66, 1, 7, 0,104, 3, 7, 0, 16, 2, 7, 0,105, 3, 7, 0,106, 3, 7, 0,107, 3, 7, 0,108, 3, 7, 0,109, 3, + 7, 0,110, 3, 7, 0,252, 2, 7, 0,111, 3, 7, 0,240, 0, 4, 0,112, 3, 2, 0, 19, 0, 2, 0,113, 3, 2, 0,114, 3, + 2, 0,115, 3, 2, 0,116, 3, 2, 0,117, 3, 2, 0,118, 3, 2, 0,119, 3, 2, 0,120, 3, 2, 0,121, 3, 2, 0,122, 3, + 2, 0,123, 3, 4, 0,124, 3, 4, 0,125, 3, 4, 0,126, 3, 4, 0,127, 3, 7, 0,128, 3, 7, 0,102, 2, 7, 0,129, 3, + 7, 0,130, 3, 7, 0,131, 3, 7, 0,132, 3, 7, 0,133, 3, 7, 0,215, 0, 7, 0,134, 3, 7, 0,135, 3, 7, 0,136, 3, + 7, 0,137, 3, 2, 0,138, 3, 0, 0,139, 3, 0, 0,140, 3, 0, 0,141, 3, 0, 0,142, 3, 7, 0,143, 3, 7, 0,144, 3, + 12, 0,145, 3, 12, 0,146, 3, 12, 0,147, 3, 12, 0,148, 3, 7, 0,149, 3, 2, 0,157, 2, 2, 0,150, 3, 7, 0,139, 2, + 4, 0,151, 3, 4, 0,152, 3,163, 0,153, 3, 2, 0,154, 3, 2, 0,247, 0, 7, 0,155, 3, 12, 0,156, 3, 12, 0,157, 3, + 12, 0,158, 3, 12, 0,159, 3,164, 0, 62, 1,165, 0,160, 3, 68, 0,161, 3, 2, 0,162, 3, 2, 0,163, 3, 2, 0,164, 3, + 2, 0,165, 3, 7, 0,131, 2, 2, 0,166, 3, 2, 0,167, 3,153, 0,168, 3,142, 0,169, 3,142, 0,170, 3, 4, 0,171, 3, + 4, 0,172, 3, 4, 0,173, 3, 4, 0, 70, 0, 12, 0,174, 3, 12, 0,175, 3, 12, 0,176, 3,166, 0, 14, 0,166, 0, 0, 0, +166, 0, 1, 0, 32, 0, 38, 0, 7, 0,252, 2, 7, 0, 67, 1, 7, 0,253, 2, 7, 0,245, 2, 0, 0, 20, 0, 4, 0,254, 2, + 4, 0,255, 2, 4, 0,177, 3, 2, 0, 17, 0, 2, 0,178, 3, 7, 0, 0, 3,167, 0, 12, 0,167, 0, 0, 0,167, 0, 1, 0, + 32, 0, 45, 0, 4, 0,179, 3, 4, 0,157, 2, 4, 0,180, 3, 4, 0, 17, 0, 4, 0,181, 3, 7, 0, 67, 1, 7, 0,182, 3, + 7, 0,183, 3, 7, 0,155, 2,164, 0, 40, 0, 4, 0, 19, 0, 2, 0,184, 3, 2, 0,185, 3, 2, 0,245, 2, 2, 0,186, 3, + 2, 0,187, 3, 2, 0,188, 3, 2, 0,189, 3, 2, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, 7, 0,194, 3, + 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, 7, 0,198, 3, 7, 0,199, 3, 7, 0,200, 3, 7, 0,201, 3, 7, 0,202, 3, + 7, 0,203, 3, 7, 0,204, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 37, 0, 7, 0,207, 3, 7, 0,208, 3, 7, 0,209, 3, + 7, 0,210, 3, 7, 0,211, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0,214, 3, 7, 0,215, 3, 7, 0,216, 3, 52, 0,165, 0, +168, 0,217, 3, 7, 0,218, 3, 4, 0,194, 2,169, 0, 5, 0, 68, 0,242, 1, 7, 0,219, 3, 7, 0,220, 3, 2, 0, 19, 0, + 2, 0,221, 3,170, 0, 9, 0,170, 0, 0, 0,170, 0, 1, 0, 4, 0,222, 3, 4, 0,223, 3, 4, 0,224, 3, 4, 0, 19, 0, + 4, 0,225, 3, 9, 0,226, 3, 9, 0,227, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, 4, 0,228, 3, + 4, 0,229, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,232, 3, 4, 0,233, 3, 4, 0,223, 3, 4, 0,157, 2, 4, 0, 57, 0, + 0, 0,234, 3, 0, 0,235, 3, 0, 0,236, 3, 0, 0,237, 3, 12, 0,238, 3,171, 0,239, 3, 9, 0,240, 3,172, 0, 1, 0, + 7, 0, 44, 2,163, 0, 30, 0, 4, 0, 19, 0, 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 4, 0,244, 3, 4, 0,245, 3, + 4, 0,246, 3, 4, 0,247, 3, 7, 0,248, 3, 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, 7, 0,253, 3, + 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, 7, 0, 1, 4, 7, 0, 2, 4, 7, 0, 3, 4, 7, 0, 4, 4, 7, 0, 5, 4, + 7, 0, 6, 4, 7, 0, 7, 4, 7, 0, 8, 4, 7, 0, 9, 4, 4, 0, 10, 4, 4, 0, 11, 4, 7, 0, 12, 4, 7, 0,134, 3, +165, 0, 50, 0, 4, 0,223, 3, 4, 0, 13, 4,173, 0, 14, 4,174, 0, 15, 4, 0, 0, 37, 0, 0, 0, 16, 4, 2, 0, 17, 4, + 7, 0, 18, 4, 0, 0, 19, 4, 7, 0, 20, 4, 7, 0, 21, 4, 7, 0, 22, 4, 7, 0, 23, 4, 7, 0, 24, 4, 7, 0, 25, 4, + 7, 0, 26, 4, 7, 0, 27, 4, 7, 0, 28, 4, 2, 0, 29, 4, 0, 0, 30, 4, 2, 0, 31, 4, 7, 0, 32, 4, 7, 0, 33, 4, + 0, 0, 34, 4, 4, 0,126, 0, 4, 0, 35, 4, 4, 0, 36, 4, 2, 0, 37, 4, 2, 0, 38, 4,172, 0, 39, 4, 4, 0, 40, 4, + 4, 0, 82, 0, 7, 0, 41, 4, 7, 0, 42, 4, 7, 0, 43, 4, 7, 0, 44, 4, 2, 0, 45, 4, 2, 0, 46, 4, 2, 0, 47, 4, + 2, 0, 48, 4, 2, 0, 49, 4, 2, 0, 50, 4, 2, 0, 51, 4, 2, 0, 52, 4,175, 0, 53, 4, 7, 0, 54, 4, 7, 0, 55, 4, +138, 0, 56, 4, 12, 0, 5, 3,169, 0, 57, 4,153, 0, 49, 0,152, 0, 58, 4, 2, 0, 17, 0, 2, 0, 59, 4, 2, 0, 60, 4, + 2, 0, 61, 4, 7, 0, 62, 4, 2, 0, 63, 4, 2, 0, 64, 4, 7, 0, 65, 4, 2, 0, 66, 4, 2, 0, 67, 4, 7, 0, 68, 4, + 7, 0, 69, 4, 7, 0, 70, 4, 7, 0, 71, 4, 7, 0, 72, 4, 7, 0, 73, 4, 4, 0, 74, 4, 7, 0, 75, 4, 7, 0, 76, 4, + 7, 0, 77, 4, 81, 0, 78, 4, 81, 0, 79, 4, 81, 0, 80, 4, 0, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, 36, 0, 80, 0, + 2, 0, 84, 4, 0, 0, 85, 4, 0, 0, 86, 4, 7, 0, 87, 4, 4, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, 4, 0, 91, 4, + 4, 0, 19, 0, 7, 0, 92, 4, 7, 0, 93, 4, 7, 0, 94, 4, 85, 0, 95, 4, 7, 0, 96, 4, 7, 0, 97, 4, 7, 0, 98, 4, + 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 4, 0,103, 4,176, 0, 73, 0, 27, 0, 31, 0, 39, 0, 75, 0, + 2, 0,175, 0, 2, 0, 71, 1, 2, 0,105, 1, 2, 0,104, 4, 7, 0,105, 4, 7, 0,106, 4, 7, 0,107, 4, 7, 0,108, 4, + 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,163, 1, 7, 0,165, 1, 7, 0,164, 1, 7, 0,113, 4, + 4, 0,114, 4, 7, 0,115, 4, 7, 0,116, 4, 7, 0,117, 4, 7, 0,118, 4, 7, 0,119, 4, 7, 0,120, 4, 7, 0,121, 4, + 2, 0,122, 4, 2, 0, 70, 1, 2, 0,123, 4, 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4, + 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, 7, 0,132, 4, 7, 0,133, 4, 7, 0,134, 4, 7, 0,135, 4, 7, 0,136, 4, + 7, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, 7, 0,140, 4, 2, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, 2, 0,144, 4, + 7, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, 7, 0,148, 4, 2, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, 2, 0,152, 4, + 7, 0,153, 4, 7, 0,154, 4, 7, 0,155, 4, 7, 0,156, 4, 2, 0,157, 4, 2, 0,158, 4, 2, 0,159, 4, 2, 0, 19, 0, + 7, 0,160, 4, 7, 0,161, 4, 36, 0, 80, 0, 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0,177, 0, 8, 0, +177, 0, 0, 0,177, 0, 1, 0, 4, 0,112, 3, 4, 0,162, 4, 4, 0, 19, 0, 2, 0,163, 4, 2, 0,164, 4, 32, 0,164, 0, +178, 0, 13, 0, 9, 0,165, 4, 9, 0,166, 4, 4, 0,167, 4, 4, 0,168, 4, 4, 0,169, 4, 4, 0,170, 4, 4, 0,171, 4, + 4, 0,172, 4, 4, 0,173, 4, 4, 0,174, 4, 4, 0,175, 4, 4, 0, 37, 0, 0, 0,176, 4,179, 0, 5, 0, 9, 0,177, 4, + 9, 0,178, 4, 4, 0,179, 4, 4, 0, 70, 0, 0, 0,180, 4,180, 0, 15, 0, 4, 0, 17, 0, 4, 0,181, 4, 4, 0,182, 4, + 4, 0,183, 4, 4, 0,184, 4, 4, 0,185, 4, 7, 0,186, 4, 4, 0,187, 4, 4, 0, 90, 0, 4, 0,188, 4, 4, 0,189, 4, + 4, 0,190, 4, 4, 0,191, 4, 4, 0,192, 4, 26, 0, 30, 0,181, 0, 7, 0, 4, 0,193, 4, 7, 0,194, 4, 7, 0,195, 4, + 7, 0,196, 4, 4, 0,197, 4, 2, 0, 19, 0, 2, 0, 37, 0,182, 0, 11, 0,182, 0, 0, 0,182, 0, 1, 0, 0, 0, 20, 0, + 67, 0,198, 4, 68, 0,199, 4, 4, 0,112, 3, 4, 0,200, 4, 4, 0,201, 4, 4, 0, 37, 0, 4, 0,202, 4, 4, 0,203, 4, +183, 0,134, 0,178, 0,204, 4,179, 0,205, 4,180, 0,206, 4, 4, 0, 18, 3, 4, 0,126, 0, 4, 0, 35, 4, 4, 0,207, 4, + 4, 0,208, 4, 4, 0,209, 4, 4, 0,210, 4, 2, 0, 19, 0, 2, 0,211, 4, 7, 0,102, 2, 7, 0,212, 4, 7, 0,213, 4, + 7, 0,214, 4, 7, 0,215, 4, 7, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, 2, 0,220, 4, 2, 0,246, 0, + 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0, 92, 1, 2, 0,106, 0, 2, 0,226, 4, + 2, 0,227, 4, 2, 0,228, 4, 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 2, 0,232, 4, 2, 0,233, 4, 2, 0,234, 4, + 2, 0, 93, 1, 2, 0,235, 4, 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 4, 0,239, 4, 4, 0, 70, 1, 4, 0,240, 4, + 2, 0,241, 4, 2, 0,242, 4, 2, 0,243, 4, 2, 0,122, 1, 2, 0,244, 4, 2, 0,245, 4, 2, 0,246, 4, 2, 0,247, 4, + 24, 0,248, 4, 24, 0,249, 4, 23, 0,250, 4, 12, 0,251, 4, 2, 0,252, 4, 2, 0, 37, 0, 7, 0,253, 4, 7, 0,254, 4, + 7, 0,255, 4, 7, 0, 0, 5, 4, 0, 1, 5, 7, 0, 2, 5, 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, 2, 0, 6, 5, + 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, 2, 0, 11, 5, 7, 0, 12, 5, 7, 0, 13, 5, 7, 0, 14, 5, + 2, 0, 15, 5, 2, 0, 16, 5, 2, 0, 17, 5, 2, 0, 18, 5, 2, 0, 19, 5, 2, 0, 20, 5, 2, 0, 21, 5, 2, 0, 22, 5, + 2, 0, 23, 5, 2, 0, 24, 5, 4, 0, 25, 5, 4, 0, 26, 5, 4, 0, 27, 5, 4, 0, 28, 5, 4, 0, 29, 5, 7, 0, 30, 5, + 4, 0, 31, 5, 4, 0, 32, 5, 4, 0, 33, 5, 4, 0, 34, 5, 7, 0, 35, 5, 7, 0, 36, 5, 7, 0, 37, 5, 7, 0, 38, 5, + 7, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, 7, 0, 42, 5, 7, 0, 43, 5, 0, 0, 44, 5, 0, 0, 45, 5, 4, 0, 46, 5, + 2, 0, 47, 5, 2, 0,239, 1, 0, 0, 48, 5, 7, 0, 49, 5, 7, 0, 50, 5, 4, 0, 51, 5, 4, 0, 52, 5, 7, 0, 53, 5, + 7, 0, 54, 5, 2, 0, 55, 5, 2, 0, 56, 5, 7, 0, 57, 5, 2, 0, 58, 5, 2, 0, 59, 5, 4, 0, 60, 5, 2, 0, 61, 5, + 2, 0, 62, 5, 2, 0, 63, 5, 2, 0, 64, 5, 7, 0, 65, 5, 7, 0, 70, 0, 42, 0, 66, 5, 0, 0, 67, 5,184, 0, 9, 0, +184, 0, 0, 0,184, 0, 1, 0, 0, 0, 20, 0, 2, 0, 68, 5, 2, 0, 69, 5, 2, 0, 70, 5, 2, 0, 43, 0, 7, 0, 71, 5, + 7, 0, 70, 0,185, 0, 7, 0, 2, 0,211, 2, 2, 0, 70, 1, 2, 0,109, 0, 2, 0, 72, 5, 7, 0, 73, 5, 7, 0, 70, 0, + 42, 0, 74, 5,186, 0, 5, 0, 7, 0, 75, 5, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 70, 0, 0, 0,239, 1,187, 0, 26, 0, + 7, 0,120, 4, 7, 0,121, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 76, 5, 2, 0,137, 1, 2, 0,123, 4, 2, 0,124, 4, + 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4,186, 0, 77, 5, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, + 2, 0,220, 4, 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4,185, 0, 78, 5, 2, 0, 79, 5, 2, 0,224, 4, + 2, 0,227, 4, 2, 0,228, 4,188, 0, 5, 0,188, 0, 0, 0,188, 0, 1, 0, 4, 0,222, 3, 0, 0,234, 3, 4, 0, 19, 0, +189, 0, 6, 0,190, 0, 80, 5, 4, 0, 81, 5, 4, 0, 82, 5, 9, 0, 83, 5, 0, 0, 84, 5, 4, 0, 37, 0,191, 0, 6, 0, +189, 0, 85, 5, 2, 0, 19, 0, 2, 0, 86, 5, 2, 0, 87, 5, 2, 0, 88, 5, 9, 0, 89, 5,192, 0, 4, 0, 2, 0,106, 0, + 2, 0,222, 2, 2, 0,228, 3, 2, 0, 90, 5,193, 0, 14, 0, 2, 0, 19, 0, 2, 0, 91, 5, 2, 0, 92, 5, 2, 0, 93, 5, +192, 0, 94, 5, 9, 0, 89, 5, 7, 0, 95, 5, 7, 0, 57, 0, 4, 0, 96, 5, 4, 0, 97, 5, 4, 0, 98, 5, 4, 0, 99, 5, + 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5,195, 0, 6, 0, +189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0,189, 0, 85, 5, + 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, 9, 0, 89, 5, +197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, 7, 0,114, 5, + 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, 2, 0, 96, 5, + 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, 2, 0,128, 5, + 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5,193, 0,136, 5, + 7, 0,137, 5, 7, 0,138, 5, 7, 0,139, 5, 2, 0,140, 5, 2, 0,141, 5, 0, 0,142, 5, 0, 0,143, 5, 0, 0,144, 5, + 0, 0,145, 5, 0, 0,146, 5, 0, 0,147, 5, 2, 0,148, 5, 7, 0,149, 5, 7, 0,150, 5, 7, 0,151, 5, 7, 0,152, 5, + 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, 0, 0,160, 5, + 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, 0, 0,168, 5, + 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, 2, 0,176, 5, + 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, 4, 0,183, 5, + 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, 7, 0,186, 5, + 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, 47, 0,238, 0, + 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, 4, 0,112, 3, + 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0,181, 0,200, 5, + 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, 2, 0,206, 5, + 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3,200, 0,212, 5, +204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5,205, 0, 35, 0, + 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, 7, 0,221, 5, + 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, 2, 0,227, 5, + 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, 72, 0,234, 5, +162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, 7, 0,241, 5, + 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, 2, 0,232, 5, + 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, 2, 0,253, 5, + 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, 7, 0,112, 0, + 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, 2, 0, 6, 6, + 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, 2, 0, 13, 6, + 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, 0, 0, 20, 6, + 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, 23, 0, 24, 6, + 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, 2, 0, 32, 6, + 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0,255, 5, + 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, 2, 0, 47, 6, + 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, 2, 0, 52, 6, + 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, 27, 0, 56, 6, +219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, + 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, 7, 0, 60, 6, +162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, 2, 0, 19, 0, + 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, 2, 0, 71, 6, + 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0, +220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, 2, 0, 81, 6, + 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, 4, 0, 88, 6, + 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, 2, 0,133, 0, + 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, 2, 0,239, 1, + 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, 7, 0,122, 1, + 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6,230, 0, 27, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, 4, 0,104, 6, + 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, 4, 0,110, 6, + 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, 4, 0,118, 6, + 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, 9, 0,124, 6, + 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, 4, 0, 43, 0, + 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,213, 0, 44, 6, + 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, + 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, 9, 0,135, 6, + 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, 2, 0,140, 6, + 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, + 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, 0, 0, 62, 6, + 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, 4, 0,141, 6, + 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, 7, 0,134, 6, + 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, 2, 0,150, 6, + 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, 57, 0,157, 6, +237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, 4, 0, 17, 0, +238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 4, 0, 17, 0, + 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, 0, 0,164, 6, + 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, 2, 0,169, 6, + 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, 7, 0,175, 6, + 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6,241, 0,179, 6, +241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, 2, 0,187, 6, + 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, 0, 0,194, 6, + 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0,244, 0, 8, 0, + 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, 7, 0, 37, 0, +245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6,243, 0,213, 6, +243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6,243, 0,221, 6, +244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, 0, 0,227, 6, + 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, 0, 0,235, 6, + 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, 0, 0,243, 6, + 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, 0, 0,251, 6, + 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, 0, 0, 3, 7, + 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, 0, 0, 11, 7, + 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, 0, 0, 19, 7, + 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, 0, 0, 27, 7, + 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, 0, 0, 35, 7, + 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, 2, 0, 37, 0, +248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7,246, 0, 41, 7, +246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7,246, 0, 49, 7, +246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, 4, 0, 57, 7, + 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2,250, 0, 73, 0, + 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, 0, 0, 65, 7, + 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, 4, 0, 72, 7, + 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, 4, 0, 80, 7, + 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, 12, 0, 87, 7, + 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, + 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, 2, 0,103, 7, + 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, 2, 0,111, 7, + 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, 2, 0,119, 7, + 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, 2, 0,141, 5, + 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, 46, 0,134, 0, + 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, 2, 0,137, 7, + 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7,251, 0, 5, 0, +251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0,252, 0, 1, 0, +251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0,253, 0, 1, 0, +254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, 2, 0,153, 7, + 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, 4, 0,159, 7, +253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, 0, 1, 22, 0, + 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, 23, 0, 52, 0, + 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, 2, 0,159, 6, + 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, 2, 1, 0, 0, + 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, 2, 0,178, 7, + 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, 12, 0,180, 7, + 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, 2, 0,186, 7, + 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, 4, 0,192, 7, + 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, 6, 1,197, 7, + 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, 4, 0,109, 6, + 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, 7, 0,206, 7, + 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, 49, 0,137, 0, + 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, 4, 0, 23, 0, + 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, 4, 0,214, 7, + 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, 57, 0,221, 7, + 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, 9, 0,228, 0, + 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, 13, 1, 0, 0, + 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, 4, 0, 88, 0, + 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, 4, 0,230, 7, + 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, 49, 0,137, 0, + 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, 14, 1,240, 7, + 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, 4, 0,248, 7, + 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7,201, 0, 6, 0, + 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, 7, 0, 2, 8, + 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, 7, 0, 8, 8, + 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, 7, 0, 15, 8, + 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, 20, 1, 2, 0, + 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, 4, 0, 24, 8, + 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 23, 1, 8, 0, + 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, 7, 0,126, 0, + 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 2, 0, 29, 4, + 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, 7, 0, 29, 8, + 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, 7, 0, 35, 8, + 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, 2, 0, 42, 8, + 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, 2, 0, 26, 2, + 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, 26, 1, 0, 0, + 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, + 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2,227, 0, 5, 0, + 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, 4, 0, 55, 8, +227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 22, 0, + 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, 29, 1, 4, 0, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, 7, 0, 77, 1, + 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, 0, 0, 64, 8, + 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, 4, 0, 17, 0, + 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, 35, 1, 6, 0, + 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, 0, 0, 20, 0, + 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, 4, 0, 67, 8, + 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, 4, 0, 73, 8, + 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, 0, 0, 77, 8, + 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, 2, 0, 80, 8, + 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, 32, 0, 45, 0, + 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 0, 85, 8, + 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, 4, 0, 91, 8, + 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, 42, 1, 18, 0, + 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, 2, 0, 79, 8, + 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, 2, 0, 15, 0, + 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0,160, 0,100, 8, + 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, 2, 0,103, 8, + 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, 4, 0, 89, 0, + 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, 2, 0,112, 8, + 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, 0, 0, 20, 0, + 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, 2, 0, 19, 0, + 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, 0, 0, 65, 8, + 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, 7, 0,120, 8, + 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, 55, 1, 10, 0, + 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, 2, 0, 64, 0, + 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, 7, 0,236, 2, + 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0,244, 2, + 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, 0, 0,134, 8, + 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, 2, 0, 64, 0, + 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, 7, 0,138, 8, + 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, 2, 0, 43, 0, + 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0,143, 8, + 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0,145, 8, + 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, 65, 1, 2, 0, + 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, 32, 0, 51, 3, + 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 79, 8, + 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, 7, 0,150, 8, + 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, 15, 1, 12, 0, + 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,156, 8, + 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, 7, 0,161, 8, + 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, 0, 0,222, 0, + 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, 7, 0,159, 8, + 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, 2, 0,107, 8, + 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, 69, 1, 1, 0, + 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, 4, 0,131, 0, + 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, 7, 0,176, 8, + 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, 7, 0, 77, 1, + 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, 7, 0,188, 8, + 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, 12, 0,190, 8, + 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, 2, 0,193, 8, + 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, 4, 0,201, 8, + 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, 4, 0,192, 2, + 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, 4, 0,201, 8, + 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, 0, 0, 20, 0, + 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, 4, 0,200, 8, + 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, 9, 0,217, 8, + 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, 2, 0, 37, 0, + 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, 7, 0,225, 8, + 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, 2, 0, 19, 0, + 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, 9, 0,237, 8, + 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, 2, 0,240, 8, + 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, 7, 0,247, 8, + 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3,247, 0,250, 8, +160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, 4, 0,253, 8, +217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, 0, 0, 70, 1, + 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, 80, 1, 8, 0, + 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, 4, 0, 4, 9, + 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, 82, 1, 0, 0, + 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, 7, 0, 8, 9, + 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, 83, 1, 1, 0, + 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, 84, 1, 7, 0, + 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, 85, 1, 15, 0, + 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, 0, 0, 22, 9, + 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, 86, 1, 6, 0, + 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, 32, 0, 12, 9, + 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, + 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, 2, 0, 43, 0, + 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, + 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, 7, 0,127, 8, + 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, 0, 0,251, 2, + 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, 32, 0, 12, 9, + 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, 32, 0,213, 8, + 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, 7, 0, 43, 9, + 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, 32, 0, 12, 9, + 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, 0, 0,251, 2, + 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, 7, 0, 51, 9, + 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, + 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, + 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, + 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, 32, 0, 12, 9, + 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, 32, 0, 51, 3, + 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0,105, 1, 22, 0, +105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0,160, 0,100, 8, + 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0,237, 2, + 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, 7, 0, 44, 2, + 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9,107, 1, 18, 0, +107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 76, 9, + 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, 4, 0, 83, 9, +107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, 0, 0, 87, 9, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, 2, 0,199, 7, + 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, 7, 0, 91, 9, + 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, 24, 0, 99, 9, + 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0,108, 1, 1, 0, +109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, 4, 0,112, 9, + 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, 4, 0,120, 9, + 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, 0, 0,124, 9, + 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, 2, 0,127, 9, + 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, 2, 0,131, 9, + 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, 7, 0,109, 0, + 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, 7, 0,140, 9, + 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, 0, 0, 6, 2, + 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, 7, 0,143, 9, + 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, 2, 0,149, 9, + 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, 0, 0,166, 0, + 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, 0, 0,156, 9, + 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, 9, 0,161, 9, + 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, 0, 0,106, 0, + 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, 7, 0,125, 0, + 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, 2, 0,170, 9, + 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, + 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, 7, 0,175, 9, + 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, 4, 0, 64, 0, + 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9,132, 1, 4, 0, + 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, 64, 0,178, 9, + 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, 7, 0,192, 9, + 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, 4, 0, 17, 0, + 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, 0, 0, 20, 0, + 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, 9, 0,203, 9, +134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, 7, 0,153, 2, + 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, 7, 0,186, 5, + 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, 7, 0,213, 9, + 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, 2, 0, 19, 0, + 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, 2, 0,205, 2, + 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8,136, 1,218, 9, + 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, 7, 0,214, 9, + 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, 39, 0, 75, 0, +143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, 2, 0,138, 3, + 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, 2, 0,223, 4, + 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, 2, 0, 45, 8, + 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, 2, 0,243, 9, + 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, 7, 0,251, 9, + 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, 7, 0,255, 9, + 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, 7, 0, 2, 10, + 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, 7, 0, 9, 10, + 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, + 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, 7, 0, 23, 10, + 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, 7, 0, 27, 10, + 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, 7, 0, 35, 10, + 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, 32, 0, 42, 10, + 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,142, 1, 45, 10, +141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, 12, 0, 50, 10, +134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, 0, 0, 20, 0, + 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, 4, 0, 57, 10, + 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, 2, 0, 64, 10, + 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10,146, 1, 70, 10, + 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, 7, 0, 74, 10, + 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, 7, 0, 79, 10, + 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, 7, 0, 24, 4, + 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, 2, 0, 90, 10, + 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, 7, 0, 95, 10, + 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, 7, 0, 5, 0, + 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, 4, 0,253, 0, + 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, 4, 0, 19, 0, +151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, 2, 0,105, 10, + 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, 2, 0,108, 10, + 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0,110, 10, + 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0,154, 1, 18, 0, + 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, 12, 0,120, 10, + 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, 4, 0, 70, 0, + 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, 4, 0, 37, 0, +215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, 2, 0,135, 10, + 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10,158, 1,140, 10, +159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, 12, 0,146, 10, + 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, 2, 0, 17, 0, + 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, 2, 0,155, 10, + 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, 2, 0,158, 10, + 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0,156, 1, 1, 0, + 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0,223, 0, 1, 0, + 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10,223, 0,167, 10, + 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, + 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, 2, 0,150, 10, + 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, 2, 0,175, 10, + 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, 0, 0,234, 3, + 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, 4, 0, 70, 1, + 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, 4, 0, 19, 0, +167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0,167, 1, 2, 0, + 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, 2, 0,188, 10, + 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, 4, 0, 37, 0, +172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10,173, 1, 9, 0, +173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, 4, 0, 37, 0, + 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, 4, 0, 19, 0, +175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, 78, 1, 3, 9, +174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, 2, 0, 16, 1, + 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10,178, 1, 4, 0, +178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, 12, 0,204, 10, +160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, 7, 0, 88, 0, + 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 2, 0,208, 10, + 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0,180, 1, 1, 0, + 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, 27, 0,133, 6, + 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10,182, 1, 7, 0, +182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10,183, 1, 5, 0, +183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3,160, 0,216, 10, +178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, 2, 0,221, 10, + 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0,185, 1, 1, 0, + 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, 7, 0,226, 10, + 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0,185, 1,224, 10, + 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10,189, 1, 5, 0, +185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, 7, 0,169, 8, + 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0,191, 1, 0, 0, +191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, 4, 0,238, 10, + 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, 4, 0,240, 10, + 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, 7, 0,244, 10, + 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, 7, 0,251, 10, + 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11,192, 1, 2, 11, + 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, 7, 0, 8, 11, + 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, 7, 0, 14, 11, + 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, 2, 0, 20, 11, + 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11,169, 0, 57, 4, +123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, 2, 0, 29, 11, + 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3,142, 0, 17, 3, + 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, 2, 0, 17, 0, + 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; From dd8ea0c61ac7dfc4827781118388ac9ac35c7d58 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sat, 24 Oct 2009 11:25:05 +0000 Subject: [PATCH 167/412] Bugfix to restore shape key add creating a new shape based on the shape visible in the 3d view, rather than a copy of the basis shape. --- source/blender/editors/include/ED_object.h | 2 - .../blender/editors/object/object_shapekey.c | 125 ++++++++---------- 2 files changed, 55 insertions(+), 72 deletions(-) diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index 8f74752ec8c..b136baa6bdb 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -102,8 +102,6 @@ void mouse_lattice(struct bContext *C, short mval[2], int extend); void undo_push_lattice(struct bContext *C, char *name); /* object_shapekey.c */ -void insert_shapekey(struct Scene *scene, struct Object *ob); -void delete_key(struct Scene *scene, struct Object *ob); void key_to_mesh(struct KeyBlock *kb, struct Mesh *me); void mesh_to_key(struct Mesh *me, struct KeyBlock *kb); void key_to_latt(struct KeyBlock *kb, struct Lattice *lt); diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 4d4dd7a0738..1d4bc14c5de 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -80,41 +80,6 @@ #include "object_intern.h" -#if 0 // XXX old animation system -static void default_key_ipo(Scene *scene, Key *key) -{ - IpoCurve *icu; - BezTriple *bezt; - - key->ipo= add_ipo(scene, "KeyIpo", ID_KE); - - icu= MEM_callocN(sizeof(IpoCurve), "ipocurve"); - - icu->blocktype= ID_KE; - icu->adrcode= KEY_SPEED; - icu->flag= IPO_VISIBLE|IPO_SELECT|IPO_AUTO_HORIZ; - set_icu_vars(icu); - - BLI_addtail( &(key->ipo->curve), icu); - - icu->bezt= bezt= MEM_callocN(2*sizeof(BezTriple), "defaultipo"); - icu->totvert= 2; - - bezt->hide= IPO_BEZ; - bezt->f1=bezt->f2= bezt->f3= SELECT; - bezt->h1= bezt->h2= HD_AUTO; - bezt++; - bezt->vec[1][0]= 100.0; - bezt->vec[1][1]= 1.0; - bezt->hide= IPO_BEZ; - bezt->f1=bezt->f2= bezt->f3= SELECT; - bezt->h1= bezt->h2= HD_AUTO; - - calchandles_ipocurve(icu); -} -#endif // XXX old animation system - - /************************* Mesh ************************/ void mesh_to_key(Mesh *me, KeyBlock *kb) @@ -197,24 +162,30 @@ static KeyBlock *add_keyblock(Scene *scene, Key *key) return kb; } -void insert_meshkey(Scene *scene, Mesh *me, short rel) +static void insert_meshkey(Scene *scene, Object *ob) { - Key *key; + Mesh *me= ob->data; + Key *key= me->key;; KeyBlock *kb; + int newkey= 0; - if(me->key==NULL) { - me->key= add_key( (ID *)me); - - if(rel) - me->key->type = KEY_RELATIVE; -// else -// default_key_ipo(scene, me->key); // XXX old animation system + if(key == NULL) { + key= me->key= add_key((ID *)me); + key->type= KEY_RELATIVE; + newkey= 1; } - key= me->key; kb= add_keyblock(scene, key); - mesh_to_key(me, kb); + if(newkey) { + /* create from mesh */ + mesh_to_key(me, kb); + } + else { + /* copy from current values */ + kb->data= do_ob_key(scene, ob); + kb->totelem= me->totvert; + } } /************************* Lattice ************************/ @@ -255,24 +226,31 @@ void key_to_latt(KeyBlock *kb, Lattice *lt) for(a=0; avec, fp); } - } -/* exported to python... hrms, should not, use object levels! (ton) */ -void insert_lattkey(Scene *scene, Lattice *lt, short rel) +static void insert_lattkey(Scene *scene, Object *ob) { - Key *key; + Lattice *lt= ob->data; + Key *key= lt->key; KeyBlock *kb; + int newkey= 0; - if(lt->key==NULL) { - lt->key= add_key( (ID *)lt); -// default_key_ipo(scene, lt->key); // XXX old animation system + if(key==NULL) { + key= lt->key= add_key( (ID *)lt); + key->type= KEY_RELATIVE; } - key= lt->key; - + kb= add_keyblock(scene, key); - latt_to_key(lt, kb); + if(newkey) { + /* create from lattice */ + latt_to_key(lt, kb); + } + else { + /* copy from current values */ + kb->totelem= lt->pntsu*lt->pntsv*lt->pntsw; + kb->data= do_ob_key(scene, ob); + } } /************************* Curve ************************/ @@ -379,25 +357,32 @@ void key_to_curve(KeyBlock *kb, Curve *cu, ListBase *nurb) } -void insert_curvekey(Scene *scene, Curve *cu, short rel) +static void insert_curvekey(Scene *scene, Object *ob) { - Key *key; + Curve *cu= ob->data; + Key *key= cu->key; KeyBlock *kb; ListBase *lb= (cu->editnurb)? cu->editnurb: &cu->nurb; + int newkey= 0; - if(cu->key==NULL) { - cu->key= add_key( (ID *)cu); - - if(rel) - cu->key->type = KEY_RELATIVE; -// else -// default_key_ipo(scene, cu->key); // XXX old animation system + if(key==NULL) { + key= cu->key= add_key( (ID *)cu); + key->type = KEY_RELATIVE; + newkey= 1; } - key= cu->key; kb= add_keyblock(scene, key); - curve_to_key(cu, kb, lb); + if(newkey) { + /* create from curve */ + curve_to_key(cu, kb, lb); + } + else { + /* copy from current values */ + kb->totelem= count_curveverts(lb); + kb->data= do_ob_key(scene, ob); + } + } /*********************** add shape key ***********************/ @@ -406,9 +391,9 @@ static void ED_object_shape_key_add(bContext *C, Scene *scene, Object *ob) { Key *key; - if(ob->type==OB_MESH) insert_meshkey(scene, ob->data, 1); - else if ELEM(ob->type, OB_CURVE, OB_SURF) insert_curvekey(scene, ob->data, 1); - else if(ob->type==OB_LATTICE) insert_lattkey(scene, ob->data, 1); + if(ob->type==OB_MESH) insert_meshkey(scene, ob); + else if ELEM(ob->type, OB_CURVE, OB_SURF) insert_curvekey(scene, ob); + else if(ob->type==OB_LATTICE) insert_lattkey(scene, ob); key= ob_get_key(ob); ob->shapenr= BLI_countlist(&key->block); From f34cdb4e0b6ac06b94b8ee1e5f8147d9124d9cde Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Sat, 24 Oct 2009 14:22:46 +0000 Subject: [PATCH 168/412] Removing unnecessary semicolon, causing compile problems with MSVC. --- source/blender/editors/object/object_shapekey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index 1d4bc14c5de..c9fb3351af9 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -165,7 +165,7 @@ static KeyBlock *add_keyblock(Scene *scene, Key *key) static void insert_meshkey(Scene *scene, Object *ob) { Mesh *me= ob->data; - Key *key= me->key;; + Key *key= me->key; KeyBlock *kb; int newkey= 0; From bf5f63f09be085ebaec7ded41ff1991e4406f5c5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 24 Oct 2009 22:41:40 +0000 Subject: [PATCH 169/412] bugfix [#19719] segfault assigning a different mesh to object in edit mode --- source/blender/makesrna/intern/rna_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 13ecfd91114..28e4e7fc443 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -183,7 +183,7 @@ static void rna_Object_data_set(PointerRNA *ptr, PointerRNA value) Object *ob= (Object*)ptr->data; ID *id= value.data; - if(ob->type == OB_EMPTY || id == NULL) + if(ob->type == OB_EMPTY || id == NULL || ob->mode & OB_MODE_EDIT) return; if(ob->type == OB_MESH) { From 4aa7ddfe33716b16d8c0646d0049c38a13835df3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 24 Oct 2009 23:26:28 +0000 Subject: [PATCH 170/412] description patch from Ron Walker --- .../blender/editors/animation/anim_markers.c | 7 +++++++ .../blender/editors/physics/physics_fluid.c | 1 + source/blender/editors/sound/sound_ops.c | 4 +++- .../editors/space_logic/logic_buttons.c | 1 + .../editors/space_script/script_edit.c | 2 ++ source/blender/editors/uvedit/uvedit_ops.c | 21 ++++++++++++++++++- 6 files changed, 34 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c index f4ecb9d5def..54d569c10dd 100644 --- a/source/blender/editors/animation/anim_markers.c +++ b/source/blender/editors/animation/anim_markers.c @@ -359,6 +359,7 @@ static void MARKER_OT_add(wmOperatorType *ot) { /* identifiers */ ot->name= "Add Time Marker"; + ot->description= "Add a new time marker."; ot->idname= "MARKER_OT_add"; /* api callbacks */ @@ -612,6 +613,7 @@ static void MARKER_OT_move(wmOperatorType *ot) { /* identifiers */ ot->name= "Move Time Marker"; + ot->description= "Move selected time marker(s)."; ot->idname= "MARKER_OT_move"; /* api callbacks */ @@ -695,6 +697,7 @@ static void MARKER_OT_duplicate(wmOperatorType *ot) { /* identifiers */ ot->name= "Duplicate Time Marker"; + ot->description= "Duplicate selected time marker(s)."; ot->idname= "MARKER_OT_duplicate"; /* api callbacks */ @@ -771,6 +774,7 @@ static void MARKER_OT_select(wmOperatorType *ot) { /* identifiers */ ot->name= "Select Time Marker"; + ot->description= "Select time marker(s)."; ot->idname= "MARKER_OT_select"; /* api callbacks */ @@ -852,6 +856,7 @@ static void MARKER_OT_select_border(wmOperatorType *ot) { /* identifiers */ ot->name= "Marker Border select"; + ot->description= "Select all time markers using border selection."; ot->idname= "MARKER_OT_select_border"; /* api callbacks */ @@ -917,6 +922,7 @@ static void MARKER_OT_select_all_toggle(wmOperatorType *ot) { /* identifiers */ ot->name= "(De)select all markers"; + ot->description= "(de)select all time markers."; ot->idname= "MARKER_OT_select_all_toggle"; /* api callbacks */ @@ -963,6 +969,7 @@ static void MARKER_OT_delete(wmOperatorType *ot) { /* identifiers */ ot->name= "Delete Markers"; + ot->description= "Delete selected time marker(s)."; ot->idname= "MARKER_OT_delete"; /* api callbacks */ diff --git a/source/blender/editors/physics/physics_fluid.c b/source/blender/editors/physics/physics_fluid.c index 126c21a554b..b72c4991094 100644 --- a/source/blender/editors/physics/physics_fluid.c +++ b/source/blender/editors/physics/physics_fluid.c @@ -1195,6 +1195,7 @@ void FLUID_OT_bake(wmOperatorType *ot) { /* identifiers */ ot->name= "Fluid Simulation Bake"; + ot->description= "Bake fluid simulation."; ot->idname= "FLUID_OT_bake"; /* api callbacks */ diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c index 1121a3bcbcd..3b42fc7b382 100644 --- a/source/blender/editors/sound/sound_ops.c +++ b/source/blender/editors/sound/sound_ops.c @@ -103,8 +103,8 @@ void SOUND_OT_open(wmOperatorType *ot) { /* identifiers */ ot->name= "Open Sound"; + ot->description= "Load a sound file."; ot->idname= "SOUND_OT_open"; - ot->description= "Load a sound file into blender"; /* api callbacks */ ot->exec= open_exec; @@ -154,6 +154,7 @@ void SOUND_OT_pack(wmOperatorType *ot) { /* identifiers */ ot->name= "Pack Sound"; + ot->description= "Pack the sound into the current blend file."; ot->idname= "SOUND_OT_pack"; /* api callbacks */ @@ -269,6 +270,7 @@ void SOUND_OT_unpack(wmOperatorType *ot) { /* identifiers */ ot->name= "Unpack Sound"; + ot->description= "Unpack the sound to the samples filename."; ot->idname= "SOUND_OT_unpack"; /* api callbacks */ diff --git a/source/blender/editors/space_logic/logic_buttons.c b/source/blender/editors/space_logic/logic_buttons.c index 5761432ee29..c8f96fe3373 100644 --- a/source/blender/editors/space_logic/logic_buttons.c +++ b/source/blender/editors/space_logic/logic_buttons.c @@ -133,6 +133,7 @@ static int logic_properties(bContext *C, wmOperator *op) void LOGIC_OT_properties(wmOperatorType *ot) { ot->name= "Properties"; + ot->description= "Toggle display properties panel."; ot->idname= "LOGIC_OT_properties"; ot->exec= logic_properties; diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c index c17793b28f8..df6f932acdf 100644 --- a/source/blender/editors/space_script/script_edit.c +++ b/source/blender/editors/space_script/script_edit.c @@ -79,6 +79,7 @@ void SCRIPT_OT_python_file_run(wmOperatorType *ot) { /* identifiers */ ot->name= "Run python file"; + ot->description= "Run Python file."; ot->idname= "SCRIPT_OT_python_file_run"; /* api callbacks */ @@ -111,6 +112,7 @@ void SCRIPT_OT_python_run_ui_scripts(wmOperatorType *ot) { /* identifiers */ ot->name= "Reload Python Interface"; + ot->description= "Reload Python interface."; ot->idname= "SCRIPT_OT_python_run_ui_scripts"; /* api callbacks */ diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 1641d1c8fac..66f67030d7f 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -1044,6 +1044,7 @@ void UV_OT_align(wmOperatorType *ot) /* identifiers */ ot->name= "Align"; + ot->description= "Align selected UV vertices to an axis."; ot->idname= "UV_OT_align"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1068,6 +1069,7 @@ void UV_OT_weld(wmOperatorType *ot) { /* identifiers */ ot->name= "Weld"; + ot->description= "Weld selected UV vertices together."; ot->idname= "UV_OT_weld"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1253,6 +1255,7 @@ void UV_OT_stitch(wmOperatorType *ot) { /* identifiers */ ot->name= "Stitch"; + ot->description= "Stitch selected UV vertices by proximity."; ot->idname= "UV_OT_stitch"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1309,6 +1312,7 @@ void UV_OT_select_inverse(wmOperatorType *ot) { /* identifiers */ ot->name= "Select Inverse"; + ot->description= "Select inverse of (un)selected UV vertices."; ot->idname= "UV_OT_select_inverse"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1379,6 +1383,7 @@ void UV_OT_select_all_toggle(wmOperatorType *ot) { /* identifiers */ ot->name= "Select or Deselect All"; + ot->description= "(de)select all UV vertices."; ot->idname= "UV_OT_select_all_toggle"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1711,6 +1716,7 @@ void UV_OT_select(wmOperatorType *ot) { /* identifiers */ ot->name= "Select"; + ot->description= "Select UV vertice."; ot->idname= "UV_OT_select"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1759,6 +1765,7 @@ void UV_OT_select_loop(wmOperatorType *ot) { /* identifiers */ ot->name= "Loop Select"; + ot->description= "Select a loop of connected UV vertices."; ot->idname= "UV_OT_select_loop"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1808,6 +1815,7 @@ void UV_OT_select_linked(wmOperatorType *ot) { /* identifiers */ ot->name= "Select Linked"; + ot->description= "Select all UV vertices linked to the active UV map."; ot->idname= "UV_OT_select_linked"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -1864,6 +1872,7 @@ void UV_OT_unlink_selection(wmOperatorType *ot) { /* identifiers */ ot->name= "Unlink Selection"; + ot->description= "Unlink selected UV vertices from active UV map."; ot->idname= "UV_OT_unlink_selection"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2144,6 +2153,7 @@ void UV_OT_select_border(wmOperatorType *ot) { /* identifiers */ ot->name= "Border Select"; + ot->description= "Select UV vertices using border selection."; ot->idname= "UV_OT_select_border"; /* api callbacks */ @@ -2235,6 +2245,7 @@ void UV_OT_circle_select(wmOperatorType *ot) { /* identifiers */ ot->name= "Circle Select"; + ot->description= "Select UV vertices using circle selection."; ot->idname= "UV_OT_circle_select"; /* api callbacks */ @@ -2310,6 +2321,7 @@ void UV_OT_snap_cursor(wmOperatorType *ot) /* identifiers */ ot->name= "Snap Cursor"; + ot->description= "Snap cursor to target type."; ot->idname= "UV_OT_snap_cursor"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2551,6 +2563,7 @@ void UV_OT_snap_selection(wmOperatorType *ot) /* identifiers */ ot->name= "Snap Selection"; + ot->description= "Snap selected UV vertices to target type."; ot->idname= "UV_OT_snap_selection"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2605,6 +2618,7 @@ void UV_OT_pin(wmOperatorType *ot) { /* identifiers */ ot->name= "Pin"; + ot->description= "Set/clear selected UV vertices as anchored between multiple unwrap operations."; ot->idname= "UV_OT_pin"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2650,6 +2664,7 @@ void UV_OT_select_pinned(wmOperatorType *ot) { /* identifiers */ ot->name= "Selected Pinned"; + ot->description= "Select all pinned UV vertices."; ot->idname= "UV_OT_select_pinned"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2791,6 +2806,7 @@ void UV_OT_hide(wmOperatorType *ot) { /* identifiers */ ot->name= "Hide Selected"; + ot->description= "Hide (un)selected UV vertices."; ot->idname= "UV_OT_hide"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2924,6 +2940,7 @@ void UV_OT_reveal(wmOperatorType *ot) { /* identifiers */ ot->name= "Reveal Hidden"; + ot->description= "Reveal all hidden UV vertices."; ot->idname= "UV_OT_reveal"; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; @@ -2965,7 +2982,8 @@ static int set_2d_cursor_invoke(bContext *C, wmOperator *op, wmEvent *event) void UV_OT_cursor_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set 3D Cursor"; + ot->name= "Set 3D Cursor";//Should this be 2d? + ot->description= "Set 2D cursor location."; ot->idname= "UV_OT_cursor_set"; /* api callbacks */ @@ -3031,6 +3049,7 @@ void UV_OT_tile_set(wmOperatorType *ot) { /* identifiers */ ot->name= "Set Tile"; + ot->description= "Set UV image tile coordinates."; ot->idname= "UV_OT_tile_set"; /* api callbacks */ From 4815e07b6f59cb8f1a1f2490173480eff17974da Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Sun, 25 Oct 2009 00:24:56 +0000 Subject: [PATCH 171/412] Fix minor typos. --- source/blender/editors/uvedit/uvedit_ops.c | 2 +- source/blender/makesrna/intern/rna_userdef.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 66f67030d7f..8eef80d2912 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -2982,7 +2982,7 @@ static int set_2d_cursor_invoke(bContext *C, wmOperator *op, wmEvent *event) void UV_OT_cursor_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set 3D Cursor";//Should this be 2d? + ot->name= "Set 2D Cursor"; ot->description= "Set 2D cursor location."; ot->idname= "UV_OT_cursor_set"; diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index f9192a9473e..c23e190b535 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -593,7 +593,7 @@ static void rna_def_userdef_theme_spaces_edge(StructRNA *srna) prop= RNA_def_property(srna, "edge_select", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "edge Select", ""); + RNA_def_property_ui_text(prop, "Edge Select", ""); RNA_def_property_update(prop, 0, "rna_userdef_update"); prop= RNA_def_property(srna, "edge_seam", PROP_FLOAT, PROP_COLOR); From c90e05bb42668f0c99cf313b179c00a1380cb569 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 25 Oct 2009 03:47:14 +0000 Subject: [PATCH 172/412] Toolbar Fixes: * Restored the Grease Pencil tools to the toolbar Probably, if the reason they were commented out before was so that the repeat stuff is visible, we can swap the order of those two. Otherwise, it's good to have somewhere for the operators now (so that the hotkeys can be found) * Hotkey displays in the tooltips now show the keymodifier too For example, "D LeftMouse" or "Ctrl D LeftMouse" for the Grease Pencil operators, instead of just "LeftMouse" or "Ctrl LeftMouse". --- release/scripts/ui/space_view3d_toolbar.py | 80 +++++++++---------- .../blender/windowmanager/intern/wm_keymap.c | 5 ++ 2 files changed, 45 insertions(+), 40 deletions(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index a552bb7de14..65802744034 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -38,11 +38,11 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): col.itemO("anim.insert_keyframe_menu", text="Insert") col.itemO("anim.delete_keyframe_v3d", text="Remove") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -91,11 +91,11 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("mesh.uvs_rotate") col.itemO("mesh.uvs_mirror") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -150,11 +150,11 @@ class VIEW3D_PT_tools_curveedit(View3DPanel): col.itemO("curve.extrude") col.itemO("curve.subdivide") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -189,11 +189,11 @@ class VIEW3D_PT_tools_surfaceedit(View3DPanel): col.itemO("curve.extrude") col.itemO("curve.subdivide") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -252,11 +252,11 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col.itemL(text="Modeling:") col.itemO("armature.extrude") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -282,11 +282,11 @@ class VIEW3D_PT_tools_mballedit(View3DPanel): col.itemO("tfm.rotate") col.itemO("tfm.resize", text="Scale") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -309,11 +309,11 @@ class VIEW3D_PT_tools_latticeedit(View3DPanel): col.itemO("tfm.rotate") col.itemO("tfm.resize", text="Scale") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") @@ -359,11 +359,11 @@ class VIEW3D_PT_tools_posemode(View3DPanel): col.itemO("pose.push", text="Push") col.itemO("pose.breakdown", text="Breakdowner") -# col = layout.column(align=True) -# col.itemL(text="Grease Pencil:") -# col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") -# col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") -# col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") col = layout.column(align=True) col.itemL(text="Repeat:") diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c index 3caca041be7..48262e40ea7 100644 --- a/source/blender/windowmanager/intern/wm_keymap.c +++ b/source/blender/windowmanager/intern/wm_keymap.c @@ -306,6 +306,11 @@ char *WM_keymap_item_to_string(wmKeyMapItem *kmi, char *str, int len) if(kmi->oskey) strcat(buf, "Cmd "); + + if(kmi->keymodifier) { + strcat(buf, WM_key_event_string(kmi->keymodifier)); + strcat(buf, " "); + } strcat(buf, WM_key_event_string(kmi->type)); BLI_strncpy(str, buf, len); From 3af933325113a4075856e8d4287c54019c7cb495 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 25 Oct 2009 05:33:35 +0000 Subject: [PATCH 173/412] Fix for crash when doing File -> Open, File -> New (without closing the FileBrowser first) --- source/blender/windowmanager/intern/wm_cursors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c index e2aedf42bd8..df483f9013e 100644 --- a/source/blender/windowmanager/intern/wm_cursors.c +++ b/source/blender/windowmanager/intern/wm_cursors.c @@ -181,7 +181,7 @@ void WM_cursor_grab(wmWindow *win, int wrap, int hide, int *bounds) void WM_cursor_ungrab(wmWindow *win) { if ((G.f & G_DEBUG) == 0) - if(win) + if(win && win->ghostwin) GHOST_SetCursorGrab(win->ghostwin, GHOST_kGrabDisable, NULL); } From 538697719ac296738a0349a4fd75d18930d81744 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 26 Oct 2009 03:35:37 +0000 Subject: [PATCH 174/412] Bugreports #19724 and #19725 for Lasso Select Fixes for these were provided by the submitter, Clark Tucker (ctucker_toc). Thanks! - #19724: Fix for problems with lasso select with 'occlude background geometry' turned off. Removed a duplicate call to ED_view3d_init_mats_rv3d(). (NOTE: I couldn't reproduce the error on my system, but the duplicate call does look rather fishy. Removing it doesn't seem to have any negative effects at least) - #19725: Lasso select does not update 'selected vertex count' in 'INFO bar'. Added a notifier here to get the counter refreshed. --- source/blender/editors/space_view3d/view3d_select.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 12b26e1d815..1f186f0d931 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -146,10 +146,6 @@ void view3d_get_transformation(ViewContext *vc, Object *ob, bglMats *mats) /* ********************** view3d_select: selection manipulations ********************* */ -/* XXX to solve *************** */ -static void BIF_undo_push() {} -/* XXX end ********************* */ - /* local prototypes */ void EM_backbuf_checkAndSelectVerts(EditMesh *em, int select) @@ -461,8 +457,6 @@ static void do_lasso_select_mesh(ViewContext *vc, short mcords[][2], short moves bbsel= EM_mask_init_backbuf_border(vc, mcords, moves, rect.xmin, rect.ymin, rect.xmax, rect.ymax); ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); /* for foreach's screen/vert projection */ - ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); /* for foreach's screen/vert projection */ - if(ts->selectmode & SCE_SELECT_VERTEX) { if (bbsel) { EM_backbuf_checkAndSelectVerts(vc->em, select); @@ -723,9 +717,8 @@ void view3d_lasso_select(bContext *C, ViewContext *vc, short mcords[][2], short do_lasso_select_lattice(vc, mcords, moves, select); else if(vc->obedit->type==OB_ARMATURE) do_lasso_select_armature(vc, mcords, moves, select); - - BIF_undo_push("Lasso select"); + WM_event_add_notifier(C, NC_GEOM|ND_SELECT, vc->obedit->data); } From 21757e1161441f58726bd8ba8d67010fbcfcfe7d Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 26 Oct 2009 08:43:24 +0000 Subject: [PATCH 175/412] Cocoa / Mac: - use Cocoa function to convert keys character value to isoLatin-1 encoding instead of the translation table. Works better with international keyboards - enable stereo GL option - fix source/creator CMake file to remove unneeded folders in the app bundle (the __MACOSX stuff). (Thx jensverwiebe) --- intern/ghost/intern/GHOST_SystemCocoa.mm | 152 +++-------------------- intern/ghost/intern/GHOST_WindowCocoa.mm | 31 +++-- source/creator/CMakeLists.txt | 2 +- 3 files changed, 38 insertions(+), 147 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 20b190cc41f..03a617ebdd7 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -372,133 +372,6 @@ static GHOST_TKey convertKey(int rawCode, unichar recvChar) return GHOST_kKeyUnknown; } -/* MacOSX returns a Roman charset with kEventParamKeyMacCharCodes - * as defined here: http://developer.apple.com/documentation/mac/Text/Text-516.html - * I am not sure how international this works... - * For cross-platform convention, we'll use the Latin ascii set instead. - * As defined at: http://www.ramsch.org/martin/uni/fmi-hp/iso8859-1.html - * - */ -static unsigned char convertRomanToLatin(unsigned char ascii) -{ - - if(ascii<128) return ascii; - - switch(ascii) { - case 128: return 142; - case 129: return 143; - case 130: return 128; - case 131: return 201; - case 132: return 209; - case 133: return 214; - case 134: return 220; - case 135: return 225; - case 136: return 224; - case 137: return 226; - case 138: return 228; - case 139: return 227; - case 140: return 229; - case 141: return 231; - case 142: return 233; - case 143: return 232; - case 144: return 234; - case 145: return 235; - case 146: return 237; - case 147: return 236; - case 148: return 238; - case 149: return 239; - case 150: return 241; - case 151: return 243; - case 152: return 242; - case 153: return 244; - case 154: return 246; - case 155: return 245; - case 156: return 250; - case 157: return 249; - case 158: return 251; - case 159: return 252; - case 160: return 0; - case 161: return 176; - case 162: return 162; - case 163: return 163; - case 164: return 167; - case 165: return 183; - case 166: return 182; - case 167: return 223; - case 168: return 174; - case 169: return 169; - case 170: return 174; - case 171: return 180; - case 172: return 168; - case 173: return 0; - case 174: return 198; - case 175: return 216; - case 176: return 0; - case 177: return 177; - case 178: return 0; - case 179: return 0; - case 180: return 165; - case 181: return 181; - case 182: return 0; - case 183: return 0; - case 184: return 215; - case 185: return 0; - case 186: return 0; - case 187: return 170; - case 188: return 186; - case 189: return 0; - case 190: return 230; - case 191: return 248; - case 192: return 191; - case 193: return 161; - case 194: return 172; - case 195: return 0; - case 196: return 0; - case 197: return 0; - case 198: return 0; - case 199: return 171; - case 200: return 187; - case 201: return 201; - case 202: return 0; - case 203: return 192; - case 204: return 195; - case 205: return 213; - case 206: return 0; - case 207: return 0; - case 208: return 0; - case 209: return 0; - case 210: return 0; - - case 214: return 247; - - case 229: return 194; - case 230: return 202; - case 231: return 193; - case 232: return 203; - case 233: return 200; - case 234: return 205; - case 235: return 206; - case 236: return 207; - case 237: return 204; - case 238: return 211; - case 239: return 212; - case 240: return 0; - case 241: return 210; - case 242: return 218; - case 243: return 219; - case 244: return 217; - case 245: return 0; - case 246: return 0; - case 247: return 0; - case 248: return 0; - case 249: return 0; - case 250: return 0; - - - default: return 0; - } - -} #define FIRSTFILEBUFLG 512 static bool g_hasFirstFile = false; @@ -1255,8 +1128,10 @@ GHOST_TSuccess GHOST_SystemCocoa::handleKeyEvent(void *eventPtr) GHOST_IWindow* window = m_windowManager->getActiveWindow(); unsigned int modifiers; NSString *characters; + NSData *convertedCharacters; GHOST_TKey keyCode; unsigned char ascii; + NSString* charsIgnoringModifiers; /* Can happen, very rarely - seems to only be when command-H makes * the window go away and we still get an HKey up. @@ -1269,16 +1144,25 @@ GHOST_TSuccess GHOST_SystemCocoa::handleKeyEvent(void *eventPtr) switch ([event type]) { case NSKeyDown: case NSKeyUp: - characters = [event characters]; - if ([characters length]) { //Check for dead keys + charsIgnoringModifiers = [event charactersIgnoringModifiers]; + if ([charsIgnoringModifiers length]>0) keyCode = convertKey([event keyCode], - [[event charactersIgnoringModifiers] characterAtIndex:0]); - ascii= convertRomanToLatin((char)[characters characterAtIndex:0]); - } else { + [charsIgnoringModifiers characterAtIndex:0]); + else keyCode = convertKey([event keyCode],0); - ascii= 0; + + + characters = [event characters]; + if ([characters length]>0) { //Check for dead keys + //Convert characters to iso latin 1 encoding + convertedCharacters = [characters dataUsingEncoding:NSISOLatin1StringEncoding]; + if ([convertedCharacters length]>0) + ascii =((char*)[convertedCharacters bytes])[0]; + else + ascii = 0; //Character not available in iso latin 1 encoding } - + else + ascii= 0; if ((keyCode == GHOST_kKeyQ) && (m_modifierMask & NSCommandKeyMask)) break; //Cmd-Q is directly handled by Cocoa diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index 0090d8e1038..42d7de3f2df 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -43,16 +43,6 @@ #include "GHOST_Debug.h" -// Pixel Format Attributes for the windowed NSOpenGLContext -static NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[] = -{ - NSOpenGLPFADoubleBuffer, - NSOpenGLPFAAccelerated, - //NSOpenGLPFAAllowOfflineRenderers, // Removed to allow 10.4 builds, and 2 GPUs rendering is not used anyway - NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute) 32, - (NSOpenGLPixelFormatAttribute) 0 -}; - #pragma mark Cocoa window delegate object /* live resize ugly patch extern "C" { @@ -191,9 +181,12 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( GHOST_TDrawingContextType type, const bool stereoVisual ) : - GHOST_Window(title, left, top, width, height, state, GHOST_kDrawingContextTypeNone), + GHOST_Window(title, left, top, width, height, state, type,stereoVisual), m_customCursor(0) { + NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[40]; + int i; + m_systemCocoa = systemCocoa; m_fullScreen = false; @@ -224,7 +217,21 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( setTitle(title); - + + // Pixel Format Attributes for the windowed NSOpenGLContext + i=0; + pixelFormatAttrsWindow[i++] = NSOpenGLPFADoubleBuffer; + pixelFormatAttrsWindow[i++] = NSOpenGLPFAAccelerated; + //pixelFormatAttrsWindow[i++] = NSOpenGLPFAAllowOfflineRenderers,; // Removed to allow 10.4 builds, and 2 GPUs rendering is not used anyway + + pixelFormatAttrsWindow[i++] = NSOpenGLPFADepthSize; + pixelFormatAttrsWindow[i++] = (NSOpenGLPixelFormatAttribute) 32; + + if (stereoVisual) pixelFormatAttrsWindow[i++] = NSOpenGLPFAStereo; + + pixelFormatAttrsWindow[i] = (NSOpenGLPixelFormatAttribute) 0; + + //Creates the OpenGL View inside the window NSOpenGLPixelFormat *pixelFormat = [[NSOpenGLPixelFormat alloc] initWithAttributes:pixelFormatAttrsWindow]; diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 57a1f8e00a5..fa59324c5dc 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -173,7 +173,6 @@ IF(WITH_INSTALL) ADD_CUSTOM_COMMAND( TARGET blender POST_BUILD MAIN_DEPENDENCY blender COMMAND find ${TARGETDIR} -name .svn -prune -exec rm -rf {} "\;" - COMMAND find ${TARGETDIR} -name __MACOSX -prune -exec rm -rf {} "\;" ) @@ -244,6 +243,7 @@ IF(WITH_INSTALL) TARGET blender POST_BUILD MAIN_DEPENDENCY blender COMMAND find ${TARGETDIR}/blender.app -name .DS_Store -prune -exec rm -rf {} "\;" COMMAND find ${TARGETDIR}/blender.app -name .svn -prune -exec rm -rf {} "\;" + COMMAND find ${TARGETDIR}/blender.app -name __MACOSX -prune -exec rm -rf {} "\;" ) ENDIF(APPLE) From 47f80e026e9d38b84ada36dd59edeadb4c899f7c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 26 Oct 2009 09:35:33 +0000 Subject: [PATCH 176/412] crash fix for recent commit --- .../editors/space_view3d/view3d_select.c | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 1f186f0d931..b13d83c0157 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -699,7 +699,7 @@ void view3d_lasso_select(bContext *C, ViewContext *vc, short mcords[][2], short { Object *ob = CTX_data_active_object(C); - if(vc->obedit==NULL) { + if(vc->obedit==NULL) { /* Object Mode */ if(paint_facesel_test(ob)) do_lasso_select_facemode(vc, mcords, moves, select); else if(ob && ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT|OB_MODE_TEXTURE_PAINT)) @@ -709,16 +709,18 @@ void view3d_lasso_select(bContext *C, ViewContext *vc, short mcords[][2], short else do_lasso_select_objects(vc, mcords, moves, select); } - else if(vc->obedit->type==OB_MESH) { - do_lasso_select_mesh(vc, mcords, moves, select); - } else if(vc->obedit->type==OB_CURVE || vc->obedit->type==OB_SURF) - do_lasso_select_curve(vc, mcords, moves, select); - else if(vc->obedit->type==OB_LATTICE) - do_lasso_select_lattice(vc, mcords, moves, select); - else if(vc->obedit->type==OB_ARMATURE) - do_lasso_select_armature(vc, mcords, moves, select); + else { /* Edit Mode */ + if(vc->obedit->type==OB_MESH) + do_lasso_select_mesh(vc, mcords, moves, select); + else if(vc->obedit->type==OB_CURVE || vc->obedit->type==OB_SURF) + do_lasso_select_curve(vc, mcords, moves, select); + else if(vc->obedit->type==OB_LATTICE) + do_lasso_select_lattice(vc, mcords, moves, select); + else if(vc->obedit->type==OB_ARMATURE) + do_lasso_select_armature(vc, mcords, moves, select); - WM_event_add_notifier(C, NC_GEOM|ND_SELECT, vc->obedit->data); + WM_event_add_notifier(C, NC_GEOM|ND_SELECT, vc->obedit->data); + } } From 03d13ac9e8dd598750f206463dab8899ea5d5d0d Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 26 Oct 2009 10:19:25 +0000 Subject: [PATCH 177/412] 64bit Mac: - fix glew.h typedefs using long instead of int A visible impact of this issue was a wrong manipulators behavior in 64bit mac blender. (buffer passed to glSelectbuffer was of wrong data type) --- extern/glew/include/GL/glew.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/glew/include/GL/glew.h b/extern/glew/include/GL/glew.h index 6b88e6eb4c9..1024a88e00f 100644 --- a/extern/glew/include/GL/glew.h +++ b/extern/glew/include/GL/glew.h @@ -208,7 +208,7 @@ extern "C" { #ifndef GL_VERSION_1_1 #define GL_VERSION_1_1 1 -#if defined(__APPLE__) +#if defined(__APPLE__) && !defined(__LP64__) typedef unsigned long GLenum; typedef unsigned long GLbitfield; typedef unsigned long GLuint; From 39d62a12d94d492186b22c1381eb78641a7ee1b7 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 26 Oct 2009 11:03:12 +0000 Subject: [PATCH 178/412] *Started to add theme editing in Preferences. Isn't visible in the UI yet. *Moved some preferences around *Changed the file browser '..' icon (Thanks Elubie!) --- release/scripts/ui/space_userpref.py | 99 ++++++----- source/blender/editors/space_file/file_draw.c | 6 +- source/blender/makesdna/DNA_userdef_types.h | 2 + source/blender/makesrna/intern/rna_userdef.c | 163 +++++++++++------- 4 files changed, 168 insertions(+), 102 deletions(-) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index c887289e45d..0a4181cc8ce 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -83,38 +83,30 @@ class USERPREF_PT_interface(bpy.types.Panel): sub1.itemR(view, "zoom_to_mouse") sub1.itemR(view, "rotate_around_selection") sub1.itemS() - sub1.itemL(text="Zoom Style:") - sub1.row().itemR(view, "viewport_zoom_style", expand=True) - sub1.itemL(text="Orbit Style:") - sub1.row().itemR(view, "view_rotation", expand=True) - sub1.itemR(view, "perspective_orthographic_switch") + + + sub1.itemR(view, "auto_perspective") sub1.itemR(view, "smooth_view") sub1.itemR(view, "rotation_angle") + + + + + col = split.column() sub = col.split(percentage=0.85) - sub1 = sub.column() - sub1.itemL(text="Menus:") - sub1.itemR(view, "open_mouse_over") - sub1.itemL(text="Menu Open Delay:") - sub1.itemR(view, "open_toplevel_delay", text="Top Level") - sub1.itemR(view, "open_sublevel_delay", text="Sub Level") - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Toolbox:") - sub1.itemR(view, "use_column_layout") - sub1.itemL(text="Open Toolbox Delay:") - sub1.itemR(view, "open_left_mouse_delay", text="Hold LMB") - sub1.itemR(view, "open_right_mouse_delay", text="Hold RMB") - - col = split.column() - sub = col.split(percentage=0.85) - sub1 = sub.column() +#Toolbox doesn't exist yet +# sub1.itemL(text="Toolbox:") +# sub1.itemR(view, "use_column_layout") +# sub1.itemL(text="Open Toolbox Delay:") +# sub1.itemR(view, "open_left_mouse_delay", text="Hold LMB") +# sub1.itemR(view, "open_right_mouse_delay", text="Hold RMB") + + + #manipulator sub1.itemR(view, "use_manipulator") sub2 = sub1.column() @@ -122,6 +114,16 @@ class USERPREF_PT_interface(bpy.types.Panel): sub2.itemR(view, "manipulator_size", text="Size") sub2.itemR(view, "manipulator_handle_size", text="Handle Size") sub2.itemR(view, "manipulator_hotspot", text="Hotspot") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Menus:") + sub1.itemR(view, "open_mouse_over") + sub1.itemL(text="Menu Open Delay:") + sub1.itemR(view, "open_toplevel_delay", text="Top Level") + sub1.itemR(view, "open_sublevel_delay", text="Sub Level") class USERPREF_PT_edit(bpy.types.Panel): __space_type__ = 'USER_PREFERENCES' @@ -137,7 +139,6 @@ class USERPREF_PT_edit(bpy.types.Panel): userpref = context.user_preferences edit = userpref.edit - view = userpref.view split = layout.split() @@ -157,8 +158,13 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.itemS() sub1.itemS() sub1.itemS() - sub1.itemL(text="Transform:") - sub1.itemR(edit, "drag_immediately") + + sub1.itemL(text="Undo:") + sub1.itemR(edit, "global_undo") + sub1.itemR(edit, "undo_steps", text="Steps") + sub1.itemR(edit, "undo_memory_limit", text="Memory Limit") + + col = split.column() sub = col.split(percentage=0.85) @@ -199,10 +205,8 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.itemS() sub1.itemS() - sub1.itemL(text="Undo:") - sub1.itemR(edit, "global_undo") - sub1.itemR(edit, "undo_steps", text="Steps") - sub1.itemR(edit, "undo_memory_limit", text="Memory Limit") + sub1.itemL(text="Transform:") + sub1.itemR(edit, "drag_immediately") sub1.itemS() sub1.itemS() @@ -399,7 +403,7 @@ class USERPREF_PT_input(bpy.types.Panel): wm = context.manager #input = userpref.input input = userpref - view = userpref.view + inputs = userpref.inputs split = layout.split(percentage=0.25) @@ -416,15 +420,26 @@ class USERPREF_PT_input(bpy.types.Panel): sub = col.column() sub.itemL(text="Mouse:") sub1 = sub.column() - sub1.enabled = (view.select_mouse == 'RIGHT') - sub1.itemR(view, "emulate_3_button_mouse") - sub.itemR(view, "continuous_mouse") + sub1.enabled = (inputs.select_mouse == 'RIGHT') + sub1.itemR(inputs, "emulate_3_button_mouse") + sub.itemR(inputs, "continuous_mouse") sub.itemL(text="Select With:") - sub.row().itemR(view, "select_mouse", expand=True) - #sub.itemL(text="Middle Mouse:") - #sub.row().itemR(view, "middle_mouse", expand=True) - #sub.itemR(view, "use_middle_mouse_paste") + sub.row().itemR(inputs, "select_mouse", expand=True) + sub.itemL(text="Middle Mouse:") + sub.row().itemR(inputs, "middle_mouse", expand=True) + + sub.itemS() + sub.itemS() + sub.itemS() + + sub.itemL(text="Orbit Style:") + sub.row().itemR(inputs, "view_rotation", expand=True) + + sub.itemL(text="Zoom Style:") + sub.row().itemR(inputs, "viewport_zoom_style", expand=True) + + #sub.itemR(inputs, "use_middle_mouse_paste") #col.itemS() @@ -437,8 +452,8 @@ class USERPREF_PT_input(bpy.types.Panel): sub = col.column() sub.itemL(text="NDOF Device:") - sub.itemR(view, "ndof_pan_speed", text="Pan Speed") - sub.itemR(view, "ndof_rotate_speed", text="Orbit Speed") + sub.itemR(inputs, "ndof_pan_speed", text="Pan Speed") + sub.itemR(inputs, "ndof_rotate_speed", text="Orbit Speed") row.itemS() diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index 2a1bb8b4add..a1f9a9fd250 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -290,8 +290,12 @@ static float shorten_string(char* string, float w, int flag) static int get_file_icon(struct direntry *file) { - if (file->type & S_IFDIR) + if (file->type & S_IFDIR) { + if ( strcmp(file->relname, "..") == 0) { + return ICON_FILE_PARENT; + } return ICON_FILE_FOLDER; + } else if (file->flags & BLENDERFILE) return ICON_FILE_BLEND; else if (file->flags & IMAGEFILE) diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h index 6a1b22e1ed5..b70d3786eae 100644 --- a/source/blender/makesdna/DNA_userdef_types.h +++ b/source/blender/makesdna/DNA_userdef_types.h @@ -266,6 +266,8 @@ typedef struct bTheme { ThemeWireColor tarm[20]; /*ThemeWireColor tobj[20];*/ + int active_theme_group, pad; + } bTheme; typedef struct SolidLight { diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index c23e190b535..01eae67a03b 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -116,6 +116,11 @@ static PointerRNA rna_UserDef_edit_get(PointerRNA *ptr) return rna_pointer_inherit_refine(ptr, &RNA_UserPreferencesEdit, ptr->data); } +static PointerRNA rna_UserDef_input_get(PointerRNA *ptr) +{ + return rna_pointer_inherit_refine(ptr, &RNA_UserPreferencesInput, ptr->data); +} + static PointerRNA rna_UserDef_filepaths_get(PointerRNA *ptr) { return rna_pointer_inherit_refine(ptr, &RNA_UserPreferencesFilePaths, ptr->data); @@ -1414,6 +1419,14 @@ static void rna_def_userdef_themes(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; + + static EnumPropertyItem active_theme_group[] = { + {0, "USER_INTERFACE", 0, "User Interface", ""}, + {1, "VIEW_3D", 0, "View 3D", ""}, + {2, "GRAPH_EDITOR", 0, "Graph Editor", ""}, + {3, "FILE_BROWSER", 0, "File Browser", ""}, + + {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "Theme", NULL); RNA_def_struct_sdna(srna, "bTheme"); @@ -1423,6 +1436,11 @@ static void rna_def_userdef_themes(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Name", "Name of the theme."); RNA_def_struct_name_property(srna, prop); + prop= RNA_def_property(srna, "active_theme_group", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "active_theme_group"); + RNA_def_property_enum_items(prop, active_theme_group); + RNA_def_property_ui_text(prop, "Theme Group", ""); + prop= RNA_def_property(srna, "user_interface", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "tui"); @@ -1585,35 +1603,13 @@ static void rna_def_userdef_view(BlenderRNA *brna) { PropertyRNA *prop; StructRNA *srna; - - static EnumPropertyItem view_zoom_styles[] = { - {USER_ZOOM_CONT, "CONTINUE", 0, "Continue", "Old style zoom, continues while moving mouse up or down."}, - {USER_ZOOM_DOLLY, "DOLLY", 0, "Dolly", "Zooms in and out based on vertical mouse movement."}, - {USER_ZOOM_SCALE, "SCALE", 0, "Scale", "Zooms in and out like scaling the view, mouse movements relative to center."}, - {0, NULL, 0, NULL, NULL}}; - static EnumPropertyItem select_mouse_items[] = { - {USER_LMOUSESELECT, "LEFT", 0, "Left", "Use left Mouse Button for selection."}, - {0, "RIGHT", 0, "Right", "Use Right Mouse Button for selection."}, - {0, NULL, 0, NULL, NULL}}; - - static EnumPropertyItem middle_mouse_mouse_items[] = { - {0, "PAN", 0, "Pan", "Use the middle mouse button for panning the viewport."}, - {USER_VIEWMOVE, "ROTATE", 0, "Rotate", "Use the middle mouse button for rotation the viewport."}, - {0, NULL, 0, NULL, NULL}}; - - static EnumPropertyItem view_rotation_items[] = { - {0, "TURNTABLE", 0, "Turntable", "Use turntable style rotation in the viewport."}, - {USER_TRACKBALL, "TRACKBALL", 0, "Trackball", "Use trackball style rotation in the viewport."}, - {0, NULL, 0, NULL, NULL}}; - - srna= RNA_def_struct(brna, "UserPreferencesView", NULL); RNA_def_struct_sdna(srna, "UserDef"); RNA_def_struct_nested(brna, srna, "UserPreferences"); RNA_def_struct_ui_text(srna, "View & Controls", "Preferences related to viewing data"); - /* View and Controls */ + /* View */ /* display */ prop= RNA_def_property(srna, "tooltips", PROP_BOOLEAN, PROP_NONE); @@ -1683,10 +1679,6 @@ static void rna_def_userdef_view(BlenderRNA *brna) RNA_def_property_boolean_negative_sdna(prop, NULL, "uiflag", USER_MENUFIXEDORDER); RNA_def_property_ui_text(prop, "Contents Follow Opening Direction", "Otherwise menus, etc will always be top to bottom, left to right, no matter opening direction."); - prop= RNA_def_property(srna, "continuous_mouse", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_CONTINUOUS_MOUSE); - RNA_def_property_ui_text(prop, "Continuous Grab", "Experimental option to allow moving the mouse outside the view"); - prop= RNA_def_property(srna, "global_pivot", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_LOCKAROUND); RNA_def_property_ui_text(prop, "Global Pivot", "Lock the same rotation/scaling pivot in all 3D Views."); @@ -1696,24 +1688,16 @@ static void rna_def_userdef_view(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Auto Depth", "Use the depth under the mouse to improve view pan/rotate/zoom functionality."); /* view zoom */ - prop= RNA_def_property(srna, "viewport_zoom_style", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_sdna(prop, NULL, "viewzoom"); - RNA_def_property_enum_items(prop, view_zoom_styles); - RNA_def_property_ui_text(prop, "Viewport Zoom Style", "Which style to use for viewport scaling."); prop= RNA_def_property(srna, "zoom_to_mouse", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_ZOOM_TO_MOUSEPOS); RNA_def_property_ui_text(prop, "Zoom To Mouse Position", "Zoom in towards the mouse pointer's position in the 3D view, rather than the 2D window center."); /* view rotation */ - prop= RNA_def_property(srna, "view_rotation", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); - RNA_def_property_enum_items(prop, view_rotation_items); - RNA_def_property_ui_text(prop, "View Rotation", "Rotation style in the viewport."); - - prop= RNA_def_property(srna, "perspective_orthographic_switch", PROP_BOOLEAN, PROP_NONE); + + prop= RNA_def_property(srna, "auto_perspective", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_AUTOPERSP); - RNA_def_property_ui_text(prop, "Perspective/Orthographic Switch", "Automatically switch between orthographic and perspective when changing from top/front/side views."); + RNA_def_property_ui_text(prop, "Auto Perspective", "Automatically switch between orthographic and perspective when changing from top/front/side views."); prop= RNA_def_property(srna, "rotate_around_selection", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_ORBIT_SELECTION); @@ -1721,15 +1705,9 @@ static void rna_def_userdef_view(BlenderRNA *brna) /* select with */ - prop= RNA_def_property(srna, "select_mouse", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); - RNA_def_property_enum_items(prop, select_mouse_items); - RNA_def_property_ui_text(prop, "Select Mouse", "The mouse button used for selection."); + + - prop= RNA_def_property(srna, "emulate_3_button_mouse", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_TWOBUTTONMOUSE); - RNA_def_property_boolean_funcs(prop, NULL, "rna_userdef_emulate_set"); - RNA_def_property_ui_text(prop, "Emulate 3 Button Mouse", "Emulates Middle Mouse with Alt+LeftMouse (doesnt work with Left Mouse Select option.)"); prop= RNA_def_property(srna, "use_middle_mouse_paste", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_MMB_PASTE); @@ -1754,10 +1732,7 @@ static void rna_def_userdef_view(BlenderRNA *brna) /* middle mouse button */ - prop= RNA_def_property(srna, "middle_mouse", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); - RNA_def_property_enum_items(prop, middle_mouse_mouse_items); - RNA_def_property_ui_text(prop, "Middle Mouse", "Use the middle mouse button to pan or zoom the view."); + prop= RNA_def_property(srna, "wheel_invert_zoom", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_WHEELZOOMDIR); @@ -1807,15 +1782,7 @@ static void rna_def_userdef_view(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Object Center Size", "Diameter in Pixels for Object/Lamp center display."); RNA_def_property_update(prop, 0, "rna_userdef_update"); - prop= RNA_def_property(srna, "ndof_pan_speed", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "ndof_pan"); - RNA_def_property_range(prop, 0, 200); - RNA_def_property_ui_text(prop, "NDof Pan Speed", "The overall panning speed of an NDOF device, as percent of standard."); - prop= RNA_def_property(srna, "ndof_rotate_speed", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "ndof_rotate"); - RNA_def_property_range(prop, 0, 200); - RNA_def_property_ui_text(prop, "NDof Rotation Speed", "The overall rotation speed of an NDOF device, as percent of standard."); } static void rna_def_userdef_edit(BlenderRNA *brna) @@ -2276,6 +2243,77 @@ static void rna_def_userdef_system(BlenderRNA *brna) #endif } +static void rna_def_userdef_input(BlenderRNA *brna) +{ + PropertyRNA *prop; + StructRNA *srna; + + srna= RNA_def_struct(brna, "UserPreferencesInput", NULL); + RNA_def_struct_sdna(srna, "UserDef"); + RNA_def_struct_nested(brna, srna, "UserPreferences"); + RNA_def_struct_ui_text(srna, "Input", "Settings for input devices."); + + static EnumPropertyItem select_mouse_items[] = { + {USER_LMOUSESELECT, "LEFT", 0, "Left", "Use left Mouse Button for selection."}, + {0, "RIGHT", 0, "Right", "Use Right Mouse Button for selection."}, + {0, NULL, 0, NULL, NULL}}; + + static EnumPropertyItem view_rotation_items[] = { + {0, "TURNTABLE", 0, "Turntable", "Use turntable style rotation in the viewport."}, + {USER_TRACKBALL, "TRACKBALL", 0, "Trackball", "Use trackball style rotation in the viewport."}, + {0, NULL, 0, NULL, NULL}}; + + static EnumPropertyItem middle_mouse_mouse_items[] = { + {0, "PAN", 0, "Pan", "Use the middle mouse button for panning the viewport."}, + {USER_VIEWMOVE, "ROTATE", 0, "Rotate", "Use the middle mouse button for rotation the viewport."}, + {0, NULL, 0, NULL, NULL}}; + + static EnumPropertyItem view_zoom_styles[] = { + {USER_ZOOM_CONT, "CONTINUE", 0, "Continue", "Old style zoom, continues while moving mouse up or down."}, + {USER_ZOOM_DOLLY, "DOLLY", 0, "Dolly", "Zooms in and out based on vertical mouse movement."}, + {USER_ZOOM_SCALE, "SCALE", 0, "Scale", "Zooms in and out like scaling the view, mouse movements relative to center."}, + {0, NULL, 0, NULL, NULL}}; + + prop= RNA_def_property(srna, "middle_mouse", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); + RNA_def_property_enum_items(prop, middle_mouse_mouse_items); + RNA_def_property_ui_text(prop, "Middle Mouse", "Use the middle mouse button to pan or zoom the view."); + + prop= RNA_def_property(srna, "select_mouse", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); + RNA_def_property_enum_items(prop, select_mouse_items); + RNA_def_property_ui_text(prop, "Select Mouse", "The mouse button used for selection."); + + prop= RNA_def_property(srna, "viewport_zoom_style", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "viewzoom"); + RNA_def_property_enum_items(prop, view_zoom_styles); + RNA_def_property_ui_text(prop, "Viewport Zoom Style", "Which style to use for viewport scaling."); + + prop= RNA_def_property(srna, "view_rotation", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); + RNA_def_property_enum_items(prop, view_rotation_items); + RNA_def_property_ui_text(prop, "View Rotation", "Rotation style in the viewport."); + + prop= RNA_def_property(srna, "continuous_mouse", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_CONTINUOUS_MOUSE); + RNA_def_property_ui_text(prop, "Continuous Grab", "Experimental option to allow moving the mouse outside the view"); + + prop= RNA_def_property(srna, "ndof_pan_speed", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "ndof_pan"); + RNA_def_property_range(prop, 0, 200); + RNA_def_property_ui_text(prop, "NDof Pan Speed", "The overall panning speed of an NDOF device, as percent of standard."); + + prop= RNA_def_property(srna, "ndof_rotate_speed", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "ndof_rotate"); + RNA_def_property_range(prop, 0, 200); + RNA_def_property_ui_text(prop, "NDof Rotation Speed", "The overall rotation speed of an NDOF device, as percent of standard."); + + prop= RNA_def_property(srna, "emulate_3_button_mouse", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_TWOBUTTONMOUSE); + RNA_def_property_boolean_funcs(prop, NULL, "rna_userdef_emulate_set"); + RNA_def_property_ui_text(prop, "Emulate 3 Button Mouse", "Emulates Middle Mouse with Alt+LeftMouse (doesnt work with Left Mouse Select option.)"); +} + static void rna_def_userdef_filepaths(BlenderRNA *brna) { PropertyRNA *prop; @@ -2375,7 +2413,7 @@ void RNA_def_userdef(BlenderRNA *brna) {USER_SECTION_INTERFACE, "INTERFACE", 0, "Interface", ""}, {USER_SECTION_EDIT, "EDITING", 0, "Editing", ""}, {USER_SECTION_INPUT, "INPUT", 0, "Input", ""}, -// {USER_SECTION_THEME, "THEMES", 0, "Themes", ""}, // Leave this out until we figure out a way to manage themes in the prefs. +// {USER_SECTION_THEME, "THEMES", 0, "Themes", ""}, Doesn't work yet {USER_SECTION_FILE, "FILES", 0, "File", ""}, {USER_SECTION_SYSTEM, "SYSTEM", 0, "System", ""}, {0, NULL, 0, NULL, NULL}}; @@ -2416,6 +2454,12 @@ void RNA_def_userdef(BlenderRNA *brna) RNA_def_property_pointer_funcs(prop, "rna_UserDef_edit_get", NULL, NULL); RNA_def_property_ui_text(prop, "Edit Methods", "Settings for interacting with Blender data."); + prop= RNA_def_property(srna, "inputs", PROP_POINTER, PROP_NONE); + RNA_def_property_flag(prop, PROP_NEVER_NULL); + RNA_def_property_struct_type(prop, "UserPreferencesInput"); + RNA_def_property_pointer_funcs(prop, "rna_UserDef_input_get", NULL, NULL); + RNA_def_property_ui_text(prop, "Inputs", "Settings for input devices."); + prop= RNA_def_property(srna, "filepaths", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_NEVER_NULL); RNA_def_property_struct_type(prop, "UserPreferencesFilePaths"); @@ -2430,6 +2474,7 @@ void RNA_def_userdef(BlenderRNA *brna) rna_def_userdef_view(brna); rna_def_userdef_edit(brna); + rna_def_userdef_input(brna); rna_def_userdef_filepaths(brna); rna_def_userdef_system(brna); From b2f96720786a1440f0e22fed414efcde283a07c8 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 26 Oct 2009 11:10:04 +0000 Subject: [PATCH 179/412] Animation Bugfixes - Noise Modifier + Graph Editor: * #19727: Noise modifier does nothing with size 1.0 When the 'Size' and 'Phase' parameters were both 1.0 exactly, and evaltime was an integer (as is the case when doing animation evaluation but not for Graph Editor drawing), the noise calculation function was bailing out. Now, the 'z' component supplied to this function is a decimal value (hardcoded to 0.1 after experimentation) to try and avoid this situation. * Graph Editor 'Bake' operator was using wrong poll callback, making it useless when trying to use it on a F-Curve that only has modifiers on it (i.e. the main use case of the operator!) --- source/blender/blenkernel/intern/fmodifier.c | 7 ++++++- source/blender/editors/space_graph/graph_edit.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/fmodifier.c b/source/blender/blenkernel/intern/fmodifier.c index 64558d0b456..4e79f6238b5 100644 --- a/source/blender/blenkernel/intern/fmodifier.c +++ b/source/blender/blenkernel/intern/fmodifier.c @@ -715,8 +715,13 @@ static void fcm_noise_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, floa FMod_Noise *data= (FMod_Noise *)fcm->data; float noise; - noise = BLI_turbulence(data->size, evaltime, data->phase, 0.f, data->depth); + /* generate noise using good ol' Blender Noise + * - 0.1 is passed as the 'z' value, otherwise evaluation fails for size = phase = 1 + * with evaltime being an integer (which happens when evaluating on frame by frame basis) + */ + noise = BLI_turbulence(data->size, evaltime, data->phase, 0.1f, data->depth); + /* combine the noise with existing motion data */ switch (data->modification) { case FCM_NOISE_MODIF_ADD: *cvalue= *cvalue + noise * data->strength; diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 442b44bb482..b467d7b4ca0 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -976,7 +976,7 @@ void GRAPH_OT_bake (wmOperatorType *ot) /* api callbacks */ ot->invoke= WM_operator_confirm; // FIXME... ot->exec= graphkeys_bake_exec; - ot->poll= graphop_editable_keyframes_poll; + ot->poll= graphop_selected_fcurve_poll; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; From 536fe27ba36e0283fb000d19afcf7ca95c3c1de9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 26 Oct 2009 11:20:16 +0000 Subject: [PATCH 180/412] Restored 'Make Parent Without Inverse' Operator (Ctrl Shift P) I've made this a separate operator to Make Parent, since the two were signficantly different (this version only works for Objects, and doesn't care about other types of parenting). --- source/blender/editors/object/object_intern.h | 1 + source/blender/editors/object/object_ops.c | 2 + .../blender/editors/object/object_relations.c | 56 ++++++++++++++++++- 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 93bbc69eff8..9ce54241cb6 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -51,6 +51,7 @@ void OBJECT_OT_center_set(struct wmOperatorType *ot); /* object_relations.c */ void OBJECT_OT_parent_set(struct wmOperatorType *ot); +void OBJECT_OT_parent_no_inverse_set(struct wmOperatorType *ot); void OBJECT_OT_parent_clear(struct wmOperatorType *ot); void OBJECT_OT_vertex_parent_set(struct wmOperatorType *ot); void OBJECT_OT_track_set(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index ff0566efbcf..2daa95577e1 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -83,6 +83,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_shade_flat); WM_operatortype_append(OBJECT_OT_parent_set); + WM_operatortype_append(OBJECT_OT_parent_no_inverse_set); WM_operatortype_append(OBJECT_OT_parent_clear); WM_operatortype_append(OBJECT_OT_vertex_parent_set); WM_operatortype_append(OBJECT_OT_track_set); @@ -244,6 +245,7 @@ void ED_keymap_object(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "OBJECT_OT_select_mirror", MKEY, KM_PRESS, KM_CTRL|KM_SHIFT, 0); WM_keymap_verify_item(keymap, "OBJECT_OT_parent_set", PKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_verify_item(keymap, "OBJECT_OT_parent_no_inverse_set", PKEY, KM_PRESS, KM_CTRL|KM_SHIFT, 0); WM_keymap_verify_item(keymap, "OBJECT_OT_parent_clear", PKEY, KM_PRESS, KM_ALT, 0); WM_keymap_verify_item(keymap, "OBJECT_OT_track_set", TKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_verify_item(keymap, "OBJECT_OT_track_clear", TKEY, KM_PRESS, KM_ALT, 0); diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index c2550a6b1e8..9511f367930 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -638,7 +638,7 @@ static int parent_set_exec(bContext *C, wmOperator *op) what_does_parent(scene, ob, &workob); ob->partype= PARSKEL; - + Mat4Invert(ob->parentinv, workob.obmat); } else { @@ -720,6 +720,60 @@ void OBJECT_OT_parent_set(wmOperatorType *ot) RNA_def_enum(ot->srna, "type", prop_make_parent_types, 0, "Type", ""); } +/* ************ Make Parent Without Inverse Operator ******************* */ + +static int parent_noinv_set_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + Object *par= CTX_data_active_object(C); + + par->recalc |= OB_RECALC_OB; + + /* context itterator */ + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + if (ob != par) { + if (test_parent_loop(par, ob)) { + BKE_report(op->reports, RPT_ERROR, "Loop in parents"); + } + else { + /* clear inverse matrix and also the object location */ + Mat4One(ob->parentinv); + memset(ob->loc, 0, 3*sizeof(float)); + + /* set recalc flags */ + ob->recalc |= OB_RECALC_OB|OB_RECALC_DATA; + + /* set parenting type for object - object only... */ + ob->parent= par; + ob->partype= PAROBJECT; /* note, dna define, not operator property */ + } + } + } + CTX_DATA_END; + + DAG_scene_sort(CTX_data_scene(C)); + ED_anim_dag_flush_update(C); + WM_event_add_notifier(C, NC_OBJECT|ND_TRANSFORM, NULL); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_parent_no_inverse_set(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Make Parent without Inverse"; + ot->description = "Set the object's parenting without setting the inverse parent correction."; + ot->idname= "OBJECT_OT_parent_no_inverse_set"; + + /* api callbacks */ + ot->invoke= WM_operator_confirm; + ot->exec= parent_noinv_set_exec; + ot->poll= ED_operator_object_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} + /************************ Clear Slow Parent Operator *********************/ static int object_slow_parent_clear_exec(bContext *C, wmOperator *op) From 32dd928ed6df59f1d0fb91b1f8942a799cada880 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 26 Oct 2009 11:43:27 +0000 Subject: [PATCH 181/412] Bugfix: opening file browser or starting render with mouse outside of window could crash, these functions relied too much on context. --- source/blender/editors/screen/screen_edit.c | 39 +++++++++++-------- source/blender/editors/screen/screen_intern.h | 2 +- source/blender/editors/screen/screen_ops.c | 12 +++--- 3 files changed, 30 insertions(+), 23 deletions(-) diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c index 6b71ccaba10..9fb472b674a 100644 --- a/source/blender/editors/screen/screen_edit.c +++ b/source/blender/editors/screen/screen_edit.c @@ -1404,18 +1404,15 @@ void ED_screen_delete_scene(bContext *C, Scene *scene) } /* this function toggles: if area is full then the parent will be restored */ -void ed_screen_fullarea(bContext *C, ScrArea *sa) +ScrArea *ed_screen_fullarea(bContext *C, wmWindow *win, ScrArea *sa) { bScreen *sc, *oldscreen; - if(sa==NULL) { - return; - } - else if(sa->full) { + if(sa && sa->full) { short fulltype; sc= sa->full; /* the old screen to restore */ - oldscreen= CTX_wm_screen(C); /* the one disappearing */ + oldscreen= win->screen; /* the one disappearing */ fulltype = sc->full; @@ -1455,14 +1452,14 @@ void ed_screen_fullarea(bContext *C, ScrArea *sa) else { ScrArea *newa; - oldscreen= CTX_wm_screen(C); + oldscreen= win->screen; /* is there only 1 area? */ if(oldscreen->areabase.first==oldscreen->areabase.last) return; oldscreen->full = SCREENFULL; - sc= ED_screen_add(CTX_wm_window(C), CTX_data_scene(C), "temp"); + sc= ED_screen_add(win, oldscreen->scene, "temp"); sc->full = SCREENFULL; // XXX /* timer */ @@ -1470,9 +1467,14 @@ void ed_screen_fullarea(bContext *C, ScrArea *sa) oldscreen->animtimer= NULL; /* returns the top small area */ - newa= area_split(CTX_wm_window(C), sc, (ScrArea *)sc->areabase.first, 'h', 0.99f); + newa= area_split(win, sc, (ScrArea *)sc->areabase.first, 'h', 0.99f); ED_area_newspace(C, newa, SPACE_INFO); + /* use random area when we have no active one, e.g. when the + mouse is outside of the window and we open a file browser */ + if(!sa) + sa= oldscreen->areabase.first; + /* copy area */ newa= newa->prev; area_copy_data(newa, sa, 1); /* 1 = swap spacelist */ @@ -1489,30 +1491,33 @@ void ed_screen_fullarea(bContext *C, ScrArea *sa) /* XXX retopo_force_update(); */ + return sc->areabase.first; } int ED_screen_full_newspace(bContext *C, ScrArea *sa, int type) { - if(sa==NULL) - return 0; - - if(sa->full==0) - ed_screen_fullarea(C, sa); + wmWindow *win= CTX_wm_window(C); + ScrArea *newsa= NULL; - /* CTX_wm_area(C) is new area */ - ED_area_newspace(C, CTX_wm_area(C), type); + if(!sa || sa->full==0) + newsa= ed_screen_fullarea(C, win, sa); + else + newsa= sa; + + ED_area_newspace(C, newsa, type); return 1; } void ED_screen_full_prevspace(bContext *C) { + wmWindow *win= CTX_wm_window(C); ScrArea *sa= CTX_wm_area(C); ED_area_prevspace(C); if(sa->full) - ed_screen_fullarea(C, sa); + ed_screen_fullarea(C, win, sa); } /* redraws: uses defines from stime->redraws diff --git a/source/blender/editors/screen/screen_intern.h b/source/blender/editors/screen/screen_intern.h index 2b3a816f8de..6278ea8db88 100644 --- a/source/blender/editors/screen/screen_intern.h +++ b/source/blender/editors/screen/screen_intern.h @@ -51,7 +51,7 @@ ScrEdge *screen_find_active_scredge(bScreen *sc, int mx, int my); AZone *is_in_area_actionzone(ScrArea *sa, int x, int y); -void ed_screen_fullarea(bContext *C, ScrArea *sa); +ScrArea *ed_screen_fullarea(bContext *C, wmWindow *win, ScrArea *sa); /* screen_context.c */ void ed_screen_context(const bContext *C, const char *member, bContextDataResult *result); diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index 0baadf8d01a..efcbc953456 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -1577,7 +1577,7 @@ static void SCREEN_OT_screen_set(wmOperatorType *ot) /* function to be called outside UI context, or for redo */ static int screen_full_area_exec(bContext *C, wmOperator *op) { - ed_screen_fullarea(C, CTX_wm_area(C)); + ed_screen_fullarea(C, CTX_wm_window(C), CTX_wm_area(C)); return OPERATOR_FINISHED; } @@ -2576,6 +2576,7 @@ static ScrArea *find_empty_image_area(bContext *C) /* new window uses x,y to set position */ static void screen_set_image_output(bContext *C, int mx, int my) { + wmWindow *win= CTX_wm_window(C); Scene *scene= CTX_data_scene(C); ScrArea *sa= NULL; SpaceImage *sima; @@ -2592,8 +2593,8 @@ static void screen_set_image_output(bContext *C, int mx, int my) if(sizey < 256) sizey= 256; /* XXX some magic to calculate postition */ - rect.xmin= mx + CTX_wm_window(C)->posx - sizex/2; - rect.ymin= my + CTX_wm_window(C)->posy - sizey/2; + rect.xmin= mx + win->posx - sizex/2; + rect.ymin= my + win->posy - sizey/2; rect.xmax= rect.xmin + sizex; rect.ymax= rect.ymin + sizey; @@ -2645,7 +2646,7 @@ static void screen_set_image_output(bContext *C, int mx, int my) if(sa->full) { sima->flag |= SI_FULLWINDOW|SI_PREVSPACE; -// ed_screen_fullarea(C, sa); +// ed_screen_fullarea(C, win, sa); } // } @@ -3015,6 +3016,7 @@ static void SCREEN_OT_render(wmOperatorType *ot) static int render_view_cancel_exec(bContext *C, wmOperator *unused) { + wmWindow *win= CTX_wm_window(C); ScrArea *sa= CTX_wm_area(C); SpaceImage *sima= sa->spacedata.first; @@ -3038,7 +3040,7 @@ static int render_view_cancel_exec(bContext *C, wmOperator *unused) } else if(sima->flag & SI_FULLWINDOW) { sima->flag &= ~SI_FULLWINDOW; - ed_screen_fullarea(C, sa); + ed_screen_fullarea(C, win, sa); return OPERATOR_FINISHED; } From 3f7f2b869c2da50df8d3a6399a357b3c3b668a70 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 26 Oct 2009 11:56:12 +0000 Subject: [PATCH 182/412] Bugfix #19709: Influence and Mapping param in texture not yet animatable Coded a 'path' getter for Texture Slots. This was a bit more involved than for other paths, since texture slots used the names of the textures assigned, which would be troublesome when a texture got used twice or more. --- source/blender/makesrna/intern/rna_internal.h | 2 + source/blender/makesrna/intern/rna_texture.c | 43 +++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h index 23592212f68..0e557b59b22 100644 --- a/source/blender/makesrna/intern/rna_internal.h +++ b/source/blender/makesrna/intern/rna_internal.h @@ -199,6 +199,8 @@ void rna_Object_update_data(struct bContext *C, struct PointerRNA *ptr); void rna_Mesh_update_draw(struct bContext *C, struct PointerRNA *ptr); void rna_TextureSlot_update(struct bContext *C, struct PointerRNA *ptr); +char *rna_TextureSlot_path(struct PointerRNA *ptr); + /* API functions */ void RNA_api_action(StructRNA *srna); diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c index f49eb4122c5..f3e74bdd43a 100644 --- a/source/blender/makesrna/intern/rna_texture.c +++ b/source/blender/makesrna/intern/rna_texture.c @@ -26,6 +26,7 @@ #include #include +#include "RNA_access.h" #include "RNA_define.h" #include "RNA_types.h" @@ -155,6 +156,47 @@ void rna_TextureSlot_update(bContext *C, PointerRNA *ptr) } } +char *rna_TextureSlot_path(PointerRNA *ptr) +{ + MTex *mtex= ptr->data; + + /* if there is ID-data, resolve the path using the index instead of by name, + * since the name used is the name of the texture assigned, but the texture + * may be used multiple times in the same stack + */ + if (ptr->id.data) { + PointerRNA id_ptr; + PropertyRNA *prop; + + /* find the 'textures' property of the ID-struct */ + RNA_id_pointer_create(ptr->id.data, &id_ptr); + prop= RNA_struct_find_property(&id_ptr, "textures"); + + /* get an iterator for this property, and try to find the relevant index */ + if (prop) { + CollectionPropertyIterator iter; + int index= 0; + + RNA_property_collection_begin(ptr, prop, &iter); + for(index=0; iter.valid; RNA_property_collection_next(&iter), index++) { + if (iter.ptr.data == ptr->id.data) + break; + } + RNA_property_collection_end(&iter); + + /* did we find it? */ + if (iter.valid) + return BLI_sprintfN("textures[%d]", index); + } + } + + /* this is a compromise for the remaining cases... */ + if (mtex->tex) + return BLI_sprintfN("textures[\"%s\"]", mtex->tex->id.name+2); + else + return BLI_strdup("textures[0]"); +} + static int rna_TextureSlot_name_length(PointerRNA *ptr) { MTex *mtex= ptr->data; @@ -414,6 +456,7 @@ static void rna_def_mtex(BlenderRNA *brna) srna= RNA_def_struct(brna, "TextureSlot", NULL); RNA_def_struct_sdna(srna, "MTex"); RNA_def_struct_ui_text(srna, "Texture Slot", "Texture slot defining the mapping and influence of a texture."); + RNA_def_struct_path_func(srna, "rna_TextureSlot_path"); RNA_def_struct_ui_icon(srna, ICON_TEXTURE_DATA); prop= RNA_def_property(srna, "texture", PROP_POINTER, PROP_NONE); From d46232a792786f83f79d298565097720671ca42a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 26 Oct 2009 12:06:14 +0000 Subject: [PATCH 183/412] Fix bug #19715: remove doubles was not working. --- source/blender/editors/mesh/editmesh_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index e9ef3b15706..1e650a59d56 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -484,8 +484,8 @@ static int removedoublesflag_exec(bContext *C, wmOperator *op) EditMesh *em= BKE_mesh_get_editmesh(((Mesh *)obedit->data)); /*char msg[100];*/ + /*int cnt =*/ removedoublesflag(em,1,0,RNA_float_get(op->ptr, "limit")); /*XXX this messes up last operator panel - int cnt = removedoublesflag(em,1,0,RNA_float_get(op->ptr, "limit")); if(cnt) { sprintf(msg, "Removed %d vertices", cnt); From 7603479b6e86a012f511bba00a0c55fd28e7b160 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 26 Oct 2009 12:30:28 +0000 Subject: [PATCH 184/412] Compile fix. --- source/blender/makesrna/intern/rna_userdef.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 01eae67a03b..d28cb2d267a 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -2247,12 +2247,7 @@ static void rna_def_userdef_input(BlenderRNA *brna) { PropertyRNA *prop; StructRNA *srna; - - srna= RNA_def_struct(brna, "UserPreferencesInput", NULL); - RNA_def_struct_sdna(srna, "UserDef"); - RNA_def_struct_nested(brna, srna, "UserPreferences"); - RNA_def_struct_ui_text(srna, "Input", "Settings for input devices."); - + static EnumPropertyItem select_mouse_items[] = { {USER_LMOUSESELECT, "LEFT", 0, "Left", "Use left Mouse Button for selection."}, {0, "RIGHT", 0, "Right", "Use Right Mouse Button for selection."}, @@ -2273,6 +2268,11 @@ static void rna_def_userdef_input(BlenderRNA *brna) {USER_ZOOM_DOLLY, "DOLLY", 0, "Dolly", "Zooms in and out based on vertical mouse movement."}, {USER_ZOOM_SCALE, "SCALE", 0, "Scale", "Zooms in and out like scaling the view, mouse movements relative to center."}, {0, NULL, 0, NULL, NULL}}; + + srna= RNA_def_struct(brna, "UserPreferencesInput", NULL); + RNA_def_struct_sdna(srna, "UserDef"); + RNA_def_struct_nested(brna, srna, "UserPreferences"); + RNA_def_struct_ui_text(srna, "Input", "Settings for input devices."); prop= RNA_def_property(srna, "middle_mouse", PROP_ENUM, PROP_NONE); RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); From 53ac50ea8b8aa19d31a22a91ba09a7ac5a9efc67 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 26 Oct 2009 12:42:25 +0000 Subject: [PATCH 185/412] Bugfix: 3d view with scene layer lock were not updated when the scene layer or other 3d view layers were changed. --- source/blender/editors/include/ED_view3d.h | 3 + .../editors/space_buttons/space_buttons.c | 1 + .../editors/space_outliner/space_outliner.c | 1 + .../editors/space_view3d/space_view3d.c | 3 + .../editors/space_view3d/view3d_header.c | 58 +++++++++++++++---- source/blender/makesrna/intern/rna_scene.c | 16 ++++- source/blender/windowmanager/WM_types.h | 1 + 7 files changed, 68 insertions(+), 15 deletions(-) diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h index 2752402fb66..be2822d8c49 100644 --- a/source/blender/editors/include/ED_view3d.h +++ b/source/blender/editors/include/ED_view3d.h @@ -43,6 +43,7 @@ struct EditFace; struct ImBuf; struct Scene; struct bContext; +struct Main; /* for derivedmesh drawing callbacks, for view3d_select, .... */ typedef struct ViewContext { @@ -136,5 +137,7 @@ struct RegionView3D *ED_view3d_context_rv3d(struct bContext *C); void ED_view3d_init_mats_rv3d(struct Object *ob, struct RegionView3D *rv3d); +void ED_view3d_scene_layers_update(struct Main *bmain, struct Scene *scene); + #endif /* ED_VIEW3D_H */ diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index 47806ba7937..f05c652c39d 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -252,6 +252,7 @@ static void buttons_area_listener(ScrArea *sa, wmNotifier *wmn) case ND_MODE: case ND_RENDER_OPTIONS: case ND_KEYINGSET: + case ND_LAYER: ED_area_tag_redraw(sa); break; diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c index 826a313217a..93fdc96e9f7 100644 --- a/source/blender/editors/space_outliner/space_outliner.c +++ b/source/blender/editors/space_outliner/space_outliner.c @@ -121,6 +121,7 @@ static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn) case ND_KEYINGSET: case ND_FRAME: case ND_RENDER_OPTIONS: + case ND_LAYER: ED_region_tag_redraw(ar); break; } diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index 695d86bb51b..ae0c73e71cc 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -445,6 +445,7 @@ static void view3d_main_area_listener(ARegion *ar, wmNotifier *wmn) case ND_FRAME: case ND_OB_ACTIVE: case ND_OB_SELECT: + case ND_LAYER: ED_region_tag_redraw(ar); break; case ND_MODE: @@ -551,6 +552,7 @@ static void view3d_header_area_listener(ARegion *ar, wmNotifier *wmn) case ND_OB_ACTIVE: case ND_OB_SELECT: case ND_MODE: + case ND_LAYER: ED_region_tag_redraw(ar); break; } @@ -598,6 +600,7 @@ static void view3d_buttons_area_listener(ARegion *ar, wmNotifier *wmn) case ND_OB_ACTIVE: case ND_OB_SELECT: case ND_MODE: + case ND_LAYER: ED_region_tag_redraw(ar); break; } diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 8a232b71c36..1e11699556a 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -134,7 +134,6 @@ static void do_view3d_header_buttons(bContext *C, void *arg, int event); #define B_VIEWBUT 104 #define B_PERSP 105 #define B_VIEWRENDER 106 -#define B_STARTGAME 107 #define B_MODESELECT 108 #define B_AROUND 109 #define B_SEL_VERT 110 @@ -169,9 +168,50 @@ static RegionView3D *wm_region_view3d(const bContext *C) return NULL; } +static void copy_view3d_lock_space(View3D *vd, Scene *scene) +{ + int bit; + + if(vd->scenelock && vd->localvd==NULL) { + vd->lay= scene->lay; + vd->camera= scene->camera; + + if(vd->camera==0 && vd->persp==V3D_CAMOB) + vd->persp= V3D_PERSP; + + if((vd->lay & vd->layact) == 0) { + for(bit= 0; bit<32; bit++) { + if(vd->lay & (1<layact= 1<screen.first; sc; sc=sc->id.next) { + if(sc->scene!=scene) + continue; + + for(sa=sc->areabase.first; sa; sa=sa->next) + for(sl=sa->spacedata.first; sl; sl=sl->next) + if(sl->spacetype==SPACE_VIEW3D) + copy_view3d_lock_space((View3D*)sl, scene); + } +} + // XXX quickly ported across static void handle_view3d_lock(bContext *C) { + Main *bmain= CTX_data_main(C); Scene *scene= CTX_data_scene(C); ScrArea *sa= CTX_wm_area(C); View3D *v3d= CTX_wm_view3d(C); @@ -181,9 +221,13 @@ static void handle_view3d_lock(bContext *C) /* copy to scene */ scene->lay= v3d->lay; scene->camera= v3d->camera; + + /* not through notifiery, listener don't have context + and non-open screens or spaces need to be updated too */ + ED_view3d_scene_layers_update(bmain, scene); /* notifiers for scene update */ - WM_event_add_notifier(C, NC_SCENE, scene); + WM_event_add_notifier(C, NC_SCENE|ND_LAYER, scene); } } } @@ -1713,21 +1757,11 @@ static void do_view3d_header_buttons(bContext *C, void *arg, int event) } break; - case B_VIEWBUT: - - - case B_PERSP: - - - break; case B_VIEWRENDER: if (sa->spacetype==SPACE_VIEW3D) { // XXX BIF_do_ogl_render(v3d, shift); } break; - case B_STARTGAME: -// XXX start_game(); - break; case B_MODESELECT: WM_operator_properties_create(&props_ptr, "OBJECT_OT_mode_set"); RNA_enum_set(&props_ptr, "mode", v3d->modeselect); diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 3ab147701df..899d600abcd 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -76,14 +76,16 @@ EnumPropertyItem proportional_editing_items[] = { #include "BKE_context.h" #include "BKE_global.h" -#include "BKE_scene.h" +#include "BKE_main.h" #include "BKE_node.h" #include "BKE_pointcache.h" +#include "BKE_scene.h" #include "BLI_threads.h" #include "ED_info.h" #include "ED_node.h" +#include "ED_view3d.h" #include "RE_pipeline.h" @@ -160,6 +162,14 @@ static void rna_Scene_layer_set(PointerRNA *ptr, const int *values) scene->lay= layer_set(scene->lay, values); } +static void rna_Scene_layer_update(bContext *C, PointerRNA *ptr) +{ + Main *bmain= CTX_data_main(C); + Scene *scene= (Scene*)ptr->data; + + ED_view3d_scene_layers_update(bmain, scene); +} + static void rna_Scene_start_frame_set(PointerRNA *ptr, int value) { Scene *data= (Scene*)ptr->data; @@ -2219,9 +2229,9 @@ void RNA_def_scene(BlenderRNA *brna) prop= RNA_def_property(srna, "visible_layers", PROP_BOOLEAN, PROP_LAYER_MEMBER); RNA_def_property_boolean_sdna(prop, NULL, "lay", 1); RNA_def_property_array(prop, 20); - RNA_def_property_ui_text(prop, "Visible Layers", "Layers visible when rendering the scene."); RNA_def_property_boolean_funcs(prop, NULL, "rna_Scene_layer_set"); - + RNA_def_property_ui_text(prop, "Visible Layers", "Layers visible when rendering the scene."); + RNA_def_property_update(prop, NC_SCENE|ND_LAYER, "rna_Scene_layer_update"); /* Frame Range Stuff */ prop= RNA_def_property(srna, "current_frame", PROP_INT, PROP_TIME); diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h index d326fadeba4..3d31341c66a 100644 --- a/source/blender/windowmanager/WM_types.h +++ b/source/blender/windowmanager/WM_types.h @@ -165,6 +165,7 @@ typedef struct wmNotifier { #define ND_COMPO_RESULT (11<<16) #define ND_KEYINGSET (12<<16) #define ND_SCENEDELETE (13<<16) +#define ND_LAYER (14<<16) /* NC_OBJECT Object */ #define ND_TRANSFORM (16<<16) From c4067b62d14cf3a7365c6c1b6b342b7dc04780af Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 26 Oct 2009 16:48:23 +0000 Subject: [PATCH 186/412] Durian text editor requests: -Added Run Script button in header -Added hotkey for Line Select (Ctrl-Shift-A) --- release/scripts/ui/space_text.py | 3 +++ source/blender/editors/space_text/space_text.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index 4860767d69d..f3597955365 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -44,6 +44,9 @@ class TEXT_HT_header(bpy.types.Header): row.itemL(text="Text: External") else: row.itemL(text="Text: Internal") + + row = layout.row() + row.itemO("text.run_script") class TEXT_PT_properties(bpy.types.Panel): __space_type__ = 'TEXT_EDITOR' diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c index 09a5374a43b..e9cd2644ba6 100644 --- a/source/blender/editors/space_text/space_text.c +++ b/source/blender/editors/space_text/space_text.c @@ -224,6 +224,7 @@ static void text_keymap(struct wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "TEXT_OT_paste", VKEY, KM_PRESS, KM_OSKEY, 0); WM_keymap_add_item(keymap, "TEXT_OT_find", FKEY, KM_PRESS, KM_OSKEY, 0); WM_keymap_add_item(keymap, "TEXT_OT_select_all", AKEY, KM_PRESS, KM_OSKEY, 0); + WM_keymap_add_item(keymap, "TEXT_OT_select_line", AKEY, KM_PRESS, KM_SHIFT|KM_OSKEY, 0); #endif WM_keymap_add_item(keymap, "TEXT_OT_new", NKEY, KM_PRESS, KM_ALT, 0); @@ -252,6 +253,7 @@ static void text_keymap(struct wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "TEXT_OT_to_3d_object", MKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "TEXT_OT_select_all", AKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "TEXT_OT_select_line", AKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_add_item(keymap, "TEXT_OT_indent", TABKEY, KM_PRESS, 0, 0); From 2b1705afff5dcf32d152598ae12e4dd3e1a58ab5 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 26 Oct 2009 18:00:06 +0000 Subject: [PATCH 187/412] Cocoa/Mac: - fix bad window context initialization bug introduced in rev # 24081 --- intern/ghost/intern/GHOST_WindowCocoa.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index 42d7de3f2df..7716175b9f6 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -181,7 +181,7 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( GHOST_TDrawingContextType type, const bool stereoVisual ) : - GHOST_Window(title, left, top, width, height, state, type,stereoVisual), + GHOST_Window(title, left, top, width, height, state, GHOST_kDrawingContextTypeNone, stereoVisual), m_customCursor(0) { NSOpenGLPixelFormatAttribute pixelFormatAttrsWindow[40]; From 4fcd358e539947a66bfbf6b23a33ca1f61a268da Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 26 Oct 2009 19:19:55 +0000 Subject: [PATCH 188/412] Correct default file to be on frame 1, not 252 --- source/blender/editors/datafiles/B.blend.c | 6210 ++++++++++---------- 1 file changed, 3041 insertions(+), 3169 deletions(-) diff --git a/source/blender/editors/datafiles/B.blend.c b/source/blender/editors/datafiles/B.blend.c index c43c0bd43dc..28d8c650f7d 100644 --- a/source/blender/editors/datafiles/B.blend.c +++ b/source/blender/editors/datafiles/B.blend.c @@ -1,165 +1,127 @@ -/* DataToC output of file */ +/* DataToC output of file */ -int datatoc_B_blend_size= 112944; +int datatoc_B_blend_size= 108848; char datatoc_B_blend[]= { - 66, 76, 69, 78, 68, 69, 82, 45,118, 50, 53, 48, 82, 69, 78, 68, - 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110, -101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 24, 1, 0, 0,224,236,191, 95, -255,127, 0, 0,196, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 55, 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,112, 24, 39, 3, - 1, 0, 0, 0, 48,216,135, 3, 1, 0, 0, 0, 0, 16, 0, 0,128, 32, 4, 0, 47, 85,115,101,114,115, 47, 87,105,108,108,105, - 97,109, 47, 46, 66, 50, 53, 46, 98,108,101,110,100, 0,191, 95,255,127, 0, 0, 84,212,169, 2, 1, 0, 0, 0,112,237,191, 95, -255,127, 0, 0,214,197, 91, 0, 1, 0, 0, 0, 80,237,191, 95,255,127, 0, 0,208, 90,171, 2, 32, 0, 0, 0,224,237,191, 95, -255,127, 0, 0,160, 65, 13, 3, 1, 0, 0, 0,144,237,191, 95,255,127, 0, 0, 48,212,169, 2, 1, 0, 0, 0,192,237,191, 95, -255,127, 0, 0, 77,200, 91, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 32, 0, 0, 0, - 82, 69, 78, 68,160, 65, 13, 3, 1, 0, 0, 0, 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0,232,237,191, 95,255,127, 0, 0, 16,238,191, 95,255,127, 0, 0, 89,207, 91, 0, 1, 0, 0, 0,224, 18, 39, 3, - 1, 0, 0, 0,160, 65, 13, 3, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 87, 77, 0, 0, 8, 1, 0, 0, 0, 22, 39, 3, 1, 0, 0, 0, 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105, -110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 80, 23, 39, 3, - 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 93, 38, 3, 1, 0, 0, 0,240, 93, 38, 3, 1, 0, 0, 0,240, 93, 38, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 94, 38, 3, 1, 0, 0, 0,208, 94, 38, 3, 1, 0, 0, 0,208, 94, 38, 3, - 1, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0, 80, 23, 39, 3, 1, 0, 0, 0, 96, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,104, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 24, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,115, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 20, 3, 0, 0, 0, 0, 1, 0,238, 3, 0, 0, 1, 0, - 0, 0, 0, 0,208,174, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,110,234, 24, 1, 0, 0, 0, 0,142,181, 24, 1, 0, 0, 0, 0,142,181, 24, 1, 0, 0, 0,208,245, 38, 3, - 1, 0, 0, 0, 96, 42, 40, 3, 1, 0, 0, 0,208, 43, 40, 3, 1, 0, 0, 0,208, 43, 40, 3, 1, 0, 0, 0,144,225, 39, 3, - 1, 0, 0, 0, 32, 88,234, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0, -208, 0, 0, 0,112, 24, 39, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,101,101,110, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 25, 39, 3, - 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0, 96, 36, 39, 3, 1, 0, 0, 0,192, 36, 39, 3, - 1, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,216,135, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 12, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28,164, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 25, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 26, 39, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 5, 20, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 27, 39, 3, - 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,249, 2, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5,249, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 27, 39, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,124, 4, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4,249, 2, - 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 28, 39, 3, - 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 92, 2, 1, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 92, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 29, 39, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4,100, 0, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 30, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 30, 39, 3, - 1, 0, 0, 0, 0, 30, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 30, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 31, 39, 3, - 1, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 31, 39, 3, - 1, 0, 0, 0,192, 30, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 31, 39, 3, - 1, 0, 0, 0, 32, 31, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 31, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 32, 39, 3, - 1, 0, 0, 0,128, 31, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 32, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 32, 39, 3, - 1, 0, 0, 0,224, 31, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 32, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 33, 39, 3, - 1, 0, 0, 0, 64, 32, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 33, 39, 3, - 1, 0, 0, 0,160, 32, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 33, 39, 3, - 1, 0, 0, 0, 0, 33, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 33, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 34, 39, 3, - 1, 0, 0, 0, 96, 33, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 34, 39, 3, - 1, 0, 0, 0,192, 33, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 34, 39, 3, - 1, 0, 0, 0, 32, 34, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 34, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 35, 39, 3, - 1, 0, 0, 0,128, 34, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 35, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 35, 39, 3, - 1, 0, 0, 0,224, 34, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 35, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 36, 39, 3, - 1, 0, 0, 0, 64, 35, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 36, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 36, 39, 3, - 1, 0, 0, 0,160, 35, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 36, 39, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 36, 39, 3, 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,192, 36, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96, 40, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0,224, 25, 39, 3, 1, 0, 0, 0, 64, 26, 39, 3, - 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0,250, 2, 0, 0, - 20, 3, 0, 0, 7, 7,161, 5, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 39, 35, 3, 1, 0, 0, 0,176,146, 39, 3, - 1, 0, 0, 0,176,146, 39, 3, 1, 0, 0, 0,160, 37, 39, 3, 1, 0, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 5, 43, 25, 1, 0, 0, 0,144,126, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,160, 37, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,180, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,161, 5, 26, 0,161, 5, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -160, 5, 0, 0,250, 2, 0, 0, 19, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 5, 26, 0, - 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 41, 35, 3, 1, 0, 0, 0,240,242,237, 24, - 1, 0, 0, 0,240,242,237, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1, 13, 3, - 1, 0, 0, 0,208,134,118, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 0, 39, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 37, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,192,107, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,191,107, 69, 0, 0, 0,192, - 0, 0, 0, 0, 94, 7, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 93, 7, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 93, 7, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,111, 7, 5, 0, 94, 7, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 3, 0, 0, 20, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 40, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 66, 76, 69, 78, 68, 69, 82, 95,118, 50, 53, 48, 82, 69, 78, 68, + 32, 0, 0, 0,108, 56,129,191, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 16, 1, 0, 0, 92, 55,129,191,196, 0, 0, 0, + 1, 0, 0, 0, 32, 32, 32, 55, 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,176,179,173, 9,128, 29,174, 9, 0, 16, 0, 0, +128, 32, 4, 0, 60,109,101,109,111,114,121, 50, 62, 0, 0, 0,185, 6, 0, 0, 32,160, 5,182, 96,117, 80,183,186, 85, 38, 8, + 4,252, 57,183, 28,124, 13, 8, 1, 0, 0, 0,196, 15,252,183, 88, 56,129,191, 16, 24,252,183,116, 56,129,191,113,215,250,183, + 28,124, 13, 8, 88, 56,129,191,180, 23,252,183, 21, 0, 0, 0, 32,160, 5,182, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, +244,191, 76,183,236, 56,129,191, 0, 56,129,191, 96,117, 80,183,123, 8, 63,183, 0, 56,129,191,100, 56,129,191,216, 56,129,191, +160, 56,129,191, 88, 22,252,183,186, 85, 38, 8,119,215,155,124, 0, 0, 0, 0, 0, 0, 0, 0,236, 56,129,191, 5, 57,129,191, +255,255,255,255,236, 56,129,191,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +104, 58,129,191, 0, 0, 0, 0,152,248,161, 9, 0, 0, 0, 0, 0, 0, 0, 0,180,122,174,182,184,177,181, 9, 0, 0, 32, 3, +180,216, 57,183, 96,117, 80,183, 64,192,182, 9,190,102, 7, 0,196, 15,252,183, 87, 77, 0, 0,164, 0, 0, 0, 32,178,173, 9, + 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105,110, 77, 97,110, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240,178,173, 9,240,178,173, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 77,174, 9,168, 77,174, 9,168, 77,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, +112, 78,174, 9,112, 78,174, 9,112, 78,174, 9, 68, 65, 84, 65,148, 0, 0, 0,240,178,173, 9, 96, 1, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 78,174, 9, 1, 0, 0, 0, 0, 0, 0, 0,176,179,173, 9, 0, 0, 0, 0,115, 99,114,101, +101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, +144, 6,213, 3, 0, 0, 0, 0, 0, 0,238, 3, 0, 0, 0, 0, 0, 0, 0, 0, 24,206,187, 9,200,161, 47, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 72,135,190, 9, 0, 0, 0, 0, 0, 0, 0, 0, 8,212,187, 9, 8,213,187, 9, 8,214,187, 9, + 8,214,187, 9,120,214,187, 9,200,161, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,140, 0, 0, 0,176,179,173, 9, +190, 0, 0, 0, 1, 0, 0, 0, 88,218, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,101,101,110, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,104,180,173, 9, + 40,183,173, 9,104,183,173, 9, 48,188,173, 9,120,188,173, 9,128, 2,174, 9,216, 69, 41, 10,216, 69, 41, 10,128, 29,174, 9, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,186, 68, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,180,173, 9, +191, 0, 0, 0, 1, 0, 0, 0,168,180,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 20, 0, 0, 0,168,180,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,180,173, 9,104,180,173, 9, 0, 0, 0, 0, 0, 0,213, 3, + 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,180,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,181,173, 9,168,180,173, 9, + 0, 0, 0, 0,144, 6,213, 3, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0, +104,181,173, 9,232,180,173, 9, 0, 0, 0, 0,144, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,181,173, 9, +191, 0, 0, 0, 1, 0, 0, 0,168,181,173, 9, 40,181,173, 9, 0, 0, 0, 0, 0, 0,186, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 20, 0, 0, 0,168,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,181,173, 9,104,181,173, 9, 0, 0, 0, 0,144, 6,186, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,182,173, 9,168,181,173, 9, + 0, 0, 0, 0, 60, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0, +104,182,173, 9,232,181,173, 9, 0, 0, 0, 0, 60, 5,186, 3, 1, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,182,173, 9, +191, 0, 0, 0, 1, 0, 0, 0,168,182,173, 9, 40,182,173, 9, 0, 0, 0, 0, 60, 5,244, 2, 0, 0, 0, 0, 68, 65, 84, 65, + 20, 0, 0, 0,168,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,182,173, 9,104,182,173, 9, 0, 0, 0, 0,144, 6,244, 2, + 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,183,173, 9,168,182,173, 9, + 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,183,173, 9,191, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0,232,182,173, 9, 0, 0, 0, 0, 60, 5,128, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,104,183,173, 9, +192, 0, 0, 0, 1, 0, 0, 0,176,183,173, 9, 0, 0, 0, 0,168,180,173, 9,232,180,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 24, 0, 0, 0,176,183,173, 9,192, 0, 0, 0, 1, 0, 0, 0,248,183,173, 9,104,183,173, 9,168,180,173, 9, +104,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,248,183,173, 9,192, 0, 0, 0, 1, 0, 0, 0, + 64,184,173, 9,176,183,173, 9,232,180,173, 9,168,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, + 64,184,173, 9,192, 0, 0, 0, 1, 0, 0, 0,136,184,173, 9,248,183,173, 9,104,181,173, 9,168,181,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,136,184,173, 9,192, 0, 0, 0, 1, 0, 0, 0,208,184,173, 9, 64,184,173, 9, +104,180,173, 9,232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,208,184,173, 9,192, 0, 0, 0, + 1, 0, 0, 0, 24,185,173, 9,136,184,173, 9, 40,181,173, 9,232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 24, 0, 0, 0, 24,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 96,185,173, 9,208,184,173, 9,104,181,173, 9, 40,182,173, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 96,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0,168,185,173, 9, + 24,185,173, 9,168,181,173, 9, 40,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,168,185,173, 9, +192, 0, 0, 0, 1, 0, 0, 0,240,185,173, 9, 96,185,173, 9,232,181,173, 9,104,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 24, 0, 0, 0,240,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 56,186,173, 9,168,185,173, 9, 40,182,173, 9, +104,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 56,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0, +128,186,173, 9,240,185,173, 9,168,181,173, 9,168,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, +128,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0,200,186,173, 9, 56,186,173, 9, 40,181,173, 9,168,182,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,200,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 16,187,173, 9,128,186,173, 9, +104,182,173, 9,168,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 16,187,173, 9,192, 0, 0, 0, + 1, 0, 0, 0, 88,187,173, 9,200,186,173, 9,104,180,173, 9,232,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 24, 0, 0, 0, 88,187,173, 9,192, 0, 0, 0, 1, 0, 0, 0,160,187,173, 9, 16,187,173, 9,104,181,173, 9,232,182,173, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,160,187,173, 9,192, 0, 0, 0, 1, 0, 0, 0,232,187,173, 9, + 88,187,173, 9, 40,182,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,232,187,173, 9, +192, 0, 0, 0, 1, 0, 0, 0, 48,188,173, 9,160,187,173, 9,232,181,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 24, 0, 0, 0, 48,188,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,187,173, 9,232,182,173, 9, + 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,120,188,173, 9,194, 0, 0, 0, 1, 0, 0, 0, + 88,191,173, 9, 0, 0, 0, 0,104,181,173, 9,168,180,173, 9,232,180,173, 9,168,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, +144, 6, 0, 0,187, 3, 0, 0,213, 3, 0, 0, 7, 7,145, 6, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,160,216,162, 9, + 32, 29,174, 9, 32, 29,174, 9, 8,189,173, 9, 48,190,173, 9, 0, 0, 0, 0, 0, 0, 0, 0,112,180,192, 9,224, 89,192, 9, + 68, 65, 84, 65,248, 0, 0, 0, 8,189,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 48,190,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,210, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0, 96, 40, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240, 86, 39, 3, 1, 0, 0, 0,192, 36, 39, 3, - 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0,160, 26, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, 91, 2, 0, 0, 4, 4, 36, 1, - 92, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 36, 35, 3, 1, 0, 0, 0, 96, 78, 39, 3, 1, 0, 0, 0,144, 85, 39, 3, - 1, 0, 0, 0, 64, 41, 39, 3, 1, 0, 0, 0,160, 42, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192, 77, 41, 25, 1, 0, 0, 0, 0,113, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 41, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 42, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,146, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, +144, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,145, 6, 26, 0,145, 6, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 6, 0, 0,187, 3, 0, 0,212, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,145, 6, 26, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,184,217,162, 9, 88,245, 47, 10, 88,245, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0,248, 10, 48, 10, + 16,219,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 48,190,173, 9,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 8,189,173, 9, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, + 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, + 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,213, 3, 0, 0,213, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 56,217,162, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 8,189, 39, 10, 56,222,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0, + 88,191,173, 9,194, 0, 0, 0, 1, 0, 0, 0, 96,233,173, 9,120,188,173, 9,232,181,173, 9,104,182,173, 9,168,182,173, 9, + 40,181,173, 9, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, 0, 0, 0, 0,243, 2, 0, 0, 4, 4, 84, 1,244, 2, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 72,214,162, 9,216,225,173, 9, 64,232,173, 9,232,191,173, 9, 16,193,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 66,204, 9,216, 46,227, 9, 68, 65, 84, 65,248, 0, 0, 0,232,191,173, 9,195, 0, 0, 0, 1, 0, 0, 0, + 16,193,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 16, 66,252, 54, 0, 0,170, 67, + 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, + 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, + 31, 0, 84, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0, +144, 6, 0, 0,213, 2, 0, 0,243, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 31, 0, + 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,216,162, 9, 16,183, 41, 10, 16,183, 41, 10, + 0, 0, 0, 0, 0, 0, 0, 0,168,250, 41, 10,104,226,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, + 16,193,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,191,173, 9, 0, 0, 0, 0, 0, 0,161, 67, 0, 0, 62,196, + 0, 0, 0, 0, 0, 0, 0, 0,254,127,161, 67,254,191, 48,196, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0, +212, 2, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0, +212, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 84, 1,213, 2, 67, 1,195, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200,186, 39, 10, + 1, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, 0, 0, 0, 0,212, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 1,213, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224,214,162, 9, 96,225, 39, 10, 40,156, 39, 10, 56,194,173, 9,104,224,173, 9,112, 11, 40, 10, 0,230,187, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 56,194,173, 9,193, 0, 0, 0, 1, 0, 0, 0,168,195,173, 9, 0, 0, 0, 0, + 96,215,162, 9, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 35, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 36, 1, 31, 0, 36, 1, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 61, 2, 0, 0, - 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 31, 0, 3, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 35, 3, 1, 0, 0, 0,144, 94,234, 24, 1, 0, 0, 0,144, 94,234, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 66, 40, 25, 1, 0, 0, 0,160, 31,118, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 42, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 41, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,137, 67, 0, 0, 62,196, 0, 0, 0, 0, 0, 0, 0, 0,254,127,137, 67,254,191, 10,196, 0, 0, 0, 0, 19, 1, 0, 0, - 36, 1, 0, 0, 18, 0, 0, 0, 60, 2, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 18, 1, 0, 0, 18, 0, 0, 0, 60, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 36, 1, 61, 2, 19, 1, 43, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48, 49, 40, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 0, 0, 0, 0, - 60, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 61, 2, 4, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 37, 35, 3, 1, 0, 0, 0, 16,178,237, 24, 1, 0, 0, 0,128, 38,238, 24, - 1, 0, 0, 0, 0, 44, 39, 3, 1, 0, 0, 0,208, 76, 39, 3, 1, 0, 0, 0, 32, 71, 42, 25, 1, 0, 0, 0,144,196,117, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 44, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 45, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 38, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 18, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 66, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 45, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 47, 39, 3, - 1, 0, 0, 0, 0, 44, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, +168,195,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 24,197,173, 9, 56,194,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -169,89 +131,82 @@ char datatoc_B_blend[]= { 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 47, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 48, 39, 3, 1, 0, 0, 0,144, 45, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 24,197,173, 9,193, 0, 0, 0, 1, 0, 0, 0, +136,198,173, 9,168,195,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 48, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 50, 39, 3, - 1, 0, 0, 0, 32, 47, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 64, 1, 0, 0,136,198,173, 9,193, 0, 0, 0, 1, 0, 0, 0,248,199,173, 9, 24,197,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 50, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 51, 39, 3, 1, 0, 0, 0,176, 48, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,248,199,173, 9, +193, 0, 0, 0, 1, 0, 0, 0,104,201,173, 9,136,198,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, + 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 51, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 53, 39, 3, - 1, 0, 0, 0, 64, 50, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,104,201,173, 9,193, 0, 0, 0, 1, 0, 0, 0,216,202,173, 9, +248,199,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 64, 1, 0, 0,216,202,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 72,204,173, 9,104,201,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 53, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 54, 39, 3, 1, 0, 0, 0,208, 51, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 72,204,173, 9,193, 0, 0, 0, + 1, 0, 0, 0,184,205,173, 9,216,202,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114, +102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114, +102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 54, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 56, 39, 3, - 1, 0, 0, 0, 96, 53, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,184,205,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 40,207,173, 9, 72,204,173, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 56, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0,240, 54, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 59, 39, 3, - 1, 0, 0, 0,128, 56, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, + 40,207,173, 9,193, 0, 0, 0, 1, 0, 0, 0,152,208,173, 9,184,205,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -261,165 +216,151 @@ char datatoc_B_blend[]= { 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 59, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0, 16, 58, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,152,208,173, 9,193, 0, 0, 0, 1, 0, 0, 0, + 8,210,173, 9, 40,207,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 62, 39, 3, - 1, 0, 0, 0,160, 59, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, -110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 64, 1, 0, 0, 8,210,173, 9,193, 0, 0, 0, 1, 0, 0, 0,120,211,173, 9,152,208,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 62, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0, 48, 61, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,120,211,173, 9, +193, 0, 0, 0, 1, 0, 0, 0,232,212,173, 9, 8,210,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 65, 39, 3, - 1, 0, 0, 0,192, 62, 39, 3, 1, 0, 0, 0,144,118,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 18, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,232,212,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 88,214,173, 9, +120,211,173, 9,248,124,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 66, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 64, 1, 0, 0, 88,214,173, 9,193, 0, 0, 0, 1, 0, 0, 0,200,215,173, 9,232,212,173, 9, 56,120,192, 9, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 65, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 67, 39, 3, 1, 0, 0, 0, 80, 64, 39, 3, 1, 0, 0, 0,128,129,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,200,215,173, 9,193, 0, 0, 0, + 1, 0, 0, 0, 56,217,173, 9, 88,214,173, 9, 0,103,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105, +109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105, +109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 66, 1,178, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 67, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 69, 39, 3, - 1, 0, 0, 0,224, 65, 39, 3, 1, 0, 0, 0, 96,131,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 18, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 56,217,173, 9,193, 0, 0, 0, 1, 0, 0, 0,168,218,173, 9,200,215,173, 9, +144,172,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 66, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 69, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,112, 67, 39, 3, 1, 0, 0, 0,192,136,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 18, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 72, 39, 3, - 1, 0, 0, 0, 0, 69, 39, 3, 1, 0, 0, 0, 32,139,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, +168,218,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 24,220,173, 9, 56,217,173, 9,168, 6,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, 105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 18, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 72, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 73, 39, 3, 1, 0, 0, 0,144, 70, 39, 3, 1, 0, 0, 0,128,144,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 24,220,173, 9,193, 0, 0, 0, 1, 0, 0, 0, +136,221,173, 9,168,218,173, 9, 8, 44,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 18, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 66, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 73, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 75, 39, 3, - 1, 0, 0, 0, 32, 72, 39, 3, 1, 0, 0, 0,112,101,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 64, 1, 0, 0,136,221,173, 9,193, 0, 0, 0, 1, 0, 0, 0,248,222,173, 9, 24,220,173, 9,144, 39,200, 9, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 60,253, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 75, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 76, 39, 3, 1, 0, 0, 0,176, 73, 39, 3, 1, 0, 0, 0, 48,153,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 18, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,248,222,173, 9, +193, 0, 0, 0, 1, 0, 0, 0,104,224,173, 9,136,221,173, 9,208,159,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, + 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 66, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 76, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 64, 75, 39, 3, 1, 0, 0, 0,144,155,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 18, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,104,224,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +248,222,173, 9, 32, 21,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96, 78, 39, 3, - 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144, 85, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 66, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +224, 0, 0, 0,216,225,173, 9,162, 0, 0, 0, 1, 0, 0, 0, 64,232,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,240,158,234, 24, 1, 0, 0, 0,255, 21, 0, 0, -160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 79, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 79, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, +200, 68, 41, 10,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,232,226,173, 9,195, 0, 0, 0, + 1, 0, 0, 0, 16,228,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +248, 0, 0, 0, 16,228,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,226,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -427,284 +368,243 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 56,229,173, 9, 68, 65, 84, 65,216, 2, 0, 0, 56,229,173, 9,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96, 82, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96, 82, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,144, 85, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 78, 39, 3, - 1, 0, 0, 0,160, 79, 39, 3, 1, 0, 0, 0, 0, 81, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 64,232,173, 9, +157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,216,225,173, 9,232,226,173, 9, 16,228,173, 9, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240, 86, 39, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 98, 39, 3, 1, 0, 0, 0, 96, 40, 39, 3, 1, 0, 0, 0,128, 25, 39, 3, - 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, 1, 0, 0, 0,192, 27, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 15, 15,124, 4,100, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224, 7, 35, 3, 1, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,128, 97, 39, 3, 1, 0, 0, 0,208, 87, 39, 3, - 1, 0, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,231, 42, 25, - 1, 0, 0, 0,144, 80, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 87, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0,128,143, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,124, 4, 26, 0,124, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 26, 0, 5, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 9, 35, 3, 1, 0, 0, 0,208, 61,235, 24, 1, 0, 0, 0,208, 61,235, 24, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,218,117, 22, 1, 0, 0, 0, 16,201,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 89, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 87, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0, + 96,233,173, 9,194, 0, 0, 0, 1, 0, 0, 0,152,243,173, 9, 88,191,173, 9,104,180,173, 9,232,182,173, 9, 40,183,173, 9, +232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0,127, 0, 0, 0, 15, 15, 60, 5,128, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,195,162, 9, 64,236,173, 9,120,242,173, 9,240,233,173, 9, 24,235,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0,216, 49,203, 9, 56,129,200, 9, 68, 65, 84, 65,248, 0, 0, 0,240,233,173, 9,195, 0, 0, 0, 1, 0, 0, 0, + 24,235,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,167, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 60, 5, + 26, 0, 60, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 5, 26, 0, + 6, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88,196,162, 9,240,226, 39, 10,240,226, 39, 10, + 0, 0, 0, 0, 0, 0, 0, 0,168,237, 42, 10,160,233,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, + 24,235,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240,233,173, 9, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 18, 0, 0, 0, - 73, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,124, 4, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0, 26, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 74, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192, 8, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,203,117, 22, 1, 0, 0, 0,128,185,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0,128, 97, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 18, 0, 0, 0, +101, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 60, 5,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 26, 0, 0, 0,127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 60, 5,102, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +216,195,162, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88,235,187, 9,128,239,187, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,180, 0, 0, 0, 64,236,173, 9,172, 0, 0, 0, 1, 0, 0, 0,120,242,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 91, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,240, 92, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 92, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 91, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 32,237,173, 9,195, 0, 0, 0, 1, 0, 0, 0, + 72,238,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, + 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, + 72,238,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32,237,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,239,173, 9, 68, 65, 84, 65,216, 2, 0, 0,112,239,173, 9,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 94, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80, 94, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,120,242,173, 9,157, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 64,236,173, 9, 32,237,173, 9, 72,238,173, 9, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,128, 97, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 90, 39, 3, - 1, 0, 0, 0,144, 91, 39, 3, 1, 0, 0, 0,240, 92, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,224, 98, 39, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0,240, 86, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, - 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0, 96, 27, 39, 3, 1, 0, 0, 0,224, 28, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 93, 2, 0, 0,248, 2, 0, 0, 3, 3, 36, 1,156, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 64, 5, 35, 3, 1, 0, 0, 0,128,102, 39, 3, 1, 0, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,192, 99, 39, 3, - 1, 0, 0, 0, 32,101, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,219,117, 22, - 1, 0, 0, 0,160,185, 41, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 99, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 32,101, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,146, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 36, 1, 26, 0, 36, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0,223, 2, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1, 26, 0, 7, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 7, 35, 3, 1, 0, 0, 0, 0,237, 42, 25, 1, 0, 0, 0, 0,237, 42, 25, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 10, 42, 25, 1, 0, 0, 0, 16,206,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,101, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 99, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,137, 67, 0, 0,228,194, 0, 0, 0,192, 19, 1, 0, 0, 36, 1, 0, 0, 18, 0, 0, 0, -129, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, 0, 18, 0, 0, 0, -129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, - 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 36, 1,130, 0, 19, 1,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,125, 4, 0, 0,160, 5, 0, 0, 93, 2, 0, 0,222, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 1,130, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 32, 6, 35, 3, 1, 0, 0, 0,240,146, 40, 25, 1, 0, 0, 0,240,146, 40, 25, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 22, 12, 3, 1, 0, 0, 0, 96,210,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,102, 39, 3, 1, 0, 0, 0,166, 0, 0, 0, - 1, 0, 0, 0, 0,108, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,152,243,173, 9, +194, 0, 0, 0, 1, 0, 0, 0,128, 2,174, 9, 96,233,173, 9,104,182,173, 9, 40,182,173, 9,168,181,173, 9,168,182,173, 9, + 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0,245, 2, 0, 0,185, 3, 0, 0, 3, 3, 84, 1,197, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,168,193,162, 9,120,246,173, 9, 96, 1,174, 9, 40,244,173, 9, 80,245,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, +120,142,142, 9, 56,217,203, 9, 68, 65, 84, 65,248, 0, 0, 0, 40,244,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 80,245,173, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,170, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, 26, 0, 84, 1, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, +160, 3, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 26, 0, 8, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,194,162, 9,160,231, 39, 10,160,231, 39, 10, 0, 0, 0, 0, + 0, 0, 0, 0,248,149, 41, 10,176,242,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 80,245,173, 9, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 40,244,173, 9, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,161, 67, 0, 0, 25,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0,170, 0, 0, 0, + 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0,170, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, + 0, 0, 0, 4, 6, 0, 84, 1,171, 0, 67, 1,153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0,245, 2, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84, 1,171, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,194,162, 9, + 88,189, 40, 10, 88,189, 40, 10, 0, 0, 0, 0, 0, 0, 0, 0,184,110, 42, 10,216,245,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 4, 1, 0, 0,120,246,173, 9,166, 0, 0, 0, 1, 0, 0, 0,248,250,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 91, 42, 25, 1, 0, 0, 0,112, 91, 42, 25, - 1, 0, 0, 0,224,103, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 10, 40, 10,240, 10, 40, 10,168,247,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0,224,103, 39, 3, 1, 0, 0, 0,218, 0, 0, 0, - 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 48,104, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 48,104, 39, 3, - 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 19, 0, 0, 0, - 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 21, 0, 1, 0, - 1, 0, 1, 0, 48,216,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,176,155, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,166, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0,208,159, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,224,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,242,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,151, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,150, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64,105, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,106, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 12, 0, 0, 0, +168,247,173, 9,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,224,247,173, 9, 68, 65, 84, 65,156, 0, 0, 0, +224,247,173, 9,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,128, 29,174, 9, 19, 0, 0, 0, 1, 0, 1, 0, +128, 29,174, 9, 20, 0, 0, 0, 1, 0, 1, 0,128, 29,174, 9, 21, 0, 1, 0, 1, 0, 1, 0,128, 29,174, 9, 0, 0, 0, 0, + 1, 0, 1, 0, 24, 42,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,216, 52,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,208, 66,174, 9, + 0, 0, 0, 0, 1, 0, 1, 0, 32, 61,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,120, 65,174, 9, 0, 0, 0, 0, 1, 0, 1, 0, + 72, 57,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,144, 38,174, 9, 0, 0, 0, 0, 1, 0, 1, 0, 0, 49,174, 9, 0, 0, 0, 0, + 1, 0, 1, 0,232, 37,174, 9, 68, 65, 84, 65,248, 0, 0, 0,168,248,173, 9,195, 0, 0, 0, 1, 0, 0, 0,208,249,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, + 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,208,249,173, 9, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,168,248,173, 9, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, + 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, + 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,160,106, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,105, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, - 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, -156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 0, 1, 0, 0, 0,108, 39, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,128,102, 39, 3, - 1, 0, 0, 0, 64,105, 39, 3, 1, 0, 0, 0,160,106, 39, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,224, 0, 0, 0,248,250,173, 9,162, 0, 0, 0, 1, 0, 0, 0, 96, 1,174, 9,120,246,173, 9,168,248,173, 9, +208,249,173, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 8,252,173, 9, +195, 0, 0, 0, 1, 0, 0, 0, 48,253,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,109, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,110, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,110, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,109, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,248, 0, 0, 0, 48,253,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8,252,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, - 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,112, 39, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 88,254,173, 9, 68, 65, 84, 65,216, 2, 0, 0, 88,254,173, 9,156, 0, 0, 0, 1, 0, 0, 0, +103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, +103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, +237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, +103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48,115, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,108, 39, 3, 1, 0, 0, 0, 64,109, 39, 3, 1, 0, 0, 0,160,110, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, + 96, 1,174, 9,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,248,250,173, 9, 8,252,173, 9, 48,253,173, 9, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,144,116, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 98, 39, 3, - 1, 0, 0, 0, 64, 29, 39, 3, 1, 0, 0, 0, 0, 27, 39, 3, 1, 0, 0, 0, 32, 28, 39, 3, 1, 0, 0, 0,160, 29, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0,101, 0, 0, 0,248, 2, 0, 0, 1, 1,124, 4, -148, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 10, 35, 3, 1, 0, 0, 0,144,141, 39, 3, 1, 0, 0, 0,176,145, 39, 3, - 1, 0, 0, 0,112,117, 39, 3, 1, 0, 0, 0, 0,137, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16,186, 41, 25, 1, 0, 0, 0,176, 18,119, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,117, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,118, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,143, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -123, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,124, 4, 26, 0,124, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 4, 0, 0,101, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124, 4, 26, 0, 9, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 18, 35, 3, 1, 0, 0, 0,144, 46, 43, 25, 1, 0, 0, 0,144, 46, 43, 25, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,243, 40, 25, 1, 0, 0, 0, 16,218,117, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,118, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,123, 39, 3, 1, 0, 0, 0,112,117, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 0,248,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 0,248,195, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, 2, 2,143, 0,240, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,247, 0, 0, 0, -248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0, 2, 2, 13, 0, 5, 0, 3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 35, 3, 1, 0, 0, 0, 0,172,237, 24, 1, 0, 0, 0, 96,102,235, 24, - 1, 0, 0, 0, 48,120, 39, 3, 1, 0, 0, 0,192,121, 39, 3, 1, 0, 0, 0, 80,244, 40, 25, 1, 0, 0, 0,112,169,236, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,120, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,121, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 15, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 96, 0, 0, 0,128, 2,174, 9,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,152,243,173, 9,232,182,173, 9,104,181,173, 9, + 40,182,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0,129, 0, 0, 0,185, 3, 0, 0, 1, 1, 60, 5, + 57, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,196,162, 9,208, 24,174, 9, 64, 28,174, 9, 16, 3,174, 9,160, 20,174, 9, + 0, 0, 0, 0, 0, 0, 0, 0,200, 95,143, 9,184, 89,142, 9, 68, 65, 84, 65,248, 0, 0, 0, 16, 3,174, 9,195, 0, 0, 0, + 1, 0, 0, 0, 56, 4,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0,128,167, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 60, 5, 26, 0, 60, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 59, 5, 0, 0,129, 0, 0, 0,154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 60, 5, 26, 0, 10, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,202,162, 9, 0,187, 39, 10, + 0,187, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 56,253,187, 9,128,251,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +248, 0, 0, 0, 56, 4,174, 9,195, 0, 0, 0, 1, 0, 0, 0, 64, 8,174, 9, 16, 3,174, 9, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 0, 37,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255, 63, 37,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,166, 2, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,166, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,167, 2,143, 0,149, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0, 19, 1, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,167, 2, 11, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240,199,162, 9, 72, 6, 42, 10,208,223, 39, 10, 96, 5,174, 9,208, 6,174, 9,144,170, 39, 10,136,254,187, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 96, 5,174, 9,193, 0, 0, 0, 1, 0, 0, 0,208, 6,174, 9, + 0, 0, 0, 0,112,200,162, 9, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -713,300 +613,324 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 64, 1, 0, 0,208, 6,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 96, 5,174, 9, 40, 29,222, 9, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,121, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,120, 39, 3, 1, 0, 0, 0,224, 74,191, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, - 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,254, -143, 0,120, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,123, 39, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,126, 39, 3, 1, 0, 0, 0,208,118, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,127, 0, 0, 0, -246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,120, 0, 14, 0, 6, 0, 34, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 16, 35, 3, 1, 0, 0, 0, 80,149,236, 24, 1, 0, 0, 0, 80,149,236, 24, - 1, 0, 0, 0,176,124, 39, 3, 1, 0, 0, 0,176,124, 39, 3, 1, 0, 0, 0,128,158, 40, 25, 1, 0, 0, 0,208,226,117, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,124, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 17, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 64, 8,174, 9,195, 0, 0, 0, + 1, 0, 0, 0,216, 10,174, 9, 56, 4,174, 9, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, +231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,159, 0, 0, 0,155, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 0,120, 0, 12, 0, 6, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,201,162, 9,136,213, 43, 10, +136,213, 43, 10,104, 9,174, 9,104, 9,174, 9,160, 51, 42, 10,144, 1,188, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 64, 1, 0, 0,104, 9,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,201,162, 9, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,126, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,137, 39, 3, - 1, 0, 0, 0, 80,123, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,216, 10,174, 9,195, 0, 0, 0, + 1, 0, 0, 0,160, 20,174, 9, 64, 8,174, 9, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,123, 4, 0, 0,123, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 12, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,127, 39, 3, 1, 0, 0, 0,112,135, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,127, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,129, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 13, 35, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 59, 5, 0, 0, 59, 5, 0, 0,155, 0, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240,197,162, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 12,174, 9, 48, 19,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 64, 1, 0, 0, 0, 12,174, 9,193, 0, 0, 0, 1, 0, 0, 0,112, 13,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,112, 13,174, 9,193, 0, 0, 0, + 1, 0, 0, 0,224, 14,174, 9, 0, 12,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, +101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, +101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105, +108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,224, 14,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 80, 16,174, 9,112, 13,174, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, + 80, 16,174, 9,193, 0, 0, 0, 1, 0, 0, 0,192, 17,174, 9,224, 14,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, -115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, -163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112, +108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251, +163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,129, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,130, 39, 3, 1, 0, 0, 0,160,127, 39, 3, 1, 0, 0, 0, 16, 14, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,192, 17,174, 9,193, 0, 0, 0, 1, 0, 0, 0, + 48, 19,174, 9, 80, 16,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,130, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,132, 39, 3, - 1, 0, 0, 0, 48,129, 39, 3, 1, 0, 0, 0,192,165,190, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, + 68, 65, 84, 65, 64, 1, 0, 0, 48, 19,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,192, 17,174, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116, +105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116, +105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, -163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,132, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,133, 39, 3, 1, 0, 0, 0,192,130, 39, 3, 1, 0, 0, 0,208, 66,189, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,133, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,135, 39, 3, - 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0,160, 90,189, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, -103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, -163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,135, 39, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,133, 39, 3, 1, 0, 0, 0,224,171,190, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, -110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,137, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 64,126, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,160, 20,174, 9, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,216, 10,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 0, 0, 0,123, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,220, 3,122, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 11, 35, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,228,117, 22, 1, 0, 0, 0, 96,160,118, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,138, 39, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,138, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 43,218, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, - 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, - 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62, -240, 75, 47,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 69,253,168, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188, -176, 69,195, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 62,239,191, 62, -175,116, 85, 63, 48,205, 70,188, 0, 0,115,181, 84, 86,113,190,200,167,232, 61, 7,111, 6, 63, 0, 0,224, 53,215,104, 25,196, -133,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,158, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62, -240, 75, 47,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 69,253,168, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188, -176, 69,195, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0,160, 0, 0, 0, 59, 5, 0, 0,155, 0, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,156, 4, 31, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,197,162, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3,188, 9,184, 21,188, 9, 0, 0, 0, 0,200, 21,174, 9, + 68, 65, 84, 65,216, 2, 0, 0,200, 21,174, 9,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 42,194,206, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,225,215,163,188, 0, 0, 0, 0, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, + 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, + 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62,153, 32, 38,191,222,160, 81,191, +184,158, 81,191,117, 90,127, 63,100, 38,160, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,221, 14,185, 63,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,240,246, 70,188, + 0,160, 32,182, 70,167,126,190, 46,126,245, 61,176,218, 13, 63, 0,224, 12, 54,215,104, 25,196,133,132,135, 67, 36, 9,167,195, +136,252, 71,194, 3, 54, 25, 68,158, 87,135,195,204,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62,153, 32, 38,191,222,160, 81,191, +184,158, 81,191,117, 90,127, 63,100, 38,160, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,221, 14,185, 63,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, - 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,229,149,242, 58, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, + 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 46, 29,203, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,141, 39, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,176,145, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,189, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,142, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 80,144, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,144, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,142, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,208, 24,174, 9,157, 0, 0, 0, 1, 0, 0, 0, + 64, 28,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,240, 25,174, 9,195, 0, 0, 0, + 1, 0, 0, 0, 24, 27,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, + 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +248, 0, 0, 0, 24, 27,174, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240, 25,174, 9, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176,145, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,141, 39, 3, 1, 0, 0, 0,240,142, 39, 3, 1, 0, 0, 0, 80,144, 39, 3, - 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,180, 0, 0, 0, 64, 28,174, 9,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +208, 24,174, 9,240, 25,174, 9, 24, 27,174, 9, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 67, 0, 0, 0, 6, 0, 0, 48,216,135, 3, 1, 0, 0, 0,154, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,140, 0, 0, 0, 88,218, 39, 10,190, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,176,179,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82,116,101,109,112, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 47, 10,136, 70, 43, 10, + 72,132, 40, 10,104,254, 40, 10, 48,233, 39, 10, 48,233, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0,128, 29,174, 9, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,186, 68, 8, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 0,157, 47, 10,191, 0, 0, 0, + 1, 0, 0, 0, 32,166, 41, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, + 32,166, 41, 10,191, 0, 0, 0, 1, 0, 0, 0,144,164, 40, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 20, 0, 0, 0,144,164, 40, 10,191, 0, 0, 0, 1, 0, 0, 0,136, 70, 43, 10, 32,166, 41, 10, 0, 0, 0, 0, + 32, 3,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,136, 70, 43, 10,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +144,164, 40, 10, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 72,132, 40, 10,192, 0, 0, 0, + 1, 0, 0, 0,240,220,187, 9, 0, 0, 0, 0, 32,166, 41, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 24, 0, 0, 0,240,220,187, 9,192, 0, 0, 0, 1, 0, 0, 0,240, 71, 41, 10, 72,132, 40, 10,144,164, 40, 10, 32,166, 41, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,240, 71, 41, 10,192, 0, 0, 0, 1, 0, 0, 0,104,254, 40, 10, +240,220,187, 9,144,164, 40, 10,136, 70, 43, 10, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,104,254, 40, 10, +192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240, 71, 41, 10,136, 70, 43, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 96, 0, 0, 0, 48,233, 39, 10,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 47, 10, + 32,166, 41, 10,144,164, 40, 10,136, 70, 43, 10, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, + 19, 19, 33, 3,225, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,244,162, 9,112,159, 41, 10,112,159, 41, 10, 32,142, 46, 10, + 72,143, 46, 10, 0, 0, 0, 0, 0, 0, 0, 0,160, 84,192, 9,128, 87,192, 9, 68, 65, 84, 65,248, 0, 0, 0, 32,142, 46, 10, +195, 0, 0, 0, 1, 0, 0, 0, 72,143, 46, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 64, 72, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,192, 71, 68, 0, 0,200, 65, 0,192, 71, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 33, 3, 26, 0, 33, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,168,245,162, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,248, 0, 0, 0, 72,143, 46, 10,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32,142, 46, 10, 0, 0, 0, 0, + 0, 64, 68, 68, 0, 0,219,195, 0, 0, 0, 0, 0, 0, 0, 0, 22,115, 68, 68, 76, 0,219,195, 0, 0, 0, 0, 16, 3, 0, 0, + 33, 3, 0, 0, 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 15, 3, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 15, 3, 0, 0, 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 33, 3,199, 1, 16, 3,181, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 26, 0, 0, 0,224, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 3,199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 40,245,162, 9, 0, 0, 0, 0, 0, 0, 0, 0,136, 9, 48, 10, 32,184, 52, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,136, 9, 48, 10,193, 0, 0, 0, 1, 0, 0, 0, + 32,184, 52, 10, 0, 0, 0, 0, 8,138,142, 9, 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,116, 97, 98,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,116, 97, 98,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 17, 3, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 64, 1, 0, 0, 32,184, 52, 10,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,136, 9, 48, 10, 48,141,142, 9, + 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,105,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,105,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 73,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,174,254, 17, 3, 46, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,112,159, 41, 10, +178, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 0, 0,116, 5, 0, 0,128, 29,174, 9,154, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0,116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,230,135, 3, 1, 0, 0, 0,176,155, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0,240,147, 39, 3, - 1, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,148, 39, 3, - 1, 0, 0, 0, 32,211,117, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49,174, 9, 24, 42,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32, 35,174, 9, +176, 35,174, 9, 32, 35,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,248, 35,174, 9,184,254, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 0, 0, 0, - 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, - 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, - 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 39, 3, 1, 0, 0, 0, 0,150, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 66, 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, +250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, 90, 0, 0, 0, + 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, 24, 0, 10, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 37,174, 9,112, 37,174, 9, 0, 0, 0, 0, 0, 0,200, 66, + 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0, -154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,175, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, - 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, -128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0,144,147, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,238, 1, 61, 1, 48,236,135, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0,240,147, 39, 3, - 1, 0, 0, 0, 48,147, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,126, 2, 26, 2, 48,242,135, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,147, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,109, 0,128, 1, 48,230,135, 3, - 1, 0, 0, 0, 68, 65, 84, 65,112, 1, 0, 0, 80,148, 39, 3, 1, 0, 0, 0,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, - 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, +205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, + 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0,154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, + 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112,201,136, 9, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, + 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 5, 0,128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +195,245, 28,193, 1, 0, 0, 0, 68, 65, 84, 65, 28, 0, 0, 0, 32, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0,104, 35,174, 9, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 78, 2,143, 1,216, 52,174, 9, 68, 65, 84, 65, 28, 0, 0, 0, +104, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0,176, 35,174, 9, 32, 35,174, 9, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, +250, 2,150, 2, 72, 57,174, 9, 68, 65, 84, 65, 28, 0, 0, 0,176, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +104, 35,174, 9, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,130, 0,223, 1, 0, 49,174, 9, 68, 65, 84, 65, 72, 1, 0, 0, +248, 35,174, 9,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0, +205,204, 76, 63, 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, + 32, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 80, 0, + 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, - 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0, +205,204,204, 61,205,204,204, 61,102,102,166, 63, 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 72, 0, 0, 0,112, 37,174, 9, +136, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0, +255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0,120, 0, 0, 0,232, 37,174, 9, 29, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, +114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0, +140, 1, 0, 0,144, 38,174, 9, 41, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66, +154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 72, 40,174, 9, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, + 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, + 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, - 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, - 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 0, 0, 0, 0,150, 39, 3, 1, 0, 0, 0,136, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101, -114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0,255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0, -152, 0, 0, 0,144,150, 39, 3, 1, 0, 0, 0, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, -114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,248, 1, 0, 0, 96,151, 39, 3, 1, 0, 0, 0, 41, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,144,153, 39, 3, - 1, 0, 0, 0, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 41,174, 9, 68, 65, 84, 65, + 8, 1, 0, 0, 72, 40,174, 9, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, 0, 0,128, 67, + 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,128, 41,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,155, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 56, 1, 0, 0,144,153, 39, 3, 1, 0, 0, 0, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, - 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63, 0,155, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 0,155, 39, 3, 1, 0, 0, 0, 70, 1, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 80,155, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0, -216, 1, 0, 0,176,155, 39, 3, 1, 0, 0, 0,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, +128, 41,174, 9, 70, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,200, 41,174, 9, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0,104, 1, 0, 0, + 24, 42,174, 9,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111, +114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61, 205,204,204, 61,205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0, @@ -1016,200 +940,177 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,176, 0, 0, 0,192,157, 39, 3, 1, 0, 0, 0, 27, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0,176,158, 39, 3, - 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0,176,158, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,224,135, 3, 1, 0, 0, 0,255,255,255,255, - 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,158, 39, 3, - 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,159, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0, 16,159, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,230,135, 3, 1, 0, 0, 0, -119, 0, 0, 0, 1, 0, 0, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,120, 0, 0, 0,176, 43,174, 9, + 27, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 0, 0, 0, 1, 0, 0, 0, 88, 44,174, 9, 88, 44,174, 9, 88, 44,174, 9, 88, 44,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 44,174, 9,255,255,255,255, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 24, 0, 0, 0, 88, 44,174, 9, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 44,174, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0,160, 44,174, 9, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 1, 0, 79, 66, 0, 0,168, 3, 0, 0, 0, 49,174, 9,119, 0, 0, 0, 1, 0, 0, 0,216, 52,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 37,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,144,150, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, - 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63, -149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, + 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0,128, 63, - 1, 0,128, 51, 1, 0, 0,179, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0,128, 63, 1, 0,128, 51, 0, 0, 0, 0, 2, 0, 0,179, - 2, 0, 0,167, 1, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 53, 1, 0, 0, 41, 1, 0,128,168, 0, 0,128, 63, 0, 0,128, 63, -157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51, -243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, - 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62, -237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190, +227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64, +150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,125,103,133, 51,176,219,194,178, 0, 0, 0, 0,190, 32, 66, 51, + 1, 0,128, 63,168,200,153, 51, 0, 0, 0, 0, 32,206, 18,179,126,126,149, 50, 1, 0,128, 63, 0, 0, 0, 0,241,251,133, 52, +172,182, 27,180,174,236,252, 51, 0, 0,128, 63, 0, 0,128, 63,157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, + 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51,243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52, +183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, + 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, + 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62,237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79, 66, 0, 0,152, 4, 0, 0, 48,236,135, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, 48,242,135, 3, 1, 0, 0, 0, - 48,230,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112, -104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 0, 0,168, 3, 0, 0,216, 52,174, 9,119, 0, 0, 0, 1, 0, 0, 0, 72, 57,174, 9, 0, 49,174, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 9, 44, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 66,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,249,236, 24, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,166, 39, 3, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80,159, 39, 3, 1, 0, 0, 0,144,159, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 57,174, 9,232, 56,174, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190, -227,251,159, 62, 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64, -151, 62,208,192, 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, - 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, - 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190,227,251,159, 62, + 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64,151, 62,208,192, + 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, 79, 66, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63, +169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,211, 43, 10, 8, 4, 44, 10, 25, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 4, 0, 0, 0, 24, 57,174, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,232, 56,174, 9, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,168, 3, 0, 0, 72, 57,174, 9,119, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0,216, 52,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 38,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,240,236,236, 24, 1, 0, 0, 0, 96,242,236, 24, 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 80,159, 39, 3, 1, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,144,159, 39, 3, 1, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,242,135, 3, 1, 0, 0, 0,119, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,236,135, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, +154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,123, 38, 63, + 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63,236, 13, 98,189, + 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62,164,111, 75, 63, + 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 35,233,134, 49,251,110, 17,179, + 0, 0, 0, 0, 49,158,141, 50, 1, 0,128, 63,126,214,237, 50, 0, 0, 0, 0,155,248, 28,178,199,139, 96,177,254,255,127, 63, + 0, 0, 0, 0, 80,136,159,178,192, 4,158,178,209,114,143,179, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, 37,255, 16, 63, + 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63,166,111, 75, 63, + 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, + 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0, +143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96,151, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -229,123, 38, 63, 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63, -236, 13, 98,189, 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62, -164,111, 75, 63, 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 1, 0,128, 50, - 0, 0, 0,179, 0, 0, 0, 0, 1, 0,128, 50, 1, 0,128, 63, 1, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 39, 1, 0, 0, 52, 1, 0,128, 39, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, - 37,255, 16, 63, 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63, -166,111, 75, 63, 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, - 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, -100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, - 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0, - 32, 3, 0, 0,208,159, 39, 3, 1, 0, 0, 0, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, - 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, - 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0,160, 2, 0, 0, 32, 61,174, 9, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63, +205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, +205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, + 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61, +205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63,240, 63,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, - 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 48,163, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 65,174, 9, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, +205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61,205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 8, 1, 0, 0,240, 63,174, 9, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 65,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61, -205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 16, 1, 0, 0, 48,163, 39, 3, - 1, 0, 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,164, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0,144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, +144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, - 40, 0, 0, 0,128,164, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, -104, 1, 0, 0,224,164, 39, 3, 1, 0, 0, 0, 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, - 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, 32, 0, 0, 0, + 40, 65,174, 9, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, 40, 1, 0, 0,120, 65,174, 9, 39, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, + 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, 24, 1, 0, 0,208, 66,174, 9, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 74,174, 9, 72, 74,174, 9, 0, 0, 0, 0, 0, 0, 0, 0,152, 69,174, 9, 8, 72,174, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 68,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,136, 70,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,200, 72,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, 0, 0, 0,180, 0, 0, 0, 0, + 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, + 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,240, 74,174, 9, + 0, 0, 0, 0, 1, 0, 0, 0, 32, 61,174, 9, 68, 65, 84, 65, 84, 1, 0, 0, 24, 68,174, 9, 75, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, -144, 1, 0, 0,128,166, 39, 3, 1, 0, 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 69,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,168, 39, 3, 1, 0, 0, 0, 64,175, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,170, 39, 3, 1, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,168, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,171, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,173, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, - 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 80,168, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,208,159, 39, 3, - 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0,144,168, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,170, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0,152, 69,174, 9, + 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63,255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, + 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191,230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, + 0, 0,128,191, 26,182, 26,182, 26,182,255,127, 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, + 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63,247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0, +245,255,127, 63, 5, 0,128,191, 0, 0,128, 63,230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, + 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73, +230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, 84, 1, 0, 0,136, 70,174, 9, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 72,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1218,17 +1119,15 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0, 48,170, 39, 3, 1, 0, 0, 0, 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63, -255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191, -230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, 0, 0,128,191, 26,182, 26,182, 26,182,255,127, - 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63, -247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0,245,255,127, 63, 5, 0,128,191, 0, 0,128, 63, -230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, - 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73,230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, -104, 1, 0, 0, 48,171, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 0, 0, 0, 8, 72,174, 9, 57, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, + 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 68, 65, 84, 65, 84, 1, 0, 0,200, 72,174, 9, + 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 72, 74,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1237,44 +1136,27 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -144, 0, 0, 0,208,172, 39, 3, 1, 0, 0, 0, 57, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, - 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, - 0, 0, 35, 0, 68, 65, 84, 65,104, 1, 0, 0,160,173, 39, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,175, 39, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +120, 0, 0, 0, 72, 74,174, 9, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, + 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,128, 11, 0, 0,160, 44,119, 9,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, + 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112, +111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100,101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, + 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0, 64,175, 39, 3, 1, 0, 0, 0, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, - 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, - 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, - 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,160, 11, 0, 0, 96,186,112, 1, - 1, 0, 0, 0,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, - 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100, -101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1294,7 +1176,7 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1304,20 +1186,19 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, - 3, 0, 0, 0, 48, 52, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, 48, 4,136, 3, 1, 0, 0, 0, 48, 28,136, 3, - 1, 0, 0, 0,128,161,118, 22, 1, 0, 0, 0,128,161,118, 22, 1, 0, 0, 0,224,172,118, 22, 1, 0, 0, 0,224,172,118, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 48, 52, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, + 5, 0, 2, 0,208, 86,174, 9,208,108,174, 9, 40, 22,188, 9, 40, 22,188, 9,112, 76,188, 9,112, 76,188, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, - 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, - 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, - 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, - 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, - 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63, +205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191, +154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, + 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, + 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0, +250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1327,10 +1208,8 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, @@ -1352,2185 +1231,2178 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, 48, 4,136, 3, 1, 0, 0, 0,187, 0, 0, 0, - 1, 0, 0, 0, 48, 28,136, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, - 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255, -255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, -255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, - 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, -128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, -255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255, -255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230, -100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, -255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180,100,100,100,180, -128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, - 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255,240,235,100,255, -215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +208, 21, 0, 0,208, 86,174, 9,187, 0, 0, 0, 1, 0, 0, 0,208,108,174, 9, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255, +100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255, +100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255, +153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, + 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, + 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255, +100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255, +153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255, +153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, + 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, + 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, + 45, 45, 45,230,100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, + 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255, +100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180, +100,100,100,180,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, + 86,128,194,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255, +240,235,100,255,215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,140, 25,255, -250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, +255,140, 25,255,250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, + 3, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, - 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, - 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, + 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, + 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, - 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, + 3, 0, 0, 0, 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255, +109,145,131,255,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, - 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, + 17, 27, 60,100, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, - 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, +100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255,105,117,110,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255, +105,117,110,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, + 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, +255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, +200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, + 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, + 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, +255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, + 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, + 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, - 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, - 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, - 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, - 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, - 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, - 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, - 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, + 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255, +247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255, +131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255, +240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255, +111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255, +243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255, +211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255, +222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, + 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -216, 21, 0, 0, 48, 28,136, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 4,136, 3, - 1, 0, 0, 0, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0, -231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, - 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, - 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0, -236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0, -236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, + 68, 65, 84, 65,208, 21, 0, 0,208,108,174, 9,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 86,174, 9, 82,111,117,110, +100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, +153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, +153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0,231,255, 0, 0, 25, 25, 25,255, +153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, + 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, + 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, +180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255, +180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, + 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, + 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, + 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, + 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255, +217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, + 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, + 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, -143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, - 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, -255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,255,255,255,255,130, 0,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255, +178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255, +135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,204, +255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, - 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255, -255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, + 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255, +162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60,255,133, 0,255, + 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255, +127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 88, 88, 88,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, -112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255, +255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, + 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, - 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255, -169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, - 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, -112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255, -230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255, -129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, -143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, - 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, -255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, +127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255,129,131,144,255,127,127,127,255, +142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, + 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255, +217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, + 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, + 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, + 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, - 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, - 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, - 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, - 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, - 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, - 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, - 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255, +189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, + 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255, +193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, + 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255, +238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255, +152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255, +176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, + 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,100,228, 0, 0, 48, 68,168, 2, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, - 97, 0, 42,102,105,114,115,116, 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, - 0,121,109,105,110, 0,121,109, 97,120, 0, 42,112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97, -108, 50, 0,116,121,112,101, 0,115,117, 98,116,121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97, -118,101,100, 0,100, 97,116, 97, 0,108,101,110, 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, - 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117,115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101, -115, 0,105,100, 0, 42,105,100, 98,108,111, 99,107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, - 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0, -119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42, -114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97, -109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0, -118, 97,114,116,121,112,101, 0,116,111,116,118,101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105, -116,109, 97,115,107, 0,115,108,105,100,101, 95,109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, - 0, 42,100,114,105,118,101,114, 0, 99,117,114,118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105, -112,111, 0,112,111,115, 0,114,101,108, 97,116,105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101, -105,103,104,116,115, 0,118,103,114,111,117,112, 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101, -114,109, 97,120, 0, 42, 97,100,116, 0, 42,114,101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108, -101,109,115,105,122,101, 0, 98,108,111, 99,107, 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115, -108,117,114,112,104, 0, 42,108,105,110,101, 0, 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0, -115,116, 97,114,116, 0,101,110,100, 0,102,108, 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, - 42,110, 97,109,101, 0,110,108,105,110,101,115, 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99, -117,114, 99, 0,115,101,108, 99, 0,109, 97,114,107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95, -112,111,115, 0,117,110,100,111, 95,108,101,110, 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122, -101, 0,115,101,101,107, 0,112, 97,115,115,101,112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112, -115,116, 97, 0, 99,108,105,112,101,110,100, 0,108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97, -119,115,105,122,101, 0,115,104,105,102,116,120, 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, - 70, 95, 97,112,101,114,116,117,114,101, 0, 89, 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, - 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42,100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101, -115, 0,111,102,102,115,101,116, 0,115,102,114, 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117, -108,116,105, 95,105,110,100,101,120, 0,108, 97,121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101, -110,101, 0,105, 98,117,102,115, 0, 42,103,112,117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115, -111,117,114, 99,101, 0,108, 97,115,116,102,114, 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110, -100, 0,120,114,101,112, 0,121,114,101,112, 0,116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, - 0, 42,114,101,112, 98,105,110,100, 0, 42,112, 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42, -114,101,110,100,101,114, 95,116,101,120,116, 0,108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, - 97,110,105,109,115,112,101,101,100, 0,103,101,110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97, -115,112,120, 0, 97,115,112,121, 0,116,101,120, 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108, -101,110,100,116,121,112,101, 0, 42,111, 98,106,101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0, -112,114,111,106,120, 0,112,114,111,106,121, 0,112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, - 0,115,105,122,101, 91, 51, 93, 0,114,111,116, 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0, -112,109, 97,112,116,111, 0,112,109, 97,112,116,111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, - 99,104, 95,111,117,116,112,117,116, 0, 98,114,117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0, -114, 0,103, 0, 98, 0,107, 0,100,101,102, 95,118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111, -114,102, 97, 99, 0,100,105,115,112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0, -109,105,114,114,102, 97, 99, 0, 97,108,112,104, 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, - 0,101,109,105,116,102, 97, 99, 0,104, 97,114,100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110, -115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, - 97, 99, 0, 99,111,108,116,114, 97,110,115,102, 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, - 99, 0,114,101,102,108,102, 97, 99, 0,116,105,109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109, -112,102, 97, 99, 0,107,105,110,107,102, 97, 99, 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0, -108,105,102,101,102, 97, 99, 0,115,105,122,101,102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0, -115,104, 97,100,111,119,102, 97, 99, 0,122,101,110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108, -101,110,100,102, 97, 99, 0,110, 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, - 42,115,116,110, 97,109,101,115, 0,115,116,121,112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101, -115,117,108,116, 0, 42, 99,102,114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42, -105,110,115,116, 97,110, 99,101, 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118, -101,114,115,105,111,110, 0, 97, 0,105,112,111,116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105, -109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101, -119,115, 99, 97,108,101, 0,110,111,116,108, 97,121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97, -108, 99, 0,108, 97,115,116,115,105,122,101, 0,102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, - 95,115,111,102,116,110,101,115,115, 0,114, 97,100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111, -116,112,111,105,110,116,115, 0,112,100,112, 97,100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115, -112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112, -111,105,110,116, 95,116,114,101,101, 0, 42,112,111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, - 0,110,111,105,115,101, 95,100,101,112,116,104, 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105, -115,101, 95, 98, 97,115,105,115, 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101, -101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116, -121,112,101, 0,102,105,108,101, 95,102,111,114,109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105, -112,108,105,101,114, 0,115,116,105,108,108, 95,102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, - 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0,110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105, -103,104,116, 0, 99,111,110,116,114, 97,115,116, 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116, -101,114,115,105,122,101, 0,109,103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, - 97,118,101,115, 0,109,103, 95,111,102,102,115,101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117, -110,116, 0,110,115, 95,111,117,116,115, 99, 97,108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, - 0,118,110, 95,119, 52, 0,118,110, 95,109,101,120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121, -112,101, 0,110,111,105,115,101,100,101,112,116,104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115, -105,115, 0,110,111,105,115,101, 98, 97,115,105,115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, - 99,114,111,112,121,109,105,110, 0, 99,114,111,112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105, -108,116,101,114, 0, 97,102,109, 97,120, 0,120,114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107, -101,114,100,105,115,116, 0,110, 97, 98,108, 97, 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108, -117,103,105,110, 0, 42,101,110,118, 0, 42,112,100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, - 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, - 93, 0,109,111,100,101, 0,116,111,116,101,120, 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115, -104,100,119,112, 97,100, 0,101,110,101,114,103,121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, - 98,108,101,110,100, 0,104, 97,105,110,116, 0, 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102, -102, 0,115,104, 97,100,115,112,111,116,115,105,122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115, -115,116,104,114,101,115,104, 0,112, 97,100, 53, 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102, -102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0, -114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, - 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, - 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101, -115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97, -108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116, -121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117, -110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101, -114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98, -105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116, -109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, - 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, - 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111, -110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115, -101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, - 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95, -103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101, -120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0, -101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101, -109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, - 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97, -108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105, -122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, - 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102, -102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, - 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114, -103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97, -110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0, -115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0, -102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101, -108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105, -109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112, -116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, - 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103, -108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95, -116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95, -109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, - 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, - 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116, -114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0, -115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, - 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, - 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101, -108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97, -103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110, -101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, - 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, - 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98, -108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, - 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111, -110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97, -109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115, -115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111, -108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, - 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120, -116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0, -105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, - 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, - 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101, -108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, - 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, - 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, - 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, - 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97, -103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110, -116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0, -104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, - 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100, -114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95, -115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120, -116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99, -116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, - 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0, -117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, - 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, - 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111, -110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, - 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117, -114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, - 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109, -115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, - 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0, -116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102, -108, 97,103, 0, 99,117, 98,101,109, 97,112,115,105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105, -118, 0,115,117, 98,100,105,118,114, 0,115,117, 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116, -112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, - 0,117,110,119,114, 97,112, 0,118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115, -101, 0, 98,119,101,105,103,104,116, 0,100,101,102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99, -111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, - 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100,105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0, -109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, - 0, 42,118,101,114,116,115, 0,108,101,118,101,108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101, -110,116, 0,110,101,119,108,118,108, 0,101,100,103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108, -118,108, 0,117,115,101, 95, 99,111,108, 0, 42,101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, - 97,115,101,115, 0, 42,118,101,114,116, 95,109, 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, - 99,101,115, 0, 42,111,108,100, 95,101,100,103,101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115, -117, 98,100,105,118, 84,121,112,101, 0,114,101,110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, - 42,109, 67, 97, 99,104,101, 0,100,101,102, 97,120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97, -110,100,111,109,105,122,101, 0,115,101,101,100, 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, - 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102, -102,115,101,116, 91, 51, 93, 0,115, 99, 97,108,101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95, -116,121,112,101, 0,111,102,102,115,101,116, 95,116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101, -114, 97,110, 99,101, 0, 42,109,105,114,114,111,114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108, -117,101, 0,114,101,115, 0,118, 97,108, 95,102,108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97, -103,115, 0, 98,101,118,101,108, 95, 97,110,103,108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42, -100,111,109, 97,105,110, 0, 42,102,108,111,119, 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, - 0,115,116,114,101,110,103,116,104, 0,100,105,114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120, -109, 97,112,112,105,110,103, 0, 42,109, 97,112, 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, - 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, - 0, 42,105,109, 97,103,101, 0,110,117,109, 95,112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97, -115,112,101, 99,116,121, 0,112,101,114, 99,101,110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112, -101, 97,116, 0, 42,111, 98,106,101, 99,116, 99,101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0, -104,101,105,103,104,116, 0,110, 97,114,114,111,119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, - 0,116,105,109,101,111,102,102,115, 0,108,105,102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117, -108,116,105, 0, 42,112,114,101,118, 67,111,115, 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110, -116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105, -110,100,101,120, 0,102,111,114, 99,101, 0, 42, 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114, -109,115, 0, 42, 99,111,108,108, 95,112, 97,114,109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, - 99,104,101,115, 0, 42,120, 0, 42,120,110,101,119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101, -119, 0, 42, 99,117,114,114,101,110,116, 95,120, 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0, -110,117,109,118,101,114,116,115, 0,110,117,109,102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100, -109, 0, 99,102,114, 97, 0,111,112,101,114, 97,116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117, -101,110, 99,101, 0,103,114,105,100,115,105,122,101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103, -104,116,115, 0, 42, 98,105,110,100, 99,111,115, 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105, -100, 0, 42,100,121,110,105,110,102,108,117,101,110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, - 0,100,121,110,103,114,105,100,115,105,122,101, 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101, -108,108,119,105,100,116,104, 0, 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0, -116,111,116,100,109,101,100,103,101, 0,116,111,116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111, -110, 0,114, 97,110,100,111,109, 95,112,111,115,105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, - 0,112,114,111,116,101, 99,116, 0, 42,117,110,100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95, -116,111,116, 0,117,110,100,111, 95,115,105,103,110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108, -101, 0, 42,102,115,115, 0, 42,116, 97,114,103,101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, - 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101,101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104, -114,105,110,107, 79,112,116,115, 0,112,114,111,106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, - 42,111,114,105,103,105,110, 0,102, 97, 99,116,111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112, -116,115, 0,112,110,116,115,119, 0,111,112,110,116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121, -112,101,117, 0,116,121,112,101,118, 0,116,121,112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100, -119, 0, 42,100,101,102, 0, 42,108, 97,116,116,105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, - 0, 42,101,100,105,116,108, 97,116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114, -116,121,112,101, 0,112, 97,114, 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, - 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114,111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114, -111,120,121, 95,102,114,111,109, 0, 42, 97, 99,116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, - 42,103,112,100, 0, 99,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0, -109,111,100,105,102,105,101,114,115, 0,114,101,115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, - 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0, -100,114,111,116, 91, 51, 93, 0,100,113,117, 97,116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, - 65,120,105,115, 91, 51, 93, 0,114,111,116, 65,110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, - 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116, -115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97, -103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0, -115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112, -111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0, -100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112, -105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110, -116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0, -100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109, -112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110, -115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122, -101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, - 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105, -111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107, -115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117, -112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112, -101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, - 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, - 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116, -101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112, -108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110, -111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, - 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95, -109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110, -103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, - 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97, -100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100, -101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, - 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, - 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0, -107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114, -101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101, -105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, - 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97, -114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, - 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109, -101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, - 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, - 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97, -110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, - 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, - 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, - 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, - 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, - 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103, -115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116, -111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, - 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97, -115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112, -104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99, -116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114, -111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101, -115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105, -110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108, -118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111, -110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116, -105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, - 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0, -115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102, -102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119, -101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, - 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97, -108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, - 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77, -111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118, -121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0, -109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108, -122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0, -115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83, -105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0, -118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110, -101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115, -117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, - 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0, -102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112, -115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, - 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, - 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118, -101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, - 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110, -114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120, -112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103, -114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, - 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, - 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112, -104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115, -116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114, -115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111, -108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, - 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98, -105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, - 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, - 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114, -114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, - 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101, -114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114, -109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, - 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, - 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, - 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97, -109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99, -111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0, -118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105, -111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0, -114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101, -114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0, -109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112, -108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111, -118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115, -107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, - 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97, -116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116, -104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100, -103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, - 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109, -111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120, -115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, - 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105, -115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97, -121,116,114, 97, 99,101, 95,111,112,116,105,111,110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114, -101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102, -114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115, -112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114, -115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0, -112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, - 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, - 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95, -115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105, -115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108, -105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, - 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98, -117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, - 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112, -104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110, -114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, - 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105, -116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112, -111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, - 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111, -108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115, -116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, - 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115, -117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105, -109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, - 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97, -109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100, -111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105, -108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, - 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97, -100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, - 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97, -109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, - 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, - 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0, -112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103, -108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0, -116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105, -116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97, -119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, - 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101, -116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101, -118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118, -103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102, -108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95, -111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101, -114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, - 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115, -105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0, -117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102, -108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111, -105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114, -111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108, -101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95, -102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111, -111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104, -111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101, -110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116, -101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115, -107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108, -105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114, -114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105, -109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0, -115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103, -101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101, -110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111, -115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, - 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112, -108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105, -110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, - 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, - 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, - 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100, -101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101, -116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0, -116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101, -115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116, -101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101, -116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, - 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, - 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110, -115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, - 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, - 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121, -105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, - 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, - 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101, -114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115, -109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, - 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109, -122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115, -112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108, -118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, - 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, - 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121, -112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97, -121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116, -114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110, -101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105, -100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114, -105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121, -102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97, -119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0, -122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112, -114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0, -109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99, -114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0, -107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0, -111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, - 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103, -104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97, -105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114, -101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114, -101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0, -116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97, -109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98, -111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102, -112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109, -115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95, -110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117, -116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116, -114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, - 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116, -108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99, -117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115, -116,105, 99,107,121, 0,100,116, 95,117,118,115,116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42, -116,101,120,116, 0,116,111,112, 0,118,105,101,119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116, -104, 0,108,105,110,101,110,114,115, 95,116,111,116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, - 97, 98,110,117,109, 98,101,114, 0,115,104,111,119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0,108,105, -118,101, 95,101,100,105,116, 0,112,105,120, 95,112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, 0,116, -120,116, 98, 97,114, 0,119,111,114,100,119,114, 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115,116,114, - 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99,101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, 0, 42, -112,121, 95,101,118,101,110,116, 0, 42,112,121, 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101,114, 99, - 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95,103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, 99,101, - 0,115, 99,114,105,112,116,110, 97,109,101, 91, 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, 93, 0, - 42,115, 99,114,105,112,116, 0, 42, 98,117,116, 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, 97,115, -112,101, 99,116, 0, 42, 99,117,114,102,111,110,116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0,116,114, -101,101,116,121,112,101, 0,116,101,120,102,114,111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105,108,101, -115,121, 0,118,105,101,119,114,101, 99,116, 0, 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108,108,112, -111,115, 0,115, 99,114,111,108,108,104,101,105,103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116,118, 97, -108, 0,112,114,118, 95,119, 0,112,114,118, 95,104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, 40, 42, -114,101,116,117,114,110,102,117,110, 99, 95,101,118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, - 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114,103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105,109,103, - 0,108,101,110, 95, 97,108,108,111, 99, 0, 99,117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114,111,108, -108, 98, 97, 99,107, 0,104,105,115,116,111,114,121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97,109,101, - 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0,112,111, -105,110,116,115, 0,107,101,114,110,105,110,103, 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111,119, 0, -115,104, 97,100,120, 0,115,104, 97,100,121, 0,115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, 99,111, -108,111,114, 0,112, 97,110,101,108,116,105,116,108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103,101,116, -108, 97, 98,101,108, 0,119,105,100,103,101,116, 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101,108, 99, -104, 97,114,115, 0,109,105,110,119,105,100,103,101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99,101, 0, -116,101,109,112,108, 97,116,101,115,112, 97, 99,101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115,112, 97, - 99,101,120, 0, 98,117,116,116,111,110,115,112, 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97,110,101, -108,111,117,116,101,114, 0,112, 97,100, 91, 49, 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, 91, 52, - 93, 0,105,110,110,101,114, 95,115,101,108, 91, 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, 0,116, -101,120,116, 95,115,101,108, 91, 52, 93, 0,115,104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97,100,101, -100,111,119,110, 0,105,110,110,101,114, 95, 97,110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95,115,101, -108, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101,108, 91, - 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 95, -115,101,108, 91, 52, 93, 0,119, 99,111,108, 95,114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0,119, 99, -111,108, 95,116,101,120,116, 0,119, 99,111,108, 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, 0,119, - 99,111,108, 95,116,111,103,103,108,101, 0,119, 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108,105,100, -101,114, 0,119, 99,111,108, 95,109,101,110,117, 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111,108, 95, -109,101,110,117, 95, 98, 97, 99,107, 0,119, 99,111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, 98,111, -120, 0,119, 99,111,108, 95,115, 99,114,111,108,108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, 99,111, -108, 95,115,116, 97,116,101, 0,105, 99,111,110,102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116,105,116, -108,101, 91, 52, 93, 0,116,101,120,116, 95,104,105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97,100,101, -114, 95,116,105,116,108,101, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100,101,114, - 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,105,116, -108,101, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, - 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108,105,115, -116, 95,116,101,120,116, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101,108, 91, - 52, 93, 0,112, 97,110,101,108, 95,116,105,116,108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, 93, 0, -112, 97,110,101,108, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97,100,101, - 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, 0,115, -101,108,101, 99,116, 91, 52, 93, 0,108, 97,109,112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111,117,112, - 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, 52, 93, - 0,118,101,114,116,101,120, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, - 91, 52, 93, 0,101,100,103,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, 93, 0, -101,100,103,101, 95,115,104, 97,114,112, 91, 52, 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0,102, 97, - 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, 52, 93, - 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98,111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95,112,111, -115,101, 91, 52, 93, 0,115,116,114,105,112, 91, 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, 0, 99, -102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99,104, 97, -110,110,101,108, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105,122,101, - 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110,116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, 0,115, -121,110,116, 97,120, 98, 91, 52, 93, 0,115,121,110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, 93, 0, -109,111,118,105,101, 91, 52, 93, 0,105,109, 97,103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100,105,111, - 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105,116,105, -111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, 52, 93, - 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95, -115,101,108,101, 99,116, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104,112, 97, -100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116,102,105, -108,101, 0,116,105,112,111, 0,116,105,110,102,111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101, -113, 0,116,105,109, 97, 0,116,105,109, 97,115,101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0, -116,110,111,100,101, 0,116,108,111,103,105, 99, 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, - 97, 99,116,105,118,101, 95,116,104,101,109,101, 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, - 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, - 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, - 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, - 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0, -121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, - 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, - 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, - 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, - 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, - 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115, -104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101, -121,109, 97,112,115, 0,107,101,121, 99,111,110,102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, - 0,117,110,100,111,109,101,109,111,114,121, 0,103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95, -101,117, 99,108,105,100,101, 97,110,100,105,115,116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105, -110,103,115, 0,116, 98, 95,108,101,102,116,109,111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108, -105,103,104,116, 91, 51, 93, 0,116,119, 95,104,111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97, -110,100,108,101,115,105,122,101, 0,116,119, 95,115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99, -111,108,108,101, 99,116,114, 97,116,101, 0,119,109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101, -109, 99, 97, 99,104,101,108,105,109,105,116, 0,112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101, -115,101,114,118,101,114,112,111,114,116, 0,112, 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101, -114, 95,100,105, 97, 0,114,118,105,115,105,122,101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102, -105,108,101,115, 0,115,109,111,111,116,104, 95,118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100, -111,102, 95,112, 97,110, 0,110,100,111,102, 95,114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95, -110,101,119, 0,118,101,114,115,101,109, 97,115,116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, - 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99,108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, - 98, 97,115,101, 0,101,100,103,101, 98, 97,115,101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, - 0,102,117,108,108, 0,119,105,110,105,100, 0,100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100, -111, 95,100,114, 97,119, 95,103,101,115,116,117,114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115, -111,114, 0,115,119, 97,112, 0,109, 97,105,110,119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110, -105,109,116,105,109,101,114, 0, 42, 99,111,110,116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119, -118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, - 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0, -111,102,115,121, 0,115,105,122,101,120, 0,115,105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109, -101, 95,102,108, 97,103, 0, 99,111,110,116,114,111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, - 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116,105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0, -108,105,115,116, 95,115,105,122,101, 0,108,105,115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105, -112, 95,115,105,122,101, 0,108,105,115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42, -102,117,108,108, 0, 98,117,116,115,112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, - 99,101,100, 97,116, 97, 0,104, 97,110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, - 99,116, 0,100,114, 97,119,114, 99,116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105, -103,110,109,101,110,116, 0,117,105, 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116, -114, 0, 42,114,101,103,105,111,110,100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115, -105,111,110, 0,112, 97,100,115, 0,109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111, -110, 0, 42, 99,117,114,115, 99,114,101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, - 0,103,108,111, 98, 97,108,102, 0,110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111, -109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104, -116, 0,120,111,102,115, 0,121,111,102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105, -110, 91, 51, 93, 0,115, 97,116,117,114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, - 97,114,116,115,116,105,108,108, 0,101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, - 0,111,114,121, 0, 42, 99,114,111,112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, - 97,110, 99,101, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97, -114,116,115,116,105,108,108, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98, -117,102, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110, -115,116, 97,110, 99,101, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114, -105,118, 97,116,101, 95,100, 97,116, 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0, -109, 97, 99,104,105,110,101, 0,115,116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105, -122,101, 0, 97,110,105,109, 95,112,114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99, -102, 49, 0, 42,115,101,113, 49, 0, 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111, -117,110,100, 0, 42,115,111,117,110,100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110, -101,110,114, 0,115,116,114,111, 98,101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114, -116,111,102,115, 0, 97,110,105,109, 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110, -100, 95,111,112, 97, 99,105,116,121, 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, - 98, 97,115,101,112, 0,109,101,116, 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97, -103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103, -101, 87,105,100,116,104, 0,102,111,114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67, -108, 97,109,112, 0,102, 66,111,111,115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111, -109,112, 0, 83, 99, 97,108,101,120, 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, - 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114, -111,116, 73,110,105, 0,114,111,116, 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109, -101, 77, 97,112, 0,103,108,111, 98, 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, - 98,117,116,116,121,112,101, 0,117,115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109, -102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102, -101, 0,102,111,114, 99,101, 91, 51, 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, - 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97, -116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111, -109, 97,116, 0,116,105,109,101,116,101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101, -114,116,103,114,111,117,112, 95,118, 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, - 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100, -101,108,101,109, 0, 42,112,111,105,110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, - 0,107,101,121, 0,113,117, 97,108, 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116, -111,103,103,108,101, 78, 97,109,101, 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, - 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, - 91, 51, 50, 93, 0,100, 97,109,112,116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, - 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, - 0, 99,111,110,115,116,114, 97,105,110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106, -101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101, -113, 0,116,111,116,108,105,110,107,115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, - 97,120,105,115, 95,115,105,110,103,108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116, -102, 0,112,114,101, 99,105,115,105,111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, - 42,109,121,110,101,119, 0,105,110,112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, - 0,118, 97,108,111, 0,115,116, 97,116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, - 51, 50, 93, 0, 98,108,101,110,100,105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115, -116,114,105,100,101, 97,120,105,115, 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, - 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121, -109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, - 97,110,103, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101, -114, 97,116,105,111,110, 0,102,111,114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108, -105,110,101, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, - 91, 51, 93, 0, 42,114,101,102,101,114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, - 0,109, 97,120, 0,118,105,115,105,102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, - 97,120,108,111, 99, 91, 51, 93, 0,109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116, -112,114,111,112, 91, 51, 50, 93, 0,100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0, -105,110,116, 95, 97,114,103, 95, 50, 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, - 50, 0,116,111, 80,114,111,112, 78, 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84, -121,112,101, 0,102,105,108,101,110, 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, - 0,105,110,116, 95, 97,114,103, 0,102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, - 0, 97, 99, 99,101,108,108,101,114, 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112, -101,101,100, 0,109, 97,120,116,105,108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, - 97,109,112, 0, 42,115,111,117,114, 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103, -101,100, 0,109,105,110, 95,103, 97,105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100, -105,115,116, 97,110, 99,101, 0,109, 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99, -116,111,114, 0, 99,111,110,101, 95,105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, - 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100, -102,105,108,101, 0, 97,116,116,101,110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, - 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102, -115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, - 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97, -114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0, -122,119,105,100,116,104, 0,101, 97,115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95, -116, 97,105,108, 0, 98,111,110,101, 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115, -107,101,116, 99,104, 0,108, 97,121,101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104, -111,115,116,115,105,122,101, 0,103,104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116, -115,102, 0,103,104,111,115,116,101,102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0, -112, 97,116,104, 97, 99, 0, 42,112,111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102, -114, 97,109,101, 0, 42,112,114,111,112, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, - 99,116,102,108, 97,103, 0, 97,103,114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105, -107,116,114,101,101, 0, 42, 98, 95, 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, - 95, 98,111,110,101, 95,100,117, 97,108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, - 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, - 51, 93, 0,112,111,115,101, 95,116, 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105, -116,109, 97,120, 91, 51, 93, 0,115,116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105, -107,114,111,116,119,101,105,103,104,116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99, -104, 97,110, 98, 97,115,101, 0,112,114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101, -116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99, -116,105,118,101, 95,103,114,111,117,112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, - 97,114, 97,109, 0,110,117,109,105,116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120, -115,116,101,112, 0,115,111,108,118,101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112, -109, 97,120, 0,100, 97,109,112,101,112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99, -115, 0, 99,117,114,118,101,115, 0,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105, -108,116,101,114,102,108, 97,103, 0, 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101, -115,108,105,100,101, 0, 42,103,114,112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99, -101, 0,116, 97,114,115,112, 97, 99,101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95, -101,114,114,111,114, 0,114,111,116, 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, - 93, 0,115,112, 97, 99,101, 0,114,111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0, -105,116,101,114, 97,116,105,111,110,115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, - 0, 42,112,111,108,101,116, 97,114, 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, - 97,110,103,108,101, 0,111,114,105,101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, - 0,114,101,115,101,114,118,101,100, 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0, -115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, - 97,103, 0,118,111,108,109,111,100,101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, - 0,112,105,118, 88, 0,112,105,118, 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76, -105,109,105,116, 91, 54, 93, 0,109, 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, - 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111, -109, 95,109,105,110, 91, 51, 93, 0,102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116, -111, 95,109, 97,120, 91, 51, 93, 0,122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101, -108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117, -114,109,111,100, 0, 97, 99,116,115,116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114, -105,100,101,108,101,110, 0,115, 99, 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110, -110,101,108, 91, 51, 50, 93, 0,111,102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, - 97,115,111,117,116,112,117,116, 0,100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101, -119, 95,115,111, 99,107, 0,110,115, 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101, -114,110, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, - 95,105,110,100,101,120, 0,116,111, 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110, -101,119, 95,110,111,100,101, 0,117,115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117, -116,115, 0, 42,115,116,111,114, 97,103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117, -115,116,111,109, 50, 0, 99,117,115,116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0, -101,120,101, 99, 0, 42,116,104,114,101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, - 42, 98,108,111, 99,107, 0, 42,116,121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111, -100,101, 0, 42,102,114,111,109,115,111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, - 42,116,104,114,101, 97,100,115,116, 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95, -105,110,100,101,120, 0, 97,108,108,116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42, -115,101,108,111,117,116, 0, 40, 42,116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100, -114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, - 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112, -101,101,100, 0,112,101,114, 99,101,110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118, -101,100, 0,105,109, 97,103,101, 95,105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104, -116, 0, 99,101,110,116,101,114, 95,120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, - 97,112, 0,115,105,103,109, 97, 95, 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, - 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, - 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121, -112,101, 0,114,111,116, 97,116,105,111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0, -109, 97,120, 98,108,117,114, 0, 98,116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108, -101, 95,111,102,115, 0, 99,111,108,109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0, -109, 0, 99, 0,106,105,116, 0,112,114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, - 0,109, 97,120,116, 97, 98,108,101, 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, - 99,117,114,118,101, 0, 42,116, 97, 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99, -108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109, -117,108, 91, 51, 93, 0,115, 97,109,112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0, -106,105,116,116,101,114, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111, -116,104, 95,115,116,114,111,107,101, 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117, -108,112,116, 95,116,111,111,108, 0, 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, - 0, 97, 99,116,105,118,101, 95,109, 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97, -120,108, 97,121,101,114, 0,116,111,116,115,105,122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, - 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103,114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0, -112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, - 0,114,116, 91, 50, 93, 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105, -101,116,105,109,101, 0,110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105, -114, 95,105,110,100,101,120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118, -101,109,111,100,101, 0,114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, - 97,119, 95,115,105,122,101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101, -112, 0,104, 97,105,114, 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108, -101, 0, 97,100, 97,112,116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, - 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115, -112,108,105,116, 95,111,102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, - 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112, -108,105,102,121, 95,114,101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108, -105,102,121, 95,116,114, 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, - 0,116,105,109,101,116,119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95, -114,101,115, 0,112, 97,114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99, -116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, - 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0, -114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, - 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0, -114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, - 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, - 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117, -103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117, -103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99, -108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108, -105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, - 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, - 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42, -112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104, -105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104, -101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117, -116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, - 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, - 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, - 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0, -118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114, -115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, - 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, - 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, - 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119, -105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95, -115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120, -115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110, -100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115, -101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, - 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, - 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110, -101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103, -115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102, -102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115, -115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, - 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0, -105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, - 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, - 0,107,101,121, 99,111,110,102,105,103,115, 0, 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, - 97, 99,116,109, 97,112, 0,116,105,109,101,114,115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104, -111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, - 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, - 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97, -116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, - 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115, -117, 98,119,105,110,100,111,119,115, 0,103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111, -112,118, 97,108,117,101, 0,115,104,105,102,116, 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109, -111,100,105,102,105,101,114, 0,109, 97,112,116,121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101, -105,100, 0,114,101,103,105,111,110,105,100, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101, -109,115, 0, 98, 97,115,101,110, 97,109,101, 91, 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111, -109,100, 97,116, 97, 0, 42,114,101,112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, - 93, 0,112,114,101,118,120, 0,112,114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121, -109, 97,112, 95,105,100,110, 97,109,101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, - 0, 42,101,100, 97,116, 97, 0,105,110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, - 97,114,114, 97,121,115,105,122,101, 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112, -104, 97,115,101, 95,109,117,108,116,105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108, -117,101, 95,111,102,102,115,101,116, 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116, -101,114, 95,109,111,100,101, 0, 98,101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108, -101,115, 0,114,101, 99,116, 0,112,104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95, -112, 97,116,104, 0, 97,114,114, 97,121, 95,105,110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105, -111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99, -111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110, -103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116, -105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, - 52, 93, 0,116,101,109,112,108, 97,116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121, -105,110,103,102,108, 97,103, 0, 97, 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95, -116,114, 97, 99,107,115, 0, 42, 97, 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100, -101,115, 0, 97, 99,116, 95, 98,108,101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, - 97, 99,116, 95,105,110,102,108,117,101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95, -102, 97, 99,116,111,114, 0,115,105,103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, - 91, 51, 93, 0,113,117,101,117,101, 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97, -110, 99,101, 0,104,101, 97,108,116,104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116, -105,111,110,115, 0, 97, 99,116,105,111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102, -117,122,122,105,110,101,115,115, 0,108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115, -109,111,111,116,104,110,101,115,115, 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99, -117,114, 97, 99,121, 0, 97,105,114, 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101, -100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101, -114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110, -100, 95,109, 97,120, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97, -120, 95, 97,118,101, 0,108, 97,110,100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115, -116,105, 99,107, 95,102,111,114, 99,101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102, -108,117,105,100, 95,103,114,111,117,112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95, -119,116, 0, 42,116,101,120, 95,115,104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, - 51, 93, 0,100,120, 0,111,109,101,103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, - 97,109,112,108,105,102,121, 0,109, 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115, -101, 0,100,105,115,115, 95,112,101,114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, - 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, - 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, - 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100, -101,110,115,105,116,121, 0,118,103,114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42, -118,101,108, 0,109, 97,116, 95,111,108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69, -194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0, -108,111,110,103, 0,117,108,111,110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110, -107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0, -118,101, 99, 50,102, 0,118,101, 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, - 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112, -101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70, -105,108,101, 68, 97,116, 97, 0, 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, - 98,106,101, 99,116, 0, 73,112,111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, - 73,112,111, 0, 75,101,121, 66,108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105, -110,101, 0, 84,101,120,116, 77, 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97, -109,101,114, 97, 0, 73,109, 97,103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101, -120,116,117,114,101, 0, 97,110,105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, - 0, 80,108,117,103,105,110, 84,101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, - 97,112, 0, 73,109, 66,117,102, 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121, -115,116,101,109, 0, 86,111,120,101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112, -105,110,103, 0, 76, 97,109,112, 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109, -101, 83,101,116,116,105,110,103,115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, - 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, - 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, - 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, - 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, - 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101, -115,104, 0, 67,117,115,116,111,109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105, -115,105, 98,105,108,105,116,121, 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, - 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, - 77, 73,110,116, 80,114,111,112,101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105, -103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, - 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, - 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101, -102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110, -101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, - 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, - 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, - 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, - 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, - 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, - 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, - 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, - 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, - 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, - 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, - 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, - 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101, -102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, - 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, - 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102,100, 32, 99,104, 97,114, - 32,117,115,101, 95, 99,111,108, 44, 32,102,108, 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118, -101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101, -100, 32,102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97, -116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104, -111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, - 97,115,101,115, 59, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105, -114,101,115, 32, 42, 42, 47, 10, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86, -105,115,105, 98,105,108,105,116,121, 32,123, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95, -109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, - 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103, -101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, - 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, - 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116, -111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, - 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102, -108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, - 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, - 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, - 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, - 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, - 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, - 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, - 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, - 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, - 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110, -111, 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114, -101,110,100,101,114, 32, 97,115,115,117,109,101,115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101, -100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, - 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, - 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, - 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, - 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, - 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, - 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, - 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115, -101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, - 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116, -102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, - 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, - 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97, -102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, - 32, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, - 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32, -115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, - 62,109,111,100,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35, -100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, - 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, - 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, - 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97, -120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, - 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, - 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, - 52, 32, 97,114,101, 32,117,115,101,100, 32, 97,115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, - 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104, -105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, - 97, 47, 98,105,110, 97,114,121, 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, - 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104, -101, 32,117,115,101,114, 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97, -112, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, - 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, - 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35,101,110,100,105,102, 10,100,105, 79, 67, 75, 33,110,100,101,120, 32,105,110, 32, -110,117,114, 98, 32,108,105,115,116, 32, 42, 47, 10, 9,105,110,116, 32, 97, 99,116,110,117, 59, 10, 9, 47, 42, 32,101,100,105, -116, 44, 32,108, 97,115,116, 32,115,101,108,101, 99,116,101,100, 32, 98,112,111,105,110,116, 32, 42, 47, 10, 9, 66, 80,111,105, -110,116, 32, 42,108, 97,115,116,115,101,108, 98,112, 59, 10, 9, 10, 9, 47, 42, 32,102,111,110,116, 32,112, 97,114,116, 32, 42, - 47, 10, 9,115,104,111,114,116, 32,108,101,110, 44, 32,108,105,110,101,115, 44, 32,112,111,115, 44, 32,115,112, 97, 99,101,109, -111,100,101, 59, 10, 9,102,108,111, 97,116, 32,115,112, 97, 99,105,110,103, 44, 32,108,105,110,101,100,105,115,116, 44, 32,115, -104,101, 97,114, 44, 32,102,115,105,122,101, 44, 32,119,111,114,100,115,112, 97, 99,101, 44, 32,117,108,112,111,115, 44, 32,117, -108,104,101,105,103,104,116, 59, 10, 9,102,108,111, 97,116, 32,120,111,102, 44, 32,121,111,102, 59, 10, 9,102,108,111, 97,116, - 32,108,105,110,101,119,105,100,116,104, 59, 10, 70, 82, 69, 69,216, 24, 0, 77,117,108,116,105,114,101,115, 67,111,108, 0, 77, -117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, 77,117,108,116, -105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102,105,101,114, 68, - 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116,105, 99,101, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,117, -105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, - 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100,105,102,105,101, -114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,101,118,101, -108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105,110, 83,101,116, -116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 67,111,108, -108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 85, - 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116,101, 77,111,100, -105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67, 97,115, -116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65, -114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105,102,105,101,114, - 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101,116,116,105,110, -103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, 99,104,101, 0, - 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101,101, 0, 83,117, -114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115,104, 0, 66, 86, - 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101,114, 68, 97,116, - 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115,104, 68,101,102, -111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 77,111, -100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77,111,100,105,102, -105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,117,108,116, -105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100,105,102,105,101, -114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110,107,119,114, 97, -112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111,100,105,102,105, -101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, -105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105,111,110, 0, 98, - 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83,111,102,116, 66, -111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72,111,111,107, 0, - 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103,104,116,115, 0, - 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114,116,101,120, 0, - 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, 99,104, 0, 87, -111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107,116,105,109,101, - 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117,100,105,111, 68, - 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, 97,116, 97, 0, - 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70,114, 97,109,105, -110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, 0, 66,114,117, -115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 66,114, -117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, 0, 84,114, 97, -110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97,105,110,116, 0, - 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116,105,110,103,115, - 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101,110,101, 83,116, - 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105,101,119, 51, 68, - 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86,105,101,119, 68, -101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101,114, 0, 86,105, -101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73,110,102,111, 0, - 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, 83,112, 97, 99, -101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, 97,109,115, 0, - 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111,114, 0, 70,105, -108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, 0, 84,114,101, -101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78,108, 97, 0, 83, -112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, 83,112, 97, 99, -101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83,112, 97, 99,101, - 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115,111,108,101, 0, - 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83,116,121,108,101, - 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105,100,103,101,116, - 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, 99,101, 0, 84, -104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105,103,104,116, 0, - 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101,108, 0, 80, 97, -110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, 99,101, 84,121, -112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71,108,111, 98, 97, -108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, 67,114,111,112, - 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97,108, 97,110, 99, -101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, 0, 83,101,113, -117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, 97, 83,116, 97, - 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111,114,109, 86, 97, -114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114,111,108, 86, 97, -114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, 97,114,116,105, - 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83,101,110,115,111, -114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, 98, 75,101,121, - 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, 98, 65, 99,116, -117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111,108,108,105,115, -105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100,111,109, 83,101, -110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110,115,111,114, 0, - 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116,114,111,108,108, -101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105,111,110, 67,111, -110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100,100, 79, 98,106, -101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, 98, 83,111,117, -110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, 99,116, 65, 99, -116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101,114,116,121, 65, - 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, 65, 99,116,117, - 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, 97,105,110,116, - 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110,100,111,109, 65, - 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97,109,101, 65, 99, -116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 84,119,111, 68, - 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, - 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97,116,111,114, 0, - 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, 98,106,101, 99, -116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 86,101,114,116, - 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103,115, 0, 98, 80, -111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, 65, 99,116,105, -111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67,104, 97,110,110, -101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110, -116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67,111,110,115,116, -114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97, 99, -107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77,105,110, 77, 97, -120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, - 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, 67,111,110,115, -116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,116, -114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, 74,111,105,110, -116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, 67,111,110,115, -116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 76, -105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104,114,105,110,107, -119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105,101,114, 0, 98, - 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, 83,111, 99,107, -101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118,105,101,119, 0, -117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65,110,105,109, 0, - 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 66, -105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, 78,111,100,101, - 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, 88, 89,115, 0, - 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78,111,100,101, 86, -101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114,105,112,116, 68, -105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111,100,101, 76,101, -110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97,112, 80,111,105, -110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111,109, 68, 97,116, - 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66,111,105,100, 80, - 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99,108,101, 0, 80, - 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87,101,105,103,104, -116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, - 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, - 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, - 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, - 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110, -100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110,102,105,103, 0, -119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114,101, 0,119,109, - 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, 97,112, 0,119, -109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, 95, 71,101,110, -101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111,114, 0, 70, 67, - 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, 0, 70, 77,111, -100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105,109,105,116,115, - 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97,110,110,101,108, - 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, 80, 97,105,114, - 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99,107, 0, 75, 83, - 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, 0, 73,100, 65, -100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, 71,111, 97,108, - 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, 0, 66,111,105, -100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118,101,114, 97,103, -101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97,116,101, 0, 70, - 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, 2, 0, 2, 0, - 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 16, 0, 24, 0, 16, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, 12, 0, 24, 0, - 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 32, 0, 96, 0, 72, 0, 72, 2, 0, 0, 40, 0,144, 0,152, 4,112, 0, 36, 0, 56, 0, -112, 0,128, 0,168, 0, 96, 0, 40, 0, 48, 0,176, 0, 16, 0,152, 0, 40, 0, 0, 6,184, 1, 0, 0, 0, 0, 0, 0, 16, 1, -104, 1,120, 1, 24, 0, 8, 3,200, 0, 0, 0, 96, 0,240, 1, 32, 1,232, 0,136, 0,248, 1, 56, 1, 80, 0, 88, 0, 32, 3, -104, 0, 88, 1, 0, 0,128, 0,104, 0,208, 0, 80, 0, 8, 0, 16, 0,216, 1, 0, 0, 0, 0, 0, 0,144, 1, 20, 0, 48, 0, - 64, 0, 24, 0, 12, 0, 16, 0, 4, 0, 8, 0, 8, 0, 0, 0, 32, 0,112, 0, 48, 0, 8, 0, 16, 0, 8, 0, 8, 0, 4, 0, - 4, 0, 0, 1, 32, 0, 16, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 64, 0, 72, 0, 96, 0,112, 0,120, 0, 88, 0,120, 0, -152, 0, 88, 0, 80, 0,128, 0, 80, 0,104, 0,248, 0, 56, 0,192, 0,176, 0,216, 0, 80, 0,112, 0,128, 0,216, 0,128, 0, -240, 0, 72, 0,128, 0, 0, 0,144, 0, 32, 0, 8, 2,152, 0, 0, 0,112, 0, 0, 0, 0, 0, 88, 0, 8, 0, 8, 0, 8, 1, -104, 0, 96, 0, 88, 0, 88, 0, 88, 0,192, 1,136, 0,128, 0, 72, 0,232, 0, 48, 0, 0, 0,144, 0, 88, 0,104, 0,120, 0, -152, 0, 32, 1,224, 0,192, 0, 0, 0, 72, 0,168, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,216, 1, 40, 0,184, 0,152, 0, - 64, 0, 24, 0, 88, 0, 24, 4, 64, 0, 24, 0, 16, 0, 96, 0, 88, 0, 32, 0, 40, 1, 48, 0, 8, 0,112, 0, 88, 0, 56, 0, - 72, 0,112, 1, 32, 0, 8, 0, 16, 0, 48, 2, 0, 0, 0, 0, 64, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, - 56, 0,152, 0, 72, 0,208, 0,248, 0, 32, 0, 0, 1,240, 0,208, 1,104, 0, 0, 0,152, 0, 0, 0, 40, 1, 16, 0, 16, 0, -168, 0,224, 0,144, 2,120, 2, 64, 0,200, 0, 32, 1, 72, 0,208, 2, 40, 0,112, 0, 40, 0, 24, 1, 32, 0,232, 0, 32, 0, - 32, 0, 80, 2, 16, 1, 16, 0,216, 21, 56, 0,160, 11, 32, 0, 40, 0, 88, 1, 0, 0, 0, 0,160, 0, 0, 0, 40, 1, 0, 0, - 24, 1, 80, 0, 48, 0, 16, 0, 8, 0, 52, 0, 0, 1, 32, 1,200, 1, 8, 1, 48, 1, 64, 0, 32, 0, 12, 0, 24, 0, 48, 0, - 16, 0, 24, 0, 24, 0, 32, 0, 72, 1, 0, 0, 64, 0, 64, 0, 48, 0, 8, 0, 48, 0, 72, 0,104, 0, 40, 0, 8, 0, 72, 0, - 44, 0, 40, 0,108, 0, 72, 0, 72, 0, 96, 0,104, 0, 60, 0,128, 0, 80, 0, 80, 0, 16, 0, 96, 0, 72, 0, 32, 0, 88, 0, - 24, 0, 80, 0,112, 0, 84, 0, 32, 0, 96, 0, 56, 0, 56, 0,112, 0,140, 0, 4, 0, 24, 0, 16, 0, 8, 0, 88, 0, 40, 0, -224, 0, 40, 0, 24, 1,176, 0, 16, 0, 24, 0, 24, 0, 0, 2, 4, 0, 40, 0,120, 0, 8, 1, 88, 0, 56, 0, 88, 0,128, 0, - 80, 0,120, 0, 56, 0, 48, 0, 48, 0, 72, 0, 48, 0, 72, 0, 48, 0, 24, 0, 56, 0,104, 0, 16, 0,112, 0, 96, 0, 28, 0, - 28, 0, 28, 0, 56, 0, 24, 0, 72, 0,168, 0, 40, 0,144, 0, 56, 0, 8, 1, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, 28, 0, - 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 16, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, 56, 0, - 24, 0, 72, 0, 24, 0, 56, 0, 56, 0, 20, 0, 64, 0, 40, 0, 32, 0,192, 0, 8, 2,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 32, 0, 40, 0,192, 0, 40, 0, 32, 0, 8, 1,224, 0,168, 0, 72, 0, 0, 0, 0, 0,120, 0, 0, 0,120, 0, 0, 0, -104, 0, 24, 0, 24, 0, 16, 0, 24, 0, 8, 0, 16, 0, 24, 0, 20, 0,112, 0, 32, 1, 16, 0,104, 0, 0, 1, 40, 0,200, 0, -104, 0,112, 0,104, 0, 32, 0, 80, 0, 56, 0, 80, 0, 64, 0,104, 0, 72, 0, 64, 0,128, 0, 0, 0, 0, 0, 83, 84, 82, 67, -136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, - 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, 4, 0, 5, 0, - 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, 17, 0, 3, 0, - 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 19, 0, 3, 0, - 8, 0, 5, 0, 8, 0, 6, 0, 8, 0, 7, 0, 20, 0, 4, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 4, 0, 8, 0, - 21, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 8, 0, 22, 0, 4, 0, 8, 0, 5, 0, 8, 0, 6, 0, - 8, 0, 7, 0, 8, 0, 8, 0, 23, 0, 4, 0, 4, 0, 9, 0, 4, 0, 10, 0, 4, 0, 11, 0, 4, 0, 12, 0, 24, 0, 4, 0, - 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 25, 0, 4, 0, 9, 0, 13, 0, 12, 0, 14, 0, 4, 0, 15, 0, - 4, 0, 16, 0, 26, 0, 10, 0, 26, 0, 0, 0, 26, 0, 1, 0, 0, 0, 17, 0, 0, 0, 18, 0, 2, 0, 19, 0, 0, 0, 20, 0, - 4, 0, 21, 0, 25, 0, 22, 0, 4, 0, 23, 0, 4, 0, 24, 0, 27, 0, 9, 0, 9, 0, 0, 0, 9, 0, 1, 0, 27, 0, 25, 0, - 28, 0, 26, 0, 0, 0, 27, 0, 2, 0, 28, 0, 2, 0, 19, 0, 4, 0, 29, 0, 26, 0, 30, 0, 28, 0, 8, 0, 27, 0, 31, 0, - 27, 0, 32, 0, 29, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 4, 0, 36, 0, 4, 0, 37, 0, 28, 0, 38, 0, 30, 0, 6, 0, - 4, 0, 39, 0, 4, 0, 40, 0, 2, 0, 41, 0, 2, 0, 42, 0, 2, 0, 43, 0, 4, 0, 44, 0, 31, 0, 6, 0, 32, 0, 45, 0, - 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 48, 0, 33, 0, 21, 0, 33, 0, 0, 0, 33, 0, 1, 0, - 34, 0, 49, 0, 35, 0, 50, 0, 24, 0, 51, 0, 24, 0, 52, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 53, 0, 2, 0, 54, 0, - 2, 0, 55, 0, 2, 0, 56, 0, 2, 0, 19, 0, 2, 0, 57, 0, 7, 0, 11, 0, 7, 0, 12, 0, 4, 0, 58, 0, 7, 0, 59, 0, - 7, 0, 60, 0, 7, 0, 61, 0, 31, 0, 62, 0, 36, 0, 7, 0, 27, 0, 31, 0, 12, 0, 63, 0, 24, 0, 64, 0, 2, 0, 46, 0, - 2, 0, 65, 0, 2, 0, 66, 0, 2, 0, 37, 0, 37, 0, 16, 0, 37, 0, 0, 0, 37, 0, 1, 0, 7, 0, 67, 0, 7, 0, 61, 0, - 2, 0, 17, 0, 2, 0, 47, 0, 2, 0, 68, 0, 2, 0, 19, 0, 4, 0, 69, 0, 4, 0, 70, 0, 9, 0, 2, 0, 7, 0, 71, 0, - 0, 0, 20, 0, 0, 0, 72, 0, 7, 0, 73, 0, 7, 0, 74, 0, 38, 0, 13, 0, 27, 0, 31, 0, 39, 0, 75, 0, 37, 0, 76, 0, - 0, 0, 77, 0, 4, 0, 78, 0, 7, 0, 61, 0, 12, 0, 79, 0, 36, 0, 80, 0, 27, 0, 81, 0, 2, 0, 17, 0, 2, 0, 82, 0, - 2, 0, 83, 0, 2, 0, 19, 0, 40, 0, 6, 0, 40, 0, 0, 0, 40, 0, 1, 0, 0, 0, 84, 0, 0, 0, 85, 0, 4, 0, 23, 0, - 4, 0, 86, 0, 41, 0, 10, 0, 41, 0, 0, 0, 41, 0, 1, 0, 4, 0, 87, 0, 4, 0, 88, 0, 4, 0, 89, 0, 4, 0, 43, 0, - 4, 0, 14, 0, 4, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 42, 0, 15, 0, 27, 0, 31, 0, 0, 0, 93, 0, 4, 0, 90, 0, - 4, 0, 94, 0, 12, 0, 95, 0, 40, 0, 96, 0, 40, 0, 97, 0, 4, 0, 98, 0, 4, 0, 99, 0, 12, 0,100, 0, 0, 0,101, 0, - 4, 0,102, 0, 4, 0,103, 0, 9, 0,104, 0, 8, 0,105, 0, 43, 0, 3, 0, 4, 0,106, 0, 4, 0,107, 0, 9, 0, 2, 0, - 44, 0, 20, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,108, 0, 7, 0,109, 0, 7, 0,110, 0, - 7, 0,111, 0, 7, 0,112, 0, 7, 0,113, 0, 7, 0,114, 0, 7, 0,115, 0, 7, 0,116, 0, 7, 0,117, 0, 7, 0,118, 0, - 2, 0,119, 0, 2, 0,120, 0, 7, 0,121, 0, 36, 0, 80, 0, 32, 0,122, 0, 45, 0, 13, 0, 4, 0,123, 0, 4, 0,124, 0, - 4, 0,125, 0, 4, 0,126, 0, 2, 0,127, 0, 2, 0,128, 0, 2, 0, 19, 0, 2, 0,129, 0, 2, 0,130, 0, 2, 0,131, 0, - 2, 0,132, 0, 2, 0,133, 0, 46, 0,134, 0, 47, 0, 32, 0, 27, 0, 31, 0, 0, 0, 34, 0, 12, 0,135, 0, 48, 0,136, 0, - 49, 0,137, 0, 50, 0,138, 0, 2, 0,129, 0, 2, 0, 19, 0, 2, 0,139, 0, 2, 0, 17, 0, 2, 0, 37, 0, 2, 0, 43, 0, - 4, 0,140, 0, 2, 0,141, 0, 2, 0,142, 0, 2, 0,143, 0, 2, 0,144, 0, 2, 0,145, 0, 2, 0,146, 0, 4, 0,147, 0, - 4, 0,148, 0, 43, 0,149, 0, 30, 0,150, 0, 0, 0,151, 0, 7, 0,152, 0, 4, 0,153, 0, 2, 0,154, 0, 2, 0,155, 0, - 2, 0,156, 0, 2, 0,157, 0, 7, 0,158, 0, 7, 0,159, 0, 51, 0, 63, 0, 2, 0,160, 0, 2, 0,161, 0, 2, 0,162, 0, - 2, 0,163, 0, 32, 0,164, 0, 52, 0,165, 0, 0, 0,166, 0, 0, 0,167, 0, 0, 0,168, 0, 0, 0,169, 0, 0, 0,170, 0, - 7, 0,171, 0, 7, 0,172, 0, 7, 0,173, 0, 2, 0,174, 0, 2, 0,175, 0, 2, 0,176, 0, 2, 0,177, 0, 2, 0,178, 0, - 2, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, 7, 0,186, 0, - 7, 0, 57, 0, 7, 0,187, 0, 7, 0,188, 0, 7, 0,189, 0, 7, 0,190, 0, 7, 0,191, 0, 7, 0,192, 0, 7, 0,193, 0, - 7, 0,194, 0, 7, 0,195, 0, 7, 0,196, 0, 7, 0,197, 0, 7, 0,198, 0, 7, 0,199, 0, 7, 0,200, 0, 7, 0,201, 0, - 7, 0,202, 0, 7, 0,203, 0, 7, 0,204, 0, 7, 0,205, 0, 7, 0,206, 0, 7, 0,207, 0, 7, 0,208, 0, 7, 0,209, 0, - 7, 0,210, 0, 7, 0,211, 0, 7, 0,212, 0, 7, 0,213, 0, 7, 0,214, 0, 7, 0,215, 0, 7, 0,216, 0, 7, 0,217, 0, - 7, 0,218, 0, 7, 0,219, 0, 7, 0,220, 0, 7, 0,221, 0, 53, 0, 15, 0, 0, 0,222, 0, 9, 0,223, 0, 0, 0,224, 0, - 0, 0,225, 0, 4, 0,226, 0, 4, 0,227, 0, 9, 0,228, 0, 7, 0,229, 0, 7, 0,230, 0, 7, 0,231, 0, 4, 0,232, 0, - 9, 0,233, 0, 9, 0,234, 0, 4, 0,235, 0, 4, 0, 37, 0, 54, 0, 6, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, - 7, 0,236, 0, 7, 0, 67, 0, 4, 0, 64, 0, 55, 0, 5, 0, 2, 0, 19, 0, 2, 0, 36, 0, 2, 0, 64, 0, 2, 0,237, 0, - 54, 0,231, 0, 56, 0, 17, 0, 32, 0,164, 0, 47, 0,238, 0, 57, 0,239, 0, 7, 0,240, 0, 7, 0,241, 0, 2, 0, 17, 0, - 2, 0,242, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0,243, 0, 4, 0,244, 0, 2, 0,245, 0, 2, 0,246, 0, 4, 0,129, 0, - 4, 0,140, 0, 2, 0,247, 0, 2, 0,248, 0, 58, 0, 23, 0, 2, 0, 19, 0, 2, 0,249, 0, 7, 0,250, 0, 7, 0,251, 0, - 2, 0,139, 0, 2, 0,252, 0, 4, 0,253, 0, 4, 0,254, 0, 32, 0,164, 0, 59, 0,255, 0, 2, 0, 0, 1, 2, 0, 1, 1, - 2, 0, 2, 1, 9, 0, 3, 1, 7, 0, 4, 1, 7, 0, 5, 1, 2, 0, 6, 1, 2, 0, 7, 1, 2, 0, 8, 1, 2, 0, 9, 1, - 7, 0, 10, 1, 7, 0, 11, 1, 55, 0, 12, 1, 60, 0, 11, 0, 4, 0, 13, 1, 4, 0, 14, 1, 2, 0, 15, 1, 2, 0, 19, 0, - 2, 0, 16, 1, 2, 0, 37, 0, 32, 0,164, 0, 7, 0, 17, 1, 4, 0, 18, 1, 0, 0, 19, 1, 7, 0, 20, 1, 52, 0, 61, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 7, 0, 21, 1, 7, 0, 22, 1, 7, 0, 23, 1, 7, 0, 24, 1, 7, 0, 25, 1, 7, 0, 26, 1, - 7, 0, 27, 1, 7, 0, 28, 1, 7, 0, 29, 1, 7, 0, 30, 1, 7, 0, 31, 1, 7, 0, 32, 1, 7, 0, 33, 1, 7, 0, 34, 1, - 7, 0, 35, 1, 7, 0, 36, 1, 7, 0, 37, 1, 7, 0, 38, 1, 7, 0, 39, 1, 7, 0, 40, 1, 2, 0, 41, 1, 2, 0, 42, 1, - 2, 0, 43, 1, 2, 0, 44, 1, 2, 0, 45, 1, 2, 0, 46, 1, 2, 0, 47, 1, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0,242, 0, - 7, 0, 48, 1, 7, 0, 49, 1, 7, 0, 50, 1, 7, 0, 51, 1, 4, 0, 52, 1, 4, 0, 53, 1, 2, 0, 54, 1, 2, 0, 55, 1, - 2, 0, 16, 1, 2, 0,127, 0, 4, 0, 23, 0, 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 7, 0, 56, 1, 7, 0, 57, 1, - 7, 0,189, 0, 45, 0, 58, 1, 61, 0, 59, 1, 36, 0, 80, 0, 47, 0,238, 0, 53, 0, 60, 1, 55, 0, 12, 1, 56, 0, 61, 1, - 30, 0,150, 0, 58, 0, 62, 1, 60, 0, 63, 1, 0, 0, 64, 1, 0, 0,181, 0, 62, 0, 8, 0, 7, 0, 65, 1, 7, 0, 66, 1, - 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 84, 0, 27, 0, 31, 0, - 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 70, 1, 2, 0,175, 0, 2, 0, 71, 1, 7, 0,182, 0, 7, 0,183, 0, - 7, 0,184, 0, 7, 0,185, 0, 7, 0, 72, 1, 7, 0, 73, 1, 7, 0, 74, 1, 7, 0, 75, 1, 7, 0, 76, 1, 7, 0, 77, 1, - 7, 0, 78, 1, 7, 0, 79, 1, 7, 0, 80, 1, 7, 0, 81, 1, 7, 0, 82, 1, 64, 0, 83, 1, 2, 0,249, 0, 2, 0, 70, 0, - 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 7, 0, 87, 1, 7, 0, 88, 1, 2, 0, 89, 1, - 2, 0, 90, 1, 2, 0, 91, 1, 2, 0, 92, 1, 0, 0, 93, 1, 0, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, 2, 0, 97, 1, - 2, 0, 98, 1, 2, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 7, 0,102, 1, 7, 0,103, 1, 2, 0,104, 1, 2, 0, 43, 0, - 2, 0,105, 1, 2, 0,106, 1, 2, 0,107, 1, 2, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, 7, 0,112, 1, - 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 7, 0,119, 1, 7, 0,120, 1, - 2, 0,121, 1, 2, 0,122, 1, 4, 0,123, 1, 4, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 2, 0,127, 1, 2, 0,128, 1, - 7, 0,129, 1, 7, 0,130, 1, 7, 0,131, 1, 7, 0,132, 1, 2, 0,133, 1, 2, 0,134, 1, 36, 0, 80, 0, 51, 0,135, 1, - 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, 7, 0,138, 1, - 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, 7, 0,146, 1, - 7, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 2, 0,150, 1, 2, 0,151, 1, 7, 0,152, 1, 7, 0,153, 1, 7, 0,154, 1, - 4, 0,155, 1, 67, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,156, 1, 2, 0, 19, 0, 7, 0,182, 0, 7, 0,183, 0, - 7, 0,184, 0, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, 7, 0,163, 1, - 7, 0,164, 1, 7, 0,165, 1, 7, 0,166, 1, 7, 0,167, 1, 7, 0,168, 1, 7, 0,169, 1, 7, 0,170, 1, 7, 0,171, 1, - 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 7, 0,175, 1, 7, 0,176, 1, 66, 0,177, 1, 7, 0,178, 1, 7, 0,179, 1, - 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 7, 0,183, 1, 7, 0,184, 1, 2, 0,185, 1, 2, 0,186, 1, 2, 0,187, 1, - 0, 0,188, 1, 0, 0,189, 1, 7, 0,190, 1, 7, 0,191, 1, 2, 0,192, 1, 2, 0,193, 1, 7, 0,194, 1, 7, 0,195, 1, - 7, 0,196, 1, 7, 0,197, 1, 2, 0,198, 1, 2, 0,199, 1, 4, 0, 70, 1, 4, 0,200, 1, 2, 0,201, 1, 2, 0,202, 1, - 2, 0,203, 1, 2, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, 7, 0,210, 1, - 7, 0,211, 1, 7, 0,212, 1, 7, 0,213, 1, 7, 0,214, 1, 0, 0,215, 1, 7, 0,216, 1, 7, 0,217, 1, 7, 0,218, 1, - 4, 0,219, 1, 0, 0,220, 1, 0, 0,105, 1, 0, 0,221, 1, 0, 0, 64, 1, 2, 0,222, 1, 2, 0,223, 1, 2, 0,136, 1, - 2, 0,224, 1, 2, 0,225, 1, 2, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 7, 0,230, 1, 7, 0,231, 1, - 2, 0,160, 0, 2, 0,161, 0, 55, 0,232, 1, 55, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 0, 0,236, 1, 0, 0,237, 1, - 2, 0,238, 1, 2, 0,239, 1, 7, 0,240, 1, 7, 0,241, 1, 51, 0,135, 1, 61, 0, 59, 1, 36, 0, 80, 0, 68, 0,242, 1, - 30, 0,150, 0, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 7, 0,246, 1, 7, 0,247, 1, 2, 0,248, 1, 2, 0, 70, 0, - 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, 7, 0, 0, 2, - 7, 0, 1, 2, 2, 0, 2, 2, 2, 0, 3, 2, 4, 0, 4, 2, 4, 0,122, 1, 12, 0, 5, 2, 69, 0, 4, 0, 27, 0, 31, 0, - 0, 0, 6, 2, 70, 0, 2, 0, 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 7, 2, 4, 0, 8, 2, - 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 4, 0, 12, 2, 4, 0, 13, 2, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 14, 2, - 2, 0, 15, 2, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, 7, 0, 19, 2, - 7, 0, 20, 2, 7, 0, 21, 2, 7, 0, 22, 2, 7, 0, 23, 0, 7, 0, 23, 2, 7, 0, 24, 2, 73, 0, 20, 0, 27, 0, 31, 0, - 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 25, 2, 12, 0, 26, 2, 12, 0, 27, 2, 36, 0, 80, 0, 67, 0, 28, 2, 0, 0, 19, 0, - 0, 0, 29, 2, 2, 0, 30, 2, 2, 0,174, 0, 2, 0, 37, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0, 31, 2, - 7, 0, 32, 2, 7, 0, 33, 2, 71, 0, 34, 2, 35, 0, 11, 0, 7, 0, 35, 2, 7, 0, 36, 2, 7, 0, 37, 2, 7, 0,251, 0, - 2, 0, 55, 0, 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 0, 0, 42, 2, 0, 0, 43, 2, 34, 0, 7, 0, - 7, 0, 44, 2, 7, 0, 36, 2, 7, 0, 37, 2, 2, 0, 40, 2, 2, 0, 43, 2, 7, 0,251, 0, 7, 0, 37, 0, 74, 0, 21, 0, - 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, 2, 0, 45, 2, 2, 0, 43, 2, 2, 0, 19, 0, 2, 0, 46, 2, 2, 0, 47, 2, - 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 2, 0, 52, 2, 2, 0, 53, 2, 7, 0, 54, 2, 7, 0, 55, 2, - 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 56, 2, 2, 0, 57, 2, 4, 0, 58, 2, 75, 0, 5, 0, 2, 0, 59, 2, 2, 0, 45, 2, - 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 7, 0, 60, 2, - 77, 0, 68, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 61, 2, 12, 0, 26, 2, 12, 0, 62, 2, 32, 0, 63, 2, - 32, 0, 64, 2, 32, 0, 65, 2, 36, 0, 80, 0, 78, 0, 66, 2, 38, 0, 67, 2, 67, 0, 28, 2, 12, 0, 68, 2, 7, 0, 65, 1, - 7, 0,172, 0, 7, 0, 66, 1, 2, 0,174, 0, 2, 0, 43, 0, 2, 0, 69, 2, 2, 0, 70, 2, 2, 0, 71, 2, 7, 0, 72, 2, - 7, 0, 70, 0, 2, 0, 73, 2, 2, 0, 30, 2, 2, 0, 19, 0, 2, 0, 74, 2, 7, 0, 75, 2, 7, 0, 76, 2, 7, 0, 77, 2, - 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 78, 2, 2, 0, 79, 2, 4, 0, 80, 2, 34, 0, 81, 2, 2, 0, 23, 0, 2, 0, 95, 0, - 2, 0, 67, 0, 2, 0, 82, 2, 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, 7, 0, 88, 2, - 7, 0, 89, 2, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 92, 2, 0, 0, 93, 2, 79, 0, 94, 2, 80, 0, 95, 2, 0, 0, 96, 2, - 69, 0, 97, 2, 69, 0, 98, 2, 69, 0, 99, 2, 69, 0,100, 2, 4, 0,101, 2, 7, 0,102, 2, 4, 0,103, 2, 4, 0,104, 2, - 76, 0,105, 2, 4, 0,106, 2, 4, 0,107, 2, 75, 0,108, 2, 75, 0,109, 2, 81, 0, 40, 0, 27, 0, 31, 0, 72, 0, 7, 2, - 12, 0,110, 2, 36, 0, 80, 0, 38, 0, 67, 2, 67, 0, 28, 2, 82, 0,111, 2, 83, 0,112, 2, 84, 0,113, 2, 85, 0,114, 2, - 86, 0,115, 2, 87, 0,116, 2, 88, 0,117, 2, 89, 0,118, 2, 81, 0,119, 2, 90, 0,120, 2, 91, 0,121, 2, 92, 0,122, 2, - 92, 0,123, 2, 92, 0,124, 2, 4, 0, 54, 0, 4, 0,125, 2, 4, 0,126, 2, 4, 0,127, 2, 4, 0,128, 2, 2, 0,174, 0, - 2, 0,129, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,130, 2, 4, 0, 69, 2, 2, 0,131, 2, 2, 0, 19, 0, - 2, 0,132, 2, 2, 0,133, 2, 2, 0, 30, 2, 2, 0,134, 2, 93, 0,135, 2, 94, 0,136, 2, 84, 0, 8, 0, 9, 0,137, 2, - 7, 0,138, 2, 4, 0,139, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 82, 0, 7, 0, - 4, 0,143, 2, 4, 0,144, 2, 4, 0,145, 2, 4, 0,146, 2, 2, 0, 45, 2, 0, 0,147, 2, 0, 0, 19, 0, 86, 0, 5, 0, - 4, 0,143, 2, 4, 0,144, 2, 0, 0,148, 2, 0, 0,149, 2, 2, 0, 19, 0, 95, 0, 2, 0, 4, 0,150, 2, 7, 0, 37, 2, - 87, 0, 3, 0, 95, 0,151, 2, 4, 0,152, 2, 4, 0, 19, 0, 85, 0, 6, 0, 7, 0,153, 2, 2, 0,154, 2, 2, 0, 45, 2, - 0, 0, 19, 0, 0, 0,149, 2, 0, 0, 71, 2, 88, 0, 4, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, - 96, 0, 6, 0, 47, 0,137, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 97, 0, 1, 0, - 7, 0,155, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 4, 0, 37, 0, 89, 0, 1, 0, - 7, 0,156, 2, 90, 0, 2, 0, 4, 0,157, 2, 4, 0, 17, 0, 83, 0, 7, 0, 7, 0,138, 2, 47, 0,137, 2, 0, 0, 19, 0, - 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 99, 0, 1, 0, 7, 0,158, 2,100, 0, 1, 0, 4, 0,159, 2, -101, 0, 1, 0, 0, 0,160, 2,102, 0, 1, 0, 7, 0,138, 2,103, 0, 3, 0, 4, 0,161, 2, 0, 0, 92, 0, 7, 0,162, 2, -105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0,106, 0, 1, 0,105, 0,139, 2,107, 0, 5, 0, - 4, 0,163, 2, 4, 0,164, 2, 0, 0, 19, 0, 0, 0, 45, 2, 0, 0, 71, 2,108, 0, 2, 0, 4, 0,165, 2, 4, 0,164, 2, -109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,166, 2,106, 0,167, 2,108, 0,168, 2, 4, 0, 54, 0, 4, 0,126, 2, - 4, 0,125, 2, 4, 0, 37, 0, 85, 0,169, 2, 93, 0, 14, 0, 12, 0,170, 2, 85, 0,169, 2, 0, 0,171, 2, 0, 0,172, 2, - 0, 0,173, 2, 0, 0,174, 2, 0, 0,175, 2, 0, 0,176, 2, 0, 0,177, 2, 0, 0, 19, 0, 92, 0,122, 2, 92, 0,124, 2, - 2, 0,178, 2, 0, 0,179, 2, 94, 0, 8, 0, 4, 0,180, 2, 4, 0,181, 2, 82, 0,182, 2, 86, 0,183, 2, 4, 0,126, 2, - 4, 0,125, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0,110, 0, 1, 0, 4, 0, 17, 0, 4, 0, 70, 1, - 0, 0, 20, 0, 46, 0,134, 0, 0, 0,184, 2,111, 0, 7, 0,110, 0,185, 2, 2, 0,186, 2, 2, 0,170, 2, 2, 0,187, 2, - 2, 0, 90, 0, 9, 0,188, 2, 9, 0,189, 2,112, 0, 3, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0,113, 0, 5, 0, -110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,190, 2, 0, 0,191, 2,114, 0, 5, 0,110, 0,185, 2, 7, 0, 88, 0, - 7, 0,192, 2, 4, 0,193, 2, 4, 0,194, 2,115, 0, 5, 0,110, 0,185, 2, 32, 0,195, 2, 0, 0, 72, 0, 4, 0, 70, 1, - 4, 0, 19, 0,116, 0, 13, 0,110, 0,185, 2, 32, 0,196, 2, 32, 0,197, 2, 32, 0,198, 2, 32, 0,199, 2, 7, 0,200, 2, - 7, 0,201, 2, 7, 0,192, 2, 7, 0,202, 2, 4, 0,203, 2, 4, 0,204, 2, 4, 0, 90, 0, 4, 0,205, 2,117, 0, 5, 0, -110, 0,185, 2, 2, 0,206, 2, 2, 0, 19, 0, 7, 0,207, 2, 32, 0,208, 2,118, 0, 3, 0,110, 0,185, 2, 7, 0,209, 2, - 4, 0, 90, 0,119, 0, 10, 0,110, 0,185, 2, 7, 0,210, 2, 4, 0,211, 2, 4, 0, 37, 0, 2, 0, 90, 0, 2, 0,212, 2, - 2, 0,213, 2, 2, 0,214, 2, 7, 0,215, 2, 0, 0,216, 2,120, 0, 3, 0,110, 0,185, 2, 7, 0, 37, 0, 4, 0, 17, 0, -121, 0, 6, 0,110, 0,185, 2,122, 0,217, 2,123, 0,218, 2,124, 0,219, 2, 7, 0,220, 2, 4, 0, 17, 0,125, 0, 11, 0, -110, 0,185, 2, 52, 0,221, 2, 7, 0,222, 2, 4, 0,223, 2, 0, 0,216, 2, 7, 0,224, 2, 4, 0,225, 2, 32, 0,226, 2, - 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,185, 2, 32, 0,229, 2, 47, 0,230, 2, 4, 0, 90, 0, - 4, 0,231, 2, 7, 0,232, 2, 7, 0,233, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,127, 0, 3, 0,110, 0,185, 2, - 7, 0,234, 2, 4, 0,235, 2,128, 0, 5, 0,110, 0,185, 2, 7, 0,236, 2, 0, 0,216, 2, 2, 0, 19, 0, 2, 0,237, 2, -129, 0, 8, 0,110, 0,185, 2, 32, 0,164, 0, 7, 0,236, 2, 7, 0,251, 0, 7, 0,106, 0, 0, 0,216, 2, 2, 0, 19, 0, - 2, 0, 17, 0,130, 0, 21, 0,110, 0,185, 2, 32, 0,238, 2, 0, 0,216, 2, 52, 0,221, 2, 32, 0,226, 2, 2, 0, 19, 0, - 2, 0, 37, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0,244, 2, - 7, 0,245, 2, 4, 0,225, 2, 4, 0,228, 2, 0, 0,227, 2, 7, 0,246, 2, 7, 0,247, 2, 7, 0, 43, 0,131, 0, 7, 0, -110, 0,185, 2, 2, 0,248, 2, 2, 0,249, 2, 4, 0, 70, 0, 32, 0,164, 0, 7, 0,250, 2, 0, 0,216, 2,132, 0, 10, 0, -110, 0,185, 2, 32, 0,164, 0, 0, 0,251, 2, 7, 0,252, 2, 7, 0,253, 2, 7, 0,245, 2, 4, 0,254, 2, 4, 0,255, 2, - 7, 0, 0, 3, 0, 0, 20, 0,133, 0, 1, 0,110, 0,185, 2,134, 0, 7, 0,110, 0,185, 2, 46, 0,134, 0,135, 0, 1, 3, -136, 0, 2, 3,137, 0, 3, 3,138, 0, 4, 3, 12, 0, 5, 3,139, 0, 13, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 7, 3, - 85, 0, 8, 3, 85, 0, 9, 3, 85, 0, 10, 3, 85, 0, 11, 3, 82, 0, 12, 3, 4, 0, 13, 3, 4, 0, 14, 3, 7, 0,220, 2, - 7, 0, 37, 0,140, 0, 15, 3,141, 0, 7, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 16, 3,142, 0, 17, 3,143, 0, 15, 3, - 4, 0, 18, 3, 4, 0, 13, 3,144, 0, 4, 0,110, 0,185, 2, 32, 0,164, 0, 4, 0, 19, 3, 4, 0, 37, 0,145, 0, 2, 0, - 4, 0, 20, 3, 7, 0, 37, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 21, 3,147, 0, 20, 0,110, 0,185, 2, 32, 0,164, 0, - 0, 0,216, 2, 2, 0, 22, 3, 2, 0, 23, 3, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0, 24, 3, 7, 0, 25, 3, 4, 0, 54, 0, - 4, 0, 26, 3,146, 0, 27, 3,145, 0, 28, 3, 4, 0, 29, 3, 4, 0, 30, 3, 4, 0, 31, 3, 4, 0, 21, 3, 7, 0, 32, 3, - 7, 0, 33, 3, 7, 0, 34, 3,148, 0, 8, 0,110, 0,185, 2, 59, 0,255, 0,142, 0, 17, 3, 4, 0, 35, 3, 4, 0, 36, 3, - 4, 0, 37, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,185, 2, 32, 0, 45, 0, 2, 0, 38, 3, 2, 0, 19, 0, - 2, 0,206, 2, 2, 0, 57, 0, 7, 0, 39, 3, 7, 0, 40, 3,150, 0, 5, 0,110, 0,185, 2, 4, 0, 41, 3, 2, 0, 19, 0, - 2, 0, 42, 3, 7, 0, 43, 3,151, 0, 7, 0,110, 0,185, 2, 85, 0, 44, 3, 4, 0, 45, 3, 0, 0, 46, 3, 0, 0, 47, 3, - 0, 0, 48, 3, 0, 0, 49, 3,152, 0, 3, 0,110, 0,185, 2,153, 0, 50, 3,138, 0, 4, 3,154, 0, 10, 0,110, 0,185, 2, - 32, 0, 51, 3, 32, 0, 52, 3, 0, 0, 53, 3, 7, 0, 54, 3, 2, 0, 55, 3, 2, 0, 56, 3, 0, 0, 57, 3, 0, 0, 58, 3, - 0, 0,191, 2,155, 0, 9, 0,110, 0,185, 2, 32, 0, 59, 3, 0, 0, 53, 3, 7, 0, 60, 3, 7, 0, 61, 3, 0, 0, 70, 1, - 0, 0,206, 2, 0, 0, 62, 3, 0, 0, 37, 0,156, 0, 1, 0,110, 0,185, 2,157, 0, 27, 0, 27, 0, 31, 0, 2, 0, 46, 2, - 2, 0, 47, 2, 2, 0, 63, 3, 2, 0, 19, 0, 2, 0, 64, 3, 2, 0, 65, 3, 2, 0, 66, 3, 2, 0, 70, 0, 0, 0, 67, 3, - 0, 0, 68, 3, 0, 0, 69, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, 7, 0, 73, 3, - 7, 0, 74, 3, 7, 0, 75, 3, 34, 0, 76, 3, 36, 0, 80, 0, 38, 0, 67, 2, 87, 0,116, 2, 7, 0, 77, 3, 7, 0, 78, 3, -157, 0, 79, 3,158, 0, 3, 0,158, 0, 0, 0,158, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 80, 3, 4, 0, 19, 0, - 4, 0, 37, 0, 32, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0,159, 0, 81, 3, 2, 0, 17, 0, 2, 0, 82, 3, 4, 0, 83, 3, - 4, 0, 84, 3, 4, 0, 85, 3, 0, 0, 86, 3, 32, 0, 38, 0, 32, 0, 87, 3, 32, 0, 88, 3, 32, 0, 89, 3, 32, 0, 90, 3, - 36, 0, 80, 0, 78, 0, 66, 2, 72, 0, 7, 2,160, 0, 91, 3,160, 0, 92, 3,161, 0, 93, 3, 9, 0, 2, 0,162, 0, 94, 3, - 12, 0, 95, 3, 12, 0,110, 2, 12, 0, 26, 2, 12, 0, 96, 3, 12, 0, 97, 3, 4, 0, 70, 1, 4, 0, 98, 3, 67, 0, 28, 2, - 0, 0, 99, 3, 4, 0, 30, 2, 4, 0,100, 3, 7, 0, 65, 1, 7, 0,101, 3, 7, 0,102, 3, 7, 0,172, 0, 7, 0,103, 3, - 7, 0, 66, 1, 7, 0,104, 3, 7, 0, 16, 2, 7, 0,105, 3, 7, 0,106, 3, 7, 0,107, 3, 7, 0,108, 3, 7, 0,109, 3, - 7, 0,110, 3, 7, 0,252, 2, 7, 0,111, 3, 7, 0,240, 0, 4, 0,112, 3, 2, 0, 19, 0, 2, 0,113, 3, 2, 0,114, 3, - 2, 0,115, 3, 2, 0,116, 3, 2, 0,117, 3, 2, 0,118, 3, 2, 0,119, 3, 2, 0,120, 3, 2, 0,121, 3, 2, 0,122, 3, - 2, 0,123, 3, 4, 0,124, 3, 4, 0,125, 3, 4, 0,126, 3, 4, 0,127, 3, 7, 0,128, 3, 7, 0,102, 2, 7, 0,129, 3, - 7, 0,130, 3, 7, 0,131, 3, 7, 0,132, 3, 7, 0,133, 3, 7, 0,215, 0, 7, 0,134, 3, 7, 0,135, 3, 7, 0,136, 3, - 7, 0,137, 3, 2, 0,138, 3, 0, 0,139, 3, 0, 0,140, 3, 0, 0,141, 3, 0, 0,142, 3, 7, 0,143, 3, 7, 0,144, 3, - 12, 0,145, 3, 12, 0,146, 3, 12, 0,147, 3, 12, 0,148, 3, 7, 0,149, 3, 2, 0,157, 2, 2, 0,150, 3, 7, 0,139, 2, - 4, 0,151, 3, 4, 0,152, 3,163, 0,153, 3, 2, 0,154, 3, 2, 0,247, 0, 7, 0,155, 3, 12, 0,156, 3, 12, 0,157, 3, - 12, 0,158, 3, 12, 0,159, 3,164, 0, 62, 1,165, 0,160, 3, 68, 0,161, 3, 2, 0,162, 3, 2, 0,163, 3, 2, 0,164, 3, - 2, 0,165, 3, 7, 0,131, 2, 2, 0,166, 3, 2, 0,167, 3,153, 0,168, 3,142, 0,169, 3,142, 0,170, 3, 4, 0,171, 3, - 4, 0,172, 3, 4, 0,173, 3, 4, 0, 70, 0, 12, 0,174, 3, 12, 0,175, 3, 12, 0,176, 3,166, 0, 14, 0,166, 0, 0, 0, -166, 0, 1, 0, 32, 0, 38, 0, 7, 0,252, 2, 7, 0, 67, 1, 7, 0,253, 2, 7, 0,245, 2, 0, 0, 20, 0, 4, 0,254, 2, - 4, 0,255, 2, 4, 0,177, 3, 2, 0, 17, 0, 2, 0,178, 3, 7, 0, 0, 3,167, 0, 12, 0,167, 0, 0, 0,167, 0, 1, 0, - 32, 0, 45, 0, 4, 0,179, 3, 4, 0,157, 2, 4, 0,180, 3, 4, 0, 17, 0, 4, 0,181, 3, 7, 0, 67, 1, 7, 0,182, 3, - 7, 0,183, 3, 7, 0,155, 2,164, 0, 40, 0, 4, 0, 19, 0, 2, 0,184, 3, 2, 0,185, 3, 2, 0,245, 2, 2, 0,186, 3, - 2, 0,187, 3, 2, 0,188, 3, 2, 0,189, 3, 2, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, 7, 0,194, 3, - 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, 7, 0,198, 3, 7, 0,199, 3, 7, 0,200, 3, 7, 0,201, 3, 7, 0,202, 3, - 7, 0,203, 3, 7, 0,204, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 37, 0, 7, 0,207, 3, 7, 0,208, 3, 7, 0,209, 3, - 7, 0,210, 3, 7, 0,211, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0,214, 3, 7, 0,215, 3, 7, 0,216, 3, 52, 0,165, 0, -168, 0,217, 3, 7, 0,218, 3, 4, 0,194, 2,169, 0, 5, 0, 68, 0,242, 1, 7, 0,219, 3, 7, 0,220, 3, 2, 0, 19, 0, - 2, 0,221, 3,170, 0, 9, 0,170, 0, 0, 0,170, 0, 1, 0, 4, 0,222, 3, 4, 0,223, 3, 4, 0,224, 3, 4, 0, 19, 0, - 4, 0,225, 3, 9, 0,226, 3, 9, 0,227, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, 4, 0,228, 3, - 4, 0,229, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,232, 3, 4, 0,233, 3, 4, 0,223, 3, 4, 0,157, 2, 4, 0, 57, 0, - 0, 0,234, 3, 0, 0,235, 3, 0, 0,236, 3, 0, 0,237, 3, 12, 0,238, 3,171, 0,239, 3, 9, 0,240, 3,172, 0, 1, 0, - 7, 0, 44, 2,163, 0, 30, 0, 4, 0, 19, 0, 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 4, 0,244, 3, 4, 0,245, 3, - 4, 0,246, 3, 4, 0,247, 3, 7, 0,248, 3, 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, 7, 0,253, 3, - 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, 7, 0, 1, 4, 7, 0, 2, 4, 7, 0, 3, 4, 7, 0, 4, 4, 7, 0, 5, 4, - 7, 0, 6, 4, 7, 0, 7, 4, 7, 0, 8, 4, 7, 0, 9, 4, 4, 0, 10, 4, 4, 0, 11, 4, 7, 0, 12, 4, 7, 0,134, 3, -165, 0, 50, 0, 4, 0,223, 3, 4, 0, 13, 4,173, 0, 14, 4,174, 0, 15, 4, 0, 0, 37, 0, 0, 0, 16, 4, 2, 0, 17, 4, - 7, 0, 18, 4, 0, 0, 19, 4, 7, 0, 20, 4, 7, 0, 21, 4, 7, 0, 22, 4, 7, 0, 23, 4, 7, 0, 24, 4, 7, 0, 25, 4, - 7, 0, 26, 4, 7, 0, 27, 4, 7, 0, 28, 4, 2, 0, 29, 4, 0, 0, 30, 4, 2, 0, 31, 4, 7, 0, 32, 4, 7, 0, 33, 4, - 0, 0, 34, 4, 4, 0,126, 0, 4, 0, 35, 4, 4, 0, 36, 4, 2, 0, 37, 4, 2, 0, 38, 4,172, 0, 39, 4, 4, 0, 40, 4, - 4, 0, 82, 0, 7, 0, 41, 4, 7, 0, 42, 4, 7, 0, 43, 4, 7, 0, 44, 4, 2, 0, 45, 4, 2, 0, 46, 4, 2, 0, 47, 4, - 2, 0, 48, 4, 2, 0, 49, 4, 2, 0, 50, 4, 2, 0, 51, 4, 2, 0, 52, 4,175, 0, 53, 4, 7, 0, 54, 4, 7, 0, 55, 4, -138, 0, 56, 4, 12, 0, 5, 3,169, 0, 57, 4,153, 0, 49, 0,152, 0, 58, 4, 2, 0, 17, 0, 2, 0, 59, 4, 2, 0, 60, 4, - 2, 0, 61, 4, 7, 0, 62, 4, 2, 0, 63, 4, 2, 0, 64, 4, 7, 0, 65, 4, 2, 0, 66, 4, 2, 0, 67, 4, 7, 0, 68, 4, - 7, 0, 69, 4, 7, 0, 70, 4, 7, 0, 71, 4, 7, 0, 72, 4, 7, 0, 73, 4, 4, 0, 74, 4, 7, 0, 75, 4, 7, 0, 76, 4, - 7, 0, 77, 4, 81, 0, 78, 4, 81, 0, 79, 4, 81, 0, 80, 4, 0, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, 36, 0, 80, 0, - 2, 0, 84, 4, 0, 0, 85, 4, 0, 0, 86, 4, 7, 0, 87, 4, 4, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, 4, 0, 91, 4, - 4, 0, 19, 0, 7, 0, 92, 4, 7, 0, 93, 4, 7, 0, 94, 4, 85, 0, 95, 4, 7, 0, 96, 4, 7, 0, 97, 4, 7, 0, 98, 4, - 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 4, 0,103, 4,176, 0, 73, 0, 27, 0, 31, 0, 39, 0, 75, 0, - 2, 0,175, 0, 2, 0, 71, 1, 2, 0,105, 1, 2, 0,104, 4, 7, 0,105, 4, 7, 0,106, 4, 7, 0,107, 4, 7, 0,108, 4, - 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,163, 1, 7, 0,165, 1, 7, 0,164, 1, 7, 0,113, 4, - 4, 0,114, 4, 7, 0,115, 4, 7, 0,116, 4, 7, 0,117, 4, 7, 0,118, 4, 7, 0,119, 4, 7, 0,120, 4, 7, 0,121, 4, - 2, 0,122, 4, 2, 0, 70, 1, 2, 0,123, 4, 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4, - 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, 7, 0,132, 4, 7, 0,133, 4, 7, 0,134, 4, 7, 0,135, 4, 7, 0,136, 4, - 7, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, 7, 0,140, 4, 2, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, 2, 0,144, 4, - 7, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, 7, 0,148, 4, 2, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, 2, 0,152, 4, - 7, 0,153, 4, 7, 0,154, 4, 7, 0,155, 4, 7, 0,156, 4, 2, 0,157, 4, 2, 0,158, 4, 2, 0,159, 4, 2, 0, 19, 0, - 7, 0,160, 4, 7, 0,161, 4, 36, 0, 80, 0, 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0,177, 0, 8, 0, -177, 0, 0, 0,177, 0, 1, 0, 4, 0,112, 3, 4, 0,162, 4, 4, 0, 19, 0, 2, 0,163, 4, 2, 0,164, 4, 32, 0,164, 0, -178, 0, 13, 0, 9, 0,165, 4, 9, 0,166, 4, 4, 0,167, 4, 4, 0,168, 4, 4, 0,169, 4, 4, 0,170, 4, 4, 0,171, 4, - 4, 0,172, 4, 4, 0,173, 4, 4, 0,174, 4, 4, 0,175, 4, 4, 0, 37, 0, 0, 0,176, 4,179, 0, 5, 0, 9, 0,177, 4, - 9, 0,178, 4, 4, 0,179, 4, 4, 0, 70, 0, 0, 0,180, 4,180, 0, 15, 0, 4, 0, 17, 0, 4, 0,181, 4, 4, 0,182, 4, - 4, 0,183, 4, 4, 0,184, 4, 4, 0,185, 4, 7, 0,186, 4, 4, 0,187, 4, 4, 0, 90, 0, 4, 0,188, 4, 4, 0,189, 4, - 4, 0,190, 4, 4, 0,191, 4, 4, 0,192, 4, 26, 0, 30, 0,181, 0, 7, 0, 4, 0,193, 4, 7, 0,194, 4, 7, 0,195, 4, - 7, 0,196, 4, 4, 0,197, 4, 2, 0, 19, 0, 2, 0, 37, 0,182, 0, 11, 0,182, 0, 0, 0,182, 0, 1, 0, 0, 0, 20, 0, - 67, 0,198, 4, 68, 0,199, 4, 4, 0,112, 3, 4, 0,200, 4, 4, 0,201, 4, 4, 0, 37, 0, 4, 0,202, 4, 4, 0,203, 4, -183, 0,134, 0,178, 0,204, 4,179, 0,205, 4,180, 0,206, 4, 4, 0, 18, 3, 4, 0,126, 0, 4, 0, 35, 4, 4, 0,207, 4, - 4, 0,208, 4, 4, 0,209, 4, 4, 0,210, 4, 2, 0, 19, 0, 2, 0,211, 4, 7, 0,102, 2, 7, 0,212, 4, 7, 0,213, 4, - 7, 0,214, 4, 7, 0,215, 4, 7, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, 2, 0,220, 4, 2, 0,246, 0, - 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0, 92, 1, 2, 0,106, 0, 2, 0,226, 4, - 2, 0,227, 4, 2, 0,228, 4, 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 2, 0,232, 4, 2, 0,233, 4, 2, 0,234, 4, - 2, 0, 93, 1, 2, 0,235, 4, 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 4, 0,239, 4, 4, 0, 70, 1, 4, 0,240, 4, - 2, 0,241, 4, 2, 0,242, 4, 2, 0,243, 4, 2, 0,122, 1, 2, 0,244, 4, 2, 0,245, 4, 2, 0,246, 4, 2, 0,247, 4, - 24, 0,248, 4, 24, 0,249, 4, 23, 0,250, 4, 12, 0,251, 4, 2, 0,252, 4, 2, 0, 37, 0, 7, 0,253, 4, 7, 0,254, 4, - 7, 0,255, 4, 7, 0, 0, 5, 4, 0, 1, 5, 7, 0, 2, 5, 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, 2, 0, 6, 5, - 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, 2, 0, 11, 5, 7, 0, 12, 5, 7, 0, 13, 5, 7, 0, 14, 5, - 2, 0, 15, 5, 2, 0, 16, 5, 2, 0, 17, 5, 2, 0, 18, 5, 2, 0, 19, 5, 2, 0, 20, 5, 2, 0, 21, 5, 2, 0, 22, 5, - 2, 0, 23, 5, 2, 0, 24, 5, 4, 0, 25, 5, 4, 0, 26, 5, 4, 0, 27, 5, 4, 0, 28, 5, 4, 0, 29, 5, 7, 0, 30, 5, - 4, 0, 31, 5, 4, 0, 32, 5, 4, 0, 33, 5, 4, 0, 34, 5, 7, 0, 35, 5, 7, 0, 36, 5, 7, 0, 37, 5, 7, 0, 38, 5, - 7, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, 7, 0, 42, 5, 7, 0, 43, 5, 0, 0, 44, 5, 0, 0, 45, 5, 4, 0, 46, 5, - 2, 0, 47, 5, 2, 0,239, 1, 0, 0, 48, 5, 7, 0, 49, 5, 7, 0, 50, 5, 4, 0, 51, 5, 4, 0, 52, 5, 7, 0, 53, 5, - 7, 0, 54, 5, 2, 0, 55, 5, 2, 0, 56, 5, 7, 0, 57, 5, 2, 0, 58, 5, 2, 0, 59, 5, 4, 0, 60, 5, 2, 0, 61, 5, - 2, 0, 62, 5, 2, 0, 63, 5, 2, 0, 64, 5, 7, 0, 65, 5, 7, 0, 70, 0, 42, 0, 66, 5, 0, 0, 67, 5,184, 0, 9, 0, -184, 0, 0, 0,184, 0, 1, 0, 0, 0, 20, 0, 2, 0, 68, 5, 2, 0, 69, 5, 2, 0, 70, 5, 2, 0, 43, 0, 7, 0, 71, 5, - 7, 0, 70, 0,185, 0, 7, 0, 2, 0,211, 2, 2, 0, 70, 1, 2, 0,109, 0, 2, 0, 72, 5, 7, 0, 73, 5, 7, 0, 70, 0, - 42, 0, 74, 5,186, 0, 5, 0, 7, 0, 75, 5, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 70, 0, 0, 0,239, 1,187, 0, 26, 0, - 7, 0,120, 4, 7, 0,121, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 76, 5, 2, 0,137, 1, 2, 0,123, 4, 2, 0,124, 4, - 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4,186, 0, 77, 5, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, - 2, 0,220, 4, 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4,185, 0, 78, 5, 2, 0, 79, 5, 2, 0,224, 4, - 2, 0,227, 4, 2, 0,228, 4,188, 0, 5, 0,188, 0, 0, 0,188, 0, 1, 0, 4, 0,222, 3, 0, 0,234, 3, 4, 0, 19, 0, -189, 0, 6, 0,190, 0, 80, 5, 4, 0, 81, 5, 4, 0, 82, 5, 9, 0, 83, 5, 0, 0, 84, 5, 4, 0, 37, 0,191, 0, 6, 0, -189, 0, 85, 5, 2, 0, 19, 0, 2, 0, 86, 5, 2, 0, 87, 5, 2, 0, 88, 5, 9, 0, 89, 5,192, 0, 4, 0, 2, 0,106, 0, - 2, 0,222, 2, 2, 0,228, 3, 2, 0, 90, 5,193, 0, 14, 0, 2, 0, 19, 0, 2, 0, 91, 5, 2, 0, 92, 5, 2, 0, 93, 5, -192, 0, 94, 5, 9, 0, 89, 5, 7, 0, 95, 5, 7, 0, 57, 0, 4, 0, 96, 5, 4, 0, 97, 5, 4, 0, 98, 5, 4, 0, 99, 5, - 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5,195, 0, 6, 0, -189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0,189, 0, 85, 5, - 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, 9, 0, 89, 5, -197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, 7, 0,114, 5, - 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, 2, 0, 96, 5, - 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, 2, 0,128, 5, - 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5,193, 0,136, 5, - 7, 0,137, 5, 7, 0,138, 5, 7, 0,139, 5, 2, 0,140, 5, 2, 0,141, 5, 0, 0,142, 5, 0, 0,143, 5, 0, 0,144, 5, - 0, 0,145, 5, 0, 0,146, 5, 0, 0,147, 5, 2, 0,148, 5, 7, 0,149, 5, 7, 0,150, 5, 7, 0,151, 5, 7, 0,152, 5, - 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, 0, 0,160, 5, - 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, 0, 0,168, 5, - 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, 2, 0,176, 5, - 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, 4, 0,183, 5, - 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, 7, 0,186, 5, - 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, 47, 0,238, 0, - 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, 4, 0,112, 3, - 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0,181, 0,200, 5, - 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, 2, 0,206, 5, - 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3,200, 0,212, 5, -204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5,205, 0, 35, 0, - 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, 7, 0,221, 5, - 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, 2, 0,227, 5, - 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, 72, 0,234, 5, -162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, 7, 0,241, 5, - 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, 2, 0,232, 5, - 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, 2, 0,253, 5, - 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, 7, 0,112, 0, - 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, 2, 0, 6, 6, - 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, 2, 0, 13, 6, - 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, 0, 0, 20, 6, - 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, 23, 0, 24, 6, - 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, 2, 0, 32, 6, - 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0,255, 5, - 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, 2, 0, 47, 6, - 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, 2, 0, 52, 6, - 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, 27, 0, 56, 6, -219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, - 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, 7, 0, 60, 6, -162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, 2, 0, 71, 6, - 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0, -220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, 2, 0, 81, 6, - 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, 4, 0, 88, 6, - 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, 2, 0,133, 0, - 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, 2, 0,239, 1, - 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, 7, 0,122, 1, - 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6,230, 0, 27, 0, -212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, 4, 0,104, 6, - 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, 4, 0,110, 6, - 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, 4, 0,118, 6, - 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, 9, 0,124, 6, - 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, 4, 0, 43, 0, - 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,213, 0, 44, 6, - 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, - 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, 9, 0,135, 6, - 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, 2, 0,140, 6, - 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, - 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, 0, 0, 62, 6, - 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, 4, 0,141, 6, - 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, 7, 0,134, 6, - 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, 2, 0,150, 6, - 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, 57, 0,157, 6, -237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, 4, 0, 17, 0, -238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 4, 0, 17, 0, - 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, 0, 0,164, 6, - 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, 2, 0,169, 6, - 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, 7, 0,175, 6, - 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6,241, 0,179, 6, -241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, 2, 0,187, 6, - 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, 0, 0,194, 6, - 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0,244, 0, 8, 0, - 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, 7, 0, 37, 0, -245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6,243, 0,213, 6, -243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6,243, 0,221, 6, -244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, 0, 0,227, 6, - 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, 0, 0,235, 6, - 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, 0, 0,243, 6, - 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, 0, 0,251, 6, - 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, 0, 0, 3, 7, - 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, 0, 0, 11, 7, - 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, 0, 0, 19, 7, - 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, 0, 0, 27, 7, - 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, 0, 0, 35, 7, - 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, 2, 0, 37, 0, -248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7,246, 0, 41, 7, -246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7,246, 0, 49, 7, -246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, 4, 0, 57, 7, - 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2,250, 0, 73, 0, - 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, 0, 0, 65, 7, - 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, 4, 0, 72, 7, - 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, 4, 0, 80, 7, - 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, 12, 0, 87, 7, - 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, - 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, 2, 0,103, 7, - 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, 2, 0,111, 7, - 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, 2, 0,119, 7, - 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, 2, 0,141, 5, - 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, 46, 0,134, 0, - 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, 2, 0,137, 7, - 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7,251, 0, 5, 0, -251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0,252, 0, 1, 0, -251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0,253, 0, 1, 0, -254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, 2, 0,153, 7, - 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, 4, 0,159, 7, -253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, 0, 1, 22, 0, - 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, 23, 0, 52, 0, - 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, 2, 0,159, 6, - 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, 2, 1, 0, 0, - 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, 2, 0,178, 7, - 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, 12, 0,180, 7, - 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, 2, 0,186, 7, - 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, 4, 0,192, 7, - 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, 6, 1,197, 7, - 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, 4, 0,109, 6, - 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, 7, 0,206, 7, - 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, 49, 0,137, 0, - 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, 4, 0, 23, 0, - 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, 4, 0,214, 7, - 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, 57, 0,221, 7, - 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, 9, 0,228, 0, - 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, 13, 1, 0, 0, - 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, 4, 0, 88, 0, - 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, 4, 0,230, 7, - 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, 49, 0,137, 0, - 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, 14, 1,240, 7, - 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, 4, 0,248, 7, - 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7,201, 0, 6, 0, - 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, 7, 0, 2, 8, - 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, 7, 0, 8, 8, - 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, 7, 0, 15, 8, - 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, 20, 1, 2, 0, - 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, 4, 0, 24, 8, - 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 23, 1, 8, 0, - 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, 7, 0,126, 0, - 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 2, 0, 29, 4, - 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, 7, 0, 29, 8, - 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, 7, 0, 35, 8, - 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, 2, 0, 42, 8, - 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, 2, 0, 26, 2, - 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, 26, 1, 0, 0, - 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, - 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2,227, 0, 5, 0, - 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, 4, 0, 55, 8, -227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 22, 0, - 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, 29, 1, 4, 0, - 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, 7, 0, 77, 1, - 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, 0, 0, 64, 8, - 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, 4, 0, 17, 0, - 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, 35, 1, 6, 0, - 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, 0, 0, 20, 0, - 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, 4, 0, 67, 8, - 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, 4, 0, 73, 8, - 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, 0, 0, 77, 8, - 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, 2, 0, 80, 8, - 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, 32, 0, 45, 0, - 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 0, 85, 8, - 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, 4, 0, 91, 8, - 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, 42, 1, 18, 0, - 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, 2, 0, 79, 8, - 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, 2, 0, 15, 0, - 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0,160, 0,100, 8, - 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, 2, 0,103, 8, - 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, 4, 0, 89, 0, - 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, 2, 0,112, 8, - 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, 0, 0, 20, 0, - 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, 2, 0, 19, 0, - 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, 0, 0, 65, 8, - 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, 7, 0,120, 8, - 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, 55, 1, 10, 0, - 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, 2, 0, 64, 0, - 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, 7, 0,236, 2, - 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0,244, 2, - 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, 0, 0,134, 8, - 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, 2, 0, 64, 0, - 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, 7, 0,138, 8, - 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, 2, 0, 43, 0, - 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0,143, 8, - 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0,145, 8, - 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, 65, 1, 2, 0, - 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, 32, 0, 51, 3, - 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 79, 8, - 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, 7, 0,150, 8, - 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, 15, 1, 12, 0, - 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,156, 8, - 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, 7, 0,161, 8, - 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, 0, 0,222, 0, - 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, 7, 0,159, 8, - 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, 2, 0,107, 8, - 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, 69, 1, 1, 0, - 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, 4, 0,131, 0, - 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, 7, 0,176, 8, - 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, 7, 0, 77, 1, - 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, 7, 0,188, 8, - 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, 12, 0,190, 8, - 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, 2, 0,193, 8, - 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, 4, 0,201, 8, - 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, 4, 0,192, 2, - 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, 4, 0,201, 8, - 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, 0, 0, 20, 0, - 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, 4, 0,200, 8, - 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, 9, 0,217, 8, - 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, 2, 0, 37, 0, - 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, 7, 0,225, 8, - 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, 2, 0, 19, 0, - 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, 9, 0,237, 8, - 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, 2, 0,240, 8, - 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, 7, 0,247, 8, - 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3,247, 0,250, 8, -160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, 4, 0,253, 8, -217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, 0, 0, 70, 1, - 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, 80, 1, 8, 0, - 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, 4, 0, 4, 9, - 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, 82, 1, 0, 0, - 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, 7, 0, 8, 9, - 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, 83, 1, 1, 0, - 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, 84, 1, 7, 0, - 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, 85, 1, 15, 0, - 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, 0, 0, 22, 9, - 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, 86, 1, 6, 0, - 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, 32, 0, 12, 9, - 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, - 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, 2, 0, 43, 0, - 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, - 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, 7, 0,127, 8, - 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, 0, 0,251, 2, - 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, 32, 0, 12, 9, - 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, 32, 0,213, 8, - 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, 7, 0, 43, 9, - 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, 32, 0, 12, 9, - 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, 0, 0,251, 2, - 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, 7, 0, 51, 9, - 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, - 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, - 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, - 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, 32, 0, 12, 9, - 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, 32, 0, 51, 3, - 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, 2, 0, 17, 0, - 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0,105, 1, 22, 0, -105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0,160, 0,100, 8, - 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0,237, 2, - 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, 7, 0, 44, 2, - 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9,107, 1, 18, 0, -107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 76, 9, - 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, 4, 0, 83, 9, -107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, 0, 0, 87, 9, - 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, 2, 0,199, 7, - 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, 7, 0, 91, 9, - 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, 24, 0, 99, 9, - 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0,108, 1, 1, 0, -109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, 27, 0, 31, 0, - 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, 4, 0,112, 9, - 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, 4, 0,120, 9, - 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, 0, 0,124, 9, - 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, 2, 0,127, 9, - 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, 2, 0,131, 9, - 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, 7, 0,109, 0, - 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, 7, 0,140, 9, - 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, 0, 0, 6, 2, - 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, 7, 0,143, 9, - 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, 2, 0,149, 9, - 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, 0, 0,166, 0, - 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, 0, 0,156, 9, - 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, 9, 0,161, 9, - 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, 0, 0,106, 0, - 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, 7, 0,125, 0, - 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, 2, 0,170, 9, - 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, - 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, 7, 0,175, 9, - 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, 4, 0, 64, 0, - 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9,132, 1, 4, 0, - 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, 64, 0,178, 9, - 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, 7, 0,192, 9, - 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, 4, 0, 17, 0, - 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, 0, 0, 20, 0, - 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, 9, 0,203, 9, -134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, 7, 0,153, 2, - 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, 7, 0,186, 5, - 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, 7, 0,213, 9, - 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, 2, 0, 19, 0, - 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, 2, 0,205, 2, - 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8,136, 1,218, 9, - 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, 7, 0,214, 9, - 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, 39, 0, 75, 0, -143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, 2, 0,138, 3, - 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, 2, 0,223, 4, - 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, 2, 0, 45, 8, - 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, 2, 0,243, 9, - 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, 7, 0,251, 9, - 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, 7, 0,255, 9, - 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, 7, 0, 2, 10, - 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, 7, 0, 9, 10, - 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, - 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, 7, 0, 23, 10, - 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, 7, 0, 27, 10, - 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, 7, 0, 35, 10, - 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, 32, 0, 42, 10, - 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,142, 1, 45, 10, -141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, 12, 0, 50, 10, -134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, 0, 0, 20, 0, - 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, 4, 0, 57, 10, - 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, 2, 0, 64, 10, - 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10,146, 1, 70, 10, - 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, 7, 0, 74, 10, - 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, 7, 0, 79, 10, - 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, 7, 0, 24, 4, - 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, 2, 0, 90, 10, - 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, 7, 0, 95, 10, - 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, 7, 0, 5, 0, - 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, 4, 0,253, 0, - 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, 4, 0, 19, 0, -151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, 2, 0,105, 10, - 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, 2, 0,108, 10, - 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0,110, 10, - 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0,154, 1, 18, 0, - 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, 12, 0,120, 10, - 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, 4, 0, 70, 0, - 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, 4, 0, 37, 0, -215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, 2, 0,135, 10, - 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10,158, 1,140, 10, -159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, 12, 0,146, 10, - 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, 2, 0, 17, 0, - 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, 2, 0,155, 10, - 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, 2, 0,158, 10, - 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0,156, 1, 1, 0, - 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0,223, 0, 1, 0, - 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10,223, 0,167, 10, - 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, - 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, 2, 0,150, 10, - 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, 2, 0,175, 10, - 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, 0, 0,234, 3, - 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, 4, 0, 70, 1, - 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, 4, 0, 19, 0, -167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0,167, 1, 2, 0, - 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, 2, 0,188, 10, - 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, 4, 0, 37, 0, -172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10,173, 1, 9, 0, -173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, 4, 0, 37, 0, - 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, 4, 0, 19, 0, -175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, 78, 1, 3, 9, -174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, 2, 0, 16, 1, - 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10,178, 1, 4, 0, -178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, 12, 0,204, 10, -160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, 7, 0, 88, 0, - 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 2, 0,208, 10, - 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0,180, 1, 1, 0, - 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, 27, 0,133, 6, - 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10,182, 1, 7, 0, -182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10,183, 1, 5, 0, -183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3,160, 0,216, 10, -178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, 2, 0,221, 10, - 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0,185, 1, 1, 0, - 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, 7, 0,226, 10, - 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0,185, 1,224, 10, - 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10,189, 1, 5, 0, -185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, 7, 0,169, 8, - 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0,191, 1, 0, 0, -191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, 4, 0,238, 10, - 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, 4, 0,240, 10, - 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, 7, 0,244, 10, - 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, 7, 0,251, 10, - 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11,192, 1, 2, 11, - 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, 7, 0, 8, 11, - 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, 7, 0, 14, 11, - 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, 2, 0, 20, 11, - 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11,169, 0, 57, 4, -123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, 2, 0, 29, 11, - 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3,142, 0, 17, 3, - 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, 2, 0, 17, 0, - 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 78, 65, 49,116,227, 0, 0, 32, 30, 54, 10, 0, 0, 0, 0, 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, + 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, 97, 0, 42,102,105,114,115,116, 0, 42,108, 97, +115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, 0,121,109,105,110, 0,121,109, 97,120, 0, 42, +112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97,108, 50, 0,116,121,112,101, 0,115,117, 98,116, +121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97,118,101,100, 0,100, 97,116, 97, 0,108,101,110, + 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117, +115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101,115, 0,105,100, 0, 42,105,100, 98,108,111, 99, +107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, 93, 0,102,105,108,101,110, 97,109,101, 91, 50, + 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0,119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, + 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42,114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, + 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, + 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0,118, 97,114,116,121,112,101, 0,116,111,116,118, +101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105,116,109, 97,115,107, 0,115,108,105,100,101, 95, +109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, 0, 42,100,114,105,118,101,114, 0, 99,117,114, +118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105,112,111, 0,112,111,115, 0,114,101,108, 97,116, +105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101,105,103,104,116,115, 0,118,103,114,111,117,112, + 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101,114,109, 97,120, 0, 42, 97,100,116, 0, 42,114, +101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108,101,109,115,105,122,101, 0, 98,108,111, 99,107, + 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115,108,117,114,112,104, 0, 42,108,105,110,101, 0, + 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0,115,116, 97,114,116, 0,101,110,100, 0,102,108, + 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, 42,110, 97,109,101, 0,110,108,105,110,101,115, + 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99,117,114, 99, 0,115,101,108, 99, 0,109, 97,114, +107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95,112,111,115, 0,117,110,100,111, 95,108,101,110, + 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122,101, 0,115,101,101,107, 0,112, 97,115,115,101, +112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112,115,116, 97, 0, 99,108,105,112,101,110,100, 0, +108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97,119,115,105,122,101, 0,115,104,105,102,116,120, + 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, 70, 95, 97,112,101,114,116,117,114,101, 0, 89, + 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42, +100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101,115, 0,111,102,102,115,101,116, 0,115,102,114, + 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117,108,116,105, 95,105,110,100,101,120, 0,108, 97, +121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101,110,101, 0,105, 98,117,102,115, 0, 42,103,112, +117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115,111,117,114, 99,101, 0,108, 97,115,116,102,114, + 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110,100, 0,120,114,101,112, 0,121,114,101,112, 0, +116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, 0, 42,114,101,112, 98,105,110,100, 0, 42,112, + 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42,114,101,110,100,101,114, 95,116,101,120,116, 0, +108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, 97,110,105,109,115,112,101,101,100, 0,103,101, +110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97,115,112,120, 0, 97,115,112,121, 0,116,101,120, + 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108,101,110,100,116,121,112,101, 0, 42,111, 98,106, +101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0,112,114,111,106,120, 0,112,114,111,106,121, 0, +112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, 0,115,105,122,101, 91, 51, 93, 0,114,111,116, + 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0,112,109, 97,112,116,111, 0,112,109, 97,112,116, +111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, 99,104, 95,111,117,116,112,117,116, 0, 98,114, +117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0,114, 0,103, 0, 98, 0,107, 0,100,101,102, 95, +118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111,114,102, 97, 99, 0,100,105,115,112,102, 97, 99, + 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0,109,105,114,114,102, 97, 99, 0, 97,108,112,104, + 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, 0,101,109,105,116,102, 97, 99, 0,104, 97,114, +100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110,115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, + 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, 97, 99, 0, 99,111,108,116,114, 97,110,115,102, + 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, 99, 0,114,101,102,108,102, 97, 99, 0,116,105, +109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109,112,102, 97, 99, 0,107,105,110,107,102, 97, 99, + 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0,108,105,102,101,102, 97, 99, 0,115,105,122,101, +102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0,115,104, 97,100,111,119,102, 97, 99, 0,122,101, +110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108,101,110,100,102, 97, 99, 0,110, 97,109,101, 91, + 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, 42,115,116,110, 97,109,101,115, 0,115,116,121, +112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101,115,117,108,116, 0, 42, 99,102,114, 97, 0,100, + 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42,105,110,115,116, 97,110, 99,101, 95,105,110,105, +116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118,101,114,115,105,111,110, 0, 97, 0,105,112,111, +116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98, +105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101,119,115, 99, 97,108,101, 0,110,111,116,108, 97, +121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97,108, 99, 0,108, 97,115,116,115,105,122,101, 0, +102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, 95,115,111,102,116,110,101,115,115, 0,114, 97, +100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111,116,112,111,105,110,116,115, 0,112,100,112, 97, +100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104, +101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112,111,105,110,116, 95,116,114,101,101, 0, 42,112, +111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, 0,110,111,105,115,101, 95,100,101,112,116,104, + 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105,115,101, 95, 98, 97,115,105,115, 0,112,100,112, + 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101,101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, + 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116,121,112,101, 0,102,105,108,101, 95,102,111,114, +109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105,112,108,105,101,114, 0,115,116,105,108,108, 95, +102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0, +110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105,103,104,116, 0, 99,111,110,116,114, 97,115,116, + 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116,101,114,115,105,122,101, 0,109,103, 95, 72, 0, +109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, 97,118,101,115, 0,109,103, 95,111,102,102,115, +101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117,110,116, 0,110,115, 95,111,117,116,115, 99, 97, +108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, 0,118,110, 95,119, 52, 0,118,110, 95,109,101, +120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121,112,101, 0,110,111,105,115,101,100,101,112,116, +104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115,105,115, 0,110,111,105,115,101, 98, 97,115,105, +115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, 99,114,111,112,121,109,105,110, 0, 99,114,111, +112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105,108,116,101,114, 0, 97,102,109, 97,120, 0,120, +114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107,101,114,100,105,115,116, 0,110, 97, 98,108, 97, + 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108,117,103,105,110, 0, 42,101,110,118, 0, 42,112, +100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97, +116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, 93, 0,109,111,100,101, 0,116,111,116,101,120, + 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115,104,100,119,112, 97,100, 0,101,110,101,114,103, +121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, 98,108,101,110,100, 0,104, 97,105,110,116, 0, + 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102,102, 0,115,104, 97,100,115,112,111,116,115,105, +122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115,115,116,104,114,101,115,104, 0,112, 97,100, 53, + 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102,102,101,114,115, 0,102,105,108,116,101,114,116, +121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0,114, 97,121, 95,115, 97,109,112, 0,114, 97,121, + 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, 95,115, 97,109,112, 95,116,121,112,101, 0, 97, +114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, 97,114,101, 97, 95,115,105,122,101,121, 0, 97, +114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0,114, 97,121, 95,115, 97,109,112, 95, +109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97,108,111,115,116,101,112, 0,115,117,110, 95,101, +102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116,121,112,101, 0,104,111,114,105,122,111,110, 95, + 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117,110, 95, 98,114,105,103,104,116,110,101,115,115, + 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101,114,101,100, 95,108,105,103,104,116, 0,115,117, +110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98,105,100,105,116,121, 0, 97,116,109, 95,105,110, +115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,101,120,116,105,110, 99,116,105,111,110, + 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, 95,102, 97, 99,116,111,114, 0,115,107,121, 98, +108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, 0,115,107,121, 95, 99,111,108,111,114,115,112, + 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111,110,115, 0, 89, 70, 95,110,117,109,115,101, 97, +114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115,101,113,109, 99, 0, 89, 70, 95, 98,117,102,115, +105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, + 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95,103,108,111,119,111,102,115, 0, 89, 70, 95,103, +108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101,120, 91, 49, 56, 93, 0,112,114, 95,116,101,120, +116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0,101,109,105,115,115,105,111,110, 0,115, 99, 97, +116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101,109,105,115,115,105,111,110, 95, 99,111,108, 91, + 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,114,101,102,108,101, 99,116,105,111, +110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97,108,101, 0,100,101,112,116,104, 95, 99,117,116, +111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105,122,101, 95,116,121,112,101, 0,115,104, 97,100, +101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, 99, 97, 99,104,101, 95,114,101,115,111,108,117, +116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102,102, 0,109,115, 95,105,110,116,101,110,115,105, +116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, 95,116,121,112,101, 0,115,112,101, 99,114, 0, +115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114,103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, + 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97,110,103, 0,115,112,101, 99,116,114, 97, 0,114, + 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0,115,112,101, 99, 0,122,111,102,102,115, 0, 97, +100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0,102,114,101,115,110,101,108, 95,109,105,114, 0, +102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101,108, 95,116,114, 97, 0,102,114,101,115,110,101, +108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105,109,105,116, 0,116,120, 95,102, 97,108,108,111, +102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112,116,104, 95,116,114, 97, 0,104, 97,114, 0,115, +101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, 0,103,108,111,115,115, 95,116,114, 97, 0,115, + 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103,108,111,115,115, 95,116,114, 97, 0, 97,100, 97, +112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,116,114, 97, 0, 97, +110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95,109,105,114, 0,102, 97,100,101,116,111, 95,109, +105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, 0,102,108, 97,114,101, 99, 0,115,116, 97,114, + 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, 0,102,108, 97,114,101,115,105,122,101, 0,115, +117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116,114, 97,110,100, 95,115,116, 97, 0,115,116,114, + 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0,115,116,114, 97,110,100, 95,115,117,114,102,110, +111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, 95,119,105,100,116,104,102, 97,100,101, 0,115, +116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, 97,115, 0,108, 98,105, 97,115, 0,115,104, 97, +100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101,108, 0,112,114, 95,116,121,112,101, 0,112,114, + 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97,103, 0,100,105,102,102, 95,115,104, 97,100,101, +114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110,101,115,115, 0,114,101,102,114, 97, 99, 0,112, + 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42, +114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, 0,114, 97,109,112,105,110, 95,115,112,101, 99, + 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98,108,101,110,100, 95,115,112,101, 99, 0,114, 97, +109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, + 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111,110, 0,102,104, 0,114,101,102,108,101, 99,116, + 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97,109,111,100,101, 0,115,115,115, 95,114, 97,100, +105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115,115, 95,101,114,114,111,114, 0,115,115,115, 95, +115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111,108,102, 97, 99, 0,115,115,115, 95,116,101,120, +102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, 99,107, 0,115,115,115, 95,102,108, 97,103, 0, +115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120,116,117,114,101,100, 0,103,112,117,109, 97,116, +101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0,105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0, +106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120, +112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, + 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101,108,101,109,115, 0, 42, 42,109, 97,116, 0,102, +108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, 0,114,101,110,100,101,114,115,105,122,101, 0, +116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0, +119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, + 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, 0,114,101,115,111,108,117, 0,114,101,115,111, +108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97,103,117, 0,102,108, 97,103,118, 0, 42,107,110, +111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110,116,101,114,112, 0,114, 97,100,105,117,115, 95, +105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0,104, 0,110,117,114, 98, 0, 42,101,100,105,116, +110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, 98,106, 0, 42,116,101,120,116,111,110, 99,117, +114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100,114, 97,119,102,108, 97,103, 0,116,119,105,115, +116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95,115,109,111,111,116,104, 0,112, 97,116,104,108, +101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120,116, 49, 0,101,120,116, 50, 0,114,101,115,111, +108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99,116,110,117, 0, 42,108, 97,115,116,115,101,108, + 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, 0,108,105,110,101,100,105,115,116, 0,115,104, +101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0,117,108,112,111,115, 0,117,108,104,101,105,103, +104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, 0, 42,115,116,114, 0, 42,115,101,108, 98,111, +120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, + 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111,110,116, 98,105, 0,115,101,112, 99,104, 97,114, + 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, 0, 42,116, 98, 0,115,101,108,115,116, 97,114, +116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117,114,105,110,102,111, 0,101,102,102,101, 99,116, + 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, 99,101, 0, 42,109,118,101,114,116, 0, 42,109, +101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109,115,116,105, 99,107,121, 0, 42,116,101,120, 99, +111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, 95,109,101,115,104, 0,118,100, 97,116, 97, 0, +101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0,116,111,116,102, 97, 99,101, 0,116,111,116,115, +101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102,108, 97,103, 0, 99,117, 98,101,109, 97,112,115, +105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105,118, 0,115,117, 98,100,105,118,114, 0,115,117, + 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116,112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, + 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, 0,117,110,119,114, 97,112, 0,118, 49, 0,118, + 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115,101, 0, 98,119,101,105,103,104,116, 0,100,101, +102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99,111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117, +118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100, +105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0,109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, + 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, 0, 42,118,101,114,116,115, 0,108,101,118,101, +108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101,110,116, 0,110,101,119,108,118,108, 0,101,100, +103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108,118,108, 0,117,115,101, 95, 99,111,108, 0, 42, +101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 0, 42,118,101,114,116, 95,109, + 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, 99,101,115, 0, 42,111,108,100, 95,101,100,103, +101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115,117, 98,100,105,118, 84,121,112,101, 0,114,101, +110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, 42,109, 67, 97, 99,104,101, 0,100,101,102, 97, +120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97,110,100,111,109,105,122,101, 0,115,101,101,100, + 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117, +114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102,102,115,101,116, 91, 51, 93, 0,115, 99, 97,108, +101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95,116,121,112,101, 0,111,102,102,115,101,116, 95, +116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101,114, 97,110, 99,101, 0, 42,109,105,114,114,111, +114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108,117,101, 0,114,101,115, 0,118, 97,108, 95,102, +108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97,103,115, 0, 98,101,118,101,108, 95, 97,110,103, +108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42,100,111,109, 97,105,110, 0, 42,102,108,111,119, + 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, 0,115,116,114,101,110,103,116,104, 0,100,105, +114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120,109, 97,112,112,105,110,103, 0, 42,109, 97,112, + 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, + 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, 0, 42,105,109, 97,103,101, 0,110,117,109, 95, +112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97,115,112,101, 99,116,121, 0,112,101,114, 99,101, +110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112,101, 97,116, 0, 42,111, 98,106,101, 99,116, 99, +101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0,104,101,105,103,104,116, 0,110, 97,114,114,111, +119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, 0,116,105,109,101,111,102,102,115, 0,108,105, +102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117,108,116,105, 0, 42,112,114,101,118, 67,111,115, + 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110,116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99, +101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105,110,100,101,120, 0,102,111,114, 99,101, 0, 42, + 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114,109,115, 0, 42, 99,111,108,108, 95,112, 97,114, +109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, 99,104,101,115, 0, 42,120, 0, 42,120,110,101, +119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101,119, 0, 42, 99,117,114,114,101,110,116, 95,120, + 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0,110,117,109,118,101,114,116,115, 0,110,117,109, +102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100,109, 0, 99,102,114, 97, 0,111,112,101,114, 97, +116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117,101,110, 99,101, 0,103,114,105,100,115,105,122, +101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103,104,116,115, 0, 42, 98,105,110,100, 99,111,115, + 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105,100, 0, 42,100,121,110,105,110,102,108,117,101, +110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, 0,100,121,110,103,114,105,100,115,105,122,101, + 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101,108,108,119,105,100,116,104, 0, 98,105,110,100, +109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0,116,111,116,100,109,101,100,103,101, 0,116,111, +116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111,110, 0,114, 97,110,100,111,109, 95,112,111,115, +105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, 0,112,114,111,116,101, 99,116, 0, 42,117,110, +100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95,116,111,116, 0,117,110,100,111, 95,115,105,103, +110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108,101, 0, 42,102,115,115, 0, 42,116, 97,114,103, +101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101, +101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104,114,105,110,107, 79,112,116,115, 0,112,114,111, +106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, 42,111,114,105,103,105,110, 0,102, 97, 99,116, +111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112,116,115, 0,112,110,116,115,119, 0,111,112,110, +116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121,112,101,117, 0,116,121,112,101,118, 0,116,121, +112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100,119, 0, 42,100,101,102, 0, 42,108, 97,116,116, +105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 42,101,100,105,116,108, 97,116,116, 0,118, +101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114,116,121,112,101, 0,112, 97,114, 49, 0,112, 97, +114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114, +111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114,111,120,121, 95,102,114,111,109, 0, 42, 97, 99, +116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, 42,103,112,100, 0, 99,111,110,115,116,114, 97, +105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0,109,111,100,105,102,105,101,114,115, 0,114,101, +115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, + 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0,100,114,111,116, 91, 51, 93, 0,100,113,117, 97, +116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, 65,120,105,115, 91, 51, 93, 0,114,111,116, 65, +110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116, +105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116,115, 0,116,114, 97,110,115,102,108, 97,103, 0, +112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97,103, 0,117,112,102,108, 97,103, 0,110,108, 97, +102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0,115, 99, 97,102,108, 97,103, 0,115, 99, 97,118, +105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112,111,110, 0,100,117,112,111,102,102, 0,100,117, +112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0,100, 97,109,112,105,110,103, 0,105,110,101,114, +116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112,105,110,103, 0,109, 97,114,103,105,110, 0,109, + 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110,116, 97, 99,116, 80,114,111, 99,101,115,115,105, +110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0,100,116, 0,100,116,120, 0,101,109,112,116,121, + 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109,112,116,121, 95,100,114, 97,119,115,105,122,101, + 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110,115,111,114,115, 0, 99,111,110,116,114,111,108, +108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122,101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0, +103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, 98,115,111,102,116, 0,115,111,102,116,102,108, + 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105,111,110, 91, 51, 93, 0, 99,111,110,115,116,114, + 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107,115, 0,112, 97,114,116,105, 99,108,101,115,121, +115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117,112, 0,102,108,117,105,100,115,105,109, 70,108, + 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112,101,110,114, 0,115,104, 97,112,101,102,108, 97, +103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, 42,102,108,117,105,100,115,105,109, 83,101,116, +116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, 0, 42,100,101,114,105,118,101,100, 70,105,110, + 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116,101, 0,105,110,105,116, 95,115,116, 97,116,101, + 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112,108,105,108,105,115,116, 0, 99,117,114,105,110, +100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110,111, 95,100,114, 97,119, 0, 97,110,105,109, 97, +116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, 51, 93, 0,100,101,102,108,101, 99,116, 0,102, +111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95,109,111,100,101, 0,107,105,110,107, 0,107,105, +110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110,103,116,104, 0,102, 95,100, 97,109,112, 0,102, + 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, 0,109, 97,120,100,105,115,116, 0,109,105,110, +100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97,100, 0,109,105,110,114, 97,100, 0,112,100,101, +102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100,101,102, 95,112,101,114,109, 0,112,100,101,102, + 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, 98,115,111,114,112,116,105,111,110, 0,112,100, +101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, 0,112,100,101,102, 95,115, 98,111,102,116, 0, + 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0,107,105,110,107, 95,102,114,101,113, 0,107,105, +110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114,101,101, 95,101,110,100, 0,116,101,120, 95,110, + 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101,105,103,104,116, 91, 49, 51, 93, 0,103,108,111, + 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, 97,109,101, 0,116,111,116,112,111,105,110,116, + 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97,114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, + 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, 97,109,101, 0,115,116, 97,114,116,102,114, 97, +109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109,101, 0,108, 97,115,116, 95,101,120, 97, 99,116, + 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, + 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, 0, 42,101,100,105,116, 0, 40, 42,102,114,101, +101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97,110,103, 83,116,105,102,102, 0,118,111,108,117, +109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, 97,116,105,111,110,115, 0,100,105,116,101,114, + 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, + 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, + 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, + 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, + 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103,115, 0,110,117,109, 99,108,117,115,116,101,114, +105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116,111,116,115,112,114,105,110,103, 0, 42, 98,112, +111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, 99,107, 0,109,115,103, 95,118, 97,108,117,101, + 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97,115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0, +109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112,104,121,115,105, 99,115, 95,115,112,101,101,100, + 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99,116, 0,109,105,110,103,111, 97,108, 0,109, 97, +120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114,111,117,112, 0,110, 97,109,101,100, 86, 71, 95, + 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101,115,115, 0,105,110,115,112,114,105,110,103, 0, +105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105,110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, + 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108,118,101,114,102,108, 97,103,115, 0, 42, 42,107, +101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111,110,100,115,112,114,105,110,103, 0, 99,111,108, + 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116,105,102,102, 0,115, 98, 99, 95,109,111,100,101, + 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, 97,120,108,111,111,112,115, 0, 99,104,111,107, +101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0,115,112,114,105,110,103,112,114,101,108,111, 97, +100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102,102, 0,105,110,112,117,115,104, 0, 42,112,111, +105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119,101,105,103,104,116,115, 0, 42,102,109,100, 0, +115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, 0,114,101,115,111,108,117,116,105,111,110,120, +121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97,108,115,105,122,101, 0,103,117,105, 68,105,115, +112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, 97,121, 77,111,100,101, 0,118,105,115, 99,111, +115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116, +121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118,121, 0,103,114, 97,118,122, 0, 97,110,105,109, + 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0,109, 97,120, 82,101,102,105,110,101, 0,105,110, +105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108,122, 0, 42,111,114,103, 77,101,115,104, 0, 42, +109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0,115,117,114,102,100, 97,116, 97, 80, 97,116,104, + 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83,105,122,101, 91, 51, 93, 0,116,121,112,101, 70, +108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0,118,111,108,117,109,101, 73,110,105,116, 84,121, +112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110,101,114, 97,116,101, 84,114, 97, 99,101,114,115, + 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115,117,114,102, 97, 99,101, 83,109,111,111,116,104, +105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 83,105, +122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0,102, 97,114, 70,105,101,108,100, 83,105,122,101, + 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112,115, 84,105,109,101, 83,116, 97,114,116, 0, 99, +112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, 0, 97,116,116,114, 97, 99,116,102,111,114, 99, +101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 82, 97,100,105,117,115, 0,118,101,108, +111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, + 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, 0,109,105,115,116,121,112,101, 0,104,111,114, +114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110,114, 0,122,101,110,103, 0,122,101,110, 98, 0, +122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120,112,111,115,117,114,101, 0,101,120,112, 0,114, + 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103,114, 97,118,105,116,121, 0, 97, 99,116,105,118, +105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, 0,111, 99, 99,108,117,115,105,111,110, 82,101, +115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, 97,116,101, 0,109, 97,120,108,111,103,105, 99, +115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112,104,121,115,116,101,112, 0,109,105,115,105, 0, +109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115,116,104,105, 0,115,116, 97,114,114, 0,115,116, + 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114,115,105,122,101, 0,115,116, 97,114,109,105,110, +100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111,108,110,111,105,115,101, 0,100,111,102,115,116, + 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, 97,120, 0, 97,111,100,105,115,116, 0, 97,111, +100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98,105, 97,115, 0, 97,111,109,111,100,101, 0, 97, +111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, 97,111, 95, 97,100, 97,112,116, 95,116,104,114, +101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, + 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114,114,101, 99,116,105,111,110, 0, 97,111, 95,115, + 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, 95,109,101,116,104,111,100, 0, 97,111, 95, 97, +112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101,114,101, 0, 42, 97,111,116, 97, 98,108,101,115, + 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114,109, 97,116, 0, 42,108,112, 80, 97,114,109,115, + 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110, +100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, 0,100,119, 81,117, 97,108,105,116,121, 0,100, +119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, 97,103,115, 0,100,119, 73,110,116,101,114,108, +101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, + 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, + 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0,118,105,100,101,111, 95, 98,105,116,114, 97,116, +101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95,109,105,120,114, 97,116,101, 0, 97,117, +100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0,114, 99, 95,109,105,110, 95,114, 97,116,101, 0, +114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101,114, 95,115,105,122,101, 0,109,117,120, 95,112, + 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0,109,105,120,114, 97,116,101, 0,109, 97,105,110, + 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112,108,101,114, 95,102, 97, 99,116,111,114, 0,100, +105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111,118,101,114,114,105,100,101, 0, 42,108,105,103, +104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115,107, 0,108, 97,121,102,108, 97,103, 0,112, 97, +115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, 99,111,100,101, 99,100, 97,116, 97, 0, 42,113, +116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97,116, 97, 0,112,115,102,114, 97, 0,112,101,102, +114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116,104,114,101, 97,100,115, 0,102,114, 97,109,101, +108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100,103,101, 71, 0,101,100,103,101, 66, 0,102,117, +108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, 0,102,114,101,113,112,108, 97,121, 0, 97,116, +116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109,111,100,101, 0,100,105,109,101,110,115,105,111, +110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120,115, 99,104, 0,121,115, 99,104, 0,120,112, 97, +114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, 97,110,101,115, 0,105,109,116,121,112,101, 0, +115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105,115,112,108, 97,121,109,111,100,101, 0,114,112, + 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97,121,116,114, 97, 99,101, 95,111,112,116,105,111, +110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114,101, 0,114,101,110,100,101,114,101,114, 0,111, + 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102,114,115, 95,115,101, 99, 0,101,100,103,101,105, +110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115,112,114,101, 99,116, 0,108, 97,121,101,114,115, + 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114,115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, + 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0,112,111,115,116,103, 97,109,109, 97, 0,112,111, +115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, 95,105,110,116,101,110,115,105,116,121, 0, 98, + 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, 98, 97,107,101, 95,109,111,100,101, 0, 98, 97, +107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95,115,112, 97, 99,101, 0, 98, 97,107,101, 95,113, +117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105,115,116, 0, 98, 97,107,101, 95, 98,105, 97,115, +100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108,105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, + 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, + 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98,117,109,112, 0, 89, 70, 95, 99,108, 97,109,112, +114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, 73, 99, 97,117,115,100,101,112,116,104, 0, 71, + 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112,104,111,116,111,110, 99,111,117,110,116, 0, 71, + 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110,114, 97,100,105,117,115, 0, 89, 70, 95,114, 97, +121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, 70, 95, 65, 65,115, 97,109,112,108,101,115, 0, +121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105,116,121, 0, 71, 73,114,101,102,105,110,101,109, +101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112,111,119,101,114, 0, 89, 70, 95,103, 97,109,109, + 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105, +120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111,108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, + 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115,116, 97,109,112, 95,102,111,110,116, 95,105,100, + 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, + 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115,117, 98,115,117,114,102, 0,115,105,109,112,108, +105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105,109,112,108,105,102,121, 95,112, 97,114,116,105, + 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, 99,105,110,101,111,110,119,104,105,116,101, 0, + 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97,109,109, 97, 0,106,112, 50, 95,112,114,101,115, +101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100,111,109,101,114,101,115, 0,100,111,109,101,109, +111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105,108,116, 0,100,111,109,101,114,101,115, 98,117, +102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, 50, 93, 0,112, 97,114,116,105, 99,108,101, 95, +112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97,100, 98,117,102,115, 97,109,112,108,101, 95,109, + 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, 98,117,102, 0, 42,119, 97,114,112,116,101,120, +116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97,109,105,110,103, 0,100,111,109,101, 0,115,116, +101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, 99,116,105,118,101, 95, 98,114,117,115,104, 95, +105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, 97,105,110,116, 95, 99,117,114,115,111,114, 0, +112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0,112, 97,105,110,116, 0,116,111,111,108, 0,115, +101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103,108,101, 0, 42,112, 97,105,110,116, 99,117,114, +115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0,116,111,116, 97,100,100,107,101,121, 0, 98,114, +117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105,116,116,101,114,100,105,115,116, 0,115,101,108, +101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97,119, 95,115,116,101,112, 0,102, 97,100,101, 95, +102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, + 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101,116, 95,115,116,114,101,110,103,116,104, 0,103, + 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101,118, 0, 42,119,112, 97,105,110,116, 95,112,114, +101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118,103,114,111,117,112, 95,119,101,105,103,104,116, + 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102,108, 97,103, 0,106,111,105,110,116,114,105,108, +105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95,111,102,102,115, 0,100,111,117, 98,108,105,109, +105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101,114,103,101, 0,115,101,103,109,101,110,116,115, + 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, 97,112,112,101,114, 0,117,118, 99, 97,108, 99, + 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115,105,122,101, 0,117,118, 99, 97,108, 99, 95,109, + 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0,117,118, 99, 97,108, 99, 95,109, 97,112, 97,108, +105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102,108, 97,103, 0,117,118, 95,115,101,108,101, 99, +116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111,105,107, 95, 99,104, 97,105,110,108,101,110, 0, +105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 95,115, +105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108,101, 97,110, 95,116,104,114,101,115,104, 0, 97, +117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95,102,108, 97,103, 0,114,101,116,111,112,111, 95, +109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111,111,108, 0,108,105,110,101, 95,100,105,118, 0, +101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104,111,116,115,112,111,116, 0,109,117,108,116,105, +114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101,110, 95,114,101,115,111,108,117,116,105,111,110, + 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116,101,114,110, 97,108, 0,115,107,103,101,110, 95, +116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95, +114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 97, +110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114,114,101,108, 97,116,105,111,110, 95,108,105,109, +105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,114,101, +116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103, +101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, +100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,111,112,116,105,111,110,115, 0,115,107, +103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 95,112, 97,115,115,101,115, + 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, 51, 93, 0,115,107,103,101,110, 95,109,117,108, +116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112,108, 97,116,101, 0, 98,111,110,101, 95,115,107, +101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 95, 99,111,110,118,101,114,116, 0,115, +107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, 98,101,114, 0,115,107,103,101,110, 95,114,101, +116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,114,111, +108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, 91, 56, 93, 0,115,107,103,101,110, 95,110,117, +109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100,101, 0,115,110, 97,112, 95,109,111,100,101, 0, +115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101,116, 0,112,114,111,112,111,114,116,105,111,110, + 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0,116,111,116,108, 97,109,112, 0,116,111,116,111, + 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101,115,104, 0,116,111,116, 97,114,109, 97,116,117, +114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116,101,109, 0,103,114, 97,118,105,116,121, 91, 51, + 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101,116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, + 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, 0,116,119, 99,101,110,116, 91, 51, 93, 0,116, +119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, 0, 42,116,111,111,108,115,101,116,116,105,110, +103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110,115,102,111,114,109, 95,115,112, 97, 99,101,115, + 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, 97,103, 0,100, 97,103,105,115,118, 97,108,105, +100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, 0,102,114, 97,109,101, 95,115,116,101,112, 0, + 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121,105,110,103,115,101,116,115, 0,103,109, 0,117, +110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, 0, 98,108,101,110,100, 0,119,105,110,109, 97, +116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,105,110,118, 91, 52, 93, + 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0, +118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0, +116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109, +100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109,122,111,111,109, 0,118,105,101,119, 98,117,116, + 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115,112, 0,118,105,101,119, 0, 99,108,105,112, 91, + 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108,118,100, 0, 42,114,105, 0, 42,114,101,116,111, +112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, 0, 42,115,109,115, 0, 42,115,109,111,111,116, +104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, 0,108,112,101,114,115,112, 0,108,118,105,101, +119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121,112,101, 0, 98,108,111, 99,107,115, 99, 97,108, +101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97,121, 95,117,115,101,100, 0, 42,111, 98, 95, 99, +101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116,114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0, +108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110,101,108,111, 99,107, 0, 97,114,111,117,110,100, + 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105,100,118,105,101,119, 0,112, 97,100,102, 0,110, +101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114,105,100,102,108, 97,103, 0,103,114,105,100,115, +117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121,102,108, 97,103,115, 0,116,119,116,121,112,101, + 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97,119,102,108, 97,103, 0, 99,117,115,116,111,109, +100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0,122, 98,117,102, 0,120,114, 97,121, 0,110,100, +111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112,114,111,112,101,114,116,105,101,115, 95,115,116, +111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0,109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, + 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99,114,111,108,108, 0,115, 99,114,111,108,108, 95, +117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0,107,101,101,112,111,102,115, 0, 97,108,105,103, +110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0,111,108,100,119,105,110,121, 0, 99,117,114,115, +111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117, +114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103,104,111,115,116, 67,117,114,118,101,115, 0, 97, +117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97,105,110, 98, 0,109, 97,105,110, 98,111, 0,109, + 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114,101,118,105,101,119, 0,112, 97,116,104,102,108, + 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114,101,110,100,101,114, 95,115,105,122,101, 0, 99, +104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0,116,105,116,108,101, 91, 50, 52, 93, 0,100,105, +114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97,109,101,102,105,108,101, 91, 56, 48, 93, 0,115, +111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98,111,111,107,109, 97,114,107, 0, 97, 99,116,105, +118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102,112, 0,109,101,110,117, 0,102,112, 95,115,116, +114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109,115, 0, 42,102,105,108,101,115, 0, 42,102,111, +108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95,110,101,120,116, 0, 42,111,112, 0, 42,108,111, + 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117,116, 0,114,101, 99,101,110,116,110,114, 0, 98, +111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116,114,101,101, 0, 42,116,114,101,101,115,116,111, +114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, 0,115,101, 97,114, 99,104, 95,116,115,101, 0, +115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116,108,105,110,101,118,105,115, 0,115,116,111,114, +101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99,117,114,116,105,108,101, 0,105,109,116,121,112, +101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115,116,105, 99,107,121, 0,100,116, 95,117,118,115, +116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42,116,101,120,116, 0,116,111,112, 0,118,105,101, +119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116,104, 0,108,105,110,101,110,114,115, 95,116,111, +116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, 97, 98,110,117,109, 98,101,114, 0,115,104,111, +119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0,108,105,118,101, 95,101,100,105,116, 0,112,105,120, 95, +112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, 0,116,120,116, 98, 97,114, 0,119,111,114,100,119,114, + 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115,116,114, 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99, +101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, 0, 42,112,121, 95,101,118,101,110,116, 0, 42,112,121, + 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101,114, 99, 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95, +103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, 99,101, 0,115, 99,114,105,112,116,110, 97,109,101, 91, + 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, 93, 0, 42,115, 99,114,105,112,116, 0, 42, 98,117,116, + 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, 97,115,112,101, 99,116, 0, 42, 99,117,114,102,111,110, +116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0,116,114,101,101,116,121,112,101, 0,116,101,120,102,114, +111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105,108,101,115,121, 0,118,105,101,119,114,101, 99,116, 0, + 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108,108,112,111,115, 0,115, 99,114,111,108,108,104,101,105, +103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116,118, 97,108, 0,112,114,118, 95,119, 0,112,114,118, 95, +104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 95,101, +118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114, +103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105,109,103, 0,108,101,110, 95, 97,108,108,111, 99, 0, 99, +117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114,111,108,108, 98, 97, 99,107, 0,104,105,115,116,111,114, +121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, + 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0,112,111,105,110,116,115, 0,107,101,114,110,105,110,103, + 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111,119, 0,115,104, 97,100,120, 0,115,104, 97,100,121, 0, +115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, 99,111,108,111,114, 0,112, 97,110,101,108,116,105,116, +108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103,101,116,108, 97, 98,101,108, 0,119,105,100,103,101,116, + 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101,108, 99,104, 97,114,115, 0,109,105,110,119,105,100,103, +101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99,101, 0,116,101,109,112,108, 97,116,101,115,112, 97, 99, +101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115,112, 97, 99,101,120, 0, 98,117,116,116,111,110,115,112, + 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97,110,101,108,111,117,116,101,114, 0,112, 97,100, 91, 49, + 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, 91, 52, 93, 0,105,110,110,101,114, 95,115,101,108, 91, + 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, 0,116,101,120,116, 95,115,101,108, 91, 52, 93, 0,115, +104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97,100,101,100,111,119,110, 0,105,110,110,101,114, 95, 97, +110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95,115,101,108, 91, 52, 93, 0,105,110,110,101,114, 95,107, +101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101,108, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105, +118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 95,115,101,108, 91, 52, 93, 0,119, 99,111,108, 95, +114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0,119, 99,111,108, 95,116,101,120,116, 0,119, 99,111,108, + 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, 0,119, 99,111,108, 95,116,111,103,103,108,101, 0,119, + 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108,105,100,101,114, 0,119, 99,111,108, 95,109,101,110,117, + 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111,108, 95,109,101,110,117, 95, 98, 97, 99,107, 0,119, 99, +111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, 98,111,120, 0,119, 99,111,108, 95,115, 99,114,111,108, +108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, 99,111,108, 95,115,116, 97,116,101, 0,105, 99,111,110, +102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116,105,116,108,101, 91, 52, 93, 0,116,101,120,116, 95,104, +105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,105,116,108,101, 91, 52, 93, 0,104, +101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, + 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,105,116,108,101, 91, 52, 93, 0, 98,117,116,116,111,110, + 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, + 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 91, 52, 93, 0,108,105, +115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101,108, 91, 52, 93, 0,112, 97,110,101,108, 95,116,105,116, +108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 95,104, +105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97,100,101, 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, + 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, 0,115,101,108,101, 99,116, 91, 52, 93, 0,108, 97,109, +112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111,117,112, 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99, +116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, 52, 93, 0,118,101,114,116,101,120, 91, 52, 93, 0,118, +101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 91, 52, 93, 0,101,100,103,101, 95,115,101,108, +101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, 93, 0,101,100,103,101, 95,115,104, 97,114,112, 91, 52, + 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0,102, 97, 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115, +101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, 52, 93, 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98, +111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95,112,111,115,101, 91, 52, 93, 0,115,116,114,105,112, 91, + 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, 0, 99,102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, + 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99,104, 97,110,110,101,108, 91, 52, 93, 0,118,101,114,116, +101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105,122,101, 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110, +116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, 0,115,121,110,116, 97,120, 98, 91, 52, 93, 0,115,121, +110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, 93, 0,109,111,118,105,101, 91, 52, 93, 0,105,109, 97, +103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100,105,111, 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, + 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105,116,105,111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, + 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116, +101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,104, 97, +110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104,112, 97,100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, + 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116,102,105,108,101, 0,116,105,112,111, 0,116,105,110,102, +111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101,113, 0,116,105,109, 97, 0,116,105,109, 97,115, +101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0,116,110,111,100,101, 0,116,108,111,103,105, 99, + 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, 97, 99,116,105,118,101, 95,116,104,101,109,101, + 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, 97,103, 0,115, 97,118,101,116,105,109,101, 0, +116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, 91, 49, 54, 48, 93, 0,114,101,110,100,101,114, +100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,116,101,120,100,105, +114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, 48, 93, 0,112,121,116,104,111,110,100,105,114, + 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0,121,102,101,120,112,111,114,116,100,105,114, 91, + 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, 97,103,115, 0,119,104,101,101,108,108,105,110, +101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, 97,103,101, 0,117,115,101,114,112,114,101,102, + 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, 0, 97,117,100,105,111,100,101,118,105, 99,101, + 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, 97,116, 0, 97,117,100,105,111, 99,104, 97,110, +110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, 97,110,115,111,112,116,115, 0,109,101,110,117, +116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 50, 0,116,104,101,109,101,115, + 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101,121,109, 97,112,115, 0,107,101,121, 99,111,110, +102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, 0,117,110,100,111,109,101,109,111,114,121, 0, +103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95,101,117, 99,108,105,100,101, 97,110,100,105,115, +116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105,110,103,115, 0,116, 98, 95,108,101,102,116,109, +111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108,105,103,104,116, 91, 51, 93, 0,116,119, 95,104, +111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97,110,100,108,101,115,105,122,101, 0,116,119, 95, +115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99,111,108,108,101, 99,116,114, 97,116,101, 0,119, +109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101,109, 99, 97, 99,104,101,108,105,109,105,116, 0, +112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101,115,101,114,118,101,114,112,111,114,116, 0,112, + 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101,114, 95,100,105, 97, 0,114,118,105,115,105,122, +101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102,105,108,101,115, 0,115,109,111,111,116,104, 95, +118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100,111,102, 95,112, 97,110, 0,110,100,111,102, 95, +114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95,110,101,119, 0,118,101,114,115,101,109, 97,115, +116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99, +108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, 98, 97,115,101, 0,101,100,103,101, 98, 97,115, +101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, 0,102,117,108,108, 0,119,105,110,105,100, 0, +100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100,111, 95,100,114, 97,119, 95,103,101,115,116,117, +114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115,111,114, 0,115,119, 97,112, 0,109, 97,105,110, +119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110,105,109,116,105,109,101,114, 0, 42, 99,111,110, +116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119,118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, + 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, + 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0,111,102,115,121, 0,115,105,122,101,120, 0,115, +105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109,101, 95,102,108, 97,103, 0, 99,111,110,116,114, +111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116, +105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0,108,105,115,116, 95,115,105,122,101, 0,108,105, +115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105,112, 95,115,105,122,101, 0,108,105,115,116, 95, +115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42,102,117,108,108, 0, 98,117,116,115,112, 97, 99, +101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, 99,101,100, 97,116, 97, 0,104, 97,110,100,108, +101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, 99,116, 0,100,114, 97,119,114, 99,116, 0,115, +119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105,103,110,109,101,110,116, 0,117,105, 98,108,111, + 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116,114, 0, 42,114,101,103,105,111,110,100, 97,116, + 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115,105,111,110, 0,112, 97,100,115, 0,109,105,110, +118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111,110, 0, 42, 99,117,114,115, 99,114,101,101,110, + 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, 0,103,108,111, 98, 97,108,102, 0,110, 97,109, +101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111,109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, + 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104,116, 0,120,111,102,115, 0,121,111,102,115, 0, +108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105,110, 91, 51, 93, 0,115, 97,116,117,114, 97,116, +105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, 97,114,116,115,116,105,108,108, 0,101,110,100, +115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, 0,111,114,121, 0, 42, 99,114,111,112, 0, 42, +116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, 97,110, 99,101, 0, 42,116,115,116,114,105,112, +100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,116,115,116, +114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98,117,102, 95,115,116, 97,114,116,115,116,105,108, +108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110,115,116, 97,110, 99,101, 95,112,114,105,118, 97, +116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, +116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0,109, 97, 99,104,105,110,101, 0,115,116, 97,114, +116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105,122,101, 0, 97,110,105,109, 95,112,114,101,115, +101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99,102, 49, 0, 42,115,101,113, 49, 0, 42,115,101, +113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111,117,110,100, 0, 42,115,111,117,110,100, 95,104, + 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110,101,110,114, 0,115,116,114,111, 98,101, 0, 42, +101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114,116,111,102,115, 0, 97,110,105,109, 95,101,110, +100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110,100, 95,111,112, 97, 99,105,116,121, 0, 42,111, +108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, 98, 97,115,101,112, 0,109,101,116, 97,115,116, + 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97,103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, + 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103,101, 87,105,100,116,104, 0,102,111,114,119, 97, +114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67,108, 97,109,112, 0,102, 66,111,111,115,116, 0, +100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111,109,112, 0, 83, 99, 97,108,101,120, 73,110,105, + 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, + 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114,111,116, 73,110,105, 0,114,111,116, 70,105,110, + 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109,101, 77, 97,112, 0,103,108,111, 98, 97,108, 83, +112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, 98,117,116,116,121,112,101, 0,117,115,101,114, +106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109,102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97, +110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102,101, 0,102,111,114, 99,101, 91, 51, 93, 0,118, +101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, + 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97,116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, + 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111,109, 97,116, 0,116,105,109,101,116,101,120, 0, +115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101,114,116,103,114,111,117,112, 95,118, 0,118,103, +114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107, +101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100,101,108,101,109, 0, 42,112,111,105,110, 0,114, +101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, 0,107,101,121, 0,113,117, 97,108, 0,113,117, + 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116,111,103,103,108,101, 78, 97,109,101, 91, 51, 50, + 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100, +117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, 91, 51, 50, 93, 0,100, 97,109,112,116,105,109, +101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115, +102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0, 99,111,110,115,116,114, 97,105,110,116, 91, + 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106,101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, + 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101,113, 0,116,111,116,108,105,110,107,115, 0, 42, + 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, 97,120,105,115, 95,115,105,110,103,108,101, 0, + 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116,102, 0,112,114,101, 99,105,115,105,111,110, 0, +115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, 42,109,121,110,101,119, 0,105,110,112,117,116, +115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, 0,118, 97,108,111, 0,115,116, 97,116,101, 95, +109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, 51, 50, 93, 0, 98,108,101,110,100,105,110, 0, +112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115,116,114,105,100,101, 97,120,105,115, 0,115,116, +114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115, +111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121,109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, + 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103, 86,101,108,111, 99,105,116,121, 91, + 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101,114, 97,116,105,111,110, 0,102,111,114, 99,101, +108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108,105,110,101, 97,114,118,101,108,111, 99,105,116, +121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 42,114,101,102,101,114,101,110, + 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, 0,109, 97,120, 0,118,105,115,105,102, 97, 99, + 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, 97,120,108,111, 99, 91, 51, 93, 0,109,105,110, +114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116,112,114,111,112, 91, 51, 50, 93, 0,100,105,115, +116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0,105,110,116, 95, 97,114,103, 95, 50, 0,102,108, +111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, 50, 0,116,111, 80,114,111,112, 78, 97,109,101, + 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84,121,112,101, 0,102,105,108,101,110, 97,109,101, + 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, 0,105,110,116, 95, 97,114,103, 0,102,108,111, + 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, 0, 97, 99, 99,101,108,108,101,114, 97,116,105, +111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112,101,101,100, 0,109, 97,120,116,105,108,116,115, +112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, 97,109,112, 0, 42,115,111,117,114, 99,101, 0, +102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103,101,100, 0,109,105,110, 95,103, 97,105,110, 0, +109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100,105,115,116, 97,110, 99,101, 0,109, 97,120, 95, +100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99,116,111,114, 0, 99,111,110,101, 95,105,110,110, +101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111, +117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100,102,105,108,101, 0, 97,116,116,101,110,117, 97, +116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112, +114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102,115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97, +115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, + 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97,114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97, +114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0,122,119,105,100,116,104, 0,101, 97,115,101, 49, + 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95,116, 97,105,108, 0, 98,111,110,101, 98, 97,115, +101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115,107,101,116, 99,104, 0,108, 97,121,101,114, 95, +112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104,111,115,116,115,105,122,101, 0,103,104,111,115, +116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116,115,102, 0,103,104,111,115,116,101,102, 0,112, + 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0,112, 97,116,104, 97, 99, 0, 42,112,111,105,110, +116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102,114, 97,109,101, 0, 42,112,114,111,112, 0, 99, +111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, 99,116,102,108, 97,103, 0, 97,103,114,112, 95, +105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105,107,116,114,101,101, 0, 42, 98, 95, 98,111,110, +101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, 95, 98,111,110,101, 95,100,117, 97,108, 95,113, +117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95, +109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, 51, 93, 0,112,111,115,101, 95,116, 97,105,108, + 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105,116,109, 97,120, 91, 51, 93, 0,115,116,105,102, +102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105,107,114,111,116,119,101,105,103,104,116, 0,105, +107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99,104, 97,110, 98, 97,115,101, 0,112,114,111,120, +121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101,116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95, +111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,103,114,111,117,112, 0,105, +107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, 97,114, 97,109, 0,110,117,109,105,116,101,114, + 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120,115,116,101,112, 0,115,111,108,118,101,114, 0, +102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112,109, 97,120, 0,100, 97,109,112,101,112,115, 0, + 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99,115, 0, 99,117,114,118,101,115, 0,103,114,111, +117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105,108,116,101,114,102,108, 97,103, 0, 97,100,115, + 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101,115,108,105,100,101, 0, 42,103,114,112, 0,116, +101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99,101, 0,116, 97,114,115,112, 97, 99,101, 0,101, +110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95,101,114,114,111,114, 0,114,111,116, 95,101,114, +114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, 93, 0,115,112, 97, 99,101, 0,114,111,116, 79, +114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0,105,116,101,114, 97,116,105,111,110,115, 0,114, +111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, 0, 42,112,111,108,101,116, 97,114, 0,112,111, +108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, 97,110,103,108,101, 0,111,114,105,101,110,116, +119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, 0,114,101,115,101,114,118,101,100, 49, 0,114, +101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0,115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, + 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, 97,103, 0,118,111,108,109,111,100,101, 0,112, +108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, 0,112,105,118, 88, 0,112,105,118, 89, 0,112, +105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76,105,109,105,116, 91, 54, 93, 0,109, 97,120, 76, +105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111, +109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111,109, 95,109,105,110, 91, 51, 93, 0,102,114,111, +109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116,111, 95,109, 97,120, 91, 51, 93, 0,122,109,105, +110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, + 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117,114,109,111,100, 0, 97, 99,116,115,116, 97,114, +116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114,105,100,101,108,101,110, 0,115, 99, 97,108,101, + 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,111,102,102,115, + 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, 97,115,111,117,116,112,117,116, 0,100, 97,116, + 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101,119, 95,115,111, 99,107, 0,110,115, 0,108,105, +109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101,114,110, 0,115,116, 97, 99,107, 95,105,110,100, +101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, 95,105,110,100,101,120, 0,116,111, 95,105,110, +100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110,101,119, 95,110,111,100,101, 0,117,115,101,114, +110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117,116,115, 0, 42,115,116,111,114, 97,103,101, 0, +109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117,115,116,111,109, 50, 0, 99,117,115,116,111,109, + 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0,101,120,101, 99, 0, 42,116,104,114,101, 97,100, +100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, 42, 98,108,111, 99,107, 0, 42,116,121,112,101, +105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111,100,101, 0, 42,102,114,111,109,115,111, 99,107, + 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, 42,116,104,114,101, 97,100,115,116, 97, 99,107, + 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95,105,110,100,101,120, 0, 97,108,108,116,121,112, +101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42,115,101,108,111,117,116, 0, 40, 42,116,105,109, +101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100,114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115, +116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, + 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112,101,101,100, 0,112,101,114, 99,101,110,116,120, + 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118,101,100, 0,105,109, 97,103,101, 95,105,110, 95, +119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104,116, 0, 99,101,110,116,101,114, 95,120, 0, 99, +101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, 97,112, 0,115,105,103,109, 97, 95, 99,111,108, +111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0, +102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, + 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121,112,101, 0,114,111,116, 97,116,105,111,110, 0, +103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0,109, 97,120, 98,108,117,114, 0, 98,116,104,114, +101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108,101, 95,111,102,115, 0, 99,111,108,109,111,100, + 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0,109, 0, 99, 0,106,105,116, 0,112,114,111,106, + 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, 0,109, 97,120,116, 97, 98,108,101, 0,101,120, +116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, 99,117,114,118,101, 0, 42,116, 97, 98,108,101, + 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99,108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98, +108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109,117,108, 91, 51, 93, 0,115, 97,109,112,108,101, + 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0,106,105,116,116,101,114, 0,115,109,111,111,116, +104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,102, 97, + 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117,108,112,116, 95,116,111,111,108, 0, 97, 99,116, +105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, 0, 97, 99,116,105,118,101, 95,109, 97,115,107, + 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97,120,108, 97,121,101,114, 0,116,111,116,115,105, +122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103, +114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0,112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, + 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, 0,114,116, 91, 50, 93, 0,112,114,101,118, 95, +115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105,101,116,105,109,101, 0,110,117,109, 95,100,109, + 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105,114, 95,105,110,100,101,120, 0, 42, 98,111,105, +100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118,101,109,111,100,101, 0,114,101, 97, 99,116,101, +118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, 97,119, 95,115,105,122,101, 0, 99,104,105,108, +100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101,112, 0,104, 97,105,114, 95,115,116,101,112, 0, +107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108,101, 0, 97,100, 97,112,116, 95,112,105,120, 0, +114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117, +118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115,112,108,105,116, 95,111,102,102,115,101,116, 0, + 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, + 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112,108,105,102,121, 95,114,101,102,115,105,122,101, + 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108,105,102,121, 95,116,114, 97,110,115,105,116,105, +111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, 0,116,105,109,101,116,119,101, 97,107, 0,106, +105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95,114,101,115, 0,112, 97,114,116,102, 97, 99, 0, +116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99,116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, + 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,114,111,116,102, 97, 99, 0,114, 97, +110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0,114,101, 97, 99,116,115,104, 97,112,101, 0, 97, + 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, + 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0,114,101,110, 95, 99,104,105,108,100, 95,110, 98, +114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,110,100,115,105,122, +101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, 0, 99,108,117,109,112,112,111,119, 0,114,111, +117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117,103,104, 50, 0,114,111,117,103,104, 50, 95,115, +105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117,103,104, 95,101,110,100, 0,114,111,117,103,104, + 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99,108,101,110,103,116,104, 95,116,104,114,101,115, + 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108,105,110,101, 91, 50, 93, 0,112, 97,116,104, 95, +115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, 95, 99,111,117,110,116, 0,107,101,121,101,100, + 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, 42,101,102,102, 95,103,114,111,117,112, 0, 42, +100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42,112, 97,114,116, 0, 42,112, 97,114,116,105, 99, +108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104,105,108,100, 99, 97, 99,104,101, 0,112, 97,116, +104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104,101, 98,117,102,115, 0, 42, 99,108,109,100, 0, + 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117,116, 95,100,109, 0, 42,116, 97,114,103,101,116, + 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, 97,109,101, 0,116,111,116, 99,104,105,108,100, + 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, 97, 99,104,101, 0,116, 97,114,103,101,116, 95, +112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109, +101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0,118,103, 95,110,101,103, 0,114,116, 51, 0, 42, +114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114,115, 0, 42,116,114,101,101, 0, 42,112,100,100, + 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, 0,115,116,114,117, 99,116,117,114, 97,108, 0, + 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, 95,115,116,114,117, 99,116, 0,109, 97,120, 95, +115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, 0,116,105,109,101,115, 99, 97,108,101, 0,101, +102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119,105,110,100, 95,115, 99, 97,108,101, 0,115,105, +109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95,115,109,111,111,116,104, 0,115,116,101,112,115, + 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120,115,112,114,105,110,103,108,101,110, 0,115,111, +108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110,100, 0,118,103,114,111,117,112, 95,109, 97,115, +115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115,101,116,115, 0, 42, 99,111,108,108,105,115,105, +111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, 95,102,114,105, 99,116,105,111,110, 0,115,101, +108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, 99,111,117,110,116, 0,108,111,111,112, 95, 99, +111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110,101,115,115, 0,115,116,114,111,107,101,115, 0, +102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103,115,116,101,112, 0,105,110,102,111, 91, 49, 50, + 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102,102,101,114, 95,115,102,108, 97,103, 0, 42,115, + 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115,115, 97,103,101, 0,108,105,115,116, 0,112,114, +105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, 42,119,105,110,100,114, 97,119, 97, 98,108,101, + 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0,105,110,105,116,105, 97,108,105,122,101,100, 0, +102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, 0,113,117,101,117,101, 0,114,101,112,111,114, +116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, 0,107,101,121, 99,111,110,102,105,103,115, 0, + 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, 97, 99,116,109, 97,112, 0,116,105,109,101,114, +115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104,111,115,116,119,105,110, 0, 42,110,101,119,115, + 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, 0,112,111,115,120, 0,112,111,115,121, 0,119, +105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, 97,115,116, 99,117,114,115,111,114, 0, 97,100, +100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97,116,101, 0, 42, 99,117,114,115,119,105,110, 0, + 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, 97,119,102, 97,105,108, 0, 42,100,114, 97,119, +100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115,117, 98,119,105,110,100,111,119,115, 0,103,101, +115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111,112,118, 97,108,117,101, 0,115,104,105,102,116, + 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109,111,100,105,102,105,101,114, 0,109, 97,112,116, +121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101,105,100, 0,114,101,103,105,111,110,105,100, 0, + 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101,109,115, 0, 98, 97,115,101,110, 97,109,101, 91, + 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111,109,100, 97,116, 97, 0, 42,114,101,112,111,114, +116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, 93, 0,112,114,101,118,120, 0,112,114,101,118, +121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121,109, 97,112, 95,105,100,110, 97,109,101, 0, 99, +117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, 0, 42,101,100, 97,116, 97, 0,105,110,102,108, +117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, 97,114,114, 97,121,115,105,122,101, 0,112,111, +108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112,104, 97,115,101, 95,109,117,108,116,105,112,108, +105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108,117,101, 95,111,102,102,115,101,116, 0,109,105, +100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116,101,114, 95,109,111,100,101, 0, 98,101,102,111, +114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108,101,115, 0,114,101, 99,116, 0,112,104, 97,115, +101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95,112, 97,116,104, 0, 97,114,114, 97,121, 95,105, +110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105,111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, + 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99,111,108,111,114, 91, 51, 93, 0,102,114,111,109, + 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110,103,115, 0,115,116,114,105,112,115, 0, 42,114, +101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116,105,109,101, 0, 98,108,101,110,100,109,111,100, +101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, 52, 93, 0,116,101,109,112,108, 97,116,101,115, + 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121,105,110,103,102,108, 97,103, 0, 97, 99,116,105, +118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95,116,114, 97, 99,107,115, 0, 42, 97, 99,116,115, +116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100,101,115, 0, 97, 99,116, 95, 98,108,101,110,100, +109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, 97, 99,116, 95,105,110,102,108,117,101,110, 99, +101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95,102, 97, 99,116,111,114, 0,115,105,103,110, 97, +108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, 91, 51, 93, 0,113,117,101,117,101, 95,115,105, +122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97,110, 99,101, 0,104,101, 97,108,116,104, 0,115, +116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116,105,111,110,115, 0, 97, 99,116,105,111,110,115, + 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102,117,122,122,105,110,101,115,115, 0,108, 97,115, +116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115,109,111,111,116,104,110,101,115,115, 0, 98, 97, +110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99,117,114, 97, 99,121, 0, 97,105,114, 95,109,105, +110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, + 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, + 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95,115,112,101,101,100, 0, +108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97,120, 95, 97,118,101, 0,108, 97,110,100, 95,112, +101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115,116,105, 99,107, 95,102,111,114, 99,101, 0,115, +116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102,108,117,105,100, 95,103,114,111,117,112, 0, 42, + 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95,119,116, 0, 42,116,101,120, 95,115,104, 97,100, +111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, 51, 93, 0,100,120, 0,111,109,101,103, 97, 0, +116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, 97,109,112,108,105,102,121, 0,109, 97,120,114, +101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115,101, 0,100,105,115,115, 95,112,101,114, 99,101, +110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51, +100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, + 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0, +118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100,101,110,115,105,116,121, 0,118,103,114,111,117, +112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42,118,101,108, 0,109, 97,116, 95,111,108,100, 91, + 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69,194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, + 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0,108,111,110,103, 0,117,108,111,110,103, 0,102, +108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110,107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76, +105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0,118,101, 99, 50,102, 0,118,101, 99, 50,100, 0, +118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, + 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112,101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80, +114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70,105,108,101, 68, 97,116, 97, 0, 80,114,101,118, +105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, 98,106,101, 99,116, 0, 73,112,111, 67,117,114, +118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, 73,112,111, 0, 75,101,121, 66,108,111, 99,107, + 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105,110,101, 0, 84,101,120,116, 77, 97,114,107,101, +114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97,109,101,114, 97, 0, 73,109, 97,103,101, 85,115, +101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101,120,116,117,114,101, 0, 97,110,105,109, 0, 82, +101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, 0, 80,108,117,103,105,110, 84,101,120, 0, 67, + 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, 97,112, 0, 73,109, 66,117,102, 0, 80,111,105, +110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 0, 86,111,120,101,108, 68, 97, +116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112,105,110,103, 0, 76, 97,109,112, 0, 67,117,114, +118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109,101, 83,101,116,116,105,110,103,115, 0, 77, 97, +116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, + 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97, +114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, + 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, + 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83, +116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101,115,104, 0, 67,117,115,116,111,109, 68, 97,116, + 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 0, 77, 68,101, +102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111, +112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, 77, 73,110,116, 80,114,111,112,101,114,116,121, + 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105,103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, + 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, + 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, + 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, + 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, + 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, + 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, + 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110, +101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, + 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, + 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, + 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35, +100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, + 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, + 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, + 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, + 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, + 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, + 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, + 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, + 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, + 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, + 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, + 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, + 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102, 32, 32, 99,104, 97,114, 32,117,115,101, 95, 99,111,108, 44, 32,102,108, + 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118,101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, + 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101,100, 32,102,114,111,109, 32,111,116,104,101,114, + 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67, +117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104,111,114,116, 32, 42,101,100,103,101, 95,102,108, + 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 59, 10,125, 32, 77,117,108,116, +105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105,114,101,115, 32, 42, 42, 47, 10, 10,116,121,112, +101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 32,123, 10, + 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95,109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, + 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105, +110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103,101, 95,109, 97,112, 91, 79,108,100, 32, 73,110, +100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, + 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, 69,100,103,101, 32, 42,111,108,100, 95,101,100, +103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116,111,116,102, 97, 99,101, 44, 32,116,111,116,101, +100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, + 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, + 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100, +101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, + 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, + 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, + 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100, +101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, + 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, + 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110,111, 32, 61, 32,118,101,114,116,101,120,110,111, +114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114,101,110,100,101,114, 32, 97,115,115,117,109,101, +115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101,100, 32,108,105,107,101, 32,116,104,105,115, 32, + 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, + 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, + 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, + 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99, +111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, + 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35, +100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, + 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101, +102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, + 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115,101,100, 32,104,101,114,101, 32,116,111,111, 32, + 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, + 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, + 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, + 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108, +100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97,102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, 32, 47, 42, 32,100,101,112,114,101, 99, 97,116, +101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32,115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, + 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,109,111,100,101, 32, 42, 47, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, + 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, + 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112, +114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, + 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, + 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97,120,105,115, 32, 99,111,110,115,116,114, 97,105, +110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99, +101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, 52, 32, 97,114,101, 32,117,115,101,100, 32, 97, +115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, + 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35, +100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, + 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, 97, 47, 98,105,110, 97,114,121, 32, 97,108,112, +104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, + 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104,101, 32,117,115,101,114, 32,105,110,116,101,114, +102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, + 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97,112, 32, 42, 47, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, + 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, + 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, + 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35, +101,110,100,105,102, 10,115,116, 79, 67, 75, 33, 32, 84, 70, 97, 99,101, 32, 42,185, 95, 0, 77,117,108,116,105,114,101,115, 67, +111,108, 0, 77,117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, + 77,117,108,116,105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102, +105,101,114, 68, 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, +105, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, + 97, 0, 66,117,105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, + 68, 97,116, 97, 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 66,101,118,101,108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, + 97,116, 97, 0, 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105, +110, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107, +101, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97, +116, 97, 0, 85, 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116, +101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, + 0, 67, 97,115,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97, +116, 97, 0, 65,114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105, +102,105,101,114, 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108, +111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101, +116,116,105,110,103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, + 99,104,101, 0, 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101, +101, 0, 83,117,114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115, +104, 0, 66, 86, 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115, +104, 68,101,102,111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116, +101,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 77,117,108,116,105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110, +107,119,114, 97,112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111, +100,105,102,105,101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 76, 97,116,116,105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105, +111,110, 0, 98, 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83, +111,102,116, 66,111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72, +111,111,107, 0, 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103, +104,116,115, 0, 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114, +116,101,120, 0, 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, + 99,104, 0, 87,111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107, +116,105,109,101, 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117, +100,105,111, 68, 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, + 97,116, 97, 0, 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70, +114, 97,109,105,110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, + 0, 66,114,117,115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99, +108,101, 66,114,117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, + 0, 84,114, 97,110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97, +105,110,116, 0, 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116, +105,110,103,115, 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101, +110,101, 83,116, 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105, +101,119, 51, 68, 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86, +105,101,119, 68,101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101, +114, 0, 86,105,101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73, +110,102,111, 0, 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, + 83,112, 97, 99,101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, + 97,109,115, 0, 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111, +114, 0, 70,105,108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, + 0, 84,114,101,101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78, +108, 97, 0, 83,112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, + 83,112, 97, 99,101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83, +112, 97, 99,101, 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115, +111,108,101, 0, 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83, +116,121,108,101, 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105, +100,103,101,116, 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, + 99,101, 0, 84,104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105, +103,104,116, 0, 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101, +108, 0, 80, 97,110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, + 99,101, 84,121,112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71, +108,111, 98, 97,108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, + 67,114,111,112, 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97, +108, 97,110, 99,101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, + 0, 83,101,113,117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, + 97, 83,116, 97, 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111, +114,109, 86, 97,114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114, +111,108, 86, 97,114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, + 97,114,116,105, 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83, +101,110,115,111,114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, + 98, 75,101,121, 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, + 98, 65, 99,116,117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111, +108,108,105,115,105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100, +111,109, 83,101,110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110, +115,111,114, 0, 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116, +114,111,108,108,101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105, +111,110, 67,111,110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100, +100, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, + 98, 83,111,117,110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, + 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101, +114,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, + 65, 99,116,117, 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, + 97,105,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110, +100,111,109, 65, 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97, +109,101, 65, 99,116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, + 84,119,111, 68, 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116, +111,114, 0, 98, 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97, +116,111,114, 0, 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, + 98,106,101, 99,116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, + 86,101,114,116, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103, +115, 0, 98, 80,111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, + 65, 99,116,105,111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67, +104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116, +114, 97,105,110,116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67, +111,110,115,116,114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, + 84,114, 97, 99,107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110, +115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77, +105,110, 77, 97,120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, + 67,111,110,115,116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, + 0, 98, 83,116,114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, + 74,111,105,110,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105, +110,116, 0, 98, 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, + 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, + 82,111,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110, +115,116,114, 97,105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104, +114,105,110,107,119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105, +101,114, 0, 98, 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, + 83,111, 99,107,101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118, +105,101,119, 0,117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65, +110,105,109, 0, 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78, +111,100,101, 66,105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, + 78,111,100,101, 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, + 88, 89,115, 0, 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78, +111,100,101, 86,101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114, +105,112,116, 68,105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111, +100,101, 76,101,110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97, +112, 80,111,105,110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111, +109, 68, 97,116, 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66, +111,105,100, 80, 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99, +108,101, 0, 80, 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87, +101,105,103,104,116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105, +110,103,115, 0, 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101, +121, 0, 75, 68, 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111, +100,101, 0, 98, 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97, +109,101, 0, 98, 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119, +109, 87,105,110,100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110, +102,105,103, 0,119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114, +101, 0,119,109, 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, + 97,112, 0,119,109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, + 95, 71,101,110,101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111, +114, 0, 70, 67, 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, + 0, 70, 77,111,100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105, +109,105,116,115, 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97, +110,110,101,108, 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, + 80, 97,105,114, 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99, +107, 0, 75, 83, 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, + 0, 73,100, 65,100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, + 71,111, 97,108, 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, + 0, 66,111,105,100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118, +101,114, 97,103,101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97, +116,101, 0, 70, 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, + 2, 0, 2, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 8, 0, 12, 0, 8, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, + 12, 0, 24, 0, 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 20, 0, 76, 0, 52, 0, 40, 2, 0, 0, 32, 0,140, 0,168, 3, 92, 0, + 36, 0, 56, 0, 84, 0,112, 0,124, 0, 56, 0, 24, 0, 40, 0,120, 0, 12, 0,120, 0, 36, 0,116, 5,128, 1, 0, 0, 0, 0, + 0, 0, 8, 1, 40, 1, 84, 1, 24, 0, 8, 3,168, 0, 0, 0, 76, 0,124, 1, 24, 1,140, 0,132, 0,140, 1, 8, 1, 56, 0, + 88, 0,160, 2, 76, 0, 60, 1, 0, 0,108, 0,104, 0,148, 0, 56, 0, 8, 0, 16, 0, 92, 1, 0, 0, 0, 0, 0, 0, 24, 1, + 20, 0, 44, 0, 60, 0, 24, 0, 12, 0, 12, 0, 4, 0, 8, 0, 8, 0, 0, 0, 24, 0, 76, 0, 32, 0, 8, 0, 12, 0, 8, 0, + 8, 0, 4, 0, 4, 0, 0, 1, 32, 0, 12, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 40, 0, 56, 0, 72, 0, 92, 0,100, 0, + 72, 0,100, 0,120, 0, 68, 0, 64, 0,112, 0, 64, 0, 76, 0,180, 0, 48, 0,168, 0,152, 0,156, 0, 64, 0, 96, 0,108, 0, +188, 0,104, 0,216, 0, 56, 0, 84, 0, 0, 0,136, 0, 28, 0,240, 1,104, 0, 0, 0, 80, 0, 0, 0, 0, 0, 68, 0, 8, 0, + 8, 0,220, 0, 80, 0, 76, 0, 68, 0, 68, 0, 64, 0,168, 1,112, 0,108, 0, 56, 0,188, 0, 40, 0, 0, 0, 92, 0, 64, 0, + 72, 0,120, 0,144, 0, 0, 1,208, 0,180, 0, 0, 0, 68, 0, 92, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,104, 1, 28, 0, +176, 0,144, 0, 60, 0, 24, 0, 72, 0, 0, 4, 56, 0, 20, 0, 16, 0, 92, 0, 80, 0, 24, 0,196, 0, 36, 0, 8, 0,100, 0, + 80, 0, 48, 0, 52, 0, 72, 1, 32, 0, 8, 0, 16, 0, 24, 2, 0, 0, 0, 0, 56, 0,216, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,240, 0, 40, 0,148, 0, 48, 0,140, 0,216, 0, 20, 0,224, 0,216, 0,204, 1, 60, 0, 0, 0,112, 0, 0, 0, 4, 1, + 12, 0, 12, 0,136, 0,200, 0,124, 2, 80, 2, 40, 0,180, 0,244, 0, 52, 0,148, 2, 28, 0, 80, 0, 24, 0, 16, 1, 32, 0, +224, 0, 32, 0, 32, 0, 80, 2, 16, 1, 16, 0,208, 21, 56, 0,128, 11, 20, 0, 24, 0, 64, 1, 0, 0, 0, 0, 96, 0, 0, 0, +248, 0, 0, 0, 16, 1, 80, 0, 28, 0, 16, 0, 8, 0, 52, 0,252, 0,240, 0,168, 1,196, 0, 8, 1, 48, 0, 16, 0, 12, 0, + 24, 0, 48, 0, 16, 0, 20, 0, 16, 0, 24, 0, 56, 1, 0, 0, 56, 0, 52, 0, 48, 0, 8, 0, 44, 0, 72, 0,104, 0, 40, 0, + 8, 0, 72, 0, 44, 0, 40, 0,108, 0, 72, 0, 68, 0, 76, 0, 80, 0, 60, 0,128, 0, 76, 0, 60, 0, 12, 0, 92, 0, 68, 0, + 32, 0, 80, 0, 16, 0, 76, 0,108, 0, 84, 0, 28, 0, 96, 0, 56, 0, 56, 0,108, 0,140, 0, 4, 0, 20, 0, 12, 0, 8, 0, + 80, 0, 40, 0,196, 0, 24, 0, 4, 1,128, 0, 16, 0, 20, 0, 24, 0,196, 1, 4, 0, 40, 0,104, 0,228, 0, 64, 0, 44, 0, + 72, 0,116, 0, 60, 0,112, 0, 52, 0, 44, 0, 44, 0, 68, 0, 44, 0, 64, 0, 44, 0, 20, 0, 52, 0, 96, 0, 12, 0,108, 0, + 92, 0, 28, 0, 28, 0, 28, 0, 52, 0, 20, 0, 60, 0,140, 0, 36, 0,120, 0, 32, 0,212, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 40, 0, 28, 0, 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 8, 0, 24, 0, 32, 0, 8, 0, 32, 0, + 12, 0, 44, 0, 20, 0, 68, 0, 24, 0, 56, 0, 52, 0, 20, 0, 64, 0, 28, 0, 20, 0,180, 0,196, 1, 96, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 20, 0, 24, 0,172, 0, 24, 0, 24, 0,164, 0,148, 0,152, 0, 56, 0, 0, 0, 0, 0,104, 0, 0, 0, + 96, 0, 0, 0, 88, 0, 20, 0, 24, 0, 16, 0, 20, 0, 8, 0, 8, 0, 24, 0, 20, 0, 96, 0, 24, 1, 16, 0, 68, 0, 0, 1, + 20, 0,160, 0, 88, 0, 96, 0, 88, 0, 20, 0, 56, 0, 48, 0, 68, 0, 56, 0, 92, 0, 64, 0, 56, 0, 96, 0, 0, 0, 0, 0, + 83, 84, 82, 67,136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, + 9, 0, 2, 0, 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, + 4, 0, 5, 0, 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, + 17, 0, 3, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, + 19, 0, 3, 0, 8, 0, 5, 0, 8, 0, 6, 0, 8, 0, 7, 0, 20, 0, 4, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, + 4, 0, 8, 0, 21, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 8, 0, 22, 0, 4, 0, 8, 0, 5, 0, + 8, 0, 6, 0, 8, 0, 7, 0, 8, 0, 8, 0, 23, 0, 4, 0, 4, 0, 9, 0, 4, 0, 10, 0, 4, 0, 11, 0, 4, 0, 12, 0, + 24, 0, 4, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 25, 0, 4, 0, 9, 0, 13, 0, 12, 0, 14, 0, + 4, 0, 15, 0, 4, 0, 16, 0, 26, 0, 10, 0, 26, 0, 0, 0, 26, 0, 1, 0, 0, 0, 17, 0, 0, 0, 18, 0, 2, 0, 19, 0, + 0, 0, 20, 0, 4, 0, 21, 0, 25, 0, 22, 0, 4, 0, 23, 0, 4, 0, 24, 0, 27, 0, 9, 0, 9, 0, 0, 0, 9, 0, 1, 0, + 27, 0, 25, 0, 28, 0, 26, 0, 0, 0, 27, 0, 2, 0, 28, 0, 2, 0, 19, 0, 4, 0, 29, 0, 26, 0, 30, 0, 28, 0, 8, 0, + 27, 0, 31, 0, 27, 0, 32, 0, 29, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 4, 0, 36, 0, 4, 0, 37, 0, 28, 0, 38, 0, + 30, 0, 6, 0, 4, 0, 39, 0, 4, 0, 40, 0, 2, 0, 41, 0, 2, 0, 42, 0, 2, 0, 43, 0, 4, 0, 44, 0, 31, 0, 6, 0, + 32, 0, 45, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 48, 0, 33, 0, 21, 0, 33, 0, 0, 0, + 33, 0, 1, 0, 34, 0, 49, 0, 35, 0, 50, 0, 24, 0, 51, 0, 24, 0, 52, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 53, 0, + 2, 0, 54, 0, 2, 0, 55, 0, 2, 0, 56, 0, 2, 0, 19, 0, 2, 0, 57, 0, 7, 0, 11, 0, 7, 0, 12, 0, 4, 0, 58, 0, + 7, 0, 59, 0, 7, 0, 60, 0, 7, 0, 61, 0, 31, 0, 62, 0, 36, 0, 7, 0, 27, 0, 31, 0, 12, 0, 63, 0, 24, 0, 64, 0, + 2, 0, 46, 0, 2, 0, 65, 0, 2, 0, 66, 0, 2, 0, 37, 0, 37, 0, 16, 0, 37, 0, 0, 0, 37, 0, 1, 0, 7, 0, 67, 0, + 7, 0, 61, 0, 2, 0, 17, 0, 2, 0, 47, 0, 2, 0, 68, 0, 2, 0, 19, 0, 4, 0, 69, 0, 4, 0, 70, 0, 9, 0, 2, 0, + 7, 0, 71, 0, 0, 0, 20, 0, 0, 0, 72, 0, 7, 0, 73, 0, 7, 0, 74, 0, 38, 0, 13, 0, 27, 0, 31, 0, 39, 0, 75, 0, + 37, 0, 76, 0, 0, 0, 77, 0, 4, 0, 78, 0, 7, 0, 61, 0, 12, 0, 79, 0, 36, 0, 80, 0, 27, 0, 81, 0, 2, 0, 17, 0, + 2, 0, 82, 0, 2, 0, 83, 0, 2, 0, 19, 0, 40, 0, 6, 0, 40, 0, 0, 0, 40, 0, 1, 0, 0, 0, 84, 0, 0, 0, 85, 0, + 4, 0, 23, 0, 4, 0, 86, 0, 41, 0, 10, 0, 41, 0, 0, 0, 41, 0, 1, 0, 4, 0, 87, 0, 4, 0, 88, 0, 4, 0, 89, 0, + 4, 0, 43, 0, 4, 0, 14, 0, 4, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 42, 0, 15, 0, 27, 0, 31, 0, 0, 0, 93, 0, + 4, 0, 90, 0, 4, 0, 94, 0, 12, 0, 95, 0, 40, 0, 96, 0, 40, 0, 97, 0, 4, 0, 98, 0, 4, 0, 99, 0, 12, 0,100, 0, + 0, 0,101, 0, 4, 0,102, 0, 4, 0,103, 0, 9, 0,104, 0, 8, 0,105, 0, 43, 0, 3, 0, 4, 0,106, 0, 4, 0,107, 0, + 9, 0, 2, 0, 44, 0, 20, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,108, 0, 7, 0,109, 0, + 7, 0,110, 0, 7, 0,111, 0, 7, 0,112, 0, 7, 0,113, 0, 7, 0,114, 0, 7, 0,115, 0, 7, 0,116, 0, 7, 0,117, 0, + 7, 0,118, 0, 2, 0,119, 0, 2, 0,120, 0, 7, 0,121, 0, 36, 0, 80, 0, 32, 0,122, 0, 45, 0, 13, 0, 4, 0,123, 0, + 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 2, 0,127, 0, 2, 0,128, 0, 2, 0, 19, 0, 2, 0,129, 0, 2, 0,130, 0, + 2, 0,131, 0, 2, 0,132, 0, 2, 0,133, 0, 46, 0,134, 0, 47, 0, 32, 0, 27, 0, 31, 0, 0, 0, 34, 0, 12, 0,135, 0, + 48, 0,136, 0, 49, 0,137, 0, 50, 0,138, 0, 2, 0,129, 0, 2, 0, 19, 0, 2, 0,139, 0, 2, 0, 17, 0, 2, 0, 37, 0, + 2, 0, 43, 0, 4, 0,140, 0, 2, 0,141, 0, 2, 0,142, 0, 2, 0,143, 0, 2, 0,144, 0, 2, 0,145, 0, 2, 0,146, 0, + 4, 0,147, 0, 4, 0,148, 0, 43, 0,149, 0, 30, 0,150, 0, 0, 0,151, 0, 7, 0,152, 0, 4, 0,153, 0, 2, 0,154, 0, + 2, 0,155, 0, 2, 0,156, 0, 2, 0,157, 0, 7, 0,158, 0, 7, 0,159, 0, 51, 0, 63, 0, 2, 0,160, 0, 2, 0,161, 0, + 2, 0,162, 0, 2, 0,163, 0, 32, 0,164, 0, 52, 0,165, 0, 0, 0,166, 0, 0, 0,167, 0, 0, 0,168, 0, 0, 0,169, 0, + 0, 0,170, 0, 7, 0,171, 0, 7, 0,172, 0, 7, 0,173, 0, 2, 0,174, 0, 2, 0,175, 0, 2, 0,176, 0, 2, 0,177, 0, + 2, 0,178, 0, 2, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, + 7, 0,186, 0, 7, 0, 57, 0, 7, 0,187, 0, 7, 0,188, 0, 7, 0,189, 0, 7, 0,190, 0, 7, 0,191, 0, 7, 0,192, 0, + 7, 0,193, 0, 7, 0,194, 0, 7, 0,195, 0, 7, 0,196, 0, 7, 0,197, 0, 7, 0,198, 0, 7, 0,199, 0, 7, 0,200, 0, + 7, 0,201, 0, 7, 0,202, 0, 7, 0,203, 0, 7, 0,204, 0, 7, 0,205, 0, 7, 0,206, 0, 7, 0,207, 0, 7, 0,208, 0, + 7, 0,209, 0, 7, 0,210, 0, 7, 0,211, 0, 7, 0,212, 0, 7, 0,213, 0, 7, 0,214, 0, 7, 0,215, 0, 7, 0,216, 0, + 7, 0,217, 0, 7, 0,218, 0, 7, 0,219, 0, 7, 0,220, 0, 7, 0,221, 0, 53, 0, 15, 0, 0, 0,222, 0, 9, 0,223, 0, + 0, 0,224, 0, 0, 0,225, 0, 4, 0,226, 0, 4, 0,227, 0, 9, 0,228, 0, 7, 0,229, 0, 7, 0,230, 0, 7, 0,231, 0, + 4, 0,232, 0, 9, 0,233, 0, 9, 0,234, 0, 4, 0,235, 0, 4, 0, 37, 0, 54, 0, 6, 0, 7, 0,182, 0, 7, 0,183, 0, + 7, 0,184, 0, 7, 0,236, 0, 7, 0, 67, 0, 4, 0, 64, 0, 55, 0, 5, 0, 2, 0, 19, 0, 2, 0, 36, 0, 2, 0, 64, 0, + 2, 0,237, 0, 54, 0,231, 0, 56, 0, 17, 0, 32, 0,164, 0, 47, 0,238, 0, 57, 0,239, 0, 7, 0,240, 0, 7, 0,241, 0, + 2, 0, 17, 0, 2, 0,242, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0,243, 0, 4, 0,244, 0, 2, 0,245, 0, 2, 0,246, 0, + 4, 0,129, 0, 4, 0,140, 0, 2, 0,247, 0, 2, 0,248, 0, 58, 0, 23, 0, 2, 0, 19, 0, 2, 0,249, 0, 7, 0,250, 0, + 7, 0,251, 0, 2, 0,139, 0, 2, 0,252, 0, 4, 0,253, 0, 4, 0,254, 0, 32, 0,164, 0, 59, 0,255, 0, 2, 0, 0, 1, + 2, 0, 1, 1, 2, 0, 2, 1, 9, 0, 3, 1, 7, 0, 4, 1, 7, 0, 5, 1, 2, 0, 6, 1, 2, 0, 7, 1, 2, 0, 8, 1, + 2, 0, 9, 1, 7, 0, 10, 1, 7, 0, 11, 1, 55, 0, 12, 1, 60, 0, 11, 0, 4, 0, 13, 1, 4, 0, 14, 1, 2, 0, 15, 1, + 2, 0, 19, 0, 2, 0, 16, 1, 2, 0, 37, 0, 32, 0,164, 0, 7, 0, 17, 1, 4, 0, 18, 1, 0, 0, 19, 1, 7, 0, 20, 1, + 52, 0, 61, 0, 27, 0, 31, 0, 39, 0, 75, 0, 7, 0, 21, 1, 7, 0, 22, 1, 7, 0, 23, 1, 7, 0, 24, 1, 7, 0, 25, 1, + 7, 0, 26, 1, 7, 0, 27, 1, 7, 0, 28, 1, 7, 0, 29, 1, 7, 0, 30, 1, 7, 0, 31, 1, 7, 0, 32, 1, 7, 0, 33, 1, + 7, 0, 34, 1, 7, 0, 35, 1, 7, 0, 36, 1, 7, 0, 37, 1, 7, 0, 38, 1, 7, 0, 39, 1, 7, 0, 40, 1, 2, 0, 41, 1, + 2, 0, 42, 1, 2, 0, 43, 1, 2, 0, 44, 1, 2, 0, 45, 1, 2, 0, 46, 1, 2, 0, 47, 1, 2, 0, 19, 0, 2, 0, 17, 0, + 2, 0,242, 0, 7, 0, 48, 1, 7, 0, 49, 1, 7, 0, 50, 1, 7, 0, 51, 1, 4, 0, 52, 1, 4, 0, 53, 1, 2, 0, 54, 1, + 2, 0, 55, 1, 2, 0, 16, 1, 2, 0,127, 0, 4, 0, 23, 0, 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 7, 0, 56, 1, + 7, 0, 57, 1, 7, 0,189, 0, 45, 0, 58, 1, 61, 0, 59, 1, 36, 0, 80, 0, 47, 0,238, 0, 53, 0, 60, 1, 55, 0, 12, 1, + 56, 0, 61, 1, 30, 0,150, 0, 58, 0, 62, 1, 60, 0, 63, 1, 0, 0, 64, 1, 0, 0,181, 0, 62, 0, 8, 0, 7, 0, 65, 1, + 7, 0, 66, 1, 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 84, 0, + 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 70, 1, 2, 0,175, 0, 2, 0, 71, 1, 7, 0,182, 0, + 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, 7, 0, 72, 1, 7, 0, 73, 1, 7, 0, 74, 1, 7, 0, 75, 1, 7, 0, 76, 1, + 7, 0, 77, 1, 7, 0, 78, 1, 7, 0, 79, 1, 7, 0, 80, 1, 7, 0, 81, 1, 7, 0, 82, 1, 64, 0, 83, 1, 2, 0,249, 0, + 2, 0, 70, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 7, 0, 87, 1, 7, 0, 88, 1, + 2, 0, 89, 1, 2, 0, 90, 1, 2, 0, 91, 1, 2, 0, 92, 1, 0, 0, 93, 1, 0, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, + 2, 0, 97, 1, 2, 0, 98, 1, 2, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 7, 0,102, 1, 7, 0,103, 1, 2, 0,104, 1, + 2, 0, 43, 0, 2, 0,105, 1, 2, 0,106, 1, 2, 0,107, 1, 2, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, + 7, 0,112, 1, 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 7, 0,119, 1, + 7, 0,120, 1, 2, 0,121, 1, 2, 0,122, 1, 4, 0,123, 1, 4, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 2, 0,127, 1, + 2, 0,128, 1, 7, 0,129, 1, 7, 0,130, 1, 7, 0,131, 1, 7, 0,132, 1, 2, 0,133, 1, 2, 0,134, 1, 36, 0, 80, 0, + 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, + 7, 0,138, 1, 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, + 7, 0,146, 1, 7, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 2, 0,150, 1, 2, 0,151, 1, 7, 0,152, 1, 7, 0,153, 1, + 7, 0,154, 1, 4, 0,155, 1, 67, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,156, 1, 2, 0, 19, 0, 7, 0,182, 0, + 7, 0,183, 0, 7, 0,184, 0, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, + 7, 0,163, 1, 7, 0,164, 1, 7, 0,165, 1, 7, 0,166, 1, 7, 0,167, 1, 7, 0,168, 1, 7, 0,169, 1, 7, 0,170, 1, + 7, 0,171, 1, 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 7, 0,175, 1, 7, 0,176, 1, 66, 0,177, 1, 7, 0,178, 1, + 7, 0,179, 1, 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 7, 0,183, 1, 7, 0,184, 1, 2, 0,185, 1, 2, 0,186, 1, + 2, 0,187, 1, 0, 0,188, 1, 0, 0,189, 1, 7, 0,190, 1, 7, 0,191, 1, 2, 0,192, 1, 2, 0,193, 1, 7, 0,194, 1, + 7, 0,195, 1, 7, 0,196, 1, 7, 0,197, 1, 2, 0,198, 1, 2, 0,199, 1, 4, 0, 70, 1, 4, 0,200, 1, 2, 0,201, 1, + 2, 0,202, 1, 2, 0,203, 1, 2, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, + 7, 0,210, 1, 7, 0,211, 1, 7, 0,212, 1, 7, 0,213, 1, 7, 0,214, 1, 0, 0,215, 1, 7, 0,216, 1, 7, 0,217, 1, + 7, 0,218, 1, 4, 0,219, 1, 0, 0,220, 1, 0, 0,105, 1, 0, 0,221, 1, 0, 0, 64, 1, 2, 0,222, 1, 2, 0,223, 1, + 2, 0,136, 1, 2, 0,224, 1, 2, 0,225, 1, 2, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 7, 0,230, 1, + 7, 0,231, 1, 2, 0,160, 0, 2, 0,161, 0, 55, 0,232, 1, 55, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 0, 0,236, 1, + 0, 0,237, 1, 2, 0,238, 1, 2, 0,239, 1, 7, 0,240, 1, 7, 0,241, 1, 51, 0,135, 1, 61, 0, 59, 1, 36, 0, 80, 0, + 68, 0,242, 1, 30, 0,150, 0, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 7, 0,246, 1, 7, 0,247, 1, 2, 0,248, 1, + 2, 0, 70, 0, 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, + 7, 0, 0, 2, 7, 0, 1, 2, 2, 0, 2, 2, 2, 0, 3, 2, 4, 0, 4, 2, 4, 0,122, 1, 12, 0, 5, 2, 69, 0, 4, 0, + 27, 0, 31, 0, 0, 0, 6, 2, 70, 0, 2, 0, 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 7, 2, + 4, 0, 8, 2, 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 4, 0, 12, 2, 4, 0, 13, 2, 2, 0, 17, 0, 2, 0, 19, 0, + 2, 0, 14, 2, 2, 0, 15, 2, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, + 7, 0, 19, 2, 7, 0, 20, 2, 7, 0, 21, 2, 7, 0, 22, 2, 7, 0, 23, 0, 7, 0, 23, 2, 7, 0, 24, 2, 73, 0, 20, 0, + 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 25, 2, 12, 0, 26, 2, 12, 0, 27, 2, 36, 0, 80, 0, 67, 0, 28, 2, + 0, 0, 19, 0, 0, 0, 29, 2, 2, 0, 30, 2, 2, 0,174, 0, 2, 0, 37, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, + 7, 0, 31, 2, 7, 0, 32, 2, 7, 0, 33, 2, 71, 0, 34, 2, 35, 0, 11, 0, 7, 0, 35, 2, 7, 0, 36, 2, 7, 0, 37, 2, + 7, 0,251, 0, 2, 0, 55, 0, 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 0, 0, 42, 2, 0, 0, 43, 2, + 34, 0, 7, 0, 7, 0, 44, 2, 7, 0, 36, 2, 7, 0, 37, 2, 2, 0, 40, 2, 2, 0, 43, 2, 7, 0,251, 0, 7, 0, 37, 0, + 74, 0, 21, 0, 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, 2, 0, 45, 2, 2, 0, 43, 2, 2, 0, 19, 0, 2, 0, 46, 2, + 2, 0, 47, 2, 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 2, 0, 52, 2, 2, 0, 53, 2, 7, 0, 54, 2, + 7, 0, 55, 2, 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 56, 2, 2, 0, 57, 2, 4, 0, 58, 2, 75, 0, 5, 0, 2, 0, 59, 2, + 2, 0, 45, 2, 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, + 7, 0, 60, 2, 77, 0, 68, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 61, 2, 12, 0, 26, 2, 12, 0, 62, 2, + 32, 0, 63, 2, 32, 0, 64, 2, 32, 0, 65, 2, 36, 0, 80, 0, 78, 0, 66, 2, 38, 0, 67, 2, 67, 0, 28, 2, 12, 0, 68, 2, + 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 2, 0,174, 0, 2, 0, 43, 0, 2, 0, 69, 2, 2, 0, 70, 2, 2, 0, 71, 2, + 7, 0, 72, 2, 7, 0, 70, 0, 2, 0, 73, 2, 2, 0, 30, 2, 2, 0, 19, 0, 2, 0, 74, 2, 7, 0, 75, 2, 7, 0, 76, 2, + 7, 0, 77, 2, 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 78, 2, 2, 0, 79, 2, 4, 0, 80, 2, 34, 0, 81, 2, 2, 0, 23, 0, + 2, 0, 95, 0, 2, 0, 67, 0, 2, 0, 82, 2, 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, + 7, 0, 88, 2, 7, 0, 89, 2, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 92, 2, 0, 0, 93, 2, 79, 0, 94, 2, 80, 0, 95, 2, + 0, 0, 96, 2, 69, 0, 97, 2, 69, 0, 98, 2, 69, 0, 99, 2, 69, 0,100, 2, 4, 0,101, 2, 7, 0,102, 2, 4, 0,103, 2, + 4, 0,104, 2, 76, 0,105, 2, 4, 0,106, 2, 4, 0,107, 2, 75, 0,108, 2, 75, 0,109, 2, 81, 0, 40, 0, 27, 0, 31, 0, + 72, 0, 7, 2, 12, 0,110, 2, 36, 0, 80, 0, 38, 0, 67, 2, 67, 0, 28, 2, 82, 0,111, 2, 83, 0,112, 2, 84, 0,113, 2, + 85, 0,114, 2, 86, 0,115, 2, 87, 0,116, 2, 88, 0,117, 2, 89, 0,118, 2, 81, 0,119, 2, 90, 0,120, 2, 91, 0,121, 2, + 92, 0,122, 2, 92, 0,123, 2, 92, 0,124, 2, 4, 0, 54, 0, 4, 0,125, 2, 4, 0,126, 2, 4, 0,127, 2, 4, 0,128, 2, + 2, 0,174, 0, 2, 0,129, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,130, 2, 4, 0, 69, 2, 2, 0,131, 2, + 2, 0, 19, 0, 2, 0,132, 2, 2, 0,133, 2, 2, 0, 30, 2, 2, 0,134, 2, 93, 0,135, 2, 94, 0,136, 2, 84, 0, 8, 0, + 9, 0,137, 2, 7, 0,138, 2, 4, 0,139, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, + 82, 0, 7, 0, 4, 0,143, 2, 4, 0,144, 2, 4, 0,145, 2, 4, 0,146, 2, 2, 0, 45, 2, 0, 0,147, 2, 0, 0, 19, 0, + 86, 0, 5, 0, 4, 0,143, 2, 4, 0,144, 2, 0, 0,148, 2, 0, 0,149, 2, 2, 0, 19, 0, 95, 0, 2, 0, 4, 0,150, 2, + 7, 0, 37, 2, 87, 0, 3, 0, 95, 0,151, 2, 4, 0,152, 2, 4, 0, 19, 0, 85, 0, 6, 0, 7, 0,153, 2, 2, 0,154, 2, + 2, 0, 45, 2, 0, 0, 19, 0, 0, 0,149, 2, 0, 0, 71, 2, 88, 0, 4, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, + 0, 0,184, 0, 96, 0, 6, 0, 47, 0,137, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, + 97, 0, 1, 0, 7, 0,155, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 4, 0, 37, 0, + 89, 0, 1, 0, 7, 0,156, 2, 90, 0, 2, 0, 4, 0,157, 2, 4, 0, 17, 0, 83, 0, 7, 0, 7, 0,138, 2, 47, 0,137, 2, + 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 99, 0, 1, 0, 7, 0,158, 2,100, 0, 1, 0, + 4, 0,159, 2,101, 0, 1, 0, 0, 0,160, 2,102, 0, 1, 0, 7, 0,138, 2,103, 0, 3, 0, 4, 0,161, 2, 0, 0, 92, 0, + 7, 0,162, 2,105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0,106, 0, 1, 0,105, 0,139, 2, +107, 0, 5, 0, 4, 0,163, 2, 4, 0,164, 2, 0, 0, 19, 0, 0, 0, 45, 2, 0, 0, 71, 2,108, 0, 2, 0, 4, 0,165, 2, + 4, 0,164, 2,109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,166, 2,106, 0,167, 2,108, 0,168, 2, 4, 0, 54, 0, + 4, 0,126, 2, 4, 0,125, 2, 4, 0, 37, 0, 85, 0,169, 2, 93, 0, 14, 0, 12, 0,170, 2, 85, 0,169, 2, 0, 0,171, 2, + 0, 0,172, 2, 0, 0,173, 2, 0, 0,174, 2, 0, 0,175, 2, 0, 0,176, 2, 0, 0,177, 2, 0, 0, 19, 0, 92, 0,122, 2, + 92, 0,124, 2, 2, 0,178, 2, 0, 0,179, 2, 94, 0, 8, 0, 4, 0,180, 2, 4, 0,181, 2, 82, 0,182, 2, 86, 0,183, 2, + 4, 0,126, 2, 4, 0,125, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0,110, 0, 1, 0, 4, 0, 17, 0, + 4, 0, 70, 1, 0, 0, 20, 0, 46, 0,134, 0, 0, 0,184, 2,111, 0, 7, 0,110, 0,185, 2, 2, 0,186, 2, 2, 0,170, 2, + 2, 0,187, 2, 2, 0, 90, 0, 9, 0,188, 2, 9, 0,189, 2,112, 0, 3, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, +113, 0, 5, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,190, 2, 0, 0,191, 2,114, 0, 5, 0,110, 0,185, 2, + 7, 0, 88, 0, 7, 0,192, 2, 4, 0,193, 2, 4, 0,194, 2,115, 0, 5, 0,110, 0,185, 2, 32, 0,195, 2, 0, 0, 72, 0, + 4, 0, 70, 1, 4, 0, 19, 0,116, 0, 13, 0,110, 0,185, 2, 32, 0,196, 2, 32, 0,197, 2, 32, 0,198, 2, 32, 0,199, 2, + 7, 0,200, 2, 7, 0,201, 2, 7, 0,192, 2, 7, 0,202, 2, 4, 0,203, 2, 4, 0,204, 2, 4, 0, 90, 0, 4, 0,205, 2, +117, 0, 5, 0,110, 0,185, 2, 2, 0,206, 2, 2, 0, 19, 0, 7, 0,207, 2, 32, 0,208, 2,118, 0, 3, 0,110, 0,185, 2, + 7, 0,209, 2, 4, 0, 90, 0,119, 0, 10, 0,110, 0,185, 2, 7, 0,210, 2, 4, 0,211, 2, 4, 0, 37, 0, 2, 0, 90, 0, + 2, 0,212, 2, 2, 0,213, 2, 2, 0,214, 2, 7, 0,215, 2, 0, 0,216, 2,120, 0, 3, 0,110, 0,185, 2, 7, 0, 37, 0, + 4, 0, 17, 0,121, 0, 6, 0,110, 0,185, 2,122, 0,217, 2,123, 0,218, 2,124, 0,219, 2, 7, 0,220, 2, 4, 0, 17, 0, +125, 0, 11, 0,110, 0,185, 2, 52, 0,221, 2, 7, 0,222, 2, 4, 0,223, 2, 0, 0,216, 2, 7, 0,224, 2, 4, 0,225, 2, + 32, 0,226, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,185, 2, 32, 0,229, 2, 47, 0,230, 2, + 4, 0, 90, 0, 4, 0,231, 2, 7, 0,232, 2, 7, 0,233, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,127, 0, 3, 0, +110, 0,185, 2, 7, 0,234, 2, 4, 0,235, 2,128, 0, 5, 0,110, 0,185, 2, 7, 0,236, 2, 0, 0,216, 2, 2, 0, 19, 0, + 2, 0,237, 2,129, 0, 8, 0,110, 0,185, 2, 32, 0,164, 0, 7, 0,236, 2, 7, 0,251, 0, 7, 0,106, 0, 0, 0,216, 2, + 2, 0, 19, 0, 2, 0, 17, 0,130, 0, 21, 0,110, 0,185, 2, 32, 0,238, 2, 0, 0,216, 2, 52, 0,221, 2, 32, 0,226, 2, + 2, 0, 19, 0, 2, 0, 37, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, + 7, 0,244, 2, 7, 0,245, 2, 4, 0,225, 2, 4, 0,228, 2, 0, 0,227, 2, 7, 0,246, 2, 7, 0,247, 2, 7, 0, 43, 0, +131, 0, 7, 0,110, 0,185, 2, 2, 0,248, 2, 2, 0,249, 2, 4, 0, 70, 0, 32, 0,164, 0, 7, 0,250, 2, 0, 0,216, 2, +132, 0, 10, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0,251, 2, 7, 0,252, 2, 7, 0,253, 2, 7, 0,245, 2, 4, 0,254, 2, + 4, 0,255, 2, 7, 0, 0, 3, 0, 0, 20, 0,133, 0, 1, 0,110, 0,185, 2,134, 0, 7, 0,110, 0,185, 2, 46, 0,134, 0, +135, 0, 1, 3,136, 0, 2, 3,137, 0, 3, 3,138, 0, 4, 3, 12, 0, 5, 3,139, 0, 13, 0,110, 0,185, 2, 85, 0, 6, 3, + 85, 0, 7, 3, 85, 0, 8, 3, 85, 0, 9, 3, 85, 0, 10, 3, 85, 0, 11, 3, 82, 0, 12, 3, 4, 0, 13, 3, 4, 0, 14, 3, + 7, 0,220, 2, 7, 0, 37, 0,140, 0, 15, 3,141, 0, 7, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 16, 3,142, 0, 17, 3, +143, 0, 15, 3, 4, 0, 18, 3, 4, 0, 13, 3,144, 0, 4, 0,110, 0,185, 2, 32, 0,164, 0, 4, 0, 19, 3, 4, 0, 37, 0, +145, 0, 2, 0, 4, 0, 20, 3, 7, 0, 37, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 21, 3,147, 0, 20, 0,110, 0,185, 2, + 32, 0,164, 0, 0, 0,216, 2, 2, 0, 22, 3, 2, 0, 23, 3, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0, 24, 3, 7, 0, 25, 3, + 4, 0, 54, 0, 4, 0, 26, 3,146, 0, 27, 3,145, 0, 28, 3, 4, 0, 29, 3, 4, 0, 30, 3, 4, 0, 31, 3, 4, 0, 21, 3, + 7, 0, 32, 3, 7, 0, 33, 3, 7, 0, 34, 3,148, 0, 8, 0,110, 0,185, 2, 59, 0,255, 0,142, 0, 17, 3, 4, 0, 35, 3, + 4, 0, 36, 3, 4, 0, 37, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,185, 2, 32, 0, 45, 0, 2, 0, 38, 3, + 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 57, 0, 7, 0, 39, 3, 7, 0, 40, 3,150, 0, 5, 0,110, 0,185, 2, 4, 0, 41, 3, + 2, 0, 19, 0, 2, 0, 42, 3, 7, 0, 43, 3,151, 0, 7, 0,110, 0,185, 2, 85, 0, 44, 3, 4, 0, 45, 3, 0, 0, 46, 3, + 0, 0, 47, 3, 0, 0, 48, 3, 0, 0, 49, 3,152, 0, 3, 0,110, 0,185, 2,153, 0, 50, 3,138, 0, 4, 3,154, 0, 10, 0, +110, 0,185, 2, 32, 0, 51, 3, 32, 0, 52, 3, 0, 0, 53, 3, 7, 0, 54, 3, 2, 0, 55, 3, 2, 0, 56, 3, 0, 0, 57, 3, + 0, 0, 58, 3, 0, 0,191, 2,155, 0, 9, 0,110, 0,185, 2, 32, 0, 59, 3, 0, 0, 53, 3, 7, 0, 60, 3, 7, 0, 61, 3, + 0, 0, 70, 1, 0, 0,206, 2, 0, 0, 62, 3, 0, 0, 37, 0,156, 0, 1, 0,110, 0,185, 2,157, 0, 27, 0, 27, 0, 31, 0, + 2, 0, 46, 2, 2, 0, 47, 2, 2, 0, 63, 3, 2, 0, 19, 0, 2, 0, 64, 3, 2, 0, 65, 3, 2, 0, 66, 3, 2, 0, 70, 0, + 0, 0, 67, 3, 0, 0, 68, 3, 0, 0, 69, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, + 7, 0, 73, 3, 7, 0, 74, 3, 7, 0, 75, 3, 34, 0, 76, 3, 36, 0, 80, 0, 38, 0, 67, 2, 87, 0,116, 2, 7, 0, 77, 3, + 7, 0, 78, 3,157, 0, 79, 3,158, 0, 3, 0,158, 0, 0, 0,158, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 80, 3, + 4, 0, 19, 0, 4, 0, 37, 0, 32, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0,159, 0, 81, 3, 2, 0, 17, 0, 2, 0, 82, 3, + 4, 0, 83, 3, 4, 0, 84, 3, 4, 0, 85, 3, 0, 0, 86, 3, 32, 0, 38, 0, 32, 0, 87, 3, 32, 0, 88, 3, 32, 0, 89, 3, + 32, 0, 90, 3, 36, 0, 80, 0, 78, 0, 66, 2, 72, 0, 7, 2,160, 0, 91, 3,160, 0, 92, 3,161, 0, 93, 3, 9, 0, 2, 0, +162, 0, 94, 3, 12, 0, 95, 3, 12, 0,110, 2, 12, 0, 26, 2, 12, 0, 96, 3, 12, 0, 97, 3, 4, 0, 70, 1, 4, 0, 98, 3, + 67, 0, 28, 2, 0, 0, 99, 3, 4, 0, 30, 2, 4, 0,100, 3, 7, 0, 65, 1, 7, 0,101, 3, 7, 0,102, 3, 7, 0,172, 0, + 7, 0,103, 3, 7, 0, 66, 1, 7, 0,104, 3, 7, 0, 16, 2, 7, 0,105, 3, 7, 0,106, 3, 7, 0,107, 3, 7, 0,108, 3, + 7, 0,109, 3, 7, 0,110, 3, 7, 0,252, 2, 7, 0,111, 3, 7, 0,240, 0, 4, 0,112, 3, 2, 0, 19, 0, 2, 0,113, 3, + 2, 0,114, 3, 2, 0,115, 3, 2, 0,116, 3, 2, 0,117, 3, 2, 0,118, 3, 2, 0,119, 3, 2, 0,120, 3, 2, 0,121, 3, + 2, 0,122, 3, 2, 0,123, 3, 4, 0,124, 3, 4, 0,125, 3, 4, 0,126, 3, 4, 0,127, 3, 7, 0,128, 3, 7, 0,102, 2, + 7, 0,129, 3, 7, 0,130, 3, 7, 0,131, 3, 7, 0,132, 3, 7, 0,133, 3, 7, 0,215, 0, 7, 0,134, 3, 7, 0,135, 3, + 7, 0,136, 3, 7, 0,137, 3, 2, 0,138, 3, 0, 0,139, 3, 0, 0,140, 3, 0, 0,141, 3, 0, 0,142, 3, 7, 0,143, 3, + 7, 0,144, 3, 12, 0,145, 3, 12, 0,146, 3, 12, 0,147, 3, 12, 0,148, 3, 7, 0,149, 3, 2, 0,157, 2, 2, 0,150, 3, + 7, 0,139, 2, 4, 0,151, 3, 4, 0,152, 3,163, 0,153, 3, 2, 0,154, 3, 2, 0,247, 0, 7, 0,155, 3, 12, 0,156, 3, + 12, 0,157, 3, 12, 0,158, 3, 12, 0,159, 3,164, 0, 62, 1,165, 0,160, 3, 68, 0,161, 3, 2, 0,162, 3, 2, 0,163, 3, + 2, 0,164, 3, 2, 0,165, 3, 7, 0,131, 2, 2, 0,166, 3, 2, 0,167, 3,153, 0,168, 3,142, 0,169, 3,142, 0,170, 3, + 4, 0,171, 3, 4, 0,172, 3, 4, 0,173, 3, 4, 0, 70, 0, 12, 0,174, 3, 12, 0,175, 3, 12, 0,176, 3,166, 0, 14, 0, +166, 0, 0, 0,166, 0, 1, 0, 32, 0, 38, 0, 7, 0,252, 2, 7, 0, 67, 1, 7, 0,253, 2, 7, 0,245, 2, 0, 0, 20, 0, + 4, 0,254, 2, 4, 0,255, 2, 4, 0,177, 3, 2, 0, 17, 0, 2, 0,178, 3, 7, 0, 0, 3,167, 0, 12, 0,167, 0, 0, 0, +167, 0, 1, 0, 32, 0, 45, 0, 4, 0,179, 3, 4, 0,157, 2, 4, 0,180, 3, 4, 0, 17, 0, 4, 0,181, 3, 7, 0, 67, 1, + 7, 0,182, 3, 7, 0,183, 3, 7, 0,155, 2,164, 0, 40, 0, 4, 0, 19, 0, 2, 0,184, 3, 2, 0,185, 3, 2, 0,245, 2, + 2, 0,186, 3, 2, 0,187, 3, 2, 0,188, 3, 2, 0,189, 3, 2, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, + 7, 0,194, 3, 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, 7, 0,198, 3, 7, 0,199, 3, 7, 0,200, 3, 7, 0,201, 3, + 7, 0,202, 3, 7, 0,203, 3, 7, 0,204, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 37, 0, 7, 0,207, 3, 7, 0,208, 3, + 7, 0,209, 3, 7, 0,210, 3, 7, 0,211, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0,214, 3, 7, 0,215, 3, 7, 0,216, 3, + 52, 0,165, 0,168, 0,217, 3, 7, 0,218, 3, 4, 0,194, 2,169, 0, 5, 0, 68, 0,242, 1, 7, 0,219, 3, 7, 0,220, 3, + 2, 0, 19, 0, 2, 0,221, 3,170, 0, 9, 0,170, 0, 0, 0,170, 0, 1, 0, 4, 0,222, 3, 4, 0,223, 3, 4, 0,224, 3, + 4, 0, 19, 0, 4, 0,225, 3, 9, 0,226, 3, 9, 0,227, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, + 4, 0,228, 3, 4, 0,229, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,232, 3, 4, 0,233, 3, 4, 0,223, 3, 4, 0,157, 2, + 4, 0, 57, 0, 0, 0,234, 3, 0, 0,235, 3, 0, 0,236, 3, 0, 0,237, 3, 12, 0,238, 3,171, 0,239, 3, 9, 0,240, 3, +172, 0, 1, 0, 7, 0, 44, 2,163, 0, 30, 0, 4, 0, 19, 0, 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 4, 0,244, 3, + 4, 0,245, 3, 4, 0,246, 3, 4, 0,247, 3, 7, 0,248, 3, 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, + 7, 0,253, 3, 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, 7, 0, 1, 4, 7, 0, 2, 4, 7, 0, 3, 4, 7, 0, 4, 4, + 7, 0, 5, 4, 7, 0, 6, 4, 7, 0, 7, 4, 7, 0, 8, 4, 7, 0, 9, 4, 4, 0, 10, 4, 4, 0, 11, 4, 7, 0, 12, 4, + 7, 0,134, 3,165, 0, 50, 0, 4, 0,223, 3, 4, 0, 13, 4,173, 0, 14, 4,174, 0, 15, 4, 0, 0, 37, 0, 0, 0, 16, 4, + 2, 0, 17, 4, 7, 0, 18, 4, 0, 0, 19, 4, 7, 0, 20, 4, 7, 0, 21, 4, 7, 0, 22, 4, 7, 0, 23, 4, 7, 0, 24, 4, + 7, 0, 25, 4, 7, 0, 26, 4, 7, 0, 27, 4, 7, 0, 28, 4, 2, 0, 29, 4, 0, 0, 30, 4, 2, 0, 31, 4, 7, 0, 32, 4, + 7, 0, 33, 4, 0, 0, 34, 4, 4, 0,126, 0, 4, 0, 35, 4, 4, 0, 36, 4, 2, 0, 37, 4, 2, 0, 38, 4,172, 0, 39, 4, + 4, 0, 40, 4, 4, 0, 82, 0, 7, 0, 41, 4, 7, 0, 42, 4, 7, 0, 43, 4, 7, 0, 44, 4, 2, 0, 45, 4, 2, 0, 46, 4, + 2, 0, 47, 4, 2, 0, 48, 4, 2, 0, 49, 4, 2, 0, 50, 4, 2, 0, 51, 4, 2, 0, 52, 4,175, 0, 53, 4, 7, 0, 54, 4, + 7, 0, 55, 4,138, 0, 56, 4, 12, 0, 5, 3,169, 0, 57, 4,153, 0, 49, 0,152, 0, 58, 4, 2, 0, 17, 0, 2, 0, 59, 4, + 2, 0, 60, 4, 2, 0, 61, 4, 7, 0, 62, 4, 2, 0, 63, 4, 2, 0, 64, 4, 7, 0, 65, 4, 2, 0, 66, 4, 2, 0, 67, 4, + 7, 0, 68, 4, 7, 0, 69, 4, 7, 0, 70, 4, 7, 0, 71, 4, 7, 0, 72, 4, 7, 0, 73, 4, 4, 0, 74, 4, 7, 0, 75, 4, + 7, 0, 76, 4, 7, 0, 77, 4, 81, 0, 78, 4, 81, 0, 79, 4, 81, 0, 80, 4, 0, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, + 36, 0, 80, 0, 2, 0, 84, 4, 0, 0, 85, 4, 0, 0, 86, 4, 7, 0, 87, 4, 4, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, + 4, 0, 91, 4, 4, 0, 19, 0, 7, 0, 92, 4, 7, 0, 93, 4, 7, 0, 94, 4, 85, 0, 95, 4, 7, 0, 96, 4, 7, 0, 97, 4, + 7, 0, 98, 4, 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 4, 0,103, 4,176, 0, 73, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 2, 0,175, 0, 2, 0, 71, 1, 2, 0,105, 1, 2, 0,104, 4, 7, 0,105, 4, 7, 0,106, 4, 7, 0,107, 4, + 7, 0,108, 4, 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,163, 1, 7, 0,165, 1, 7, 0,164, 1, + 7, 0,113, 4, 4, 0,114, 4, 7, 0,115, 4, 7, 0,116, 4, 7, 0,117, 4, 7, 0,118, 4, 7, 0,119, 4, 7, 0,120, 4, + 7, 0,121, 4, 2, 0,122, 4, 2, 0, 70, 1, 2, 0,123, 4, 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, + 2, 0,128, 4, 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, 7, 0,132, 4, 7, 0,133, 4, 7, 0,134, 4, 7, 0,135, 4, + 7, 0,136, 4, 7, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, 7, 0,140, 4, 2, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, + 2, 0,144, 4, 7, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, 7, 0,148, 4, 2, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, + 2, 0,152, 4, 7, 0,153, 4, 7, 0,154, 4, 7, 0,155, 4, 7, 0,156, 4, 2, 0,157, 4, 2, 0,158, 4, 2, 0,159, 4, + 2, 0, 19, 0, 7, 0,160, 4, 7, 0,161, 4, 36, 0, 80, 0, 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, +177, 0, 8, 0,177, 0, 0, 0,177, 0, 1, 0, 4, 0,112, 3, 4, 0,162, 4, 4, 0, 19, 0, 2, 0,163, 4, 2, 0,164, 4, + 32, 0,164, 0,178, 0, 13, 0, 9, 0,165, 4, 9, 0,166, 4, 4, 0,167, 4, 4, 0,168, 4, 4, 0,169, 4, 4, 0,170, 4, + 4, 0,171, 4, 4, 0,172, 4, 4, 0,173, 4, 4, 0,174, 4, 4, 0,175, 4, 4, 0, 37, 0, 0, 0,176, 4,179, 0, 5, 0, + 9, 0,177, 4, 9, 0,178, 4, 4, 0,179, 4, 4, 0, 70, 0, 0, 0,180, 4,180, 0, 15, 0, 4, 0, 17, 0, 4, 0,181, 4, + 4, 0,182, 4, 4, 0,183, 4, 4, 0,184, 4, 4, 0,185, 4, 7, 0,186, 4, 4, 0,187, 4, 4, 0, 90, 0, 4, 0,188, 4, + 4, 0,189, 4, 4, 0,190, 4, 4, 0,191, 4, 4, 0,192, 4, 26, 0, 30, 0,181, 0, 7, 0, 4, 0,193, 4, 7, 0,194, 4, + 7, 0,195, 4, 7, 0,196, 4, 4, 0,197, 4, 2, 0, 19, 0, 2, 0, 37, 0,182, 0, 11, 0,182, 0, 0, 0,182, 0, 1, 0, + 0, 0, 20, 0, 67, 0,198, 4, 68, 0,199, 4, 4, 0,112, 3, 4, 0,200, 4, 4, 0,201, 4, 4, 0, 37, 0, 4, 0,202, 4, + 4, 0,203, 4,183, 0,134, 0,178, 0,204, 4,179, 0,205, 4,180, 0,206, 4, 4, 0, 18, 3, 4, 0,126, 0, 4, 0, 35, 4, + 4, 0,207, 4, 4, 0,208, 4, 4, 0,209, 4, 4, 0,210, 4, 2, 0, 19, 0, 2, 0,211, 4, 7, 0,102, 2, 7, 0,212, 4, + 7, 0,213, 4, 7, 0,214, 4, 7, 0,215, 4, 7, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, 2, 0,220, 4, + 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0, 92, 1, 2, 0,106, 0, + 2, 0,226, 4, 2, 0,227, 4, 2, 0,228, 4, 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 2, 0,232, 4, 2, 0,233, 4, + 2, 0,234, 4, 2, 0, 93, 1, 2, 0,235, 4, 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 4, 0,239, 4, 4, 0, 70, 1, + 4, 0,240, 4, 2, 0,241, 4, 2, 0,242, 4, 2, 0,243, 4, 2, 0,122, 1, 2, 0,244, 4, 2, 0,245, 4, 2, 0,246, 4, + 2, 0,247, 4, 24, 0,248, 4, 24, 0,249, 4, 23, 0,250, 4, 12, 0,251, 4, 2, 0,252, 4, 2, 0, 37, 0, 7, 0,253, 4, + 7, 0,254, 4, 7, 0,255, 4, 7, 0, 0, 5, 4, 0, 1, 5, 7, 0, 2, 5, 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, + 2, 0, 6, 5, 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, 2, 0, 11, 5, 7, 0, 12, 5, 7, 0, 13, 5, + 7, 0, 14, 5, 2, 0, 15, 5, 2, 0, 16, 5, 2, 0, 17, 5, 2, 0, 18, 5, 2, 0, 19, 5, 2, 0, 20, 5, 2, 0, 21, 5, + 2, 0, 22, 5, 2, 0, 23, 5, 2, 0, 24, 5, 4, 0, 25, 5, 4, 0, 26, 5, 4, 0, 27, 5, 4, 0, 28, 5, 4, 0, 29, 5, + 7, 0, 30, 5, 4, 0, 31, 5, 4, 0, 32, 5, 4, 0, 33, 5, 4, 0, 34, 5, 7, 0, 35, 5, 7, 0, 36, 5, 7, 0, 37, 5, + 7, 0, 38, 5, 7, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, 7, 0, 42, 5, 7, 0, 43, 5, 0, 0, 44, 5, 0, 0, 45, 5, + 4, 0, 46, 5, 2, 0, 47, 5, 2, 0,239, 1, 0, 0, 48, 5, 7, 0, 49, 5, 7, 0, 50, 5, 4, 0, 51, 5, 4, 0, 52, 5, + 7, 0, 53, 5, 7, 0, 54, 5, 2, 0, 55, 5, 2, 0, 56, 5, 7, 0, 57, 5, 2, 0, 58, 5, 2, 0, 59, 5, 4, 0, 60, 5, + 2, 0, 61, 5, 2, 0, 62, 5, 2, 0, 63, 5, 2, 0, 64, 5, 7, 0, 65, 5, 7, 0, 70, 0, 42, 0, 66, 5, 0, 0, 67, 5, +184, 0, 9, 0,184, 0, 0, 0,184, 0, 1, 0, 0, 0, 20, 0, 2, 0, 68, 5, 2, 0, 69, 5, 2, 0, 70, 5, 2, 0, 43, 0, + 7, 0, 71, 5, 7, 0, 70, 0,185, 0, 7, 0, 2, 0,211, 2, 2, 0, 70, 1, 2, 0,109, 0, 2, 0, 72, 5, 7, 0, 73, 5, + 7, 0, 70, 0, 42, 0, 74, 5,186, 0, 5, 0, 7, 0, 75, 5, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 70, 0, 0, 0,239, 1, +187, 0, 26, 0, 7, 0,120, 4, 7, 0,121, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 76, 5, 2, 0,137, 1, 2, 0,123, 4, + 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4,186, 0, 77, 5, 2, 0,217, 4, 2, 0,218, 4, + 2, 0,219, 4, 2, 0,220, 4, 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4,185, 0, 78, 5, 2, 0, 79, 5, + 2, 0,224, 4, 2, 0,227, 4, 2, 0,228, 4,188, 0, 5, 0,188, 0, 0, 0,188, 0, 1, 0, 4, 0,222, 3, 0, 0,234, 3, + 4, 0, 19, 0,189, 0, 6, 0,190, 0, 80, 5, 4, 0, 81, 5, 4, 0, 82, 5, 9, 0, 83, 5, 0, 0, 84, 5, 4, 0, 37, 0, +191, 0, 6, 0,189, 0, 85, 5, 2, 0, 19, 0, 2, 0, 86, 5, 2, 0, 87, 5, 2, 0, 88, 5, 9, 0, 89, 5,192, 0, 4, 0, + 2, 0,106, 0, 2, 0,222, 2, 2, 0,228, 3, 2, 0, 90, 5,193, 0, 14, 0, 2, 0, 19, 0, 2, 0, 91, 5, 2, 0, 92, 5, + 2, 0, 93, 5,192, 0, 94, 5, 9, 0, 89, 5, 7, 0, 95, 5, 7, 0, 57, 0, 4, 0, 96, 5, 4, 0, 97, 5, 4, 0, 98, 5, + 4, 0, 99, 5, 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5, +195, 0, 6, 0,189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0, +189, 0, 85, 5, 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, + 9, 0, 89, 5,197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, + 7, 0,114, 5, 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, + 2, 0, 96, 5, 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, + 2, 0,128, 5, 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5, +193, 0,136, 5, 7, 0,137, 5, 7, 0,138, 5, 7, 0,139, 5, 2, 0,140, 5, 2, 0,141, 5, 0, 0,142, 5, 0, 0,143, 5, + 0, 0,144, 5, 0, 0,145, 5, 0, 0,146, 5, 0, 0,147, 5, 2, 0,148, 5, 7, 0,149, 5, 7, 0,150, 5, 7, 0,151, 5, + 7, 0,152, 5, 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, + 0, 0,160, 5, 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, + 0, 0,168, 5, 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, + 2, 0,176, 5, 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, + 4, 0,183, 5, 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, + 7, 0,186, 5, 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, + 47, 0,238, 0, 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, + 4, 0,112, 3, 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0, +181, 0,200, 5, 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, + 2, 0,206, 5, 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3, +200, 0,212, 5,204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5, +205, 0, 35, 0, 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, + 7, 0,221, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, + 2, 0,227, 5, 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, + 72, 0,234, 5,162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, + 7, 0,241, 5, 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, + 2, 0,232, 5, 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, + 2, 0,253, 5, 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, + 7, 0,112, 0, 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, + 2, 0, 6, 6, 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, + 2, 0, 13, 6, 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, + 0, 0, 20, 6, 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, + 23, 0, 24, 6, 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, + 2, 0, 32, 6, 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, + 2, 0,255, 5, 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, + 2, 0, 47, 6, 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, + 2, 0, 52, 6, 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, + 27, 0, 56, 6,219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, +213, 0, 44, 6, 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, + 7, 0, 60, 6,162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, + 2, 0, 19, 0, 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, + 2, 0, 71, 6, 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 4, 0, 37, 0,220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, + 2, 0, 81, 6, 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, + 4, 0, 88, 6, 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, + 2, 0,133, 0, 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, + 2, 0,239, 1, 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, + 7, 0,122, 1, 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6, +230, 0, 27, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, + 4, 0,104, 6, 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, + 4, 0,110, 6, 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, + 4, 0,118, 6, 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, + 9, 0,124, 6, 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, + 4, 0, 43, 0, 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, +213, 0, 44, 6, 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, + 9, 0,135, 6, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, + 2, 0,140, 6, 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, + 0, 0, 62, 6, 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, + 4, 0,141, 6, 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, + 7, 0,134, 6, 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, + 2, 0,150, 6, 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, + 57, 0,157, 6,237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, + 4, 0, 17, 0,238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, + 4, 0, 17, 0, 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, + 0, 0,164, 6, 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, + 2, 0,169, 6, 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, + 7, 0,175, 6, 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6, +241, 0,179, 6,241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, + 2, 0,187, 6, 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, + 0, 0,194, 6, 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0, +244, 0, 8, 0, 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, + 7, 0, 37, 0,245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6, +243, 0,213, 6,243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6, +243, 0,221, 6,244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, + 0, 0,227, 6, 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, + 0, 0,235, 6, 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, + 0, 0,243, 6, 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, + 0, 0,251, 6, 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, + 0, 0, 3, 7, 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, + 0, 0, 11, 7, 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, + 0, 0, 19, 7, 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, + 0, 0, 27, 7, 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, + 0, 0, 35, 7, 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, + 2, 0, 37, 0,248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7, +246, 0, 41, 7,246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7, +246, 0, 49, 7,246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, + 4, 0, 57, 7, 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2, +250, 0, 73, 0, 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, + 0, 0, 65, 7, 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, + 4, 0, 72, 7, 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, + 4, 0, 80, 7, 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, + 12, 0, 87, 7, 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, + 2, 0, 95, 7, 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, + 2, 0,103, 7, 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, + 2, 0,111, 7, 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, + 2, 0,119, 7, 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, + 2, 0,141, 5, 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, + 46, 0,134, 0, 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, + 2, 0,137, 7, 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7, +251, 0, 5, 0,251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0, +252, 0, 1, 0,251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0, +253, 0, 1, 0,254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, + 2, 0,153, 7, 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, + 4, 0,159, 7,253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, + 0, 1, 22, 0, 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, + 23, 0, 52, 0, 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, + 2, 0,159, 6, 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, + 2, 1, 0, 0, 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, + 2, 0,178, 7, 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, + 12, 0,180, 7, 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, + 2, 0,186, 7, 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, + 4, 0,192, 7, 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, + 6, 1,197, 7, 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, + 4, 0,109, 6, 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, + 7, 0,206, 7, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, + 49, 0,137, 0, 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, + 4, 0, 23, 0, 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, + 4, 0,214, 7, 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, + 57, 0,221, 7, 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, + 9, 0,228, 0, 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, + 13, 1, 0, 0, 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, + 4, 0, 88, 0, 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, + 4, 0,230, 7, 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, + 49, 0,137, 0, 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, + 14, 1,240, 7, 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, + 4, 0,248, 7, 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7, +201, 0, 6, 0, 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, + 7, 0, 2, 8, 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, + 7, 0, 8, 8, 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, + 7, 0, 15, 8, 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, + 20, 1, 2, 0, 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, + 4, 0, 24, 8, 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, + 23, 1, 8, 0, 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, + 7, 0,126, 0, 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, + 2, 0, 29, 4, 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, + 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, + 7, 0, 35, 8, 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, + 2, 0, 42, 8, 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, + 2, 0, 26, 2, 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, + 26, 1, 0, 0, 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, + 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2, +227, 0, 5, 0, 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, + 4, 0, 55, 8,227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, + 4, 0, 22, 0, 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, + 29, 1, 4, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, + 7, 0, 77, 1, 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, + 0, 0, 64, 8, 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, + 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, + 35, 1, 6, 0, 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, + 0, 0, 20, 0, 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, + 4, 0, 67, 8, 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, + 4, 0, 73, 8, 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, + 0, 0, 77, 8, 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, + 2, 0, 80, 8, 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, + 32, 0, 45, 0, 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, + 0, 0, 85, 8, 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, + 4, 0, 91, 8, 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, + 42, 1, 18, 0, 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, + 2, 0, 79, 8, 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, + 2, 0, 15, 0, 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0, +160, 0,100, 8, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, + 2, 0,103, 8, 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, + 4, 0, 89, 0, 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, + 2, 0,112, 8, 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, + 0, 0, 20, 0, 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, + 0, 0, 65, 8, 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, + 7, 0,120, 8, 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, + 55, 1, 10, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, + 2, 0, 64, 0, 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, + 7, 0,236, 2, 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, + 2, 0,244, 2, 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, + 0, 0,134, 8, 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, + 2, 0, 64, 0, 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, + 7, 0,138, 8, 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, + 2, 0, 43, 0, 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, + 0, 0,143, 8, 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, + 4, 0,145, 8, 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, + 65, 1, 2, 0, 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, + 32, 0, 51, 3, 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, + 2, 0, 79, 8, 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, + 7, 0,150, 8, 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, + 15, 1, 12, 0, 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, + 4, 0,156, 8, 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, + 7, 0,161, 8, 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, + 0, 0,222, 0, 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, + 7, 0,159, 8, 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, + 2, 0,107, 8, 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, + 69, 1, 1, 0, 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, + 4, 0,131, 0, 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, + 7, 0,176, 8, 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, + 7, 0, 77, 1, 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, + 7, 0,188, 8, 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, + 12, 0,190, 8, 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, + 2, 0,193, 8, 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, + 4, 0,201, 8, 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, + 4, 0,192, 2, 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, + 4, 0,201, 8, 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, + 0, 0, 20, 0, 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, + 4, 0,200, 8, 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, + 9, 0,217, 8, 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, + 2, 0, 37, 0, 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, + 7, 0,225, 8, 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, + 2, 0, 19, 0, 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, + 9, 0,237, 8, 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, + 2, 0,240, 8, 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, + 7, 0,247, 8, 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3, +247, 0,250, 8,160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, + 4, 0,253, 8,217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, + 0, 0, 70, 1, 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, + 80, 1, 8, 0, 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, + 4, 0, 4, 9, 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, + 82, 1, 0, 0, 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, + 7, 0, 8, 9, 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, + 83, 1, 1, 0, 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, + 84, 1, 7, 0, 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, + 85, 1, 15, 0, 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, + 0, 0, 22, 9, 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, + 86, 1, 6, 0, 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, + 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, + 0, 0,251, 2, 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, + 2, 0, 43, 0, 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, + 0, 0,251, 2, 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, + 7, 0,127, 8, 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, + 0, 0,251, 2, 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, + 32, 0, 12, 9, 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, + 32, 0,213, 8, 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, + 7, 0, 43, 9, 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, + 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, + 0, 0,251, 2, 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, + 7, 0, 51, 9, 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, + 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, + 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, + 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, + 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, + 32, 0, 51, 3, 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, + 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0, +105, 1, 22, 0,105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0, +160, 0,100, 8, 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, + 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, + 7, 0, 44, 2, 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9, +107, 1, 18, 0,107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, + 2, 0, 76, 9, 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, + 4, 0, 83, 9,107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, + 0, 0, 87, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, + 2, 0,199, 7, 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, + 7, 0, 91, 9, 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, + 24, 0, 99, 9, 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0, +108, 1, 1, 0,109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, + 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, + 4, 0,112, 9, 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, + 4, 0,120, 9, 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, + 0, 0,124, 9, 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, + 2, 0,127, 9, 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, + 2, 0,131, 9, 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, + 7, 0,109, 0, 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, + 7, 0,140, 9, 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, + 0, 0, 6, 2, 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, + 7, 0,143, 9, 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, + 2, 0,149, 9, 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, + 0, 0,166, 0, 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, + 0, 0,156, 9, 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, + 9, 0,161, 9, 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, + 0, 0,106, 0, 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, + 7, 0,125, 0, 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, + 2, 0,170, 9, 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, + 7, 0, 6, 0, 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, + 7, 0,175, 9, 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, + 4, 0, 64, 0, 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9, +132, 1, 4, 0, 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, + 64, 0,178, 9, 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, + 7, 0,192, 9, 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, + 4, 0, 17, 0, 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, + 0, 0, 20, 0, 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, + 9, 0,203, 9,134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, + 7, 0,153, 2, 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, + 7, 0,186, 5, 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, + 7, 0,213, 9, 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, + 2, 0, 19, 0, 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, + 2, 0,205, 2, 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8, +136, 1,218, 9, 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, + 7, 0,214, 9, 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, + 39, 0, 75, 0,143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, + 2, 0,138, 3, 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, + 2, 0,223, 4, 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, + 2, 0, 45, 8, 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, + 2, 0,243, 9, 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, + 7, 0,251, 9, 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, + 7, 0,255, 9, 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, + 7, 0, 2, 10, 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, + 7, 0, 9, 10, 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, + 7, 0, 15, 10, 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, + 7, 0, 23, 10, 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, + 7, 0, 27, 10, 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, + 7, 0, 35, 10, 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, + 32, 0, 42, 10, 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0, +142, 1, 45, 10,141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, + 12, 0, 50, 10,134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, + 0, 0, 20, 0, 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, + 4, 0, 57, 10, 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, + 2, 0, 64, 10, 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10, +146, 1, 70, 10, 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, + 7, 0, 74, 10, 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, + 7, 0, 79, 10, 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, + 7, 0, 24, 4, 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, + 2, 0, 90, 10, 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, + 7, 0, 95, 10, 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, + 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, + 4, 0,253, 0, 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, + 4, 0, 19, 0,151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, + 2, 0,105, 10, 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, + 2, 0,108, 10, 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, + 0, 0,110, 10, 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0, +154, 1, 18, 0, 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, + 12, 0,120, 10, 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, + 4, 0, 70, 0, 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, + 4, 0, 37, 0,215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, + 2, 0,135, 10, 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10, +158, 1,140, 10,159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, + 12, 0,146, 10, 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, + 2, 0, 17, 0, 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, + 2, 0,155, 10, 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, + 2, 0,158, 10, 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0, +156, 1, 1, 0, 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0, +223, 0, 1, 0, 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10, +223, 0,167, 10, 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, + 2, 0, 5, 0, 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, + 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, + 2, 0,175, 10, 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, + 0, 0,234, 3, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, + 4, 0, 70, 1, 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, + 4, 0, 19, 0,167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0, +167, 1, 2, 0, 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, + 2, 0,188, 10, 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, + 4, 0, 37, 0,172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10, +173, 1, 9, 0,173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, + 4, 0, 37, 0, 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, + 4, 0, 19, 0,175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, + 78, 1, 3, 9,174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, + 2, 0, 16, 1, 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10, +178, 1, 4, 0,178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, + 12, 0,204, 10,160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, + 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, + 2, 0,208, 10, 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0, +180, 1, 1, 0, 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, + 27, 0,133, 6, 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10, +182, 1, 7, 0,182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10, +183, 1, 5, 0,183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3, +160, 0,216, 10,178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, + 2, 0,221, 10, 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0, +185, 1, 1, 0, 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, + 7, 0,226, 10, 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0, +185, 1,224, 10, 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10, +189, 1, 5, 0,185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, + 7, 0,169, 8, 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0, +191, 1, 0, 0,191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, + 4, 0,238, 10, 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, + 4, 0,240, 10, 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, + 7, 0,244, 10, 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, + 7, 0,251, 10, 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11, +192, 1, 2, 11, 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, + 7, 0, 8, 11, 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, + 7, 0, 14, 11, 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, + 2, 0, 20, 11, 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11, +169, 0, 57, 4,123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, + 2, 0, 29, 11, 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3, +142, 0, 17, 3, 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, + 2, 0, 17, 0, 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; From 6565193523dd4425b67eced9707559ce948df7f5 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 26 Oct 2009 19:50:07 +0000 Subject: [PATCH 189/412] Revert multiplication order change from revision 23692 The previous order is correct, the new order forced all global scale on local axis (in object mode). The "problem" with scaling (or mirroring) in object mode along an axis that is not aligned along one of the local axis is that the result has to be decomposed (as best it can by TransMat3ToSize) into scaling factors along local axis. The more axis aligned the object is, the more "correct" it will look, with the worse being a scale along two local axis when the scaling axis is right between them. One "solution" could be to make all Mirror transform in object mode work on local axis only (but I don't think that would be correct, since it still works correctly on aligned axis). --- source/blender/editors/transform/transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 7497cd73055..a3e1ac3b7a6 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -2342,7 +2342,7 @@ static void ElementResize(TransInfo *t, TransData *td, float mat[3][3]) { if (t->flag & (T_OBJECT|T_TEXTURE|T_POSE)) { float obsizemat[3][3]; // Reorient the size mat to fit the oriented object. - Mat3MulMat3(obsizemat, td->axismtx, tmat); + Mat3MulMat3(obsizemat, tmat, td->axismtx); //printmatrix3("obsizemat", obsizemat); TransMat3ToSize(obsizemat, td->axismtx, fsize); //printvecf("fsize", fsize); From 5d333f72c399443205b1b5fa26ccc12b2c31e62d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 26 Oct 2009 19:54:55 +0000 Subject: [PATCH 190/412] Bugfix: material texture slot checkboxes were not showing up anymore. --- .../blender/editors/interface/interface_templates.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index 06735badebf..a35da38ea66 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -1989,14 +1989,15 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe name= (namebuf)? namebuf: ""; /* hardcoded types */ - uiBlockSetEmboss(block, UI_EMBOSSN); - if(itemptr->type == &RNA_MeshTextureFaceLayer || itemptr->type == &RNA_MeshColorLayer) { uiItemL(sub, name, icon); + uiBlockSetEmboss(block, UI_EMBOSSN); uiDefIconButR(block, TOG, 0, ICON_SCENE, 0, 0, UI_UNIT_X, UI_UNIT_Y, itemptr, "active_render", 0, 0, 0, 0, 0, NULL); + uiBlockSetEmboss(block, UI_EMBOSS); } - else if(itemptr->type == &RNA_MaterialTextureSlot) { + else if(RNA_struct_is_a(itemptr->type, &RNA_MaterialTextureSlot)) { uiItemL(sub, name, icon); + uiBlockSetEmboss(block, UI_EMBOSS); uiDefButR(block, OPTION, 0, "", 0, 0, UI_UNIT_X, UI_UNIT_Y, ptr, "use_textures", i, 0, 0, 0, 0, NULL); } else if(itemptr->type == &RNA_ShapeKey) { @@ -2006,6 +2007,7 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe uiItemL(split, name, icon); + uiBlockSetEmboss(block, UI_EMBOSSN); row= uiLayoutRow(split, 1); if(i == 0) uiItemL(row, "", 0); else uiItemR(row, "", 0, itemptr, "value", 0); @@ -2013,12 +2015,11 @@ static void list_item_row(bContext *C, uiLayout *layout, PointerRNA *ptr, Pointe if(ob->mode == OB_MODE_EDIT && !((ob->shapeflag & OB_SHAPE_EDIT_MODE) && ob->type == OB_MESH)) uiLayoutSetActive(row, 0); //uiItemR(row, "", ICON_MUTE_IPO_OFF, itemptr, "mute", 0); + uiBlockSetEmboss(block, UI_EMBOSS); } else uiItemL(sub, name, icon); - uiBlockSetEmboss(block, UI_EMBOSS); - /* free name */ if(namebuf) MEM_freeN(namebuf); From 839ac92f651d456db40ffaebefab87172fdeedba Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 26 Oct 2009 22:33:43 +0000 Subject: [PATCH 191/412] added SetDisplayArea, GetDisplayArea was used in a confusing way --- .../BlenderRoutines/KX_BlenderCanvas.h | 6 +-- source/gameengine/Rasterizer/RAS_ICanvas.h | 6 +-- .../RAS_OpenGLRasterizer.cpp | 46 +++++++++++-------- 3 files changed, 32 insertions(+), 26 deletions(-) diff --git a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h index d49c877f610..f3228f4b524 100644 --- a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h +++ b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h @@ -116,10 +116,10 @@ public: return m_displayarea; }; - RAS_Rect & - GetDisplayArea( + void + SetDisplayArea(RAS_Rect *rect ) { - return m_displayarea; + m_displayarea= *rect; }; RAS_Rect & diff --git a/source/gameengine/Rasterizer/RAS_ICanvas.h b/source/gameengine/Rasterizer/RAS_ICanvas.h index dae4fb3f4d2..a5ef18275ac 100644 --- a/source/gameengine/Rasterizer/RAS_ICanvas.h +++ b/source/gameengine/Rasterizer/RAS_ICanvas.h @@ -135,9 +135,9 @@ public: GetDisplayArea( ) const = 0; - virtual - RAS_Rect & - GetDisplayArea( + virtual + void + SetDisplayArea(RAS_Rect *rect ) = 0; /** diff --git a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp index d16348defb2..5b732e802f6 100644 --- a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp +++ b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp @@ -386,6 +386,7 @@ void RAS_OpenGLRasterizer::EndFrame() void RAS_OpenGLRasterizer::SetRenderArea() { + RAS_Rect area; // only above/below stereo method needs viewport adjustment switch (m_stereomode) { @@ -394,19 +395,21 @@ void RAS_OpenGLRasterizer::SetRenderArea() { case RAS_STEREO_LEFTEYE: // upper half of window - m_2DCanvas->GetDisplayArea().SetLeft(0); - m_2DCanvas->GetDisplayArea().SetBottom(m_2DCanvas->GetHeight() - + area.SetLeft(0); + area.SetBottom(m_2DCanvas->GetHeight() - int(m_2DCanvas->GetHeight() - m_noOfScanlines) / 2); - m_2DCanvas->GetDisplayArea().SetRight(int(m_2DCanvas->GetWidth())); - m_2DCanvas->GetDisplayArea().SetTop(int(m_2DCanvas->GetHeight())); + area.SetRight(int(m_2DCanvas->GetWidth())); + area.SetTop(int(m_2DCanvas->GetHeight())); + m_2DCanvas->SetDisplayArea(&area); break; case RAS_STEREO_RIGHTEYE: // lower half of window - m_2DCanvas->GetDisplayArea().SetLeft(0); - m_2DCanvas->GetDisplayArea().SetBottom(0); - m_2DCanvas->GetDisplayArea().SetRight(int(m_2DCanvas->GetWidth())); - m_2DCanvas->GetDisplayArea().SetTop(int(m_2DCanvas->GetHeight() - m_noOfScanlines) / 2); + area.SetLeft(0); + area.SetBottom(0); + area.SetRight(int(m_2DCanvas->GetWidth())); + area.SetTop(int(m_2DCanvas->GetHeight() - m_noOfScanlines) / 2); + m_2DCanvas->SetDisplayArea(&area); break; } break; @@ -415,26 +418,29 @@ void RAS_OpenGLRasterizer::SetRenderArea() { case RAS_STEREO_LEFTEYE: // Left half of window - m_2DCanvas->GetDisplayArea().SetLeft(0); - m_2DCanvas->GetDisplayArea().SetBottom(0); - m_2DCanvas->GetDisplayArea().SetRight(m_2DCanvas->GetWidth()/2); - m_2DCanvas->GetDisplayArea().SetTop(m_2DCanvas->GetHeight()); + area.SetLeft(0); + area.SetBottom(0); + area.SetRight(m_2DCanvas->GetWidth()/2); + area.SetTop(m_2DCanvas->GetHeight()); + m_2DCanvas->SetDisplayArea(&area); break; case RAS_STEREO_RIGHTEYE: // Right half of window - m_2DCanvas->GetDisplayArea().SetLeft(m_2DCanvas->GetWidth()/2); - m_2DCanvas->GetDisplayArea().SetBottom(0); - m_2DCanvas->GetDisplayArea().SetRight(m_2DCanvas->GetWidth()); - m_2DCanvas->GetDisplayArea().SetTop(m_2DCanvas->GetHeight()); + area.SetLeft(m_2DCanvas->GetWidth()/2); + area.SetBottom(0); + area.SetRight(m_2DCanvas->GetWidth()); + area.SetTop(m_2DCanvas->GetHeight()); + m_2DCanvas->SetDisplayArea(&area); break; } break; default: // every available pixel - m_2DCanvas->GetDisplayArea().SetLeft(0); - m_2DCanvas->GetDisplayArea().SetBottom(0); - m_2DCanvas->GetDisplayArea().SetRight(int(m_2DCanvas->GetWidth())); - m_2DCanvas->GetDisplayArea().SetTop(int(m_2DCanvas->GetHeight())); + area.SetLeft(0); + area.SetBottom(0); + area.SetRight(int(m_2DCanvas->GetWidth())); + area.SetTop(int(m_2DCanvas->GetHeight())); + m_2DCanvas->SetDisplayArea(&area); break; } } From 491463c41659d791c09787ad5975c84a42ada74a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 26 Oct 2009 23:00:06 +0000 Subject: [PATCH 192/412] remove ARegion from the Canvas, use a RAS_Rect instead. (pair programming with Dalai ;) ) --- .../BlenderRoutines/BL_KetsjiEmbedStart.cpp | 18 ++++++++++++++--- .../BlenderRoutines/KX_BlenderCanvas.cpp | 20 +++++++++---------- .../BlenderRoutines/KX_BlenderCanvas.h | 4 ++-- 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp index ca5faf00bb6..5c7e18b5304 100644 --- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp +++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp @@ -127,7 +127,13 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int alw struct Scene *scene= CTX_data_scene(C); struct Main* maggie1= CTX_data_main(C); - + + RAS_Rect area_rect; + area_rect.SetLeft(ar->winrct.xmin); + area_rect.SetBottom(ar->winrct.ymin); + area_rect.SetRight(ar->winrct.xmax); + area_rect.SetTop(ar->winrct.ymax); + int exitrequested = KX_EXIT_REQUEST_NO_REQUEST; Main* blenderdata = maggie1; @@ -167,7 +173,7 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int alw bool nodepwarnings = (SYS_GetCommandLineInt(syshandle, "ignore_deprecation_warnings", 0) != 0); bool novertexarrays = (SYS_GetCommandLineInt(syshandle, "novertexarrays", 0) != 0); // create the canvas, rasterizer and rendertools - RAS_ICanvas* canvas = new KX_BlenderCanvas(win, ar); + RAS_ICanvas* canvas = new KX_BlenderCanvas(win, area_rect); canvas->SetMouseState(RAS_ICanvas::MOUSE_INVISIBLE); RAS_IRenderTools* rendertools = new KX_BlenderRenderTools(); RAS_IRasterizer* rasterizer = NULL; @@ -589,6 +595,12 @@ extern "C" void StartKetsjiShellSimulation(struct wmWindow *win, Main* blenderdata = maggie; + RAS_Rect area_rect; + area_rect.SetLeft(ar->winrct.xmin); + area_rect.SetBottom(ar->winrct.ymin); + area_rect.SetRight(ar->winrct.xmax); + area_rect.SetTop(ar->winrct.ymax); + char* startscenename = scenename; char pathname[FILE_MAXDIR+FILE_MAXFILE]; STR_String exitstring = ""; @@ -619,7 +631,7 @@ extern "C" void StartKetsjiShellSimulation(struct wmWindow *win, bool usemat = false; // create the canvas, rasterizer and rendertools - RAS_ICanvas* canvas = new KX_BlenderCanvas(win, ar); + RAS_ICanvas* canvas = new KX_BlenderCanvas(win, area_rect); //canvas->SetMouseState(RAS_ICanvas::MOUSE_INVISIBLE); RAS_IRenderTools* rendertools = new KX_BlenderRenderTools(); RAS_IRasterizer* rasterizer = NULL; diff --git a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.cpp b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.cpp index 360794ceb33..73803846d70 100644 --- a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.cpp +++ b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.cpp @@ -35,9 +35,9 @@ #endif -KX_BlenderCanvas::KX_BlenderCanvas(struct wmWindow *win, ARegion *ar) : +KX_BlenderCanvas::KX_BlenderCanvas(struct wmWindow *win, RAS_Rect &rect) : m_win(win), -m_ar(ar) +m_frame_rect(rect) { } @@ -96,12 +96,12 @@ void KX_BlenderCanvas::ClearBuffer(int type) int KX_BlenderCanvas::GetWidth( ) const { - return m_ar->winx; + return m_frame_rect.GetWidth(); } int KX_BlenderCanvas::GetHeight( ) const { - return m_ar->winy; + return m_frame_rect.GetHeight(); } RAS_Rect & @@ -119,8 +119,8 @@ SetViewPort( ){ int vp_width = (x2 - x1) + 1; int vp_height = (y2 - y1) + 1; - int minx = m_ar->winrct.xmin; - int miny = m_ar->winrct.ymin; + int minx = m_frame_rect.GetLeft(); + int miny = m_frame_rect.GetBottom(); m_area_rect.SetLeft(minx + x1); m_area_rect.SetBottom(miny + y1); @@ -162,9 +162,9 @@ void KX_BlenderCanvas::SetMouseState(RAS_MouseState mousestate) // (0,0) is top left, (width,height) is bottom right void KX_BlenderCanvas::SetMousePosition(int x,int y) { - int winX = m_ar->winrct.xmin; - int winY = m_ar->winrct.ymin; - int winH = m_ar->winy; + int winX = m_frame_rect.GetLeft(); + int winY = m_frame_rect.GetBottom(); + int winH = m_frame_rect.GetHeight(); BL_warp_pointer(winX + x, winY + (winH-y-1)); } @@ -173,5 +173,5 @@ void KX_BlenderCanvas::SetMousePosition(int x,int y) void KX_BlenderCanvas::MakeScreenShot(const char* filename) { - BL_MakeScreenShot(m_ar, filename); +// BL_MakeScreenShot(m_ar, filename); } diff --git a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h index f3228f4b524..5967ce78b46 100644 --- a/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h +++ b/source/gameengine/BlenderRoutines/KX_BlenderCanvas.h @@ -64,7 +64,7 @@ public: * * @param area The Blender ARegion to run the game within. */ - KX_BlenderCanvas(struct wmWindow* win, struct ARegion* ar); + KX_BlenderCanvas(struct wmWindow* win, struct RAS_Rect &rect); ~KX_BlenderCanvas(); void @@ -167,8 +167,8 @@ public: private: /** Blender area the game engine is running within */ - struct ARegion* m_ar; struct wmWindow* m_win; + RAS_Rect m_frame_rect; RAS_Rect m_area_rect; From 641072a769cc7bff4d69945c71f536c5b0394bc9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Oct 2009 00:25:38 +0000 Subject: [PATCH 193/412] BGE: when letterbox is enabled use the camera framing as a clipping area (good for avoiding the HUD showing outside the bounds), use the framing color too (from dalai and myself) --- .../editors/space_view3d/view3d_view.c | 22 ++++++++++++-- .../BlenderRoutines/BL_KetsjiEmbedStart.cpp | 30 ++++++++++++------- .../RAS_OpenGLRasterizer.cpp | 12 ++++---- 3 files changed, 47 insertions(+), 17 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index 12654bdac14..b108d38a3f9 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -1550,7 +1550,7 @@ void game_set_commmandline_options(GameData *gm) } /* maybe we need this defined somewhere else */ -extern void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int always_use_expand_framing); +extern void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *cam_frame, int always_use_expand_framing); #endif // GAMEBLENDER == 1 @@ -1566,6 +1566,7 @@ static int game_engine_exec(bContext *C, wmOperator *unused) bScreen *sc= CTX_wm_screen(C); ScrArea *sa, *prevsa= CTX_wm_area(C); ARegion *ar, *prevar= CTX_wm_region(C); + rcti cam_frame; sa= prevsa; if(sa->spacetype != SPACE_VIEW3D) { @@ -1592,8 +1593,25 @@ static int game_engine_exec(bContext *C, wmOperator *unused) game_set_commmandline_options(&startscene->gm); + if(startscene->gm.framing.type == SCE_GAMEFRAMING_BARS) { /* Letterbox */ + rctf cam_framef; + calc_viewborder(startscene, ar, CTX_wm_view3d(C), &cam_framef); + cam_frame.xmin = cam_framef.xmin + ar->winrct.xmin; + cam_frame.xmax = cam_framef.xmax + ar->winrct.xmin; + cam_frame.ymin = cam_framef.ymin + ar->winrct.ymin; + cam_frame.ymax = cam_framef.ymax + ar->winrct.ymin; + BLI_isect_rcti(&ar->winrct, &cam_frame, &cam_frame); + } + else { + cam_frame.xmin = ar->winrct.xmin; + cam_frame.xmax = ar->winrct.xmax; + cam_frame.ymin = ar->winrct.ymin; + cam_frame.ymax = ar->winrct.ymax; + } + + SaveState(C); - StartKetsjiShell(C, ar, 1); + StartKetsjiShell(C, ar, &cam_frame, 1); RestoreState(C); CTX_wm_region_set(C, prevar); diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp index 5c7e18b5304..d4421f9f3e1 100644 --- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp +++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp @@ -120,19 +120,19 @@ static BlendFileData *load_game_data(char *filename) return bfd; } -extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int always_use_expand_framing) +extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *cam_frame, int always_use_expand_framing) { /* context values */ struct wmWindow *win= CTX_wm_window(C); struct Scene *scene= CTX_data_scene(C); struct Main* maggie1= CTX_data_main(C); - + RAS_Rect area_rect; - area_rect.SetLeft(ar->winrct.xmin); - area_rect.SetBottom(ar->winrct.ymin); - area_rect.SetRight(ar->winrct.xmax); - area_rect.SetTop(ar->winrct.ymax); + area_rect.SetLeft(cam_frame->xmin); + area_rect.SetBottom(cam_frame->ymin); + area_rect.SetRight(cam_frame->xmax); + area_rect.SetTop(cam_frame->ymax); int exitrequested = KX_EXIT_REQUEST_NO_REQUEST; Main* blenderdata = maggie1; @@ -246,14 +246,21 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int alw } if(rv3d->persp==V3D_CAMOB) { - camzoom = (1.41421 + (rv3d->camzoom / 50.0)); - camzoom *= camzoom; + if(scene->gm.framing.type == SCE_GAMEFRAMING_BARS) { /* Letterbox */ + camzoom = 1.0f; + } + else { + camzoom = (1.41421 + (rv3d->camzoom / 50.0)); + camzoom *= camzoom; + camzoom = 4.0 / camzoom; + } } - else + else { camzoom = 2.0; + } - camzoom = 4.0 / camzoom; + ketsjiengine->SetDrawType(v3d->drawtype); ketsjiengine->SetCameraZoom(camzoom); @@ -336,6 +343,8 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, int alw if (blscene->gm.stereomode != RAS_IRasterizer::RAS_STEREO_QUADBUFFERED) rasterizer->SetStereoMode((RAS_IRasterizer::StereoMode) blscene->gm.stereomode); } + + rasterizer->SetBackColor(blscene->gm.framing.col[0], blscene->gm.framing.col[1], blscene->gm.framing.col[2], 0.0f); } if (exitrequested != KX_EXIT_REQUEST_QUIT_GAME) @@ -688,6 +697,7 @@ extern "C" void StartKetsjiShellSimulation(struct wmWindow *win, if (blscene->gm.stereomode != RAS_IRasterizer::RAS_STEREO_QUADBUFFERED) rasterizer->SetStereoMode((RAS_IRasterizer::StereoMode) blscene->gm.stereomode); } + rasterizer->SetBackColor(blscene->gm.framing.col[0], blscene->gm.framing.col[1], blscene->gm.framing.col[2], 0.0f); if (exitrequested != KX_EXIT_REQUEST_QUIT_GAME) { diff --git a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp index 5b732e802f6..336d80507e4 100644 --- a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp +++ b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp @@ -107,11 +107,7 @@ bool RAS_OpenGLRasterizer::Init() { GPU_state_init(); - m_redback = 0.4375; - m_greenback = 0.4375; - m_blueback = 0.4375; - m_alphaback = 0.0; - + m_ambr = 0.0f; m_ambg = 0.0f; m_ambb = 0.0f; @@ -128,6 +124,12 @@ bool RAS_OpenGLRasterizer::Init() glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + m_redback = 0.4375; + m_greenback = 0.4375; + m_blueback = 0.4375; + m_alphaback = 0.0; + glShadeModel(GL_SMOOTH); return true; From 1c1659eb286b369ffe6ba99207c42611159f24bb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Oct 2009 02:54:25 +0000 Subject: [PATCH 194/412] - Right click menu can open links directly to API reference docs (rna and operators) - Generated and uploaded api docs - http://www.blender.org/documentation/250PythonDoc - Added Edit docs menu item & operators as discussed with Mindrones, Brecht, Stani & Letterip @ bconf, needs some web backend. python operator can aparently use xml/rpc to upload docstrings. - Added operator invoke function - context.manager.invoke_props_popup(self.__operator__, event) this calls a popup for invoke by default (which intern calls execute()) - Own recent commit to game framing applied to non-camera views too. - v3d->persp is deprecated but still used in some places. - Transforming strips could overlap 1 frame if moving them below frame 0 - Transforming overlapping strips could go into an eternal loop (though overlapping strips should not exist) --- release/scripts/io/export_3ds.py | 8 +- release/scripts/io/import_3ds.py | 8 +- release/scripts/modules/bpy_ops.py | 63 ++++++++ release/scripts/ui/space_info.py | 10 +- source/blender/blenkernel/intern/sequence.c | 2 +- .../editors/interface/interface_anim.c | 34 ++-- .../editors/interface/interface_handlers.c | 151 +++++++++++++++++- .../editors/interface/interface_intern.h | 1 - .../editors/interface/interface_utils.c | 4 +- source/blender/editors/screen/screen_edit.c | 18 ++- source/blender/editors/screen/screen_ops.c | 8 +- .../editors/space_buttons/buttons_context.c | 1 + .../editors/space_view3d/view3d_draw.c | 38 ++--- .../editors/space_view3d/view3d_edit.c | 142 ++++++++-------- .../editors/space_view3d/view3d_header.c | 27 ++-- .../blender/editors/space_view3d/view3d_ops.c | 14 +- .../editors/space_view3d/view3d_view.c | 79 ++++----- source/blender/editors/transform/transform.c | 2 +- .../editors/transform/transform_conversions.c | 6 +- .../editors/transform/transform_generics.c | 4 +- source/blender/makesdna/DNA_view3d_types.h | 46 +++--- source/blender/makesrna/RNA_access.h | 2 + source/blender/makesrna/intern/rna_access.c | 13 ++ source/blender/makesrna/intern/rna_wm_api.c | 10 ++ .../BlenderRoutines/BL_KetsjiEmbedStart.cpp | 6 +- 25 files changed, 473 insertions(+), 224 deletions(-) diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index 5ca7d5629d5..99913523fd3 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1091,9 +1091,9 @@ def save_3ds(filename, context): # Blender.Draw.PupMenu("Error%t|This script requires a full python installation") # # save_3ds('/test_b.3ds') -class EXPORT_OT_3ds(bpy.types.Operator): +class EXPORT_OT_autodesk_3ds(bpy.types.Operator): '''Export to 3DS file format (.3ds).''' - __idname__ = "export.3ds" + __idname__ = "export.autodesk_3ds" __label__ = 'Export 3DS' # List of operator properties, the attributes will be assigned @@ -1117,9 +1117,9 @@ class EXPORT_OT_3ds(bpy.types.Operator): print("Poll") return context.active_object != None -bpy.ops.add(EXPORT_OT_3ds) +bpy.ops.add(EXPORT_OT_autodesk_3ds) # Add to a menu import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.3ds", text="Autodesk 3DS...") +menu_func = lambda self, context: self.layout.itemO("export.autodesk_3ds", text="Autodesk 3DS...") menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_3ds.py index cbd9d8948ab..da0634a26d7 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_3ds.py @@ -1122,9 +1122,9 @@ else: ''' -class IMPORT_OT_3ds(bpy.types.Operator): +class IMPORT_OT_autodesk_3ds(bpy.types.Operator): '''Import from 3DS file format (.3ds)''' - __idname__ = "import.3ds" + __idname__ = "import.autodesk_3ds" __label__ = 'Import 3DS' # List of operator properties, the attributes will be assigned @@ -1147,10 +1147,10 @@ class IMPORT_OT_3ds(bpy.types.Operator): wm.add_fileselect(self.__operator__) return ('RUNNING_MODAL',) -bpy.ops.add(IMPORT_OT_3ds) +bpy.ops.add(IMPORT_OT_autodesk_3ds) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("import.3ds", text="3D Studio (.3ds)...") +menu_func = lambda self, context: self.layout.itemO("import.autodesk_3ds", text="3D Studio (.3ds)...") menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_import, menu_func) # NOTES: diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 639b9836b0c..240b0e2720a 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -311,6 +311,67 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): exec("context.%s=advance_enum" % self.path) return ('FINISHED',) +doc_id = bpy.props.StringProperty(attr="doc_id", name="Doc ID", description="ID for the documentation", maxlen= 1024, default= "") +doc_new = bpy.props.StringProperty(attr="doc_new", name="Doc New", description="", maxlen= 1024, default= "") + +class WM_OT_doc_view(bpy.types.Operator): + '''Load online reference docs''' + __idname__ = "wm.doc_view" + __label__ = "View Documentation" + __props__ = [doc_id] + _prefix = 'http://www.blender.org/documentation/250PythonDoc' + def execute(self, context): + id_split = self.doc_id.split('.') + # Example url, http://www.graphicall.org/ftp/ideasman42/html/bpy.types.Space3DView-class.html#background_image + # Example operator http://www.graphicall.org/ftp/ideasman42/html/bpy.ops.boid-module.html#boidrule_add + if len(id_split) == 1: # rna, class + url= '%s/bpy.types.%s-class.html' % (self._prefix, id_split[0]) + elif len(id_split) == 2: # rna, class.prop + class_name, class_prop = id_split + + if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): + url= '%s/bpy.ops.%s-module.html#%s' % (self._prefix, class_name, class_prop) + else: + url= '%s/bpy.types.%s-class.html#%s' % (self._prefix, class_name, class_prop) + + else: + return ('PASS_THROUGH',) + + import webbrowser + webbrowser.open(url) + + return ('FINISHED',) + + +class WM_OT_doc_edit(bpy.types.Operator): + '''Load online reference docs''' + __idname__ = "wm.doc_edit" + __label__ = "Edit Documentation" + __props__ = [doc_id, doc_new] + + def execute(self, context): + + class_name, class_prop = self.doc_id.split('.') + + if self.doc_new: + + if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): + # operator + print("operator - old:'%s' -> new:'%s'" % ('', self.doc_new)) + else: + doc_orig = getattr(bpy.types, class_name).__rna__.properties[class_prop].description + if doc_orig != self.doc_new: + print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + # aparently we can use xml/rpc to upload docs to an online review board + # Ugh, will run this on every edit.... better not make any mistakes + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.invoke_props_popup(self.__operator__, event) + return ('RUNNING_MODAL',) + bpy.ops.add(MESH_OT_delete_edgeloop) @@ -324,3 +385,5 @@ bpy.ops.add(WM_OT_context_toggle_enum) bpy.ops.add(WM_OT_context_cycle_enum) bpy.ops.add(WM_OT_context_cycle_int) +bpy.ops.add(WM_OT_doc_view) +bpy.ops.add(WM_OT_doc_edit) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index d1e4ac13ab7..fd1c23cad3c 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -241,14 +241,8 @@ bpy.types.register(INFO_MT_help) class HelpOperator(bpy.types.Operator): def execute(self, context): - try: import webbrowser - except: webbrowser = None - - if webbrowser: - webbrowser.open(self.__URL__) - else: - raise Exception("Operator requires a full Python installation") - + import webbrowser + webbrowser.open(self.__URL__) return ('FINISHED',) class HELP_OT_manual(HelpOperator): diff --git a/source/blender/blenkernel/intern/sequence.c b/source/blender/blenkernel/intern/sequence.c index 48eb58687da..42251cc54df 100644 --- a/source/blender/blenkernel/intern/sequence.c +++ b/source/blender/blenkernel/intern/sequence.c @@ -3425,7 +3425,7 @@ static int shuffle_seq_time_offset_test(ListBase * seqbasep, char dir) for(seq= seqbasep->first; seq; seq= seq->next) { if(seq->tmp) { for(seq_other= seqbasep->first; seq_other; seq_other= seq_other->next) { - if(seq_overlap(seq, seq_other)) { + if(!seq_other->tmp && seq_overlap(seq, seq_other)) { if(dir=='L') { offset= MIN2(offset, seq_other->startdisp - seq->enddisp); } diff --git a/source/blender/editors/interface/interface_anim.c b/source/blender/editors/interface/interface_anim.c index ca7401c36be..4ddfde5e2bb 100644 --- a/source/blender/editors/interface/interface_anim.c +++ b/source/blender/editors/interface/interface_anim.c @@ -240,11 +240,9 @@ void ui_but_anim_menu(bContext *C, uiBut *but) int length; if(but->rnapoin.data && but->rnaprop) { - pup= uiPupMenuBegin(C, RNA_property_ui_name(but->rnaprop), 0); - layout= uiPupMenuLayout(pup); - + length= RNA_property_array_length(&but->rnapoin, but->rnaprop); - + if(but->flag & UI_BUT_ANIMATED_KEY) { if(length) { uiItemBooleanO(layout, "Replace Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); @@ -263,20 +261,20 @@ void ui_but_anim_menu(bContext *C, uiBut *but) uiItemBooleanO(layout, "Insert Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); uiItemBooleanO(layout, "Insert Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); } - else + else uiItemBooleanO(layout, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); } - + if(but->flag & UI_BUT_DRIVEN) { uiItemS(layout); - + if(length) { uiItemBooleanO(layout, "Delete Drivers", 0, "ANIM_OT_remove_driver_button", "all", 1); uiItemBooleanO(layout, "Delete Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); } else uiItemBooleanO(layout, "Delete Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); - + uiItemO(layout, "Copy Driver", 0, "ANIM_OT_copy_driver_button"); if (ANIM_driver_can_paste()) uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); @@ -284,21 +282,21 @@ void ui_but_anim_menu(bContext *C, uiBut *but) else if(but->flag & UI_BUT_ANIMATED_KEY); else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { uiItemS(layout); - + if(length) { uiItemBooleanO(layout, "Add Drivers", 0, "ANIM_OT_add_driver_button", "all", 1); uiItemBooleanO(layout, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); } else uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); - - if (ANIM_driver_can_paste()) + + if (ANIM_driver_can_paste()) uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); } - + if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { uiItemS(layout); - + if(length) { uiItemBooleanO(layout, "Add All to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 1); uiItemBooleanO(layout, "Add Single to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 0); @@ -309,11 +307,15 @@ void ui_but_anim_menu(bContext *C, uiBut *but) uiItemO(layout, "Remove from Keying Set", 0, "ANIM_OT_remove_keyingset_button"); } } - + uiItemS(layout); - + uiItemO(layout, "Copy Data Path", 0, "ANIM_OT_copy_clipboard_button"); - + + uiItemS(layout); + + //ui_but_doc_menu(layout, &but->rnapoin, but->rnaprop); + uiPupMenuEnd(C, pup); } } diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index c963848b923..3386a2e3bda 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -51,6 +51,7 @@ #include "ED_screen.h" #include "ED_util.h" +#include "ED_keyframing.h" #include "UI_interface.h" @@ -3378,6 +3379,145 @@ static uiBlock *menu_change_hotkey(bContext *C, ARegion *ar, void *arg_but) return block; } +static int ui_but_menu(bContext *C, uiBut *but) +{ + uiPopupMenu *pup; + uiLayout *layout; + int length; + char *name; + + if((but->rnapoin.data && but->rnaprop)==0 && but->optype==NULL) + return 0; + + + if(but->rnaprop) + name= RNA_property_ui_name(but->rnaprop); + else if (but->optype) + name= but->optype->name; + else + name= ""; // XXX - should never happen. + + pup= uiPupMenuBegin(C, name, 0); + layout= uiPupMenuLayout(pup); + + if(but->rnapoin.data && but->rnaprop) { + + length= RNA_property_array_length(&but->rnapoin, but->rnaprop); + + if(but->flag & UI_BUT_ANIMATED_KEY) { + if(length) { + uiItemBooleanO(layout, "Replace Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); + uiItemBooleanO(layout, "Replace Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + uiItemBooleanO(layout, "Delete Keyframes", 0, "ANIM_OT_delete_keyframe_button", "all", 1); + uiItemBooleanO(layout, "Delete Single Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); + } + else { + uiItemBooleanO(layout, "Replace Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + uiItemBooleanO(layout, "Delete Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); + } + } + else if(but->flag & UI_BUT_DRIVEN); + else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { + if(length) { + uiItemBooleanO(layout, "Insert Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); + uiItemBooleanO(layout, "Insert Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + } + else + uiItemBooleanO(layout, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + } + + if(but->flag & UI_BUT_DRIVEN) { + uiItemS(layout); + + if(length) { + uiItemBooleanO(layout, "Delete Drivers", 0, "ANIM_OT_remove_driver_button", "all", 1); + uiItemBooleanO(layout, "Delete Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + } + else + uiItemBooleanO(layout, "Delete Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + + uiItemO(layout, "Copy Driver", 0, "ANIM_OT_copy_driver_button"); + if (ANIM_driver_can_paste()) + uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); + } + else if(but->flag & UI_BUT_ANIMATED_KEY); + else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { + uiItemS(layout); + + if(length) { + uiItemBooleanO(layout, "Add Drivers", 0, "ANIM_OT_add_driver_button", "all", 1); + uiItemBooleanO(layout, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); + } + else + uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); + + if (ANIM_driver_can_paste()) + uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); + } + + if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { + uiItemS(layout); + + if(length) { + uiItemBooleanO(layout, "Add All to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 1); + uiItemBooleanO(layout, "Add Single to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 0); + uiItemO(layout, "Remove from Keying Set", 0, "ANIM_OT_remove_keyingset_button"); + } + else { + uiItemBooleanO(layout, "Add to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 0); + uiItemO(layout, "Remove from Keying Set", 0, "ANIM_OT_remove_keyingset_button"); + } + } + + uiItemS(layout); + + uiItemO(layout, "Copy Data Path", 0, "ANIM_OT_copy_clipboard_button"); + + uiItemS(layout); + + + } + + + { /* Docs */ + char buf[512]; + PointerRNA ptr_props; + + if(but->rnapoin.data && but->rnaprop) { + sprintf(buf, "%s.%s", RNA_struct_identifier(but->rnapoin.type), RNA_property_identifier(but->rnaprop)); + + WM_operator_properties_create(&ptr_props, "WM_OT_doc_view"); + RNA_string_set(&ptr_props, "doc_id", buf); + uiItemFullO(layout, "View Docs", 0, "WM_OT_doc_view", ptr_props.data, WM_OP_EXEC_DEFAULT, 0); + + + WM_operator_properties_create(&ptr_props, "WM_OT_doc_edit"); + RNA_string_set(&ptr_props, "doc_id", buf); + RNA_string_set(&ptr_props, "doc_new", RNA_property_description(but->rnaprop)); + + uiItemFullO(layout, "Edit Docs (TODO)", 0, "WM_OT_doc_edit", ptr_props.data, WM_OP_INVOKE_DEFAULT, 0); + } + else if (but->optype) { + WM_operator_py_idname(buf, but->optype->idname); + + WM_operator_properties_create(&ptr_props, "WM_OT_doc_view"); + RNA_string_set(&ptr_props, "doc_id", buf); + uiItemFullO(layout, "View Docs", 0, "WM_OT_doc_view", ptr_props.data, WM_OP_EXEC_DEFAULT, 0); + + + WM_operator_properties_create(&ptr_props, "WM_OT_doc_edit"); + RNA_string_set(&ptr_props, "doc_id", buf); + RNA_string_set(&ptr_props, "doc_new", but->optype->description); + + uiItemFullO(layout, "Edit Docs (TODO)", 0, "WM_OT_doc_edit", ptr_props.data, WM_OP_INVOKE_DEFAULT, 0); + } + } + + uiPupMenuEnd(C, pup); + + return 1; +} + static int ui_do_button(bContext *C, uiBlock *block, uiBut *but, wmEvent *event) { uiHandleButtonData *data; @@ -3431,12 +3571,8 @@ static int ui_do_button(bContext *C, uiBlock *block, uiBut *but, wmEvent *event) /* handle menu */ else if(event->type == RIGHTMOUSE && event->val == KM_PRESS) { /* RMB has two options now */ - if(but->rnapoin.data && but->rnaprop) { - button_timers_tooltip_remove(C, but); - ui_but_anim_menu(C, but); - return WM_UI_HANDLER_BREAK; - } - else if((but->block->flag & UI_BLOCK_LOOP) && but->optype) { + + if((but->block->flag & UI_BLOCK_LOOP) && but->optype) { IDProperty *prop= (but->opptr)? but->opptr->data: NULL; char buf[512]; @@ -3446,6 +3582,9 @@ static int ui_do_button(bContext *C, uiBlock *block, uiBut *but, wmEvent *event) } } + else if (ui_but_menu(C, but)) { + return WM_UI_HANDLER_BREAK; + } } } diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index 97bbee0a1c3..3c3b289a945 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -475,7 +475,6 @@ void ui_but_anim_copy_driver(struct bContext *C); void ui_but_anim_paste_driver(struct bContext *C); void ui_but_anim_add_keyingset(struct bContext *C); void ui_but_anim_remove_keyingset(struct bContext *C); -void ui_but_anim_menu(struct bContext *C, uiBut *but); int ui_but_anim_expression_get(uiBut *but, char *str, int maxlen); int ui_but_anim_expression_set(uiBut *but, const char *str); void ui_but_anim_autokey(uiBut *but, struct Scene *scene, float cfra); diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index eca4eef230c..5ac3b2f4db3 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -37,6 +37,9 @@ #include "UI_interface.h" #include "UI_resources.h" +#include "WM_api.h" +#include "WM_types.h" + /*************************** RNA Utilities ******************************/ uiBut *uiDefAutoButR(uiBlock *block, PointerRNA *ptr, PropertyRNA *prop, int index, char *name, int icon, int x1, int y1, int x2, int y2) @@ -183,4 +186,3 @@ int uiIconFromID(ID *id) return (ptr.type)? RNA_struct_ui_icon(ptr.type): 0; } - diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c index 9fb472b674a..57319df23e1 100644 --- a/source/blender/editors/screen/screen_edit.c +++ b/source/blender/editors/screen/screen_edit.c @@ -1364,8 +1364,17 @@ void ED_screen_set_scene(bContext *C, Scene *scene) if (!v3d->camera || !object_in_scene(v3d->camera, scene)) { v3d->camera= scene_find_camera(sc->scene); // XXX if (sc==curscreen) handle_view3d_lock(); - if (!v3d->camera && v3d->persp==V3D_CAMOB) - v3d->persp= V3D_PERSP; + if (!v3d->camera) { + ARegion *ar; + for(ar=v3d->regionbase.first; ar; ar= ar->next) { + if(ar->regiontype == RGN_TYPE_WINDOW) { + RegionView3D *rv3d= ar->regiondata; + + if(rv3d->persp==RV3D_CAMOB) + rv3d->persp= RV3D_PERSP; + } + } + } } } sl= sl->next; @@ -1429,7 +1438,7 @@ ScrArea *ed_screen_fullarea(bContext *C, wmWindow *win, ScrArea *sa) if(old->full) break; if(old==NULL) { printf("something wrong in areafullscreen\n"); - return; + return NULL; } // old feature described below (ton) // in autoplay screens the headers are disabled by @@ -1455,7 +1464,8 @@ ScrArea *ed_screen_fullarea(bContext *C, wmWindow *win, ScrArea *sa) oldscreen= win->screen; /* is there only 1 area? */ - if(oldscreen->areabase.first==oldscreen->areabase.last) return; + if(oldscreen->areabase.first==oldscreen->areabase.last) + return NULL; oldscreen->full = SCREENFULL; diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index efcbc953456..e65ad221501 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -2087,19 +2087,19 @@ static int region_foursplit_exec(bContext *C, wmOperator *op) RegionView3D *rv3d; rv3d= ar->regiondata; - rv3d->viewlock= RV3D_LOCKED; rv3d->view= V3D_VIEW_FRONT; rv3d->persp= V3D_ORTHO; + rv3d->viewlock= RV3D_LOCKED; rv3d->view= RV3D_VIEW_FRONT; rv3d->persp= RV3D_ORTHO; ar= ar->next; rv3d= ar->regiondata; - rv3d->viewlock= RV3D_LOCKED; rv3d->view= V3D_VIEW_TOP; rv3d->persp= V3D_ORTHO; + rv3d->viewlock= RV3D_LOCKED; rv3d->view= RV3D_VIEW_TOP; rv3d->persp= RV3D_ORTHO; ar= ar->next; rv3d= ar->regiondata; - rv3d->viewlock= RV3D_LOCKED; rv3d->view= V3D_VIEW_RIGHT; rv3d->persp= V3D_ORTHO; + rv3d->viewlock= RV3D_LOCKED; rv3d->view= RV3D_VIEW_RIGHT; rv3d->persp= RV3D_ORTHO; ar= ar->next; rv3d= ar->regiondata; - rv3d->view= V3D_VIEW_CAMERA; rv3d->persp= V3D_CAMOB; + rv3d->view= RV3D_VIEW_CAMERA; rv3d->persp= RV3D_CAMOB; } WM_event_add_notifier(C, NC_SCREEN|NA_EDITED, NULL); diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index d7375ee4e55..8100bf38995 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -60,6 +60,7 @@ #include "ED_armature.h" #include "ED_screen.h" +#include "ED_physics.h" #include "UI_interface.h" #include "UI_resources.h" diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index 15e41a66981..487c55bec9b 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -395,14 +395,14 @@ static void drawgrid(UnitSettings *unit, ARegion *ar, View3D *v3d, char **grid_u setlinestyle(0); /* center cross */ - if( ELEM(rv3d->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT)) + if( ELEM(rv3d->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT)) UI_make_axis_color(col, col2, 'y'); else UI_make_axis_color(col, col2, 'x'); glColor3ubv((GLubyte *)col2); fdrawline(0.0, y, (float)ar->winx, y); - if( ELEM(rv3d->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM)) + if( ELEM(rv3d->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) UI_make_axis_color(col, col2, 'y'); else UI_make_axis_color(col, col2, 'z'); glColor3ubv((GLubyte *)col2); @@ -662,11 +662,11 @@ static void draw_view_icon(RegionView3D *rv3d) { BIFIconID icon; - if( ELEM(rv3d->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM)) + if( ELEM(rv3d->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) icon= ICON_AXIS_TOP; - else if( ELEM(rv3d->view, V3D_VIEW_FRONT, V3D_VIEW_BACK)) + else if( ELEM(rv3d->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK)) icon= ICON_AXIS_FRONT; - else if( ELEM(rv3d->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT)) + else if( ELEM(rv3d->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT)) icon= ICON_AXIS_SIDE; else return ; @@ -683,33 +683,33 @@ static char *view3d_get_name(View3D *v3d, RegionView3D *rv3d) char *name = NULL; switch (rv3d->view) { - case V3D_VIEW_FRONT: - if (rv3d->persp == V3D_ORTHO) name = "Front Ortho"; + case RV3D_VIEW_FRONT: + if (rv3d->persp == RV3D_ORTHO) name = "Front Ortho"; else name = "Front Persp"; break; - case V3D_VIEW_BACK: - if (rv3d->persp == V3D_ORTHO) name = "Back Ortho"; + case RV3D_VIEW_BACK: + if (rv3d->persp == RV3D_ORTHO) name = "Back Ortho"; else name = "Back Persp"; break; - case V3D_VIEW_TOP: - if (rv3d->persp == V3D_ORTHO) name = "Top Ortho"; + case RV3D_VIEW_TOP: + if (rv3d->persp == RV3D_ORTHO) name = "Top Ortho"; else name = "Top Persp"; break; - case V3D_VIEW_BOTTOM: - if (rv3d->persp == V3D_ORTHO) name = "Bottom Ortho"; + case RV3D_VIEW_BOTTOM: + if (rv3d->persp == RV3D_ORTHO) name = "Bottom Ortho"; else name = "Bottom Persp"; break; - case V3D_VIEW_RIGHT: - if (rv3d->persp == V3D_ORTHO) name = "Right Ortho"; + case RV3D_VIEW_RIGHT: + if (rv3d->persp == RV3D_ORTHO) name = "Right Ortho"; else name = "Right Persp"; break; - case V3D_VIEW_LEFT: - if (rv3d->persp == V3D_ORTHO) name = "Left Ortho"; + case RV3D_VIEW_LEFT: + if (rv3d->persp == RV3D_ORTHO) name = "Left Ortho"; else name = "Left Persp"; break; default: - if (rv3d->persp==V3D_CAMOB) { + if (rv3d->persp==RV3D_CAMOB) { if ((v3d->camera) && (v3d->camera->type == OB_CAMERA)) { Camera *cam; cam = v3d->camera->data; @@ -718,7 +718,7 @@ static char *view3d_get_name(View3D *v3d, RegionView3D *rv3d) name = "Object as Camera"; } } else { - name = (rv3d->persp == V3D_ORTHO) ? "User Ortho" : "User Persp"; + name = (rv3d->persp == RV3D_ORTHO) ? "User Ortho" : "User Persp"; } break; } diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index 51f257da432..46e188bfa12 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -103,7 +103,7 @@ static void view3d_boxview_clip(ScrArea *sa) RegionView3D *rv3d= ar->regiondata; if(rv3d->viewlock & RV3D_BOXCLIP) { - if(ELEM(rv3d->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM)) { + if(ELEM(rv3d->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) { if(ar->winx>ar->winy) x1= rv3d->dist; else x1= ar->winx*rv3d->dist/ar->winy; @@ -113,7 +113,7 @@ static void view3d_boxview_clip(ScrArea *sa) ofs[0]= rv3d->ofs[0]; ofs[1]= rv3d->ofs[1]; } - else if(ELEM(rv3d->view, V3D_VIEW_FRONT, V3D_VIEW_BACK)) { + else if(ELEM(rv3d->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK)) { ofs[2]= rv3d->ofs[2]; if(ar->winx>ar->winy) z1= ar->winy*rv3d->dist/ar->winx; @@ -181,22 +181,22 @@ static void view3d_boxview_sync(ScrArea *sa, ARegion *ar) if(rv3dtest->viewlock) { rv3dtest->dist= rv3d->dist; - if( ELEM(rv3d->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM) ) { - if( ELEM(rv3dtest->view, V3D_VIEW_FRONT, V3D_VIEW_BACK)) + if( ELEM(rv3d->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM) ) { + if( ELEM(rv3dtest->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK)) rv3dtest->ofs[0]= rv3d->ofs[0]; - else if( ELEM(rv3dtest->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT)) + else if( ELEM(rv3dtest->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT)) rv3dtest->ofs[1]= rv3d->ofs[1]; } - else if( ELEM(rv3d->view, V3D_VIEW_FRONT, V3D_VIEW_BACK) ) { - if( ELEM(rv3dtest->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM)) + else if( ELEM(rv3d->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK) ) { + if( ELEM(rv3dtest->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) rv3dtest->ofs[0]= rv3d->ofs[0]; - else if( ELEM(rv3dtest->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT)) + else if( ELEM(rv3dtest->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT)) rv3dtest->ofs[2]= rv3d->ofs[2]; } - else if( ELEM(rv3d->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT) ) { - if( ELEM(rv3dtest->view, V3D_VIEW_TOP, V3D_VIEW_BOTTOM)) + else if( ELEM(rv3d->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT) ) { + if( ELEM(rv3dtest->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) rv3dtest->ofs[1]= rv3d->ofs[1]; - if( ELEM(rv3dtest->view, V3D_VIEW_FRONT, V3D_VIEW_BACK)) + if( ELEM(rv3dtest->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK)) rv3dtest->ofs[2]= rv3d->ofs[2]; } @@ -325,12 +325,12 @@ static const float thres = 0.93f; //cos(20 deg); static float snapquats[39][6] = { /*{q0, q1, q3, q4, view, oposite_direction}*/ -{COS45, -SIN45, 0.0, 0.0, V3D_VIEW_FRONT, 0}, //front -{0.0, 0.0, -SIN45, -SIN45, V3D_VIEW_BACK, 0}, //back -{1.0, 0.0, 0.0, 0.0, V3D_VIEW_TOP, 0}, //top -{0.0, -1.0, 0.0, 0.0, V3D_VIEW_BOTTOM, 0}, //bottom -{0.5, -0.5, -0.5, -0.5, V3D_VIEW_LEFT, 0}, //left -{0.5, -0.5, 0.5, 0.5, V3D_VIEW_RIGHT, 0}, //right +{COS45, -SIN45, 0.0, 0.0, RV3D_VIEW_FRONT, 0}, //front +{0.0, 0.0, -SIN45, -SIN45, RV3D_VIEW_BACK, 0}, //back +{1.0, 0.0, 0.0, 0.0, RV3D_VIEW_TOP, 0}, //top +{0.0, -1.0, 0.0, 0.0, RV3D_VIEW_BOTTOM, 0}, //bottom +{0.5, -0.5, -0.5, -0.5, RV3D_VIEW_LEFT, 0}, //left +{0.5, -0.5, 0.5, 0.5, RV3D_VIEW_RIGHT, 0}, //right /* some more 45 deg snaps */ {0.65328145027160645, -0.65328145027160645, 0.27059805393218994, 0.27059805393218994, 0, 0}, @@ -601,12 +601,12 @@ static int viewrotate_invoke(bContext *C, wmOperator *op, wmEvent *event) vod= op->customdata; /* switch from camera view when: */ - if(vod->rv3d->persp != V3D_PERSP) { + if(vod->rv3d->persp != RV3D_PERSP) { if (U.uiflag & USER_AUTOPERSP) - vod->rv3d->persp= V3D_PERSP; - else if(vod->rv3d->persp==V3D_CAMOB) - vod->rv3d->persp= V3D_PERSP; + vod->rv3d->persp= RV3D_PERSP; + else if(vod->rv3d->persp==RV3D_CAMOB) + vod->rv3d->persp= RV3D_PERSP; ED_region_tag_redraw(vod->ar); } @@ -665,7 +665,7 @@ void viewmove_modal_keymap(wmKeyConfig *keyconf) static void viewmove_apply(ViewOpsData *vod, int x, int y) { - if(vod->rv3d->persp==V3D_CAMOB) { + if(vod->rv3d->persp==RV3D_CAMOB) { float max= (float)MAX2(vod->ar->winx, vod->ar->winy); vod->rv3d->camdx += (vod->oldx - x)/(max); @@ -861,7 +861,7 @@ static void viewzoom_apply(ViewOpsData *vod, int x, int y) view_zoom_mouseloc(vod->ar, zfac, vod->oldx, vod->oldy); - if ((U.uiflag & USER_ORBIT_ZBUF) && (U.viewzoom==USER_ZOOM_CONT) && (vod->rv3d->persp==V3D_PERSP)) { + if ((U.uiflag & USER_ORBIT_ZBUF) && (U.viewzoom==USER_ZOOM_CONT) && (vod->rv3d->persp==RV3D_PERSP)) { float upvec[3], mat[3][3]; /* Secret apricot feature, translate the view when in continues mode */ @@ -877,7 +877,7 @@ static void viewzoom_apply(ViewOpsData *vod, int x, int y) if(vod->rv3d->dist>10.0*vod->far) vod->rv3d->dist=10.0*vod->far; } -// XXX if(vod->rv3d->persp==V3D_ORTHO || vod->rv3d->persp==V3D_CAMOB) preview3d_event= 0; +// XXX if(vod->rv3d->persp==RV3D_ORTHO || vod->rv3d->persp==RV3D_CAMOB) preview3d_event= 0; if(vod->rv3d->viewlock & RV3D_BOXVIEW) view3d_boxview_sync(vod->sa, vod->ar); @@ -931,7 +931,7 @@ static int viewzoom_exec(bContext *C, wmOperator *op) if(delta < 0) { /* this min and max is also in viewmove() */ - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { rv3d->camzoom-= 10; if(rv3d->camzoom<-30) rv3d->camzoom= -30; } @@ -940,7 +940,7 @@ static int viewzoom_exec(bContext *C, wmOperator *op) } } else { - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { rv3d->camzoom+= 10; if(rv3d->camzoom>300) rv3d->camzoom= 300; } @@ -1062,8 +1062,8 @@ static int viewhome_exec(bContext *C, wmOperator *op) /* was view3d_home() in 2. new_dist*= size; } - if (rv3d->persp==V3D_CAMOB) { - rv3d->persp= V3D_PERSP; + if (rv3d->persp==RV3D_CAMOB) { + rv3d->persp= RV3D_PERSP; smooth_view(C, NULL, v3d->camera, new_ofs, NULL, &new_dist, NULL); } else { @@ -1179,7 +1179,7 @@ static int viewcenter_exec(bContext *C, wmOperator *op) /* like a localview with afm[2]= (max[2]-min[2]); size= MAX3(afm[0], afm[1], afm[2]); /* perspective should be a bit farther away to look nice */ - if(rv3d->persp==V3D_ORTHO) + if(rv3d->persp==RV3D_ORTHO) size*= 0.7; if(size <= v3d->near*1.5f) size= v3d->near*1.5f; @@ -1201,8 +1201,8 @@ static int viewcenter_exec(bContext *C, wmOperator *op) /* like a localview with v3d->cursor[1]= -new_ofs[1]; v3d->cursor[2]= -new_ofs[2]; - if (rv3d->persp==V3D_CAMOB) { - rv3d->persp= V3D_PERSP; + if (rv3d->persp==RV3D_CAMOB) { + rv3d->persp= RV3D_PERSP; smooth_view(C, v3d->camera, NULL, new_ofs, NULL, &new_dist, NULL); } else { @@ -1284,7 +1284,7 @@ static int view3d_render_border_invoke(bContext *C, wmOperator *op, wmEvent *eve RegionView3D *rv3d= CTX_wm_region_view3d(C); /* if not in camera view do not exec the operator*/ - if (rv3d->persp == V3D_CAMOB) return WM_border_select_invoke(C, op, event); + if (rv3d->persp == RV3D_CAMOB) return WM_border_select_invoke(C, op, event); else return OPERATOR_PASS_THROUGH; } @@ -1384,7 +1384,7 @@ static int view3d_zoom_border_exec(bContext *C, wmOperator *op) cent[0] = (((double)rect.xmin)+((double)rect.xmax)) / 2; cent[1] = (((double)rect.ymin)+((double)rect.ymax)) / 2; - if (rv3d->persp==V3D_PERSP) { + if (rv3d->persp==RV3D_PERSP) { double p_corner[3]; /* no depths to use, we cant do anything! */ @@ -1455,7 +1455,7 @@ static int view3d_zoom_border_invoke(bContext *C, wmOperator *op, wmEvent *event RegionView3D *rv3d= CTX_wm_region_view3d(C); /* if in camera view do not exec the operator so we do not conflict with set render border*/ - if (rv3d->persp != V3D_CAMOB) + if (rv3d->persp != RV3D_CAMOB) return WM_border_select_invoke(C, op, event); else return OPERATOR_PASS_THROUGH; @@ -1489,13 +1489,13 @@ void VIEW3D_OT_zoom_border(wmOperatorType *ot) /* ********************* Changing view operator ****************** */ static EnumPropertyItem prop_view_items[] = { - {V3D_VIEW_FRONT, "FRONT", 0, "Front", "View From the Front"}, - {V3D_VIEW_BACK, "BACK", 0, "Back", "View From the Back"}, - {V3D_VIEW_LEFT, "LEFT", 0, "Left", "View From the Left"}, - {V3D_VIEW_RIGHT, "RIGHT", 0, "Right", "View From the Right"}, - {V3D_VIEW_TOP, "TOP", 0, "Top", "View From the Top"}, - {V3D_VIEW_BOTTOM, "BOTTOM", 0, "Bottom", "View From the Bottom"}, - {V3D_VIEW_CAMERA, "CAMERA", 0, "Camera", "View From the active amera"}, + {RV3D_VIEW_FRONT, "FRONT", 0, "Front", "View From the Front"}, + {RV3D_VIEW_BACK, "BACK", 0, "Back", "View From the Back"}, + {RV3D_VIEW_LEFT, "LEFT", 0, "Left", "View From the Left"}, + {RV3D_VIEW_RIGHT, "RIGHT", 0, "Right", "View From the Right"}, + {RV3D_VIEW_TOP, "TOP", 0, "Top", "View From the Top"}, + {RV3D_VIEW_BOTTOM, "BOTTOM", 0, "Bottom", "View From the Bottom"}, + {RV3D_VIEW_CAMERA, "CAMERA", 0, "Camera", "View From the active amera"}, {0, NULL, 0, NULL, NULL}}; static void axis_set_view(bContext *C, float q1, float q2, float q3, float q4, short view, int perspo) @@ -1506,12 +1506,12 @@ static void axis_set_view(bContext *C, float q1, float q2, float q3, float q4, s if(rv3d->viewlock) { /* only pass on if */ - if(rv3d->view==V3D_VIEW_FRONT && view==V3D_VIEW_BACK); - else if(rv3d->view==V3D_VIEW_BACK && view==V3D_VIEW_FRONT); - else if(rv3d->view==V3D_VIEW_RIGHT && view==V3D_VIEW_LEFT); - else if(rv3d->view==V3D_VIEW_LEFT && view==V3D_VIEW_RIGHT); - else if(rv3d->view==V3D_VIEW_BOTTOM && view==V3D_VIEW_TOP); - else if(rv3d->view==V3D_VIEW_TOP && view==V3D_VIEW_BOTTOM); + if(rv3d->view==RV3D_VIEW_FRONT && view==RV3D_VIEW_BACK); + else if(rv3d->view==RV3D_VIEW_BACK && view==RV3D_VIEW_FRONT); + else if(rv3d->view==RV3D_VIEW_RIGHT && view==RV3D_VIEW_LEFT); + else if(rv3d->view==RV3D_VIEW_LEFT && view==RV3D_VIEW_RIGHT); + else if(rv3d->view==RV3D_VIEW_BOTTOM && view==RV3D_VIEW_TOP); + else if(rv3d->view==RV3D_VIEW_TOP && view==RV3D_VIEW_BOTTOM); else return; } @@ -1525,17 +1525,17 @@ static void axis_set_view(bContext *C, float q1, float q2, float q3, float q4, s return; } - if (rv3d->persp==V3D_CAMOB && v3d->camera) { + if (rv3d->persp==RV3D_CAMOB && v3d->camera) { - if (U.uiflag & USER_AUTOPERSP) rv3d->persp= V3D_ORTHO; - else if(rv3d->persp==V3D_CAMOB) rv3d->persp= perspo; + if (U.uiflag & USER_AUTOPERSP) rv3d->persp= RV3D_ORTHO; + else if(rv3d->persp==RV3D_CAMOB) rv3d->persp= perspo; smooth_view(C, v3d->camera, NULL, rv3d->ofs, new_quat, NULL, NULL); } else { - if (U.uiflag & USER_AUTOPERSP) rv3d->persp= V3D_ORTHO; - else if(rv3d->persp==V3D_CAMOB) rv3d->persp= perspo; + if (U.uiflag & USER_AUTOPERSP) rv3d->persp= RV3D_ORTHO; + else if(rv3d->persp==RV3D_CAMOB) rv3d->persp= perspo; smooth_view(C, NULL, NULL, NULL, new_quat, NULL, NULL); } @@ -1547,7 +1547,7 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) View3D *v3d = CTX_wm_view3d(C); RegionView3D *rv3d= CTX_wm_region_view3d(C); Scene *scene= CTX_data_scene(C); - static int perspo=V3D_PERSP; + static int perspo=RV3D_PERSP; int viewnum; viewnum = RNA_enum_get(op->ptr, "type"); @@ -1555,35 +1555,35 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) /* Use this to test if we started out with a camera */ switch (viewnum) { - case V3D_VIEW_BOTTOM : + case RV3D_VIEW_BOTTOM : axis_set_view(C, 0.0, -1.0, 0.0, 0.0, viewnum, perspo); break; - case V3D_VIEW_BACK: + case RV3D_VIEW_BACK: axis_set_view(C, 0.0, 0.0, (float)-cos(M_PI/4.0), (float)-cos(M_PI/4.0), viewnum, perspo); break; - case V3D_VIEW_LEFT: + case RV3D_VIEW_LEFT: axis_set_view(C, 0.5, -0.5, 0.5, 0.5, viewnum, perspo); break; - case V3D_VIEW_TOP: + case RV3D_VIEW_TOP: axis_set_view(C, 1.0, 0.0, 0.0, 0.0, viewnum, perspo); break; - case V3D_VIEW_FRONT: + case RV3D_VIEW_FRONT: axis_set_view(C, (float)cos(M_PI/4.0), (float)-sin(M_PI/4.0), 0.0, 0.0, viewnum, perspo); break; - case V3D_VIEW_RIGHT: + case RV3D_VIEW_RIGHT: axis_set_view(C, 0.5, -0.5, -0.5, -0.5, viewnum, perspo); break; - case V3D_VIEW_CAMERA: + case RV3D_VIEW_CAMERA: if(rv3d->viewlock==0) { /* lastview - */ - if(rv3d->persp != V3D_CAMOB) { + if(rv3d->persp != RV3D_CAMOB) { /* store settings of current view before allowing overwriting with camera view */ QUATCOPY(rv3d->lviewquat, rv3d->viewquat); rv3d->lview= rv3d->view; @@ -1610,7 +1610,7 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) v3d->camera= scene_find_camera(scene); /*handle_view3d_lock();*/ } - rv3d->persp= V3D_CAMOB; + rv3d->persp= RV3D_CAMOB; smooth_view(C, NULL, v3d->camera, rv3d->ofs, rv3d->viewquat, &rv3d->dist, &v3d->lens); } @@ -1626,7 +1626,7 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) break; } - if(rv3d->persp != V3D_CAMOB) perspo= rv3d->persp; + if(rv3d->persp != RV3D_CAMOB) perspo= rv3d->persp; return OPERATOR_FINISHED; } @@ -1665,7 +1665,7 @@ static int vieworbit_exec(bContext *C, wmOperator *op) if(rv3d->viewlock==0) { - if(rv3d->persp != V3D_CAMOB) { + if(rv3d->persp != RV3D_CAMOB) { if(orbitdir == V3D_VIEW_STEPLEFT || orbitdir == V3D_VIEW_STEPRIGHT) { /* z-axis */ phi= (float)(M_PI/360.0)*U.pad_rot_angle; @@ -1771,9 +1771,9 @@ static int viewpersportho_exec(bContext *C, wmOperator *op) RegionView3D *rv3d= CTX_wm_region_view3d(C); if(rv3d->viewlock==0) { - if(rv3d->persp!=V3D_ORTHO) - rv3d->persp=V3D_ORTHO; - else rv3d->persp=V3D_PERSP; + if(rv3d->persp!=RV3D_ORTHO) + rv3d->persp=RV3D_ORTHO; + else rv3d->persp=RV3D_PERSP; ED_region_tag_redraw(ar); } @@ -2195,7 +2195,7 @@ void viewmoveNDOFfly(ARegion *ar, View3D *v3d, int mode) // until the first draw and doesn't update the menu // to reflect persp mode. - rv3d->persp = V3D_PERSP; + rv3d->persp = RV3D_PERSP; // Correct the distance jump if rv3d->dist != 0 @@ -2357,7 +2357,7 @@ void viewmoveNDOF(Scene *scene, ARegion *ar, View3D *v3d, int mode) fval[6] = fval[6] / 1000000.0f; // scale more if not in perspective mode - if (rv3d->persp == V3D_ORTHO) { + if (rv3d->persp == RV3D_ORTHO) { fval[0] = fval[0] * 0.05f; fval[1] = fval[1] * 0.05f; fval[2] = fval[2] * 0.05f; @@ -2405,8 +2405,8 @@ void viewmoveNDOF(Scene *scene, ARegion *ar, View3D *v3d, int mode) */ len = zsens * sbadjust * fval[2]; - if (rv3d->persp==V3D_CAMOB) { - if(rv3d->persp==V3D_CAMOB) { /* This is stupid, please fix - TODO */ + if (rv3d->persp==RV3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { /* This is stupid, please fix - TODO */ rv3d->camzoom+= 10.0f * -len; } if (rv3d->camzoom < minZoom) rv3d->camzoom = minZoom; diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 1e11699556a..7bf50dcd5af 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -168,21 +168,30 @@ static RegionView3D *wm_region_view3d(const bContext *C) return NULL; } -static void copy_view3d_lock_space(View3D *vd, Scene *scene) +static void copy_view3d_lock_space(View3D *v3d, Scene *scene) { int bit; - if(vd->scenelock && vd->localvd==NULL) { - vd->lay= scene->lay; - vd->camera= scene->camera; + if(v3d->scenelock && v3d->localvd==NULL) { + v3d->lay= scene->lay; + v3d->camera= scene->camera; - if(vd->camera==0 && vd->persp==V3D_CAMOB) - vd->persp= V3D_PERSP; + if(v3d->camera==NULL) { + ARegion *ar; + + for(ar=v3d->regionbase.first; ar; ar= ar->next) { + if(ar->regiontype == RGN_TYPE_WINDOW) { + RegionView3D *rv3d= ar->regiondata; + if(rv3d->persp==RV3D_CAMOB) + rv3d->persp= RV3D_PERSP; + } + } + } - if((vd->lay & vd->layact) == 0) { + if((v3d->lay & v3d->layact) == 0) { for(bit= 0; bit<32; bit++) { - if(vd->lay & (1<layact= 1<lay & (1<layact= 1<ptr, "center", 1); /* numpad view hotkeys*/ - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD0, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_CAMERA); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_FRONT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD0, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_CAMERA); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_FRONT); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD2, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPDOWN); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_RIGHT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_RIGHT); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD4, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPLEFT); WM_keymap_add_item(keymap, "VIEW3D_OT_view_persportho", PAD5, KM_PRESS, 0, 0); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD6, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPRIGHT); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_TOP); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_TOP); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD8, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPUP); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_BACK); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_LEFT); - RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_BOTTOM); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_BACK); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_LEFT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_BOTTOM); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_pan", PAD2, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_PANDOWN); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_pan", PAD4, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_PANLEFT); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_pan", PAD6, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_PANRIGHT); diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index b108d38a3f9..300825bfe7d 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -285,7 +285,7 @@ void smooth_view(bContext *C, Object *oldcamera, Object *camera, float *ofs, flo rv3d->view= 0; /* ensure it shows correct */ - if(sms.to_camera) rv3d->persp= V3D_PERSP; + if(sms.to_camera) rv3d->persp= RV3D_PERSP; /* keep track of running timer! */ if(rv3d->sms==NULL) @@ -329,7 +329,7 @@ static int view3d_smoothview_invoke(bContext *C, wmOperator *op, wmEvent *event) /* if we went to camera, store the original */ if(sms->to_camera) { - rv3d->persp= V3D_CAMOB; + rv3d->persp= RV3D_CAMOB; VECCOPY(rv3d->ofs, sms->orig_ofs); QUATCOPY(rv3d->viewquat, sms->orig_quat); rv3d->dist = sms->orig_dist; @@ -411,7 +411,7 @@ static int view3d_setcameratoview_exec(bContext *C, wmOperator *op) RegionView3D *rv3d= CTX_wm_region_view3d(C); setcameratoview3d(v3d, rv3d, v3d->camera); - rv3d->persp = V3D_CAMOB; + rv3d->persp = RV3D_CAMOB; WM_event_add_notifier(C, NC_OBJECT|ND_TRANSFORM, CTX_data_scene(C)); @@ -452,7 +452,7 @@ static int view3d_setobjectascamera_exec(bContext *C, wmOperator *op) Scene *scene= CTX_data_scene(C); if(BASACT) { - rv3d->persp= V3D_CAMOB; + rv3d->persp= RV3D_CAMOB; v3d->camera= OBACT; if(v3d->scenelock) scene->camera= OBACT; @@ -487,7 +487,7 @@ void viewline(ARegion *ar, View3D *v3d, float mval[2], float ray_start[3], float RegionView3D *rv3d= ar->regiondata; float vec[4]; - if(rv3d->persp != V3D_ORTHO){ + if(rv3d->persp != RV3D_ORTHO){ vec[0]= 2.0f * mval[0] / ar->winx - 1; vec[1]= 2.0f * mval[1] / ar->winy - 1; vec[2]= -1.0f; @@ -820,7 +820,7 @@ int get_view3d_ortho(View3D *v3d, RegionView3D *rv3d) { Camera *cam; - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { if(v3d->camera && v3d->camera->type==OB_CAMERA) { cam= v3d->camera->data; @@ -833,7 +833,7 @@ int get_view3d_ortho(View3D *v3d, RegionView3D *rv3d) return 0; } - if(rv3d->persp==V3D_ORTHO) + if(rv3d->persp==RV3D_ORTHO) return 1; return 0; @@ -852,7 +852,7 @@ int get_view3d_viewplane(View3D *v3d, RegionView3D *rv3d, int winxi, int winyi, *clipsta= v3d->near; *clipend= v3d->far; - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { if(v3d->camera) { if(v3d->camera->type==OB_LAMP ) { Lamp *la; @@ -875,7 +875,7 @@ int get_view3d_viewplane(View3D *v3d, RegionView3D *rv3d, int winxi, int winyi, } } - if(rv3d->persp==V3D_ORTHO) { + if(rv3d->persp==RV3D_ORTHO) { if(winx>winy) x1= -rv3d->dist; else x1= -winx*rv3d->dist/winy; x2= -x1; @@ -890,7 +890,7 @@ int get_view3d_viewplane(View3D *v3d, RegionView3D *rv3d, int winxi, int winyi, } else { /* fac for zoom, also used for camdx */ - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { fac= (1.41421+( (float)rv3d->camzoom )/50.0); fac*= fac; } @@ -1009,7 +1009,7 @@ static void obmat_to_viewmat(View3D *v3d, RegionView3D *rv3d, Object *ob, short Mat3CpyMat4(tmat, rv3d->viewmat); if (smooth) { float new_quat[4]; - if (rv3d->persp==V3D_CAMOB && v3d->camera) { + if (rv3d->persp==RV3D_CAMOB && v3d->camera) { /* were from a camera view */ float orig_ofs[3]; @@ -1020,13 +1020,13 @@ static void obmat_to_viewmat(View3D *v3d, RegionView3D *rv3d, Object *ob, short /* Switch from camera view */ Mat3ToQuat(tmat, new_quat); - rv3d->persp=V3D_PERSP; + rv3d->persp=RV3D_PERSP; rv3d->dist= 0.0; view_settings_from_ob(v3d->camera, rv3d->ofs, NULL, NULL, &v3d->lens); smooth_view(NULL, NULL, NULL, orig_ofs, new_quat, &orig_dist, &orig_lens); // XXX - rv3d->persp=V3D_CAMOB; /* just to be polite, not needed */ + rv3d->persp=RV3D_CAMOB; /* just to be polite, not needed */ } else { Mat3ToQuat(tmat, new_quat); @@ -1042,27 +1042,27 @@ static void obmat_to_viewmat(View3D *v3d, RegionView3D *rv3d, Object *ob, short static void view3d_viewlock(RegionView3D *rv3d) { switch(rv3d->view) { - case V3D_VIEW_BOTTOM : + case RV3D_VIEW_BOTTOM : QUATSET(rv3d->viewquat,0.0, -1.0, 0.0, 0.0); break; - case V3D_VIEW_BACK: + case RV3D_VIEW_BACK: QUATSET(rv3d->viewquat,0.0, 0.0, (float)-cos(M_PI/4.0), (float)-cos(M_PI/4.0)); break; - case V3D_VIEW_LEFT: + case RV3D_VIEW_LEFT: QUATSET(rv3d->viewquat,0.5, -0.5, 0.5, 0.5); break; - case V3D_VIEW_TOP: + case RV3D_VIEW_TOP: QUATSET(rv3d->viewquat,1.0, 0.0, 0.0, 0.0); break; - case V3D_VIEW_FRONT: + case RV3D_VIEW_FRONT: QUATSET(rv3d->viewquat,(float)cos(M_PI/4.0), (float)-sin(M_PI/4.0), 0.0, 0.0); break; - case V3D_VIEW_RIGHT: + case RV3D_VIEW_RIGHT: QUATSET(rv3d->viewquat, 0.5, -0.5, -0.5, -0.5); break; } @@ -1071,7 +1071,7 @@ static void view3d_viewlock(RegionView3D *rv3d) /* dont set windows active in in here, is used by renderwin too */ void setviewmatrixview3d(Scene *scene, View3D *v3d, RegionView3D *rv3d) { - if(rv3d->persp==V3D_CAMOB) { /* obs/camera */ + if(rv3d->persp==RV3D_CAMOB) { /* obs/camera */ if(v3d->camera) { where_is_object(scene, v3d->camera); obmat_to_viewmat(v3d, rv3d, v3d->camera, 0); @@ -1087,7 +1087,7 @@ void setviewmatrixview3d(Scene *scene, View3D *v3d, RegionView3D *rv3d) view3d_viewlock(rv3d); QuatToMat4(rv3d->viewquat, rv3d->viewmat); - if(rv3d->persp==V3D_PERSP) rv3d->viewmat[3][2]-= rv3d->dist; + if(rv3d->persp==RV3D_PERSP) rv3d->viewmat[3][2]-= rv3d->dist; if(v3d->ob_centre) { Object *ob= v3d->ob_centre; float vec[3]; @@ -1324,7 +1324,7 @@ static void initlocalview(Scene *scene, ScrArea *sa) rv3d->dist= size; /* perspective should be a bit farther away to look nice */ - if(rv3d->persp==V3D_ORTHO) + if(rv3d->persp==RV3D_ORTHO) rv3d->dist*= 0.7; // correction for window aspect ratio @@ -1334,7 +1334,7 @@ static void initlocalview(Scene *scene, ScrArea *sa) rv3d->dist*= asp; } - if (rv3d->persp==V3D_CAMOB) rv3d->persp= V3D_PERSP; + if (rv3d->persp==RV3D_CAMOB) rv3d->persp= RV3D_PERSP; v3d->cursor[0]= -rv3d->ofs[0]; v3d->cursor[1]= -rv3d->ofs[1]; @@ -1566,8 +1566,10 @@ static int game_engine_exec(bContext *C, wmOperator *unused) bScreen *sc= CTX_wm_screen(C); ScrArea *sa, *prevsa= CTX_wm_area(C); ARegion *ar, *prevar= CTX_wm_region(C); + RegionView3D *rv3d; rcti cam_frame; + sa= prevsa; if(sa->spacetype != SPACE_VIEW3D) { for(sa=sc->areabase.first; sa; sa= sa->next) @@ -1588,12 +1590,13 @@ static int game_engine_exec(bContext *C, wmOperator *unused) // bad context switch .. CTX_wm_area_set(C, sa); CTX_wm_region_set(C, ar); + rv3d= ar->regiondata; view3d_operator_needs_opengl(C); game_set_commmandline_options(&startscene->gm); - if(startscene->gm.framing.type == SCE_GAMEFRAMING_BARS) { /* Letterbox */ + if(rv3d->persp==RV3D_CAMOB && startscene->gm.framing.type == SCE_GAMEFRAMING_BARS) { /* Letterbox */ rctf cam_framef; calc_viewborder(startscene, ar, CTX_wm_view3d(C), &cam_framef); cam_frame.xmin = cam_framef.xmin + ar->winrct.xmin; @@ -1788,7 +1791,7 @@ int initFlyInfo (bContext *C, FlyInfo *fly, wmOperator *op, wmEvent *event) fly->ar = CTX_wm_region(C); fly->scene= CTX_data_scene(C); - if(fly->rv3d->persp==V3D_CAMOB && fly->v3d->camera->id.lib) { + if(fly->rv3d->persp==RV3D_CAMOB && fly->v3d->camera->id.lib) { BKE_report(op->reports, RPT_ERROR, "Cannot fly a camera from an external library"); return FALSE; } @@ -1798,7 +1801,7 @@ int initFlyInfo (bContext *C, FlyInfo *fly, wmOperator *op, wmEvent *event) return FALSE; } - if(fly->rv3d->persp==V3D_CAMOB && fly->v3d->camera->constraints.first) { + if(fly->rv3d->persp==RV3D_CAMOB && fly->v3d->camera->constraints.first) { BKE_report(op->reports, RPT_ERROR, "Cannot fly an object with constraints"); return FALSE; } @@ -1842,7 +1845,7 @@ int initFlyInfo (bContext *C, FlyInfo *fly, wmOperator *op, wmEvent *event) fly->persp_backup= fly->rv3d->persp; fly->dist_backup= fly->rv3d->dist; - if (fly->rv3d->persp==V3D_CAMOB) { + if (fly->rv3d->persp==RV3D_CAMOB) { /* store the origoinal camera loc and rot */ VECCOPY(fly->ofs_backup, fly->v3d->camera->loc); VECCOPY(fly->rot_backup, fly->v3d->camera->rot); @@ -1860,8 +1863,8 @@ int initFlyInfo (bContext *C, FlyInfo *fly, wmOperator *op, wmEvent *event) } else { /* perspective or ortho */ - if (fly->rv3d->persp==V3D_ORTHO) - fly->rv3d->persp= V3D_PERSP; /*if ortho projection, make perspective */ + if (fly->rv3d->persp==RV3D_ORTHO) + fly->rv3d->persp= RV3D_PERSP; /*if ortho projection, make perspective */ QUATCOPY(fly->rot_backup, fly->rv3d->viewquat); VECCOPY(fly->ofs_backup, fly->rv3d->ofs); fly->rv3d->dist= 0.0; @@ -1891,7 +1894,7 @@ static int flyEnd(bContext *C, FlyInfo *fly) if (fly->state == FLY_CANCEL) { /* Revert to original view? */ - if (fly->persp_backup==V3D_CAMOB) { /* a camera view */ + if (fly->persp_backup==RV3D_CAMOB) { /* a camera view */ rv3d->viewbut=1; VECCOPY(v3d->camera->loc, fly->ofs_backup); VECCOPY(v3d->camera->rot, fly->rot_backup); @@ -1903,7 +1906,7 @@ static int flyEnd(bContext *C, FlyInfo *fly) rv3d->persp= fly->persp_backup; } } - else if (fly->persp_backup==V3D_CAMOB) { /* camera */ + else if (fly->persp_backup==RV3D_CAMOB) { /* camera */ float mat3[3][3]; Mat3CpyMat4(mat3, v3d->camera->obmat); Mat3ToCompatibleEul(mat3, v3d->camera->rot, fly->rot_backup); @@ -2289,7 +2292,7 @@ int flyApply(FlyInfo *fly) /* impose a directional lag */ VecLerpf(dvec, dvec_tmp, fly->dvec_prev, (1.0f/(1.0f+(time_redraw*5.0f)))); - if (rv3d->persp==V3D_CAMOB) { + if (rv3d->persp==RV3D_CAMOB) { if (v3d->camera->protectflag & OB_LOCK_LOCX) dvec[0] = 0.0; if (v3d->camera->protectflag & OB_LOCK_LOCY) @@ -2313,8 +2316,8 @@ int flyApply(FlyInfo *fly) //XXX2.5 do_screenhandlers(G.curscreen); /* advance the next frame */ /* we are in camera view so apply the view ofs and quat to the view matrix and set the camera to the view */ - if (rv3d->persp==V3D_CAMOB) { - rv3d->persp= V3D_PERSP; /*set this so setviewmatrixview3d uses the ofs and quat instead of the camera */ + if (rv3d->persp==RV3D_CAMOB) { + rv3d->persp= RV3D_PERSP; /*set this so setviewmatrixview3d uses the ofs and quat instead of the camera */ setviewmatrixview3d(scene, v3d, rv3d); setcameratoview3d(v3d, rv3d, v3d->camera); @@ -2324,7 +2327,7 @@ int flyApply(FlyInfo *fly) VecNegf(v3d->camera->loc); } - rv3d->persp= V3D_CAMOB; + rv3d->persp= RV3D_CAMOB; #if 0 //XXX2.5 /* record the motion */ if (IS_AUTOKEY_MODE(NORMAL) && (!playing_anim || cfra != G.scene->r.cfra)) { @@ -2457,19 +2460,19 @@ void view3d_align_axis_to_vector(View3D *v3d, RegionView3D *rv3d, int axisidx, f rv3d->view= 0; - if (rv3d->persp==V3D_CAMOB && v3d->camera) { + if (rv3d->persp==RV3D_CAMOB && v3d->camera) { /* switch out of camera view */ float orig_ofs[3]; float orig_dist= rv3d->dist; float orig_lens= v3d->lens; VECCOPY(orig_ofs, rv3d->ofs); - rv3d->persp= V3D_PERSP; + rv3d->persp= RV3D_PERSP; rv3d->dist= 0.0; view_settings_from_ob(v3d->camera, rv3d->ofs, NULL, NULL, &v3d->lens); smooth_view(NULL, NULL, NULL, orig_ofs, new_quat, &orig_dist, &orig_lens); // XXX } else { - if (rv3d->persp==V3D_CAMOB) rv3d->persp= V3D_PERSP; /* switch out of camera mode */ + if (rv3d->persp==RV3D_CAMOB) rv3d->persp= RV3D_PERSP; /* switch out of camera mode */ smooth_view(NULL, NULL, NULL, NULL, new_quat, NULL, NULL); // XXX } } diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index a3e1ac3b7a6..5fd728feb36 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -140,7 +140,7 @@ void setTransformViewMatrices(TransInfo *t) Mat4One(t->viewinv); Mat4One(t->persmat); Mat4One(t->persinv); - t->persp = V3D_ORTHO; + t->persp = RV3D_ORTHO; } calculateCenter2D(t); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index cefb7741658..077e39d6a2b 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -2355,7 +2355,7 @@ void flushTransSeq(TransInfo *t) tdsq= (TransDataSeq *)td->extra; seq= tdsq->seq; - new_frame= (int)(td2d->loc[0] + 0.5f); + new_frame= (int)floor(td2d->loc[0] + 0.5f); switch (tdsq->sel_flag) { case SELECT: @@ -2363,7 +2363,7 @@ void flushTransSeq(TransInfo *t) seq->start= new_frame - tdsq->start_offset; if (seq->depth==0) { - seq->machine= (int)(td2d->loc[1] + 0.5f); + seq->machine= (int)floor(td2d->loc[1] + 0.5f); CLAMP(seq->machine, 1, MAXSEQ); } break; @@ -5207,7 +5207,7 @@ void createTransData(bContext *C, TransInfo *t) { View3D *v3d = t->view; RegionView3D *rv3d = CTX_wm_region_view3d(C); - if(rv3d && (t->flag & T_OBJECT) && v3d->camera == OBACT && rv3d->persp==V3D_CAMOB) + if(rv3d && (t->flag & T_OBJECT) && v3d->camera == OBACT && rv3d->persp==RV3D_CAMOB) { t->flag |= T_CAMERA; } diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 4b800ba1409..32078cb5826 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -123,7 +123,7 @@ extern ListBase editelems; void getViewVector(TransInfo *t, float coord[3], float vec[3]) { - if (t->persp != V3D_ORTHO) + if (t->persp != RV3D_ORTHO) { float p1[4], p2[4]; @@ -1340,7 +1340,7 @@ void calculateCenter(TransInfo *t) Scene *scene = t->scene; RegionView3D *rv3d = t->ar->regiondata; - if(v3d->camera == OBACT && rv3d->persp==V3D_CAMOB) + if(v3d->camera == OBACT && rv3d->persp==RV3D_CAMOB) { float axis[3]; /* persinv is nasty, use viewinv instead, always right */ diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h index f67a242b469..564d6749c16 100644 --- a/source/blender/makesdna/DNA_view3d_types.h +++ b/source/blender/makesdna/DNA_view3d_types.h @@ -202,6 +202,11 @@ typedef struct View3D { #define V3D_GLOBAL_STATS 8192 #define V3D_DRAW_CENTERS 32768 +/* RegionView3d->persp */ +#define RV3D_ORTHO 0 +#define RV3D_PERSP 1 +#define RV3D_CAMOB 2 + /* RegionView3d->rflag */ #define RV3D_FLYMODE 2 #define RV3D_CLIPPING 4 @@ -211,6 +216,16 @@ typedef struct View3D { #define RV3D_BOXVIEW 2 #define RV3D_BOXCLIP 4 +/* RegionView3d->view */ +#define RV3D_VIEW_FRONT 1 +#define RV3D_VIEW_BACK 2 +#define RV3D_VIEW_LEFT 3 +#define RV3D_VIEW_RIGHT 4 +#define RV3D_VIEW_TOP 5 +#define RV3D_VIEW_BOTTOM 6 +#define RV3D_VIEW_PERSPORTHO 7 +#define RV3D_VIEW_CAMERA 8 + /* View3d->flag2 (short) */ #define V3D_SOLID_TEX 8 #define V3D_DISPGP 16 @@ -222,28 +237,15 @@ typedef struct View3D { #define V3D_LOCAL 2 #define V3D_ACTIVE 4 -/*View3D view types*/ -#define V3D_VIEW_FRONT 1 -#define V3D_VIEW_BACK 2 -#define V3D_VIEW_LEFT 3 -#define V3D_VIEW_RIGHT 4 -#define V3D_VIEW_TOP 5 -#define V3D_VIEW_BOTTOM 6 -#define V3D_VIEW_PERSPORTHO 7 -#define V3D_VIEW_CAMERA 8 -#define V3D_VIEW_STEPLEFT 9 -#define V3D_VIEW_STEPRIGHT 10 -#define V3D_VIEW_STEPDOWN 11 -#define V3D_VIEW_STEPUP 12 -#define V3D_VIEW_PANLEFT 13 -#define V3D_VIEW_PANRIGHT 14 -#define V3D_VIEW_PANDOWN 15 -#define V3D_VIEW_PANUP 16 - -/* View3d->persp */ -#define V3D_ORTHO 0 -#define V3D_PERSP 1 -#define V3D_CAMOB 2 +/*View3D types (only used in tools, not actually saved)*/ +#define V3D_VIEW_STEPLEFT 1 +#define V3D_VIEW_STEPRIGHT 2 +#define V3D_VIEW_STEPDOWN 3 +#define V3D_VIEW_STEPUP 4 +#define V3D_VIEW_PANLEFT 5 +#define V3D_VIEW_PANRIGHT 6 +#define V3D_VIEW_PANDOWN 7 +#define V3D_VIEW_PANUP 8 /* View3d->gridflag */ #define V3D_SHOW_FLOOR 1 diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 810fb110f7a..7de309cb63f 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -593,6 +593,8 @@ char *RNA_struct_name_get_alloc(PointerRNA *ptr, char *fixedbuf, int fixedlen); /* Property Information */ const char *RNA_property_identifier(PropertyRNA *prop); +const char *RNA_property_description(PropertyRNA *prop); + PropertyType RNA_property_type(PropertyRNA *prop); PropertySubType RNA_property_subtype(PropertyRNA *prop); PropertyUnit RNA_property_unit(PropertyRNA *prop); diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index 525218c5185..f49906554b3 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -381,6 +381,14 @@ static const char *rna_ensure_property_identifier(PropertyRNA *prop) return ((IDProperty*)prop)->name; } +static const char *rna_ensure_property_description(PropertyRNA *prop) +{ + if(prop->magic == RNA_MAGIC) + return prop->description; + else + return ((IDProperty*)prop)->name; /* XXX - not correct */ +} + static const char *rna_ensure_property_name(PropertyRNA *prop) { if(prop->magic == RNA_MAGIC) @@ -561,6 +569,11 @@ const char *RNA_property_identifier(PropertyRNA *prop) return rna_ensure_property_identifier(prop); } +const char *RNA_property_description(PropertyRNA *prop) +{ + return rna_ensure_property_description(prop); +} + PropertyType RNA_property_type(PropertyRNA *prop) { return rna_ensure_property(prop)->type; diff --git a/source/blender/makesrna/intern/rna_wm_api.c b/source/blender/makesrna/intern/rna_wm_api.c index 44c6967189d..59605054804 100644 --- a/source/blender/makesrna/intern/rna_wm_api.c +++ b/source/blender/makesrna/intern/rna_wm_api.c @@ -73,6 +73,16 @@ void RNA_api_wm(StructRNA *srna) RNA_def_property_flag(parm, PROP_REQUIRED); parm= RNA_def_pointer(func, "keyconfig", "KeyConfig", "Key Configuration", "Added key configuration."); RNA_def_function_return(func, parm); + + /* invoke functions, for use with python */ + func= RNA_def_function(srna, "invoke_props_popup", "WM_operator_props_popup"); + RNA_def_function_flag(func, FUNC_NO_SELF|FUNC_USE_CONTEXT); + RNA_def_function_ui_description(func, "Operator popup invoke."); + parm= RNA_def_pointer(func, "operator", "Operator", "", "Operator to call."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_pointer(func, "event", "Event", "", "Event."); + RNA_def_property_flag(parm, PROP_REQUIRED); + RNA_def_function_return(func, RNA_def_int(func, "mode", 0, 0, INT_MAX, "Mode", "", 0, INT_MAX)); // XXX, should be an enum/flag thingo } void RNA_api_keyconfig(StructRNA *srna) diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp index d4421f9f3e1..cb1c05414d1 100644 --- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp +++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp @@ -245,7 +245,7 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *c projmat.setElem(i, projmat_linear[i]); } - if(rv3d->persp==V3D_CAMOB) { + if(rv3d->persp==RV3D_CAMOB) { if(scene->gm.framing.type == SCE_GAMEFRAMING_BARS) { /* Letterbox */ camzoom = 1.0f; } @@ -349,10 +349,10 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *c if (exitrequested != KX_EXIT_REQUEST_QUIT_GAME) { - if (rv3d->persp != V3D_CAMOB) + if (rv3d->persp != RV3D_CAMOB) { ketsjiengine->EnableCameraOverride(startscenename); - ketsjiengine->SetCameraOverrideUseOrtho((rv3d->persp == V3D_ORTHO)); + ketsjiengine->SetCameraOverrideUseOrtho((rv3d->persp == RV3D_ORTHO)); ketsjiengine->SetCameraOverrideProjectionMatrix(projmat); ketsjiengine->SetCameraOverrideViewMatrix(viewmat); ketsjiengine->SetCameraOverrideClipping(v3d->near, v3d->far); From e76ce369bb45f1134b45982ec3ac0a108c9ccf44 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 27 Oct 2009 09:38:15 +0000 Subject: [PATCH 195/412] Compiler warning fixes for mingw: * There's an unresolved error in transform_conversions.c which I've flagged in this commit. I'm not quite sure what the exact intentions of that code were (i.e. was the "void_pointer = 1" really intended) --- source/blender/blenfont/intern/blf.c | 6 +- source/blender/blenkernel/intern/anim.c | 2 +- .../editors/interface/interface_anim.c | 89 +------------------ .../editors/interface/interface_handlers.c | 2 +- .../blender/editors/object/object_relations.c | 1 - source/blender/editors/object/object_vgroup.c | 4 +- .../editors/space_buttons/buttons_context.c | 2 +- .../editors/transform/transform_conversions.c | 2 +- 8 files changed, 10 insertions(+), 98 deletions(-) diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index db88d84d0b5..99ba3d50821 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -289,7 +289,7 @@ void BLF_blur(int size) void BLF_draw_default(float x, float y, float z, char *str) { FontBLF *font; - int old_font, old_point, old_dpi; + int old_font=0, old_point=0, old_dpi=0; if (!str) return; @@ -404,7 +404,7 @@ float BLF_width_default(char *str) { FontBLF *font; float width; - int old_font, old_point, old_dpi; + int old_font=0, old_point=0, old_dpi=0; if (global_font_default == -1) global_font_default= blf_search("default"); @@ -447,7 +447,7 @@ float BLF_height_default(char *str) { FontBLF *font; float height; - int old_font, old_point, old_dpi; + int old_font=0, old_point=0, old_dpi=0; if (global_font_default == -1) global_font_default= blf_search("default"); diff --git a/source/blender/blenkernel/intern/anim.c b/source/blender/blenkernel/intern/anim.c index f119f52a47d..5cae2418e89 100644 --- a/source/blender/blenkernel/intern/anim.c +++ b/source/blender/blenkernel/intern/anim.c @@ -278,7 +278,7 @@ int where_on_path(Object *ob, float ctime, float *vec, float *dir, float *quat, /* Need to verify the quat interpolation is correct - XXX */ if (quat) { - float totfac, q1[4], q2[4]; + //float totfac, q1[4], q2[4]; /* checks for totfac are needed when 'fac' is 1.0 key_curve_position_weights can assign zero * to more then one index in data which can give divide by zero error */ diff --git a/source/blender/editors/interface/interface_anim.c b/source/blender/editors/interface/interface_anim.c index 4ddfde5e2bb..d2948852346 100644 --- a/source/blender/editors/interface/interface_anim.c +++ b/source/blender/editors/interface/interface_anim.c @@ -145,6 +145,7 @@ void ui_but_anim_autokey(uiBut *but, Scene *scene, float cfra) if(fcu && !driven) { id= but->rnapoin.id.data; + // TODO: this should probably respect the keyingset only option for anim if(autokeyframe_cfra_can_key(scene, id)) { short flag = 0; @@ -232,91 +233,3 @@ void ui_but_anim_remove_keyingset(bContext *C) /* this operator calls uiAnimContextProperty above */ WM_operator_name_call(C, "ANIM_OT_remove_keyingset_button", WM_OP_INVOKE_DEFAULT, NULL); } - -void ui_but_anim_menu(bContext *C, uiBut *but) -{ - uiPopupMenu *pup; - uiLayout *layout; - int length; - - if(but->rnapoin.data && but->rnaprop) { - - length= RNA_property_array_length(&but->rnapoin, but->rnaprop); - - if(but->flag & UI_BUT_ANIMATED_KEY) { - if(length) { - uiItemBooleanO(layout, "Replace Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); - uiItemBooleanO(layout, "Replace Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - uiItemBooleanO(layout, "Delete Keyframes", 0, "ANIM_OT_delete_keyframe_button", "all", 1); - uiItemBooleanO(layout, "Delete Single Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); - } - else { - uiItemBooleanO(layout, "Replace Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - uiItemBooleanO(layout, "Delete Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); - } - } - else if(but->flag & UI_BUT_DRIVEN); - else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { - if(length) { - uiItemBooleanO(layout, "Insert Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); - uiItemBooleanO(layout, "Insert Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - } - else - uiItemBooleanO(layout, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - } - - if(but->flag & UI_BUT_DRIVEN) { - uiItemS(layout); - - if(length) { - uiItemBooleanO(layout, "Delete Drivers", 0, "ANIM_OT_remove_driver_button", "all", 1); - uiItemBooleanO(layout, "Delete Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); - } - else - uiItemBooleanO(layout, "Delete Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); - - uiItemO(layout, "Copy Driver", 0, "ANIM_OT_copy_driver_button"); - if (ANIM_driver_can_paste()) - uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); - } - else if(but->flag & UI_BUT_ANIMATED_KEY); - else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { - uiItemS(layout); - - if(length) { - uiItemBooleanO(layout, "Add Drivers", 0, "ANIM_OT_add_driver_button", "all", 1); - uiItemBooleanO(layout, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); - } - else - uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); - - if (ANIM_driver_can_paste()) - uiItemO(layout, "Paste Driver", 0, "ANIM_OT_paste_driver_button"); - } - - if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { - uiItemS(layout); - - if(length) { - uiItemBooleanO(layout, "Add All to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 1); - uiItemBooleanO(layout, "Add Single to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 0); - uiItemO(layout, "Remove from Keying Set", 0, "ANIM_OT_remove_keyingset_button"); - } - else { - uiItemBooleanO(layout, "Add to Keying Set", 0, "ANIM_OT_add_keyingset_button", "all", 0); - uiItemO(layout, "Remove from Keying Set", 0, "ANIM_OT_remove_keyingset_button"); - } - } - - uiItemS(layout); - - uiItemO(layout, "Copy Data Path", 0, "ANIM_OT_copy_clipboard_button"); - - uiItemS(layout); - - //ui_but_doc_menu(layout, &but->rnapoin, but->rnaprop); - - uiPupMenuEnd(C, pup); - } -} - diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 3386a2e3bda..5cdf3b9dcc8 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -3391,7 +3391,7 @@ static int ui_but_menu(bContext *C, uiBut *but) if(but->rnaprop) - name= RNA_property_ui_name(but->rnaprop); + name= (char*)RNA_property_ui_name(but->rnaprop); else if (but->optype) name= but->optype->name; else diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 9511f367930..3d2f64b9c91 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -724,7 +724,6 @@ void OBJECT_OT_parent_set(wmOperatorType *ot) static int parent_noinv_set_exec(bContext *C, wmOperator *op) { - Scene *scene= CTX_data_scene(C); Object *par= CTX_data_active_object(C); par->recalc |= OB_RECALC_OB; diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index 5d76990b0e9..aa60679321a 100644 --- a/source/blender/editors/object/object_vgroup.c +++ b/source/blender/editors/object/object_vgroup.c @@ -588,7 +588,7 @@ static void vgroup_normalize(Object *ob) dg = BLI_findlink(&ob->defbase, (ob->actdef-1)); if(dg) { - float weight_max; + float weight_max = 0.0f; def_nr= ob->actdef-1; @@ -606,7 +606,7 @@ static void vgroup_normalize(Object *ob) dw = ED_vgroup_weight_get(dvert, def_nr); if(dw) { dw->weight /= weight_max; - + /* incase of division errors with very low weights */ CLAMP(dw->weight, 0.0f, 1.0f); } diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index 8100bf38995..a503aefe751 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -666,7 +666,7 @@ int buttons_context(const bContext *C, const char *member, bContextDataResult *r return 1; } else if(CTX_data_equals(member, "particle_system_editable")) { - if(PE_poll(C)) + if(PE_poll((bContext*)C)) set_pointer_type(path, result, &RNA_ParticleSystem); else CTX_data_pointer_set(result, NULL, &RNA_ParticleSystem, NULL); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 077e39d6a2b..06a7461618c 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4092,7 +4092,7 @@ static void freeSeqData(TransInfo *t) for(a=0; atotal; a++, td++) { seq= ((TransDataSeq *)td->extra)->seq; if ((seq != seq_prev)) { - seq->tmp= 1; + seq->tmp= 1; // XXX what's the intention here? this currently gives a compiler warning } } From e61facbf8530f77629e47d4296803948f671c9c7 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 27 Oct 2009 10:14:02 +0000 Subject: [PATCH 196/412] Bugfix #19729: Color Ramps are not animatable (Part 1) This first part of the fix makes it possible to animate ramp settings by making sure that the paths for ramps and their elements can be determined. While the code for constructing the path to the ramps is relatively simple, the code for the elements is a bit more involved :/ However, this commit only fixes the paths, but most of the ramp settings still cannot be keyframed directly from the UI buttons/widgets (i.e. from Material/Texture buttons) since the buttons still use the old layouts. --- source/blender/makesrna/RNA_access.h | 1 + source/blender/makesrna/intern/rna_access.c | 19 +++ source/blender/makesrna/intern/rna_texture.c | 116 ++++++++++++++++--- 3 files changed, 123 insertions(+), 13 deletions(-) diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 7de309cb63f..191c8781f18 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -673,6 +673,7 @@ void RNA_property_collection_begin(PointerRNA *ptr, PropertyRNA *prop, Collectio void RNA_property_collection_next(CollectionPropertyIterator *iter); void RNA_property_collection_end(CollectionPropertyIterator *iter); int RNA_property_collection_length(PointerRNA *ptr, PropertyRNA *prop); +int RNA_property_collection_lookup_index(PointerRNA *ptr, PropertyRNA *prop, PointerRNA *t_ptr); int RNA_property_collection_lookup_int(PointerRNA *ptr, PropertyRNA *prop, int key, PointerRNA *r_ptr); int RNA_property_collection_lookup_string(PointerRNA *ptr, PropertyRNA *prop, const char *key, PointerRNA *r_ptr); diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index f49906554b3..a963c6a18d2 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -1660,6 +1660,25 @@ void RNA_property_collection_clear(PointerRNA *ptr, PropertyRNA *prop) IDP_ResizeIDPArray(idprop, 0); } +int RNA_property_collection_lookup_index(PointerRNA *ptr, PropertyRNA *prop, PointerRNA *t_ptr) +{ + CollectionPropertyIterator iter; + int index= 0; + + RNA_property_collection_begin(ptr, prop, &iter); + for(index=0; iter.valid; RNA_property_collection_next(&iter), index++) { + if (iter.ptr.data == t_ptr->data) + break; + } + RNA_property_collection_end(&iter); + + /* did we find it? */ + if (iter.valid) + return index; + else + return -1; +} + int RNA_property_collection_lookup_int(PointerRNA *ptr, PropertyRNA *prop, int key, PointerRNA *r_ptr) { CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop; diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c index f3e74bdd43a..3246faa2ecb 100644 --- a/source/blender/makesrna/intern/rna_texture.c +++ b/source/blender/makesrna/intern/rna_texture.c @@ -26,7 +26,6 @@ #include #include -#include "RNA_access.h" #include "RNA_define.h" #include "RNA_types.h" @@ -52,6 +51,10 @@ static EnumPropertyItem texture_filter_items[] = { #ifdef RNA_RUNTIME +#include "MEM_guardedalloc.h" + +#include "RNA_access.h" + #include "BKE_depsgraph.h" #include "BKE_texture.h" #include "BKE_main.h" @@ -174,18 +177,9 @@ char *rna_TextureSlot_path(PointerRNA *ptr) /* get an iterator for this property, and try to find the relevant index */ if (prop) { - CollectionPropertyIterator iter; - int index= 0; + int index= RNA_property_collection_lookup_index(&id_ptr, prop, ptr); - RNA_property_collection_begin(ptr, prop, &iter); - for(index=0; iter.valid; RNA_property_collection_next(&iter), index++) { - if (iter.ptr.data == ptr->id.data) - break; - } - RNA_property_collection_end(&iter); - - /* did we find it? */ - if (iter.valid) + if (index >= 0) return BLI_sprintfN("textures[%d]", index); } } @@ -327,15 +321,110 @@ static EnumPropertyItem *rna_ImageTexture_filter_itemf(bContext *C, PointerRNA * return item; } +static char *rna_ColorRamp_path(PointerRNA *ptr) +{ + /* handle the cases where a single datablock may have 2 ramp types */ + if (ptr->id.data) { + ID *id= ptr->id.data; + + switch (GS(id->name)) { + case ID_MA: /* material has 2 cases - diffuse and specular */ + { + Material *ma= (Material*)id; + + if (ptr->data == ma->ramp_col) + return BLI_strdup("diffuse_ramp"); + else if (ptr->data == ma->ramp_spec) + return BLI_strdup("specular_ramp"); + } + break; + } + } + + /* everything else just uses 'color_ramp' */ + return BLI_strdup("color_ramp"); +} + +static char *rna_ColorRampElement_path(PointerRNA *ptr) +{ + PointerRNA ramp_ptr; + PropertyRNA *prop; + char *path = NULL; + int index; + + /* helper macro for use here to try and get the path + * - this calls the standard code for getting a path to a texture... + */ +#define COLRAMP_GETPATH \ + { \ + prop= RNA_struct_find_property(&ramp_ptr, "elements"); \ + if (prop) { \ + index= RNA_property_collection_lookup_index(&ramp_ptr, prop, ptr); \ + if (index >= 0) { \ + char *texture_path= rna_ColorRamp_path(&ramp_ptr); \ + path= BLI_sprintfN("%s.elements[%d]", texture_path, index); \ + MEM_freeN(texture_path); \ + } \ + } \ + } + + /* determine the path from the ID-block to the ramp */ + // FIXME: this is a very slow way to do it, but it will have to suffice... + if (ptr->id.data) { + ID *id= ptr->id.data; + + switch (GS(id->name)) { + case ID_MA: /* 2 cases for material - diffuse and spec */ + { + Material *ma= (Material *)id; + + /* try diffuse first */ + if (ma->ramp_col) { + RNA_pointer_create(id, &RNA_ColorRamp, ma->ramp_col, &ramp_ptr); + COLRAMP_GETPATH; + } + /* try specular if not diffuse */ + if (!path && ma->ramp_spec) { + RNA_pointer_create(id, &RNA_ColorRamp, ma->ramp_spec, &ramp_ptr); + COLRAMP_GETPATH; + } + } + break; + + // TODO: node trees need special attention + case ID_NT: + { + // FIXME: we'll probably have to loop over nodes until we find one that uses the color ramp + } + break; + + default: /* everything else should have a "color_ramp" property */ + { + /* create pointer to the ID block, and try to resolve "color_ramp" pointer */ + RNA_id_pointer_create(id, &ramp_ptr); + if (RNA_path_resolve(&ramp_ptr, "color_ramp", &ramp_ptr, &prop)) { + COLRAMP_GETPATH; + } + } + } + } + + /* cleanup the macro we defined */ +#undef COLRAMP_GETPATH + + return path; +} + #else static void rna_def_color_ramp_element(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; - + srna= RNA_def_struct(brna, "ColorRampElement", NULL); RNA_def_struct_sdna(srna, "CBData"); + RNA_def_struct_path_func(srna, "rna_ColorRampElement_path"); RNA_def_struct_ui_text(srna, "Color Ramp Element", "Element defining a color at a position in the color ramp."); prop= RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR); @@ -366,6 +455,7 @@ static void rna_def_color_ramp(BlenderRNA *brna) srna= RNA_def_struct(brna, "ColorRamp", NULL); RNA_def_struct_sdna(srna, "ColorBand"); + RNA_def_struct_path_func(srna, "rna_ColorRamp_path"); RNA_def_struct_ui_text(srna, "Color Ramp", "Color ramp mapping a scalar value to a color."); prop= RNA_def_property(srna, "elements", PROP_COLLECTION, PROP_COLOR); From 81c17a9fa35a16ec55d6b5869266a3fa6ca5d59e Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 27 Oct 2009 10:29:51 +0000 Subject: [PATCH 197/412] Memory Statistics operator back, printing information about what memory is being used for to the console. Not shortcut key, use the search menu. --- .../blender/windowmanager/intern/wm_operators.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index e37b6e919c6..f82e16b7951 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2197,7 +2197,22 @@ static void WM_OT_redraw_timer(wmOperatorType *ot) } +/* ************************** memory statistics for testing ***************** */ +static int memory_statistics_exec(bContext *C, wmOperator *op) +{ + MEM_printmemlist_stats(); + return OPERATOR_FINISHED; +} + +static void WM_OT_memory_statistics(wmOperatorType *ot) +{ + ot->name= "Memory Statistics"; + ot->idname= "WM_OT_memory_statistics"; + ot->description= "Print memory statistics to the console."; + + ot->exec= memory_statistics_exec; +} /* ******************************************************* */ @@ -2229,6 +2244,7 @@ void wm_operatortype_init(void) WM_operatortype_append(WM_OT_save_as_mainfile); WM_operatortype_append(WM_OT_save_mainfile); WM_operatortype_append(WM_OT_redraw_timer); + WM_operatortype_append(WM_OT_memory_statistics); WM_operatortype_append(WM_OT_debug_menu); WM_operatortype_append(WM_OT_search_menu); WM_operatortype_append(WM_OT_call_menu); From 90957ed0dddbfbfa1eb09cc55fbc1b6df4f394c3 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 27 Oct 2009 11:10:30 +0000 Subject: [PATCH 198/412] A bunch of fixes for macro-type operators - Armatures + Objects * Extrude and Duplicate for Armatures now use proper macros instead of manually calling transform themselves. This means that repeating these operators now works properly. ** NOTE: there's a bug with macros now which prevents the 'forked' extrude operator working correctly. Bug report filed for this. * Included the proper operators for extrude and duplicate in the toolbar + menus. The operators used there did not activate transform, which meant that users often could not tell that the operation had occurred at all. --- release/scripts/ui/space_view3d.py | 10 +-- release/scripts/ui/space_view3d_toolbar.py | 8 +-- .../blender/editors/armature/armature_ops.c | 70 +++++-------------- .../blender/editors/armature/editarmature.c | 29 -------- source/blender/editors/include/ED_armature.h | 1 + source/blender/editors/space_api/spacetypes.c | 1 + 6 files changed, 30 insertions(+), 89 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index ad2597d6c24..144944e6452 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -765,8 +765,8 @@ class VIEW3D_MT_edit_mesh(bpy.types.Menu): layout.itemS() - layout.itemO("mesh.extrude") - layout.itemO("mesh.duplicate") + layout.itemO("mesh.extrude_move") + layout.itemO("mesh.duplicate_move") layout.itemO("mesh.delete", text="Delete...") layout.itemS() @@ -1129,12 +1129,12 @@ class VIEW3D_MT_edit_armature(bpy.types.Menu): layout.itemS() - layout.itemO("armature.extrude") + layout.itemO("armature.extrude_move") if arm.x_axis_mirror: - layout.item_booleanO("armature.extrude", "forked", True, text="Extrude Forked") + layout.item_booleanO("armature.extrude_move", "forked", True, text="Extrude Forked") - layout.itemO("armature.duplicate") + layout.itemO("armature.duplicate_move") layout.itemO("armature.merge") layout.itemO("armature.fill") layout.itemO("armature.delete") diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 65802744034..b0a3508097e 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -67,12 +67,12 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col = layout.column(align=True) col.itemL(text="Mesh:") - col.itemO("mesh.duplicate") + col.itemO("mesh.duplicate_move") col.itemO("mesh.delete") col = layout.column(align=True) col.itemL(text="Modeling:") - col.itemO("mesh.extrude") + col.itemO("mesh.extrude_move") col.itemO("mesh.subdivide") col.itemO("mesh.loopcut") col.itemO("mesh.spin") @@ -245,12 +245,12 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col = layout.column(align=True) col.itemL(text="Bones:") col.itemO("armature.bone_primitive_add", text="Add") - col.itemO("armature.duplicate", text="Duplicate") + col.itemO("armature.duplicate_move", text="Duplicate") col.itemO("armature.delete", text="Delete") col = layout.column(align=True) col.itemL(text="Modeling:") - col.itemO("armature.extrude") + col.itemO("armature.extrude_move") col = layout.column(align=True) col.itemL(text="Grease Pencil:") diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 3a7ad8fc5ec..71b54871be9 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -59,50 +59,6 @@ #include "armature_intern.h" -/* ************************** quick tests **********************************/ - -/* XXX This is a quick test operator to print names of all EditBones in context - * that should be removed once tool coding starts... - */ - -static int armature_test_exec (bContext *C, wmOperator *op) -{ - printf("EditMode Armature Test: \n"); - - printf("\tSelected Bones \n"); - CTX_DATA_BEGIN(C, EditBone*, ebone, selected_bones) - { - printf("\t\tEditBone '%s' \n", ebone->name); - } - CTX_DATA_END; - - printf("\tEditable Bones \n"); - CTX_DATA_BEGIN(C, EditBone*, ebone, selected_editable_bones) - { - printf("\t\tEditBone '%s' \n", ebone->name); - } - CTX_DATA_END; - - printf("\tActive Bone \n"); - { - EditBone *ebone= CTX_data_active_bone(C); - if (ebone) printf("\t\tEditBone '%s' \n", ebone->name); - else printf("\t\t \n"); - } - - return OPERATOR_FINISHED; -} - -void ARMATURE_OT_test(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Test Context"; - ot->idname= "ARMATURE_OT_test"; - - /* api callbacks */ - ot->exec= armature_test_exec; -} - /* ************************** registration **********************************/ /* Both operators ARMATURE_OT_xxx and POSE_OT_xxx here */ @@ -200,9 +156,23 @@ void ED_operatortypes_armature(void) WM_operatortype_append(POSE_OT_push); WM_operatortype_append(POSE_OT_relax); WM_operatortype_append(POSE_OT_breakdown); +} + +void ED_operatormacros_armature(void) +{ + wmOperatorType *ot; + wmOperatorTypeMacro *otmacro; - /* TESTS */ - WM_operatortype_append(ARMATURE_OT_test); // XXX temp test for context iterators... to be removed + ot= WM_operatortype_append_macro("ARMATURE_OT_duplicate_move", "Add Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); + WM_operatortype_macro_define(ot, "ARMATURE_OT_duplicate"); + otmacro= WM_operatortype_macro_define(ot, "TFM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", 0); + + ot= WM_operatortype_append_macro("ARMATURE_OT_extrude_move", "Extrude", OPTYPE_UNDO|OPTYPE_REGISTER); + otmacro=WM_operatortype_macro_define(ot, "ARMATURE_OT_extrude"); + RNA_enum_set(otmacro->ptr, "forked", 0); + otmacro= WM_operatortype_macro_define(ot, "TFM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", 0); } void ED_keymap_armature(wmKeyConfig *keyconf) @@ -247,8 +217,6 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "ARMATURE_OT_select_all_toggle", AKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_select_inverse", IKEY, KM_PRESS, KM_CTRL, 0); - WM_keymap_add_item(keymap, "ARMATURE_OT_test", TKEY, KM_PRESS, 0, 0); // XXX temp test for context iterators... to be removed - kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_select_hierarchy", LEFTBRACKETKEY, KM_PRESS, 0, 0); RNA_enum_set(kmi->ptr, "direction", BONE_SELECT_PARENT); kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_select_hierarchy", LEFTBRACKETKEY, KM_PRESS, KM_SHIFT, 0); @@ -266,9 +234,9 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "ARMATURE_OT_delete", XKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_delete", DELKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_duplicate", DKEY, KM_PRESS, KM_SHIFT, 0); - WM_keymap_add_item(keymap, "ARMATURE_OT_extrude", EKEY, KM_PRESS, 0, 0); - kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_extrude", EKEY, KM_PRESS, KM_SHIFT, 0); - RNA_boolean_set(kmi->ptr, "forked", 1); + WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, 0, 0); + kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, KM_SHIFT, 0); + RNA_boolean_set(kmi->ptr, "forked", 1); // XXX this doesn't work ok for macros it seems... WM_keymap_add_item(keymap, "ARMATURE_OT_click_extrude", LEFTMOUSE, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_fill", FKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_merge", MKEY, KM_PRESS, KM_ALT, 0); diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index f379ff6c395..266e4fbdbb4 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -2713,17 +2713,6 @@ static int armature_duplicate_selected_exec(bContext *C, wmOperator *op) return OPERATOR_FINISHED; } -static int armature_duplicate_selected_invoke(bContext *C, wmOperator *op, wmEvent *event) -{ - int retv= armature_duplicate_selected_exec(C, op); - - if (retv == OPERATOR_FINISHED) { - RNA_int_set(op->ptr, "mode", TFM_TRANSLATION); - WM_operator_name_call(C, "TFM_OT_transform", WM_OP_INVOKE_REGION_WIN, op->ptr); - } - - return retv; -} void ARMATURE_OT_duplicate(wmOperatorType *ot) { @@ -2732,15 +2721,11 @@ void ARMATURE_OT_duplicate(wmOperatorType *ot) ot->idname= "ARMATURE_OT_duplicate"; /* api callbacks */ - ot->invoke = armature_duplicate_selected_invoke; ot->exec = armature_duplicate_selected_exec; ot->poll = ED_operator_editarmature; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - - /* to give to transform */ - RNA_def_int(ot->srna, "mode", TFM_TRANSLATION, 0, INT_MAX, "Mode", "", 0, INT_MAX); } @@ -3385,17 +3370,6 @@ static int armature_extrude_exec(bContext *C, wmOperator *op) return OPERATOR_FINISHED; } -static int armature_extrude_invoke(bContext *C, wmOperator *op, wmEvent *event) -{ - if (OPERATOR_CANCELLED == armature_extrude_exec(C, op)) - return OPERATOR_CANCELLED; - - RNA_int_set(op->ptr, "mode", TFM_TRANSLATION); - WM_operator_name_call(C, "TFM_OT_transform", WM_OP_INVOKE_REGION_WIN, op->ptr); - - return OPERATOR_FINISHED; -} - void ARMATURE_OT_extrude(wmOperatorType *ot) { /* identifiers */ @@ -3403,7 +3377,6 @@ void ARMATURE_OT_extrude(wmOperatorType *ot) ot->idname= "ARMATURE_OT_extrude"; /* api callbacks */ - ot->invoke= armature_extrude_invoke; ot->exec= armature_extrude_exec; ot->poll= ED_operator_editarmature; @@ -3412,8 +3385,6 @@ void ARMATURE_OT_extrude(wmOperatorType *ot) /* props */ RNA_def_boolean(ot->srna, "forked", 0, "Forked", ""); - /* to give to transform */ - RNA_def_int(ot->srna, "mode", TFM_TRANSLATION, 0, INT_MAX, "Mode", "", 0, INT_MAX); } /* ********************** Bone Add ********************/ diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h index 6479030bcd1..f360fd7a657 100644 --- a/source/blender/editors/include/ED_armature.h +++ b/source/blender/editors/include/ED_armature.h @@ -92,6 +92,7 @@ typedef struct EditBone /* armature_ops.c */ void ED_operatortypes_armature(void); +void ED_operatormacros_armature(void); void ED_keymap_armature(struct wmKeyConfig *keyconf); /* editarmature.c */ diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c index f3db414099f..da92e450ed5 100644 --- a/source/blender/editors/space_api/spacetypes.c +++ b/source/blender/editors/space_api/spacetypes.c @@ -109,6 +109,7 @@ void ED_spacetypes_init(void) /* Macros's must go last since they reference other operators * maybe we'll need to have them go after python operators too? */ + ED_operatormacros_armature(); ED_operatormacros_mesh(); ED_operatormacros_object(); } From ba8ff9a339af4d2241fc31550481ae9a481a7daa Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 27 Oct 2009 11:46:46 +0000 Subject: [PATCH 199/412] Graph Editor: Added panel for numerically adjusting the cursor position --- .../editors/space_graph/graph_buttons.c | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index 87a11305bd9..e2eb40b1137 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -105,6 +105,8 @@ static void do_graph_region_buttons(bContext *C, void *arg, int event) //WM_event_add_notifier(C, NC_OBJECT|ND_TRANSFORM, ob); } +/* -------------- */ + static int graph_panel_context(const bContext *C, bAnimListElem **ale, FCurve **fcu) { bAnimContext ac; @@ -136,6 +138,37 @@ static int graph_panel_poll(const bContext *C, PanelType *pt) return graph_panel_context(C, NULL, NULL); } +/* -------------- */ + +/* Graph Editor View Settings */ +static void graph_panel_view(const bContext *C, Panel *pa) +{ + bScreen *sc= CTX_wm_screen(C); + SpaceIpo *sipo= CTX_wm_space_graph(C); + Scene *scene= CTX_data_scene(C); + PointerRNA spaceptr, sceneptr; + uiLayout *col, *subcol; + + /* get RNA pointers for use when creating the UI elements */ + RNA_id_pointer_create(&scene->id, &sceneptr); + RNA_pointer_create(&sc->id, &RNA_SpaceGraphEditor, sipo, &spaceptr); + + /* 2D-Cursor */ + col= uiLayoutColumn(pa->layout, 0); + uiItemR(col, NULL, 0, &spaceptr, "show_cursor", 0); + + subcol= uiLayoutColumn(col, 1); + uiLayoutSetActive(subcol, RNA_boolean_get(&spaceptr, "show_cursor")); + uiItemR(subcol, "Cursor X", 0, &sceneptr, "current_frame", 0); + uiItemR(subcol, "Cursor Y", 0, &spaceptr, "cursor_value", 0); + + subcol= uiLayoutColumn(col, 1); + uiLayoutSetActive(subcol, RNA_boolean_get(&spaceptr, "show_cursor")); + uiItemO(subcol, "Cursor from Selection", 0, "GRAPH_OT_frame_jump"); +} + +/* ******************* active F-Curve ************** */ + static void graph_panel_properties(const bContext *C, Panel *pa) { bAnimListElem *ale; @@ -413,6 +446,12 @@ void graph_buttons_register(ARegionType *art) { PanelType *pt; + pt= MEM_callocN(sizeof(PanelType), "spacetype graph panel view"); + strcpy(pt->idname, "GRAPH_PT_view"); + strcpy(pt->label, "View"); + pt->draw= graph_panel_view; + BLI_addtail(&art->paneltypes, pt); + pt= MEM_callocN(sizeof(PanelType), "spacetype graph panel properties"); strcpy(pt->idname, "GRAPH_PT_properties"); strcpy(pt->label, "Properties"); From 54facb5cfe2134d17790a1c24f910bbaaab4e272 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Tue, 27 Oct 2009 12:46:20 +0000 Subject: [PATCH 200/412] Added missing X mirror option to armature edit mode. --- release/scripts/ui/space_view3d_toolbar.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index b0a3508097e..af1ce5205ec 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -22,7 +22,7 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): col = layout.column(align=True) col.itemL(text="Object:") - col.itemO("object.duplicate") + col.itemO("object.duplicate_move") col.itemO("object.delete") active_object= context.active_object @@ -264,6 +264,18 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") +class VIEW3D_PT_tools_armatureedit_options(View3DPanel): + __context__ = "armature_edit" + __label__ = "Armature Options" + + def draw(self, context): + layout = self.layout + + arm = context.active_object.data + + col = layout.column(align=True) + col.itemR(arm, "x_axis_mirror") + @@ -830,6 +842,7 @@ bpy.types.register(VIEW3D_PT_tools_curveedit) bpy.types.register(VIEW3D_PT_tools_surfaceedit) bpy.types.register(VIEW3D_PT_tools_textedit) bpy.types.register(VIEW3D_PT_tools_armatureedit) +bpy.types.register(VIEW3D_PT_tools_armatureedit_options) bpy.types.register(VIEW3D_PT_tools_mballedit) bpy.types.register(VIEW3D_PT_tools_latticeedit) bpy.types.register(VIEW3D_PT_tools_posemode) From b8a7f844ca2bf07a70b4e33ca6b28bb7312df11d Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Tue, 27 Oct 2009 13:40:41 +0000 Subject: [PATCH 201/412] Mac: Fixed gcc-4.0 compile error (cocoa) Updated scons to build cocoa (32bit & 64bit) (Thx Jens Verwiebe for the patch): - make sure right python is unzipped to app-bundle ( printing information at the end of compiling ) - make sure arch-setting appends needed flags ( depending on OSX-version obsolete sometimes but harmless ) - link correct frameworks depending on gfx-api ( cocoa/carbon) - conscript prepared for cocoa objC-files - link to openAL-framework, using the headers from blender-lib + the symbols in framework Usage instruction: The default build is Cocoa 32bit. To change it, copy config/darwin-config.py to user-config.py in the blender folder, and edit: - WITH_GHOST_COCOA & MACOSX_ARCHITECTURE variables to select cocoa/carbon, and the arch (i386, X86_64, ppc, ..) - the libs options as usual --- config/darwin-config.py | 114 +++++++++++++++++------ intern/ghost/SConscript | 27 +++++- intern/ghost/intern/GHOST_SystemCocoa.mm | 2 +- tools/Blender.py | 14 ++- tools/btools.py | 5 +- 5 files changed, 124 insertions(+), 38 deletions(-) diff --git a/config/darwin-config.py b/config/darwin-config.py index 981f321e5bc..6dd65aeb40f 100644 --- a/config/darwin-config.py +++ b/config/darwin-config.py @@ -1,8 +1,23 @@ +# +# Note : if you want to alter this file +# copy it as a whole in the upper folder +# as user-config.py +# dont create a new file with only some +# vars changed. + import commands # IMPORTANT NOTE : OFFICIAL BUILDS SHOULD BE DONE WITH SDKs USE_SDK=True +############################################################################# +################### Cocoa & architecture settings ################## +############################################################################# + +WITH_GHOST_COCOA=True +MACOSX_ARCHITECTURE = 'i386' # valid archs: ppc, i386, ppc64, x86_64 + + cmd = 'uname -p' MAC_PROC=commands.getoutput(cmd) cmd = 'uname -r' @@ -11,28 +26,42 @@ if cmd_res[0]=='7': MAC_CUR_VER='10.3' elif cmd_res[0]=='8': MAC_CUR_VER='10.4' -else: +elif cmd_res[0]=='9': MAC_CUR_VER='10.5' +elif cmd_res[0]=='10': + MAC_CUR_VER='10.6' if MAC_PROC == 'powerpc': LCGDIR = '#../lib/darwin-6.1-powerpc' else : - LCGDIR = '#../lib/darwin-8.x.i386' + LCGDIR = '#../lib/darwin-9.x.universal' LIBDIR = '${LCGDIR}' BF_PYTHON_VERSION = '3.1' -if MAC_PROC== 'powerpc' and BF_PYTHON_VERSION == '2.3': +if MAC_PROC == 'powerpc' and BF_PYTHON_VERSION == '2.3': MAC_MIN_VERS = '10.3' MACOSX_SDK='/Developer/SDKs/MacOSX10.3.9.sdk' -else: + CC = 'gcc' + CXX = 'g++' +elif MACOSX_ARCHITECTURE == 'i386' or MACOSX_ARCHITECTURE == 'ppc': MAC_MIN_VERS = '10.4' MACOSX_SDK='/Developer/SDKs/MacOSX10.4u.sdk' + CC = 'gcc-4.0' + CXX = 'g++-4.0' +else : + MAC_MIN_VERS = '10.5' + MACOSX_SDK='/Developer/SDKs/MacOSX10.5.sdk' + CC = 'gcc-4.2' + CXX = 'g++-4.2' +############################################################################# +################### Dependency settings ################## +############################################################################# # enable ffmpeg support WITH_BF_FFMPEG = True # -DWITH_FFMPEG -FFMPEG_PRECOMPILED = False +FFMPEG_PRECOMPILED = True if FFMPEG_PRECOMPILED: # use precompiled ffmpeg in /lib BF_FFMPEG = LIBDIR + '/ffmpeg' @@ -45,8 +74,8 @@ else: BF_FFMPEG_INC = '${BF_FFMPEG}' if USE_SDK==True: BF_FFMPEG_EXTRA = '-isysroot '+MACOSX_SDK+' -mmacosx-version-min='+MAC_MIN_VERS - BF_XVIDCORE_CONFIG = '--disable-assembly' # currently causes errors, even with yasm installed - BF_X264_CONFIG = '--disable-pthread' + BF_XVIDCORE_CONFIG = '--disable-assembly --disable-mmx' # currently causes errors, even with yasm installed + BF_X264_CONFIG = '--disable-pthread --disable-asm' if BF_PYTHON_VERSION=='3.1': # python 3.1 uses precompiled libraries in bf svn /lib by default @@ -75,10 +104,11 @@ else: BF_PYTHON_LINKFLAGS = ['-u','_PyMac_Error','-framework','System','-framework','Python'] if MAC_CUR_VER=='10.3' or MAC_CUR_VER=='10.4': BF_PYTHON_LINKFLAGS = ['-u', '__dummy']+BF_PYTHON_LINKFLAGS - -BF_QUIET = '1' -WITH_BF_OPENMP = '0' + +WITH_BF_OPENMP = '0' # multithreading for fluids, cloth and smoke ( only works with ICC atm ) + +WITH_BF_OPENAL = True #different lib must be used following version of gcc # for gcc 3.3 #BF_OPENAL = LIBDIR + '/openal' @@ -89,11 +119,11 @@ else : BF_OPENAL = LIBDIR + '/openal' WITH_BF_STATICOPENAL = False -BF_OPENAL_INC = '${BF_OPENAL}/include' -BF_OPENAL_LIB = 'openal' -BF_OPENAL_LIBPATH = '${BF_OPENAL}/lib' +BF_OPENAL_INC = '${BF_OPENAL}/include' # only headers from libdir needed for proper use of framework !!!! +#BF_OPENAL_LIB = 'openal' +#BF_OPENAL_LIBPATH = '${BF_OPENAL}/lib' # Warning, this static lib configuration is untested! users of this OS please confirm. -BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a' +#BF_OPENAL_LIB_STATIC = '${BF_OPENAL}/lib/libopenal.a' # Warning, this static lib configuration is untested! users of this OS please confirm. BF_CXX = '/usr' @@ -199,10 +229,13 @@ BF_FREETYPE_INC = '${BF_FREETYPE}/include ${BF_FREETYPE}/include/freetype2' BF_FREETYPE_LIB = 'freetype' BF_FREETYPE_LIBPATH = '${BF_FREETYPE}/lib' -WITH_BF_QUICKTIME = True # -DWITH_QUICKTIME +if MACOSX_ARCHITECTURE == 'x86_64' or MACOSX_ARCHITECTURE == 'ppc64': + WITH_BF_QUICKTIME = False # -DWITH_QUICKTIME ( disable for 64bit atm ) +else: + WITH_BF_QUICKTIME = True WITH_BF_ICONV = True -BF_ICONV = LIBDIR + "/iconv" +BF_ICONV = '/usr' BF_ICONV_INC = '${BF_ICONV}/include' BF_ICONV_LIB = 'iconv' #BF_ICONV_LIBPATH = '${BF_ICONV}/lib' @@ -213,12 +246,30 @@ BF_OPENGL_LIB = 'GL GLU' BF_OPENGL_LIBPATH = '/System/Library/Frameworks/OpenGL.framework/Libraries' BF_OPENGL_LINKFLAGS = ['-framework', 'OpenGL'] -CFLAGS = ['-pipe','-fPIC','-funsigned-char'] +############################################################################# +################### various compile settings and flags ################## +############################################################################# -CPPFLAGS = ['-fpascal-strings'] -CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fpascal-strings'] -CXXFLAGS = [ '-pipe','-fPIC','-funsigned-char', '-fpascal-strings'] -PLATFORM_LINKFLAGS = ['-fexceptions','-framework','CoreServices','-framework','Foundation','-framework','IOKit','-framework','AppKit','-framework','Carbon','-framework','AGL','-framework','AudioUnit','-framework','AudioToolbox','-framework','CoreAudio','-framework','QuickTime'] +BF_QUIET = '1' # suppress verbose output + +if MACOSX_ARCHITECTURE == 'x86_64' or MACOSX_ARCHITECTURE == 'ppc64': + ARCH_FLAGS = ['-m64'] +else: + ARCH_FLAGS = ['-m32'] + +CFLAGS = ['-pipe','-funsigned-char']+ARCH_FLAGS + +CPPFLAGS = ['-fpascal-strings']+ARCH_FLAGS +CCFLAGS = ['-pipe','-funsigned-char','-fpascal-strings']+ARCH_FLAGS +CXXFLAGS = ['-pipe','-funsigned-char', '-fpascal-strings']+ARCH_FLAGS + +if WITH_GHOST_COCOA==True: + PLATFORM_LINKFLAGS = ['-fexceptions','-framework','CoreServices','-framework','Foundation','-framework','IOKit','-framework','AppKit','-framework','Cocoa','-framework','Carbon','-framework','AudioUnit','-framework','AudioToolbox','-framework','CoreAudio','-framework','OpenAL']+ARCH_FLAGS +else: + PLATFORM_LINKFLAGS = ['-fexceptions','-framework','CoreServices','-framework','Foundation','-framework','IOKit','-framework','AppKit','-framework','Carbon','-framework','AGL','-framework','AudioUnit','-framework','AudioToolbox','-framework','CoreAudio','-framework','OpenAL']+ARCH_FLAGS + +if WITH_BF_QUICKTIME == True: + PLATFORM_LINKFLAGS = PLATFORM_LINKFLAGS+['-framework','QuickTime'] #note to build succesfully on 10.3.9 SDK you need to patch 10.3.9 by adding the SystemStubs.a lib from 10.4 LLIBS = ['stdc++', 'SystemStubs'] @@ -232,33 +283,34 @@ if MAC_MIN_VERS == '10.3': if USE_SDK==True: SDK_FLAGS=['-isysroot', MACOSX_SDK,'-mmacosx-version-min='+MAC_MIN_VERS] - PLATFORM_LINKFLAGS = ['-mmacosx-version-min='+MAC_MIN_VERS, '-Wl,-syslibroot,' + MACOSX_SDK]+PLATFORM_LINKFLAGS + PLATFORM_LINKFLAGS = ['-mmacosx-version-min='+MAC_MIN_VERS,'-Wl','-syslibroot '+MACOSX_SDK]+PLATFORM_LINKFLAGS CCFLAGS=SDK_FLAGS+CCFLAGS CXXFLAGS=SDK_FLAGS+CXXFLAGS -# you can add -mssse3 if gcc >= 4.2 -if MAC_PROC == 'i386': +if MACOSX_ARCHITECTURE == 'i386' or MACOSX_ARCHITECTURE == 'x86_64': REL_CFLAGS = ['-O2','-ftree-vectorize','-msse','-msse2','-msse3'] REL_CCFLAGS = ['-O2','-ftree-vectorize','-msse','-msse2','-msse3'] else: CFLAGS = CFLAGS+['-fno-strict-aliasing'] CCFLAGS = CCFLAGS+['-fno-strict-aliasing'] CXXFLAGS = CXXFLAGS+['-fno-strict-aliasing'] - REL_CFLAGS = ['-O2'] REL_CCFLAGS = ['-O2'] +# add -mssse3 for intel 64bit archs +if MACOSX_ARCHITECTURE == 'x86_64': + REL_CFLAGS = REL_CFLAGS+['-mssse3'] + REL_CCFLAGS = REL_CCFLAGS+['-mssse3'] + ##BF_DEPEND = True ## ##AR = ar ##ARFLAGS = ruv ##ARFLAGSQUIET = ru ## -CC = 'gcc' -CXX = 'g++' -C_WARN = ['-Wdeclaration-after-statement'] +#C_WARN = ['-Wdeclaration-after-statement'] -CC_WARN = ['-Wall', '-Wno-long-double'] +CC_WARN = ['-Wall'] ##FIX_STUBS_WARNINGS = -Wno-unused @@ -272,5 +324,9 @@ BF_PROFILE = False BF_DEBUG = False BF_DEBUG_CCFLAGS = ['-g'] +############################################################################# +################### Output directories ################## +############################################################################# + BF_BUILDDIR='../build/darwin' BF_INSTALLDIR='../install/darwin' diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index 48009152699..95399227c99 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -6,7 +6,17 @@ Import ('env') window_system = env['OURPLATFORM'] -sources = env.Glob('intern/*.cpp') +sources = env.Glob('intern/*.cpp') + env.Glob('intern/*.mm') + +if env['WITH_GHOST_COCOA'] == True: + env.Append(CFLAGS=['-DGHOST_COCOA']) + env.Append(CXXFLAGS=['-DGHOST_COCOA']) + env.Append(CPPFLAGS=['-DGHOST_COCOA']) + +#defs = '' +#if env['WITH_GHOST_COCOA']: +# defs += 'GHOST_COCOA' +# maybe we need it later pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_Window'] @@ -19,9 +29,17 @@ elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64 sources.remove('intern' + os.sep + f + 'X11.cpp') sources.remove('intern' + os.sep + f + 'Carbon.cpp') elif window_system == 'darwin': - for f in pf: - sources.remove('intern' + os.sep + f + 'Win32.cpp') - sources.remove('intern' + os.sep + f + 'X11.cpp') + if env['WITH_GHOST_COCOA']: + for f in pf: + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') + else: + for f in pf: + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Cocoa.mm') + else: print "Unknown window system specified." Exit() @@ -30,3 +48,4 @@ incs = '. ../string ' + env['BF_OPENGL_INC'] if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'): incs = env['BF_WINTAB_INC'] + ' ' + incs env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['intern','player'], priority = [40,15] ) + diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 03a617ebdd7..5dbf79a0293 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -700,7 +700,7 @@ GHOST_TSuccess GHOST_SystemCocoa::setCursorPosition(GHOST_TInt32 x, GHOST_TInt32 //Quartz Display Services uses the old coordinates (top left origin) yf = screenRect.size.height -yf; - CGDisplayMoveCursorToPoint([[[windowScreen deviceDescription] objectForKey:@"NSScreenNumber"] unsignedIntValue], CGPointMake(xf, yf)); + CGDisplayMoveCursorToPoint((CGDirectDisplayID)[[[windowScreen deviceDescription] objectForKey:@"NSScreenNumber"] unsignedIntValue], CGPointMake(xf, yf)); return GHOST_kSuccess; } diff --git a/tools/Blender.py b/tools/Blender.py index 5641104ab15..8a2ef93bb26 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -456,7 +456,13 @@ def AppIt(target=None, source=None, env=None): a = '%s' % (target[0]) builddir, b = os.path.split(a) libdir = env['LCGDIR'][1:] - + osxarch = env['MACOSX_ARCHITECTURE'] + print("compiled architecture: %s"%(osxarch)) + if libdir == '../lib/darwin-9.x.universal': + python_zip = 'python_' + osxarch + '.zip' # set specific python_arch.zip + else: + python_zip = 'python.zip' # compatibility for darwin8 python.zip + print("unzipping to app-bundle: %s"%(python_zip)) bldroot = env.Dir('.').abspath binary = env['BINARYKIND'] @@ -477,7 +483,7 @@ def AppIt(target=None, source=None, env=None): cmd = 'cp %s/%s %s/%s.app/Contents/MacOS/%s'%(builddir, binary,builddir, binary, binary) commands.getoutput(cmd) cmd = 'mkdir %s/%s.app/Contents/MacOS/.blender/'%(builddir, binary) - print cmd +# print cmd commands.getoutput(cmd) cmd = builddir + '/%s.app/Contents/MacOS/.blender'%binary shutil.copy(bldroot + '/bin/.blender/.bfont.ttf', cmd) @@ -490,7 +496,7 @@ def AppIt(target=None, source=None, env=None): commands.getoutput(cmd) cmd = 'mkdir %s/%s.app/Contents/MacOS/.blender/python/'%(builddir,binary) commands.getoutput(cmd) - cmd = 'unzip -q %s/release/python.zip -d %s/%s.app/Contents/MacOS/.blender/python/'%(libdir,builddir,binary) + cmd = 'unzip -q %s/release/%s -d %s/%s.app/Contents/MacOS/.blender/python/'%(libdir,python_zip,builddir,binary) commands.getoutput(cmd) cmd = 'cp -R %s/release/scripts %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary) commands.getoutput(cmd) @@ -504,6 +510,8 @@ def AppIt(target=None, source=None, env=None): commands.getoutput(cmd) cmd = 'find %s/%s.app -name .DS_Store -exec rm -rf {} \;'%(builddir, binary) commands.getoutput(cmd) + cmd = 'find %s/%s.app -name __MACOSX -exec rm -rf {} \;'%(builddir, binary) + commands.getoutput(cmd) # extract copy system python, be sure to update other build systems # when making changes to the files that are copied. diff --git a/tools/btools.py b/tools/btools.py index b1584ae8784..cacff349dcf 100755 --- a/tools/btools.py +++ b/tools/btools.py @@ -63,6 +63,7 @@ def validate_arguments(args, bc): 'WITHOUT_BF_INSTALL', 'WITHOUT_BF_PYTHON_INSTALL', 'WITH_BF_OPENMP', + 'WITH_GHOST_COCOA', 'BF_FANCY', 'BF_QUIET', 'BF_X264_CONFIG', 'BF_XVIDCORE_CONFIG', @@ -84,7 +85,7 @@ def validate_arguments(args, bc): 'BF_PROFILE_CFLAGS', 'BF_PROFILE_CCFLAGS', 'BF_PROFILE_CXXFLAGS', 'BF_PROFILE_LINKFLAGS', 'BF_DEBUG_CFLAGS', 'BF_DEBUG_CCFLAGS', 'BF_DEBUG_CXXFLAGS', 'C_WARN', 'CC_WARN', 'CXX_WARN', - 'LLIBS', 'PLATFORM_LINKFLAGS', + 'LLIBS', 'PLATFORM_LINKFLAGS','MACOSX_ARCHITECTURE', ] @@ -311,6 +312,7 @@ def read_opts(cfg, args): ('BF_FREETYPE_LIBPATH', 'Freetype library path', ''), (BoolVariable('WITH_BF_OPENMP', 'Use OpenMP if true', False)), + (BoolVariable('WITH_GHOST_COCOA', 'Use Cocoa-framework if true', False)), (BoolVariable('WITH_BF_QUICKTIME', 'Use QuickTime if true', False)), ('BF_QUICKTIME', 'QuickTime base path', ''), @@ -350,6 +352,7 @@ def read_opts(cfg, args): ('LLIBS', 'Platform libs', ''), ('PLATFORM_LINKFLAGS', 'Platform linkflags', ''), + ('MACOSX_ARCHITECTURE', 'python_arch.zip select', ''), (BoolVariable('BF_PROFILE', 'Add profiling information if true', False)), ('BF_PROFILE_CFLAGS', 'C only profiling flags', ''), From b66046339b832272f27b0612b0f77e6ef37124e0 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Tue, 27 Oct 2009 13:46:02 +0000 Subject: [PATCH 202/412] 2.5 Nodes: * Added missing button set functions for Matte Nodes. * Wrapped some Matte Nodes to new Layout Engine. --- source/blender/editors/space_node/drawnode.c | 80 ++++---------- source/blender/makesrna/intern/rna_nodetree.c | 100 ++++++++++-------- 2 files changed, 75 insertions(+), 105 deletions(-) diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 9f60f94defa..1fe3f529476 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -1362,7 +1362,6 @@ static void node_composit_buts_color_spill(uiLayout *layout, PointerRNA *ptr) static void node_composit_buts_chroma_matte(uiLayout *layout, PointerRNA *ptr) { - uiLayout *col; col= uiLayoutColumn(layout, 0); @@ -1373,26 +1372,6 @@ static void node_composit_buts_chroma_matte(uiLayout *layout, PointerRNA *ptr) uiItemR(col, NULL, 0, ptr, "lift", UI_ITEM_R_SLIDER); uiItemR(col, NULL, 0, ptr, "gain", UI_ITEM_R_SLIDER); uiItemR(col, NULL, 0, ptr, "shadow_adjust", UI_ITEM_R_SLIDER); - -// uiBlock *block= uiLayoutAbsoluteBlock(layout); -// bNode *node= ptr->data; -// rctf *butr= &node->butr; -// short dx=(butr->xmax-butr->xmin)/2; -// NodeChroma *c= node->storage; - -// uiBlockBeginAlign(block); -// -// uiDefButF(block, NUMSLI, B_NODE_EXEC, "Acceptance ", butr->xmin, butr->ymin+60, butr->xmax-butr->xmin, 20, &c->t1, 1.0f, 80.0f, 100, 0, "Tolerance for colors to be considered a keying color"); -// uiDefButF(block, NUMSLI, B_NODE_EXEC, "Cutoff ", butr->xmin, butr->ymin+40, butr->xmax-butr->xmin, 20, &c->t2, 0.0f, 30.0f, 100, 0, "Colors below this will be considered as exact matches for keying color"); -// -// uiDefButF(block, NUMSLI, B_NODE_EXEC, "Lift ", butr->xmin, butr->ymin+20, dx, 20, &c->fsize, 0.0f, 1.0f, 100, 0, "Alpha Lift"); -// uiDefButF(block, NUMSLI, B_NODE_EXEC, "Gain ", butr->xmin+dx, butr->ymin+20, dx, 20, &c->fstrength, 0.0f, 1.0f, 100, 0, "Alpha Gain"); -// -// uiDefButF(block, NUMSLI, B_NODE_EXEC, "Shadow Adjust ", butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, &c->t3, 0.0f, 1.0f, 100, 0, "Adjusts the brightness of any shadows captured"); -// uiBlockEndAlign(block); -// -// if(c->t2 > c->t1) -// c->t2=c->t1; } static void node_composit_buts_color_matte(uiLayout *layout, PointerRNA *ptr) @@ -1406,7 +1385,9 @@ static void node_composit_buts_color_matte(uiLayout *layout, PointerRNA *ptr) } static void node_composit_buts_channel_matte(uiLayout *layout, PointerRNA *ptr) -{ +{ + uiLayout *col, *row; + uiBlock *block= uiLayoutAbsoluteBlock(layout); bNode *node= ptr->data; rctf *butr= &node->butr; @@ -1415,16 +1396,9 @@ static void node_composit_buts_channel_matte(uiLayout *layout, PointerRNA *ptr) NodeChroma *c=node->storage; char *c1, *c2, *c3; - /*color space selectors*/ - uiBlockBeginAlign(block); - uiDefButS(block, ROW,B_NODE_EXEC,"RGB", - butr->xmin,butr->ymin+60,sx,20,&node->custom1,1,1, 0, 0, "RGB Color Space"); - uiDefButS(block, ROW,B_NODE_EXEC,"HSV", - butr->xmin+sx,butr->ymin+60,sx,20,&node->custom1,1,2, 0, 0, "HSV Color Space"); - uiDefButS(block, ROW,B_NODE_EXEC,"YUV", - butr->xmin+2*sx,butr->ymin+60,sx,20,&node->custom1,1,3, 0, 0, "YUV Color Space"); - uiDefButS(block, ROW,B_NODE_EXEC,"YCC", - butr->xmin+3*sx,butr->ymin+60,sx,20,&node->custom1,1,4, 0, 0, "YCbCr Color Space"); + /*color space selector*/ + row= uiLayoutRow(layout, 0); + uiItemR(row, NULL, 0, ptr, "color_space", UI_ITEM_R_EXPAND); if (node->custom1==1) { c1="R"; c2="G"; c3="B"; @@ -1440,48 +1414,30 @@ static void node_composit_buts_channel_matte(uiLayout *layout, PointerRNA *ptr) } /*channel selector */ + row= uiLayoutRow(layout, 0); + uiBlockBeginAlign(block); uiDefButS(block, ROW, B_NODE_EXEC, c1, butr->xmin,butr->ymin+40,cx,20,&node->custom2,1, 1, 0, 0, "Channel 1"); uiDefButS(block, ROW, B_NODE_EXEC, c2, butr->xmin+cx,butr->ymin+40,cx,20,&node->custom2,1, 2, 0, 0, "Channel 2"); uiDefButS(block, ROW, B_NODE_EXEC, c3, butr->xmin+cx+cx,butr->ymin+40,cx,20,&node->custom2, 1, 3, 0, 0, "Channel 3"); - - /*tolerance sliders */ - uiDefButF(block, NUMSLI, B_NODE_EXEC, "High ", - butr->xmin, butr->ymin+20.0, butr->xmax-butr->xmin, 20, - &c->t1, 0.0f, 1.0f, 100, 0, "Values higher than this setting are 100% opaque"); - uiDefButF(block, NUMSLI, B_NODE_EXEC, "Low ", - butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, - &c->t2, 0.0f, 1.0f, 100, 0, "Values lower than this setting are 100% keyed"); uiBlockEndAlign(block); - /*keep t2 (low) less than t1 (high) */ - if(c->t2 > c->t1) { - c->t2=c->t1; - } + /*tolerance sliders */ + col =uiLayoutColumn(layout, 1); + uiItemR(col, NULL, 0, ptr, "high", UI_ITEM_R_SLIDER); + uiItemR(col, NULL, 0, ptr, "low", UI_ITEM_R_SLIDER); + } static void node_composit_buts_luma_matte(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - rctf *butr= &node->butr; - NodeChroma *c=node->storage; - - /*tolerance sliders */ - uiDefButF(block, NUMSLI, B_NODE_EXEC, "High ", - butr->xmin, butr->ymin+20.0, butr->xmax-butr->xmin, 20, - &c->t1, 0.0f, 1.0f, 100, 0, "Values higher than this setting are 100% opaque"); - uiDefButF(block, NUMSLI, B_NODE_EXEC, "Low ", - butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, - &c->t2, 0.0f, 1.0f, 100, 0, "Values lower than this setting are 100% keyed"); - uiBlockEndAlign(block); - - /*keep t2 (low) less than t1 (high) */ - if(c->t2 > c->t1) { - c->t2=c->t1; - } + uiLayout *col; + + col= uiLayoutColumn(layout, 1); + uiItemR(col, NULL, 0, ptr, "high", UI_ITEM_R_SLIDER); + uiItemR(col, NULL, 0, ptr, "low", UI_ITEM_R_SLIDER); } static void node_composit_buts_map_uv(uiLayout *layout, PointerRNA *ptr) diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c index bd018973f5a..4c42ce33337 100644 --- a/source/blender/makesrna/intern/rna_nodetree.c +++ b/source/blender/makesrna/intern/rna_nodetree.c @@ -157,6 +157,29 @@ static int has_nodetree(bNodeTree *ntree, bNodeTree *lookup) return 0; } +/* Button Set Funcs for Matte Nodes */ +static void rna_Matte_t1_set(PointerRNA *ptr, float value) +{ + bNode *node= (bNode*)ptr->data; + NodeChroma *chroma = node->storage; + + chroma->t1 = value; + + if(value < chroma->t2) + chroma->t2 = value; +} + +static void rna_Matte_t2_set(PointerRNA *ptr, float value) +{ + bNode *node= (bNode*)ptr->data; + NodeChroma *chroma = node->storage; + + if(value > chroma->t1) + value = chroma->t1; + + chroma->t2 = value; +} + static void rna_Node_update(bContext *C, PointerRNA *ptr) { Main *bmain= CTX_data_main(C); @@ -948,17 +971,17 @@ static void def_cmp_diff_matte(StructRNA *srna) PropertyRNA *prop; RNA_def_struct_sdna_from(srna, "NodeChroma", "storage"); - - /* TODO: nicer wrapping for tolerances */ prop = RNA_def_property(srna, "tolerance", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t1"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t1_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Tolerance", "Color distances below this threshold are keyed."); RNA_def_property_update(prop, 0, "rna_Node_update"); prop = RNA_def_property(srna, "falloff", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t2"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t2_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Falloff", "Color distances below this additional threshold are partially keyed."); RNA_def_property_update(prop, 0, "rna_Node_update"); @@ -969,9 +992,7 @@ static void def_cmp_color_matte(StructRNA *srna) PropertyRNA *prop; RNA_def_struct_sdna_from(srna, "NodeChroma", "storage"); - - /* TODO: nicer wrapping for tolerances */ - + prop = RNA_def_property(srna, "h", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t1"); RNA_def_property_range(prop, 0.0f, 1.0f); @@ -997,16 +1018,16 @@ static void def_cmp_distance_matte(StructRNA *srna) RNA_def_struct_sdna_from(srna, "NodeChroma", "storage"); - /* TODO: nicer wrapping for tolerances */ - prop = RNA_def_property(srna, "tolerance", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t1"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t1_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Tolerance", "Color distances below this threshold are keyed."); RNA_def_property_update(prop, 0, "rna_Node_update"); prop = RNA_def_property(srna, "falloff", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t2"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t2_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Falloff", "Color distances below this additional threshold are partially keyed."); RNA_def_property_update(prop, 0, "rna_Node_update"); @@ -1038,6 +1059,27 @@ static void def_cmp_color_spill(StructRNA *srna) RNA_def_property_update(prop, 0, "rna_Node_update"); } +static void def_cmp_luma_matte(StructRNA *srna) +{ + PropertyRNA *prop; + + RNA_def_struct_sdna_from(srna, "NodeChroma", "storage"); + + prop = RNA_def_property(srna, "high", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "t1"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t1_set", NULL); + RNA_def_property_range(prop, 0.0f, 1.0f); + RNA_def_property_ui_text(prop, "High", "Values higher than this setting are 100% opaque"); + RNA_def_property_update(prop, 0, "rna_Node_update"); + + prop = RNA_def_property(srna, "low", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "t2"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t2_set", NULL); + RNA_def_property_range(prop, 0.0f, 1.0f); + RNA_def_property_ui_text(prop, "Low", "Values lower than this setting are 100% keyed"); + RNA_def_property_update(prop, 0, "rna_Node_update"); +} + static void def_cmp_chroma_matte(StructRNA *srna) { PropertyRNA *prop; @@ -1046,12 +1088,14 @@ static void def_cmp_chroma_matte(StructRNA *srna) prop = RNA_def_property(srna, "acceptance", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t1"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t1_set", NULL); RNA_def_property_range(prop, 1.0f, 80.0f); RNA_def_property_ui_text(prop, "Acceptance", "Tolerance for a color to be considered a keying color"); RNA_def_property_update(prop, 0, "rna_Node_update"); prop = RNA_def_property(srna, "cutoff", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t2"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t2_set", NULL); RNA_def_property_range(prop, 0.0f, 30.0f); RNA_def_property_ui_text(prop, "Cutoff", "Tolerance below which colors will be considered as exact matches"); RNA_def_property_update(prop, 0, "rna_Node_update"); @@ -1073,11 +1117,6 @@ static void def_cmp_chroma_matte(StructRNA *srna) RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Shadow Adjust", "Adjusts the brightness of any shadows captured"); RNA_def_property_update(prop, 0, "rna_Node_update"); - - /* TODO: - if(c->t2 > c->t1) - c->t2=c->t1; - */ } static void def_cmp_channel_matte(StructRNA *srna) @@ -1085,10 +1124,10 @@ static void def_cmp_channel_matte(StructRNA *srna) PropertyRNA *prop; static EnumPropertyItem color_space_items[] = { - {1, "RGB", 0, "RGB", ""}, - {2, "HSV", 0, "HSV", ""}, - {3, "YUV", 0, "YUV", ""}, - {4, "YCC", 0, "YCbCr", ""}, + {1, "RGB", 0, "RGB", "RGB Color Space"}, + {2, "HSV", 0, "HSV", "HSV Color Space"}, + {3, "YUV", 0, "YUV", "YUV Color Space"}, + {4, "YCC", 0, "YCbCr", "YCbCr Color Space"}, {0, NULL, 0, NULL, NULL} }; @@ -1108,20 +1147,17 @@ static void def_cmp_channel_matte(StructRNA *srna) prop = RNA_def_property(srna, "high", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t1"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t1_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "High", "Values higher than this setting are 100% opaque"); RNA_def_property_update(prop, 0, "rna_Node_update"); prop = RNA_def_property(srna, "low", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "t2"); + RNA_def_property_float_funcs(prop, NULL, "rna_Matte_t2_set", NULL); RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Low", "Values lower than this setting are 100% keyed"); RNA_def_property_update(prop, 0, "rna_Node_update"); - - /* TODO: - if(c->t2 > c->t1) - c->t2=c->t1; - */ } static void def_cmp_flip(StructRNA *srna) @@ -1257,28 +1293,6 @@ static void def_cmp_defocus(StructRNA *srna) RNA_def_property_update(prop, 0, "rna_Node_update"); } -static void def_cmp_luma_matte(StructRNA *srna) -{ - PropertyRNA *prop; - - RNA_def_struct_sdna_from(srna, "NodeChroma", "storage"); - - prop = RNA_def_property(srna, "high", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "t1"); - RNA_def_property_range(prop, 0.0f, 1.0f); - RNA_def_property_ui_text(prop, "High", "Values higher than this setting are 100% opaque"); - RNA_def_property_update(prop, 0, "rna_Node_update"); - - prop = RNA_def_property(srna, "low", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "t2"); - RNA_def_property_range(prop, 0.0f, 1.0f); - RNA_def_property_ui_text(prop, "Low", "Values lower than this setting are 100% keyed"); - RNA_def_property_update(prop, 0, "rna_Node_update"); - - /* TODO: keep low less than high */ - -} - static void def_cmp_invert(StructRNA *srna) { PropertyRNA *prop; From a9610d45b679f5eeeed994ddc425b110429e9de1 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Tue, 27 Oct 2009 14:11:28 +0000 Subject: [PATCH 203/412] r24111 broke the build on non-osx systems. --- intern/ghost/SConscript | 46 +++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index 95399227c99..20190f90366 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -6,7 +6,9 @@ Import ('env') window_system = env['OURPLATFORM'] -sources = env.Glob('intern/*.cpp') + env.Glob('intern/*.mm') +sources = env.Glob('intern/*.cpp') +if window_system == 'darwin': + sources += env.Glob('intern/*.mm') if env['WITH_GHOST_COCOA'] == True: env.Append(CFLAGS=['-DGHOST_COCOA']) @@ -15,37 +17,37 @@ if env['WITH_GHOST_COCOA'] == True: #defs = '' #if env['WITH_GHOST_COCOA']: -# defs += 'GHOST_COCOA' +# defs += 'GHOST_COCOA' # maybe we need it later pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_Window'] if window_system in ('linux2', 'openbsd3', 'sunos5', 'freebsd6', 'irix6'): - for f in pf: - sources.remove('intern' + os.sep + f + 'Win32.cpp') - sources.remove('intern' + os.sep + f + 'Carbon.cpp') -elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'): - for f in pf: - sources.remove('intern' + os.sep + f + 'X11.cpp') - sources.remove('intern' + os.sep + f + 'Carbon.cpp') -elif window_system == 'darwin': - if env['WITH_GHOST_COCOA']: for f in pf: - sources.remove('intern' + os.sep + f + 'Win32.cpp') - sources.remove('intern' + os.sep + f + 'X11.cpp') - sources.remove('intern' + os.sep + f + 'Carbon.cpp') - else: - for f in pf: - sources.remove('intern' + os.sep + f + 'Win32.cpp') - sources.remove('intern' + os.sep + f + 'X11.cpp') - sources.remove('intern' + os.sep + f + 'Cocoa.mm') + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') +elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'): + for f in pf: + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') +elif window_system == 'darwin': + if env['WITH_GHOST_COCOA']: + for f in pf: + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') + else: + for f in pf: + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Cocoa.mm') else: - print "Unknown window system specified." - Exit() + print "Unknown window system specified." + Exit() incs = '. ../string ' + env['BF_OPENGL_INC'] if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'): - incs = env['BF_WINTAB_INC'] + ' ' + incs + incs = env['BF_WINTAB_INC'] + ' ' + incs env.BlenderLib ('bf_ghost', sources, Split(incs), defines=['_USE_MATH_DEFINES'], libtype=['intern','player'], priority = [40,15] ) From 8a7a70f55c785d3a8b54d2408e4b2869ab944747 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Tue, 27 Oct 2009 14:14:40 +0000 Subject: [PATCH 204/412] bumping commit count. --- intern/ghost/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index 20190f90366..e90eb6b6ed1 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -35,7 +35,7 @@ elif window_system == 'darwin': for f in pf: sources.remove('intern' + os.sep + f + 'Win32.cpp') sources.remove('intern' + os.sep + f + 'X11.cpp') - sources.remove('intern' + os.sep + f + 'Carbon.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') else: for f in pf: sources.remove('intern' + os.sep + f + 'Win32.cpp') From abf7bebac5df53c806048d01e49c86a5f9b169e8 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Tue, 27 Oct 2009 14:15:40 +0000 Subject: [PATCH 205/412] =?UTF-8?q?and=20another=20bump!=20Gotta=20love=20?= =?UTF-8?q?indentation=20=C2=B0=5F=C2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- intern/ghost/SConscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index e90eb6b6ed1..9b4ce51965c 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -11,9 +11,9 @@ if window_system == 'darwin': sources += env.Glob('intern/*.mm') if env['WITH_GHOST_COCOA'] == True: - env.Append(CFLAGS=['-DGHOST_COCOA']) - env.Append(CXXFLAGS=['-DGHOST_COCOA']) - env.Append(CPPFLAGS=['-DGHOST_COCOA']) + env.Append(CFLAGS=['-DGHOST_COCOA']) + env.Append(CXXFLAGS=['-DGHOST_COCOA']) + env.Append(CPPFLAGS=['-DGHOST_COCOA']) #defs = '' #if env['WITH_GHOST_COCOA']: From 63e3cfb82f5f365c488241fca801dea94ae308bf Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Tue, 27 Oct 2009 14:17:29 +0000 Subject: [PATCH 206/412] ifix syntax error in SConscript --- intern/ghost/SConscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index 9b4ce51965c..d52ffbcfaa9 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -32,10 +32,10 @@ elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64 sources.remove('intern' + os.sep + f + 'Carbon.cpp') elif window_system == 'darwin': if env['WITH_GHOST_COCOA']: - for f in pf: - sources.remove('intern' + os.sep + f + 'Win32.cpp') - sources.remove('intern' + os.sep + f + 'X11.cpp') - sources.remove('intern' + os.sep + f + 'Carbon.cpp') + for f in pf: + sources.remove('intern' + os.sep + f + 'Win32.cpp') + sources.remove('intern' + os.sep + f + 'X11.cpp') + sources.remove('intern' + os.sep + f + 'Carbon.cpp') else: for f in pf: sources.remove('intern' + os.sep + f + 'Win32.cpp') From 560a0108b2bbd39a99c6660227a0f3de955e711d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 27 Oct 2009 15:19:44 +0000 Subject: [PATCH 207/412] Bugfix: brush texture buttons were not showing map mode. --- source/blender/editors/space_buttons/buttons_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index a503aefe751..026498f17af 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -648,7 +648,7 @@ int buttons_context(const bContext *C, const char *member, bContextDataResult *r Brush *br= ptr->data; if(br) - CTX_data_pointer_set(result, &br->id, &RNA_TextureSlot, br->mtex[(int)br->texact]); + CTX_data_pointer_set(result, &br->id, &RNA_BrushTextureSlot, br->mtex[(int)br->texact]); } return 1; From 4e7768066e1d9f83ea2cd4be829bc7f5d05ac3b6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Oct 2009 15:25:27 +0000 Subject: [PATCH 208/412] patch from Stani to prevent hasattr(bpy.ops, '__call__') being True --- release/scripts/modules/bpy_ops.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 240b0e2720a..c8269e25049 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -21,21 +21,24 @@ context_dict = { class bpy_ops(object): ''' Fake module like class. - + bpy.ops ''' + + def __getattr__(self, module): + ''' + gets a bpy.ops submodule + ''' + if module.startswith('__'): + raise AttributeError(module) + return bpy_ops_submodule(module) + def add(self, pyop): op_add(pyop) def remove(self, pyop): op_remove(pyop) - def __getattr__(self, module): - ''' - gets a bpy.ops submodule - ''' - return bpy_ops_submodule(module) - def __dir__(self): submodules = set() From d160891c3695042899e09ad6f39e5427dbe91d51 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Oct 2009 15:40:56 +0000 Subject: [PATCH 209/412] Shape Propagate to all back in vertex menu --- release/scripts/ui/space_view3d.py | 4 +-- source/blender/editors/mesh/editmesh_tools.c | 38 +++++++++++++++++--- source/blender/editors/mesh/mesh_intern.h | 1 + source/blender/editors/mesh/mesh_ops.c | 1 + 4 files changed, 38 insertions(+), 6 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 144944e6452..e630ca0b6bd 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -808,7 +808,7 @@ class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): layout.itemO("mesh.faces_shade_smooth") layout.itemO("mesh.faces_shade_flat") layout.itemO("mesh.blend_from_shape") - # layout.itemO("mesh.shape_propagate_to_all") + layout.itemO("mesh.shape_propagate_to_all") layout.itemO("mesh.select_vertex_path") class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): @@ -833,7 +833,7 @@ class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): layout.itemO("mesh.blend_from_shape") layout.itemO("object.vertex_group_blend") - # uiItemO(layout, "Propagate to All Shapes", 0, "mesh.shape_propagate_to_all"); + layout.itemO("mesh.shape_propagate_to_all") class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): __label__ = "Edges" diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 1e650a59d56..eae6f47a122 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -5023,14 +5023,12 @@ void MESH_OT_rip(wmOperatorType *ot) /************************ Shape Operators *************************/ -#if 0 -void shape_propagate(Scene *scene, Object *obedit, EditMesh *em, wmOperator *op) +static void shape_propagate(Object *obedit, EditMesh *em, wmOperator *op) { EditVert *ev = NULL; Mesh* me = (Mesh*)obedit->data; Key* ky = NULL; KeyBlock* kb = NULL; - Base* base=NULL; if(me->key){ @@ -5055,17 +5053,49 @@ void shape_propagate(Scene *scene, Object *obedit, EditMesh *em, wmOperator *op) return; } +#if 0 //TAG Mesh Objects that share this data for(base = scene->base.first; base; base = base->next){ if(base->object && base->object->data == me){ base->object->recalc = OB_RECALC_DATA; } } +#endif DAG_id_flush_update(obedit->data, OB_RECALC_DATA); return; } -#endif + + +static int shape_propagate_to_all_exec(bContext *C, wmOperator *op) +{ + Object *obedit= CTX_data_edit_object(C); + Mesh *me= obedit->data; + EditMesh *em= BKE_mesh_get_editmesh(me); + + shape_propagate(obedit, em, op); + + DAG_id_flush_update(&me->id, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, me); + + return OPERATOR_FINISHED; +} + + +void MESH_OT_shape_propagate_to_all(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Shape Propagate"; + ot->description= "Apply selected vertex locations to all other shape keys."; + ot->idname= "MESH_OT_shape_propagate_to_all"; + + /* api callbacks */ + ot->exec= shape_propagate_to_all_exec; + ot->poll= ED_operator_editmesh; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; +} static int blend_from_shape_exec(bContext *C, wmOperator *op) { diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index cab56ad5110..9ff3a3b684c 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -226,6 +226,7 @@ void MESH_OT_colors_mirror(struct wmOperatorType *ot); void MESH_OT_delete(struct wmOperatorType *ot); void MESH_OT_rip(struct wmOperatorType *ot); +void MESH_OT_shape_propagate_to_all(struct wmOperatorType *ot); void MESH_OT_blend_from_shape(struct wmOperatorType *ot); /* ******************* mesh_layers.c */ diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index 7159feced03..457e3823ab3 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -139,6 +139,7 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_knife_cut); WM_operatortype_append(MESH_OT_rip); WM_operatortype_append(MESH_OT_blend_from_shape); + WM_operatortype_append(MESH_OT_shape_propagate_to_all); WM_operatortype_append(MESH_OT_uv_texture_add); WM_operatortype_append(MESH_OT_uv_texture_remove); From 6c4388e3b09678f360504d7740da82cfc68c6f35 Mon Sep 17 00:00:00 2001 From: Arystanbek Dyussenov Date: Tue, 27 Oct 2009 16:13:50 +0000 Subject: [PATCH 210/412] - fixed enum syntax in BKE_fcurve.h and ED_keyframing.h to make g++ happy - exporting addEditBone from armature module for COLLADA importer --- source/blender/blenkernel/BKE_fcurve.h | 4 ++-- source/blender/editors/include/ED_armature.h | 1 + source/blender/editors/include/ED_keyframing.h | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/source/blender/blenkernel/BKE_fcurve.h b/source/blender/blenkernel/BKE_fcurve.h index 94d0864024b..6e273c81e39 100644 --- a/source/blender/blenkernel/BKE_fcurve.h +++ b/source/blender/blenkernel/BKE_fcurve.h @@ -98,7 +98,7 @@ typedef struct FModifierTypeInfo { } FModifierTypeInfo; /* Values which describe the behaviour of a FModifier Type */ -enum { +typedef enum eFMI_Action_Types { /* modifier only modifies values outside of data range */ FMI_TYPE_EXTRAPOLATION = 0, /* modifier leaves data-points alone, but adjusts the interpolation between and around them */ @@ -110,7 +110,7 @@ enum { } eFMI_Action_Types; /* Flags for the requirements of a FModifier Type */ -enum { +typedef enum eFMI_Requirement_Flags { /* modifier requires original data-points (kindof beats the purpose of a modifier stack?) */ FMI_REQUIRES_ORIGINAL_DATA = (1<<0), /* modifier doesn't require on any preceeding data (i.e. it will generate a curve). diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h index f360fd7a657..0204acd6fbe 100644 --- a/source/blender/editors/include/ED_armature.h +++ b/source/blender/editors/include/ED_armature.h @@ -112,6 +112,7 @@ EditBone *ED_armature_bone_get_mirrored(struct ListBase *edbo, EditBone *ebo); / void ED_armature_sync_selection(struct ListBase *edbo); void add_primitive_bone(struct Scene *scene, struct View3D *v3d, struct RegionView3D *rv3d); +EditBone *addEditBone(struct bArmature *arm, char *name); /* used by COLLADA importer */ void transform_armature_mirror_update(struct Object *obedit); void clear_armature(struct Scene *scene, struct Object *ob, char mode); diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h index 802ceff1c07..97a08845020 100644 --- a/source/blender/editors/include/ED_keyframing.h +++ b/source/blender/editors/include/ED_keyframing.h @@ -116,7 +116,7 @@ typedef struct bCommonKeySrc { /* -------- */ /* mode for modify_keyframes */ -enum { +typedef enum eModifyKey_Modes { MODIFYKEY_MODE_INSERT = 0, MODIFYKEY_MODE_DELETE, } eModifyKey_Modes; @@ -208,7 +208,7 @@ short id_frame_has_keyframe(struct ID *id, float frame, short filter); * WARNING: do not alter order of these, as also stored in files * (for v3d->keyflags) */ -enum { +typedef enum eAnimFilterFlags { /* general */ ANIMFILTER_KEYS_LOCAL = (1<<0), /* only include locally available anim data */ ANIMFILTER_KEYS_MUTED = (1<<1), /* include muted elements */ From 9b7f3133e6a7f5ccc76afe4ce8af183af5a0998e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Oct 2009 18:50:10 +0000 Subject: [PATCH 211/412] made minimum zoom level smaller (zoom out further) --- source/blender/editors/space_node/space_node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c index 77a8210a2a5..46461eff76b 100644 --- a/source/blender/editors/space_node/space_node.c +++ b/source/blender/editors/space_node/space_node.c @@ -115,7 +115,7 @@ static SpaceLink *node_new(const bContext *C) ar->v2d.max[0]= 32000.0f; ar->v2d.max[1]= 32000.0f; - ar->v2d.minzoom= 0.5f; + ar->v2d.minzoom= 0.2f; ar->v2d.maxzoom= 1.21f; ar->v2d.scroll= (V2D_SCROLL_RIGHT|V2D_SCROLL_BOTTOM); From 3266e1045650b8f3855a4978c0fd438da056ce31 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Tue, 27 Oct 2009 18:50:26 +0000 Subject: [PATCH 212/412] Proper cast to silence warning and comment to explain WTH is happening here. --- source/blender/editors/transform/transform_conversions.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 06a7461618c..8d04b2497fc 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4092,7 +4092,8 @@ static void freeSeqData(TransInfo *t) for(a=0; atotal; a++, td++) { seq= ((TransDataSeq *)td->extra)->seq; if ((seq != seq_prev)) { - seq->tmp= 1; // XXX what's the intention here? this currently gives a compiler warning + /* Tag seq with a non zero value, used by shuffle_seq_time to identify the ones to shuffle */ + seq->tmp= (void*)1; } } From e0fecb7fa35fc2148f01a194b597312e95e518be Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 27 Oct 2009 19:32:22 +0000 Subject: [PATCH 213/412] CMake: attempt to make build not fail in case "svnversion" command is not found. --- CMakeLists.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea62bbceb0e..963601dd94a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -540,13 +540,19 @@ IF(WITH_BUILDINFO) IF(UNIX) EXEC_PROGRAM("date \"+%Y-%m-%d\"" OUTPUT_VARIABLE BUILD_DATE) EXEC_PROGRAM("date \"+%H:%M:%S\"" OUTPUT_VARIABLE BUILD_TIME) - EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV) + EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV RETURN_VALUE BUILD_REV_RETURN) + IF(BUILD_REV_RETURN) + SET(BUILD_REV "unknown") + ENDIF(BUILD_REV_RETURN) ENDIF(UNIX) IF(WIN32) EXEC_PROGRAM("cmd /c date /t" OUTPUT_VARIABLE BUILD_DATE) EXEC_PROGRAM("cmd /c time /t" OUTPUT_VARIABLE BUILD_TIME) - EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV) + EXEC_PROGRAM("svnversion ${CMAKE_SOURCE_DIR}" OUTPUT_VARIABLE BUILD_REV RETURN_VALUE BUILD_REV_RETURN) + IF(BUILD_REV_RETURN) + SET(BUILD_REV "unknown") + ENDIF(BUILD_REV_RETURN) ENDIF(WIN32) ENDIF(WITH_BUILDINFO) From cb1b2649f1ab48558eac5bad6106cdffe1786f11 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Tue, 27 Oct 2009 21:54:29 +0000 Subject: [PATCH 214/412] 2.5 Nodes: *Wrapped File Output Node. Note: Crashs on execution while rendering. --- source/blender/editors/space_node/drawnode.c | 63 +++++-------------- source/blender/makesrna/intern/rna_nodetree.c | 22 +++---- 2 files changed, 24 insertions(+), 61 deletions(-) diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 1fe3f529476..70f603f8f94 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -1457,6 +1457,7 @@ static void node_composit_buts_id_mask(uiLayout *layout, PointerRNA *ptr) } /* allocate sufficient! */ +/* static void node_imagetype_string(char *str) { str += sprintf(str, "Save Image as: %%t|"); @@ -1471,67 +1472,37 @@ static void node_imagetype_string(char *str) str += sprintf(str, "DPX %%x%d|", R_DPX); str += sprintf(str, "OpenEXR %%x%d", R_OPENEXR); } +*/ -static void node_set_image_cb(bContext *C, void *ntree_v, void *node_v) +/*static void node_set_image_cb(bContext *C, void *ntree_v, void *node_v) { bNodeTree *ntree= ntree_v; bNode *node= node_v; nodeSetActive(ntree, node); } +*/ static void node_composit_buts_file_output(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - bNodeTree *ntree= ptr->id.data; - rctf *butr= &node->butr; - NodeImageFile *nif= node->storage; - uiBut *bt; - short x= (short)butr->xmin; - short y= (short)butr->ymin; - short w= (short)butr->xmax-butr->xmin; - char str[320]; - - node_imagetype_string(str); - - uiBlockBeginAlign(block); - - bt = uiDefIconBut(block, BUT, B_NODE_SETIMAGE, ICON_FILESEL, - x, y+60, 20, 20, - 0, 0, 0, 0, 0, "Open Fileselect to get Backbuf image"); - uiButSetFunc(bt, node_set_image_cb, ntree, node); - - uiDefBut(block, TEX, B_NOP, "", - 20+x, y+60, w-20, 20, - nif->name, 0.0f, 240.0f, 0, 0, ""); - - uiDefButS(block, MENU, B_NOP, str, - x, y+40, w, 20, - &nif->imtype, 0.0f, 1.0f, 0, 0, ""); - - if(nif->imtype==R_OPENEXR) { - uiDefButBitS(block, TOG, R_OPENEXR_HALF, B_REDR, "Half", - x, y+20, w/2, 20, - &nif->subimtype, 0, 0, 0, 0, ""); + uiLayout *col, *row; - uiDefButS(block, MENU,B_NOP, "Codec %t|None %x0|Pxr24 (lossy) %x1|ZIP (lossless) %x2|PIZ (lossless) %x3|RLE (lossless) %x4", - x+w/2, y+20, w/2, 20, - &nif->codec, 0, 0, 0, 0, ""); + col= uiLayoutColumn(layout, 0); + uiItemR(col, "", 0, ptr, "filename", 0); + uiItemR(col, "", 0, ptr, "image_type", 0); + + row= uiLayoutRow(layout, 0); + if (RNA_enum_get(ptr, "image_type")== R_OPENEXR) { + uiItemR(row, NULL, 0, ptr, "exr_half", 0); + uiItemR(row, "", 0, ptr, "exr_codec", 0); } else { - uiDefButS(block, NUM, B_NOP, "Quality: ", - x, y+20, w, 20, - &nif->quality, 10.0f, 100.0f, 10, 0, ""); + uiItemR(row, NULL, 0, ptr, "quality", 0); } - /* start frame, end frame */ - uiDefButI(block, NUM, B_NODE_EXEC, "SFra: ", - x, y, w/2, 20, - &nif->sfra, 1, MAXFRAMEF, 10, 0, ""); - uiDefButI(block, NUM, B_NODE_EXEC, "EFra: ", - x+w/2, y, w/2, 20, - &nif->efra, 1, MAXFRAMEF, 10, 0, ""); + row= uiLayoutRow(layout, 1); + uiItemR(row, "Start", 0, ptr, "start_frame", 0); + uiItemR(row, "End", 0, ptr, "end_frame", 0); } static void node_scale_cb(bContext *C, void *node_v, void *unused_v) diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c index 4c42ce33337..913c4c3aa7c 100644 --- a/source/blender/makesrna/intern/rna_nodetree.c +++ b/source/blender/makesrna/intern/rna_nodetree.c @@ -882,8 +882,7 @@ static void def_cmp_output_file(StructRNA *srna) {R_CINEON, "CINEON", 0, "Cineon", ""}, {R_DPX, "DPX", 0, "DPX", ""}, {R_OPENEXR, "OPENEXR", 0, "OpenEXR", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem openexr_codec_items[] = { {0, "NONE", 0, "None", ""}, @@ -891,12 +890,11 @@ static void def_cmp_output_file(StructRNA *srna) {2, "ZIP", 0, "ZIP (lossless)", ""}, {3, "PIZ", 0, "PIX (lossless)", ""}, {4, "RLE", 0, "RLE (lossless)", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; RNA_def_struct_sdna_from(srna, "NodeImageFile", "storage"); - prop = RNA_def_property(srna, "filename", PROP_STRING, PROP_NONE); + prop = RNA_def_property(srna, "filename", PROP_STRING, PROP_DIRPATH); RNA_def_property_string_sdna(prop, NULL, "name"); RNA_def_property_ui_text(prop, "Filename", ""); @@ -905,32 +903,26 @@ static void def_cmp_output_file(StructRNA *srna) RNA_def_property_enum_items(prop, type_items); RNA_def_property_ui_text(prop, "Image Type", ""); - /* TODO: openexr only { */ - - prop = RNA_def_property(srna, "half", PROP_BOOLEAN, PROP_NONE); + prop = RNA_def_property(srna, "exr_half", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "subimtype", R_OPENEXR_HALF); RNA_def_property_ui_text(prop, "Half", ""); - prop = RNA_def_property(srna, "codec", PROP_ENUM, PROP_NONE); + prop = RNA_def_property(srna, "exr_codec", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "codec"); RNA_def_property_enum_items(prop, openexr_codec_items); RNA_def_property_ui_text(prop, "Codec", ""); - /* } else { */ - prop = RNA_def_property(srna, "quality", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "quality"); RNA_def_property_ui_text(prop, "Quality", ""); - /* } */ - - prop = RNA_def_property(srna, "start", PROP_INT, PROP_NONE); + prop = RNA_def_property(srna, "start_frame", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "sfra"); RNA_def_property_range(prop, MINFRAMEF, MAXFRAMEF); RNA_def_property_ui_text(prop, "Start Frame", ""); RNA_def_property_update(prop, 0, "rna_Node_update"); - prop = RNA_def_property(srna, "end", PROP_INT, PROP_NONE); + prop = RNA_def_property(srna, "end_frame", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "efra"); RNA_def_property_range(prop, MINFRAMEF, MAXFRAMEF); RNA_def_property_ui_text(prop, "End Frame", ""); From be42f422daad2952a98278f9c1610b87fcce2831 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 27 Oct 2009 21:58:03 +0000 Subject: [PATCH 215/412] Bugfix: RNA_path_from_ID_to_struct crashed in automatic nested struct detection. --- source/blender/makesrna/intern/rna_access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index a963c6a18d2..b7120c58fef 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -2435,14 +2435,14 @@ char *RNA_path_from_ID_to_struct(PointerRNA *ptr) /* if type has a path to some ID, use it */ ptrpath= ptr->type->path(ptr); } - else if(ptr->type->nested) { + else if(ptr->type->nested && RNA_struct_is_ID(ptr->type->nested)) { PointerRNA parentptr; PropertyRNA *userprop; /* find the property in the struct we're nested in that references this struct, and * use its identifier as the first part of the path used... */ - RNA_pointer_create(ptr->id.data, ptr->type->nested, ptr->data, &parentptr); + RNA_id_pointer_create(ptr->id.data, &parentptr); userprop= RNA_struct_find_nested(&parentptr, ptr->type); if(userprop) From 49d7a2c51a63301b8af6719a2099c9a6c9f2457f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 27 Oct 2009 23:21:26 +0000 Subject: [PATCH 216/412] Fixes for AutoKeying + File Loading Prints: * AutoKeying was broken after the fix to get automerge working again in 3D view. The 3D-View check was swallowing the processing before autokeying could be done. Separated these out again. * The error print when some external data couldn't be found for objects was missing a newline. --- source/blender/blenloader/intern/readfile.c | 2 +- .../blender/editors/transform/transform_conversions.c | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 658e238e81d..6ced440f5a5 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -3497,7 +3497,7 @@ static void lib_link_object(FileData *fd, Main *main) ob->type= OB_EMPTY; warn= 1; if(ob->id.lib) printf("Can't find obdata of %s lib %s\n", ob->id.name+2, ob->id.lib->name); - else printf("Object %s lost data.", ob->id.name+2); + else printf("Object %s lost data.\n", ob->id.name+2); if(ob->pose) { free_pose(ob->pose); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 8d04b2497fc..0ff0e400d26 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4400,7 +4400,7 @@ void autokeyframe_ob_cb_func(Scene *scene, View3D *v3d, Object *ob, int tmode) { ID *id= &ob->id; FCurve *fcu; - + // TODO: this should probably be done per channel instead... if (autokeyframe_cfra_can_key(scene, id)) { KeyingSet *active_ks = ANIM_scene_get_active_keyingset(scene); @@ -4501,7 +4501,7 @@ void autokeyframe_pose_cb_func(Scene *scene, View3D *v3d, Object *ob, int tmode, bPose *pose= ob->pose; bPoseChannel *pchan; FCurve *fcu; - + // TODO: this should probably be done per channel instead... if (autokeyframe_cfra_can_key(scene, id)) { KeyingSet *active_ks = ANIM_scene_get_active_keyingset(scene); @@ -4635,7 +4635,7 @@ void special_aftertrans_update(TransInfo *t) // short redrawipo=0, resetslowpar=1; int cancelled= (t->state == TRANS_CANCEL); short duplicate= (t->undostr && strstr(t->undostr, "Duplicate")) ? 1 : 0; - + if (t->spacetype==SPACE_VIEW3D) { if (t->obedit) { if (cancelled==0) { @@ -4643,7 +4643,8 @@ void special_aftertrans_update(TransInfo *t) } } } - else if (t->spacetype == SPACE_SEQ) { + + if (t->spacetype == SPACE_SEQ) { /* freeSeqData in transform_conversions.c does this * keep here so the else at the end wont run... */ } @@ -4945,6 +4946,7 @@ void special_aftertrans_update(TransInfo *t) if (!cancelled) autokeyframe_ob_cb_func(t->scene, (View3D *)t->view, ob, t->mode); } + } } From 9aac7dd218ed4d229c8104c70fa3ec18d874aac1 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 27 Oct 2009 23:28:56 +0000 Subject: [PATCH 217/412] * Added 'report a bug' help menu item, taking you to the 2.5 bug tracker. --- release/scripts/ui/space_info.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index fd1c23cad3c..52d5876a46b 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -224,6 +224,8 @@ class INFO_MT_help(bpy.types.Menu): layout.itemO("help.developer_community", icon='ICON_URL') layout.itemO("help.user_community", icon='ICON_URL') layout.itemS() + layout.itemO("help.report_bug", icon='ICON_URL') + layout.itemS() layout.itemO("help.operator_cheat_sheet") bpy.types.register(INFO_HT_header) @@ -280,6 +282,12 @@ class HELP_OT_user_community(HelpOperator): __idname__ = "help.user_community" __label__ = "User Community" __URL__ = 'http://www.blender.org/community/user-community/' + +class HELP_OT_report_bug(HelpOperator): + '''Report a bug in the Blender bug tracker''' + __idname__ = "help.report_bug" + __label__ = "Report a Bug" + __URL__ = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' class HELP_OT_operator_cheat_sheet(bpy.types.Operator): __idname__ = "help.operator_cheat_sheet" @@ -312,4 +320,5 @@ bpy.ops.add(HELP_OT_blender_website) bpy.ops.add(HELP_OT_blender_eshop) bpy.ops.add(HELP_OT_developer_community) bpy.ops.add(HELP_OT_user_community) +bpy.ops.add(HELP_OT_report_bug) bpy.ops.add(HELP_OT_operator_cheat_sheet) From 29cae6de758ea6f52e3545ec99ebb29d1768b35f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Oct 2009 09:03:08 +0000 Subject: [PATCH 218/412] viewing docs for nested classes would fail, expects bpy.types.Scene.SceneGameData-class.html rather then bpy.types.SceneGameData-class.html --- release/scripts/modules/bpy_ops.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index c8269e25049..aeb93028e21 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -317,12 +317,22 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): doc_id = bpy.props.StringProperty(attr="doc_id", name="Doc ID", description="ID for the documentation", maxlen= 1024, default= "") doc_new = bpy.props.StringProperty(attr="doc_new", name="Doc New", description="", maxlen= 1024, default= "") + class WM_OT_doc_view(bpy.types.Operator): '''Load online reference docs''' __idname__ = "wm.doc_view" __label__ = "View Documentation" __props__ = [doc_id] _prefix = 'http://www.blender.org/documentation/250PythonDoc' + + def _nested_class_string(self, class_string): + ls = [] + class_obj = getattr(bpy.types, class_string, None).__rna__ + while class_obj: + ls.insert(0, class_obj) + class_obj = class_obj.nested + return '.'.join([class_obj.identifier for class_obj in ls]) + def execute(self, context): id_split = self.doc_id.split('.') # Example url, http://www.graphicall.org/ftp/ideasman42/html/bpy.types.Space3DView-class.html#background_image @@ -332,10 +342,12 @@ class WM_OT_doc_view(bpy.types.Operator): elif len(id_split) == 2: # rna, class.prop class_name, class_prop = id_split + class_name_full = self._nested_class_string(class_name) # It so happens that epydoc nests these + if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): - url= '%s/bpy.ops.%s-module.html#%s' % (self._prefix, class_name, class_prop) + url= '%s/bpy.ops.%s-module.html#%s' % (self._prefix, class_name_full, class_prop) else: - url= '%s/bpy.types.%s-class.html#%s' % (self._prefix, class_name, class_prop) + url= '%s/bpy.types.%s-class.html#%s' % (self._prefix, class_name_full, class_prop) else: return ('PASS_THROUGH',) From 64455004e053fe72a609f2e0dd2da204c7777882 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Oct 2009 09:39:16 +0000 Subject: [PATCH 219/412] ob.getChilren() often requested for 2.4x api, notice this is only 1 line of python. --- release/scripts/modules/bpy_ext/Object.py | 4 ++++ release/scripts/modules/bpy_ext/__init__.py | 1 + source/blender/python/intern/bpy_interface.c | 1 + 3 files changed, 6 insertions(+) create mode 100644 release/scripts/modules/bpy_ext/Object.py create mode 100644 release/scripts/modules/bpy_ext/__init__.py diff --git a/release/scripts/modules/bpy_ext/Object.py b/release/scripts/modules/bpy_ext/Object.py new file mode 100644 index 00000000000..a842318844e --- /dev/null +++ b/release/scripts/modules/bpy_ext/Object.py @@ -0,0 +1,4 @@ +import bpy +class_obj = bpy.types.Object + +class_obj.getChildren = lambda ob: [child for child in bpy.data.objects if child.parent == ob] \ No newline at end of file diff --git a/release/scripts/modules/bpy_ext/__init__.py b/release/scripts/modules/bpy_ext/__init__.py new file mode 100644 index 00000000000..a20a5ff8b8c --- /dev/null +++ b/release/scripts/modules/bpy_ext/__init__.py @@ -0,0 +1 @@ +import bpy_ext.Object diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index 095bfab45c4..53c0d591437 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -200,6 +200,7 @@ static void bpy_init_modules( void ) bpy_import_test("bpy_ops"); /* adds its self to bpy.ops */ bpy_import_test("bpy_sys"); /* adds its self to bpy.sys */ + bpy_import_test("bpy_ext"); /* extensions to our existing types */ } /* stand alone utility modules not related to blender directly */ From 8510723cf4577e916a26bb2ee5b4fd545fac505e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Oct 2009 10:04:09 +0000 Subject: [PATCH 220/412] patch from mindrones, uploads user edited docs to http://www.mindrones.com/blender/svn/ (rmb, edit docs) --- release/scripts/modules/bpy_ops.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index aeb93028e21..8b5d07b3986 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -364,6 +364,16 @@ class WM_OT_doc_edit(bpy.types.Operator): __label__ = "Edit Documentation" __props__ = [doc_id, doc_new] + def _send_xmlrpc(self, data_dict): + print("sending data:", data_dict) + + import xmlrpc.client + user = 'blenderuser' + pwd = 'blender>user' + + docblog = xmlrpc.client.ServerProxy("http://www.mindrones.com/blender/svn/xmlrpc.php") + docblog.metaWeblog.newPost(1,user,pwd, data_dict,1) + def execute(self, context): class_name, class_prop = self.doc_id.split('.') @@ -373,13 +383,14 @@ class WM_OT_doc_edit(bpy.types.Operator): if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): # operator print("operator - old:'%s' -> new:'%s'" % ('', self.doc_new)) + self._send_xmlrpc({'title':'OPERATOR %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) else: doc_orig = getattr(bpy.types, class_name).__rna__.properties[class_prop].description if doc_orig != self.doc_new: print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - # aparently we can use xml/rpc to upload docs to an online review board # Ugh, will run this on every edit.... better not make any mistakes - + self._send_xmlrpc({'title':'RNA %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) + return ('FINISHED',) def invoke(self, context, event): From e694e307211a084c3f01b8554b9c9b2abaddb014 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 28 Oct 2009 10:16:49 +0000 Subject: [PATCH 221/412] UI Icon Toggles Fix: Boolean settings now use TOG instead of ICONTOG when they have icons, since ICONTOG was causing too much trouble with icons changing when they shouldn't be. Perhaps in future there should be some flag for specifying from RNA/UI-Layouts which one you want, but for now, this will do. Reverting r23936 since that fix depended on ICONTOG behaviour. --- source/blender/editors/interface/interface_layout.c | 11 ++++------- source/blender/editors/interface/interface_utils.c | 7 ++++--- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 41a0ad7d4b0..5c7c1b130e4 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -893,13 +893,10 @@ void uiItemFullR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, Proper name= ui_item_name_add_colon(name, namestr); if(layout->root->type == UI_LAYOUT_MENU) { - /* whether the property is actually enabled doesn't matter, - * since the widget code for drawing toggles takes care of the - * rest (i.e. given the deactivated icon, it finds the active one - * based on the state of the setting) - */ - if ( (type == PROP_BOOLEAN) || (type==PROP_ENUM && index==RNA_ENUM_VALUE) ) - icon= ICON_CHECKBOX_DEHLT; /* ICON_CHECKBOX_HLT when on... */ + if(type == PROP_BOOLEAN) + icon= (RNA_property_boolean_get(ptr, prop))? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; + else if(type == PROP_ENUM && index == RNA_ENUM_VALUE) + icon= (RNA_property_enum_get(ptr, prop) == value)? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; } slider= (flag & UI_ITEM_R_SLIDER); diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 5ac3b2f4db3..f24ae62db8f 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -61,11 +61,12 @@ uiBut *uiDefAutoButR(uiBlock *block, PointerRNA *ptr, PropertyRNA *prop, int ind value= RNA_property_boolean_get_index(ptr, prop, index); else value= RNA_property_boolean_get(ptr, prop); - + + // XXX: when to do TOG, and when to do ICONTOG? for now, let's just do TOG, since ICONTOG causes too much trouble everywhere else if(icon && name && strcmp(name, "") == 0) - but= uiDefIconButR(block, ICONTOG, 0, icon, x1, y1, x2, y2, ptr, propname, index, 0, 0, -1, -1, NULL); + but= uiDefIconButR(block, TOG, 0, icon, x1, y1, x2, y2, ptr, propname, index, 0, 0, -1, -1, NULL); else if(icon) - but= uiDefIconTextButR(block, ICONTOG, 0, icon, name, x1, y1, x2, y2, ptr, propname, index, 0, 0, -1, -1, NULL); + but= uiDefIconTextButR(block, TOG, 0, icon, name, x1, y1, x2, y2, ptr, propname, index, 0, 0, -1, -1, NULL); else but= uiDefButR(block, OPTION, 0, name, x1, y1, x2, y2, ptr, propname, index, 0, 0, -1, -1, NULL); break; From e024b46eb6b4f901d1309b39cf17642250485f86 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Oct 2009 11:31:24 +0000 Subject: [PATCH 222/412] - 'id_data' attribute for py rna api, so you can get the Mesh from a face, Armature from a bone, etc. - fixed crash when adjusting added objects settngs from the toolbar. --- release/scripts/modules/bpy_ops.py | 1 + source/blender/editors/object/object_add.c | 6 ++---- source/blender/python/intern/bpy_rna.c | 18 +++++++++++++++++- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 8b5d07b3986..3eeb7f55400 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -364,6 +364,7 @@ class WM_OT_doc_edit(bpy.types.Operator): __label__ = "Edit Documentation" __props__ = [doc_id, doc_new] + def _send_xmlrpc(self, data_dict): print("sending data:", data_dict) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index f2022cb490f..c8c8d5628ed 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -123,10 +123,8 @@ void ED_object_base_init_from_view(bContext *C, Base *base) } if (U.flag & USER_ADD_VIEWALIGNED) { - ARegion *ar= CTX_wm_region(C); - if(ar) { - RegionView3D *rv3d= ar->regiondata; - + RegionView3D *rv3d = CTX_wm_region_view3d(C); + if(rv3d) { rv3d->viewquat[0]= -rv3d->viewquat[0]; QuatToEul(rv3d->viewquat, ob->rot); rv3d->viewquat[0]= -rv3d->viewquat[0]; diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index a60de529e8f..b067d30e36e 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1178,7 +1178,6 @@ static PyObject *pyrna_struct_is_property_hidden(BPy_StructRNA * self, PyObject return PyBool_FromLong(hidden); } - static PyObject *pyrna_struct_dir(BPy_StructRNA * self) { PyObject *ret, *dict; @@ -1263,6 +1262,13 @@ static PyObject *pyrna_struct_dir(BPy_StructRNA * self) BLI_freelistN(&lb); } + /* Hard coded names */ + { + pystring = PyUnicode_FromString("id_data"); + PyList_Append(ret, pystring); + Py_DECREF(pystring); + } + return ret; } @@ -1319,6 +1325,16 @@ static PyObject *pyrna_struct_getattro( BPy_StructRNA * self, PyObject *pyname ) BLI_freelistN(&newlb); } + else if (strcmp(name, "id_data")==0) { /* XXX - hard coded */ + if(self->ptr.id.data) { + PointerRNA id_ptr; + RNA_id_pointer_create((ID *)self->ptr.id.data, &id_ptr); + return pyrna_struct_CreatePyObject(&id_ptr); + } + else { + Py_RETURN_NONE; + } + } else { PyErr_Format( PyExc_AttributeError, "StructRNA - Attribute \"%.200s\" not found", name); ret = NULL; From a7a77e3e94e5d3490c2fca291b3dba896b5482f6 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 28 Oct 2009 11:35:19 +0000 Subject: [PATCH 223/412] Bugfix: particle editmode cut tool still wasn't working correct. --- source/blender/editors/physics/particle_edit.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index ee1a21db7e5..438150b25ac 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -3321,15 +3321,13 @@ static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr) if((pset->flag & PE_KEEP_LENGTHS)==0) recalc_lengths(edit); - if(ELEM(pset->brushtype, PE_BRUSH_ADD, PE_BRUSH_CUT)) { - if(added || removed) { - if(pset->brushtype == PE_BRUSH_ADD && (pset->flag & PE_X_MIRROR)) - PE_mirror_x(scene, ob, 1); + if(ELEM(pset->brushtype, PE_BRUSH_ADD, PE_BRUSH_CUT) && (added || removed)) { + if(pset->brushtype == PE_BRUSH_ADD && (pset->flag & PE_X_MIRROR)) + PE_mirror_x(scene, ob, 1); - update_world_cos(ob,edit); - psys_free_path_cache(NULL, edit); - DAG_id_flush_update(&ob->id, OB_RECALC_DATA); - } + update_world_cos(ob,edit); + psys_free_path_cache(NULL, edit); + DAG_id_flush_update(&ob->id, OB_RECALC_DATA); } else PE_update_object(scene, ob, 1); From 2138afc0875b6be4ff58a6d9238defb9103006d6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Oct 2009 11:55:58 +0000 Subject: [PATCH 224/412] editing operator descriptions now works. --- release/scripts/modules/bpy_ops.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 3eeb7f55400..542f9aabc7e 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -380,11 +380,13 @@ class WM_OT_doc_edit(bpy.types.Operator): class_name, class_prop = self.doc_id.split('.') if self.doc_new: + op_class = getattr(bpy.types, class_name.upper() + '_OT_' + class_prop, None) - if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): - # operator - print("operator - old:'%s' -> new:'%s'" % ('', self.doc_new)) - self._send_xmlrpc({'title':'OPERATOR %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) + if op_class: + doc_orig = op_class.__rna__.description + if doc_orig != self.doc_new: + print("operator - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + self._send_xmlrpc({'title':'OPERATOR %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) else: doc_orig = getattr(bpy.types, class_name).__rna__.properties[class_prop].description if doc_orig != self.doc_new: From d6cde962865090347c82a324dd360f28df257369 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 28 Oct 2009 15:33:45 +0000 Subject: [PATCH 225/412] Added support for custom RNA properties on Bones, only worked for PoseChannel previously. --- source/blender/blenkernel/BKE_armature.h | 3 +- source/blender/blenkernel/intern/armature.c | 37 +++++-------------- source/blender/blenloader/intern/readfile.c | 6 ++- source/blender/blenloader/intern/writefile.c | 5 +++ .../blender/editors/armature/editarmature.c | 21 ++++++++++- source/blender/editors/include/ED_armature.h | 2 + source/blender/makesdna/DNA_armature_types.h | 1 + source/blender/makesrna/intern/rna_armature.c | 27 ++++++++++++++ 8 files changed, 69 insertions(+), 33 deletions(-) diff --git a/source/blender/blenkernel/BKE_armature.h b/source/blender/blenkernel/BKE_armature.h index 8f109034e3e..19c2662054b 100644 --- a/source/blender/blenkernel/BKE_armature.h +++ b/source/blender/blenkernel/BKE_armature.h @@ -72,8 +72,7 @@ extern "C" { struct bArmature *add_armature(char *name); struct bArmature *get_armature(struct Object *ob); -void free_boneChildren(struct Bone *bone); -void free_bones (struct bArmature *arm); +void free_bonelist (struct ListBase *lb); void free_armature(struct bArmature *arm); void make_local_armature(struct bArmature *arm); struct bArmature *copy_armature(struct bArmature *arm); diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 504450e0334..139ff9d6b19 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -60,6 +60,7 @@ #include "BKE_DerivedMesh.h" #include "BKE_displist.h" #include "BKE_global.h" +#include "BKE_idprop.h" #include "BKE_library.h" #include "BKE_lattice.h" #include "BKE_main.h" @@ -93,43 +94,25 @@ bArmature *get_armature(Object *ob) return NULL; } -void free_boneChildren(Bone *bone) -{ - Bone *child; - - if (bone) { - - child=bone->childbase.first; - if (child){ - while (child){ - free_boneChildren (child); - child=child->next; - } - BLI_freelistN (&bone->childbase); - } - } -} - -void free_bones (bArmature *arm) +void free_bonelist (ListBase *lb) { Bone *bone; - /* Free children (if any) */ - bone= arm->bonebase.first; - if (bone) { - while (bone){ - free_boneChildren (bone); - bone=bone->next; + + for(bone=lb->first; bone; bone=bone->next) { + if(bone->prop) { + IDP_FreeProperty(bone->prop); + MEM_freeN(bone->prop); } + free_bonelist(&bone->childbase); } - - BLI_freelistN(&arm->bonebase); + BLI_freelistN(lb); } void free_armature(bArmature *arm) { if (arm) { - free_bones(arm); + free_bonelist(&arm->bonebase); /* free editmode data */ if (arm->edbo) { diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 6ced440f5a5..5d6338af409 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -2345,12 +2345,14 @@ static void direct_link_bones(FileData *fd, Bone* bone) Bone *child; bone->parent= newdataadr(fd, bone->parent); + bone->prop= newdataadr(fd, bone->prop); + if(bone->prop) + IDP_DirectLinkProperty(bone->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd); link_list(fd, &bone->childbase); - for (child=bone->childbase.first; child; child=child->next) { + for(child=bone->childbase.first; child; child=child->next) direct_link_bones(fd, child); - } } static void direct_link_armature(FileData *fd, bArmature *arm) diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index 7368663f64a..ee84ae59974 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2131,6 +2131,11 @@ static void write_bone(WriteData *wd, Bone* bone) // Write this bone writestruct(wd, DATA, "Bone", 1, bone); + + /* Write ID Properties -- and copy this comment EXACTLY for easy finding + of library blocks that implement this.*/ + if (bone->prop) + IDP_WriteProperty(bone->prop, wd); // Write Children cbone= bone->childbase.first; diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 266e4fbdbb4..1e94e1b440c 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -64,6 +64,7 @@ #include "BKE_depsgraph.h" #include "BKE_DerivedMesh.h" #include "BKE_global.h" +#include "BKE_idprop.h" #include "BKE_main.h" #include "BKE_object.h" #include "BKE_report.h" @@ -186,6 +187,9 @@ void make_boneList(ListBase *edbo, ListBase *bones, EditBone *parent) eBone->rad_tail= curBone->rad_tail; eBone->segments = curBone->segments; eBone->layer = curBone->layer; + + if(curBone->prop) + eBone->prop= IDP_CopyProperty(curBone->prop); BLI_addtail(edbo, eBone); @@ -251,7 +255,7 @@ void ED_armature_from_edit(Object *obedit) Object *obt; /* armature bones */ - free_bones(arm); + free_bonelist(&arm->bonebase); /* remove zero sized bones, this gives instable restposes */ for (eBone=arm->edbo->first; eBone; eBone= neBone) { @@ -294,6 +298,9 @@ void ED_armature_from_edit(Object *obedit) newBone->rad_tail= eBone->rad_tail; newBone->segments= eBone->segments; newBone->layer = eBone->layer; + + if(eBone->prop) + newBone->prop= IDP_CopyProperty(eBone->prop); } /* Fix parenting in a separate pass to ensure ebone->bone connections @@ -1902,11 +1909,21 @@ void mouse_armature(bContext *C, short mval[2], int extend) void ED_armature_edit_free(struct Object *ob) { bArmature *arm= ob->data; + EditBone *eBone; /* Clear the editbones list */ if (arm->edbo) { - if (arm->edbo->first) + if (arm->edbo->first) { + for (eBone=arm->edbo->first; eBone; eBone=eBone->next) { + if (eBone->prop) { + IDP_FreeProperty(eBone->prop); + MEM_freeN(eBone->prop); + } + } + BLI_freelistN(arm->edbo); + } + MEM_freeN(arm->edbo); arm->edbo= NULL; } diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h index 0204acd6fbe..4898f70201e 100644 --- a/source/blender/editors/include/ED_armature.h +++ b/source/blender/editors/include/ED_armature.h @@ -41,10 +41,12 @@ struct View3D; struct ViewContext; struct RegionView3D; struct SK_Sketch; +struct IDProperty; typedef struct EditBone { struct EditBone *next, *prev; + struct IDProperty *prop; /* User-Defined Properties on this Bone */ struct EditBone *parent;/* Editbones have a one-way link (i.e. children refer to parents. This is converted to a two-way link for normal bones when leaving editmode. */ diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h index 590e7dadcdc..0f80fb4821f 100644 --- a/source/blender/makesdna/DNA_armature_types.h +++ b/source/blender/makesdna/DNA_armature_types.h @@ -44,6 +44,7 @@ struct AnimData; typedef struct Bone { struct Bone *next, *prev; /* Next/prev elements within this list */ + IDProperty *prop; /* User-Defined Properties on this Bone */ struct Bone *parent; /* Parent (ik parent if appropriate flag is set */ ListBase childbase; /* Children */ char name[32]; /* Name of the bone - must be unique within the armature */ diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c index 6c9d9263eeb..889f23e0d39 100644 --- a/source/blender/makesrna/intern/rna_armature.c +++ b/source/blender/makesrna/intern/rna_armature.c @@ -42,6 +42,7 @@ #include "BKE_context.h" #include "BKE_depsgraph.h" +#include "BKE_idprop.h" #include "BKE_main.h" #include "ED_armature.h" @@ -67,6 +68,30 @@ static char *rna_Bone_path(PointerRNA *ptr) return BLI_sprintfN("bones[\"%s\"]", ((Bone*)ptr->data)->name); } +static IDProperty *rna_Bone_idproperties(PointerRNA *ptr, int create) +{ + Bone *bone= ptr->data; + + if(create && !bone->prop) { + IDPropertyTemplate val = {0}; + bone->prop= IDP_New(IDP_GROUP, val, "RNA_Bone ID properties"); + } + + return bone->prop; +} + +static IDProperty *rna_EditBone_idproperties(PointerRNA *ptr, int create) +{ + EditBone *ebone= ptr->data; + + if(create && !ebone->prop) { + IDPropertyTemplate val = {0}; + ebone->prop= IDP_New(IDP_GROUP, val, "RNA_EditBone ID properties"); + } + + return ebone->prop; +} + static void rna_bone_layer_set(short *layer, const int *values) { int i, tot= 0; @@ -442,6 +467,7 @@ static void rna_def_bone(BlenderRNA *brna) RNA_def_struct_ui_text(srna, "Bone", "Bone in an Armature datablock."); RNA_def_struct_ui_icon(srna, ICON_BONE_DATA); RNA_def_struct_path_func(srna, "rna_Bone_path"); + RNA_def_struct_idproperties_func(srna, "rna_Bone_idproperties"); /* pointers/collections */ /* parent (pointer) */ @@ -509,6 +535,7 @@ static void rna_def_edit_bone(BlenderRNA *brna) srna= RNA_def_struct(brna, "EditBone", NULL); RNA_def_struct_sdna(srna, "EditBone"); + RNA_def_struct_idproperties_func(srna, "rna_Bone_idproperties"); RNA_def_struct_ui_text(srna, "Edit Bone", "Editmode bone in an Armature datablock."); RNA_def_struct_ui_icon(srna, ICON_BONE_DATA); From 044f7c5f331209d6f274a7d73a411fbe15746ea3 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Wed, 28 Oct 2009 16:32:14 +0000 Subject: [PATCH 226/412] New B.blend -Continuous Grab is now on by default -Opened scene panels by default -Multiple new screens: *Default (same as before) *Animation *Compositing *Quad View *Scripting *UV Editing *Video Editing These have been inspired by other Open Movie artists, and their B.blends, including Nathan Vegdahl, Andy Goralczyk, and Bassam Kurdali. The new screens are designed to make optimal use of the new 2.5 UI, and expose newer areas like the compositor, new animation editors and console. --- source/blender/editors/datafiles/B.blend.c | 12731 ++++++++++++++----- 1 file changed, 9741 insertions(+), 2990 deletions(-) diff --git a/source/blender/editors/datafiles/B.blend.c b/source/blender/editors/datafiles/B.blend.c index 28d8c650f7d..db112c60ebb 100644 --- a/source/blender/editors/datafiles/B.blend.c +++ b/source/blender/editors/datafiles/B.blend.c @@ -1,127 +1,2030 @@ /* DataToC output of file */ -int datatoc_B_blend_size= 108848; +int datatoc_B_blend_size= 324896; char datatoc_B_blend[]= { - 66, 76, 69, 78, 68, 69, 82, 95,118, 50, 53, 48, 82, 69, 78, 68, - 32, 0, 0, 0,108, 56,129,191, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 16, 1, 0, 0, 92, 55,129,191,196, 0, 0, 0, - 1, 0, 0, 0, 32, 32, 32, 55, 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,176,179,173, 9,128, 29,174, 9, 0, 16, 0, 0, -128, 32, 4, 0, 60,109,101,109,111,114,121, 50, 62, 0, 0, 0,185, 6, 0, 0, 32,160, 5,182, 96,117, 80,183,186, 85, 38, 8, - 4,252, 57,183, 28,124, 13, 8, 1, 0, 0, 0,196, 15,252,183, 88, 56,129,191, 16, 24,252,183,116, 56,129,191,113,215,250,183, - 28,124, 13, 8, 88, 56,129,191,180, 23,252,183, 21, 0, 0, 0, 32,160, 5,182, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, -244,191, 76,183,236, 56,129,191, 0, 56,129,191, 96,117, 80,183,123, 8, 63,183, 0, 56,129,191,100, 56,129,191,216, 56,129,191, -160, 56,129,191, 88, 22,252,183,186, 85, 38, 8,119,215,155,124, 0, 0, 0, 0, 0, 0, 0, 0,236, 56,129,191, 5, 57,129,191, -255,255,255,255,236, 56,129,191,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -104, 58,129,191, 0, 0, 0, 0,152,248,161, 9, 0, 0, 0, 0, 0, 0, 0, 0,180,122,174,182,184,177,181, 9, 0, 0, 32, 3, -180,216, 57,183, 96,117, 80,183, 64,192,182, 9,190,102, 7, 0,196, 15,252,183, 87, 77, 0, 0,164, 0, 0, 0, 32,178,173, 9, - 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105,110, 77, 97,110, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,178,173, 9,240,178,173, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 77,174, 9,168, 77,174, 9,168, 77,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, -112, 78,174, 9,112, 78,174, 9,112, 78,174, 9, 68, 65, 84, 65,148, 0, 0, 0,240,178,173, 9, 96, 1, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,224, 78,174, 9, 1, 0, 0, 0, 0, 0, 0, 0,176,179,173, 9, 0, 0, 0, 0,115, 99,114,101, -101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, -144, 6,213, 3, 0, 0, 0, 0, 0, 0,238, 3, 0, 0, 0, 0, 0, 0, 0, 0, 24,206,187, 9,200,161, 47, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 72,135,190, 9, 0, 0, 0, 0, 0, 0, 0, 0, 8,212,187, 9, 8,213,187, 9, 8,214,187, 9, - 8,214,187, 9,120,214,187, 9,200,161, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,140, 0, 0, 0,176,179,173, 9, -190, 0, 0, 0, 1, 0, 0, 0, 88,218, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,101,101,110, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,104,180,173, 9, - 40,183,173, 9,104,183,173, 9, 48,188,173, 9,120,188,173, 9,128, 2,174, 9,216, 69, 41, 10,216, 69, 41, 10,128, 29,174, 9, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -192,186, 68, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,180,173, 9, -191, 0, 0, 0, 1, 0, 0, 0,168,180,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0,168,180,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,180,173, 9,104,180,173, 9, 0, 0, 0, 0, 0, 0,213, 3, - 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,180,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,181,173, 9,168,180,173, 9, - 0, 0, 0, 0,144, 6,213, 3, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0, -104,181,173, 9,232,180,173, 9, 0, 0, 0, 0,144, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,181,173, 9, -191, 0, 0, 0, 1, 0, 0, 0,168,181,173, 9, 40,181,173, 9, 0, 0, 0, 0, 0, 0,186, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0,168,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,181,173, 9,104,181,173, 9, 0, 0, 0, 0,144, 6,186, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,181,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,182,173, 9,168,181,173, 9, - 0, 0, 0, 0, 60, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0, -104,182,173, 9,232,181,173, 9, 0, 0, 0, 0, 60, 5,186, 3, 1, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,104,182,173, 9, -191, 0, 0, 0, 1, 0, 0, 0,168,182,173, 9, 40,182,173, 9, 0, 0, 0, 0, 60, 5,244, 2, 0, 0, 0, 0, 68, 65, 84, 65, - 20, 0, 0, 0,168,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0,232,182,173, 9,104,182,173, 9, 0, 0, 0, 0,144, 6,244, 2, - 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,232,182,173, 9,191, 0, 0, 0, 1, 0, 0, 0, 40,183,173, 9,168,182,173, 9, - 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 40,183,173, 9,191, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0,232,182,173, 9, 0, 0, 0, 0, 60, 5,128, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,104,183,173, 9, -192, 0, 0, 0, 1, 0, 0, 0,176,183,173, 9, 0, 0, 0, 0,168,180,173, 9,232,180,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0,176,183,173, 9,192, 0, 0, 0, 1, 0, 0, 0,248,183,173, 9,104,183,173, 9,168,180,173, 9, -104,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,248,183,173, 9,192, 0, 0, 0, 1, 0, 0, 0, - 64,184,173, 9,176,183,173, 9,232,180,173, 9,168,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, - 64,184,173, 9,192, 0, 0, 0, 1, 0, 0, 0,136,184,173, 9,248,183,173, 9,104,181,173, 9,168,181,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,136,184,173, 9,192, 0, 0, 0, 1, 0, 0, 0,208,184,173, 9, 64,184,173, 9, -104,180,173, 9,232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,208,184,173, 9,192, 0, 0, 0, - 1, 0, 0, 0, 24,185,173, 9,136,184,173, 9, 40,181,173, 9,232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0, 24,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 96,185,173, 9,208,184,173, 9,104,181,173, 9, 40,182,173, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 96,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0,168,185,173, 9, - 24,185,173, 9,168,181,173, 9, 40,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,168,185,173, 9, -192, 0, 0, 0, 1, 0, 0, 0,240,185,173, 9, 96,185,173, 9,232,181,173, 9,104,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0,240,185,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 56,186,173, 9,168,185,173, 9, 40,182,173, 9, -104,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 56,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0, -128,186,173, 9,240,185,173, 9,168,181,173, 9,168,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, -128,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0,200,186,173, 9, 56,186,173, 9, 40,181,173, 9,168,182,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,200,186,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 16,187,173, 9,128,186,173, 9, -104,182,173, 9,168,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 16,187,173, 9,192, 0, 0, 0, - 1, 0, 0, 0, 88,187,173, 9,200,186,173, 9,104,180,173, 9,232,182,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0, 88,187,173, 9,192, 0, 0, 0, 1, 0, 0, 0,160,187,173, 9, 16,187,173, 9,104,181,173, 9,232,182,173, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,160,187,173, 9,192, 0, 0, 0, 1, 0, 0, 0,232,187,173, 9, - 88,187,173, 9, 40,182,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,232,187,173, 9, -192, 0, 0, 0, 1, 0, 0, 0, 48,188,173, 9,160,187,173, 9,232,181,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0, 48,188,173, 9,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,187,173, 9,232,182,173, 9, - 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,120,188,173, 9,194, 0, 0, 0, 1, 0, 0, 0, - 88,191,173, 9, 0, 0, 0, 0,104,181,173, 9,168,180,173, 9,232,180,173, 9,168,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, -144, 6, 0, 0,187, 3, 0, 0,213, 3, 0, 0, 7, 7,145, 6, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,160,216,162, 9, - 32, 29,174, 9, 32, 29,174, 9, 8,189,173, 9, 48,190,173, 9, 0, 0, 0, 0, 0, 0, 0, 0,112,180,192, 9,224, 89,192, 9, - 68, 65, 84, 65,248, 0, 0, 0, 8,189,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 48,190,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,210, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 66, 76, 69, 78, 68, 69, 82, 45,118, 50, 53, 48, 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 71, 76, 79, 66, 24, 1, 0, 0,224,236,191, 95,255,127, 0, 0,196, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 55, + 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,160,182, 42, 3, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 16, 0, 0, +128, 32, 4, 0, 47, 85,115,101,114,115, 47, 87,105,108,108,105, 97,109, 47, 46, 66, 50, 53, 46, 98,108,101,110,100, 0,191, 95, +255,127, 0, 0, 84,172,195, 2, 1, 0, 0, 0,112,237,191, 95,255,127, 0, 0,134,188, 91, 0, 1, 0, 0, 0, 80,237,191, 95, +255,127, 0, 0,208, 50,197, 2, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0,176, 65,150, 27, 1, 0, 0, 0,144,237,191, 95, +255,127, 0, 0, 48,172,195, 2, 1, 0, 0, 0,192,237,191, 95,255,127, 0, 0,253,190, 91, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 32, 0, 0, 0, 82, 69, 78, 68,176, 65,150, 27, 1, 0, 0, 0, 82, 69, 78, 68, + 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,232,237,191, 95,255,127, 0, 0, 16,238,191, 95, +255,127, 0, 0, 9,198, 91, 0, 1, 0, 0, 0, 16, 76, 41, 3, 1, 0, 0, 0,176, 65,150, 27, 1, 0, 0, 0, 1, 0, 0, 0, +250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 0, 0, 8, 1, 0, 0, 48, 79, 41, 3, + 1, 0, 0, 0, 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105,110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0,128, 80, 41, 3, + 1, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 46, 13, 3, + 1, 0, 0, 0,112,216,222, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,168,121, 22, + 1, 0, 0, 0, 32,153,105, 29, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 75, 36, 3, + 1, 0, 0, 0, 48, 75, 36, 3, 1, 0, 0, 0, 48, 75, 36, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 76, 36, 3, + 1, 0, 0, 0, 16, 76, 36, 3, 1, 0, 0, 0, 16, 76, 36, 3, 1, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,128, 80, 41, 3, + 1, 0, 0, 0, 96, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 84, 36, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,115, 99,114,101, +101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 46, 4, 0, 0, 0, 0, 1, 0,238, 3, 0, 0, 1, 0, 0, 0, 0, 0,208, 68,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,223, 36, 3, 1, 0, 0, 0, 96, 77, 31, 25, + 1, 0, 0, 0, 96, 77, 31, 25, 1, 0, 0, 0,176, 58, 14, 3, 1, 0, 0, 0,112,103,120, 22, 1, 0, 0, 0,224,104,120, 22, + 1, 0, 0, 0,224,104,120, 22, 1, 0, 0, 0, 48,211, 30, 25, 1, 0, 0, 0, 64, 77, 98, 29, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,160, 81, 41, 3, 1, 0, 0, 0,190, 0, 0, 0, + 1, 0, 0, 0, 0, 78, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 82, 65,110,105,109, 97,116,105,111,110, 0, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 82, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 48, 90, 41, 3, + 1, 0, 0, 0,208,101, 41, 3, 1, 0, 0, 0, 48,102, 41, 3, 1, 0, 0, 0,208, 59, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 82, 41, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 83, 41, 3, + 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 84, 41, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 85, 41, 3, + 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 19, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 85, 41, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 44, 6,184, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,184, 1, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 86, 41, 3, + 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 87, 41, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 2, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 88, 41, 3, + 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 88, 41, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,124, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2,124, 3, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 89, 41, 3, + 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 40, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 89, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 40, 3, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 90, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 90, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 83, 41, 3, + 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 90, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 90, 41, 3, 1, 0, 0, 0, 48, 90, 41, 3, 1, 0, 0, 0, 16, 83, 41, 3, + 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 90, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 91, 41, 3, 1, 0, 0, 0,144, 90, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, + 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 91, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 91, 41, 3, 1, 0, 0, 0,240, 90, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, + 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 91, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 92, 41, 3, 1, 0, 0, 0, 80, 91, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, + 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 92, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 92, 41, 3, 1, 0, 0, 0,176, 91, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, + 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 92, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 92, 41, 3, 1, 0, 0, 0, 16, 92, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, + 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 92, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 93, 41, 3, 1, 0, 0, 0,112, 92, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, + 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 93, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 93, 41, 3, 1, 0, 0, 0,208, 92, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, + 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 93, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 93, 41, 3, 1, 0, 0, 0, 48, 93, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, + 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 93, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 94, 41, 3, 1, 0, 0, 0,144, 93, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, + 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 94, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 94, 41, 3, 1, 0, 0, 0,240, 93, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, + 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 94, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 95, 41, 3, 1, 0, 0, 0, 80, 94, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, + 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 95, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 95, 41, 3, 1, 0, 0, 0,176, 94, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, + 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 95, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 95, 41, 3, 1, 0, 0, 0, 16, 95, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, + 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 95, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 96, 41, 3, 1, 0, 0, 0,112, 95, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, + 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 96, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 96, 41, 3, 1, 0, 0, 0,208, 95, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, + 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 96, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 96, 41, 3, 1, 0, 0, 0, 48, 96, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, + 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 96, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 97, 41, 3, 1, 0, 0, 0,144, 96, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, + 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 97, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 97, 41, 3, 1, 0, 0, 0,240, 96, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, + 1, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 97, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 98, 41, 3, 1, 0, 0, 0, 80, 97, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, + 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 98, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 98, 41, 3, 1, 0, 0, 0,176, 97, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, + 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 98, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 98, 41, 3, 1, 0, 0, 0, 16, 98, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, + 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 98, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 99, 41, 3, 1, 0, 0, 0,112, 98, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, + 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 99, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 99, 41, 3, 1, 0, 0, 0,208, 98, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, + 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 99, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 99, 41, 3, 1, 0, 0, 0, 48, 99, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, + 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 99, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,100, 41, 3, 1, 0, 0, 0,144, 99, 41, 3, 1, 0, 0, 0,176, 88, 41, 3, + 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,100, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,100, 41, 3, 1, 0, 0, 0,240, 99, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, + 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,100, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,101, 41, 3, 1, 0, 0, 0, 80,100, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, + 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,101, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,101, 41, 3, 1, 0, 0, 0,176,100, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, + 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,101, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,101, 41, 3, 1, 0, 0, 0, 16,101, 41, 3, 1, 0, 0, 0, 16, 86, 41, 3, + 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,101, 41, 3, + 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,101, 41, 3, 1, 0, 0, 0,112, 89, 41, 3, + 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48,102, 41, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 84, 41, 3, + 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, + 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,128, 77, 42, 3, 1, 0, 0, 0,128, 77, 42, 3, 1, 0, 0, 0, 16,103, 41, 3, + 1, 0, 0, 0,112,104, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,123,145, 27, + 1, 0, 0, 0,112,162,145, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,103, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112,104, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -144, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,145, 6, 26, 0,145, 6, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 6, 0, 0,187, 3, 0, 0,212, 3, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,145, 6, 26, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,184,217,162, 9, 88,245, 47, 10, 88,245, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0,248, 10, 48, 10, - 16,219,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 48,190,173, 9,195, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 8,189,173, 9, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, - 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, - 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,213, 3, 0, 0,213, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 56,217,162, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 8,189, 39, 10, 56,222,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0, - 88,191,173, 9,194, 0, 0, 0, 1, 0, 0, 0, 96,233,173, 9,120,188,173, 9,232,181,173, 9,104,182,173, 9,168,182,173, 9, - 40,181,173, 9, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, 0, 0, 0, 0,243, 2, 0, 0, 4, 4, 84, 1,244, 2, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 72,214,162, 9,216,225,173, 9, 64,232,173, 9,232,191,173, 9, 16,193,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 66,204, 9,216, 46,227, 9, 68, 65, 84, 65,248, 0, 0, 0,232,191,173, 9,195, 0, 0, 0, 1, 0, 0, 0, - 16,193,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 16, 66,252, 54, 0, 0,170, 67, - 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, - 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, - 31, 0, 84, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0, -144, 6, 0, 0,213, 2, 0, 0,243, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 31, 0, - 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,216,162, 9, 16,183, 41, 10, 16,183, 41, 10, - 0, 0, 0, 0, 0, 0, 0, 0,168,250, 41, 10,104,226,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, - 16,193,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,191,173, 9, 0, 0, 0, 0, 0, 0,161, 67, 0, 0, 62,196, - 0, 0, 0, 0, 0, 0, 0, 0,254,127,161, 67,254,191, 48,196, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0, -212, 2, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0, -212, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 84, 1,213, 2, 67, 1,195, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200,186, 39, 10, - 1, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, 0, 0, 0, 0,212, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 84, 1,213, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224,214,162, 9, 96,225, 39, 10, 40,156, 39, 10, 56,194,173, 9,104,224,173, 9,112, 11, 40, 10, 0,230,187, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 56,194,173, 9,193, 0, 0, 0, 1, 0, 0, 0,168,195,173, 9, 0, 0, 0, 0, - 96,215,162, 9, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,104, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,103, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, + 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0,240,153, 41, 3, 1, 0, 0, 0, 48,102, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, + 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0,183, 1, 0, 0, 4, 4, 84, 1,184, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, + 1, 0, 0, 0, 96,145, 41, 3, 1, 0, 0, 0,144,152, 41, 3, 1, 0, 0, 0,176,106, 41, 3, 1, 0, 0, 0, 16,108, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,143,149, 27, 1, 0, 0, 0, 48, 61,149, 27, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,106, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,108, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,170, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, + 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 84, 1, 31, 0, 84, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,153, 1, 0, 0,183, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 66, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,108, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,106, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 67, 0,128,195,195, 0, 0, 0, 0, 0, 0, 0, 0, + 1,128,161, 67, 2,128,195,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, + 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0, 84, 1,153, 1, 67, 1,135, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,225, 30, 25, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84, 1,153, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,109, 41, 3, 1, 0, 0, 0,208,143, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,109, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,111, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, + 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, + 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116, +101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, + 67, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, -168,195,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 24,197,173, 9, 56,194,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,111, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,112, 41, 3, 1, 0, 0, 0,112,109, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,112, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,114, 41, 3, + 1, 0, 0, 0, 0,111, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101, +114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,114, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,115, 41, 3, 1, 0, 0, 0,144,112, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,115, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,117, 41, 3, + 1, 0, 0, 0, 32,114, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, + 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, + 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,117, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,118, 41, 3, 1, 0, 0, 0,176,115, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,118, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,120, 41, 3, + 1, 0, 0, 0, 64,117, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112, +117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, + 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,120, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,121, 41, 3, 1, 0, 0, 0,208,118, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,121, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,123, 41, 3, + 1, 0, 0, 0, 96,120, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, + 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,123, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,240,121, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,126, 41, 3, + 1, 0, 0, 0,128,123, 41, 3, 1, 0, 0, 0, 16,128,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116, +115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255, + 67, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,126, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,128, 41, 3, 1, 0, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,240,132,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, 67, 1, 69, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,128, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,129, 41, 3, + 1, 0, 0, 0,160,126, 41, 3, 1, 0, 0, 0,176,142,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118, +105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254, + 67, 1, 36, 0, 20, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,129, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,131, 41, 3, 1, 0, 0, 0, 48,128, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,131, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,132, 41, 3, + 1, 0, 0, 0,192,129, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101, +114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, +114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,132, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,134, 41, 3, 1, 0, 0, 0, 80,131, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,114, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,134, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,136, 41, 3, + 1, 0, 0, 0,224,132, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, + 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, +114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,136, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,137, 41, 3, 1, 0, 0, 0,112,134, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,114, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,137, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,139, 41, 3, + 1, 0, 0, 0, 0,136, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112, +117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, +114, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,139, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,140, 41, 3, 1, 0, 0, 0,144,137, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99, +101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99, +101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,140, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,142, 41, 3, + 1, 0, 0, 0, 32,139, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, + 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, +114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,142, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,143, 41, 3, 1, 0, 0, 0,176,140, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,143, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 64,142, 41, 3, 1, 0, 0, 0, 48,123,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110, +101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, + 67, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96,145, 41, 3, + 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144,152, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 32, 78, 31, 25, 1, 0, 0, 0,255, 21, 0, 0, +160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,146, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0,148, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,148, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,146, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96,149, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,149, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,144,152, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,145, 41, 3, + 1, 0, 0, 0,160,146, 41, 3, 1, 0, 0, 0, 0,148, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240,153, 41, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224,165, 41, 3, 1, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, + 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15, 44, 6, 84, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0,144,157, 41, 3, 1, 0, 0, 0,128,164, 41, 3, 1, 0, 0, 0,208,154, 41, 3, + 1, 0, 0, 0, 48,156, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 11,149, 27, + 1, 0, 0, 0, 80,232,180, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,154, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 48,156, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0,128,197, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 44, 6, 26, 0, 44, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,156, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,154, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 18, 0, 0, 0, + 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 44, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,144,157, 41, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0,128,164, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,158, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,240,159, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,159, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,158, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,161, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80,161, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,128,164, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,157, 41, 3, + 1, 0, 0, 0,144,158, 41, 3, 1, 0, 0, 0,240,159, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,224,165, 41, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,240,153, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, + 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,185, 1, 0, 0, 39, 3, 0, 0, 3, 3, 84, 1,111, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0,128,169, 41, 3, 1, 0, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,192,166, 41, 3, + 1, 0, 0, 0, 32,168, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,138,121, 22, + 1, 0, 0, 0,160, 6, 27, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,166, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 32,168, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,170, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, 26, 0, 84, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 14, 3, 0, 0, 39, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,168, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,166, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 67, 0,128,161,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0, + 84, 1, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0, + 84, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, + 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 84, 1, 85, 1, 67, 1, 67, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,185, 1, 0, 0, 13, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 85, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,169, 41, 3, 1, 0, 0, 0,166, 0, 0, 0, + 1, 0, 0, 0, 0,175, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,238, 30, 25, 1, 0, 0, 0, 96,238, 30, 25, + 1, 0, 0, 0,224,170, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0,224,170, 41, 3, 1, 0, 0, 0,218, 0, 0, 0, + 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 48,171, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 48,171, 41, 3, + 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, + 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64,172, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,173, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, +247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,160,173, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,172, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, + 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, +156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, +247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 0, 1, 0, 0, 0,175, 41, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,128,169, 41, 3, + 1, 0, 0, 0, 64,172, 41, 3, 1, 0, 0, 0,160,173, 41, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,176, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,177, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,177, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,176, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, + 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,179, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,179, 41, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,175, 41, 3, 1, 0, 0, 0, 64,176, 41, 3, 1, 0, 0, 0,160,177, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,224,165, 41, 3, + 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 1, 1,147, 3, +190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,144,208, 41, 3, 1, 0, 0, 0,176,212, 41, 3, + 1, 0, 0, 0,112,184, 41, 3, 1, 0, 0, 0, 0,204, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48, 21, 28, 25, 1, 0, 0, 0, 32,188,121, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,184, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,185, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 91, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192,100, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +146, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,147, 3, 26, 0,147, 3, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0, 85, 0, 0, 0, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,147, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,185, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,190, 41, 3, 1, 0, 0, 0,112,184, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,187, 41, 3, 1, 0, 0, 0,192,188, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,187, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,188, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,188, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,187, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, + 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253, +143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,190, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,193, 41, 3, 1, 0, 0, 0,208,185, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, +111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,191, 41, 3, 1, 0, 0, 0,176,191, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,191, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,193, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,204, 41, 3, + 1, 0, 0, 0, 80,190, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, + 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 43, 6, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,194, 41, 3, 1, 0, 0, 0,112,202, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,194, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,196, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, +115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, +163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,196, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,197, 41, 3, 1, 0, 0, 0,160,194, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,197, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,199, 41, 3, + 1, 0, 0, 0, 48,196, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, +163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,199, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,200, 41, 3, 1, 0, 0, 0,192,197, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,200, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,202, 41, 3, + 1, 0, 0, 0, 80,199, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, +103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, +163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,202, 41, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,200, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,204, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 64,193, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,147, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,205, 41, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,205, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,153,142, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, + 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, + 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,210,225,233, 62, +208,249,224,190,222,160, 81,191,184,158, 81,191,127, 12,130, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, 43, 31,114,188, +206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,133,109,188, 62, + 69,144, 81, 63,160, 70, 67,188, 0,128,242,181,195, 13,188,190,192, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196, +135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,210,225,233, 62, +208,249,224,190,222,160, 81,191,184,158, 81,191,127, 12,130, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, 43, 31,114,188, +206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 87, 41, 13, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 41, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87, 41, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 92, 62, 55, 63, + 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,208, 41, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,176,212, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0,255,255, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,209, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 80,211, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,211, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,209, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176,212, 41, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,208, 41, 3, 1, 0, 0, 0,240,209, 41, 3, 1, 0, 0, 0, 80,211, 41, 3, + 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0,208,241, 41, 3, 1, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, + 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 2, 0, 0, 85, 0, 0, 0,223, 1, 0, 0, 2, 2,152, 2,139, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 8, 15, 3, + 1, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,208,240, 41, 3, 1, 0, 0, 0,144,214, 41, 3, 1, 0, 0, 0,176,218, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 29,155, 27, 1, 0, 0, 0,224,242, 27, 25, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,214, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,215, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, + 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 10, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,215, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,217, 41, 3, + 1, 0, 0, 0,144,214, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 72, 67, 0,128,175,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 0, 0, 0, 0, +199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, + 6, 0,217, 0,113, 1,200, 0, 95, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,217, 0,113, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 11, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,217, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,218, 41, 3, + 1, 0, 0, 0,240,215, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 2, 0, 0,151, 2, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 12, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,218, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,217, 41, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, + 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 18, 0, 0, 0, +190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,190, 1, 0, 0, 18, 0, 0, 0,112, 1, 0, 0,111, 18,131, 58, +111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0,191, 1,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,217, 0, 0, 0,151, 2, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,191, 1,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 9, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,192,225, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,221, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64,221, 41, 3, + 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,221, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0,223, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,223, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96,224, 41, 3, 1, 0, 0, 0,160,221, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,224, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, + 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0, +164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0,192,225, 41, 3, 1, 0, 0, 0,167, 0, 0, 0, + 1, 0, 0, 0,176,236, 41, 3, 1, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,160,221, 41, 3, 1, 0, 0, 0, 96,224, 41, 3, + 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,226, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0,228, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,228, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96,229, 41, 3, 1, 0, 0, 0,160,226, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,229, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,192,230, 41, 3, 1, 0, 0, 0, 0,228, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, + 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,230, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 32,232, 41, 3, 1, 0, 0, 0, 96,229, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,232, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,230, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128,233, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128,233, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, + 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, + 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, + 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67, +151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,176,236, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,208,240, 41, 3, 1, 0, 0, 0,192,225, 41, 3, + 1, 0, 0, 0,160,226, 41, 3, 1, 0, 0, 0, 32,232, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,238, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,239, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, +126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,239, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,238, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, +248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208,240, 41, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,236, 41, 3, 1, 0, 0, 0, 16,238, 41, 3, + 1, 0, 0, 0,112,239, 41, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,241, 41, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, + 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,225, 1, 0, 0,123, 3, 0, 0, 12, 12,152, 2,155, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144, 44, 15, 3, 1, 0, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 80, 18, 42, 3, 1, 0, 0, 0,176,242, 41, 3, + 1, 0, 0, 0,112,245, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,237, 29, 25, + 1, 0, 0, 0,128,124,120, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,242, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 16,244, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 46, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,244, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112,245, 41, 3, 1, 0, 0, 0,176,242, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0, 0,194, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 64,227,195, 0, 0,175,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0, +128, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, + 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,200, 0,129, 1,200, 0,111, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0,251, 1, 0, 0,123, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0,129, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48, 47, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,245, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,244, 41, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 64,227,195, 0, 0,175,194,191, 1, 0, 0,208, 1, 0, 0, 18, 0, 0, 0, +128, 1, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 18, 0, 0, 0, +128, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,208, 1,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0, 0, 0,151, 2, 0, 0,251, 1, 0, 0,123, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112, 45, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 21, 1, 0, 0, + 1, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,248, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112,249, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 49, 2, 0, 0, 74, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,249, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,208,250, 41, 3, 1, 0, 0, 0, 16,248, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,219,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0, +199, 1, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0, +199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, + 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,217, 0,200, 1,200, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0,200, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,250, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 48,252, 41, 3, 1, 0, 0, 0,112,249, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,252, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,250, 41, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, + 0, 0,160, 64, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +199, 1, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 18, 0, 0, 0, +199, 1, 0, 0,111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0,161, 0, 0, 0, + 1, 0, 0, 0, 64, 3, 42, 3, 1, 0, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 16,248, 41, 3, 1, 0, 0, 0, 48,252, 41, 3, + 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,254, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,192,254, 41, 3, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,255, 41, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 0, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 0, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 1, 42, 3, 1, 0, 0, 0, 32,255, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0, +189, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +171, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 1, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 3, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 64, 3, 42, 3, + 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, 48, 14, 42, 3, 1, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0, 32,255, 41, 3, + 1, 0, 0, 0,224, 1, 42, 3, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 4, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 5, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 5, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 6, 42, 3, 1, 0, 0, 0, 32, 4, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 6, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 8, 42, 3, 1, 0, 0, 0,128, 5, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, +111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 8, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 9, 42, 3, 1, 0, 0, 0,224, 6, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 9, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 8, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0, 11, 42, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, +142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, +111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63, +140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190, +191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, +159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63, +140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48, 14, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 80, 18, 42, 3, + 1, 0, 0, 0, 64, 3, 42, 3, 1, 0, 0, 0, 32, 4, 42, 3, 1, 0, 0, 0,160, 9, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,144, 15, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 16, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,240, 16, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 15, 42, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0, 80, 18, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 14, 42, 3, + 1, 0, 0, 0,144, 15, 42, 3, 1, 0, 0, 0,240, 16, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208, 59, 42, 3, 1, 0, 0, 0,208,241, 41, 3, + 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 16, 89, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,125, 3, 0, 0, 18, 4, 0, 0, 13, 13,152, 2, +150, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 48, 15, 3, 1, 0, 0, 0,176, 25, 42, 3, 1, 0, 0, 0,208, 58, 42, 3, + 1, 0, 0, 0, 48, 20, 42, 3, 1, 0, 0, 0, 80, 24, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240,234,148, 27, 1, 0, 0, 0,112,101,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 20, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 21, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,192, 18, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 33, 68, 0, 0,200, 65, 0,192, 33, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,125, 3, 0, 0, +150, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 49, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 21, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 22, 42, 3, 1, 0, 0, 0, 48, 20, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 55, 67, 0, 0, 64,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,212,194, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +199, 0, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,200, 0,124, 0,200, 0,106, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0,151, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0,124, 0, 0, 0, 2, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 50, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 22, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 24, 42, 3, 1, 0, 0, 0,144, 21, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,151, 2, 0, 0,151, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,144, 51, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 24, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 22, 42, 3, 1, 0, 0, 0, 0, 0, 16,193, + 0, 0,130, 67, 0, 0, 64,194, 0, 0, 0, 0, 70, 62,159,193,228,115,135, 67, 0, 0,212,194, 0, 0, 0, 0,191, 1, 0, 0, +208, 1, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +190, 1, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, + 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,208, 1,124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0, 0, 0,151, 2, 0, 0,151, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1,124, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 48, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,176, 25, 42, 3, + 1, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,208, 26, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 26, 42, 3, 1, 0, 0, 0, 20, 1, 0, 0, + 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 28, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 34, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, + 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,136, 2, 26, 0,136, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,135, 2, 0, 0, 13, 3, 0, 0, 38, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,136, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 28, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 29, 42, 3, + 1, 0, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0,228,195, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 53, 67, 0, 0,190,195, 0, 0, 34,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +180, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, + 6, 0,181, 0,236, 0,181, 0,218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 39, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,181, 0,236, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 29, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144, 28, 42, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,104, 68, 0, 0,190,195, 0, 0, 34,195,194, 1, 0, 0,211, 1, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, +193, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,193, 1, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, + 4, 0,211, 1,236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,181, 0, 0, 0,135, 2, 0, 0, 39, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,211, 1,236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0, 21, 1, 0, 0, 1, 0, 0, 0, 16, 38, 42, 3, + 1, 0, 0, 0,176, 25, 42, 3, 1, 0, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0,240, 29, 42, 3, 1, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 32, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 33, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, + 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 49, 2, 0, 0, 74, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 33, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 35, 42, 3, + 1, 0, 0, 0,144, 32, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 72, 67, 0, 0,219,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0, +199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, + 6, 0,217, 0,200, 1,200, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,217, 0,200, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 35, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 36, 42, 3, + 1, 0, 0, 0,240, 33, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,159, 3, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 36, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 35, 42, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, + 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 18, 0, 0, 0, +198, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 18, 0, 0, 0,199, 1, 0, 0,111, 18,131, 58, +111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,217, 0, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 16, 38, 42, 3, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,192, 43, 42, 3, + 1, 0, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0,144, 32, 42, 3, 1, 0, 0, 0,176, 36, 42, 3, 1, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 39, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 39, 42, 3, + 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 39, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96, 42, 42, 3, 1, 0, 0, 0,160, 39, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 42, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, + 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0, +164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0,192, 43, 42, 3, 1, 0, 0, 0,167, 0, 0, 0, + 1, 0, 0, 0,176, 54, 42, 3, 1, 0, 0, 0, 16, 38, 42, 3, 1, 0, 0, 0,160, 39, 42, 3, 1, 0, 0, 0, 96, 42, 42, 3, + 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 44, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0,160, 44, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,192, 48, 42, 3, 1, 0, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, + 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 48, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 48, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 51, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128, 51, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, + 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, + 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, + 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67, +151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,176, 54, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,208, 58, 42, 3, 1, 0, 0, 0,192, 43, 42, 3, + 1, 0, 0, 0,160, 44, 42, 3, 1, 0, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 56, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 57, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, +126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 57, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 56, 42, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, +248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208, 58, 42, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 54, 42, 3, 1, 0, 0, 0, 16, 56, 42, 3, + 1, 0, 0, 0,112, 57, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208, 59, 42, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,112, 89, 41, 3, + 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 18, 4, 0, 0, 1, 1, 84, 1,234, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,160, 66, 42, 3, 1, 0, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,176, 60, 42, 3, + 1, 0, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,127, 30, 25, + 1, 0, 0, 0,240, 27,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 60, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 64, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, + 23, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 0, 10, 0,132, 1, 24, 0,132, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 41, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 60, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1,234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112, 63, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112, 63, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0, 24,255, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 81, 78, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, 72, 1, 77,190, + 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, + 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190,152, 9, 52,193, + 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, 88,126,162,190,229,251,159, 62, 55, 53,101, 63, + 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,151, 62,208,192, 78,255,170, 64, + 0, 0,128, 63, 3,201,194, 63,153,245,130,191,244,250, 39,191, 8,165, 39,191,143,164,206, 63,210,239,128, 63,180,164, 28, 63, +149, 84, 28, 63,180,153,196,188, 21,186, 56, 64, 10,108,228,190, 52,247,227,190, 82, 21, 64,191, 73,112,155,191,216, 49, 49, 65, +152, 9, 52, 65,223, 70,158, 62, 31,234,167, 62, 32,208,159,187, 0, 0,186,180,179,158,201,189,148,129,198, 61, 50, 51,142, 62, + 0, 0,136, 51,168,120, 21,194,107, 5, 2, 66,203,135,213,193,147,214,159,192,177, 38, 19, 66,124,173,255,193, 96,101,210, 65, +128, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, + 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190,152, 9, 52,193, + 0, 0,128, 63, 3,201,194, 63,153,245,130,191,244,250, 39,191, 8,165, 39,191,143,164,206, 63,210,239,128, 63,180,164, 28, 63, +149, 84, 28, 63,180,153,196,188, 21,186, 56, 64, 10,108,228,190, 52,247,227,190, 82, 21, 64,191, 73,112,155,191,216, 49, 49, 65, +152, 9, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,226,192, 45, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,160, 66, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,192, 70, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 68, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 69, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 69, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 62,195, 0, 0, 0, 0,115, 1, 0, 0, +132, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +114, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,208, 0,115, 1,190, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, +248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,208, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 70, 42, 3, + 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,160, 66, 42, 3, 1, 0, 0, 0, 0, 68, 42, 3, + 1, 0, 0, 0, 96, 69, 42, 3, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 72, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 32, 72, 42, 3, + 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,112, 72, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, +208, 0, 0, 0,112, 72, 42, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, + 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, + 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 73, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 74, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, + 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, + 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 74, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 73, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0, +205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, + 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,192, 70, 42, 3, 1, 0, 0, 0,128, 73, 42, 3, 1, 0, 0, 0,224, 74, 42, 3, 1, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0, +208, 0, 0, 0, 0, 78, 42, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0,160, 81, 41, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 67,111,109,112,111,115,105,116,105,110, +103, 0,103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 79, 42, 3, + 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,208, 88, 42, 3, 1, 0, 0, 0, 48, 89, 42, 3, + 1, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 79, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 79, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240, 80, 42, 3, + 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 81, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 81, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5,204, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 80, 81, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,204, 3, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 82, 42, 3, + 1, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 82, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 83, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 83, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 84, 42, 3, + 1, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 84, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 84, 42, 3, + 1, 0, 0, 0,240, 83, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 84, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 85, 42, 3, + 1, 0, 0, 0, 80, 84, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 85, 42, 3, + 1, 0, 0, 0,176, 84, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 85, 42, 3, + 1, 0, 0, 0, 16, 85, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 86, 42, 3, + 1, 0, 0, 0,112, 85, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 86, 42, 3, + 1, 0, 0, 0,208, 85, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 86, 42, 3, + 1, 0, 0, 0, 48, 86, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 87, 42, 3, + 1, 0, 0, 0,144, 86, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 87, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 87, 42, 3, + 1, 0, 0, 0,240, 86, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 87, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 88, 42, 3, + 1, 0, 0, 0, 80, 87, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 88, 42, 3, + 1, 0, 0, 0,176, 87, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 88, 42, 3, + 1, 0, 0, 0, 16, 88, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112, 88, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48, 89, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208, 92, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, + 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, + 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,182, 42, 3, + 1, 0, 0, 0, 32,182, 42, 3, 1, 0, 0, 0, 16, 90, 42, 3, 1, 0, 0, 0,112, 91, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 90, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 91, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,112, 91, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 90, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, + 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,208, 92, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192,104, 42, 3, 1, 0, 0, 0, 48, 89, 42, 3, + 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,129, 7, + 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 96, 42, 3, 1, 0, 0, 0, 96,103, 42, 3, + 1, 0, 0, 0,176, 93, 42, 3, 1, 0, 0, 0, 16, 95, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 93, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 95, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 95, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 93, 42, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, + 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,112, 96, 42, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 96,103, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 97, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 98, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 98, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 97, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, + 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,100, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 48,100, 42, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,103, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112, 96, 42, 3, 1, 0, 0, 0,112, 97, 42, 3, 1, 0, 0, 0,208, 98, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,192,104, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0,208, 92, 42, 3, + 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 4, 4,144, 1, +190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,142, 42, 3, 1, 0, 0, 0, 64,155, 42, 3, + 1, 0, 0, 0,160,105, 42, 3, 1, 0, 0, 0, 0,107, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,105, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,107, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +143, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, 31, 0,144, 1, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0,244, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,107, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,105, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,191, 67, 0, 0,157,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,191, 67, 0, 64, 99,196, 0, 0, 0, 0,127, 1, 0, 0, +144, 1, 0, 0, 18, 0, 0, 0,158, 3, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +126, 1, 0, 0, 18, 0, 0, 0,158, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,144, 1,159, 3,127, 1,141, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, +243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1,159, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96,108, 42, 3, 1, 0, 0, 0, 48,141, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,108, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,109, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,109, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,111, 42, 3, + 1, 0, 0, 0, 96,108, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -131,82 +2034,89 @@ char datatoc_B_blend[]= { 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 24,197,173, 9,193, 0, 0, 0, 1, 0, 0, 0, -136,198,173, 9,168,195,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,111, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,113, 42, 3, 1, 0, 0, 0,240,109, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 64, 1, 0, 0,136,198,173, 9,193, 0, 0, 0, 1, 0, 0, 0,248,199,173, 9, 24,197,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,113, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,114, 42, 3, + 1, 0, 0, 0,128,111, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,248,199,173, 9, -193, 0, 0, 0, 1, 0, 0, 0,104,201,173, 9,136,198,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, - 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,114, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,116, 42, 3, 1, 0, 0, 0, 16,113, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,104,201,173, 9,193, 0, 0, 0, 1, 0, 0, 0,216,202,173, 9, -248,199,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 64, 1, 0, 0,216,202,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 72,204,173, 9,104,201,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,116, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,117, 42, 3, + 1, 0, 0, 0,160,114, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 72,204,173, 9,193, 0, 0, 0, - 1, 0, 0, 0,184,205,173, 9,216,202,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114, -102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114, -102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,117, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,119, 42, 3, 1, 0, 0, 0, 48,116, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,184,205,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 40,207,173, 9, 72,204,173, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,119, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,120, 42, 3, + 1, 0, 0, 0,192,117, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, - 40,207,173, 9,193, 0, 0, 0, 1, 0, 0, 0,152,208,173, 9,184,205,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,120, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,122, 42, 3, 1, 0, 0, 0, 80,119, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,122, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,124, 42, 3, + 1, 0, 0, 0,224,120, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -216,159 +2126,1055 @@ char datatoc_B_blend[]= { 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,152,208,173, 9,193, 0, 0, 0, 1, 0, 0, 0, - 8,210,173, 9, 40,207,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,124, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,125, 42, 3, 1, 0, 0, 0,112,122, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 64, 1, 0, 0, 8,210,173, 9,193, 0, 0, 0, 1, 0, 0, 0,120,211,173, 9,152,208,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,125, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,127, 42, 3, + 1, 0, 0, 0, 0,124, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, +110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,120,211,173, 9, -193, 0, 0, 0, 1, 0, 0, 0,232,212,173, 9, 8,210,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, - 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,127, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,128, 42, 3, 1, 0, 0, 0,144,125, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,232,212,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 88,214,173, 9, -120,211,173, 9,248,124,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,128, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,130, 42, 3, + 1, 0, 0, 0, 32,127, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, +126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,130, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,131, 42, 3, 1, 0, 0, 0,176,128, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 66, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253,126, 1,240, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,131, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,133, 42, 3, + 1, 0, 0, 0, 64,130, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181,252, +126, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,133, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,134, 42, 3, 1, 0, 0, 0,208,131, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99,252,126, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,134, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,136, 42, 3, + 1, 0, 0, 0, 96,133, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,251, +126, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,136, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,138, 42, 3, 1, 0, 0, 0,240,134, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,251,126, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,138, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,139, 42, 3, + 1, 0, 0, 0,128,136, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76,251, +126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,139, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,141, 42, 3, 1, 0, 0, 0, 16,138, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,251,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,141, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,139, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28,251, +126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,192,142, 42, 3, + 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 21, 0, 0, +160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,144, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96,145, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, + 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,145, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,192,146, 42, 3, 1, 0, 0, 0, 0,144, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,146, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,145, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0, +123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0,163, 0, 0, 0, + 1, 0, 0, 0, 64,155, 42, 3, 1, 0, 0, 0,192,142, 42, 3, 1, 0, 0, 0, 0,144, 42, 3, 1, 0, 0, 0,192,146, 42, 3, + 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,149, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,150, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,150, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,149, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, + 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,152, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 16,152, 42, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64,155, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0, 80,149, 42, 3, 1, 0, 0, 0,176,150, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,104, 42, 3, + 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 16, 16,240, 5, +190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,160, 42, 3, 1, 0, 0, 0, 32,181, 42, 3, + 1, 0, 0, 0,128,157, 42, 3, 1, 0, 0, 0,224,158, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,157, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,158, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,158, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,157, 42, 3, 1, 0, 0, 0, 0, 0, 32,193, + 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,132,137,182,195,194, 68, 91, 68, 54, 95,243,194,230,107, 30, 68,223, 5, 0, 0, +240, 5, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +222, 5, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, + 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,164, 3,223, 5,146, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64,160, 42, 3, + 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,161, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0,163, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, + 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,163, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96,164, 42, 3, 1, 0, 0, 0,160,161, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,164, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,163, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0, +162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0,163, 0, 0, 0, + 1, 0, 0, 0, 0,177, 42, 3, 1, 0, 0, 0, 64,160, 42, 3, 1, 0, 0, 0,160,161, 42, 3, 1, 0, 0, 0, 96,164, 42, 3, + 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,166, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,168, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0, +250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,168, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,169, 42, 3, 1, 0, 0, 0,240,166, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,169, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,171, 42, 3, 1, 0, 0, 0, 80,168, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, +251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,171, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,172, 42, 3, 1, 0, 0, 0,176,169, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,172, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,171, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,173, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,173, 42, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, +142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, +111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, + 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190, +250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, +160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, + 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 0,177, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32,181, 42, 3, + 1, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0,240,166, 42, 3, 1, 0, 0, 0,112,172, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 96,178, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,179, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 64, 1, 0, 0, 88,214,173, 9,193, 0, 0, 0, 1, 0, 0, 0,200,215,173, 9,232,212,173, 9, 56,120,192, 9, 0, 0, 0, 0, - 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 1, 0, 0,192,179, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,178, 42, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,111,255, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,200,215,173, 9,193, 0, 0, 0, - 1, 0, 0, 0, 56,217,173, 9, 88,214,173, 9, 0,103,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105, -109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105, -109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 66, 1,178, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0, 32,181, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,177, 42, 3, + 1, 0, 0, 0, 96,178, 42, 3, 1, 0, 0, 0,192,179, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 56,217,173, 9,193, 0, 0, 0, 1, 0, 0, 0,168,218,173, 9,200,215,173, 9, -144,172,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 66, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, -168,218,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 24,220,173, 9, 56,217,173, 9,168, 6,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, +208, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,240, 50, 43, 3, 1, 0, 0, 0, 0, 78, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 68,101,102, 97,117,108,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,183, 42, 3, + 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0,144,194, 42, 3, 1, 0, 0, 0,240,194, 42, 3, + 1, 0, 0, 0, 80, 20, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 12, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,184, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0,176,183, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,184, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,185, 42, 3, + 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,185, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,187, 42, 3, + 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,176,186, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,187, 42, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 84, 0, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,188, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,188, 42, 3, + 1, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,189, 42, 3, + 1, 0, 0, 0,144,188, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,189, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,189, 42, 3, + 1, 0, 0, 0,240,188, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,189, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,190, 42, 3, + 1, 0, 0, 0, 80,189, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,190, 42, 3, + 1, 0, 0, 0,176,189, 42, 3, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,190, 42, 3, + 1, 0, 0, 0, 16,190, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,191, 42, 3, + 1, 0, 0, 0,112,190, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,191, 42, 3, + 1, 0, 0, 0,208,190, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,191, 42, 3, + 1, 0, 0, 0, 48,191, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,192, 42, 3, + 1, 0, 0, 0,144,191, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,192, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,192, 42, 3, + 1, 0, 0, 0,240,191, 42, 3, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,192, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,193, 42, 3, + 1, 0, 0, 0, 80,192, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,193, 42, 3, + 1, 0, 0, 0,176,192, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,193, 42, 3, + 1, 0, 0, 0, 16,193, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,194, 42, 3, + 1, 0, 0, 0,112,193, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,194, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,194, 42, 3, + 1, 0, 0, 0,208,193, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,194, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,194, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240,194, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,198, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,112,184, 42, 3, + 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, + 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,112, 50, 43, 3, + 1, 0, 0, 0,112, 50, 43, 3, 1, 0, 0, 0,208,195, 42, 3, 1, 0, 0, 0, 48,197, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 28,121, 22, 1, 0, 0, 0,240,209, 30, 25, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,208,195, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,197, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, + 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0,208,109,120, 22, + 1, 0, 0, 0,208,109,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 31, 25, + 1, 0, 0, 0, 32, 79, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 48,197, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,195, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, + 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,144,198, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,240,194, 42, 3, + 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0,208,184, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 59, 3, 0, 0, 4, 4,132, 1, + 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0, 32,238, 42, 3, 1, 0, 0, 0, 80,245, 42, 3, + 1, 0, 0, 0,112,199, 42, 3, 1, 0, 0, 0,208,200, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144, 14,177, 24, 1, 0, 0, 0, 80,173,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,199, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,200, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 29, 3, 0, 0, + 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 3, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 80,234, 29, 25, 1, 0, 0, 0, 80,234, 29, 25, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,250, 30, 25, 1, 0, 0, 0, 80,172,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,200, 42, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,199, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, 0, 0, 0, 0,115, 1, 0, 0, +132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, 11, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112, 88,120, 22, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 16, 27,154, 27, 1, 0, 0, 0, 96,121,120, 22, + 1, 0, 0, 0, 48,202, 42, 3, 1, 0, 0, 0,144,236, 42, 3, 1, 0, 0, 0, 0,148,121, 22, 1, 0, 0, 0,144,189,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,202, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,203, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,203, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,205, 42, 3, + 1, 0, 0, 0, 48,202, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, + 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,205, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,206, 42, 3, 1, 0, 0, 0,192,203, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,206, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,208, 42, 3, + 1, 0, 0, 0, 80,205, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,208, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,210, 42, 3, 1, 0, 0, 0,224,206, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,210, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,211, 42, 3, + 1, 0, 0, 0,112,208, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,211, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,213, 42, 3, 1, 0, 0, 0, 0,210, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,213, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,214, 42, 3, + 1, 0, 0, 0,144,211, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,214, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,216, 42, 3, 1, 0, 0, 0, 32,213, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,216, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,217, 42, 3, + 1, 0, 0, 0,176,214, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, + 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,217, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,219, 42, 3, 1, 0, 0, 0, 64,216, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,219, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,220, 42, 3, + 1, 0, 0, 0,208,217, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, +110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, +114, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,220, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,222, 42, 3, 1, 0, 0, 0, 96,219, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254,114, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,222, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,224, 42, 3, + 1, 0, 0, 0,240,220, 42, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, +114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,224, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,225, 42, 3, 1, 0, 0, 0,128,222, 42, 3, 1, 0, 0, 0, 48, 45,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,225, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,227, 42, 3, + 1, 0, 0, 0, 16,224, 42, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, +114, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,227, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,228, 42, 3, 1, 0, 0, 0,160,225, 42, 3, 1, 0, 0, 0, 16, 60,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,228, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,230, 42, 3, + 1, 0, 0, 0, 48,227, 42, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, 105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 66, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +114, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 24,220,173, 9,193, 0, 0, 0, 1, 0, 0, 0, -136,221,173, 9,168,218,173, 9, 8, 44,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,230, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,231, 42, 3, 1, 0, 0, 0,192,228, 42, 3, 1, 0, 0, 0,208, 67,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 66, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, - 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 64, 1, 0, 0,136,221,173, 9,193, 0, 0, 0, 1, 0, 0, 0,248,222,173, 9, 24,220,173, 9,144, 39,200, 9, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 60,253, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,231, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,233, 42, 3, + 1, 0, 0, 0, 80,230, 42, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, +114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,248,222,173, 9, -193, 0, 0, 0, 1, 0, 0, 0,104,224,173, 9,136,221,173, 9,208,159,192, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, - 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, - 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, - 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 66, 1, 0, 0, - 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,233, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,235, 42, 3, 1, 0, 0, 0,224,231, 42, 3, 1, 0, 0, 0,128, 76,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,104,224,173, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -248,222,173, 9, 32, 21,195, 9, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 66, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,235, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,236, 42, 3, + 1, 0, 0, 0,112,233, 42, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, +114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,236, 42, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,235, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 32,238, 42, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 80,245, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, + 0, 0, 0, 0, 96,252, 26, 25, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 96,239, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,240, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, +108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -224, 0, 0, 0,216,225,173, 9,162, 0, 0, 0, 1, 0, 0, 0, 64,232,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 1, 0, 0,192,240, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,239, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, +108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,242, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0, 32,242, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, +115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, -200, 68, 41, 10,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,232,226,173, 9,195, 0, 0, 0, - 1, 0, 0, 0, 16,228,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80,245, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,238, 42, 3, 1, 0, 0, 0, 96,239, 42, 3, 1, 0, 0, 0,192,240, 42, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160, 2, 43, 3, + 1, 0, 0, 0,144,198, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,208,187, 42, 3, + 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, + 83, 0, 0, 0, 15, 15,252, 5, 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0, 80,250, 42, 3, + 1, 0, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0,144,247, 42, 3, 1, 0, 0, 0,240,248, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,227,184, 24, 1, 0, 0, 0, 48,224, 30, 25, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,144,247, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,248, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, + 5, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 80, 22, 28, 25, + 1, 0, 0, 0, 80, 22, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,185,121, 22, + 1, 0, 0, 0, 48,175,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,240,248, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,247, 42, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 58, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 58, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,180,121, 22, + 1, 0, 0, 0, 0,251, 27, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0, 80,250, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 80,251, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,252, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176,252, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,251, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,254, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0, 16,254, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, +115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,250, 42, 3, 1, 0, 0, 0, 80,251, 42, 3, 1, 0, 0, 0,176,252, 42, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,160, 2, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80, 20, 43, 3, + 1, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,144,185, 42, 3, + 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, + 18, 4, 0, 0, 3, 3,132, 1,214, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0, 64, 6, 43, 3, + 1, 0, 0, 0,240, 18, 43, 3, 1, 0, 0, 0,128, 3, 43, 3, 1, 0, 0, 0,224, 4, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 52,121, 22, 1, 0, 0, 0,224,120, 13, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128, 3, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 4, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, +128, 7, 0, 0,249, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, + 7, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0,192,243, 30, 25, + 1, 0, 0, 0,192,243, 30, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,170,121, 22, + 1, 0, 0, 0,176,125,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224, 4, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 3, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, + 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1, +170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, +128, 7, 0, 0, 61, 3, 0, 0,248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 80,149,110, 29, + 1, 0, 0, 0, 80,149,110, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,183,121, 22, + 1, 0, 0, 0,224,241, 27, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64, 6, 43, 3, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0,192, 11, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 62, 28, 25, 1, 0, 0, 0,128, 62, 28, 25, 1, 0, 0, 0,160, 7, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, + 16, 0, 0, 0,160, 7, 43, 3, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,240, 7, 43, 3, + 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0,240, 7, 43, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, + 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96, 10, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 10, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, + 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, +155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, + 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,192, 11, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, + 1, 0, 0, 0,240, 18, 43, 3, 1, 0, 0, 0, 64, 6, 43, 3, 1, 0, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0, 96, 10, 43, 3, + 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 13, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 14, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -248, 0, 0, 0, 16,228,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,232,226,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 14, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 56,229,173, 9, 68, 65, 84, 65,216, 2, 0, 0, 56,229,173, 9,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 15, 43, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192, 15, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -391,220 +3197,912 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 64,232,173, 9, -157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,216,225,173, 9,232,226,173, 9, 16,228,173, 9, 1, 0, 0, 0, 51, 51, 51, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0, - 96,233,173, 9,194, 0, 0, 0, 1, 0, 0, 0,152,243,173, 9, 88,191,173, 9,104,180,173, 9,232,182,173, 9, 40,183,173, 9, -232,181,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0,127, 0, 0, 0, 15, 15, 60, 5,128, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 64,195,162, 9, 64,236,173, 9,120,242,173, 9,240,233,173, 9, 24,235,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0,216, 49,203, 9, 56,129,200, 9, 68, 65, 84, 65,248, 0, 0, 0,240,233,173, 9,195, 0, 0, 0, 1, 0, 0, 0, - 24,235,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,167, 68, - 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, - 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 60, 5, - 26, 0, 60, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 5, 26, 0, - 6, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88,196,162, 9,240,226, 39, 10,240,226, 39, 10, - 0, 0, 0, 0, 0, 0, 0, 0,168,237, 42, 10,160,233,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, - 24,235,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240,233,173, 9, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 18, 0, 0, 0, -101, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 60, 5,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 26, 0, 0, 0,127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 60, 5,102, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -216,195,162, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88,235,187, 9,128,239,187, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,180, 0, 0, 0, 64,236,173, 9,172, 0, 0, 0, 1, 0, 0, 0,120,242,173, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,240, 18, 43, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 11, 43, 3, 1, 0, 0, 0, 0, 13, 43, 3, + 1, 0, 0, 0, 96, 14, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 80, 20, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 2, 43, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, + 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 1, 1,252, 5,190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, + 1, 0, 0, 0, 80, 45, 43, 3, 1, 0, 0, 0,112, 49, 43, 3, 1, 0, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0,192, 40, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,159,157, 27, 1, 0, 0, 0,240, 35,121, 22, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 22, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252, 5, 26, 0, 9, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, + 1, 0, 0, 0,240,122,101, 29, 1, 0, 0, 0,240,122,101, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112,155, 29, 25, 1, 0, 0, 0, 80, 51,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 22, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 27, 43, 3, + 1, 0, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,231, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 0, 44, 3, 10, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, + 1, 0, 0, 0,160,117, 13, 3, 1, 0, 0, 0,160,105,120, 22, 1, 0, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,128, 25, 43, 3, + 1, 0, 0, 0, 80,243, 27, 25, 1, 0, 0, 0, 16, 41,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 25, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 5, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, + 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255, +143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 25, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,176, 33,211, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, + 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, + 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 27, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 30, 43, 3, + 1, 0, 0, 0,144, 22, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, +231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,111, 0, 0, 0,230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 0,120, 0, 11, 0, 6, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, + 1, 0, 0, 0, 48,159,121, 22, 1, 0, 0, 0, 48,159,121, 22, 1, 0, 0, 0,112, 28, 43, 3, 1, 0, 0, 0,112, 28, 43, 3, + 1, 0, 0, 0, 64, 84,221, 24, 1, 0, 0, 0,240,160,109, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 28, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,108,101, +116,101, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255, +144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 30, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 40, 43, 3, 1, 0, 0, 0, 16, 27, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,100,196, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,164, 3,163, 0,146, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96, 31, 43, 3, 1, 0, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 31, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 32, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 2, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 32, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 34, 43, 3, + 1, 0, 0, 0, 96, 31, 43, 3, 1, 0, 0, 0,128, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97, +115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254, +163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 34, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,240, 32, 43, 3, 1, 0, 0, 0, 64, 43,188, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111, +112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111, +112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 37, 43, 3, + 1, 0, 0, 0,128, 34, 43, 3, 1, 0, 0, 0,160, 45,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112, +108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251, +163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 37, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,224,232,186, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, + 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, + 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 37, 43, 3, 1, 0, 0, 0,208, 50,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, +115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251, +163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 40, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 32,237,173, 9,195, 0, 0, 0, 1, 0, 0, 0, - 72,238,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, - 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, - 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, - 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, - 72,238,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32,237,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 5,164, 3, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 61,222, 24, 1, 0, 0, 0,112,102, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 42, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 32, 42, 43, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 44, 24,206, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, +142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, +111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62, 3,152, 37,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, +184,162,159, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,182,118,184, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 62,239,191, 62,175,116, 85, 63, 32,205, 70,188, 0, 0,115,181,240,121,127,190, + 56, 73,246, 61,157, 79, 14, 63, 0,128, 0, 54,215,104, 25,196,133,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68, +158, 87,135,195,206,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62, 3,152, 37,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, +184,162,159, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,182,118,184, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,155,176,174, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -112,239,173, 9, 68, 65, 84, 65,216, 2, 0, 0,112,239,173, 9,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80, 45, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,112, 49, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,120,242,173, 9,157, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 64,236,173, 9, 32,237,173, 9, 72,238,173, 9, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 96, 0, 0, 0,152,243,173, 9, -194, 0, 0, 0, 1, 0, 0, 0,128, 2,174, 9, 96,233,173, 9,104,182,173, 9, 40,182,173, 9,168,181,173, 9,168,182,173, 9, - 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0,245, 2, 0, 0,185, 3, 0, 0, 3, 3, 84, 1,197, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,168,193,162, 9,120,246,173, 9, 96, 1,174, 9, 40,244,173, 9, 80,245,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, -120,142,142, 9, 56,217,203, 9, 68, 65, 84, 65,248, 0, 0, 0, 40,244,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 80,245,173, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,170, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,101, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176, 46, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, 26, 0, 84, 1, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0, -160, 3, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 26, 0, 8, 0, 1, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,194,162, 9,160,231, 39, 10,160,231, 39, 10, 0, 0, 0, 0, - 0, 0, 0, 0,248,149, 41, 10,176,242,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 80,245,173, 9, -195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 40,244,173, 9, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, - 0, 0, 0, 0, 0,128,161, 67, 0, 0, 25,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0,170, 0, 0, 0, - 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0,170, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, - 0, 0, 0, 4, 6, 0, 84, 1,171, 0, 67, 1,153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 61, 5, 0, 0,144, 6, 0, 0,245, 2, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84, 1,171, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,194,162, 9, - 88,189, 40, 10, 88,189, 40, 10, 0, 0, 0, 0, 0, 0, 0, 0,184,110, 42, 10,216,245,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 4, 1, 0, 0,120,246,173, 9,166, 0, 0, 0, 1, 0, 0, 0,248,250,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 46, 43, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0,112, 49, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 45, 43, 3, + 1, 0, 0, 0,176, 46, 43, 3, 1, 0, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, +208, 0, 0, 0,240, 50, 43, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0,160,182, 42, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 81,117, 97,100, 32, 86,105,101,119, 0, + 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 43, 3, + 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0,224, 62, 43, 3, 1, 0, 0, 0, 64, 63, 43, 3, + 1, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 52, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 52, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 53, 43, 3, + 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 54, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 55, 43, 3, + 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 55, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 80, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 80, 0, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 56, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 56, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 57, 43, 3, + 1, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 57, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 57, 43, 3, + 1, 0, 0, 0,224, 56, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 57, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 58, 43, 3, + 1, 0, 0, 0, 64, 57, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 58, 43, 3, + 1, 0, 0, 0,160, 57, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 58, 43, 3, + 1, 0, 0, 0, 0, 58, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 59, 43, 3, + 1, 0, 0, 0, 96, 58, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 59, 43, 3, + 1, 0, 0, 0,192, 58, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 59, 43, 3, + 1, 0, 0, 0, 32, 59, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 60, 43, 3, + 1, 0, 0, 0,128, 59, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 60, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 60, 43, 3, + 1, 0, 0, 0,224, 59, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 60, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 61, 43, 3, + 1, 0, 0, 0, 64, 60, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 61, 43, 3, + 1, 0, 0, 0,160, 60, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 61, 43, 3, + 1, 0, 0, 0, 0, 61, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 62, 43, 3, + 1, 0, 0, 0, 96, 61, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 62, 43, 3, + 1, 0, 0, 0,192, 61, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 62, 43, 3, + 1, 0, 0, 0, 32, 62, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 62, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 64, 63, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 66, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, + 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, + 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,224,186, 43, 3, + 1, 0, 0, 0,224,186, 43, 3, 1, 0, 0, 0, 32, 64, 43, 3, 1, 0, 0, 0,128, 65, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,210, 30, 25, 1, 0, 0, 0,192,189,182, 24, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 32, 64, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 65, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128, 65, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, + 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,224, 66, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,112,113, 43, 3, 1, 0, 0, 0, 64, 63, 43, 3, + 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 59, 3, 0, 0, 4, 4,132, 1, + 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0,224,104, 43, 3, 1, 0, 0, 0, 16,112, 43, 3, + 1, 0, 0, 0,192, 67, 43, 3, 1, 0, 0, 0, 32, 69, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48, 69,185, 24, 1, 0, 0, 0, 0,196,184, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 67, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 69, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 29, 3, 0, 0, + 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 69, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 67, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, 0, 0, 0, 0,115, 1, 0, 0, +132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, 11, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,127, 30, 25, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 70, 43, 3, 1, 0, 0, 0, 80,103, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 70, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 73, 43, 3, + 1, 0, 0, 0,128, 70, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, + 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 73, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 76, 43, 3, + 1, 0, 0, 0,160, 73, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 76, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 79, 43, 3, + 1, 0, 0, 0,192, 76, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 79, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 81, 43, 3, 1, 0, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 81, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 83, 43, 3, + 1, 0, 0, 0,224, 79, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 83, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 84, 43, 3, 1, 0, 0, 0,112, 81, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 84, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 86, 43, 3, + 1, 0, 0, 0, 0, 83, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, + 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 86, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 87, 43, 3, 1, 0, 0, 0,144, 84, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 87, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 89, 43, 3, + 1, 0, 0, 0, 32, 86, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, +110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 89, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 90, 43, 3, 1, 0, 0, 0,176, 87, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 90, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 92, 43, 3, + 1, 0, 0, 0, 64, 89, 43, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, +114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 92, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 93, 43, 3, 1, 0, 0, 0,208, 90, 43, 3, 1, 0, 0, 0, 48, 45,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 93, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 95, 43, 3, + 1, 0, 0, 0, 96, 92, 43, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, +114, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 95, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,240, 93, 43, 3, 1, 0, 0, 0, 16, 60,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 98, 43, 3, + 1, 0, 0, 0,128, 95, 43, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, +114, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 98, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,100, 43, 3, 1, 0, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,208, 67,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,100, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,101, 43, 3, + 1, 0, 0, 0,160, 98, 43, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, +114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,101, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,103, 43, 3, 1, 0, 0, 0, 48,100, 43, 3, 1, 0, 0, 0,128, 76,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,103, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,192,101, 43, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, +114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,224,104, 43, 3, + 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 16,112, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,160,140, 30, 25, 1, 0, 0, 0,255, 21, 0, 0, +160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,106, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,128,107, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,107, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,106, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224,108, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224,108, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0, 16,112, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,104, 43, 3, + 1, 0, 0, 0, 32,106, 43, 3, 1, 0, 0, 0,128,107, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,112,113, 43, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96,125, 43, 3, 1, 0, 0, 0,224, 66, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, + 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 15, 15,252, 5, 80, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0, 16,117, 43, 3, 1, 0, 0, 0, 0,124, 43, 3, 1, 0, 0, 0, 80,114, 43, 3, + 1, 0, 0, 0,176,115, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 48,176, 24, + 1, 0, 0, 0, 0, 26,185, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,114, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,176,115, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,115, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,114, 43, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 18, 0, 0, 0, + 53, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 26, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 16,117, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0, 0,124, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,118, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112,119, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,119, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,118, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,120, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,120, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0, 0,124, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,117, 43, 3, + 1, 0, 0, 0, 16,118, 43, 3, 1, 0, 0, 0,112,119, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96,125, 43, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0,112,113, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, + 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, 18, 4, 0, 0, 3, 3,132, 1,214, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0, 0,129, 43, 3, 1, 0, 0, 0,176,141, 43, 3, 1, 0, 0, 0, 64,126, 43, 3, + 1, 0, 0, 0,160,127, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,189,184, 24, + 1, 0, 0, 0,208, 29,176, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,126, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,160,127, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,127, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,126, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, +187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, +187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, + 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1,170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0,248, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,129, 43, 3, 1, 0, 0, 0,166, 0, 0, 0, + 1, 0, 0, 0,128,134, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 10, 40, 10,240, 10, 40, 10,168,247,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 67,150, 27, 1, 0, 0, 0, 32, 67,150, 27, + 1, 0, 0, 0, 96,130, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 12, 0, 0, 0, -168,247,173, 9,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,224,247,173, 9, 68, 65, 84, 65,156, 0, 0, 0, -224,247,173, 9,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,128, 29,174, 9, 19, 0, 0, 0, 1, 0, 1, 0, -128, 29,174, 9, 20, 0, 0, 0, 1, 0, 1, 0,128, 29,174, 9, 21, 0, 1, 0, 1, 0, 1, 0,128, 29,174, 9, 0, 0, 0, 0, - 1, 0, 1, 0, 24, 42,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,216, 52,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,208, 66,174, 9, - 0, 0, 0, 0, 1, 0, 1, 0, 32, 61,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,120, 65,174, 9, 0, 0, 0, 0, 1, 0, 1, 0, - 72, 57,174, 9, 0, 0, 0, 0, 1, 0, 1, 0,144, 38,174, 9, 0, 0, 0, 0, 1, 0, 1, 0, 0, 49,174, 9, 0, 0, 0, 0, - 1, 0, 1, 0,232, 37,174, 9, 68, 65, 84, 65,248, 0, 0, 0,168,248,173, 9,195, 0, 0, 0, 1, 0, 0, 0,208,249,173, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 96,130, 43, 3, 1, 0, 0, 0,218, 0, 0, 0, + 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,176,130, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0,176,130, 43, 3, + 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, + 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,192,131, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,133, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, - 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,208,249,173, 9, -195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,168,248,173, 9, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, - 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, - 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, +247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,224, 0, 0, 0,248,250,173, 9,162, 0, 0, 0, 1, 0, 0, 0, 96, 1,174, 9,120,246,173, 9,168,248,173, 9, -208,249,173, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 32,133, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,131, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, + 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, +156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, +247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 0, 1, 0, 0,128,134, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,176,141, 43, 3, 1, 0, 0, 0, 0,129, 43, 3, + 1, 0, 0, 0,192,131, 43, 3, 1, 0, 0, 0, 32,133, 43, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 8,252,173, 9, -195, 0, 0, 0, 1, 0, 0, 0, 48,253,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, - 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, - 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,248, 0, 0, 0, 48,253,173, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8,252,173, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,135, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,137, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,137, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,135, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, + 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 88,254,173, 9, 68, 65, 84, 65,216, 2, 0, 0, 88,254,173, 9,156, 0, 0, 0, 1, 0, 0, 0, -103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,138, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128,138, 43, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, -103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, -237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, -103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, - 96, 1,174, 9,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,248,250,173, 9, 8,252,173, 9, 48,253,173, 9, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,176,141, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128,134, 43, 3, 1, 0, 0, 0,192,135, 43, 3, 1, 0, 0, 0, 32,137, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 96, 0, 0, 0,128, 2,174, 9,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,152,243,173, 9,232,182,173, 9,104,181,173, 9, - 40,182,173, 9, 40,183,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0,129, 0, 0, 0,185, 3, 0, 0, 1, 1, 60, 5, - 57, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,196,162, 9,208, 24,174, 9, 64, 28,174, 9, 16, 3,174, 9,160, 20,174, 9, - 0, 0, 0, 0, 0, 0, 0, 0,200, 95,143, 9,184, 89,142, 9, 68, 65, 84, 65,248, 0, 0, 0, 16, 3,174, 9,195, 0, 0, 0, - 1, 0, 0, 0, 56, 4,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0,128,167, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 60, 5, 26, 0, 60, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 59, 5, 0, 0,129, 0, 0, 0,154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 60, 5, 26, 0, 10, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,202,162, 9, 0,187, 39, 10, - 0,187, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 56,253,187, 9,128,251,187, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -248, 0, 0, 0, 56, 4,174, 9,195, 0, 0, 0, 1, 0, 0, 0, 64, 8,174, 9, 16, 3,174, 9, 0, 0, 0, 0, 0, 0, 15, 67, - 0, 0, 37,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255, 63, 37,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, - 18, 0, 0, 0,166, 2, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, - 18, 0, 0, 0,166, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, - 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,167, 2,143, 0,149, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0, 19, 1, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0,167, 2, 11, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,199,162, 9, 72, 6, 42, 10,208,223, 39, 10, 96, 5,174, 9,208, 6,174, 9,144,170, 39, 10,136,254,187, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, 96, 5,174, 9,193, 0, 0, 0, 1, 0, 0, 0,208, 6,174, 9, - 0, 0, 0, 0,112,200,162, 9, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,125, 43, 3, + 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 81, 0, 0, 0, 18, 4, 0, 0, 1, 1,252, 5, +194, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,192,181, 43, 3, 1, 0, 0, 0,224,185, 43, 3, + 1, 0, 0, 0,240,143, 43, 3, 1, 0, 0, 0, 48,177, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,179, 47, 3, 1, 0, 0, 0,224, 80, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,143, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,145, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 81, 0, 0, 0, +106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,145, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,149, 43, 3, 1, 0, 0, 0,240,143, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 48, 3,143, 0, 30, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,168, 3, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,146, 43, 3, 1, 0, 0, 0, 64,148, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,146, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,148, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 5, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -613,57 +4111,2256 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 64, 1, 0, 0,208, 6,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 96, 5,174, 9, 40, 29,222, 9, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,148, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,146, 43, 3, 1, 0, 0, 0,176, 33,211, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, + 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253, +143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 64, 8,174, 9,195, 0, 0, 0, - 1, 0, 0, 0,216, 10,174, 9, 56, 4,174, 9, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, -231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,159, 0, 0, 0,155, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -160, 0,120, 0, 12, 0, 6, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,201,162, 9,136,213, 43, 10, -136,213, 43, 10,104, 9,174, 9,104, 9,174, 9,160, 51, 42, 10,144, 1,188, 9, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 64, 1, 0, 0,104, 9,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,201,162, 9, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,149, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,152, 43, 3, 1, 0, 0, 0, 80,145, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,107, 0, 0, 0, +107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,151, 43, 3, 1, 0, 0, 0, 48,151, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,151, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 7, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, +116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,108,101,116,101, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,216, 10,174, 9,195, 0, 0, 0, - 1, 0, 0, 0,160, 20,174, 9, 64, 8,174, 9, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,152, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,163, 43, 3, + 1, 0, 0, 0,208,149, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,101,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,167, 3, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,167, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, - 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 59, 5, 0, 0, 59, 5, 0, 0,155, 0, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240,197,162, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 12,174, 9, 48, 19,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 64, 1, 0, 0, 0, 12,174, 9,193, 0, 0, 0, 1, 0, 0, 0,112, 13,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0,180, 0,168, 3,163, 0,150, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,107, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,240,161, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,155, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 2, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, +115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, +163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,112, 13,174, 9,193, 0, 0, 0, - 1, 0, 0, 0,224, 14,174, 9, 0, 12,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,155, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,157, 43, 3, 1, 0, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,128, 3, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,157, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,158, 43, 3, + 1, 0, 0, 0,176,155, 43, 3, 1, 0, 0, 0, 64, 43,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, +163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,158, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,160, 43, 3, 1, 0, 0, 0, 64,157, 43, 3, 1, 0, 0, 0,160, 45,188, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, +112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,160, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,161, 43, 3, + 1, 0, 0, 0,208,158, 43, 3, 1, 0, 0, 0,224,232,186, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, + 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, +103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, +163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,161, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,160, 43, 3, 1, 0, 0, 0,208, 50,188, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, +111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,163, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,168, 43, 3, + 1, 0, 0, 0,192,152, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,253, 2, 0, 0,107, 0, 0, 0, 62, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,164, 43, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224,164, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, + 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,128,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 2, 19, 51, 1, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0,128,191,176, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62,108,128, 49,110, 18,131, 59, 0, 0, 0, 0, 0, 0, 0, 0, +200,161,223, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219, 73,168, 52,198,134, 18, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0,122, 67,160,144, 15,183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62,108,128, 49,110, 18,131, 59, 0, 0, 0, 0, 0, 0, 0, 0, +200,161,223, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53, 63, +243, 4, 53,191, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,168, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,172, 43, 3, 1, 0, 0, 0,128,163, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 2, 0, 0, 63, 2, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,169, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112,169, 43, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +198,134, 18, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,121,195, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,172, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,177, 43, 3, + 1, 0, 0, 0, 16,168, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,254, 2, 0, 0,251, 5, 0, 0,107, 0, 0, 0, 62, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 43, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,174, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, + 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 11, + 0, 0,128, 63, 0, 0,128, 37, 0, 0, 0, 0, 0, 0,128, 37, 0, 0,128, 11, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 37, 0, 0,128, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136,163, + 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61,201,161,223,163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +201,161,223, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,213,211,111, 13, +214,211,111, 65,215,211,111, 39, 0, 0, 0, 0,197,134, 18, 39,197,134, 18, 13,198,134, 18, 65, 0, 0, 0, 0,255,255,121,195, +255,255,121,169,255,255,121,143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136,163, + 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61,201,161,223,163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +201,161,223, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 63, + 0, 0, 0,191, 0, 0, 0,191, 0, 0, 0,191,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,177, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,172, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2, 0, 0,251, 5, 0, 0, 63, 2, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,178, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,178, 43, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,209,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +231, 36,229, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128, 72, 1, 77,190, 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63, +225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, + 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, 88,126,162,190, +229,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64, +151, 62,208,192, 78,255,170, 64, 0, 0,128, 63,169, 11, 64, 63,111,114, 17,191,244,250, 39,191, 8,165, 39,191,131,188, 75, 63, + 96, 51, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,165, 41,205, 63, 10,108,228,190, 52,247,227,190,179, 97,189,190, + 99,162, 44,191,216, 49, 49, 65,152, 9, 52, 65, 5,137, 32, 63, 61, 79, 42, 63, 0, 18, 34,188, 0, 0,244,180, 60,137, 53,190, +140,187, 50, 62, 50, 9, 0, 63, 0, 0,128, 52,211,120, 21,194,145, 5, 2, 66, 7,136,213,193,193,214,159,192,219, 38, 19, 66, +197,173,255,193,155,101,210, 65,173, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63, +225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, + 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,169, 11, 64, 63,111,114, 17,191,244,250, 39,191, 8,165, 39,191,131,188, 75, 63, + 96, 51, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,165, 41,205, 63, 10,108,228,190, 52,247,227,190,179, 97,189,190, + 99,162, 44,191,216, 49, 49, 65,152, 9, 52, 65,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 66,114, 28, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,181, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,224,185, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0,255,255, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 42,144, 27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 32,183, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,184, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128,184, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,183, 43, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0,224,185, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,181, 43, 3, + 1, 0, 0, 0, 32,183, 43, 3, 1, 0, 0, 0,128,184, 43, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, +208, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,160,125, 44, 3, 1, 0, 0, 0,240, 50, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,105,112,116,105,110,103, 0, +103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,188, 43, 3, + 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,176,199, 43, 3, 1, 0, 0, 0, 16,200, 43, 3, + 1, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,188, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0,112,188, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,189, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80,190, 43, 3, + 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,240,189, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,190, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,191, 43, 3, + 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 1, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,112,191, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,156, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,192, 43, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,236, 2, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2,156, 1, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,193, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,193, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,193, 43, 3, + 1, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,193, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,194, 43, 3, + 1, 0, 0, 0, 80,193, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,194, 43, 3, + 1, 0, 0, 0,176,193, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,194, 43, 3, + 1, 0, 0, 0, 16,194, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,195, 43, 3, + 1, 0, 0, 0,112,194, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,195, 43, 3, + 1, 0, 0, 0,208,194, 43, 3, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,195, 43, 3, + 1, 0, 0, 0, 48,195, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,196, 43, 3, + 1, 0, 0, 0,144,195, 43, 3, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,196, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,196, 43, 3, + 1, 0, 0, 0,240,195, 43, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,196, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,197, 43, 3, + 1, 0, 0, 0, 80,196, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,197, 43, 3, + 1, 0, 0, 0,176,196, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,197, 43, 3, + 1, 0, 0, 0, 16,197, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,198, 43, 3, + 1, 0, 0, 0,112,197, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,198, 43, 3, + 1, 0, 0, 0,208,197, 43, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,198, 43, 3, + 1, 0, 0, 0, 48,198, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,199, 43, 3, + 1, 0, 0, 0,144,198, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,199, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,199, 43, 3, + 1, 0, 0, 0,240,198, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,199, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,199, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 16,200, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,203, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, + 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, + 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0, 48,101, 44, 3, + 1, 0, 0, 0, 48,101, 44, 3, 1, 0, 0, 0,240,200, 43, 3, 1, 0, 0, 0, 80,202, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 83, 36, 3, 1, 0, 0, 0,192,139, 46, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,240,200, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,202, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 80,202, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,200, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, + 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,176,203, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 32, 1, 44, 3, 1, 0, 0, 0, 16,200, 43, 3, + 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,144,189, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 18, 4, 0, 0, 4, 4,144, 1, + 19, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0, 64,243, 43, 3, 1, 0, 0, 0,192,255, 43, 3, + 1, 0, 0, 0,144,204, 43, 3, 1, 0, 0, 0,240,205, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96,221, 32, 3, 1, 0, 0, 0, 64, 37,221, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,204, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,205, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +143, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, 31, 0,144, 1, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0,244, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,205, 43, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,204, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,191, 67, 0, 64,120,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,191, 67,254,127,120,196, 0, 0, 0, 0,127, 1, 0, 0, +144, 1, 0, 0, 18, 0, 0, 0,243, 3, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +126, 1, 0, 0, 18, 0, 0, 0,243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,144, 1,244, 3,127, 1,226, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224, 66,150, 27, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, +243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1,244, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,207, 43, 3, 1, 0, 0, 0,176,241, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,207, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,208, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,208, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,210, 43, 3, + 1, 0, 0, 0, 80,207, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, + 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,210, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,212, 43, 3, 1, 0, 0, 0,224,208, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,212, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,213, 43, 3, + 1, 0, 0, 0,112,210, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, + 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,213, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,215, 43, 3, 1, 0, 0, 0, 0,212, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,215, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,216, 43, 3, + 1, 0, 0, 0,144,213, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, + 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,216, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,218, 43, 3, 1, 0, 0, 0, 32,215, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,218, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,219, 43, 3, + 1, 0, 0, 0,176,216, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, + 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,219, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,221, 43, 3, 1, 0, 0, 0, 64,218, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, +115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,221, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,222, 43, 3, + 1, 0, 0, 0,208,219, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, + 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,222, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,224, 43, 3, 1, 0, 0, 0, 96,221, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,224, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,226, 43, 3, + 1, 0, 0, 0,240,222, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, + 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, +110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, +126, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,226, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,227, 43, 3, 1, 0, 0, 0,128,224, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254,126, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,227, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,229, 43, 3, + 1, 0, 0, 0, 16,226, 43, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, +126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,229, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,230, 43, 3, 1, 0, 0, 0,160,227, 43, 3, 1, 0, 0, 0, 48, 45,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253,126, 1,240, 1, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,230, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,232, 43, 3, + 1, 0, 0, 0, 48,229, 43, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, +110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, +126, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,232, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,233, 43, 3, 1, 0, 0, 0,192,230, 43, 3, 1, 0, 0, 0, 16, 60,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, +110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,126, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,233, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,235, 43, 3, + 1, 0, 0, 0, 80,232, 43, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, +126, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,235, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,224,233, 43, 3, 1, 0, 0, 0,208, 67,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,126, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,238, 43, 3, + 1, 0, 0, 0,112,235, 43, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, +111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, +126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,238, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,240, 43, 3, 1, 0, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,128, 76,182, 24, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, +115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,240, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,241, 43, 3, + 1, 0, 0, 0,144,238, 43, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, + 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, +112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, +126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,241, 43, 3, + 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,240, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 64,243, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,160,248, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, + 0, 0, 0, 0,224, 97,120, 22, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128,244, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,245, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, + 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, + 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, +128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224,245, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,247, 43, 3, 1, 0, 0, 0,128,244, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, +128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64,247, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,245, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, + 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, +128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +240, 0, 0, 0,160,248, 43, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,192,255, 43, 3, 1, 0, 0, 0, 64,243, 43, 3, + 1, 0, 0, 0,128,244, 43, 3, 1, 0, 0, 0, 64,247, 43, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,249, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,251, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,251, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,249, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,252, 43, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,252, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,255, 43, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,248, 43, 3, 1, 0, 0, 0,208,249, 43, 3, + 1, 0, 0, 0, 48,251, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 32, 1, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,176,203, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,144,192, 43, 3, + 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,237, 2, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0,155, 1, 0, 0, 18, 18, 3, 3,156, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 71, 15, 3, + 1, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,160, 34, 44, 3, 1, 0, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0, 96, 3, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,161,109, 29, 1, 0, 0, 0,144,162,109, 29, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 3, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0,192, 64, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, + 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 3, 3, 26, 0, 3, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,237, 2, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 72, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 3, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 68, 0, 0, 0, 0, 0, 0, 84, 66, 0, 0, 0, 0, +255,127, 60, 68, 0, 0, 0, 0, 0, 0,193, 67,242, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, + 10, 0, 3, 3,130, 1,242, 2,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,237, 2, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 3,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 72, 15, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,112, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,177, 0, 0, 0, 1, 0, 0, 0, 48, 8, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 48, 2, 27, 25, 1, 0, 0, 0, 0,105,159, 27, 1, 0, 0, 0, 64,193,148, 27, 1, 0, 0, 0, 64,193,148, 27, + 1, 0, 0, 0, 62, 62, 62, 32, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 5, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,208, 6, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 6, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 5, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, + 0,128,192, 67, 0, 6,188, 63,254,176,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, +129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, + 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5,130, 1,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, 48, 8, 44, 3, 1, 0, 0, 0,169, 0, 0, 0, + 1, 0, 0, 0,192, 13, 44, 3, 1, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,112, 5, 44, 3, 1, 0, 0, 0,208, 6, 44, 3, + 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 11, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 12, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 12, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 44, 3, 1, 0, 0, 0, 0, 0, 32,193, + 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,134,137,182,195,195, 68, 91, 68, 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0, +240, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +222, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, + 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0, +155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192, 13, 44, 3, + 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0, 48, 8, 44, 3, 1, 0, 0, 0, 0, 11, 44, 3, + 1, 0, 0, 0, 96, 12, 44, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,128, 16, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, + 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 16, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,224, 17, 44, 3, 1, 0, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 17, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 16, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0, +162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0,163, 0, 0, 0, + 1, 0, 0, 0,128, 30, 44, 3, 1, 0, 0, 0,192, 13, 44, 3, 1, 0, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0,224, 17, 44, 3, + 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 20, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 21, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0, +250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 21, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 23, 44, 3, 1, 0, 0, 0,112, 20, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 23, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 24, 44, 3, 1, 0, 0, 0,208, 21, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, +251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 24, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 25, 44, 3, 1, 0, 0, 0, 48, 23, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 25, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 24, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 27, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80, 27, 44, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, +142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, +111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, + 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190, +250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, +160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, + 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128, 30, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,160, 34, 44, 3, + 1, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0,112, 20, 44, 3, 1, 0, 0, 0,240, 25, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224, 31, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 31, 44, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0,160, 34, 44, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 30, 44, 3, + 1, 0, 0, 0,224, 31, 44, 3, 1, 0, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0, 32, 1, 44, 3, + 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,208,191, 43, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,157, 1, 0, 0, 18, 4, 0, 0, 9, 9,240, 5, +118, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 60, 15, 3, 1, 0, 0, 0, 64, 39, 44, 3, 1, 0, 0, 0,176, 65, 44, 3, + 1, 0, 0, 0,128, 36, 44, 3, 1, 0, 0, 0,224, 37, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,139,105, 29, 1, 0, 0, 0, 16,140,105, 29, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 36, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 37, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,157, 1, 0, 0, +182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 63, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 37, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 36, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0,224,189, 68, 0, 0, 0, 0, 0,192, 22, 68, 0, 32, 66, 63,188,199,189, 68, 0, 0, 0, 0, 0,192, 22, 68, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5, 92, 2,240, 5, 92, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,183, 1, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 92, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 61, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, 64, 39, 44, 3, + 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0,208, 44, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 42, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 43, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0,157, 1, 0, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,112, 43, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 42, 44, 3, + 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,132,137,182,195,194, 68, 91, 68,112,158, 93, 65, + 8, 19,249, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0, 91, 2, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0, 91, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, + 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5, 92, 2,223, 5, + 74, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0,183, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 92, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0,208, 44, 44, 3, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, 80, 50, 44, 3, 1, 0, 0, 0, 64, 39, 44, 3, + 1, 0, 0, 0, 16, 42, 44, 3, 1, 0, 0, 0,112, 43, 44, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 52, 81, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 46, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 47, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, +111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 47, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 48, 44, 3, 1, 0, 0, 0, 48, 46, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 48, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 47, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, + 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 80, 50, 44, 3, + 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,208, 44, 44, 3, 1, 0, 0, 0, 48, 46, 44, 3, + 1, 0, 0, 0,240, 48, 44, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128, 51, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 52, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, +128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224, 52, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 54, 44, 3, 1, 0, 0, 0,128, 51, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, + 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, +153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, + 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64, 54, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 55, 44, 3, 1, 0, 0, 0,224, 52, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, +128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,160, 55, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 57, 44, 3, 1, 0, 0, 0, 64, 54, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, + 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, +104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, +128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 0, 57, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 55, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, +128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 58, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0, 96, 58, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, + 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, + 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191, +184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, + 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195, +136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191, +184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, + 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0,176, 65, 44, 3, 1, 0, 0, 0, 80, 50, 44, 3, 1, 0, 0, 0,128, 51, 44, 3, 1, 0, 0, 0, 0, 57, 44, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 62, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 64, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, + 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 64, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 62, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, +246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, + 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, + 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176, 65, 44, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,240, 62, 44, 3, 1, 0, 0, 0, 80, 64, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, + 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,235, 2, 0, 0, 0, 0, 0, 0, +155, 1, 0, 0, 18, 18,236, 2,156, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 71, 15, 3, 1, 0, 0, 0, 80, 70, 44, 3, + 1, 0, 0, 0, 48,100, 44, 3, 1, 0, 0, 0,144, 67, 44, 3, 1, 0, 0, 0,240, 68, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,141,105, 29, 1, 0, 0, 0, 16,125,110, 29, 1, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,144, 67, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 68, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,231, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 59, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,235, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,236, 2, 26, 0,236, 2, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +235, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 72, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,240, 68, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 67, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 58, 68, 0, 0, 0, 0, 0, 0, 9, 67, 0, 0, 0, 0, 1,192, 54, 68, 0, 0, 0, 0, + 0, 0,193, 67,219, 2, 0, 0,236, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,218, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, 10, 0,236, 2,130, 1,219, 2, +130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +235, 2, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2,130, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 72, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +112, 0, 0, 0, 80, 70, 44, 3, 1, 0, 0, 0,177, 0, 0, 0, 1, 0, 0, 0,192, 73, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 49,153, 27, + 1, 0, 0, 0, 16,197,152, 27, 1, 0, 0, 0,192,228,152, 27, 1, 0, 0, 0,192,228,152, 27, 1, 0, 0, 0, 62, 62, 62, 32, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 72, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, + 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 72, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 6,188, 63, +254,176,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, + 10, 0,240, 5,130, 1,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0,192, 73, 44, 3, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 80, 79, 44, 3, + 1, 0, 0, 0, 80, 70, 44, 3, 1, 0, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0, 96, 72, 44, 3, 1, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 76, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,240, 77, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 77, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 76, 44, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, + 0, 0, 0, 68,134,137,182,195,195, 68, 91, 68, 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0, +129, 1, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0, +129, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80, 79, 44, 3, 1, 0, 0, 0,173, 0, 0, 0, + 1, 0, 0, 0,208, 84, 44, 3, 1, 0, 0, 0,192, 73, 44, 3, 1, 0, 0, 0,144, 76, 44, 3, 1, 0, 0, 0,240, 77, 44, 3, + 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 58, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 80, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 82, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, + 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, + 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 82, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 83, 44, 3, + 1, 0, 0, 0,176, 80, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 83, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 82, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, + 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0, +239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, + 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,208, 84, 44, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, 16, 96, 44, 3, + 1, 0, 0, 0, 80, 79, 44, 3, 1, 0, 0, 0,176, 80, 44, 3, 1, 0, 0, 0,112, 83, 44, 3, 1, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,192, 88, 44, 3, 1, 0, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, + 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 88, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, + 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, +119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,128, 91, 44, 3, 1, 0, 0, 0,192, 88, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 91, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224, 92, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224, 92, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, + 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, + 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, + 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, + 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67, +151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, + 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0, 16, 96, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 48,100, 44, 3, 1, 0, 0, 0,208, 84, 44, 3, + 1, 0, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0,128, 91, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 97, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 98, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, +126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 98, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 97, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, +248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 48,100, 44, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 96, 44, 3, 1, 0, 0, 0,112, 97, 44, 3, + 1, 0, 0, 0,208, 98, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,160,125, 44, 3, + 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 64, 17, 45, 3, 1, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 85, 86, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,144,131, 44, 3, + 1, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0, 32,250, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,127, 44, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,128, 44, 3, + 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0,208,127, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,128, 44, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,129, 44, 3, + 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,130, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,131, 44, 3, + 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0,208,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,131, 44, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 3, 19, 4, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0,112,127, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,144,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,240,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0,240,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,176,129, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,176,129, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,112,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,112,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,208,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,208,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,208,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,131, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,131, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,144,131, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0,208,143, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, + 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,192, 16, 45, 3, 1, 0, 0, 0,192, 16, 45, 3, 1, 0, 0, 0, 16,141, 44, 3, 1, 0, 0, 0,112,142, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,141, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,142, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,142, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16,141, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0, +255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, +127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,143, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96,190, 44, 3, + 1, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 59, 3, 0, 0, 4, 4,132, 1, 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,181, 44, 3, + 1, 0, 0, 0, 0,189, 44, 3, 1, 0, 0, 0,176,144, 44, 3, 1, 0, 0, 0, 16,146, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176,144, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,146, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, + 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, + 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, +128, 7, 0, 0, 29, 3, 0, 0, 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, + 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16,146, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,144, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, + 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, + 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,147, 44, 3, 1, 0, 0, 0, 64,180, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,112,147, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,149, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99, +111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99, +111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,149, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,144,150, 44, 3, 1, 0, 0, 0,112,147, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,144,150, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,152, 44, 3, 1, 0, 0, 0, 0,149, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121, +101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121, +101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,152, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,176,153, 44, 3, 1, 0, 0, 0,144,150, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,176,153, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,155, 44, 3, 1, 0, 0, 0, 32,152, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116, +105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116, +105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,155, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,208,156, 44, 3, 1, 0, 0, 0,176,153, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,208,156, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,158, 44, 3, 1, 0, 0, 0, 64,155, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116, +112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116, +112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,158, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,240,159, 44, 3, 1, 0, 0, 0,208,156, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,240,159, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,161, 44, 3, 1, 0, 0, 0, 96,158, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115, +116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115, +116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,161, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 16,163, 44, 3, 1, 0, 0, 0,240,159, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0, 16,163, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,164, 44, 3, 1, 0, 0, 0,128,161, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105, +116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105, +116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,164, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 48,166, 44, 3, 1, 0, 0, 0, 16,163, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0, 48,166, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,167, 44, 3, 1, 0, 0, 0,160,164, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121, +115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121, +115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,167, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 80,169, 44, 3, 1, 0, 0, 0, 48,166, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0, 80,169, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,170, 44, 3, 1, 0, 0, 0,192,167, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97, +121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97, +121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,170, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,112,172, 44, 3, 1, 0, 0, 0, 80,169, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,165,254,114, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,112,172, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,174, 44, 3, 1, 0, 0, 0,224,170, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110, +116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110, +116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,174, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,144,175, 44, 3, 1, 0, 0, 0,112,172, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,213,253,114, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,144,175, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,177, 44, 3, 1, 0, 0, 0, 0,174, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117, +116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117, +116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,177, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,176,178, 44, 3, 1, 0, 0, 0,144,175, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 60,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,176,178, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,180, 44, 3, 1, 0, 0, 0, 32,177, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111, +115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111, +115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115, +105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,180, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,178, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 12,253,114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 0, 1, 0, 0,208,181, 44, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 0,189, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,183, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,184, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,184, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,183, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, + 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,185, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,185, 44, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 0,189, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,181, 44, 3, 1, 0, 0, 0, 16,183, 44, 3, 1, 0, 0, 0,112,184, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0, 96,190, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0,208,143, 44, 3, + 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0,240,128, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,252, 5, + 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 44, 3, 1, 0, 0, 0,240,200, 44, 3, + 1, 0, 0, 0, 64,191, 44, 3, 1, 0, 0, 0,160,192, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,191, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,192, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,192, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,191, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 26, 0, 0, 0, + 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 0,194, 44, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0,240,200, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,195, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96,196, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,196, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, + 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,197, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192,197, 44, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, + 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, + 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,240,200, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,194, 44, 3, 1, 0, 0, 0, 0,195, 44, 3, 1, 0, 0, 0, 96,196, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0, 96,190, 44, 3, + 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, 18, 4, 0, 0, 3, 3,132, 1, +214, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,205, 44, 3, 1, 0, 0, 0,160,218, 44, 3, + 1, 0, 0, 0, 48,203, 44, 3, 1, 0, 0, 0,144,204, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,203, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,204, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,204, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,203, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, 0, 0, 0, 0,115, 1, 0, 0, +132, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +114, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1,170, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, +248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,205, 44, 3, + 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0,112,211, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,207, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 80,207, 44, 3, + 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,160,207, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, +208, 0, 0, 0,160,207, 44, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, + 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, + 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,208, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,210, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, + 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, + 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,210, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176,208, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0, +205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, + 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,112,211, 44, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,160,218, 44, 3, + 1, 0, 0, 0,240,205, 44, 3, 1, 0, 0, 0,176,208, 44, 3, 1, 0, 0, 0, 16,210, 44, 3, 1, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176,212, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,214, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, +108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16,214, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,212, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, +108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,215, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0,112,215, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, +115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160,218, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,211, 44, 3, 1, 0, 0, 0,176,212, 44, 3, 1, 0, 0, 0, 16,214, 44, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 32,250, 44, 3, + 1, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, + 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0,251, 5, 0, 0, 85, 0, 0, 0, + 18, 4, 0, 0, 1, 1, 91, 2,190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,245, 44, 3, + 1, 0, 0, 0, 32,249, 44, 3, 1, 0, 0, 0,224,220, 44, 3, 1, 0, 0, 0,112,240, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224,220, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,222, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192, 22, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 90, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 91, 2, 26, 0, 91, 2, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, +251, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 2, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 64,222, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,226, 44, 3, 1, 0, 0, 0,224,220, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, + 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, +161, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, + 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,223, 44, 3, 1, 0, 0, 0, 48,225, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,160,223, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,225, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111, +111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111, +111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,225, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,223, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,192,226, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,229, 44, 3, 1, 0, 0, 0, 64,222, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, +251, 5, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,228, 44, 3, 1, 0, 0, 0, 32,228, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0, 32,228, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, +115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, +115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,229, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112,240, 44, 3, 1, 0, 0, 0,192,226, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,231, 44, 3, + 1, 0, 0, 0,224,238, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,231, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,160,232, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,160,232, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,234, 44, 3, 1, 0, 0, 0, 16,231, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, 101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, 101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -673,264 +6370,1266 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,224, 14,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 80, 16,174, 9,112, 13,174, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, -105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, -105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,234, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,192,235, 44, 3, 1, 0, 0, 0,160,232, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0, - 80, 16,174, 9,193, 0, 0, 0, 1, 0, 0, 0,192, 17,174, 9,224, 14,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112, -108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251, -163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,192,235, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,237, 44, 3, 1, 0, 0, 0, 48,234, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100, +118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100, +118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,192, 17,174, 9,193, 0, 0, 0, 1, 0, 0, 0, - 48, 19,174, 9, 80, 16,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, -111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, -111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,237, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0,224,238, 44, 3, 1, 0, 0, 0,192,235, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 64, 1, 0, 0, 48, 19,174, 9,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,192, 17,174, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116, -105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116, -105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 88, 1, 0, 0,224,238, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,237, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, + 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, + 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114, +105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,160, 20,174, 9, -195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,216, 10,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,240, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,229, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 0, 0, 0, 59, 5, 0, 0,155, 0, 0, 0,185, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,156, 4, 31, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,197,162, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3,188, 9,184, 21,188, 9, 0, 0, 0, 0,200, 21,174, 9, - 68, 65, 84, 65,216, 2, 0, 0,200, 21,174, 9,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 42,194,206, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,225,215,163,188, 0, 0, 0, 0, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0,251, 5, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,241, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,241, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0,128, 98,216, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, + 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, + 0, 0,128, 63,168,114, 49, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,119, 86,197, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62, 8,179,183,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65,197, 89,120, 62, 48, 27, 10, 63, 32,184, 0,188, 0, 0,196,181,195, 13,188,190,192, 73, 53, 62, 99,126, 81, 63, + 0,128,163, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67, +151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, + 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, + 0, 0,128, 63,168,114, 49, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,119, 86,197, 63,140,225, 88, 62, 9, 46,185, 62, + 35, 44,185, 62, 8,179,183,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 1, 0, 0, 0,245, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32,249, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,246, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,247, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, +126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,247, 44, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,246, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, + 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, + 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, +248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 32,249, 44, 3, + 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,245, 44, 3, 1, 0, 0, 0, 96,246, 44, 3, + 1, 0, 0, 0,192,247, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 32,250, 44, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0,112,130, 44, 3, + 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 6, 6,160, 3,190, 3, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0, 0,251, 44, 3, + 1, 0, 0, 0, 80,255, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,251, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 96,252, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,252, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 80,255, 44, 3, 1, 0, 0, 0, 0,251, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, +163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,188, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,189, 0,164, 3, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,253, 44, 3, + 1, 0, 0, 0,192,253, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,253, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,196,255,172, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 80,255, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,252, 44, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0,128,113,191, 0,192,248, 63, 0, 0,169,191, + 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,227, 2, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,189, 0, 0, 0, +159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 2,164, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +168, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0,160, 11, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,144, 1, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 2, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,240, 2, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 4, 45, 3, 1, 0, 0, 0,144, 1, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, + 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, + 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 80, 4, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 5, 45, 3, 1, 0, 0, 0,240, 2, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176, 5, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 7, 45, 3, 1, 0, 0, 0, 80, 4, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, + 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, +104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, +167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 7, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 5, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 8, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0,112, 8, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, - 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62,153, 32, 38,191,222,160, 81,191, -184,158, 81,191,117, 90,127, 63,100, 38,160, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,221, 14,185, 63,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,240,246, 70,188, - 0,160, 32,182, 70,167,126,190, 46,126,245, 61,176,218, 13, 63, 0,224, 12, 54,215,104, 25,196,133,132,135, 67, 36, 9,167,195, -136,252, 71,194, 3, 54, 25, 68,158, 87,135,195,204,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, +184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, + 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195, +136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62,153, 32, 38,191,222,160, 81,191, -184,158, 81,191,117, 90,127, 63,100, 38,160, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,221, 14,185, 63,129, 63,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, +184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, - 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 46, 29,203, 58, 0, 0, 0, 0, 0, 0, 0, 0, + 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,208, 24,174, 9,157, 0, 0, 0, 1, 0, 0, 0, - 64, 28,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, - 1, 0, 0, 0, 1, 0, 7, 0, 0, 49,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, - 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,240, 25,174, 9,195, 0, 0, 0, - 1, 0, 0, 0, 24, 27,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160, 11, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,144, 1, 45, 3, 1, 0, 0, 0, 16, 7, 45, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 14, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 14, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, +246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, + 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, + 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 11, 45, 3, 1, 0, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0, 96, 14, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, 64, 17, 45, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,125, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 86,105, +100,101,111, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,144, 23, 45, 3, 1, 0, 0, 0,112, 31, 45, 3, + 1, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0,160,123, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 19, 45, 3, + 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0,176, 18, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 19, 45, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 20, 45, 3, + 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 20, 45, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 22, 45, 3, + 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 32, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 22, 45, 3, + 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, + 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3,236, 1, + 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,144, 23, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,240, 23, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 24, 45, 3, 1, 0, 0, 0,144, 23, 45, 3, + 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 80, 24, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 24, 45, 3, 1, 0, 0, 0,240, 23, 45, 3, + 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,176, 24, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 25, 45, 3, 1, 0, 0, 0, 80, 24, 45, 3, + 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 16, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 25, 45, 3, 1, 0, 0, 0,176, 24, 45, 3, + 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,112, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 25, 45, 3, 1, 0, 0, 0, 16, 25, 45, 3, + 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,208, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 26, 45, 3, 1, 0, 0, 0,112, 25, 45, 3, + 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 48, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 26, 45, 3, 1, 0, 0, 0,208, 25, 45, 3, + 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,144, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 26, 45, 3, 1, 0, 0, 0, 48, 26, 45, 3, + 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,240, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 27, 45, 3, 1, 0, 0, 0,144, 26, 45, 3, + 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 80, 27, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 27, 45, 3, 1, 0, 0, 0,240, 26, 45, 3, + 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,176, 27, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 28, 45, 3, 1, 0, 0, 0, 80, 27, 45, 3, + 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 16, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 28, 45, 3, 1, 0, 0, 0,176, 27, 45, 3, + 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,112, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 28, 45, 3, 1, 0, 0, 0, 16, 28, 45, 3, + 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,208, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 29, 45, 3, 1, 0, 0, 0,112, 28, 45, 3, + 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 48, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 29, 45, 3, 1, 0, 0, 0,208, 28, 45, 3, + 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,144, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 29, 45, 3, 1, 0, 0, 0, 48, 29, 45, 3, + 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,240, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 30, 45, 3, 1, 0, 0, 0,144, 29, 45, 3, + 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 80, 30, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 30, 45, 3, 1, 0, 0, 0,240, 29, 45, 3, + 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,176, 30, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 31, 45, 3, 1, 0, 0, 0, 80, 30, 45, 3, + 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0, 16, 31, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 31, 45, 3, 1, 0, 0, 0,176, 30, 45, 3, + 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,112, 31, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 31, 45, 3, + 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,112, 35, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, + 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,141, 45, 3, 1, 0, 0, 0, 32,141, 45, 3, + 1, 0, 0, 0,176, 32, 45, 3, 1, 0, 0, 0, 16, 34, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 32, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 34, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, + 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 34, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 32, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0, +145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, + 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,112, 35, 45, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96, 47, 45, 3, 1, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0, 80, 18, 45, 3, + 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,129, 7, 84, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 45, 3, 1, 0, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0, 80, 36, 45, 3, + 1, 0, 0, 0,176, 37, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 36, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,176, 37, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 37, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 36, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 18, 0, 0, 0, + 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 16, 39, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,112, 41, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 41, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208, 42, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208, 42, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, + 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, + 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, +129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, + 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -248, 0, 0, 0, 24, 27,174, 9,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240, 25,174, 9, 0, 0, 64,192, 0, 0,126, 67, - 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, - 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, - 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 1, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 45, 3, + 1, 0, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0,112, 41, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96, 47, 45, 3, + 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,112, 35, 45, 3, 1, 0, 0, 0, 80, 21, 45, 3, + 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 8, 8,156, 5,151, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,192, 67, 45, 3, 1, 0, 0, 0, 64, 48, 45, 3, + 1, 0, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 48, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0,160, 49, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 31, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0,128,179, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 96,191, 68, 0, 0,200, 65, 0, 96,191, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,156, 5, 26, 0,156, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 49, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0, 64, 48, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0,155, 5, 0, 0,111, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 49, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +124, 1, 0, 0, 18, 0, 0, 0,155, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,155, 5, 0, 0, 18, 0, 0, 0, +124, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,156, 5,125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0,111, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5,125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, + 1, 0, 0, 0,160, 63, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 53, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 54, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 85, 0, 0, 0, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 54, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 56, 45, 3, 1, 0, 0, 0,144, 53, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, +223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,113, 1, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 56, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 57, 45, 3, 1, 0, 0, 0,240, 54, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, +160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, +111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 57, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 59, 45, 3, 1, 0, 0, 0, 80, 56, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, +223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 59, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 57, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, +223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 60, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112, 60, 45, 3, + 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +200, 79,145, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, + 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, +142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, +111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, + 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,112,240,191, 62,108,116, 85, 63, 80,184, 70,188, 0, 0, 46,180,159, 49,181,189, +125,172, 46, 61, 7,213, 73, 62, 0, 64,143,180,182,107, 25,196, 13,135,135, 67, 70, 12,167,195, 71, 0, 72,194,225, 56, 25, 68, + 38, 90,135,195,237,212,166, 67, 84, 2, 72, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, +143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, + 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, + 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 13,114,156, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160, 63, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,192, 67, 45, 3, + 1, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,144, 53, 45, 3, 1, 0, 0, 0, 16, 59, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, + 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, + 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 0, 65, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 45, 3, + 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, + 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, + 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +200, 0, 0, 0,192, 67, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 45, 3, + 1, 0, 0, 0, 0, 65, 45, 3, 1, 0, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, +160, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0, 96, 47, 45, 3, + 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 2, 2, 72, 3, + 38, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 75, 45, 3, 1, 0, 0, 0, 64,101, 45, 3, + 1, 0, 0, 0,160, 69, 45, 3, 1, 0, 0, 0,192, 73, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 69, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 71, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 82, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 72, 3, 26, 0, 72, 3, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0,237, 1, 0, 0, + 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 71, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 72, 45, 3, 1, 0, 0, 0,160, 69, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0,253,195, 0, 0, 0, 0,163, 0, 0, 0, +180, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,180, 0, 12, 2,163, 0,250, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,179, 0, 0, 0, 7, 2, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 12, 2, 0, 0, 2, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 72, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 73, 45, 3, 1, 0, 0, 0, 0, 71, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0, 71, 3, 0, 0, 7, 2, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 73, 45, 3, + 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 72, 45, 3, 1, 0, 0, 0, 0, 0, 16,193, + 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 18, 0, 0, 0,147, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, +147, 2, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0,111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, + 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0,148, 2, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 71, 3, 0, 0, 7, 2, 0, 0, + 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,148, 2, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 32, 75, 45, 3, + 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,208, 80, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 76, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 76, 45, 3, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,176, 76, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 78, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 2, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 78, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 79, 45, 3, 1, 0, 0, 0,176, 76, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 67, 0,128, 4,196, + 0, 0, 64,193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,181, 0, 24, 2,181, 0, + 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +180, 0, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 24, 2, + 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,112, 79, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 78, 45, 3, + 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0,128, 4,196, + 0, 0, 64,193,210, 1, 0, 0,227, 1, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, + 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,227, 1, 24, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 0, 0, +151, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 24, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 8, 1, 0, 0,208, 80, 45, 3, 1, 0, 0, 0, 21, 1, 0, 0, 1, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0, 32, 75, 45, 3, + 1, 0, 0, 0,176, 76, 45, 3, 1, 0, 0, 0,112, 79, 45, 3, 1, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 82, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 83, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,112, 83, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 84, 45, 3, 1, 0, 0, 0, 16, 82, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, + 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0, +146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,208, 84, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 83, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, + 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +168, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,208, 80, 45, 3, + 1, 0, 0, 0, 16, 82, 45, 3, 1, 0, 0, 0,208, 84, 45, 3, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 16, 87, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 88, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, + 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,112, 88, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 89, 45, 3, 1, 0, 0, 0, 16, 87, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, + 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, + 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,208, 89, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 91, 45, 3, 1, 0, 0, 0,112, 88, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, + 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 48, 91, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 92, 45, 3, 1, 0, 0, 0,208, 89, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, + 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, +104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, +167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,144, 92, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 91, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 93, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, +248, 2, 0, 0,240, 93, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, + 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, + 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, + 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, +184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, + 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195, +136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, + 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, +184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, + 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, + 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, + 1, 0, 0, 0, 64,101, 45, 3, 1, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0, 16, 87, 45, 3, 1, 0, 0, 0,144, 92, 45, 3, + 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 98, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 99, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, + 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 99, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 98, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, +246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, + 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, + 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 64,101, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,128, 98, 45, 3, 1, 0, 0, 0,224, 99, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160,123, 45, 3, + 1, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, + 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0,128, 7, 0, 0,237, 1, 0, 0, + 18, 4, 0, 0, 8, 8, 56, 4, 38, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,107, 45, 3, + 1, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0, 32,103, 45, 3, 1, 0, 0, 0,224,105, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0, 32,103, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,104, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,135, 68, 0, 0, 0, 64, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 55, 4, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,224,156, 68, 0, 0,200, 65, 0,224,156, 68, + 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0, 56, 4, 24, 0, 56, 4, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0, +128, 7, 0, 0,237, 1, 0, 0,237, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,128,104, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,105, 45, 3, 1, 0, 0, 0, 32,103, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, +128, 7, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 1, 0, 0,224,105, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,104, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, + 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 37, 2, 0, 0, 18, 0, 0, 0, 55, 4, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 55, 4, 0, 0, 18, 0, 0, 0, 37, 2, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, + 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 56, 4, 38, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0, +128, 7, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 4, 38, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +240, 0, 0, 0, 64,107, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,128,118, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,108, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,109, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,109, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,111, 45, 3, + 1, 0, 0, 0,112,108, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, + 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,111, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,112, 45, 3, + 1, 0, 0, 0,208,109, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, +231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, +142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, + 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,112, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,113, 45, 3, + 1, 0, 0, 0, 48,111, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, +162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, + 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,113, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,144,112, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,115, 45, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80,115, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, + 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, + 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62, +169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188, +102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, + 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196, +135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, + 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, +166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62, +169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188, +102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, + 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128,118, 45, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0, 64,107, 45, 3, 1, 0, 0, 0,112,108, 45, 3, + 1, 0, 0, 0,240,113, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,119, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 64,121, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,121, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,119, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, + 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, +121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,180, 0, 0, 0, 64, 28,174, 9,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -208, 24,174, 9,240, 25,174, 9, 24, 27,174, 9, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,118, 45, 3, 1, 0, 0, 0,224,119, 45, 3, 1, 0, 0, 0, 64,121, 45, 3, + 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,140, 0, 0, 0, 88,218, 39, 10,190, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0,176,179,173, 9, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82,116,101,109,112, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 47, 10,136, 70, 43, 10, - 72,132, 40, 10,104,254, 40, 10, 48,233, 39, 10, 48,233, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0,128, 29,174, 9, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,186, 68, 8, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, 0,157, 47, 10,191, 0, 0, 0, - 1, 0, 0, 0, 32,166, 41, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0, - 32,166, 41, 10,191, 0, 0, 0, 1, 0, 0, 0,144,164, 40, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, 0, 0, - 68, 65, 84, 65, 20, 0, 0, 0,144,164, 40, 10,191, 0, 0, 0, 1, 0, 0, 0,136, 70, 43, 10, 32,166, 41, 10, 0, 0, 0, 0, - 32, 3,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, 20, 0, 0, 0,136, 70, 43, 10,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -144,164, 40, 10, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, 72,132, 40, 10,192, 0, 0, 0, - 1, 0, 0, 0,240,220,187, 9, 0, 0, 0, 0, 32,166, 41, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 24, 0, 0, 0,240,220,187, 9,192, 0, 0, 0, 1, 0, 0, 0,240, 71, 41, 10, 72,132, 40, 10,144,164, 40, 10, 32,166, 41, 10, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,240, 71, 41, 10,192, 0, 0, 0, 1, 0, 0, 0,104,254, 40, 10, -240,220,187, 9,144,164, 40, 10,136, 70, 43, 10, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,104,254, 40, 10, -192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,240, 71, 41, 10,136, 70, 43, 10, 0,157, 47, 10, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 96, 0, 0, 0, 48,233, 39, 10,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 47, 10, - 32,166, 41, 10,144,164, 40, 10,136, 70, 43, 10, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, - 19, 19, 33, 3,225, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,244,162, 9,112,159, 41, 10,112,159, 41, 10, 32,142, 46, 10, - 72,143, 46, 10, 0, 0, 0, 0, 0, 0, 0, 0,160, 84,192, 9,128, 87,192, 9, 68, 65, 84, 65,248, 0, 0, 0, 32,142, 46, 10, -195, 0, 0, 0, 1, 0, 0, 0, 72,143, 46, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,123, 67, 0, 0, 0, 0, 0, 0,208, 65, - 0, 0, 0, 0, 0, 64, 72, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0,192, 71, 68, 0, 0,200, 65, 0,192, 71, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, - 4, 0, 12, 4, 10, 0, 33, 3, 26, 0, 33, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 33, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,168,245,162, 9, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,160,123, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, + 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, +128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 8, 8,228, 1,151, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,192,139, 45, 3, 1, 0, 0, 0,128,124, 45, 3, 1, 0, 0, 0, 64,127, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,124, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,125, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,192, 65, 0, 0, 0, 0, + 0, 0,242, 67, 0, 0, 0, 0, 0, 0,192, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,128,241, 67, + 0, 0,184, 65, 0,128,241, 67, 0, 0,184, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, + 10, 0,228, 1, 24, 0,228, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,248, 0, 0, 0, 72,143, 46, 10,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32,142, 46, 10, 0, 0, 0, 0, - 0, 64, 68, 68, 0, 0,219,195, 0, 0, 0, 0, 0, 0, 0, 0, 22,115, 68, 68, 76, 0,219,195, 0, 0, 0, 0, 16, 3, 0, 0, - 33, 3, 0, 0, 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 15, 3, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 15, 3, 0, 0, 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 33, 3,199, 1, 16, 3,181, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 0, 0, 26, 0, 0, 0,224, 1, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 3,199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 40,245,162, 9, 0, 0, 0, 0, 0, 0, 0, 0,136, 9, 48, 10, 32,184, 52, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 64, 1, 0, 0,136, 9, 48, 10,193, 0, 0, 0, 1, 0, 0, 0, - 32,184, 52, 10, 0, 0, 0, 0, 8,138,142, 9, 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,116, 97, 98,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,116, 97, 98,115, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,125, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,127, 45, 3, + 1, 0, 0, 0,128,124, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 17, 3, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,127, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224,125, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, + 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,150, 1, 0, 0, 18, 0, 0, 0, +227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,150, 1, 0, 0, 0, 0, 32, 65, + 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 8, 0,228, 1,151, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,228, 1,151, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,144,132, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 64, 1, 0, 0, 32,184, 52, 10,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,136, 9, 48, 10, 48,141,142, 9, - 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,105,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 85, 83, 69, 82, 80, 82, 69, 70, 95, 80, 84, 95,105,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 73,110,116,101,114,102, 97, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,174,254, 17, 3, 46, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,112,159, 41, 10, -178, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, - 83, 67, 0, 0,116, 5, 0, 0,128, 29,174, 9,154, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,129, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 48,131, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, + 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, + 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,193, 1, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,131, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,129, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 62,196, + 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0,173,195, 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, +107, 1, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, +107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, + 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1,108, 1,115, 1, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,192, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,108, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,144,132, 45, 3, 1, 0, 0, 0,162, 0, 0, 0, + 1, 0, 0, 0,192,139, 45, 3, 1, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,208,129, 45, 3, 1, 0, 0, 0, 48,131, 45, 3, + 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,133, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,135, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, + 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, + 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,135, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,133, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,136, 45, 3, + 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,136, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,139, 45, 3, + 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,132, 45, 3, 1, 0, 0, 0,208,133, 45, 3, + 1, 0, 0, 0, 48,135, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 0, 0, 0, 6, 0, 0, 48,234,138, 3, 1, 0, 0, 0,154, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0,116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49,174, 9, 24, 42,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32, 35,174, 9, -176, 35,174, 9, 32, 35,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,248, 35,174, 9,184,254, 39, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,248,138, 3, 1, 0, 0, 0, 32,150, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 96,142, 45, 3, + 1, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,142, 45, 3, + 1, 0, 0, 0, 32,139,221, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, -250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, 90, 0, 0, 0, - 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, 24, 0, 10, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 37,174, 9,112, 37,174, 9, 0, 0, 0, 0, 0, 0,200, 66, - 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117, -102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, + 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, + 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,144, 45, 3, 1, 0, 0, 0,112,144, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 66, 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, + 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, - 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0,154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, - 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112,201,136, 9, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, - 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 5, 0,128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -195,245, 28,193, 1, 0, 0, 0, 68, 65, 84, 65, 28, 0, 0, 0, 32, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0,104, 35,174, 9, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 78, 2,143, 1,216, 52,174, 9, 68, 65, 84, 65, 28, 0, 0, 0, -104, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0,176, 35,174, 9, 32, 35,174, 9, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, -250, 2,150, 2, 72, 57,174, 9, 68, 65, 84, 65, 28, 0, 0, 0,176, 35,174, 9,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, -104, 35,174, 9, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,130, 0,223, 1, 0, 49,174, 9, 68, 65, 84, 65, 72, 1, 0, 0, -248, 35,174, 9,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0, -205,204, 76, 63, 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, - 32, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 80, 0, - 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, 10, 0, 0, 0, 50, 0, 50, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0, +154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 69, 36, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, + 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, +128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0,142, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,174, 2,210, 1, 48,254,138, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0,142, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 96,142, 45, 3, + 1, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,118, 3, 5, 3, 48, 4,139, 3, + 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96,142, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,142, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,151, 0, 48, 2, 48,248,138, 3, + 1, 0, 0, 0, 68, 65, 84, 65,112, 1, 0, 0,192,142, 45, 3, 1, 0, 0, 0,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, + 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, - 10, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0, -205,204,204, 61,205,204,204, 61,102,102,166, 63, 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 72, 0, 0, 0,112, 37,174, 9, -136, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0, -255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0,120, 0, 0, 0,232, 37,174, 9, 29, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, -114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0, -140, 1, 0, 0,144, 38,174, 9, 41, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66, -154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 72, 40,174, 9, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, - 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, - 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 41,174, 9, 68, 65, 84, 65, - 8, 1, 0, 0, 72, 40,174, 9, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, 0, 0,128, 67, - 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,128, 41,174, 9, 0, 0, 0, 0, + 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, + 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, + 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 0, 0, 0,112,144, 45, 3, 1, 0, 0, 0,136, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101, +114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0,255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0, +152, 0, 0, 0, 0,145, 45, 3, 1, 0, 0, 0, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, +114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,248, 1, 0, 0,208,145, 45, 3, 1, 0, 0, 0, 41, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0,148, 45, 3, + 1, 0, 0, 0, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0, -128, 41,174, 9, 70, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,200, 41,174, 9, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0,104, 1, 0, 0, - 24, 42,174, 9,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111, -114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,149, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, + 56, 1, 0, 0, 0,148, 45, 3, 1, 0, 0, 0, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, + 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,112,149, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,112,149, 45, 3, 1, 0, 0, 0, 70, 1, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, + 40, 0, 0, 0,192,149, 45, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0, +216, 1, 0, 0, 32,150, 45, 3, 1, 0, 0, 0,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61, 205,204,204, 61,205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0, @@ -940,177 +7639,200 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,120, 0, 0, 0,176, 43,174, 9, - 27, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 7, 0, 0, 0, 1, 0, 0, 0, 88, 44,174, 9, 88, 44,174, 9, 88, 44,174, 9, 88, 44,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,208, 44,174, 9,255,255,255,255, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65, 24, 0, 0, 0, 88, 44,174, 9, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 44,174, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0,160, 44,174, 9, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 1, 0, 79, 66, 0, 0,168, 3, 0, 0, 0, 49,174, 9,119, 0, 0, 0, 1, 0, 0, 0,216, 52,174, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 37,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, - 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190, -227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64, -150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,125,103,133, 51,176,219,194,178, 0, 0, 0, 0,190, 32, 66, 51, - 1, 0,128, 63,168,200,153, 51, 0, 0, 0, 0, 32,206, 18,179,126,126,149, 50, 1, 0,128, 63, 0, 0, 0, 0,241,251,133, 52, -172,182, 27,180,174,236,252, 51, 0, 0,128, 63, 0, 0,128, 63,157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, - 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51,243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52, -183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, - 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, - 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62,237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,176, 0, 0, 0, 48,152, 45, 3, 1, 0, 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79, 66, 0, 0,168, 3, 0, 0,216, 52,174, 9,119, 0, 0, 0, 1, 0, 0, 0, 72, 57,174, 9, 0, 49,174, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, + 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 32,153, 45, 3, + 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,242,138, 3, 1, 0, 0, 0,255,255,255,255, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32,153, 45, 3, + 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,176, 32, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0, 32,176, 32, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,248,138, 3, 1, 0, 0, 0, +119, 0, 0, 0, 1, 0, 0, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, + 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63, +149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0,128, 63, + 1, 0,128, 51, 1, 0, 0,179, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0,128, 63, 1, 0,128, 51, 0, 0, 0, 0, 2, 0, 0,179, + 2, 0, 0,167, 1, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 53, 1, 0, 0, 41, 1, 0,128,168, 0, 0,128, 63, 0, 0,128, 63, +157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51, +243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62, +237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 0, 0,152, 4, 0, 0, 48,254,138, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, 48, 4,139, 3, 1, 0, 0, 0, + 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112, +104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 9, 44, 10, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 66,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 57,174, 9,232, 56,174, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,244, 28, 25, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,160, 45, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,188, 32, 3, 1, 0, 0, 0,224,195, 32, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190,227,251,159, 62, - 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64,151, 62,208,192, - 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, 79, 66, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63, -169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,211, 43, 10, 8, 4, 44, 10, 25, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 4, 0, 0, 0, 24, 57,174, 9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,232, 56,174, 9, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,168, 3, 0, 0, 72, 57,174, 9,119, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0,216, 52,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190, +227,251,159, 62, 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64, +151, 62,208,192, 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, + 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, + 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 38,174, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,123, 38, 63, - 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63,236, 13, 98,189, - 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62,164,111, 75, 63, - 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 35,233,134, 49,251,110, 17,179, - 0, 0, 0, 0, 49,158,141, 50, 1, 0,128, 63,126,214,237, 50, 0, 0, 0, 0,155,248, 28,178,199,139, 96,177,254,255,127, 63, - 0, 0, 0, 0, 80,136,159,178,192, 4,158,178,209,114,143,179, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, 37,255, 16, 63, - 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63,166,111, 75, 63, - 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, - 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, - 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0, -143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 65, 29, 25, 1, 0, 0, 0,208, 72, 29, 25, 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0,192,188, 32, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,224,195, 32, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,152, 4, 0, 0, 48, 4,139, 3, 1, 0, 0, 0,119, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +229,123, 38, 63, 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63, +236, 13, 98,189, 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62, +164,111, 75, 63, 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 1, 0,128, 50, + 0, 0, 0,179, 0, 0, 0, 0, 1, 0,128, 50, 1, 0,128, 63, 1, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 39, 1, 0, 0, 52, 1, 0,128, 39, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, + 37,255, 16, 63, 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63, +166,111, 75, 63, 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, +100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, + 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0,160, 2, 0, 0, 32, 61,174, 9, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63, -205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, -205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, - 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, - 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61, -205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63,240, 63,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0, + 32, 3, 0, 0,128,153, 45, 3, 1, 0, 0, 0, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, + 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, + 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 65,174, 9, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, -205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61,205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 8, 1, 0, 0,240, 63,174, 9, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 65,174, 9, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, + 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,224,156, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, -144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61, +205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 16, 1, 0, 0,224,156, 45, 3, + 1, 0, 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,158, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0,144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, 32, 0, 0, 0, - 40, 65,174, 9, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, 40, 1, 0, 0,120, 65,174, 9, 39, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, - 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, 24, 1, 0, 0,208, 66,174, 9, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 74,174, 9, 72, 74,174, 9, 0, 0, 0, 0, 0, 0, 0, 0,152, 69,174, 9, 8, 72,174, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 68,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,136, 70,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,200, 72,174, 9, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, 0, 0, 0,180, 0, 0, 0, 0, - 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, - 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,240, 74,174, 9, - 0, 0, 0, 0, 1, 0, 0, 0, 32, 61,174, 9, 68, 65, 84, 65, 84, 1, 0, 0, 24, 68,174, 9, 75, 1, 0, 0, 5, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, + 40, 0, 0, 0, 48,158, 45, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, +104, 1, 0, 0,144,158, 45, 3, 1, 0, 0, 0, 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, + 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -152, 69,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, +144, 1, 0, 0, 48,160, 45, 3, 1, 0, 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 48,198, 32, 3, 1, 0, 0, 0,176,168, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,163, 45, 3, 1, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,162, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,164, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16,167, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, + 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 48,198, 32, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128,153, 45, 3, + 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0, 0,162, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0,152, 69,174, 9, - 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63,255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, - 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191,230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, - 0, 0,128,191, 26,182, 26,182, 26,182,255,127, 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, - 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63,247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0, -245,255,127, 63, 5, 0,128,191, 0, 0,128, 63,230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, - 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73, -230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, 84, 1, 0, 0,136, 70,174, 9, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 72,174, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,163, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1119,15 +7841,17 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 0, 0, 0, 8, 72,174, 9, 57, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, - 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, - 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 68, 65, 84, 65, 84, 1, 0, 0,200, 72,174, 9, - 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0,160,163, 45, 3, 1, 0, 0, 0, 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63, +255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191, +230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, 0, 0,128,191, 26,182, 26,182, 26,182,255,127, + 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63, +247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0,245,255,127, 63, 5, 0,128,191, 0, 0,128, 63, +230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, + 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73,230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, +104, 1, 0, 0,160,164, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 72, 74,174, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1136,27 +7860,44 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -120, 0, 0, 0, 72, 74,174, 9, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, - 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, - 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, - 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,128, 11, 0, 0,160, 44,119, 9,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, - 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 57, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, + 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 35, 0, 68, 65, 84, 65,104, 1, 0, 0, 16,167, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,168, 45, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112, -111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100,101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, - 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0,176,168, 45, 3, 1, 0, 0, 0, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,160, 11, 0, 0,128,215,112, 1, + 1, 0, 0, 0,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, + 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100, +101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1176,7 +7917,7 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1186,19 +7927,20 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 48, 52, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, - 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, - 5, 0, 2, 0,208, 86,174, 9,208,108,174, 9, 40, 22,188, 9, 40, 22,188, 9,112, 76,188, 9,112, 76,188, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, + 3, 0, 0, 0, 48, 52, 6, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, 48, 22,139, 3, 1, 0, 0, 0, 48, 46,139, 3, + 1, 0, 0, 0,240,193,121, 22, 1, 0, 0, 0,240,193,121, 22, 1, 0, 0, 0,240,205,121, 22, 1, 0, 0, 0,240,205,121, 22, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63, -205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191, -154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, - 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, - 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0, -250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, + 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, + 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, + 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, + 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, + 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1208,8 +7950,10 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, @@ -1231,2178 +7975,2185 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -208, 21, 0, 0,208, 86,174, 9,187, 0, 0, 0, 1, 0, 0, 0,208,108,174, 9, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255, -100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255, -100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255, -153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, - 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, - 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255, -100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255, -153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255, -153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, - 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, - 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, - 45, 45, 45,230,100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, - 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255, -100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180, -100,100,100,180,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, - 86,128,194,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255, -240,235,100,255,215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, 48, 22,139, 3, 1, 0, 0, 0,187, 0, 0, 0, + 1, 0, 0, 0, 48, 46,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, + 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255, +255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, +255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, + 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, +128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, +255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255, +255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230, +100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, +255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255,100,100,100,255, + 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180,100,100,100,180, +128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255,240,235,100,255, +215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, -255,140, 25,255,250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,140, 25,255, +250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, - 3, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, - 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, - 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, + 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, + 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, +255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, - 3, 0, 0, 0, 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255, -109,145,131,255,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, + 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, - 17, 27, 60,100, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, + 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, -100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, + 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255, -105,117,110,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, - 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255, -255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255, -200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255,105,117,110,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, - 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, - 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255, -255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, - 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, - 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, +255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, +219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255, -247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255, -131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255, -240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255, -111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255, -243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255, -211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255, -222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, - 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, + 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, +255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, + 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, + 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, + 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, + 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, + 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, + 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, + 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 68, 65, 84, 65,208, 21, 0, 0,208,108,174, 9,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 86,174, 9, 82,111,117,110, -100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, -153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, -153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0,231,255, 0, 0, 25, 25, 25,255, -153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, - 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, - 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255, -180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255, -180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, - 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, - 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, - 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, - 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, +216, 21, 0, 0, 48, 46,139, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 22,139, 3, + 1, 0, 0, 0, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0, +231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, + 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, + 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0, +241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0, +236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0, +236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255, -217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, - 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,255,255,255,255,130, 0,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, +143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, + 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, +255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255, -178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255, -135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,204, -255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, + 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255, +255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, - 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255, -162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60,255,133, 0,255, - 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255, -127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 88, 88, 88,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, +112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255, -255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, - 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100, -127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255,129,131,144,255,127,127,127,255, -142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, - 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255, -217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, - 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, - 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, - 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, + 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, + 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255, +169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, + 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, + 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, +255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, +112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, +255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, +200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, +255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40, +255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255, +230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, + 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255, +129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, +143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, + 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, +255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255, +255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255, -189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, - 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255, -193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, - 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255, -238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255, -152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255, -176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, - 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, + 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, + 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, + 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, + 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, + 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, + 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, + 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 78, 65, 49,116,227, 0, 0, 32, 30, 54, 10, 0, 0, 0, 0, 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, - 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, 97, 0, 42,102,105,114,115,116, 0, 42,108, 97, -115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, 0,121,109,105,110, 0,121,109, 97,120, 0, 42, -112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97,108, 50, 0,116,121,112,101, 0,115,117, 98,116, -121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97,118,101,100, 0,100, 97,116, 97, 0,108,101,110, - 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117, -115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101,115, 0,105,100, 0, 42,105,100, 98,108,111, 99, -107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, 93, 0,102,105,108,101,110, 97,109,101, 91, 50, - 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0,119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, - 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42,114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, - 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, - 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0,118, 97,114,116,121,112,101, 0,116,111,116,118, -101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105,116,109, 97,115,107, 0,115,108,105,100,101, 95, -109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, 0, 42,100,114,105,118,101,114, 0, 99,117,114, -118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105,112,111, 0,112,111,115, 0,114,101,108, 97,116, -105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101,105,103,104,116,115, 0,118,103,114,111,117,112, - 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101,114,109, 97,120, 0, 42, 97,100,116, 0, 42,114, -101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108,101,109,115,105,122,101, 0, 98,108,111, 99,107, - 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115,108,117,114,112,104, 0, 42,108,105,110,101, 0, - 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0,115,116, 97,114,116, 0,101,110,100, 0,102,108, - 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, 42,110, 97,109,101, 0,110,108,105,110,101,115, - 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99,117,114, 99, 0,115,101,108, 99, 0,109, 97,114, -107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95,112,111,115, 0,117,110,100,111, 95,108,101,110, - 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122,101, 0,115,101,101,107, 0,112, 97,115,115,101, -112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112,115,116, 97, 0, 99,108,105,112,101,110,100, 0, -108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97,119,115,105,122,101, 0,115,104,105,102,116,120, - 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, 70, 95, 97,112,101,114,116,117,114,101, 0, 89, - 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42, -100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101,115, 0,111,102,102,115,101,116, 0,115,102,114, - 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117,108,116,105, 95,105,110,100,101,120, 0,108, 97, -121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101,110,101, 0,105, 98,117,102,115, 0, 42,103,112, -117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115,111,117,114, 99,101, 0,108, 97,115,116,102,114, - 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110,100, 0,120,114,101,112, 0,121,114,101,112, 0, -116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, 0, 42,114,101,112, 98,105,110,100, 0, 42,112, - 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42,114,101,110,100,101,114, 95,116,101,120,116, 0, -108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, 97,110,105,109,115,112,101,101,100, 0,103,101, -110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97,115,112,120, 0, 97,115,112,121, 0,116,101,120, - 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108,101,110,100,116,121,112,101, 0, 42,111, 98,106, -101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0,112,114,111,106,120, 0,112,114,111,106,121, 0, -112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, 0,115,105,122,101, 91, 51, 93, 0,114,111,116, - 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0,112,109, 97,112,116,111, 0,112,109, 97,112,116, -111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, 99,104, 95,111,117,116,112,117,116, 0, 98,114, -117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0,114, 0,103, 0, 98, 0,107, 0,100,101,102, 95, -118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111,114,102, 97, 99, 0,100,105,115,112,102, 97, 99, - 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0,109,105,114,114,102, 97, 99, 0, 97,108,112,104, - 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, 0,101,109,105,116,102, 97, 99, 0,104, 97,114, -100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110,115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, - 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, 97, 99, 0, 99,111,108,116,114, 97,110,115,102, - 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, 99, 0,114,101,102,108,102, 97, 99, 0,116,105, -109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109,112,102, 97, 99, 0,107,105,110,107,102, 97, 99, - 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0,108,105,102,101,102, 97, 99, 0,115,105,122,101, -102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0,115,104, 97,100,111,119,102, 97, 99, 0,122,101, -110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108,101,110,100,102, 97, 99, 0,110, 97,109,101, 91, - 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, 42,115,116,110, 97,109,101,115, 0,115,116,121, -112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101,115,117,108,116, 0, 42, 99,102,114, 97, 0,100, - 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42,105,110,115,116, 97,110, 99,101, 95,105,110,105, -116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118,101,114,115,105,111,110, 0, 97, 0,105,112,111, -116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98, -105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101,119,115, 99, 97,108,101, 0,110,111,116,108, 97, -121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97,108, 99, 0,108, 97,115,116,115,105,122,101, 0, -102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, 95,115,111,102,116,110,101,115,115, 0,114, 97, -100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111,116,112,111,105,110,116,115, 0,112,100,112, 97, -100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104, -101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112,111,105,110,116, 95,116,114,101,101, 0, 42,112, -111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, 0,110,111,105,115,101, 95,100,101,112,116,104, - 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105,115,101, 95, 98, 97,115,105,115, 0,112,100,112, - 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101,101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, - 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116,121,112,101, 0,102,105,108,101, 95,102,111,114, -109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105,112,108,105,101,114, 0,115,116,105,108,108, 95, -102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0, -110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105,103,104,116, 0, 99,111,110,116,114, 97,115,116, - 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116,101,114,115,105,122,101, 0,109,103, 95, 72, 0, -109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, 97,118,101,115, 0,109,103, 95,111,102,102,115, -101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117,110,116, 0,110,115, 95,111,117,116,115, 99, 97, -108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, 0,118,110, 95,119, 52, 0,118,110, 95,109,101, -120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121,112,101, 0,110,111,105,115,101,100,101,112,116, -104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115,105,115, 0,110,111,105,115,101, 98, 97,115,105, -115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, 99,114,111,112,121,109,105,110, 0, 99,114,111, -112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105,108,116,101,114, 0, 97,102,109, 97,120, 0,120, -114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107,101,114,100,105,115,116, 0,110, 97, 98,108, 97, - 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108,117,103,105,110, 0, 42,101,110,118, 0, 42,112, -100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97, -116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, 93, 0,109,111,100,101, 0,116,111,116,101,120, - 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115,104,100,119,112, 97,100, 0,101,110,101,114,103, -121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, 98,108,101,110,100, 0,104, 97,105,110,116, 0, - 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102,102, 0,115,104, 97,100,115,112,111,116,115,105, -122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115,115,116,104,114,101,115,104, 0,112, 97,100, 53, - 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102,102,101,114,115, 0,102,105,108,116,101,114,116, -121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0,114, 97,121, 95,115, 97,109,112, 0,114, 97,121, - 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, 95,115, 97,109,112, 95,116,121,112,101, 0, 97, -114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, 97,114,101, 97, 95,115,105,122,101,121, 0, 97, -114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0,114, 97,121, 95,115, 97,109,112, 95, -109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97,108,111,115,116,101,112, 0,115,117,110, 95,101, -102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116,121,112,101, 0,104,111,114,105,122,111,110, 95, - 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117,110, 95, 98,114,105,103,104,116,110,101,115,115, - 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101,114,101,100, 95,108,105,103,104,116, 0,115,117, -110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98,105,100,105,116,121, 0, 97,116,109, 95,105,110, -115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,101,120,116,105,110, 99,116,105,111,110, - 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, 95,102, 97, 99,116,111,114, 0,115,107,121, 98, -108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, 0,115,107,121, 95, 99,111,108,111,114,115,112, - 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111,110,115, 0, 89, 70, 95,110,117,109,115,101, 97, -114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115,101,113,109, 99, 0, 89, 70, 95, 98,117,102,115, -105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, - 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95,103,108,111,119,111,102,115, 0, 89, 70, 95,103, -108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101,120, 91, 49, 56, 93, 0,112,114, 95,116,101,120, -116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0,101,109,105,115,115,105,111,110, 0,115, 99, 97, -116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101,109,105,115,115,105,111,110, 95, 99,111,108, 91, - 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,114,101,102,108,101, 99,116,105,111, -110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97,108,101, 0,100,101,112,116,104, 95, 99,117,116, -111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105,122,101, 95,116,121,112,101, 0,115,104, 97,100, -101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, 99, 97, 99,104,101, 95,114,101,115,111,108,117, -116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102,102, 0,109,115, 95,105,110,116,101,110,115,105, -116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, 95,116,121,112,101, 0,115,112,101, 99,114, 0, -115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114,103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, - 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97,110,103, 0,115,112,101, 99,116,114, 97, 0,114, - 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0,115,112,101, 99, 0,122,111,102,102,115, 0, 97, -100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0,102,114,101,115,110,101,108, 95,109,105,114, 0, -102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101,108, 95,116,114, 97, 0,102,114,101,115,110,101, -108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105,109,105,116, 0,116,120, 95,102, 97,108,108,111, -102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112,116,104, 95,116,114, 97, 0,104, 97,114, 0,115, -101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, 0,103,108,111,115,115, 95,116,114, 97, 0,115, - 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103,108,111,115,115, 95,116,114, 97, 0, 97,100, 97, -112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,116,114, 97, 0, 97, -110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95,109,105,114, 0,102, 97,100,101,116,111, 95,109, -105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, 0,102,108, 97,114,101, 99, 0,115,116, 97,114, - 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, 0,102,108, 97,114,101,115,105,122,101, 0,115, -117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116,114, 97,110,100, 95,115,116, 97, 0,115,116,114, - 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0,115,116,114, 97,110,100, 95,115,117,114,102,110, -111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, 95,119,105,100,116,104,102, 97,100,101, 0,115, -116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, 97,115, 0,108, 98,105, 97,115, 0,115,104, 97, -100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101,108, 0,112,114, 95,116,121,112,101, 0,112,114, - 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97,103, 0,100,105,102,102, 95,115,104, 97,100,101, -114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110,101,115,115, 0,114,101,102,114, 97, 99, 0,112, - 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42, -114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, 0,114, 97,109,112,105,110, 95,115,112,101, 99, - 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98,108,101,110,100, 95,115,112,101, 99, 0,114, 97, -109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, - 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111,110, 0,102,104, 0,114,101,102,108,101, 99,116, - 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97,109,111,100,101, 0,115,115,115, 95,114, 97,100, -105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115,115, 95,101,114,114,111,114, 0,115,115,115, 95, -115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111,108,102, 97, 99, 0,115,115,115, 95,116,101,120, -102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, 99,107, 0,115,115,115, 95,102,108, 97,103, 0, -115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120,116,117,114,101,100, 0,103,112,117,109, 97,116, -101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0,105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0, -106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120, -112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, - 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101,108,101,109,115, 0, 42, 42,109, 97,116, 0,102, -108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, 0,114,101,110,100,101,114,115,105,122,101, 0, -116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0, -119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, - 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, 0,114,101,115,111,108,117, 0,114,101,115,111, -108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97,103,117, 0,102,108, 97,103,118, 0, 42,107,110, -111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110,116,101,114,112, 0,114, 97,100,105,117,115, 95, -105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0,104, 0,110,117,114, 98, 0, 42,101,100,105,116, -110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, 98,106, 0, 42,116,101,120,116,111,110, 99,117, -114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100,114, 97,119,102,108, 97,103, 0,116,119,105,115, -116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95,115,109,111,111,116,104, 0,112, 97,116,104,108, -101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120,116, 49, 0,101,120,116, 50, 0,114,101,115,111, -108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99,116,110,117, 0, 42,108, 97,115,116,115,101,108, - 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, 0,108,105,110,101,100,105,115,116, 0,115,104, -101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0,117,108,112,111,115, 0,117,108,104,101,105,103, -104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, 0, 42,115,116,114, 0, 42,115,101,108, 98,111, -120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, - 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111,110,116, 98,105, 0,115,101,112, 99,104, 97,114, - 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, 0, 42,116, 98, 0,115,101,108,115,116, 97,114, -116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117,114,105,110,102,111, 0,101,102,102,101, 99,116, - 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, 99,101, 0, 42,109,118,101,114,116, 0, 42,109, -101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109,115,116,105, 99,107,121, 0, 42,116,101,120, 99, -111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, 95,109,101,115,104, 0,118,100, 97,116, 97, 0, -101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0,116,111,116,102, 97, 99,101, 0,116,111,116,115, -101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102,108, 97,103, 0, 99,117, 98,101,109, 97,112,115, -105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105,118, 0,115,117, 98,100,105,118,114, 0,115,117, - 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116,112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, - 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, 0,117,110,119,114, 97,112, 0,118, 49, 0,118, - 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115,101, 0, 98,119,101,105,103,104,116, 0,100,101, -102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99,111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117, -118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100, -105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0,109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, - 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, 0, 42,118,101,114,116,115, 0,108,101,118,101, -108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101,110,116, 0,110,101,119,108,118,108, 0,101,100, -103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108,118,108, 0,117,115,101, 95, 99,111,108, 0, 42, -101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 0, 42,118,101,114,116, 95,109, - 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, 99,101,115, 0, 42,111,108,100, 95,101,100,103, -101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115,117, 98,100,105,118, 84,121,112,101, 0,114,101, -110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, 42,109, 67, 97, 99,104,101, 0,100,101,102, 97, -120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97,110,100,111,109,105,122,101, 0,115,101,101,100, - 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117, -114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102,102,115,101,116, 91, 51, 93, 0,115, 99, 97,108, -101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95,116,121,112,101, 0,111,102,102,115,101,116, 95, -116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101,114, 97,110, 99,101, 0, 42,109,105,114,114,111, -114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108,117,101, 0,114,101,115, 0,118, 97,108, 95,102, -108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97,103,115, 0, 98,101,118,101,108, 95, 97,110,103, -108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42,100,111,109, 97,105,110, 0, 42,102,108,111,119, - 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, 0,115,116,114,101,110,103,116,104, 0,100,105, -114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120,109, 97,112,112,105,110,103, 0, 42,109, 97,112, - 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, - 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, 0, 42,105,109, 97,103,101, 0,110,117,109, 95, -112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97,115,112,101, 99,116,121, 0,112,101,114, 99,101, -110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112,101, 97,116, 0, 42,111, 98,106,101, 99,116, 99, -101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0,104,101,105,103,104,116, 0,110, 97,114,114,111, -119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, 0,116,105,109,101,111,102,102,115, 0,108,105, -102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117,108,116,105, 0, 42,112,114,101,118, 67,111,115, - 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110,116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99, -101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105,110,100,101,120, 0,102,111,114, 99,101, 0, 42, - 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114,109,115, 0, 42, 99,111,108,108, 95,112, 97,114, -109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, 99,104,101,115, 0, 42,120, 0, 42,120,110,101, -119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101,119, 0, 42, 99,117,114,114,101,110,116, 95,120, - 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0,110,117,109,118,101,114,116,115, 0,110,117,109, -102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100,109, 0, 99,102,114, 97, 0,111,112,101,114, 97, -116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117,101,110, 99,101, 0,103,114,105,100,115,105,122, -101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103,104,116,115, 0, 42, 98,105,110,100, 99,111,115, - 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105,100, 0, 42,100,121,110,105,110,102,108,117,101, -110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, 0,100,121,110,103,114,105,100,115,105,122,101, - 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101,108,108,119,105,100,116,104, 0, 98,105,110,100, -109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0,116,111,116,100,109,101,100,103,101, 0,116,111, -116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111,110, 0,114, 97,110,100,111,109, 95,112,111,115, -105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, 0,112,114,111,116,101, 99,116, 0, 42,117,110, -100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95,116,111,116, 0,117,110,100,111, 95,115,105,103, -110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108,101, 0, 42,102,115,115, 0, 42,116, 97,114,103, -101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101, -101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104,114,105,110,107, 79,112,116,115, 0,112,114,111, -106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, 42,111,114,105,103,105,110, 0,102, 97, 99,116, -111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112,116,115, 0,112,110,116,115,119, 0,111,112,110, -116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121,112,101,117, 0,116,121,112,101,118, 0,116,121, -112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100,119, 0, 42,100,101,102, 0, 42,108, 97,116,116, -105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 42,101,100,105,116,108, 97,116,116, 0,118, -101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114,116,121,112,101, 0,112, 97,114, 49, 0,112, 97, -114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114, -111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114,111,120,121, 95,102,114,111,109, 0, 42, 97, 99, -116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, 42,103,112,100, 0, 99,111,110,115,116,114, 97, -105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0,109,111,100,105,102,105,101,114,115, 0,114,101, -115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, - 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0,100,114,111,116, 91, 51, 93, 0,100,113,117, 97, -116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, 65,120,105,115, 91, 51, 93, 0,114,111,116, 65, -110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116, -105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116,115, 0,116,114, 97,110,115,102,108, 97,103, 0, -112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97,103, 0,117,112,102,108, 97,103, 0,110,108, 97, -102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0,115, 99, 97,102,108, 97,103, 0,115, 99, 97,118, -105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112,111,110, 0,100,117,112,111,102,102, 0,100,117, -112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0,100, 97,109,112,105,110,103, 0,105,110,101,114, -116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112,105,110,103, 0,109, 97,114,103,105,110, 0,109, - 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110,116, 97, 99,116, 80,114,111, 99,101,115,115,105, -110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0,100,116, 0,100,116,120, 0,101,109,112,116,121, - 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109,112,116,121, 95,100,114, 97,119,115,105,122,101, - 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110,115,111,114,115, 0, 99,111,110,116,114,111,108, -108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122,101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0, -103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, 98,115,111,102,116, 0,115,111,102,116,102,108, - 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105,111,110, 91, 51, 93, 0, 99,111,110,115,116,114, - 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107,115, 0,112, 97,114,116,105, 99,108,101,115,121, -115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117,112, 0,102,108,117,105,100,115,105,109, 70,108, - 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112,101,110,114, 0,115,104, 97,112,101,102,108, 97, -103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, 42,102,108,117,105,100,115,105,109, 83,101,116, -116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, 0, 42,100,101,114,105,118,101,100, 70,105,110, - 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116,101, 0,105,110,105,116, 95,115,116, 97,116,101, - 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112,108,105,108,105,115,116, 0, 99,117,114,105,110, -100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110,111, 95,100,114, 97,119, 0, 97,110,105,109, 97, -116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, 51, 93, 0,100,101,102,108,101, 99,116, 0,102, -111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95,109,111,100,101, 0,107,105,110,107, 0,107,105, -110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110,103,116,104, 0,102, 95,100, 97,109,112, 0,102, - 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, 0,109, 97,120,100,105,115,116, 0,109,105,110, -100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97,100, 0,109,105,110,114, 97,100, 0,112,100,101, -102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100,101,102, 95,112,101,114,109, 0,112,100,101,102, - 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, 98,115,111,114,112,116,105,111,110, 0,112,100, -101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, 0,112,100,101,102, 95,115, 98,111,102,116, 0, - 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0,107,105,110,107, 95,102,114,101,113, 0,107,105, -110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114,101,101, 95,101,110,100, 0,116,101,120, 95,110, - 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101,105,103,104,116, 91, 49, 51, 93, 0,103,108,111, - 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, 97,109,101, 0,116,111,116,112,111,105,110,116, - 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97,114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, - 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, 97,109,101, 0,115,116, 97,114,116,102,114, 97, -109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109,101, 0,108, 97,115,116, 95,101,120, 97, 99,116, - 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, - 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, 0, 42,101,100,105,116, 0, 40, 42,102,114,101, -101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97,110,103, 83,116,105,102,102, 0,118,111,108,117, -109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, 97,116,105,111,110,115, 0,100,105,116,101,114, - 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, - 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, - 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, - 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, - 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103,115, 0,110,117,109, 99,108,117,115,116,101,114, -105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116,111,116,115,112,114,105,110,103, 0, 42, 98,112, -111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, 99,107, 0,109,115,103, 95,118, 97,108,117,101, - 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97,115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0, -109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112,104,121,115,105, 99,115, 95,115,112,101,101,100, - 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99,116, 0,109,105,110,103,111, 97,108, 0,109, 97, -120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114,111,117,112, 0,110, 97,109,101,100, 86, 71, 95, - 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101,115,115, 0,105,110,115,112,114,105,110,103, 0, -105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105,110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, - 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108,118,101,114,102,108, 97,103,115, 0, 42, 42,107, -101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111,110,100,115,112,114,105,110,103, 0, 99,111,108, - 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116,105,102,102, 0,115, 98, 99, 95,109,111,100,101, - 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, 97,120,108,111,111,112,115, 0, 99,104,111,107, -101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0,115,112,114,105,110,103,112,114,101,108,111, 97, -100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102,102, 0,105,110,112,117,115,104, 0, 42,112,111, -105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119,101,105,103,104,116,115, 0, 42,102,109,100, 0, -115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, 0,114,101,115,111,108,117,116,105,111,110,120, -121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97,108,115,105,122,101, 0,103,117,105, 68,105,115, -112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, 97,121, 77,111,100,101, 0,118,105,115, 99,111, -115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116, -121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118,121, 0,103,114, 97,118,122, 0, 97,110,105,109, - 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0,109, 97,120, 82,101,102,105,110,101, 0,105,110, -105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108,122, 0, 42,111,114,103, 77,101,115,104, 0, 42, -109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0,115,117,114,102,100, 97,116, 97, 80, 97,116,104, - 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83,105,122,101, 91, 51, 93, 0,116,121,112,101, 70, -108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0,118,111,108,117,109,101, 73,110,105,116, 84,121, -112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110,101,114, 97,116,101, 84,114, 97, 99,101,114,115, - 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115,117,114,102, 97, 99,101, 83,109,111,111,116,104, -105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 83,105, -122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0,102, 97,114, 70,105,101,108,100, 83,105,122,101, - 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112,115, 84,105,109,101, 83,116, 97,114,116, 0, 99, -112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, 0, 97,116,116,114, 97, 99,116,102,111,114, 99, -101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 82, 97,100,105,117,115, 0,118,101,108, -111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, - 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, 0,109,105,115,116,121,112,101, 0,104,111,114, -114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110,114, 0,122,101,110,103, 0,122,101,110, 98, 0, -122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120,112,111,115,117,114,101, 0,101,120,112, 0,114, - 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103,114, 97,118,105,116,121, 0, 97, 99,116,105,118, -105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, 0,111, 99, 99,108,117,115,105,111,110, 82,101, -115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, 97,116,101, 0,109, 97,120,108,111,103,105, 99, -115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112,104,121,115,116,101,112, 0,109,105,115,105, 0, -109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115,116,104,105, 0,115,116, 97,114,114, 0,115,116, - 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114,115,105,122,101, 0,115,116, 97,114,109,105,110, -100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111,108,110,111,105,115,101, 0,100,111,102,115,116, - 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, 97,120, 0, 97,111,100,105,115,116, 0, 97,111, -100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98,105, 97,115, 0, 97,111,109,111,100,101, 0, 97, -111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, 97,111, 95, 97,100, 97,112,116, 95,116,104,114, -101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, - 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114,114,101, 99,116,105,111,110, 0, 97,111, 95,115, - 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, 95,109,101,116,104,111,100, 0, 97,111, 95, 97, -112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101,114,101, 0, 42, 97,111,116, 97, 98,108,101,115, - 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114,109, 97,116, 0, 42,108,112, 80, 97,114,109,115, - 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110, -100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, 0,100,119, 81,117, 97,108,105,116,121, 0,100, -119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, 97,103,115, 0,100,119, 73,110,116,101,114,108, -101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, - 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, - 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0,118,105,100,101,111, 95, 98,105,116,114, 97,116, -101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95,109,105,120,114, 97,116,101, 0, 97,117, -100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0,114, 99, 95,109,105,110, 95,114, 97,116,101, 0, -114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101,114, 95,115,105,122,101, 0,109,117,120, 95,112, - 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0,109,105,120,114, 97,116,101, 0,109, 97,105,110, - 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112,108,101,114, 95,102, 97, 99,116,111,114, 0,100, -105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111,118,101,114,114,105,100,101, 0, 42,108,105,103, -104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115,107, 0,108, 97,121,102,108, 97,103, 0,112, 97, -115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, 99,111,100,101, 99,100, 97,116, 97, 0, 42,113, -116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97,116, 97, 0,112,115,102,114, 97, 0,112,101,102, -114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116,104,114,101, 97,100,115, 0,102,114, 97,109,101, -108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100,103,101, 71, 0,101,100,103,101, 66, 0,102,117, -108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, 0,102,114,101,113,112,108, 97,121, 0, 97,116, -116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109,111,100,101, 0,100,105,109,101,110,115,105,111, -110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120,115, 99,104, 0,121,115, 99,104, 0,120,112, 97, -114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, 97,110,101,115, 0,105,109,116,121,112,101, 0, -115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105,115,112,108, 97,121,109,111,100,101, 0,114,112, - 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97,121,116,114, 97, 99,101, 95,111,112,116,105,111, -110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114,101, 0,114,101,110,100,101,114,101,114, 0,111, - 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102,114,115, 95,115,101, 99, 0,101,100,103,101,105, -110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115,112,114,101, 99,116, 0,108, 97,121,101,114,115, - 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114,115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, - 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0,112,111,115,116,103, 97,109,109, 97, 0,112,111, -115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, 95,105,110,116,101,110,115,105,116,121, 0, 98, - 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, 98, 97,107,101, 95,109,111,100,101, 0, 98, 97, -107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95,115,112, 97, 99,101, 0, 98, 97,107,101, 95,113, -117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105,115,116, 0, 98, 97,107,101, 95, 98,105, 97,115, -100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108,105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, - 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, - 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98,117,109,112, 0, 89, 70, 95, 99,108, 97,109,112, -114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, 73, 99, 97,117,115,100,101,112,116,104, 0, 71, - 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112,104,111,116,111,110, 99,111,117,110,116, 0, 71, - 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110,114, 97,100,105,117,115, 0, 89, 70, 95,114, 97, -121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, 70, 95, 65, 65,115, 97,109,112,108,101,115, 0, -121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105,116,121, 0, 71, 73,114,101,102,105,110,101,109, -101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112,111,119,101,114, 0, 89, 70, 95,103, 97,109,109, - 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105, -120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111,108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, - 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115,116, 97,109,112, 95,102,111,110,116, 95,105,100, - 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, - 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115,117, 98,115,117,114,102, 0,115,105,109,112,108, -105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105,109,112,108,105,102,121, 95,112, 97,114,116,105, - 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, 99,105,110,101,111,110,119,104,105,116,101, 0, - 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97,109,109, 97, 0,106,112, 50, 95,112,114,101,115, -101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100,111,109,101,114,101,115, 0,100,111,109,101,109, -111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105,108,116, 0,100,111,109,101,114,101,115, 98,117, -102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, 50, 93, 0,112, 97,114,116,105, 99,108,101, 95, -112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97,100, 98,117,102,115, 97,109,112,108,101, 95,109, - 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, 98,117,102, 0, 42,119, 97,114,112,116,101,120, -116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97,109,105,110,103, 0,100,111,109,101, 0,115,116, -101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, 99,116,105,118,101, 95, 98,114,117,115,104, 95, -105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, 97,105,110,116, 95, 99,117,114,115,111,114, 0, -112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0,112, 97,105,110,116, 0,116,111,111,108, 0,115, -101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103,108,101, 0, 42,112, 97,105,110,116, 99,117,114, -115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0,116,111,116, 97,100,100,107,101,121, 0, 98,114, -117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105,116,116,101,114,100,105,115,116, 0,115,101,108, -101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97,119, 95,115,116,101,112, 0,102, 97,100,101, 95, -102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, - 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101,116, 95,115,116,114,101,110,103,116,104, 0,103, - 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101,118, 0, 42,119,112, 97,105,110,116, 95,112,114, -101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118,103,114,111,117,112, 95,119,101,105,103,104,116, - 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102,108, 97,103, 0,106,111,105,110,116,114,105,108, -105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95,111,102,102,115, 0,100,111,117, 98,108,105,109, -105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101,114,103,101, 0,115,101,103,109,101,110,116,115, - 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, 97,112,112,101,114, 0,117,118, 99, 97,108, 99, - 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115,105,122,101, 0,117,118, 99, 97,108, 99, 95,109, - 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0,117,118, 99, 97,108, 99, 95,109, 97,112, 97,108, -105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102,108, 97,103, 0,117,118, 95,115,101,108,101, 99, -116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111,105,107, 95, 99,104, 97,105,110,108,101,110, 0, -105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 95,115, -105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108,101, 97,110, 95,116,104,114,101,115,104, 0, 97, -117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95,102,108, 97,103, 0,114,101,116,111,112,111, 95, -109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111,111,108, 0,108,105,110,101, 95,100,105,118, 0, -101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104,111,116,115,112,111,116, 0,109,117,108,116,105, -114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101,110, 95,114,101,115,111,108,117,116,105,111,110, - 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116,101,114,110, 97,108, 0,115,107,103,101,110, 95, -116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95, -114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 97, -110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114,114,101,108, 97,116,105,111,110, 95,108,105,109, -105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,114,101, -116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103, -101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, -100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,111,112,116,105,111,110,115, 0,115,107, -103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 95,112, 97,115,115,101,115, - 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, 51, 93, 0,115,107,103,101,110, 95,109,117,108, -116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112,108, 97,116,101, 0, 98,111,110,101, 95,115,107, -101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 95, 99,111,110,118,101,114,116, 0,115, -107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, 98,101,114, 0,115,107,103,101,110, 95,114,101, -116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,114,111, -108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, 91, 56, 93, 0,115,107,103,101,110, 95,110,117, -109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100,101, 0,115,110, 97,112, 95,109,111,100,101, 0, -115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101,116, 0,112,114,111,112,111,114,116,105,111,110, - 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0,116,111,116,108, 97,109,112, 0,116,111,116,111, - 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101,115,104, 0,116,111,116, 97,114,109, 97,116,117, -114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116,101,109, 0,103,114, 97,118,105,116,121, 91, 51, - 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101,116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, - 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, 0,116,119, 99,101,110,116, 91, 51, 93, 0,116, -119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, 0, 42,116,111,111,108,115,101,116,116,105,110, -103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110,115,102,111,114,109, 95,115,112, 97, 99,101,115, - 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, 97,103, 0,100, 97,103,105,115,118, 97,108,105, -100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, 0,102,114, 97,109,101, 95,115,116,101,112, 0, - 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121,105,110,103,115,101,116,115, 0,103,109, 0,117, -110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, 0, 98,108,101,110,100, 0,119,105,110,109, 97, -116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,105,110,118, 91, 52, 93, - 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0, -118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0, -116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109, -100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109,122,111,111,109, 0,118,105,101,119, 98,117,116, - 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115,112, 0,118,105,101,119, 0, 99,108,105,112, 91, - 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108,118,100, 0, 42,114,105, 0, 42,114,101,116,111, -112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, 0, 42,115,109,115, 0, 42,115,109,111,111,116, -104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, 0,108,112,101,114,115,112, 0,108,118,105,101, -119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121,112,101, 0, 98,108,111, 99,107,115, 99, 97,108, -101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97,121, 95,117,115,101,100, 0, 42,111, 98, 95, 99, -101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116,114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0, -108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110,101,108,111, 99,107, 0, 97,114,111,117,110,100, - 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105,100,118,105,101,119, 0,112, 97,100,102, 0,110, -101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114,105,100,102,108, 97,103, 0,103,114,105,100,115, -117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121,102,108, 97,103,115, 0,116,119,116,121,112,101, - 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97,119,102,108, 97,103, 0, 99,117,115,116,111,109, -100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0,122, 98,117,102, 0,120,114, 97,121, 0,110,100, -111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112,114,111,112,101,114,116,105,101,115, 95,115,116, -111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0,109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, - 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99,114,111,108,108, 0,115, 99,114,111,108,108, 95, -117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0,107,101,101,112,111,102,115, 0, 97,108,105,103, -110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0,111,108,100,119,105,110,121, 0, 99,117,114,115, -111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117, -114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103,104,111,115,116, 67,117,114,118,101,115, 0, 97, -117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97,105,110, 98, 0,109, 97,105,110, 98,111, 0,109, - 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114,101,118,105,101,119, 0,112, 97,116,104,102,108, - 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114,101,110,100,101,114, 95,115,105,122,101, 0, 99, -104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0,116,105,116,108,101, 91, 50, 52, 93, 0,100,105, -114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97,109,101,102,105,108,101, 91, 56, 48, 93, 0,115, -111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98,111,111,107,109, 97,114,107, 0, 97, 99,116,105, -118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102,112, 0,109,101,110,117, 0,102,112, 95,115,116, -114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109,115, 0, 42,102,105,108,101,115, 0, 42,102,111, -108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95,110,101,120,116, 0, 42,111,112, 0, 42,108,111, - 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117,116, 0,114,101, 99,101,110,116,110,114, 0, 98, -111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116,114,101,101, 0, 42,116,114,101,101,115,116,111, -114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, 0,115,101, 97,114, 99,104, 95,116,115,101, 0, -115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116,108,105,110,101,118,105,115, 0,115,116,111,114, -101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99,117,114,116,105,108,101, 0,105,109,116,121,112, -101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115,116,105, 99,107,121, 0,100,116, 95,117,118,115, -116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42,116,101,120,116, 0,116,111,112, 0,118,105,101, -119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116,104, 0,108,105,110,101,110,114,115, 95,116,111, -116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, 97, 98,110,117,109, 98,101,114, 0,115,104,111, -119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0,108,105,118,101, 95,101,100,105,116, 0,112,105,120, 95, -112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, 0,116,120,116, 98, 97,114, 0,119,111,114,100,119,114, - 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115,116,114, 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99, -101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, 0, 42,112,121, 95,101,118,101,110,116, 0, 42,112,121, - 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101,114, 99, 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95, -103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, 99,101, 0,115, 99,114,105,112,116,110, 97,109,101, 91, - 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, 93, 0, 42,115, 99,114,105,112,116, 0, 42, 98,117,116, - 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, 97,115,112,101, 99,116, 0, 42, 99,117,114,102,111,110, -116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0,116,114,101,101,116,121,112,101, 0,116,101,120,102,114, -111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105,108,101,115,121, 0,118,105,101,119,114,101, 99,116, 0, - 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108,108,112,111,115, 0,115, 99,114,111,108,108,104,101,105, -103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116,118, 97,108, 0,112,114,118, 95,119, 0,112,114,118, 95, -104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 95,101, -118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114, -103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105,109,103, 0,108,101,110, 95, 97,108,108,111, 99, 0, 99, -117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114,111,108,108, 98, 97, 99,107, 0,104,105,115,116,111,114, -121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, - 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0,112,111,105,110,116,115, 0,107,101,114,110,105,110,103, - 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111,119, 0,115,104, 97,100,120, 0,115,104, 97,100,121, 0, -115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, 99,111,108,111,114, 0,112, 97,110,101,108,116,105,116, -108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103,101,116,108, 97, 98,101,108, 0,119,105,100,103,101,116, - 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101,108, 99,104, 97,114,115, 0,109,105,110,119,105,100,103, -101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99,101, 0,116,101,109,112,108, 97,116,101,115,112, 97, 99, -101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115,112, 97, 99,101,120, 0, 98,117,116,116,111,110,115,112, - 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97,110,101,108,111,117,116,101,114, 0,112, 97,100, 91, 49, - 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, 91, 52, 93, 0,105,110,110,101,114, 95,115,101,108, 91, - 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, 0,116,101,120,116, 95,115,101,108, 91, 52, 93, 0,115, -104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97,100,101,100,111,119,110, 0,105,110,110,101,114, 95, 97, -110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95,115,101,108, 91, 52, 93, 0,105,110,110,101,114, 95,107, -101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101,108, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105, -118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 95,115,101,108, 91, 52, 93, 0,119, 99,111,108, 95, -114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0,119, 99,111,108, 95,116,101,120,116, 0,119, 99,111,108, - 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, 0,119, 99,111,108, 95,116,111,103,103,108,101, 0,119, - 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108,105,100,101,114, 0,119, 99,111,108, 95,109,101,110,117, - 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111,108, 95,109,101,110,117, 95, 98, 97, 99,107, 0,119, 99, -111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, 98,111,120, 0,119, 99,111,108, 95,115, 99,114,111,108, -108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, 99,111,108, 95,115,116, 97,116,101, 0,105, 99,111,110, -102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116,105,116,108,101, 91, 52, 93, 0,116,101,120,116, 95,104, -105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,105,116,108,101, 91, 52, 93, 0,104, -101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, - 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,105,116,108,101, 91, 52, 93, 0, 98,117,116,116,111,110, - 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, - 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 91, 52, 93, 0,108,105, -115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101,108, 91, 52, 93, 0,112, 97,110,101,108, 95,116,105,116, -108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 95,104, -105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97,100,101, 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, - 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, 0,115,101,108,101, 99,116, 91, 52, 93, 0,108, 97,109, -112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111,117,112, 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99, -116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, 52, 93, 0,118,101,114,116,101,120, 91, 52, 93, 0,118, -101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 91, 52, 93, 0,101,100,103,101, 95,115,101,108, -101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, 93, 0,101,100,103,101, 95,115,104, 97,114,112, 91, 52, - 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0,102, 97, 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115, -101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, 52, 93, 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98, -111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95,112,111,115,101, 91, 52, 93, 0,115,116,114,105,112, 91, - 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, 0, 99,102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, - 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99,104, 97,110,110,101,108, 91, 52, 93, 0,118,101,114,116, -101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105,122,101, 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110, -116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, 0,115,121,110,116, 97,120, 98, 91, 52, 93, 0,115,121, -110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, 93, 0,109,111,118,105,101, 91, 52, 93, 0,105,109, 97, -103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100,105,111, 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, - 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105,116,105,111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, - 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116, -101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,104, 97, -110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104,112, 97,100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, - 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116,102,105,108,101, 0,116,105,112,111, 0,116,105,110,102, -111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101,113, 0,116,105,109, 97, 0,116,105,109, 97,115, -101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0,116,110,111,100,101, 0,116,108,111,103,105, 99, - 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, 97, 99,116,105,118,101, 95,116,104,101,109,101, - 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, 97,103, 0,115, 97,118,101,116,105,109,101, 0, -116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, 91, 49, 54, 48, 93, 0,114,101,110,100,101,114, -100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,116,101,120,100,105, -114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, 48, 93, 0,112,121,116,104,111,110,100,105,114, - 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0,121,102,101,120,112,111,114,116,100,105,114, 91, - 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, 97,103,115, 0,119,104,101,101,108,108,105,110, -101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, 97,103,101, 0,117,115,101,114,112,114,101,102, - 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, 0, 97,117,100,105,111,100,101,118,105, 99,101, - 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, 97,116, 0, 97,117,100,105,111, 99,104, 97,110, -110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, 97,110,115,111,112,116,115, 0,109,101,110,117, -116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 50, 0,116,104,101,109,101,115, - 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101,121,109, 97,112,115, 0,107,101,121, 99,111,110, -102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, 0,117,110,100,111,109,101,109,111,114,121, 0, -103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95,101,117, 99,108,105,100,101, 97,110,100,105,115, -116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105,110,103,115, 0,116, 98, 95,108,101,102,116,109, -111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108,105,103,104,116, 91, 51, 93, 0,116,119, 95,104, -111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97,110,100,108,101,115,105,122,101, 0,116,119, 95, -115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99,111,108,108,101, 99,116,114, 97,116,101, 0,119, -109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101,109, 99, 97, 99,104,101,108,105,109,105,116, 0, -112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101,115,101,114,118,101,114,112,111,114,116, 0,112, - 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101,114, 95,100,105, 97, 0,114,118,105,115,105,122, -101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102,105,108,101,115, 0,115,109,111,111,116,104, 95, -118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100,111,102, 95,112, 97,110, 0,110,100,111,102, 95, -114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95,110,101,119, 0,118,101,114,115,101,109, 97,115, -116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99, -108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, 98, 97,115,101, 0,101,100,103,101, 98, 97,115, -101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, 0,102,117,108,108, 0,119,105,110,105,100, 0, -100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100,111, 95,100,114, 97,119, 95,103,101,115,116,117, -114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115,111,114, 0,115,119, 97,112, 0,109, 97,105,110, -119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110,105,109,116,105,109,101,114, 0, 42, 99,111,110, -116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119,118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, - 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, - 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0,111,102,115,121, 0,115,105,122,101,120, 0,115, -105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109,101, 95,102,108, 97,103, 0, 99,111,110,116,114, -111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116, -105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0,108,105,115,116, 95,115,105,122,101, 0,108,105, -115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105,112, 95,115,105,122,101, 0,108,105,115,116, 95, -115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42,102,117,108,108, 0, 98,117,116,115,112, 97, 99, -101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, 99,101,100, 97,116, 97, 0,104, 97,110,100,108, -101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, 99,116, 0,100,114, 97,119,114, 99,116, 0,115, -119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105,103,110,109,101,110,116, 0,117,105, 98,108,111, - 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116,114, 0, 42,114,101,103,105,111,110,100, 97,116, - 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115,105,111,110, 0,112, 97,100,115, 0,109,105,110, -118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111,110, 0, 42, 99,117,114,115, 99,114,101,101,110, - 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, 0,103,108,111, 98, 97,108,102, 0,110, 97,109, -101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111,109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, - 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104,116, 0,120,111,102,115, 0,121,111,102,115, 0, -108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105,110, 91, 51, 93, 0,115, 97,116,117,114, 97,116, -105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, 97,114,116,115,116,105,108,108, 0,101,110,100, -115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, 0,111,114,121, 0, 42, 99,114,111,112, 0, 42, -116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, 97,110, 99,101, 0, 42,116,115,116,114,105,112, -100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,116,115,116, -114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98,117,102, 95,115,116, 97,114,116,115,116,105,108, -108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110,115,116, 97,110, 99,101, 95,112,114,105,118, 97, -116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, -116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0,109, 97, 99,104,105,110,101, 0,115,116, 97,114, -116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105,122,101, 0, 97,110,105,109, 95,112,114,101,115, -101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99,102, 49, 0, 42,115,101,113, 49, 0, 42,115,101, -113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111,117,110,100, 0, 42,115,111,117,110,100, 95,104, - 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110,101,110,114, 0,115,116,114,111, 98,101, 0, 42, -101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114,116,111,102,115, 0, 97,110,105,109, 95,101,110, -100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110,100, 95,111,112, 97, 99,105,116,121, 0, 42,111, -108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, 98, 97,115,101,112, 0,109,101,116, 97,115,116, - 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97,103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, - 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103,101, 87,105,100,116,104, 0,102,111,114,119, 97, -114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67,108, 97,109,112, 0,102, 66,111,111,115,116, 0, -100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111,109,112, 0, 83, 99, 97,108,101,120, 73,110,105, - 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, - 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114,111,116, 73,110,105, 0,114,111,116, 70,105,110, - 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109,101, 77, 97,112, 0,103,108,111, 98, 97,108, 83, -112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, 98,117,116,116,121,112,101, 0,117,115,101,114, -106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109,102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97, -110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102,101, 0,102,111,114, 99,101, 91, 51, 93, 0,118, -101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, - 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97,116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, - 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111,109, 97,116, 0,116,105,109,101,116,101,120, 0, -115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101,114,116,103,114,111,117,112, 95,118, 0,118,103, -114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107, -101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100,101,108,101,109, 0, 42,112,111,105,110, 0,114, -101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, 0,107,101,121, 0,113,117, 97,108, 0,113,117, - 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116,111,103,103,108,101, 78, 97,109,101, 91, 51, 50, - 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100, -117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, 91, 51, 50, 93, 0,100, 97,109,112,116,105,109, -101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115, -102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0, 99,111,110,115,116,114, 97,105,110,116, 91, - 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106,101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, - 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101,113, 0,116,111,116,108,105,110,107,115, 0, 42, - 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, 97,120,105,115, 95,115,105,110,103,108,101, 0, - 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116,102, 0,112,114,101, 99,105,115,105,111,110, 0, -115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, 42,109,121,110,101,119, 0,105,110,112,117,116, -115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, 0,118, 97,108,111, 0,115,116, 97,116,101, 95, -109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, 51, 50, 93, 0, 98,108,101,110,100,105,110, 0, -112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115,116,114,105,100,101, 97,120,105,115, 0,115,116, -114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115, -111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121,109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, - 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103, 86,101,108,111, 99,105,116,121, 91, - 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101,114, 97,116,105,111,110, 0,102,111,114, 99,101, -108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108,105,110,101, 97,114,118,101,108,111, 99,105,116, -121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 42,114,101,102,101,114,101,110, - 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, 0,109, 97,120, 0,118,105,115,105,102, 97, 99, - 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, 97,120,108,111, 99, 91, 51, 93, 0,109,105,110, -114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116,112,114,111,112, 91, 51, 50, 93, 0,100,105,115, -116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0,105,110,116, 95, 97,114,103, 95, 50, 0,102,108, -111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, 50, 0,116,111, 80,114,111,112, 78, 97,109,101, - 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84,121,112,101, 0,102,105,108,101,110, 97,109,101, - 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, 0,105,110,116, 95, 97,114,103, 0,102,108,111, - 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, 0, 97, 99, 99,101,108,108,101,114, 97,116,105, -111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112,101,101,100, 0,109, 97,120,116,105,108,116,115, -112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, 97,109,112, 0, 42,115,111,117,114, 99,101, 0, -102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103,101,100, 0,109,105,110, 95,103, 97,105,110, 0, -109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100,105,115,116, 97,110, 99,101, 0,109, 97,120, 95, -100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99,116,111,114, 0, 99,111,110,101, 95,105,110,110, -101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111, -117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100,102,105,108,101, 0, 97,116,116,101,110,117, 97, -116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112, -114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102,115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97, -115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, - 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97,114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97, -114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0,122,119,105,100,116,104, 0,101, 97,115,101, 49, - 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95,116, 97,105,108, 0, 98,111,110,101, 98, 97,115, -101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115,107,101,116, 99,104, 0,108, 97,121,101,114, 95, -112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104,111,115,116,115,105,122,101, 0,103,104,111,115, -116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116,115,102, 0,103,104,111,115,116,101,102, 0,112, - 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0,112, 97,116,104, 97, 99, 0, 42,112,111,105,110, -116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102,114, 97,109,101, 0, 42,112,114,111,112, 0, 99, -111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, 99,116,102,108, 97,103, 0, 97,103,114,112, 95, -105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105,107,116,114,101,101, 0, 42, 98, 95, 98,111,110, -101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, 95, 98,111,110,101, 95,100,117, 97,108, 95,113, -117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95, -109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, 51, 93, 0,112,111,115,101, 95,116, 97,105,108, - 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105,116,109, 97,120, 91, 51, 93, 0,115,116,105,102, -102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105,107,114,111,116,119,101,105,103,104,116, 0,105, -107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99,104, 97,110, 98, 97,115,101, 0,112,114,111,120, -121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101,116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95, -111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,103,114,111,117,112, 0,105, -107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, 97,114, 97,109, 0,110,117,109,105,116,101,114, - 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120,115,116,101,112, 0,115,111,108,118,101,114, 0, -102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112,109, 97,120, 0,100, 97,109,112,101,112,115, 0, - 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99,115, 0, 99,117,114,118,101,115, 0,103,114,111, -117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105,108,116,101,114,102,108, 97,103, 0, 97,100,115, - 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101,115,108,105,100,101, 0, 42,103,114,112, 0,116, -101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99,101, 0,116, 97,114,115,112, 97, 99,101, 0,101, -110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95,101,114,114,111,114, 0,114,111,116, 95,101,114, -114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, 93, 0,115,112, 97, 99,101, 0,114,111,116, 79, -114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0,105,116,101,114, 97,116,105,111,110,115, 0,114, -111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, 0, 42,112,111,108,101,116, 97,114, 0,112,111, -108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, 97,110,103,108,101, 0,111,114,105,101,110,116, -119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, 0,114,101,115,101,114,118,101,100, 49, 0,114, -101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0,115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, - 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, 97,103, 0,118,111,108,109,111,100,101, 0,112, -108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, 0,112,105,118, 88, 0,112,105,118, 89, 0,112, -105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76,105,109,105,116, 91, 54, 93, 0,109, 97,120, 76, -105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111, -109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111,109, 95,109,105,110, 91, 51, 93, 0,102,114,111, -109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116,111, 95,109, 97,120, 91, 51, 93, 0,122,109,105, -110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, - 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117,114,109,111,100, 0, 97, 99,116,115,116, 97,114, -116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114,105,100,101,108,101,110, 0,115, 99, 97,108,101, - 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, 0,111,102,102,115, - 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, 97,115,111,117,116,112,117,116, 0,100, 97,116, - 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101,119, 95,115,111, 99,107, 0,110,115, 0,108,105, -109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101,114,110, 0,115,116, 97, 99,107, 95,105,110,100, -101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, 95,105,110,100,101,120, 0,116,111, 95,105,110, -100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110,101,119, 95,110,111,100,101, 0,117,115,101,114, -110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117,116,115, 0, 42,115,116,111,114, 97,103,101, 0, -109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117,115,116,111,109, 50, 0, 99,117,115,116,111,109, - 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0,101,120,101, 99, 0, 42,116,104,114,101, 97,100, -100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, 42, 98,108,111, 99,107, 0, 42,116,121,112,101, -105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111,100,101, 0, 42,102,114,111,109,115,111, 99,107, - 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, 42,116,104,114,101, 97,100,115,116, 97, 99,107, - 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95,105,110,100,101,120, 0, 97,108,108,116,121,112, -101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42,115,101,108,111,117,116, 0, 40, 42,116,105,109, -101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100,114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115, -116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, - 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112,101,101,100, 0,112,101,114, 99,101,110,116,120, - 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118,101,100, 0,105,109, 97,103,101, 95,105,110, 95, -119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104,116, 0, 99,101,110,116,101,114, 95,120, 0, 99, -101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, 97,112, 0,115,105,103,109, 97, 95, 99,111,108, -111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0, -102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, - 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121,112,101, 0,114,111,116, 97,116,105,111,110, 0, -103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0,109, 97,120, 98,108,117,114, 0, 98,116,104,114, -101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108,101, 95,111,102,115, 0, 99,111,108,109,111,100, - 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0,109, 0, 99, 0,106,105,116, 0,112,114,111,106, - 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, 0,109, 97,120,116, 97, 98,108,101, 0,101,120, -116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, 99,117,114,118,101, 0, 42,116, 97, 98,108,101, - 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99,108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98, -108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109,117,108, 91, 51, 93, 0,115, 97,109,112,108,101, - 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0,106,105,116,116,101,114, 0,115,109,111,111,116, -104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,102, 97, - 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117,108,112,116, 95,116,111,111,108, 0, 97, 99,116, -105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, 0, 97, 99,116,105,118,101, 95,109, 97,115,107, - 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97,120,108, 97,121,101,114, 0,116,111,116,115,105, -122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103, -114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0,112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, - 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, 0,114,116, 91, 50, 93, 0,112,114,101,118, 95, -115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105,101,116,105,109,101, 0,110,117,109, 95,100,109, - 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105,114, 95,105,110,100,101,120, 0, 42, 98,111,105, -100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118,101,109,111,100,101, 0,114,101, 97, 99,116,101, -118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, 97,119, 95,115,105,122,101, 0, 99,104,105,108, -100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101,112, 0,104, 97,105,114, 95,115,116,101,112, 0, -107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108,101, 0, 97,100, 97,112,116, 95,112,105,120, 0, -114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117, -118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115,112,108,105,116, 95,111,102,102,115,101,116, 0, - 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, - 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112,108,105,102,121, 95,114,101,102,115,105,122,101, - 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108,105,102,121, 95,116,114, 97,110,115,105,116,105, -111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, 0,116,105,109,101,116,119,101, 97,107, 0,106, -105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95,114,101,115, 0,112, 97,114,116,102, 97, 99, 0, -116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99,116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, - 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,114,111,116,102, 97, 99, 0,114, 97, -110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0,114,101, 97, 99,116,115,104, 97,112,101, 0, 97, - 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, - 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0,114,101,110, 95, 99,104,105,108,100, 95,110, 98, -114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,110,100,115,105,122, -101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, 0, 99,108,117,109,112,112,111,119, 0,114,111, -117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117,103,104, 50, 0,114,111,117,103,104, 50, 95,115, -105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117,103,104, 95,101,110,100, 0,114,111,117,103,104, - 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99,108,101,110,103,116,104, 95,116,104,114,101,115, - 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108,105,110,101, 91, 50, 93, 0,112, 97,116,104, 95, -115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, 95, 99,111,117,110,116, 0,107,101,121,101,100, - 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, 42,101,102,102, 95,103,114,111,117,112, 0, 42, -100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42,112, 97,114,116, 0, 42,112, 97,114,116,105, 99, -108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104,105,108,100, 99, 97, 99,104,101, 0,112, 97,116, -104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104,101, 98,117,102,115, 0, 42, 99,108,109,100, 0, - 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117,116, 95,100,109, 0, 42,116, 97,114,103,101,116, - 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, 97,109,101, 0,116,111,116, 99,104,105,108,100, - 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, 97, 99,104,101, 0,116, 97,114,103,101,116, 95, -112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109, -101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0,118,103, 95,110,101,103, 0,114,116, 51, 0, 42, -114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114,115, 0, 42,116,114,101,101, 0, 42,112,100,100, - 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, 0,115,116,114,117, 99,116,117,114, 97,108, 0, - 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, 95,115,116,114,117, 99,116, 0,109, 97,120, 95, -115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, 0,116,105,109,101,115, 99, 97,108,101, 0,101, -102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119,105,110,100, 95,115, 99, 97,108,101, 0,115,105, -109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95,115,109,111,111,116,104, 0,115,116,101,112,115, - 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120,115,112,114,105,110,103,108,101,110, 0,115,111, -108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110,100, 0,118,103,114,111,117,112, 95,109, 97,115, -115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115,101,116,115, 0, 42, 99,111,108,108,105,115,105, -111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, 95,102,114,105, 99,116,105,111,110, 0,115,101, -108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, 99,111,117,110,116, 0,108,111,111,112, 95, 99, -111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110,101,115,115, 0,115,116,114,111,107,101,115, 0, -102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103,115,116,101,112, 0,105,110,102,111, 91, 49, 50, - 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102,102,101,114, 95,115,102,108, 97,103, 0, 42,115, - 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115,115, 97,103,101, 0,108,105,115,116, 0,112,114, -105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, 42,119,105,110,100,114, 97,119, 97, 98,108,101, - 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0,105,110,105,116,105, 97,108,105,122,101,100, 0, -102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, 0,113,117,101,117,101, 0,114,101,112,111,114, -116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, 0,107,101,121, 99,111,110,102,105,103,115, 0, - 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, 97, 99,116,109, 97,112, 0,116,105,109,101,114, -115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104,111,115,116,119,105,110, 0, 42,110,101,119,115, - 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, 0,112,111,115,120, 0,112,111,115,121, 0,119, -105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, 97,115,116, 99,117,114,115,111,114, 0, 97,100, -100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97,116,101, 0, 42, 99,117,114,115,119,105,110, 0, - 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, 97,119,102, 97,105,108, 0, 42,100,114, 97,119, -100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115,117, 98,119,105,110,100,111,119,115, 0,103,101, -115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111,112,118, 97,108,117,101, 0,115,104,105,102,116, - 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109,111,100,105,102,105,101,114, 0,109, 97,112,116, -121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101,105,100, 0,114,101,103,105,111,110,105,100, 0, - 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101,109,115, 0, 98, 97,115,101,110, 97,109,101, 91, - 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111,109,100, 97,116, 97, 0, 42,114,101,112,111,114, -116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, 93, 0,112,114,101,118,120, 0,112,114,101,118, -121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121,109, 97,112, 95,105,100,110, 97,109,101, 0, 99, -117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, 0, 42,101,100, 97,116, 97, 0,105,110,102,108, -117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, 97,114,114, 97,121,115,105,122,101, 0,112,111, -108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112,104, 97,115,101, 95,109,117,108,116,105,112,108, -105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108,117,101, 95,111,102,102,115,101,116, 0,109,105, -100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116,101,114, 95,109,111,100,101, 0, 98,101,102,111, -114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108,101,115, 0,114,101, 99,116, 0,112,104, 97,115, -101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95,112, 97,116,104, 0, 97,114,114, 97,121, 95,105, -110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105,111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, - 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99,111,108,111,114, 91, 51, 93, 0,102,114,111,109, - 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110,103,115, 0,115,116,114,105,112,115, 0, 42,114, -101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116,105,109,101, 0, 98,108,101,110,100,109,111,100, -101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, 52, 93, 0,116,101,109,112,108, 97,116,101,115, - 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121,105,110,103,102,108, 97,103, 0, 97, 99,116,105, -118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95,116,114, 97, 99,107,115, 0, 42, 97, 99,116,115, -116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100,101,115, 0, 97, 99,116, 95, 98,108,101,110,100, -109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, 97, 99,116, 95,105,110,102,108,117,101,110, 99, -101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95,102, 97, 99,116,111,114, 0,115,105,103,110, 97, -108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, 91, 51, 93, 0,113,117,101,117,101, 95,115,105, -122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97,110, 99,101, 0,104,101, 97,108,116,104, 0,115, -116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116,105,111,110,115, 0, 97, 99,116,105,111,110,115, - 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102,117,122,122,105,110,101,115,115, 0,108, 97,115, -116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115,109,111,111,116,104,110,101,115,115, 0, 98, 97, -110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99,117,114, 97, 99,121, 0, 97,105,114, 95,109,105, -110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, - 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, - 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95,115,112,101,101,100, 0, -108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97,120, 95, 97,118,101, 0,108, 97,110,100, 95,112, -101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115,116,105, 99,107, 95,102,111,114, 99,101, 0,115, -116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102,108,117,105,100, 95,103,114,111,117,112, 0, 42, - 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95,119,116, 0, 42,116,101,120, 95,115,104, 97,100, -111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, 51, 93, 0,100,120, 0,111,109,101,103, 97, 0, -116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, 97,109,112,108,105,102,121, 0,109, 97,120,114, -101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115,101, 0,100,105,115,115, 95,112,101,114, 99,101, -110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51, -100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, - 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0, -118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100,101,110,115,105,116,121, 0,118,103,114,111,117, -112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42,118,101,108, 0,109, 97,116, 95,111,108,100, 91, - 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69,194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, - 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0,108,111,110,103, 0,117,108,111,110,103, 0,102, -108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110,107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76, -105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0,118,101, 99, 50,102, 0,118,101, 99, 50,100, 0, -118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, - 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112,101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80, -114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70,105,108,101, 68, 97,116, 97, 0, 80,114,101,118, -105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, 98,106,101, 99,116, 0, 73,112,111, 67,117,114, -118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, 73,112,111, 0, 75,101,121, 66,108,111, 99,107, - 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105,110,101, 0, 84,101,120,116, 77, 97,114,107,101, -114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97,109,101,114, 97, 0, 73,109, 97,103,101, 85,115, -101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101,120,116,117,114,101, 0, 97,110,105,109, 0, 82, -101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, 0, 80,108,117,103,105,110, 84,101,120, 0, 67, - 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, 97,112, 0, 73,109, 66,117,102, 0, 80,111,105, -110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 0, 86,111,120,101,108, 68, 97, -116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112,105,110,103, 0, 76, 97,109,112, 0, 67,117,114, -118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109,101, 83,101,116,116,105,110,103,115, 0, 77, 97, -116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, - 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97, -114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, - 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, - 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83, -116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101,115,104, 0, 67,117,115,116,111,109, 68, 97,116, - 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 0, 77, 68,101, -102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111, -112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, 77, 73,110,116, 80,114,111,112,101,114,116,121, - 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105,103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, - 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, - 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, - 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, - 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, - 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, - 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, - 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110, -101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, - 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, - 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, - 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, - 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, - 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, - 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, - 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, - 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, - 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, - 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, - 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, - 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, - 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, - 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, - 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102, 32, 32, 99,104, 97,114, 32,117,115,101, 95, 99,111,108, 44, 32,102,108, - 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118,101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, - 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101,100, 32,102,114,111,109, 32,111,116,104,101,114, - 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67, -117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104,111,114,116, 32, 42,101,100,103,101, 95,102,108, - 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 59, 10,125, 32, 77,117,108,116, -105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105,114,101,115, 32, 42, 42, 47, 10, 10,116,121,112, -101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 32,123, 10, - 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95,109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, - 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105, -110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103,101, 95,109, 97,112, 91, 79,108,100, 32, 73,110, -100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, - 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, 69,100,103,101, 32, 42,111,108,100, 95,101,100, -103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116,111,116,102, 97, 99,101, 44, 32,116,111,116,101, -100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, - 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, - 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100, -101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, - 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, - 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, - 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100, -101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, - 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, - 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110,111, 32, 61, 32,118,101,114,116,101,120,110,111, -114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114,101,110,100,101,114, 32, 97,115,115,117,109,101, -115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101,100, 32,108,105,107,101, 32,116,104,105,115, 32, - 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, - 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, - 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, - 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99, -111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, - 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, - 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101, -102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, - 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115,101,100, 32,104,101,114,101, 32,116,111,111, 32, - 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, - 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, - 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, - 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108, -100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97,102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, 32, 47, 42, 32,100,101,112,114,101, 99, 97,116, -101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32,115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, - 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,109,111,100,101, 32, 42, 47, 10, 35,100,101, -102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, - 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101, -102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, - 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112, -114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, - 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, - 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97,120,105,115, 32, 99,111,110,115,116,114, 97,105, -110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99, -101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, 52, 32, 97,114,101, 32,117,115,101,100, 32, 97, -115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, - 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35, -100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, - 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, 97, 47, 98,105,110, 97,114,121, 32, 97,108,112, -104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, - 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104,101, 32,117,115,101,114, 32,105,110,116,101,114, -102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, - 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97,112, 32, 42, 47, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, - 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, - 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101, -102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, - 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35, -101,110,100,105,102, 10,115,116, 79, 67, 75, 33, 32, 84, 70, 97, 99,101, 32, 42,185, 95, 0, 77,117,108,116,105,114,101,115, 67, -111,108, 0, 77,117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, - 77,117,108,116,105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102, -105,101,114, 68, 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, -105, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, - 97, 0, 66,117,105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, - 68, 97,116, 97, 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100, -105,102,105,101,114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 66,101,118,101,108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, - 97,116, 97, 0, 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105, -110, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107, -101, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97, -116, 97, 0, 85, 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116, -101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, - 0, 67, 97,115,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97, -116, 97, 0, 65,114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105, -102,105,101,114, 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108, -111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101, -116,116,105,110,103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, - 99,104,101, 0, 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101, -101, 0, 83,117,114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115, -104, 0, 66, 86, 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101, -114, 68, 97,116, 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115, -104, 68,101,102,111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116, -101,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 77,117,108,116,105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100, -105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110, -107,119,114, 97,112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111, -100,105,102,105,101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 76, 97,116,116,105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105, -111,110, 0, 98, 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83, -111,102,116, 66,111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72, -111,111,107, 0, 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103, -104,116,115, 0, 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114, -116,101,120, 0, 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, - 99,104, 0, 87,111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107, -116,105,109,101, 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117, -100,105,111, 68, 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, - 97,116, 97, 0, 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70, -114, 97,109,105,110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, - 0, 66,114,117,115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99, -108,101, 66,114,117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, - 0, 84,114, 97,110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97, -105,110,116, 0, 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116, -105,110,103,115, 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101, -110,101, 83,116, 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105, -101,119, 51, 68, 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86, -105,101,119, 68,101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101, -114, 0, 86,105,101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73, -110,102,111, 0, 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, - 83,112, 97, 99,101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, - 97,109,115, 0, 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111, -114, 0, 70,105,108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, - 0, 84,114,101,101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78, -108, 97, 0, 83,112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, - 83,112, 97, 99,101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83, -112, 97, 99,101, 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115, -111,108,101, 0, 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83, -116,121,108,101, 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105, -100,103,101,116, 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, - 99,101, 0, 84,104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105, -103,104,116, 0, 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101, -108, 0, 80, 97,110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, - 99,101, 84,121,112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71, -108,111, 98, 97,108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, - 67,114,111,112, 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97, -108, 97,110, 99,101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, - 0, 83,101,113,117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, - 97, 83,116, 97, 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111, -114,109, 86, 97,114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114, -111,108, 86, 97,114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, - 97,114,116,105, 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83, -101,110,115,111,114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, - 98, 75,101,121, 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, - 98, 65, 99,116,117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111, -108,108,105,115,105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100, -111,109, 83,101,110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110, -115,111,114, 0, 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116, -114,111,108,108,101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105, -111,110, 67,111,110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100, -100, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, - 98, 83,111,117,110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, - 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101, -114,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, - 65, 99,116,117, 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, - 97,105,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110, -100,111,109, 65, 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97, -109,101, 65, 99,116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, - 84,119,111, 68, 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116, -111,114, 0, 98, 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97, -116,111,114, 0, 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, - 98,106,101, 99,116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, - 86,101,114,116, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103, -115, 0, 98, 80,111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, - 65, 99,116,105,111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67, -104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116, -114, 97,105,110,116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67, -111,110,115,116,114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 84,114, 97, 99,107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110, -115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77, -105,110, 77, 97,120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, - 67,111,110,115,116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, - 0, 98, 83,116,114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, - 74,111,105,110,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105, -110,116, 0, 98, 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, - 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 82,111,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110, -115,116,114, 97,105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104, -114,105,110,107,119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105, -101,114, 0, 98, 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, - 83,111, 99,107,101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118, -105,101,119, 0,117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65, -110,105,109, 0, 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78, -111,100,101, 66,105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, - 78,111,100,101, 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, - 88, 89,115, 0, 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78, -111,100,101, 86,101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114, -105,112,116, 68,105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111, -100,101, 76,101,110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97, -112, 80,111,105,110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111, -109, 68, 97,116, 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66, -111,105,100, 80, 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99, -108,101, 0, 80, 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87, -101,105,103,104,116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105, -110,103,115, 0, 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101, -121, 0, 75, 68, 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111, -100,101, 0, 98, 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97, -109,101, 0, 98, 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119, -109, 87,105,110,100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110, -102,105,103, 0,119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114, -101, 0,119,109, 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, - 97,112, 0,119,109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, - 95, 71,101,110,101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111, -114, 0, 70, 67, 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, - 0, 70, 77,111,100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105, -109,105,116,115, 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97, -110,110,101,108, 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, - 80, 97,105,114, 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99, -107, 0, 75, 83, 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, - 0, 73,100, 65,100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, - 71,111, 97,108, 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, - 0, 66,111,105,100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118, -101,114, 97,103,101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97, -116,101, 0, 70, 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, - 2, 0, 2, 0, 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 8, 0, 12, 0, 8, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, - 12, 0, 24, 0, 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 20, 0, 76, 0, 52, 0, 40, 2, 0, 0, 32, 0,140, 0,168, 3, 92, 0, - 36, 0, 56, 0, 84, 0,112, 0,124, 0, 56, 0, 24, 0, 40, 0,120, 0, 12, 0,120, 0, 36, 0,116, 5,128, 1, 0, 0, 0, 0, - 0, 0, 8, 1, 40, 1, 84, 1, 24, 0, 8, 3,168, 0, 0, 0, 76, 0,124, 1, 24, 1,140, 0,132, 0,140, 1, 8, 1, 56, 0, - 88, 0,160, 2, 76, 0, 60, 1, 0, 0,108, 0,104, 0,148, 0, 56, 0, 8, 0, 16, 0, 92, 1, 0, 0, 0, 0, 0, 0, 24, 1, - 20, 0, 44, 0, 60, 0, 24, 0, 12, 0, 12, 0, 4, 0, 8, 0, 8, 0, 0, 0, 24, 0, 76, 0, 32, 0, 8, 0, 12, 0, 8, 0, - 8, 0, 4, 0, 4, 0, 0, 1, 32, 0, 12, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 40, 0, 56, 0, 72, 0, 92, 0,100, 0, - 72, 0,100, 0,120, 0, 68, 0, 64, 0,112, 0, 64, 0, 76, 0,180, 0, 48, 0,168, 0,152, 0,156, 0, 64, 0, 96, 0,108, 0, -188, 0,104, 0,216, 0, 56, 0, 84, 0, 0, 0,136, 0, 28, 0,240, 1,104, 0, 0, 0, 80, 0, 0, 0, 0, 0, 68, 0, 8, 0, - 8, 0,220, 0, 80, 0, 76, 0, 68, 0, 68, 0, 64, 0,168, 1,112, 0,108, 0, 56, 0,188, 0, 40, 0, 0, 0, 92, 0, 64, 0, - 72, 0,120, 0,144, 0, 0, 1,208, 0,180, 0, 0, 0, 68, 0, 92, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,104, 1, 28, 0, -176, 0,144, 0, 60, 0, 24, 0, 72, 0, 0, 4, 56, 0, 20, 0, 16, 0, 92, 0, 80, 0, 24, 0,196, 0, 36, 0, 8, 0,100, 0, - 80, 0, 48, 0, 52, 0, 72, 1, 32, 0, 8, 0, 16, 0, 24, 2, 0, 0, 0, 0, 56, 0,216, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,240, 0, 40, 0,148, 0, 48, 0,140, 0,216, 0, 20, 0,224, 0,216, 0,204, 1, 60, 0, 0, 0,112, 0, 0, 0, 4, 1, - 12, 0, 12, 0,136, 0,200, 0,124, 2, 80, 2, 40, 0,180, 0,244, 0, 52, 0,148, 2, 28, 0, 80, 0, 24, 0, 16, 1, 32, 0, -224, 0, 32, 0, 32, 0, 80, 2, 16, 1, 16, 0,208, 21, 56, 0,128, 11, 20, 0, 24, 0, 64, 1, 0, 0, 0, 0, 96, 0, 0, 0, -248, 0, 0, 0, 16, 1, 80, 0, 28, 0, 16, 0, 8, 0, 52, 0,252, 0,240, 0,168, 1,196, 0, 8, 1, 48, 0, 16, 0, 12, 0, - 24, 0, 48, 0, 16, 0, 20, 0, 16, 0, 24, 0, 56, 1, 0, 0, 56, 0, 52, 0, 48, 0, 8, 0, 44, 0, 72, 0,104, 0, 40, 0, - 8, 0, 72, 0, 44, 0, 40, 0,108, 0, 72, 0, 68, 0, 76, 0, 80, 0, 60, 0,128, 0, 76, 0, 60, 0, 12, 0, 92, 0, 68, 0, - 32, 0, 80, 0, 16, 0, 76, 0,108, 0, 84, 0, 28, 0, 96, 0, 56, 0, 56, 0,108, 0,140, 0, 4, 0, 20, 0, 12, 0, 8, 0, - 80, 0, 40, 0,196, 0, 24, 0, 4, 1,128, 0, 16, 0, 20, 0, 24, 0,196, 1, 4, 0, 40, 0,104, 0,228, 0, 64, 0, 44, 0, - 72, 0,116, 0, 60, 0,112, 0, 52, 0, 44, 0, 44, 0, 68, 0, 44, 0, 64, 0, 44, 0, 20, 0, 52, 0, 96, 0, 12, 0,108, 0, - 92, 0, 28, 0, 28, 0, 28, 0, 52, 0, 20, 0, 60, 0,140, 0, 36, 0,120, 0, 32, 0,212, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 40, 0, 28, 0, 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 8, 0, 24, 0, 32, 0, 8, 0, 32, 0, - 12, 0, 44, 0, 20, 0, 68, 0, 24, 0, 56, 0, 52, 0, 20, 0, 64, 0, 28, 0, 20, 0,180, 0,196, 1, 96, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 20, 0, 24, 0,172, 0, 24, 0, 24, 0,164, 0,148, 0,152, 0, 56, 0, 0, 0, 0, 0,104, 0, 0, 0, - 96, 0, 0, 0, 88, 0, 20, 0, 24, 0, 16, 0, 20, 0, 8, 0, 8, 0, 24, 0, 20, 0, 96, 0, 24, 1, 16, 0, 68, 0, 0, 1, - 20, 0,160, 0, 88, 0, 96, 0, 88, 0, 20, 0, 56, 0, 48, 0, 68, 0, 56, 0, 92, 0, 64, 0, 56, 0, 96, 0, 0, 0, 0, 0, - 83, 84, 82, 67,136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, - 9, 0, 2, 0, 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, - 4, 0, 5, 0, 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, - 17, 0, 3, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, - 19, 0, 3, 0, 8, 0, 5, 0, 8, 0, 6, 0, 8, 0, 7, 0, 20, 0, 4, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, - 4, 0, 8, 0, 21, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 8, 0, 22, 0, 4, 0, 8, 0, 5, 0, - 8, 0, 6, 0, 8, 0, 7, 0, 8, 0, 8, 0, 23, 0, 4, 0, 4, 0, 9, 0, 4, 0, 10, 0, 4, 0, 11, 0, 4, 0, 12, 0, - 24, 0, 4, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 25, 0, 4, 0, 9, 0, 13, 0, 12, 0, 14, 0, - 4, 0, 15, 0, 4, 0, 16, 0, 26, 0, 10, 0, 26, 0, 0, 0, 26, 0, 1, 0, 0, 0, 17, 0, 0, 0, 18, 0, 2, 0, 19, 0, - 0, 0, 20, 0, 4, 0, 21, 0, 25, 0, 22, 0, 4, 0, 23, 0, 4, 0, 24, 0, 27, 0, 9, 0, 9, 0, 0, 0, 9, 0, 1, 0, - 27, 0, 25, 0, 28, 0, 26, 0, 0, 0, 27, 0, 2, 0, 28, 0, 2, 0, 19, 0, 4, 0, 29, 0, 26, 0, 30, 0, 28, 0, 8, 0, - 27, 0, 31, 0, 27, 0, 32, 0, 29, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 4, 0, 36, 0, 4, 0, 37, 0, 28, 0, 38, 0, - 30, 0, 6, 0, 4, 0, 39, 0, 4, 0, 40, 0, 2, 0, 41, 0, 2, 0, 42, 0, 2, 0, 43, 0, 4, 0, 44, 0, 31, 0, 6, 0, - 32, 0, 45, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 48, 0, 33, 0, 21, 0, 33, 0, 0, 0, - 33, 0, 1, 0, 34, 0, 49, 0, 35, 0, 50, 0, 24, 0, 51, 0, 24, 0, 52, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 53, 0, - 2, 0, 54, 0, 2, 0, 55, 0, 2, 0, 56, 0, 2, 0, 19, 0, 2, 0, 57, 0, 7, 0, 11, 0, 7, 0, 12, 0, 4, 0, 58, 0, - 7, 0, 59, 0, 7, 0, 60, 0, 7, 0, 61, 0, 31, 0, 62, 0, 36, 0, 7, 0, 27, 0, 31, 0, 12, 0, 63, 0, 24, 0, 64, 0, - 2, 0, 46, 0, 2, 0, 65, 0, 2, 0, 66, 0, 2, 0, 37, 0, 37, 0, 16, 0, 37, 0, 0, 0, 37, 0, 1, 0, 7, 0, 67, 0, - 7, 0, 61, 0, 2, 0, 17, 0, 2, 0, 47, 0, 2, 0, 68, 0, 2, 0, 19, 0, 4, 0, 69, 0, 4, 0, 70, 0, 9, 0, 2, 0, - 7, 0, 71, 0, 0, 0, 20, 0, 0, 0, 72, 0, 7, 0, 73, 0, 7, 0, 74, 0, 38, 0, 13, 0, 27, 0, 31, 0, 39, 0, 75, 0, - 37, 0, 76, 0, 0, 0, 77, 0, 4, 0, 78, 0, 7, 0, 61, 0, 12, 0, 79, 0, 36, 0, 80, 0, 27, 0, 81, 0, 2, 0, 17, 0, - 2, 0, 82, 0, 2, 0, 83, 0, 2, 0, 19, 0, 40, 0, 6, 0, 40, 0, 0, 0, 40, 0, 1, 0, 0, 0, 84, 0, 0, 0, 85, 0, - 4, 0, 23, 0, 4, 0, 86, 0, 41, 0, 10, 0, 41, 0, 0, 0, 41, 0, 1, 0, 4, 0, 87, 0, 4, 0, 88, 0, 4, 0, 89, 0, - 4, 0, 43, 0, 4, 0, 14, 0, 4, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 42, 0, 15, 0, 27, 0, 31, 0, 0, 0, 93, 0, - 4, 0, 90, 0, 4, 0, 94, 0, 12, 0, 95, 0, 40, 0, 96, 0, 40, 0, 97, 0, 4, 0, 98, 0, 4, 0, 99, 0, 12, 0,100, 0, - 0, 0,101, 0, 4, 0,102, 0, 4, 0,103, 0, 9, 0,104, 0, 8, 0,105, 0, 43, 0, 3, 0, 4, 0,106, 0, 4, 0,107, 0, - 9, 0, 2, 0, 44, 0, 20, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,108, 0, 7, 0,109, 0, - 7, 0,110, 0, 7, 0,111, 0, 7, 0,112, 0, 7, 0,113, 0, 7, 0,114, 0, 7, 0,115, 0, 7, 0,116, 0, 7, 0,117, 0, - 7, 0,118, 0, 2, 0,119, 0, 2, 0,120, 0, 7, 0,121, 0, 36, 0, 80, 0, 32, 0,122, 0, 45, 0, 13, 0, 4, 0,123, 0, - 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 2, 0,127, 0, 2, 0,128, 0, 2, 0, 19, 0, 2, 0,129, 0, 2, 0,130, 0, - 2, 0,131, 0, 2, 0,132, 0, 2, 0,133, 0, 46, 0,134, 0, 47, 0, 32, 0, 27, 0, 31, 0, 0, 0, 34, 0, 12, 0,135, 0, - 48, 0,136, 0, 49, 0,137, 0, 50, 0,138, 0, 2, 0,129, 0, 2, 0, 19, 0, 2, 0,139, 0, 2, 0, 17, 0, 2, 0, 37, 0, - 2, 0, 43, 0, 4, 0,140, 0, 2, 0,141, 0, 2, 0,142, 0, 2, 0,143, 0, 2, 0,144, 0, 2, 0,145, 0, 2, 0,146, 0, - 4, 0,147, 0, 4, 0,148, 0, 43, 0,149, 0, 30, 0,150, 0, 0, 0,151, 0, 7, 0,152, 0, 4, 0,153, 0, 2, 0,154, 0, - 2, 0,155, 0, 2, 0,156, 0, 2, 0,157, 0, 7, 0,158, 0, 7, 0,159, 0, 51, 0, 63, 0, 2, 0,160, 0, 2, 0,161, 0, - 2, 0,162, 0, 2, 0,163, 0, 32, 0,164, 0, 52, 0,165, 0, 0, 0,166, 0, 0, 0,167, 0, 0, 0,168, 0, 0, 0,169, 0, - 0, 0,170, 0, 7, 0,171, 0, 7, 0,172, 0, 7, 0,173, 0, 2, 0,174, 0, 2, 0,175, 0, 2, 0,176, 0, 2, 0,177, 0, - 2, 0,178, 0, 2, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, - 7, 0,186, 0, 7, 0, 57, 0, 7, 0,187, 0, 7, 0,188, 0, 7, 0,189, 0, 7, 0,190, 0, 7, 0,191, 0, 7, 0,192, 0, - 7, 0,193, 0, 7, 0,194, 0, 7, 0,195, 0, 7, 0,196, 0, 7, 0,197, 0, 7, 0,198, 0, 7, 0,199, 0, 7, 0,200, 0, - 7, 0,201, 0, 7, 0,202, 0, 7, 0,203, 0, 7, 0,204, 0, 7, 0,205, 0, 7, 0,206, 0, 7, 0,207, 0, 7, 0,208, 0, - 7, 0,209, 0, 7, 0,210, 0, 7, 0,211, 0, 7, 0,212, 0, 7, 0,213, 0, 7, 0,214, 0, 7, 0,215, 0, 7, 0,216, 0, - 7, 0,217, 0, 7, 0,218, 0, 7, 0,219, 0, 7, 0,220, 0, 7, 0,221, 0, 53, 0, 15, 0, 0, 0,222, 0, 9, 0,223, 0, - 0, 0,224, 0, 0, 0,225, 0, 4, 0,226, 0, 4, 0,227, 0, 9, 0,228, 0, 7, 0,229, 0, 7, 0,230, 0, 7, 0,231, 0, - 4, 0,232, 0, 9, 0,233, 0, 9, 0,234, 0, 4, 0,235, 0, 4, 0, 37, 0, 54, 0, 6, 0, 7, 0,182, 0, 7, 0,183, 0, - 7, 0,184, 0, 7, 0,236, 0, 7, 0, 67, 0, 4, 0, 64, 0, 55, 0, 5, 0, 2, 0, 19, 0, 2, 0, 36, 0, 2, 0, 64, 0, - 2, 0,237, 0, 54, 0,231, 0, 56, 0, 17, 0, 32, 0,164, 0, 47, 0,238, 0, 57, 0,239, 0, 7, 0,240, 0, 7, 0,241, 0, - 2, 0, 17, 0, 2, 0,242, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0,243, 0, 4, 0,244, 0, 2, 0,245, 0, 2, 0,246, 0, - 4, 0,129, 0, 4, 0,140, 0, 2, 0,247, 0, 2, 0,248, 0, 58, 0, 23, 0, 2, 0, 19, 0, 2, 0,249, 0, 7, 0,250, 0, - 7, 0,251, 0, 2, 0,139, 0, 2, 0,252, 0, 4, 0,253, 0, 4, 0,254, 0, 32, 0,164, 0, 59, 0,255, 0, 2, 0, 0, 1, - 2, 0, 1, 1, 2, 0, 2, 1, 9, 0, 3, 1, 7, 0, 4, 1, 7, 0, 5, 1, 2, 0, 6, 1, 2, 0, 7, 1, 2, 0, 8, 1, - 2, 0, 9, 1, 7, 0, 10, 1, 7, 0, 11, 1, 55, 0, 12, 1, 60, 0, 11, 0, 4, 0, 13, 1, 4, 0, 14, 1, 2, 0, 15, 1, - 2, 0, 19, 0, 2, 0, 16, 1, 2, 0, 37, 0, 32, 0,164, 0, 7, 0, 17, 1, 4, 0, 18, 1, 0, 0, 19, 1, 7, 0, 20, 1, - 52, 0, 61, 0, 27, 0, 31, 0, 39, 0, 75, 0, 7, 0, 21, 1, 7, 0, 22, 1, 7, 0, 23, 1, 7, 0, 24, 1, 7, 0, 25, 1, - 7, 0, 26, 1, 7, 0, 27, 1, 7, 0, 28, 1, 7, 0, 29, 1, 7, 0, 30, 1, 7, 0, 31, 1, 7, 0, 32, 1, 7, 0, 33, 1, - 7, 0, 34, 1, 7, 0, 35, 1, 7, 0, 36, 1, 7, 0, 37, 1, 7, 0, 38, 1, 7, 0, 39, 1, 7, 0, 40, 1, 2, 0, 41, 1, - 2, 0, 42, 1, 2, 0, 43, 1, 2, 0, 44, 1, 2, 0, 45, 1, 2, 0, 46, 1, 2, 0, 47, 1, 2, 0, 19, 0, 2, 0, 17, 0, - 2, 0,242, 0, 7, 0, 48, 1, 7, 0, 49, 1, 7, 0, 50, 1, 7, 0, 51, 1, 4, 0, 52, 1, 4, 0, 53, 1, 2, 0, 54, 1, - 2, 0, 55, 1, 2, 0, 16, 1, 2, 0,127, 0, 4, 0, 23, 0, 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 7, 0, 56, 1, - 7, 0, 57, 1, 7, 0,189, 0, 45, 0, 58, 1, 61, 0, 59, 1, 36, 0, 80, 0, 47, 0,238, 0, 53, 0, 60, 1, 55, 0, 12, 1, - 56, 0, 61, 1, 30, 0,150, 0, 58, 0, 62, 1, 60, 0, 63, 1, 0, 0, 64, 1, 0, 0,181, 0, 62, 0, 8, 0, 7, 0, 65, 1, - 7, 0, 66, 1, 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 84, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 70, 1, 2, 0,175, 0, 2, 0, 71, 1, 7, 0,182, 0, - 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, 7, 0, 72, 1, 7, 0, 73, 1, 7, 0, 74, 1, 7, 0, 75, 1, 7, 0, 76, 1, - 7, 0, 77, 1, 7, 0, 78, 1, 7, 0, 79, 1, 7, 0, 80, 1, 7, 0, 81, 1, 7, 0, 82, 1, 64, 0, 83, 1, 2, 0,249, 0, - 2, 0, 70, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 7, 0, 87, 1, 7, 0, 88, 1, - 2, 0, 89, 1, 2, 0, 90, 1, 2, 0, 91, 1, 2, 0, 92, 1, 0, 0, 93, 1, 0, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, - 2, 0, 97, 1, 2, 0, 98, 1, 2, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 7, 0,102, 1, 7, 0,103, 1, 2, 0,104, 1, - 2, 0, 43, 0, 2, 0,105, 1, 2, 0,106, 1, 2, 0,107, 1, 2, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, - 7, 0,112, 1, 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 7, 0,119, 1, - 7, 0,120, 1, 2, 0,121, 1, 2, 0,122, 1, 4, 0,123, 1, 4, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 2, 0,127, 1, - 2, 0,128, 1, 7, 0,129, 1, 7, 0,130, 1, 7, 0,131, 1, 7, 0,132, 1, 2, 0,133, 1, 2, 0,134, 1, 36, 0, 80, 0, - 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, - 7, 0,138, 1, 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, - 7, 0,146, 1, 7, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 2, 0,150, 1, 2, 0,151, 1, 7, 0,152, 1, 7, 0,153, 1, - 7, 0,154, 1, 4, 0,155, 1, 67, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,156, 1, 2, 0, 19, 0, 7, 0,182, 0, - 7, 0,183, 0, 7, 0,184, 0, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, - 7, 0,163, 1, 7, 0,164, 1, 7, 0,165, 1, 7, 0,166, 1, 7, 0,167, 1, 7, 0,168, 1, 7, 0,169, 1, 7, 0,170, 1, - 7, 0,171, 1, 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 7, 0,175, 1, 7, 0,176, 1, 66, 0,177, 1, 7, 0,178, 1, - 7, 0,179, 1, 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 7, 0,183, 1, 7, 0,184, 1, 2, 0,185, 1, 2, 0,186, 1, - 2, 0,187, 1, 0, 0,188, 1, 0, 0,189, 1, 7, 0,190, 1, 7, 0,191, 1, 2, 0,192, 1, 2, 0,193, 1, 7, 0,194, 1, - 7, 0,195, 1, 7, 0,196, 1, 7, 0,197, 1, 2, 0,198, 1, 2, 0,199, 1, 4, 0, 70, 1, 4, 0,200, 1, 2, 0,201, 1, - 2, 0,202, 1, 2, 0,203, 1, 2, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, - 7, 0,210, 1, 7, 0,211, 1, 7, 0,212, 1, 7, 0,213, 1, 7, 0,214, 1, 0, 0,215, 1, 7, 0,216, 1, 7, 0,217, 1, - 7, 0,218, 1, 4, 0,219, 1, 0, 0,220, 1, 0, 0,105, 1, 0, 0,221, 1, 0, 0, 64, 1, 2, 0,222, 1, 2, 0,223, 1, - 2, 0,136, 1, 2, 0,224, 1, 2, 0,225, 1, 2, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 7, 0,230, 1, - 7, 0,231, 1, 2, 0,160, 0, 2, 0,161, 0, 55, 0,232, 1, 55, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 0, 0,236, 1, - 0, 0,237, 1, 2, 0,238, 1, 2, 0,239, 1, 7, 0,240, 1, 7, 0,241, 1, 51, 0,135, 1, 61, 0, 59, 1, 36, 0, 80, 0, - 68, 0,242, 1, 30, 0,150, 0, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 7, 0,246, 1, 7, 0,247, 1, 2, 0,248, 1, - 2, 0, 70, 0, 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, - 7, 0, 0, 2, 7, 0, 1, 2, 2, 0, 2, 2, 2, 0, 3, 2, 4, 0, 4, 2, 4, 0,122, 1, 12, 0, 5, 2, 69, 0, 4, 0, - 27, 0, 31, 0, 0, 0, 6, 2, 70, 0, 2, 0, 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 7, 2, - 4, 0, 8, 2, 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 4, 0, 12, 2, 4, 0, 13, 2, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 14, 2, 2, 0, 15, 2, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, - 7, 0, 19, 2, 7, 0, 20, 2, 7, 0, 21, 2, 7, 0, 22, 2, 7, 0, 23, 0, 7, 0, 23, 2, 7, 0, 24, 2, 73, 0, 20, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 25, 2, 12, 0, 26, 2, 12, 0, 27, 2, 36, 0, 80, 0, 67, 0, 28, 2, - 0, 0, 19, 0, 0, 0, 29, 2, 2, 0, 30, 2, 2, 0,174, 0, 2, 0, 37, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, - 7, 0, 31, 2, 7, 0, 32, 2, 7, 0, 33, 2, 71, 0, 34, 2, 35, 0, 11, 0, 7, 0, 35, 2, 7, 0, 36, 2, 7, 0, 37, 2, - 7, 0,251, 0, 2, 0, 55, 0, 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 0, 0, 42, 2, 0, 0, 43, 2, - 34, 0, 7, 0, 7, 0, 44, 2, 7, 0, 36, 2, 7, 0, 37, 2, 2, 0, 40, 2, 2, 0, 43, 2, 7, 0,251, 0, 7, 0, 37, 0, - 74, 0, 21, 0, 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, 2, 0, 45, 2, 2, 0, 43, 2, 2, 0, 19, 0, 2, 0, 46, 2, - 2, 0, 47, 2, 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 2, 0, 52, 2, 2, 0, 53, 2, 7, 0, 54, 2, - 7, 0, 55, 2, 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 56, 2, 2, 0, 57, 2, 4, 0, 58, 2, 75, 0, 5, 0, 2, 0, 59, 2, - 2, 0, 45, 2, 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, - 7, 0, 60, 2, 77, 0, 68, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 61, 2, 12, 0, 26, 2, 12, 0, 62, 2, - 32, 0, 63, 2, 32, 0, 64, 2, 32, 0, 65, 2, 36, 0, 80, 0, 78, 0, 66, 2, 38, 0, 67, 2, 67, 0, 28, 2, 12, 0, 68, 2, - 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 2, 0,174, 0, 2, 0, 43, 0, 2, 0, 69, 2, 2, 0, 70, 2, 2, 0, 71, 2, - 7, 0, 72, 2, 7, 0, 70, 0, 2, 0, 73, 2, 2, 0, 30, 2, 2, 0, 19, 0, 2, 0, 74, 2, 7, 0, 75, 2, 7, 0, 76, 2, - 7, 0, 77, 2, 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 78, 2, 2, 0, 79, 2, 4, 0, 80, 2, 34, 0, 81, 2, 2, 0, 23, 0, - 2, 0, 95, 0, 2, 0, 67, 0, 2, 0, 82, 2, 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, - 7, 0, 88, 2, 7, 0, 89, 2, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 92, 2, 0, 0, 93, 2, 79, 0, 94, 2, 80, 0, 95, 2, - 0, 0, 96, 2, 69, 0, 97, 2, 69, 0, 98, 2, 69, 0, 99, 2, 69, 0,100, 2, 4, 0,101, 2, 7, 0,102, 2, 4, 0,103, 2, - 4, 0,104, 2, 76, 0,105, 2, 4, 0,106, 2, 4, 0,107, 2, 75, 0,108, 2, 75, 0,109, 2, 81, 0, 40, 0, 27, 0, 31, 0, - 72, 0, 7, 2, 12, 0,110, 2, 36, 0, 80, 0, 38, 0, 67, 2, 67, 0, 28, 2, 82, 0,111, 2, 83, 0,112, 2, 84, 0,113, 2, - 85, 0,114, 2, 86, 0,115, 2, 87, 0,116, 2, 88, 0,117, 2, 89, 0,118, 2, 81, 0,119, 2, 90, 0,120, 2, 91, 0,121, 2, - 92, 0,122, 2, 92, 0,123, 2, 92, 0,124, 2, 4, 0, 54, 0, 4, 0,125, 2, 4, 0,126, 2, 4, 0,127, 2, 4, 0,128, 2, - 2, 0,174, 0, 2, 0,129, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,130, 2, 4, 0, 69, 2, 2, 0,131, 2, - 2, 0, 19, 0, 2, 0,132, 2, 2, 0,133, 2, 2, 0, 30, 2, 2, 0,134, 2, 93, 0,135, 2, 94, 0,136, 2, 84, 0, 8, 0, - 9, 0,137, 2, 7, 0,138, 2, 4, 0,139, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, - 82, 0, 7, 0, 4, 0,143, 2, 4, 0,144, 2, 4, 0,145, 2, 4, 0,146, 2, 2, 0, 45, 2, 0, 0,147, 2, 0, 0, 19, 0, - 86, 0, 5, 0, 4, 0,143, 2, 4, 0,144, 2, 0, 0,148, 2, 0, 0,149, 2, 2, 0, 19, 0, 95, 0, 2, 0, 4, 0,150, 2, - 7, 0, 37, 2, 87, 0, 3, 0, 95, 0,151, 2, 4, 0,152, 2, 4, 0, 19, 0, 85, 0, 6, 0, 7, 0,153, 2, 2, 0,154, 2, - 2, 0, 45, 2, 0, 0, 19, 0, 0, 0,149, 2, 0, 0, 71, 2, 88, 0, 4, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, - 0, 0,184, 0, 96, 0, 6, 0, 47, 0,137, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, - 97, 0, 1, 0, 7, 0,155, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 4, 0, 37, 0, - 89, 0, 1, 0, 7, 0,156, 2, 90, 0, 2, 0, 4, 0,157, 2, 4, 0, 17, 0, 83, 0, 7, 0, 7, 0,138, 2, 47, 0,137, 2, - 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 99, 0, 1, 0, 7, 0,158, 2,100, 0, 1, 0, - 4, 0,159, 2,101, 0, 1, 0, 0, 0,160, 2,102, 0, 1, 0, 7, 0,138, 2,103, 0, 3, 0, 4, 0,161, 2, 0, 0, 92, 0, - 7, 0,162, 2,105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0,106, 0, 1, 0,105, 0,139, 2, -107, 0, 5, 0, 4, 0,163, 2, 4, 0,164, 2, 0, 0, 19, 0, 0, 0, 45, 2, 0, 0, 71, 2,108, 0, 2, 0, 4, 0,165, 2, - 4, 0,164, 2,109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,166, 2,106, 0,167, 2,108, 0,168, 2, 4, 0, 54, 0, - 4, 0,126, 2, 4, 0,125, 2, 4, 0, 37, 0, 85, 0,169, 2, 93, 0, 14, 0, 12, 0,170, 2, 85, 0,169, 2, 0, 0,171, 2, - 0, 0,172, 2, 0, 0,173, 2, 0, 0,174, 2, 0, 0,175, 2, 0, 0,176, 2, 0, 0,177, 2, 0, 0, 19, 0, 92, 0,122, 2, - 92, 0,124, 2, 2, 0,178, 2, 0, 0,179, 2, 94, 0, 8, 0, 4, 0,180, 2, 4, 0,181, 2, 82, 0,182, 2, 86, 0,183, 2, - 4, 0,126, 2, 4, 0,125, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0,110, 0, 1, 0, 4, 0, 17, 0, - 4, 0, 70, 1, 0, 0, 20, 0, 46, 0,134, 0, 0, 0,184, 2,111, 0, 7, 0,110, 0,185, 2, 2, 0,186, 2, 2, 0,170, 2, - 2, 0,187, 2, 2, 0, 90, 0, 9, 0,188, 2, 9, 0,189, 2,112, 0, 3, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, -113, 0, 5, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,190, 2, 0, 0,191, 2,114, 0, 5, 0,110, 0,185, 2, - 7, 0, 88, 0, 7, 0,192, 2, 4, 0,193, 2, 4, 0,194, 2,115, 0, 5, 0,110, 0,185, 2, 32, 0,195, 2, 0, 0, 72, 0, - 4, 0, 70, 1, 4, 0, 19, 0,116, 0, 13, 0,110, 0,185, 2, 32, 0,196, 2, 32, 0,197, 2, 32, 0,198, 2, 32, 0,199, 2, - 7, 0,200, 2, 7, 0,201, 2, 7, 0,192, 2, 7, 0,202, 2, 4, 0,203, 2, 4, 0,204, 2, 4, 0, 90, 0, 4, 0,205, 2, -117, 0, 5, 0,110, 0,185, 2, 2, 0,206, 2, 2, 0, 19, 0, 7, 0,207, 2, 32, 0,208, 2,118, 0, 3, 0,110, 0,185, 2, - 7, 0,209, 2, 4, 0, 90, 0,119, 0, 10, 0,110, 0,185, 2, 7, 0,210, 2, 4, 0,211, 2, 4, 0, 37, 0, 2, 0, 90, 0, - 2, 0,212, 2, 2, 0,213, 2, 2, 0,214, 2, 7, 0,215, 2, 0, 0,216, 2,120, 0, 3, 0,110, 0,185, 2, 7, 0, 37, 0, - 4, 0, 17, 0,121, 0, 6, 0,110, 0,185, 2,122, 0,217, 2,123, 0,218, 2,124, 0,219, 2, 7, 0,220, 2, 4, 0, 17, 0, -125, 0, 11, 0,110, 0,185, 2, 52, 0,221, 2, 7, 0,222, 2, 4, 0,223, 2, 0, 0,216, 2, 7, 0,224, 2, 4, 0,225, 2, - 32, 0,226, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,185, 2, 32, 0,229, 2, 47, 0,230, 2, - 4, 0, 90, 0, 4, 0,231, 2, 7, 0,232, 2, 7, 0,233, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,127, 0, 3, 0, -110, 0,185, 2, 7, 0,234, 2, 4, 0,235, 2,128, 0, 5, 0,110, 0,185, 2, 7, 0,236, 2, 0, 0,216, 2, 2, 0, 19, 0, - 2, 0,237, 2,129, 0, 8, 0,110, 0,185, 2, 32, 0,164, 0, 7, 0,236, 2, 7, 0,251, 0, 7, 0,106, 0, 0, 0,216, 2, - 2, 0, 19, 0, 2, 0, 17, 0,130, 0, 21, 0,110, 0,185, 2, 32, 0,238, 2, 0, 0,216, 2, 52, 0,221, 2, 32, 0,226, 2, - 2, 0, 19, 0, 2, 0, 37, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, - 7, 0,244, 2, 7, 0,245, 2, 4, 0,225, 2, 4, 0,228, 2, 0, 0,227, 2, 7, 0,246, 2, 7, 0,247, 2, 7, 0, 43, 0, -131, 0, 7, 0,110, 0,185, 2, 2, 0,248, 2, 2, 0,249, 2, 4, 0, 70, 0, 32, 0,164, 0, 7, 0,250, 2, 0, 0,216, 2, -132, 0, 10, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0,251, 2, 7, 0,252, 2, 7, 0,253, 2, 7, 0,245, 2, 4, 0,254, 2, - 4, 0,255, 2, 7, 0, 0, 3, 0, 0, 20, 0,133, 0, 1, 0,110, 0,185, 2,134, 0, 7, 0,110, 0,185, 2, 46, 0,134, 0, -135, 0, 1, 3,136, 0, 2, 3,137, 0, 3, 3,138, 0, 4, 3, 12, 0, 5, 3,139, 0, 13, 0,110, 0,185, 2, 85, 0, 6, 3, - 85, 0, 7, 3, 85, 0, 8, 3, 85, 0, 9, 3, 85, 0, 10, 3, 85, 0, 11, 3, 82, 0, 12, 3, 4, 0, 13, 3, 4, 0, 14, 3, - 7, 0,220, 2, 7, 0, 37, 0,140, 0, 15, 3,141, 0, 7, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 16, 3,142, 0, 17, 3, -143, 0, 15, 3, 4, 0, 18, 3, 4, 0, 13, 3,144, 0, 4, 0,110, 0,185, 2, 32, 0,164, 0, 4, 0, 19, 3, 4, 0, 37, 0, -145, 0, 2, 0, 4, 0, 20, 3, 7, 0, 37, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 21, 3,147, 0, 20, 0,110, 0,185, 2, - 32, 0,164, 0, 0, 0,216, 2, 2, 0, 22, 3, 2, 0, 23, 3, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0, 24, 3, 7, 0, 25, 3, - 4, 0, 54, 0, 4, 0, 26, 3,146, 0, 27, 3,145, 0, 28, 3, 4, 0, 29, 3, 4, 0, 30, 3, 4, 0, 31, 3, 4, 0, 21, 3, - 7, 0, 32, 3, 7, 0, 33, 3, 7, 0, 34, 3,148, 0, 8, 0,110, 0,185, 2, 59, 0,255, 0,142, 0, 17, 3, 4, 0, 35, 3, - 4, 0, 36, 3, 4, 0, 37, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,185, 2, 32, 0, 45, 0, 2, 0, 38, 3, - 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 57, 0, 7, 0, 39, 3, 7, 0, 40, 3,150, 0, 5, 0,110, 0,185, 2, 4, 0, 41, 3, - 2, 0, 19, 0, 2, 0, 42, 3, 7, 0, 43, 3,151, 0, 7, 0,110, 0,185, 2, 85, 0, 44, 3, 4, 0, 45, 3, 0, 0, 46, 3, - 0, 0, 47, 3, 0, 0, 48, 3, 0, 0, 49, 3,152, 0, 3, 0,110, 0,185, 2,153, 0, 50, 3,138, 0, 4, 3,154, 0, 10, 0, -110, 0,185, 2, 32, 0, 51, 3, 32, 0, 52, 3, 0, 0, 53, 3, 7, 0, 54, 3, 2, 0, 55, 3, 2, 0, 56, 3, 0, 0, 57, 3, - 0, 0, 58, 3, 0, 0,191, 2,155, 0, 9, 0,110, 0,185, 2, 32, 0, 59, 3, 0, 0, 53, 3, 7, 0, 60, 3, 7, 0, 61, 3, - 0, 0, 70, 1, 0, 0,206, 2, 0, 0, 62, 3, 0, 0, 37, 0,156, 0, 1, 0,110, 0,185, 2,157, 0, 27, 0, 27, 0, 31, 0, - 2, 0, 46, 2, 2, 0, 47, 2, 2, 0, 63, 3, 2, 0, 19, 0, 2, 0, 64, 3, 2, 0, 65, 3, 2, 0, 66, 3, 2, 0, 70, 0, - 0, 0, 67, 3, 0, 0, 68, 3, 0, 0, 69, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, - 7, 0, 73, 3, 7, 0, 74, 3, 7, 0, 75, 3, 34, 0, 76, 3, 36, 0, 80, 0, 38, 0, 67, 2, 87, 0,116, 2, 7, 0, 77, 3, - 7, 0, 78, 3,157, 0, 79, 3,158, 0, 3, 0,158, 0, 0, 0,158, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 80, 3, - 4, 0, 19, 0, 4, 0, 37, 0, 32, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0,159, 0, 81, 3, 2, 0, 17, 0, 2, 0, 82, 3, - 4, 0, 83, 3, 4, 0, 84, 3, 4, 0, 85, 3, 0, 0, 86, 3, 32, 0, 38, 0, 32, 0, 87, 3, 32, 0, 88, 3, 32, 0, 89, 3, - 32, 0, 90, 3, 36, 0, 80, 0, 78, 0, 66, 2, 72, 0, 7, 2,160, 0, 91, 3,160, 0, 92, 3,161, 0, 93, 3, 9, 0, 2, 0, -162, 0, 94, 3, 12, 0, 95, 3, 12, 0,110, 2, 12, 0, 26, 2, 12, 0, 96, 3, 12, 0, 97, 3, 4, 0, 70, 1, 4, 0, 98, 3, - 67, 0, 28, 2, 0, 0, 99, 3, 4, 0, 30, 2, 4, 0,100, 3, 7, 0, 65, 1, 7, 0,101, 3, 7, 0,102, 3, 7, 0,172, 0, - 7, 0,103, 3, 7, 0, 66, 1, 7, 0,104, 3, 7, 0, 16, 2, 7, 0,105, 3, 7, 0,106, 3, 7, 0,107, 3, 7, 0,108, 3, - 7, 0,109, 3, 7, 0,110, 3, 7, 0,252, 2, 7, 0,111, 3, 7, 0,240, 0, 4, 0,112, 3, 2, 0, 19, 0, 2, 0,113, 3, - 2, 0,114, 3, 2, 0,115, 3, 2, 0,116, 3, 2, 0,117, 3, 2, 0,118, 3, 2, 0,119, 3, 2, 0,120, 3, 2, 0,121, 3, - 2, 0,122, 3, 2, 0,123, 3, 4, 0,124, 3, 4, 0,125, 3, 4, 0,126, 3, 4, 0,127, 3, 7, 0,128, 3, 7, 0,102, 2, - 7, 0,129, 3, 7, 0,130, 3, 7, 0,131, 3, 7, 0,132, 3, 7, 0,133, 3, 7, 0,215, 0, 7, 0,134, 3, 7, 0,135, 3, - 7, 0,136, 3, 7, 0,137, 3, 2, 0,138, 3, 0, 0,139, 3, 0, 0,140, 3, 0, 0,141, 3, 0, 0,142, 3, 7, 0,143, 3, - 7, 0,144, 3, 12, 0,145, 3, 12, 0,146, 3, 12, 0,147, 3, 12, 0,148, 3, 7, 0,149, 3, 2, 0,157, 2, 2, 0,150, 3, - 7, 0,139, 2, 4, 0,151, 3, 4, 0,152, 3,163, 0,153, 3, 2, 0,154, 3, 2, 0,247, 0, 7, 0,155, 3, 12, 0,156, 3, - 12, 0,157, 3, 12, 0,158, 3, 12, 0,159, 3,164, 0, 62, 1,165, 0,160, 3, 68, 0,161, 3, 2, 0,162, 3, 2, 0,163, 3, - 2, 0,164, 3, 2, 0,165, 3, 7, 0,131, 2, 2, 0,166, 3, 2, 0,167, 3,153, 0,168, 3,142, 0,169, 3,142, 0,170, 3, - 4, 0,171, 3, 4, 0,172, 3, 4, 0,173, 3, 4, 0, 70, 0, 12, 0,174, 3, 12, 0,175, 3, 12, 0,176, 3,166, 0, 14, 0, -166, 0, 0, 0,166, 0, 1, 0, 32, 0, 38, 0, 7, 0,252, 2, 7, 0, 67, 1, 7, 0,253, 2, 7, 0,245, 2, 0, 0, 20, 0, - 4, 0,254, 2, 4, 0,255, 2, 4, 0,177, 3, 2, 0, 17, 0, 2, 0,178, 3, 7, 0, 0, 3,167, 0, 12, 0,167, 0, 0, 0, -167, 0, 1, 0, 32, 0, 45, 0, 4, 0,179, 3, 4, 0,157, 2, 4, 0,180, 3, 4, 0, 17, 0, 4, 0,181, 3, 7, 0, 67, 1, - 7, 0,182, 3, 7, 0,183, 3, 7, 0,155, 2,164, 0, 40, 0, 4, 0, 19, 0, 2, 0,184, 3, 2, 0,185, 3, 2, 0,245, 2, - 2, 0,186, 3, 2, 0,187, 3, 2, 0,188, 3, 2, 0,189, 3, 2, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, - 7, 0,194, 3, 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, 7, 0,198, 3, 7, 0,199, 3, 7, 0,200, 3, 7, 0,201, 3, - 7, 0,202, 3, 7, 0,203, 3, 7, 0,204, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 37, 0, 7, 0,207, 3, 7, 0,208, 3, - 7, 0,209, 3, 7, 0,210, 3, 7, 0,211, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0,214, 3, 7, 0,215, 3, 7, 0,216, 3, - 52, 0,165, 0,168, 0,217, 3, 7, 0,218, 3, 4, 0,194, 2,169, 0, 5, 0, 68, 0,242, 1, 7, 0,219, 3, 7, 0,220, 3, - 2, 0, 19, 0, 2, 0,221, 3,170, 0, 9, 0,170, 0, 0, 0,170, 0, 1, 0, 4, 0,222, 3, 4, 0,223, 3, 4, 0,224, 3, - 4, 0, 19, 0, 4, 0,225, 3, 9, 0,226, 3, 9, 0,227, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, - 4, 0,228, 3, 4, 0,229, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,232, 3, 4, 0,233, 3, 4, 0,223, 3, 4, 0,157, 2, - 4, 0, 57, 0, 0, 0,234, 3, 0, 0,235, 3, 0, 0,236, 3, 0, 0,237, 3, 12, 0,238, 3,171, 0,239, 3, 9, 0,240, 3, -172, 0, 1, 0, 7, 0, 44, 2,163, 0, 30, 0, 4, 0, 19, 0, 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 4, 0,244, 3, - 4, 0,245, 3, 4, 0,246, 3, 4, 0,247, 3, 7, 0,248, 3, 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, - 7, 0,253, 3, 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, 7, 0, 1, 4, 7, 0, 2, 4, 7, 0, 3, 4, 7, 0, 4, 4, - 7, 0, 5, 4, 7, 0, 6, 4, 7, 0, 7, 4, 7, 0, 8, 4, 7, 0, 9, 4, 4, 0, 10, 4, 4, 0, 11, 4, 7, 0, 12, 4, - 7, 0,134, 3,165, 0, 50, 0, 4, 0,223, 3, 4, 0, 13, 4,173, 0, 14, 4,174, 0, 15, 4, 0, 0, 37, 0, 0, 0, 16, 4, - 2, 0, 17, 4, 7, 0, 18, 4, 0, 0, 19, 4, 7, 0, 20, 4, 7, 0, 21, 4, 7, 0, 22, 4, 7, 0, 23, 4, 7, 0, 24, 4, - 7, 0, 25, 4, 7, 0, 26, 4, 7, 0, 27, 4, 7, 0, 28, 4, 2, 0, 29, 4, 0, 0, 30, 4, 2, 0, 31, 4, 7, 0, 32, 4, - 7, 0, 33, 4, 0, 0, 34, 4, 4, 0,126, 0, 4, 0, 35, 4, 4, 0, 36, 4, 2, 0, 37, 4, 2, 0, 38, 4,172, 0, 39, 4, - 4, 0, 40, 4, 4, 0, 82, 0, 7, 0, 41, 4, 7, 0, 42, 4, 7, 0, 43, 4, 7, 0, 44, 4, 2, 0, 45, 4, 2, 0, 46, 4, - 2, 0, 47, 4, 2, 0, 48, 4, 2, 0, 49, 4, 2, 0, 50, 4, 2, 0, 51, 4, 2, 0, 52, 4,175, 0, 53, 4, 7, 0, 54, 4, - 7, 0, 55, 4,138, 0, 56, 4, 12, 0, 5, 3,169, 0, 57, 4,153, 0, 49, 0,152, 0, 58, 4, 2, 0, 17, 0, 2, 0, 59, 4, - 2, 0, 60, 4, 2, 0, 61, 4, 7, 0, 62, 4, 2, 0, 63, 4, 2, 0, 64, 4, 7, 0, 65, 4, 2, 0, 66, 4, 2, 0, 67, 4, - 7, 0, 68, 4, 7, 0, 69, 4, 7, 0, 70, 4, 7, 0, 71, 4, 7, 0, 72, 4, 7, 0, 73, 4, 4, 0, 74, 4, 7, 0, 75, 4, - 7, 0, 76, 4, 7, 0, 77, 4, 81, 0, 78, 4, 81, 0, 79, 4, 81, 0, 80, 4, 0, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, - 36, 0, 80, 0, 2, 0, 84, 4, 0, 0, 85, 4, 0, 0, 86, 4, 7, 0, 87, 4, 4, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, - 4, 0, 91, 4, 4, 0, 19, 0, 7, 0, 92, 4, 7, 0, 93, 4, 7, 0, 94, 4, 85, 0, 95, 4, 7, 0, 96, 4, 7, 0, 97, 4, - 7, 0, 98, 4, 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 4, 0,103, 4,176, 0, 73, 0, 27, 0, 31, 0, - 39, 0, 75, 0, 2, 0,175, 0, 2, 0, 71, 1, 2, 0,105, 1, 2, 0,104, 4, 7, 0,105, 4, 7, 0,106, 4, 7, 0,107, 4, - 7, 0,108, 4, 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,163, 1, 7, 0,165, 1, 7, 0,164, 1, - 7, 0,113, 4, 4, 0,114, 4, 7, 0,115, 4, 7, 0,116, 4, 7, 0,117, 4, 7, 0,118, 4, 7, 0,119, 4, 7, 0,120, 4, - 7, 0,121, 4, 2, 0,122, 4, 2, 0, 70, 1, 2, 0,123, 4, 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, - 2, 0,128, 4, 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, 7, 0,132, 4, 7, 0,133, 4, 7, 0,134, 4, 7, 0,135, 4, - 7, 0,136, 4, 7, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, 7, 0,140, 4, 2, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, - 2, 0,144, 4, 7, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, 7, 0,148, 4, 2, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, - 2, 0,152, 4, 7, 0,153, 4, 7, 0,154, 4, 7, 0,155, 4, 7, 0,156, 4, 2, 0,157, 4, 2, 0,158, 4, 2, 0,159, 4, - 2, 0, 19, 0, 7, 0,160, 4, 7, 0,161, 4, 36, 0, 80, 0, 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, -177, 0, 8, 0,177, 0, 0, 0,177, 0, 1, 0, 4, 0,112, 3, 4, 0,162, 4, 4, 0, 19, 0, 2, 0,163, 4, 2, 0,164, 4, - 32, 0,164, 0,178, 0, 13, 0, 9, 0,165, 4, 9, 0,166, 4, 4, 0,167, 4, 4, 0,168, 4, 4, 0,169, 4, 4, 0,170, 4, - 4, 0,171, 4, 4, 0,172, 4, 4, 0,173, 4, 4, 0,174, 4, 4, 0,175, 4, 4, 0, 37, 0, 0, 0,176, 4,179, 0, 5, 0, - 9, 0,177, 4, 9, 0,178, 4, 4, 0,179, 4, 4, 0, 70, 0, 0, 0,180, 4,180, 0, 15, 0, 4, 0, 17, 0, 4, 0,181, 4, - 4, 0,182, 4, 4, 0,183, 4, 4, 0,184, 4, 4, 0,185, 4, 7, 0,186, 4, 4, 0,187, 4, 4, 0, 90, 0, 4, 0,188, 4, - 4, 0,189, 4, 4, 0,190, 4, 4, 0,191, 4, 4, 0,192, 4, 26, 0, 30, 0,181, 0, 7, 0, 4, 0,193, 4, 7, 0,194, 4, - 7, 0,195, 4, 7, 0,196, 4, 4, 0,197, 4, 2, 0, 19, 0, 2, 0, 37, 0,182, 0, 11, 0,182, 0, 0, 0,182, 0, 1, 0, - 0, 0, 20, 0, 67, 0,198, 4, 68, 0,199, 4, 4, 0,112, 3, 4, 0,200, 4, 4, 0,201, 4, 4, 0, 37, 0, 4, 0,202, 4, - 4, 0,203, 4,183, 0,134, 0,178, 0,204, 4,179, 0,205, 4,180, 0,206, 4, 4, 0, 18, 3, 4, 0,126, 0, 4, 0, 35, 4, - 4, 0,207, 4, 4, 0,208, 4, 4, 0,209, 4, 4, 0,210, 4, 2, 0, 19, 0, 2, 0,211, 4, 7, 0,102, 2, 7, 0,212, 4, - 7, 0,213, 4, 7, 0,214, 4, 7, 0,215, 4, 7, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, 2, 0,220, 4, - 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0, 92, 1, 2, 0,106, 0, - 2, 0,226, 4, 2, 0,227, 4, 2, 0,228, 4, 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 2, 0,232, 4, 2, 0,233, 4, - 2, 0,234, 4, 2, 0, 93, 1, 2, 0,235, 4, 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 4, 0,239, 4, 4, 0, 70, 1, - 4, 0,240, 4, 2, 0,241, 4, 2, 0,242, 4, 2, 0,243, 4, 2, 0,122, 1, 2, 0,244, 4, 2, 0,245, 4, 2, 0,246, 4, - 2, 0,247, 4, 24, 0,248, 4, 24, 0,249, 4, 23, 0,250, 4, 12, 0,251, 4, 2, 0,252, 4, 2, 0, 37, 0, 7, 0,253, 4, - 7, 0,254, 4, 7, 0,255, 4, 7, 0, 0, 5, 4, 0, 1, 5, 7, 0, 2, 5, 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, - 2, 0, 6, 5, 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, 2, 0, 11, 5, 7, 0, 12, 5, 7, 0, 13, 5, - 7, 0, 14, 5, 2, 0, 15, 5, 2, 0, 16, 5, 2, 0, 17, 5, 2, 0, 18, 5, 2, 0, 19, 5, 2, 0, 20, 5, 2, 0, 21, 5, - 2, 0, 22, 5, 2, 0, 23, 5, 2, 0, 24, 5, 4, 0, 25, 5, 4, 0, 26, 5, 4, 0, 27, 5, 4, 0, 28, 5, 4, 0, 29, 5, - 7, 0, 30, 5, 4, 0, 31, 5, 4, 0, 32, 5, 4, 0, 33, 5, 4, 0, 34, 5, 7, 0, 35, 5, 7, 0, 36, 5, 7, 0, 37, 5, - 7, 0, 38, 5, 7, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, 7, 0, 42, 5, 7, 0, 43, 5, 0, 0, 44, 5, 0, 0, 45, 5, - 4, 0, 46, 5, 2, 0, 47, 5, 2, 0,239, 1, 0, 0, 48, 5, 7, 0, 49, 5, 7, 0, 50, 5, 4, 0, 51, 5, 4, 0, 52, 5, - 7, 0, 53, 5, 7, 0, 54, 5, 2, 0, 55, 5, 2, 0, 56, 5, 7, 0, 57, 5, 2, 0, 58, 5, 2, 0, 59, 5, 4, 0, 60, 5, - 2, 0, 61, 5, 2, 0, 62, 5, 2, 0, 63, 5, 2, 0, 64, 5, 7, 0, 65, 5, 7, 0, 70, 0, 42, 0, 66, 5, 0, 0, 67, 5, -184, 0, 9, 0,184, 0, 0, 0,184, 0, 1, 0, 0, 0, 20, 0, 2, 0, 68, 5, 2, 0, 69, 5, 2, 0, 70, 5, 2, 0, 43, 0, - 7, 0, 71, 5, 7, 0, 70, 0,185, 0, 7, 0, 2, 0,211, 2, 2, 0, 70, 1, 2, 0,109, 0, 2, 0, 72, 5, 7, 0, 73, 5, - 7, 0, 70, 0, 42, 0, 74, 5,186, 0, 5, 0, 7, 0, 75, 5, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 70, 0, 0, 0,239, 1, -187, 0, 26, 0, 7, 0,120, 4, 7, 0,121, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 76, 5, 2, 0,137, 1, 2, 0,123, 4, - 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4,186, 0, 77, 5, 2, 0,217, 4, 2, 0,218, 4, - 2, 0,219, 4, 2, 0,220, 4, 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4,185, 0, 78, 5, 2, 0, 79, 5, - 2, 0,224, 4, 2, 0,227, 4, 2, 0,228, 4,188, 0, 5, 0,188, 0, 0, 0,188, 0, 1, 0, 4, 0,222, 3, 0, 0,234, 3, - 4, 0, 19, 0,189, 0, 6, 0,190, 0, 80, 5, 4, 0, 81, 5, 4, 0, 82, 5, 9, 0, 83, 5, 0, 0, 84, 5, 4, 0, 37, 0, -191, 0, 6, 0,189, 0, 85, 5, 2, 0, 19, 0, 2, 0, 86, 5, 2, 0, 87, 5, 2, 0, 88, 5, 9, 0, 89, 5,192, 0, 4, 0, - 2, 0,106, 0, 2, 0,222, 2, 2, 0,228, 3, 2, 0, 90, 5,193, 0, 14, 0, 2, 0, 19, 0, 2, 0, 91, 5, 2, 0, 92, 5, - 2, 0, 93, 5,192, 0, 94, 5, 9, 0, 89, 5, 7, 0, 95, 5, 7, 0, 57, 0, 4, 0, 96, 5, 4, 0, 97, 5, 4, 0, 98, 5, - 4, 0, 99, 5, 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5, -195, 0, 6, 0,189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0, -189, 0, 85, 5, 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, - 9, 0, 89, 5,197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, - 7, 0,114, 5, 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, - 2, 0, 96, 5, 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, - 2, 0,128, 5, 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5, -193, 0,136, 5, 7, 0,137, 5, 7, 0,138, 5, 7, 0,139, 5, 2, 0,140, 5, 2, 0,141, 5, 0, 0,142, 5, 0, 0,143, 5, - 0, 0,144, 5, 0, 0,145, 5, 0, 0,146, 5, 0, 0,147, 5, 2, 0,148, 5, 7, 0,149, 5, 7, 0,150, 5, 7, 0,151, 5, - 7, 0,152, 5, 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, - 0, 0,160, 5, 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, - 0, 0,168, 5, 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, - 2, 0,176, 5, 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, - 4, 0,183, 5, 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, - 7, 0,186, 5, 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, - 47, 0,238, 0, 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, - 4, 0,112, 3, 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0, -181, 0,200, 5, 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, - 2, 0,206, 5, 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3, -200, 0,212, 5,204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5, -205, 0, 35, 0, 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, - 7, 0,221, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, - 2, 0,227, 5, 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, - 72, 0,234, 5,162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, - 7, 0,241, 5, 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, - 2, 0,232, 5, 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, - 2, 0,253, 5, 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, - 7, 0,112, 0, 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, - 2, 0, 6, 6, 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, - 2, 0, 13, 6, 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, - 0, 0, 20, 6, 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, - 23, 0, 24, 6, 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, - 2, 0, 32, 6, 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, - 2, 0,255, 5, 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, - 2, 0, 47, 6, 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, - 2, 0, 52, 6, 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, - 27, 0, 56, 6,219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, -213, 0, 44, 6, 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, - 7, 0, 60, 6,162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, - 2, 0, 19, 0, 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, - 2, 0, 71, 6, 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 4, 0, 37, 0,220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, - 2, 0, 81, 6, 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, - 4, 0, 88, 6, 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, - 2, 0,133, 0, 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, - 2, 0,239, 1, 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, - 7, 0,122, 1, 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6, -230, 0, 27, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, - 4, 0,104, 6, 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, - 4, 0,110, 6, 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, - 4, 0,118, 6, 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, - 9, 0,124, 6, 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0, -212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, - 4, 0, 43, 0, 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, -213, 0, 44, 6, 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, - 9, 0,135, 6, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, - 2, 0,140, 6, 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, - 0, 0, 62, 6, 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, - 4, 0,141, 6, 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, - 7, 0,134, 6, 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, - 2, 0,150, 6, 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, - 57, 0,157, 6,237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, - 4, 0, 17, 0,238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, - 4, 0, 17, 0, 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0, -212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, - 0, 0,164, 6, 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, - 2, 0,169, 6, 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, - 7, 0,175, 6, 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6, -241, 0,179, 6,241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, - 2, 0,187, 6, 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, - 0, 0,194, 6, 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0, -244, 0, 8, 0, 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, - 7, 0, 37, 0,245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6, -243, 0,213, 6,243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6, -243, 0,221, 6,244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, - 0, 0,227, 6, 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, - 0, 0,235, 6, 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, - 0, 0,243, 6, 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, - 0, 0,251, 6, 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, - 0, 0, 3, 7, 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, - 0, 0, 11, 7, 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, - 0, 0, 19, 7, 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, - 0, 0, 27, 7, 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, - 0, 0, 35, 7, 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, - 2, 0, 37, 0,248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7, -246, 0, 41, 7,246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7, -246, 0, 49, 7,246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, - 4, 0, 57, 7, 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2, -250, 0, 73, 0, 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, - 0, 0, 65, 7, 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, - 4, 0, 72, 7, 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, - 4, 0, 80, 7, 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, - 12, 0, 87, 7, 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, - 2, 0, 95, 7, 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, - 2, 0,103, 7, 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, - 2, 0,111, 7, 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, - 2, 0,119, 7, 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, - 2, 0,141, 5, 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, - 46, 0,134, 0, 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, - 2, 0,137, 7, 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7, -251, 0, 5, 0,251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0, -252, 0, 1, 0,251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0, -253, 0, 1, 0,254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, - 2, 0,153, 7, 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, - 4, 0,159, 7,253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, - 0, 1, 22, 0, 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, - 23, 0, 52, 0, 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, - 2, 0,159, 6, 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, - 2, 1, 0, 0, 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, - 2, 0,178, 7, 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, - 12, 0,180, 7, 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, - 2, 0,186, 7, 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, - 4, 0,192, 7, 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, - 6, 1,197, 7, 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, - 4, 0,109, 6, 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, - 7, 0,206, 7, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, - 49, 0,137, 0, 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, - 4, 0, 23, 0, 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, - 4, 0,214, 7, 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, - 57, 0,221, 7, 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, - 9, 0,228, 0, 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, - 13, 1, 0, 0, 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, - 4, 0, 88, 0, 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, - 4, 0,230, 7, 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, - 49, 0,137, 0, 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, - 14, 1,240, 7, 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, - 4, 0,248, 7, 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7, -201, 0, 6, 0, 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, - 7, 0, 2, 8, 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, - 7, 0, 8, 8, 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, - 7, 0, 15, 8, 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, - 20, 1, 2, 0, 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, - 4, 0, 24, 8, 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, - 23, 1, 8, 0, 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, - 7, 0,126, 0, 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, - 2, 0, 29, 4, 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, - 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, - 7, 0, 35, 8, 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, - 2, 0, 42, 8, 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, - 2, 0, 26, 2, 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, - 26, 1, 0, 0, 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, - 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2, -227, 0, 5, 0, 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, - 4, 0, 55, 8,227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, - 4, 0, 22, 0, 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, - 29, 1, 4, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, - 7, 0, 77, 1, 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, - 0, 0, 64, 8, 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, - 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, - 35, 1, 6, 0, 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, - 0, 0, 20, 0, 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, - 4, 0, 67, 8, 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, - 4, 0, 73, 8, 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, - 0, 0, 77, 8, 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, - 2, 0, 80, 8, 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, - 32, 0, 45, 0, 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, - 0, 0, 85, 8, 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, - 4, 0, 91, 8, 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, - 42, 1, 18, 0, 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, - 2, 0, 79, 8, 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, - 2, 0, 15, 0, 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0, -160, 0,100, 8, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, - 2, 0,103, 8, 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, - 4, 0, 89, 0, 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, - 2, 0,112, 8, 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, - 0, 0, 20, 0, 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, - 2, 0, 19, 0, 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, - 0, 0, 65, 8, 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, - 7, 0,120, 8, 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, - 55, 1, 10, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, - 2, 0, 64, 0, 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, - 7, 0,236, 2, 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, - 2, 0,244, 2, 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, - 0, 0,134, 8, 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, - 2, 0, 64, 0, 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, - 7, 0,138, 8, 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, - 2, 0, 43, 0, 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, - 0, 0,143, 8, 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, - 4, 0,145, 8, 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, - 65, 1, 2, 0, 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, - 32, 0, 51, 3, 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 79, 8, 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, - 7, 0,150, 8, 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, - 15, 1, 12, 0, 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, - 4, 0,156, 8, 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, - 7, 0,161, 8, 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, - 0, 0,222, 0, 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, - 7, 0,159, 8, 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, - 2, 0,107, 8, 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, - 69, 1, 1, 0, 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, - 4, 0,131, 0, 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, - 7, 0,176, 8, 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, - 7, 0, 77, 1, 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, - 7, 0,188, 8, 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, - 12, 0,190, 8, 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, - 2, 0,193, 8, 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, - 4, 0,201, 8, 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, - 4, 0,192, 2, 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, - 4, 0,201, 8, 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, - 0, 0, 20, 0, 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, - 4, 0,200, 8, 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, - 9, 0,217, 8, 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, - 2, 0, 37, 0, 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, - 7, 0,225, 8, 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, - 2, 0, 19, 0, 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, - 9, 0,237, 8, 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, - 2, 0,240, 8, 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, - 7, 0,247, 8, 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3, -247, 0,250, 8,160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, - 4, 0,253, 8,217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, - 0, 0, 70, 1, 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, - 80, 1, 8, 0, 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, - 4, 0, 4, 9, 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, - 82, 1, 0, 0, 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, - 7, 0, 8, 9, 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, - 83, 1, 1, 0, 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, - 84, 1, 7, 0, 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, - 85, 1, 15, 0, 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, - 0, 0, 22, 9, 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, - 86, 1, 6, 0, 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, - 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, - 0, 0,251, 2, 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, - 2, 0, 43, 0, 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, - 0, 0,251, 2, 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, - 7, 0,127, 8, 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, - 0, 0,251, 2, 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, - 32, 0, 12, 9, 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, - 32, 0,213, 8, 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, - 7, 0, 43, 9, 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, - 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, - 0, 0,251, 2, 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, - 7, 0, 51, 9, 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, - 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, - 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, - 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, - 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, - 32, 0, 51, 3, 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, - 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0, -105, 1, 22, 0,105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0, -160, 0,100, 8, 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, - 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, - 7, 0, 44, 2, 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9, -107, 1, 18, 0,107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 76, 9, 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, - 4, 0, 83, 9,107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, - 0, 0, 87, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, - 2, 0,199, 7, 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, - 7, 0, 91, 9, 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, - 24, 0, 99, 9, 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0, -108, 1, 1, 0,109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, - 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, - 4, 0,112, 9, 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, - 4, 0,120, 9, 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, - 0, 0,124, 9, 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, - 2, 0,127, 9, 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, - 2, 0,131, 9, 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, - 7, 0,109, 0, 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, - 7, 0,140, 9, 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, - 0, 0, 6, 2, 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, - 7, 0,143, 9, 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, - 2, 0,149, 9, 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, - 0, 0,166, 0, 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, - 0, 0,156, 9, 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, - 9, 0,161, 9, 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, - 0, 0,106, 0, 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, - 7, 0,125, 0, 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, - 2, 0,170, 9, 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, - 7, 0, 6, 0, 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, - 7, 0,175, 9, 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, - 4, 0, 64, 0, 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9, -132, 1, 4, 0, 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, - 64, 0,178, 9, 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, - 7, 0,192, 9, 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, - 4, 0, 17, 0, 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, - 0, 0, 20, 0, 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, - 9, 0,203, 9,134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, - 7, 0,153, 2, 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, - 7, 0,186, 5, 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, - 7, 0,213, 9, 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, - 2, 0, 19, 0, 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, - 2, 0,205, 2, 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8, -136, 1,218, 9, 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, - 7, 0,214, 9, 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, - 39, 0, 75, 0,143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, - 2, 0,138, 3, 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, - 2, 0,223, 4, 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, - 2, 0, 45, 8, 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, - 2, 0,243, 9, 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, - 7, 0,251, 9, 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, - 7, 0,255, 9, 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, - 7, 0, 2, 10, 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, - 7, 0, 9, 10, 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, - 7, 0, 15, 10, 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, - 7, 0, 23, 10, 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, - 7, 0, 27, 10, 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, - 7, 0, 35, 10, 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, - 32, 0, 42, 10, 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0, -142, 1, 45, 10,141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, - 12, 0, 50, 10,134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, - 0, 0, 20, 0, 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, - 4, 0, 57, 10, 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, - 2, 0, 64, 10, 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10, -146, 1, 70, 10, 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, - 7, 0, 74, 10, 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, - 7, 0, 79, 10, 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, - 7, 0, 24, 4, 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, - 2, 0, 90, 10, 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, - 7, 0, 95, 10, 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, - 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, - 4, 0,253, 0, 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, - 4, 0, 19, 0,151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, - 2, 0,105, 10, 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, - 2, 0,108, 10, 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, - 0, 0,110, 10, 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0, -154, 1, 18, 0, 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, - 12, 0,120, 10, 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, - 4, 0, 70, 0, 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, - 4, 0, 37, 0,215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, - 2, 0,135, 10, 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10, -158, 1,140, 10,159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, - 12, 0,146, 10, 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, - 2, 0, 17, 0, 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, - 2, 0,155, 10, 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, - 2, 0,158, 10, 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0, -156, 1, 1, 0, 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0, -223, 0, 1, 0, 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10, -223, 0,167, 10, 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, - 2, 0, 5, 0, 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, - 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, - 2, 0,175, 10, 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, - 0, 0,234, 3, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, - 4, 0, 70, 1, 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, - 4, 0, 19, 0,167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0, -167, 1, 2, 0, 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, - 2, 0,188, 10, 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, - 4, 0, 37, 0,172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10, -173, 1, 9, 0,173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, - 4, 0, 37, 0, 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, - 4, 0, 19, 0,175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, - 78, 1, 3, 9,174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, - 2, 0, 16, 1, 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10, -178, 1, 4, 0,178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, - 12, 0,204, 10,160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, - 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, - 2, 0,208, 10, 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0, -180, 1, 1, 0, 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, - 27, 0,133, 6, 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10, -182, 1, 7, 0,182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10, -183, 1, 5, 0,183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3, -160, 0,216, 10,178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, - 2, 0,221, 10, 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0, -185, 1, 1, 0, 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, - 7, 0,226, 10, 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0, -185, 1,224, 10, 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10, -189, 1, 5, 0,185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, - 7, 0,169, 8, 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0, -191, 1, 0, 0,191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, - 4, 0,238, 10, 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, - 4, 0,240, 10, 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, - 7, 0,244, 10, 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, - 7, 0,251, 10, 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11, -192, 1, 2, 11, 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, - 7, 0, 8, 11, 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, - 7, 0, 14, 11, 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, - 2, 0, 20, 11, 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11, -169, 0, 57, 4,123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, - 2, 0, 29, 11, 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3, -142, 0, 17, 3, 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, - 2, 0, 17, 0, 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,100,228, 0, 0, 48,230,193, 2, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, + 97, 0, 42,102,105,114,115,116, 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, + 0,121,109,105,110, 0,121,109, 97,120, 0, 42,112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97, +108, 50, 0,116,121,112,101, 0,115,117, 98,116,121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97, +118,101,100, 0,100, 97,116, 97, 0,108,101,110, 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, + 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117,115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101, +115, 0,105,100, 0, 42,105,100, 98,108,111, 99,107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, + 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0, +119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42, +114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97, +109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0, +118, 97,114,116,121,112,101, 0,116,111,116,118,101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105, +116,109, 97,115,107, 0,115,108,105,100,101, 95,109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, + 0, 42,100,114,105,118,101,114, 0, 99,117,114,118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105, +112,111, 0,112,111,115, 0,114,101,108, 97,116,105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101, +105,103,104,116,115, 0,118,103,114,111,117,112, 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101, +114,109, 97,120, 0, 42, 97,100,116, 0, 42,114,101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108, +101,109,115,105,122,101, 0, 98,108,111, 99,107, 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115, +108,117,114,112,104, 0, 42,108,105,110,101, 0, 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0, +115,116, 97,114,116, 0,101,110,100, 0,102,108, 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, + 42,110, 97,109,101, 0,110,108,105,110,101,115, 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99, +117,114, 99, 0,115,101,108, 99, 0,109, 97,114,107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95, +112,111,115, 0,117,110,100,111, 95,108,101,110, 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122, +101, 0,115,101,101,107, 0,112, 97,115,115,101,112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112, +115,116, 97, 0, 99,108,105,112,101,110,100, 0,108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97, +119,115,105,122,101, 0,115,104,105,102,116,120, 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, + 70, 95, 97,112,101,114,116,117,114,101, 0, 89, 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, + 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42,100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101, +115, 0,111,102,102,115,101,116, 0,115,102,114, 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117, +108,116,105, 95,105,110,100,101,120, 0,108, 97,121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101, +110,101, 0,105, 98,117,102,115, 0, 42,103,112,117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115, +111,117,114, 99,101, 0,108, 97,115,116,102,114, 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110, +100, 0,120,114,101,112, 0,121,114,101,112, 0,116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, + 0, 42,114,101,112, 98,105,110,100, 0, 42,112, 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42, +114,101,110,100,101,114, 95,116,101,120,116, 0,108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, + 97,110,105,109,115,112,101,101,100, 0,103,101,110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97, +115,112,120, 0, 97,115,112,121, 0,116,101,120, 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108, +101,110,100,116,121,112,101, 0, 42,111, 98,106,101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0, +112,114,111,106,120, 0,112,114,111,106,121, 0,112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, + 0,115,105,122,101, 91, 51, 93, 0,114,111,116, 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0, +112,109, 97,112,116,111, 0,112,109, 97,112,116,111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, + 99,104, 95,111,117,116,112,117,116, 0, 98,114,117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0, +114, 0,103, 0, 98, 0,107, 0,100,101,102, 95,118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111, +114,102, 97, 99, 0,100,105,115,112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0, +109,105,114,114,102, 97, 99, 0, 97,108,112,104, 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, + 0,101,109,105,116,102, 97, 99, 0,104, 97,114,100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110, +115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, + 97, 99, 0, 99,111,108,116,114, 97,110,115,102, 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, + 99, 0,114,101,102,108,102, 97, 99, 0,116,105,109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109, +112,102, 97, 99, 0,107,105,110,107,102, 97, 99, 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0, +108,105,102,101,102, 97, 99, 0,115,105,122,101,102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0, +115,104, 97,100,111,119,102, 97, 99, 0,122,101,110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108, +101,110,100,102, 97, 99, 0,110, 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, + 42,115,116,110, 97,109,101,115, 0,115,116,121,112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101, +115,117,108,116, 0, 42, 99,102,114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42, +105,110,115,116, 97,110, 99,101, 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118, +101,114,115,105,111,110, 0, 97, 0,105,112,111,116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105, +109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101, +119,115, 99, 97,108,101, 0,110,111,116,108, 97,121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97, +108, 99, 0,108, 97,115,116,115,105,122,101, 0,102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, + 95,115,111,102,116,110,101,115,115, 0,114, 97,100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111, +116,112,111,105,110,116,115, 0,112,100,112, 97,100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115, +112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112, +111,105,110,116, 95,116,114,101,101, 0, 42,112,111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, + 0,110,111,105,115,101, 95,100,101,112,116,104, 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105, +115,101, 95, 98, 97,115,105,115, 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101, +101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116, +121,112,101, 0,102,105,108,101, 95,102,111,114,109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105, +112,108,105,101,114, 0,115,116,105,108,108, 95,102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, + 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0,110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105, +103,104,116, 0, 99,111,110,116,114, 97,115,116, 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116, +101,114,115,105,122,101, 0,109,103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, + 97,118,101,115, 0,109,103, 95,111,102,102,115,101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117, +110,116, 0,110,115, 95,111,117,116,115, 99, 97,108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, + 0,118,110, 95,119, 52, 0,118,110, 95,109,101,120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121, +112,101, 0,110,111,105,115,101,100,101,112,116,104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115, +105,115, 0,110,111,105,115,101, 98, 97,115,105,115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, + 99,114,111,112,121,109,105,110, 0, 99,114,111,112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105, +108,116,101,114, 0, 97,102,109, 97,120, 0,120,114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107, +101,114,100,105,115,116, 0,110, 97, 98,108, 97, 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108, +117,103,105,110, 0, 42,101,110,118, 0, 42,112,100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, + 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, + 93, 0,109,111,100,101, 0,116,111,116,101,120, 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115, +104,100,119,112, 97,100, 0,101,110,101,114,103,121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, + 98,108,101,110,100, 0,104, 97,105,110,116, 0, 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102, +102, 0,115,104, 97,100,115,112,111,116,115,105,122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115, +115,116,104,114,101,115,104, 0,112, 97,100, 53, 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102, +102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0, +114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, + 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, + 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101, +115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97, +108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116, +121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117, +110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101, +114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98, +105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116, +109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, + 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, + 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111, +110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115, +101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, + 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95, +103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101, +120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0, +101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101, +109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, + 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97, +108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105, +122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, + 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102, +102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, + 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114, +103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97, +110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0, +115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0, +102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101, +108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105, +109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112, +116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, + 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103, +108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95, +116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95, +109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, + 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, + 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116, +114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0, +115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, + 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, + 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101, +108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97, +103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110, +101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, + 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, + 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98, +108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, + 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111, +110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97, +109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115, +115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111, +108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, + 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120, +116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0, +105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, + 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, + 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101, +108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, + 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, + 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, + 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, + 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97, +103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110, +116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0, +104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, + 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100, +114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95, +115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120, +116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99, +116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, + 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0, +117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, + 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, + 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111, +110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, + 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117, +114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, + 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109, +115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, + 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0, +116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102, +108, 97,103, 0, 99,117, 98,101,109, 97,112,115,105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105, +118, 0,115,117, 98,100,105,118,114, 0,115,117, 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116, +112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, + 0,117,110,119,114, 97,112, 0,118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115, +101, 0, 98,119,101,105,103,104,116, 0,100,101,102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99, +111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, + 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100,105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0, +109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, + 0, 42,118,101,114,116,115, 0,108,101,118,101,108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101, +110,116, 0,110,101,119,108,118,108, 0,101,100,103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108, +118,108, 0,117,115,101, 95, 99,111,108, 0, 42,101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, + 97,115,101,115, 0, 42,118,101,114,116, 95,109, 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, + 99,101,115, 0, 42,111,108,100, 95,101,100,103,101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115, +117, 98,100,105,118, 84,121,112,101, 0,114,101,110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, + 42,109, 67, 97, 99,104,101, 0,100,101,102, 97,120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97, +110,100,111,109,105,122,101, 0,115,101,101,100, 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, + 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102, +102,115,101,116, 91, 51, 93, 0,115, 99, 97,108,101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95, +116,121,112,101, 0,111,102,102,115,101,116, 95,116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101, +114, 97,110, 99,101, 0, 42,109,105,114,114,111,114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108, +117,101, 0,114,101,115, 0,118, 97,108, 95,102,108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97, +103,115, 0, 98,101,118,101,108, 95, 97,110,103,108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42, +100,111,109, 97,105,110, 0, 42,102,108,111,119, 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, + 0,115,116,114,101,110,103,116,104, 0,100,105,114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120, +109, 97,112,112,105,110,103, 0, 42,109, 97,112, 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, + 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, + 0, 42,105,109, 97,103,101, 0,110,117,109, 95,112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97, +115,112,101, 99,116,121, 0,112,101,114, 99,101,110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112, +101, 97,116, 0, 42,111, 98,106,101, 99,116, 99,101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0, +104,101,105,103,104,116, 0,110, 97,114,114,111,119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, + 0,116,105,109,101,111,102,102,115, 0,108,105,102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117, +108,116,105, 0, 42,112,114,101,118, 67,111,115, 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110, +116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105, +110,100,101,120, 0,102,111,114, 99,101, 0, 42, 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114, +109,115, 0, 42, 99,111,108,108, 95,112, 97,114,109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, + 99,104,101,115, 0, 42,120, 0, 42,120,110,101,119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101, +119, 0, 42, 99,117,114,114,101,110,116, 95,120, 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0, +110,117,109,118,101,114,116,115, 0,110,117,109,102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100, +109, 0, 99,102,114, 97, 0,111,112,101,114, 97,116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117, +101,110, 99,101, 0,103,114,105,100,115,105,122,101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103, +104,116,115, 0, 42, 98,105,110,100, 99,111,115, 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105, +100, 0, 42,100,121,110,105,110,102,108,117,101,110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, + 0,100,121,110,103,114,105,100,115,105,122,101, 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101, +108,108,119,105,100,116,104, 0, 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0, +116,111,116,100,109,101,100,103,101, 0,116,111,116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111, +110, 0,114, 97,110,100,111,109, 95,112,111,115,105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, + 0,112,114,111,116,101, 99,116, 0, 42,117,110,100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95, +116,111,116, 0,117,110,100,111, 95,115,105,103,110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108, +101, 0, 42,102,115,115, 0, 42,116, 97,114,103,101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, + 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101,101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104, +114,105,110,107, 79,112,116,115, 0,112,114,111,106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, + 42,111,114,105,103,105,110, 0,102, 97, 99,116,111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112, +116,115, 0,112,110,116,115,119, 0,111,112,110,116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121, +112,101,117, 0,116,121,112,101,118, 0,116,121,112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100, +119, 0, 42,100,101,102, 0, 42,108, 97,116,116,105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, + 0, 42,101,100,105,116,108, 97,116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114, +116,121,112,101, 0,112, 97,114, 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, + 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114,111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114, +111,120,121, 95,102,114,111,109, 0, 42, 97, 99,116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, + 42,103,112,100, 0, 99,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0, +109,111,100,105,102,105,101,114,115, 0,114,101,115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, + 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0, +100,114,111,116, 91, 51, 93, 0,100,113,117, 97,116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, + 65,120,105,115, 91, 51, 93, 0,114,111,116, 65,110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, + 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116, +115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97, +103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0, +115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112, +111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0, +100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112, +105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110, +116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0, +100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109, +112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110, +115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122, +101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, + 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105, +111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107, +115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117, +112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112, +101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, + 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, + 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116, +101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112, +108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110, +111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, + 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95, +109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110, +103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, + 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97, +100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100, +101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, + 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, + 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0, +107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114, +101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101, +105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, + 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97, +114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, + 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109, +101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, + 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, + 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97, +110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, + 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, + 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, + 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, + 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, + 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103, +115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116, +111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, + 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97, +115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112, +104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99, +116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114, +111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101, +115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105, +110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108, +118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111, +110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116, +105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, + 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0, +115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102, +102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119, +101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, + 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97, +108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, + 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77, +111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118, +121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0, +109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108, +122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0, +115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83, +105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0, +118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110, +101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115, +117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, + 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0, +102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112, +115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, + 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, + 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118, +101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, + 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110, +114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120, +112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103, +114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, + 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, + 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112, +104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115, +116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114, +115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111, +108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, + 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98, +105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, + 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, + 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114, +114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, + 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101, +114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114, +109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, + 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, + 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, + 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97, +109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99, +111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0, +118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105, +111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0, +114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101, +114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0, +109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112, +108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111, +118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115, +107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, + 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97, +116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116, +104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100, +103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, + 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109, +111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120, +115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, + 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105, +115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97, +121,116,114, 97, 99,101, 95,111,112,116,105,111,110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114, +101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102, +114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115, +112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114, +115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0, +112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, + 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, + 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95, +115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105, +115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108, +105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, + 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98, +117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, + 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112, +104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110, +114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, + 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105, +116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112, +111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, + 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111, +108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115, +116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, + 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115, +117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105, +109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, + 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97, +109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100, +111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105, +108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, + 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97, +100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, + 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97, +109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, + 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, + 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0, +112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103, +108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0, +116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105, +116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97, +119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, + 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101, +116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101, +118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118, +103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102, +108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95, +111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101, +114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, + 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115, +105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0, +117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102, +108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111, +105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114, +111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108, +101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95, +102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111, +111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104, +111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101, +110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116, +101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115, +107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108, +105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114, +114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105, +109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0, +115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103, +101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101, +110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111, +115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, + 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112, +108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105, +110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, + 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, + 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, + 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100, +101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101, +116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0, +116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101, +115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116, +101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101, +116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, + 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, + 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110, +115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, + 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, + 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121, +105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, + 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, + 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101, +114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115, +109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, + 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109, +122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115, +112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108, +118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, + 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, + 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121, +112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97, +121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116, +114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110, +101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105, +100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114, +105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121, +102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97, +119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0, +122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112, +114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0, +109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99, +114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0, +107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0, +111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, + 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103, +104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97, +105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114, +101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114, +101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0, +116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97, +109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98, +111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102, +112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109, +115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95, +110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117, +116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116, +114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, + 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116, +108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99, +117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115, +116,105, 99,107,121, 0,100,116, 95,117,118,115,116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42, +116,101,120,116, 0,116,111,112, 0,118,105,101,119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116, +104, 0,108,105,110,101,110,114,115, 95,116,111,116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, + 97, 98,110,117,109, 98,101,114, 0,115,104,111,119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0,108,105, +118,101, 95,101,100,105,116, 0,112,105,120, 95,112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, 0,116, +120,116, 98, 97,114, 0,119,111,114,100,119,114, 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115,116,114, + 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99,101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, 0, 42, +112,121, 95,101,118,101,110,116, 0, 42,112,121, 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101,114, 99, + 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95,103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, 99,101, + 0,115, 99,114,105,112,116,110, 97,109,101, 91, 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, 93, 0, + 42,115, 99,114,105,112,116, 0, 42, 98,117,116, 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, 97,115, +112,101, 99,116, 0, 42, 99,117,114,102,111,110,116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0,116,114, +101,101,116,121,112,101, 0,116,101,120,102,114,111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105,108,101, +115,121, 0,118,105,101,119,114,101, 99,116, 0, 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108,108,112, +111,115, 0,115, 99,114,111,108,108,104,101,105,103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116,118, 97, +108, 0,112,114,118, 95,119, 0,112,114,118, 95,104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, 40, 42, +114,101,116,117,114,110,102,117,110, 99, 95,101,118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, + 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114,103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105,109,103, + 0,108,101,110, 95, 97,108,108,111, 99, 0, 99,117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114,111,108, +108, 98, 97, 99,107, 0,104,105,115,116,111,114,121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97,109,101, + 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0,112,111, +105,110,116,115, 0,107,101,114,110,105,110,103, 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111,119, 0, +115,104, 97,100,120, 0,115,104, 97,100,121, 0,115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, 99,111, +108,111,114, 0,112, 97,110,101,108,116,105,116,108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103,101,116, +108, 97, 98,101,108, 0,119,105,100,103,101,116, 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101,108, 99, +104, 97,114,115, 0,109,105,110,119,105,100,103,101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99,101, 0, +116,101,109,112,108, 97,116,101,115,112, 97, 99,101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115,112, 97, + 99,101,120, 0, 98,117,116,116,111,110,115,112, 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97,110,101, +108,111,117,116,101,114, 0,112, 97,100, 91, 49, 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, 91, 52, + 93, 0,105,110,110,101,114, 95,115,101,108, 91, 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, 0,116, +101,120,116, 95,115,101,108, 91, 52, 93, 0,115,104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97,100,101, +100,111,119,110, 0,105,110,110,101,114, 95, 97,110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95,115,101, +108, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101,108, 91, + 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 95, +115,101,108, 91, 52, 93, 0,119, 99,111,108, 95,114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0,119, 99, +111,108, 95,116,101,120,116, 0,119, 99,111,108, 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, 0,119, + 99,111,108, 95,116,111,103,103,108,101, 0,119, 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108,105,100, +101,114, 0,119, 99,111,108, 95,109,101,110,117, 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111,108, 95, +109,101,110,117, 95, 98, 97, 99,107, 0,119, 99,111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, 98,111, +120, 0,119, 99,111,108, 95,115, 99,114,111,108,108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, 99,111, +108, 95,115,116, 97,116,101, 0,105, 99,111,110,102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116,105,116, +108,101, 91, 52, 93, 0,116,101,120,116, 95,104,105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97,100,101, +114, 95,116,105,116,108,101, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100,101,114, + 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,105,116, +108,101, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, + 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108,105,115, +116, 95,116,101,120,116, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101,108, 91, + 52, 93, 0,112, 97,110,101,108, 95,116,105,116,108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, 93, 0, +112, 97,110,101,108, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97,100,101, + 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, 0,115, +101,108,101, 99,116, 91, 52, 93, 0,108, 97,109,112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111,117,112, + 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, 52, 93, + 0,118,101,114,116,101,120, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, + 91, 52, 93, 0,101,100,103,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, 93, 0, +101,100,103,101, 95,115,104, 97,114,112, 91, 52, 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0,102, 97, + 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, 52, 93, + 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98,111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95,112,111, +115,101, 91, 52, 93, 0,115,116,114,105,112, 91, 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, 0, 99, +102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99,104, 97, +110,110,101,108, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105,122,101, + 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110,116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, 0,115, +121,110,116, 97,120, 98, 91, 52, 93, 0,115,121,110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, 93, 0, +109,111,118,105,101, 91, 52, 93, 0,105,109, 97,103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100,105,111, + 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105,116,105, +111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, 52, 93, + 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95, +115,101,108,101, 99,116, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104,112, 97, +100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116,102,105, +108,101, 0,116,105,112,111, 0,116,105,110,102,111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101, +113, 0,116,105,109, 97, 0,116,105,109, 97,115,101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0, +116,110,111,100,101, 0,116,108,111,103,105, 99, 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, + 97, 99,116,105,118,101, 95,116,104,101,109,101, 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, + 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, + 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, + 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, + 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0, +121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, + 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, + 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, + 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, + 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, + 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115, +104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101, +121,109, 97,112,115, 0,107,101,121, 99,111,110,102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, + 0,117,110,100,111,109,101,109,111,114,121, 0,103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95, +101,117, 99,108,105,100,101, 97,110,100,105,115,116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105, +110,103,115, 0,116, 98, 95,108,101,102,116,109,111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108, +105,103,104,116, 91, 51, 93, 0,116,119, 95,104,111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97, +110,100,108,101,115,105,122,101, 0,116,119, 95,115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99, +111,108,108,101, 99,116,114, 97,116,101, 0,119,109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101, +109, 99, 97, 99,104,101,108,105,109,105,116, 0,112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101, +115,101,114,118,101,114,112,111,114,116, 0,112, 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101, +114, 95,100,105, 97, 0,114,118,105,115,105,122,101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102, +105,108,101,115, 0,115,109,111,111,116,104, 95,118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100, +111,102, 95,112, 97,110, 0,110,100,111,102, 95,114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95, +110,101,119, 0,118,101,114,115,101,109, 97,115,116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, + 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99,108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, + 98, 97,115,101, 0,101,100,103,101, 98, 97,115,101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, + 0,102,117,108,108, 0,119,105,110,105,100, 0,100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100, +111, 95,100,114, 97,119, 95,103,101,115,116,117,114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115, +111,114, 0,115,119, 97,112, 0,109, 97,105,110,119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110, +105,109,116,105,109,101,114, 0, 42, 99,111,110,116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119, +118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, + 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0, +111,102,115,121, 0,115,105,122,101,120, 0,115,105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109, +101, 95,102,108, 97,103, 0, 99,111,110,116,114,111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, + 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116,105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0, +108,105,115,116, 95,115,105,122,101, 0,108,105,115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105, +112, 95,115,105,122,101, 0,108,105,115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42, +102,117,108,108, 0, 98,117,116,115,112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, + 99,101,100, 97,116, 97, 0,104, 97,110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, + 99,116, 0,100,114, 97,119,114, 99,116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105, +103,110,109,101,110,116, 0,117,105, 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116, +114, 0, 42,114,101,103,105,111,110,100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115, +105,111,110, 0,112, 97,100,115, 0,109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111, +110, 0, 42, 99,117,114,115, 99,114,101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, + 0,103,108,111, 98, 97,108,102, 0,110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111, +109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104, +116, 0,120,111,102,115, 0,121,111,102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105, +110, 91, 51, 93, 0,115, 97,116,117,114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, + 97,114,116,115,116,105,108,108, 0,101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, + 0,111,114,121, 0, 42, 99,114,111,112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, + 97,110, 99,101, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97, +114,116,115,116,105,108,108, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98, +117,102, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110, +115,116, 97,110, 99,101, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114, +105,118, 97,116,101, 95,100, 97,116, 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0, +109, 97, 99,104,105,110,101, 0,115,116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105, +122,101, 0, 97,110,105,109, 95,112,114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99, +102, 49, 0, 42,115,101,113, 49, 0, 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111, +117,110,100, 0, 42,115,111,117,110,100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110, +101,110,114, 0,115,116,114,111, 98,101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114, +116,111,102,115, 0, 97,110,105,109, 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110, +100, 95,111,112, 97, 99,105,116,121, 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, + 98, 97,115,101,112, 0,109,101,116, 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97, +103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103, +101, 87,105,100,116,104, 0,102,111,114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67, +108, 97,109,112, 0,102, 66,111,111,115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111, +109,112, 0, 83, 99, 97,108,101,120, 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, + 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114, +111,116, 73,110,105, 0,114,111,116, 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109, +101, 77, 97,112, 0,103,108,111, 98, 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, + 98,117,116,116,121,112,101, 0,117,115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109, +102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102, +101, 0,102,111,114, 99,101, 91, 51, 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, + 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97, +116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111, +109, 97,116, 0,116,105,109,101,116,101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101, +114,116,103,114,111,117,112, 95,118, 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, + 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100, +101,108,101,109, 0, 42,112,111,105,110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, + 0,107,101,121, 0,113,117, 97,108, 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116, +111,103,103,108,101, 78, 97,109,101, 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, + 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, + 91, 51, 50, 93, 0,100, 97,109,112,116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, + 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, + 0, 99,111,110,115,116,114, 97,105,110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106, +101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101, +113, 0,116,111,116,108,105,110,107,115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, + 97,120,105,115, 95,115,105,110,103,108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116, +102, 0,112,114,101, 99,105,115,105,111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, + 42,109,121,110,101,119, 0,105,110,112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, + 0,118, 97,108,111, 0,115,116, 97,116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, + 51, 50, 93, 0, 98,108,101,110,100,105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115, +116,114,105,100,101, 97,120,105,115, 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, + 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121, +109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, + 97,110,103, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101, +114, 97,116,105,111,110, 0,102,111,114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108, +105,110,101, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, + 91, 51, 93, 0, 42,114,101,102,101,114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, + 0,109, 97,120, 0,118,105,115,105,102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, + 97,120,108,111, 99, 91, 51, 93, 0,109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116, +112,114,111,112, 91, 51, 50, 93, 0,100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0, +105,110,116, 95, 97,114,103, 95, 50, 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, + 50, 0,116,111, 80,114,111,112, 78, 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84, +121,112,101, 0,102,105,108,101,110, 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, + 0,105,110,116, 95, 97,114,103, 0,102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, + 0, 97, 99, 99,101,108,108,101,114, 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112, +101,101,100, 0,109, 97,120,116,105,108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, + 97,109,112, 0, 42,115,111,117,114, 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103, +101,100, 0,109,105,110, 95,103, 97,105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100, +105,115,116, 97,110, 99,101, 0,109, 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99, +116,111,114, 0, 99,111,110,101, 95,105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, + 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100, +102,105,108,101, 0, 97,116,116,101,110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, + 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102, +115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, + 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97, +114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0, +122,119,105,100,116,104, 0,101, 97,115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95, +116, 97,105,108, 0, 98,111,110,101, 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115, +107,101,116, 99,104, 0,108, 97,121,101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104, +111,115,116,115,105,122,101, 0,103,104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116, +115,102, 0,103,104,111,115,116,101,102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0, +112, 97,116,104, 97, 99, 0, 42,112,111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102, +114, 97,109,101, 0, 42,112,114,111,112, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, + 99,116,102,108, 97,103, 0, 97,103,114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105, +107,116,114,101,101, 0, 42, 98, 95, 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, + 95, 98,111,110,101, 95,100,117, 97,108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, + 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, + 51, 93, 0,112,111,115,101, 95,116, 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105, +116,109, 97,120, 91, 51, 93, 0,115,116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105, +107,114,111,116,119,101,105,103,104,116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99, +104, 97,110, 98, 97,115,101, 0,112,114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101, +116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99, +116,105,118,101, 95,103,114,111,117,112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, + 97,114, 97,109, 0,110,117,109,105,116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120, +115,116,101,112, 0,115,111,108,118,101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112, +109, 97,120, 0,100, 97,109,112,101,112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99, +115, 0, 99,117,114,118,101,115, 0,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105, +108,116,101,114,102,108, 97,103, 0, 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101, +115,108,105,100,101, 0, 42,103,114,112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99, +101, 0,116, 97,114,115,112, 97, 99,101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95, +101,114,114,111,114, 0,114,111,116, 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, + 93, 0,115,112, 97, 99,101, 0,114,111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0, +105,116,101,114, 97,116,105,111,110,115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, + 0, 42,112,111,108,101,116, 97,114, 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, + 97,110,103,108,101, 0,111,114,105,101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, + 0,114,101,115,101,114,118,101,100, 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0, +115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, + 97,103, 0,118,111,108,109,111,100,101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, + 0,112,105,118, 88, 0,112,105,118, 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76, +105,109,105,116, 91, 54, 93, 0,109, 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, + 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111, +109, 95,109,105,110, 91, 51, 93, 0,102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116, +111, 95,109, 97,120, 91, 51, 93, 0,122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101, +108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117, +114,109,111,100, 0, 97, 99,116,115,116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114, +105,100,101,108,101,110, 0,115, 99, 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110, +110,101,108, 91, 51, 50, 93, 0,111,102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, + 97,115,111,117,116,112,117,116, 0,100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101, +119, 95,115,111, 99,107, 0,110,115, 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101, +114,110, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, + 95,105,110,100,101,120, 0,116,111, 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110, +101,119, 95,110,111,100,101, 0,117,115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117, +116,115, 0, 42,115,116,111,114, 97,103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117, +115,116,111,109, 50, 0, 99,117,115,116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0, +101,120,101, 99, 0, 42,116,104,114,101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, + 42, 98,108,111, 99,107, 0, 42,116,121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111, +100,101, 0, 42,102,114,111,109,115,111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, + 42,116,104,114,101, 97,100,115,116, 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95, +105,110,100,101,120, 0, 97,108,108,116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42, +115,101,108,111,117,116, 0, 40, 42,116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100, +114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, + 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112, +101,101,100, 0,112,101,114, 99,101,110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118, +101,100, 0,105,109, 97,103,101, 95,105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104, +116, 0, 99,101,110,116,101,114, 95,120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, + 97,112, 0,115,105,103,109, 97, 95, 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, + 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, + 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121, +112,101, 0,114,111,116, 97,116,105,111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0, +109, 97,120, 98,108,117,114, 0, 98,116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108, +101, 95,111,102,115, 0, 99,111,108,109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0, +109, 0, 99, 0,106,105,116, 0,112,114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, + 0,109, 97,120,116, 97, 98,108,101, 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, + 99,117,114,118,101, 0, 42,116, 97, 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99, +108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109, +117,108, 91, 51, 93, 0,115, 97,109,112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0, +106,105,116,116,101,114, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111, +116,104, 95,115,116,114,111,107,101, 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117, +108,112,116, 95,116,111,111,108, 0, 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, + 0, 97, 99,116,105,118,101, 95,109, 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97, +120,108, 97,121,101,114, 0,116,111,116,115,105,122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, + 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103,114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0, +112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, + 0,114,116, 91, 50, 93, 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105, +101,116,105,109,101, 0,110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105, +114, 95,105,110,100,101,120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118, +101,109,111,100,101, 0,114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, + 97,119, 95,115,105,122,101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101, +112, 0,104, 97,105,114, 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108, +101, 0, 97,100, 97,112,116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, + 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115, +112,108,105,116, 95,111,102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, + 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112, +108,105,102,121, 95,114,101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108, +105,102,121, 95,116,114, 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, + 0,116,105,109,101,116,119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95, +114,101,115, 0,112, 97,114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99, +116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, + 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0, +114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, + 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0, +114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, + 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, + 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117, +103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117, +103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99, +108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108, +105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, + 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, + 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42, +112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104, +105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104, +101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117, +116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, + 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, + 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, + 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0, +118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114, +115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, + 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, + 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, + 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119, +105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95, +115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120, +115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110, +100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115, +101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, + 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, + 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110, +101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103, +115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102, +102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115, +115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, + 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0, +105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, + 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, + 0,107,101,121, 99,111,110,102,105,103,115, 0, 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, + 97, 99,116,109, 97,112, 0,116,105,109,101,114,115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104, +111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, + 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, + 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97, +116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, + 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115, +117, 98,119,105,110,100,111,119,115, 0,103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111, +112,118, 97,108,117,101, 0,115,104,105,102,116, 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109, +111,100,105,102,105,101,114, 0,109, 97,112,116,121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101, +105,100, 0,114,101,103,105,111,110,105,100, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101, +109,115, 0, 98, 97,115,101,110, 97,109,101, 91, 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111, +109,100, 97,116, 97, 0, 42,114,101,112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, + 93, 0,112,114,101,118,120, 0,112,114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121, +109, 97,112, 95,105,100,110, 97,109,101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, + 0, 42,101,100, 97,116, 97, 0,105,110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, + 97,114,114, 97,121,115,105,122,101, 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112, +104, 97,115,101, 95,109,117,108,116,105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108, +117,101, 95,111,102,102,115,101,116, 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116, +101,114, 95,109,111,100,101, 0, 98,101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108, +101,115, 0,114,101, 99,116, 0,112,104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95, +112, 97,116,104, 0, 97,114,114, 97,121, 95,105,110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105, +111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99, +111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110, +103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116, +105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, + 52, 93, 0,116,101,109,112,108, 97,116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121, +105,110,103,102,108, 97,103, 0, 97, 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95, +116,114, 97, 99,107,115, 0, 42, 97, 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100, +101,115, 0, 97, 99,116, 95, 98,108,101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, + 97, 99,116, 95,105,110,102,108,117,101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95, +102, 97, 99,116,111,114, 0,115,105,103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, + 91, 51, 93, 0,113,117,101,117,101, 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97, +110, 99,101, 0,104,101, 97,108,116,104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116, +105,111,110,115, 0, 97, 99,116,105,111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102, +117,122,122,105,110,101,115,115, 0,108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115, +109,111,111,116,104,110,101,115,115, 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99, +117,114, 97, 99,121, 0, 97,105,114, 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101, +100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101, +114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110, +100, 95,109, 97,120, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97, +120, 95, 97,118,101, 0,108, 97,110,100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115, +116,105, 99,107, 95,102,111,114, 99,101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102, +108,117,105,100, 95,103,114,111,117,112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95, +119,116, 0, 42,116,101,120, 95,115,104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, + 51, 93, 0,100,120, 0,111,109,101,103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, + 97,109,112,108,105,102,121, 0,109, 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115, +101, 0,100,105,115,115, 95,112,101,114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, + 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, + 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, + 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100, +101,110,115,105,116,121, 0,118,103,114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42, +118,101,108, 0,109, 97,116, 95,111,108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69, +194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0, +108,111,110,103, 0,117,108,111,110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110, +107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0, +118,101, 99, 50,102, 0,118,101, 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, + 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112, +101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70, +105,108,101, 68, 97,116, 97, 0, 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, + 98,106,101, 99,116, 0, 73,112,111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, + 73,112,111, 0, 75,101,121, 66,108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105, +110,101, 0, 84,101,120,116, 77, 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97, +109,101,114, 97, 0, 73,109, 97,103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101, +120,116,117,114,101, 0, 97,110,105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, + 0, 80,108,117,103,105,110, 84,101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, + 97,112, 0, 73,109, 66,117,102, 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121, +115,116,101,109, 0, 86,111,120,101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112, +105,110,103, 0, 76, 97,109,112, 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109, +101, 83,101,116,116,105,110,103,115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, + 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, + 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, + 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, + 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, + 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101, +115,104, 0, 67,117,115,116,111,109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105, +115,105, 98,105,108,105,116,121, 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, + 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, + 77, 73,110,116, 80,114,111,112,101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105, +103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, + 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, + 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101, +102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110, +101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, + 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, + 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, + 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102, +105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, + 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, + 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, + 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, + 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, + 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, + 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, + 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, + 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, + 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, + 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, + 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, + 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102,100, 32, 99,104, 97,114, + 32,117,115,101, 95, 99,111,108, 44, 32,102,108, 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118, +101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101, +100, 32,102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97, +116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104, +111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, + 97,115,101,115, 59, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105, +114,101,115, 32, 42, 42, 47, 10, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86, +105,115,105, 98,105,108,105,116,121, 32,123, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95, +109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, + 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103, +101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, + 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, + 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116, +111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, + 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102, +108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, + 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, + 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, + 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, + 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, + 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, + 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, + 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, + 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, + 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35, +100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110, +111, 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114, +101,110,100,101,114, 32, 97,115,115,117,109,101,115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101, +100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, + 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, + 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, + 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, + 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, + 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, + 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, + 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115, +101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, + 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116, +102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, + 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, + 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97, +102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, + 32, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, + 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32, +115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, + 62,109,111,100,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35, +100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, + 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, + 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, + 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97, +120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, + 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, + 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, + 52, 32, 97,114,101, 32,117,115,101,100, 32, 97,115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, + 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104, +105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, + 97, 47, 98,105,110, 97,114,121, 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, + 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104, +101, 32,117,115,101,114, 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97, +112, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, + 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, + 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, + 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35,101,110,100,105,102, 10,100,105, 79, 67, 75, 33,110,100,101,120, 32,105,110, 32, +110,117,114, 98, 32,108,105,115,116, 32, 42, 47, 10, 9,105,110,116, 32, 97, 99,116,110,117, 59, 10, 9, 47, 42, 32,101,100,105, +116, 44, 32,108, 97,115,116, 32,115,101,108,101, 99,116,101,100, 32, 98,112,111,105,110,116, 32, 42, 47, 10, 9, 66, 80,111,105, +110,116, 32, 42,108, 97,115,116,115,101,108, 98,112, 59, 10, 9, 10, 9, 47, 42, 32,102,111,110,116, 32,112, 97,114,116, 32, 42, + 47, 10, 9,115,104,111,114,116, 32,108,101,110, 44, 32,108,105,110,101,115, 44, 32,112,111,115, 44, 32,115,112, 97, 99,101,109, +111,100,101, 59, 10, 9,102,108,111, 97,116, 32,115,112, 97, 99,105,110,103, 44, 32,108,105,110,101,100,105,115,116, 44, 32,115, +104,101, 97,114, 44, 32,102,115,105,122,101, 44, 32,119,111,114,100,115,112, 97, 99,101, 44, 32,117,108,112,111,115, 44, 32,117, +108,104,101,105,103,104,116, 59, 10, 9,102,108,111, 97,116, 32,120,111,102, 44, 32,121,111,102, 59, 10, 9,102,108,111, 97,116, + 32,108,105,110,101,119,105,100,116,104, 59, 10, 70, 82, 69, 69,216, 24, 0, 77,117,108,116,105,114,101,115, 67,111,108, 0, 77, +117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, 77,117,108,116, +105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102,105,101,114, 68, + 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116,105, 99,101, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,117, +105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, + 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,101,118,101, +108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105,110, 83,101,116, +116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 67,111,108, +108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 85, + 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116,101, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67, 97,115, +116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65, +114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105,102,105,101,114, + 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101,116,116,105,110, +103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, 99,104,101, 0, + 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101,101, 0, 83,117, +114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115,104, 0, 66, 86, + 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101,114, 68, 97,116, + 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115,104, 68,101,102, +111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 77,111, +100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77,111,100,105,102, +105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,117,108,116, +105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110,107,119,114, 97, +112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111,100,105,102,105, +101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, +105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105,111,110, 0, 98, + 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83,111,102,116, 66, +111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72,111,111,107, 0, + 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103,104,116,115, 0, + 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114,116,101,120, 0, + 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, 99,104, 0, 87, +111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107,116,105,109,101, + 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117,100,105,111, 68, + 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, 97,116, 97, 0, + 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70,114, 97,109,105, +110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, 0, 66,114,117, +115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 66,114, +117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, 0, 84,114, 97, +110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97,105,110,116, 0, + 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116,105,110,103,115, + 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101,110,101, 83,116, + 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105,101,119, 51, 68, + 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86,105,101,119, 68, +101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101,114, 0, 86,105, +101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73,110,102,111, 0, + 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, 83,112, 97, 99, +101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, 97,109,115, 0, + 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111,114, 0, 70,105, +108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, 0, 84,114,101, +101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78,108, 97, 0, 83, +112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, 83,112, 97, 99, +101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83,112, 97, 99,101, + 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115,111,108,101, 0, + 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83,116,121,108,101, + 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105,100,103,101,116, + 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, 99,101, 0, 84, +104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105,103,104,116, 0, + 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101,108, 0, 80, 97, +110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, 99,101, 84,121, +112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71,108,111, 98, 97, +108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, 67,114,111,112, + 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97,108, 97,110, 99, +101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, 0, 83,101,113, +117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, 97, 83,116, 97, + 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111,114,109, 86, 97, +114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114,111,108, 86, 97, +114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, 97,114,116,105, + 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83,101,110,115,111, +114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, 98, 75,101,121, + 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, 98, 65, 99,116, +117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111,108,108,105,115, +105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100,111,109, 83,101, +110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110,115,111,114, 0, + 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116,114,111,108,108, +101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105,111,110, 67,111, +110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100,100, 79, 98,106, +101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, 98, 83,111,117, +110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, 99,116, 65, 99, +116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101,114,116,121, 65, + 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, 65, 99,116,117, + 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, 97,105,110,116, + 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110,100,111,109, 65, + 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97,109,101, 65, 99, +116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 84,119,111, 68, + 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, + 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97,116,111,114, 0, + 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, 98,106,101, 99, +116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 86,101,114,116, + 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103,115, 0, 98, 80, +111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, 65, 99,116,105, +111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67,104, 97,110,110, +101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110, +116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67,111,110,115,116, +114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97, 99, +107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77,105,110, 77, 97, +120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, + 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, 67,111,110,115, +116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,116, +114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, 74,111,105,110, +116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, + 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, 67,111,110,115, +116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 76, +105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104,114,105,110,107, +119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105,101,114, 0, 98, + 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, 83,111, 99,107, +101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118,105,101,119, 0, +117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65,110,105,109, 0, + 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 66, +105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, 78,111,100,101, + 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, 88, 89,115, 0, + 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78,111,100,101, 86, +101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114,105,112,116, 68, +105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111,100,101, 76,101, +110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97,112, 80,111,105, +110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111,109, 68, 97,116, + 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66,111,105,100, 80, + 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99,108,101, 0, 80, + 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87,101,105,103,104, +116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, + 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, + 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, + 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, + 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110, +100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110,102,105,103, 0, +119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114,101, 0,119,109, + 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, 97,112, 0,119, +109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, 95, 71,101,110, +101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111,114, 0, 70, 67, + 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, 0, 70, 77,111, +100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105,109,105,116,115, + 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97,110,110,101,108, + 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, 80, 97,105,114, + 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99,107, 0, 75, 83, + 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, 0, 73,100, 65, +100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, 71,111, 97,108, + 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, 0, 66,111,105, +100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118,101,114, 97,103, +101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97,116,101, 0, 70, + 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, 2, 0, 2, 0, + 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 16, 0, 24, 0, 16, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, 12, 0, 24, 0, + 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 32, 0, 96, 0, 72, 0, 72, 2, 0, 0, 40, 0,144, 0,152, 4,112, 0, 36, 0, 56, 0, +112, 0,128, 0,168, 0, 96, 0, 40, 0, 48, 0,176, 0, 16, 0,152, 0, 40, 0, 0, 6,184, 1, 0, 0, 0, 0, 0, 0, 16, 1, +104, 1,120, 1, 24, 0, 8, 3,200, 0, 0, 0, 96, 0,240, 1, 32, 1,232, 0,136, 0,248, 1, 56, 1, 80, 0, 88, 0, 32, 3, +104, 0, 88, 1, 0, 0,128, 0,104, 0,208, 0, 80, 0, 8, 0, 16, 0,216, 1, 0, 0, 0, 0, 0, 0,144, 1, 20, 0, 48, 0, + 64, 0, 24, 0, 12, 0, 16, 0, 4, 0, 8, 0, 8, 0, 0, 0, 32, 0,112, 0, 48, 0, 8, 0, 16, 0, 8, 0, 8, 0, 4, 0, + 4, 0, 0, 1, 32, 0, 16, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 64, 0, 72, 0, 96, 0,112, 0,120, 0, 88, 0,120, 0, +152, 0, 88, 0, 80, 0,128, 0, 80, 0,104, 0,248, 0, 56, 0,192, 0,176, 0,216, 0, 80, 0,112, 0,128, 0,216, 0,128, 0, +240, 0, 72, 0,128, 0, 0, 0,144, 0, 32, 0, 8, 2,152, 0, 0, 0,112, 0, 0, 0, 0, 0, 88, 0, 8, 0, 8, 0, 8, 1, +104, 0, 96, 0, 88, 0, 88, 0, 88, 0,192, 1,136, 0,128, 0, 72, 0,232, 0, 48, 0, 0, 0,144, 0, 88, 0,104, 0,120, 0, +152, 0, 32, 1,224, 0,192, 0, 0, 0, 72, 0,168, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,216, 1, 40, 0,184, 0,152, 0, + 64, 0, 24, 0, 88, 0, 24, 4, 64, 0, 24, 0, 16, 0, 96, 0, 88, 0, 32, 0, 40, 1, 48, 0, 8, 0,112, 0, 88, 0, 56, 0, + 72, 0,112, 1, 32, 0, 8, 0, 16, 0, 48, 2, 0, 0, 0, 0, 64, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, + 56, 0,152, 0, 72, 0,208, 0,248, 0, 32, 0, 0, 1,240, 0,208, 1,104, 0, 0, 0,152, 0, 0, 0, 40, 1, 16, 0, 16, 0, +168, 0,224, 0,144, 2,120, 2, 64, 0,200, 0, 32, 1, 72, 0,208, 2, 40, 0,112, 0, 40, 0, 24, 1, 32, 0,232, 0, 32, 0, + 32, 0, 80, 2, 16, 1, 16, 0,216, 21, 56, 0,160, 11, 32, 0, 40, 0, 88, 1, 0, 0, 0, 0,160, 0, 0, 0, 40, 1, 0, 0, + 24, 1, 80, 0, 48, 0, 16, 0, 8, 0, 52, 0, 0, 1, 32, 1,200, 1, 8, 1, 48, 1, 64, 0, 32, 0, 12, 0, 24, 0, 48, 0, + 16, 0, 24, 0, 24, 0, 32, 0, 72, 1, 0, 0, 64, 0, 64, 0, 48, 0, 8, 0, 48, 0, 72, 0,104, 0, 40, 0, 8, 0, 72, 0, + 44, 0, 40, 0,108, 0, 72, 0, 72, 0, 96, 0,104, 0, 60, 0,128, 0, 80, 0, 80, 0, 16, 0, 96, 0, 72, 0, 32, 0, 88, 0, + 24, 0, 80, 0,112, 0, 84, 0, 32, 0, 96, 0, 56, 0, 56, 0,112, 0,140, 0, 4, 0, 24, 0, 16, 0, 8, 0, 88, 0, 40, 0, +224, 0, 40, 0, 24, 1,176, 0, 16, 0, 24, 0, 24, 0, 0, 2, 4, 0, 40, 0,120, 0, 8, 1, 88, 0, 56, 0, 88, 0,128, 0, + 80, 0,120, 0, 56, 0, 48, 0, 48, 0, 72, 0, 48, 0, 72, 0, 48, 0, 24, 0, 56, 0,104, 0, 16, 0,112, 0, 96, 0, 28, 0, + 28, 0, 28, 0, 56, 0, 24, 0, 72, 0,168, 0, 40, 0,144, 0, 56, 0, 8, 1, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, 28, 0, + 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 16, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, 56, 0, + 24, 0, 72, 0, 24, 0, 56, 0, 56, 0, 20, 0, 64, 0, 40, 0, 32, 0,192, 0, 8, 2,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 32, 0, 40, 0,192, 0, 40, 0, 32, 0, 8, 1,224, 0,168, 0, 72, 0, 0, 0, 0, 0,120, 0, 0, 0,120, 0, 0, 0, +104, 0, 24, 0, 24, 0, 16, 0, 24, 0, 8, 0, 16, 0, 24, 0, 20, 0,112, 0, 32, 1, 16, 0,104, 0, 0, 1, 40, 0,200, 0, +104, 0,112, 0,104, 0, 32, 0, 80, 0, 56, 0, 80, 0, 64, 0,104, 0, 72, 0, 64, 0,128, 0, 0, 0, 0, 0, 83, 84, 82, 67, +136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, + 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, 4, 0, 5, 0, + 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, 17, 0, 3, 0, + 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 19, 0, 3, 0, + 8, 0, 5, 0, 8, 0, 6, 0, 8, 0, 7, 0, 20, 0, 4, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 4, 0, 8, 0, + 21, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 8, 0, 22, 0, 4, 0, 8, 0, 5, 0, 8, 0, 6, 0, + 8, 0, 7, 0, 8, 0, 8, 0, 23, 0, 4, 0, 4, 0, 9, 0, 4, 0, 10, 0, 4, 0, 11, 0, 4, 0, 12, 0, 24, 0, 4, 0, + 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, 25, 0, 4, 0, 9, 0, 13, 0, 12, 0, 14, 0, 4, 0, 15, 0, + 4, 0, 16, 0, 26, 0, 10, 0, 26, 0, 0, 0, 26, 0, 1, 0, 0, 0, 17, 0, 0, 0, 18, 0, 2, 0, 19, 0, 0, 0, 20, 0, + 4, 0, 21, 0, 25, 0, 22, 0, 4, 0, 23, 0, 4, 0, 24, 0, 27, 0, 9, 0, 9, 0, 0, 0, 9, 0, 1, 0, 27, 0, 25, 0, + 28, 0, 26, 0, 0, 0, 27, 0, 2, 0, 28, 0, 2, 0, 19, 0, 4, 0, 29, 0, 26, 0, 30, 0, 28, 0, 8, 0, 27, 0, 31, 0, + 27, 0, 32, 0, 29, 0, 33, 0, 0, 0, 34, 0, 0, 0, 35, 0, 4, 0, 36, 0, 4, 0, 37, 0, 28, 0, 38, 0, 30, 0, 6, 0, + 4, 0, 39, 0, 4, 0, 40, 0, 2, 0, 41, 0, 2, 0, 42, 0, 2, 0, 43, 0, 4, 0, 44, 0, 31, 0, 6, 0, 32, 0, 45, 0, + 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 48, 0, 33, 0, 21, 0, 33, 0, 0, 0, 33, 0, 1, 0, + 34, 0, 49, 0, 35, 0, 50, 0, 24, 0, 51, 0, 24, 0, 52, 0, 2, 0, 46, 0, 2, 0, 47, 0, 2, 0, 53, 0, 2, 0, 54, 0, + 2, 0, 55, 0, 2, 0, 56, 0, 2, 0, 19, 0, 2, 0, 57, 0, 7, 0, 11, 0, 7, 0, 12, 0, 4, 0, 58, 0, 7, 0, 59, 0, + 7, 0, 60, 0, 7, 0, 61, 0, 31, 0, 62, 0, 36, 0, 7, 0, 27, 0, 31, 0, 12, 0, 63, 0, 24, 0, 64, 0, 2, 0, 46, 0, + 2, 0, 65, 0, 2, 0, 66, 0, 2, 0, 37, 0, 37, 0, 16, 0, 37, 0, 0, 0, 37, 0, 1, 0, 7, 0, 67, 0, 7, 0, 61, 0, + 2, 0, 17, 0, 2, 0, 47, 0, 2, 0, 68, 0, 2, 0, 19, 0, 4, 0, 69, 0, 4, 0, 70, 0, 9, 0, 2, 0, 7, 0, 71, 0, + 0, 0, 20, 0, 0, 0, 72, 0, 7, 0, 73, 0, 7, 0, 74, 0, 38, 0, 13, 0, 27, 0, 31, 0, 39, 0, 75, 0, 37, 0, 76, 0, + 0, 0, 77, 0, 4, 0, 78, 0, 7, 0, 61, 0, 12, 0, 79, 0, 36, 0, 80, 0, 27, 0, 81, 0, 2, 0, 17, 0, 2, 0, 82, 0, + 2, 0, 83, 0, 2, 0, 19, 0, 40, 0, 6, 0, 40, 0, 0, 0, 40, 0, 1, 0, 0, 0, 84, 0, 0, 0, 85, 0, 4, 0, 23, 0, + 4, 0, 86, 0, 41, 0, 10, 0, 41, 0, 0, 0, 41, 0, 1, 0, 4, 0, 87, 0, 4, 0, 88, 0, 4, 0, 89, 0, 4, 0, 43, 0, + 4, 0, 14, 0, 4, 0, 90, 0, 0, 0, 91, 0, 0, 0, 92, 0, 42, 0, 15, 0, 27, 0, 31, 0, 0, 0, 93, 0, 4, 0, 90, 0, + 4, 0, 94, 0, 12, 0, 95, 0, 40, 0, 96, 0, 40, 0, 97, 0, 4, 0, 98, 0, 4, 0, 99, 0, 12, 0,100, 0, 0, 0,101, 0, + 4, 0,102, 0, 4, 0,103, 0, 9, 0,104, 0, 8, 0,105, 0, 43, 0, 3, 0, 4, 0,106, 0, 4, 0,107, 0, 9, 0, 2, 0, + 44, 0, 20, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,108, 0, 7, 0,109, 0, 7, 0,110, 0, + 7, 0,111, 0, 7, 0,112, 0, 7, 0,113, 0, 7, 0,114, 0, 7, 0,115, 0, 7, 0,116, 0, 7, 0,117, 0, 7, 0,118, 0, + 2, 0,119, 0, 2, 0,120, 0, 7, 0,121, 0, 36, 0, 80, 0, 32, 0,122, 0, 45, 0, 13, 0, 4, 0,123, 0, 4, 0,124, 0, + 4, 0,125, 0, 4, 0,126, 0, 2, 0,127, 0, 2, 0,128, 0, 2, 0, 19, 0, 2, 0,129, 0, 2, 0,130, 0, 2, 0,131, 0, + 2, 0,132, 0, 2, 0,133, 0, 46, 0,134, 0, 47, 0, 32, 0, 27, 0, 31, 0, 0, 0, 34, 0, 12, 0,135, 0, 48, 0,136, 0, + 49, 0,137, 0, 50, 0,138, 0, 2, 0,129, 0, 2, 0, 19, 0, 2, 0,139, 0, 2, 0, 17, 0, 2, 0, 37, 0, 2, 0, 43, 0, + 4, 0,140, 0, 2, 0,141, 0, 2, 0,142, 0, 2, 0,143, 0, 2, 0,144, 0, 2, 0,145, 0, 2, 0,146, 0, 4, 0,147, 0, + 4, 0,148, 0, 43, 0,149, 0, 30, 0,150, 0, 0, 0,151, 0, 7, 0,152, 0, 4, 0,153, 0, 2, 0,154, 0, 2, 0,155, 0, + 2, 0,156, 0, 2, 0,157, 0, 7, 0,158, 0, 7, 0,159, 0, 51, 0, 63, 0, 2, 0,160, 0, 2, 0,161, 0, 2, 0,162, 0, + 2, 0,163, 0, 32, 0,164, 0, 52, 0,165, 0, 0, 0,166, 0, 0, 0,167, 0, 0, 0,168, 0, 0, 0,169, 0, 0, 0,170, 0, + 7, 0,171, 0, 7, 0,172, 0, 7, 0,173, 0, 2, 0,174, 0, 2, 0,175, 0, 2, 0,176, 0, 2, 0,177, 0, 2, 0,178, 0, + 2, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, 7, 0,185, 0, 7, 0,186, 0, + 7, 0, 57, 0, 7, 0,187, 0, 7, 0,188, 0, 7, 0,189, 0, 7, 0,190, 0, 7, 0,191, 0, 7, 0,192, 0, 7, 0,193, 0, + 7, 0,194, 0, 7, 0,195, 0, 7, 0,196, 0, 7, 0,197, 0, 7, 0,198, 0, 7, 0,199, 0, 7, 0,200, 0, 7, 0,201, 0, + 7, 0,202, 0, 7, 0,203, 0, 7, 0,204, 0, 7, 0,205, 0, 7, 0,206, 0, 7, 0,207, 0, 7, 0,208, 0, 7, 0,209, 0, + 7, 0,210, 0, 7, 0,211, 0, 7, 0,212, 0, 7, 0,213, 0, 7, 0,214, 0, 7, 0,215, 0, 7, 0,216, 0, 7, 0,217, 0, + 7, 0,218, 0, 7, 0,219, 0, 7, 0,220, 0, 7, 0,221, 0, 53, 0, 15, 0, 0, 0,222, 0, 9, 0,223, 0, 0, 0,224, 0, + 0, 0,225, 0, 4, 0,226, 0, 4, 0,227, 0, 9, 0,228, 0, 7, 0,229, 0, 7, 0,230, 0, 7, 0,231, 0, 4, 0,232, 0, + 9, 0,233, 0, 9, 0,234, 0, 4, 0,235, 0, 4, 0, 37, 0, 54, 0, 6, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0, + 7, 0,236, 0, 7, 0, 67, 0, 4, 0, 64, 0, 55, 0, 5, 0, 2, 0, 19, 0, 2, 0, 36, 0, 2, 0, 64, 0, 2, 0,237, 0, + 54, 0,231, 0, 56, 0, 17, 0, 32, 0,164, 0, 47, 0,238, 0, 57, 0,239, 0, 7, 0,240, 0, 7, 0,241, 0, 2, 0, 17, 0, + 2, 0,242, 0, 7, 0,110, 0, 7, 0,111, 0, 7, 0,243, 0, 4, 0,244, 0, 2, 0,245, 0, 2, 0,246, 0, 4, 0,129, 0, + 4, 0,140, 0, 2, 0,247, 0, 2, 0,248, 0, 58, 0, 23, 0, 2, 0, 19, 0, 2, 0,249, 0, 7, 0,250, 0, 7, 0,251, 0, + 2, 0,139, 0, 2, 0,252, 0, 4, 0,253, 0, 4, 0,254, 0, 32, 0,164, 0, 59, 0,255, 0, 2, 0, 0, 1, 2, 0, 1, 1, + 2, 0, 2, 1, 9, 0, 3, 1, 7, 0, 4, 1, 7, 0, 5, 1, 2, 0, 6, 1, 2, 0, 7, 1, 2, 0, 8, 1, 2, 0, 9, 1, + 7, 0, 10, 1, 7, 0, 11, 1, 55, 0, 12, 1, 60, 0, 11, 0, 4, 0, 13, 1, 4, 0, 14, 1, 2, 0, 15, 1, 2, 0, 19, 0, + 2, 0, 16, 1, 2, 0, 37, 0, 32, 0,164, 0, 7, 0, 17, 1, 4, 0, 18, 1, 0, 0, 19, 1, 7, 0, 20, 1, 52, 0, 61, 0, + 27, 0, 31, 0, 39, 0, 75, 0, 7, 0, 21, 1, 7, 0, 22, 1, 7, 0, 23, 1, 7, 0, 24, 1, 7, 0, 25, 1, 7, 0, 26, 1, + 7, 0, 27, 1, 7, 0, 28, 1, 7, 0, 29, 1, 7, 0, 30, 1, 7, 0, 31, 1, 7, 0, 32, 1, 7, 0, 33, 1, 7, 0, 34, 1, + 7, 0, 35, 1, 7, 0, 36, 1, 7, 0, 37, 1, 7, 0, 38, 1, 7, 0, 39, 1, 7, 0, 40, 1, 2, 0, 41, 1, 2, 0, 42, 1, + 2, 0, 43, 1, 2, 0, 44, 1, 2, 0, 45, 1, 2, 0, 46, 1, 2, 0, 47, 1, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0,242, 0, + 7, 0, 48, 1, 7, 0, 49, 1, 7, 0, 50, 1, 7, 0, 51, 1, 4, 0, 52, 1, 4, 0, 53, 1, 2, 0, 54, 1, 2, 0, 55, 1, + 2, 0, 16, 1, 2, 0,127, 0, 4, 0, 23, 0, 4, 0,124, 0, 4, 0,125, 0, 4, 0,126, 0, 7, 0, 56, 1, 7, 0, 57, 1, + 7, 0,189, 0, 45, 0, 58, 1, 61, 0, 59, 1, 36, 0, 80, 0, 47, 0,238, 0, 53, 0, 60, 1, 55, 0, 12, 1, 56, 0, 61, 1, + 30, 0,150, 0, 58, 0, 62, 1, 60, 0, 63, 1, 0, 0, 64, 1, 0, 0,181, 0, 62, 0, 8, 0, 7, 0, 65, 1, 7, 0, 66, 1, + 7, 0,172, 0, 4, 0, 19, 0, 7, 0, 67, 1, 7, 0, 68, 1, 7, 0, 69, 1, 32, 0, 45, 0, 63, 0, 84, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 70, 1, 2, 0,175, 0, 2, 0, 71, 1, 7, 0,182, 0, 7, 0,183, 0, + 7, 0,184, 0, 7, 0,185, 0, 7, 0, 72, 1, 7, 0, 73, 1, 7, 0, 74, 1, 7, 0, 75, 1, 7, 0, 76, 1, 7, 0, 77, 1, + 7, 0, 78, 1, 7, 0, 79, 1, 7, 0, 80, 1, 7, 0, 81, 1, 7, 0, 82, 1, 64, 0, 83, 1, 2, 0,249, 0, 2, 0, 70, 0, + 7, 0,110, 0, 7, 0,111, 0, 7, 0, 84, 1, 7, 0, 85, 1, 7, 0, 86, 1, 7, 0, 87, 1, 7, 0, 88, 1, 2, 0, 89, 1, + 2, 0, 90, 1, 2, 0, 91, 1, 2, 0, 92, 1, 0, 0, 93, 1, 0, 0, 94, 1, 2, 0, 95, 1, 2, 0, 96, 1, 2, 0, 97, 1, + 2, 0, 98, 1, 2, 0, 99, 1, 7, 0,100, 1, 7, 0,101, 1, 7, 0,102, 1, 7, 0,103, 1, 2, 0,104, 1, 2, 0, 43, 0, + 2, 0,105, 1, 2, 0,106, 1, 2, 0,107, 1, 2, 0,108, 1, 7, 0,109, 1, 7, 0,110, 1, 7, 0,111, 1, 7, 0,112, 1, + 7, 0,113, 1, 7, 0,114, 1, 7, 0,115, 1, 7, 0,116, 1, 7, 0,117, 1, 7, 0,118, 1, 7, 0,119, 1, 7, 0,120, 1, + 2, 0,121, 1, 2, 0,122, 1, 4, 0,123, 1, 4, 0,124, 1, 2, 0,125, 1, 2, 0,126, 1, 2, 0,127, 1, 2, 0,128, 1, + 7, 0,129, 1, 7, 0,130, 1, 7, 0,131, 1, 7, 0,132, 1, 2, 0,133, 1, 2, 0,134, 1, 36, 0, 80, 0, 51, 0,135, 1, + 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0, 65, 0, 2, 0, 27, 0, 31, 0, 36, 0, 80, 0, 66, 0, 18, 0, 7, 0,138, 1, + 7, 0,139, 1, 7, 0,140, 1, 7, 0,141, 1, 7, 0,142, 1, 7, 0,143, 1, 7, 0,144, 1, 7, 0,145, 1, 7, 0,146, 1, + 7, 0,147, 1, 2, 0,148, 1, 2, 0,149, 1, 2, 0,150, 1, 2, 0,151, 1, 7, 0,152, 1, 7, 0,153, 1, 7, 0,154, 1, + 4, 0,155, 1, 67, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0, 2, 0,156, 1, 2, 0, 19, 0, 7, 0,182, 0, 7, 0,183, 0, + 7, 0,184, 0, 7, 0,157, 1, 7, 0,158, 1, 7, 0,159, 1, 7, 0,160, 1, 7, 0,161, 1, 7, 0,162, 1, 7, 0,163, 1, + 7, 0,164, 1, 7, 0,165, 1, 7, 0,166, 1, 7, 0,167, 1, 7, 0,168, 1, 7, 0,169, 1, 7, 0,170, 1, 7, 0,171, 1, + 7, 0,172, 1, 7, 0,173, 1, 7, 0,174, 1, 7, 0,175, 1, 7, 0,176, 1, 66, 0,177, 1, 7, 0,178, 1, 7, 0,179, 1, + 7, 0,180, 1, 7, 0,181, 1, 7, 0,182, 1, 7, 0,183, 1, 7, 0,184, 1, 2, 0,185, 1, 2, 0,186, 1, 2, 0,187, 1, + 0, 0,188, 1, 0, 0,189, 1, 7, 0,190, 1, 7, 0,191, 1, 2, 0,192, 1, 2, 0,193, 1, 7, 0,194, 1, 7, 0,195, 1, + 7, 0,196, 1, 7, 0,197, 1, 2, 0,198, 1, 2, 0,199, 1, 4, 0, 70, 1, 4, 0,200, 1, 2, 0,201, 1, 2, 0,202, 1, + 2, 0,203, 1, 2, 0,204, 1, 7, 0,205, 1, 7, 0,206, 1, 7, 0,207, 1, 7, 0,208, 1, 7, 0,209, 1, 7, 0,210, 1, + 7, 0,211, 1, 7, 0,212, 1, 7, 0,213, 1, 7, 0,214, 1, 0, 0,215, 1, 7, 0,216, 1, 7, 0,217, 1, 7, 0,218, 1, + 4, 0,219, 1, 0, 0,220, 1, 0, 0,105, 1, 0, 0,221, 1, 0, 0, 64, 1, 2, 0,222, 1, 2, 0,223, 1, 2, 0,136, 1, + 2, 0,224, 1, 2, 0,225, 1, 2, 0,226, 1, 7, 0,227, 1, 7, 0,228, 1, 7, 0,229, 1, 7, 0,230, 1, 7, 0,231, 1, + 2, 0,160, 0, 2, 0,161, 0, 55, 0,232, 1, 55, 0,233, 1, 0, 0,234, 1, 0, 0,235, 1, 0, 0,236, 1, 0, 0,237, 1, + 2, 0,238, 1, 2, 0,239, 1, 7, 0,240, 1, 7, 0,241, 1, 51, 0,135, 1, 61, 0, 59, 1, 36, 0, 80, 0, 68, 0,242, 1, + 30, 0,150, 0, 7, 0,243, 1, 7, 0,244, 1, 7, 0,245, 1, 7, 0,246, 1, 7, 0,247, 1, 2, 0,248, 1, 2, 0, 70, 0, + 7, 0,249, 1, 7, 0,250, 1, 7, 0,251, 1, 7, 0,252, 1, 7, 0,253, 1, 7, 0,254, 1, 7, 0,255, 1, 7, 0, 0, 2, + 7, 0, 1, 2, 2, 0, 2, 2, 2, 0, 3, 2, 4, 0, 4, 2, 4, 0,122, 1, 12, 0, 5, 2, 69, 0, 4, 0, 27, 0, 31, 0, + 0, 0, 6, 2, 70, 0, 2, 0, 43, 0,149, 0, 71, 0, 26, 0, 71, 0, 0, 0, 71, 0, 1, 0, 72, 0, 7, 2, 4, 0, 8, 2, + 4, 0, 9, 2, 4, 0, 10, 2, 4, 0, 11, 2, 4, 0, 12, 2, 4, 0, 13, 2, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 14, 2, + 2, 0, 15, 2, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 7, 0, 16, 2, 7, 0, 17, 2, 7, 0, 18, 2, 7, 0, 19, 2, + 7, 0, 20, 2, 7, 0, 21, 2, 7, 0, 22, 2, 7, 0, 23, 0, 7, 0, 23, 2, 7, 0, 24, 2, 73, 0, 20, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 25, 2, 12, 0, 26, 2, 12, 0, 27, 2, 36, 0, 80, 0, 67, 0, 28, 2, 0, 0, 19, 0, + 0, 0, 29, 2, 2, 0, 30, 2, 2, 0,174, 0, 2, 0, 37, 0, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0, 31, 2, + 7, 0, 32, 2, 7, 0, 33, 2, 71, 0, 34, 2, 35, 0, 11, 0, 7, 0, 35, 2, 7, 0, 36, 2, 7, 0, 37, 2, 7, 0,251, 0, + 2, 0, 55, 0, 0, 0, 38, 2, 0, 0, 39, 2, 0, 0, 40, 2, 0, 0, 41, 2, 0, 0, 42, 2, 0, 0, 43, 2, 34, 0, 7, 0, + 7, 0, 44, 2, 7, 0, 36, 2, 7, 0, 37, 2, 2, 0, 40, 2, 2, 0, 43, 2, 7, 0,251, 0, 7, 0, 37, 0, 74, 0, 21, 0, + 74, 0, 0, 0, 74, 0, 1, 0, 2, 0, 17, 0, 2, 0, 45, 2, 2, 0, 43, 2, 2, 0, 19, 0, 2, 0, 46, 2, 2, 0, 47, 2, + 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 50, 2, 2, 0, 51, 2, 2, 0, 52, 2, 2, 0, 53, 2, 7, 0, 54, 2, 7, 0, 55, 2, + 34, 0, 49, 0, 35, 0, 50, 0, 2, 0, 56, 2, 2, 0, 57, 2, 4, 0, 58, 2, 75, 0, 5, 0, 2, 0, 59, 2, 2, 0, 45, 2, + 0, 0, 19, 0, 0, 0, 37, 0, 2, 0, 70, 0, 76, 0, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 7, 0, 60, 2, + 77, 0, 68, 0, 27, 0, 31, 0, 39, 0, 75, 0, 72, 0, 7, 2, 12, 0, 61, 2, 12, 0, 26, 2, 12, 0, 62, 2, 32, 0, 63, 2, + 32, 0, 64, 2, 32, 0, 65, 2, 36, 0, 80, 0, 78, 0, 66, 2, 38, 0, 67, 2, 67, 0, 28, 2, 12, 0, 68, 2, 7, 0, 65, 1, + 7, 0,172, 0, 7, 0, 66, 1, 2, 0,174, 0, 2, 0, 43, 0, 2, 0, 69, 2, 2, 0, 70, 2, 2, 0, 71, 2, 7, 0, 72, 2, + 7, 0, 70, 0, 2, 0, 73, 2, 2, 0, 30, 2, 2, 0, 19, 0, 2, 0, 74, 2, 7, 0, 75, 2, 7, 0, 76, 2, 7, 0, 77, 2, + 2, 0, 48, 2, 2, 0, 49, 2, 2, 0, 78, 2, 2, 0, 79, 2, 4, 0, 80, 2, 34, 0, 81, 2, 2, 0, 23, 0, 2, 0, 95, 0, + 2, 0, 67, 0, 2, 0, 82, 2, 7, 0, 83, 2, 7, 0, 84, 2, 7, 0, 85, 2, 7, 0, 86, 2, 7, 0, 87, 2, 7, 0, 88, 2, + 7, 0, 89, 2, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 92, 2, 0, 0, 93, 2, 79, 0, 94, 2, 80, 0, 95, 2, 0, 0, 96, 2, + 69, 0, 97, 2, 69, 0, 98, 2, 69, 0, 99, 2, 69, 0,100, 2, 4, 0,101, 2, 7, 0,102, 2, 4, 0,103, 2, 4, 0,104, 2, + 76, 0,105, 2, 4, 0,106, 2, 4, 0,107, 2, 75, 0,108, 2, 75, 0,109, 2, 81, 0, 40, 0, 27, 0, 31, 0, 72, 0, 7, 2, + 12, 0,110, 2, 36, 0, 80, 0, 38, 0, 67, 2, 67, 0, 28, 2, 82, 0,111, 2, 83, 0,112, 2, 84, 0,113, 2, 85, 0,114, 2, + 86, 0,115, 2, 87, 0,116, 2, 88, 0,117, 2, 89, 0,118, 2, 81, 0,119, 2, 90, 0,120, 2, 91, 0,121, 2, 92, 0,122, 2, + 92, 0,123, 2, 92, 0,124, 2, 4, 0, 54, 0, 4, 0,125, 2, 4, 0,126, 2, 4, 0,127, 2, 4, 0,128, 2, 2, 0,174, 0, + 2, 0,129, 2, 7, 0, 65, 1, 7, 0,172, 0, 7, 0, 66, 1, 7, 0,130, 2, 4, 0, 69, 2, 2, 0,131, 2, 2, 0, 19, 0, + 2, 0,132, 2, 2, 0,133, 2, 2, 0, 30, 2, 2, 0,134, 2, 93, 0,135, 2, 94, 0,136, 2, 84, 0, 8, 0, 9, 0,137, 2, + 7, 0,138, 2, 4, 0,139, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 82, 0, 7, 0, + 4, 0,143, 2, 4, 0,144, 2, 4, 0,145, 2, 4, 0,146, 2, 2, 0, 45, 2, 0, 0,147, 2, 0, 0, 19, 0, 86, 0, 5, 0, + 4, 0,143, 2, 4, 0,144, 2, 0, 0,148, 2, 0, 0,149, 2, 2, 0, 19, 0, 95, 0, 2, 0, 4, 0,150, 2, 7, 0, 37, 2, + 87, 0, 3, 0, 95, 0,151, 2, 4, 0,152, 2, 4, 0, 19, 0, 85, 0, 6, 0, 7, 0,153, 2, 2, 0,154, 2, 2, 0, 45, 2, + 0, 0, 19, 0, 0, 0,149, 2, 0, 0, 71, 2, 88, 0, 4, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, + 96, 0, 6, 0, 47, 0,137, 2, 0, 0, 19, 0, 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 97, 0, 1, 0, + 7, 0,155, 2, 98, 0, 5, 0, 0, 0,236, 0, 0, 0,182, 0, 0, 0,183, 0, 0, 0,184, 0, 4, 0, 37, 0, 89, 0, 1, 0, + 7, 0,156, 2, 90, 0, 2, 0, 4, 0,157, 2, 4, 0, 17, 0, 83, 0, 7, 0, 7, 0,138, 2, 47, 0,137, 2, 0, 0, 19, 0, + 0, 0,140, 2, 2, 0, 70, 1, 2, 0,141, 2, 2, 0,142, 2, 99, 0, 1, 0, 7, 0,158, 2,100, 0, 1, 0, 4, 0,159, 2, +101, 0, 1, 0, 0, 0,160, 2,102, 0, 1, 0, 7, 0,138, 2,103, 0, 3, 0, 4, 0,161, 2, 0, 0, 92, 0, 7, 0,162, 2, +105, 0, 4, 0, 7, 0,236, 0, 7, 0,182, 0, 7, 0,183, 0, 7, 0,184, 0,106, 0, 1, 0,105, 0,139, 2,107, 0, 5, 0, + 4, 0,163, 2, 4, 0,164, 2, 0, 0, 19, 0, 0, 0, 45, 2, 0, 0, 71, 2,108, 0, 2, 0, 4, 0,165, 2, 4, 0,164, 2, +109, 0, 10, 0,109, 0, 0, 0,109, 0, 1, 0,107, 0,166, 2,106, 0,167, 2,108, 0,168, 2, 4, 0, 54, 0, 4, 0,126, 2, + 4, 0,125, 2, 4, 0, 37, 0, 85, 0,169, 2, 93, 0, 14, 0, 12, 0,170, 2, 85, 0,169, 2, 0, 0,171, 2, 0, 0,172, 2, + 0, 0,173, 2, 0, 0,174, 2, 0, 0,175, 2, 0, 0,176, 2, 0, 0,177, 2, 0, 0, 19, 0, 92, 0,122, 2, 92, 0,124, 2, + 2, 0,178, 2, 0, 0,179, 2, 94, 0, 8, 0, 4, 0,180, 2, 4, 0,181, 2, 82, 0,182, 2, 86, 0,183, 2, 4, 0,126, 2, + 4, 0,125, 2, 4, 0, 54, 0, 4, 0, 37, 0,110, 0, 7, 0,110, 0, 0, 0,110, 0, 1, 0, 4, 0, 17, 0, 4, 0, 70, 1, + 0, 0, 20, 0, 46, 0,134, 0, 0, 0,184, 2,111, 0, 7, 0,110, 0,185, 2, 2, 0,186, 2, 2, 0,170, 2, 2, 0,187, 2, + 2, 0, 90, 0, 9, 0,188, 2, 9, 0,189, 2,112, 0, 3, 0,110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0,113, 0, 5, 0, +110, 0,185, 2, 32, 0,164, 0, 0, 0, 20, 0, 2, 0,190, 2, 0, 0,191, 2,114, 0, 5, 0,110, 0,185, 2, 7, 0, 88, 0, + 7, 0,192, 2, 4, 0,193, 2, 4, 0,194, 2,115, 0, 5, 0,110, 0,185, 2, 32, 0,195, 2, 0, 0, 72, 0, 4, 0, 70, 1, + 4, 0, 19, 0,116, 0, 13, 0,110, 0,185, 2, 32, 0,196, 2, 32, 0,197, 2, 32, 0,198, 2, 32, 0,199, 2, 7, 0,200, 2, + 7, 0,201, 2, 7, 0,192, 2, 7, 0,202, 2, 4, 0,203, 2, 4, 0,204, 2, 4, 0, 90, 0, 4, 0,205, 2,117, 0, 5, 0, +110, 0,185, 2, 2, 0,206, 2, 2, 0, 19, 0, 7, 0,207, 2, 32, 0,208, 2,118, 0, 3, 0,110, 0,185, 2, 7, 0,209, 2, + 4, 0, 90, 0,119, 0, 10, 0,110, 0,185, 2, 7, 0,210, 2, 4, 0,211, 2, 4, 0, 37, 0, 2, 0, 90, 0, 2, 0,212, 2, + 2, 0,213, 2, 2, 0,214, 2, 7, 0,215, 2, 0, 0,216, 2,120, 0, 3, 0,110, 0,185, 2, 7, 0, 37, 0, 4, 0, 17, 0, +121, 0, 6, 0,110, 0,185, 2,122, 0,217, 2,123, 0,218, 2,124, 0,219, 2, 7, 0,220, 2, 4, 0, 17, 0,125, 0, 11, 0, +110, 0,185, 2, 52, 0,221, 2, 7, 0,222, 2, 4, 0,223, 2, 0, 0,216, 2, 7, 0,224, 2, 4, 0,225, 2, 32, 0,226, 2, + 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,126, 0, 10, 0,110, 0,185, 2, 32, 0,229, 2, 47, 0,230, 2, 4, 0, 90, 0, + 4, 0,231, 2, 7, 0,232, 2, 7, 0,233, 2, 0, 0,227, 2, 4, 0,228, 2, 4, 0, 37, 0,127, 0, 3, 0,110, 0,185, 2, + 7, 0,234, 2, 4, 0,235, 2,128, 0, 5, 0,110, 0,185, 2, 7, 0,236, 2, 0, 0,216, 2, 2, 0, 19, 0, 2, 0,237, 2, +129, 0, 8, 0,110, 0,185, 2, 32, 0,164, 0, 7, 0,236, 2, 7, 0,251, 0, 7, 0,106, 0, 0, 0,216, 2, 2, 0, 19, 0, + 2, 0, 17, 0,130, 0, 21, 0,110, 0,185, 2, 32, 0,238, 2, 0, 0,216, 2, 52, 0,221, 2, 32, 0,226, 2, 2, 0, 19, 0, + 2, 0, 37, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0,244, 2, + 7, 0,245, 2, 4, 0,225, 2, 4, 0,228, 2, 0, 0,227, 2, 7, 0,246, 2, 7, 0,247, 2, 7, 0, 43, 0,131, 0, 7, 0, +110, 0,185, 2, 2, 0,248, 2, 2, 0,249, 2, 4, 0, 70, 0, 32, 0,164, 0, 7, 0,250, 2, 0, 0,216, 2,132, 0, 10, 0, +110, 0,185, 2, 32, 0,164, 0, 0, 0,251, 2, 7, 0,252, 2, 7, 0,253, 2, 7, 0,245, 2, 4, 0,254, 2, 4, 0,255, 2, + 7, 0, 0, 3, 0, 0, 20, 0,133, 0, 1, 0,110, 0,185, 2,134, 0, 7, 0,110, 0,185, 2, 46, 0,134, 0,135, 0, 1, 3, +136, 0, 2, 3,137, 0, 3, 3,138, 0, 4, 3, 12, 0, 5, 3,139, 0, 13, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 7, 3, + 85, 0, 8, 3, 85, 0, 9, 3, 85, 0, 10, 3, 85, 0, 11, 3, 82, 0, 12, 3, 4, 0, 13, 3, 4, 0, 14, 3, 7, 0,220, 2, + 7, 0, 37, 0,140, 0, 15, 3,141, 0, 7, 0,110, 0,185, 2, 85, 0, 6, 3, 85, 0, 16, 3,142, 0, 17, 3,143, 0, 15, 3, + 4, 0, 18, 3, 4, 0, 13, 3,144, 0, 4, 0,110, 0,185, 2, 32, 0,164, 0, 4, 0, 19, 3, 4, 0, 37, 0,145, 0, 2, 0, + 4, 0, 20, 3, 7, 0, 37, 2,146, 0, 2, 0, 4, 0,125, 0, 4, 0, 21, 3,147, 0, 20, 0,110, 0,185, 2, 32, 0,164, 0, + 0, 0,216, 2, 2, 0, 22, 3, 2, 0, 23, 3, 2, 0, 19, 0, 2, 0, 37, 0, 7, 0, 24, 3, 7, 0, 25, 3, 4, 0, 54, 0, + 4, 0, 26, 3,146, 0, 27, 3,145, 0, 28, 3, 4, 0, 29, 3, 4, 0, 30, 3, 4, 0, 31, 3, 4, 0, 21, 3, 7, 0, 32, 3, + 7, 0, 33, 3, 7, 0, 34, 3,148, 0, 8, 0,110, 0,185, 2, 59, 0,255, 0,142, 0, 17, 3, 4, 0, 35, 3, 4, 0, 36, 3, + 4, 0, 37, 3, 2, 0, 19, 0, 2, 0, 57, 0,149, 0, 8, 0,110, 0,185, 2, 32, 0, 45, 0, 2, 0, 38, 3, 2, 0, 19, 0, + 2, 0,206, 2, 2, 0, 57, 0, 7, 0, 39, 3, 7, 0, 40, 3,150, 0, 5, 0,110, 0,185, 2, 4, 0, 41, 3, 2, 0, 19, 0, + 2, 0, 42, 3, 7, 0, 43, 3,151, 0, 7, 0,110, 0,185, 2, 85, 0, 44, 3, 4, 0, 45, 3, 0, 0, 46, 3, 0, 0, 47, 3, + 0, 0, 48, 3, 0, 0, 49, 3,152, 0, 3, 0,110, 0,185, 2,153, 0, 50, 3,138, 0, 4, 3,154, 0, 10, 0,110, 0,185, 2, + 32, 0, 51, 3, 32, 0, 52, 3, 0, 0, 53, 3, 7, 0, 54, 3, 2, 0, 55, 3, 2, 0, 56, 3, 0, 0, 57, 3, 0, 0, 58, 3, + 0, 0,191, 2,155, 0, 9, 0,110, 0,185, 2, 32, 0, 59, 3, 0, 0, 53, 3, 7, 0, 60, 3, 7, 0, 61, 3, 0, 0, 70, 1, + 0, 0,206, 2, 0, 0, 62, 3, 0, 0, 37, 0,156, 0, 1, 0,110, 0,185, 2,157, 0, 27, 0, 27, 0, 31, 0, 2, 0, 46, 2, + 2, 0, 47, 2, 2, 0, 63, 3, 2, 0, 19, 0, 2, 0, 64, 3, 2, 0, 65, 3, 2, 0, 66, 3, 2, 0, 70, 0, 0, 0, 67, 3, + 0, 0, 68, 3, 0, 0, 69, 3, 0, 0, 17, 0, 4, 0, 37, 0, 7, 0, 70, 3, 7, 0, 71, 3, 7, 0, 72, 3, 7, 0, 73, 3, + 7, 0, 74, 3, 7, 0, 75, 3, 34, 0, 76, 3, 36, 0, 80, 0, 38, 0, 67, 2, 87, 0,116, 2, 7, 0, 77, 3, 7, 0, 78, 3, +157, 0, 79, 3,158, 0, 3, 0,158, 0, 0, 0,158, 0, 1, 0, 0, 0, 20, 0, 72, 0, 3, 0, 7, 0, 80, 3, 4, 0, 19, 0, + 4, 0, 37, 0, 32, 0,124, 0, 27, 0, 31, 0, 39, 0, 75, 0,159, 0, 81, 3, 2, 0, 17, 0, 2, 0, 82, 3, 4, 0, 83, 3, + 4, 0, 84, 3, 4, 0, 85, 3, 0, 0, 86, 3, 32, 0, 38, 0, 32, 0, 87, 3, 32, 0, 88, 3, 32, 0, 89, 3, 32, 0, 90, 3, + 36, 0, 80, 0, 78, 0, 66, 2, 72, 0, 7, 2,160, 0, 91, 3,160, 0, 92, 3,161, 0, 93, 3, 9, 0, 2, 0,162, 0, 94, 3, + 12, 0, 95, 3, 12, 0,110, 2, 12, 0, 26, 2, 12, 0, 96, 3, 12, 0, 97, 3, 4, 0, 70, 1, 4, 0, 98, 3, 67, 0, 28, 2, + 0, 0, 99, 3, 4, 0, 30, 2, 4, 0,100, 3, 7, 0, 65, 1, 7, 0,101, 3, 7, 0,102, 3, 7, 0,172, 0, 7, 0,103, 3, + 7, 0, 66, 1, 7, 0,104, 3, 7, 0, 16, 2, 7, 0,105, 3, 7, 0,106, 3, 7, 0,107, 3, 7, 0,108, 3, 7, 0,109, 3, + 7, 0,110, 3, 7, 0,252, 2, 7, 0,111, 3, 7, 0,240, 0, 4, 0,112, 3, 2, 0, 19, 0, 2, 0,113, 3, 2, 0,114, 3, + 2, 0,115, 3, 2, 0,116, 3, 2, 0,117, 3, 2, 0,118, 3, 2, 0,119, 3, 2, 0,120, 3, 2, 0,121, 3, 2, 0,122, 3, + 2, 0,123, 3, 4, 0,124, 3, 4, 0,125, 3, 4, 0,126, 3, 4, 0,127, 3, 7, 0,128, 3, 7, 0,102, 2, 7, 0,129, 3, + 7, 0,130, 3, 7, 0,131, 3, 7, 0,132, 3, 7, 0,133, 3, 7, 0,215, 0, 7, 0,134, 3, 7, 0,135, 3, 7, 0,136, 3, + 7, 0,137, 3, 2, 0,138, 3, 0, 0,139, 3, 0, 0,140, 3, 0, 0,141, 3, 0, 0,142, 3, 7, 0,143, 3, 7, 0,144, 3, + 12, 0,145, 3, 12, 0,146, 3, 12, 0,147, 3, 12, 0,148, 3, 7, 0,149, 3, 2, 0,157, 2, 2, 0,150, 3, 7, 0,139, 2, + 4, 0,151, 3, 4, 0,152, 3,163, 0,153, 3, 2, 0,154, 3, 2, 0,247, 0, 7, 0,155, 3, 12, 0,156, 3, 12, 0,157, 3, + 12, 0,158, 3, 12, 0,159, 3,164, 0, 62, 1,165, 0,160, 3, 68, 0,161, 3, 2, 0,162, 3, 2, 0,163, 3, 2, 0,164, 3, + 2, 0,165, 3, 7, 0,131, 2, 2, 0,166, 3, 2, 0,167, 3,153, 0,168, 3,142, 0,169, 3,142, 0,170, 3, 4, 0,171, 3, + 4, 0,172, 3, 4, 0,173, 3, 4, 0, 70, 0, 12, 0,174, 3, 12, 0,175, 3, 12, 0,176, 3,166, 0, 14, 0,166, 0, 0, 0, +166, 0, 1, 0, 32, 0, 38, 0, 7, 0,252, 2, 7, 0, 67, 1, 7, 0,253, 2, 7, 0,245, 2, 0, 0, 20, 0, 4, 0,254, 2, + 4, 0,255, 2, 4, 0,177, 3, 2, 0, 17, 0, 2, 0,178, 3, 7, 0, 0, 3,167, 0, 12, 0,167, 0, 0, 0,167, 0, 1, 0, + 32, 0, 45, 0, 4, 0,179, 3, 4, 0,157, 2, 4, 0,180, 3, 4, 0, 17, 0, 4, 0,181, 3, 7, 0, 67, 1, 7, 0,182, 3, + 7, 0,183, 3, 7, 0,155, 2,164, 0, 40, 0, 4, 0, 19, 0, 2, 0,184, 3, 2, 0,185, 3, 2, 0,245, 2, 2, 0,186, 3, + 2, 0,187, 3, 2, 0,188, 3, 2, 0,189, 3, 2, 0,190, 3, 7, 0,191, 3, 7, 0,192, 3, 7, 0,193, 3, 7, 0,194, 3, + 7, 0,195, 3, 7, 0,196, 3, 7, 0,197, 3, 7, 0,198, 3, 7, 0,199, 3, 7, 0,200, 3, 7, 0,201, 3, 7, 0,202, 3, + 7, 0,203, 3, 7, 0,204, 3, 7, 0,205, 3, 7, 0,206, 3, 7, 0, 37, 0, 7, 0,207, 3, 7, 0,208, 3, 7, 0,209, 3, + 7, 0,210, 3, 7, 0,211, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0,214, 3, 7, 0,215, 3, 7, 0,216, 3, 52, 0,165, 0, +168, 0,217, 3, 7, 0,218, 3, 4, 0,194, 2,169, 0, 5, 0, 68, 0,242, 1, 7, 0,219, 3, 7, 0,220, 3, 2, 0, 19, 0, + 2, 0,221, 3,170, 0, 9, 0,170, 0, 0, 0,170, 0, 1, 0, 4, 0,222, 3, 4, 0,223, 3, 4, 0,224, 3, 4, 0, 19, 0, + 4, 0,225, 3, 9, 0,226, 3, 9, 0,227, 3,138, 0, 19, 0,138, 0, 0, 0,138, 0, 1, 0, 4, 0, 19, 0, 4, 0,228, 3, + 4, 0,229, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,232, 3, 4, 0,233, 3, 4, 0,223, 3, 4, 0,157, 2, 4, 0, 57, 0, + 0, 0,234, 3, 0, 0,235, 3, 0, 0,236, 3, 0, 0,237, 3, 12, 0,238, 3,171, 0,239, 3, 9, 0,240, 3,172, 0, 1, 0, + 7, 0, 44, 2,163, 0, 30, 0, 4, 0, 19, 0, 7, 0,241, 3, 7, 0,242, 3, 7, 0,243, 3, 4, 0,244, 3, 4, 0,245, 3, + 4, 0,246, 3, 4, 0,247, 3, 7, 0,248, 3, 7, 0,249, 3, 7, 0,250, 3, 7, 0,251, 3, 7, 0,252, 3, 7, 0,253, 3, + 7, 0,254, 3, 7, 0,255, 3, 7, 0, 0, 4, 7, 0, 1, 4, 7, 0, 2, 4, 7, 0, 3, 4, 7, 0, 4, 4, 7, 0, 5, 4, + 7, 0, 6, 4, 7, 0, 7, 4, 7, 0, 8, 4, 7, 0, 9, 4, 4, 0, 10, 4, 4, 0, 11, 4, 7, 0, 12, 4, 7, 0,134, 3, +165, 0, 50, 0, 4, 0,223, 3, 4, 0, 13, 4,173, 0, 14, 4,174, 0, 15, 4, 0, 0, 37, 0, 0, 0, 16, 4, 2, 0, 17, 4, + 7, 0, 18, 4, 0, 0, 19, 4, 7, 0, 20, 4, 7, 0, 21, 4, 7, 0, 22, 4, 7, 0, 23, 4, 7, 0, 24, 4, 7, 0, 25, 4, + 7, 0, 26, 4, 7, 0, 27, 4, 7, 0, 28, 4, 2, 0, 29, 4, 0, 0, 30, 4, 2, 0, 31, 4, 7, 0, 32, 4, 7, 0, 33, 4, + 0, 0, 34, 4, 4, 0,126, 0, 4, 0, 35, 4, 4, 0, 36, 4, 2, 0, 37, 4, 2, 0, 38, 4,172, 0, 39, 4, 4, 0, 40, 4, + 4, 0, 82, 0, 7, 0, 41, 4, 7, 0, 42, 4, 7, 0, 43, 4, 7, 0, 44, 4, 2, 0, 45, 4, 2, 0, 46, 4, 2, 0, 47, 4, + 2, 0, 48, 4, 2, 0, 49, 4, 2, 0, 50, 4, 2, 0, 51, 4, 2, 0, 52, 4,175, 0, 53, 4, 7, 0, 54, 4, 7, 0, 55, 4, +138, 0, 56, 4, 12, 0, 5, 3,169, 0, 57, 4,153, 0, 49, 0,152, 0, 58, 4, 2, 0, 17, 0, 2, 0, 59, 4, 2, 0, 60, 4, + 2, 0, 61, 4, 7, 0, 62, 4, 2, 0, 63, 4, 2, 0, 64, 4, 7, 0, 65, 4, 2, 0, 66, 4, 2, 0, 67, 4, 7, 0, 68, 4, + 7, 0, 69, 4, 7, 0, 70, 4, 7, 0, 71, 4, 7, 0, 72, 4, 7, 0, 73, 4, 4, 0, 74, 4, 7, 0, 75, 4, 7, 0, 76, 4, + 7, 0, 77, 4, 81, 0, 78, 4, 81, 0, 79, 4, 81, 0, 80, 4, 0, 0, 81, 4, 7, 0, 82, 4, 7, 0, 83, 4, 36, 0, 80, 0, + 2, 0, 84, 4, 0, 0, 85, 4, 0, 0, 86, 4, 7, 0, 87, 4, 4, 0, 88, 4, 7, 0, 89, 4, 7, 0, 90, 4, 4, 0, 91, 4, + 4, 0, 19, 0, 7, 0, 92, 4, 7, 0, 93, 4, 7, 0, 94, 4, 85, 0, 95, 4, 7, 0, 96, 4, 7, 0, 97, 4, 7, 0, 98, 4, + 7, 0, 99, 4, 7, 0,100, 4, 7, 0,101, 4, 7, 0,102, 4, 4, 0,103, 4,176, 0, 73, 0, 27, 0, 31, 0, 39, 0, 75, 0, + 2, 0,175, 0, 2, 0, 71, 1, 2, 0,105, 1, 2, 0,104, 4, 7, 0,105, 4, 7, 0,106, 4, 7, 0,107, 4, 7, 0,108, 4, + 7, 0,109, 4, 7, 0,110, 4, 7, 0,111, 4, 7, 0,112, 4, 7, 0,163, 1, 7, 0,165, 1, 7, 0,164, 1, 7, 0,113, 4, + 4, 0,114, 4, 7, 0,115, 4, 7, 0,116, 4, 7, 0,117, 4, 7, 0,118, 4, 7, 0,119, 4, 7, 0,120, 4, 7, 0,121, 4, + 2, 0,122, 4, 2, 0, 70, 1, 2, 0,123, 4, 2, 0,124, 4, 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4, + 7, 0,129, 4, 7, 0,130, 4, 7, 0,131, 4, 7, 0,132, 4, 7, 0,133, 4, 7, 0,134, 4, 7, 0,135, 4, 7, 0,136, 4, + 7, 0,137, 4, 7, 0,138, 4, 7, 0,139, 4, 7, 0,140, 4, 2, 0,141, 4, 2, 0,142, 4, 2, 0,143, 4, 2, 0,144, 4, + 7, 0,145, 4, 7, 0,146, 4, 7, 0,147, 4, 7, 0,148, 4, 2, 0,149, 4, 2, 0,150, 4, 2, 0,151, 4, 2, 0,152, 4, + 7, 0,153, 4, 7, 0,154, 4, 7, 0,155, 4, 7, 0,156, 4, 2, 0,157, 4, 2, 0,158, 4, 2, 0,159, 4, 2, 0, 19, 0, + 7, 0,160, 4, 7, 0,161, 4, 36, 0, 80, 0, 51, 0,135, 1, 2, 0,136, 1, 2, 0,137, 1, 30, 0,150, 0,177, 0, 8, 0, +177, 0, 0, 0,177, 0, 1, 0, 4, 0,112, 3, 4, 0,162, 4, 4, 0, 19, 0, 2, 0,163, 4, 2, 0,164, 4, 32, 0,164, 0, +178, 0, 13, 0, 9, 0,165, 4, 9, 0,166, 4, 4, 0,167, 4, 4, 0,168, 4, 4, 0,169, 4, 4, 0,170, 4, 4, 0,171, 4, + 4, 0,172, 4, 4, 0,173, 4, 4, 0,174, 4, 4, 0,175, 4, 4, 0, 37, 0, 0, 0,176, 4,179, 0, 5, 0, 9, 0,177, 4, + 9, 0,178, 4, 4, 0,179, 4, 4, 0, 70, 0, 0, 0,180, 4,180, 0, 15, 0, 4, 0, 17, 0, 4, 0,181, 4, 4, 0,182, 4, + 4, 0,183, 4, 4, 0,184, 4, 4, 0,185, 4, 7, 0,186, 4, 4, 0,187, 4, 4, 0, 90, 0, 4, 0,188, 4, 4, 0,189, 4, + 4, 0,190, 4, 4, 0,191, 4, 4, 0,192, 4, 26, 0, 30, 0,181, 0, 7, 0, 4, 0,193, 4, 7, 0,194, 4, 7, 0,195, 4, + 7, 0,196, 4, 4, 0,197, 4, 2, 0, 19, 0, 2, 0, 37, 0,182, 0, 11, 0,182, 0, 0, 0,182, 0, 1, 0, 0, 0, 20, 0, + 67, 0,198, 4, 68, 0,199, 4, 4, 0,112, 3, 4, 0,200, 4, 4, 0,201, 4, 4, 0, 37, 0, 4, 0,202, 4, 4, 0,203, 4, +183, 0,134, 0,178, 0,204, 4,179, 0,205, 4,180, 0,206, 4, 4, 0, 18, 3, 4, 0,126, 0, 4, 0, 35, 4, 4, 0,207, 4, + 4, 0,208, 4, 4, 0,209, 4, 4, 0,210, 4, 2, 0, 19, 0, 2, 0,211, 4, 7, 0,102, 2, 7, 0,212, 4, 7, 0,213, 4, + 7, 0,214, 4, 7, 0,215, 4, 7, 0,216, 4, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, 2, 0,220, 4, 2, 0,246, 0, + 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4, 2, 0,224, 4, 2, 0,225, 4, 2, 0, 92, 1, 2, 0,106, 0, 2, 0,226, 4, + 2, 0,227, 4, 2, 0,228, 4, 2, 0,229, 4, 2, 0,230, 4, 2, 0,231, 4, 2, 0,232, 4, 2, 0,233, 4, 2, 0,234, 4, + 2, 0, 93, 1, 2, 0,235, 4, 2, 0,236, 4, 2, 0,237, 4, 2, 0,238, 4, 4, 0,239, 4, 4, 0, 70, 1, 4, 0,240, 4, + 2, 0,241, 4, 2, 0,242, 4, 2, 0,243, 4, 2, 0,122, 1, 2, 0,244, 4, 2, 0,245, 4, 2, 0,246, 4, 2, 0,247, 4, + 24, 0,248, 4, 24, 0,249, 4, 23, 0,250, 4, 12, 0,251, 4, 2, 0,252, 4, 2, 0, 37, 0, 7, 0,253, 4, 7, 0,254, 4, + 7, 0,255, 4, 7, 0, 0, 5, 4, 0, 1, 5, 7, 0, 2, 5, 7, 0, 3, 5, 7, 0, 4, 5, 7, 0, 5, 5, 2, 0, 6, 5, + 2, 0, 7, 5, 2, 0, 8, 5, 2, 0, 9, 5, 2, 0, 10, 5, 2, 0, 11, 5, 7, 0, 12, 5, 7, 0, 13, 5, 7, 0, 14, 5, + 2, 0, 15, 5, 2, 0, 16, 5, 2, 0, 17, 5, 2, 0, 18, 5, 2, 0, 19, 5, 2, 0, 20, 5, 2, 0, 21, 5, 2, 0, 22, 5, + 2, 0, 23, 5, 2, 0, 24, 5, 4, 0, 25, 5, 4, 0, 26, 5, 4, 0, 27, 5, 4, 0, 28, 5, 4, 0, 29, 5, 7, 0, 30, 5, + 4, 0, 31, 5, 4, 0, 32, 5, 4, 0, 33, 5, 4, 0, 34, 5, 7, 0, 35, 5, 7, 0, 36, 5, 7, 0, 37, 5, 7, 0, 38, 5, + 7, 0, 39, 5, 7, 0, 40, 5, 7, 0, 41, 5, 7, 0, 42, 5, 7, 0, 43, 5, 0, 0, 44, 5, 0, 0, 45, 5, 4, 0, 46, 5, + 2, 0, 47, 5, 2, 0,239, 1, 0, 0, 48, 5, 7, 0, 49, 5, 7, 0, 50, 5, 4, 0, 51, 5, 4, 0, 52, 5, 7, 0, 53, 5, + 7, 0, 54, 5, 2, 0, 55, 5, 2, 0, 56, 5, 7, 0, 57, 5, 2, 0, 58, 5, 2, 0, 59, 5, 4, 0, 60, 5, 2, 0, 61, 5, + 2, 0, 62, 5, 2, 0, 63, 5, 2, 0, 64, 5, 7, 0, 65, 5, 7, 0, 70, 0, 42, 0, 66, 5, 0, 0, 67, 5,184, 0, 9, 0, +184, 0, 0, 0,184, 0, 1, 0, 0, 0, 20, 0, 2, 0, 68, 5, 2, 0, 69, 5, 2, 0, 70, 5, 2, 0, 43, 0, 7, 0, 71, 5, + 7, 0, 70, 0,185, 0, 7, 0, 2, 0,211, 2, 2, 0, 70, 1, 2, 0,109, 0, 2, 0, 72, 5, 7, 0, 73, 5, 7, 0, 70, 0, + 42, 0, 74, 5,186, 0, 5, 0, 7, 0, 75, 5, 0, 0, 17, 0, 0, 0, 43, 0, 0, 0, 70, 0, 0, 0,239, 1,187, 0, 26, 0, + 7, 0,120, 4, 7, 0,121, 4, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0, 76, 5, 2, 0,137, 1, 2, 0,123, 4, 2, 0,124, 4, + 2, 0,125, 4, 2, 0,126, 4, 2, 0,127, 4, 2, 0,128, 4,186, 0, 77, 5, 2, 0,217, 4, 2, 0,218, 4, 2, 0,219, 4, + 2, 0,220, 4, 2, 0,246, 0, 2, 0,221, 4, 2, 0,222, 4, 2, 0,223, 4,185, 0, 78, 5, 2, 0, 79, 5, 2, 0,224, 4, + 2, 0,227, 4, 2, 0,228, 4,188, 0, 5, 0,188, 0, 0, 0,188, 0, 1, 0, 4, 0,222, 3, 0, 0,234, 3, 4, 0, 19, 0, +189, 0, 6, 0,190, 0, 80, 5, 4, 0, 81, 5, 4, 0, 82, 5, 9, 0, 83, 5, 0, 0, 84, 5, 4, 0, 37, 0,191, 0, 6, 0, +189, 0, 85, 5, 2, 0, 19, 0, 2, 0, 86, 5, 2, 0, 87, 5, 2, 0, 88, 5, 9, 0, 89, 5,192, 0, 4, 0, 2, 0,106, 0, + 2, 0,222, 2, 2, 0,228, 3, 2, 0, 90, 5,193, 0, 14, 0, 2, 0, 19, 0, 2, 0, 91, 5, 2, 0, 92, 5, 2, 0, 93, 5, +192, 0, 94, 5, 9, 0, 89, 5, 7, 0, 95, 5, 7, 0, 57, 0, 4, 0, 96, 5, 4, 0, 97, 5, 4, 0, 98, 5, 4, 0, 99, 5, + 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5,195, 0, 6, 0, +189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0,189, 0, 85, 5, + 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, 9, 0, 89, 5, +197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, 7, 0,114, 5, + 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, 2, 0, 96, 5, + 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, 2, 0,128, 5, + 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5,193, 0,136, 5, + 7, 0,137, 5, 7, 0,138, 5, 7, 0,139, 5, 2, 0,140, 5, 2, 0,141, 5, 0, 0,142, 5, 0, 0,143, 5, 0, 0,144, 5, + 0, 0,145, 5, 0, 0,146, 5, 0, 0,147, 5, 2, 0,148, 5, 7, 0,149, 5, 7, 0,150, 5, 7, 0,151, 5, 7, 0,152, 5, + 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, 0, 0,160, 5, + 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, 0, 0,168, 5, + 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, 2, 0,176, 5, + 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, 4, 0,183, 5, + 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, 7, 0,186, 5, + 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, 47, 0,238, 0, + 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, 4, 0,112, 3, + 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0,181, 0,200, 5, + 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, 2, 0,206, 5, + 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3,200, 0,212, 5, +204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5,205, 0, 35, 0, + 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, 7, 0,221, 5, + 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, 2, 0,227, 5, + 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, 72, 0,234, 5, +162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, 7, 0,241, 5, + 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, 2, 0,232, 5, + 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, 2, 0,253, 5, + 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, 7, 0,112, 0, + 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, 2, 0, 6, 6, + 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, 2, 0, 13, 6, + 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, 0, 0, 20, 6, + 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, 23, 0, 24, 6, + 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, 2, 0, 32, 6, + 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0,255, 5, + 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, + 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, 2, 0, 47, 6, + 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, 2, 0, 52, 6, + 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, 27, 0, 56, 6, +219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, + 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, 7, 0, 60, 6, +162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, 2, 0, 19, 0, + 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, 2, 0, 71, 6, + 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0, +220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, 2, 0, 81, 6, + 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, 4, 0, 88, 6, + 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, 2, 0,133, 0, + 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, 2, 0,239, 1, + 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, 7, 0,122, 1, + 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, + 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6,230, 0, 27, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, 4, 0,104, 6, + 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, 4, 0,110, 6, + 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, 4, 0,118, 6, + 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, 9, 0,124, 6, + 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, 4, 0, 43, 0, + 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,213, 0, 44, 6, + 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, + 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, 9, 0,135, 6, + 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, 2, 0,140, 6, + 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, + 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, 0, 0, 62, 6, + 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, 4, 0,141, 6, + 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, 7, 0,134, 6, + 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, 2, 0,150, 6, + 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, 57, 0,157, 6, +237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, 4, 0, 17, 0, +238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 4, 0, 17, 0, + 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, 0, 0,164, 6, + 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, 2, 0,169, 6, + 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, 7, 0,175, 6, + 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6,241, 0,179, 6, +241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, 2, 0,187, 6, + 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, 0, 0,194, 6, + 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0,244, 0, 8, 0, + 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, 7, 0, 37, 0, +245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6,243, 0,213, 6, +243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6,243, 0,221, 6, +244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, 0, 0,227, 6, + 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, 0, 0,235, 6, + 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, 0, 0,243, 6, + 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, 0, 0,251, 6, + 0, 0,252, 6, 0, 0,253, 6, 0, 0,254, 6, 0, 0,255, 6, 0, 0, 0, 7, 0, 0, 1, 7, 0, 0, 2, 7, 0, 0, 3, 7, + 0, 0, 4, 7, 0, 0, 5, 7, 0, 0, 6, 7, 0, 0, 7, 7, 0, 0, 8, 7, 0, 0, 9, 7, 0, 0, 10, 7, 0, 0, 11, 7, + 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, 0, 0, 19, 7, + 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, 0, 0, 27, 7, + 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, 0, 0, 35, 7, + 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, 2, 0, 37, 0, +248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7,246, 0, 41, 7, +246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7,246, 0, 49, 7, +246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, 4, 0, 57, 7, + 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2,250, 0, 73, 0, + 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, 0, 0, 65, 7, + 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, 4, 0, 72, 7, + 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, 4, 0, 80, 7, + 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, 12, 0, 87, 7, + 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, + 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, 2, 0,103, 7, + 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, 2, 0,111, 7, + 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, 2, 0,119, 7, + 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, 2, 0,141, 5, + 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, 46, 0,134, 0, + 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, 2, 0,137, 7, + 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7,251, 0, 5, 0, +251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0,252, 0, 1, 0, +251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0,253, 0, 1, 0, +254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, 2, 0,153, 7, + 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, 4, 0,159, 7, +253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, 0, 1, 22, 0, + 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, 23, 0, 52, 0, + 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, 2, 0,159, 6, + 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, 2, 1, 0, 0, + 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, 2, 0,178, 7, + 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, 12, 0,180, 7, + 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, 2, 0,186, 7, + 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, 4, 0,192, 7, + 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, 6, 1,197, 7, + 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, 4, 0,109, 6, + 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, 7, 0,206, 7, + 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, 49, 0,137, 0, + 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, 4, 0, 23, 0, + 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, 4, 0,214, 7, + 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, 57, 0,221, 7, + 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, 9, 0,228, 0, + 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, 13, 1, 0, 0, + 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, 4, 0, 88, 0, + 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, 4, 0,230, 7, + 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, 49, 0,137, 0, + 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, 14, 1,240, 7, + 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, 4, 0,248, 7, + 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7,201, 0, 6, 0, + 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, 7, 0, 2, 8, + 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, 7, 0, 8, 8, + 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, 7, 0, 15, 8, + 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, 20, 1, 2, 0, + 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, 4, 0, 24, 8, + 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 23, 1, 8, 0, + 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, 7, 0,126, 0, + 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 2, 0, 29, 4, + 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, 7, 0, 29, 8, + 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, 7, 0, 35, 8, + 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, 2, 0, 42, 8, + 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, 2, 0, 26, 2, + 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, 26, 1, 0, 0, + 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, + 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2,227, 0, 5, 0, + 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, 4, 0, 55, 8, +227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 22, 0, + 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, 29, 1, 4, 0, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, 7, 0, 77, 1, + 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, 0, 0, 64, 8, + 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, 4, 0, 17, 0, + 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, 35, 1, 6, 0, + 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, 0, 0, 20, 0, + 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, 4, 0, 67, 8, + 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, 4, 0, 73, 8, + 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, 0, 0, 77, 8, + 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, 2, 0, 80, 8, + 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, 32, 0, 45, 0, + 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 0, 85, 8, + 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, 4, 0, 91, 8, + 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, 42, 1, 18, 0, + 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, 2, 0, 79, 8, + 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, 2, 0, 15, 0, + 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0,160, 0,100, 8, + 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, 2, 0,103, 8, + 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, 4, 0, 89, 0, + 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, 2, 0,112, 8, + 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, 0, 0, 20, 0, + 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, 2, 0, 19, 0, + 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, 0, 0, 65, 8, + 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, 7, 0,120, 8, + 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, 55, 1, 10, 0, + 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, 2, 0, 64, 0, + 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, 7, 0,236, 2, + 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0,244, 2, + 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, 0, 0,134, 8, + 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, 2, 0, 64, 0, + 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, 7, 0,138, 8, + 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, 2, 0, 43, 0, + 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0,143, 8, + 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0,145, 8, + 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, 65, 1, 2, 0, + 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, 32, 0, 51, 3, + 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 79, 8, + 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, 7, 0,150, 8, + 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, 15, 1, 12, 0, + 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,156, 8, + 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, 7, 0,161, 8, + 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, 0, 0,222, 0, + 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, 7, 0,159, 8, + 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, 2, 0,107, 8, + 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, 69, 1, 1, 0, + 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, 4, 0,131, 0, + 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, 7, 0,176, 8, + 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, 7, 0, 77, 1, + 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, 7, 0,188, 8, + 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, 12, 0,190, 8, + 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, 2, 0,193, 8, + 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, 4, 0,201, 8, + 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, 4, 0,192, 2, + 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, 4, 0,201, 8, + 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, 0, 0, 20, 0, + 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, 4, 0,200, 8, + 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, 9, 0,217, 8, + 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, 2, 0, 37, 0, + 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, 7, 0,225, 8, + 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, 2, 0, 19, 0, + 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, 9, 0,237, 8, + 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, 2, 0,240, 8, + 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, 7, 0,247, 8, + 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3,247, 0,250, 8, +160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, 4, 0,253, 8, +217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, 0, 0, 70, 1, + 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, 80, 1, 8, 0, + 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, 4, 0, 4, 9, + 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, 82, 1, 0, 0, + 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, 7, 0, 8, 9, + 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, 83, 1, 1, 0, + 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, 84, 1, 7, 0, + 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, 85, 1, 15, 0, + 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, 0, 0, 22, 9, + 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, 86, 1, 6, 0, + 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, 32, 0, 12, 9, + 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, + 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, 2, 0, 43, 0, + 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, + 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, 7, 0,127, 8, + 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, 0, 0,251, 2, + 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, 32, 0, 12, 9, + 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, 32, 0,213, 8, + 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, 7, 0, 43, 9, + 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, 32, 0, 12, 9, + 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, 0, 0,251, 2, + 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, 7, 0, 51, 9, + 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, + 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, + 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, + 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, 32, 0, 12, 9, + 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, 32, 0, 51, 3, + 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0,105, 1, 22, 0, +105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0,160, 0,100, 8, + 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0,237, 2, + 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, 7, 0, 44, 2, + 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9,107, 1, 18, 0, +107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 76, 9, + 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, 4, 0, 83, 9, +107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, 0, 0, 87, 9, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, 2, 0,199, 7, + 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, 7, 0, 91, 9, + 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, 24, 0, 99, 9, + 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0,108, 1, 1, 0, +109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, 4, 0,112, 9, + 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, 4, 0,120, 9, + 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, 0, 0,124, 9, + 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, 2, 0,127, 9, + 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, 2, 0,131, 9, + 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, 7, 0,109, 0, + 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, 7, 0,140, 9, + 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, 0, 0, 6, 2, + 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, 7, 0,143, 9, + 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, 2, 0,149, 9, + 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, 0, 0,166, 0, + 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, 0, 0,156, 9, + 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, 9, 0,161, 9, + 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, 0, 0,106, 0, + 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, 7, 0,125, 0, + 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, 2, 0,170, 9, + 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, + 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, 7, 0,175, 9, + 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, 4, 0, 64, 0, + 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9,132, 1, 4, 0, + 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, 64, 0,178, 9, + 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, 7, 0,192, 9, + 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, 4, 0, 17, 0, + 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, 0, 0, 20, 0, + 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, 9, 0,203, 9, +134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, 7, 0,153, 2, + 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, 7, 0,186, 5, + 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, 7, 0,213, 9, + 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, 2, 0, 19, 0, + 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, 2, 0,205, 2, + 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8,136, 1,218, 9, + 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, 7, 0,214, 9, + 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, 39, 0, 75, 0, +143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, 2, 0,138, 3, + 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, 2, 0,223, 4, + 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, 2, 0, 45, 8, + 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, 2, 0,243, 9, + 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, 7, 0,251, 9, + 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, 7, 0,255, 9, + 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, 7, 0, 2, 10, + 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, 7, 0, 9, 10, + 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, + 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, 7, 0, 23, 10, + 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, 7, 0, 27, 10, + 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, 7, 0, 35, 10, + 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, 32, 0, 42, 10, + 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,142, 1, 45, 10, +141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, 12, 0, 50, 10, +134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, 0, 0, 20, 0, + 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, 4, 0, 57, 10, + 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, 2, 0, 64, 10, + 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10,146, 1, 70, 10, + 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, 7, 0, 74, 10, + 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, 7, 0, 79, 10, + 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, 7, 0, 24, 4, + 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, 2, 0, 90, 10, + 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, 7, 0, 95, 10, + 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, 7, 0, 5, 0, + 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, 4, 0,253, 0, + 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, 4, 0, 19, 0, +151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, 2, 0,105, 10, + 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, 2, 0,108, 10, + 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0,110, 10, + 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0,154, 1, 18, 0, + 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, 12, 0,120, 10, + 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, 4, 0, 70, 0, + 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, 4, 0, 37, 0, +215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, 2, 0,135, 10, + 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10,158, 1,140, 10, +159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, 12, 0,146, 10, + 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, 2, 0, 17, 0, + 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, 2, 0,155, 10, + 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, 2, 0,158, 10, + 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0,156, 1, 1, 0, + 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0,223, 0, 1, 0, + 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10,223, 0,167, 10, + 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, + 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, 2, 0,150, 10, + 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, 2, 0,175, 10, + 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, 0, 0,234, 3, + 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, 4, 0, 70, 1, + 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, 4, 0, 19, 0, +167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0,167, 1, 2, 0, + 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, 2, 0,188, 10, + 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, 4, 0, 37, 0, +172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10,173, 1, 9, 0, +173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, 4, 0, 37, 0, + 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, 4, 0, 19, 0, +175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, 78, 1, 3, 9, +174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, 2, 0, 16, 1, + 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10,178, 1, 4, 0, +178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, 12, 0,204, 10, +160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, 7, 0, 88, 0, + 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 2, 0,208, 10, + 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0,180, 1, 1, 0, + 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, 27, 0,133, 6, + 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10,182, 1, 7, 0, +182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10,183, 1, 5, 0, +183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3,160, 0,216, 10, +178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, 2, 0,221, 10, + 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0,185, 1, 1, 0, + 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, 7, 0,226, 10, + 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0,185, 1,224, 10, + 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10,189, 1, 5, 0, +185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, 7, 0,169, 8, + 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0,191, 1, 0, 0, +191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, 4, 0,238, 10, + 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, 4, 0,240, 10, + 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, 7, 0,244, 10, + 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, 7, 0,251, 10, + 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11,192, 1, 2, 11, + 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, 7, 0, 8, 11, + 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, 7, 0, 14, 11, + 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, 2, 0, 20, 11, + 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11,169, 0, 57, 4, +123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, 2, 0, 29, 11, + 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3,142, 0, 17, 3, + 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, 2, 0, 17, 0, + 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; From b6459105b47526cd33851d4e00740fbd9d050ea4 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 28 Oct 2009 18:03:04 +0000 Subject: [PATCH 227/412] OpenGL Render restored. I tried to make it integrate more with regular render but couldn't do it well, it still needs a 3D view to take the settings from, and can't run in a separate thread due to OpenGL. However, it is now rendering to an offscreen buffer which then gets displayed in the image window. This requires FBO's to be available, so a fallback creating a new window is still needed. Currently available from the Render menu in the top header. --- release/scripts/ui/space_info.py | 5 + source/blender/editors/include/ED_view3d.h | 4 + source/blender/editors/screen/SConscript | 2 +- source/blender/editors/screen/screen_ops.c | 319 +++++++++++++++++- .../editors/space_view3d/view3d_draw.c | 158 +++++++-- .../editors/space_view3d/view3d_view.c | 38 ++- source/blender/gpu/GPU_extensions.h | 11 + source/blender/gpu/intern/gpu_extensions.c | 74 +++- source/blender/gpu/intern/gpu_material.c | 2 + source/blender/makesrna/intern/rna_armature.c | 2 +- 10 files changed, 559 insertions(+), 56 deletions(-) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 52d5876a46b..d62ab5b759d 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -206,6 +206,11 @@ class INFO_MT_render(bpy.types.Menu): layout.itemS() + layout.itemO("screen.opengl_render", text="OpenGL Render Image") + layout.item_booleanO("screen.opengl_render", "animation", True, text="OpenGL Render Animation") + + layout.itemS() + layout.itemO("screen.render_view_show") class INFO_MT_help(bpy.types.Menu): diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h index be2822d8c49..2ec9ddf6c52 100644 --- a/source/blender/editors/include/ED_view3d.h +++ b/source/blender/editors/include/ED_view3d.h @@ -139,5 +139,9 @@ void ED_view3d_init_mats_rv3d(struct Object *ob, struct RegionView3D *rv3d); void ED_view3d_scene_layers_update(struct Main *bmain, struct Scene *scene); +int ED_view3d_context_activate(struct bContext *C); +void ED_view3d_draw_offscreen(struct Scene *scene, struct View3D *v3d, struct ARegion *ar, + int winx, int winy, float viewmat[][4], float winmat[][4]); + #endif /* ED_VIEW3D_H */ diff --git a/source/blender/editors/screen/SConscript b/source/blender/editors/screen/SConscript index 847a1cddfb4..afd6ce68b68 100644 --- a/source/blender/editors/screen/SConscript +++ b/source/blender/editors/screen/SConscript @@ -4,7 +4,7 @@ Import ('env') sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf' -incs += ' ../../blenloader ../../windowmanager ../../python ../../makesrna' +incs += ' ../../blenloader ../../windowmanager ../../python ../../makesrna ../../gpu' incs += ' ../../render/extern/include' incs += ' #/intern/guardedalloc #/extern/glew/include' diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index e65ad221501..a1537b2ddf5 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -25,6 +25,9 @@ */ #include +#include + +#include #include "MEM_guardedalloc.h" @@ -41,6 +44,7 @@ #include "DNA_curve_types.h" #include "DNA_scene_types.h" #include "DNA_meta_types.h" +#include "DNA_view3d_types.h" #include "BKE_blender.h" #include "BKE_colortools.h" @@ -58,6 +62,7 @@ #include "BKE_screen.h" #include "BKE_utildefines.h" #include "BKE_sound.h" +#include "BKE_writeavi.h" #include "WM_api.h" #include "WM_types.h" @@ -68,6 +73,7 @@ #include "ED_object.h" #include "ED_screen_types.h" #include "ED_keyframes_draw.h" +#include "ED_view3d.h" #include "RE_pipeline.h" #include "IMB_imbuf.h" @@ -79,6 +85,8 @@ #include "UI_interface.h" #include "UI_resources.h" +#include "GPU_extensions.h" + #include "wm_window.h" #include "screen_intern.h" /* own module include */ @@ -2756,7 +2764,7 @@ static void image_renderinfo_cb(void *rjv, RenderStats *rs) } /* called inside thread! */ -static void image_buffer_rect_update(RenderJob *rj, RenderResult *rr, ImBuf *ibuf, volatile rcti *renrect) +static void image_buffer_rect_update(Scene *scene, RenderResult *rr, ImBuf *ibuf, volatile rcti *renrect) { float x1, y1, *rectf= NULL; int ymin, ymax, xmin, xmax; @@ -2817,7 +2825,7 @@ static void image_buffer_rect_update(RenderJob *rj, RenderResult *rr, ImBuf *ibu rectc= (char *)(ibuf->rect + ibuf->x*rymin + rxmin); /* XXX make nice consistent functions for this */ - if (rj->scene->r.color_mgt_flag & R_COLOR_MANAGEMENT) { + if (scene && (scene->r.color_mgt_flag & R_COLOR_MANAGEMENT)) { for(y1= 0; y1do_update)= 1; } static void image_rect_update(void *rjv, RenderResult *rr, volatile rcti *renrect) @@ -2869,8 +2875,12 @@ static void image_rect_update(void *rjv, RenderResult *rr, volatile rcti *renrec void *lock; ibuf= BKE_image_acquire_ibuf(rj->image, &rj->iuser, &lock); - if(ibuf) - image_buffer_rect_update(rj, rr, ibuf, renrect); + if(ibuf) { + image_buffer_rect_update(rj->scene, rr, ibuf, renrect); + + /* make jobs timer to send notifier */ + *(rj->do_update)= 1; + } BKE_image_release_ibuf(rj->image, lock); } @@ -3008,7 +3018,301 @@ static void SCREEN_OT_render(wmOperatorType *ot) ot->poll= ED_operator_screenactive; - RNA_def_int(ot->srna, "layers", 0, 0, INT_MAX, "Layers", "", 0, INT_MAX); + RNA_def_boolean(ot->srna, "animation", 0, "Animation", ""); +} + +/* ****************************** opengl render *************************** */ + +typedef struct OGLRender { + Render *re; + Scene *scene; + + View3D *v3d; + RegionView3D *rv3d; + ARegion *ar; + + Image *ima; + ImageUser iuser; + + GPUOffScreen *ofs; + int sizex, sizey; + + bMovieHandle *mh; + int cfrao, nfra; + + wmTimer *timer; +} OGLRender; + +static void screen_opengl_render_apply(OGLRender *oglrender) +{ + Scene *scene= oglrender->scene; + ARegion *ar= oglrender->ar; + View3D *v3d= oglrender->v3d; + RegionView3D *rv3d= oglrender->rv3d; + RenderResult *rr; + ImBuf *ibuf; + void *lock; + float winmat[4][4]; + int sizex= oglrender->sizex; + int sizey= oglrender->sizey; + + /* bind */ + GPU_offscreen_bind(oglrender->ofs); + + /* render 3d view */ + if(rv3d->persp==RV3D_CAMOB && v3d->camera) { + RE_GetCameraWindow(oglrender->re, v3d->camera, scene->r.cfra, winmat); + ED_view3d_draw_offscreen(scene, v3d, ar, sizex, sizey, NULL, winmat); + } + else + ED_view3d_draw_offscreen(scene, v3d, ar, sizex, sizey, NULL, NULL); + + /* read in pixels & stamp */ + rr= RE_AcquireResultRead(oglrender->re); + glReadPixels(0, 0, sizex, sizey, GL_RGBA, GL_FLOAT, rr->rectf); + if((scene->r.scemode & R_STAMP_INFO) && (scene->r.stamp & R_STAMP_DRAW)) + BKE_stamp_buf(scene, (unsigned char *)rr->rect32, rr->rectf, rr->rectx, rr->recty, 3); + RE_ReleaseResult(oglrender->re); + + /* update byte from float buffer */ + ibuf= BKE_image_acquire_ibuf(oglrender->ima, &oglrender->iuser, &lock); + if(ibuf) image_buffer_rect_update(NULL, rr, ibuf, NULL); + BKE_image_release_ibuf(oglrender->ima, lock); + + /* unbind */ + GPU_offscreen_unbind(oglrender->ofs); +} + +static int screen_opengl_render_init(bContext *C, wmOperator *op) +{ + /* new render clears all callbacks */ + Scene *scene= CTX_data_scene(C); + RenderResult *rr; + GPUOffScreen *ofs; + OGLRender *oglrender; + int sizex, sizey; + + /* ensure we have a 3d view */ + if(!ED_view3d_context_activate(C)) + return 0; + + /* only one render job at a time */ + if(WM_jobs_test(CTX_wm_manager(C), scene)) + return 0; + + /* stop all running jobs, currently previews frustrate Render */ + WM_jobs_stop_all(CTX_wm_manager(C)); + + /* handle UI stuff */ + WM_cursor_wait(1); + + /* create offscreen buffer */ + sizex= (scene->r.size*scene->r.xsch)/100; + sizey= (scene->r.size*scene->r.ysch)/100; + + view3d_operator_needs_opengl(C); + ofs= GPU_offscreen_create(sizex, sizey); + + if(!ofs) { + BKE_report(op->reports, RPT_ERROR, "Failed to create OpenGL offscreen buffer."); + return 0; + } + + /* allocate opengl render */ + oglrender= MEM_callocN(sizeof(OGLRender), "OGLRender"); + op->customdata= oglrender; + + oglrender->ofs= ofs; + oglrender->sizex= sizex; + oglrender->sizey= sizey; + oglrender->scene= scene; + + oglrender->v3d= CTX_wm_view3d(C); + oglrender->ar= CTX_wm_region(C); + oglrender->rv3d= CTX_wm_region_view3d(C); + + /* create image and image user */ + oglrender->ima= BKE_image_verify_viewer(IMA_TYPE_R_RESULT, "Render Result"); + BKE_image_signal(oglrender->ima, NULL, IMA_SIGNAL_FREE); + + oglrender->iuser.scene= scene; + oglrender->iuser.ok= 1; + + /* create render and render result */ + oglrender->re= RE_NewRender(scene->id.name); + RE_InitState(oglrender->re, NULL, &scene->r, sizex, sizey, NULL); + + rr= RE_AcquireResultWrite(oglrender->re); + if(rr->rectf==NULL) + rr->rectf= MEM_mallocN(sizeof(float)*4*sizex*sizex, "32 bits rects"); + RE_ReleaseResult(oglrender->re); + + return 1; +} + +static void screen_opengl_render_end(bContext *C, OGLRender *oglrender) +{ + Scene *scene= oglrender->scene; + + if(oglrender->mh) { + if(BKE_imtype_is_movie(scene->r.imtype)) + oglrender->mh->end_movie(); + } + + if(oglrender->timer) { + scene->r.cfra= oglrender->cfrao; + scene_update_for_newframe(scene, scene->lay); + + WM_event_remove_timer(CTX_wm_manager(C), CTX_wm_window(C), oglrender->timer); + } + + WM_cursor_wait(0); + WM_event_add_notifier(C, NC_SCENE|ND_RENDER_RESULT, oglrender->scene); + + GPU_offscreen_free(oglrender->ofs); + + MEM_freeN(oglrender); +} + +static int screen_opengl_render_cancel(bContext *C, wmOperator *op) +{ + screen_opengl_render_end(C, op->customdata); + + return OPERATOR_CANCELLED; +} + +static int screen_opengl_render_modal(bContext *C, wmOperator *op, wmEvent *event) +{ + OGLRender *oglrender= op->customdata; + Scene *scene= oglrender->scene; + ImBuf *ibuf; + void *lock; + char name[FILE_MAXDIR+FILE_MAXFILE]; + unsigned int lay; + int ok= 0; + + switch(event->type) { + case ESCKEY: + /* cancel */ + screen_opengl_render_end(C, op->customdata); + return OPERATOR_FINISHED; + case TIMER: + /* render frame? */ + if(oglrender->timer == event->customdata) + break; + default: + /* nothing to do */ + return OPERATOR_RUNNING_MODAL; + } + + /* go to next frame */ + while(CFRAnfra) { + if(scene->lay & 0xFF000000) + lay= scene->lay & 0xFF000000; + else + lay= scene->lay; + + scene_update_for_newframe(scene, lay); + CFRA++; + } + + scene_update_for_newframe(scene, scene->lay); + + /* render into offscreen buffer */ + screen_opengl_render_apply(oglrender); + + /* save to disk */ + ibuf= BKE_image_acquire_ibuf(oglrender->ima, &oglrender->iuser, &lock); + + if(ibuf) { + if(BKE_imtype_is_movie(scene->r.imtype)) { + oglrender->mh->append_movie(&scene->r, CFRA, (int*)ibuf->rect, oglrender->sizex, oglrender->sizey); + printf("Append frame %d", scene->r.cfra); + ok= 1; + } + else { + BKE_makepicstring(scene, name, scene->r.pic, scene->r.cfra, scene->r.imtype); + ok= BKE_write_ibuf(scene, ibuf, name, scene->r.imtype, scene->r.subimtype, scene->r.quality); + + if(ok==0) printf("write error: cannot save %s\n", name); + else printf("saved: %s", name); + } + } + + BKE_image_release_ibuf(oglrender->ima, lock); + + /* movie stats prints have no line break */ + printf("\n"); + + /* go to next frame */ + oglrender->nfra += scene->frame_step; + scene->r.cfra++; + + WM_event_add_notifier(C, NC_SCENE|ND_RENDER_RESULT, oglrender->scene); + + /* stop at the end or on error */ + if(scene->r.cfra > EFRA || !ok) { + screen_opengl_render_end(C, op->customdata); + return OPERATOR_FINISHED; + } + + return OPERATOR_RUNNING_MODAL; +} + +static int screen_opengl_render_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + int anim= RNA_boolean_get(op->ptr, "animation"); + + if(!screen_opengl_render_init(C, op)) + return OPERATOR_CANCELLED; + + if(!anim) { + /* render image */ + screen_opengl_render_apply(op->customdata); + screen_opengl_render_end(C, op->customdata); + screen_set_image_output(C, event->x, event->y); + + return OPERATOR_FINISHED; + } + else { + /* initialize animation */ + OGLRender *oglrender; + Scene *scene; + + oglrender= op->customdata; + scene= oglrender->scene; + + oglrender->mh= BKE_get_movie_handle(scene->r.imtype); + if(BKE_imtype_is_movie(scene->r.imtype)) + oglrender->mh->start_movie(scene, &scene->r, oglrender->sizex, oglrender->sizey); + + oglrender->cfrao= scene->r.cfra; + oglrender->nfra= SFRA; + scene->r.cfra= SFRA; + + WM_event_add_modal_handler(C, op); + oglrender->timer= WM_event_add_timer(CTX_wm_manager(C), CTX_wm_window(C), TIMER, 0.01f); + + screen_set_image_output(C, event->x, event->y); + + return OPERATOR_RUNNING_MODAL; + } +} + +static void SCREEN_OT_opengl_render(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "OpenGL Render"; + ot->description= "OpenGL render active viewport."; + ot->idname= "SCREEN_OT_opengl_render"; + + /* api callbacks */ + ot->invoke= screen_opengl_render_invoke; + ot->modal= screen_opengl_render_modal; + ot->cancel= screen_opengl_render_cancel; + + ot->poll= ED_operator_screenactive; + RNA_def_boolean(ot->srna, "animation", 0, "Animation", ""); } @@ -3307,6 +3611,7 @@ void ED_operatortypes_screen(void) WM_operatortype_append(SCREEN_OT_render); WM_operatortype_append(SCREEN_OT_render_view_cancel); WM_operatortype_append(SCREEN_OT_render_view_show); + WM_operatortype_append(SCREEN_OT_opengl_render); /* new/delete */ WM_operatortype_append(SCREEN_OT_new); diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index 487c55bec9b..64ea574b011 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -1897,28 +1897,23 @@ static CustomDataMask get_viewedit_datamask(bScreen *screen, Scene *scene, Objec return mask; } -void view3d_main_area_draw(const bContext *C, ARegion *ar) +static void view3d_main_area_setup_view(Scene *scene, View3D *v3d, ARegion *ar, float viewmat[][4], float winmat[][4]) { - Scene *scene= CTX_data_scene(C); - View3D *v3d = CTX_wm_view3d(C); - RegionView3D *rv3d= CTX_wm_region_view3d(C); - Scene *sce; - Base *base; - Object *ob; - int retopo= 0, sculptparticle= 0; - Object *obact = OBACT; - char *grid_unit= NULL; + RegionView3D *rv3d= ar->regiondata; + + /* setup window matrices */ + if(winmat) + Mat4CpyMat4(rv3d->winmat, winmat); + else + setwinmatrixview3d(ar, v3d, NULL); /* NULL= no pickrect */ - /* from now on all object derived meshes check this */ - v3d->customdata_mask= get_viewedit_datamask(CTX_wm_screen(C), scene, obact); - - /* shadow buffers, before we setup matrices */ - if(draw_glsl_material(scene, NULL, v3d, v3d->drawtype)) - gpu_update_lamps_shadows(scene, v3d); - - setwinmatrixview3d(ar, v3d, NULL); /* 0= no pick rect */ - setviewmatrixview3d(scene, v3d, rv3d); /* note: calls where_is_object for camera... */ + /* setup view matrix */ + if(viewmat) + Mat4CpyMat4(rv3d->viewmat, viewmat); + else + setviewmatrixview3d(scene, v3d, rv3d); /* note: calls where_is_object for camera... */ + /* update utilitity matrices */ Mat4MulMat4(rv3d->persmat, rv3d->viewmat, rv3d->winmat); Mat4Invert(rv3d->persinv, rv3d->persmat); Mat4Invert(rv3d->viewinv, rv3d->viewmat); @@ -1939,23 +1934,118 @@ void view3d_main_area_draw(const bContext *C, ARegion *ar) else rv3d->pixsize/= (float)ar->winy; } - if(v3d->drawtype > OB_WIRE) { - float col[3]; - UI_GetThemeColor3fv(TH_BACK, col); - glClearColor(col[0], col[1], col[2], 0.0); - glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); - - glLoadIdentity(); - } - else { - float col[3]; - UI_GetThemeColor3fv(TH_BACK, col); - glClearColor(col[0], col[1], col[2], 0.0); - glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); - } - + /* set for opengl */ + glMatrixMode(GL_PROJECTION); + wmLoadMatrix(rv3d->winmat); + + glMatrixMode(GL_MODELVIEW); wmLoadMatrix(rv3d->viewmat); +} + +void ED_view3d_draw_offscreen(Scene *scene, View3D *v3d, ARegion *ar, int winx, int winy, float viewmat[][4], float winmat[][4]) +{ + Scene *sce; + Base *base; + int bwinx, bwiny; + + wmPushMatrix(); + + /* set temporary new size */ + bwinx= ar->winx; + bwiny= ar->winy; + ar->winx= winx; + ar->winy= winy; + + /* set flags */ + G.f |= G_RENDER_OGL; + GPU_free_images(); + + /* set background color */ + glClearColor(scene->world->horr, scene->world->horg, scene->world->horb, 0.0); + glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + + /* setup view matrices */ + view3d_main_area_setup_view(scene, v3d, ar, viewmat, winmat); + + /* set zbuffer */ + if(v3d->drawtype > OB_WIRE) { + v3d->zbuf= TRUE; + glEnable(GL_DEPTH_TEST); + } + else + v3d->zbuf= FALSE; + + /* draw set first */ + if(scene->set) { + for(SETLOOPER(scene->set, base)) { + if(v3d->lay & base->lay) { + UI_ThemeColorBlend(TH_WIRE, TH_BACK, 0.6f); + draw_object(scene, ar, v3d, base, DRAW_CONSTCOLOR|DRAW_SCENESET); + + if(base->object->transflag & OB_DUPLI) + draw_dupli_objects_color(scene, ar, v3d, base, TH_WIRE); + } + } + } + /* then draw not selected and the duplis, but skip editmode object */ + for(base= scene->base.first; base; base= base->next) { + if(v3d->lay & base->lay) { + /* dupli drawing */ + if(base->object->transflag & OB_DUPLI) + draw_dupli_objects(scene, ar, v3d, base); + + draw_object(scene, ar, v3d, base, 0); + } + } + + /* transp and X-ray afterdraw stuff */ + view3d_draw_transp(scene, ar, v3d); + view3d_draw_xray(scene, ar, v3d, 1); // clears zbuffer if it is used! + + /* cleanup */ + if(v3d->zbuf) { + v3d->zbuf= FALSE; + glDisable(GL_DEPTH_TEST); + } + + GPU_free_images(); + + /* restore size */ + ar->winx= bwinx; + ar->winy= bwiny; + + wmPopMatrix(); +} + +void view3d_main_area_draw(const bContext *C, ARegion *ar) +{ + Scene *scene= CTX_data_scene(C); + View3D *v3d = CTX_wm_view3d(C); + RegionView3D *rv3d= CTX_wm_region_view3d(C); + Scene *sce; + Base *base; + Object *ob; + float col[3]; + int retopo= 0, sculptparticle= 0; + Object *obact = OBACT; + char *grid_unit= NULL; + + /* from now on all object derived meshes check this */ + v3d->customdata_mask= get_viewedit_datamask(CTX_wm_screen(C), scene, obact); + + /* shadow buffers, before we setup matrices */ + if(draw_glsl_material(scene, NULL, v3d, v3d->drawtype)) + gpu_update_lamps_shadows(scene, v3d); + + /* clear background */ + UI_GetThemeColor3fv(TH_BACK, col); + glClearColor(col[0], col[1], col[2], 0.0); + glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + + /* setup view matrices */ + view3d_main_area_setup_view(scene, v3d, ar, NULL, NULL); + if(rv3d->rflag & RV3D_CLIPPING) view3d_draw_clipping(rv3d); diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index 300825bfe7d..e2b22afae62 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -1559,39 +1559,53 @@ int game_engine_poll(bContext *C) return CTX_data_mode_enum(C)==CTX_MODE_OBJECT ? 1:0; } -static int game_engine_exec(bContext *C, wmOperator *unused) +int ED_view3d_context_activate(bContext *C) { -#if GAMEBLENDER == 1 - Scene *startscene = CTX_data_scene(C); bScreen *sc= CTX_wm_screen(C); - ScrArea *sa, *prevsa= CTX_wm_area(C); - ARegion *ar, *prevar= CTX_wm_region(C); + ScrArea *sa= CTX_wm_area(C); + ARegion *ar; RegionView3D *rv3d; - rcti cam_frame; - - sa= prevsa; - if(sa->spacetype != SPACE_VIEW3D) { + if(sa->spacetype != SPACE_VIEW3D) for(sa=sc->areabase.first; sa; sa= sa->next) if(sa->spacetype==SPACE_VIEW3D) break; - } if(!sa) - return OPERATOR_CANCELLED; + return 0; for(ar=sa->regionbase.first; ar; ar=ar->next) if(ar->regiontype == RGN_TYPE_WINDOW) break; if(!ar) - return OPERATOR_CANCELLED; + return 0; // bad context switch .. CTX_wm_area_set(C, sa); CTX_wm_region_set(C, ar); rv3d= ar->regiondata; + return 1; +} + +static int game_engine_exec(bContext *C, wmOperator *unused) +{ +#if GAMEBLENDER == 1 + Scene *startscene = CTX_data_scene(C); + ScrArea *sa, *prevsa= CTX_wm_area(C); + ARegion *ar, *prevar= CTX_wm_region(C); + RegionView3D *rv3d; + rcti cam_frame; + + // bad context switch .. + if(!ED_view3d_context_activate(C)) + return OPERATOR_CANCELLED; + + rv3d= CTX_wm_region_view3d(C); + sa= CTX_wm_area(C); + ar= CTX_wm_region(C); + view3d_operator_needs_opengl(C); game_set_commmandline_options(&startscene->gm); diff --git a/source/blender/gpu/GPU_extensions.h b/source/blender/gpu/GPU_extensions.h index a910ff9c3e7..c2af4e8fcb1 100644 --- a/source/blender/gpu/GPU_extensions.h +++ b/source/blender/gpu/GPU_extensions.h @@ -48,6 +48,9 @@ typedef struct GPUTexture GPUTexture; struct GPUFrameBuffer; typedef struct GPUFrameBuffer GPUFrameBuffer; +struct GPUOffScreen; +typedef struct GPUOffScreen GPUOffScreen; + struct GPUShader; typedef struct GPUShader GPUShader; @@ -107,6 +110,14 @@ void GPU_framebuffer_free(GPUFrameBuffer *fb); void GPU_framebuffer_restore(); +/* GPU OffScreen + - wrapper around framebuffer and texture for simple offscreen drawing */ + +GPUOffScreen *GPU_offscreen_create(int width, int height); +void GPU_offscreen_free(GPUOffScreen *ofs); +void GPU_offscreen_bind(GPUOffScreen *ofs); +void GPU_offscreen_unbind(GPUOffScreen *ofs); + /* GPU Shader - only for fragment shaders now - must call texture bind before setting a texture as uniform! */ diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 5c8157be789..5deef4a5200 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -616,7 +616,7 @@ int GPU_framebuffer_texture_attach(GPUFrameBuffer *fb, GPUTexture *tex) } else { glDrawBuffer(GL_COLOR_ATTACHMENT0_EXT); - glReadBuffer(GL_NONE); + glReadBuffer(GL_COLOR_ATTACHMENT0_EXT); } status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT); @@ -727,6 +727,78 @@ void GPU_framebuffer_restore() } } +/* GPUOffScreen */ + +struct GPUOffScreen { + GPUFrameBuffer *fb; + GPUTexture *color; + GPUTexture *depth; +}; + +GPUOffScreen *GPU_offscreen_create(int width, int height) +{ + GPUOffScreen *ofs; + + ofs= MEM_callocN(sizeof(GPUOffScreen), "GPUOffScreen"); + + ofs->fb = GPU_framebuffer_create(); + if(!ofs->fb) { + GPU_offscreen_free(ofs); + return NULL; + } + + ofs->depth = GPU_texture_create_depth(width, height); + if(!ofs->depth) { + GPU_offscreen_free(ofs); + return NULL; + } + + if(!GPU_framebuffer_texture_attach(ofs->fb, ofs->depth)) { + GPU_offscreen_free(ofs); + return NULL; + } + + ofs->color = GPU_texture_create_2D(width, height, NULL); + if(!ofs->color) { + GPU_offscreen_free(ofs); + return NULL; + } + + if(!GPU_framebuffer_texture_attach(ofs->fb, ofs->color)) { + GPU_offscreen_free(ofs); + return NULL; + } + + GPU_framebuffer_restore(); + + return ofs; +} + +void GPU_offscreen_free(GPUOffScreen *ofs) +{ + if(ofs->fb) + GPU_framebuffer_free(ofs->fb); + if(ofs->color) + GPU_texture_free(ofs->color); + if(ofs->depth) + GPU_texture_free(ofs->depth); + + MEM_freeN(ofs); +} + +void GPU_offscreen_bind(GPUOffScreen *ofs) +{ + glDisable(GL_SCISSOR_TEST); + GPU_framebuffer_texture_bind(ofs->fb, ofs->color); +} + +void GPU_offscreen_unbind(GPUOffScreen *ofs) +{ + GPU_framebuffer_texture_unbind(ofs->fb, ofs->color); + GPU_framebuffer_restore(); + glEnable(GL_SCISSOR_TEST); +} + /* GPUShader */ struct GPUShader { diff --git a/source/blender/gpu/intern/gpu_material.c b/source/blender/gpu/intern/gpu_material.c index 0dc17da93a1..0650a0bfa19 100644 --- a/source/blender/gpu/intern/gpu_material.c +++ b/source/blender/gpu/intern/gpu_material.c @@ -1509,6 +1509,7 @@ void GPU_lamp_shadow_buffer_bind(GPULamp *lamp, float viewmat[][4], int *winsize Mat4MulMat4(lamp->persmat, persmat, rangemat); /* opengl */ + glDisable(GL_SCISSOR_TEST); GPU_framebuffer_texture_bind(lamp->fb, lamp->tex); /* set matrices */ @@ -1521,6 +1522,7 @@ void GPU_lamp_shadow_buffer_unbind(GPULamp *lamp) { GPU_framebuffer_texture_unbind(lamp->fb, lamp->tex); GPU_framebuffer_restore(); + glEnable(GL_SCISSOR_TEST); } int GPU_lamp_shadow_layer(GPULamp *lamp) diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c index 889f23e0d39..96dde186260 100644 --- a/source/blender/makesrna/intern/rna_armature.c +++ b/source/blender/makesrna/intern/rna_armature.c @@ -535,7 +535,7 @@ static void rna_def_edit_bone(BlenderRNA *brna) srna= RNA_def_struct(brna, "EditBone", NULL); RNA_def_struct_sdna(srna, "EditBone"); - RNA_def_struct_idproperties_func(srna, "rna_Bone_idproperties"); + RNA_def_struct_idproperties_func(srna, "rna_EditBone_idproperties"); RNA_def_struct_ui_text(srna, "Edit Bone", "Editmode bone in an Armature datablock."); RNA_def_struct_ui_icon(srna, ICON_BONE_DATA); From ce441678debae50624d4422ae5bccab011d9fb59 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Wed, 28 Oct 2009 18:31:13 +0000 Subject: [PATCH 228/412] Fix compilation for r24142. --- source/blender/editors/screen/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/screen/Makefile b/source/blender/editors/screen/Makefile index 00698917be5..87ba3337caa 100644 --- a/source/blender/editors/screen/Makefile +++ b/source/blender/editors/screen/Makefile @@ -49,11 +49,12 @@ CPPFLAGS += -I../../imbuf CPPFLAGS += -I../../python CPPFLAGS += -I../../render/extern/include CPPFLAGS += -I../../blenfont +CPPFLAGS += -I../../gpu CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include -# own include +# own include -CPPFLAGS += -I../include +CPPFLAGS += -I../include ifeq ($(WITH_OPENEXR), true) CPPFLAGS += -DWITH_OPENEXR From c2f9cfb40a740f926d78cbdb20f1f8b09cc7aadd Mon Sep 17 00:00:00 2001 From: Andrea Weikert Date: Wed, 28 Oct 2009 19:53:25 +0000 Subject: [PATCH 229/412] 2.5 Sequencer New Operator for 'Move current frame to next/previous edit point' Keymap: PageUp/PageDown (small Durian wish) --- .../editors/space_sequencer/sequencer_edit.c | 116 ++++++++++++++++++ .../space_sequencer/sequencer_intern.h | 2 + .../editors/space_sequencer/sequencer_ops.c | 5 + 3 files changed, 123 insertions(+) diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index 80b018eec66..d2d4b7ac2c4 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2445,3 +2445,119 @@ void SEQUENCER_OT_view_selected(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER; } + + +static int find_next_prev_edit(Scene *scene, int cfra, int side) +{ + Editing *ed= seq_give_editing(scene, FALSE); + Sequence *seq,*best_seq = NULL,*frame_seq = NULL; + + int dist, best_dist; + best_dist = MAXFRAME*2; + + if(ed==NULL) return cfra; + + for(seq= ed->seqbasep->first; seq; seq= seq->next) { + dist = MAXFRAME*2; + + switch (side) { + case SEQ_SIDE_LEFT: + if (seq->startdisp < cfra) { + dist = cfra - seq->startdisp; + } + break; + case SEQ_SIDE_RIGHT: + if (seq->startdisp > cfra) { + dist = seq->startdisp - cfra; + } else if (seq->startdisp == cfra) { + frame_seq=seq; + } + break; + } + + if (dist < best_dist) { + best_dist = dist; + best_seq = seq; + } + } + + /* if no sequence to the right is found and the + frame is on the start of the last sequence, + move to the end of the last sequence */ + if (frame_seq) cfra = frame_seq->enddisp; + + return best_seq ? best_seq->startdisp : cfra; +} + +static int next_prev_edit_internal(Scene *scene, int side) { + Editing *ed= seq_give_editing(scene, FALSE); + int change=0; + int cfra = CFRA; + int nfra= find_next_prev_edit(scene, cfra, side); + + if (nfra != cfra) { + CFRA = nfra; + change= 1; + } + + return change; +} + +/* select less operator */ +static int sequencer_next_edit_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + + if (next_prev_edit_internal(scene, SEQ_SIDE_RIGHT)) { + ED_area_tag_redraw(CTX_wm_area(C)); + WM_event_add_notifier(C, NC_SCENE|ND_FRAME, scene); + } + + return OPERATOR_FINISHED; +} + +void SEQUENCER_OT_next_edit(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Next Edit"; + ot->idname= "SEQUENCER_OT_next_edit"; + ot->description="Move frame to next edit point."; + + /* api callbacks */ + ot->exec= sequencer_next_edit_exec; + ot->poll= ED_operator_sequencer_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ +} + +/* move frame to previous edit point operator */ +static int sequencer_previous_edit_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + + if (next_prev_edit_internal(scene, SEQ_SIDE_LEFT)) { + ED_area_tag_redraw(CTX_wm_area(C)); + } + + return OPERATOR_FINISHED; +} + +void SEQUENCER_OT_previous_edit(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Previous Edit"; + ot->idname= "SEQUENCER_OT_previous_edit"; + ot->description="Move frame to previous edit point."; + + /* api callbacks */ + ot->exec= sequencer_previous_edit_exec; + ot->poll= ED_operator_sequencer_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ +} \ No newline at end of file diff --git a/source/blender/editors/space_sequencer/sequencer_intern.h b/source/blender/editors/space_sequencer/sequencer_intern.h index d45d7bf4d18..c69a57931b9 100644 --- a/source/blender/editors/space_sequencer/sequencer_intern.h +++ b/source/blender/editors/space_sequencer/sequencer_intern.h @@ -91,6 +91,8 @@ void SEQUENCER_OT_meta_toggle(struct wmOperatorType *ot); void SEQUENCER_OT_meta_make(struct wmOperatorType *ot); void SEQUENCER_OT_meta_separate(struct wmOperatorType *ot); void SEQUENCER_OT_snap(struct wmOperatorType *ot); +void SEQUENCER_OT_previous_edit(struct wmOperatorType *ot); +void SEQUENCER_OT_next_edit(struct wmOperatorType *ot); void SEQUENCER_OT_view_all(struct wmOperatorType *ot); void SEQUENCER_OT_view_selected(struct wmOperatorType *ot); diff --git a/source/blender/editors/space_sequencer/sequencer_ops.c b/source/blender/editors/space_sequencer/sequencer_ops.c index 58ac143d349..0e4a8df04c6 100644 --- a/source/blender/editors/space_sequencer/sequencer_ops.c +++ b/source/blender/editors/space_sequencer/sequencer_ops.c @@ -77,6 +77,8 @@ void sequencer_operatortypes(void) WM_operatortype_append(SEQUENCER_OT_meta_make); WM_operatortype_append(SEQUENCER_OT_meta_separate); WM_operatortype_append(SEQUENCER_OT_snap); + WM_operatortype_append(SEQUENCER_OT_next_edit); + WM_operatortype_append(SEQUENCER_OT_previous_edit); WM_operatortype_append(SEQUENCER_OT_view_all); WM_operatortype_append(SEQUENCER_OT_view_selected); @@ -142,6 +144,9 @@ void sequencer_keymap(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "SEQUENCER_OT_view_all", HOMEKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "SEQUENCER_OT_view_selected", PADPERIOD, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_next_edit", PAGEUPKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_previous_edit", PAGEDOWNKEY, KM_PRESS, 0, 0); + /* Mouse selection, a bit verbose :/ */ WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); From 3187e365d90f5c0e46d721370c0d381f83813c66 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Wed, 28 Oct 2009 20:30:33 +0000 Subject: [PATCH 230/412] Gimbal Transform orientations Will use rotation gimbal axis when an object or bone set to Euler rotation mode is selected (global axis otherwise) Use case: being able to do rotations that only affect one animation curve in the 3d view instead of just in the curve editor. I'm committing this right now despite what follows because it's already useful as is. Known bug: manipulator arrows can look slightly skewed (not really a big problem), but more importantly, rotation circles for the rotation manipulator are skewed and will not perfectly reflect the rotation axis (it will still use the correct one though). That will be fixed shortly. To do: This orientation should act like Local, where each object/bone uses its own orientation and not just the one of the active object/bone. Note: Saved files with custom orientations might end up with other orientations selected when being opened up. I don't think it's that useful to make a do_version for that, but I can if warranted. --- source/blender/blenlib/BLI_arithb.h | 2 +- source/blender/blenlib/intern/arithb.c | 63 +++++++++++++++++ .../editors/transform/transform_constraints.c | 4 ++ .../editors/transform/transform_manipulator.c | 70 ++++++++++++++++++- .../transform/transform_orientations.c | 10 ++- source/blender/makesdna/DNA_view3d_types.h | 3 +- source/blender/makesrna/intern/rna_space.c | 2 + 7 files changed, 147 insertions(+), 7 deletions(-) diff --git a/source/blender/blenlib/BLI_arithb.h b/source/blender/blenlib/BLI_arithb.h index fdccb3854a6..901caaee15f 100644 --- a/source/blender/blenlib/BLI_arithb.h +++ b/source/blender/blenlib/BLI_arithb.h @@ -218,7 +218,7 @@ void Mat4ToEul(float tmat[][4],float *eul); void EulToQuat(float *eul, float *quat); void Mat3ToCompatibleEul(float mat[][3], float *eul, float *oldrot); - +void EulToGimbalAxis(float gmat[][3], float *eul, short order); void compatible_eul(float *eul, float *oldrot); diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c index 6c9ae78bac4..0d3304557c3 100644 --- a/source/blender/blenlib/intern/arithb.c +++ b/source/blender/blenlib/intern/arithb.c @@ -3310,6 +3310,69 @@ void Mat3ToCompatibleEul(float mat[][3], float *eul, float *oldrot) VecCopyf(eul, eul1); } +} + +/* the matrix is written to as 3 axis vectors */ +void EulToGimbalAxis(float gmat[][3], float *eul, short order) +{ + RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); + short R_order[3]; + short R_order2[3]; + + float quat[4]; + float teul[3]; + float tvec[3]; + int i, a; + + R_order2[R->i]= 0; + R_order2[R->j]= 1; + R_order2[R->k]= 2; + + R_order[0]= R->i; + R_order[1]= R->j; + R_order[2]= R->k; + + for(i= 0; i<3; i++) { + tvec[0]= tvec[1]= tvec[2]= 0.0f; + tvec[i] = 1.0f; + + VecCopyf(teul, eul); + + for(a= R_order2[i]; a >= 1; a--) + teul[R_order[a-1]]= 0.0f; + + EulOToQuat(teul, order, quat); + NormalQuat(quat); + QuatMulVecf(quat, tvec); + Normalize(tvec); + + VecCopyf(gmat[i], tvec); + } + + +#if 0 + + for(i= 0; i<3; i++) { + tvec[0]= tvec[1]= tvec[2]= 0.0f; + tvec[i] = 1.0f; + + VecCopyf(teul, eul); + + for(a= R_order2[i]; a >= 1; a--) + teul[R_order[a-1]]= 0.0f; + + EulToQuat(teul, quat); + NormalQuat(quat); + QuatMulVecf(quat, tvec); + Normalize(tvec); + + VecCopyf(gmat[i], tvec); + } +#endif + + + + } /* ************ AXIS ANGLE *************** */ diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c index 1143203217b..f80084f7820 100644 --- a/source/blender/editors/transform/transform_constraints.c +++ b/source/blender/editors/transform/transform_constraints.c @@ -575,6 +575,10 @@ void setUserConstraint(TransInfo *t, short orientation, int mode, const char fte sprintf(text, ftext, "view"); setConstraint(t, t->spacemtx, mode, text); break; + case V3D_MANIP_GIMBAL: + sprintf(text, ftext, "gimbal"); + setConstraint(t, t->spacemtx, mode, text); + break; default: /* V3D_MANIP_CUSTOM */ sprintf(text, ftext, t->spacename); setConstraint(t, t->spacemtx, mode, text); diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index bdf0a91bf89..2247977ef87 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -175,6 +175,61 @@ static void stats_editbone(View3D *v3d, EditBone *ebo) protectflag_to_drawflags(OB_LOCK_LOC|OB_LOCK_ROT|OB_LOCK_SCALE, &v3d->twdrawflag); } + +static int test_rotmode_euler(short rotmode) +{ + return (ELEM(rotmode, ROT_MODE_AXISANGLE, ROT_MODE_QUAT)) ? 0:1; +} + +void gimbalAxis(Object *ob, float gmat[][3]) +{ + if(ob->mode & OB_MODE_POSE) + { + bPoseChannel *pchan= NULL; + + /* use channels to get stats */ + for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { + if (pchan->bone && pchan->bone->flag & BONE_ACTIVE) { + if(test_rotmode_euler(pchan->rotmode)) { + break; + } + } + } + + if(pchan) { + int i; + + EulToGimbalAxis(gmat, pchan->eul, pchan->rotmode); + + for (i=0; i<3; i++) + Mat3MulVecfl(pchan->bone->bone_mat, gmat[i]); + + if(pchan->parent) { + bPoseChannel *pchan_par= pchan->parent; + + float tmat[3][3]; + Mat3CpyMat4(tmat, pchan_par->pose_mat); + + for (i=0; i<3; i++) + Mat3MulVecfl(tmat, gmat[i]); + } + + /* needed if object trans isnt identity */ + for (i=0; i<3; i++) { + float tmat[3][3]; + Mat3CpyMat4(tmat, ob->obmat); + Mat3MulVecfl(tmat, gmat[i]); + } + } + } + else { + if(test_rotmode_euler(ob->rotmode)) { + EulToGimbalAxis(gmat, ob->rot, ob->rotmode); + } + } +} + + /* centroid, boundbox, of selection */ /* returns total items selected */ int calc_manipulator_stats(const bContext *C) @@ -416,6 +471,14 @@ int calc_manipulator_stats(const bContext *C) case V3D_MANIP_GLOBAL: break; /* nothing to do */ + case V3D_MANIP_GIMBAL: + { + float mat[3][3]; + Mat3One(mat); + gimbalAxis(ob, mat); + Mat4CpyMat3(rv3d->twmat, mat); + break; + } case V3D_MANIP_NORMAL: if(obedit || ob->mode & OB_MODE_POSE) { float mat[3][3]; @@ -1404,9 +1467,10 @@ void BIF_draw_manipulator(const bContext *C) int totsel; if(!(v3d->twflag & V3D_USE_MANIPULATOR)) return; - if(G.moving && (G.moving & G_TRANSFORM_MANIP)==0) return; +// if(G.moving && (G.moving & G_TRANSFORM_MANIP)==0) return; - if(G.moving==0) { +// if(G.moving==0) { + { v3d->twflag &= ~V3D_DRAW_MANIPULATOR; totsel= calc_manipulator_stats(C); @@ -1454,7 +1518,7 @@ void BIF_draw_manipulator(const bContext *C) else draw_manipulator_rotate_cyl(v3d, rv3d, 0, drawflags, v3d->twtype, MAN_RGB); } else - draw_manipulator_rotate(v3d, rv3d, G.moving, drawflags, v3d->twtype); + draw_manipulator_rotate(v3d, rv3d, 0 /* G.moving*/, drawflags, v3d->twtype); glDisable(GL_BLEND); } diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index c9344b97fb2..e790b38dd67 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -434,7 +434,7 @@ EnumPropertyItem *BIF_enumTransformOrientation(bContext *C) } char * BIF_menustringTransformOrientation(const bContext *C, char *title) { - char menu[] = "%t|Global%x0|Local%x1|Normal%x2|View%x3"; + char menu[] = "%t|Global%x0|Local%x1|Gimbal%x4|Normal%x2|View%x3"; ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts; int i = V3D_MANIP_CUSTOM; @@ -510,6 +510,7 @@ static int count_bone_select(bArmature *arm, ListBase *lb, int do_it) return total; } +extern void gimbalAxis(Object *ob, float gimbal_vecs[][3]); void initTransformOrientation(bContext *C, TransInfo *t) { View3D *v3d = CTX_wm_view3d(C); @@ -522,7 +523,12 @@ void initTransformOrientation(bContext *C, TransInfo *t) case V3D_MANIP_GLOBAL: strcpy(t->spacename, "global"); break; - + + case V3D_MANIP_GIMBAL: + Mat3One(t->spacemtx); + if(ob) + gimbalAxis(ob, t->spacemtx); + break; case V3D_MANIP_NORMAL: if(obedit || ob->mode & OB_MODE_POSE) { float mat[3][3]; diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h index 564d6749c16..422c56fe4c1 100644 --- a/source/blender/makesdna/DNA_view3d_types.h +++ b/source/blender/makesdna/DNA_view3d_types.h @@ -263,7 +263,8 @@ typedef struct View3D { #define V3D_MANIP_LOCAL 1 #define V3D_MANIP_NORMAL 2 #define V3D_MANIP_VIEW 3 -#define V3D_MANIP_CUSTOM 4 /* anything of value 4 or higher is custom */ +#define V3D_MANIP_GIMBAL 4 +#define V3D_MANIP_CUSTOM 5 /* anything of value 5 or higher is custom */ /* View3d->twflag */ /* USE = user setting, DRAW = based on selection */ diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index e46ba16e3d9..43172f0a1e8 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -77,6 +77,7 @@ static EnumPropertyItem draw_channels_items[] = { static EnumPropertyItem transform_orientation_items[] = { {V3D_MANIP_GLOBAL, "GLOBAL", 0, "Global", "Align the transformation axes to world space"}, {V3D_MANIP_LOCAL, "LOCAL", 0, "Local", "Align the transformation axes to the selected objects' local space"}, + {V3D_MANIP_GIMBAL, "GIMBAL", 0, "Gimbal", "Align each axis to the euler rotation axis as used for input"}, {V3D_MANIP_NORMAL, "NORMAL", 0, "Normal", "Align the transformation axes to average normal of selected elements (bone Y axis for pose mode)"}, {V3D_MANIP_VIEW, "VIEW", 0, "View", "Align the transformation axes to the window"}, {V3D_MANIP_CUSTOM, "CUSTOM", 0, "Custom", "Use a custom transform orientation"}, @@ -169,6 +170,7 @@ EnumPropertyItem *rna_TransformOrientation_itemf(bContext *C, PointerRNA *ptr, i RNA_enum_items_add_value(&item, &totitem, transform_orientation_items, V3D_MANIP_GLOBAL); RNA_enum_items_add_value(&item, &totitem, transform_orientation_items, V3D_MANIP_NORMAL); + RNA_enum_items_add_value(&item, &totitem, transform_orientation_items, V3D_MANIP_GIMBAL); RNA_enum_items_add_value(&item, &totitem, transform_orientation_items, V3D_MANIP_LOCAL); RNA_enum_items_add_value(&item, &totitem, transform_orientation_items, V3D_MANIP_VIEW); From 40cc202dac88997644afe78804a124040d4ae867 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Wed, 28 Oct 2009 20:54:20 +0000 Subject: [PATCH 231/412] Comment out "forked" parameter for extrude_mode macro operator (it doesn't work yet and give warning in console) --- release/scripts/ui/space_view3d.py | 7 ++++--- source/blender/editors/armature/armature_ops.c | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index e630ca0b6bd..be8cc305eea 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1130,9 +1130,10 @@ class VIEW3D_MT_edit_armature(bpy.types.Menu): layout.itemS() layout.itemO("armature.extrude_move") - - if arm.x_axis_mirror: - layout.item_booleanO("armature.extrude_move", "forked", True, text="Extrude Forked") + +# EXTRUDE FORKED DOESN'T WORK YET +# if arm.x_axis_mirror: +# layout.item_booleanO("armature.extrude_move", "forked", True, text="Extrude Forked") layout.itemO("armature.duplicate_move") layout.itemO("armature.merge") diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 71b54871be9..790b0a39d41 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -236,7 +236,7 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "ARMATURE_OT_duplicate", DKEY, KM_PRESS, KM_SHIFT, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, 0, 0); kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, KM_SHIFT, 0); - RNA_boolean_set(kmi->ptr, "forked", 1); // XXX this doesn't work ok for macros it seems... + // RNA_boolean_set(kmi->ptr, "forked", 1); // XXX this doesn't work ok for macros it seems... WM_keymap_add_item(keymap, "ARMATURE_OT_click_extrude", LEFTMOUSE, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_fill", FKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_merge", MKEY, KM_PRESS, KM_ALT, 0); From 3ff0032ec86949e8a883d50c63006cb7329459eb Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Wed, 28 Oct 2009 22:14:31 +0000 Subject: [PATCH 232/412] 2.5 Nodes: * Wraped Texture Nodes: Output and Bricks. * Show Quality Slider (Composite > File Output) only for JPEG. --- source/blender/editors/space_node/drawnode.c | 69 +++---------------- source/blender/makesrna/intern/rna_nodetree.c | 1 + 2 files changed, 11 insertions(+), 59 deletions(-) diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 70f603f8f94..0326e32e0e0 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -1496,8 +1496,8 @@ static void node_composit_buts_file_output(uiLayout *layout, PointerRNA *ptr) uiItemR(row, NULL, 0, ptr, "exr_half", 0); uiItemR(row, "", 0, ptr, "exr_codec", 0); } - else { - uiItemR(row, NULL, 0, ptr, "quality", 0); + else if (RNA_enum_get(ptr, "image_type")== R_JPEG90) { + uiItemR(row, NULL, 0, ptr, "quality", UI_ITEM_R_SLIDER); } row= uiLayoutRow(layout, 1); @@ -1698,43 +1698,15 @@ static void node_composit_set_butfunc(bNodeType *ntype) static void node_texture_buts_bricks(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - rctf *butr= &node->butr; - short w = butr->xmax-butr->xmin; - short ofw = 32; + uiLayout *col; - uiBlockBeginAlign(block); + col= uiLayoutColumn(layout, 1); + uiItemR(col, "Offset", 0, ptr, "offset", 0); + uiItemR(col, "Frequency", 0, ptr, "offset_frequency", 0); - /* Offset */ - uiDefButF( - block, NUM, B_NODE_EXEC, "Offset", - butr->xmin, butr->ymin+20, w-ofw, 20, - &node->custom3, - 0, 1, 0.25, 2, - "Offset amount" ); - uiDefButS( - block, NUM, B_NODE_EXEC, "", - butr->xmin+w-ofw, butr->ymin+20, ofw, 20, - &node->custom1, - 2, 99, 0, 0, - "Offset every N rows" ); - - /* Squash */ - uiDefButF( - block, NUM, B_NODE_EXEC, "Squash", - butr->xmin, butr->ymin+0, w-ofw, 20, - &node->custom4, - 0, 99, 0.25, 2, - "Stretch amount" ); - uiDefButS( - block, NUM, B_NODE_EXEC, "", - butr->xmin+w-ofw, butr->ymin+0, ofw, 20, - &node->custom2, - 2, 99, 0, 0, - "Stretch every N rows" ); - - uiBlockEndAlign(block); + col= uiLayoutColumn(layout, 1); + uiItemR(col, "Squash", 0, ptr, "squash", 0); + uiItemR(col, "Frequency", 0, ptr, "squash_frequency", 0); } /* Copied from buttons_shading.c -- needs unifying */ @@ -1865,28 +1837,7 @@ static void node_texture_buts_image(uiLayout *layout, PointerRNA *ptr) static void node_texture_buts_output(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - rctf *butr= &node->butr; - uiBut *bt; - short width; - char *name = ((TexNodeOutput*)node->storage)->name; - - uiBlockBeginAlign(block); - - width = (short)(butr->xmax - butr->xmin); - - bt = uiDefBut( - block, TEX, B_NOP, - "Name:", - butr->xmin, butr->ymin, - width, 19, - name, 0, 31, - 0, 0, - "Name this output" - ); - - uiBlockEndAlign(block); + uiItemR(layout, "", 0, ptr, "output_name", 0); } /* only once called */ diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c index 913c4c3aa7c..068aa4d72d1 100644 --- a/source/blender/makesrna/intern/rna_nodetree.c +++ b/source/blender/makesrna/intern/rna_nodetree.c @@ -914,6 +914,7 @@ static void def_cmp_output_file(StructRNA *srna) prop = RNA_def_property(srna, "quality", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "quality"); + RNA_def_property_range(prop, 1, 100); RNA_def_property_ui_text(prop, "Quality", ""); prop = RNA_def_property(srna, "start_frame", PROP_INT, PROP_NONE); From 2aa2f532653aa4993cb68a44f13e78d33d35d30e Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Wed, 28 Oct 2009 23:47:56 +0000 Subject: [PATCH 233/412] * Added missing "Passes" Button for AAO, reported by nudelZ. * Some Layout tweaks for Cloth Panel, put Quality option to top. Patch by nudelZ. --- release/scripts/ui/buttons_physics_cloth.py | 27 +++++++++++---------- release/scripts/ui/buttons_world.py | 1 + 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/release/scripts/ui/buttons_physics_cloth.py b/release/scripts/ui/buttons_physics_cloth.py index e25497b3713..bcf1d3b8316 100644 --- a/release/scripts/ui/buttons_physics_cloth.py +++ b/release/scripts/ui/buttons_physics_cloth.py @@ -50,11 +50,25 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel): split = layout.split() col = split.column() + + col.itemL(text="Quality:") + col.itemR(cloth, "quality", text="Steps",slider=True) + col.itemL(text="Material:") sub = col.column(align=True) sub.itemR(cloth, "mass") sub.itemR(cloth, "structural_stiffness", text="Structural") sub.itemR(cloth, "bending_stiffness", text="Bending") + + col = split.column() + + col.itemL(text="Presets:") + col.itemL(text="TODO!") + + col.itemL(text="Damping:") + sub = col.column(align=True) + sub.itemR(cloth, "spring_damping", text="Spring") + sub.itemR(cloth, "air_damping", text="Air") col.itemR(cloth, "pin_cloth", text="Pin") sub = col.column(align=True) @@ -62,19 +76,6 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel): sub.itemR(cloth, "pin_stiffness", text="Stiffness") sub.item_pointerR(cloth, "mass_vertex_group", ob, "vertex_groups", text="") - col = split.column() - - col.itemL(text="Damping:") - sub = col.column(align=True) - sub.itemR(cloth, "spring_damping", text="Spring") - sub.itemR(cloth, "air_damping", text="Air") - - col.itemL(text="Presets...") - col.itemL(text="TODO!") - - col.itemL(text="Quality:") - col.itemR(cloth, "quality", text="Steps",slider=True) - # Disabled for now """ if cloth.mass_vertex_group: diff --git a/release/scripts/ui/buttons_world.py b/release/scripts/ui/buttons_world.py index b64efc1048d..abf2a139c06 100644 --- a/release/scripts/ui/buttons_world.py +++ b/release/scripts/ui/buttons_world.py @@ -155,6 +155,7 @@ class WORLD_PT_ambient_occlusion(WorldButtonsPanel): col = split.column() col.itemL(text="Sampling:") + col.itemR(ao, "passes") col.itemR(ao, "error_tolerance", text="Error") col.itemR(ao, "pixel_cache") col.itemR(ao, "correction") From 40731af9d0b85e3cf93e46e48b814faa06aac74b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 09:14:20 +0000 Subject: [PATCH 234/412] use objects rather then bases where possible, use context rather then OBACT macro --- source/blender/editors/animation/keyframing.c | 3 +- source/blender/editors/animation/keyingsets.c | 6 +- source/blender/editors/object/object_add.c | 3 +- source/blender/editors/object/object_edit.c | 16 +-- .../blender/editors/object/object_relations.c | 36 +++--- .../blender/editors/object/object_transform.c | 103 ++++++++---------- .../editors/space_view3d/view3d_snap.c | 29 ++--- 7 files changed, 88 insertions(+), 108 deletions(-) diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 6a16d6d0ee1..6aa9bb24fcd 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -1187,9 +1187,8 @@ static int delete_key_v3d_exec (bContext *C, wmOperator *op) float cfra= (float)CFRA; // XXX for now, don't bother about all the yucky offset crap // XXX more comprehensive tests will be needed - CTX_DATA_BEGIN(C, Base*, base, selected_bases) + CTX_DATA_BEGIN(C, Object*, ob, selected_objects) { - Object *ob= base->object; ID *id= (ID *)ob; FCurve *fcu, *fcn; short success= 0; diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index bf859ac6017..97b64cb36c9 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -1238,10 +1238,8 @@ static short modifykey_get_context_v3d_data (bContext *C, ListBase *dsources, Ke } else { /* Object Mode: Selected objects */ - CTX_DATA_BEGIN(C, Base*, base, selected_bases) - { - Object *ob= base->object; - + CTX_DATA_BEGIN(C, Object*, ob, selected_objects) + { /* add a new keying-source */ cks= MEM_callocN(sizeof(bCommonKeySrc), "bCommonKeySrc"); BLI_addtail(dsources, cks); diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index c8c8d5628ed..44f80d54666 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -747,8 +747,7 @@ static void copy_object_set_idnew(bContext *C, int dupflag) int a; /* XXX check object pointers */ - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { relink_constraints(&ob->constraints); if (ob->pose){ bPoseChannel *chan; diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 3c332fa3953..470c59c77d9 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -1604,14 +1604,12 @@ void copy_attr_menu(Scene *scene, View3D *v3d) static int shade_smooth_exec(bContext *C, wmOperator *op) { - Object *ob; Curve *cu; Nurb *nu; int clear= (strcmp(op->idname, "OBJECT_OT_shade_flat") == 0); int done= 0; - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->type==OB_MESH) { mesh_set_smooth_flag(ob, !clear); @@ -1867,7 +1865,6 @@ void auto_timeoffs(Scene *scene, View3D *v3d) void ofs_timeoffs(Scene *scene, View3D *v3d) { - Base *base; float offset=0.0f; if(BASACT==0 || v3d==NULL) return; @@ -1875,13 +1872,12 @@ void ofs_timeoffs(Scene *scene, View3D *v3d) // XXX if(fbutton(&offset, -10000.0f, 10000.0f, 10, 10, "Offset")==0) return; /* make array of all bases, xco yco (screen) */ - for(base= FIRSTBASE; base; base= base->next) { - if(TESTBASELIB(v3d, base)) { - base->object->sf += offset; - if (base->object->sf < -MAXFRAMEF) base->object->sf = -MAXFRAMEF; - else if (base->object->sf > MAXFRAMEF) base->object->sf = MAXFRAMEF; - } + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + ob->sf += offset; + if (ob->sf < -MAXFRAMEF) ob->sf = -MAXFRAMEF; + else if (ob->sf > MAXFRAMEF) ob->sf = MAXFRAMEF; } + CTX_DATA_END; } diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 3d2f64b9c91..a4c9942833e 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -915,28 +915,30 @@ static EnumPropertyItem prop_make_track_types[] = { static int track_set_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); + Object *obact= CTX_data_active_object(C); + int type= RNA_enum_get(op->ptr, "type"); - + if(type == 1) { bConstraint *con; bTrackToConstraint *data; - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - if(base!=BASACT) { + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + if(ob!=obact) { con = add_new_constraint(CONSTRAINT_TYPE_TRACKTO); strcpy (con->name, "AutoTrack"); data = con->data; - data->tar = BASACT->object; - base->object->recalc |= OB_RECALC; + data->tar = obact; + ob->recalc |= OB_RECALC; /* Lamp and Camera track differently by default */ - if (base->object->type == OB_LAMP || base->object->type == OB_CAMERA) { + if (ob->type == OB_LAMP || ob->type == OB_CAMERA) { data->reserved1 = TRACK_nZ; data->reserved2 = UP_Y; } - add_constraint_to_object(con, base->object); + add_constraint_to_object(con, ob); } } CTX_DATA_END; @@ -945,31 +947,31 @@ static int track_set_exec(bContext *C, wmOperator *op) bConstraint *con; bLockTrackConstraint *data; - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - if(base!=BASACT) { + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + if(ob!=obact) { con = add_new_constraint(CONSTRAINT_TYPE_LOCKTRACK); strcpy (con->name, "AutoTrack"); data = con->data; - data->tar = BASACT->object; - base->object->recalc |= OB_RECALC; + data->tar = obact; + ob->recalc |= OB_RECALC; /* Lamp and Camera track differently by default */ - if (base->object->type == OB_LAMP || base->object->type == OB_CAMERA) { + if (ob->type == OB_LAMP || ob->type == OB_CAMERA) { data->trackflag = TRACK_nZ; data->lockflag = LOCK_Y; } - add_constraint_to_object(con, base->object); + add_constraint_to_object(con, ob); } } CTX_DATA_END; } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - if(base!=BASACT) { - base->object->track= BASACT->object; - base->object->recalc |= OB_RECALC; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + if(ob!=obact) { + ob->track= obact; + ob->recalc |= OB_RECALC; } } CTX_DATA_END; diff --git a/source/blender/editors/object/object_transform.c b/source/blender/editors/object/object_transform.c index 898d541d09d..0c09e0a03de 100644 --- a/source/blender/editors/object/object_transform.c +++ b/source/blender/editors/object/object_transform.c @@ -347,7 +347,6 @@ static int apply_objects_internal(bContext *C, ReportList *reports, int apply_lo { Main *bmain= CTX_data_main(C); Scene *scene= CTX_data_scene(C); - Object *ob; bArmature *arm; Mesh *me; Curve *cu; @@ -359,8 +358,7 @@ static int apply_objects_internal(bContext *C, ReportList *reports, int apply_lo int a, change = 0; /* first check if we can execute */ - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->type==OB_MESH) { me= ob->data; @@ -394,8 +392,7 @@ static int apply_objects_internal(bContext *C, ReportList *reports, int apply_lo CTX_DATA_END; /* now execute */ - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { /* calculate rotation/scale matrix */ if(apply_scale && apply_rot) @@ -669,7 +666,6 @@ static int object_center_set_exec(bContext *C, wmOperator *op) ScrArea *sa= CTX_wm_area(C); View3D *v3d= sa->spacedata.first; Object *obedit= CTX_data_edit_object(C); - Object *ob; Mesh *me, *tme; Curve *cu; /* BezTriple *bezt; @@ -733,8 +729,8 @@ static int object_center_set_exec(bContext *C, wmOperator *op) } /* reset flags */ - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - base->object->flag &= ~OB_DONE; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + ob->flag &= ~OB_DONE; } CTX_DATA_END; @@ -742,18 +738,18 @@ static int object_center_set_exec(bContext *C, wmOperator *op) me->flag &= ~ME_ISDONE; } - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - if((base->object->flag & OB_DONE)==0) { - base->object->flag |= OB_DONE; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + if((ob->flag & OB_DONE)==0) { + ob->flag |= OB_DONE; - if(obedit==NULL && (me=get_mesh(base->object)) ) { + if(obedit==NULL && (me=get_mesh(ob)) ) { if (me->id.lib) { tot_lib_error++; } else { if(centermode==2) { VECCOPY(cent, give_cursor(scene, v3d)); - Mat4Invert(base->object->imat, base->object->obmat); - Mat4MulVecfl(base->object->imat, cent); + Mat4Invert(ob->imat, ob->obmat); + Mat4MulVecfl(ob->imat, cent); } else { INIT_MINMAX(min, max); mvert= me->mvert; @@ -785,37 +781,36 @@ static int object_center_set_exec(bContext *C, wmOperator *op) me->flag |= ME_ISDONE; if(centermode) { - Mat3CpyMat4(omat, base->object->obmat); + Mat3CpyMat4(omat, ob->obmat); VECCOPY(centn, cent); Mat3MulVecfl(omat, centn); - base->object->loc[0]+= centn[0]; - base->object->loc[1]+= centn[1]; - base->object->loc[2]+= centn[2]; + ob->loc[0]+= centn[0]; + ob->loc[1]+= centn[1]; + ob->loc[2]+= centn[2]; - where_is_object(scene, base->object); - ignore_parent_tx(bmain, scene, base->object); + where_is_object(scene, ob); + ignore_parent_tx(bmain, scene, ob); /* other users? */ - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob = base->object; - if((ob->flag & OB_DONE)==0) { - tme= get_mesh(ob); + CTX_DATA_BEGIN(C, Object*, ob_other, selected_editable_objects) { + if((ob_other->flag & OB_DONE)==0) { + tme= get_mesh(ob_other); if(tme==me) { - ob->flag |= OB_DONE; - ob->recalc= OB_RECALC_OB|OB_RECALC_DATA; + ob_other->flag |= OB_DONE; + ob_other->recalc= OB_RECALC_OB|OB_RECALC_DATA; - Mat3CpyMat4(omat, ob->obmat); + Mat3CpyMat4(omat, ob_other->obmat); VECCOPY(centn, cent); Mat3MulVecfl(omat, centn); - ob->loc[0]+= centn[0]; - ob->loc[1]+= centn[1]; - ob->loc[2]+= centn[2]; + ob_other->loc[0]+= centn[0]; + ob_other->loc[1]+= centn[1]; + ob_other->loc[2]+= centn[2]; - where_is_object(scene, ob); - ignore_parent_tx(bmain, scene, ob); + where_is_object(scene, ob_other); + ignore_parent_tx(bmain, scene, ob_other); if(tme && (tme->flag & ME_ISDONE)==0) { mvert= tme->mvert; @@ -838,25 +833,23 @@ static int object_center_set_exec(bContext *C, wmOperator *op) } } } - - ob= ob->id.next; } CTX_DATA_END; } tot_change++; } } - else if (ELEM(base->object->type, OB_CURVE, OB_SURF)) { + else if (ELEM(ob->type, OB_CURVE, OB_SURF)) { /* weak code here... (ton) */ - if(obedit==base->object) { + if(obedit==ob) { ListBase *editnurb= curve_get_editcurve(obedit); nu1= editnurb->first; cu= obedit->data; } else { - cu= base->object->data; + cu= ob->data; nu1= cu->nurb.first; } @@ -865,8 +858,8 @@ static int object_center_set_exec(bContext *C, wmOperator *op) } else { if(centermode==2) { VECCOPY(cent, give_cursor(scene, v3d)); - Mat4Invert(base->object->imat, base->object->obmat); - Mat4MulVecfl(base->object->imat, cent); + Mat4Invert(ob->imat, ob->obmat); + Mat4MulVecfl(ob->imat, cent); /* don't allow Z change if curve is 2D */ if( !( cu->flag & CU_3D ) ) @@ -904,16 +897,16 @@ static int object_center_set_exec(bContext *C, wmOperator *op) nu= nu->next; } - if(centermode && obedit==0) { - Mat3CpyMat4(omat, base->object->obmat); + if(centermode && obedit==NULL) { + Mat3CpyMat4(omat, ob->obmat); Mat3MulVecfl(omat, cent); - base->object->loc[0]+= cent[0]; - base->object->loc[1]+= cent[1]; - base->object->loc[2]+= cent[2]; + ob->loc[0]+= cent[0]; + ob->loc[1]+= cent[1]; + ob->loc[2]+= cent[2]; - where_is_object(scene, base->object); - ignore_parent_tx(bmain, scene, base->object); + where_is_object(scene, ob); + ignore_parent_tx(bmain, scene, ob); } tot_change++; @@ -925,12 +918,12 @@ static int object_center_set_exec(bContext *C, wmOperator *op) } } } - else if(base->object->type==OB_FONT) { + else if(ob->type==OB_FONT) { /* get from bb */ - cu= base->object->data; + cu= ob->data; - if(cu->bb==0) { + if(cu->bb==NULL) { /* do nothing*/ } else if (cu->id.lib) { tot_lib_error++; @@ -945,8 +938,8 @@ static int object_center_set_exec(bContext *C, wmOperator *op) tot_change++; } } - else if(base->object->type==OB_ARMATURE) { - bArmature *arm = base->object->data; + else if(ob->type==OB_ARMATURE) { + bArmature *arm = ob->data; if (arm->id.lib) { tot_lib_error++; @@ -958,17 +951,17 @@ static int object_center_set_exec(bContext *C, wmOperator *op) /* Function to recenter armatures in editarmature.c * Bone + object locations are handled there. */ - docenter_armature(scene, v3d, base->object, centermode); + docenter_armature(scene, v3d, ob, centermode); tot_change++; - where_is_object(scene, base->object); - ignore_parent_tx(bmain, scene, base->object); + where_is_object(scene, ob); + ignore_parent_tx(bmain, scene, ob); if(obedit) break; } } - base->object->recalc= OB_RECALC_OB|OB_RECALC_DATA; + ob->recalc= OB_RECALC_OB|OB_RECALC_DATA; } } CTX_DATA_END; diff --git a/source/blender/editors/space_view3d/view3d_snap.c b/source/blender/editors/space_view3d/view3d_snap.c index 767f18649fa..79fd6380bb9 100644 --- a/source/blender/editors/space_view3d/view3d_snap.c +++ b/source/blender/editors/space_view3d/view3d_snap.c @@ -440,7 +440,6 @@ static int snap_sel_to_grid(bContext *C, wmOperator *op) Scene *scene= CTX_data_scene(C); View3D *v3d= CTX_wm_view3d(C); TransVert *tv; - Object *ob; float gridf, imat[3][3], bmat[3][3], vec[3]; int a; @@ -479,9 +478,7 @@ static int snap_sel_to_grid(bContext *C, wmOperator *op) } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; - + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->mode & OB_MODE_POSE) { bPoseChannel *pchan; bArmature *arm= ob->data; @@ -575,7 +572,6 @@ static int snap_sel_to_curs(bContext *C, wmOperator *op) Scene *scene= CTX_data_scene(C); View3D *v3d= CTX_wm_view3d(C); TransVert *tv; - Object *ob; float *curs, imat[3][3], bmat[3][3], vec[3]; int a; @@ -608,8 +604,7 @@ static int snap_sel_to_curs(bContext *C, wmOperator *op) } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->mode & OB_MODE_POSE) { bPoseChannel *pchan; bArmature *arm= ob->data; @@ -776,7 +771,7 @@ static int snap_curs_to_sel(bContext *C, wmOperator *op) transvmain= NULL; } else { - Object *ob= OBACT; + Object *ob= CTX_data_active_object(C); if(ob && (ob->mode & OB_MODE_POSE)) { bArmature *arm= ob->data; @@ -794,8 +789,8 @@ static int snap_curs_to_sel(bContext *C, wmOperator *op) } } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - VECCOPY(vec, base->object->obmat[3]); + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { + VECCOPY(vec, ob->obmat[3]); VecAddf(centroid, centroid, vec); DO_MINMAX(vec, min, max); count++; @@ -840,6 +835,7 @@ void VIEW3D_OT_snap_cursor_to_selected(wmOperatorType *ot) static int snap_curs_to_active(bContext *C, wmOperator *op) { Object *obedit= CTX_data_edit_object(C); + Object *obact= CTX_data_active_object(C); Scene *scene= CTX_data_scene(C); View3D *v3d= CTX_wm_view3d(C); float *curs; @@ -860,8 +856,8 @@ static int snap_curs_to_active(bContext *C, wmOperator *op) } } else { - if (BASACT) { - VECCOPY(curs, BASACT->object->obmat[3]); + if (obact) { + VECCOPY(curs, obact->obmat[3]); } } @@ -894,7 +890,6 @@ static int snap_selected_to_center(bContext *C, wmOperator *op) Scene *scene= CTX_data_scene(C); View3D *v3d= CTX_wm_view3d(C); TransVert *tv; - Object *ob; float snaploc[3], imat[3][3], bmat[3][3], vec[3], min[3], max[3], centroid[3]; int count, a; @@ -938,8 +933,7 @@ static int snap_selected_to_center(bContext *C, wmOperator *op) } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->mode & OB_MODE_POSE) { bPoseChannel *pchan; bArmature *arm= ob->data; @@ -957,7 +951,7 @@ static int snap_selected_to_center(bContext *C, wmOperator *op) } else { /* not armature bones (i.e. objects) */ - VECCOPY(vec, base->object->obmat[3]); + VECCOPY(vec, ob->obmat[3]); VecAddf(centroid, centroid, vec); DO_MINMAX(vec, min, max); count++; @@ -1007,8 +1001,7 @@ static int snap_selected_to_center(bContext *C, wmOperator *op) } else { - CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { - ob= base->object; + CTX_DATA_BEGIN(C, Object*, ob, selected_editable_objects) { if(ob->mode & OB_MODE_POSE) { bPoseChannel *pchan; bArmature *arm= ob->data; From c508e6198a614619bb9d82cd59c0fdb7f55f427d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 09:25:11 +0000 Subject: [PATCH 235/412] Python can now run operators with their own context (data context). The aim of this is to avoid having to set the selection each time before running an operator from python. At the moment this is set as a python dictionary with string keys and rna values... eg. C = {} C["active_object"] = bpy.data.objects['SomeOb'] bpy.ops.object.game_property_new(C) # ofcourse this works too.. bpy.ops.object.game_property_new({"active_object":ob}) # or... C = {"main":bpy.data, "scene":bpy.data.scenes[0], "active_object":bpy.data.objects['SomeOb'], "selected_editable_objects":list(bpy.data.objects)} bpy.ops.object.location_apply(C) --- release/scripts/modules/bpy_ops.py | 27 ++++- source/blender/blenkernel/BKE_context.h | 3 + source/blender/blenkernel/intern/context.c | 14 +++ source/blender/makesrna/intern/rna_curve.c | 4 +- source/blender/python/intern/bpy_interface.c | 55 ++++++++++ source/blender/python/intern/bpy_operator.c | 101 +++++++++++-------- 6 files changed, 154 insertions(+), 50 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 542f9aabc7e..fbb4a8b537d 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -113,19 +113,36 @@ class bpy_ops_submodule_op(object): def __call__(self, *args, **kw): # Get the operator from blender - if len(args) > 1: - raise ValueError("only one argument for the execution context is supported ") + if len(args) > 2: + raise ValueError("only 1 or 2 arguments for the execution context is supported") + + C_dict = None if args: + + C_exec = 'EXEC_DEFAULT' + + if len(args) == 2: + C_exec = args[0] + C_dict = args[1] + else: + if type(args[0]) != str: + C_dict= args[0] + else: + C_exec= args[0] + try: - context = context_dict[args[0]] + context = context_dict[C_exec] except: raise ValueError("Expected a single context argument in: " + str(list(context_dict.keys()))) - return op_call(self.idname(), kw, context) + if len(args) == 2: + C_dict= args[1] + + return op_call(self.idname() , C_dict, kw, context) else: - return op_call(self.idname(), kw) + return op_call(self.idname(), C_dict, kw) def get_rna(self): ''' diff --git a/source/blender/blenkernel/BKE_context.h b/source/blender/blenkernel/BKE_context.h index 09e13c2930e..feba39ee11d 100644 --- a/source/blender/blenkernel/BKE_context.h +++ b/source/blender/blenkernel/BKE_context.h @@ -124,6 +124,9 @@ void CTX_store_free_list(ListBase *contexts); int CTX_py_init_get(bContext *C); void CTX_py_init_set(bContext *C, int value); +void *CTX_py_dict_get(bContext *C); +void CTX_py_dict_set(bContext *C, void *value); + /* Window Manager Context */ struct wmWindowManager *CTX_wm_manager(const bContext *C); diff --git a/source/blender/blenkernel/intern/context.c b/source/blender/blenkernel/intern/context.c index d5cc31d918a..7f2872c0797 100644 --- a/source/blender/blenkernel/intern/context.c +++ b/source/blender/blenkernel/intern/context.c @@ -71,6 +71,7 @@ struct bContext { int recursion; int py_init; /* true if python is initialized */ + void *py_context; } data; /* data evaluation */ @@ -175,6 +176,15 @@ void CTX_py_init_set(bContext *C, int value) C->data.py_init= value; } +void *CTX_py_dict_get(bContext *C) +{ + return C->data.py_context; +} +void CTX_py_dict_set(bContext *C, void *value) +{ + C->data.py_context= value; +} + /* window manager context */ wmWindowManager *CTX_wm_manager(const bContext *C) @@ -401,6 +411,10 @@ static int ctx_data_get(bContext *C, const char *member, bContextDataResult *res memset(result, 0, sizeof(bContextDataResult)); + if(CTX_py_dict_get(C)) { + return bpy_context_get(C, member, result); + } + /* we check recursion to ensure that we do not get infinite * loops requesting data from ourselfs in a context callback */ if(!done && recursion < 1 && C->wm.store) { diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c index 1f1caeaa9b5..995be6d5023 100644 --- a/source/blender/makesrna/intern/rna_curve.c +++ b/source/blender/makesrna/intern/rna_curve.c @@ -757,12 +757,12 @@ static void rna_def_curve(BlenderRNA *brna) prop= RNA_def_property(srna, "render_resolution_u", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "resolu_ren"); - RNA_def_property_ui_range(prop, 1, 1024, 1, 0); + RNA_def_property_ui_range(prop, 0, 1024, 1, 0); RNA_def_property_ui_text(prop, "Render Resolution U", "Surface resolution in U direction used while rendering. Zero skips this property."); prop= RNA_def_property(srna, "render_resolution_v", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "resolv_ren"); - RNA_def_property_ui_range(prop, 1, 1024, 1, 0); + RNA_def_property_ui_range(prop, 0, 1024, 1, 0); RNA_def_property_ui_text(prop, "Render Resolution V", "Surface resolution in V direction used while rendering. Zero skips this property."); diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index 53c0d591437..dc7f6947f38 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -63,6 +63,7 @@ #include "BKE_context.h" #include "BKE_fcurve.h" #include "BKE_text.h" +#include "BKE_context.h" #include "BPY_extern.h" @@ -948,3 +949,57 @@ int BPY_button_eval(bContext *C, char *expr, double *value) return error_ret; } + + +int bpy_context_get(bContext *C, const char *member, bContextDataResult *result) +{ + PyObject *pyctx= (PyObject *)CTX_py_dict_get(C); + PyObject *item= PyDict_GetItemString(pyctx, member); + PointerRNA *ptr= NULL; + int done= 0; + + if(item==NULL) { + /* pass */ + } + else if(item==Py_None) { + /* pass */ + } + else if(BPy_StructRNA_Check(item)) { + ptr= &(((BPy_StructRNA *)item)->ptr); + + //result->ptr= ((BPy_StructRNA *)item)->ptr; + CTX_data_pointer_set(result, ptr->id.data, ptr->type, ptr->data); + done= 1; + } + else if (PyList_Check(item)) { + int len= PyList_Size(item); + int i; + for(i = 0; i < len; i++) { + PyObject *list_item = PyList_GET_ITEM(item, i); // XXX check type + + if(BPy_StructRNA_Check(list_item)) { + /* + CollectionPointerLink *link= MEM_callocN(sizeof(CollectionPointerLink), "bpy_context_get"); + link->ptr= ((BPy_StructRNA *)item)->ptr; + BLI_addtail(&result->list, link); + */ + ptr= &(((BPy_StructRNA *)list_item)->ptr); + CTX_data_list_add(result, ptr->id.data, ptr->type, ptr->data); + } + else { + printf("List item not a valid type\n"); + } + + } + + done= 1; + } + + if(done==0) { + if (item) printf("Context '%s' not found\n", member); + else printf("Context '%s' not a valid type\n", member); + } + + return done; +} + diff --git a/source/blender/python/intern/bpy_operator.c b/source/blender/python/intern/bpy_operator.c index 87752ca9c58..1ae0a40ce16 100644 --- a/source/blender/python/intern/bpy_operator.c +++ b/source/blender/python/intern/bpy_operator.c @@ -48,6 +48,8 @@ static PyObject *pyop_call( PyObject * self, PyObject * args) char *opname; PyObject *kw= NULL; /* optional args */ + PyObject *context_dict= NULL; /* optional args */ + PyObject *context_dict_back; /* note that context is an int, python does the conversion in this case */ int context= WM_OP_EXEC_DEFAULT; @@ -55,7 +57,7 @@ static PyObject *pyop_call( PyObject * self, PyObject * args) // XXX Todo, work out a better solution for passing on context, could make a tuple from self and pack the name and Context into it... bContext *C = BPy_GetContext(); - if (!PyArg_ParseTuple(args, "s|O!i:bpy.__ops__.call", &opname, &PyDict_Type, &kw, &context)) + if (!PyArg_ParseTuple(args, "sO|O!i:bpy.__ops__.call", &opname, &context_dict, &PyDict_Type, &kw, &context)) return NULL; ot= WM_operatortype_find(opname, TRUE); @@ -65,61 +67,74 @@ static PyObject *pyop_call( PyObject * self, PyObject * args) return NULL; } + if(!PyDict_Check(context_dict)) + context_dict= NULL; + + context_dict_back= CTX_py_dict_get(C); + + CTX_py_dict_set(C, (void *)context_dict); + Py_XINCREF(context_dict); /* so we done loose it */ + if(WM_operator_poll((bContext*)C, ot) == FALSE) { PyErr_SetString( PyExc_SystemError, "bpy.__ops__.call: operator poll() function failed, context is incorrect"); - return NULL; + error_val= -1; } + else { + /* WM_operator_properties_create(&ptr, opname); */ + /* Save another lookup */ + RNA_pointer_create(NULL, ot->srna, NULL, &ptr); - /* WM_operator_properties_create(&ptr, opname); */ - /* Save another lookup */ - RNA_pointer_create(NULL, ot->srna, NULL, &ptr); + if(kw && PyDict_Size(kw)) + error_val= pyrna_pydict_to_props(&ptr, kw, 0, "Converting py args to operator properties: "); + + + if (error_val==0) { + ReportList *reports; + + reports= MEM_mallocN(sizeof(ReportList), "wmOperatorReportList"); + BKE_reports_init(reports, RPT_STORE); + + WM_operator_call_py(C, ot, context, &ptr, reports); + + if(BPy_reports_to_error(reports)) + error_val = -1; + + /* operator output is nice to have in the terminal/console too */ + if(reports->list.first) { + char *report_str= BKE_reports_string(reports, 0); /* all reports */ - if(kw && PyDict_Size(kw)) - error_val= pyrna_pydict_to_props(&ptr, kw, 0, "Converting py args to operator properties: "); - + if(report_str) { + PySys_WriteStdout("%s\n", report_str); + MEM_freeN(report_str); + } + } - if (error_val==0) { - ReportList *reports; - - reports= MEM_mallocN(sizeof(ReportList), "wmOperatorReportList"); - BKE_reports_init(reports, RPT_STORE); - - WM_operator_call_py(C, ot, context, &ptr, reports); - - if(BPy_reports_to_error(reports)) - error_val = -1; - - /* operator output is nice to have in the terminal/console too */ - if(reports->list.first) { - char *report_str= BKE_reports_string(reports, 0); /* all reports */ - - if(report_str) { - PySys_WriteStdout("%s\n", report_str); - MEM_freeN(report_str); + BKE_reports_clear(reports); + if ((reports->flag & RPT_FREE) == 0) + { + MEM_freeN(reports); } } - BKE_reports_clear(reports); - if ((reports->flag & RPT_FREE) == 0) - { - MEM_freeN(reports); - } - } - - WM_operator_properties_free(&ptr); + WM_operator_properties_free(&ptr); #if 0 - /* if there is some way to know an operator takes args we should use this */ - { - /* no props */ - if (kw != NULL) { - PyErr_Format(PyExc_AttributeError, "Operator \"%s\" does not take any args", opname); - return NULL; - } + /* if there is some way to know an operator takes args we should use this */ + { + /* no props */ + if (kw != NULL) { + PyErr_Format(PyExc_AttributeError, "Operator \"%s\" does not take any args", opname); + return NULL; + } - WM_operator_name_call(C, opname, WM_OP_EXEC_DEFAULT, NULL); - } + WM_operator_name_call(C, opname, WM_OP_EXEC_DEFAULT, NULL); + } #endif + } + + /* restore with original context dict, probably NULL but need this for nested operator calls */ + Py_XDECREF(context_dict); + CTX_py_dict_set(C, (void *)context_dict_back); if (error_val==-1) { return NULL; From e14a8635cca97f339d28744624cf1284866bc63d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 10:03:34 +0000 Subject: [PATCH 236/412] Modified python rna property types (BPy_PropertyRNA), so PySequence_Check() returns true this means you can do... C = {"selected_editable_objects":bpy.data.objects} ...when defining pythons context, without doing list(bpy.data.objects) --- source/blender/editors/object/object_add.c | 1 - .../blender/editors/object/object_relations.c | 2 +- .../editors/space_sequencer/sequencer_edit.c | 4 +- source/blender/python/intern/bpy_interface.c | 48 +++++++++++-------- source/blender/python/intern/bpy_rna.c | 15 +++++- 5 files changed, 45 insertions(+), 25 deletions(-) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 44f80d54666..9b7b23f1026 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -737,7 +737,6 @@ static void copy_object__forwardModifierLinks(void *userData, Object *ob, /* after copying objects, copied data should get new pointers */ static void copy_object_set_idnew(bContext *C, int dupflag) { - Object *ob; Material *ma, *mao; ID *id; #if 0 // XXX old animation system diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index a4c9942833e..6849cefbbd9 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -976,7 +976,7 @@ static int track_set_exec(bContext *C, wmOperator *op) } CTX_DATA_END; } - DAG_scene_sort(CTX_data_scene(C)); + DAG_scene_sort(scene); ED_anim_dag_flush_update(C); return OPERATOR_FINISHED; diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index d2d4b7ac2c4..339ba55bfd1 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2489,8 +2489,8 @@ static int find_next_prev_edit(Scene *scene, int cfra, int side) return best_seq ? best_seq->startdisp : cfra; } -static int next_prev_edit_internal(Scene *scene, int side) { - Editing *ed= seq_give_editing(scene, FALSE); +static int next_prev_edit_internal(Scene *scene, int side) +{ int change=0; int cfra = CFRA; int nfra= find_next_prev_edit(scene, cfra, side); diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index dc7f6947f38..d0c70a9ee96 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -971,28 +971,36 @@ int bpy_context_get(bContext *C, const char *member, bContextDataResult *result) CTX_data_pointer_set(result, ptr->id.data, ptr->type, ptr->data); done= 1; } - else if (PyList_Check(item)) { - int len= PyList_Size(item); - int i; - for(i = 0; i < len; i++) { - PyObject *list_item = PyList_GET_ITEM(item, i); // XXX check type - - if(BPy_StructRNA_Check(list_item)) { - /* - CollectionPointerLink *link= MEM_callocN(sizeof(CollectionPointerLink), "bpy_context_get"); - link->ptr= ((BPy_StructRNA *)item)->ptr; - BLI_addtail(&result->list, link); - */ - ptr= &(((BPy_StructRNA *)list_item)->ptr); - CTX_data_list_add(result, ptr->id.data, ptr->type, ptr->data); - } - else { - printf("List item not a valid type\n"); - } - + else if (PySequence_Check(item)) { + PyObject *seq_fast= PySequence_Fast(item, "bpy_context_get sequence conversion"); + if (seq_fast==NULL) { + PyErr_Print(); + PyErr_Clear(); } + else { + int len= PySequence_Fast_GET_SIZE(seq_fast); + int i; + for(i = 0; i < len; i++) { + PyObject *list_item= PySequence_Fast_GET_ITEM(seq_fast, i); - done= 1; + if(BPy_StructRNA_Check(list_item)) { + /* + CollectionPointerLink *link= MEM_callocN(sizeof(CollectionPointerLink), "bpy_context_get"); + link->ptr= ((BPy_StructRNA *)item)->ptr; + BLI_addtail(&result->list, link); + */ + ptr= &(((BPy_StructRNA *)list_item)->ptr); + CTX_data_list_add(result, ptr->id.data, ptr->type, ptr->data); + } + else { + printf("List item not a valid type\n"); + } + + } + Py_DECREF(seq_fast); + + done= 1; + } } if(done==0) { diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index b067d30e36e..0d338cd4631 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1124,11 +1124,24 @@ static int pyrna_prop_contains(BPy_PropertyRNA * self, PyObject *value) return 0; } +static PyObject *pyrna_prop_item(BPy_PropertyRNA * self, Py_ssize_t index) +{ + /* reuse subscript functions */ + if (RNA_property_type(self->prop) == PROP_COLLECTION) { + return prop_subscript_collection_int(self, index); + } else if (RNA_property_array_check(&self->ptr, self->prop)) { + return prop_subscript_array_int(self, index); + } + + PyErr_SetString(PyExc_TypeError, "rna type is not an array or a collection"); + return NULL; +} + static PySequenceMethods pyrna_prop_as_sequence = { NULL, /* Cant set the len otherwise it can evaluate as false */ NULL, /* sq_concat */ NULL, /* sq_repeat */ - NULL, /* sq_item */ + (ssizeargfunc)pyrna_prop_item, /* sq_item */ /* Only set this so PySequence_Check() returns True */ NULL, /* sq_slice */ NULL, /* sq_ass_item */ NULL, /* sq_ass_slice */ From 6f1e9a843ee3ef0a3c51155237c41e88481d2919 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 11:26:44 +0000 Subject: [PATCH 237/412] Script templates, including game logic scripts from 2.4x and new operator template. Files copied into scripts/templates will automatically appear in the menu. the operator template is a bit rough but a start. --- release/scripts/io/export_ply.py | 2 +- release/scripts/templates/gamelogic.py | 78 +++++++++++++++++++ release/scripts/templates/gamelogic_basic.py | 15 ++++ release/scripts/templates/gamelogic_module.py | 26 +++++++ release/scripts/templates/operator.py | 53 +++++++++++++ release/scripts/templates/operator_simple.py | 20 +++++ release/scripts/ui/space_text.py | 34 ++++++++ 7 files changed, 227 insertions(+), 1 deletion(-) create mode 100644 release/scripts/templates/gamelogic.py create mode 100644 release/scripts/templates/gamelogic_basic.py create mode 100644 release/scripts/templates/gamelogic_module.py create mode 100644 release/scripts/templates/operator.py create mode 100644 release/scripts/templates/operator_simple.py diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index d74cc0e9d7e..953ed4dc89e 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -278,4 +278,4 @@ menu_func = lambda self, context: self.layout.itemO("export.ply", text="Stanford menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) if __name__ == "__main__": - bpy.ops.EXPORT_OT_ply(path="/tmp/test.ply") + bpy.ops.export.ply(path="/tmp/test.ply") diff --git a/release/scripts/templates/gamelogic.py b/release/scripts/templates/gamelogic.py new file mode 100644 index 00000000000..af9dbd8a56a --- /dev/null +++ b/release/scripts/templates/gamelogic.py @@ -0,0 +1,78 @@ +# This script must be assigned to a python controller +# where it can access the object that owns it and the sensors/actuators that it connects to. + +# GameLogic has been added to the global namespace no need to import + +# for keyboard event comparison +# import GameKeys + +# support for Vector(), Matrix() types and advanced functions like AngleBetweenVecs(v1,v2) and RotationMatrix(...) +# import Mathutils + +# for functions like getWindowWidth(), getWindowHeight() +# import Rasterizer + +def main(): + cont = GameLogic.getCurrentController() + + # The KX_GameObject that owns this controller. + own = cont.owner + + # for scripts that deal with spacial logic + own_pos = own.worldPosition + + + # Some example functions, remove to write your own script. + # check for a positive sensor, will run on any object without errors. + print 'Logic info for KX_GameObject', own.name + input = False + + for sens in cont.sensors: + # The sensor can be on another object, we may want to use it + own_sens = sens.owner + print ' sensor:', sens.name, + if sens.positive: + print '(true)' + input = True + else: + print '(false)' + + for actu in cont.actuators: + # The actuator can be on another object, we may want to use it + own_actu = actu.owner + print ' actuator:', actu.name + + # This runs the actuator or turns it off + # note that actuators will continue to run unless explicitly turned off. + if input: + cont.activate(actu) + else: + cont.deactivate(actu) + + # Its also good practice to get sensors and actuators by name + # rather then index so any changes to their order wont break the script. + + # sens_key = cont.sensors['key_sensor'] + # actu_motion = cont.actuators['motion'] + + + # Loop through all other objects in the scene + sce = GameLogic.getCurrentScene() + print 'Scene Objects:', sce.name + for ob in sce.objects: + print ' ', ob.name, ob.worldPosition + + + # Example where collision objects are checked for their properties + # adding to our objects "life" property + """ + actu_collide = cont.sensors['collision_sens'] + for ob in actu_collide.objectHitList: + # Check to see the object has this property + if ob.has_key('life'): + own['life'] += ob['life'] + ob['life'] = 0 + print own['life'] + """ + +main() diff --git a/release/scripts/templates/gamelogic_basic.py b/release/scripts/templates/gamelogic_basic.py new file mode 100644 index 00000000000..c9c2a594309 --- /dev/null +++ b/release/scripts/templates/gamelogic_basic.py @@ -0,0 +1,15 @@ + +def main(): + + cont = GameLogic.getCurrentController() + own = cont.owner + + sens = cont.sensors['mySensor'] + actu = cont.actuators['myActuator'] + + if sens.positive: + cont.activate(actu) + else: + cont.deactivate(actu) + +main() diff --git a/release/scripts/templates/gamelogic_module.py b/release/scripts/templates/gamelogic_module.py new file mode 100644 index 00000000000..1bc221e727d --- /dev/null +++ b/release/scripts/templates/gamelogic_module.py @@ -0,0 +1,26 @@ +# This module can be accessed by a python controller with +# its execution method set to 'Module' +# * Set the module string to "gamelogic_module.main" (without quotes) +# * When renaming the script it MUST have a .py extension +# * External text modules are supported as long as they are at +# the same location as the blendfile or one of its libraries. + +import GameLogic + +# variables defined here will only be set once when the +# module is first imported. Set object spesific vars +# inside the function if you intend to use the module +# with multiple objects. + +def main(cont): + own = cont.owner + + sens = cont.sensors['mySensor'] + actu = cont.actuators['myActuator'] + + if sens.positive: + cont.activate(actu) + else: + cont.deactivate(actu) + +# dont call main(GameLogic.getCurrentController()), the py controller will diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py new file mode 100644 index 00000000000..7e3dad93ad8 --- /dev/null +++ b/release/scripts/templates/operator.py @@ -0,0 +1,53 @@ +def write_some_data(context, path, use_some_setting): + pass + +class ExportSomeData(bpy.types.Operator): + '''This appiers in the tooltip of the operator and in the generated docs.''' + __idname__ = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed + __label__ = "Export Some Data" + + # List of operator properties, the attributes will be assigned + # to the class instance from the operator settings before calling. + + # TODO, add better example props + __props__ = [ + bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), + bpy.props.BoolProperty(attr="use_some_setting", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), + ] + + def poll(self, context): + return context.active_object != None + + def execute(self, context): + if not self.is_property_set("path"): + raise Exception("filename not set") + + write(self.path, context, use_setting, SOME_SETTING = self.use_some_setting) + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + + if True: + # File selector + wm.add_fileselect(self.__operator__) # will run self.execute() + return ('RUNNING_MODAL',) + else if 0: + # Redo popup + wm.invoke_props_popup(self.__operator__, event) # + return ('RUNNING_MODAL',) + else if 0: + return self.execute(context) + + +bpy.ops.add(ExportSomeData) + +# Only needed if you want to add into a dynamic menu +import dynamic_menu +menu_func = lambda self, context: self.layout.itemO("export.some_data", text="Example Exporter...") +menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) + +# Use for running this script directly +if __name__ == "__main__": + bpy.ops.export.some_data(path="/tmp/test.ply") \ No newline at end of file diff --git a/release/scripts/templates/operator_simple.py b/release/scripts/templates/operator_simple.py new file mode 100644 index 00000000000..b82543c3bf8 --- /dev/null +++ b/release/scripts/templates/operator_simple.py @@ -0,0 +1,20 @@ +def main(context): + for ob in context.scene.objects: + print(ob) + +class SimpleOperator(bpy.types.Operator): + '''''' + __idname__ = "object.simple_operator" + __label__ = "Simple Object Operator" + + def poll(self, context): + return context.active_object != None + + def execute(self, context): + main(context) + return ('FINISHED',) + +bpy.ops.add(SimpleOperator) + +if __name__ == "__main__": + bpy.ops.object.simple_operator() diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index f3597955365..479f2b60f51 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -135,11 +135,44 @@ class TEXT_MT_text(bpy.types.Menu): layout.itemO("text.properties", icon='ICON_MENU_PANEL') + + #ifndef DISABLE_PYTHON # XXX layout.column() # XXX uiDefIconTextBlockBut(block, text_template_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Script Templates", 0, yco-=20, 120, 19, ""); # XXX uiDefIconTextBlockBut(block, text_plugin_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Text Plugins", 0, yco-=20, 120, 19, ""); #endif + + layout.itemM("TEXT_MT_templates") + + + +class TEXT_MT_templates(bpy.types.Menu): + ''' + Creates the menu items by scanning scripts/templates + ''' + __label__ = "Script Templates" + + def draw(self, context): + import os + + def path_to_name(f): + f_base = os.path.splitext(f)[0] + f_base = f_base.replace("_", " ") + return ' '.join([w[0].upper() + w[1:] for w in f_base.split()]) + + layout = self.layout + template_dir = os.path.join(os.path.dirname(__file__), os.path.pardir, "templates") + + for f in sorted(os.listdir(template_dir)): + + if f.startswith("."): + continue + + path = os.path.join(template_dir, f) + layout.item_stringO("text.open", "path", path, text=path_to_name(f)) + + class TEXT_MT_edit_view(bpy.types.Menu): __label__ = "View" @@ -233,6 +266,7 @@ bpy.types.register(TEXT_HT_header) bpy.types.register(TEXT_PT_properties) bpy.types.register(TEXT_PT_find) bpy.types.register(TEXT_MT_text) +bpy.types.register(TEXT_MT_templates) bpy.types.register(TEXT_MT_format) bpy.types.register(TEXT_MT_edit) bpy.types.register(TEXT_MT_edit_view) From f5d62d885be1b040a3060fd3846ad2c08a05ad99 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 29 Oct 2009 14:27:56 +0000 Subject: [PATCH 238/412] Fixed [#19735] No normal map button in texture->image pane Put it into the "Image Sampling" Panel, not sure if its the right location. --- release/scripts/ui/buttons_texture.py | 20 ++++++------- source/blender/makesrna/intern/rna_texture.c | 30 ++++++++++++++------ 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 1680a80bb6c..1a308bbb2ad 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -459,16 +459,6 @@ class TEXTURE_PT_image_sampling(TextureTypePanel): slot = context.texture_slot split = layout.split() - - """ - col = split.column() - col.itemR(tex, "flip_axis") - col.itemR(tex, "normal_map") - if slot: - row = col.row() - row.active = tex.normal_map - row.itemR(slot, "normal_map_space", text="") - """ col = split.column() col.itemL(text="Alpha:") @@ -480,6 +470,11 @@ class TEXTURE_PT_image_sampling(TextureTypePanel): col.itemR(tex, "flip_axis", text="X/Y Axis") col = split.column() + col.itemR(tex, "normal_map") + row = col.row() + row.active = tex.normal_map + row.itemR(tex, "normal_space", text="") + col.itemL(text="Filter:") col.itemR(tex, "filter", text="") col.itemR(tex, "mipmap") @@ -519,6 +514,8 @@ class TEXTURE_PT_image_mapping(TextureTypePanel): col.itemL(text="Mirror:") col.itemR(tex, "mirror_x", text="X") col.itemR(tex, "mirror_y", text="Y") + layout.itemS() + elif tex.extension == 'CHECKER': col = split.column(align=True) row = col.row() @@ -526,8 +523,7 @@ class TEXTURE_PT_image_mapping(TextureTypePanel): row.itemR(tex, "checker_odd", text="Odd") split.itemR(tex, "checker_distance", text="Distance") - - layout.itemS() + layout.itemS() split = layout.split() diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c index 3246faa2ecb..c2be65c39d6 100644 --- a/source/blender/makesrna/intern/rna_texture.c +++ b/source/blender/makesrna/intern/rna_texture.c @@ -1060,6 +1060,13 @@ static void rna_def_texture_image(BlenderRNA *brna) {TEX_REPEAT, "REPEAT", 0, "Repeat", "Causes the image to repeat horizontally and vertically"}, {TEX_CHECKER, "CHECKER", 0, "Checker", "Causes the image to repeat in checker board pattern"}, {0, NULL, 0, NULL, NULL}}; + + static EnumPropertyItem prop_normal_space[] = { + {MTEX_NSPACE_CAMERA, "CAMERA", 0, "Extend", ""}, + {MTEX_NSPACE_WORLD, "WORLD", 0, "World", ""}, + {MTEX_NSPACE_OBJECT, "OBJECT", 0, "Object", ""}, + {MTEX_NSPACE_TANGENT, "TANGENT", 0, "Tangent", ""}, + {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "ImageTexture", "Texture"); RNA_def_struct_ui_text(srna, "Image Texture", ""); @@ -1104,14 +1111,6 @@ static void rna_def_texture_image(BlenderRNA *brna) rna_def_filter_size_common(srna); - prop= RNA_def_property(srna, "normal_map", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "imaflag", TEX_NORMALMAP); - RNA_def_property_ui_text(prop, "Normal Map", "Uses image RGB values for normal mapping"); - RNA_def_property_update(prop, 0, "rna_Texture_update"); - - /* XXX: mtex->normapspace "Sets space of normal map image" "Normal Space %t|Camera %x0|World %x1|Object %x2|Tangent %x3" - * not sure why this goes in mtex instead of texture directly? */ - prop= RNA_def_property(srna, "extension", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "extend"); RNA_def_property_enum_items(prop, prop_image_extension); @@ -1230,6 +1229,21 @@ static void rna_def_texture_image(BlenderRNA *brna) RNA_def_property_range(prop, 1, 256); RNA_def_property_ui_text(prop, "Filter Eccentricity", "Maximum eccentricity. Higher gives less blur at distant/oblique angles, but is also slower."); RNA_def_property_update(prop, 0, "rna_Texture_update"); + + /* Normal Map */ + prop= RNA_def_property(srna, "normal_map", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "imaflag", TEX_NORMALMAP); + RNA_def_property_ui_text(prop, "Normal Map", "Uses image RGB values for normal mapping"); + RNA_def_property_update(prop, 0, "rna_Texture_update"); + + /* not sure why this goes in mtex instead of texture directly? */ + RNA_def_struct_sdna(srna, "MTex"); + + prop= RNA_def_property(srna, "normal_space", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "normapspace"); + RNA_def_property_enum_items(prop, prop_normal_space); + RNA_def_property_ui_text(prop, "Normal Space", "Sets space of normal map image."); + RNA_def_property_update(prop, 0, "rna_Texture_update"); } static void rna_def_texture_plugin(BlenderRNA *brna) From b1a832a7e2f2574d4f11a5aad0caf97318142ac7 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Thu, 29 Oct 2009 18:06:49 +0000 Subject: [PATCH 239/412] Mac / COCOA : Imbuf - replace libtiff by calls to Cocoa services to load/save tiff files (Libtiff, dynamically linked is not distributed with OS X, and would have had to be shipped for all four architectures) The imb_cocoaLoadImage & imb_cocoaSaveImage are generic towards the bitmap format, and thus can handle TIFF, GIF, JPG, JP2000, BMP and raw camera formats (read-only for these), even if today only TIFF is used as the other formats are already handled. - CMake updated - scons updated (Thx to Jens Verwiebe) --- SConstruct | 5 + intern/ghost/SConscript | 8 +- source/blender/imbuf/CMakeLists.txt | 10 +- source/blender/imbuf/SConscript | 5 + source/blender/imbuf/intern/IMB_cocoa.h | 43 ++ source/blender/imbuf/intern/imbuf_cocoa.m | 382 ++++++++++++++++++ source/blender/imbuf/intern/readimage.c | 17 +- source/blender/imbuf/intern/writeimage.c | 20 +- .../windowmanager/intern/wm_init_exit.c | 2 + source/creator/creator.c | 7 + 10 files changed, 490 insertions(+), 9 deletions(-) create mode 100644 source/blender/imbuf/intern/IMB_cocoa.h create mode 100644 source/blender/imbuf/intern/imbuf_cocoa.m diff --git a/SConstruct b/SConstruct index 6d18000a984..cb90c2eaf66 100644 --- a/SConstruct +++ b/SConstruct @@ -217,6 +217,11 @@ if env['WITH_BF_OPENMP'] == 1: env.Append(CPPFLAGS=['-fopenmp']) env.Append(CXXFLAGS=['-fopenmp']) +if env['WITH_GHOST_COCOA'] == True: + env.Append(CFLAGS=['-DGHOST_COCOA']) + env.Append(CXXFLAGS=['-DGHOST_COCOA']) + env.Append(CPPFLAGS=['-DGHOST_COCOA']) + #check for additional debug libnames if env.has_key('BF_DEBUG_LIBS'): diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index d52ffbcfaa9..2dbda4befe7 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -10,10 +10,10 @@ sources = env.Glob('intern/*.cpp') if window_system == 'darwin': sources += env.Glob('intern/*.mm') -if env['WITH_GHOST_COCOA'] == True: - env.Append(CFLAGS=['-DGHOST_COCOA']) - env.Append(CXXFLAGS=['-DGHOST_COCOA']) - env.Append(CPPFLAGS=['-DGHOST_COCOA']) +#if env['WITH_GHOST_COCOA'] == True: +# env.Append(CFLAGS=['-DGHOST_COCOA']) +# env.Append(CXXFLAGS=['-DGHOST_COCOA']) +# env.Append(CPPFLAGS=['-DGHOST_COCOA']) #defs = '' #if env['WITH_GHOST_COCOA']: diff --git a/source/blender/imbuf/CMakeLists.txt b/source/blender/imbuf/CMakeLists.txt index 5eb98151c14..55497fdabb7 100644 --- a/source/blender/imbuf/CMakeLists.txt +++ b/source/blender/imbuf/CMakeLists.txt @@ -24,7 +24,13 @@ # # ***** END GPL LICENSE BLOCK ***** -FILE(GLOB SRC intern/*.c) +IF(WITH_COCOA) + FILE(GLOB SRC intern/*.c intern/*.m) + LIST(REMOVE_ITEM SRC "${CMAKE_CURRENT_SOURCE_DIR}/intern/dynlibtiff.c") + LIST(REMOVE_ITEM SRC "${CMAKE_CURRENT_SOURCE_DIR}/intern/tiff.c") +ELSE(WITH_COCOA) + FILE(GLOB SRC intern/*.c) +ENDIF(WITH_COCOA) SET(INC . ../makesdna ../../../intern/guardedalloc ../../../intern/memutil ../blenlib @@ -54,7 +60,7 @@ IF(WITH_FFMPEG) ADD_DEFINITIONS(-DWITH_FFMPEG) ENDIF(WITH_FFMPEG) -if(WITH_DDS) +IF(WITH_DDS) ADD_DEFINITIONS(-DWITH_DDS) ENDIF(WITH_DDS) diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript index 6052b344da7..9684c19b247 100644 --- a/source/blender/imbuf/SConscript +++ b/source/blender/imbuf/SConscript @@ -2,10 +2,15 @@ Import ('env') sources = env.Glob('intern/*.c') +if env['WITH_GHOST_COCOA']: + sources += env.Glob('intern/*.m') + sources.remove('intern/dynlibtiff.c') + sources.remove('intern/tiff.c') incs = '. ../makesdna #/intern/guardedalloc #/intern/memutil ../blenlib' incs += ' ../avi ../blenkernel' + incs += ' ' + env['BF_JPEG_INC'] incs += ' ' + env['BF_PNG_INC'] incs += ' ' + env['BF_TIFF_INC'] diff --git a/source/blender/imbuf/intern/IMB_cocoa.h b/source/blender/imbuf/intern/IMB_cocoa.h new file mode 100644 index 00000000000..d40fc58b0c0 --- /dev/null +++ b/source/blender/imbuf/intern/IMB_cocoa.h @@ -0,0 +1,43 @@ +/* + * IMB_cocoa.h + * + * $Id: IMB_cocoa.h 13161 2008-01-07 19:13:47Z hos $ + * + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * Contributor(s): Damien Plisson 10/2009 + * + * ***** END GPL LICENSE BLOCK ***** + */ +/** + * \file IMB_cocoa.h + * \ingroup imbuf + * \brief Function declarations for imbuf_cocoa.m + */ + +#ifndef IMB_COCOA_H +#define IMB_COCOA_H + +/* Foward declaration of ImBuf structure. */ +struct ImBuf; + +/* Declarations for imbuf_cocoa.m */ +struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags); +short imb_cocoaSaveImage(struct ImBuf *ibuf, char *name, int flags); + +#endif /* IMB_COCOA_H */ + diff --git a/source/blender/imbuf/intern/imbuf_cocoa.m b/source/blender/imbuf/intern/imbuf_cocoa.m new file mode 100644 index 00000000000..13eb71f1857 --- /dev/null +++ b/source/blender/imbuf/intern/imbuf_cocoa.m @@ -0,0 +1,382 @@ +/* + * imbuf_coca.m + * + * $Id: imbuf_cocoa.m 17958 2008-12-19 19:11:02Z blendix $ + * + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * Contributor(s): Damien Plisson 10/2009 + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** + * Provides image file loading and saving for Blender, via Cocoa. + * + */ + +#include +#import + +#include "imbuf.h" +#include "imbuf_patch.h" + +#include "IMB_cocoa.h" + +#include "BKE_global.h" +#include "BKE_colortools.h" + +#include "IMB_imbuf_types.h" +#include "IMB_imbuf.h" + +#include "IMB_allocimbuf.h" + + + +#pragma mark load/save functions + +/** + * Loads an image from the supplied buffer + * + * Loads any Core Graphics supported type + * Currently is : TIFF, BMP, JPEG, GIF, PNG, DIB, ICO, and various RAW formats + * + * @param mem: Memory containing the bitmap image + * @param size: Size of the mem buffer. + * @param flags: If flags has IB_test set then the file is not actually loaded, + * but all other operations take place. + * + * @return: A newly allocated ImBuf structure if successful, otherwise NULL. + */ +struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) +{ + struct ImBuf *ibuf = NULL; + uint32 width, height; + uchar *rasterRGB = NULL; + uchar *rasterRGBA = NULL; + uchar *toIBuf = NULL; + int x, y, to_i, from_i; + NSData *data; + NSBitmapImageRep *bitmapImage; + NSBitmapImageRep *blBitmapFormatImageRGB,*blBitmapFormatImageRGBA; + NSAutoreleasePool *pool; + + pool = [[NSAutoreleasePool alloc] init]; + + data = [NSData dataWithBytes:mem length:size]; + bitmapImage = [[NSBitmapImageRep alloc] initWithData:data]; + + if (!bitmapImage) { + fprintf(stderr, "imb_cocoaLoadImage: error loading image\n"); + [pool drain]; + return NULL; + } + + width = [bitmapImage pixelsWide]; + height = [bitmapImage pixelsHigh]; + + /* allocate the image buffer */ + ibuf = IMB_allocImBuf(width, height, 32/*RGBA*/, 0, 0); + if (!ibuf) { + fprintf(stderr, + "imb_cocoaLoadImage: could not allocate memory for the " \ + "image.\n"); + [bitmapImage release]; + [pool drain]; + return NULL; + } + + /* read in the image data */ + if (!(flags & IB_test)) { + + /* allocate memory for the ibuf->rect */ + imb_addrectImBuf(ibuf); + + /* Convert the image in a RGBA 32bit format */ + /* As Core Graphics does not support contextes with non premutliplied alpha, + we need to get alpha key values in a separate batch */ + + /* First get RGB values w/o Alpha to avoid pre-multiplication, 32bit but last byte is unused */ + blBitmapFormatImageRGB = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL + pixelsWide:width + pixelsHigh:height + bitsPerSample:8 samplesPerPixel:3 hasAlpha:NO isPlanar:NO + colorSpaceName:NSCalibratedRGBColorSpace + bitmapFormat:0 + bytesPerRow:4*width + bitsPerPixel:32/*RGB format padded to 32bits*/]; + + [NSGraphicsContext saveGraphicsState]; + [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithBitmapImageRep:blBitmapFormatImageRGB]]; + [bitmapImage draw]; + [NSGraphicsContext restoreGraphicsState]; + + rasterRGB = (uchar*)[blBitmapFormatImageRGB bitmapData]; + if (rasterRGB == NULL) { + [bitmapImage release]; + [blBitmapFormatImageRGB release]; + [pool drain]; + return NULL; + } + + /* Then get Alpha values by getting the RGBA image (that is premultiplied btw) */ + blBitmapFormatImageRGBA = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL + pixelsWide:width + pixelsHigh:height + bitsPerSample:8 samplesPerPixel:4 hasAlpha:YES isPlanar:NO + colorSpaceName:NSCalibratedRGBColorSpace + bitmapFormat:0 + bytesPerRow:4*width + bitsPerPixel:32/* RGBA */]; + + [NSGraphicsContext saveGraphicsState]; + [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithBitmapImageRep:blBitmapFormatImageRGBA]]; + [bitmapImage draw]; + [NSGraphicsContext restoreGraphicsState]; + + rasterRGBA = (uchar*)[blBitmapFormatImageRGBA bitmapData]; + if (rasterRGBA == NULL) { + [bitmapImage release]; + [blBitmapFormatImageRGB release]; + [blBitmapFormatImageRGBA release]; + [pool drain]; + return NULL; + } + + /*Copy the image to ibuf, flipping it vertically*/ + toIBuf = (uchar*)ibuf->rect; + for (x = 0; x < width; x++) { + for (y = 0; y < height; y++) { + to_i = (height-y-1)*width + x; + from_i = y*width + x; + + toIBuf[4*to_i] = rasterRGB[4*from_i]; /* R */ + toIBuf[4*to_i+1] = rasterRGB[4*from_i+1]; /* G */ + toIBuf[4*to_i+2] = rasterRGB[4*from_i+2]; /* B */ + toIBuf[4*to_i+3] = rasterRGBA[4*from_i+3]; /* A */ + } + } + + [blBitmapFormatImageRGB release]; + [blBitmapFormatImageRGBA release]; + } + + /* release the cocoa objects */ + [bitmapImage release]; + [pool drain]; + + if (ENDIAN_ORDER == B_ENDIAN) IMB_convert_rgba_to_abgr(ibuf); + + /* return successfully */ + return (ibuf); +} + +/** + * Saves an image to a file. + * + * ImBuf structures with 1, 3 or 4 bytes per pixel (GRAY, RGB, RGBA + * respectively) are accepted, and interpreted correctly. + * + * Accepted formats: TIFF, GIF, BMP, PNG, JPEG, JPEG2000 + * + * @param ibuf: Image buffer. + * @param name: Name of the image file to create. + * @param flags: Currently largely ignored. + * + * @return: 1 if the function is successful, 0 on failure. + */ + +#define FTOUSHORT(val) ((val >= 1.0f-0.5f/65535)? 65535: (val <= 0.0f)? 0: (unsigned short)(val*65535.0f + 0.5f)) + +short imb_cocoaSaveImage(struct ImBuf *ibuf, char *name, int flags) +{ + uint16 samplesperpixel, bitspersample; + unsigned char *from = NULL, *to = NULL; + unsigned short *to16 = NULL; + float *fromf = NULL; + int x, y, from_i, to_i, i; + int success; + BOOL hasAlpha; + NSString* colorSpace; + NSBitmapImageRep *blBitmapFormatImage; + NSData *dataToWrite; + NSDictionary *imageProperties; + + NSAutoreleasePool *pool; + + if (!ibuf) return FALSE; + if (!name) return FALSE; + + /* check for a valid number of bytes per pixel. Like the PNG writer, + * the TIFF writer supports 1, 3 or 4 bytes per pixel, corresponding + * to gray, RGB, RGBA respectively. */ + samplesperpixel = (uint16)((ibuf->depth + 7) >> 3); + switch (samplesperpixel) { + case 4: /*RGBA type*/ + hasAlpha = YES; + colorSpace = NSCalibratedRGBColorSpace; + break; + case 3: /*RGB type*/ + hasAlpha = NO; + colorSpace = NSCalibratedRGBColorSpace; + break; + case 1: + hasAlpha = NO; + colorSpace = NSCalibratedWhiteColorSpace; + break; + default: + fprintf(stderr, + "imb_cocoaSaveImage: unsupported number of bytes per " + "pixel: %d\n", samplesperpixel); + return (0); + } + + if((ibuf->ftype & TIF_16BIT) && ibuf->rect_float) + bitspersample = 16; + else + bitspersample = 8; + + pool = [[NSAutoreleasePool alloc] init]; + + /* Create bitmap image rep in blender format */ + blBitmapFormatImage = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL + pixelsWide:ibuf->x + pixelsHigh:ibuf->y + bitsPerSample:bitspersample samplesPerPixel:samplesperpixel hasAlpha:hasAlpha isPlanar:NO + colorSpaceName:colorSpace + bitmapFormat:NSAlphaNonpremultipliedBitmapFormat + bytesPerRow:(ibuf->x*bitspersample*samplesperpixel/8) + bitsPerPixel:(bitspersample*samplesperpixel)]; + if (!blBitmapFormatImage) { + [pool drain]; + return FALSE; + } + + /* setup pointers */ + if(bitspersample == 16) { + fromf = ibuf->rect_float; + to16 = (unsigned short*)[blBitmapFormatImage bitmapData]; + } + else { + from = (unsigned char*)ibuf->rect; + to = (unsigned char*)[blBitmapFormatImage bitmapData]; + } + + /* copy pixel data. While copying, we flip the image vertically. */ + for (x = 0; x < ibuf->x; x++) { + for (y = 0; y < ibuf->y; y++) { + from_i = 4*(y*ibuf->x+x); + to_i = samplesperpixel*((ibuf->y-y-1)*ibuf->x+x); + + if(bitspersample == 16) { + if (ibuf->profile == IB_PROFILE_SRGB) { + switch (samplesperpixel) { + case 4 /*RGBA*/: + to16[to_i] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i])); + to16[to_i+1] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i+1])); + to16[to_i+2] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i+2])); + to16[to_i+3] = FTOUSHORT(fromf[from_i+3]); + break; + case 3 /*RGB*/: + to16[to_i] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i])); + to16[to_i+1] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i+1])); + to16[to_i+2] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i+2])); + break; + case 1 /*BW*/: + to16[to_i] = FTOUSHORT(linearrgb_to_srgb(fromf[from_i])); + break; + } + } + else { + for (i = 0; i < samplesperpixel; i++, to_i++, from_i++) + to16[to_i] = FTOUSHORT(fromf[from_i]); + } + } + else { + /* 8bits per sample*/ + for (i = 0; i < samplesperpixel; i++, to_i++, from_i++) + to[to_i] = from[from_i]; + } + } + } + + /* generate file data */ + if (IS_tiff(ibuf)) { + dataToWrite = [blBitmapFormatImage TIFFRepresentationUsingCompression:NSTIFFCompressionLZW factor:1.0]; + } + else if (IS_png(ibuf)) { + imageProperties = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:false], NSImageInterlaced, + nil]; + dataToWrite = [blBitmapFormatImage representationUsingType:NSPNGFileType properties:imageProperties]; + } + else if (IS_bmp(ibuf)) { + dataToWrite = [blBitmapFormatImage representationUsingType:NSBMPFileType properties:nil]; + } + else {/* JPEG by default */ + int quality; + + quality = ibuf->ftype & 0xff; + if (quality <= 0) quality = 90; /* Standard quality if wrong supplied*/ + if (quality > 100) quality = 100; + + imageProperties = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithFloat:quality], NSImageCompressionFactor, + [NSNumber numberWithBool:true], NSImageProgressive, + nil]; + dataToWrite = [blBitmapFormatImage representationUsingType:NSJPEGFileType properties:imageProperties]; + } + + /* Write the file */ + success = [dataToWrite writeToFile:[NSString stringWithCString:name encoding:NSISOLatin1StringEncoding] + atomically:YES]; + + [blBitmapFormatImage release]; + [pool drain]; + + return success; +} + +#pragma mark format checking functions + +/* Currently, only tiff format is handled, so need to include here function that was previously in tiff.c */ + +/** + * Checks whether a given memory buffer contains a TIFF file. + * + * FIXME: Possible memory leak if mem is less than IMB_TIFF_NCB bytes long. + * However, changing this will require up-stream modifications. + * + * This method uses the format identifiers from: + * http://www.faqs.org/faqs/graphics/fileformats-faq/part4/section-9.html + * The first four bytes of big-endian and little-endian TIFF files + * respectively are (hex): + * 4d 4d 00 2a + * 49 49 2a 00 + * Note that TIFF files on *any* platform can be either big- or little-endian; + * it's not platform-specific. + * + * AFAICT, libtiff doesn't provide a method to do this automatically, and + * hence my manual comparison. - Jonathan Merritt (lancelet) 4th Sept 2005. + */ +#define IMB_TIFF_NCB 4 /* number of comparison bytes used */ +int imb_is_a_tiff(void *mem) +{ + char big_endian[IMB_TIFF_NCB] = { 0x4d, 0x4d, 0x00, 0x2a }; + char lil_endian[IMB_TIFF_NCB] = { 0x49, 0x49, 0x2a, 0x00 }; + + return ( (memcmp(big_endian, mem, IMB_TIFF_NCB) == 0) || + (memcmp(lil_endian, mem, IMB_TIFF_NCB) == 0) ); +} diff --git a/source/blender/imbuf/intern/readimage.c b/source/blender/imbuf/intern/readimage.c index 4104a8db65c..5003127dfb6 100644 --- a/source/blender/imbuf/intern/readimage.c +++ b/source/blender/imbuf/intern/readimage.c @@ -53,11 +53,16 @@ #include "IMB_hamx.h" #include "IMB_jpeg.h" #include "IMB_bmp.h" -#include "IMB_tiff.h" #include "IMB_radiance_hdr.h" #include "IMB_dpxcineon.h" #include "BKE_global.h" +#if defined(__APPLE__) && defined(GHOST_COCOA) +#include "IMB_cocoa.h" +#else +#include "IMB_tiff.h" +#endif + #ifdef WITH_OPENJPEG #include "IMB_jp2.h" #endif @@ -152,11 +157,19 @@ ImBuf *IMB_ibImageFromMemory(int *mem, int size, int flags) { ibuf = imb_loadcineon((uchar *)mem, size, flags); if (ibuf) return(ibuf); +#if defined(__APPLE__) && defined(GHOST_COCOA) + ibuf = imb_cocoaLoadImage((uchar *)mem, size, flags); + if(ibuf) { + ibuf->ftype = TIF; + return ibuf; + } +#else if (G.have_libtiff) { ibuf = imb_loadtiff((uchar *)mem, size, flags); if (ibuf) return(ibuf); } - +#endif + ibuf = imb_loadhdr((uchar*)mem, size, flags); if (ibuf) return (ibuf); diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c index b3af727190a..f8452ac4cd4 100644 --- a/source/blender/imbuf/intern/writeimage.c +++ b/source/blender/imbuf/intern/writeimage.c @@ -51,14 +51,22 @@ #include "IMB_amiga.h" #include "IMB_png.h" #include "IMB_bmp.h" -#include "IMB_tiff.h" #include "IMB_radiance_hdr.h" + +#if defined(__APPLE__) && defined(GHOST_COCOA) +#include "IMB_cocoa.h" +#else +#include "IMB_tiff.h" +#endif + #ifdef WITH_OPENJPEG #include "IMB_jp2.h" #endif + #ifdef WITH_OPENEXR #include "openexr/openexr_api.h" #endif + #ifdef WITH_DDS #include "dds/dds_api.h" #endif @@ -110,11 +118,21 @@ short IMB_saveiff(struct ImBuf *ibuf, char *name, int flags) IMB_rect_from_float(ibuf); return imb_saveiris(ibuf, name, flags); } + +#if defined(__APPLE__) && defined(GHOST_COCOA) + if (IS_tiff(ibuf)) { + if(ibuf->rect==NULL && ibuf->rect_float) + IMB_rect_from_float(ibuf); + return imb_cocoaSaveImage(ibuf, name, flags); + } +#else if (G.have_libtiff && IS_tiff(ibuf)) { if(ibuf->rect==NULL && ibuf->rect_float) IMB_rect_from_float(ibuf); return imb_savetiff(ibuf, name, flags); } +#endif + #ifdef WITH_OPENEXR if (IS_openexr(ibuf)) { return imb_save_openexr(ibuf, name, flags); diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 8097822acbc..96199a2a158 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -247,7 +247,9 @@ void WM_exit(bContext *C) BPY_end_python(); #endif +#if !(defined(__APPLE__) && defined(GHOST_COCOA)) libtiff_exit(); +#endif #ifdef WITH_QUICKTIME quicktime_exit(); diff --git a/source/creator/creator.c b/source/creator/creator.c index 6f90c2ffe84..9749b724672 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -368,8 +368,10 @@ int main(int argc, char **argv) switch(argv[a][1]) { case 'a': /* -b was not given, play an animation */ +#if !(defined(__APPLE__) && defined(GHOST_COCOA)) /* exception here, see below, it probably needs happens after qt init? */ libtiff_init(); +#endif // XXX playanim(argc-1, argv+1); exit(0); @@ -538,6 +540,10 @@ int main(int argc, char **argv) #endif /* WITH_QUICKTIME */ +#if defined(__APPLE__) && defined(GHOST_COCOA) + /* libtiff is not used, Cocoa services are used instead for tiff I/O */ + G.have_libtiff = 1; +#else /* dynamically load libtiff, if available */ libtiff_init(); if (!G.have_libtiff && (G.f & G_DEBUG)) { @@ -545,6 +551,7 @@ int main(int argc, char **argv) printf("Try setting the BF_TIFF_LIB environment variable if you want this support.\n"); printf("Example: setenv BF_TIFF_LIB /usr/lib/libtiff.so\n"); } +#endif /* OK we are ready for it */ From 88b38c30a1c1b799890b2644391af103fcaeae34 Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Thu, 29 Oct 2009 18:37:34 +0000 Subject: [PATCH 240/412] SVN maintenance. --- source/blender/imbuf/intern/IMB_cocoa.h | 2 +- source/blender/imbuf/intern/imbuf_cocoa.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/imbuf/intern/IMB_cocoa.h b/source/blender/imbuf/intern/IMB_cocoa.h index d40fc58b0c0..0fd12f23c32 100644 --- a/source/blender/imbuf/intern/IMB_cocoa.h +++ b/source/blender/imbuf/intern/IMB_cocoa.h @@ -1,7 +1,7 @@ /* * IMB_cocoa.h * - * $Id: IMB_cocoa.h 13161 2008-01-07 19:13:47Z hos $ + * $Id$ * * ***** BEGIN GPL LICENSE BLOCK ***** * diff --git a/source/blender/imbuf/intern/imbuf_cocoa.m b/source/blender/imbuf/intern/imbuf_cocoa.m index 13eb71f1857..e5bebf68f66 100644 --- a/source/blender/imbuf/intern/imbuf_cocoa.m +++ b/source/blender/imbuf/intern/imbuf_cocoa.m @@ -1,7 +1,7 @@ /* * imbuf_coca.m * - * $Id: imbuf_cocoa.m 17958 2008-12-19 19:11:02Z blendix $ + * $Id$ * * ***** BEGIN GPL LICENSE BLOCK ***** * From 98527a71061735a20b712a2c4d552c0c966e5798 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 18:49:36 +0000 Subject: [PATCH 241/412] various small fixes - undo stops all running jobs (operator redo was crashing with threaded render) - adding new armatures was crashing if there was no valid view3d - transform with an active hidden object would crash --- source/blender/blenkernel/intern/blender.c | 3 +++ source/blender/editors/armature/editarmature.c | 6 +++--- source/blender/editors/curve/editcurve.c | 2 +- source/blender/editors/metaball/mball_edit.c | 2 +- .../blender/editors/transform/transform_orientations.c | 10 ++++++++-- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c index 94b03730e54..a387d1bca9d 100644 --- a/source/blender/blenkernel/intern/blender.c +++ b/source/blender/blenkernel/intern/blender.c @@ -536,6 +536,9 @@ static int read_undosave(bContext *C, UndoElem *uel) char scestr[FILE_MAXDIR+FILE_MAXFILE]; int success=0, fileflags; + /* This is needed so undoing/redoing doesnt crash with threaded previews going */ + WM_jobs_stop(CTX_wm_manager(C), CTX_wm_screen(C)); + strcpy(scestr, G.sce); /* temporal store */ fileflags= G.fileflags; G.fileflags |= G_FILE_NO_UI; diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 1e94e1b440c..c5b01f1cab0 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -2242,7 +2242,7 @@ void add_primitive_bone(Scene *scene, View3D *v3d, RegionView3D *rv3d) VECCOPY(bone->head, curs); - if ( (U.flag & USER_ADD_VIEWALIGNED) ) + if (rv3d && (U.flag & USER_ADD_VIEWALIGNED)) VecAddf(bone->tail, bone->head, imat[1]); // bone with unit length 1 else VecAddf(bone->tail, bone->head, imat[2]); // bone with unit length 1, pointing up Z @@ -3423,7 +3423,7 @@ static int armature_bone_primitive_add_exec(bContext *C, wmOperator *op) Mat4Invert(obedit->imat, obedit->obmat); Mat4MulVecfl(obedit->imat, curs); - if (U.flag & USER_ADD_VIEWALIGNED) + if (rv3d && (U.flag & USER_ADD_VIEWALIGNED)) Mat3CpyMat4(obmat, rv3d->viewmat); else Mat3One(obmat); @@ -3438,7 +3438,7 @@ static int armature_bone_primitive_add_exec(bContext *C, wmOperator *op) VECCOPY(bone->head, curs); - if(U.flag & USER_ADD_VIEWALIGNED) + if(rv3d && (U.flag & USER_ADD_VIEWALIGNED)) VecAddf(bone->tail, bone->head, imat[1]); // bone with unit length 1 else VecAddf(bone->tail, bone->head, imat[2]); // bone with unit length 1, pointing up Z diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 45820869b48..a58439051e9 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -4729,7 +4729,7 @@ Nurb *add_nurbs_primitive(bContext *C, int type, int newname) cent[2]-= obedit->obmat[3][2]; if(rv3d) { - if (!newname && U.flag & USER_ADD_VIEWALIGNED) + if (!newname && (U.flag & USER_ADD_VIEWALIGNED)) Mat3CpyMat4(imat, rv3d->viewmat); else Mat3One(imat); diff --git a/source/blender/editors/metaball/mball_edit.c b/source/blender/editors/metaball/mball_edit.c index 6ad7fbabfcb..f335e47188f 100644 --- a/source/blender/editors/metaball/mball_edit.c +++ b/source/blender/editors/metaball/mball_edit.c @@ -129,7 +129,7 @@ MetaElem *add_metaball_primitive(bContext *C, int type, int newname) cent[2]-= obedit->obmat[3][2]; if (rv3d) { - if (!(newname) || U.flag & USER_ADD_VIEWALIGNED || !rv3d) + if (!(newname) || U.flag & USER_ADD_VIEWALIGNED) Mat3CpyMat4(imat, rv3d->viewmat); else Mat3One(imat); diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index e790b38dd67..933d3303437 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -518,6 +518,7 @@ void initTransformOrientation(bContext *C, TransInfo *t) Object *obedit = CTX_data_active_object(C); float normal[3]={0.0, 0.0, 0.0}; float plane[3]={0.0, 0.0, 0.0}; + switch(t->current_orientation) { case V3D_MANIP_GLOBAL: @@ -530,7 +531,7 @@ void initTransformOrientation(bContext *C, TransInfo *t) gimbalAxis(ob, t->spacemtx); break; case V3D_MANIP_NORMAL: - if(obedit || ob->mode & OB_MODE_POSE) { + if(obedit || (ob && ob->mode & OB_MODE_POSE)) { float mat[3][3]; int type; @@ -579,7 +580,12 @@ void initTransformOrientation(bContext *C, TransInfo *t) /* no break we define 'normal' as 'local' in Object mode */ case V3D_MANIP_LOCAL: strcpy(t->spacename, "local"); - Mat3CpyMat4(t->spacemtx, ob->obmat); + + if(ob) + Mat3CpyMat4(t->spacemtx, ob->obmat); + else + Mat3One(t->spacemtx); + Mat3Ortho(t->spacemtx); break; From 9a13a84f15e169d3b0bcd2e3047090cc625a133e Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Thu, 29 Oct 2009 18:59:48 +0000 Subject: [PATCH 242/412] No need to force ortho on a unit matrix --- source/blender/editors/transform/transform_orientations.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index 933d3303437..efcaedd2fe1 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -581,12 +581,13 @@ void initTransformOrientation(bContext *C, TransInfo *t) case V3D_MANIP_LOCAL: strcpy(t->spacename, "local"); - if(ob) + if(ob) { Mat3CpyMat4(t->spacemtx, ob->obmat); - else + Mat3Ortho(t->spacemtx); + } else { Mat3One(t->spacemtx); + } - Mat3Ortho(t->spacemtx); break; case V3D_MANIP_VIEW: From 099438f087b20a3ead6f018e208e8a5e84ac99f9 Mon Sep 17 00:00:00 2001 From: Daniel Genrich Date: Thu, 29 Oct 2009 19:26:13 +0000 Subject: [PATCH 243/412] Smoke: * Bugfix for crash when deleting particle system used by Smoke Flow modifier (reported by nudelZ). --- source/blender/blenkernel/intern/particle.c | 25 +++++++++++++++------ source/blender/blenkernel/intern/smoke.c | 2 +- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index feec4866a18..43a624b3013 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -35,20 +35,21 @@ #include "MEM_guardedalloc.h" -#include "DNA_scene_types.h" #include "DNA_boid_types.h" +#include "DNA_curve_types.h" #include "DNA_group_types.h" -#include "DNA_particle_types.h" +#include "DNA_ipo_types.h" // XXX old animation system stuff to remove! +#include "DNA_key_types.h" +#include "DNA_material_types.h" #include "DNA_mesh_types.h" #include "DNA_meshdata_types.h" #include "DNA_modifier_types.h" #include "DNA_object_force.h" -#include "DNA_texture_types.h" -#include "DNA_material_types.h" #include "DNA_object_types.h" -#include "DNA_curve_types.h" -#include "DNA_key_types.h" -#include "DNA_ipo_types.h" // XXX old animation system stuff to remove! +#include "DNA_particle_types.h" +#include "DNA_scene_types.h" +#include "DNA_smoke_types.h" +#include "DNA_texture_types.h" #include "BLI_arithb.h" #include "BLI_blenlib.h" @@ -3308,10 +3309,20 @@ void object_remove_particle_system(Scene *scene, Object *ob) { ParticleSystem *psys = psys_get_current(ob); ParticleSystemModifierData *psmd; + ModifierData *md; if(!psys) return; + /* clear all other appearances of this pointer (like on smoke flow modifier) */ + if((md = modifiers_findByType(ob, eModifierType_Smoke))) + { + SmokeModifierData *smd = (SmokeModifierData *)md; + if((smd->type == MOD_SMOKE_TYPE_FLOW) && smd->flow && smd->flow->psys) + if(smd->flow->psys == psys) + smd->flow->psys = NULL; + } + /* clear modifier */ psmd= psys_get_modifier(ob, psys); BLI_remlink(&ob->modifiers, psmd); diff --git a/source/blender/blenkernel/intern/smoke.c b/source/blender/blenkernel/intern/smoke.c index ab56623ed5e..b7fe0bdfc98 100644 --- a/source/blender/blenkernel/intern/smoke.c +++ b/source/blender/blenkernel/intern/smoke.c @@ -823,7 +823,7 @@ static void smoke_calc_domain(Scene *scene, Object *ob, SmokeModifierData *smd) // we got nice flow object SmokeFlowSettings *sfs = smd2->flow; - if(sfs->psys && sfs->psys->part && sfs->psys->part->type==PART_EMITTER) // is particle system selected + if(sfs && sfs->psys && sfs->psys->part && sfs->psys->part->type==PART_EMITTER) // is particle system selected { ParticleSystem *psys = sfs->psys; ParticleSettings *part=psys->part; From 8c707b2a5f306f149bcd3057ab6fe91076c75dd8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 19:59:38 +0000 Subject: [PATCH 244/412] moved the following into the screen context rather then the view3d context so python scripts can access these when running in the console. "visible_bones", "editable_bones", "selected_bones", "selected_editable_bones", "visible_pchans", "selected_pchans", "active_bone", "active_pchan", added "C" to the consoles namespace, temp hack but useful --- release/scripts/ui/space_console.py | 1 + source/blender/editors/animation/keyingsets.c | 7 +- .../blender/editors/screen/screen_context.c | 153 ++++++++++++++++++ .../editors/space_view3d/space_view3d.c | 152 +---------------- 4 files changed, 161 insertions(+), 152 deletions(-) diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 5bb211f7d98..19024977992 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -133,6 +133,7 @@ class CONSOLE_OT_exec(bpy.types.Operator): return ('CANCELLED',) namespace, console, stdout, stderr = get_console(hash(context.region)) + namespace['C'] = context # redirect output sys.stdout = stdout diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index 97b64cb36c9..0f4f29d0091 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -1267,7 +1267,8 @@ short modifykey_get_context_data (bContext *C, ListBase *dsources, KeyingSet *ks /* for now, the active area is used to determine what set of contexts apply */ if (sa == NULL) return 0; - + +#if 0 switch (sa->spacetype) { case SPACE_VIEW3D: /* 3D-View: Selected Objects or Bones */ return modifykey_get_context_v3d_data(C, dsources, ks); @@ -1275,6 +1276,10 @@ short modifykey_get_context_data (bContext *C, ListBase *dsources, KeyingSet *ks /* nothing happened */ return 0; +#endif + + /* looking into this code, it doesnt use the 3D view - Campbell */ + return modifykey_get_context_v3d_data(C, dsources, ks); } /* KeyingSet Operations (Insert/Delete Keyframes) ------------ */ diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c index e573ef06247..4f08ffb5c7b 100644 --- a/source/blender/editors/screen/screen_context.c +++ b/source/blender/editors/screen/screen_context.c @@ -28,16 +28,20 @@ #include #include "DNA_object_types.h" +#include "DNA_armature_types.h" +#include "DNA_action_types.h" #include "DNA_scene_types.h" #include "DNA_screen_types.h" #include "BKE_context.h" #include "BKE_utildefines.h" #include "BKE_global.h" +#include "BKE_action.h" #include "RNA_access.h" #include "ED_object.h" +#include "ED_armature.h" int ed_screen_context(const bContext *C, const char *member, bContextDataResult *result) { @@ -53,6 +57,8 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult static const char *dir[] = { "scene", "selected_objects", "selected_bases", "selected_editable_objects", "selected_editable_bases", + "visible_bones", "editable_bones", "selected_bones", "selected_editable_bones", + "visible_pchans", "selected_pchans", "active_bone", "active_pchan", "active_base", "active_object", "edit_object", "sculpt_object", "vertex_paint_object", "weight_paint_object", "texture_paint_object", "brush", "particle_edit_object", NULL}; @@ -96,6 +102,153 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult return 1; } + else if(CTX_data_equals(member, "visible_bones") || CTX_data_equals(member, "editable_bones")) { + Object *obedit= scene->obedit; // XXX get from context? + bArmature *arm= (obedit) ? obedit->data : NULL; + EditBone *ebone, *flipbone=NULL; + int editable_bones= CTX_data_equals(member, "editable_bones"); + + if (arm && arm->edbo) { + /* Attention: X-Axis Mirroring is also handled here... */ + for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { + /* first and foremost, bone must be visible and selected */ + if (EBONE_VISIBLE(arm, ebone)) { + /* Get 'x-axis mirror equivalent' bone if the X-Axis Mirroring option is enabled + * so that most users of this data don't need to explicitly check for it themselves. + * + * We need to make sure that these mirrored copies are not selected, otherwise some + * bones will be operated on twice. + */ + if (arm->flag & ARM_MIRROR_EDIT) + flipbone = ED_armature_bone_get_mirrored(arm->edbo, ebone); + + /* if we're filtering for editable too, use the check for that instead, as it has selection check too */ + if (editable_bones) { + /* only selected + editable */ + if (EBONE_EDITABLE(ebone)) { + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); + + if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); + } + } + else { + /* only include bones if visible */ + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); + + if ((flipbone) && EBONE_VISIBLE(arm, flipbone)==0) + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); + } + } + } + + return 1; + } + } + else if(CTX_data_equals(member, "selected_bones") || CTX_data_equals(member, "selected_editable_bones")) { + Object *obedit= scene->obedit; // XXX get from context? + bArmature *arm= (obedit) ? obedit->data : NULL; + EditBone *ebone, *flipbone=NULL; + int selected_editable_bones= CTX_data_equals(member, "selected_editable_bones"); + + if (arm && arm->edbo) { + /* Attention: X-Axis Mirroring is also handled here... */ + for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { + /* first and foremost, bone must be visible and selected */ + if (EBONE_VISIBLE(arm, ebone) && (ebone->flag & BONE_SELECTED)) { + /* Get 'x-axis mirror equivalent' bone if the X-Axis Mirroring option is enabled + * so that most users of this data don't need to explicitly check for it themselves. + * + * We need to make sure that these mirrored copies are not selected, otherwise some + * bones will be operated on twice. + */ + if (arm->flag & ARM_MIRROR_EDIT) + flipbone = ED_armature_bone_get_mirrored(arm->edbo, ebone); + + /* if we're filtering for editable too, use the check for that instead, as it has selection check too */ + if (selected_editable_bones) { + /* only selected + editable */ + if (EBONE_EDITABLE(ebone)) { + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); + + if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); + } + } + else { + /* only include bones if selected */ + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); + + if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) + CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); + } + } + } + + return 1; + } + } + else if(CTX_data_equals(member, "visible_pchans")) { + Object *obact= OBACT; + bArmature *arm= (obact) ? obact->data : NULL; + bPoseChannel *pchan; + + if (obact && arm) { + for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { + /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ + if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { + CTX_data_list_add(result, &obact->id, &RNA_PoseChannel, pchan); + } + } + + return 1; + } + } + else if(CTX_data_equals(member, "selected_pchans")) { + Object *obact= OBACT; + bArmature *arm= (obact) ? obact->data : NULL; + bPoseChannel *pchan; + + if (obact && arm) { + for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { + /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ + if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { + if (pchan->bone->flag & (BONE_SELECTED|BONE_ACTIVE)) + CTX_data_list_add(result, &obact->id, &RNA_PoseChannel, pchan); + } + } + + return 1; + } + } + else if(CTX_data_equals(member, "active_bone")) { + Object *obedit= scene->obedit; // XXX get from context? + bArmature *arm= (obedit) ? obedit->data : NULL; + EditBone *ebone; + + if (arm && arm->edbo) { + for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { + if (EBONE_VISIBLE(arm, ebone)) { + if (ebone->flag & BONE_ACTIVE) { + CTX_data_pointer_set(result, &arm->id, &RNA_UnknownType, ebone); + + return 1; + } + } + } + } + + } + else if(CTX_data_equals(member, "active_pchan")) { + Object *obact= OBACT; + bPoseChannel *pchan; + + pchan= get_active_posechannel(obact); + if (pchan) { + CTX_data_pointer_set(result, &obact->id, &RNA_PoseChannel, pchan); + return 1; + } + } else if(CTX_data_equals(member, "active_base")) { if(scene->basact) CTX_data_pointer_set(result, &scene->id, &RNA_UnknownType, scene->basact); diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index ae0c73e71cc..4a9042aa31c 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -663,9 +663,7 @@ static int view3d_context(const bContext *C, const char *member, bContextDataRes static const char *dir[] = { "selected_objects", "selected_bases", "selected_editable_objects", "selected_editable_bases", "visible_objects", "visible_bases", "selectable_objects", "selectable_bases", - "active_base", "active_object", "visible_bones", "editable_bones", - "selected_bones", "selected_editable_bones", "visible_pchans", - "selected_pchans", "active_bone", "active_pchan", NULL}; + "active_base", "active_object", NULL}; CTX_data_dir_set(result, dir); } @@ -749,154 +747,6 @@ static int view3d_context(const bContext *C, const char *member, bContextDataRes return 1; } - else if(CTX_data_equals(member, "visible_bones") || CTX_data_equals(member, "editable_bones")) { - Object *obedit= scene->obedit; // XXX get from context? - bArmature *arm= (obedit) ? obedit->data : NULL; - EditBone *ebone, *flipbone=NULL; - int editable_bones= CTX_data_equals(member, "editable_bones"); - - if (arm && arm->edbo) { - /* Attention: X-Axis Mirroring is also handled here... */ - for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { - /* first and foremost, bone must be visible and selected */ - if (EBONE_VISIBLE(arm, ebone)) { - /* Get 'x-axis mirror equivalent' bone if the X-Axis Mirroring option is enabled - * so that most users of this data don't need to explicitly check for it themselves. - * - * We need to make sure that these mirrored copies are not selected, otherwise some - * bones will be operated on twice. - */ - if (arm->flag & ARM_MIRROR_EDIT) - flipbone = ED_armature_bone_get_mirrored(arm->edbo, ebone); - - /* if we're filtering for editable too, use the check for that instead, as it has selection check too */ - if (editable_bones) { - /* only selected + editable */ - if (EBONE_EDITABLE(ebone)) { - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); - - if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); - } - } - else { - /* only include bones if visible */ - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); - - if ((flipbone) && EBONE_VISIBLE(arm, flipbone)==0) - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); - } - } - } - - return 1; - } - } - else if(CTX_data_equals(member, "selected_bones") || CTX_data_equals(member, "selected_editable_bones")) { - Object *obedit= scene->obedit; // XXX get from context? - bArmature *arm= (obedit) ? obedit->data : NULL; - EditBone *ebone, *flipbone=NULL; - int selected_editable_bones= CTX_data_equals(member, "selected_editable_bones"); - - if (arm && arm->edbo) { - /* Attention: X-Axis Mirroring is also handled here... */ - for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { - /* first and foremost, bone must be visible and selected */ - if (EBONE_VISIBLE(arm, ebone) && (ebone->flag & BONE_SELECTED)) { - /* Get 'x-axis mirror equivalent' bone if the X-Axis Mirroring option is enabled - * so that most users of this data don't need to explicitly check for it themselves. - * - * We need to make sure that these mirrored copies are not selected, otherwise some - * bones will be operated on twice. - */ - if (arm->flag & ARM_MIRROR_EDIT) - flipbone = ED_armature_bone_get_mirrored(arm->edbo, ebone); - - /* if we're filtering for editable too, use the check for that instead, as it has selection check too */ - if (selected_editable_bones) { - /* only selected + editable */ - if (EBONE_EDITABLE(ebone)) { - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); - - if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); - } - } - else { - /* only include bones if selected */ - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, ebone); - - if ((flipbone) && !(flipbone->flag & BONE_SELECTED)) - CTX_data_list_add(result, &arm->id, &RNA_UnknownType, flipbone); - } - } - } - - return 1; - } - } - else if(CTX_data_equals(member, "visible_pchans")) { - Object *obact= OBACT; - bArmature *arm= (obact) ? obact->data : NULL; - bPoseChannel *pchan; - - if (obact && arm) { - for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { - /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ - if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { - CTX_data_list_add(result, &obact->id, &RNA_PoseChannel, pchan); - } - } - - return 1; - } - } - else if(CTX_data_equals(member, "selected_pchans")) { - Object *obact= OBACT; - bArmature *arm= (obact) ? obact->data : NULL; - bPoseChannel *pchan; - - if (obact && arm) { - for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { - /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ - if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { - if (pchan->bone->flag & (BONE_SELECTED|BONE_ACTIVE)) - CTX_data_list_add(result, &obact->id, &RNA_PoseChannel, pchan); - } - } - - return 1; - } - } - else if(CTX_data_equals(member, "active_bone")) { - Object *obedit= scene->obedit; // XXX get from context? - bArmature *arm= (obedit) ? obedit->data : NULL; - EditBone *ebone; - - if (arm && arm->edbo) { - for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { - if (EBONE_VISIBLE(arm, ebone)) { - if (ebone->flag & BONE_ACTIVE) { - CTX_data_pointer_set(result, &arm->id, &RNA_UnknownType, ebone); - - return 1; - } - } - } - } - - } - else if(CTX_data_equals(member, "active_pchan")) { - Object *obact= OBACT; - bPoseChannel *pchan; - - pchan= get_active_posechannel(obact); - if (pchan) { - CTX_data_pointer_set(result, &obact->id, &RNA_PoseChannel, pchan); - return 1; - } - } - return 0; } From 4b3fd4a8e05e49a9034e5ee789fcfef3961c19c5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Oct 2009 20:55:45 +0000 Subject: [PATCH 245/412] replacement for my own autocomplete module by stani --- from his patch All the functionality is in the console folder: - intellisense.py: the central module which loads others on demand - complete_namespace: more or less a replacement for the old autocomplete.py - complete_import: module completion (I find this very handy, not just luxury) These complete_* modules work very simple and should also work outside blender. You give some input and it returns a list with possible completions. autocomplete.py is now deprecated. --- release/scripts/modules/autocomplete.py | 211 --------- release/scripts/modules/console/__init__.py | 16 + .../modules/console/complete_import.py | 174 ++++++++ .../modules/console/complete_namespace.py | 67 +++ .../scripts/modules/console/intellisense.py | 100 +++++ release/scripts/ui/space_console.py | 412 +++++++++--------- 6 files changed, 563 insertions(+), 417 deletions(-) delete mode 100644 release/scripts/modules/autocomplete.py create mode 100644 release/scripts/modules/console/__init__.py create mode 100644 release/scripts/modules/console/complete_import.py create mode 100644 release/scripts/modules/console/complete_namespace.py create mode 100644 release/scripts/modules/console/intellisense.py diff --git a/release/scripts/modules/autocomplete.py b/release/scripts/modules/autocomplete.py deleted file mode 100644 index 9dd489a178e..00000000000 --- a/release/scripts/modules/autocomplete.py +++ /dev/null @@ -1,211 +0,0 @@ - - -def execute(bcon): - ''' - This function has been taken from a BGE console autocomp I wrote a while ago - the dictionaty bcon is not needed but it means I can copy and paste from the old func - which works ok for now. - - 'bcon' dictionary keys, set by the caller - * 'cursor' - index of the editing character (int) - * 'edit_text' - text string for editing (string) - * 'scrollback' - text to add to the scrollback, options are added here. (text) - * 'namespace' - namespace, (dictionary) - - ''' - - - def is_delimiter(ch): - ''' - For skipping words - ''' - if ch == '_': - return False - if ch.isalnum(): - return False - - return True - - def is_delimiter_autocomp(ch): - ''' - When autocompleteing will earch back and - ''' - if ch in '._[] "\'': - return False - if ch.isalnum(): - return False - - return True - - - def do_autocomp(autocomp_prefix, autocomp_members): - ''' - return text to insert and a list of options - ''' - autocomp_members = [v for v in autocomp_members if v.startswith(autocomp_prefix)] - - print("AUTO: '%s'" % autocomp_prefix) - print("MEMBERS: '%s'" % str(autocomp_members)) - - if not autocomp_prefix: - return '', autocomp_members - elif len(autocomp_members) > 1: - # find a common string between all members after the prefix - # 'ge' [getA, getB, getC] --> 'get' - - # get the shortest member - min_len = min([len(v) for v in autocomp_members]) - - autocomp_prefix_ret = '' - - for i in range(len(autocomp_prefix), min_len): - char_soup = set() - for v in autocomp_members: - char_soup.add(v[i]) - - if len(char_soup) > 1: - break - else: - autocomp_prefix_ret += char_soup.pop() - - return autocomp_prefix_ret, autocomp_members - elif len(autocomp_members) == 1: - if autocomp_prefix == autocomp_members[0]: - # the variable matched the prefix exactly - # add a '.' so you can quickly continue. - # Could try add [] or other possible extensions rather then '.' too if we had the variable. - return '.', [] - else: - # finish off the of the word word - return autocomp_members[0][len(autocomp_prefix):], [] - else: - return '', [] - - - def BCon_PrevChar(bcon): - cursor = bcon['cursor']-1 - if cursor<0: - return None - - try: - return bcon['edit_text'][cursor] - except: - return None - - - def BCon_NextChar(bcon): - try: - return bcon['edit_text'][bcon['cursor']] - except: - return None - - def BCon_cursorLeft(bcon): - bcon['cursor'] -= 1 - if bcon['cursor'] < 0: - bcon['cursor'] = 0 - - def BCon_cursorRight(bcon): - bcon['cursor'] += 1 - if bcon['cursor'] > len(bcon['edit_text']): - bcon['cursor'] = len(bcon['edit_text']) - - def BCon_AddScrollback(bcon, text): - - bcon['scrollback'] = bcon['scrollback'] + text - - - def BCon_cursorInsertChar(bcon, ch): - if bcon['cursor']==0: - bcon['edit_text'] = ch + bcon['edit_text'] - elif bcon['cursor']==len(bcon['edit_text']): - bcon['edit_text'] = bcon['edit_text'] + ch - else: - bcon['edit_text'] = bcon['edit_text'][:bcon['cursor']] + ch + bcon['edit_text'][bcon['cursor']:] - - bcon['cursor'] - if bcon['cursor'] > len(bcon['edit_text']): - bcon['cursor'] = len(bcon['edit_text']) - BCon_cursorRight(bcon) - - - TEMP_NAME = '___tempname___' - - cursor_orig = bcon['cursor'] - - ch = BCon_PrevChar(bcon) - while ch != None and (not is_delimiter(ch)): - ch = BCon_PrevChar(bcon) - BCon_cursorLeft(bcon) - - if ch != None: - BCon_cursorRight(bcon) - - #print (cursor_orig, bcon['cursor']) - - cursor_base = bcon['cursor'] - - autocomp_prefix = bcon['edit_text'][cursor_base:cursor_orig] - - print("PREFIX:'%s'" % autocomp_prefix) - - # Get the previous word - if BCon_PrevChar(bcon)=='.': - BCon_cursorLeft(bcon) - ch = BCon_PrevChar(bcon) - while ch != None and is_delimiter_autocomp(ch)==False: - ch = BCon_PrevChar(bcon) - BCon_cursorLeft(bcon) - - cursor_new = bcon['cursor'] - - if ch != None: - cursor_new+=1 - - pytxt = bcon['edit_text'][cursor_new:cursor_base-1].strip() - print("AUTOCOMP EVAL: '%s'" % pytxt) - #try: - if pytxt: - bcon['console'].runsource(TEMP_NAME + '=' + pytxt, '', 'single') - # print val - else: ##except: - val = None - - try: - val = bcon['namespace'][TEMP_NAME] - del bcon['namespace'][TEMP_NAME] - except: - val = None - - if val: - autocomp_members = dir(val) - - autocomp_prefix_ret, autocomp_members = do_autocomp(autocomp_prefix, autocomp_members) - - bcon['cursor'] = cursor_orig - for v in autocomp_prefix_ret: - BCon_cursorInsertChar(bcon, v) - cursor_orig = bcon['cursor'] - - if autocomp_members: - BCon_AddScrollback(bcon, ', '.join(autocomp_members)) - - del val - - else: - # Autocomp global namespace - autocomp_members = bcon['namespace'].keys() - - if autocomp_prefix: - autocomp_members = [v for v in autocomp_members if v.startswith(autocomp_prefix)] - - autocomp_prefix_ret, autocomp_members = do_autocomp(autocomp_prefix, autocomp_members) - - bcon['cursor'] = cursor_orig - for v in autocomp_prefix_ret: - BCon_cursorInsertChar(bcon, v) - cursor_orig = bcon['cursor'] - - if autocomp_members: - BCon_AddScrollback(bcon, ', '.join(autocomp_members)) - - bcon['cursor'] = cursor_orig \ No newline at end of file diff --git a/release/scripts/modules/console/__init__.py b/release/scripts/modules/console/__init__.py new file mode 100644 index 00000000000..eb32d78b1ef --- /dev/null +++ b/release/scripts/modules/console/__init__.py @@ -0,0 +1,16 @@ +# Copyright (c) 2009 www.stani.be (GPL license) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +"""Package for console specific modules.""" diff --git a/release/scripts/modules/console/complete_import.py b/release/scripts/modules/console/complete_import.py new file mode 100644 index 00000000000..02ded3eef6d --- /dev/null +++ b/release/scripts/modules/console/complete_import.py @@ -0,0 +1,174 @@ +# Copyright (c) 2009 Fernando Perez, www.stani.be (GPL license) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +# Original copyright (see docstring): +#***************************************************************************** +# Copyright (C) 2001-2006 Fernando Perez +# +# Distributed under the terms of the BSD License. The full license is in +# the file COPYING, distributed as part of this software. +#***************************************************************************** + +"""Completer for import statements + +Original code was from IPython/Extensions/ipy_completers.py. The following +changes have been made: +- ported to python3 +- pep8 polishing +- limit list of modules to prefix in case of "from w" +- sorted modules +- added sphinx documentation +""" + + +import os +import sys + +TIMEOUT_STORAGE = 3 # Time in secs after which the rootmodules will be stored +TIMEOUT_GIVEUP = 20 # Time in secs after which we give up + +ROOT_MODULES = None + + +def get_root_modules(): + """ + Returns a list containing the names of all the modules available in the + folders of the pythonpath. + + :returns: modules + :rtype: list + """ + global ROOT_MODULES + modules = [] + if not(ROOT_MODULES is None): + return ROOT_MODULES + from time import time + t = time() + store = False + for path in sys.path: + modules += module_list(path) + if time() - t >= TIMEOUT_STORAGE and not store: + # Caching the list of root modules, please wait! + store = True + if time() - t > TIMEOUT_GIVEUP: + # This is taking too long, we give up. + ROOT_MODULES = [] + return [] + + modules += sys.builtin_module_names + + modules = list(set(modules)) + if '__init__' in modules: + modules.remove('__init__') + modules = sorted(set(modules)) + if store: + ROOT_MODULES = modules + return modules + + +def module_list(path): + """ + Return the list containing the names of the modules available in + the given folder. + + :param path: folder path + :type path: str + :returns: modules + :rtype: list + """ + + if os.path.isdir(path): + folder_list = os.listdir(path) + elif path.endswith('.egg'): + from zipimport import zipimporter + try: + folder_list = [f for f in zipimporter(path)._files] + except: + folder_list = [] + else: + folder_list = [] + #folder_list = glob.glob(os.path.join(path,'*')) + folder_list = [p for p in folder_list \ + if os.path.exists(os.path.join(path, p, '__init__.py'))\ + or p[-3:] in ('.py', '.so')\ + or p[-4:] in ('.pyc', '.pyo', '.pyd')] + + folder_list = [os.path.basename(p).split('.')[0] for p in folder_list] + return folder_list + + +def complete(line): + """ + Returns a list containing the completion possibilities for an import line. + + :param line: + + incomplete line which contains an import statement:: + + import xml.d + from xml.dom import + + :type line: str + :returns: list of completion possibilities + :rtype: list + + >>> complete('import weak') + ['weakref'] + """ + import inspect + + def try_import(mod, only_modules=False): + + def is_importable(module, attr): + if only_modules: + return inspect.ismodule(getattr(module, attr)) + else: + return not(attr[:2] == '__' and attr[-2:] == '__') + + try: + m = __import__(mod) + except: + return [] + mods = mod.split('.') + for module in mods[1:]: + m = getattr(m, module) + if (not hasattr(m, '__file__')) or (not only_modules) or\ + (hasattr(m, '__file__') and '__init__' in m.__file__): + completion_list = [attr for attr in dir(m) + if is_importable(m, attr)] + completion_list.extend(getattr(m, '__all__', [])) + if hasattr(m, '__file__') and '__init__' in m.__file__: + completion_list.extend(module_list(os.path.dirname(m.__file__))) + completion_list = list(set(completion_list)) + if '__init__' in completion_list: + completion_list.remove('__init__') + return completion_list + + words = line.split(' ') + if len(words) == 3 and words[0] == 'from': + return ['import '] + if len(words) < 3 and (words[0] in ['import', 'from']): + if len(words) == 1: + return get_root_modules() + mod = words[1].split('.') + if len(mod) < 2: + mod0 = mod[0] + return [m for m in get_root_modules() if m.startswith(mod0)] + completion_list = try_import('.'.join(mod[:-1]), True) + completion_list = ['.'.join(mod[:-1] + [el]) for el in completion_list] + return completion_list + if len(words) >= 3 and words[0] == 'from': + mod = words[1] + return try_import(mod) diff --git a/release/scripts/modules/console/complete_namespace.py b/release/scripts/modules/console/complete_namespace.py new file mode 100644 index 00000000000..a2836a60b29 --- /dev/null +++ b/release/scripts/modules/console/complete_namespace.py @@ -0,0 +1,67 @@ +# Copyright (c) 2009 www.stani.be (GPL license) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +"""Autocomplete with the standard library""" + +import rlcompleter + +TEMP = '__tEmP__' # only \w characters are allowed! +TEMP_N = len(TEMP) + + +def complete(word, namespace, private=True): + """Complete word within a namespace with the standard rlcompleter + module. Also supports index or key access []. + + :param word: word to be completed + :type word: str + :param namespace: namespace + :type namespace: dict + :param private: whether private attribute/methods should be returned + :type private: bool + + >>> complete('fo', {'foo': 'bar'}) + ['foo'] + """ + completer = rlcompleter.Completer(namespace) + + # brackets are normally not allowed -> work around (only in this case) + if '[' in word: + obj, attr = word.rsplit('.', 1) + try: + # do not run the obj expression in the console + namespace[TEMP] = eval(obj, namespace) + except Exception: + return [] + _word = TEMP + '.' + attr + else: + _word = word + + # find matches with stdlibrary (don't try to implement this yourself) + completer.complete(_word, 0) + matches = completer.matches + + # brackets are normally not allowed -> clean up + if '[' in word: + matches = [obj + match[TEMP_N:] for match in matches] + del namespace[TEMP] + + # separate public from private + public_matches = [match for match in matches if not('._' in match)] + if private: + private_matches = [match for match in matches if '._' in match] + return public_matches + private_matches + else: + return public_matches diff --git a/release/scripts/modules/console/intellisense.py b/release/scripts/modules/console/intellisense.py new file mode 100644 index 00000000000..2658f79a4cc --- /dev/null +++ b/release/scripts/modules/console/intellisense.py @@ -0,0 +1,100 @@ +# Copyright (c) 2009 www.stani.be (GPL license) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +"""This module provides intellisense features such as: + +* autocompletion +* calltips (not yet implemented) + +It unifies all completion plugins and only loads them on demand. +""" +# TODO: file complete if startswith quotes +import os +import re + +# regular expressions to find out which completer we need + +# line which starts with an import statement +RE_MODULE = re.compile('^import|from.+') + +# The following regular expression means a word which: +# - doesn't start with a quote (quoted words are not py objects) +# - starts with a [a-zA-Z0-9_] +# - afterwards dots are allowed as well +# - square bracket pairs [] are allowed (should be closed) +RE_UNQUOTED_WORD = re.compile( + '''(?:^|[^"'])((?:\w+(?:\w|[.]|\[.+?\])*|))$''', re.UNICODE) + + +def complete(line, cursor, namespace, private=True): + """Returns a list of possible completions. + + :param line: incomplete text line + :type line: str + :param cursor: current character position + :type cursor: int + :param namespace: namespace + :type namespace: dict + :param private: whether private variables should be listed + :type private: bool + :returns: list of completions, word + :rtype: list, str + """ + re_unquoted_word = RE_UNQUOTED_WORD.search(line[:cursor]) + if re_unquoted_word: + # unquoted word -> module or attribute completion + word = re_unquoted_word.group(1) + if RE_MODULE.match(line): + import complete_import + matches = complete_import.complete(line) + else: + import complete_namespace + matches = complete_namespace.complete(word, namespace, private) + else: + # for now we don't have completers for strings + # TODO: add file auto completer for strings + word = '' + matches = [] + return matches, word + + +def expand(line, cursor, namespace, private=True): + """This method is invoked when the user asks autocompletion, + e.g. when Ctrl+Space is clicked. + + :param line: incomplete text line + :type line: str + :param cursor: current character position + :type cursor: int + :param namespace: namespace + :type namespace: dict + :param private: whether private variables should be listed + :type private: bool + :returns: + + current expanded line, updated cursor position and scrollback + + :rtype: str, int, str + """ + matches, word = complete(line, cursor, namespace, private) + prefix = os.path.commonprefix(matches)[len(word):] + if prefix: + line = line[:cursor] + prefix + line[cursor:] + cursor += len(prefix) + if len(matches) == 1: + scrollback = '' + else: + scrollback = ' '.join([m.split('.')[-1] for m in matches]) + return line, cursor, scrollback diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 19024977992..d02577d93e6 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -1,235 +1,236 @@ +import sys import bpy + class CONSOLE_HT_header(bpy.types.Header): - __space_type__ = 'CONSOLE' + __space_type__ = 'CONSOLE' - def draw(self, context): - sc = context.space_data - # text = sc.text - layout = self.layout + def draw(self, context): + sc = context.space_data + # text = sc.text + layout = self.layout - row= layout.row(align=True) - row.template_header() + row = layout.row(align=True) + row.template_header() - if context.area.show_menus: - sub = row.row(align=True) + if context.area.show_menus: + sub = row.row(align=True) - if sc.console_type == 'REPORT': - sub.itemM("CONSOLE_MT_report") - else: - sub.itemM("CONSOLE_MT_console") + if sc.console_type == 'REPORT': + sub.itemM("CONSOLE_MT_report") + else: + sub.itemM("CONSOLE_MT_console") - layout.itemS() - layout.itemR(sc, "console_type", expand=True) + layout.itemS() + layout.itemR(sc, "console_type", expand=True) + + if sc.console_type == 'REPORT': + row = layout.row(align=True) + row.itemR(sc, "show_report_debug", text="Debug") + row.itemR(sc, "show_report_info", text="Info") + row.itemR(sc, "show_report_operator", text="Operators") + row.itemR(sc, "show_report_warn", text="Warnings") + row.itemR(sc, "show_report_error", text="Errors") + + row = layout.row() + row.enabled = sc.show_report_operator + row.itemO("console.report_replay") + else: + row = layout.row(align=True) + row.itemO("console.autocomplete", text="Autocomplete") - if sc.console_type == 'REPORT': - row = layout.row(align=True) - row.itemR(sc, "show_report_debug", text="Debug") - row.itemR(sc, "show_report_info", text="Info") - row.itemR(sc, "show_report_operator", text="Operators") - row.itemR(sc, "show_report_warn", text="Warnings") - row.itemR(sc, "show_report_error", text="Errors") - - row = layout.row() - row.enabled = sc.show_report_operator - row.itemO("console.report_replay") - else: - row = layout.row(align=True) - row.itemO("console.autocomplete", text="Autocomplete") class CONSOLE_MT_console(bpy.types.Menu): - __label__ = "Console" + __label__ = "Console" - def draw(self, context): - layout = self.layout - sc = context.space_data + def draw(self, context): + layout = self.layout + layout.column() + layout.itemO("console.clear") + layout.itemO("console.copy") + layout.itemO("console.paste") - layout.column() - layout.itemO("console.clear") - layout.itemO("console.copy") - layout.itemO("console.paste") class CONSOLE_MT_report(bpy.types.Menu): - __label__ = "Report" + __label__ = "Report" - def draw(self, context): - layout = self.layout - sc = context.space_data + def draw(self, context): + layout = self.layout + layout.column() + layout.itemO("console.select_all_toggle") + layout.itemO("console.select_border") + layout.itemO("console.report_delete") + layout.itemO("console.report_copy") - layout.column() - layout.itemO("console.select_all_toggle") - layout.itemO("console.select_border") - layout.itemO("console.report_delete") - layout.itemO("console.report_copy") def add_scrollback(text, text_type): - for l in text.split('\n'): - bpy.ops.console.scrollback_append(text=l.replace('\t', ' '), type=text_type) + for l in text.split('\n'): + bpy.ops.console.scrollback_append(text=l.replace('\t', ' '), + type=text_type) + def get_console(console_id): - ''' - helper function for console operators - currently each text datablock gets its own console - code.InteractiveConsole() - ...which is stored in this function. - - console_id can be any hashable type - ''' - import sys, code - - try: consoles = get_console.consoles - except:consoles = get_console.consoles = {} - - # clear all dead consoles, use text names as IDs - # TODO, find a way to clear IDs - ''' - for console_id in list(consoles.keys()): - if console_id not in bpy.data.texts: - del consoles[id] - ''' - - try: - namespace, console, stdout, stderr = consoles[console_id] - except: - namespace = {'__builtins__':__builtins__} # locals() - namespace['bpy'] = bpy - - console = code.InteractiveConsole(namespace) - - import io - stdout = io.StringIO() - stderr = io.StringIO() - - consoles[console_id]= namespace, console, stdout, stderr - - return namespace, console, stdout, stderr + ''' + helper function for console operators + currently each text datablock gets its own + console - bpython_code.InteractiveConsole() + ...which is stored in this function. + + console_id can be any hashable type + ''' + from code import InteractiveConsole + + try: + consoles = get_console.consoles + except: + consoles = get_console.consoles = {} + + # clear all dead consoles, use text names as IDs + # TODO, find a way to clear IDs + ''' + for console_id in list(consoles.keys()): + if console_id not in bpy.data.texts: + del consoles[id] + ''' + + try: + console, stdout, stderr = consoles[console_id] + except: + namespace = {'__builtins__': __builtins__, 'bpy': bpy} + console = InteractiveConsole(namespace) + + import io + stdout = io.StringIO() + stderr = io.StringIO() + + consoles[console_id] = console, stdout, stderr + + return console, stdout, stderr + class CONSOLE_OT_exec(bpy.types.Operator): - '''Execute the current console line as a python expression.''' - __idname__ = "console.execute" - __label__ = "Console Execute" - __register__ = False - - # Both prompts must be the same length - PROMPT = '>>> ' - PROMPT_MULTI = '... ' - - # is this working??? - ''' - def poll(self, context): - return (context.space_data.type == 'PYTHON') - ''' # its not :| - - def execute(self, context): - import sys - - sc = context.space_data - - try: - line = sc.history[-1].line - except: - return ('CANCELLED',) - - if sc.console_type != 'PYTHON': - return ('CANCELLED',) - - namespace, console, stdout, stderr = get_console(hash(context.region)) - namespace['C'] = context - - # redirect output - sys.stdout = stdout - sys.stderr = stderr - - # run the console - if not line.strip(): - line_exec = '\n' # executes a multiline statement - else: - line_exec = line - - is_multiline = console.push(line_exec) - - stdout.seek(0) - stderr.seek(0) - - output = stdout.read() - output_err = stderr.read() - - # cleanup - sys.stdout = sys.__stdout__ - sys.stderr = sys.__stderr__ - sys.last_traceback = None - - # So we can reuse, clear all data - stdout.truncate(0) - stderr.truncate(0) - - bpy.ops.console.scrollback_append(text = sc.prompt+line, type='INPUT') - - if is_multiline: sc.prompt = self.PROMPT_MULTI - else: sc.prompt = self.PROMPT - - # insert a new blank line - bpy.ops.console.history_append(text="", current_character=0, remove_duplicates= True) - - # Insert the output into the editor - # not quite correct because the order might have changed, but ok 99% of the time. - if output: add_scrollback(output, 'OUTPUT') - if output_err: add_scrollback(output_err, 'ERROR') - - - return ('FINISHED',) + '''Execute the current console line as a python expression.''' + __idname__ = "console.execute" + __label__ = "Console Execute" + __register__ = False + + # Both prompts must be the same length + PROMPT = '>>> ' + PROMPT_MULTI = '... ' + + # is this working??? + ''' + def poll(self, context): + return (context.space_data.type == 'PYTHON') + ''' + # its not :| + + def execute(self, context): + sc = context.space_data + + try: + line = sc.history[-1].line + except: + return ('CANCELLED',) + + if sc.console_type != 'PYTHON': + return ('CANCELLED',) + + console, stdout, stderr = get_console(hash(context.region)) + + # redirect output + sys.stdout = stdout + sys.stderr = stderr + + # run the console + if not line.strip(): + line_exec = '\n' # executes a multiline statement + else: + line_exec = line + + is_multiline = console.push(line_exec) + + stdout.seek(0) + stderr.seek(0) + + output = stdout.read() + output_err = stderr.read() + + # cleanup + sys.stdout = sys.__stdout__ + sys.stderr = sys.__stderr__ + sys.last_traceback = None + + # So we can reuse, clear all data + stdout.truncate(0) + stderr.truncate(0) + + bpy.ops.console.scrollback_append(text=sc.prompt + line, type='INPUT') + + if is_multiline: + sc.prompt = self.PROMPT_MULTI + else: + sc.prompt = self.PROMPT + + # insert a new blank line + bpy.ops.console.history_append(text="", current_character=0, + remove_duplicates=True) + + # Insert the output into the editor + # not quite correct because the order might have changed, + # but ok 99% of the time. + if output: + add_scrollback(output, 'OUTPUT') + if output_err: + add_scrollback(output_err, 'ERROR') + + return ('FINISHED',) class CONSOLE_OT_autocomplete(bpy.types.Operator): - '''Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one.''' - __idname__ = "console.autocomplete" - __label__ = "Console Autocomplete" - __register__ = False - - def poll(self, context): - return context.space_data.console_type == 'PYTHON' - - def execute(self, context): - - sc = context.space_data - - namespace, console, stdout, stderr = get_console(hash(context.region)) - - current_line = sc.history[-1] - line = current_line.line - - if not console: - return ('CANCELLED',) - - if sc.console_type != 'PYTHON': - return ('CANCELLED',) - - # fake cursor, use for autocomp func. - bcon = {} - bcon['cursor'] = current_line.current_character - bcon['console'] = console - bcon['edit_text'] = line - bcon['namespace'] = namespace - bcon['scrollback'] = '' # nor from the BGE console - - - # This function isnt aware of the text editor or being an operator - # just does the autocomp then copy its results back - import autocomplete - autocomplete.execute(bcon) - - # Now we need to copy back the line from blender back into the text editor. - # This will change when we dont use the text editor anymore - if bcon['scrollback']: - add_scrollback(bcon['scrollback'], 'INFO') - - # copy back - current_line.line = bcon['edit_text'] - current_line.current_character = bcon['cursor'] - - context.area.tag_redraw() - - return ('FINISHED',) + '''Evaluate the namespace up until the cursor and give a list of + options or complete the name if there is only one.''' + __idname__ = "console.autocomplete" + __label__ = "Console Autocomplete" + __register__ = False + def poll(self, context): + return context.space_data.console_type == 'PYTHON' + + def execute(self, context): + from console import intellisense + + sc = context.space_data + + console = get_console(hash(context.region))[0] + + current_line = sc.history[-1] + line = current_line.line + + if not console: + return ('CANCELLED',) + + if sc.console_type != 'PYTHON': + return ('CANCELLED',) + + # This function isnt aware of the text editor or being an operator + # just does the autocomp then copy its results back + current_line.line, current_line.current_character, scrollback = \ + intellisense.expand( + line=current_line.line, + cursor=current_line.current_character, + namespace=console.locals, + private='-d' in sys.argv) + + # Now we need to copy back the line from blender back into the + # text editor. This will change when we dont use the text editor + # anymore + if scrollback: + add_scrollback(scrollback, 'INFO') + + context.area.tag_redraw() + + return ('FINISHED',) bpy.types.register(CONSOLE_HT_header) @@ -238,4 +239,3 @@ bpy.types.register(CONSOLE_MT_report) bpy.ops.add(CONSOLE_OT_exec) bpy.ops.add(CONSOLE_OT_autocomplete) - From c30553f7f367f9f5625c4f9e88d59007712f7955 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 29 Oct 2009 21:31:00 +0000 Subject: [PATCH 246/412] * Added greying out for Bound Box Menu. --- release/scripts/ui/buttons_object.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/buttons_object.py b/release/scripts/ui/buttons_object.py index 98ac462f2d4..78aa52a647e 100644 --- a/release/scripts/ui/buttons_object.py +++ b/release/scripts/ui/buttons_object.py @@ -136,7 +136,9 @@ class OBJECT_PT_display(ObjectButtonsPanel): col = split.column() row = col.row() row.itemR(ob, "draw_bounds", text="Bounds") - row.itemR(ob, "draw_bounds_type", text="") + sub = row.row() + sub.active = ob.draw_bounds + sub.itemR(ob, "draw_bounds_type", text="") flow = layout.column_flow() flow.itemR(ob, "draw_name", text="Name") From 0400f3cd5c8bd7d5da28e8d8b0821f636fc991e2 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Thu, 29 Oct 2009 21:31:55 +0000 Subject: [PATCH 247/412] Functions to test for and correct orientation matrix orthogonality (since MatXOrtho only normalizes and should probably be renamed) --- source/blender/blenlib/BLI_arithb.h | 6 + source/blender/blenlib/intern/arithb.c | 155 +++++++++++++++++++++++++ 2 files changed, 161 insertions(+) diff --git a/source/blender/blenlib/BLI_arithb.h b/source/blender/blenlib/BLI_arithb.h index 901caaee15f..16da7d25721 100644 --- a/source/blender/blenlib/BLI_arithb.h +++ b/source/blender/blenlib/BLI_arithb.h @@ -323,9 +323,15 @@ void Mat4One(float m[][4]); void Mat3Scale(float m[][3], float scale); void Mat4Scale(float m[][4], float scale); +/* NOTE: These only normalise the matrix, they don't make it orthogonal */ void Mat3Ortho(float mat[][3]); void Mat4Ortho(float mat[][4]); +int IsMat3Orthogonal(float mat[][3]); +void Mat3Orthogonal(float mat[][3], int axis); /* axis is the one to keep in place (assumes it is non-null) */ +int IsMat4Orthogonal(float mat[][4]); +void Mat4Orthogonal(float mat[][4], int axis); /* axis is the one to keep in place (assumes it is non-null) */ + void VecMat4MulVecfl(float *in, float mat[][4], float *vec); void Mat4MulMat43(float (*m1)[4], float (*m3)[4], float (*m2)[3]); void Mat3IsMat3MulMat4(float m1[][3], float m2[][3], float m3[][4]); diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c index 0d3304557c3..68f56620e21 100644 --- a/source/blender/blenlib/intern/arithb.c +++ b/source/blender/blenlib/intern/arithb.c @@ -2115,6 +2115,161 @@ void i_lookat(float vx, float vy, float vz, float px, float py, float pz, float /* ************************************************ */ +void Mat3Orthogonal(float mat[][3], int axis) +{ + float size[3]; + size[0] = VecLength(mat[0]); + size[1] = VecLength(mat[1]); + size[2] = VecLength(mat[2]); + Normalize(mat[axis]); + switch(axis) + { + case 0: + if (Inpf(mat[0], mat[1]) < 1) { + Crossf(mat[2], mat[0], mat[1]); + Normalize(mat[2]); + Crossf(mat[1], mat[2], mat[0]); + } else if (Inpf(mat[0], mat[2]) < 1) { + Crossf(mat[1], mat[2], mat[0]); + Normalize(mat[1]); + Crossf(mat[2], mat[0], mat[1]); + } else { + float vec[3] = {mat[0][1], mat[0][2], mat[0][0]}; + + Crossf(mat[2], mat[0], vec); + Normalize(mat[2]); + Crossf(mat[1], mat[2], mat[0]); + } + case 1: + if (Inpf(mat[1], mat[0]) < 1) { + Crossf(mat[2], mat[0], mat[1]); + Normalize(mat[2]); + Crossf(mat[0], mat[1], mat[2]); + } else if (Inpf(mat[0], mat[2]) < 1) { + Crossf(mat[0], mat[1], mat[2]); + Normalize(mat[0]); + Crossf(mat[2], mat[0], mat[1]); + } else { + float vec[3] = {mat[1][1], mat[1][2], mat[1][0]}; + + Crossf(mat[0], mat[1], vec); + Normalize(mat[0]); + Crossf(mat[2], mat[0], mat[1]); + } + case 2: + if (Inpf(mat[2], mat[0]) < 1) { + Crossf(mat[1], mat[2], mat[0]); + Normalize(mat[1]); + Crossf(mat[0], mat[1], mat[2]); + } else if (Inpf(mat[2], mat[1]) < 1) { + Crossf(mat[0], mat[1], mat[2]); + Normalize(mat[0]); + Crossf(mat[1], mat[2], mat[0]); + } else { + float vec[3] = {mat[2][1], mat[2][2], mat[2][0]}; + + Crossf(mat[0], vec, mat[2]); + Normalize(mat[0]); + Crossf(mat[1], mat[2], mat[0]); + } + } + VecMulf(mat[0], size[0]); + VecMulf(mat[1], size[1]); + VecMulf(mat[2], size[2]); +} + +void Mat4Orthogonal(float mat[][4], int axis) +{ + float size[3]; + size[0] = VecLength(mat[0]); + size[1] = VecLength(mat[1]); + size[2] = VecLength(mat[2]); + Normalize(mat[axis]); + switch(axis) + { + case 0: + if (Inpf(mat[0], mat[1]) < 1) { + Crossf(mat[2], mat[0], mat[1]); + Normalize(mat[2]); + Crossf(mat[1], mat[2], mat[0]); + } else if (Inpf(mat[0], mat[2]) < 1) { + Crossf(mat[1], mat[2], mat[0]); + Normalize(mat[1]); + Crossf(mat[2], mat[0], mat[1]); + } else { + float vec[3] = {mat[0][1], mat[0][2], mat[0][0]}; + + Crossf(mat[2], mat[0], vec); + Normalize(mat[2]); + Crossf(mat[1], mat[2], mat[0]); + } + case 1: + Normalize(mat[0]); + if (Inpf(mat[1], mat[0]) < 1) { + Crossf(mat[2], mat[0], mat[1]); + Normalize(mat[2]); + Crossf(mat[0], mat[1], mat[2]); + } else if (Inpf(mat[0], mat[2]) < 1) { + Crossf(mat[0], mat[1], mat[2]); + Normalize(mat[0]); + Crossf(mat[2], mat[0], mat[1]); + } else { + float vec[3] = {mat[1][1], mat[1][2], mat[1][0]}; + + Crossf(mat[0], mat[1], vec); + Normalize(mat[0]); + Crossf(mat[2], mat[0], mat[1]); + } + case 2: + if (Inpf(mat[2], mat[0]) < 1) { + Crossf(mat[1], mat[2], mat[0]); + Normalize(mat[1]); + Crossf(mat[0], mat[1], mat[2]); + } else if (Inpf(mat[2], mat[1]) < 1) { + Crossf(mat[0], mat[1], mat[2]); + Normalize(mat[0]); + Crossf(mat[1], mat[2], mat[0]); + } else { + float vec[3] = {mat[2][1], mat[2][2], mat[2][0]}; + + Crossf(mat[0], vec, mat[2]); + Normalize(mat[0]); + Crossf(mat[1], mat[2], mat[0]); + } + } + VecMulf(mat[0], size[0]); + VecMulf(mat[1], size[1]); + VecMulf(mat[2], size[2]); +} + +int IsMat3Orthogonal(float mat[][3]) +{ + if (fabs(Inpf(mat[0], mat[1])) > 1.5 * FLT_EPSILON) + return 0; + + if (fabs(Inpf(mat[1], mat[2])) > 1.5 * FLT_EPSILON) + return 0; + + if (fabs(Inpf(mat[0], mat[2])) > 1.5 * FLT_EPSILON) + return 0; + + return 1; +} + +int IsMat4Orthogonal(float mat[][4]) +{ + if (fabs(Inpf(mat[0], mat[1])) > 1.5 * FLT_EPSILON) + return 0; + + if (fabs(Inpf(mat[1], mat[2])) > 1.5 * FLT_EPSILON) + return 0; + + if (fabs(Inpf(mat[0], mat[2])) > 1.5 * FLT_EPSILON) + return 0; + + return 1; +} + void Mat3Ortho(float mat[][3]) { Normalize(mat[0]); From 1a8b9e63d92727374367609730bdc5e4e3304c8c Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Thu, 29 Oct 2009 21:34:09 +0000 Subject: [PATCH 248/412] When transform orientation is not orthogonal (which is often the case with Gimbal), orthogonalize the orientation separately when drawing each rotation circles (this makes sure they really appear perpendicular and not just be that way in the skewed space of the orientation). --- .../editors/interface/interface_handlers.c | 30 +++--- .../editors/transform/transform_manipulator.c | 100 ++++++++++++++++-- 2 files changed, 107 insertions(+), 23 deletions(-) diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 5cdf3b9dcc8..c40c2aeb32c 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -2034,9 +2034,10 @@ static float ui_numedit_apply_snap(int temp, float softmin, float softmax, int s return temp; } -static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, int snap, int mx) +static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, int snap, int mx, int my) { float deler, tempf, softmin, softmax, softrange; + float ladder = powf(10.0, floorf((my - data->dragstarty) / 100.0f)); int lvalue, temp, changed= 0; if(mx == data->draglastx) @@ -2062,7 +2063,7 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i * 2px == 1-int, or 1px == 1-ClickStep */ if(ui_is_but_float(but)) { fac *= 0.01*but->a1; - tempf = data->startvalue + ((mx - data->dragstartx) * fac); + tempf = data->startvalue + ((mx - data->dragstartx) * fac) * ladder; tempf= ui_numedit_apply_snapf(tempf, softmin, softmax, softrange, snap); #if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ @@ -2086,7 +2087,7 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i else { fac = 0.5; /* simple 2px == 1 */ - temp= data->startvalue + ((mx - data->dragstartx) * fac); + temp= data->startvalue + ((mx - data->dragstartx) * fac) * ladder; temp= ui_numedit_apply_snap(temp, softmin, softmax, snap); #if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ @@ -2121,13 +2122,13 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i if(ui_is_but_float(but) && softrange > 11) { /* non linear change in mouse input- good for high precicsion */ - data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.002); + data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.002)*ladder; } else if (!ui_is_but_float(but) && softrange > 129) { /* only scale large int buttons */ /* non linear change in mouse input- good for high precicsionm ints need less fine tuning */ - data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.004); + data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.004)*ladder; } else { /*no scaling */ - data->dragf+= ((float)(mx-data->draglastx))/deler ; + data->dragf+= ((float)(mx-data->draglastx))/deler*ladder ; } if(data->dragf>1.0) data->dragf= 1.0; @@ -2197,6 +2198,7 @@ static int ui_do_but_NUM(bContext *C, uiBlock *block, uiBut *but, uiHandleButton } else if(event->type == LEFTMOUSE) { data->dragstartx= data->draglastx= ui_is_a_warp_but(but) ? screen_mx:mx; + data->dragstarty= data->draglasty= ui_is_a_warp_but(but) ? screen_my:my; button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } @@ -2235,7 +2237,7 @@ static int ui_do_but_NUM(bContext *C, uiBlock *block, uiBut *but, uiHandleButton snap= (event->ctrl)? (event->shift)? 2: 1: 0; - if(ui_numedit_but_NUM(but, data, fac, snap, (ui_is_a_warp_but(but) ? screen_mx:mx))) + if(ui_numedit_but_NUM(but, data, fac, snap, (ui_is_a_warp_but(but) ? screen_mx:mx), (ui_is_a_warp_but(but) ? screen_my:my))) ui_numedit_apply(C, block, but, data); } retval= WM_UI_HANDLER_BREAK; @@ -2421,7 +2423,9 @@ static int ui_do_but_SLI(bContext *C, uiBlock *block, uiBut *but, uiHandleButton } else if(event->type == LEFTMOUSE) { data->dragstartx= mx; + data->dragstarty= my; data->draglastx= mx; + data->draglasty= my; button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } @@ -2522,14 +2526,10 @@ static int ui_do_but_SCROLL(bContext *C, uiBlock *block, uiBut *but, uiHandleBut if(data->state == BUTTON_STATE_HIGHLIGHT) { if(event->val==KM_PRESS) { if(event->type == LEFTMOUSE) { - if(horizontal) { - data->dragstartx= mx; - data->draglastx= mx; - } - else { - data->dragstartx= my; - data->draglastx= my; - } + data->dragstartx= mx; + data->draglastx= mx; + data->dragstartx= my; + data->draglastx= my; button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index 2247977ef87..51a820dcdcb 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -736,12 +736,43 @@ static void draw_manipulator_axes(View3D *v3d, int colcode, int flagx, int flagy } } +static void preOrtho(int ortho, float twmat[][4], int axis) +{ + if (ortho == 0) { + float omat[4][4]; + Mat4CpyMat4(omat, twmat); + Mat4Orthogonal(omat, axis); + glPushMatrix(); + wmMultMatrix(omat); + } +} + +static void preOrthoFront(int ortho, float twmat[][4], int axis) +{ + if (ortho == 0) { + float omat[4][4]; + Mat4CpyMat4(omat, twmat); + Mat4Orthogonal(omat, axis); + glPushMatrix(); + wmMultMatrix(omat); + glFrontFace( is_mat4_flipped(omat)?GL_CW:GL_CCW); + } +} + +static void postOrtho(int ortho) +{ + if (ortho == 0) { + glPopMatrix(); + } +} + /* only called while G.moving */ static void draw_manipulator_rotate_ghost(View3D *v3d, RegionView3D *rv3d, int drawflags) { GLUquadricObj *qobj; float size, phi, startphi, vec[3], svec[3], matt[4][4], cross[3], tmat[3][3]; int arcs= (G.rt!=2); + int ortho; glDisable(GL_DEPTH_TEST); @@ -796,11 +827,18 @@ static void draw_manipulator_rotate_ghost(View3D *v3d, RegionView3D *rv3d, int d Mat3MulVecfl(tmat, svec); // tmat is used further on Normalize(svec); } + + ortho = IsMat4Orthogonal(rv3d->twmat); - wmMultMatrix(rv3d->twmat); // aligns with original widget + if (ortho) { + wmMultMatrix(rv3d->twmat); // aligns with original widget + } + /* Z disk */ if(drawflags & MAN_ROT_Z) { + preOrtho(ortho, rv3d->twmat, 2); + if(arcs) { /* correct for squeezed arc */ svec[0]+= tmat[2][0]; @@ -820,9 +858,13 @@ static void draw_manipulator_rotate_ghost(View3D *v3d, RegionView3D *rv3d, int d if(Inpf(cross, rv3d->twmat[2]) > 0.0) phi= -phi; gluPartialDisk(qobj, 0.0, 1.0, 32, 1, 180.0*startphi/M_PI, 180.0*(phi)/M_PI); } + + postOrtho(ortho); } /* X disk */ if(drawflags & MAN_ROT_X) { + preOrtho(ortho, rv3d->twmat, 0); + if(arcs) { /* correct for squeezed arc */ svec[1]+= tmat[2][1]; @@ -844,9 +886,13 @@ static void draw_manipulator_rotate_ghost(View3D *v3d, RegionView3D *rv3d, int d gluPartialDisk(qobj, 0.0, 1.0, 32, 1, 180.0*startphi/M_PI, 180.0*phi/M_PI); glRotatef(-90.0, 0.0, 1.0, 0.0); } + + postOrtho(ortho); } /* Y circle */ if(drawflags & MAN_ROT_Y) { + preOrtho(ortho, rv3d->twmat, 1); + if(arcs) { /* correct for squeezed arc */ svec[0]+= tmat[2][0]; @@ -868,6 +914,8 @@ static void draw_manipulator_rotate_ghost(View3D *v3d, RegionView3D *rv3d, int d gluPartialDisk(qobj, 0.0, 1.0, 32, 1, 180.0*startphi/M_PI, 180.0*phi/M_PI); glRotatef(90.0, 1.0, 0.0, 0.0); } + + postOrtho(ortho); } glDisable(GL_BLEND); @@ -878,11 +926,13 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, { GLUquadricObj *qobj; double plane[4]; + float matt[4][4]; float size, vec[3], unitmat[4][4]; float cywid= 0.33f*0.01f*(float)U.tw_handlesize; float cusize= cywid*0.65f; int arcs= (G.rt!=2); int colcode; + int ortho; if(moving) colcode= MAN_MOVECOL; else colcode= MAN_RGB; @@ -940,17 +990,23 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, } glPopMatrix(); + + ortho = IsMat4Orthogonal(rv3d->twmat); + /* apply the transform delta */ if(moving) { - float matt[4][4]; Mat4CpyMat4(matt, rv3d->twmat); // to copy the parts outside of [3][3] // XXX Mat4MulMat34(matt, t->mat, rv3d->twmat); - wmMultMatrix(matt); - glFrontFace( is_mat4_flipped(matt)?GL_CW:GL_CCW); + if (ortho) { + wmMultMatrix(matt); + glFrontFace( is_mat4_flipped(matt)?GL_CW:GL_CCW); + } } else { - glFrontFace( is_mat4_flipped(rv3d->twmat)?GL_CW:GL_CCW); - wmMultMatrix(rv3d->twmat); + if (ortho) { + glFrontFace( is_mat4_flipped(rv3d->twmat)?GL_CW:GL_CCW); + wmMultMatrix(rv3d->twmat); + } } /* axes */ @@ -958,23 +1014,33 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, if(!(G.f & G_PICKSEL)) { if( (combo & V3D_MANIP_SCALE)==0) { /* axis */ - glBegin(GL_LINES); if( (drawflags & MAN_ROT_X) || (moving && (drawflags & MAN_ROT_Z)) ) { + preOrthoFront(ortho, rv3d->twmat, 2); manipulator_setcolor(v3d, 'x', colcode); + glBegin(GL_LINES); glVertex3f(0.2f, 0.0f, 0.0f); glVertex3f(1.0f, 0.0f, 0.0f); + glEnd(); + postOrtho(ortho); } if( (drawflags & MAN_ROT_Y) || (moving && (drawflags & MAN_ROT_X)) ) { + preOrthoFront(ortho, rv3d->twmat, 0); manipulator_setcolor(v3d, 'y', colcode); + glBegin(GL_LINES); glVertex3f(0.0f, 0.2f, 0.0f); glVertex3f(0.0f, 1.0f, 0.0f); + glEnd(); + postOrtho(ortho); } if( (drawflags & MAN_ROT_Z) || (moving && (drawflags & MAN_ROT_Y)) ) { + preOrthoFront(ortho, rv3d->twmat, 1); manipulator_setcolor(v3d, 'z', colcode); + glBegin(GL_LINES); glVertex3f(0.0f, 0.0f, 0.2f); glVertex3f(0.0f, 0.0f, 1.0f); + glEnd(); + postOrtho(ortho); } - glEnd(); } } } @@ -983,25 +1049,31 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, /* Z circle */ if(drawflags & MAN_ROT_Z) { + preOrthoFront(ortho, matt, 2); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Z); manipulator_setcolor(v3d, 'z', colcode); drawcircball(GL_LINE_LOOP, unitmat[3], 1.0, unitmat); + postOrtho(ortho); } /* X circle */ if(drawflags & MAN_ROT_X) { + preOrthoFront(ortho, matt, 0); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_X); glRotatef(90.0, 0.0, 1.0, 0.0); manipulator_setcolor(v3d, 'x', colcode); drawcircball(GL_LINE_LOOP, unitmat[3], 1.0, unitmat); glRotatef(-90.0, 0.0, 1.0, 0.0); + postOrtho(ortho); } /* Y circle */ if(drawflags & MAN_ROT_Y) { + preOrthoFront(ortho, matt, 1); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Y); glRotatef(-90.0, 1.0, 0.0, 0.0); manipulator_setcolor(v3d, 'y', colcode); drawcircball(GL_LINE_LOOP, unitmat[3], 1.0, unitmat); glRotatef(90.0, 1.0, 0.0, 0.0); + postOrtho(ortho); } if(arcs) glDisable(GL_CLIP_PLANE0); @@ -1012,25 +1084,31 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, /* Z circle */ if(drawflags & MAN_ROT_Z) { + preOrthoFront(ortho, rv3d->twmat, 2); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Z); manipulator_setcolor(v3d, 'z', colcode); partial_donut(cusize/4.0f, 1.0f, 0, 48, 8, 48); + postOrtho(ortho); } /* X circle */ if(drawflags & MAN_ROT_X) { + preOrthoFront(ortho, rv3d->twmat, 0); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_X); glRotatef(90.0, 0.0, 1.0, 0.0); manipulator_setcolor(v3d, 'x', colcode); partial_donut(cusize/4.0f, 1.0f, 0, 48, 8, 48); glRotatef(-90.0, 0.0, 1.0, 0.0); + postOrtho(ortho); } /* Y circle */ if(drawflags & MAN_ROT_Y) { + preOrthoFront(ortho, rv3d->twmat, 1); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Y); glRotatef(-90.0, 1.0, 0.0, 0.0); manipulator_setcolor(v3d, 'y', colcode); partial_donut(cusize/4.0f, 1.0f, 0, 48, 8, 48); glRotatef(90.0, 1.0, 0.0, 0.0); + postOrtho(ortho); } glDisable(GL_CLIP_PLANE0); @@ -1040,6 +1118,7 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, /* Z handle on X axis */ if(drawflags & MAN_ROT_Z) { + preOrthoFront(ortho, rv3d->twmat, 2); glPushMatrix(); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Z); manipulator_setcolor(v3d, 'z', colcode); @@ -1047,10 +1126,12 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, partial_donut(0.7f*cusize, 1.0f, 31, 33, 8, 64); glPopMatrix(); + postOrtho(ortho); } /* Y handle on X axis */ if(drawflags & MAN_ROT_Y) { + preOrthoFront(ortho, rv3d->twmat, 1); glPushMatrix(); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_Y); manipulator_setcolor(v3d, 'y', colcode); @@ -1060,10 +1141,12 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, partial_donut(0.7f*cusize, 1.0f, 31, 33, 8, 64); glPopMatrix(); + postOrtho(ortho); } /* X handle on Z axis */ if(drawflags & MAN_ROT_X) { + preOrthoFront(ortho, rv3d->twmat, 0); glPushMatrix(); if(G.f & G_PICKSEL) glLoadName(MAN_ROT_X); manipulator_setcolor(v3d, 'x', colcode); @@ -1073,6 +1156,7 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, partial_donut(0.7f*cusize, 1.0f, 31, 33, 8, 64); glPopMatrix(); + postOrtho(ortho); } } From 51a9da2dcfb2fb8ad7bcc47d29d13db729d25eef Mon Sep 17 00:00:00 2001 From: Benoit Bolsee Date: Thu, 29 Oct 2009 21:59:31 +0000 Subject: [PATCH 249/412] BGE patch #19751: Add game actuator like methods to GameLogic. --- source/gameengine/Ketsji/KX_PythonInit.cpp | 126 +++++++++++++++++++++ 1 file changed, 126 insertions(+) diff --git a/source/gameengine/Ketsji/KX_PythonInit.cpp b/source/gameengine/Ketsji/KX_PythonInit.cpp index f09cdd7d720..1339200a740 100644 --- a/source/gameengine/Ketsji/KX_PythonInit.cpp +++ b/source/gameengine/Ketsji/KX_PythonInit.cpp @@ -200,6 +200,127 @@ static PyObject* gPyExpandPath(PyObject*, PyObject* args) return PyUnicode_FromString(expanded); } +static char gPyStartGame_doc[] = +"startGame(blend)\n\ +Loads the blend file"; + +static PyObject* gPyStartGame(PyObject*, PyObject* args) +{ + char* blendfile; + + if (!PyArg_ParseTuple(args, "s:startGame", &blendfile)) + return NULL; + + gp_KetsjiEngine->RequestExit(KX_EXIT_REQUEST_START_OTHER_GAME); + gp_KetsjiEngine->SetNameNextGame(blendfile); + + Py_RETURN_NONE; +} + +static char gPyEndGame_doc[] = +"endGame()\n\ +Ends the current game"; + +static PyObject* gPyEndGame(PyObject*) +{ + gp_KetsjiEngine->RequestExit(KX_EXIT_REQUEST_QUIT_GAME); + + //printf("%s\n", gp_GamePythonPath); + + Py_RETURN_NONE; +} + +static char gPyRestartGame_doc[] = +"restartGame()\n\ +Restarts the current game by reloading the .blend file"; + +static PyObject* gPyRestartGame(PyObject*) +{ + gp_KetsjiEngine->RequestExit(KX_EXIT_REQUEST_RESTART_GAME); + gp_KetsjiEngine->SetNameNextGame(gp_GamePythonPath); + + Py_RETURN_NONE; +} + +static char gPySaveGlobalDict_doc[] = +"saveGlobalDict()\n\ +Saves GameLogic.globalDict to a file"; + +static PyObject* gPySaveGlobalDict(PyObject*) +{ + char marshal_path[512]; + char *marshal_buffer = NULL; + unsigned int marshal_length; + FILE *fp = NULL; + + pathGamePythonConfig(marshal_path); + marshal_length = saveGamePythonConfig(&marshal_buffer); + + if (marshal_length && marshal_buffer) + { + fp = fopen(marshal_path, "wb"); + + if (fp) + { + if (fwrite(marshal_buffer, 1, marshal_length, fp) != marshal_length) + printf("Warning: could not write marshal data\n"); + + fclose(fp); + } else { + printf("Warning: could not open marshal file\n"); + } + } else { + printf("Warning: could not create marshal buffer\n"); + } + + if (marshal_buffer) + delete [] marshal_buffer; + + Py_RETURN_NONE; +} + +static char gPyLoadGlobalDict_doc[] = +"LoadGlobalDict()\n\ +Loads GameLogic.globalDict from a file"; + +static PyObject* gPyLoadGlobalDict(PyObject*) +{ + char marshal_path[512]; + char *marshal_buffer = NULL; + unsigned int marshal_length; + FILE *fp = NULL; + int result; + + pathGamePythonConfig(marshal_path); + + fp = fopen(marshal_path, "rb"); + + if (fp) { + // obtain file size: + fseek (fp, 0, SEEK_END); + marshal_length = ftell(fp); + rewind(fp); + + marshal_buffer = (char*)malloc (sizeof(char)*marshal_length); + + result = fread(marshal_buffer, 1, marshal_length, fp); + + if (result == marshal_length) { + loadGamePythonConfig(marshal_buffer, marshal_length); + } else { + printf("Warning: could not read all of '%s'\n", marshal_path); + } + + free(marshal_buffer); + fclose(fp); + } else { + printf("Warning: could not open '%s'\n", marshal_path); + } + + Py_RETURN_NONE; +} + + static char gPySendMessage_doc[] = "sendMessage(subject, [body, to, from])\n\ sends a message in same manner as a message actuator\ @@ -466,6 +587,11 @@ static PyObject *pyPrintExt(PyObject *,PyObject *,PyObject *) static struct PyMethodDef game_methods[] = { {"expandPath", (PyCFunction)gPyExpandPath, METH_VARARGS, (const char *)gPyExpandPath_doc}, + {"startGame", (PyCFunction)gPyStartGame, METH_VARARGS, (const char *)gPyStartGame_doc}, + {"endGame", (PyCFunction)gPyEndGame, METH_NOARGS, (const char *)gPyEndGame_doc}, + {"restartGame", (PyCFunction)gPyRestartGame, METH_NOARGS, (const char *)gPyRestartGame_doc}, + {"saveGlobalDict", (PyCFunction)gPySaveGlobalDict, METH_NOARGS, (const char *)gPySaveGlobalDict_doc}, + {"loadGlobalDict", (PyCFunction)gPyLoadGlobalDict, METH_NOARGS, (const char *)gPyLoadGlobalDict_doc}, {"sendMessage", (PyCFunction)gPySendMessage, METH_VARARGS, (const char *)gPySendMessage_doc}, {"getCurrentController", (PyCFunction) SCA_PythonController::sPyGetCurrentController, From c26ee3ab575c69a4ccc8158b1d87f0dcf16bd667 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 29 Oct 2009 22:08:09 +0000 Subject: [PATCH 250/412] * Tiny Force Field Layout improvements and tooltip fix by nudelZ. Thanks! --- release/scripts/ui/buttons_physics_common.py | 17 +++++++++++------ release/scripts/ui/buttons_physics_field.py | 2 +- .../blender/makesrna/intern/rna_object_force.c | 4 ++-- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/release/scripts/ui/buttons_physics_common.py b/release/scripts/ui/buttons_physics_common.py index 17ac1b2bbaa..411d6e62ad0 100644 --- a/release/scripts/ui/buttons_physics_common.py +++ b/release/scripts/ui/buttons_physics_common.py @@ -123,10 +123,16 @@ def basic_force_field_settings_ui(self, field): if field.type == 'TURBULENCE': col.itemR(field, "global_coordinates", text="Global") - row = layout.row() - row.itemL(text="Effect point:") - row.itemR(field, "do_location") - row.itemR(field, "do_rotation") + split = layout.split() + + col = split.column() + col.itemL(text="Effect point:") + col.itemR(field, "do_location") + col.itemR(field, "do_rotation") + + sub = split.column() + sub.itemL(text="Collision:") + sub.itemR(field, "do_absorption") def basic_force_field_falloff_ui(self, field): @@ -140,7 +146,6 @@ def basic_force_field_falloff_ui(self, field): col.itemR(field, "z_direction", text="") col.itemR(field, "use_min_distance", text="Use Minimum") col.itemR(field, "use_max_distance", text="Use Maximum") - col.itemR(field, "do_absorption") col = split.column() col.itemR(field, "falloff_power", text="Power") @@ -151,4 +156,4 @@ def basic_force_field_falloff_ui(self, field): sub = col.column() sub.active = field.use_max_distance - sub.itemR(field, "maximum_distance", text="Distance") \ No newline at end of file + sub.itemR(field, "maximum_distance", text="Distance") diff --git a/release/scripts/ui/buttons_physics_field.py b/release/scripts/ui/buttons_physics_field.py index 9aec0404ab1..a47791609ac 100644 --- a/release/scripts/ui/buttons_physics_field.py +++ b/release/scripts/ui/buttons_physics_field.py @@ -197,4 +197,4 @@ class PHYSICS_PT_collision(PhysicButtonsPanel): col.itemR(settings, "damping", text="Factor", slider=True) bpy.types.register(PHYSICS_PT_field) -bpy.types.register(PHYSICS_PT_collision) +bpy.types.register(PHYSICS_PT_collision) \ No newline at end of file diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c index 2247e5499fb..e15d4917554 100644 --- a/source/blender/makesrna/intern/rna_object_force.c +++ b/source/blender/makesrna/intern/rna_object_force.c @@ -1056,12 +1056,12 @@ static void rna_def_field(BlenderRNA *brna) prop= RNA_def_property(srna, "noise", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "f_noise"); RNA_def_property_range(prop, 0.0f, 10.0f); - RNA_def_property_ui_text(prop, "Noise", "Noise of the wind force"); + RNA_def_property_ui_text(prop, "Noise", "Noise of the force"); RNA_def_property_update(prop, 0, "rna_FieldSettings_update"); prop= RNA_def_property(srna, "seed", PROP_INT, PROP_UNSIGNED); RNA_def_property_range(prop, 1, 128); - RNA_def_property_ui_text(prop, "Seed", "Seed of the wind noise"); + RNA_def_property_ui_text(prop, "Seed", "Seed of the noise"); RNA_def_property_update(prop, 0, "rna_FieldSettings_update"); /* Boolean */ From c0a785a23ee2b743a2959cb3456aea2791e8443b Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 29 Oct 2009 23:46:12 +0000 Subject: [PATCH 251/412] * Some Whitespace and small code-guideline cleanup. --- release/scripts/ui/buttons_data_bone.py | 5 ----- release/scripts/ui/buttons_data_curve.py | 2 -- release/scripts/ui/buttons_material.py | 3 --- release/scripts/ui/buttons_particle.py | 11 ++++++----- release/scripts/ui/buttons_physics_field.py | 4 +++- release/scripts/ui/space_filebrowser.py | 4 ++-- release/scripts/ui/space_info.py | 2 -- release/scripts/ui/space_sequencer.py | 3 +-- release/scripts/ui/space_userpref.py | 9 --------- release/scripts/ui/space_view3d.py | 2 -- release/scripts/ui/space_view3d_toolbar.py | 3 --- 11 files changed, 12 insertions(+), 36 deletions(-) diff --git a/release/scripts/ui/buttons_data_bone.py b/release/scripts/ui/buttons_data_bone.py index e8041cc7393..56a1b048594 100644 --- a/release/scripts/ui/buttons_data_bone.py +++ b/release/scripts/ui/buttons_data_bone.py @@ -48,8 +48,6 @@ class BONE_PT_transform(BoneButtonsPanel): else: pchan = ob.pose.pose_channels[context.bone.name] - - row = layout.row() col = row.column() col.itemR(pchan, "location") @@ -141,7 +139,6 @@ class BONE_PT_relations(BoneButtonsPanel): sub.itemR(bone, "hinge", text="Inherit Rotation") sub.itemR(bone, "inherit_scale", text="Inherit Scale") - class BONE_PT_display(BoneButtonsPanel): __label__ = "Display" @@ -175,7 +172,6 @@ class BONE_PT_display(BoneButtonsPanel): col.itemL(text="Custom Shape:") col.itemR(pchan, "custom_shape", text="") - class BONE_PT_deform(BoneButtonsPanel): __label__ = "Deform" __default_closed__ = True @@ -224,7 +220,6 @@ class BONE_PT_deform(BoneButtonsPanel): col.itemL(text="Offset:") col.itemR(bone, "cyclic_offset") - bpy.types.register(BONE_PT_context_bone) bpy.types.register(BONE_PT_transform) bpy.types.register(BONE_PT_transform_locks) diff --git a/release/scripts/ui/buttons_data_curve.py b/release/scripts/ui/buttons_data_curve.py index c715cfb5d93..393bbf12756 100644 --- a/release/scripts/ui/buttons_data_curve.py +++ b/release/scripts/ui/buttons_data_curve.py @@ -90,7 +90,6 @@ class DATA_PT_shape_curve(DataButtonsPanel): row.itemR(curve, "twist_mode") row.itemR(curve, "twist_smooth") # XXX - may not be kept - # col.itemL(text="Display:") # col.itemL(text="HANDLES") # col.itemL(text="NORMALS") @@ -219,7 +218,6 @@ class DATA_PT_active_spline(DataButtonsPanelActive): col = split.column() col.itemR(act_spline, "smooth") - bpy.types.register(DATA_PT_context_curve) bpy.types.register(DATA_PT_shape_curve) bpy.types.register(DATA_PT_geometry_curve) diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index 9499478a029..4ba3577a092 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -13,7 +13,6 @@ def active_node_mat(mat): return None - class MaterialButtonsPanel(bpy.types.Panel): __space_type__ = 'PROPERTIES' __region_type__ = 'WINDOW' @@ -648,7 +647,6 @@ class MATERIAL_PT_volume_density(VolumeButtonsPanel): row.itemR(vol, "density") row.itemR(vol, "density_scale") - class MATERIAL_PT_volume_shading(VolumeButtonsPanel): __label__ = "Shading" __default_closed__ = False @@ -709,7 +707,6 @@ class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): sub.itemR(vol, "ms_spread") sub.itemR(vol, "ms_intensity") - class MATERIAL_PT_volume_transp(VolumeButtonsPanel): __label__= "Transparency" COMPAT_ENGINES = set(['BLENDER_RENDER']) diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/buttons_particle.py index dcc93bd9c75..4054fbf8780 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/buttons_particle.py @@ -14,7 +14,6 @@ def particle_panel_poll(context): if psys==None: return False if psys.settings==None: return False return psys.settings.type in ('EMITTER', 'REACTOR', 'HAIR') - class ParticleButtonsPanel(bpy.types.Panel): __space_type__ = 'PROPERTIES' @@ -32,6 +31,7 @@ class PARTICLE_PT_particles(ParticleButtonsPanel): def draw(self, context): layout = self.layout + ob = context.object psys = context.particle_system @@ -46,6 +46,7 @@ class PARTICLE_PT_particles(ParticleButtonsPanel): if psys and not psys.settings: split = layout.split(percentage=0.32) + col = split.column() col.itemL(text="Name:") col.itemL(text="Settings:") @@ -458,8 +459,9 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): return psys.settings.physics_type=='BOIDS' def draw(self, context): - boids = context.particle_system.settings.boids layout = self.layout + + boids = context.particle_system.settings.boids layout.enabled = particle_panel_enabled(context, context.particle_system) @@ -539,7 +541,6 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): elif rule.type == 'FIGHT': row.itemR(rule, "distance") row.itemR(rule, "flee_distance") - class PARTICLE_PT_render(ParticleButtonsPanel): __label__ = "Render" @@ -623,7 +624,6 @@ class PARTICLE_PT_render(ParticleButtonsPanel): subrow = row.row() subrow.active = part.viewport==True subrow.itemR(part, "simplify_viewport") - elif part.ren_as == 'OBJECT': sub.itemR(part, "dupli_object") @@ -659,7 +659,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel): if weight: row = layout.row() row.itemR(weight, "count") - + elif part.ren_as == 'BILLBOARD': sub.itemL(text="Align:") @@ -853,6 +853,7 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel): def draw(self, context): layout = self.layout + part = context.particle_system.settings layout.itemR(part, "self_effect") diff --git a/release/scripts/ui/buttons_physics_field.py b/release/scripts/ui/buttons_physics_field.py index a47791609ac..ac713bb5e67 100644 --- a/release/scripts/ui/buttons_physics_field.py +++ b/release/scripts/ui/buttons_physics_field.py @@ -64,6 +64,7 @@ class PHYSICS_PT_field(PhysicButtonsPanel): flow.itemR(field, "guide_kink_frequency") flow.itemR(field, "guide_kink_shape") flow.itemR(field, "guide_kink_amplitude") + elif field.type == 'TEXTURE': col = split.column() col.itemR(field, "strength") @@ -75,6 +76,7 @@ class PHYSICS_PT_field(PhysicButtonsPanel): col.itemR(field, "use_coordinates") col.itemR(field, "root_coordinates") col.itemR(field, "force_2d") + else : basic_force_field_settings_ui(self, field) @@ -197,4 +199,4 @@ class PHYSICS_PT_collision(PhysicButtonsPanel): col.itemR(settings, "damping", text="Factor", slider=True) bpy.types.register(PHYSICS_PT_field) -bpy.types.register(PHYSICS_PT_collision) \ No newline at end of file +bpy.types.register(PHYSICS_PT_collision) diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index 5b0c189464f..1ab6a1f4f0b 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -34,6 +34,8 @@ class FILEBROWSER_HT_header(bpy.types.Header): layout.itemR(params, "do_filter", text="", icon='ICON_FILTER') row = layout.row(align=True) + row.active = params.do_filter + row.itemR(params, "filter_folder", text=""); row.itemR(params, "filter_blender", text=""); row.itemR(params, "filter_image", text=""); @@ -43,6 +45,4 @@ class FILEBROWSER_HT_header(bpy.types.Header): row.itemR(params, "filter_sound", text=""); row.itemR(params, "filter_text", text=""); - row.active = params.do_filter - bpy.types.register(FILEBROWSER_HT_header) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index d62ab5b759d..083b6f07fbc 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -82,7 +82,6 @@ class INFO_MT_file(bpy.types.Menu): layout.operator_context = "EXEC_AREA" layout.itemO("wm.exit_blender", text="Quit", icon='ICON_QUIT') - # test for expanding menus ''' class INFO_MT_file_more(INFO_MT_file): @@ -124,7 +123,6 @@ class INFO_MT_file_external_data(bpy.types.Menu): layout.itemO("file.report_missing_files") layout.itemO("file.find_missing_files") - class INFO_MT_mesh_add(dynamic_menu.DynMenu): __label__ = "Mesh" def draw(self, context): diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index ca84e345885..7f6bb134283 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -425,8 +425,7 @@ class SEQUENCER_PT_input(SequencerButtonsPanel): col.itemR(strip, "directory", text="") # Current element for the filename - - + elem = strip.getStripElem(context.scene.current_frame) if elem: split = layout.split(percentage=0.2) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 0a4181cc8ce..10e1831de0f 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -88,12 +88,7 @@ class USERPREF_PT_interface(bpy.types.Panel): sub1.itemR(view, "auto_perspective") sub1.itemR(view, "smooth_view") sub1.itemR(view, "rotation_angle") - - - - - col = split.column() sub = col.split(percentage=0.85) sub1 = sub.column() @@ -105,8 +100,6 @@ class USERPREF_PT_interface(bpy.types.Panel): # sub1.itemR(view, "open_left_mouse_delay", text="Hold LMB") # sub1.itemR(view, "open_right_mouse_delay", text="Hold RMB") - - #manipulator sub1.itemR(view, "use_manipulator") sub2 = sub1.column() @@ -164,8 +157,6 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.itemR(edit, "undo_steps", text="Steps") sub1.itemR(edit, "undo_memory_limit", text="Memory Limit") - - col = split.column() sub = col.split(percentage=0.85) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index be8cc305eea..68c28370eb6 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1464,8 +1464,6 @@ class OBJECT_OT_select_pattern(bpy.types.Operator): return ('RUNNING_MODAL',) ''' - - bpy.types.register(VIEW3D_HT_header) # Header bpy.types.register(VIEW3D_MT_view) #View Menus diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index af1ce5205ec..6ba45ac1cac 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -275,9 +275,6 @@ class VIEW3D_PT_tools_armatureedit_options(View3DPanel): col = layout.column(align=True) col.itemR(arm, "x_axis_mirror") - - - # ********** default tools for editmode_mball **************** From fe68d2672dcba346a5bbf904a3d46141e5b4c651 Mon Sep 17 00:00:00 2001 From: Joseph Eagar Date: Fri, 30 Oct 2009 02:09:52 +0000 Subject: [PATCH 252/412] added an 'auto-normalize' option for weight paint mode, that automatically ensures vertex groups that affect bones all add up to 1.0. please test and give feedback. --- release/scripts/ui/space_view3d_toolbar.py | 3 +- .../editors/sculpt_paint/paint_vertex.c | 131 +++++++++++++++++- source/blender/makesdna/DNA_scene_types.h | 2 + source/blender/makesrna/intern/rna_scene.c | 6 + 4 files changed, 134 insertions(+), 8 deletions(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 6ba45ac1cac..1b80a35b504 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -519,6 +519,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): elif context.weight_paint_object and brush: layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight", slider=True) + layout.itemR(context.tool_settings, "auto_normalize", text="Auto Normalize") col = layout.column() row = col.row(align=True) @@ -532,7 +533,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): row = col.row(align=True) row.itemR(brush, "jitter", slider=True) row.itemR(brush, "use_jitter_pressure", toggle=True, text="") - + # Vertex Paint Mode # elif context.vertex_paint_object and brush: diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 1dac98780da..4241db0e371 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -43,8 +43,9 @@ #include "BLI_blenlib.h" #include "BLI_arithb.h" +#include "BLI_ghash.h" - +#include "DNA_anim_types.h" #include "DNA_action_types.h" #include "DNA_armature_types.h" #include "DNA_brush_types.h" @@ -986,7 +987,44 @@ void sample_wpaint(Scene *scene, ARegion *ar, View3D *v3d, int mode) } -static void do_weight_paint_vertex(VPaint *wp, Object *ob, int index, int alpha, float paintweight, int vgroup_mirror) +static void do_weight_paint_auto_normalize(MDeformVert *dvert, + int paint_nr, char *map) +{ + MDeformWeight *dw = dvert->dw; + float sum=0.0f, fac=0.0f, paintw=0.0f; + int i, tot=0; + + if (!map) + return; + + for (i=0; itotweight; i++) { + if (dvert->dw[i].def_nr == paint_nr) + paintw = dvert->dw[i].weight; + + if (map[dvert->dw[i].def_nr]) { + tot += 1; + if (dvert->dw[i].def_nr != paint_nr) + sum += dvert->dw[i].weight; + } + } + + if (!tot || sum <= (1.0f - paintw)) + return; + + fac = sum / (1.0f - paintw); + fac = fac==0.0f ? 1.0f : 1.0f / fac; + + for (i=0; itotweight; i++) { + if (map[dvert->dw[i].def_nr]) { + if (dvert->dw[i].def_nr != paint_nr) + dvert->dw[i].weight *= fac; + } + } +} + +static void do_weight_paint_vertex(VPaint *wp, Object *ob, int index, + int alpha, float paintweight, + int vgroup_mirror, char *validmap) { Mesh *me= ob->data; MDeformWeight *dw, *uw; @@ -1004,7 +1042,8 @@ static void do_weight_paint_vertex(VPaint *wp, Object *ob, int index, int alpha, return; wpaint_blend(wp, dw, uw, (float)alpha/255.0, paintweight); - + do_weight_paint_auto_normalize(me->dvert+index, vgroup, validmap); + if(me->editflag & ME_EDIT_MIRROR_X) { /* x mirror painting */ int j= mesh_get_x_mirror_vert(ob, index); if(j>=0) { @@ -1015,6 +1054,8 @@ static void do_weight_paint_vertex(VPaint *wp, Object *ob, int index, int alpha, uw= ED_vgroup_weight_verify(me->dvert+j, vgroup); uw->weight= dw->weight; + + do_weight_paint_auto_normalize(me->dvert+j, vgroup, validmap); } } } @@ -1208,8 +1249,67 @@ struct WPaintData { int vgroup_mirror; float *vertexcosnos; float wpimat[3][3]; + + /*variables for auto normalize*/ + int auto_normalize; + char *vgroup_validmap; /*stores if vgroups tie to deforming bones or not*/ }; +static char *wpaint_make_validmap(Mesh *me, Object *ob) +{ + bDeformGroup *dg; + ModifierData *md; + char *validmap; + bPose *pose; + bPoseChannel *chan; + ArmatureModifierData *amd; + GHash *gh = BLI_ghash_new(BLI_ghashutil_strhash, BLI_ghashutil_strcmp); + int i = 0; + + /*add all names to a hash table*/ + for (dg=ob->defbase.first, i=0; dg; dg=dg->next, i++) { + BLI_ghash_insert(gh, dg->name, NULL); + } + + if (!i) + return; + + validmap = MEM_callocN(i, "wpaint valid map"); + + /*now loop through the armature modifiers and identify deform bones*/ + for (md = ob->modifiers.first; md; md=md->next) { + if (!(md->mode & eModifierMode_Realtime)) + continue; + + if (md->type == eModifierType_Armature) + { + amd = (ArmatureModifierData*) md; + pose = amd->object->pose; + + for (chan=pose->chanbase.first; chan; chan=chan->next) { + if (chan->bone->flag & BONE_NO_DEFORM) + continue; + + if (BLI_ghash_haskey(gh, chan->name)) { + BLI_ghash_remove(gh, chan->name, NULL, NULL); + BLI_ghash_insert(gh, chan->name, SET_INT_IN_POINTER(1)); + } + } + } + } + + /*add all names to a hash table*/ + for (dg=ob->defbase.first, i=0; dg; dg=dg->next, i++) { + if (BLI_ghash_lookup(gh, dg->name) != NULL) { + validmap[i] = 1; + } + } + + BLI_ghash_free(gh, NULL, NULL); + + return validmap; +} + static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *event) { Scene *scene= CTX_data_scene(C); @@ -1236,6 +1336,12 @@ static int wpaint_stroke_test_start(bContext *C, wmOperator *op, wmEvent *event) view3d_set_viewcontext(C, &wpd->vc); wpd->vgroup_mirror= -1; + /*set up auto-normalize, and generate map for detecting which + vgroups affect deform bones*/ + wpd->auto_normalize = ts->auto_normalize; + if (wpd->auto_normalize) + wpd->vgroup_validmap = wpaint_make_validmap(me, ob); + // if(qual & LR_CTRLKEY) { // sample_wpaint(scene, ar, v3d, 0); // return; @@ -1417,7 +1523,9 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P if((me->dvert+mface->v1)->flag) { alpha= calc_vp_alpha_dl(wp, vc, wpd->wpimat, wpd->vertexcosnos+6*mface->v1, mval); if(alpha) { - do_weight_paint_vertex(wp, ob, mface->v1, alpha, paintweight, wpd->vgroup_mirror); + do_weight_paint_vertex(wp, ob, mface->v1, + alpha, paintweight, wpd->vgroup_mirror, + wpd->vgroup_validmap); } (me->dvert+mface->v1)->flag= 0; } @@ -1425,7 +1533,9 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P if((me->dvert+mface->v2)->flag) { alpha= calc_vp_alpha_dl(wp, vc, wpd->wpimat, wpd->vertexcosnos+6*mface->v2, mval); if(alpha) { - do_weight_paint_vertex(wp, ob, mface->v2, alpha, paintweight, wpd->vgroup_mirror); + do_weight_paint_vertex(wp, ob, mface->v2, + alpha, paintweight, wpd->vgroup_mirror, + wpd->vgroup_validmap); } (me->dvert+mface->v2)->flag= 0; } @@ -1433,7 +1543,9 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P if((me->dvert+mface->v3)->flag) { alpha= calc_vp_alpha_dl(wp, vc, wpd->wpimat, wpd->vertexcosnos+6*mface->v3, mval); if(alpha) { - do_weight_paint_vertex(wp, ob, mface->v3, alpha, paintweight, wpd->vgroup_mirror); + do_weight_paint_vertex(wp, ob, mface->v3, + alpha, paintweight, wpd->vgroup_mirror, + wpd->vgroup_validmap); } (me->dvert+mface->v3)->flag= 0; } @@ -1442,7 +1554,9 @@ static void wpaint_stroke_update_step(bContext *C, struct PaintStroke *stroke, P if(mface->v4) { alpha= calc_vp_alpha_dl(wp, vc, wpd->wpimat, wpd->vertexcosnos+6*mface->v4, mval); if(alpha) { - do_weight_paint_vertex(wp, ob, mface->v4, alpha, paintweight, wpd->vgroup_mirror); + do_weight_paint_vertex(wp, ob, mface->v4, + alpha, paintweight, wpd->vgroup_mirror, + wpd->vgroup_validmap); } (me->dvert+mface->v4)->flag= 0; } @@ -1466,6 +1580,9 @@ static void wpaint_stroke_done(bContext *C, struct PaintStroke *stroke) MEM_freeN(wpd->vertexcosnos); MEM_freeN(wpd->indexar); + if (wpd->vgroup_validmap) + MEM_freeN(wpd->vgroup_validmap); + /* frees prev buffer */ copy_wpaint_prev(ts->wpaint, NULL, 0); diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index f14f7b58bef..952f62942ef 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -669,6 +669,8 @@ typedef struct ToolSettings { /* Transform */ short snap_mode, snap_flag, snap_target; short proportional, prop_mode; + + int auto_normalize, intpad; /*auto normalizing mode in wpaint*/ } ToolSettings; typedef struct bStats { diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 899d600abcd..d6dbb7cac5f 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -562,6 +562,12 @@ static void rna_def_tool_settings(BlenderRNA *brna) RNA_def_property_struct_type(prop, "Sculpt"); RNA_def_property_ui_text(prop, "Sculpt", ""); + prop = RNA_def_property(srna, "auto_normalize", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "auto_normalize", 1); + RNA_def_property_ui_text(prop, "WPaint Auto-Normalize", + "Ensure all bone-deforming vertex groups add up to 1.0 while " + "weight painting"); + prop= RNA_def_property(srna, "vertex_paint", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "vpaint"); RNA_def_property_ui_text(prop, "Vertex Paint", ""); From ae3cf92491be73f353b278f1632a68990d0e44d9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 30 Oct 2009 06:33:40 +0000 Subject: [PATCH 253/412] New Track To Constraint: "Damped" This is effectively a C-port of Nathan Vegdahl's "No Twist" TrackTo PyConstraint, and has been added as a separate type of constraint to be consistent with the existing constraints (Locked Track, and Track To). In general, this works considerably better than the existing "Track To" constraint, since it works by determining the smallest rotation necessary to get the current orientation of the owner to an orientation which would be tracking the target. It is also a much more straightforward approach than the weird old method the old Track To uses. I've made a few tweaks to the code to deal with the (hopefully rare) cases where the target and the constrained are coincident. These don't appear to cause too much trouble in general. TODO: - Probably the naming of the constraints will change, to better convey their purposes. Naming suggestions welcome. --- .../scripts/ui/buttons_object_constraint.py | 7 + source/blender/blenkernel/intern/constraint.c | 136 ++++++++++++++++-- source/blender/blenlib/intern/arithb.c | 1 + .../blender/makesdna/DNA_constraint_types.h | 13 +- source/blender/makesrna/RNA_access.h | 1 + .../blender/makesrna/intern/rna_constraint.c | 44 +++++- 6 files changed, 189 insertions(+), 13 deletions(-) diff --git a/release/scripts/ui/buttons_object_constraint.py b/release/scripts/ui/buttons_object_constraint.py index 63fe27f2e4b..07ea5f43907 100644 --- a/release/scripts/ui/buttons_object_constraint.py +++ b/release/scripts/ui/buttons_object_constraint.py @@ -568,6 +568,13 @@ class ConstraintButtonsPanel(bpy.types.Panel): row.itemR(con, "axis_x") row.itemR(con, "axis_y") row.itemR(con, "axis_z") + + def DAMPED_TRACK(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemL(text="To:") + row.itemR(con, "track", expand=True) class OBJECT_PT_constraints(ConstraintButtonsPanel): __label__ = "Constraints" diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c index cf919f024b8..93a4ba80d7c 100644 --- a/source/blender/blenkernel/intern/constraint.c +++ b/source/blender/blenkernel/intern/constraint.c @@ -2179,7 +2179,7 @@ static void locktrack_evaluate (bConstraint *con, bConstraintOb *cob, ListBase * Projf(vec2, vec, cob->matrix[1]); VecSubf(totmat[2], vec, vec2); Normalize(totmat[2]); - + /* the y axis is fixed */ totmat[1][0] = cob->matrix[1][0]; totmat[1][1] = cob->matrix[1][1]; @@ -2311,20 +2311,20 @@ static void locktrack_evaluate (bConstraint *con, bConstraintOb *cob, ListBase * break; default: { - totmat[0][0] = 1;totmat[0][1] = 0;totmat[0][2] = 0; - totmat[1][0] = 0;totmat[1][1] = 1;totmat[1][2] = 0; - totmat[2][0] = 0;totmat[2][1] = 0;totmat[2][2] = 1; + totmat[0][0] = 1;totmat[0][1] = 0;totmat[0][2] = 0; + totmat[1][0] = 0;totmat[1][1] = 1;totmat[1][2] = 0; + totmat[2][0] = 0;totmat[2][1] = 0;totmat[2][2] = 1; } break; } } break; default: - { - totmat[0][0] = 1;totmat[0][1] = 0;totmat[0][2] = 0; - totmat[1][0] = 0;totmat[1][1] = 1;totmat[1][2] = 0; - totmat[2][0] = 0;totmat[2][1] = 0;totmat[2][2] = 1; - } + { + totmat[0][0] = 1;totmat[0][1] = 0;totmat[0][2] = 0; + totmat[1][0] = 0;totmat[1][1] = 1;totmat[1][2] = 0; + totmat[2][0] = 0;totmat[2][1] = 0;totmat[2][2] = 1; + } break; } /* Block to keep matrix heading */ @@ -3327,7 +3327,124 @@ static bConstraintTypeInfo CTI_SHRINKWRAP = { shrinkwrap_evaluate /* evaluate */ }; +/* --------- Damped Track ---------- */ +static void damptrack_new_data (void *cdata) +{ + bDampTrackConstraint *data= (bDampTrackConstraint *)cdata; + + data->trackflag = TRACK_Y; +} + +static int damptrack_get_tars (bConstraint *con, ListBase *list) +{ + if (con && list) { + bDampTrackConstraint *data= con->data; + bConstraintTarget *ct; + + /* the following macro is used for all standard single-target constraints */ + SINGLETARGET_GET_TARS(con, data->tar, data->subtarget, ct, list) + + return 1; + } + + return 0; +} + +static void damptrack_flush_tars (bConstraint *con, ListBase *list, short nocopy) +{ + if (con && list) { + bDampTrackConstraint *data= con->data; + bConstraintTarget *ct= list->first; + + /* the following macro is used for all standard single-target constraints */ + SINGLETARGET_FLUSH_TARS(con, data->tar, data->subtarget, ct, list, nocopy) + } +} + +/* array of direction vectors for the tracking flags */ +static const float track_dir_vecs[6][3] = { + {+1,0,0}, {0,+1,0}, {0,0,+1}, /* TRACK_X, TRACK_Y, TRACK_Z */ + {-1,0,0}, {0,-1,0}, {0,0,-1} /* TRACK_NX, TRACK_NY, TRACK_NZ */ +}; + +static void damptrack_evaluate (bConstraint *con, bConstraintOb *cob, ListBase *targets) +{ + bDampTrackConstraint *data= con->data; + bConstraintTarget *ct= targets->first; + + if (VALID_CONS_TARGET(ct)) { + float obvec[3], tarvec[3], obloc[3]; + float raxis[3], rangle; + float rmat[3][3], tmat[4][4]; + + /* find the (unit) direction that the axis we're interested in currently points + * - Mat4Mul3Vecfl() only takes the 3x3 (rotation+scaling) components of the 4x4 matrix + * - the normalisation step at the end should take care of any unwanted scaling + * left over in the 3x3 matrix we used + */ + VECCOPY(obvec, track_dir_vecs[data->trackflag]); + Mat4Mul3Vecfl(cob->matrix, obvec); + + if (Normalize(obvec) == 0.0f) { + /* exceptional case - just use the track vector as appropriate */ + VECCOPY(obvec, track_dir_vecs[data->trackflag]); + } + + /* find the (unit) direction vector going from the owner to the target */ + VECCOPY(obloc, cob->matrix[3]); + VecSubf(tarvec, ct->matrix[3], obloc); + + if (Normalize(tarvec) == 0.0f) { + /* the target is sitting on the owner, so just make them use the same direction vectors */ + // FIXME: or would it be better to use the pure direction vector? + VECCOPY(tarvec, obvec); + //VECCOPY(tarvec, track_dir_vecs[data->trackflag]); + } + + /* determine the axis-angle rotation, which represents the smallest possible rotation + * between the two rotation vectors (i.e. the 'damping' referred to in the name) + * - we take this to be the rotation around the normal axis/vector to the plane defined + * by the current and destination vectors, which will 'map' the current axis to the + * destination vector + * - the min/max wrappers around (obvec . tarvec) result (stored temporarily in rangle) + * are used to ensure that the smallest angle is chosen + */ + Crossf(raxis, obvec, tarvec); + + rangle= Inpf(obvec, tarvec); + rangle= acos( MAX2(-1.0f, MIN2(1.0f, rangle)) ); + + /* construct rotation matrix from the axis-angle rotation found above + * - this call takes care to make sure that the axis provided is a unit vector first + */ + AxisAngleToMat3(raxis, rangle, rmat); + + /* rotate the owner in the way defined by this rotation matrix, then reapply the location since + * we may have destroyed that in the process of multiplying the matrix + */ + Mat4One(tmat); + Mat4MulMat34(tmat, rmat, cob->matrix); // m1, m3, m2 + + Mat4CpyMat4(cob->matrix, tmat); + VECCOPY(cob->matrix[3], obloc); + } +} + +static bConstraintTypeInfo CTI_DAMPTRACK = { + CONSTRAINT_TYPE_DAMPTRACK, /* type */ + sizeof(bDampTrackConstraint), /* size */ + "Damped Track", /* name */ + "bDampTrackConstraint", /* struct name */ + NULL, /* free data */ + NULL, /* relink data */ + NULL, /* copy data */ + damptrack_new_data, /* new data */ + damptrack_get_tars, /* get constraint targets */ + damptrack_flush_tars, /* flush constraint targets */ + default_get_tarmat, /* get target matrix */ + damptrack_evaluate /* evaluate */ +}; /* ************************* Constraints Type-Info *************************** */ /* All of the constraints api functions use bConstraintTypeInfo structs to carry out @@ -3361,6 +3478,7 @@ static void constraints_init_typeinfo () { constraintsTypeInfo[18]= &CTI_CLAMPTO; /* ClampTo Constraint */ constraintsTypeInfo[19]= &CTI_TRANSFORM; /* Transformation Constraint */ constraintsTypeInfo[20]= &CTI_SHRINKWRAP; /* Shrinkwrap Constraint */ + constraintsTypeInfo[21]= &CTI_DAMPTRACK; /* Damped TrackTo Constraint */ } /* This function should be used for getting the appropriate type-info when only diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c index 68f56620e21..c42e21d5234 100644 --- a/source/blender/blenlib/intern/arithb.c +++ b/source/blender/blenlib/intern/arithb.c @@ -131,6 +131,7 @@ float Normalize(float *n) return d; } +/* Crossf stores the cross product c = a x b */ void Crossf(float *c, float *a, float *b) { c[0] = a[1] * b[2] - a[2] * b[1]; diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h index 7232042c876..7b0b1c3d814 100644 --- a/source/blender/makesdna/DNA_constraint_types.h +++ b/source/blender/makesdna/DNA_constraint_types.h @@ -219,6 +219,14 @@ typedef struct bLockTrackConstraint { char subtarget[32]; } bLockTrackConstraint; +/* Damped Tracking constraint */ +typedef struct bDampTrackConstraint { + Object *tar; + int trackflag; + int pad; + char subtarget[32]; +} bDampTrackConstraint; + /* Follow Path constraints */ typedef struct bFollowPathConstraint { Object *tar; /* Must be path object */ @@ -331,6 +339,7 @@ typedef struct bDistLimitConstraint { int pad; } bDistLimitConstraint; +/* ShrinkWrap Constraint */ typedef struct bShrinkwrapConstraint { Object *target; float dist; /* distance to kept from target */ @@ -368,10 +377,10 @@ typedef enum B_CONSTAINT_TYPES { CONSTRAINT_TYPE_CLAMPTO, /* clampto constraint */ CONSTRAINT_TYPE_TRANSFORM, /* transformation (loc/rot/size -> loc/rot/size) constraint */ CONSTRAINT_TYPE_SHRINKWRAP, /* shrinkwrap (loc/rot) constraint */ - + CONSTRAINT_TYPE_DAMPTRACK, /* New Tracking constraint that minimises twisting */ /* NOTE: everytime a new constraint is added, update this */ - NUM_CONSTRAINT_TYPES= CONSTRAINT_TYPE_SHRINKWRAP + NUM_CONSTRAINT_TYPES= CONSTRAINT_TYPE_DAMPTRACK } B_CONSTRAINT_TYPES; /* bConstraint->flag */ diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 191c8781f18..1d4aa100fce 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -172,6 +172,7 @@ extern StructRNA RNA_CurveMapPoint; extern StructRNA RNA_CurveMapping; extern StructRNA RNA_CurveModifier; extern StructRNA RNA_CurvePoint; +extern StructRNA RNA_DampedTrackConstraint; extern StructRNA RNA_DecimateModifier; extern StructRNA RNA_DelaySensor; extern StructRNA RNA_DisplaceModifier; diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 6a7885c3a16..7a9a07939b1 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -49,8 +49,9 @@ EnumPropertyItem constraint_type_items[] ={ {CONSTRAINT_TYPE_SIZELIMIT, "LIMIT_SCALE", ICON_CONSTRAINT_DATA, "Limit Scale", ""}, {CONSTRAINT_TYPE_DISTLIMIT, "LIMIT_DISTANCE", ICON_CONSTRAINT_DATA, "Limit Distance", ""}, {0, "", 0, "Tracking", ""}, - {CONSTRAINT_TYPE_TRACKTO, "TRACK_TO", ICON_CONSTRAINT_DATA, "Track To", ""}, - {CONSTRAINT_TYPE_LOCKTRACK, "LOCKED_TRACK", ICON_CONSTRAINT_DATA, "Locked Track", ""}, + {CONSTRAINT_TYPE_TRACKTO, "TRACK_TO", ICON_CONSTRAINT_DATA, "Track To", "Legacy tracking constraint prone to twisting artifacts"}, + {CONSTRAINT_TYPE_LOCKTRACK, "LOCKED_TRACK", ICON_CONSTRAINT_DATA, "Locked Track", "Tracking along a single axis"}, + {CONSTRAINT_TYPE_DAMPTRACK, "DAMPED_TRACK", ICON_CONSTRAINT_DATA, "Damped Track", "Tracking by taking the shortest path"}, {CONSTRAINT_TYPE_CLAMPTO, "CLAMP_TO", ICON_CONSTRAINT_DATA, "Clamp To", ""}, {CONSTRAINT_TYPE_STRETCHTO, "STRETCH_TO",ICON_CONSTRAINT_DATA, "Stretch To", ""}, {CONSTRAINT_TYPE_KINEMATIC, "IK", ICON_CONSTRAINT_DATA, "Inverse Kinematics", ""}, @@ -144,6 +145,8 @@ static StructRNA *rna_ConstraintType_refine(struct PointerRNA *ptr) return &RNA_LimitDistanceConstraint; case CONSTRAINT_TYPE_SHRINKWRAP: return &RNA_ShrinkwrapConstraint; + case CONSTRAINT_TYPE_DAMPTRACK: + return &RNA_DampedTrackConstraint; default: return &RNA_UnknownType; } @@ -1633,6 +1636,42 @@ static void rna_def_constraint_shrinkwrap(BlenderRNA *brna) RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); } +static void rna_def_constraint_damped_track(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + static EnumPropertyItem damptrack_items[] = { + {TRACK_X, "TRACK_X", 0, "X", ""}, + {TRACK_Y, "TRACK_Y", 0, "Y", ""}, + {TRACK_Z, "TRACK_Z", 0, "Z", ""}, + {TRACK_nX, "TRACK_NEGATIVE_X", 0, "-X", ""}, + {TRACK_nY, "TRACK_NEGATIVE_Y", 0, "-Y", ""}, + {TRACK_nZ, "TRACK_NEGATIVE_Z", 0, "-Z", ""}, + {0, NULL, 0, NULL, NULL}}; + + srna= RNA_def_struct(brna, "DampedTrackConstraint", "Constraint"); + RNA_def_struct_ui_text(srna, "Damped Track Constraint", "Points toward target by taking the shortest rotation path."); + RNA_def_struct_sdna_from(srna, "bDampTrackConstraint", "data"); + + prop= RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE); + RNA_def_property_pointer_sdna(prop, NULL, "tar"); + RNA_def_property_ui_text(prop, "Target", "Target Object"); + RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); + + prop= RNA_def_property(srna, "subtarget", PROP_STRING, PROP_NONE); + RNA_def_property_string_sdna(prop, NULL, "subtarget"); + RNA_def_property_ui_text(prop, "Sub-Target", ""); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); + + prop= RNA_def_property(srna, "track", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "trackflag"); + RNA_def_property_enum_items(prop, damptrack_items); + RNA_def_property_ui_text(prop, "Track Axis", "Axis that points to the target object."); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); +} + /* base struct for constraints */ void RNA_def_constraint(BlenderRNA *brna) { @@ -1733,6 +1772,7 @@ void RNA_def_constraint(BlenderRNA *brna) rna_def_constraint_location_limit(brna); rna_def_constraint_transform(brna); rna_def_constraint_shrinkwrap(brna); + rna_def_constraint_damped_track(brna); } #endif From ae9eae222c0a92bea637f1023a46fe44e4a2a534 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 09:34:57 +0000 Subject: [PATCH 254/412] Patch from Stani for autocomplete adds ability to complete in these situations bpy -> bpy. bpy.data.objects -> bpy.data.objects["Mesh"] my autocomplete could only do bpy -> bpy. --- .../modules/console/complete_import.py | 14 +- .../modules/console/complete_namespace.py | 149 ++++++++++++++++-- .../scripts/modules/console/intellisense.py | 26 ++- 3 files changed, 163 insertions(+), 26 deletions(-) diff --git a/release/scripts/modules/console/complete_import.py b/release/scripts/modules/console/complete_import.py index 02ded3eef6d..9166dee2bb2 100644 --- a/release/scripts/modules/console/complete_import.py +++ b/release/scripts/modules/console/complete_import.py @@ -126,6 +126,8 @@ def complete(line): >>> complete('import weak') ['weakref'] + >>> complete('from weakref import C') + ['CallableProxyType'] """ import inspect @@ -148,6 +150,8 @@ def complete(line): (hasattr(m, '__file__') and '__init__' in m.__file__): completion_list = [attr for attr in dir(m) if is_importable(m, attr)] + else: + completion_list = [] completion_list.extend(getattr(m, '__all__', [])) if hasattr(m, '__file__') and '__init__' in m.__file__: completion_list.extend(module_list(os.path.dirname(m.__file__))) @@ -156,6 +160,9 @@ def complete(line): completion_list.remove('__init__') return completion_list + def filter_prefix(names, prefix): + return [name for name in names if name.startswith(prefix)] + words = line.split(' ') if len(words) == 3 and words[0] == 'from': return ['import '] @@ -164,11 +171,10 @@ def complete(line): return get_root_modules() mod = words[1].split('.') if len(mod) < 2: - mod0 = mod[0] - return [m for m in get_root_modules() if m.startswith(mod0)] + return filter_prefix(get_root_modules(), words[-1]) completion_list = try_import('.'.join(mod[:-1]), True) completion_list = ['.'.join(mod[:-1] + [el]) for el in completion_list] - return completion_list + return filter_prefix(completion_list, words[-1]) if len(words) >= 3 and words[0] == 'from': mod = words[1] - return try_import(mod) + return filter_prefix(try_import(mod), words[-1]) diff --git a/release/scripts/modules/console/complete_namespace.py b/release/scripts/modules/console/complete_namespace.py index a2836a60b29..4aa0de558f2 100644 --- a/release/scripts/modules/console/complete_namespace.py +++ b/release/scripts/modules/console/complete_namespace.py @@ -15,12 +15,86 @@ """Autocomplete with the standard library""" +import re import rlcompleter + +RE_INCOMPLETE_INDEX = re.compile('(.*?)\[[^\]]+$') + TEMP = '__tEmP__' # only \w characters are allowed! TEMP_N = len(TEMP) +def is_dict(obj): + """Returns whether obj is a dictionary""" + return hasattr(obj, 'keys') and hasattr(getattr(obj, 'keys'), '__call__') + + +def complete_names(word, namespace): + """Complete variable names or attributes + + :param word: word to be completed + :type word: str + :param namespace: namespace + :type namespace: dict + :returns: completion matches + :rtype: list of str + + >>> complete_names('fo', {'foo': 'bar'}) + ['foo', 'for', 'format('] + """ + # start completer + completer = rlcompleter.Completer(namespace) + # find matches with std library (don't try to implement this yourself) + completer.complete(word, 0) + return sorted(set(completer.matches)) + + +def complete_indices(word, namespace, obj=None, base=None): + """Complete a list or dictionary with its indices: + + * integer numbers for list + * any keys for dictionary + + :param word: word to be completed + :type word: str + :param namespace: namespace + :type namespace: dict + :param obj: object evaluated from base + :param base: substring which can be evaluated into an object + :type base: str + :returns: completion matches + :rtype: list of str + + >>> complete_indices('foo', {'foo': range(5)}) + ['foo[0]', 'foo[1]', 'foo[2]', 'foo[3]', 'foo[4]'] + >>> complete_indices('foo', {'foo': {'bar':0, 1:2}}) + ['foo[1]', "foo['bar']"] + >>> complete_indices("foo['b", {'foo': {'bar':0, 1:2}}, base='foo') + ["foo['bar']"] + """ + #FIXME: 'foo["b' + if base is None: + base = word + if obj is None: + try: + obj = eval(base, namespace) + except Exception: + return [] + if not hasattr(obj, '__getitem__'): + # obj is not a list or dictionary + return [] + if is_dict(obj): + # dictionary type + matches = ['%s[%r]' % (base, key) for key in sorted(obj.keys())] + else: + # list type + matches = ['%s[%d]' % (base, idx) for idx in range(len(obj))] + if word != base: + matches = [match for match in matches if match.startswith(word)] + return matches + + def complete(word, namespace, private=True): """Complete word within a namespace with the standard rlcompleter module. Also supports index or key access []. @@ -31,33 +105,78 @@ def complete(word, namespace, private=True): :type namespace: dict :param private: whether private attribute/methods should be returned :type private: bool + :returns: completion matches + :rtype: list of str - >>> complete('fo', {'foo': 'bar'}) - ['foo'] + >>> complete('foo[1', {'foo': range(14)}) + ['foo[1]', 'foo[10]', 'foo[11]', 'foo[12]', 'foo[13]'] + >>> complete('foo[0]', {'foo': [range(5)]}) + ['foo[0][0]', 'foo[0][1]', 'foo[0][2]', 'foo[0][3]', 'foo[0][4]'] + >>> complete('foo[0].i', {'foo': [range(5)]}) + ['foo[0].index(', 'foo[0].insert('] + >>> complete('rlcompleter', {'rlcompleter': rlcompleter}) + ['rlcompleter.'] """ - completer = rlcompleter.Completer(namespace) + # + # if word is empty -> nothing to complete + if not word: + return [] - # brackets are normally not allowed -> work around (only in this case) - if '[' in word: + re_incomplete_index = RE_INCOMPLETE_INDEX.search(word) + if re_incomplete_index: + # ignore incomplete index at the end, e.g 'a[1' -> 'a' + matches = complete_indices(word, namespace, + base=re_incomplete_index.group(1)) + + elif not('[' in word): + matches = complete_names(word, namespace) + + elif word[-1] == ']': + matches = [word] + + elif '.' in word: + # brackets are normally not allowed -> work around + + # remove brackets by using a temp var without brackets obj, attr = word.rsplit('.', 1) try: # do not run the obj expression in the console namespace[TEMP] = eval(obj, namespace) except Exception: return [] - _word = TEMP + '.' + attr - else: - _word = word - - # find matches with stdlibrary (don't try to implement this yourself) - completer.complete(_word, 0) - matches = completer.matches - - # brackets are normally not allowed -> clean up - if '[' in word: + matches = complete_names(TEMP + '.' + attr, namespace) matches = [obj + match[TEMP_N:] for match in matches] del namespace[TEMP] + else: + # safety net, but when would this occur? + return [] + + if not matches: + return [] + + # add '.', '(' or '[' if no match has been found + elif len(matches) == 1 and matches[0] == word: + + # try to retrieve the object + try: + obj = eval(word, namespace) + except Exception: + return [] + # ignore basic types + if type(obj) in (bool, float, int, str): + return [] + # an extra char '[', '(' or '.' will be added + if hasattr(obj, '__getitem__'): + # list or dictionary + matches = complete_indices(word, namespace, obj) + elif hasattr(obj, '__call__'): + # callables + matches = [word + '('] + else: + # any other type + matches = [word + '.'] + # separate public from private public_matches = [match for match in matches if not('._' in match)] if private: diff --git a/release/scripts/modules/console/intellisense.py b/release/scripts/modules/console/intellisense.py index 2658f79a4cc..eda34c9ff6b 100644 --- a/release/scripts/modules/console/intellisense.py +++ b/release/scripts/modules/console/intellisense.py @@ -29,17 +29,29 @@ import re # line which starts with an import statement RE_MODULE = re.compile('^import|from.+') -# The following regular expression means a word which: -# - doesn't start with a quote (quoted words are not py objects) -# - starts with a [a-zA-Z0-9_] -# - afterwards dots are allowed as well -# - square bracket pairs [] are allowed (should be closed) +# The following regular expression means an 'unquoted' word RE_UNQUOTED_WORD = re.compile( - '''(?:^|[^"'])((?:\w+(?:\w|[.]|\[.+?\])*|))$''', re.UNICODE) + # don't start with a quote + '''(?:^|[^"'a-zA-Z0-9_])''' + # start with a \w = [a-zA-Z0-9_] + '''((?:\w+''' + # allow also dots and closed bracket pairs [] + '''(?:\w|[.]|\[.+?\])*''' + # allow empty string + '''|)''' + # allow an unfinished index at the end (including quotes) + '''(?:\[[^\]]*$)?)$''', + # allow unicode as theoretically this is possible + re.UNICODE) def complete(line, cursor, namespace, private=True): - """Returns a list of possible completions. + """Returns a list of possible completions: + + * name completion + * attribute completion (obj.attr) + * index completion for lists and dictionaries + * module completion (from/import) :param line: incomplete text line :type line: str From 77532f6f8ac3dd3f12608a81b807f42936bbae33 Mon Sep 17 00:00:00 2001 From: Joseph Eagar Date: Fri, 30 Oct 2009 09:50:35 +0000 Subject: [PATCH 255/412] two things; made ctrl-p add an armature modifier instead of using PARSKEL, and also made wpaint auto-normalize work with PARSKEL armature setups --- source/blender/editors/sculpt_paint/paint_vertex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 4241db0e371..9d673581368 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1264,7 +1264,7 @@ static char *wpaint_make_validmap(Mesh *me, Object *ob) bPoseChannel *chan; ArmatureModifierData *amd; GHash *gh = BLI_ghash_new(BLI_ghashutil_strhash, BLI_ghashutil_strcmp); - int i = 0; + int i = 0, step1=1; /*add all names to a hash table*/ for (dg=ob->defbase.first, i=0; dg; dg=dg->next, i++) { @@ -1277,8 +1277,8 @@ static char *wpaint_make_validmap(Mesh *me, Object *ob) validmap = MEM_callocN(i, "wpaint valid map"); /*now loop through the armature modifiers and identify deform bones*/ - for (md = ob->modifiers.first; md; md=md->next) { - if (!(md->mode & eModifierMode_Realtime)) + for (md = ob->modifiers.first; md; md= !md->next && step1 ? (step1=0), modifiers_getVirtualModifierList(ob) : md->next) { + if (!(md->mode & (eModifierMode_Realtime|eModifierMode_Virtual))) continue; if (md->type == eModifierType_Armature) From 312c4872014fd79697b8ed4d8df8d7f449d46fc6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 12:11:04 +0000 Subject: [PATCH 256/412] - Simplified EulToGimbalAxis, its still only works on XYZ and ZXY but at least its more clear whats going on. - Made RotOrderInfo use a vector rather then i/j/k - Added gimbal_axis to transform.h (was extern) --- source/blender/blenlib/intern/arithb.c | 66 +++++-------------- source/blender/editors/transform/transform.h | 1 + .../editors/transform/transform_manipulator.c | 4 +- .../transform/transform_orientations.c | 3 +- 4 files changed, 19 insertions(+), 55 deletions(-) diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c index c42e21d5234..fe8f97b4bcf 100644 --- a/source/blender/blenlib/intern/arithb.c +++ b/source/blender/blenlib/intern/arithb.c @@ -2995,10 +2995,8 @@ void MeanValueWeights(float v[][3], int n, float *co, float *w) /* Type for rotation order info - see wiki for derivation details */ typedef struct RotOrderInfo { - short i; /* first axis index */ - short j; /* second axis index */ - short k; /* third axis index */ - short parity; /* parity of axis permuation (even=0, odd=1) - 'n' in original code */ + short axis[3]; + short parity; /* parity of axis permutation (even=0, odd=1) - 'n' in original code */ } RotOrderInfo; /* Array of info for Rotation Order calculations @@ -3006,12 +3004,12 @@ typedef struct RotOrderInfo { */ static RotOrderInfo rotOrders[]= { /* i, j, k, n */ - {0, 1, 2, 0}, // XYZ - {0, 2, 1, 1}, // XZY - {1, 0, 2, 1}, // YXZ - {1, 2, 0, 0}, // YZX - {2, 0, 1, 0}, // ZXY - {2, 1, 0, 1} // ZYZ + {{0, 1, 2}, 0}, // XYZ + {{0, 2, 1}, 1}, // XZY + {{1, 0, 2}, 1}, // YXZ + {{1, 2, 0}, 0}, // YZX + {{2, 0, 1}, 0}, // ZXY + {{2, 1, 0}, 1} // ZYZ }; /* Get relevant pointer to rotation order set from the array @@ -3024,7 +3022,7 @@ static RotOrderInfo rotOrders[]= { void EulOToQuat(float e[3], short order, float q[4]) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - short i=R->i, j=R->j, k=R->k; + short i=R->axis[0], j=R->axis[1], k=R->axis[2]; double ti, tj, th, ci, cj, ch, si, sj, sh, cc, cs, sc, ss; double a[3]; @@ -3063,7 +3061,7 @@ void QuatToEulO(float q[4], float e[3], short order) void EulOToMat3(float e[3], short order, float M[3][3]) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - short i=R->i, j=R->j, k=R->k; + short i=R->axis[0], j=R->axis[1], k=R->axis[2]; double ti, tj, th, ci, cj, ch, si, sj, sh, cc, cs, sc, ss; if (R->parity) { @@ -3099,7 +3097,7 @@ void EulOToMat4(float e[3], short order, float M[4][4]) void Mat3ToEulO(float M[3][3], float e[3], short order) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - short i=R->i, j=R->j, k=R->k; + short i=R->axis[0], j=R->axis[1], k=R->axis[2]; double cy = sqrt(M[i][i]*M[i][i] + M[i][j]*M[i][j]); if (cy > 16*FLT_EPSILON) { @@ -3135,7 +3133,7 @@ void Mat4ToEulO(float M[4][4], float e[3], short order) static void mat3_to_eulo2(float M[3][3], float *e1, float *e2, short order) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - short i=R->i, j=R->j, k=R->k; + short i=R->axis[0], j=R->axis[1], k=R->axis[2]; float m[3][3]; double cy; @@ -3472,30 +3470,21 @@ void Mat3ToCompatibleEul(float mat[][3], float *eul, float *oldrot) void EulToGimbalAxis(float gmat[][3], float *eul, short order) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - short R_order[3]; - short R_order2[3]; float quat[4]; float teul[3]; float tvec[3]; int i, a; - R_order2[R->i]= 0; - R_order2[R->j]= 1; - R_order2[R->k]= 2; - - R_order[0]= R->i; - R_order[1]= R->j; - R_order[2]= R->k; - for(i= 0; i<3; i++) { tvec[0]= tvec[1]= tvec[2]= 0.0f; tvec[i] = 1.0f; VecCopyf(teul, eul); - for(a= R_order2[i]; a >= 1; a--) - teul[R_order[a-1]]= 0.0f; + /* TODO - only works on XYZ and ZXY */ + for(a= R->axis[i]; a >= 1; a--) + teul[R->axis[a-1]]= 0.0f; EulOToQuat(teul, order, quat); NormalQuat(quat); @@ -3504,31 +3493,6 @@ void EulToGimbalAxis(float gmat[][3], float *eul, short order) VecCopyf(gmat[i], tvec); } - - -#if 0 - - for(i= 0; i<3; i++) { - tvec[0]= tvec[1]= tvec[2]= 0.0f; - tvec[i] = 1.0f; - - VecCopyf(teul, eul); - - for(a= R_order2[i]; a >= 1; a--) - teul[R_order[a-1]]= 0.0f; - - EulToQuat(teul, quat); - NormalQuat(quat); - QuatMulVecf(quat, tvec); - Normalize(tvec); - - VecCopyf(gmat[i], tvec); - } -#endif - - - - } /* ************ AXIS ANGLE *************** */ diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index 819cb95d948..ae4b1f446da 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -535,6 +535,7 @@ void flushTransNodes(TransInfo *t); void flushTransSeq(TransInfo *t); /*********************** exported from transform_manipulator.c ********** */ +void gimbal_axis(struct Object *ob, float gmat[][3]); int calc_manipulator_stats(const struct bContext *C); float get_drawsize(struct ARegion *ar, float *co); diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index 51a820dcdcb..4d48c2c0158 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -181,7 +181,7 @@ static int test_rotmode_euler(short rotmode) return (ELEM(rotmode, ROT_MODE_AXISANGLE, ROT_MODE_QUAT)) ? 0:1; } -void gimbalAxis(Object *ob, float gmat[][3]) +void gimbal_axis(Object *ob, float gmat[][3]) { if(ob->mode & OB_MODE_POSE) { @@ -475,7 +475,7 @@ int calc_manipulator_stats(const bContext *C) { float mat[3][3]; Mat3One(mat); - gimbalAxis(ob, mat); + gimbal_axis(ob, mat); Mat4CpyMat3(rv3d->twmat, mat); break; } diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index efcaedd2fe1..56160d66e25 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -510,7 +510,6 @@ static int count_bone_select(bArmature *arm, ListBase *lb, int do_it) return total; } -extern void gimbalAxis(Object *ob, float gimbal_vecs[][3]); void initTransformOrientation(bContext *C, TransInfo *t) { View3D *v3d = CTX_wm_view3d(C); @@ -528,7 +527,7 @@ void initTransformOrientation(bContext *C, TransInfo *t) case V3D_MANIP_GIMBAL: Mat3One(t->spacemtx); if(ob) - gimbalAxis(ob, t->spacemtx); + gimbal_axis(ob, t->spacemtx); break; case V3D_MANIP_NORMAL: if(obedit || (ob && ob->mode & OB_MODE_POSE)) { From d3e1696d4f278f00691d13cfe7dad9426dc93159 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 12:35:17 +0000 Subject: [PATCH 257/412] use context functions rather then macros --- .../blender/editors/screen/screen_context.c | 48 ++++++++----------- 1 file changed, 21 insertions(+), 27 deletions(-) diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c index 4f08ffb5c7b..0afc6484136 100644 --- a/source/blender/editors/screen/screen_context.c +++ b/source/blender/editors/screen/screen_context.c @@ -48,10 +48,9 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult bScreen *sc= CTX_wm_screen(C); Scene *scene= sc->scene; Base *base; - Object *ob = NULL; - if(scene && scene->basact) - ob = scene->basact->object; + Object *obact= CTX_data_active_object(C); + Object *obedit= CTX_data_edit_object(C); if(CTX_data_dir(member)) { static const char *dir[] = { @@ -103,7 +102,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult return 1; } else if(CTX_data_equals(member, "visible_bones") || CTX_data_equals(member, "editable_bones")) { - Object *obedit= scene->obedit; // XXX get from context? bArmature *arm= (obedit) ? obedit->data : NULL; EditBone *ebone, *flipbone=NULL; int editable_bones= CTX_data_equals(member, "editable_bones"); @@ -146,7 +144,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "selected_bones") || CTX_data_equals(member, "selected_editable_bones")) { - Object *obedit= scene->obedit; // XXX get from context? bArmature *arm= (obedit) ? obedit->data : NULL; EditBone *ebone, *flipbone=NULL; int selected_editable_bones= CTX_data_equals(member, "selected_editable_bones"); @@ -189,7 +186,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "visible_pchans")) { - Object *obact= OBACT; bArmature *arm= (obact) ? obact->data : NULL; bPoseChannel *pchan; @@ -205,7 +201,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "selected_pchans")) { - Object *obact= OBACT; bArmature *arm= (obact) ? obact->data : NULL; bPoseChannel *pchan; @@ -222,7 +217,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "active_bone")) { - Object *obedit= scene->obedit; // XXX get from context? bArmature *arm= (obedit) ? obedit->data : NULL; EditBone *ebone; @@ -240,7 +234,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } else if(CTX_data_equals(member, "active_pchan")) { - Object *obact= OBACT; bPoseChannel *pchan; pchan= get_active_posechannel(obact); @@ -250,57 +243,58 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "active_base")) { - if(scene->basact) - CTX_data_pointer_set(result, &scene->id, &RNA_UnknownType, scene->basact); + base= CTX_data_active_base(C); /* not used in many places so get here */ + if(base) + CTX_data_pointer_set(result, &scene->id, &RNA_UnknownType, base); return 1; } else if(CTX_data_equals(member, "active_object")) { - if(scene->basact) - CTX_data_id_pointer_set(result, &scene->basact->object->id); + if(obact) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "object")) { - if(scene->basact) - CTX_data_id_pointer_set(result, &scene->basact->object->id); + if(obact) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "edit_object")) { /* convenience for now, 1 object per scene in editmode */ - if(scene->obedit) - CTX_data_id_pointer_set(result, &scene->obedit->id); + if(obedit) + CTX_data_id_pointer_set(result, &obedit->id); return 1; } else if(CTX_data_equals(member, "sculpt_object")) { - if(ob && (ob->mode & OB_MODE_SCULPT)) - CTX_data_id_pointer_set(result, &ob->id); + if(obact && (obact->mode & OB_MODE_SCULPT)) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "vertex_paint_object")) { - if(ob && (ob->mode & OB_MODE_VERTEX_PAINT)) - CTX_data_id_pointer_set(result, &ob->id); + if(obact && (obact->mode & OB_MODE_VERTEX_PAINT)) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "weight_paint_object")) { - if(ob && (ob->mode & OB_MODE_WEIGHT_PAINT)) - CTX_data_id_pointer_set(result, &ob->id); + if(obact && (obact->mode & OB_MODE_WEIGHT_PAINT)) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "texture_paint_object")) { - if(ob && (ob->mode & OB_MODE_TEXTURE_PAINT)) - CTX_data_id_pointer_set(result, &ob->id); + if(obact && (obact->mode & OB_MODE_TEXTURE_PAINT)) + CTX_data_id_pointer_set(result, &obact->id); return 1; } else if(CTX_data_equals(member, "particle_edit_object")) { - if(ob && (ob->mode & OB_MODE_PARTICLE_EDIT)) - CTX_data_id_pointer_set(result, &ob->id); + if(obact && (obact->mode & OB_MODE_PARTICLE_EDIT)) + CTX_data_id_pointer_set(result, &obact->id); return 1; } From 6f2ca7c2bf1d2a2d3aba269c5971329507a985e1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 13:08:58 +0000 Subject: [PATCH 258/412] check for error that could happen when making editmode armatures --- source/blender/editors/object/object_add.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 9b7b23f1026..cbf08fbe705 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -525,12 +525,18 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) int newob= 0; if ((obedit==NULL) || (obedit->type != OB_ARMATURE)) { - ED_object_add_type(C, OB_ARMATURE); + obedit= ED_object_add_type(C, OB_ARMATURE); ED_object_enter_editmode(C, 0); + obedit= CTX_data_edit_object(C); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); + if(obedit==NULL) { + BKE_report(op->reports, RPT_ERROR, "Cannot create editmode armature."); + return OPERATOR_CANCELLED; + } + if(v3d) rv3d= CTX_wm_region(C)->regiondata; From 01f6dfaac93cbb86a9d94c173745ef950888857f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 13:26:29 +0000 Subject: [PATCH 259/412] own commit r24178 broke adding objects, need to look into why but this fixes for now --- source/blender/editors/screen/screen_context.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c index 0afc6484136..130ffeb412a 100644 --- a/source/blender/editors/screen/screen_context.c +++ b/source/blender/editors/screen/screen_context.c @@ -49,8 +49,15 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult Scene *scene= sc->scene; Base *base; +#if 0 /* Using the context breaks adding objects in the UI. Need to find out why - campbell */ Object *obact= CTX_data_active_object(C); Object *obedit= CTX_data_edit_object(C); + base= CTX_data_active_base(C); +#else + Object *obedit= scene->obedit; + Object *obact= OBACT; + base= BASACT; +#endif if(CTX_data_dir(member)) { static const char *dir[] = { @@ -243,7 +250,6 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult } } else if(CTX_data_equals(member, "active_base")) { - base= CTX_data_active_base(C); /* not used in many places so get here */ if(base) CTX_data_pointer_set(result, &scene->id, &RNA_UnknownType, base); From 84eb897caa029f1dc8bd9e61298fa7bfb8ccc622 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 13:58:43 +0000 Subject: [PATCH 260/412] updating mathutils wrapped attributes now runs rna update functions too --- source/blender/python/intern/bpy_rna.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index 0d338cd4631..cbc75d35bce 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -71,6 +71,7 @@ static int mathutils_rna_vector_set(BPy_PropertyRNA *self, int subtype, float *v return 0; RNA_property_float_set_array(&self->ptr, self->prop, vec_to); + RNA_property_update(BPy_GetContext(), &self->ptr, self->prop); return 1; } @@ -89,6 +90,7 @@ static int mathutils_rna_vector_set_index(BPy_PropertyRNA *self, int subtype, fl return 0; RNA_property_float_set_index(&self->ptr, self->prop, index, vec_to[index]); + RNA_property_update(BPy_GetContext(), &self->ptr, self->prop); return 1; } @@ -119,6 +121,7 @@ static int mathutils_rna_matrix_set(BPy_PropertyRNA *self, int subtype, float *m return 0; RNA_property_float_set_array(&self->ptr, self->prop, mat_to); + RNA_property_update(BPy_GetContext(), &self->ptr, self->prop); return 1; } From 31258507d047d6594a97fc99496855d6d1a83d5b Mon Sep 17 00:00:00 2001 From: Arystanbek Dyussenov Date: Fri, 30 Oct 2009 15:35:50 +0000 Subject: [PATCH 261/412] Merge of the COLLADA GSoC branch into trunk. COLLADA code is disabled by default (it has dependencies requiring manual install). SCons and CMake builds are supported on Windows and Linux, no Mac building yet. More on building COLLADA code: http://wiki.blender.org/index.php/User:Kazanbas/Building_Collada_Branch. The detailed command log of the merge (can be useful for educational purposes): branch=https://svn.blender.org/svnroot/bf-blender/branches/soc-2009-chingachgook # collada code svn copy $branch/source/blender/collada source/blender/collada # operator svn merge -c 20401,20955,21077,24077,24079 $branch/source/blender/windowmanager/intern/wm_operators.c source/blender/windowmanager/intern/wm_operators.c # menu svn merge -c 24079 $branch/release/scripts/ui/space_info.py release/scripts/ui/space_info.py # scons svn merge -c 20398 $branch/source/blender/SConscript source/blender/SConscript svn merge -c 20398,20691,20955,22726 $branch/tools/btools.py tools/btools.py svn merge -c 20691,20955,22726 $branch/tools/Blender.py tools/Blender.py svn merge -c 20398,20692,20955 $branch/config/linux2-config.py config/linux2-config.py svn merge -c 22726 $branch/config/win64-vc-config.py config/win64-vc-config.py svn merge -c 22726 $branch/config/win32-vc-config.py config/win32-vc-config.py svn merge -c 24077 $branch/source/blender/windowmanager/SConscript source/blender/windowmanager/SConscript # cmake svn merge -c 23319,23905,24077,24158 $branch/CMakeLists.txt CMakeLists.txt svn merge -c 23319 $branch/source/blender/CMakeLists.txt source/blender/CMakeLists.txt svn merge -c 23319 $branch/source/creator/CMakeLists.txt source/creator/CMakeLists.txt svn merge -c 23319 $branch/CMake/macros.cmake CMake/macros.cmake svn merge -c 24077 $branch/source/blender/windowmanager/CMakeLists.txt source/blender/windowmanager/CMakeLists.txt --- CMake/macros.cmake | 10 + CMakeLists.txt | 14 + config/linux2-config.py | 14 + config/win32-vc-config.py | 10 + config/win64-vc-config.py | 10 + release/scripts/ui/space_info.py | 4 +- source/blender/CMakeLists.txt | 4 + source/blender/SConscript | 3 + source/blender/collada/CMakeLists.txt | 44 + source/blender/collada/DocumentExporter.cpp | 2137 +++++++++++++ source/blender/collada/DocumentExporter.h | 8 + source/blender/collada/DocumentImporter.cpp | 2847 +++++++++++++++++ source/blender/collada/DocumentImporter.h | 8 + source/blender/collada/SConscript | 10 + source/blender/collada/collada.cpp | 26 + source/blender/collada/collada.h | 19 + source/blender/collada/collada_internal.h | 69 + source/blender/windowmanager/CMakeLists.txt | 4 + source/blender/windowmanager/SConscript | 3 + .../windowmanager/intern/wm_operators.c | 106 + source/creator/CMakeLists.txt | 3 +- tools/Blender.py | 11 + tools/btools.py | 16 + 23 files changed, 5377 insertions(+), 3 deletions(-) create mode 100644 source/blender/collada/CMakeLists.txt create mode 100644 source/blender/collada/DocumentExporter.cpp create mode 100644 source/blender/collada/DocumentExporter.h create mode 100644 source/blender/collada/DocumentImporter.cpp create mode 100644 source/blender/collada/DocumentImporter.h create mode 100644 source/blender/collada/SConscript create mode 100644 source/blender/collada/collada.cpp create mode 100644 source/blender/collada/collada.h create mode 100644 source/blender/collada/collada_internal.h diff --git a/CMake/macros.cmake b/CMake/macros.cmake index 150bd55bfd7..258cbdf57b6 100644 --- a/CMake/macros.cmake +++ b/CMake/macros.cmake @@ -76,6 +76,11 @@ MACRO(SETUP_LIBDIRS) IF(WITH_FFTW3) LINK_DIRECTORIES(${FFTW3_LIBPATH}) ENDIF(WITH_FFTW3) + IF(WITH_OPENCOLLADA) + LINK_DIRECTORIES(${OPENCOLLADA_LIBPATH}) + LINK_DIRECTORIES(${PCRE_LIBPATH}) + LINK_DIRECTORIES(${EXPAT_LIBPATH}) + ENDIF(WITH_OPENCOLLADA) IF(WIN32) LINK_DIRECTORIES(${PTHREADS_LIBPATH}) @@ -135,6 +140,11 @@ MACRO(SETUP_LIBLINKS IF(WITH_FFMPEG) TARGET_LINK_LIBRARIES(${target} ${FFMPEG_LIB}) ENDIF(WITH_FFMPEG) + IF(WITH_OPENCOLLADA) + TARGET_LINK_LIBRARIES(${target} ${OPENCOLLADA_LIB}) + TARGET_LINK_LIBRARIES(${target} ${PCRE_LIB}) + TARGET_LINK_LIBRARIES(${target} ${EXPAT_LIB}) + ENDIF(WITH_OPENCOLLADA) IF(WIN32) TARGET_LINK_LIBRARIES(${target} ${PTHREADS_LIB}) ENDIF(WIN32) diff --git a/CMakeLists.txt b/CMakeLists.txt index 963601dd94a..4126bc860da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,6 +80,7 @@ OPTION(WITH_LZMA "Enable best LZMA compression, used for pointcache" ON OPTION(WITH_CXX_GUARDEDALLOC "Enable GuardedAlloc for C++ memory allocation" OFF) OPTION(WITH_BUILDINFO "Include extra build details" ON) OPTION(WITH_INSTALL "Install accompanying scripts and language files needed to run blender" ON) +OPTION(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org/)" OFF) IF (APPLE) OPTION(WITH_COCOA "Use Cocoa framework instead of deprecated Carbon" ON) @@ -90,6 +91,19 @@ IF(NOT WITH_GAMEENGINE AND WITH_PLAYER) MESSAGE("WARNING: WITH_PLAYER needs WITH_GAMEENGINE") ENDIF(NOT WITH_GAMEENGINE AND WITH_PLAYER) +IF (WITH_OPENCOLLADA) +SET(OPENCOLLADA /usr/local/opencollada CACHE FILEPATH "OpenCollada Directory") +SET(OPENCOLLADA_LIBPATH ${OPENCOLLADA}) +SET(OPENCOLLADA_LIB OpenCollada) +SET(PCRE /usr CACHE FILEPATH "PCRE Directory") +SET(PCRE_LIBPATH ${PCRE}/lib) +SET(PCRE_LIB pcre) +SET(EXPAT /usr CACHE FILEPATH "Expat Directory") +SET(EXPAT_LIBPATH ${EXPAT}/lib) +SET(EXPAT_LIB expat) + +ENDIF (WITH_OPENCOLLADA) + # For alternate Python locations the commandline can be used to override detected/default cache settings, e.g: # On Unix: # cmake -D PYTHON_LIB=/usr/local/lib/python2.3/config/libpython2.3.so -D PYTHON_INC=/usr/local/include/python2.3 -D PYTHON_BINARY=/usr/local/bin/python2.3 -G "Unix Makefiles" ../blender diff --git a/config/linux2-config.py b/config/linux2-config.py index 026d0a200a5..dffc861fca8 100644 --- a/config/linux2-config.py +++ b/config/linux2-config.py @@ -151,6 +151,20 @@ BF_OPENGL_LIB = 'GL GLU X11 Xi' BF_OPENGL_LIBPATH = '/usr/X11R6/lib' BF_OPENGL_LIB_STATIC = '${BF_OPENGL_LIBPATH}/libGL.a ${BF_OPENGL_LIBPATH}/libGLU.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a ${BF_OPENGL_LIBPATH}/libX11.a ${BF_OPENGL_LIBPATH}/libXi.a ${BF_OPENGL_LIBPATH}/libXext.a ${BF_OPENGL_LIBPATH}/libXxf86vm.a' +WITH_BF_COLLADA = False +BF_COLLADA = '#source/blender/collada' +BF_COLLADA_INC = '${BF_COLLADA}' +BF_COLLADA_LIB = 'bf_collada' +BF_OPENCOLLADA = '' +BF_OPENCOLLADA_LIB = 'OpenCollada' +BF_OPENCOLLADA_LIBPATH = '/usr/lib' +BF_PCRE = '' +BF_PCRE_LIB = 'pcre' +BF_PCRE_LIBPATH = '/usr/lib' +BF_EXPAT = '/usr' +BF_EXPAT_LIB = 'expat' +BF_EXPAT_LIBPATH = '/usr/lib' + ## CC = 'gcc' CXX = 'g++' diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py index 291aa023ec8..2c5781df75a 100644 --- a/config/win32-vc-config.py +++ b/config/win32-vc-config.py @@ -138,6 +138,16 @@ BF_FFTW3_LIBPATH = '${BF_FFTW3}/lib' WITH_BF_REDCODE = False BF_REDCODE_INC = '#extern' +WITH_BF_COLLADA = False +BF_COLLADA = '#source/blender/collada' +BF_COLLADA_INC = '${BF_COLLADA}' +BF_COLLADA_LIB = 'bf_collada' + +BF_OPENCOLLADA = LIBDIR + '/opencollada' +BF_OPENCOLLADA_INC = '${BF_OPENCOLLADA}/include' +BF_OPENCOLLADA_LIB = 'opencollada' +BF_OPENCOLLADA_LIBPATH = '${BF_OPENCOLLADA}/lib' + WITH_BF_STATICOPENGL = False BF_OPENGL_INC = '${BF_OPENGL}/include' BF_OPENGL_LIBINC = '${BF_OPENGL}/lib' diff --git a/config/win64-vc-config.py b/config/win64-vc-config.py index 5f088489b34..429f8b0b6d6 100644 --- a/config/win64-vc-config.py +++ b/config/win64-vc-config.py @@ -151,6 +151,16 @@ BF_FFTW3_LIBPATH = '${BF_FFTW3}/lib' WITH_BF_REDCODE = False BF_REDCODE_INC = '#extern' +WITH_BF_COLLADA = False +BF_COLLADA = '#source/blender/collada' +BF_COLLADA_INC = '${BF_COLLADA}' +BF_COLLADA_LIB = 'bf_collada' + +BF_OPENCOLLADA = LIBDIR + '/opencollada' +BF_OPENCOLLADA_INC = '${BF_OPENCOLLADA}/include' +BF_OPENCOLLADA_LIB = 'opencollada' +BF_OPENCOLLADA_LIBPATH = '${BF_OPENCOLLADA}/lib' + WITH_BF_STATICOPENGL = False BF_OPENGL_INC = '${BF_OPENGL}/include' BF_OPENGL_LIBINC = '${BF_OPENGL}/lib' diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 083b6f07fbc..d4fcbbcdd4d 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -99,13 +99,13 @@ class INFO_MT_file_import(dynamic_menu.DynMenu): __label__ = "Import" def draw(self, context): - pass # dynamic menu + self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") class INFO_MT_file_export(dynamic_menu.DynMenu): __label__ = "Export" def draw(self, context): - pass # dynamic menu + self.layout.itemO("WM_OT_collada_export", text="COLLADA (.dae)...") class INFO_MT_file_external_data(bpy.types.Menu): __label__ = "External Data" diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt index 99297714fd2..045ee15246f 100644 --- a/source/blender/CMakeLists.txt +++ b/source/blender/CMakeLists.txt @@ -58,3 +58,7 @@ IF(WITH_PYTHON) ADD_SUBDIRECTORY(python) ENDIF(WITH_PYTHON) +IF(WITH_OPENCOLLADA) + ADD_SUBDIRECTORY(collada) +ENDIF(WITH_OPENCOLLADA) + diff --git a/source/blender/SConscript b/source/blender/SConscript index 3625678f610..9910db1902f 100644 --- a/source/blender/SConscript +++ b/source/blender/SConscript @@ -33,3 +33,6 @@ if env['WITH_BF_OPENEXR']: if env['WITH_BF_QUICKTIME']: SConscript (['quicktime/SConscript']) + +if env['WITH_BF_COLLADA']: + SConscript (['collada/SConscript']) diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt new file mode 100644 index 00000000000..5a8c08a254d --- /dev/null +++ b/source/blender/collada/CMakeLists.txt @@ -0,0 +1,44 @@ +# $Id: CMakeLists.txt 21789 2009-07-22 05:35:12Z kazanbas $ +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# The Original Code is Copyright (C) 2006, Blender Foundation +# All rights reserved. +# +# The Original Code is: all of this file. +# +# Contributor(s): Jacques Beaurain. +# +# ***** END GPL LICENSE BLOCK ***** + +FILE(GLOB SRC *.cpp) + +SET(INC + . + ../blenlib + ../blenkernel + ../windowmanager + ../makesdna + ../makesrna + ../editors/include + ../../../intern/guardedalloc + ${OPENCOLLADA}/COLLADAStreamWriter/include + ${OPENCOLLADA}/COLLADABaseUtils/include + ${OPENCOLLADA}/COLLADAFramework/include + ${OPENCOLLADA}/COLLADASaxFrameworkLoader/include +) + +BLENDERLIB(bf_collada "${SRC}" "${INC}") diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp new file mode 100644 index 00000000000..09db4ba062f --- /dev/null +++ b/source/blender/collada/DocumentExporter.cpp @@ -0,0 +1,2137 @@ +#include +#include +#include + +#include "DNA_scene_types.h" +#include "DNA_object_types.h" +#include "DNA_meshdata_types.h" +#include "DNA_mesh_types.h" +#include "DNA_image_types.h" +#include "DNA_material_types.h" +#include "DNA_texture_types.h" +#include "DNA_camera_types.h" +#include "DNA_lamp_types.h" +#include "DNA_anim_types.h" +#include "DNA_action_types.h" +#include "DNA_curve_types.h" +#include "DNA_armature_types.h" +#include "DNA_modifier_types.h" + +extern "C" +{ +#include "BKE_DerivedMesh.h" +#include "BKE_fcurve.h" +#include "BLI_util.h" +#include "BLI_fileops.h" +#include "ED_keyframing.h" +} + +#include "MEM_guardedalloc.h" + +#include "BKE_scene.h" +#include "BKE_global.h" +#include "BKE_main.h" +#include "BKE_material.h" +#include "BKE_action.h" // pose functions +#include "BKE_armature.h" +#include "BKE_image.h" +#include "BKE_utildefines.h" + +#include "BLI_arithb.h" +#include "BLI_string.h" +#include "BLI_listbase.h" + +#include "COLLADASWAsset.h" +#include "COLLADASWLibraryVisualScenes.h" +#include "COLLADASWNode.h" +#include "COLLADASWLibraryGeometries.h" +#include "COLLADASWSource.h" +#include "COLLADASWInstanceGeometry.h" +#include "COLLADASWInputList.h" +#include "COLLADASWPrimitves.h" +#include "COLLADASWVertices.h" +#include "COLLADASWLibraryAnimations.h" +#include "COLLADASWLibraryImages.h" +#include "COLLADASWLibraryEffects.h" +#include "COLLADASWImage.h" +#include "COLLADASWEffectProfile.h" +#include "COLLADASWColorOrTexture.h" +#include "COLLADASWParamTemplate.h" +#include "COLLADASWParamBase.h" +#include "COLLADASWSurfaceInitOption.h" +#include "COLLADASWSampler.h" +#include "COLLADASWScene.h" +//#include "COLLADASWSurface.h" +#include "COLLADASWTechnique.h" +#include "COLLADASWTexture.h" +#include "COLLADASWLibraryMaterials.h" +#include "COLLADASWBindMaterial.h" +#include "COLLADASWLibraryCameras.h" +#include "COLLADASWLibraryLights.h" +#include "COLLADASWInstanceCamera.h" +#include "COLLADASWInstanceLight.h" +#include "COLLADASWCameraOptic.h" +#include "COLLADASWConstants.h" +#include "COLLADASWLibraryControllers.h" +#include "COLLADASWInstanceController.h" +#include "COLLADASWBaseInputElement.h" + +#include "collada_internal.h" +#include "DocumentExporter.h" + +#include +#include // std::find + +// arithb.c now has QuatToAxisAngle too +#if 0 +// This function assumes that quat is normalized. +// The following document was used as reference: +// http://www.euclideanspace.com/maths/geometry/rotations/conversions/quaternionToAngle/index.htm +void QuatToAxisAngle(float *q, float *axis, float *angle) +{ + // quat to axis angle + *angle = 2 * acos(q[0]); + float divisor = sqrt(1 - q[0] * q[0]); + + // test to avoid divide by zero, divisor is always positive + if (divisor < 0.001f ) { + axis[0] = 1.0f; + axis[1] = 0.0f; + axis[2] = 0.0f; + } + else { + axis[0] = q[1] / divisor; + axis[1] = q[2] / divisor; + axis[2] = q[3] / divisor; + } +} +#endif + +char *CustomData_get_layer_name(const struct CustomData *data, int type, int n) +{ + int layer_index = CustomData_get_layer_index(data, type); + if(layer_index < 0) return NULL; + + return data->layers[layer_index+n].name; +} + +char *CustomData_get_active_layer_name(const CustomData *data, int type) +{ + /* get the layer index of the active layer of type */ + int layer_index = CustomData_get_active_layer_index(data, type); + if(layer_index < 0) return NULL; + + return data->layers[layer_index].name; +} + +static std::string id_name(void *id) +{ + return ((ID*)id)->name + 2; +} + +static std::string get_geometry_id(Object *ob) +{ + return id_name(ob) + "-mesh"; +} + +static std::string get_light_id(Object *ob) +{ + return id_name(ob) + "-light"; +} + +static std::string get_camera_id(Object *ob) +{ + return id_name(ob) + "-camera"; +} + +static void replace_chars(char *str, char chars[], char with) +{ + char *ch, *p; + + for (ch = chars; *ch; ch++) { + while ((p = strchr(str, *ch))) { + *p = with; + } + } +} + +/* + Utilities to avoid code duplication. + Definition can take some time to understand, but they should be useful. +*/ + +// f should have +// void operator()(Object* ob) +template +void forEachMeshObjectInScene(Scene *sce, Functor &f) +{ + + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + if (ob->type == OB_MESH && ob->data) { + f(ob); + } + base= base->next; + + } +} + +template +void forEachObjectInScene(Scene *sce, Functor &f) +{ + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + f(ob); + + base= base->next; + } +} + +template +void forEachCameraObjectInScene(Scene *sce, Functor &f) +{ + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + if (ob->type == OB_CAMERA && ob->data) { + f(ob, sce); + } + base= base->next; + } +} + +template +void forEachLampObjectInScene(Scene *sce, Functor &f) +{ + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + if (ob->type == OB_LAMP && ob->data) { + f(ob); + } + base= base->next; + } +} + +// used in forEachMaterialInScene +template +class ForEachMaterialFunctor +{ + std::vector mMat; // contains list of material names, to avoid duplicate calling of f + MaterialFunctor *f; +public: + ForEachMaterialFunctor(MaterialFunctor *f) : f(f) { } + void operator ()(Object *ob) + { + int a; + for(a = 0; a < ob->totcol; a++) { + + Material *ma = give_current_material(ob, a+1); + + if (!ma) continue; + + if (find(mMat.begin(), mMat.end(), id_name(ma)) == mMat.end()) { + (*this->f)(ma, ob); + + mMat.push_back(id_name(ma)); + } + } + } +}; + +// calls f for each unique material linked to each object in sce +// f should have +// void operator()(Material* ma) +template +void forEachMaterialInScene(Scene *sce, Functor &f) +{ + ForEachMaterialFunctor matfunc(&f); + forEachMeshObjectInScene(sce, matfunc); +} + +// OB_MESH is assumed +std::string getActiveUVLayerName(Object *ob) +{ + Mesh *me = (Mesh*)ob->data; + + int num_layers = CustomData_number_of_layers(&me->fdata, CD_MTFACE); + if (num_layers) + return std::string(CustomData_get_active_layer_name(&me->fdata, CD_MTFACE)); + + return ""; +} + +// TODO: optimize UV sets by making indexed list with duplicates removed +class GeometryExporter : COLLADASW::LibraryGeometries +{ + Scene *mScene; +public: + GeometryExporter(COLLADASW::StreamWriter *sw) : COLLADASW::LibraryGeometries(sw) {} + + void exportGeom(Scene *sce) + { + openLibrary(); + + mScene = sce; + forEachMeshObjectInScene(sce, *this); + + closeLibrary(); + } + + void operator()(Object *ob) + { + // XXX don't use DerivedMesh, Mesh instead? + +#if 0 + DerivedMesh *dm = mesh_get_derived_final(mScene, ob, CD_MASK_BAREMESH); +#endif + Mesh *me = (Mesh*)ob->data; + std::string geom_id = get_geometry_id(ob); + + // openMesh(geoId, geoName, meshId) + openMesh(geom_id); + + // writes for vertex coords + createVertsSource(geom_id, me); + + // writes for normal coords + createNormalsSource(geom_id, me); + + int has_uvs = CustomData_has_layer(&me->fdata, CD_MTFACE); + + // writes for uv coords if mesh has uv coords + if (has_uvs) { + createTexcoordsSource(geom_id, (Mesh*)ob->data); + } + // + COLLADASW::Vertices verts(mSW); + verts.setId(getIdBySemantics(geom_id, COLLADASW::VERTEX)); + COLLADASW::InputList &input_list = verts.getInputList(); + COLLADASW::Input input(COLLADASW::POSITION, getUrlBySemantics(geom_id, COLLADASW::POSITION)); + input_list.push_back(input); + verts.add(); + + // XXX slow + if (ob->totcol) { + for(int a = 0; a < ob->totcol; a++) { + // account for NULL materials, this should not normally happen? + Material *ma = give_current_material(ob, a + 1); + createPolylist(ma != NULL, a, has_uvs, ob, geom_id); + } + } + else { + createPolylist(false, 0, has_uvs, ob, geom_id); + } + + closeMesh(); + closeGeometry(); + +#if 0 + dm->release(dm); +#endif + } + + // powerful because it handles both cases when there is material and when there's not + void createPolylist(bool has_material, + int material_index, + bool has_uvs, + Object *ob, + std::string& geom_id) + { +#if 0 + MFace *mfaces = dm->getFaceArray(dm); + int totfaces = dm->getNumFaces(dm); +#endif + Mesh *me = (Mesh*)ob->data; + MFace *mfaces = me->mface; + int totfaces = me->totface; + + // + int i; + int faces_in_polylist = 0; + std::vector vcount_list; + + // count faces with this material + for (i = 0; i < totfaces; i++) { + MFace *f = &mfaces[i]; + + if ((has_material && f->mat_nr == material_index) || !has_material) { + faces_in_polylist++; + if (f->v4 == 0) { + vcount_list.push_back(3); + } + else { + vcount_list.push_back(4); + } + } + } + + // no faces using this material + if (faces_in_polylist == 0) { + return; + } + + Material *ma = has_material ? give_current_material(ob, material_index + 1) : NULL; + COLLADASW::Polylist polylist(mSW); + + // sets count attribute in + polylist.setCount(faces_in_polylist); + + // sets material name + if (has_material) + polylist.setMaterial(id_name(ma)); + + COLLADASW::InputList &til = polylist.getInputList(); + + // creates in for vertices + COLLADASW::Input input1(COLLADASW::VERTEX, getUrlBySemantics + (geom_id, COLLADASW::VERTEX), 0); + + // creates in for normals + COLLADASW::Input input2(COLLADASW::NORMAL, getUrlBySemantics + (geom_id, COLLADASW::NORMAL), 0); + + til.push_back(input1); + til.push_back(input2); + + // if mesh has uv coords writes for TEXCOORD + int num_layers = CustomData_number_of_layers(&me->fdata, CD_MTFACE); + + for (i = 0; i < num_layers; i++) { + char *name = CustomData_get_layer_name(&me->fdata, CD_MTFACE, i); + COLLADASW::Input input3(COLLADASW::TEXCOORD, + makeUrl(makeTexcoordSourceId(geom_id, i)), + 1, // offset always 1, this is only until we have optimized UV sets + i // set number equals UV layer index + ); + til.push_back(input3); + } + + // sets + polylist.setVCountList(vcount_list); + + // performs the actual writing + polylist.prepareToAppendValues(); + + //

+ int texindex = 0; + for (i = 0; i < totfaces; i++) { + MFace *f = &mfaces[i]; + + if ((has_material && f->mat_nr == material_index) || !has_material) { + + unsigned int *v = &f->v1; + for (int j = 0; j < (f->v4 == 0 ? 3 : 4); j++) { + polylist.appendValues(v[j]); + + if (has_uvs) + polylist.appendValues(texindex + j); + } + } + + texindex += 3; + if (f->v4 != 0) + texindex++; + } + + polylist.finish(); + } + + // creates for positions + void createVertsSource(std::string geom_id, Mesh *me) + { +#if 0 + int totverts = dm->getNumVerts(dm); + MVert *verts = dm->getVertArray(dm); +#endif + int totverts = me->totvert; + MVert *verts = me->mvert; + + COLLADASW::FloatSourceF source(mSW); + source.setId(getIdBySemantics(geom_id, COLLADASW::POSITION)); + source.setArrayId(getIdBySemantics(geom_id, COLLADASW::POSITION) + + ARRAY_ID_SUFFIX); + source.setAccessorCount(totverts); + source.setAccessorStride(3); + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("X"); + param.push_back("Y"); + param.push_back("Z"); + /*main function, it creates , */ + source.prepareToAppendValues(); + //appends data to + int i = 0; + for (i = 0; i < totverts; i++) { + source.appendValues(verts[i].co[0], verts[i].co[1], verts[i].co[2]); + } + + source.finish(); + + } + + std::string makeTexcoordSourceId(std::string& geom_id, int layer_index) + { + char suffix[20]; + sprintf(suffix, "-%d", layer_index); + return getIdBySemantics(geom_id, COLLADASW::TEXCOORD) + suffix; + } + + //creates for texcoords + void createTexcoordsSource(std::string geom_id, Mesh *me) + { +#if 0 + int totfaces = dm->getNumFaces(dm); + MFace *mfaces = dm->getFaceArray(dm); +#endif + int totfaces = me->totface; + MFace *mfaces = me->mface; + + int totuv = 0; + int i; + + // count totuv + for (i = 0; i < totfaces; i++) { + MFace *f = &mfaces[i]; + if (f->v4 == 0) { + totuv+=3; + } + else { + totuv+=4; + } + } + + int num_layers = CustomData_number_of_layers(&me->fdata, CD_MTFACE); + + // write for each layer + // each will get id like meshName + "map-channel-1" + for (int a = 0; a < num_layers; a++) { + MTFace *tface = (MTFace*)CustomData_get_layer_n(&me->fdata, CD_MTFACE, a); + char *name = CustomData_get_layer_name(&me->fdata, CD_MTFACE, a); + + COLLADASW::FloatSourceF source(mSW); + std::string layer_id = makeTexcoordSourceId(geom_id, a); + source.setId(layer_id); + source.setArrayId(layer_id + ARRAY_ID_SUFFIX); + + source.setAccessorCount(totuv); + source.setAccessorStride(2); + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("X"); + param.push_back("Y"); + + source.prepareToAppendValues(); + + for (i = 0; i < totfaces; i++) { + MFace *f = &mfaces[i]; + + for (int j = 0; j < (f->v4 == 0 ? 3 : 4); j++) { + source.appendValues(tface[i].uv[j][0], + tface[i].uv[j][1]); + } + } + + source.finish(); + } + } + + + //creates for normals + void createNormalsSource(std::string geom_id, Mesh *me) + { +#if 0 + int totverts = dm->getNumVerts(dm); + MVert *verts = dm->getVertArray(dm); +#endif + + int totverts = me->totvert; + MVert *verts = me->mvert; + + COLLADASW::FloatSourceF source(mSW); + source.setId(getIdBySemantics(geom_id, COLLADASW::NORMAL)); + source.setArrayId(getIdBySemantics(geom_id, COLLADASW::NORMAL) + + ARRAY_ID_SUFFIX); + source.setAccessorCount(totverts); + source.setAccessorStride(3); + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("X"); + param.push_back("Y"); + param.push_back("Z"); + + source.prepareToAppendValues(); + + int i = 0; + + for( i = 0; i < totverts; ++i ){ + + source.appendValues(float(verts[i].no[0]/32767.0), + float(verts[i].no[1]/32767.0), + float(verts[i].no[2]/32767.0)); + + } + source.finish(); + } + + std::string getIdBySemantics(std::string geom_id, COLLADASW::Semantics type, std::string other_suffix = "") { + return geom_id + getSuffixBySemantic(type) + other_suffix; + } + + + COLLADASW::URI getUrlBySemantics(std::string geom_id, COLLADASW::Semantics type, std::string other_suffix = "") { + + std::string id(getIdBySemantics(geom_id, type, other_suffix)); + return COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, id); + + } + + COLLADASW::URI makeUrl(std::string id) + { + return COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, id); + } + + + /* int getTriCount(MFace *faces, int totface) { + int i; + int tris = 0; + for (i = 0; i < totface; i++) { + // if quad + if (faces[i].v4 != 0) + tris += 2; + else + tris++; + } + + return tris; + }*/ +}; + +class TransformWriter : protected TransformBase +{ +protected: + void add_node_transform(COLLADASW::Node& node, float mat[][4], float parent_mat[][4]) + { + float loc[3], rot[3], size[3]; + float local[4][4]; + + if (parent_mat) { + float invpar[4][4]; + Mat4Invert(invpar, parent_mat); + Mat4MulMat4(local, mat, invpar); + } + else { + Mat4CpyMat4(local, mat); + } + + TransformBase::decompose(local, loc, rot, size); + + /* + // this code used to create a single representing object rotation + float quat[4]; + float axis[3]; + float angle; + double angle_deg; + EulToQuat(rot, quat); + NormalQuat(quat); + QuatToAxisAngle(quat, axis, &angle); + angle_deg = angle * 180.0f / M_PI; + node.addRotate(axis[0], axis[1], axis[2], angle_deg); + */ + node.addTranslate("location", loc[0], loc[1], loc[2]); + + node.addRotateZ("rotationZ", COLLADABU::Math::Utils::radToDegF(rot[2])); + node.addRotateY("rotationY", COLLADABU::Math::Utils::radToDegF(rot[1])); + node.addRotateX("rotationX", COLLADABU::Math::Utils::radToDegF(rot[0])); + + node.addScale("scale", size[0], size[1], size[2]); + } +}; + +class InstanceWriter +{ +protected: + void add_material_bindings(COLLADASW::BindMaterial& bind_material, Object *ob) + { + for(int a = 0; a < ob->totcol; a++) { + Material *ma = give_current_material(ob, a+1); + + COLLADASW::InstanceMaterialList& iml = bind_material.getInstanceMaterialList(); + + if (ma) { + std::string matid(id_name(ma)); + COLLADASW::InstanceMaterial im(matid, COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, matid)); + + // create for each uv layer + Mesh *me = (Mesh*)ob->data; + int totlayer = CustomData_number_of_layers(&me->fdata, CD_MTFACE); + + for (int b = 0; b < totlayer; b++) { + char *name = CustomData_get_layer_name(&me->fdata, CD_MTFACE, b); + im.push_back(COLLADASW::BindVertexInput(name, "TEXCOORD", b)); + } + + iml.push_back(im); + } + } + } +}; + +// XXX exporter writes wrong data for shared armatures. A separate +// controller should be written for each armature-mesh binding how do +// we make controller ids then? +class ArmatureExporter: public COLLADASW::LibraryControllers, protected TransformWriter, protected InstanceWriter +{ +private: + Scene *scene; + +public: + ArmatureExporter(COLLADASW::StreamWriter *sw) : COLLADASW::LibraryControllers(sw) {} + + // write bone nodes + void add_armature_bones(Object *ob_arm, Scene *sce) + { + // write bone nodes + bArmature *arm = (bArmature*)ob_arm->data; + for (Bone *bone = (Bone*)arm->bonebase.first; bone; bone = bone->next) { + // start from root bones + if (!bone->parent) + add_bone_node(bone, ob_arm); + } + } + + bool is_skinned_mesh(Object *ob) + { + return get_assigned_armature(ob) != NULL; + } + + void add_instance_controller(Object *ob) + { + Object *ob_arm = get_assigned_armature(ob); + bArmature *arm = (bArmature*)ob_arm->data; + + const std::string& controller_id = get_controller_id(ob_arm); + + COLLADASW::InstanceController ins(mSW); + ins.setUrl(COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, controller_id)); + + // write root bone URLs + Bone *bone; + for (bone = (Bone*)arm->bonebase.first; bone; bone = bone->next) { + if (!bone->parent) + ins.addSkeleton(COLLADABU::URI(COLLADABU::Utils::EMPTY_STRING, get_joint_id(bone, ob_arm))); + } + + InstanceWriter::add_material_bindings(ins.getBindMaterial(), ob); + + ins.add(); + } + + void export_controllers(Scene *sce) + { + scene = sce; + + openLibrary(); + + forEachMeshObjectInScene(sce, *this); + + closeLibrary(); + } + + void operator()(Object *ob) + { + Object *ob_arm = get_assigned_armature(ob); + + if (ob_arm /*&& !already_written(ob_arm)*/) + export_controller(ob, ob_arm); + } + +private: + + UnitConverter converter; + +#if 0 + std::vector written_armatures; + + bool already_written(Object *ob_arm) + { + return std::find(written_armatures.begin(), written_armatures.end(), ob_arm) != written_armatures.end(); + } + + void wrote(Object *ob_arm) + { + written_armatures.push_back(ob_arm); + } + + void find_objects_using_armature(Object *ob_arm, std::vector& objects, Scene *sce) + { + objects.clear(); + + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + if (ob->type == OB_MESH && get_assigned_armature(ob) == ob_arm) { + objects.push_back(ob); + } + + base= base->next; + } + } +#endif + + Object *get_assigned_armature(Object *ob) + { + Object *ob_arm = NULL; + + if (ob->parent && ob->partype == PARSKEL && ob->parent->type == OB_ARMATURE) { + ob_arm = ob->parent; + } + else { + ModifierData *mod = (ModifierData*)ob->modifiers.first; + while (mod) { + if (mod->type == eModifierType_Armature) { + ob_arm = ((ArmatureModifierData*)mod)->object; + } + + mod = mod->next; + } + } + + return ob_arm; + } + + std::string get_joint_id(Bone *bone, Object *ob_arm) + { + return id_name(ob_arm) + "_" + bone->name; + } + + std::string get_joint_sid(Bone *bone) + { + char name[100]; + BLI_strncpy(name, bone->name, sizeof(name)); + + // these chars have special meaning in SID + replace_chars(name, ".()", '_'); + + return name; + } + + // parent_mat is armature-space + void add_bone_node(Bone *bone, Object *ob_arm) + { + std::string node_id = get_joint_id(bone, ob_arm); + std::string node_name = std::string(bone->name); + std::string node_sid = get_joint_sid(bone); + + COLLADASW::Node node(mSW); + + node.setType(COLLADASW::Node::JOINT); + node.setNodeId(node_id); + node.setNodeName(node_name); + node.setNodeSid(node_sid); + + node.start(); + + add_bone_transform(ob_arm, bone, node); + + for (Bone *child = (Bone*)bone->childbase.first; child; child = child->next) { + add_bone_node(child, ob_arm); + } + + node.end(); + } + + void add_bone_transform(Object *ob_arm, Bone *bone, COLLADASW::Node& node) + { + bPose *pose = ob_arm->pose; + + bPoseChannel *pchan = get_pose_channel(ob_arm->pose, bone->name); + + float mat[4][4]; + + if (bone->parent) { + // get bone-space matrix from armature-space + bPoseChannel *parchan = get_pose_channel(ob_arm->pose, bone->parent->name); + + float invpar[4][4]; + Mat4Invert(invpar, parchan->pose_mat); + Mat4MulMat4(mat, pchan->pose_mat, invpar); + } + else { + // get world-space from armature-space + Mat4MulMat4(mat, pchan->pose_mat, ob_arm->obmat); + } + + TransformWriter::add_node_transform(node, mat, NULL); + } + + std::string get_controller_id(Object *ob_arm) + { + return id_name(ob_arm) + SKIN_CONTROLLER_ID_SUFFIX; + } + + // ob should be of type OB_MESH + // both args are required + void export_controller(Object* ob, Object *ob_arm) + { + // joint names + // joint inverse bind matrices + // vertex weights + + // input: + // joint names: ob -> vertex group names + // vertex group weights: me->dvert -> groups -> index, weight + + /* + me->dvert: + + typedef struct MDeformVert { + struct MDeformWeight *dw; + int totweight; + int flag; // flag only in use for weightpaint now + } MDeformVert; + + typedef struct MDeformWeight { + int def_nr; + float weight; + } MDeformWeight; + */ + + Mesh *me = (Mesh*)ob->data; + if (!me->dvert) return; + + std::string controller_name = id_name(ob_arm); + std::string controller_id = get_controller_id(ob_arm); + + openSkin(controller_id, controller_name, + COLLADABU::URI(COLLADABU::Utils::EMPTY_STRING, get_geometry_id(ob))); + + add_bind_shape_mat(ob); + + std::string joints_source_id = add_joints_source(ob_arm, &ob->defbase, controller_id); + std::string inv_bind_mat_source_id = add_inv_bind_mats_source(ob_arm, &ob->defbase, controller_id); + std::string weights_source_id = add_weights_source(me, controller_id); + + add_joints_element(&ob->defbase, joints_source_id, inv_bind_mat_source_id); + add_vertex_weights_element(weights_source_id, joints_source_id, me, ob_arm, &ob->defbase); + + closeSkin(); + closeController(); + } + + void add_joints_element(ListBase *defbase, + const std::string& joints_source_id, const std::string& inv_bind_mat_source_id) + { + COLLADASW::JointsElement joints(mSW); + COLLADASW::InputList &input = joints.getInputList(); + + int offset = 0; + input.push_back(COLLADASW::Input(COLLADASW::JOINT, // constant declared in COLLADASWInputList.h + COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, joints_source_id))); + input.push_back(COLLADASW::Input(COLLADASW::BINDMATRIX, + COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, inv_bind_mat_source_id))); + joints.add(); + } + + void add_bind_shape_mat(Object *ob) + { + double bind_mat[4][4]; + + converter.mat4_to_dae_double(bind_mat, ob->obmat); + + addBindShapeTransform(bind_mat); + } + + std::string add_joints_source(Object *ob_arm, ListBase *defbase, const std::string& controller_id) + { + std::string source_id = controller_id + JOINTS_SOURCE_ID_SUFFIX; + + int totjoint = 0; + bDeformGroup *def; + for (def = (bDeformGroup*)defbase->first; def; def = def->next) { + if (is_bone_defgroup(ob_arm, def)) + totjoint++; + } + + COLLADASW::NameSource source(mSW); + source.setId(source_id); + source.setArrayId(source_id + ARRAY_ID_SUFFIX); + source.setAccessorCount(totjoint); + source.setAccessorStride(1); + + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("JOINT"); + + source.prepareToAppendValues(); + + for (def = (bDeformGroup*)defbase->first; def; def = def->next) { + Bone *bone = get_bone_from_defgroup(ob_arm, def); + if (bone) + source.appendValues(get_joint_sid(bone)); + } + + source.finish(); + + return source_id; + } + + std::string add_inv_bind_mats_source(Object *ob_arm, ListBase *defbase, const std::string& controller_id) + { + std::string source_id = controller_id + BIND_POSES_SOURCE_ID_SUFFIX; + + COLLADASW::FloatSourceF source(mSW); + source.setId(source_id); + source.setArrayId(source_id + ARRAY_ID_SUFFIX); + source.setAccessorCount(BLI_countlist(defbase)); + source.setAccessorStride(16); + + source.setParameterTypeName(&COLLADASW::CSWC::CSW_VALUE_TYPE_FLOAT4x4); + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("TRANSFORM"); + + source.prepareToAppendValues(); + + bPose *pose = ob_arm->pose; + bArmature *arm = (bArmature*)ob_arm->data; + + int flag = arm->flag; + + // put armature in rest position + if (!(arm->flag & ARM_RESTPOS)) { + arm->flag |= ARM_RESTPOS; + where_is_pose(scene, ob_arm); + } + + for (bDeformGroup *def = (bDeformGroup*)defbase->first; def; def = def->next) { + if (is_bone_defgroup(ob_arm, def)) { + + bPoseChannel *pchan = get_pose_channel(pose, def->name); + + float mat[4][4]; + float world[4][4]; + float inv_bind_mat[4][4]; + + // make world-space matrix, pose_mat is armature-space + Mat4MulMat4(world, pchan->pose_mat, ob_arm->obmat); + + Mat4Invert(mat, world); + converter.mat4_to_dae(inv_bind_mat, mat); + + source.appendValues(inv_bind_mat); + } + } + + // back from rest positon + if (!(flag & ARM_RESTPOS)) { + arm->flag = flag; + where_is_pose(scene, ob_arm); + } + + source.finish(); + + return source_id; + } + + Bone *get_bone_from_defgroup(Object *ob_arm, bDeformGroup* def) + { + bPoseChannel *pchan = get_pose_channel(ob_arm->pose, def->name); + return pchan ? pchan->bone : NULL; + } + + bool is_bone_defgroup(Object *ob_arm, bDeformGroup* def) + { + return get_bone_from_defgroup(ob_arm, def) != NULL; + } + + std::string add_weights_source(Mesh *me, const std::string& controller_id) + { + std::string source_id = controller_id + WEIGHTS_SOURCE_ID_SUFFIX; + + int i; + int totweight = 0; + + for (i = 0; i < me->totvert; i++) { + totweight += me->dvert[i].totweight; + } + + COLLADASW::FloatSourceF source(mSW); + source.setId(source_id); + source.setArrayId(source_id + ARRAY_ID_SUFFIX); + source.setAccessorCount(totweight); + source.setAccessorStride(1); + + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("WEIGHT"); + + source.prepareToAppendValues(); + + // NOTE: COLLADA spec says weights should be normalized + + for (i = 0; i < me->totvert; i++) { + MDeformVert *vert = &me->dvert[i]; + for (int j = 0; j < vert->totweight; j++) { + source.appendValues(vert->dw[j].weight); + } + } + + source.finish(); + + return source_id; + } + + void add_vertex_weights_element(const std::string& weights_source_id, const std::string& joints_source_id, Mesh *me, + Object *ob_arm, ListBase *defbase) + { + COLLADASW::VertexWeightsElement weights(mSW); + COLLADASW::InputList &input = weights.getInputList(); + + int offset = 0; + input.push_back(COLLADASW::Input(COLLADASW::JOINT, // constant declared in COLLADASWInputList.h + COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, joints_source_id), offset++)); + input.push_back(COLLADASW::Input(COLLADASW::WEIGHT, + COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, weights_source_id), offset++)); + + weights.setCount(me->totvert); + + // write number of deformers per vertex + COLLADASW::PrimitivesBase::VCountList vcount; + int i; + for (i = 0; i < me->totvert; i++) { + vcount.push_back(me->dvert[i].totweight); + } + + weights.prepareToAppendVCountValues(); + weights.appendVertexCount(vcount); + + // def group index -> joint index + std::map joint_index_by_def_index; + bDeformGroup *def; + int j; + for (def = (bDeformGroup*)defbase->first, i = 0, j = 0; def; def = def->next, i++) { + if (is_bone_defgroup(ob_arm, def)) + joint_index_by_def_index[i] = j++; + else + joint_index_by_def_index[i] = -1; + } + + weights.CloseVCountAndOpenVElement(); + + // write deformer index - weight index pairs + int weight_index = 0; + for (i = 0; i < me->totvert; i++) { + MDeformVert *dvert = &me->dvert[i]; + for (int j = 0; j < dvert->totweight; j++) { + weights.appendValues(joint_index_by_def_index[dvert->dw[j].def_nr]); + weights.appendValues(weight_index++); + } + } + + weights.finish(); + } +}; + +class SceneExporter: COLLADASW::LibraryVisualScenes, protected TransformWriter, protected InstanceWriter +{ + ArmatureExporter *arm_exporter; +public: + SceneExporter(COLLADASW::StreamWriter *sw, ArmatureExporter *arm) : COLLADASW::LibraryVisualScenes(sw), + arm_exporter(arm) {} + + void exportScene(Scene *sce) { + // + openVisualScene(id_name(sce)); + + // write s + //forEachMeshObjectInScene(sce, *this); + //forEachCameraObjectInScene(sce, *this); + //forEachLampObjectInScene(sce, *this); + exportHierarchy(sce); + + // + closeVisualScene(); + + closeLibrary(); + } + + void exportHierarchy(Scene *sce) + { + Base *base= (Base*) sce->base.first; + while(base) { + Object *ob = base->object; + + if (!ob->parent) { + switch(ob->type) { + case OB_MESH: + case OB_CAMERA: + case OB_LAMP: + case OB_EMPTY: + case OB_ARMATURE: + // write nodes.... + writeNodes(ob, sce); + break; + } + } + + base= base->next; + } + } + + + // called for each object + //void operator()(Object *ob) { + void writeNodes(Object *ob, Scene *sce) + { + COLLADASW::Node node(mSW); + node.setNodeId(id_name(ob)); + node.setType(COLLADASW::Node::NODE); + + node.start(); + + bool is_skinned_mesh = arm_exporter->is_skinned_mesh(ob); + + float mat[4][4]; + + if (ob->type == OB_MESH && is_skinned_mesh) + // for skinned mesh we write obmat in + Mat4One(mat); + else + Mat4CpyMat4(mat, ob->obmat); + + TransformWriter::add_node_transform(node, mat, ob->parent ? ob->parent->obmat : NULL); + + // + if (ob->type == OB_MESH) { + if (is_skinned_mesh) { + arm_exporter->add_instance_controller(ob); + } + else { + COLLADASW::InstanceGeometry instGeom(mSW); + instGeom.setUrl(COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, get_geometry_id(ob))); + + InstanceWriter::add_material_bindings(instGeom.getBindMaterial(), ob); + + instGeom.add(); + } + } + + // + else if (ob->type == OB_ARMATURE) { + arm_exporter->add_armature_bones(ob, sce); + + // XXX this looks unstable... + node.end(); + } + + // + else if (ob->type == OB_CAMERA) { + COLLADASW::InstanceCamera instCam(mSW, COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, get_camera_id(ob))); + instCam.add(); + } + + // + else if (ob->type == OB_LAMP) { + COLLADASW::InstanceLight instLa(mSW, COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, get_light_id(ob))); + instLa.add(); + } + + // empty object + else if (ob->type == OB_EMPTY) { + } + + // write nodes for child objects + Base *b = (Base*) sce->base.first; + while(b) { + // cob - child object + Object *cob = b->object; + + if (cob->parent == ob) { + switch(cob->type) { + case OB_MESH: + case OB_CAMERA: + case OB_LAMP: + case OB_EMPTY: + case OB_ARMATURE: + // write node... + writeNodes(cob, sce); + break; + } + } + + b = b->next; + } + + if (ob->type != OB_ARMATURE) + node.end(); + } +}; + +class ImagesExporter: COLLADASW::LibraryImages +{ + const char *mfilename; + std::vector mImages; // contains list of written images, to avoid duplicates +public: + ImagesExporter(COLLADASW::StreamWriter *sw, const char* filename) : COLLADASW::LibraryImages(sw), mfilename(filename) + {} + + void exportImages(Scene *sce) + { + openLibrary(); + + forEachMaterialInScene(sce, *this); + + closeLibrary(); + } + + void operator()(Material *ma, Object *ob) + { + int a; + for (a = 0; a < MAX_MTEX; a++) { + MTex *mtex = ma->mtex[a]; + if (mtex && mtex->tex && mtex->tex->ima) { + + Image *image = mtex->tex->ima; + std::string name(id_name(image)); + char rel[FILE_MAX]; + char abs[FILE_MAX]; + char src[FILE_MAX]; + char dir[FILE_MAX]; + + BLI_split_dirfile_basic(mfilename, dir, NULL); + + BKE_get_image_export_path(image, dir, abs, sizeof(abs), rel, sizeof(rel)); + + if (strlen(abs)) { + + // make absolute source path + BLI_strncpy(src, image->name, sizeof(src)); + BLI_convertstringcode(src, G.sce); + + // make dest directory if it doesn't exist + BLI_make_existing_file(abs); + + if (BLI_copy_fileops(src, abs) != 0) { + fprintf(stderr, "Cannot copy image to file's directory. \n"); + } + } + + if (find(mImages.begin(), mImages.end(), name) == mImages.end()) { + COLLADASW::Image img(COLLADABU::URI(COLLADABU::URI::nativePathToUri(rel)), name); + img.add(mSW); + + mImages.push_back(name); + } + } + } + } +}; + + +class EffectsExporter: COLLADASW::LibraryEffects +{ +public: + EffectsExporter(COLLADASW::StreamWriter *sw) : COLLADASW::LibraryEffects(sw){} + void exportEffects(Scene *sce) + { + openLibrary(); + + forEachMaterialInScene(sce, *this); + + closeLibrary(); + } + + void operator()(Material *ma, Object *ob) + { + // create a list of indices to textures of type TEX_IMAGE + std::vector tex_indices; + createTextureIndices(ma, tex_indices); + + openEffect(id_name(ma) + "-effect"); + + COLLADASW::EffectProfile ep(mSW); + ep.setProfileType(COLLADASW::EffectProfile::COMMON); + ep.openProfile(); + // set shader type - one of three blinn, phong or lambert + if (ma->spec_shader == MA_SPEC_BLINN) { + ep.setShaderType(COLLADASW::EffectProfile::BLINN); + // shininess + ep.setShininess(ma->spec); + } + else if (ma->spec_shader == MA_SPEC_PHONG) { + ep.setShaderType(COLLADASW::EffectProfile::PHONG); + // shininess + // XXX not sure, stolen this from previous Collada plugin + ep.setShininess(ma->har / 4); + } + else { + // XXX write warning "Current shader type is not supported" + ep.setShaderType(COLLADASW::EffectProfile::LAMBERT); + } + // index of refraction + if (ma->mode & MA_RAYTRANSP) { + ep.setIndexOfRefraction(ma->ang); + } + else { + ep.setIndexOfRefraction(1.0f); + } + // transparency + ep.setTransparency(ma->alpha); + // emission + COLLADASW::ColorOrTexture cot = getcol(0.0f, 0.0f, 0.0f, 1.0f); + ep.setEmission(cot); + ep.setTransparent(cot); + // diffuse + cot = getcol(ma->r, ma->g, ma->b, 1.0f); + ep.setDiffuse(cot); + // ambient + cot = getcol(ma->ambr, ma->ambg, ma->ambb, 1.0f); + ep.setAmbient(cot); + // reflective, reflectivity + if (ma->mode & MA_RAYMIRROR) { + cot = getcol(ma->mirr, ma->mirg, ma->mirb, 1.0f); + ep.setReflective(cot); + ep.setReflectivity(ma->ray_mirror); + } + else { + cot = getcol(0.0f, 0.0f, 0.0f, 1.0f); + ep.setReflective(cot); + ep.setReflectivity(0.0f); + } + // specular + if (ep.getShaderType() != COLLADASW::EffectProfile::LAMBERT) { + cot = getcol(ma->specr, ma->specg, ma->specb, 1.0f); + ep.setSpecular(cot); + } + + // XXX make this more readable if possible + + // create and for each image + COLLADASW::Sampler samplers[MAX_MTEX]; + //COLLADASW::Surface surfaces[MAX_MTEX]; + //void *samp_surf[MAX_MTEX][2]; + void *samp_surf[MAX_MTEX][1]; + + // image to index to samp_surf map + // samp_surf[index] stores 2 pointers, sampler and surface + std::map im_samp_map; + + unsigned int a, b; + for (a = 0, b = 0; a < tex_indices.size(); a++) { + MTex *t = ma->mtex[tex_indices[a]]; + Image *ima = t->tex->ima; + + std::string key(id_name(ima)); + + // create only one / pair for each unique image + if (im_samp_map.find(key) == im_samp_map.end()) { + // + // COLLADASW::Surface surface(COLLADASW::Surface::SURFACE_TYPE_2D, +// key + COLLADASW::Surface::SURFACE_SID_SUFFIX); +// COLLADASW::SurfaceInitOption sio(COLLADASW::SurfaceInitOption::INIT_FROM); +// sio.setImageReference(key); +// surface.setInitOption(sio); + + // + COLLADASW::Sampler sampler(COLLADASW::Sampler::SAMPLER_TYPE_2D, + key + COLLADASW::Sampler::SAMPLER_SID_SUFFIX, + key + COLLADASW::Sampler::SURFACE_SID_SUFFIX); + sampler.setImageId(key); + // copy values to arrays since they will live longer + samplers[a] = sampler; + //surfaces[a] = surface; + + // store pointers so they can be used later when we create s + samp_surf[b][0] = &samplers[a]; + //samp_surf[b][1] = &surfaces[a]; + + im_samp_map[key] = b; + b++; + } + } + + // used as fallback when MTex->uvname is "" (this is pretty common) + // it is indeed the correct value to use in that case + std::string active_uv(getActiveUVLayerName(ob)); + + // write textures + // XXX very slow + for (a = 0; a < tex_indices.size(); a++) { + MTex *t = ma->mtex[tex_indices[a]]; + Image *ima = t->tex->ima; + + // we assume map input is always TEXCO_UV + + std::string key(id_name(ima)); + int i = im_samp_map[key]; + COLLADASW::Sampler *sampler = (COLLADASW::Sampler*)samp_surf[i][0]; + //COLLADASW::Surface *surface = (COLLADASW::Surface*)samp_surf[i][1]; + + std::string uvname = strlen(t->uvname) ? t->uvname : active_uv; + + // color + if (t->mapto & MAP_COL) { + ep.setDiffuse(createTexture(ima, uvname, sampler)); + } + // ambient + if (t->mapto & MAP_AMB) { + ep.setAmbient(createTexture(ima, uvname, sampler)); + } + // specular + if (t->mapto & MAP_SPEC) { + ep.setSpecular(createTexture(ima, uvname, sampler)); + } + // emission + if (t->mapto & MAP_EMIT) { + ep.setEmission(createTexture(ima, uvname, sampler)); + } + // reflective + if (t->mapto & MAP_REF) { + ep.setReflective(createTexture(ima, uvname, sampler)); + } + if (t->mapto & MAP_ALPHA) { + ep.setTransparent(createTexture(ima, uvname, sampler)); + } + } + // performs the actual writing + ep.addProfileElements(); + ep.closeProfile(); + closeEffect(); + } + + COLLADASW::ColorOrTexture createTexture(Image *ima, + std::string& uv_layer_name, + COLLADASW::Sampler *sampler + /*COLLADASW::Surface *surface*/) + { + + COLLADASW::Texture texture(id_name(ima)); + texture.setTexcoord(uv_layer_name); + //texture.setSurface(*surface); + texture.setSampler(*sampler); + + COLLADASW::ColorOrTexture cot(texture); + return cot; + } + + COLLADASW::ColorOrTexture getcol(float r, float g, float b, float a) + { + COLLADASW::Color color(r,g,b,a); + COLLADASW::ColorOrTexture cot(color); + return cot; + } + + //returns the array of mtex indices which have image + //need this for exporting textures + void createTextureIndices(Material *ma, std::vector &indices) + { + indices.clear(); + + for (int a = 0; a < MAX_MTEX; a++) { + if (ma->mtex[a] && + ma->mtex[a]->tex->type == TEX_IMAGE && + ma->mtex[a]->texco == TEXCO_UV){ + indices.push_back(a); + } + } + } +}; + +class MaterialsExporter: COLLADASW::LibraryMaterials +{ +public: + MaterialsExporter(COLLADASW::StreamWriter *sw): COLLADASW::LibraryMaterials(sw){} + void exportMaterials(Scene *sce) + { + openLibrary(); + + forEachMaterialInScene(sce, *this); + + closeLibrary(); + } + + void operator()(Material *ma, Object *ob) + { + std::string name(id_name(ma)); + + openMaterial(name); + + std::string efid = name + "-effect"; + addInstanceEffect(COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, efid)); + + closeMaterial(); + } +}; + +class CamerasExporter: COLLADASW::LibraryCameras +{ +public: + CamerasExporter(COLLADASW::StreamWriter *sw): COLLADASW::LibraryCameras(sw){} + void exportCameras(Scene *sce) + { + openLibrary(); + + forEachCameraObjectInScene(sce, *this); + + closeLibrary(); + } + void operator()(Object *ob, Scene *sce) + { + // XXX add other params later + Camera *cam = (Camera*)ob->data; + std::string cam_id(get_camera_id(ob)); + std::string cam_name(id_name(cam)); + + if (cam->type == CAM_PERSP) { + COLLADASW::PerspectiveOptic persp(mSW); + persp.setXFov(1.0); + persp.setAspectRatio(0.1); + persp.setZFar(cam->clipend); + persp.setZNear(cam->clipsta); + COLLADASW::Camera ccam(mSW, &persp, cam_id, cam_name); + addCamera(ccam); + } + else { + COLLADASW::OrthographicOptic ortho(mSW); + ortho.setXMag(1.0); + ortho.setAspectRatio(0.1); + ortho.setZFar(cam->clipend); + ortho.setZNear(cam->clipsta); + COLLADASW::Camera ccam(mSW, &ortho, cam_id, cam_name); + addCamera(ccam); + } + } +}; + +class LightsExporter: COLLADASW::LibraryLights +{ +public: + LightsExporter(COLLADASW::StreamWriter *sw): COLLADASW::LibraryLights(sw){} + void exportLights(Scene *sce) + { + openLibrary(); + + forEachLampObjectInScene(sce, *this); + + closeLibrary(); + } + void operator()(Object *ob) + { + Lamp *la = (Lamp*)ob->data; + std::string la_id(get_light_id(ob)); + std::string la_name(id_name(la)); + COLLADASW::Color col(la->r, la->g, la->b); + float e = la->energy; + + // sun + if (la->type == LA_SUN) { + COLLADASW::DirectionalLight cla(mSW, la_id, la_name, e); + cla.setColor(col); + addLight(cla); + } + // hemi + else if (la->type == LA_HEMI) { + COLLADASW::AmbientLight cla(mSW, la_id, la_name, e); + cla.setColor(col); + addLight(cla); + } + // spot + else if (la->type == LA_SPOT) { + COLLADASW::SpotLight cla(mSW, la_id, la_name, e); + cla.setColor(col); + cla.setFallOffAngle(la->spotsize); + cla.setFallOffExponent(la->spotblend); + cla.setLinearAttenuation(la->att1); + cla.setQuadraticAttenuation(la->att2); + addLight(cla); + } + // lamp + else if (la->type == LA_LOCAL) { + COLLADASW::PointLight cla(mSW, la_id, la_name, e); + cla.setColor(col); + cla.setLinearAttenuation(la->att1); + cla.setQuadraticAttenuation(la->att2); + addLight(cla); + } + // area lamp is not supported + // it will be exported as a local lamp + else { + COLLADASW::PointLight cla(mSW, la_id, la_name, e); + cla.setColor(col); + cla.setLinearAttenuation(la->att1); + cla.setQuadraticAttenuation(la->att2); + addLight(cla); + } + } +}; + +// TODO: it would be better to instantiate animations rather than create a new one per object +// COLLADA allows this through multiple s in . +// For this to work, we need to know objects that use a certain action. +class AnimationExporter: COLLADASW::LibraryAnimations +{ + Scene *scene; + std::map > fcurves_actionGroup_map; + std::map > rotfcurves_actionGroup_map; +public: + AnimationExporter(COLLADASW::StreamWriter *sw): COLLADASW::LibraryAnimations(sw) {} + + void exportAnimations(Scene *sce) + { + this->scene = sce; + + openLibrary(); + + forEachObjectInScene(sce, *this); + + closeLibrary(); + } + + // create for each transform axis + + float convert_time(float frame) { + return FRA2TIME(frame); + } + + float convert_angle(float angle) { + return COLLADABU::Math::Utils::radToDegF(angle); + } + + std::string get_semantic_suffix(Sampler::Semantic semantic) { + switch(semantic) { + case Sampler::INPUT: + return INPUT_SOURCE_ID_SUFFIX; + case Sampler::OUTPUT: + return OUTPUT_SOURCE_ID_SUFFIX; + case Sampler::INTERPOLATION: + return INTERPOLATION_SOURCE_ID_SUFFIX; + case Sampler::IN_TANGENT: + return INTANGENT_SOURCE_ID_SUFFIX; + case Sampler::OUT_TANGENT: + return OUTTANGENT_SOURCE_ID_SUFFIX; + } + return ""; + } + + void add_source_parameters(COLLADASW::SourceBase::ParameterNameList& param, + Sampler::Semantic semantic, bool rotation, const char *axis) { + switch(semantic) { + case Sampler::INPUT: + param.push_back("TIME"); + break; + case Sampler::OUTPUT: + if (rotation) { + param.push_back("ANGLE"); + } + else { + param.push_back(axis); + } + break; + case Sampler::IN_TANGENT: + case Sampler::OUT_TANGENT: + param.push_back("X"); + param.push_back("Y"); + break; + } + } + + void get_source_values(BezTriple *bezt, Sampler::Semantic semantic, bool rotation, float *values, int *length) + { + switch (semantic) { + case Sampler::INPUT: + *length = 1; + values[0] = convert_time(bezt->vec[1][0]); + break; + case Sampler::OUTPUT: + *length = 1; + if (rotation) { + values[0] = convert_angle(bezt->vec[1][1]); + } + else { + values[0] = bezt->vec[1][1]; + } + break; + case Sampler::IN_TANGENT: + case Sampler::OUT_TANGENT: + // XXX + *length = 2; + break; + } + } + + std::string create_source(Sampler::Semantic semantic, FCurve *fcu, std::string& anim_id, const char *axis_name) + { + std::string source_id = anim_id + get_semantic_suffix(semantic); + + //bool is_rotation = !strcmp(fcu->rna_path, "rotation"); + bool is_rotation = false; + + if (strstr(fcu->rna_path, "rotation")) is_rotation = true; + + COLLADASW::FloatSourceF source(mSW); + source.setId(source_id); + source.setArrayId(source_id + ARRAY_ID_SUFFIX); + source.setAccessorCount(fcu->totvert); + source.setAccessorStride(1); + + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + add_source_parameters(param, semantic, is_rotation, axis_name); + + source.prepareToAppendValues(); + + for (int i = 0; i < fcu->totvert; i++) { + float values[3]; // be careful! + int length; + + get_source_values(&fcu->bezt[i], semantic, is_rotation, values, &length); + for (int j = 0; j < length; j++) + source.appendValues(values[j]); + } + + source.finish(); + + return source_id; + } + + std::string create_interpolation_source(FCurve *fcu, std::string& anim_id, const char *axis_name) + { + std::string source_id = anim_id + get_semantic_suffix(Sampler::INTERPOLATION); + + //bool is_rotation = !strcmp(fcu->rna_path, "rotation"); + + COLLADASW::NameSource source(mSW); + source.setId(source_id); + source.setArrayId(source_id + ARRAY_ID_SUFFIX); + source.setAccessorCount(fcu->totvert); + source.setAccessorStride(1); + + COLLADASW::SourceBase::ParameterNameList ¶m = source.getParameterNameList(); + param.push_back("INTERPOLATION"); + + source.prepareToAppendValues(); + + for (int i = 0; i < fcu->totvert; i++) { + // XXX + source.appendValues(LINEAR_NAME); + } + + source.finish(); + + return source_id; + } + + std::string get_transform_sid(char *rna_path, const char *axis_name) + { + // if (!strcmp(rna_path, "rotation")) +// return std::string(rna_path) + axis_name; + +// return std::string(rna_path) + "." + axis_name; + std::string new_rna_path; + + if (strstr(rna_path, "rotation")) { + new_rna_path = strstr(rna_path, "rotation"); + return new_rna_path + axis_name; + } + else if (strstr(rna_path, "location")) { + new_rna_path = strstr(rna_path, "location"); + return new_rna_path + "." + axis_name; + } + else if (strstr(rna_path, "scale")) { + new_rna_path = strstr(rna_path, "scale"); + return new_rna_path + "." + axis_name; + } + return NULL; + } + + void add_animation(FCurve *fcu, std::string ob_name) + { + const char *axis_names[] = {"X", "Y", "Z"}; + const char *axis_name = NULL; + char c_anim_id[100]; // careful! + + if (fcu->array_index < 3) + axis_name = axis_names[fcu->array_index]; + + BLI_snprintf(c_anim_id, sizeof(c_anim_id), "%s.%s.%s", (char*)ob_name.c_str(), fcu->rna_path, axis_names[fcu->array_index]); + std::string anim_id(c_anim_id); + + // check rna_path is one of: rotation, scale, location + + openAnimation(anim_id); + + // create input source + std::string input_id = create_source(Sampler::INPUT, fcu, anim_id, axis_name); + + // create output source + std::string output_id = create_source(Sampler::OUTPUT, fcu, anim_id, axis_name); + + // create interpolations source + std::string interpolation_id = create_interpolation_source(fcu, anim_id, axis_name); + + std::string sampler_id = anim_id + SAMPLER_ID_SUFFIX; + COLLADASW::LibraryAnimations::Sampler sampler(sampler_id); + std::string empty; + sampler.addInput(Sampler::INPUT, COLLADABU::URI(empty, input_id)); + sampler.addInput(Sampler::OUTPUT, COLLADABU::URI(empty, output_id)); + + // this input is required + sampler.addInput(Sampler::INTERPOLATION, COLLADABU::URI(empty, interpolation_id)); + + addSampler(sampler); + + std::string target = ob_name + "/" + get_transform_sid(fcu->rna_path, axis_name); + addChannel(COLLADABU::URI(empty, sampler_id), target); + + closeAnimation(); + } + + void add_bone_animation(FCurve *fcu, std::string ob_name, std::string bone_name) + { + const char *axis_names[] = {"X", "Y", "Z"}; + const char *axis_name = NULL; + char c_anim_id[100]; // careful! + + if (fcu->array_index < 3) + axis_name = axis_names[fcu->array_index]; + + std::string transform_sid = get_transform_sid(fcu->rna_path, axis_name); + + BLI_snprintf(c_anim_id, sizeof(c_anim_id), "%s.%s.%s", (char*)ob_name.c_str(), (char*)bone_name.c_str(), (char*)transform_sid.c_str()); + std::string anim_id(c_anim_id); + + // check rna_path is one of: rotation, scale, location + + openAnimation(anim_id); + + // create input source + std::string input_id = create_source(Sampler::INPUT, fcu, anim_id, axis_name); + + // create output source + std::string output_id = create_source(Sampler::OUTPUT, fcu, anim_id, axis_name); + + // create interpolations source + std::string interpolation_id = create_interpolation_source(fcu, anim_id, axis_name); + + std::string sampler_id = anim_id + SAMPLER_ID_SUFFIX; + COLLADASW::LibraryAnimations::Sampler sampler(sampler_id); + std::string empty; + sampler.addInput(Sampler::INPUT, COLLADABU::URI(empty, input_id)); + sampler.addInput(Sampler::OUTPUT, COLLADABU::URI(empty, output_id)); + + // this input is required + sampler.addInput(Sampler::INTERPOLATION, COLLADABU::URI(empty, interpolation_id)); + + addSampler(sampler); + + std::string target = ob_name + "_" + bone_name + "/" + transform_sid; + addChannel(COLLADABU::URI(empty, sampler_id), target); + + closeAnimation(); + } + + FCurve *create_fcurve(int array_index, char *rna_path) + { + FCurve *fcu = (FCurve*)MEM_callocN(sizeof(FCurve), "FCurve"); + + fcu->flag = (FCURVE_VISIBLE|FCURVE_AUTO_HANDLES|FCURVE_SELECTED); + fcu->rna_path = BLI_strdupn(rna_path, strlen(rna_path)); + fcu->array_index = array_index; + return fcu; + } + + void create_bezt(FCurve *fcu, float frame, float output) + { + BezTriple bez; + memset(&bez, 0, sizeof(BezTriple)); + bez.vec[1][0] = frame; + bez.vec[1][1] = output; + bez.ipo = U.ipo_new; /* use default interpolation mode here... */ + bez.f1 = bez.f2 = bez.f3 = SELECT; + bez.h1 = bez.h2 = HD_AUTO; + insert_bezt_fcurve(fcu, &bez, 0); + calchandles_fcurve(fcu); + } + + void change_quat_to_eul(Object *ob, bActionGroup *grp, char *grpname) + { + std::vector &rot_fcurves = rotfcurves_actionGroup_map[grp]; + + FCurve *quatcu[4] = {NULL, NULL, NULL, NULL}; + int i; + + for (i = 0; i < rot_fcurves.size(); i++) + quatcu[rot_fcurves[i]->array_index] = rot_fcurves[i]; + + char *rna_path = rot_fcurves[0]->rna_path; + + FCurve *eulcu[3] = { + create_fcurve(0, rna_path), + create_fcurve(1, rna_path), + create_fcurve(2, rna_path) + }; + + for (i = 0; i < 4; i++) { + + FCurve *cu = quatcu[i]; + + if (!cu) continue; + + for (int j = 0; j < cu->totvert; j++) { + float frame = cu->bezt[j].vec[1][0]; + + float quat[4] = { + quatcu[0] ? evaluate_fcurve(quatcu[0], frame) : 0.0f, + quatcu[1] ? evaluate_fcurve(quatcu[1], frame) : 0.0f, + quatcu[2] ? evaluate_fcurve(quatcu[2], frame) : 0.0f, + quatcu[3] ? evaluate_fcurve(quatcu[3], frame) : 0.0f + }; + + float eul[3]; + + QuatToEul(quat, eul); + + for (int k = 0; k < 3; k++) + create_bezt(eulcu[k], frame, eul[k]); + } + } + + for (i = 0; i < 3; i++) { + add_bone_animation(eulcu[i], id_name(ob), std::string(grpname)); + free_fcurve(eulcu[i]); + } + } + + // called for each exported object + void operator() (Object *ob) + { + if (!ob->adt || !ob->adt->action) return; + + FCurve *fcu = (FCurve*)ob->adt->action->curves.first; + + if (ob->type == OB_ARMATURE) { + + while (fcu) { + + if (strstr(fcu->rna_path, ".rotation")) + rotfcurves_actionGroup_map[fcu->grp].push_back(fcu); + else fcurves_actionGroup_map[fcu->grp].push_back(fcu); + + fcu = fcu->next; + } + + for (bPoseChannel *pchan = (bPoseChannel*)ob->pose->chanbase.first; pchan; pchan = pchan->next) { + int i; + char *grpname = pchan->name; + bActionGroup *grp = action_groups_find_named(ob->adt->action, grpname); + + if (!grp) continue; + + // write animation for location & scaling + if (fcurves_actionGroup_map.find(grp) == fcurves_actionGroup_map.end()) continue; + + std::vector &fcurves = fcurves_actionGroup_map[grp]; + for (i = 0; i < fcurves.size(); i++) + add_bone_animation(fcurves[i], id_name(ob), std::string(grpname)); + + // ... for rotation + if (rotfcurves_actionGroup_map.find(grp) == rotfcurves_actionGroup_map.end()) + continue; + + // if rotation mode is euler - no need to convert it + if (pchan->rotmode == ROT_MODE_EUL) { + + std::vector &rotfcurves = rotfcurves_actionGroup_map[grp]; + + for (i = 0; i < rotfcurves.size(); i++) + add_bone_animation(rotfcurves[i], id_name(ob), std::string(grpname)); + } + + // convert rotation to euler & write animation + else change_quat_to_eul(ob, grp, grpname); + } + } + else { + while (fcu) { + + if (!strcmp(fcu->rna_path, "location") || + !strcmp(fcu->rna_path, "scale") || + !strcmp(fcu->rna_path, "rotation")) { + + add_animation(fcu, id_name(ob)); + } + + fcu = fcu->next; + } + } + } +}; + +void DocumentExporter::exportCurrentScene(Scene *sce, const char* filename) +{ + COLLADABU::NativeString native_filename = + COLLADABU::NativeString(std::string(filename)); + COLLADASW::StreamWriter sw(native_filename); + + // open + sw.startDocument(); + + // + COLLADASW::Asset asset(&sw); + // XXX ask blender devs about this? + asset.setUnit("decimetre", 0.1); + asset.setUpAxisType(COLLADASW::Asset::Z_UP); + asset.add(); + + // + CamerasExporter ce(&sw); + ce.exportCameras(sce); + + // + LightsExporter le(&sw); + le.exportLights(sce); + + // + ImagesExporter ie(&sw, filename); + ie.exportImages(sce); + + // + EffectsExporter ee(&sw); + ee.exportEffects(sce); + + // + MaterialsExporter me(&sw); + me.exportMaterials(sce); + + // + GeometryExporter ge(&sw); + ge.exportGeom(sce); + + // + AnimationExporter ae(&sw); + ae.exportAnimations(sce); + + // + ArmatureExporter arm_exporter(&sw); + arm_exporter.export_controllers(sce); + + // + SceneExporter se(&sw, &arm_exporter); + se.exportScene(sce); + + // + std::string scene_name(id_name(sce)); + COLLADASW::Scene scene(&sw, COLLADASW::URI(COLLADABU::Utils::EMPTY_STRING, + scene_name)); + scene.add(); + + // close + sw.endDocument(); + +} + +void DocumentExporter::exportScenes(const char* filename) +{ +} diff --git a/source/blender/collada/DocumentExporter.h b/source/blender/collada/DocumentExporter.h new file mode 100644 index 00000000000..1a0c292a3dd --- /dev/null +++ b/source/blender/collada/DocumentExporter.h @@ -0,0 +1,8 @@ +struct Scene; + +class DocumentExporter +{ + public: + void exportCurrentScene(Scene *sce, const char* filename); + void exportScenes(const char* filename); +}; diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp new file mode 100644 index 00000000000..f31ac7d5b0b --- /dev/null +++ b/source/blender/collada/DocumentImporter.cpp @@ -0,0 +1,2847 @@ +#include "COLLADAFWRoot.h" +#include "COLLADAFWIWriter.h" +#include "COLLADAFWStableHeaders.h" +#include "COLLADAFWAnimationCurve.h" +#include "COLLADAFWAnimationList.h" +#include "COLLADAFWCamera.h" +#include "COLLADAFWColorOrTexture.h" +#include "COLLADAFWEffect.h" +#include "COLLADAFWFloatOrDoubleArray.h" +#include "COLLADAFWGeometry.h" +#include "COLLADAFWImage.h" +#include "COLLADAFWIndexList.h" +#include "COLLADAFWInstanceGeometry.h" +#include "COLLADAFWLight.h" +#include "COLLADAFWMaterial.h" +#include "COLLADAFWMesh.h" +#include "COLLADAFWMeshPrimitiveWithFaceVertexCount.h" +#include "COLLADAFWNode.h" +#include "COLLADAFWPolygons.h" +#include "COLLADAFWSampler.h" +#include "COLLADAFWSkinController.h" +#include "COLLADAFWSkinControllerData.h" +#include "COLLADAFWTransformation.h" +#include "COLLADAFWTranslate.h" +#include "COLLADAFWRotate.h" +#include "COLLADAFWScale.h" +#include "COLLADAFWMatrix.h" +#include "COLLADAFWTypes.h" +#include "COLLADAFWVisualScene.h" +#include "COLLADAFWFileInfo.h" +#include "COLLADAFWArrayPrimitiveType.h" + +#include "COLLADASaxFWLLoader.h" + +// TODO move "extern C" into header files +extern "C" +{ +#include "ED_keyframing.h" +#include "ED_armature.h" +#include "ED_mesh.h" // ED_vgroup_vert_add, ... +#include "ED_anim_api.h" +#include "WM_types.h" +#include "WM_api.h" + +#include "BKE_main.h" +#include "BKE_customdata.h" +#include "BKE_library.h" +#include "BKE_texture.h" +#include "BKE_fcurve.h" +#include "BKE_depsgraph.h" +#include "BLI_util.h" +#include "BKE_displist.h" +#include "BLI_arithb.h" +} +#include "BKE_armature.h" +#include "BKE_mesh.h" +#include "BKE_global.h" +#include "BKE_context.h" +#include "BKE_object.h" +#include "BKE_image.h" +#include "BKE_material.h" +#include "BKE_utildefines.h" +#include "BKE_action.h" + +#include "BLI_arithb.h" +#include "BLI_listbase.h" +#include "BLI_string.h" + +#include "DNA_lamp_types.h" +#include "DNA_armature_types.h" +#include "DNA_anim_types.h" +#include "DNA_curve_types.h" +#include "DNA_texture_types.h" +#include "DNA_camera_types.h" +#include "DNA_object_types.h" +#include "DNA_meshdata_types.h" +#include "DNA_mesh_types.h" +#include "DNA_material_types.h" +#include "DNA_scene_types.h" + +#include "MEM_guardedalloc.h" + +#include "DocumentImporter.h" +#include "collada_internal.h" + +#include +#include + +#include +#include + +// #define COLLADA_DEBUG + +char *CustomData_get_layer_name(const struct CustomData *data, int type, int n); + +// armature module internal func, it's not good to use it here? (Arystan) +struct EditBone *addEditBone(struct bArmature *arm, char *name); + +const char *primTypeToStr(COLLADAFW::MeshPrimitive::PrimitiveType type) +{ + using namespace COLLADAFW; + + switch (type) { + case MeshPrimitive::LINES: + return "LINES"; + case MeshPrimitive::LINE_STRIPS: + return "LINESTRIPS"; + case MeshPrimitive::POLYGONS: + return "POLYGONS"; + case MeshPrimitive::POLYLIST: + return "POLYLIST"; + case MeshPrimitive::TRIANGLES: + return "TRIANGLES"; + case MeshPrimitive::TRIANGLE_FANS: + return "TRIANGLE_FANS"; + case MeshPrimitive::TRIANGLE_STRIPS: + return "TRIANGLE_FANS"; + case MeshPrimitive::POINTS: + return "POINTS"; + case MeshPrimitive::UNDEFINED_PRIMITIVE_TYPE: + return "UNDEFINED_PRIMITIVE_TYPE"; + } + return "UNKNOWN"; +} +const char *geomTypeToStr(COLLADAFW::Geometry::GeometryType type) +{ + switch (type) { + case COLLADAFW::Geometry::GEO_TYPE_MESH: + return "MESH"; + case COLLADAFW::Geometry::GEO_TYPE_SPLINE: + return "SPLINE"; + case COLLADAFW::Geometry::GEO_TYPE_CONVEX_MESH: + return "CONVEX_MESH"; + } + return "UNKNOWN"; +} + +// works for COLLADAFW::Node, COLLADAFW::Geometry +template +const char *get_dae_name(T *node) +{ + const std::string& name = node->getName(); + return name.size() ? name.c_str() : node->getOriginalId().c_str(); +} + +// use this for retrieving bone names, since these must be unique +template +const char *get_joint_name(T *node) +{ + const std::string& id = node->getOriginalId(); + return id.size() ? id.c_str() : node->getName().c_str(); +} + +float get_float_value(const COLLADAFW::FloatOrDoubleArray& array, int index) +{ + if (index >= array.getValuesCount()) + return 0.0f; + + if (array.getType() == COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT) + return array.getFloatValues()->getData()[index]; + else + return array.getDoubleValues()->getData()[index]; +} + +typedef std::map > TexIndexTextureArrayMap; + +class TransformReader : public TransformBase +{ +protected: + + UnitConverter *unit_converter; + + struct Animation { + Object *ob; + COLLADAFW::Node *node; + COLLADAFW::Transformation *tm; // which transform is animated by an AnimationList->id + }; + +public: + + TransformReader(UnitConverter* conv) : unit_converter(conv) {} + + void get_node_mat(float mat[][4], COLLADAFW::Node *node, std::map *animation_map, + Object *ob) + { + float cur[4][4]; + float copy[4][4]; + + Mat4One(mat); + + for (int i = 0; i < node->getTransformations().getCount(); i++) { + + COLLADAFW::Transformation *tm = node->getTransformations()[i]; + COLLADAFW::Transformation::TransformationType type = tm->getTransformationType(); + + switch(type) { + case COLLADAFW::Transformation::TRANSLATE: + { + COLLADAFW::Translate *tra = (COLLADAFW::Translate*)tm; + COLLADABU::Math::Vector3& t = tra->getTranslation(); + + Mat4One(cur); + cur[3][0] = (float)t[0]; + cur[3][1] = (float)t[1]; + cur[3][2] = (float)t[2]; + } + break; + case COLLADAFW::Transformation::ROTATE: + { + COLLADAFW::Rotate *ro = (COLLADAFW::Rotate*)tm; + COLLADABU::Math::Vector3& raxis = ro->getRotationAxis(); + float angle = (float)(ro->getRotationAngle() * M_PI / 180.0f); + float axis[] = {raxis[0], raxis[1], raxis[2]}; + float quat[4]; + float rot_copy[3][3]; + float mat[3][3]; + AxisAngleToQuat(quat, axis, angle); + + QuatToMat4(quat, cur); + } + break; + case COLLADAFW::Transformation::SCALE: + { + COLLADABU::Math::Vector3& s = ((COLLADAFW::Scale*)tm)->getScale(); + float size[3] = {(float)s[0], (float)s[1], (float)s[2]}; + SizeToMat4(size, cur); + } + break; + case COLLADAFW::Transformation::MATRIX: + { + unit_converter->mat4_from_dae(cur, ((COLLADAFW::Matrix*)tm)->getMatrix()); + } + break; + case COLLADAFW::Transformation::LOOKAT: + case COLLADAFW::Transformation::SKEW: + fprintf(stderr, "LOOKAT and SKEW transformations are not supported yet.\n"); + break; + } + + Mat4CpyMat4(copy, mat); + Mat4MulMat4(mat, cur, copy); + + if (animation_map) { + // AnimationList that drives this Transformation + const COLLADAFW::UniqueId& anim_list_id = tm->getAnimationList(); + + // store this so later we can link animation data with ob + Animation anim = {ob, node, tm}; + (*animation_map)[anim_list_id] = anim; + } + } + } +}; + +// only for ArmatureImporter to "see" MeshImporter::get_object_by_geom_uid +class MeshImporterBase +{ +public: + virtual Object *get_object_by_geom_uid(const COLLADAFW::UniqueId& geom_uid) = 0; +}; + +// ditto as above +class AnimationImporterBase +{ +public: + virtual void change_eul_to_quat(Object *ob, bAction *act) = 0; +}; + +class ArmatureImporter : private TransformReader +{ +private: + Scene *scene; + UnitConverter *unit_converter; + + // std::map joint_index_to_joint_info_map; + // std::map joint_id_to_joint_index_map; + + struct LeafBone { + // COLLADAFW::Node *node; + EditBone *bone; + char name[32]; + float mat[4][4]; // bone matrix, derived from inv_bind_mat + }; + std::vector leaf_bones; + // int bone_direction_row; // XXX not used + float leaf_bone_length; + int totbone; + // XXX not used + // float min_angle; // minimum angle between bone head-tail and a row of bone matrix + +#if 0 + struct ArmatureJoints { + Object *ob_arm; + std::vector root_joints; + }; + std::vector armature_joints; +#endif + + Object *empty; // empty for leaf bones + + std::map geom_uid_by_controller_uid; + std::map joint_by_uid; // contains all joints + std::vector root_joints; + + std::vector armature_objects; + + MeshImporterBase *mesh_importer; + AnimationImporterBase *anim_importer; + + // This is used to store data passed in write_controller_data. + // Arrays from COLLADAFW::SkinControllerData lose ownership, so do this class members + // so that arrays don't get freed until we free them explicitly. + class SkinInfo + { + private: + // to build armature bones from inverse bind matrices + struct JointData { + float inv_bind_mat[4][4]; // joint inverse bind matrix + COLLADAFW::UniqueId joint_uid; // joint node UID + // Object *ob_arm; // armature object + }; + + float bind_shape_matrix[4][4]; + + // data from COLLADAFW::SkinControllerData, each array should be freed + COLLADAFW::UIntValuesArray joints_per_vertex; + COLLADAFW::UIntValuesArray weight_indices; + COLLADAFW::IntValuesArray joint_indices; + // COLLADAFW::FloatOrDoubleArray weights; + std::vector weights; + + std::vector joint_data; // index to this vector is joint index + + UnitConverter *unit_converter; + + Object *ob_arm; + COLLADAFW::UniqueId controller_uid; + + public: + + SkinInfo() {} + + SkinInfo(const SkinInfo& skin) : weights(skin.weights), + joint_data(skin.joint_data), + unit_converter(skin.unit_converter), + ob_arm(skin.ob_arm), + controller_uid(skin.controller_uid) + { + Mat4CpyMat4(bind_shape_matrix, (float (*)[4])skin.bind_shape_matrix); + + transfer_uint_array_data_const(skin.joints_per_vertex, joints_per_vertex); + transfer_uint_array_data_const(skin.weight_indices, weight_indices); + transfer_int_array_data_const(skin.joint_indices, joint_indices); + } + + SkinInfo(UnitConverter *conv) : unit_converter(conv), ob_arm(NULL) {} + + // nobody owns the data after this, so it should be freed manually with releaseMemory + template + void transfer_array_data(T& src, T& dest) + { + dest.setData(src.getData(), src.getCount()); + src.yieldOwnerShip(); + dest.yieldOwnerShip(); + } + + // when src is const we cannot src.yieldOwnerShip, this is used by copy constructor + void transfer_int_array_data_const(const COLLADAFW::IntValuesArray& src, COLLADAFW::IntValuesArray& dest) + { + dest.setData((int*)src.getData(), src.getCount()); + dest.yieldOwnerShip(); + } + + void transfer_uint_array_data_const(const COLLADAFW::UIntValuesArray& src, COLLADAFW::UIntValuesArray& dest) + { + dest.setData((unsigned int*)src.getData(), src.getCount()); + dest.yieldOwnerShip(); + } + + void borrow_skin_controller_data(const COLLADAFW::SkinControllerData* skin) + { + transfer_array_data((COLLADAFW::UIntValuesArray&)skin->getJointsPerVertex(), joints_per_vertex); + transfer_array_data((COLLADAFW::UIntValuesArray&)skin->getWeightIndices(), weight_indices); + transfer_array_data((COLLADAFW::IntValuesArray&)skin->getJointIndices(), joint_indices); + // transfer_array_data(skin->getWeights(), weights); + + // cannot transfer data for FloatOrDoubleArray, copy values manually + const COLLADAFW::FloatOrDoubleArray& weight = skin->getWeights(); + for (int i = 0; i < weight.getValuesCount(); i++) + weights.push_back(get_float_value(weight, i)); + + unit_converter->mat4_from_dae(bind_shape_matrix, skin->getBindShapeMatrix()); + } + + void free() + { + joints_per_vertex.releaseMemory(); + weight_indices.releaseMemory(); + joint_indices.releaseMemory(); + // weights.releaseMemory(); + } + + // using inverse bind matrices to construct armature + // it is safe to invert them to get the original matrices + // because if they are inverse matrices, they can be inverted + void add_joint(const COLLADABU::Math::Matrix4& matrix) + { + JointData jd; + unit_converter->mat4_from_dae(jd.inv_bind_mat, matrix); + joint_data.push_back(jd); + } + + // called from write_controller + Object *create_armature(const COLLADAFW::SkinController* co, Scene *scene) + { + ob_arm = add_object(scene, OB_ARMATURE); + + controller_uid = co->getUniqueId(); + + const COLLADAFW::UniqueIdArray& joint_uids = co->getJoints(); + for (int i = 0; i < joint_uids.getCount(); i++) { + joint_data[i].joint_uid = joint_uids[i]; + + // // store armature pointer + // JointData& jd = joint_index_to_joint_info_map[i]; + // jd.ob_arm = ob_arm; + + // now we'll be able to get inv bind matrix from joint id + // joint_id_to_joint_index_map[joint_ids[i]] = i; + } + + return ob_arm; + } + + bool get_joint_inv_bind_matrix(float inv_bind_mat[][4], COLLADAFW::Node *node) + { + const COLLADAFW::UniqueId& uid = node->getUniqueId(); + std::vector::iterator it; + for (it = joint_data.begin(); it != joint_data.end(); it++) { + if ((*it).joint_uid == uid) { + Mat4CpyMat4(inv_bind_mat, (*it).inv_bind_mat); + return true; + } + } + + return false; + } + + Object *get_armature() + { + return ob_arm; + } + + const COLLADAFW::UniqueId& get_controller_uid() + { + return controller_uid; + } + + // some nodes may not be referenced by SkinController, + // in this case to determine if the node belongs to this armature, + // we need to search down the tree + bool uses_joint(COLLADAFW::Node *node) + { + const COLLADAFW::UniqueId& uid = node->getUniqueId(); + std::vector::iterator it; + for (it = joint_data.begin(); it != joint_data.end(); it++) { + if ((*it).joint_uid == uid) + return true; + } + + COLLADAFW::NodePointerArray& children = node->getChildNodes(); + for (int i = 0; i < children.getCount(); i++) { + if (this->uses_joint(children[i])) + return true; + } + + return false; + } + + void link_armature(bContext *C, Object *ob, std::map& joint_by_uid, + TransformReader *tm) + { + tm->decompose(bind_shape_matrix, ob->loc, ob->rot, ob->size); + + ob->parent = ob_arm; + ob->partype = PARSKEL; + ob->recalc |= OB_RECALC_OB|OB_RECALC_DATA; + + ((bArmature*)ob_arm->data)->deformflag = ARM_DEF_VGROUP; + + // we need armature matrix here... where do we get it from I wonder... + // root node/joint? or node with ? + float parmat[4][4]; + Mat4One(parmat); + Mat4Invert(ob->parentinv, parmat); + + // create all vertex groups + std::vector::iterator it; + int joint_index; + for (it = joint_data.begin(), joint_index = 0; it != joint_data.end(); it++, joint_index++) { + const char *name = "Group"; + + // name group by joint node name + if (joint_by_uid.find((*it).joint_uid) != joint_by_uid.end()) { + name = get_joint_name(joint_by_uid[(*it).joint_uid]); + } + + ED_vgroup_add_name(ob, (char*)name); + } + + // - number of joints per vertex - joints_per_vertex + // - [[bone index, weight index] * joints per vertex] * vertices - weight indices + // ^ bone index can be -1 meaning weight toward bind shape, how to express this in Blender? + + // for each vertex in weight indices + // for each bone index in vertex + // add vertex to group at group index + // treat group index -1 specially + + // get def group by index with BLI_findlink + + for (int vertex = 0, weight = 0; vertex < joints_per_vertex.getCount(); vertex++) { + + int limit = weight + joints_per_vertex[vertex]; + for ( ; weight < limit; weight++) { + int joint = joint_indices[weight], joint_weight = weight_indices[weight]; + + // -1 means "weight towards the bind shape", we just don't assign it to any group + if (joint != -1) { + bDeformGroup *def = (bDeformGroup*)BLI_findlink(&ob->defbase, joint); + + ED_vgroup_vert_add(ob, def, vertex, weights[joint_weight], WEIGHT_REPLACE); + } + } + } + + DAG_scene_sort(CTX_data_scene(C)); + ED_anim_dag_flush_update(C); + WM_event_add_notifier(C, NC_OBJECT|ND_TRANSFORM, NULL); + } + + bPoseChannel *get_pose_channel_from_node(COLLADAFW::Node *node) + { + return get_pose_channel(ob_arm->pose, get_joint_name(node)); + } + }; + + std::map skin_by_data_uid; // data UID = skin controller data UID +#if 0 + JointData *get_joint_data(COLLADAFW::Node *node) + { + const COLLADAFW::UniqueId& joint_id = node->getUniqueId(); + + if (joint_id_to_joint_index_map.find(joint_id) == joint_id_to_joint_index_map.end()) { + fprintf(stderr, "Cannot find a joint index by joint id for %s.\n", + node->getOriginalId().c_str()); + return NULL; + } + + int joint_index = joint_id_to_joint_index_map[joint_id]; + + return &joint_index_to_joint_info_map[joint_index]; + } +#endif + + void create_bone(SkinInfo& skin, COLLADAFW::Node *node, EditBone *parent, int totchild, + float parent_mat[][4], bArmature *arm) + { + float joint_inv_bind_mat[4][4]; + + // JointData* jd = get_joint_data(node); + + float mat[4][4]; + + if (skin.get_joint_inv_bind_matrix(joint_inv_bind_mat, node)) { + // get original world-space matrix + Mat4Invert(mat, joint_inv_bind_mat); + } + // create a bone even if there's no joint data for it (i.e. it has no influence) + else { + float obmat[4][4]; + + // object-space + get_node_mat(obmat, node, NULL, NULL); + + // get world-space + if (parent) + Mat4MulMat4(mat, obmat, parent_mat); + else + Mat4CpyMat4(mat, obmat); + } + + // TODO rename from Node "name" attrs later + EditBone *bone = addEditBone(arm, (char*)get_joint_name(node)); + totbone++; + + if (parent) bone->parent = parent; + + // set head + VecCopyf(bone->head, mat[3]); + + // set tail, don't set it to head because 0-length bones are not allowed + float vec[3] = {0.0f, 0.5f, 0.0f}; + VecAddf(bone->tail, bone->head, vec); + + // set parent tail + if (parent && totchild == 1) { + VecCopyf(parent->tail, bone->head); + + // XXX increase this to prevent "very" small bones? + const float epsilon = 0.000001f; + + // derive leaf bone length + float length = VecLenf(parent->head, parent->tail); + if ((length < leaf_bone_length || totbone == 0) && length > epsilon) { + leaf_bone_length = length; + } + + // treat zero-sized bone like a leaf bone + if (length <= epsilon) { + add_leaf_bone(parent_mat, parent); + } + + /* +#if 0 + // and which row in mat is bone direction + float vec[3]; + VecSubf(vec, parent->tail, parent->head); +#ifdef COLLADA_DEBUG + printvecf("tail - head", vec); + printmatrix4("matrix", parent_mat); +#endif + for (int i = 0; i < 3; i++) { +#ifdef COLLADA_DEBUG + char *axis_names[] = {"X", "Y", "Z"}; + printf("%s-axis length is %f\n", axis_names[i], VecLength(parent_mat[i])); +#endif + float angle = VecAngle2(vec, parent_mat[i]); + if (angle < min_angle) { +#ifdef COLLADA_DEBUG + printvecf("picking", parent_mat[i]); + printf("^ %s axis of %s's matrix\n", axis_names[i], get_dae_name(node)); +#endif + bone_direction_row = i; + min_angle = angle; + } + } +#endif + */ + } + + COLLADAFW::NodePointerArray& children = node->getChildNodes(); + for (int i = 0; i < children.getCount(); i++) { + create_bone(skin, children[i], bone, children.getCount(), mat, arm); + } + + // in second case it's not a leaf bone, but we handle it the same way + if (!children.getCount() || children.getCount() > 1) { + add_leaf_bone(mat, bone); + } + } + + void add_leaf_bone(float mat[][4], EditBone *bone) + { + LeafBone leaf; + + leaf.bone = bone; + Mat4CpyMat4(leaf.mat, mat); + BLI_strncpy(leaf.name, bone->name, sizeof(leaf.name)); + + leaf_bones.push_back(leaf); + } + + void fix_leaf_bones() + { + // just setting tail for leaf bones here + + std::vector::iterator it; + for (it = leaf_bones.begin(); it != leaf_bones.end(); it++) { + LeafBone& leaf = *it; + + // pointing up + float vec[3] = {0.0f, 0.0f, 1.0f}; + + VecMulf(vec, leaf_bone_length); + + VecCopyf(leaf.bone->tail, leaf.bone->head); + VecAddf(leaf.bone->tail, leaf.bone->head, vec); + } + } + + void set_leaf_bone_shapes(Object *ob_arm) + { + bPose *pose = ob_arm->pose; + + std::vector::iterator it; + for (it = leaf_bones.begin(); it != leaf_bones.end(); it++) { + LeafBone& leaf = *it; + + bPoseChannel *pchan = get_pose_channel(pose, leaf.name); + if (pchan) { + pchan->custom = get_empty_for_leaves(); + } + else { + fprintf(stderr, "Cannot find a pose channel for leaf bone %s\n", leaf.name); + } + } + } + + void set_euler_rotmode() + { + // just set rotmode = ROT_MODE_EUL on pose channel for each joint + + std::map::iterator it; + + for (it = joint_by_uid.begin(); it != joint_by_uid.end(); it++) { + + COLLADAFW::Node *joint = it->second; + + std::map::iterator sit; + + for (sit = skin_by_data_uid.begin(); sit != skin_by_data_uid.end(); sit++) { + SkinInfo& skin = sit->second; + + if (skin.uses_joint(joint)) { + bPoseChannel *pchan = skin.get_pose_channel_from_node(joint); + + if (pchan) { + pchan->rotmode = ROT_MODE_EUL; + } + else { + fprintf(stderr, "Cannot find pose channel for %s.\n", get_joint_name(joint)); + } + + break; + } + } + } + } + + Object *get_empty_for_leaves() + { + if (empty) return empty; + + empty = add_object(scene, OB_EMPTY); + empty->empty_drawtype = OB_EMPTY_SPHERE; + + return empty; + } + +#if 0 + Object *find_armature(COLLADAFW::Node *node) + { + JointData* jd = get_joint_data(node); + if (jd) return jd->ob_arm; + + COLLADAFW::NodePointerArray& children = node->getChildNodes(); + for (int i = 0; i < children.getCount(); i++) { + Object *ob_arm = find_armature(children[i]); + if (ob_arm) return ob_arm; + } + + return NULL; + } + + ArmatureJoints& get_armature_joints(Object *ob_arm) + { + // try finding it + std::vector::iterator it; + for (it = armature_joints.begin(); it != armature_joints.end(); it++) { + if ((*it).ob_arm == ob_arm) return *it; + } + + // not found, create one + ArmatureJoints aj; + aj.ob_arm = ob_arm; + armature_joints.push_back(aj); + + return armature_joints.back(); + } +#endif + + void create_armature_bones(SkinInfo& skin) + { + // just do like so: + // - get armature + // - enter editmode + // - add edit bones and head/tail properties using matrices and parent-child info + // - exit edit mode + // - set a sphere shape to leaf bones + + Object *ob_arm = skin.get_armature(); + + // enter armature edit mode + ED_armature_to_edit(ob_arm); + + leaf_bones.clear(); + totbone = 0; + // bone_direction_row = 1; // TODO: don't default to Y but use asset and based on it decide on default row + leaf_bone_length = 0.1f; + // min_angle = 360.0f; // minimum angle between bone head-tail and a row of bone matrix + + // create bones + + std::vector::iterator it; + for (it = root_joints.begin(); it != root_joints.end(); it++) { + // since root_joints may contain joints for multiple controllers, we need to filter + if (skin.uses_joint(*it)) { + create_bone(skin, *it, NULL, (*it)->getChildNodes().getCount(), NULL, (bArmature*)ob_arm->data); + } + } + + fix_leaf_bones(); + + // exit armature edit mode + ED_armature_from_edit(ob_arm); + ED_armature_edit_free(ob_arm); + DAG_id_flush_update(&ob_arm->id, OB_RECALC_OB|OB_RECALC_DATA); + + set_leaf_bone_shapes(ob_arm); + + set_euler_rotmode(); + } + + +public: + + ArmatureImporter(UnitConverter *conv, MeshImporterBase *mesh, AnimationImporterBase *anim, Scene *sce) : + TransformReader(conv), scene(sce), empty(NULL), mesh_importer(mesh), anim_importer(anim) {} + + ~ArmatureImporter() + { + // free skin controller data if we forget to do this earlier + std::map::iterator it; + for (it = skin_by_data_uid.begin(); it != skin_by_data_uid.end(); it++) { + it->second.free(); + } + } + + // root - if this joint is the top joint in hierarchy, if a joint + // is a child of a node (not joint), root should be true since + // this is where we build armature bones from + void add_joint(COLLADAFW::Node *node, bool root) + { + joint_by_uid[node->getUniqueId()] = node; + if (root) root_joints.push_back(node); + } + +#if 0 + void add_root_joint(COLLADAFW::Node *node) + { + // root_joints.push_back(node); + Object *ob_arm = find_armature(node); + if (ob_arm) { + get_armature_joints(ob_arm).root_joints.push_back(node); + } +#ifdef COLLADA_DEBUG + else { + fprintf(stderr, "%s cannot be added to armature.\n", get_joint_name(node)); + } +#endif + } +#endif + + // here we add bones to armatures, having armatures previously created in write_controller + void make_armatures(bContext *C) + { + std::map::iterator it; + for (it = skin_by_data_uid.begin(); it != skin_by_data_uid.end(); it++) { + + SkinInfo& skin = it->second; + + create_armature_bones(skin); + + // link armature with an object + Object *ob = mesh_importer->get_object_by_geom_uid(*get_geometry_uid(skin.get_controller_uid())); + if (ob) { + skin.link_armature(C, ob, joint_by_uid, this); + } + else { + fprintf(stderr, "Cannot find object to link armature with.\n"); + } + + // free memory stolen from SkinControllerData + skin.free(); + } + } + +#if 0 + // link with meshes, create vertex groups, assign weights + void link_armature(Object *ob_arm, const COLLADAFW::UniqueId& geom_id, const COLLADAFW::UniqueId& controller_data_id) + { + Object *ob = mesh_importer->get_object_by_geom_uid(geom_id); + + if (!ob) { + fprintf(stderr, "Cannot find object by geometry UID.\n"); + return; + } + + if (skin_by_data_uid.find(controller_data_id) == skin_by_data_uid.end()) { + fprintf(stderr, "Cannot find skin info by controller data UID.\n"); + return; + } + + SkinInfo& skin = skin_by_data_uid[conroller_data_id]; + + // create vertex groups + } +#endif + + bool write_skin_controller_data(const COLLADAFW::SkinControllerData* data) + { + // at this stage we get vertex influence info that should go into me->verts and ob->defbase + // there's no info to which object this should be long so we associate it with skin controller data UID + + // don't forget to call unique_vertexgroup_name before we copy + + // controller data uid -> [armature] -> joint data, + // [mesh object] + // + + SkinInfo skin(unit_converter); + skin.borrow_skin_controller_data(data); + + // store join inv bind matrix to use it later in armature construction + const COLLADAFW::Matrix4Array& inv_bind_mats = data->getInverseBindMatrices(); + for (int i = 0; i < data->getJointsCount(); i++) { + skin.add_joint(inv_bind_mats[i]); + } + + skin_by_data_uid[data->getUniqueId()] = skin; + + return true; + } + + bool write_controller(const COLLADAFW::Controller* controller) + { + // - create and store armature object + + const COLLADAFW::UniqueId& skin_id = controller->getUniqueId(); + + if (controller->getControllerType() == COLLADAFW::Controller::CONTROLLER_TYPE_SKIN) { + + COLLADAFW::SkinController *co = (COLLADAFW::SkinController*)controller; + + // to find geom id by controller id + geom_uid_by_controller_uid[skin_id] = co->getSource(); + + const COLLADAFW::UniqueId& data_uid = co->getSkinControllerData(); + if (skin_by_data_uid.find(data_uid) == skin_by_data_uid.end()) { + fprintf(stderr, "Cannot find skin by controller data UID.\n"); + return true; + } + + Object *ob_arm = skin_by_data_uid[data_uid].create_armature(co, scene); + + armature_objects.push_back(ob_arm); + } + // morph controller + else { + // shape keys? :) + fprintf(stderr, "Morph controller is not supported yet.\n"); + } + + return true; + } + + COLLADAFW::UniqueId *get_geometry_uid(const COLLADAFW::UniqueId& controller_uid) + { + if (geom_uid_by_controller_uid.find(controller_uid) == geom_uid_by_controller_uid.end()) + return NULL; + + return &geom_uid_by_controller_uid[controller_uid]; + } + + Object *get_armature_for_joint(COLLADAFW::Node *node) + { + std::map::iterator it; + for (it = skin_by_data_uid.begin(); it != skin_by_data_uid.end(); it++) { + SkinInfo& skin = it->second; + + if (skin.uses_joint(node)) + return skin.get_armature(); + } + + return NULL; + } + + void get_rna_path_for_joint(COLLADAFW::Node *node, char *joint_path, size_t count) + { + BLI_snprintf(joint_path, count, "pose.pose_channels[\"%s\"]", get_joint_name(node)); + } + + void fix_animation() + { + /* Change Euler rotation to Quaternion for bone animation */ + std::vector::iterator it; + for (it = armature_objects.begin(); it != armature_objects.end(); it++) { + Object *ob = *it; + if (!ob || !ob->adt || !ob->adt->action) continue; + anim_importer->change_eul_to_quat(ob, ob->adt->action); + } + } +}; + +class MeshImporter : public MeshImporterBase +{ +private: + + Scene *scene; + ArmatureImporter *armature_importer; + + std::map uid_mesh_map; // geometry unique id-to-mesh map + std::map uid_object_map; // geom uid-to-object + // this structure is used to assign material indices to faces + // it holds a portion of Mesh faces and corresponds to a DAE primitive list (, , etc.) + struct Primitive { + MFace *mface; + unsigned int totface; + }; + typedef std::map > MaterialIdPrimitiveArrayMap; + std::map geom_uid_mat_mapping_map; // crazy name! + + class UVDataWrapper + { + COLLADAFW::MeshVertexData *mVData; + public: + UVDataWrapper(COLLADAFW::MeshVertexData& vdata) : mVData(&vdata) + {} + +#ifdef COLLADA_DEBUG + void print() + { + fprintf(stderr, "UVs:\n"); + switch(mVData->getType()) { + case COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT: + { + COLLADAFW::ArrayPrimitiveType* values = mVData->getFloatValues(); + if (values->getCount()) { + for (int i = 0; i < values->getCount(); i += 2) { + fprintf(stderr, "%.1f, %.1f\n", (*values)[i], (*values)[i+1]); + } + } + } + break; + case COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE: + { + COLLADAFW::ArrayPrimitiveType* values = mVData->getDoubleValues(); + if (values->getCount()) { + for (int i = 0; i < values->getCount(); i += 2) { + fprintf(stderr, "%.1f, %.1f\n", (float)(*values)[i], (float)(*values)[i+1]); + } + } + } + break; + } + fprintf(stderr, "\n"); + } +#endif + + void getUV(int uv_set_index, int uv_index[2], float *uv) + { + switch(mVData->getType()) { + case COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT: + { + COLLADAFW::ArrayPrimitiveType* values = mVData->getFloatValues(); + if (values->empty()) return; + uv[0] = (*values)[uv_index[0]]; + uv[1] = (*values)[uv_index[1]]; + + } + break; + case COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE: + { + COLLADAFW::ArrayPrimitiveType* values = mVData->getDoubleValues(); + if (values->empty()) return; + uv[0] = (float)(*values)[uv_index[0]]; + uv[1] = (float)(*values)[uv_index[1]]; + + } + break; + } + } + }; + + void set_face_indices(MFace *mface, unsigned int *indices, bool quad) + { + mface->v1 = indices[0]; + mface->v2 = indices[1]; + mface->v3 = indices[2]; + if (quad) mface->v4 = indices[3]; + else mface->v4 = 0; +#ifdef COLLADA_DEBUG + // fprintf(stderr, "%u, %u, %u \n", indices[0], indices[1], indices[2]); +#endif + } + + // change face indices order so that v4 is not 0 + void rotate_face_indices(MFace *mface) { + mface->v4 = mface->v1; + mface->v1 = mface->v2; + mface->v2 = mface->v3; + mface->v3 = 0; + } + + void set_face_uv(MTFace *mtface, UVDataWrapper &uvs, int uv_set_index, + COLLADAFW::IndexList& index_list, unsigned int *tris_indices) + { + int uv_indices[4][2]; + + // per face vertex indices, this means for quad we have 4 indices, not 8 + COLLADAFW::UIntValuesArray& indices = index_list.getIndices(); + + // make indices into FloatOrDoubleArray + for (int i = 0; i < 3; i++) { + int uv_index = indices[tris_indices[i]]; + uv_indices[i][0] = uv_index * 2; + uv_indices[i][1] = uv_index * 2 + 1; + } + + uvs.getUV(uv_set_index, uv_indices[0], mtface->uv[0]); + uvs.getUV(uv_set_index, uv_indices[1], mtface->uv[1]); + uvs.getUV(uv_set_index, uv_indices[2], mtface->uv[2]); + } + + void set_face_uv(MTFace *mtface, UVDataWrapper &uvs, int uv_set_index, + COLLADAFW::IndexList& index_list, int index, bool quad) + { + int uv_indices[4][2]; + + // per face vertex indices, this means for quad we have 4 indices, not 8 + COLLADAFW::UIntValuesArray& indices = index_list.getIndices(); + + // make indices into FloatOrDoubleArray + for (int i = 0; i < (quad ? 4 : 3); i++) { + int uv_index = indices[index + i]; + uv_indices[i][0] = uv_index * 2; + uv_indices[i][1] = uv_index * 2 + 1; + } + + uvs.getUV(uv_set_index, uv_indices[0], mtface->uv[0]); + uvs.getUV(uv_set_index, uv_indices[1], mtface->uv[1]); + uvs.getUV(uv_set_index, uv_indices[2], mtface->uv[2]); + + if (quad) uvs.getUV(uv_set_index, uv_indices[3], mtface->uv[3]); + +#ifdef COLLADA_DEBUG + /*if (quad) { + fprintf(stderr, "face uv:\n" + "((%d, %d), (%d, %d), (%d, %d), (%d, %d))\n" + "((%.1f, %.1f), (%.1f, %.1f), (%.1f, %.1f), (%.1f, %.1f))\n", + + uv_indices[0][0], uv_indices[0][1], + uv_indices[1][0], uv_indices[1][1], + uv_indices[2][0], uv_indices[2][1], + uv_indices[3][0], uv_indices[3][1], + + mtface->uv[0][0], mtface->uv[0][1], + mtface->uv[1][0], mtface->uv[1][1], + mtface->uv[2][0], mtface->uv[2][1], + mtface->uv[3][0], mtface->uv[3][1]); + } + else { + fprintf(stderr, "face uv:\n" + "((%d, %d), (%d, %d), (%d, %d))\n" + "((%.1f, %.1f), (%.1f, %.1f), (%.1f, %.1f))\n", + + uv_indices[0][0], uv_indices[0][1], + uv_indices[1][0], uv_indices[1][1], + uv_indices[2][0], uv_indices[2][1], + + mtface->uv[0][0], mtface->uv[0][1], + mtface->uv[1][0], mtface->uv[1][1], + mtface->uv[2][0], mtface->uv[2][1]); + }*/ +#endif + } + +#ifdef COLLADA_DEBUG + void print_index_list(COLLADAFW::IndexList& index_list) + { + fprintf(stderr, "Index list for \"%s\":\n", index_list.getName().c_str()); + for (int i = 0; i < index_list.getIndicesCount(); i += 2) { + fprintf(stderr, "%u, %u\n", index_list.getIndex(i), index_list.getIndex(i + 1)); + } + fprintf(stderr, "\n"); + } +#endif + + bool is_nice_mesh(COLLADAFW::Mesh *mesh) + { + COLLADAFW::MeshPrimitiveArray& prim_arr = mesh->getMeshPrimitives(); + int i; + + const char *name = get_dae_name(mesh); + + for (i = 0; i < prim_arr.getCount(); i++) { + + COLLADAFW::MeshPrimitive *mp = prim_arr[i]; + COLLADAFW::MeshPrimitive::PrimitiveType type = mp->getPrimitiveType(); + + const char *type_str = primTypeToStr(type); + + // OpenCollada passes POLYGONS type for + if (type == COLLADAFW::MeshPrimitive::POLYLIST || type == COLLADAFW::MeshPrimitive::POLYGONS) { + + COLLADAFW::Polygons *mpvc = (COLLADAFW::Polygons*)mp; + COLLADAFW::Polygons::VertexCountArray& vca = mpvc->getGroupedVerticesVertexCountArray(); + + for(int j = 0; j < vca.getCount(); j++){ + int count = vca[j]; + if (count < 3) { + fprintf(stderr, "Primitive %s in %s has at least one face with vertex count < 3\n", + type_str, name); + return false; + } + } + + } + else if(type != COLLADAFW::MeshPrimitive::TRIANGLES) { + fprintf(stderr, "Primitive type %s is not supported.\n", type_str); + return false; + } + } + + if (mesh->getPositions().empty()) { + fprintf(stderr, "Mesh %s has no vertices.\n", name); + return false; + } + + return true; + } + + void read_vertices(COLLADAFW::Mesh *mesh, Mesh *me) + { + // vertices + me->totvert = mesh->getPositions().getFloatValues()->getCount() / 3; + me->mvert = (MVert*)CustomData_add_layer(&me->vdata, CD_MVERT, CD_CALLOC, NULL, me->totvert); + + const COLLADAFW::MeshVertexData& pos = mesh->getPositions(); + MVert *mvert; + int i, j; + + for (i = 0, mvert = me->mvert; i < me->totvert; i++, mvert++) { + j = i * 3; + + if (pos.getType() == COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT) { + const float *array = pos.getFloatValues()->getData(); + mvert->co[0] = array[j]; + mvert->co[1] = array[j + 1]; + mvert->co[2] = array[j + 2]; + } + else if (pos.getType() == COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE){ + const double *array = pos.getDoubleValues()->getData(); + mvert->co[0] = (float)array[j]; + mvert->co[1] = (float)array[j + 1]; + mvert->co[2] = (float)array[j + 2]; + } + else { + fprintf(stderr, "Cannot read vertex positions: unknown data type.\n"); + break; + } + } + } + + int triangulate(int *indices, int vcount, MVert *verts, std::vector& tri) + { + ListBase dispbase = {NULL, NULL}; + DispList *dl; + float *vert; + int i = 0; + + dispbase.first = dispbase.last = NULL; + + dl = (DispList*)MEM_callocN(sizeof(DispList), "poly disp"); + BLI_addtail(&dispbase, dl); + dl->type = DL_INDEX3; + dl->nr = vcount; + dl->type = DL_POLY; + dl->parts = 1; + dl->col = 0; + dl->verts = vert = (float*)MEM_callocN( sizeof(float) * 3 * vcount, "dl verts"); + dl->index = (int*)MEM_callocN(sizeof(int) * 3 * vcount, "dl index"); + + for (i = 0; i < vcount; ++i, vert += 3) { + MVert *mvert = &verts[indices[i]]; + vert[0] = mvert->co[0]; + vert[1] = mvert->co[1]; + vert[2] = mvert->co[2]; + //fprintf(stderr, "%.1f %.1f %.1f \n", mvert->co[0], mvert->co[1], mvert->co[2]); + } + + filldisplist(&dispbase, &dispbase); + + dl = (DispList*)dispbase.first; + int tottri = dl->parts; + int *index = dl->index; + + for (i = 0; i < tottri * 3; i++, index++) { + tri.push_back(*index); + } + + freedisplist(&dispbase); + + return tottri; + } + + int count_new_tris(COLLADAFW::Mesh *mesh, Mesh *me, int new_tris) + { + COLLADAFW::MeshPrimitiveArray& prim_arr = mesh->getMeshPrimitives(); + int i, j, k; + + for (i = 0; i < prim_arr.getCount(); i++) { + + COLLADAFW::MeshPrimitive *mp = prim_arr[i]; + int type = mp->getPrimitiveType(); + size_t prim_totface = mp->getFaceCount(); + unsigned int *indices = mp->getPositionIndices().getData(); + + if (type == COLLADAFW::MeshPrimitive::POLYLIST || + type == COLLADAFW::MeshPrimitive::POLYGONS) { + + COLLADAFW::Polygons *mpvc = (COLLADAFW::Polygons*)mp; + COLLADAFW::Polygons::VertexCountArray& vcounta = mpvc->getGroupedVerticesVertexCountArray(); + + for (j = 0; j < prim_totface; j++) { + + int vcount = vcounta[j]; + + if (vcount > 4) { + // create triangles using PolyFill + int *temp_indices = (int*)MEM_callocN(sizeof(int) * vcount, "face_index"); + + for (k = 0; k < vcount; k++) { + temp_indices[k] = indices[k]; + } + + std::vector tri; + + int totri = triangulate(temp_indices, vcount, me->mvert, tri); + new_tris += totri - 1; + MEM_freeN(temp_indices); + indices += vcount; + } + else if (vcount == 4 || vcount == 3) { + indices += vcount; + } + } + } + } + return new_tris; + } + + // TODO: import uv set names + void read_faces(COLLADAFW::Mesh *mesh, Mesh *me, int new_tris) + { + int i; + + // allocate faces + me->totface = mesh->getFacesCount() + new_tris; + me->mface = (MFace*)CustomData_add_layer(&me->fdata, CD_MFACE, CD_CALLOC, NULL, me->totface); + + // allocate UV layers + int totuvset = mesh->getUVCoords().getInputInfosArray().getCount(); + + for (i = 0; i < totuvset; i++) { + CustomData_add_layer(&me->fdata, CD_MTFACE, CD_CALLOC, NULL, me->totface); + //this->set_layername_map[i] = CustomData_get_layer_name(&me->fdata, CD_MTFACE, i); + } + + // activate the first uv layer + if (totuvset) me->mtface = (MTFace*)CustomData_get_layer_n(&me->fdata, CD_MTFACE, 0); + + UVDataWrapper uvs(mesh->getUVCoords()); + +#ifdef COLLADA_DEBUG + // uvs.print(); +#endif + + MFace *mface = me->mface; + + MaterialIdPrimitiveArrayMap mat_prim_map; + + int face_index = 0; + + COLLADAFW::MeshPrimitiveArray& prim_arr = mesh->getMeshPrimitives(); + + for (i = 0; i < prim_arr.getCount(); i++) { + + COLLADAFW::MeshPrimitive *mp = prim_arr[i]; + + // faces + size_t prim_totface = mp->getFaceCount(); + unsigned int *indices = mp->getPositionIndices().getData(); + int j, k; + int type = mp->getPrimitiveType(); + int index = 0; + + // since we cannot set mface->mat_nr here, we store a portion of me->mface in Primitive + Primitive prim = {mface, 0}; + COLLADAFW::IndexListArray& index_list_array = mp->getUVCoordIndicesArray(); + +#ifdef COLLADA_DEBUG + /* + fprintf(stderr, "Primitive %d:\n", i); + for (int j = 0; j < totuvset; j++) { + print_index_list(*index_list_array[j]); + } + */ +#endif + + if (type == COLLADAFW::MeshPrimitive::TRIANGLES) { + for (j = 0; j < prim_totface; j++){ + + set_face_indices(mface, indices, false); + indices += 3; + + for (k = 0; k < totuvset; k++) { + // get mtface by face index and uv set index + MTFace *mtface = (MTFace*)CustomData_get_layer_n(&me->fdata, CD_MTFACE, k); + set_face_uv(&mtface[face_index], uvs, k, *index_list_array[k], index, false); + } + + index += 3; + mface++; + face_index++; + prim.totface++; + } + } + else if (type == COLLADAFW::MeshPrimitive::POLYLIST || type == COLLADAFW::MeshPrimitive::POLYGONS) { + COLLADAFW::Polygons *mpvc = (COLLADAFW::Polygons*)mp; + COLLADAFW::Polygons::VertexCountArray& vcounta = mpvc->getGroupedVerticesVertexCountArray(); + + for (j = 0; j < prim_totface; j++) { + + // face + int vcount = vcounta[j]; + if (vcount == 3 || vcount == 4) { + + set_face_indices(mface, indices, vcount == 4); + indices += vcount; + + // do the trick if needed + if (vcount == 4 && mface->v4 == 0) + rotate_face_indices(mface); + + + // set mtface for each uv set + // it is assumed that all primitives have equal number of UV sets + + for (k = 0; k < totuvset; k++) { + // get mtface by face index and uv set index + MTFace *mtface = (MTFace*)CustomData_get_layer_n(&me->fdata, CD_MTFACE, k); + set_face_uv(&mtface[face_index], uvs, k, *index_list_array[k], index, mface->v4 != 0); + } + + index += mface->v4 ? 4 : 3; + mface++; + face_index++; + prim.totface++; + + } + else { + // create triangles using PolyFill + int *temp_indices = (int*)MEM_callocN(sizeof(int) *vcount, "face_index"); + int *temp_uv_indices = (int*)MEM_callocN(sizeof(int) *vcount, "uv_index"); + + for (k = 0; k < vcount; k++) { + temp_indices[k] = indices[k]; + temp_uv_indices[k] = index + k; + } + + std::vector tri; + + int totri = triangulate(temp_indices, vcount, me->mvert, tri); + + for (k = 0; k < tri.size() / 3; k++) { + unsigned int tris_indices[3]; + unsigned int uv_indices[3]; + tris_indices[0] = temp_indices[tri[k * 3]]; + tris_indices[1] = temp_indices[tri[k * 3 + 1]]; + tris_indices[2] = temp_indices[tri[k * 3 + 2]]; + uv_indices[0] = temp_uv_indices[tri[k * 3]]; + uv_indices[1] = temp_uv_indices[tri[k * 3 + 1]]; + uv_indices[2] = temp_uv_indices[tri[k * 3 + 2]]; + //fprintf(stderr, "%u %u %u \n", tris_indices[0], tris_indices[1], tris_indices[2]); + set_face_indices(mface, tris_indices, false); + + for (int l = 0; l < totuvset; l++) { + // get mtface by face index and uv set index + MTFace *mtface = (MTFace*)CustomData_get_layer_n(&me->fdata, CD_MTFACE, l); + set_face_uv(&mtface[face_index], uvs, l, *index_list_array[l], uv_indices); + + } + + mface++; + face_index++; + prim.totface++; + } + + index += vcount; + indices += vcount; + MEM_freeN(temp_indices); + MEM_freeN(temp_uv_indices); + } + } + } + + mat_prim_map[mp->getMaterialId()].push_back(prim); + } + + geom_uid_mat_mapping_map[mesh->getUniqueId()] = mat_prim_map; + } + +public: + + MeshImporter(ArmatureImporter *arm, Scene *sce) : scene(sce), armature_importer(arm) {} + + virtual Object *get_object_by_geom_uid(const COLLADAFW::UniqueId& geom_uid) + { + if (uid_object_map.find(geom_uid) != uid_object_map.end()) + return uid_object_map[geom_uid]; + return NULL; + } + + MTex *assign_textures_to_uvlayer(COLLADAFW::InstanceGeometry::TextureCoordinateBinding &ctexture, + Mesh *me, TexIndexTextureArrayMap& texindex_texarray_map, + MTex *color_texture) + { + + COLLADAFW::TextureMapId texture_index = ctexture.textureMapId; + + char *uvname = CustomData_get_layer_name(&me->fdata, CD_MTFACE, ctexture.setIndex); + + if (texindex_texarray_map.find(texture_index) == texindex_texarray_map.end()) { + + fprintf(stderr, "Cannot find texture array by texture index.\n"); + return color_texture; + } + + std::vector textures = texindex_texarray_map[texture_index]; + + std::vector::iterator it; + + for (it = textures.begin(); it != textures.end(); it++) { + + MTex *texture = *it; + + if (texture) { + strcpy(texture->uvname, uvname); + if (texture->mapto == MAP_COL) color_texture = texture; + } + } + return color_texture; + } + + MTFace *assign_material_to_geom(COLLADAFW::InstanceGeometry::MaterialBinding cmaterial, + std::map& uid_material_map, + Object *ob, const COLLADAFW::UniqueId *geom_uid, + MTex **color_texture, char *layername, MTFace *texture_face, + std::map& material_texture_mapping_map, int mat_index) + { + Mesh *me = (Mesh*)ob->data; + const COLLADAFW::UniqueId& ma_uid = cmaterial.getReferencedMaterial(); + + // do we know this material? + if (uid_material_map.find(ma_uid) == uid_material_map.end()) { + + fprintf(stderr, "Cannot find material by UID.\n"); + return NULL; + } + + Material *ma = uid_material_map[ma_uid]; + assign_material(ob, ma, ob->totcol + 1); + + COLLADAFW::InstanceGeometry::TextureCoordinateBindingArray& tex_array = + cmaterial.getTextureCoordinateBindingArray(); + TexIndexTextureArrayMap texindex_texarray_map = material_texture_mapping_map[ma]; + unsigned int i; + // loop through + for (i = 0; i < tex_array.getCount(); i++) { + + *color_texture = assign_textures_to_uvlayer(tex_array[i], me, texindex_texarray_map, + *color_texture); + } + + // set texture face + if (*color_texture && + strlen((*color_texture)->uvname) && + strcmp(layername, (*color_texture)->uvname) != 0) { + + texture_face = (MTFace*)CustomData_get_layer_named(&me->fdata, CD_MTFACE, + (*color_texture)->uvname); + strcpy(layername, (*color_texture)->uvname); + } + + MaterialIdPrimitiveArrayMap& mat_prim_map = geom_uid_mat_mapping_map[*geom_uid]; + COLLADAFW::MaterialId mat_id = cmaterial.getMaterialId(); + + // assign material indices to mesh faces + if (mat_prim_map.find(mat_id) != mat_prim_map.end()) { + + std::vector& prims = mat_prim_map[mat_id]; + + std::vector::iterator it; + + for (it = prims.begin(); it != prims.end(); it++) { + Primitive& prim = *it; + i = 0; + while (i++ < prim.totface) { + prim.mface->mat_nr = mat_index; + prim.mface++; + // bind texture images to faces + if (texture_face && (*color_texture)) { + texture_face->mode = TF_TEX; + texture_face->tpage = (Image*)(*color_texture)->tex->ima; + texture_face++; + } + } + } + } + + return texture_face; + } + + + Object *create_mesh_object(COLLADAFW::Node *node, COLLADAFW::InstanceGeometry *geom, + bool isController, + std::map& uid_material_map, + std::map& material_texture_mapping_map) + { + const COLLADAFW::UniqueId *geom_uid = &geom->getInstanciatedObjectId(); + + // check if node instanciates controller or geometry + if (isController) { + + geom_uid = armature_importer->get_geometry_uid(*geom_uid); + + if (!geom_uid) { + fprintf(stderr, "Couldn't find a mesh UID by controller's UID.\n"); + return NULL; + } + } + else { + + if (uid_mesh_map.find(*geom_uid) == uid_mesh_map.end()) { + // this could happen if a mesh was not created + // (e.g. if it contains unsupported geometry) + fprintf(stderr, "Couldn't find a mesh by UID.\n"); + return NULL; + } + } + if (!uid_mesh_map[*geom_uid]) return NULL; + + Object *ob = add_object(scene, OB_MESH); + + // store object pointer for ArmatureImporter + uid_object_map[*geom_uid] = ob; + + // name Object + const std::string& id = node->getOriginalId(); + if (id.length()) + rename_id(&ob->id, (char*)id.c_str()); + + // replace ob->data freeing the old one + Mesh *old_mesh = (Mesh*)ob->data; + + set_mesh(ob, uid_mesh_map[*geom_uid]); + + if (old_mesh->id.us == 0) free_libblock(&G.main->mesh, old_mesh); + + char layername[100]; + MTFace *texture_face = NULL; + MTex *color_texture = NULL; + + COLLADAFW::InstanceGeometry::MaterialBindingArray& mat_array = + geom->getMaterialBindings(); + + // loop through geom's materials + for (unsigned int i = 0; i < mat_array.getCount(); i++) { + + texture_face = assign_material_to_geom(mat_array[i], uid_material_map, ob, geom_uid, + &color_texture, layername, texture_face, + material_texture_mapping_map, i); + } + + return ob; + } + + // create a mesh storing a pointer in a map so it can be retrieved later by geometry UID + bool write_geometry(const COLLADAFW::Geometry* geom) + { + // TODO: import also uvs, normals + // XXX what to do with normal indices? + // XXX num_normals may be != num verts, then what to do? + + // check geometry->getType() first + if (geom->getType() != COLLADAFW::Geometry::GEO_TYPE_MESH) { + // TODO: report warning + fprintf(stderr, "Mesh type %s is not supported\n", geomTypeToStr(geom->getType())); + return true; + } + + COLLADAFW::Mesh *mesh = (COLLADAFW::Mesh*)geom; + + if (!is_nice_mesh(mesh)) { + fprintf(stderr, "Ignoring mesh %s\n", get_dae_name(mesh)); + return true; + } + + const std::string& str_geom_id = mesh->getOriginalId(); + Mesh *me = add_mesh((char*)str_geom_id.c_str()); + + // store the Mesh pointer to link it later with an Object + this->uid_mesh_map[mesh->getUniqueId()] = me; + + int new_tris = 0; + + read_vertices(mesh, me); + + new_tris = count_new_tris(mesh, me, new_tris); + + read_faces(mesh, me, new_tris); + + mesh_calc_normals(me->mvert, me->totvert, me->mface, me->totface, NULL); + + return true; + } + +}; + +class AnimationImporter : private TransformReader, public AnimationImporterBase +{ +private: + + ArmatureImporter *armature_importer; + Scene *scene; + + std::map > uid_fcurve_map; + std::map uid_animated_map; + std::map > fcurves_actionGroup_map; + + FCurve *create_fcurve(int array_index, char *rna_path) + { + FCurve *fcu = (FCurve*)MEM_callocN(sizeof(FCurve), "FCurve"); + + fcu->flag = (FCURVE_VISIBLE|FCURVE_AUTO_HANDLES|FCURVE_SELECTED); + fcu->rna_path = BLI_strdupn(rna_path, strlen(rna_path)); + fcu->array_index = array_index; + return fcu; + } + + void create_bezt(FCurve *fcu, float frame, float output) + { + BezTriple bez; + memset(&bez, 0, sizeof(BezTriple)); + bez.vec[1][0] = frame; + bez.vec[1][1] = output; + bez.ipo = U.ipo_new; /* use default interpolation mode here... */ + bez.f1 = bez.f2 = bez.f3 = SELECT; + bez.h1 = bez.h2 = HD_AUTO; + insert_bezt_fcurve(fcu, &bez, 0); + calchandles_fcurve(fcu); + } + + void make_fcurves_from_animation(COLLADAFW::AnimationCurve *curve, + COLLADAFW::FloatOrDoubleArray& input, + COLLADAFW::FloatOrDoubleArray& output, + COLLADAFW::FloatOrDoubleArray& intan, + COLLADAFW::FloatOrDoubleArray& outtan, size_t dim, float fps) + { + int i; + // char *path = "location"; + std::vector& fcurves = uid_fcurve_map[curve->getUniqueId()]; + + if (dim == 1) { + // create fcurve + FCurve *fcu = (FCurve*)MEM_callocN(sizeof(FCurve), "FCurve"); + + fcu->flag = (FCURVE_VISIBLE|FCURVE_AUTO_HANDLES|FCURVE_SELECTED); + // fcu->rna_path = BLI_strdupn(path, strlen(path)); + fcu->array_index = 0; + //fcu->totvert = curve->getKeyCount(); + + // create beztriple for each key + for (i = 0; i < curve->getKeyCount(); i++) { + BezTriple bez; + memset(&bez, 0, sizeof(BezTriple)); + // intangent + bez.vec[0][0] = get_float_value(intan, i + i) * fps; + bez.vec[0][1] = get_float_value(intan, i + i + 1); + // input, output + bez.vec[1][0] = get_float_value(input, i) * fps; + bez.vec[1][1] = get_float_value(output, i); + // outtangent + bez.vec[2][0] = get_float_value(outtan, i + i) * fps; + bez.vec[2][1] = get_float_value(outtan, i + i + 1); + + bez.ipo = U.ipo_new; /* use default interpolation mode here... */ + bez.f1 = bez.f2 = bez.f3 = SELECT; + bez.h1 = bez.h2 = HD_AUTO; + insert_bezt_fcurve(fcu, &bez, 0); + calchandles_fcurve(fcu); + } + + fcurves.push_back(fcu); + } + else if(dim == 3) { + for (i = 0; i < dim; i++ ) { + // create fcurve + FCurve *fcu = (FCurve*)MEM_callocN(sizeof(FCurve), "FCurve"); + + fcu->flag = (FCURVE_VISIBLE|FCURVE_AUTO_HANDLES|FCURVE_SELECTED); + // fcu->rna_path = BLI_strdupn(path, strlen(path)); + fcu->array_index = 0; + //fcu->totvert = curve->getKeyCount(); + + // create beztriple for each key + for (int j = 0; j < curve->getKeyCount(); j++) { + BezTriple bez; + memset(&bez, 0, sizeof(BezTriple)); + // intangent + bez.vec[0][0] = get_float_value(intan, j * 6 + i + i) * fps; + bez.vec[0][1] = get_float_value(intan, j * 6 + i + i + 1); + // input, output + bez.vec[1][0] = get_float_value(input, j) * fps; + bez.vec[1][1] = get_float_value(output, j * 3 + i); + // outtangent + bez.vec[2][0] = get_float_value(outtan, j * 6 + i + i) * fps; + bez.vec[2][1] = get_float_value(outtan, j * 6 + i + i + 1); + + bez.ipo = U.ipo_new; /* use default interpolation mode here... */ + bez.f1 = bez.f2 = bez.f3 = SELECT; + bez.h1 = bez.h2 = HD_AUTO; + insert_bezt_fcurve(fcu, &bez, 0); + calchandles_fcurve(fcu); + } + + fcurves.push_back(fcu); + } + } + } + + void add_fcurves_to_object(Object *ob, std::vector& curves, char *rna_path, int array_index, Animation *animated) + { + ID *id = &ob->id; + bAction *act; + bActionGroup *grp = NULL; + + if (!ob->adt || !ob->adt->action) act = verify_adt_action(id, 1); + else act = verify_adt_action(id, 0); + + if (!ob->adt || !ob->adt->action) { + fprintf(stderr, "Cannot create anim data or action for this object. \n"); + return; + } + + FCurve *fcu; + std::vector::iterator it; + int i = 0; + + for (it = curves.begin(); it != curves.end(); it++) { + fcu = *it; + fcu->rna_path = BLI_strdupn(rna_path, strlen(rna_path)); + + if (array_index == -1) fcu->array_index = i; + else fcu->array_index = array_index; + + // convert degrees to radians for rotation + char *p = strstr(rna_path, "rotation"); + if (p && *(p + strlen("rotation")) == '\0') { + for(int j = 0; j < fcu->totvert; j++) { + float rot_intan = fcu->bezt[j].vec[0][1]; + float rot_output = fcu->bezt[j].vec[1][1]; + float rot_outtan = fcu->bezt[j].vec[2][1]; + fcu->bezt[j].vec[0][1] = rot_intan * M_PI / 180.0f; + fcu->bezt[j].vec[1][1] = rot_output * M_PI / 180.0f; + fcu->bezt[j].vec[2][1] = rot_outtan * M_PI / 180.0f; + } + } + + if (ob->type == OB_ARMATURE) { + bAction *act = ob->adt->action; + const char *bone_name = get_joint_name(animated->node); + + if (bone_name) { + /* try to find group */ + grp = action_groups_find_named(act, bone_name); + + /* no matching groups, so add one */ + if (grp == NULL) { + /* Add a new group, and make it active */ + grp = (bActionGroup*)MEM_callocN(sizeof(bActionGroup), "bActionGroup"); + + grp->flag = AGRP_SELECTED; + BLI_snprintf(grp->name, sizeof(grp->name), bone_name); + + BLI_addtail(&act->groups, grp); + BLI_uniquename(&act->groups, grp, "Group", '.', offsetof(bActionGroup, name), 64); + } + + /* add F-Curve to group */ + action_groups_add_channel(act, grp, fcu); + + } + if (p && *(p + strlen("rotation")) == '\0') { + fcurves_actionGroup_map[grp].push_back(fcu); + } + } + else { + BLI_addtail(&act->curves, fcu); + } + + i++; + } + } +public: + + AnimationImporter(UnitConverter *conv, ArmatureImporter *arm, Scene *scene) : + TransformReader(conv), armature_importer(arm), scene(scene) { } + + bool write_animation( const COLLADAFW::Animation* anim ) + { + float fps = (float)FPS; + + if (anim->getAnimationType() == COLLADAFW::Animation::ANIMATION_CURVE) { + COLLADAFW::AnimationCurve *curve = (COLLADAFW::AnimationCurve*)anim; + size_t dim = curve->getOutDimension(); + + // XXX Don't know if it's necessary + // Should we check outPhysicalDimension? + if (curve->getInPhysicalDimension() != COLLADAFW::PHYSICAL_DIMENSION_TIME) { + fprintf(stderr, "Inputs physical dimension is not time. \n"); + return true; + } + + COLLADAFW::FloatOrDoubleArray& input = curve->getInputValues(); + COLLADAFW::FloatOrDoubleArray& output = curve->getOutputValues(); + COLLADAFW::FloatOrDoubleArray& intan = curve->getInTangentValues(); + COLLADAFW::FloatOrDoubleArray& outtan = curve->getOutTangentValues(); + + // a curve can have mixed interpolation type, + // in this case curve->getInterpolationTypes returns a list of interpolation types per key + COLLADAFW::AnimationCurve::InterpolationType interp = curve->getInterpolationType(); + + if (interp != COLLADAFW::AnimationCurve::INTERPOLATION_MIXED) { + switch (interp) { + case COLLADAFW::AnimationCurve::INTERPOLATION_LINEAR: + // support this + make_fcurves_from_animation(curve, input, output, intan, outtan, dim, fps); + break; + case COLLADAFW::AnimationCurve::INTERPOLATION_BEZIER: + // and this + make_fcurves_from_animation(curve, input, output, intan, outtan, dim, fps); + break; + case COLLADAFW::AnimationCurve::INTERPOLATION_CARDINAL: + case COLLADAFW::AnimationCurve::INTERPOLATION_HERMITE: + case COLLADAFW::AnimationCurve::INTERPOLATION_BSPLINE: + case COLLADAFW::AnimationCurve::INTERPOLATION_STEP: + fprintf(stderr, "CARDINAL, HERMITE, BSPLINE and STEP anim interpolation types not supported yet.\n"); + break; + } + } + else { + // not supported yet + fprintf(stderr, "MIXED anim interpolation type is not supported yet.\n"); + } + } + else { + fprintf(stderr, "FORMULA animation type is not supported yet.\n"); + } + + return true; + } + + // called on post-process stage after writeVisualScenes + bool write_animation_list( const COLLADAFW::AnimationList* animationList ) + { + const COLLADAFW::UniqueId& anim_list_id = animationList->getUniqueId(); + + // possible in case we cannot interpret some transform + if (uid_animated_map.find(anim_list_id) == uid_animated_map.end()) { + return true; + } + + // for bones rna_path is like: pose.pose_channels["bone-name"].rotation + + // what does this AnimationList animate? + Animation& animated = uid_animated_map[anim_list_id]; + Object *ob = animated.ob; + + char rna_path[100]; + char joint_path[100]; + bool is_joint = false; + + // if ob is NULL, it should be a JOINT + if (!ob) { + ob = armature_importer->get_armature_for_joint(animated.node); + + if (!ob) { + fprintf(stderr, "Cannot find armature for node %s\n", get_joint_name(animated.node)); + return true; + } + + armature_importer->get_rna_path_for_joint(animated.node, joint_path, sizeof(joint_path)); + + is_joint = true; + } + + const COLLADAFW::AnimationList::AnimationBindings& bindings = animationList->getAnimationBindings(); + + switch (animated.tm->getTransformationType()) { + case COLLADAFW::Transformation::TRANSLATE: + { + if (is_joint) + BLI_snprintf(rna_path, sizeof(rna_path), "%s.location", joint_path); + else + BLI_strncpy(rna_path, "location", sizeof(rna_path)); + + for (int i = 0; i < bindings.getCount(); i++) { + const COLLADAFW::AnimationList::AnimationBinding& binding = bindings[i]; + COLLADAFW::UniqueId anim_uid = binding.animation; + + if (uid_fcurve_map.find(anim_uid) == uid_fcurve_map.end()) { + fprintf(stderr, "Cannot find FCurve by animation UID.\n"); + continue; + } + + std::vector& fcurves = uid_fcurve_map[anim_uid]; + + switch (binding.animationClass) { + case COLLADAFW::AnimationList::POSITION_X: + add_fcurves_to_object(ob, fcurves, rna_path, 0, &animated); + break; + case COLLADAFW::AnimationList::POSITION_Y: + add_fcurves_to_object(ob, fcurves, rna_path, 1, &animated); + break; + case COLLADAFW::AnimationList::POSITION_Z: + add_fcurves_to_object(ob, fcurves, rna_path, 2, &animated); + break; + case COLLADAFW::AnimationList::POSITION_XYZ: + add_fcurves_to_object(ob, fcurves, rna_path, -1, &animated); + break; + default: + fprintf(stderr, "AnimationClass %d is not supported for TRANSLATE transformation.\n", + binding.animationClass); + } + } + } + break; + case COLLADAFW::Transformation::ROTATE: + { + if (is_joint) + BLI_snprintf(rna_path, sizeof(rna_path), "%s.euler_rotation", joint_path); + else + BLI_strncpy(rna_path, "rotation", sizeof(rna_path)); + + COLLADAFW::Rotate* rot = (COLLADAFW::Rotate*)animated.tm; + COLLADABU::Math::Vector3& axis = rot->getRotationAxis(); + + for (int i = 0; i < bindings.getCount(); i++) { + const COLLADAFW::AnimationList::AnimationBinding& binding = bindings[i]; + COLLADAFW::UniqueId anim_uid = binding.animation; + + if (uid_fcurve_map.find(anim_uid) == uid_fcurve_map.end()) { + fprintf(stderr, "Cannot find FCurve by animation UID.\n"); + continue; + } + + std::vector& fcurves = uid_fcurve_map[anim_uid]; + + switch (binding.animationClass) { + case COLLADAFW::AnimationList::ANGLE: + if (COLLADABU::Math::Vector3::UNIT_X == axis) { + add_fcurves_to_object(ob, fcurves, rna_path, 0, &animated); + } + else if (COLLADABU::Math::Vector3::UNIT_Y == axis) { + add_fcurves_to_object(ob, fcurves, rna_path, 1, &animated); + } + else if (COLLADABU::Math::Vector3::UNIT_Z == axis) { + add_fcurves_to_object(ob, fcurves, rna_path, 2, &animated); + } + break; + case COLLADAFW::AnimationList::AXISANGLE: + // convert axis-angle to quat? or XYZ? + break; + default: + fprintf(stderr, "AnimationClass %d is not supported for ROTATE transformation.\n", + binding.animationClass); + } + } + } + break; + case COLLADAFW::Transformation::SCALE: + { + if (is_joint) + BLI_snprintf(rna_path, sizeof(rna_path), "%s.scale", joint_path); + else + BLI_strncpy(rna_path, "scale", sizeof(rna_path)); + + // same as for TRANSLATE + for (int i = 0; i < bindings.getCount(); i++) { + const COLLADAFW::AnimationList::AnimationBinding& binding = bindings[i]; + COLLADAFW::UniqueId anim_uid = binding.animation; + + if (uid_fcurve_map.find(anim_uid) == uid_fcurve_map.end()) { + fprintf(stderr, "Cannot find FCurve by animation UID.\n"); + continue; + } + + std::vector& fcurves = uid_fcurve_map[anim_uid]; + + switch (binding.animationClass) { + case COLLADAFW::AnimationList::POSITION_X: + add_fcurves_to_object(ob, fcurves, rna_path, 0, &animated); + break; + case COLLADAFW::AnimationList::POSITION_Y: + add_fcurves_to_object(ob, fcurves, rna_path, 1, &animated); + break; + case COLLADAFW::AnimationList::POSITION_Z: + add_fcurves_to_object(ob, fcurves, rna_path, 2, &animated); + break; + case COLLADAFW::AnimationList::POSITION_XYZ: + add_fcurves_to_object(ob, fcurves, rna_path, -1, &animated); + break; + default: + fprintf(stderr, "AnimationClass %d is not supported for TRANSLATE transformation.\n", + binding.animationClass); + } + } + } + break; + case COLLADAFW::Transformation::MATRIX: + case COLLADAFW::Transformation::SKEW: + case COLLADAFW::Transformation::LOOKAT: + fprintf(stderr, "Animation of MATRIX, SKEW and LOOKAT transformations is not supported yet.\n"); + break; + } + + return true; + } + + void read_node_transform(COLLADAFW::Node *node, Object *ob) + { + float mat[4][4]; + TransformReader::get_node_mat(mat, node, &uid_animated_map, ob); + if (ob) + TransformReader::decompose(mat, ob->loc, ob->rot, ob->size); + } + + virtual void change_eul_to_quat(Object *ob, bAction *act) + { + bActionGroup *grp; + int i; + + for (grp = (bActionGroup*)act->groups.first; grp; grp = grp->next) { + + FCurve *eulcu[3] = {NULL, NULL, NULL}; + + if (fcurves_actionGroup_map.find(grp) == fcurves_actionGroup_map.end()) + continue; + + std::vector &rot_fcurves = fcurves_actionGroup_map[grp]; + + if (rot_fcurves.size() > 3) continue; + + for (i = 0; i < rot_fcurves.size(); i++) + eulcu[rot_fcurves[i]->array_index] = rot_fcurves[i]; + + char joint_path[100]; + char rna_path[100]; + + BLI_snprintf(joint_path, sizeof(joint_path), "pose.pose_channels[\"%s\"]", grp->name); + BLI_snprintf(rna_path, sizeof(rna_path), "%s.rotation", joint_path); + + FCurve *quatcu[4] = { + create_fcurve(0, rna_path), + create_fcurve(1, rna_path), + create_fcurve(2, rna_path), + create_fcurve(3, rna_path) + }; + + for (i = 0; i < 3; i++) { + + FCurve *cu = eulcu[i]; + + if (!cu) continue; + + for (int j = 0; j < cu->totvert; j++) { + float frame = cu->bezt[j].vec[1][0]; + + float eul[3] = { + eulcu[0] ? evaluate_fcurve(eulcu[0], frame) : 0.0f, + eulcu[1] ? evaluate_fcurve(eulcu[1], frame) : 0.0f, + eulcu[2] ? evaluate_fcurve(eulcu[2], frame) : 0.0f + }; + + float quat[4]; + + EulToQuat(eul, quat); + + for (int k = 0; k < 4; k++) + create_bezt(quatcu[k], frame, quat[k]); + } + } + + // now replace old Euler curves + + for (i = 0; i < 3; i++) { + if (!eulcu[i]) continue; + + action_groups_remove_channel(act, eulcu[i]); + free_fcurve(eulcu[i]); + } + + get_pose_channel(ob->pose, grp->name)->rotmode = ROT_MODE_QUAT; + + for (i = 0; i < 4; i++) + action_groups_add_channel(act, grp, quatcu[i]); + } + + bPoseChannel *pchan; + for (pchan = (bPoseChannel*)ob->pose->chanbase.first; pchan; pchan = pchan->next) { + pchan->rotmode = ROT_MODE_QUAT; + } + } +}; + +/* + + COLLADA Importer limitations: + + - no multiple scene import, all objects are added to active scene + + */ +/** Class that needs to be implemented by a writer. + IMPORTANT: The write functions are called in arbitrary order.*/ +class Writer: public COLLADAFW::IWriter +{ +private: + std::string mFilename; + + bContext *mContext; + + UnitConverter unit_converter; + ArmatureImporter armature_importer; + MeshImporter mesh_importer; + AnimationImporter anim_importer; + + std::map uid_image_map; + std::map uid_material_map; + std::map uid_effect_map; + std::map uid_camera_map; + std::map uid_lamp_map; + std::map material_texture_mapping_map; + // animation + // std::map > uid_fcurve_map; + // Nodes don't share AnimationLists (Arystan) + // std::map uid_animated_map; // AnimationList->uniqueId to AnimatedObject map + +public: + + /** Constructor. */ + Writer(bContext *C, const char *filename) : mContext(C), mFilename(filename), + armature_importer(&unit_converter, &mesh_importer, &anim_importer, CTX_data_scene(C)), + mesh_importer(&armature_importer, CTX_data_scene(C)), + anim_importer(&unit_converter, &armature_importer, CTX_data_scene(C)) {} + + /** Destructor. */ + ~Writer() {} + + bool write() + { + COLLADASaxFWL::Loader loader; + COLLADAFW::Root root(&loader, this); + + // XXX report error + if (!root.loadDocument(mFilename)) + return false; + + return true; + } + + /** This method will be called if an error in the loading process occurred and the loader cannot + continue to to load. The writer should undo all operations that have been performed. + @param errorMessage A message containing informations about the error that occurred. + */ + virtual void cancel(const COLLADAFW::String& errorMessage) + { + // TODO: if possible show error info + // + // Should we get rid of invisible Meshes that were created so far + // or maybe create objects at coordinate space origin? + // + // The latter sounds better. + } + + /** This is the method called. The writer hast to prepare to receive data.*/ + virtual void start() + { + } + + /** This method is called after the last write* method. No other methods will be called after this.*/ + virtual void finish() + { + armature_importer.fix_animation(); + } + + /** When this method is called, the writer must write the global document asset. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeGlobalAsset ( const COLLADAFW::FileInfo* asset ) + { + // XXX take up_axis, unit into account + // COLLADAFW::FileInfo::Unit unit = asset->getUnit(); + // COLLADAFW::FileInfo::UpAxisType upAxis = asset->getUpAxisType(); + unit_converter.read_asset(asset); + + return true; + } + + /** When this method is called, the writer must write the scene. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeScene ( const COLLADAFW::Scene* scene ) + { + // XXX could store the scene id, but do nothing for now + return true; + } + Object *create_camera_object(COLLADAFW::InstanceCamera *camera, Object *ob, Scene *sce) + { + const COLLADAFW::UniqueId& cam_uid = camera->getInstanciatedObjectId(); + if (uid_camera_map.find(cam_uid) == uid_camera_map.end()) { + fprintf(stderr, "Couldn't find camera by UID. \n"); + return NULL; + } + ob = add_object(sce, OB_CAMERA); + Camera *cam = uid_camera_map[cam_uid]; + Camera *old_cam = (Camera*)ob->data; + old_cam->id.us--; + ob->data = cam; + if (old_cam->id.us == 0) free_libblock(&G.main->camera, old_cam); + return ob; + } + + Object *create_lamp_object(COLLADAFW::InstanceLight *lamp, Object *ob, Scene *sce) + { + const COLLADAFW::UniqueId& lamp_uid = lamp->getInstanciatedObjectId(); + if (uid_lamp_map.find(lamp_uid) == uid_lamp_map.end()) { + fprintf(stderr, "Couldn't find lamp by UID. \n"); + return NULL; + } + ob = add_object(sce, OB_LAMP); + Lamp *la = uid_lamp_map[lamp_uid]; + Lamp *old_lamp = (Lamp*)ob->data; + old_lamp->id.us--; + ob->data = la; + if (old_lamp->id.us == 0) free_libblock(&G.main->lamp, old_lamp); + return ob; + } + + void write_node (COLLADAFW::Node *node, COLLADAFW::Node *parent_node, Scene *sce, Object *par) + { + Object *ob = NULL; + + if (node->getType() == COLLADAFW::Node::JOINT) { + + if (node->getType() == COLLADAFW::Node::JOINT) { + armature_importer.add_joint(node, parent_node == NULL || parent_node->getType() != COLLADAFW::Node::JOINT); + } + + } + else { + COLLADAFW::InstanceGeometryPointerArray &geom = node->getInstanceGeometries(); + COLLADAFW::InstanceCameraPointerArray &camera = node->getInstanceCameras(); + COLLADAFW::InstanceLightPointerArray &lamp = node->getInstanceLights(); + COLLADAFW::InstanceControllerPointerArray &controller = node->getInstanceControllers(); + COLLADAFW::InstanceNodePointerArray &inst_node = node->getInstanceNodes(); + + // XXX linking object with the first , though a node may have more of them... + // maybe join multiple meshes into 1, and link object with it? not sure... + // + if (geom.getCount() != 0) { + ob = mesh_importer.create_mesh_object(node, geom[0], false, uid_material_map, + material_texture_mapping_map); + } + else if (camera.getCount() != 0) { + ob = create_camera_object(camera[0], ob, sce); + } + else if (lamp.getCount() != 0) { + ob = create_lamp_object(lamp[0], ob, sce); + } + else if (controller.getCount() != 0) { + COLLADAFW::InstanceController *geom = (COLLADAFW::InstanceController*)controller[0]; + ob = mesh_importer.create_mesh_object(node, geom, true, uid_material_map, material_texture_mapping_map); + } + // XXX instance_node is not supported yet + else if (inst_node.getCount() != 0) { + return; + } + // if node is empty - create empty object + // XXX empty node may not mean it is empty object, not sure about this + else { + ob = add_object(sce, OB_EMPTY); + } + + // check if object is not NULL + if (!ob) return; + + // if par was given make this object child of the previous + if (par && ob) { + Object workob; + + ob->parent = par; + + // doing what 'set parent' operator does + par->recalc |= OB_RECALC_OB; + ob->parsubstr[0] = 0; + + DAG_scene_sort(sce); + } + } + + anim_importer.read_node_transform(node, ob); + + // if node has child nodes write them + COLLADAFW::NodePointerArray &child_nodes = node->getChildNodes(); + for (int i = 0; i < child_nodes.getCount(); i++) { + write_node(child_nodes[i], node, sce, ob); + } + } + + /** When this method is called, the writer must write the entire visual scene. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeVisualScene ( const COLLADAFW::VisualScene* visualScene ) + { + // This method is guaranteed to be called _after_ writeGeometry, writeMaterial, etc. + + // for each in : + // create an Object + // if Mesh (previously created in writeGeometry) to which corresponds exists, link Object with that mesh + + // update: since we cannot link a Mesh with Object in + // writeGeometry because does not reference , + // we link Objects with Meshes here + + // TODO: create a new scene except the selected - use current blender + // scene for it + Scene *sce = CTX_data_scene(mContext); + + for (int i = 0; i < visualScene->getRootNodes().getCount(); i++) { + COLLADAFW::Node *node = visualScene->getRootNodes()[i]; + const COLLADAFW::Node::NodeType& type = node->getType(); + + write_node(node, NULL, sce, NULL); + } + + armature_importer.make_armatures(mContext); + + return true; + } + + /** When this method is called, the writer must handle all nodes contained in the + library nodes. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeLibraryNodes ( const COLLADAFW::LibraryNodes* libraryNodes ) + { + return true; + } + + /** When this method is called, the writer must write the geometry. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeGeometry ( const COLLADAFW::Geometry* geom ) + { + return mesh_importer.write_geometry(geom); + } + + /** When this method is called, the writer must write the material. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeMaterial( const COLLADAFW::Material* cmat ) + { + const std::string& str_mat_id = cmat->getOriginalId(); + Material *ma = add_material((char*)str_mat_id.c_str()); + + this->uid_effect_map[cmat->getInstantiatedEffect()] = ma; + this->uid_material_map[cmat->getUniqueId()] = ma; + + return true; + } + + // create mtex, create texture, set texture image + MTex *create_texture(COLLADAFW::EffectCommon *ef, COLLADAFW::Texture &ctex, Material *ma, + int i, TexIndexTextureArrayMap &texindex_texarray_map) + { + COLLADAFW::SamplerPointerArray& samp_array = ef->getSamplerPointerArray(); + COLLADAFW::Sampler *sampler = samp_array[ctex.getSamplerId()]; + + const COLLADAFW::UniqueId& ima_uid = sampler->getSourceImage(); + + if (uid_image_map.find(ima_uid) == uid_image_map.end()) { + fprintf(stderr, "Couldn't find an image by UID.\n"); + return NULL; + } + + ma->mtex[i] = add_mtex(); + ma->mtex[i]->texco = TEXCO_UV; + ma->mtex[i]->tex = add_texture("texture"); + ma->mtex[i]->tex->type = TEX_IMAGE; + ma->mtex[i]->tex->imaflag &= ~TEX_USEALPHA; + ma->mtex[i]->tex->ima = uid_image_map[ima_uid]; + + texindex_texarray_map[ctex.getTextureMapId()].push_back(ma->mtex[i]); + + return ma->mtex[i]; + } + + void write_profile_COMMON(COLLADAFW::EffectCommon *ef, Material *ma) + { + COLLADAFW::EffectCommon::ShaderType shader = ef->getShaderType(); + + // blinn + if (shader == COLLADAFW::EffectCommon::SHADER_BLINN) { + ma->spec_shader = MA_SPEC_BLINN; + ma->spec = ef->getShininess().getFloatValue(); + } + // phong + else if (shader == COLLADAFW::EffectCommon::SHADER_PHONG) { + ma->spec_shader = MA_SPEC_PHONG; + // XXX setting specular hardness instead of specularity intensity + ma->har = ef->getShininess().getFloatValue() * 4; + } + // lambert + else if (shader == COLLADAFW::EffectCommon::SHADER_LAMBERT) { + ma->diff_shader = MA_DIFF_LAMBERT; + } + // default - lambert + else { + ma->diff_shader = MA_DIFF_LAMBERT; + fprintf(stderr, "Current shader type is not supported.\n"); + } + // reflectivity + ma->ray_mirror = ef->getReflectivity().getFloatValue(); + // index of refraction + ma->ang = ef->getIndexOfRefraction().getFloatValue(); + + int i = 0; + COLLADAFW::Color col; + COLLADAFW::Texture ctex; + MTex *mtex = NULL; + TexIndexTextureArrayMap texindex_texarray_map; + + // DIFFUSE + // color + if (ef->getDiffuse().isColor()) { + col = ef->getDiffuse().getColor(); + ma->r = col.getRed(); + ma->g = col.getGreen(); + ma->b = col.getBlue(); + } + // texture + else if (ef->getDiffuse().isTexture()) { + ctex = ef->getDiffuse().getTexture(); + mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); + if (mtex != NULL) { + mtex->mapto = MAP_COL; + ma->texact = (int)i; + i++; + } + } + // AMBIENT + // color + if (ef->getAmbient().isColor()) { + col = ef->getAmbient().getColor(); + ma->ambr = col.getRed(); + ma->ambg = col.getGreen(); + ma->ambb = col.getBlue(); + } + // texture + else if (ef->getAmbient().isTexture()) { + ctex = ef->getAmbient().getTexture(); + mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); + if (mtex != NULL) { + mtex->mapto = MAP_AMB; + i++; + } + } + // SPECULAR + // color + if (ef->getSpecular().isColor()) { + col = ef->getSpecular().getColor(); + ma->specr = col.getRed(); + ma->specg = col.getGreen(); + ma->specb = col.getBlue(); + } + // texture + else if (ef->getSpecular().isTexture()) { + ctex = ef->getSpecular().getTexture(); + mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); + if (mtex != NULL) { + mtex->mapto = MAP_SPEC; + i++; + } + } + // REFLECTIVE + // color + if (ef->getReflective().isColor()) { + col = ef->getReflective().getColor(); + ma->mirr = col.getRed(); + ma->mirg = col.getGreen(); + ma->mirb = col.getBlue(); + } + // texture + else if (ef->getReflective().isTexture()) { + ctex = ef->getReflective().getTexture(); + mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); + if (mtex != NULL) { + mtex->mapto = MAP_REF; + i++; + } + } + // EMISSION + // color + if (ef->getEmission().isColor()) { + // XXX there is no emission color in blender + // but I am not sure + } + // texture + else if (ef->getEmission().isTexture()) { + ctex = ef->getEmission().getTexture(); + mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); + if (mtex != NULL) { + mtex->mapto = MAP_EMIT; + i++; + } + } + // TRANSPARENT + // color + // if (ef->getOpacity().isColor()) { +// // XXX don't know what to do here +// } +// // texture +// else if (ef->getOpacity().isTexture()) { +// ctex = ef->getOpacity().getTexture(); +// if (mtex != NULL) mtex->mapto &= MAP_ALPHA; +// else { +// mtex = create_texture(ef, ctex, ma, i, texindex_texarray_map); +// if (mtex != NULL) mtex->mapto = MAP_ALPHA; +// } +// } + material_texture_mapping_map[ma] = texindex_texarray_map; + } + + /** When this method is called, the writer must write the effect. + @return The writer should return true, if writing succeeded, false otherwise.*/ + + virtual bool writeEffect( const COLLADAFW::Effect* effect ) + { + + const COLLADAFW::UniqueId& uid = effect->getUniqueId(); + if (uid_effect_map.find(uid) == uid_effect_map.end()) { + fprintf(stderr, "Couldn't find a material by UID.\n"); + return true; + } + + Material *ma = uid_effect_map[uid]; + + COLLADAFW::CommonEffectPointerArray common_efs = effect->getCommonEffects(); + if (common_efs.getCount() < 1) { + fprintf(stderr, "Couldn't find .\n"); + return true; + } + // XXX TODO: Take all s + // Currently only first is supported + COLLADAFW::EffectCommon *ef = common_efs[0]; + write_profile_COMMON(ef, ma); + + return true; + } + + + /** When this method is called, the writer must write the camera. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeCamera( const COLLADAFW::Camera* camera ) + { + Camera *cam = NULL; + std::string cam_id, cam_name; + + cam_id = camera->getOriginalId(); + cam_name = camera->getName(); + if (cam_name.size()) cam = (Camera*)add_camera((char*)cam_name.c_str()); + else cam = (Camera*)add_camera((char*)cam_id.c_str()); + + if (!cam) { + fprintf(stderr, "Cannot create camera. \n"); + return true; + } + cam->clipsta = camera->getNearClippingPlane().getValue(); + cam->clipend = camera->getFarClippingPlane().getValue(); + + COLLADAFW::Camera::CameraType type = camera->getCameraType(); + switch(type) { + case COLLADAFW::Camera::ORTHOGRAPHIC: + { + cam->type = CAM_ORTHO; + } + break; + case COLLADAFW::Camera::PERSPECTIVE: + { + cam->type = CAM_PERSP; + } + break; + case COLLADAFW::Camera::UNDEFINED_CAMERATYPE: + { + fprintf(stderr, "Current camera type is not supported. \n"); + cam->type = CAM_PERSP; + } + break; + } + this->uid_camera_map[camera->getUniqueId()] = cam; + // XXX import camera options + return true; + } + + /** When this method is called, the writer must write the image. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeImage( const COLLADAFW::Image* image ) + { + // XXX maybe it is necessary to check if the path is absolute or relative + const std::string& filepath = image->getImageURI().toNativePath(); + const char *filename = (const char*)mFilename.c_str(); + char dir[FILE_MAX]; + char full_path[FILE_MAX]; + + BLI_split_dirfile_basic(filename, dir, NULL); + BLI_join_dirfile(full_path, dir, filepath.c_str()); + Image *ima = BKE_add_image_file(full_path, 0); + if (!ima) { + fprintf(stderr, "Cannot create image. \n"); + return true; + } + this->uid_image_map[image->getUniqueId()] = ima; + + return true; + } + + /** When this method is called, the writer must write the light. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeLight( const COLLADAFW::Light* light ) + { + Lamp *lamp = NULL; + std::string la_id, la_name; + + la_id = light->getOriginalId(); + la_name = light->getName(); + if (la_name.size()) lamp = (Lamp*)add_lamp((char*)la_name.c_str()); + else lamp = (Lamp*)add_lamp((char*)la_id.c_str()); + + if (!lamp) { + fprintf(stderr, "Cannot create lamp. \n"); + return true; + } + if (light->getColor().isValid()) { + COLLADAFW::Color col = light->getColor(); + lamp->r = col.getRed(); + lamp->g = col.getGreen(); + lamp->b = col.getBlue(); + } + COLLADAFW::Light::LightType type = light->getLightType(); + switch(type) { + case COLLADAFW::Light::AMBIENT_LIGHT: + { + lamp->type = LA_HEMI; + } + break; + case COLLADAFW::Light::SPOT_LIGHT: + { + lamp->type = LA_SPOT; + lamp->falloff_type = LA_FALLOFF_SLIDERS; + lamp->att1 = light->getLinearAttenuation().getValue(); + lamp->att2 = light->getQuadraticAttenuation().getValue(); + lamp->spotsize = light->getFallOffAngle().getValue(); + lamp->spotblend = light->getFallOffExponent().getValue(); + } + break; + case COLLADAFW::Light::DIRECTIONAL_LIGHT: + { + lamp->type = LA_SUN; + } + break; + case COLLADAFW::Light::POINT_LIGHT: + { + lamp->type = LA_LOCAL; + lamp->att1 = light->getLinearAttenuation().getValue(); + lamp->att2 = light->getQuadraticAttenuation().getValue(); + } + break; + case COLLADAFW::Light::UNDEFINED: + { + fprintf(stderr, "Current lamp type is not supported. \n"); + lamp->type = LA_LOCAL; + } + break; + } + + this->uid_lamp_map[light->getUniqueId()] = lamp; + return true; + } + + // this function is called only for animations that pass COLLADAFW::validate + virtual bool writeAnimation( const COLLADAFW::Animation* anim ) + { + return anim_importer.write_animation(anim); + } + + // called on post-process stage after writeVisualScenes + virtual bool writeAnimationList( const COLLADAFW::AnimationList* animationList ) + { + return anim_importer.write_animation_list(animationList); + } + + /** When this method is called, the writer must write the skin controller data. + @return The writer should return true, if writing succeeded, false otherwise.*/ + virtual bool writeSkinControllerData( const COLLADAFW::SkinControllerData* skin ) + { + return armature_importer.write_skin_controller_data(skin); + } + + // this is called on postprocess, before writeVisualScenes + virtual bool writeController( const COLLADAFW::Controller* controller ) + { + return armature_importer.write_controller(controller); + } + + virtual bool writeFormulas( const COLLADAFW::Formulas* formulas ) + { + return true; + } + + virtual bool writeKinematicsScene( const COLLADAFW::KinematicsScene* kinematicsScene ) + { + return true; + } +}; + +void DocumentImporter::import(bContext *C, const char *filename) +{ + Writer w(C, filename); + w.write(); +} diff --git a/source/blender/collada/DocumentImporter.h b/source/blender/collada/DocumentImporter.h new file mode 100644 index 00000000000..5dee101eb2d --- /dev/null +++ b/source/blender/collada/DocumentImporter.h @@ -0,0 +1,8 @@ +struct Main; +struct bContext; + +class DocumentImporter +{ + public: + void import(bContext *C, const char *filename); +}; diff --git a/source/blender/collada/SConscript b/source/blender/collada/SConscript new file mode 100644 index 00000000000..7bf2870d6c5 --- /dev/null +++ b/source/blender/collada/SConscript @@ -0,0 +1,10 @@ +#!/usr/bin/python +Import ('env') + +sources = env.Glob('*.cpp') + +# relative paths to include dirs, space-separated, string +incs = '../blenlib ../blenkernel ../windowmanager ../makesdna ../makesrna ../editors/include ../../../intern/guardedalloc [OPENCOLLADA]/COLLADAStreamWriter/include [OPENCOLLADA]/COLLADABaseUtils/include [OPENCOLLADA]/COLLADAFramework/include [OPENCOLLADA]/COLLADASaxFrameworkLoader/include '.replace('[OPENCOLLADA]', env['BF_OPENCOLLADA_INC']) + +env.BlenderLib ('bf_collada', sources, Split(incs), [], libtype='core', priority=200 ) + diff --git a/source/blender/collada/collada.cpp b/source/blender/collada/collada.cpp new file mode 100644 index 00000000000..5aed51c0ba2 --- /dev/null +++ b/source/blender/collada/collada.cpp @@ -0,0 +1,26 @@ +#include "BKE_main.h" +#include "BKE_scene.h" +#include "BKE_context.h" + +#include "DocumentExporter.h" +#include "DocumentImporter.h" + +extern "C" +{ + int collada_import(bContext *C, const char *filepath) + { + DocumentImporter imp; + imp.import(C, filepath); + + return 1; + } + + int collada_export(Scene *sce, const char *filepath) + { + + DocumentExporter exp; + exp.exportCurrentScene(sce, filepath); + + return 1; + } +} diff --git a/source/blender/collada/collada.h b/source/blender/collada/collada.h new file mode 100644 index 00000000000..cccca072b40 --- /dev/null +++ b/source/blender/collada/collada.h @@ -0,0 +1,19 @@ +#ifndef BLENDER_COLLADA_H +#define BLENDER_COLLADA_H + +struct bContext; +struct Scene; + +#ifdef __cplusplus +extern "C" { +#endif + /* + * both return 1 on success, 0 on error + */ + int collada_import(bContext *C, const char *filepath); + int collada_export(Scene *sce, const char *filepath); +#ifdef __cplusplus +} +#endif + +#endif diff --git a/source/blender/collada/collada_internal.h b/source/blender/collada/collada_internal.h new file mode 100644 index 00000000000..c0d74505f72 --- /dev/null +++ b/source/blender/collada/collada_internal.h @@ -0,0 +1,69 @@ +#ifndef BLENDER_COLLADA_H +#define BLENDER_COLLADA_H + +#include "COLLADAFWFileInfo.h" +#include "Math/COLLADABUMathMatrix4.h" + +class UnitConverter +{ +private: + COLLADAFW::FileInfo::Unit unit; + COLLADAFW::FileInfo::UpAxisType up_axis; + +public: + + UnitConverter() : unit(), up_axis(COLLADAFW::FileInfo::Z_UP) {} + + void read_asset(const COLLADAFW::FileInfo* asset) + { + } + + // TODO + // convert vector vec from COLLADA format to Blender + void convertVec3(float *vec) + { + } + + // TODO need also for angle conversion, time conversion... + + void mat4_from_dae(float out[][4], const COLLADABU::Math::Matrix4& in) + { + // in DAE, matrices use columns vectors, (see comments in COLLADABUMathMatrix4.h) + // so here, to make a blender matrix, we swap columns and rows + for (int i = 0; i < 4; i++) { + for (int j = 0; j < 4; j++) { + out[i][j] = in[j][i]; + } + } + } + + void mat4_to_dae(float out[][4], float in[][4]) + { + Mat4CpyMat4(out, in); + Mat4Transp(out); + } + + void mat4_to_dae_double(double out[][4], float in[][4]) + { + float mat[4][4]; + + mat4_to_dae(mat, in); + + for (int i = 0; i < 4; i++) + for (int j = 0; j < 4; j++) + out[i][j] = mat[i][j]; + } +}; + +class TransformBase +{ +public: + void decompose(float mat[][4], float *loc, float *rot, float *size) + { + Mat4ToSize(mat, size); + Mat4ToEul(mat, rot); + VecCopyf(loc, mat[3]); + } +}; + +#endif diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt index 7deac8a4aa0..ec489e5261a 100644 --- a/source/blender/windowmanager/CMakeLists.txt +++ b/source/blender/windowmanager/CMakeLists.txt @@ -50,6 +50,10 @@ IF(WITH_OPENEXR) ADD_DEFINITIONS(-DWITH_OPENEXR) ENDIF(WITH_OPENEXR) +IF(WITH_OPENCOLLADA) + ADD_DEFINITIONS(-DWITH_COLLADA) +ENDIF(WITH_OPENCOLLADA) + IF(WITH_QUICKTIME) SET(INC ${INC} ../quicktime ${QUICKTIME_INC}) ADD_DEFINITIONS(-DWITH_QUICKTIME) diff --git a/source/blender/windowmanager/SConscript b/source/blender/windowmanager/SConscript index 08a291871f1..c01649485a5 100644 --- a/source/blender/windowmanager/SConscript +++ b/source/blender/windowmanager/SConscript @@ -19,6 +19,9 @@ defs = [] if not env['WITH_BF_PYTHON']: defs.append('DISABLE_PYTHON') +if env['WITH_BF_COLLADA']: + defs.append('WITH_COLLADA') + if env['OURPLATFORM'] == 'linux2': cflags='-pthread' incs += ' ../../../extern/binreloc/include' diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index f82e16b7951..1ab6d0b352e 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1345,6 +1345,105 @@ static void WM_OT_save_mainfile(wmOperatorType *ot) } +/* XXX: move these collada operators to a more appropriate place */ +#ifdef WITH_COLLADA + +#include "../../collada/collada.h" + +static int wm_collada_export_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + //char name[FILE_MAX]; + //BLI_strncpy(name, G.sce, FILE_MAX); + //untitled(name); + + /* RNA_string_set(op->ptr, "path", "/tmp/test.dae"); */ + + WM_event_add_fileselect(C, op); + + return OPERATOR_RUNNING_MODAL; +} + +/* function used for WM_OT_save_mainfile too */ +static int wm_collada_export_exec(bContext *C, wmOperator *op) +{ + char filename[FILE_MAX]; + + if(RNA_property_is_set(op->ptr, "path")) + RNA_string_get(op->ptr, "path", filename); + else { + BLI_strncpy(filename, G.sce, FILE_MAX); + untitled(filename); + } + + //WM_write_file(C, filename, op->reports); + collada_export(CTX_data_scene(C), filename); + + /* WM_event_add_notifier(C, NC_WM|ND_FILESAVE, NULL); */ + + return OPERATOR_FINISHED; +} + +static void WM_OT_collada_export(wmOperatorType *ot) +{ + ot->name= "Export COLLADA"; + ot->idname= "WM_OT_collada_export"; + + ot->invoke= wm_collada_export_invoke; + ot->exec= wm_collada_export_exec; + ot->poll= WM_operator_winactive; + + ot->flag= 0; + + RNA_def_property(ot->srna, "path", PROP_STRING, PROP_FILEPATH); +} + +static int wm_collada_import_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + /* RNA_string_set(op->ptr, "path", "/tmp/test.dae"); */ + + WM_event_add_fileselect(C, op); + + return OPERATOR_RUNNING_MODAL; +} + +/* function used for WM_OT_save_mainfile too */ +static int wm_collada_import_exec(bContext *C, wmOperator *op) +{ + char filename[FILE_MAX]; + + if(RNA_property_is_set(op->ptr, "path")) + RNA_string_get(op->ptr, "path", filename); + else { + BLI_strncpy(filename, G.sce, FILE_MAX); + untitled(filename); + } + + //WM_write_file(C, filename, op->reports); + collada_import(C, filename); + + /* WM_event_add_notifier(C, NC_WM|ND_FILESAVE, NULL); */ + + return OPERATOR_FINISHED; +} + +static void WM_OT_collada_import(wmOperatorType *ot) +{ + ot->name= "Import COLLADA"; + ot->idname= "WM_OT_collada_import"; + + ot->invoke= wm_collada_import_invoke; + ot->exec= wm_collada_import_exec; + ot->poll= WM_operator_winactive; + + ot->flag= 0; + + RNA_def_property(ot->srna, "path", PROP_STRING, PROP_FILEPATH); +} + +#endif + + + /* *********************** */ static void WM_OT_window_fullscreen_toggle(wmOperatorType *ot) @@ -2248,6 +2347,13 @@ void wm_operatortype_init(void) WM_operatortype_append(WM_OT_debug_menu); WM_operatortype_append(WM_OT_search_menu); WM_operatortype_append(WM_OT_call_menu); + +#ifdef WITH_COLLADA + /* XXX: move these */ + WM_operatortype_append(WM_OT_collada_export); + WM_operatortype_append(WM_OT_collada_import); +#endif + } /* default keymap for windows and screens, only call once per WM */ diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index fa59324c5dc..61c0fe187fd 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -378,7 +378,8 @@ IF(UNIX) bf_cineon bf_openexr bf_dds - bf_readblenfile + bf_readblenfile + bf_collada blender_bop bf_kernel bf_decimation diff --git a/tools/Blender.py b/tools/Blender.py index 8a2ef93bb26..94ad485e176 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -161,6 +161,13 @@ def setup_staticlibs(lenv): if lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'): libincs += Split(lenv['BF_PTHREADS_LIBPATH']) + if lenv['WITH_BF_COLLADA']: + libincs += Split(lenv['BF_OPENCOLLADA_LIBPATH']) + if lenv['OURPLATFORM'] not in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'): + libincs += Split(lenv['BF_PCRE_LIBPATH']) + libincs += Split(lenv['BF_EXPAT_LIBPATH']) + + return statlibs, libincs def setup_syslibs(lenv): @@ -211,6 +218,10 @@ def setup_syslibs(lenv): syslibs += Split(lenv['BF_PTHREADS_LIB']) if lenv['WITH_BF_LCMS']: syslibs.append(lenv['BF_LCMS_LIB']) + if lenv['WITH_BF_COLLADA']: + syslibs.append(lenv['BF_PCRE_LIB']) + syslibs += Split(lenv['BF_OPENCOLLADA_LIB']) + syslibs.append(lenv['BF_EXPAT_LIB']) syslibs += lenv['LLIBS'] diff --git a/tools/btools.py b/tools/btools.py index cacff349dcf..4f554a6901b 100755 --- a/tools/btools.py +++ b/tools/btools.py @@ -53,6 +53,7 @@ def validate_arguments(args, bc): 'WITH_BF_QUICKTIME', 'BF_QUICKTIME', 'BF_QUICKTIME_INC', 'BF_QUICKTIME_LIB', 'BF_QUICKTIME_LIBPATH', 'WITH_BF_FFTW3', 'BF_FFTW3', 'BF_FFTW3_INC', 'BF_FFTW3_LIB', 'BF_FFTW3_LIBPATH', 'WITH_BF_STATICOPENGL', 'BF_OPENGL', 'BF_OPENGL_INC', 'BF_OPENGL_LIB', 'BF_OPENGL_LIBPATH', 'BF_OPENGL_LIB_STATIC', + 'WITH_BF_COLLADA', 'BF_COLLADA', 'BF_COLLADA_INC', 'BF_COLLADA_LIB', 'BF_OPENCOLLADA', 'BF_OPENCOLLADA_INC', 'BF_OPENCOLLADA_LIB', 'BF_OPENCOLLADA_LIBPATH', 'BF_PCRE', 'BF_PCRE_LIB', 'BF_PCRE_LIBPATH', 'BF_EXPAT', 'BF_EXPAT_LIB', 'BF_EXPAT_LIBPATH', 'WITH_BF_PLAYER', 'WITH_BF_NOBLENDER', 'WITH_BF_BINRELOC', @@ -333,6 +334,21 @@ def read_opts(cfg, args): ('BF_OPENGL_LIBPATH', 'OpenGL library path', ''), ('BF_OPENGL_LIB_STATIC', 'OpenGL static libraries', ''), ('BF_OPENGL_LINKFLAGS', 'OpenGL link flags', ''), + + (BoolVariable('WITH_BF_COLLADA', 'Build COLLADA import/export module if true', True)), + ('BF_COLLADA', 'COLLADA base path', ''), + ('BF_COLLADA_INC', 'COLLADA include path', ''), + ('BF_COLLADA_LIB', 'COLLADA library', ''), + ('BF_OPENCOLLADA', 'OpenCollada base path', ''), + ('BF_OPENCOLLADA_INC', 'OpenCollada base include path', ''), + ('BF_OPENCOLLADA_LIB', 'OpenCollada library', ''), + ('BF_OPENCOLLADA_LIBPATH', 'OpenCollada library path', ''), + ('BF_PCRE', 'PCRE base path', ''), + ('BF_PCRE_LIB', 'PCRE library', ''), + ('BF_PCRE_LIBPATH', 'PCRE library path', ''), + ('BF_EXPAT', 'Expat base path', ''), + ('BF_EXPAT_LIB', 'Expat library', ''), + ('BF_EXPAT_LIBPATH', 'Expat library path', ''), (BoolVariable('WITH_BF_PLAYER', 'Build blenderplayer if true', False)), (BoolVariable('WITH_BF_NOBLENDER', 'Do not build blender if true', False)), From 89c7ad970c94372ea853fc9b3eb5a79566c93996 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 17:23:40 +0000 Subject: [PATCH 262/412] - setting the active object in rna works properly now (notifiers added) - adding keyframes now works for bones and other data types (not just ID types) # Add a pose bone keyframe bpy.data.objects['Armature.001'].pose.pose_channels["Hip"].keyframe_insert("location") # Add an object keyframe (worked before) bpy.data.objects['Armature.001'].keyframe_insert("location") --- source/blender/makesrna/intern/rna_scene.c | 4 +- source/blender/python/intern/bpy_rna.c | 43 +++++++++++++++++----- 2 files changed, 37 insertions(+), 10 deletions(-) diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index d6dbb7cac5f..e2c239c4010 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2211,7 +2211,9 @@ void RNA_def_scene(BlenderRNA *brna) RNA_def_property_pointer_funcs(prop, "rna_Scene_active_object_get", "rna_Scene_active_object_set", NULL); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Object", "Object to use as projector transform."); - + /* Could call: ED_base_object_activate(C, scene->basact); + * but would be a bad level call and it seems the notifier is enough */ + RNA_def_property_update(prop, NC_SCENE|ND_OB_ACTIVE, NULL); prop= RNA_def_property(srna, "world", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_EDITABLE); diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index cbc75d35bce..50a2213ef28 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1154,19 +1154,43 @@ static PySequenceMethods pyrna_prop_as_sequence = { static PyObject *pyrna_struct_keyframe_insert(BPy_StructRNA * self, PyObject *args) { - char *path; + char *path, *path_full; int index= 0; float cfra = CTX_data_scene(BPy_GetContext())->r.cfra; - - if(!RNA_struct_is_ID(self->ptr.type)) { - PyErr_SetString( PyExc_TypeError, "StructRNA - keyframe_insert only for ID type"); - return NULL; - } + PropertyRNA *prop; + PyObject *result; if (!PyArg_ParseTuple(args, "s|if:keyframe_insert", &path, &index, &cfra)) return NULL; - return PyBool_FromLong( insert_keyframe((ID *)self->ptr.data, NULL, NULL, path, index, cfra, 0)); + if (self->ptr.data==NULL) { + PyErr_Format( PyExc_TypeError, "keyframe_insert, this struct has no data, cant be animated", path); + return NULL; + } + + prop = RNA_struct_find_property(&self->ptr, path); + + if (prop==NULL) { + PyErr_Format( PyExc_TypeError, "keyframe_insert, property \"%s\" not found", path); + return NULL; + } + + if (!RNA_property_animateable(&self->ptr, prop)) { + PyErr_Format( PyExc_TypeError, "keyframe_insert, property \"%s\" not animatable", path); + return NULL; + } + + path_full= RNA_path_from_ID_to_property(&self->ptr, prop); + + if (path_full==NULL) { + PyErr_Format( PyExc_TypeError, "keyframe_insert, could not make path to \"%s\"", path); + return NULL; + } + + result= PyBool_FromLong( insert_keyframe((ID *)self->ptr.id.data, NULL, NULL, path_full, index, cfra, 0)); + MEM_freeN(path_full); + + return result; } static PyObject *pyrna_struct_is_property_set(BPy_StructRNA * self, PyObject *args) @@ -1366,10 +1390,11 @@ static int pyrna_struct_setattro( BPy_StructRNA * self, PyObject *pyname, PyObje PropertyRNA *prop = RNA_struct_find_property(&self->ptr, name); if (prop==NULL) { + // XXX - This currently allows anything to be assigned to an rna prop, need to see how this should be used + // but for now it makes porting scripts confusing since it fails silently. if (!BPy_StructRNA_CheckExact(self) && PyObject_GenericSetAttr((PyObject *)self, pyname, value) >= 0) { return 0; - } - else { + } else { PyErr_Format( PyExc_AttributeError, "StructRNA - Attribute \"%.200s\" not found", name); return -1; } From d5921a274fd925aaabcd7a29762d63e0dab390cf Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Fri, 30 Oct 2009 17:48:50 +0000 Subject: [PATCH 263/412] Proportional edit for object mode. Limitations: 1) Parents and children of selected objects are excluded from the pool (siblings are ok) Making it work with that would required unparenting and reparenting after transform, that would turn nasty really quick. 2) Does not support Connected (this could be done through parent links, but see 3 first). 3) Parent relationships in affected objects aren't taken into account. When parent and children in the area of effect, remember that the children will also take the motion of the parents (with additive results). This could perhaps be fixed, but it could be nasty. Other stuff: New BASE_EDITABLE macro that checks if base is editable (like TESTBASELIB except it doesn't check for selection) Add scene parameter to TESTBASELIB_BGMODE macro (using it from current scope is nasty) --- source/blender/blenkernel/intern/multires.c | 4 +- source/blender/editors/object/object_ops.c | 9 +- .../editors/space_view3d/view3d_header.c | 2 +- .../editors/transform/transform_conversions.c | 143 ++++++++++++++++-- .../editors/transform/transform_generics.c | 2 +- source/blender/makesdna/DNA_object_types.h | 3 +- source/blender/makesdna/DNA_scene_types.h | 3 +- 7 files changed, 142 insertions(+), 24 deletions(-) diff --git a/source/blender/blenkernel/intern/multires.c b/source/blender/blenkernel/intern/multires.c index ecffbb3d15f..e1a51a05ca4 100644 --- a/source/blender/blenkernel/intern/multires.c +++ b/source/blender/blenkernel/intern/multires.c @@ -101,7 +101,7 @@ void multiresModifier_join(Object *ob) /* First find the highest level of subdivision */ base = FIRSTBASE; while(base) { - if(TESTBASELIB_BGMODE(v3d, base) && base->object->type==OB_MESH) { + if(TESTBASELIB_BGMODE(v3d, scene, base) && base->object->type==OB_MESH) { ModifierData *md; for(md = base->object->modifiers.first; md; md = md->next) { if(md->type == eModifierType_Multires) { @@ -124,7 +124,7 @@ void multiresModifier_join(Object *ob) /* Subdivide all the displacements to the highest level */ base = FIRSTBASE; while(base) { - if(TESTBASELIB_BGMODE(v3d, base) && base->object->type==OB_MESH) { + if(TESTBASELIB_BGMODE(v3d, scene, base) && base->object->type==OB_MESH) { ModifierData *md = NULL; MultiresModifierData *mmd = NULL; diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 2daa95577e1..85211f12a0c 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -196,7 +196,8 @@ void ED_operatormacros_object(void) ot= WM_operatortype_append_macro("OBJECT_OT_duplicate_move", "Duplicate", OPTYPE_UNDO|OPTYPE_REGISTER); if(ot) { WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); - WM_operatortype_macro_define(ot, "TFM_OT_translate"); + otmacro= WM_operatortype_macro_define(ot, "TFM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", PROP_EDIT_OFF); } /* grr, should be able to pass options on... */ @@ -204,7 +205,8 @@ void ED_operatormacros_object(void) if(ot) { otmacro= WM_operatortype_macro_define(ot, "OBJECT_OT_duplicate"); RNA_boolean_set(otmacro->ptr, "linked", 1); - WM_operatortype_macro_define(ot, "TFM_OT_translate"); + otmacro= WM_operatortype_macro_define(ot, "TFM_OT_translate"); + RNA_enum_set(otmacro->ptr, "proportional", PROP_EDIT_OFF); } } @@ -238,6 +240,9 @@ void ED_keymap_object(wmKeyConfig *keyconf) keymap= WM_keymap_find(keyconf, "Object Mode", 0, 0); keymap->poll= object_mode_poll; + /* object mode supports PET now */ + ED_object_generic_keymap(keyconf, keymap, TRUE); + WM_keymap_add_item(keymap, "OBJECT_OT_select_all_toggle", AKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "OBJECT_OT_select_inverse", IKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "OBJECT_OT_select_linked", LKEY, KM_PRESS, KM_SHIFT, 0); diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 7bf50dcd5af..6e8c1b60278 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -2162,7 +2162,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) } /* proportional falloff */ - if((obedit && (obedit->type == OB_MESH || obedit->type == OB_CURVE || obedit->type == OB_SURF || obedit->type == OB_LATTICE)) || (ob && ob->mode & OB_MODE_PARTICLE_EDIT)) { + if((obedit == NULL || (obedit->type == OB_MESH || obedit->type == OB_CURVE || obedit->type == OB_SURF || obedit->type == OB_LATTICE)) || (ob && ob->mode & OB_MODE_PARTICLE_EDIT)) { uiBlockBeginAlign(block); uiDefIconTextButS(block, ICONTEXTROW,B_REDR, ICON_PROP_OFF, "Proportional %t|Off %x0|On %x1|Connected %x2", xco,yco,XIC+10,YIC, &(ts->proportional), 0, 1.0, 0, 0, "Proportional Edit Falloff (Hotkeys: O, Alt O) "); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 0ff0e400d26..449994f2cec 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4314,7 +4314,7 @@ static void ObjectToTransData(bContext *C, TransInfo *t, TransData *td, Object * /* it deselects Bases, so we have to call the clear function always after */ static void set_trans_object_base_flags(bContext *C, TransInfo *t) { - Scene *scene = CTX_data_scene(C); + Scene *scene = t->scene; View3D *v3d = t->view; /* @@ -4339,7 +4339,7 @@ static void set_trans_object_base_flags(bContext *C, TransInfo *t) for (base= scene->base.first; base; base= base->next) { base->flag &= ~BA_WAS_SEL; - if(TESTBASELIB_BGMODE(v3d, base)) { + if(TESTBASELIB_BGMODE(v3d, scene, base)) { Object *ob= base->object; Object *parsel= ob->parent; @@ -4351,12 +4351,10 @@ static void set_trans_object_base_flags(bContext *C, TransInfo *t) if(parsel) { - if ((t->mode == TFM_ROTATION || t->mode == TFM_TRACKBALL) && t->around == V3D_LOCAL) - { + /* rotation around local centers are allowed to propagate */ + if ((t->mode == TFM_ROTATION || t->mode == TFM_TRACKBALL) && t->around == V3D_LOCAL) { base->flag |= BA_TRANSFORM_CHILD; - } - else - { + } else { base->flag &= ~SELECT; base->flag |= BA_WAS_SEL; } @@ -4379,6 +4377,86 @@ static void set_trans_object_base_flags(bContext *C, TransInfo *t) } } +static int mark_children(Object *ob) +{ + if (ob->flag & (SELECT|BA_TRANSFORM_CHILD)) + return 1; + + if (ob->parent) + { + if (mark_children(ob->parent)) + { + ob->flag |= BA_TRANSFORM_CHILD; + return 1; + } + } + + return 0; +} + +static int count_proportional_objects(TransInfo *t) +{ + int total = 0; + Scene *scene = t->scene; + View3D *v3d = t->view; + Base *base; + + /* rotations around local centers are allowed to propagate, so we take all objects */ + if (!((t->mode == TFM_ROTATION || t->mode == TFM_TRACKBALL) && t->around == V3D_LOCAL)) + { + /* mark all parents */ + for (base= scene->base.first; base; base= base->next) { + if(TESTBASELIB_BGMODE(v3d, scene, base)) { + Object *parent = base->object->parent; + + /* flag all parents */ + while(parent) { + parent->flag |= BA_TRANSFORM_PARENT; + parent = parent->parent; + } + } + } + + /* mark all children */ + for (base= scene->base.first; base; base= base->next) { + /* all base not already selected or marked that is editable */ + if ((base->object->flag & (SELECT|BA_TRANSFORM_CHILD|BA_TRANSFORM_PARENT)) == 0 && BASE_EDITABLE_BGMODE(v3d, scene, base)) + { + mark_children(base->object); + } + } + } + + for (base= scene->base.first; base; base= base->next) { + Object *ob= base->object; + + /* if base is not selected, not a parent of selection or not a child of selection and it is editable */ + if ((ob->flag & (SELECT|BA_TRANSFORM_CHILD|BA_TRANSFORM_PARENT)) == 0 && BASE_EDITABLE_BGMODE(v3d, scene, base)) + { + + /* used for flush, depgraph will change recalcs if needed :) */ + ob->recalc |= OB_RECALC_OB; + + total += 1; + } + } + + + /* all recalc flags get flushed to all layers, so a layer flip later on works fine */ + DAG_scene_flush_update(t->scene, -1, 0); + + /* and we store them temporal in base (only used for transform code) */ + /* this because after doing updates, the object->recalc is cleared */ + for (base= scene->base.first; base; base= base->next) { + if(base->object->recalc & OB_RECALC_OB) + base->flag |= BA_HAS_RECALC_OB; + if(base->object->recalc & OB_RECALC_DATA) + base->flag |= BA_HAS_RECALC_DATA; + } + + return total; +} + static void clear_trans_object_base_flags(TransInfo *t) { Scene *sce = t->scene; @@ -4389,7 +4467,7 @@ static void clear_trans_object_base_flags(TransInfo *t) if(base->flag & BA_WAS_SEL) base->flag |= SELECT; - base->flag &= ~(BA_WAS_SEL|BA_HAS_RECALC_OB|BA_HAS_RECALC_DATA|BA_DO_IPO|BA_TRANSFORM_CHILD); + base->flag &= ~(BA_WAS_SEL|BA_HAS_RECALC_OB|BA_HAS_RECALC_DATA|BA_DO_IPO|BA_TRANSFORM_CHILD|BA_TRANSFORM_PARENT); } } @@ -4972,19 +5050,23 @@ static void createTransObject(bContext *C, TransInfo *t) { TransData *td = NULL; TransDataExtension *tx; -// IpoKey *ik; -// ListBase elems; + int propmode = t->flag & T_PROP_EDIT; set_trans_object_base_flags(C, t); /* count */ t->total= CTX_DATA_COUNT(C, selected_objects); - + if(!t->total) { /* clear here, main transform function escapes too */ clear_trans_object_base_flags(t); return; } + + if (propmode) + { + t->total += count_proportional_objects(t); + } td = t->data = MEM_callocN(t->total*sizeof(TransData), "TransOb"); tx = t->ext = MEM_callocN(t->total*sizeof(TransDataExtension), "TransObExtension"); @@ -5015,6 +5097,30 @@ static void createTransObject(bContext *C, TransInfo *t) tx++; } CTX_DATA_END; + + if (propmode) + { + Scene *scene = t->scene; + View3D *v3d = t->view; + Base *base; + + for (base= scene->base.first; base; base= base->next) { + Object *ob= base->object; + + /* if base is not selected, not a parent of selection or not a child of selection and it is editable */ + if ((ob->flag & (SELECT|BA_TRANSFORM_CHILD|BA_TRANSFORM_PARENT)) == 0 && BASE_EDITABLE_BGMODE(v3d, scene, base)) + { + td->protectflag= ob->protectflag; + td->ext = tx; + td->rotOrder= ob->rotmode; + + ObjectToTransData(C, t, td, ob); + td->val = NULL; + td++; + tx++; + } + } + } } /* transcribe given node into TransData2D for Transforming */ @@ -5145,6 +5251,8 @@ void createTransData(bContext *C, TransInfo *t) printf("edit type not implemented!\n"); } + t->flag |= T_EDIT|T_POINTS; + if(t->data && t->flag & T_PROP_EDIT) { if (ELEM(t->obedit->type, OB_CURVE, OB_MESH)) { sort_trans_data(t); // makes selected become first in array @@ -5158,8 +5266,6 @@ void createTransData(bContext *C, TransInfo *t) } } - t->flag |= T_EDIT|T_POINTS; - /* exception... hackish, we want bonesize to use bone orientation matrix (ton) */ if(t->mode==TFM_BONESIZE) { t->flag &= ~(T_EDIT|T_POINTS); @@ -5190,22 +5296,27 @@ void createTransData(bContext *C, TransInfo *t) else if (ob && (ob->mode & OB_MODE_PARTICLE_EDIT) && PE_start_edit(PE_get_current(scene, ob))) { createTransParticleVerts(C, t); + t->flag |= T_POINTS; if(t->data && t->flag & T_PROP_EDIT) { sort_trans_data(t); // makes selected become first in array set_prop_dist(t, 1); sort_trans_data_dist(t); } - - t->flag |= T_POINTS; } else { - t->flag &= ~T_PROP_EDIT; /* no proportional edit in object mode */ + // t->flag &= ~T_PROP_EDIT; /* no proportional edit in object mode */ t->options |= CTX_NO_PET; createTransObject(C, t); t->flag |= T_OBJECT; + if(t->data && t->flag & T_PROP_EDIT) { + // selected objects are already first, no need to presort + set_prop_dist(t, 1); + sort_trans_data_dist(t); + } + if (t->ar->regiontype == RGN_TYPE_WINDOW) { View3D *v3d = t->view; diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 32078cb5826..fc3661c1102 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -1004,7 +1004,7 @@ int initTransInfo (bContext *C, TransInfo *t, wmOperator *op, wmEvent *event) t->flag |= T_PROP_EDIT; if(ts->proportional == PROP_EDIT_CONNECTED) - t->flag |= T_PROP_CONNECTED; // yes i know, has to become define + t->flag |= T_PROP_CONNECTED; } } diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h index 267e0192247..d780aec7895 100644 --- a/source/blender/makesdna/DNA_object_types.h +++ b/source/blender/makesdna/DNA_object_types.h @@ -413,9 +413,10 @@ extern Object workob; #define BA_FROMSET 128 #define BA_TRANSFORM_CHILD 256 /* child of a transformed object */ +#define BA_TRANSFORM_PARENT 8192 /* parent of a transformed object */ /* an initial attempt as making selection more specific! */ -#define BA_DESELECT 0 +#define BA_DESELECT 0 #define BA_SELECT 1 diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 952f62942ef..bafe8cc3162 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -956,7 +956,8 @@ typedef struct Scene { /* depricate this! */ #define TESTBASE(v3d, base) ( ((base)->flag & SELECT) && ((base)->lay & v3d->lay) && (((base)->object->restrictflag & OB_RESTRICT_VIEW)==0) ) #define TESTBASELIB(v3d, base) ( ((base)->flag & SELECT) && ((base)->lay & v3d->lay) && ((base)->object->id.lib==0) && (((base)->object->restrictflag & OB_RESTRICT_VIEW)==0)) -#define TESTBASELIB_BGMODE(v3d, base) ( ((base)->flag & SELECT) && ((base)->lay & (v3d ? v3d->lay : scene->lay)) && ((base)->object->id.lib==0) && (((base)->object->restrictflag & OB_RESTRICT_VIEW)==0)) +#define TESTBASELIB_BGMODE(v3d, scene, base) ( ((base)->flag & SELECT) && ((base)->lay & (v3d ? v3d->lay : scene->lay)) && ((base)->object->id.lib==0) && (((base)->object->restrictflag & OB_RESTRICT_VIEW)==0)) +#define BASE_EDITABLE_BGMODE(v3d, scene, base) (((base)->lay & (v3d ? v3d->lay : scene->lay)) && ((base)->object->id.lib==0) && (((base)->object->restrictflag & OB_RESTRICT_VIEW)==0)) #define BASE_SELECTABLE(v3d, base) ((base->lay & v3d->lay) && (base->object->restrictflag & (OB_RESTRICT_SELECT|OB_RESTRICT_VIEW))==0) #define FIRSTBASE scene->base.first #define LASTBASE scene->base.last From ac8480f42a4ddd0e66ac572f361b429b5860fd64 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Fri, 30 Oct 2009 17:50:45 +0000 Subject: [PATCH 264/412] Revert changes committed by accident in 24168 (this was experimental code for "ladder-like" mouse adjustment of float values) --- .../editors/interface/interface_handlers.c | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index c40c2aeb32c..5cdf3b9dcc8 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -2034,10 +2034,9 @@ static float ui_numedit_apply_snap(int temp, float softmin, float softmax, int s return temp; } -static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, int snap, int mx, int my) +static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, int snap, int mx) { float deler, tempf, softmin, softmax, softrange; - float ladder = powf(10.0, floorf((my - data->dragstarty) / 100.0f)); int lvalue, temp, changed= 0; if(mx == data->draglastx) @@ -2063,7 +2062,7 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i * 2px == 1-int, or 1px == 1-ClickStep */ if(ui_is_but_float(but)) { fac *= 0.01*but->a1; - tempf = data->startvalue + ((mx - data->dragstartx) * fac) * ladder; + tempf = data->startvalue + ((mx - data->dragstartx) * fac); tempf= ui_numedit_apply_snapf(tempf, softmin, softmax, softrange, snap); #if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ @@ -2087,7 +2086,7 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i else { fac = 0.5; /* simple 2px == 1 */ - temp= data->startvalue + ((mx - data->dragstartx) * fac) * ladder; + temp= data->startvalue + ((mx - data->dragstartx) * fac); temp= ui_numedit_apply_snap(temp, softmin, softmax, snap); #if 1 /* fake moving the click start, nicer for dragging back after passing the limit */ @@ -2122,13 +2121,13 @@ static int ui_numedit_but_NUM(uiBut *but, uiHandleButtonData *data, float fac, i if(ui_is_but_float(but) && softrange > 11) { /* non linear change in mouse input- good for high precicsion */ - data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.002)*ladder; + data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.002); } else if (!ui_is_but_float(but) && softrange > 129) { /* only scale large int buttons */ /* non linear change in mouse input- good for high precicsionm ints need less fine tuning */ - data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.004)*ladder; + data->dragf+= (((float)(mx-data->draglastx))/deler) * (fabs(data->dragstartx-mx)*0.004); } else { /*no scaling */ - data->dragf+= ((float)(mx-data->draglastx))/deler*ladder ; + data->dragf+= ((float)(mx-data->draglastx))/deler ; } if(data->dragf>1.0) data->dragf= 1.0; @@ -2198,7 +2197,6 @@ static int ui_do_but_NUM(bContext *C, uiBlock *block, uiBut *but, uiHandleButton } else if(event->type == LEFTMOUSE) { data->dragstartx= data->draglastx= ui_is_a_warp_but(but) ? screen_mx:mx; - data->dragstarty= data->draglasty= ui_is_a_warp_but(but) ? screen_my:my; button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } @@ -2237,7 +2235,7 @@ static int ui_do_but_NUM(bContext *C, uiBlock *block, uiBut *but, uiHandleButton snap= (event->ctrl)? (event->shift)? 2: 1: 0; - if(ui_numedit_but_NUM(but, data, fac, snap, (ui_is_a_warp_but(but) ? screen_mx:mx), (ui_is_a_warp_but(but) ? screen_my:my))) + if(ui_numedit_but_NUM(but, data, fac, snap, (ui_is_a_warp_but(but) ? screen_mx:mx))) ui_numedit_apply(C, block, but, data); } retval= WM_UI_HANDLER_BREAK; @@ -2423,9 +2421,7 @@ static int ui_do_but_SLI(bContext *C, uiBlock *block, uiBut *but, uiHandleButton } else if(event->type == LEFTMOUSE) { data->dragstartx= mx; - data->dragstarty= my; data->draglastx= mx; - data->draglasty= my; button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } @@ -2526,10 +2522,14 @@ static int ui_do_but_SCROLL(bContext *C, uiBlock *block, uiBut *but, uiHandleBut if(data->state == BUTTON_STATE_HIGHLIGHT) { if(event->val==KM_PRESS) { if(event->type == LEFTMOUSE) { - data->dragstartx= mx; - data->draglastx= mx; - data->dragstartx= my; - data->draglastx= my; + if(horizontal) { + data->dragstartx= mx; + data->draglastx= mx; + } + else { + data->dragstartx= my; + data->draglastx= my; + } button_activate_state(C, but, BUTTON_STATE_NUM_EDITING); retval= WM_UI_HANDLER_BREAK; } From c47a768af718a87044a96baa65f55d6ee4aaae5b Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 30 Oct 2009 19:31:44 +0000 Subject: [PATCH 265/412] 2.5 Nodes: * Wrapped Math, Vector Math and Texture Node. --- source/blender/editors/space_node/drawnode.c | 59 ++------------------ 1 file changed, 5 insertions(+), 54 deletions(-) diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 0326e32e0e0..403a8d1a591 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -148,16 +148,6 @@ static void node_ID_title_cb(bContext *C, void *node_v, void *unused_v) } } - -static void node_but_title_cb(bContext *C, void *node_v, void *but_v) -{ - // bNode *node= node_v; - // XXX uiBut *bt= but_v; - // XXX BLI_strncpy(node->name, bt->drawstr, NODE_MAXSTR); - - // allqueue(REDRAWNODE, 0); -} - #if 0 /* XXX not used yet, make compiler happy :) */ static void node_group_alone_cb(bContext *C, void *node_v, void *unused_v) @@ -389,10 +379,7 @@ static void node_dynamic_update_cb(bContext *C, void *ntree_v, void *node_v) static void node_buts_texture(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); bNode *node= ptr->data; - bNodeTree *ntree= ptr->id.data; - rctf *butr= &node->butr; short multi = ( node->id && @@ -401,47 +388,19 @@ static void node_buts_texture(uiLayout *layout, PointerRNA *ptr) (node->type != TEX_NODE_TEXTURE) ); - uiBut *bt; - char *strp; - short width = (short)(butr->xmax - butr->xmin); - - /* browse button texture */ - uiBlockBeginAlign(block); - IDnames_to_pupstring(&strp, NULL, "", &(G.main->tex), NULL, NULL); - node->menunr= 0; - bt= uiDefButS(block, MENU, B_NODE_EXEC, strp, - butr->xmin, butr->ymin+(multi?30:0), 20, 19, - &node->menunr, 0, 0, 0, 0, "Browse texture"); - uiButSetFunc(bt, node_browse_tex_cb, ntree, node); - if(strp) MEM_freeN(strp); - - if(node->id) { - bt= uiDefBut(block, TEX, B_NOP, "TE:", - butr->xmin+19, butr->ymin+(multi?30:0), butr->xmax-butr->xmin-19, 19, - node->id->name+2, 0.0, 19.0, 0, 0, "Texture name"); - uiButSetFunc(bt, node_ID_title_cb, node, NULL); - } - uiBlockEndAlign(block); + uiItemR(layout, "", 0, ptr, "texture", 0); if(multi) { - char *menustr = ntreeTexOutputMenu(((Tex*)node->id)->nodetree); - uiDefButS(block, MENU, B_MATPRV, menustr, butr->xmin, butr->ymin, width, 19, &node->custom1, 0, 0, 0, 0, "Which output to use, for multi-output textures"); - free(menustr); + /* Number Drawing not optimal here, better have a list*/ + uiItemR(layout, "", 0, ptr, "node_output", 0); } } static void node_buts_math(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - rctf *butr= &node->butr; - uiBut *bt; - - bt=uiDefButS(block, MENU, B_NODE_EXEC, "Add %x0|Subtract %x1|Multiply %x2|Divide %x3|Sine %x4|Cosine %x5|Tangent %x6|Arcsine %x7|Arccosine %x8|Arctangent %x9|Power %x10|Logarithm %x11|Minimum %x12|Maximum %x13|Round %x14|Less Than %x15|Greater Than %x16", butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, &node->custom1, 0, 0, 0, 0, ""); - uiButSetFunc(bt, node_but_title_cb, node, bt); + uiItemR(layout, "", 0, ptr, "operation", 0); } - /* ****************** BUTTON CALLBACKS FOR SHADER NODES ***************** */ static void node_browse_text_cb(bContext *C, void *ntree_v, void *node_v) @@ -664,13 +623,7 @@ static void node_shader_buts_mapping(uiLayout *layout, PointerRNA *ptr) static void node_shader_buts_vect_math(uiLayout *layout, PointerRNA *ptr) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - bNode *node= ptr->data; - rctf *butr= &node->butr; - uiBut *bt; - - bt=uiDefButS(block, MENU, B_NODE_EXEC, "Add %x0|Subtract %x1|Average %x2|Dot Product %x3 |Cross Product %x4|Normalize %x5", butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, &node->custom1, 0, 0, 0, 0, ""); - uiButSetFunc(bt, node_but_title_cb, node, bt); + uiItemR(layout, "", 0, ptr, "operation", 0); } static void node_shader_buts_geometry(uiLayout *layout, PointerRNA *ptr) @@ -786,8 +739,6 @@ static void node_shader_set_butfunc(bNodeType *ntype) /* ****************** BUTTON CALLBACKS FOR COMPOSITE NODES ***************** */ - - static void node_browse_image_cb(bContext *C, void *ntree_v, void *node_v) { bNodeTree *ntree= ntree_v; From f03257cc1f68e6448b8c45e9053d894d275f44cb Mon Sep 17 00:00:00 2001 From: William Reynish Date: Fri, 30 Oct 2009 20:02:56 +0000 Subject: [PATCH 266/412] B.blend update Received some additional feedback on the various screens *Added Game Logic screen, with Logic editor, text editor, outliner and 3D view *Added Properties screen, good for having direct access to loads of properties on a second monitor *Tweaked UV Editing screen, removing timeline, and providing access to texture mapping and texture layers *Tweaked Compositing screen, adding image editor and 3D view camera, and providing fast access to passes. *Reordered some panels in the N-key area *Added n-key properties area in the sequencer. --- source/blender/editors/datafiles/B.blend.c | 23547 +++++++++++-------- 1 file changed, 14032 insertions(+), 9515 deletions(-) diff --git a/source/blender/editors/datafiles/B.blend.c b/source/blender/editors/datafiles/B.blend.c index db112c60ebb..039221d1cc4 100644 --- a/source/blender/editors/datafiles/B.blend.c +++ b/source/blender/editors/datafiles/B.blend.c @@ -1,7838 +1,12353 @@ -/* DataToC output of file */ +/* DataToC output of file */ -int datatoc_B_blend_size= 324896; +int datatoc_B_blend_size= 469420; char datatoc_B_blend[]= { - 66, 76, 69, 78, 68, 69, 82, 45,118, 50, 53, 48, 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 71, 76, 79, 66, 24, 1, 0, 0,224,236,191, 95,255,127, 0, 0,196, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 55, - 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1,160,182, 42, 3, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 16, 0, 0, -128, 32, 4, 0, 47, 85,115,101,114,115, 47, 87,105,108,108,105, 97,109, 47, 46, 66, 50, 53, 46, 98,108,101,110,100, 0,191, 95, -255,127, 0, 0, 84,172,195, 2, 1, 0, 0, 0,112,237,191, 95,255,127, 0, 0,134,188, 91, 0, 1, 0, 0, 0, 80,237,191, 95, -255,127, 0, 0,208, 50,197, 2, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0,176, 65,150, 27, 1, 0, 0, 0,144,237,191, 95, -255,127, 0, 0, 48,172,195, 2, 1, 0, 0, 0,192,237,191, 95,255,127, 0, 0,253,190, 91, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 32, 0, 0, 0, 82, 69, 78, 68,176, 65,150, 27, 1, 0, 0, 0, 82, 69, 78, 68, - 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,232,237,191, 95,255,127, 0, 0, 16,238,191, 95, -255,127, 0, 0, 9,198, 91, 0, 1, 0, 0, 0, 16, 76, 41, 3, 1, 0, 0, 0,176, 65,150, 27, 1, 0, 0, 0, 1, 0, 0, 0, -250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 0, 0, 8, 1, 0, 0, 48, 79, 41, 3, - 1, 0, 0, 0, 95, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 87,105,110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0,128, 80, 41, 3, - 1, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0,128, 80, 41, 3, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 46, 13, 3, - 1, 0, 0, 0,112,216,222, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,168,121, 22, - 1, 0, 0, 0, 32,153,105, 29, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 75, 36, 3, - 1, 0, 0, 0, 48, 75, 36, 3, 1, 0, 0, 0, 48, 75, 36, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 76, 36, 3, - 1, 0, 0, 0, 16, 76, 36, 3, 1, 0, 0, 0, 16, 76, 36, 3, 1, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,128, 80, 41, 3, - 1, 0, 0, 0, 96, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 84, 36, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,115, 99,114,101, -101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 46, 4, 0, 0, 0, 0, 1, 0,238, 3, 0, 0, 1, 0, 0, 0, 0, 0,208, 68,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,223, 36, 3, 1, 0, 0, 0, 96, 77, 31, 25, - 1, 0, 0, 0, 96, 77, 31, 25, 1, 0, 0, 0,176, 58, 14, 3, 1, 0, 0, 0,112,103,120, 22, 1, 0, 0, 0,224,104,120, 22, - 1, 0, 0, 0,224,104,120, 22, 1, 0, 0, 0, 48,211, 30, 25, 1, 0, 0, 0, 64, 77, 98, 29, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,160, 81, 41, 3, 1, 0, 0, 0,190, 0, 0, 0, - 1, 0, 0, 0, 0, 78, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 82, 65,110,105,109, 97,116,105,111,110, 0, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 82, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 48, 90, 41, 3, - 1, 0, 0, 0,208,101, 41, 3, 1, 0, 0, 0, 48,102, 41, 3, 1, 0, 0, 0,208, 59, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 82, 41, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 83, 41, 3, - 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 84, 41, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 85, 41, 3, - 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 19, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 85, 41, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 44, 6,184, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,184, 1, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 86, 41, 3, - 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 87, 41, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 2, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 88, 41, 3, - 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2,224, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 88, 41, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,124, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2,124, 3, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 89, 41, 3, - 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 40, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 89, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 40, 3, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 90, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 90, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 83, 41, 3, - 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 90, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 90, 41, 3, 1, 0, 0, 0, 48, 90, 41, 3, 1, 0, 0, 0, 16, 83, 41, 3, - 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 90, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 91, 41, 3, 1, 0, 0, 0,144, 90, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, - 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 91, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 91, 41, 3, 1, 0, 0, 0,240, 90, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, - 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 91, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 92, 41, 3, 1, 0, 0, 0, 80, 91, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, - 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 92, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 92, 41, 3, 1, 0, 0, 0,176, 91, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, - 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 92, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 92, 41, 3, 1, 0, 0, 0, 16, 92, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, - 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 92, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 93, 41, 3, 1, 0, 0, 0,112, 92, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, - 1, 0, 0, 0,176, 85, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 93, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 93, 41, 3, 1, 0, 0, 0,208, 92, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, - 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 93, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 93, 41, 3, 1, 0, 0, 0, 48, 93, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, - 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 93, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 94, 41, 3, 1, 0, 0, 0,144, 93, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, - 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 94, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 94, 41, 3, 1, 0, 0, 0,240, 93, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, - 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 94, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 95, 41, 3, 1, 0, 0, 0, 80, 94, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, - 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 95, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 95, 41, 3, 1, 0, 0, 0,176, 94, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, - 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 95, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 95, 41, 3, 1, 0, 0, 0, 16, 95, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, - 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 95, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 96, 41, 3, 1, 0, 0, 0,112, 95, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, - 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 96, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 96, 41, 3, 1, 0, 0, 0,208, 95, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, - 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 96, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 96, 41, 3, 1, 0, 0, 0, 48, 96, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, - 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 96, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 97, 41, 3, 1, 0, 0, 0,144, 96, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, - 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 97, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 97, 41, 3, 1, 0, 0, 0,240, 96, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, - 1, 0, 0, 0,240, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 97, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 98, 41, 3, 1, 0, 0, 0, 80, 97, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, - 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 98, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 98, 41, 3, 1, 0, 0, 0,176, 97, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, - 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 98, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 98, 41, 3, 1, 0, 0, 0, 16, 98, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, - 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 98, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 99, 41, 3, 1, 0, 0, 0,112, 98, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, - 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 99, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 99, 41, 3, 1, 0, 0, 0,208, 98, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, - 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 99, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 99, 41, 3, 1, 0, 0, 0, 48, 99, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, - 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 99, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,100, 41, 3, 1, 0, 0, 0,144, 99, 41, 3, 1, 0, 0, 0,176, 88, 41, 3, - 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,100, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,100, 41, 3, 1, 0, 0, 0,240, 99, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, - 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,100, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,101, 41, 3, 1, 0, 0, 0, 80,100, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, - 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,101, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,101, 41, 3, 1, 0, 0, 0,176,100, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, - 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,101, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,101, 41, 3, 1, 0, 0, 0, 16,101, 41, 3, 1, 0, 0, 0, 16, 86, 41, 3, - 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,101, 41, 3, - 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,101, 41, 3, 1, 0, 0, 0,112, 89, 41, 3, - 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48,102, 41, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 84, 41, 3, - 1, 0, 0, 0, 16, 83, 41, 3, 1, 0, 0, 0,112, 83, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, - 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,128, 77, 42, 3, 1, 0, 0, 0,128, 77, 42, 3, 1, 0, 0, 0, 16,103, 41, 3, - 1, 0, 0, 0,112,104, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,123,145, 27, - 1, 0, 0, 0,112,162,145, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,103, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112,104, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,104, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,103, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, - 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0,240,153, 41, 3, 1, 0, 0, 0, 48,102, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, - 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0,208, 83, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0, -128, 7, 0, 0, 0, 0, 0, 0,183, 1, 0, 0, 4, 4, 84, 1,184, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, - 1, 0, 0, 0, 96,145, 41, 3, 1, 0, 0, 0,144,152, 41, 3, 1, 0, 0, 0,176,106, 41, 3, 1, 0, 0, 0, 16,108, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,143,149, 27, 1, 0, 0, 0, 48, 61,149, 27, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,106, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,108, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,170, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, - 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 84, 1, 31, 0, 84, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,153, 1, 0, 0,183, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,108, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,106, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 67, 0,128,195,195, 0, 0, 0, 0, 0, 0, 0, 0, - 1,128,161, 67, 2,128,195,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, - 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0, 84, 1,153, 1, 67, 1,135, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,225, 30, 25, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,152, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84, 1,153, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,109, 41, 3, 1, 0, 0, 0,208,143, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,109, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,111, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, - 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, - 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116, -101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, - 67, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,111, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,112, 41, 3, 1, 0, 0, 0,112,109, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,112, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,114, 41, 3, - 1, 0, 0, 0, 0,111, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101, -114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,114, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,115, 41, 3, 1, 0, 0, 0,144,112, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,115, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,117, 41, 3, - 1, 0, 0, 0, 32,114, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, - 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, - 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,117, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,118, 41, 3, 1, 0, 0, 0,176,115, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,118, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,120, 41, 3, - 1, 0, 0, 0, 64,117, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112, -117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, - 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,120, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,121, 41, 3, 1, 0, 0, 0,208,118, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,121, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,123, 41, 3, - 1, 0, 0, 0, 96,120, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, - 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,123, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,240,121, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,126, 41, 3, - 1, 0, 0, 0,128,123, 41, 3, 1, 0, 0, 0, 16,128,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116, -115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255, - 67, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,126, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,128, 41, 3, 1, 0, 0, 0, 16,125, 41, 3, 1, 0, 0, 0,240,132,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, 67, 1, 69, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,128, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,129, 41, 3, - 1, 0, 0, 0,160,126, 41, 3, 1, 0, 0, 0,176,142,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118, -105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254, - 67, 1, 36, 0, 20, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,129, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,131, 41, 3, 1, 0, 0, 0, 48,128, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,131, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,132, 41, 3, - 1, 0, 0, 0,192,129, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101, -114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, -114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,132, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,134, 41, 3, 1, 0, 0, 0, 80,131, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,114, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,134, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,136, 41, 3, - 1, 0, 0, 0,224,132, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, - 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, -114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,136, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,137, 41, 3, 1, 0, 0, 0,112,134, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,114, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,137, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,139, 41, 3, - 1, 0, 0, 0, 0,136, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112, -117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, -114, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,139, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,140, 41, 3, 1, 0, 0, 0,144,137, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99, -101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99, -101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,140, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,142, 41, 3, - 1, 0, 0, 0, 32,139, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, - 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, -114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,142, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,143, 41, 3, 1, 0, 0, 0,176,140, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,143, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 64,142, 41, 3, 1, 0, 0, 0, 48,123,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110, -101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 67, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96,145, 41, 3, - 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144,152, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 32, 78, 31, 25, 1, 0, 0, 0,255, 21, 0, 0, -160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,146, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0,148, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,148, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,146, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96,149, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,149, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,144,152, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,145, 41, 3, - 1, 0, 0, 0,160,146, 41, 3, 1, 0, 0, 0, 0,148, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240,153, 41, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224,165, 41, 3, 1, 0, 0, 0,208,105, 41, 3, 1, 0, 0, 0,176, 82, 41, 3, - 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, 1, 0, 0, 0,240, 84, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15, 44, 6, 84, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0,144,157, 41, 3, 1, 0, 0, 0,128,164, 41, 3, 1, 0, 0, 0,208,154, 41, 3, - 1, 0, 0, 0, 48,156, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 11,149, 27, - 1, 0, 0, 0, 80,232,180, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,154, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 48,156, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0,128,197, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 44, 6, 26, 0, 44, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,156, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,154, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 18, 0, 0, 0, - 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 44, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 6, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,144,157, 41, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0,128,164, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,158, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,240,159, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,159, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,158, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,161, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80,161, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,128,164, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,157, 41, 3, - 1, 0, 0, 0,144,158, 41, 3, 1, 0, 0, 0,240,159, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,224,165, 41, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,240,153, 41, 3, 1, 0, 0, 0,176, 85, 41, 3, - 1, 0, 0, 0,112, 89, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 16, 86, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,185, 1, 0, 0, 39, 3, 0, 0, 3, 3, 84, 1,111, 1, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0,128,169, 41, 3, 1, 0, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,192,166, 41, 3, - 1, 0, 0, 0, 32,168, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,138,121, 22, - 1, 0, 0, 0,160, 6, 27, 25, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,166, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 32,168, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,170, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 84, 1, 26, 0, 84, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 14, 3, 0, 0, 39, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,168, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,166, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 67, 0,128,161,195, 0, 0, 0, 0, 67, 1, 0, 0, 84, 1, 0, 0, 18, 0, 0, 0, - 84, 1, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, 0, 18, 0, 0, 0, - 84, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, - 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 84, 1, 85, 1, 67, 1, 67, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0,185, 1, 0, 0, 13, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1, 85, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,169, 41, 3, 1, 0, 0, 0,166, 0, 0, 0, - 1, 0, 0, 0, 0,175, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,238, 30, 25, 1, 0, 0, 0, 96,238, 30, 25, - 1, 0, 0, 0,224,170, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0,224,170, 41, 3, 1, 0, 0, 0,218, 0, 0, 0, - 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 48,171, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 48,171, 41, 3, - 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, - 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, - 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64,172, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,173, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,160,173, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,172, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, - 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, -156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 0, 1, 0, 0, 0,175, 41, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,128,169, 41, 3, - 1, 0, 0, 0, 64,172, 41, 3, 1, 0, 0, 0,160,173, 41, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,176, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,177, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,177, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,176, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, - 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,179, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,179, 41, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48,182, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,175, 41, 3, 1, 0, 0, 0, 64,176, 41, 3, 1, 0, 0, 0,160,177, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,224,165, 41, 3, - 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,208, 86, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 1, 1,147, 3, -190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,144,208, 41, 3, 1, 0, 0, 0,176,212, 41, 3, - 1, 0, 0, 0,112,184, 41, 3, 1, 0, 0, 0, 0,204, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48, 21, 28, 25, 1, 0, 0, 0, 32,188,121, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,184, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,185, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 91, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192,100, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -146, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,147, 3, 26, 0,147, 3, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0, 85, 0, 0, 0, -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,147, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,185, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,190, 41, 3, 1, 0, 0, 0,112,184, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,187, 41, 3, 1, 0, 0, 0,192,188, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,187, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,188, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,188, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,187, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, - 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253, -143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,190, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,193, 41, 3, 1, 0, 0, 0,208,185, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, -111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,191, 41, 3, 1, 0, 0, 0,176,191, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,191, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,193, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,204, 41, 3, - 1, 0, 0, 0, 80,190, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, - 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 43, 6, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,194, 41, 3, 1, 0, 0, 0,112,202, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,194, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,196, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, -115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, -163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,196, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,197, 41, 3, 1, 0, 0, 0,160,194, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,197, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,199, 41, 3, - 1, 0, 0, 0, 48,196, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, -163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,199, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,200, 41, 3, 1, 0, 0, 0,192,197, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,200, 41, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,202, 41, 3, - 1, 0, 0, 0, 80,199, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, -103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, -163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,202, 41, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,200, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, -110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,204, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 64,193, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153, 2, 0, 0, 43, 6, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,147, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,205, 41, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,205, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,153,142, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, - 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, - 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,210,225,233, 62, -208,249,224,190,222,160, 81,191,184,158, 81,191,127, 12,130, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, 43, 31,114,188, -206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,133,109,188, 62, - 69,144, 81, 63,160, 70, 67,188, 0,128,242,181,195, 13,188,190,192, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196, -135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,210,225,233, 62, -208,249,224,190,222,160, 81,191,184,158, 81,191,127, 12,130, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, 43, 31,114,188, -206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 87, 41, 13, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 41, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 87, 41, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 92, 62, 55, 63, - 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,208, 41, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,176,212, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0,255,255, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,209, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 80,211, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,211, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,209, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176,212, 41, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,208, 41, 3, 1, 0, 0, 0,240,209, 41, 3, 1, 0, 0, 0, 80,211, 41, 3, - 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0,208,241, 41, 3, 1, 0, 0, 0,144,183, 41, 3, 1, 0, 0, 0,112, 86, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, - 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 48, 87, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 2, 0, 0, 85, 0, 0, 0,223, 1, 0, 0, 2, 2,152, 2,139, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 8, 15, 3, - 1, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,208,240, 41, 3, 1, 0, 0, 0,144,214, 41, 3, 1, 0, 0, 0,176,218, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 29,155, 27, 1, 0, 0, 0,224,242, 27, 25, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,214, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,215, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, - 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 10, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,215, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,217, 41, 3, - 1, 0, 0, 0,144,214, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 72, 67, 0,128,175,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 0, 0, 0, 0, -199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, - 6, 0,217, 0,113, 1,200, 0, 95, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,217, 0,113, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 11, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,217, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,218, 41, 3, - 1, 0, 0, 0,240,215, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,151, 2, 0, 0,151, 2, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 12, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,218, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,217, 41, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, - 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,112, 1, 0, 0, 18, 0, 0, 0, -190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,190, 1, 0, 0, 18, 0, 0, 0,112, 1, 0, 0,111, 18,131, 58, -111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0,191, 1,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,217, 0, 0, 0,151, 2, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,191, 1,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 9, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,192,225, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,221, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64,221, 41, 3, - 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,221, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0,223, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,223, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96,224, 41, 3, 1, 0, 0, 0,160,221, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,224, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, - 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0, -164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0,192,225, 41, 3, 1, 0, 0, 0,167, 0, 0, 0, - 1, 0, 0, 0,176,236, 41, 3, 1, 0, 0, 0, 16,220, 41, 3, 1, 0, 0, 0,160,221, 41, 3, 1, 0, 0, 0, 96,224, 41, 3, - 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,226, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0,228, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,228, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96,229, 41, 3, 1, 0, 0, 0,160,226, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,229, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,192,230, 41, 3, 1, 0, 0, 0, 0,228, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, - 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,230, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 32,232, 41, 3, 1, 0, 0, 0, 96,229, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,232, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,230, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128,233, 41, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128,233, 41, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, - 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, - 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, - 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67, -151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, - 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,176,236, 41, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,208,240, 41, 3, 1, 0, 0, 0,192,225, 41, 3, - 1, 0, 0, 0,160,226, 41, 3, 1, 0, 0, 0, 32,232, 41, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,238, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,239, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,239, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,238, 41, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, -248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208,240, 41, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,236, 41, 3, 1, 0, 0, 0, 16,238, 41, 3, - 1, 0, 0, 0,112,239, 41, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,241, 41, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,176,213, 41, 3, 1, 0, 0, 0,240, 87, 41, 3, - 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 16, 89, 41, 3, 1, 0, 0, 0, 80, 88, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,225, 1, 0, 0,123, 3, 0, 0, 12, 12,152, 2,155, 1, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144, 44, 15, 3, 1, 0, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 80, 18, 42, 3, 1, 0, 0, 0,176,242, 41, 3, - 1, 0, 0, 0,112,245, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,237, 29, 25, - 1, 0, 0, 0,128,124,120, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,242, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 16,244, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 46, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,244, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112,245, 41, 3, 1, 0, 0, 0,176,242, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0, 0,194, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 64,227,195, 0, 0,175,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0, -128, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, - 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,200, 0,129, 1,200, 0,111, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0,251, 1, 0, 0,123, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0,129, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48, 47, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,245, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,244, 41, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 64,227,195, 0, 0,175,194,191, 1, 0, 0,208, 1, 0, 0, 18, 0, 0, 0, -128, 1, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 18, 0, 0, 0, -128, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, - 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,208, 1,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0, 0, 0,151, 2, 0, 0,251, 1, 0, 0,123, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112, 45, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 21, 1, 0, 0, - 1, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,248, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112,249, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 49, 2, 0, 0, 74, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,249, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,208,250, 41, 3, 1, 0, 0, 0, 16,248, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,219,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0, -199, 1, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0, -199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, - 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,217, 0,200, 1,200, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0,200, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,250, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 48,252, 41, 3, 1, 0, 0, 0,112,249, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,252, 41, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,250, 41, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, - 0, 0,160, 64, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -199, 1, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 18, 0, 0, 0, -199, 1, 0, 0,111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0,161, 0, 0, 0, - 1, 0, 0, 0, 64, 3, 42, 3, 1, 0, 0, 0,208,246, 41, 3, 1, 0, 0, 0, 16,248, 41, 3, 1, 0, 0, 0, 48,252, 41, 3, - 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,254, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,192,254, 41, 3, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,255, 41, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 0, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0, -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 0, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 1, 42, 3, 1, 0, 0, 0, 32,255, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0, -189, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -171, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 1, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -160, 3, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 64, 3, 42, 3, - 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, 48, 14, 42, 3, 1, 0, 0, 0,144,253, 41, 3, 1, 0, 0, 0, 32,255, 41, 3, - 1, 0, 0, 0,224, 1, 42, 3, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 4, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 5, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0, -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 5, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 6, 42, 3, 1, 0, 0, 0, 32, 4, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 6, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 8, 42, 3, 1, 0, 0, 0,128, 5, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, -111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 8, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 9, 42, 3, 1, 0, 0, 0,224, 6, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 9, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 8, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0, 11, 42, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, -142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, -111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63, -140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190, -191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, -159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63, -140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48, 14, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 80, 18, 42, 3, - 1, 0, 0, 0, 64, 3, 42, 3, 1, 0, 0, 0, 32, 4, 42, 3, 1, 0, 0, 0,160, 9, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,144, 15, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 16, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,240, 16, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 15, 42, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0, 80, 18, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 14, 42, 3, - 1, 0, 0, 0,144, 15, 42, 3, 1, 0, 0, 0,240, 16, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208, 59, 42, 3, 1, 0, 0, 0,208,241, 41, 3, - 1, 0, 0, 0,176, 88, 41, 3, 1, 0, 0, 0, 48, 84, 41, 3, 1, 0, 0, 0,144, 87, 41, 3, 1, 0, 0, 0, 16, 89, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,125, 3, 0, 0, 18, 4, 0, 0, 13, 13,152, 2, -150, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 48, 15, 3, 1, 0, 0, 0,176, 25, 42, 3, 1, 0, 0, 0,208, 58, 42, 3, - 1, 0, 0, 0, 48, 20, 42, 3, 1, 0, 0, 0, 80, 24, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,234,148, 27, 1, 0, 0, 0,112,101,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 20, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 21, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,192, 18, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 33, 68, 0, 0,200, 65, 0,192, 33, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,125, 3, 0, 0, -150, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 49, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 21, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 22, 42, 3, 1, 0, 0, 0, 48, 20, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 55, 67, 0, 0, 64,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,212,194, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -199, 0, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,200, 0,124, 0,200, 0,106, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0,151, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0,124, 0, 0, 0, 2, 0, 3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 50, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 22, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 24, 42, 3, 1, 0, 0, 0,144, 21, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,151, 2, 0, 0,151, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,144, 51, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 24, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 22, 42, 3, 1, 0, 0, 0, 0, 0, 16,193, - 0, 0,130, 67, 0, 0, 64,194, 0, 0, 0, 0, 70, 62,159,193,228,115,135, 67, 0, 0,212,194, 0, 0, 0, 0,191, 1, 0, 0, -208, 1, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0,190, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -190, 1, 0, 0, 18, 0, 0, 0,123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, - 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,208, 1,124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0, 0, 0,151, 2, 0, 0,151, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 1,124, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 48, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,176, 25, 42, 3, - 1, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,208, 26, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 26, 42, 3, 1, 0, 0, 0, 20, 1, 0, 0, - 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 28, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 34, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, - 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,136, 2, 26, 0,136, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,135, 2, 0, 0, 13, 3, 0, 0, 38, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,136, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 28, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 29, 42, 3, - 1, 0, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0,228,195, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 53, 67, 0, 0,190,195, 0, 0, 34,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -180, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, - 6, 0,181, 0,236, 0,181, 0,218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 39, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,181, 0,236, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 29, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144, 28, 42, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,104, 68, 0, 0,190,195, 0, 0, 34,195,194, 1, 0, 0,211, 1, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, -193, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,193, 1, 0, 0, 18, 0, 0, 0,235, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, - 4, 0,211, 1,236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,181, 0, 0, 0,135, 2, 0, 0, 39, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,211, 1,236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0, 21, 1, 0, 0, 1, 0, 0, 0, 16, 38, 42, 3, - 1, 0, 0, 0,176, 25, 42, 3, 1, 0, 0, 0, 48, 27, 42, 3, 1, 0, 0, 0,240, 29, 42, 3, 1, 0, 0, 0, 12, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 32, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 33, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, - 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 49, 2, 0, 0, 74, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 33, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 35, 42, 3, - 1, 0, 0, 0,144, 32, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 72, 67, 0, 0,219,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0, -199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, - 6, 0,217, 0,200, 1,200, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,217, 0,200, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 35, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 36, 42, 3, - 1, 0, 0, 0,240, 33, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,159, 3, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 36, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 35, 42, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, - 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,199, 1, 0, 0, 18, 0, 0, 0, -198, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 18, 0, 0, 0,199, 1, 0, 0,111, 18,131, 58, -111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,217, 0, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 16, 38, 42, 3, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,192, 43, 42, 3, - 1, 0, 0, 0, 80, 31, 42, 3, 1, 0, 0, 0,144, 32, 42, 3, 1, 0, 0, 0,176, 36, 42, 3, 1, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 39, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 39, 42, 3, - 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 39, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96, 42, 42, 3, 1, 0, 0, 0,160, 39, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 42, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, - 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0, -164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0,192, 43, 42, 3, 1, 0, 0, 0,167, 0, 0, 0, - 1, 0, 0, 0,176, 54, 42, 3, 1, 0, 0, 0, 16, 38, 42, 3, 1, 0, 0, 0,160, 39, 42, 3, 1, 0, 0, 0, 96, 42, 42, 3, - 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 44, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0,160, 44, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,192, 48, 42, 3, 1, 0, 0, 0, 0, 46, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, - 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 48, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0, 96, 47, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 48, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 51, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128, 51, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, - 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, - 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, - 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67, -151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, - 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,176, 54, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,208, 58, 42, 3, 1, 0, 0, 0,192, 43, 42, 3, - 1, 0, 0, 0,160, 44, 42, 3, 1, 0, 0, 0, 32, 50, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 56, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 57, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 57, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 56, 42, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, -248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208, 58, 42, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 54, 42, 3, 1, 0, 0, 0, 16, 56, 42, 3, - 1, 0, 0, 0,112, 57, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208, 59, 42, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 19, 42, 3, 1, 0, 0, 0,112, 89, 41, 3, - 1, 0, 0, 0, 80, 85, 41, 3, 1, 0, 0, 0,144, 84, 41, 3, 1, 0, 0, 0,208, 89, 41, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 18, 4, 0, 0, 1, 1, 84, 1,234, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,160, 66, 42, 3, 1, 0, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,176, 60, 42, 3, - 1, 0, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,127, 30, 25, - 1, 0, 0, 0,240, 27,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 60, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 64, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, - 23, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 0, 10, 0,132, 1, 24, 0,132, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 41, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 62, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 60, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 6, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 1,234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112, 63, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112, 63, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 24,255, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 81, 78, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, 72, 1, 77,190, - 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, - 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190,152, 9, 52,193, - 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, 88,126,162,190,229,251,159, 62, 55, 53,101, 63, - 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,151, 62,208,192, 78,255,170, 64, - 0, 0,128, 63, 3,201,194, 63,153,245,130,191,244,250, 39,191, 8,165, 39,191,143,164,206, 63,210,239,128, 63,180,164, 28, 63, -149, 84, 28, 63,180,153,196,188, 21,186, 56, 64, 10,108,228,190, 52,247,227,190, 82, 21, 64,191, 73,112,155,191,216, 49, 49, 65, -152, 9, 52, 65,223, 70,158, 62, 31,234,167, 62, 32,208,159,187, 0, 0,186,180,179,158,201,189,148,129,198, 61, 50, 51,142, 62, - 0, 0,136, 51,168,120, 21,194,107, 5, 2, 66,203,135,213,193,147,214,159,192,177, 38, 19, 66,124,173,255,193, 96,101,210, 65, -128, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, - 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190,152, 9, 52,193, - 0, 0,128, 63, 3,201,194, 63,153,245,130,191,244,250, 39,191, 8,165, 39,191,143,164,206, 63,210,239,128, 63,180,164, 28, 63, -149, 84, 28, 63,180,153,196,188, 21,186, 56, 64, 10,108,228,190, 52,247,227,190, 82, 21, 64,191, 73,112,155,191,216, 49, 49, 65, -152, 9, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,226,192, 45, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,160, 66, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,192, 70, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 68, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 69, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 69, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 62,195, 0, 0, 0, 0,115, 1, 0, 0, -132, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -114, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,208, 0,115, 1,190, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 41, 3, 0, 0, -248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,208, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 70, 42, 3, - 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,160, 66, 42, 3, 1, 0, 0, 0, 0, 68, 42, 3, - 1, 0, 0, 0, 96, 69, 42, 3, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 72, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 32, 72, 42, 3, - 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,112, 72, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, -208, 0, 0, 0,112, 72, 42, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, - 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, - 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 73, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 74, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, - 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, - 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 74, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 73, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0, -205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, - 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 64, 76, 42, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192, 70, 42, 3, 1, 0, 0, 0,128, 73, 42, 3, 1, 0, 0, 0,224, 74, 42, 3, 1, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0, -208, 0, 0, 0, 0, 78, 42, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0,160, 81, 41, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 67,111,109,112,111,115,105,116,105,110, -103, 0,103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 79, 42, 3, - 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,208, 88, 42, 3, 1, 0, 0, 0, 48, 89, 42, 3, - 1, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 79, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 79, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240, 80, 42, 3, - 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 81, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 81, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5,204, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 80, 81, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,204, 3, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 82, 42, 3, - 1, 0, 0, 0,176, 81, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 82, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 83, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 83, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 84, 42, 3, - 1, 0, 0, 0,144, 83, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 84, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 84, 42, 3, - 1, 0, 0, 0,240, 83, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 84, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 85, 42, 3, - 1, 0, 0, 0, 80, 84, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 85, 42, 3, - 1, 0, 0, 0,176, 84, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 85, 42, 3, - 1, 0, 0, 0, 16, 85, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 85, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 86, 42, 3, - 1, 0, 0, 0,112, 85, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 86, 42, 3, - 1, 0, 0, 0,208, 85, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 86, 42, 3, - 1, 0, 0, 0, 48, 86, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240, 86, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 87, 42, 3, - 1, 0, 0, 0,144, 86, 42, 3, 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80, 87, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 87, 42, 3, - 1, 0, 0, 0,240, 86, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176, 87, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 88, 42, 3, - 1, 0, 0, 0, 80, 87, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 88, 42, 3, - 1, 0, 0, 0,176, 87, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 88, 42, 3, - 1, 0, 0, 0, 16, 88, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208, 88, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112, 88, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48, 89, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,208, 92, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0,112, 79, 42, 3, 1, 0, 0, 0,208, 79, 42, 3, - 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, - 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,182, 42, 3, - 1, 0, 0, 0, 32,182, 42, 3, 1, 0, 0, 0, 16, 90, 42, 3, 1, 0, 0, 0,112, 91, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 90, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 91, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,112, 91, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 90, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, - 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,208, 92, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192,104, 42, 3, 1, 0, 0, 0, 48, 89, 42, 3, - 1, 0, 0, 0, 16, 79, 42, 3, 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, 1, 0, 0, 0, 48, 80, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,129, 7, - 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 96, 42, 3, 1, 0, 0, 0, 96,103, 42, 3, - 1, 0, 0, 0,176, 93, 42, 3, 1, 0, 0, 0, 16, 95, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 93, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 95, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 95, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 93, 42, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, - 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,112, 96, 42, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 96,103, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 97, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 98, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 98, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 97, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, - 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,100, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 48,100, 42, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,103, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112, 96, 42, 3, 1, 0, 0, 0,112, 97, 42, 3, 1, 0, 0, 0,208, 98, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,192,104, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0,208, 92, 42, 3, - 1, 0, 0, 0,112, 82, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,240, 80, 42, 3, 1, 0, 0, 0,208, 82, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 4, 4,144, 1, -190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,142, 42, 3, 1, 0, 0, 0, 64,155, 42, 3, - 1, 0, 0, 0,160,105, 42, 3, 1, 0, 0, 0, 0,107, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,105, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,107, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -143, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, 31, 0,144, 1, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0,244, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,107, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,105, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,191, 67, 0, 0,157,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,191, 67, 0, 64, 99,196, 0, 0, 0, 0,127, 1, 0, 0, -144, 1, 0, 0, 18, 0, 0, 0,158, 3, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -126, 1, 0, 0, 18, 0, 0, 0,158, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,144, 1,159, 3,127, 1,141, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, -243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1,159, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96,108, 42, 3, 1, 0, 0, 0, 48,141, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,108, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,109, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,109, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,111, 42, 3, - 1, 0, 0, 0, 96,108, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,111, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,113, 42, 3, 1, 0, 0, 0,240,109, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,113, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,114, 42, 3, - 1, 0, 0, 0,128,111, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,114, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,116, 42, 3, 1, 0, 0, 0, 16,113, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,116, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,117, 42, 3, - 1, 0, 0, 0,160,114, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,117, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,119, 42, 3, 1, 0, 0, 0, 48,116, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,119, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,120, 42, 3, - 1, 0, 0, 0,192,117, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,120, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,122, 42, 3, 1, 0, 0, 0, 80,119, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,122, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,124, 42, 3, - 1, 0, 0, 0,224,120, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,124, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,125, 42, 3, 1, 0, 0, 0,112,122, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,125, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,127, 42, 3, - 1, 0, 0, 0, 0,124, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, -110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,127, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,128, 42, 3, 1, 0, 0, 0,144,125, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,128, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,130, 42, 3, - 1, 0, 0, 0, 32,127, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, -126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,130, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,131, 42, 3, 1, 0, 0, 0,176,128, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253,126, 1,240, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,131, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,133, 42, 3, - 1, 0, 0, 0, 64,130, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181,252, -126, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,133, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,134, 42, 3, 1, 0, 0, 0,208,131, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99,252,126, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,134, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,136, 42, 3, - 1, 0, 0, 0, 96,133, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,251, -126, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,136, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,138, 42, 3, 1, 0, 0, 0,240,134, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,251,126, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,138, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,139, 42, 3, - 1, 0, 0, 0,128,136, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76,251, -126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,139, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,141, 42, 3, 1, 0, 0, 0, 16,138, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,251,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,141, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,139, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28,251, -126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,192,142, 42, 3, - 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 21, 0, 0, -160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,144, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96,145, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, - 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,145, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,192,146, 42, 3, 1, 0, 0, 0, 0,144, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,146, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,145, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0, -123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0,163, 0, 0, 0, - 1, 0, 0, 0, 64,155, 42, 3, 1, 0, 0, 0,192,142, 42, 3, 1, 0, 0, 0, 0,144, 42, 3, 1, 0, 0, 0,192,146, 42, 3, - 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,149, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,150, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,150, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,149, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, - 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,152, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 16,152, 42, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64,155, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 32,148, 42, 3, 1, 0, 0, 0, 80,149, 42, 3, 1, 0, 0, 0,176,150, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,160,156, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,104, 42, 3, - 1, 0, 0, 0, 16, 82, 42, 3, 1, 0, 0, 0,144, 80, 42, 3, 1, 0, 0, 0, 48, 83, 42, 3, 1, 0, 0, 0,112, 82, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 16, 16,240, 5, -190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,160, 42, 3, 1, 0, 0, 0, 32,181, 42, 3, - 1, 0, 0, 0,128,157, 42, 3, 1, 0, 0, 0,224,158, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,157, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,158, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,158, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,157, 42, 3, 1, 0, 0, 0, 0, 0, 32,193, - 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,132,137,182,195,194, 68, 91, 68, 54, 95,243,194,230,107, 30, 68,223, 5, 0, 0, -240, 5, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -222, 5, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, - 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,164, 3,223, 5,146, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64,160, 42, 3, - 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,161, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0,163, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, - 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,163, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96,164, 42, 3, 1, 0, 0, 0,160,161, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,164, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,163, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0, -162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0,163, 0, 0, 0, - 1, 0, 0, 0, 0,177, 42, 3, 1, 0, 0, 0, 64,160, 42, 3, 1, 0, 0, 0,160,161, 42, 3, 1, 0, 0, 0, 96,164, 42, 3, - 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,166, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,168, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0, -250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,168, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,169, 42, 3, 1, 0, 0, 0,240,166, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,169, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,171, 42, 3, 1, 0, 0, 0, 80,168, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, -251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,171, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,172, 42, 3, 1, 0, 0, 0,176,169, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,172, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,171, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,173, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,173, 42, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, -142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, -111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, - 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190, -250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, -160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, - 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 0,177, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32,181, 42, 3, - 1, 0, 0, 0,192,165, 42, 3, 1, 0, 0, 0,240,166, 42, 3, 1, 0, 0, 0,112,172, 42, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 96,178, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,179, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,192,179, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,178, 42, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0, 32,181, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,177, 42, 3, - 1, 0, 0, 0, 96,178, 42, 3, 1, 0, 0, 0,192,179, 42, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, -208, 0, 0, 0,160,182, 42, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,240, 50, 43, 3, 1, 0, 0, 0, 0, 78, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 68,101,102, 97,117,108,116, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,183, 42, 3, - 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0,144,194, 42, 3, 1, 0, 0, 0,240,194, 42, 3, - 1, 0, 0, 0, 80, 20, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 12, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,184, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0,176,183, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,184, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,185, 42, 3, - 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,185, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,252, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,187, 42, 3, - 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,176,186, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,187, 42, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 84, 0, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,188, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,188, 42, 3, - 1, 0, 0, 0, 48,188, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,188, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,189, 42, 3, - 1, 0, 0, 0,144,188, 42, 3, 1, 0, 0, 0,112,184, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,189, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,189, 42, 3, - 1, 0, 0, 0,240,188, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,189, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,190, 42, 3, - 1, 0, 0, 0, 80,189, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,190, 42, 3, - 1, 0, 0, 0,176,189, 42, 3, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,190, 42, 3, - 1, 0, 0, 0, 16,190, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,190, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,191, 42, 3, - 1, 0, 0, 0,112,190, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,191, 42, 3, - 1, 0, 0, 0,208,190, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,191, 42, 3, - 1, 0, 0, 0, 48,191, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,191, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,192, 42, 3, - 1, 0, 0, 0,144,191, 42, 3, 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,192, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,192, 42, 3, - 1, 0, 0, 0,240,191, 42, 3, 1, 0, 0, 0,208,184, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,192, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,193, 42, 3, - 1, 0, 0, 0, 80,192, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,193, 42, 3, - 1, 0, 0, 0,176,192, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,193, 42, 3, - 1, 0, 0, 0, 16,193, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,193, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,194, 42, 3, - 1, 0, 0, 0,112,193, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,194, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,194, 42, 3, - 1, 0, 0, 0,208,193, 42, 3, 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,194, 42, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,194, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240,194, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144,198, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,185, 42, 3, 1, 0, 0, 0, 16,184, 42, 3, 1, 0, 0, 0,112,184, 42, 3, - 1, 0, 0, 0,144,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, - 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,112, 50, 43, 3, - 1, 0, 0, 0,112, 50, 43, 3, 1, 0, 0, 0,208,195, 42, 3, 1, 0, 0, 0, 48,197, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 28,121, 22, 1, 0, 0, 0,240,209, 30, 25, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,208,195, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,197, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, - 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0,208,109,120, 22, - 1, 0, 0, 0,208,109,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 31, 25, - 1, 0, 0, 0, 32, 79, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 48,197, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,195, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, - 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,144,198, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,240,194, 42, 3, - 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0,208,184, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 59, 3, 0, 0, 4, 4,132, 1, - 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0, 32,238, 42, 3, 1, 0, 0, 0, 80,245, 42, 3, - 1, 0, 0, 0,112,199, 42, 3, 1, 0, 0, 0,208,200, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144, 14,177, 24, 1, 0, 0, 0, 80,173,149, 27, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,199, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,200, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 29, 3, 0, 0, - 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 3, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 80,234, 29, 25, 1, 0, 0, 0, 80,234, 29, 25, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,250, 30, 25, 1, 0, 0, 0, 80,172,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,200, 42, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,199, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, 0, 0, 0, 0,115, 1, 0, 0, -132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, 11, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112, 88,120, 22, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, 4, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 16, 27,154, 27, 1, 0, 0, 0, 96,121,120, 22, - 1, 0, 0, 0, 48,202, 42, 3, 1, 0, 0, 0,144,236, 42, 3, 1, 0, 0, 0, 0,148,121, 22, 1, 0, 0, 0,144,189,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,202, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,203, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,203, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,205, 42, 3, - 1, 0, 0, 0, 48,202, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,205, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,206, 42, 3, 1, 0, 0, 0,192,203, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,206, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,208, 42, 3, - 1, 0, 0, 0, 80,205, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,208, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,210, 42, 3, 1, 0, 0, 0,224,206, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,210, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,211, 42, 3, - 1, 0, 0, 0,112,208, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,211, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,213, 42, 3, 1, 0, 0, 0, 0,210, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,213, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,214, 42, 3, - 1, 0, 0, 0,144,211, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,214, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,216, 42, 3, 1, 0, 0, 0, 32,213, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,216, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,217, 42, 3, - 1, 0, 0, 0,176,214, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,217, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,219, 42, 3, 1, 0, 0, 0, 64,216, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,219, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,220, 42, 3, - 1, 0, 0, 0,208,217, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, -110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, -114, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,220, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,222, 42, 3, 1, 0, 0, 0, 96,219, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254,114, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,222, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,224, 42, 3, - 1, 0, 0, 0,240,220, 42, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, -114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,224, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,225, 42, 3, 1, 0, 0, 0,128,222, 42, 3, 1, 0, 0, 0, 48, 45,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,225, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,227, 42, 3, - 1, 0, 0, 0, 16,224, 42, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, -114, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,227, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,228, 42, 3, 1, 0, 0, 0,160,225, 42, 3, 1, 0, 0, 0, 16, 60,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,228, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,230, 42, 3, - 1, 0, 0, 0, 48,227, 42, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, -114, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,230, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,231, 42, 3, 1, 0, 0, 0,192,228, 42, 3, 1, 0, 0, 0,208, 67,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,231, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,233, 42, 3, - 1, 0, 0, 0, 80,230, 42, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, -114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,233, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,235, 42, 3, 1, 0, 0, 0,224,231, 42, 3, 1, 0, 0, 0,128, 76,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,235, 42, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,236, 42, 3, - 1, 0, 0, 0,112,233, 42, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, -114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,236, 42, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,235, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 32,238, 42, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 80,245, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, - 0, 0, 0, 0, 96,252, 26, 25, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 96,239, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,240, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, -108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,192,240, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,239, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, -108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,242, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0, 32,242, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, -115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80,245, 42, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,238, 42, 3, 1, 0, 0, 0, 96,239, 42, 3, 1, 0, 0, 0,192,240, 42, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160, 2, 43, 3, - 1, 0, 0, 0,144,198, 42, 3, 1, 0, 0, 0,176,183, 42, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0,208,187, 42, 3, - 1, 0, 0, 0,240,185, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, - 83, 0, 0, 0, 15, 15,252, 5, 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0, 80,250, 42, 3, - 1, 0, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0,144,247, 42, 3, 1, 0, 0, 0,240,248, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,227,184, 24, 1, 0, 0, 0, 48,224, 30, 25, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,144,247, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,248, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, - 5, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 80, 22, 28, 25, - 1, 0, 0, 0, 80, 22, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,185,121, 22, - 1, 0, 0, 0, 48,175,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,240,248, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,247, 42, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 58, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 58, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,180,121, 22, - 1, 0, 0, 0, 0,251, 27, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0, 80,250, 42, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 80,251, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,252, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176,252, 42, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,251, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,254, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0, 16,254, 42, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, -115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 64, 1, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,250, 42, 3, 1, 0, 0, 0, 80,251, 42, 3, 1, 0, 0, 0,176,252, 42, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,160, 2, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80, 20, 43, 3, - 1, 0, 0, 0,176,246, 42, 3, 1, 0, 0, 0,176,186, 42, 3, 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,144,185, 42, 3, - 1, 0, 0, 0, 16,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, - 18, 4, 0, 0, 3, 3,132, 1,214, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0, 64, 6, 43, 3, - 1, 0, 0, 0,240, 18, 43, 3, 1, 0, 0, 0,128, 3, 43, 3, 1, 0, 0, 0,224, 4, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 52,121, 22, 1, 0, 0, 0,224,120, 13, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128, 3, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 4, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, -128, 7, 0, 0,249, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, - 7, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0,192,243, 30, 25, - 1, 0, 0, 0,192,243, 30, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,170,121, 22, - 1, 0, 0, 0,176,125,120, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224, 4, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 3, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, - 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1, -170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, -128, 7, 0, 0, 61, 3, 0, 0,248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 80,149,110, 29, - 1, 0, 0, 0, 80,149,110, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,183,121, 22, - 1, 0, 0, 0,224,241, 27, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64, 6, 43, 3, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0,192, 11, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 62, 28, 25, 1, 0, 0, 0,128, 62, 28, 25, 1, 0, 0, 0,160, 7, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, - 16, 0, 0, 0,160, 7, 43, 3, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,240, 7, 43, 3, - 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0,240, 7, 43, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, - 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96, 10, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 10, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, - 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, -155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, - 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,192, 11, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, - 1, 0, 0, 0,240, 18, 43, 3, 1, 0, 0, 0, 64, 6, 43, 3, 1, 0, 0, 0, 0, 9, 43, 3, 1, 0, 0, 0, 96, 10, 43, 3, - 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 13, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 14, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 14, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 15, 43, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192, 15, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,240, 18, 43, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 11, 43, 3, 1, 0, 0, 0, 0, 13, 43, 3, - 1, 0, 0, 0, 96, 14, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 80, 20, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 2, 43, 3, 1, 0, 0, 0,112,187, 42, 3, 1, 0, 0, 0, 48,185, 42, 3, - 1, 0, 0, 0, 80,186, 42, 3, 1, 0, 0, 0,208,187, 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 1, 1,252, 5,190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, - 1, 0, 0, 0, 80, 45, 43, 3, 1, 0, 0, 0,112, 49, 43, 3, 1, 0, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0,192, 40, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,159,157, 27, 1, 0, 0, 0,240, 35,121, 22, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 22, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,252, 5, 26, 0, 9, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, - 1, 0, 0, 0,240,122,101, 29, 1, 0, 0, 0,240,122,101, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112,155, 29, 25, 1, 0, 0, 0, 80, 51,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 22, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 27, 43, 3, - 1, 0, 0, 0, 48, 21, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,231, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 0, 44, 3, 10, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, - 1, 0, 0, 0,160,117, 13, 3, 1, 0, 0, 0,160,105,120, 22, 1, 0, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,128, 25, 43, 3, - 1, 0, 0, 0, 80,243, 27, 25, 1, 0, 0, 0, 16, 41,121, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 25, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 5, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, - 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255, -143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 25, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 23, 43, 3, 1, 0, 0, 0,176, 33,211, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, - 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, - 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 27, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 30, 43, 3, - 1, 0, 0, 0,144, 22, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, -231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,159, 0, 0, 0,111, 0, 0, 0,230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 0,120, 0, 11, 0, 6, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, - 1, 0, 0, 0, 48,159,121, 22, 1, 0, 0, 0, 48,159,121, 22, 1, 0, 0, 0,112, 28, 43, 3, 1, 0, 0, 0,112, 28, 43, 3, - 1, 0, 0, 0, 64, 84,221, 24, 1, 0, 0, 0,240,160,109, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 28, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,108,101, -116,101, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255, -144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 30, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 40, 43, 3, 1, 0, 0, 0, 16, 27, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,100,196, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,164, 3,163, 0,146, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96, 31, 43, 3, 1, 0, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 31, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 32, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 2, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 32, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 34, 43, 3, - 1, 0, 0, 0, 96, 31, 43, 3, 1, 0, 0, 0,128, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97, -115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254, -163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 34, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,240, 32, 43, 3, 1, 0, 0, 0, 64, 43,188, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111, -112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111, -112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 37, 43, 3, - 1, 0, 0, 0,128, 34, 43, 3, 1, 0, 0, 0,160, 45,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112, -108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251, -163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 37, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0, 16, 36, 43, 3, 1, 0, 0, 0,224,232,186, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, - 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, - 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 39, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 37, 43, 3, 1, 0, 0, 0,208, 50,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, -115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251, -163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 40, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 5,164, 3, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 61,222, 24, 1, 0, 0, 0,112,102, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 42, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 32, 42, 43, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 44, 24,206, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, -142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, -111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62, 3,152, 37,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, -184,162,159, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,182,118,184, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 62,239,191, 62,175,116, 85, 63, 32,205, 70,188, 0, 0,115,181,240,121,127,190, - 56, 73,246, 61,157, 79, 14, 63, 0,128, 0, 54,215,104, 25,196,133,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68, -158, 87,135,195,206,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62, 3,152, 37,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, -184,162,159, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,182,118,184, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,155,176,174, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80, 45, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,112, 49, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,101, 28, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176, 46, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 46, 43, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0,112, 49, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 45, 43, 3, - 1, 0, 0, 0,176, 46, 43, 3, 1, 0, 0, 0, 16, 48, 43, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, -208, 0, 0, 0,240, 50, 43, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0,160,182, 42, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 81,117, 97,100, 32, 86,105,101,119, 0, - 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 43, 3, - 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0,224, 62, 43, 3, 1, 0, 0, 0, 64, 63, 43, 3, - 1, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 52, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 52, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 53, 43, 3, - 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 54, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,252, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 55, 43, 3, - 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 55, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 80, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 80, 0, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 56, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 56, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 57, 43, 3, - 1, 0, 0, 0,128, 56, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 57, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 57, 43, 3, - 1, 0, 0, 0,224, 56, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 57, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 58, 43, 3, - 1, 0, 0, 0, 64, 57, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 58, 43, 3, - 1, 0, 0, 0,160, 57, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 58, 43, 3, - 1, 0, 0, 0, 0, 58, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 58, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 59, 43, 3, - 1, 0, 0, 0, 96, 58, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 59, 43, 3, - 1, 0, 0, 0,192, 58, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 59, 43, 3, - 1, 0, 0, 0, 32, 59, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 59, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 60, 43, 3, - 1, 0, 0, 0,128, 59, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 60, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 60, 43, 3, - 1, 0, 0, 0,224, 59, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 60, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 61, 43, 3, - 1, 0, 0, 0, 64, 60, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 61, 43, 3, - 1, 0, 0, 0,160, 60, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 61, 43, 3, - 1, 0, 0, 0, 0, 61, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 61, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 62, 43, 3, - 1, 0, 0, 0, 96, 61, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 62, 43, 3, - 1, 0, 0, 0,192, 61, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 62, 43, 3, - 1, 0, 0, 0, 32, 62, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 62, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 62, 43, 3, 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 64, 63, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 66, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0, 96, 52, 43, 3, 1, 0, 0, 0,192, 52, 43, 3, - 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, - 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0,224,186, 43, 3, - 1, 0, 0, 0,224,186, 43, 3, 1, 0, 0, 0, 32, 64, 43, 3, 1, 0, 0, 0,128, 65, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,210, 30, 25, 1, 0, 0, 0,192,189,182, 24, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 32, 64, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 65, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128, 65, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, - 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,224, 66, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,112,113, 43, 3, 1, 0, 0, 0, 64, 63, 43, 3, - 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 32, 53, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 59, 3, 0, 0, 4, 4,132, 1, - 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0,224,104, 43, 3, 1, 0, 0, 0, 16,112, 43, 3, - 1, 0, 0, 0,192, 67, 43, 3, 1, 0, 0, 0, 32, 69, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48, 69,185, 24, 1, 0, 0, 0, 0,196,184, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 67, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 69, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 29, 3, 0, 0, - 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 69, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 67, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, 0, 0, 0, 0,115, 1, 0, 0, -132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, 11, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,127, 30, 25, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 70, 43, 3, 1, 0, 0, 0, 80,103, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 70, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 73, 43, 3, - 1, 0, 0, 0,128, 70, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 73, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0, 16, 72, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 76, 43, 3, - 1, 0, 0, 0,160, 73, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 76, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0, 48, 75, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 79, 43, 3, - 1, 0, 0, 0,192, 76, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 79, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 81, 43, 3, 1, 0, 0, 0, 80, 78, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 81, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 83, 43, 3, - 1, 0, 0, 0,224, 79, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 83, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 84, 43, 3, 1, 0, 0, 0,112, 81, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 84, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 86, 43, 3, - 1, 0, 0, 0, 0, 83, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 86, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 87, 43, 3, 1, 0, 0, 0,144, 84, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 87, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 89, 43, 3, - 1, 0, 0, 0, 32, 86, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, -110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 89, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 90, 43, 3, 1, 0, 0, 0,176, 87, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 90, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 92, 43, 3, - 1, 0, 0, 0, 64, 89, 43, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, -114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 92, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 93, 43, 3, 1, 0, 0, 0,208, 90, 43, 3, 1, 0, 0, 0, 48, 45,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 93, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 95, 43, 3, - 1, 0, 0, 0, 96, 92, 43, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, -114, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 95, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,240, 93, 43, 3, 1, 0, 0, 0, 16, 60,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 98, 43, 3, - 1, 0, 0, 0,128, 95, 43, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, -114, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 98, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,100, 43, 3, 1, 0, 0, 0, 16, 97, 43, 3, 1, 0, 0, 0,208, 67,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,100, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,101, 43, 3, - 1, 0, 0, 0,160, 98, 43, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, -114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,101, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,103, 43, 3, 1, 0, 0, 0, 48,100, 43, 3, 1, 0, 0, 0,128, 76,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,103, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192,101, 43, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, -114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,224,104, 43, 3, - 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 16,112, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,160,140, 30, 25, 1, 0, 0, 0,255, 21, 0, 0, -160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,106, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,128,107, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,107, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,106, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224,108, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224,108, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0, 16,112, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,104, 43, 3, - 1, 0, 0, 0, 32,106, 43, 3, 1, 0, 0, 0,128,107, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,112,113, 43, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96,125, 43, 3, 1, 0, 0, 0,224, 66, 43, 3, 1, 0, 0, 0, 0, 52, 43, 3, - 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, 1, 0, 0, 0, 64, 54, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 15, 15,252, 5, 80, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,253, 14, 3, 1, 0, 0, 0, 16,117, 43, 3, 1, 0, 0, 0, 0,124, 43, 3, 1, 0, 0, 0, 80,114, 43, 3, - 1, 0, 0, 0,176,115, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 48,176, 24, - 1, 0, 0, 0, 0, 26,185, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,114, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,176,115, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16,255, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,115, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,114, 43, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 18, 0, 0, 0, - 53, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 26, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,254, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 16,117, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0, 0,124, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,118, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112,119, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,119, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,118, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,120, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,120, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0, 0,124, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,117, 43, 3, - 1, 0, 0, 0, 16,118, 43, 3, 1, 0, 0, 0,112,119, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96,125, 43, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0,112,113, 43, 3, 1, 0, 0, 0, 0, 55, 43, 3, - 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0,224, 53, 43, 3, 1, 0, 0, 0, 96, 55, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, 18, 4, 0, 0, 3, 3,132, 1,214, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,250, 14, 3, 1, 0, 0, 0, 0,129, 43, 3, 1, 0, 0, 0,176,141, 43, 3, 1, 0, 0, 0, 64,126, 43, 3, - 1, 0, 0, 0,160,127, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,189,184, 24, - 1, 0, 0, 0,208, 29,176, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,126, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,160,127, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,112,252, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,127, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,126, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, -187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, -187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, - 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1,170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0,248, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,251, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,129, 43, 3, 1, 0, 0, 0,166, 0, 0, 0, - 1, 0, 0, 0,128,134, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 67,150, 27, 1, 0, 0, 0, 32, 67,150, 27, - 1, 0, 0, 0, 96,130, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 96,130, 43, 3, 1, 0, 0, 0,218, 0, 0, 0, - 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,176,130, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0,176,130, 43, 3, - 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 19, 0, 0, 0, - 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 21, 0, 1, 0, - 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,192,131, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,133, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 32,133, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,131, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, - 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0, -156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0, -247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 0, 1, 0, 0,128,134, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,176,141, 43, 3, 1, 0, 0, 0, 0,129, 43, 3, - 1, 0, 0, 0,192,131, 43, 3, 1, 0, 0, 0, 32,133, 43, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,135, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,137, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,137, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,135, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, - 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,138, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,128,138, 43, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,176,141, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128,134, 43, 3, 1, 0, 0, 0,192,135, 43, 3, 1, 0, 0, 0, 32,137, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0, 16,143, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,125, 43, 3, - 1, 0, 0, 0,192, 55, 43, 3, 1, 0, 0, 0,128, 53, 43, 3, 1, 0, 0, 0,160, 54, 43, 3, 1, 0, 0, 0, 32, 56, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 81, 0, 0, 0, 18, 4, 0, 0, 1, 1,252, 5, -194, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255, 14, 3, 1, 0, 0, 0,192,181, 43, 3, 1, 0, 0, 0,224,185, 43, 3, - 1, 0, 0, 0,240,143, 43, 3, 1, 0, 0, 0, 48,177, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,179, 47, 3, 1, 0, 0, 0,224, 80, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,143, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,145, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 81, 0, 0, 0, -106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 8, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,145, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,149, 43, 3, 1, 0, 0, 0,240,143, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 48, 3,143, 0, 30, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,168, 3, 0, 0, 5, 0, 3, 0, 1, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,112, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,146, 43, 3, 1, 0, 0, 0, 64,148, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,146, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,148, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 5, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,148, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,146, 43, 3, 1, 0, 0, 0,176, 33,211, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, - 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253, -143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,149, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,152, 43, 3, 1, 0, 0, 0, 80,145, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,107, 0, 0, 0, -107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,151, 43, 3, 1, 0, 0, 0, 48,151, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,151, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 7, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97, -116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,108,101,116,101, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,152, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,163, 43, 3, - 1, 0, 0, 0,208,149, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,101,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,167, 3, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,167, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, - 6, 0,180, 0,168, 3,163, 0,150, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,107, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 1, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,240,161, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,155, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 2, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110, -115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254, -163, 0,104, 1, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,155, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,157, 43, 3, 1, 0, 0, 0, 32,154, 43, 3, 1, 0, 0, 0,128, 3, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,157, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,158, 43, 3, - 1, 0, 0, 0,176,155, 43, 3, 1, 0, 0, 0, 64, 43,188, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219,252, -163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,158, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,160, 43, 3, 1, 0, 0, 0, 64,157, 43, 3, 1, 0, 0, 0,160, 45,188, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115, -112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,160, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,161, 43, 3, - 1, 0, 0, 0,208,158, 43, 3, 1, 0, 0, 0,224,232,186, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, - 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107, -103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168,251, -163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,161, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,160, 43, 3, 1, 0, 0, 0,208, 50,188, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95, -111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111, -110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,163, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,168, 43, 3, - 1, 0, 0, 0,192,152, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,253, 2, 0, 0,107, 0, 0, 0, 62, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,164, 43, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224,164, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, - 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,128,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 2, 19, 51, 1, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0,128,191,176, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62,108,128, 49,110, 18,131, 59, 0, 0, 0, 0, 0, 0, 0, 0, -200,161,223, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,214,211,111, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219, 73,168, 52,198,134, 18, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0,122, 67,160,144, 15,183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62,108,128, 49,110, 18,131, 59, 0, 0, 0, 0, 0, 0, 0, 0, -200,161,223, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53, 63, -243, 4, 53,191, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,168, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,172, 43, 3, 1, 0, 0, 0,128,163, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 2, 0, 0, 63, 2, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,169, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112,169, 43, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -198,134, 18, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,121,195, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,172, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,177, 43, 3, - 1, 0, 0, 0, 16,168, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,254, 2, 0, 0,251, 5, 0, 0,107, 0, 0, 0, 62, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 43, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0,174, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,201,161,223, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, - 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 11, - 0, 0,128, 63, 0, 0,128, 37, 0, 0, 0, 0, 0, 0,128, 37, 0, 0,128, 11, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 37, 0, 0,128, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136,163, - 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61,201,161,223,163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -201,161,223, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,213,211,111, 13, -214,211,111, 65,215,211,111, 39, 0, 0, 0, 0,197,134, 18, 39,197,134, 18, 13,198,134, 18, 65, 0, 0, 0, 0,255,255,121,195, -255,255,121,169,255,255,121,143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136,163, - 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61,201,161,223,163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -201,161,223, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0,191, 0, 0, 0,191, 0, 0, 0,191,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,109, 77, 32, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,177, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,172, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2, 0, 0,251, 5, 0, 0, 63, 2, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 2,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 0, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,178, 43, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,178, 43, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,209,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -231, 36,229, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128, 72, 1, 77,190, 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63, -225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, - 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, 88,126,162,190, -229,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64, -151, 62,208,192, 78,255,170, 64, 0, 0,128, 63,169, 11, 64, 63,111,114, 17,191,244,250, 39,191, 8,165, 39,191,131,188, 75, 63, - 96, 51, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,165, 41,205, 63, 10,108,228,190, 52,247,227,190,179, 97,189,190, - 99,162, 44,191,216, 49, 49, 65,152, 9, 52, 65, 5,137, 32, 63, 61, 79, 42, 63, 0, 18, 34,188, 0, 0,244,180, 60,137, 53,190, -140,187, 50, 62, 50, 9, 0, 63, 0, 0,128, 52,211,120, 21,194,145, 5, 2, 66, 7,136,213,193,193,214,159,192,219, 38, 19, 66, -197,173,255,193,155,101,210, 65,173, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63, -225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, - 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,169, 11, 64, 63,111,114, 17,191,244,250, 39,191, 8,165, 39,191,131,188, 75, 63, - 96, 51, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,165, 41,205, 63, 10,108,228,190, 52,247,227,190,179, 97,189,190, - 99,162, 44,191,216, 49, 49, 65,152, 9, 52, 65,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 66,114, 28, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,181, 43, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,224,185, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0,255,255, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 42,144, 27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 32,183, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,184, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128,184, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,183, 43, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0,224,185, 43, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,181, 43, 3, - 1, 0, 0, 0, 32,183, 43, 3, 1, 0, 0, 0,128,184, 43, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0, -208, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,160,125, 44, 3, 1, 0, 0, 0,240, 50, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,105,112,116,105,110,103, 0, -103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,188, 43, 3, - 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,176,199, 43, 3, 1, 0, 0, 0, 16,200, 43, 3, - 1, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11,171, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,188, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0,112,188, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,189, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80,190, 43, 3, - 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,240,189, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176,190, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208,191, 43, 3, - 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 1, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,112,191, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,156, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48,192, 43, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,236, 2, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2,156, 1, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,193, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,193, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,193, 43, 3, - 1, 0, 0, 0,240,192, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,193, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,194, 43, 3, - 1, 0, 0, 0, 80,193, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,194, 43, 3, - 1, 0, 0, 0,176,193, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,194, 43, 3, - 1, 0, 0, 0, 16,194, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,194, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,195, 43, 3, - 1, 0, 0, 0,112,194, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,195, 43, 3, - 1, 0, 0, 0,208,194, 43, 3, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,195, 43, 3, - 1, 0, 0, 0, 48,195, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,195, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,196, 43, 3, - 1, 0, 0, 0,144,195, 43, 3, 1, 0, 0, 0,144,189, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,196, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,196, 43, 3, - 1, 0, 0, 0,240,195, 43, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,196, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,197, 43, 3, - 1, 0, 0, 0, 80,196, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,197, 43, 3, - 1, 0, 0, 0,176,196, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,197, 43, 3, - 1, 0, 0, 0, 16,197, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,197, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,198, 43, 3, - 1, 0, 0, 0,112,197, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,198, 43, 3, - 1, 0, 0, 0,208,197, 43, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,198, 43, 3, - 1, 0, 0, 0, 48,198, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,198, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,199, 43, 3, - 1, 0, 0, 0,144,198, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,199, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,199, 43, 3, - 1, 0, 0, 0,240,198, 43, 3, 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,199, 43, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,199, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,144,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 16,200, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,203, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,208,188, 43, 3, 1, 0, 0, 0, 48,189, 43, 3, - 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, - 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 80, 30, 15, 3, 1, 0, 0, 0, 48,101, 44, 3, - 1, 0, 0, 0, 48,101, 44, 3, 1, 0, 0, 0,240,200, 43, 3, 1, 0, 0, 0, 80,202, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 83, 36, 3, 1, 0, 0, 0,192,139, 46, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,240,200, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,202, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 32, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 80,202, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,200, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, - 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 48, 31, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,176,203, 43, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 32, 1, 44, 3, 1, 0, 0, 0, 16,200, 43, 3, - 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0, 80,190, 43, 3, 1, 0, 0, 0,144,189, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 18, 4, 0, 0, 4, 4,144, 1, - 19, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 26, 15, 3, 1, 0, 0, 0, 64,243, 43, 3, 1, 0, 0, 0,192,255, 43, 3, - 1, 0, 0, 0,144,204, 43, 3, 1, 0, 0, 0,240,205, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 96,221, 32, 3, 1, 0, 0, 0, 64, 37,221, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,204, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,205, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -143, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, 31, 0,144, 1, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0,244, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 29, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,205, 43, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,204, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,191, 67, 0, 64,120,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,191, 67,254,127,120,196, 0, 0, 0, 0,127, 1, 0, 0, -144, 1, 0, 0, 18, 0, 0, 0,243, 3, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -126, 1, 0, 0, 18, 0, 0, 0,243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,144, 1,244, 3,127, 1,226, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224, 66,150, 27, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, -243, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1,244, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 27, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,207, 43, 3, 1, 0, 0, 0,176,241, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,207, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,208, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 28, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,208, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,210, 43, 3, - 1, 0, 0, 0, 80,207, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, - 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,210, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,212, 43, 3, 1, 0, 0, 0,224,208, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,212, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,213, 43, 3, - 1, 0, 0, 0,112,210, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, - 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,213, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,215, 43, 3, 1, 0, 0, 0, 0,212, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110, -103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,215, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,216, 43, 3, - 1, 0, 0, 0,144,213, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, - 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,216, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,218, 43, 3, 1, 0, 0, 0, 32,215, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,218, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,219, 43, 3, - 1, 0, 0, 0,176,216, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, - 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,219, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,221, 43, 3, 1, 0, 0, 0, 64,218, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115, -115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,221, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,222, 43, 3, - 1, 0, 0, 0,208,219, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, - 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,222, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,224, 43, 3, 1, 0, 0, 0, 96,221, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,224, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,226, 43, 3, - 1, 0, 0, 0,240,222, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, - 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105, -110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, -126, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,226, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,227, 43, 3, 1, 0, 0, 0,128,224, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254,126, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,227, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,229, 43, 3, - 1, 0, 0, 0, 16,226, 43, 3, 1, 0, 0, 0, 80, 43,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100, -101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, -126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,229, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,230, 43, 3, 1, 0, 0, 0,160,227, 43, 3, 1, 0, 0, 0, 48, 45,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253,126, 1,240, 1, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,230, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,232, 43, 3, - 1, 0, 0, 0, 48,229, 43, 3, 1, 0, 0, 0, 48, 55,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101, -110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, -126, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,232, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,233, 43, 3, 1, 0, 0, 0,192,230, 43, 3, 1, 0, 0, 0, 16, 60,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105, -110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,126, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,233, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,235, 43, 3, - 1, 0, 0, 0, 80,232, 43, 3, 1, 0, 0, 0,112, 62,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, -126, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,235, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,224,233, 43, 3, 1, 0, 0, 0,208, 67,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,126, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,238, 43, 3, - 1, 0, 0, 0,112,235, 43, 3, 1, 0, 0, 0, 48, 26,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102, -111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, -126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,238, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,240, 43, 3, 1, 0, 0, 0, 0,237, 43, 3, 1, 0, 0, 0,128, 76,182, 24, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101, -115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, - 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,240, 43, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,241, 43, 3, - 1, 0, 0, 0,144,238, 43, 3, 1, 0, 0, 0,224, 78,182, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, - 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109, -112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, -126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,241, 43, 3, - 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,240, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 64,243, 43, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,160,248, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, - 0, 0, 0, 0,224, 97,120, 22, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128,244, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,245, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, - 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, - 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, -128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224,245, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,247, 43, 3, 1, 0, 0, 0,128,244, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 76, 69, 78, 68, 69, 82, 45,118, 50, 53, 48, + 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, + 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 76, 79, 66, 24, 1, 0, 0, +224,236,191, 95,255,127, 0, 0,196, 0, 0, 0, 1, 0, 0, 0, 32, 32, 32, 55, 7, 0, 0, 0,250, 0, 0, 0, 1, 0, 0, 1, + 64,154,143, 22, 1, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 16, 0, 0,128, 32, 4, 0, 60,109,101,109,111,114,121, 50, + 62, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, 84,198,157, 3, 1, 0, 0, 0, +112,237,191, 95,255,127, 0, 0, 66,237, 91, 0, 1, 0, 0, 0, 80,237,191, 95,255,127, 0, 0,208, 76,159, 3, 32, 0, 0, 0, +224,237,191, 95,255,127, 0, 0, 32, 4,255, 24, 1, 0, 0, 0,144,237,191, 95,255,127, 0, 0, 48,198,157, 3, 1, 0, 0, 0, +192,237,191, 95,255,127, 0, 0,185,239, 91, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,237,191, 95,255,127, 0, 0, + 32, 0, 0, 0, 82, 69, 78, 68, 32, 4,255, 24, 1, 0, 0, 0, 82, 69, 78, 68, 32, 0, 0, 0,224,237,191, 95,255,127, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0,232,237,191, 95,255,127, 0, 0, 16,238,191, 95,255,127, 0, 0,197,246, 91, 0, 1, 0, 0, 0, + 80, 21,142, 22, 1, 0, 0, 0, 32, 4,255, 24, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 77, 0, 0, 8, 1, 0, 0,112, 24,142, 22, 1, 0, 0, 0, 96, 1, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 77, 87,105,110, 77, 97,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 25,142, 22, 1, 0, 0, 0,192, 25,142, 22, 1, 0, 0, 0,192, 25,142, 22, 1, 0, 0, 0, +192, 25,142, 22, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180,135, 22, 1, 0, 0, 0, 0,180,135, 22, 1, 0, 0, 0, + 0,180,135, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 68, 2, 1, 0, 0, 0, 0,140, 68, 2, 1, 0, 0, 0, + 0,140, 68, 2, 1, 0, 0, 0, 68, 65, 84, 65,224, 0, 0, 0,192, 25,142, 22, 1, 0, 0, 0, 97, 1, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,186,135, 22, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 64,154,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,115, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 1, 0,238, 3, + 0, 0, 1, 0, 0, 0, 0, 0,240,148,136, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 19, 56, 25, 1, 0, 0, 0,112,150, 33, 3, 1, 0, 0, 0,112,150, 33, 3, 1, 0, 0, 0, +112,161, 37, 3, 1, 0, 0, 0, 48,208, 36, 3, 1, 0, 0, 0,144, 79, 37, 3, 1, 0, 0, 0,144, 79, 37, 3, 1, 0, 0, 0, + 48,157,251, 24, 1, 0, 0, 0, 32,192, 20, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 78, 0, 0,208, 0, 0, 0,224, 26,142, 22, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,224,236,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 65,110,105,109, 97,116, +105,111,110, 0, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 27,142, 22, 1, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0,176, 34,142, 22, 1, 0, 0, 0, 48, 45,142, 22, 1, 0, 0, 0, +144, 45,142, 22, 1, 0, 0, 0,176,218,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 27,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 80, 28,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80, 28,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 28,142, 22, 1, 0, 0, 0, +240, 27,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +176, 28,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 29,142, 22, 1, 0, 0, 0, 80, 28,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 29,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,112, 29,142, 22, 1, 0, 0, 0,176, 28,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 29,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +208, 29,142, 22, 1, 0, 0, 0, 16, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, +112, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48, 30,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,240, 30,142, 22, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 6, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 30,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 80, 31,142, 22, 1, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 6,192, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176, 31,142, 22, 1, 0, 0, 0, +240, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,192, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +176, 31,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0,176, 31,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 6,116, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +208, 32,142, 22, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 2,116, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48, 33,142, 22, 1, 0, 0, 0, +112, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 2, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48, 33,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0, 48, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +156, 2, 52, 2, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 80, 34,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 6, 52, 3, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 52, 3, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 34,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 35,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 28,142, 22, 1, 0, 0, 0,176, 28,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 35,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 35,142, 22, 1, 0, 0, 0,176, 34,142, 22, 1, 0, 0, 0, + 80, 28,142, 22, 1, 0, 0, 0,112, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 35,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 35,142, 22, 1, 0, 0, 0, 16, 35,142, 22, 1, 0, 0, 0, +176, 28,142, 22, 1, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 35,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 36,142, 22, 1, 0, 0, 0,112, 35,142, 22, 1, 0, 0, 0, +112, 29,142, 22, 1, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 36,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 36,142, 22, 1, 0, 0, 0,208, 35,142, 22, 1, 0, 0, 0, +240, 27,142, 22, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 36,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 36,142, 22, 1, 0, 0, 0, 48, 36,142, 22, 1, 0, 0, 0, + 16, 29,142, 22, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 36,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 37,142, 22, 1, 0, 0, 0,144, 36,142, 22, 1, 0, 0, 0, +208, 29,142, 22, 1, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 37,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 37,142, 22, 1, 0, 0, 0,240, 36,142, 22, 1, 0, 0, 0, + 48, 30,142, 22, 1, 0, 0, 0,240, 30,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 37,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 38,142, 22, 1, 0, 0, 0, 80, 37,142, 22, 1, 0, 0, 0, + 16, 29,142, 22, 1, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 38,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 38,142, 22, 1, 0, 0, 0,176, 37,142, 22, 1, 0, 0, 0, +240, 30,142, 22, 1, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 38,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 38,142, 22, 1, 0, 0, 0, 16, 38,142, 22, 1, 0, 0, 0, +240, 27,142, 22, 1, 0, 0, 0,176, 31,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 38,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 39,142, 22, 1, 0, 0, 0,112, 38,142, 22, 1, 0, 0, 0, +144, 30,142, 22, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 39,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 39,142, 22, 1, 0, 0, 0,208, 38,142, 22, 1, 0, 0, 0, + 48, 30,142, 22, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 39,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 39,142, 22, 1, 0, 0, 0, 48, 39,142, 22, 1, 0, 0, 0, +176, 31,142, 22, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 39,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 40,142, 22, 1, 0, 0, 0,144, 39,142, 22, 1, 0, 0, 0, +176, 31,142, 22, 1, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 40,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 40,142, 22, 1, 0, 0, 0,240, 39,142, 22, 1, 0, 0, 0, + 16, 32,142, 22, 1, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 40,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 41,142, 22, 1, 0, 0, 0, 80, 40,142, 22, 1, 0, 0, 0, +112, 29,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 41,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 41,142, 22, 1, 0, 0, 0,176, 40,142, 22, 1, 0, 0, 0, +144, 30,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 41,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 41,142, 22, 1, 0, 0, 0, 16, 41,142, 22, 1, 0, 0, 0, +112, 32,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 41,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 42,142, 22, 1, 0, 0, 0,112, 41,142, 22, 1, 0, 0, 0, +176, 31,142, 22, 1, 0, 0, 0, 48, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 42,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 42,142, 22, 1, 0, 0, 0,208, 41,142, 22, 1, 0, 0, 0, +112, 32,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 42,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 42,142, 22, 1, 0, 0, 0, 48, 42,142, 22, 1, 0, 0, 0, + 48, 33,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 42,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 43,142, 22, 1, 0, 0, 0,144, 42,142, 22, 1, 0, 0, 0, +240, 30,142, 22, 1, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 43,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 43,142, 22, 1, 0, 0, 0,240, 42,142, 22, 1, 0, 0, 0, +144, 30,142, 22, 1, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 43,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 44,142, 22, 1, 0, 0, 0, 80, 43,142, 22, 1, 0, 0, 0, +208, 29,142, 22, 1, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 44,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 44,142, 22, 1, 0, 0, 0,176, 43,142, 22, 1, 0, 0, 0, + 80, 31,142, 22, 1, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 44,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 44,142, 22, 1, 0, 0, 0, 16, 44,142, 22, 1, 0, 0, 0, +240, 33,142, 22, 1, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 44,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 45,142, 22, 1, 0, 0, 0,112, 44,142, 22, 1, 0, 0, 0, +112, 29,142, 22, 1, 0, 0, 0, 48, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 45,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 44,142, 22, 1, 0, 0, 0, +208, 32,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +144, 45,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 48, 49,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 29,142, 22, 1, 0, 0, 0, 80, 28,142, 22, 1, 0, 0, 0,176, 28,142, 22, 1, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, + 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0, 96,236,142, 22, 1, 0, 0, 0, 96,236,142, 22, 1, 0, 0, 0, +112, 46,142, 22, 1, 0, 0, 0,208, 47,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 82, 40, 3, 1, 0, 0, 0, 16,225,253, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 46,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,208, 47,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, -128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64,247, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,245, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, - 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, -128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -240, 0, 0, 0,160,248, 43, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,192,255, 43, 3, 1, 0, 0, 0, 64,243, 43, 3, - 1, 0, 0, 0,128,244, 43, 3, 1, 0, 0, 0, 64,247, 43, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,249, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,251, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,251, 43, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,249, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 47,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 46,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, + 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, + 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, + 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 3, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48, 49,142, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 80, 97,142, 22, 1, 0, 0, 0,144, 45,142, 22, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, +240, 30,142, 22, 1, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0, 16, 29,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 49, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,191, 1, 0, 0, 4, 4, 80, 1,192, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0,192, 88,142, 22, 1, 0, 0, 0,240, 95,142, 22, 1, 0, 0, 0, 16, 50,142, 22, 1, 0, 0, 0, +112, 51,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,224,253, 24, 1, 0, 0, 0, + 48,224,253, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 50,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +112, 51,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,168, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 80, 1, 31, 0, 80, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0,161, 1, 0, 0,191, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 51,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 50,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,159, 67, 0,128,199,195, 0, 0, 0, 0, + 0, 0, 0, 0, 1,128,159, 67, 1,128,199,195, 0, 0, 0, 0, 63, 1, 0, 0, 80, 1, 0, 0, 18, 0, 0, 0,160, 1, 0, 0, + 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 62, 1, 0, 0, 18, 0, 0, 0,160, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0, 80, 1,161, 1, 63, 1,143, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,183,250, 24, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,160, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,161, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 52,142, 22, 1, 0, 0, 0, + 48, 87,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 52,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96, 54,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,252, 43, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,252, 43, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, + 0, 0,220,255, 63, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96, 54,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 55,142, 22, 1, 0, 0, 0,208, 52,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,255, 43, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,248, 43, 3, 1, 0, 0, 0,208,249, 43, 3, - 1, 0, 0, 0, 48,251, 43, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 32, 1, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,176,203, 43, 3, 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0,144,192, 43, 3, - 1, 0, 0, 0,208,191, 43, 3, 1, 0, 0, 0, 16,191, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,237, 2, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0,155, 1, 0, 0, 18, 18, 3, 3,156, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 71, 15, 3, - 1, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,160, 34, 44, 3, 1, 0, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0, 96, 3, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,161,109, 29, 1, 0, 0, 0,144,162,109, 29, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 3, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0,192, 64, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, - 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 3, 3, 26, 0, 3, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,237, 2, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 72, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 3, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 68, 0, 0, 0, 0, 0, 0, 84, 66, 0, 0, 0, 0, -255,127, 60, 68, 0, 0, 0, 0, 0, 0,193, 67,242, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, - 10, 0, 3, 3,130, 1,242, 2,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,237, 2, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 3,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 72, 15, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 55,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128, 57,142, 22, 1, 0, 0, 0, 96, 54,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,112, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,177, 0, 0, 0, 1, 0, 0, 0, 48, 8, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 48, 2, 27, 25, 1, 0, 0, 0, 0,105,159, 27, 1, 0, 0, 0, 64,193,148, 27, 1, 0, 0, 0, 64,193,148, 27, - 1, 0, 0, 0, 62, 62, 62, 32, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 5, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,208, 6, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 6, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 5, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, - 0,128,192, 67, 0, 6,188, 63,254,176,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, -129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, - 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5,130, 1,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, 48, 8, 44, 3, 1, 0, 0, 0,169, 0, 0, 0, - 1, 0, 0, 0,192, 13, 44, 3, 1, 0, 0, 0,192, 4, 44, 3, 1, 0, 0, 0,112, 5, 44, 3, 1, 0, 0, 0,208, 6, 44, 3, - 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128, 57,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 59,142, 22, 1, 0, 0, 0,240, 55,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 59,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160, 60,142, 22, 1, 0, 0, 0,128, 57,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160, 60,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 62,142, 22, 1, 0, 0, 0, 16, 59,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 62,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192, 63,142, 22, 1, 0, 0, 0,160, 60,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 11, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 12, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192, 63,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 65,142, 22, 1, 0, 0, 0, 48, 62,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, + 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, + 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 12, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 44, 3, 1, 0, 0, 0, 0, 0, 32,193, - 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,134,137,182,195,195, 68, 91, 68, 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0, -240, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -222, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, - 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0, -155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 65,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224, 66,142, 22, 1, 0, 0, 0,192, 63,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192, 13, 44, 3, - 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0, 48, 8, 44, 3, 1, 0, 0, 0, 0, 11, 44, 3, - 1, 0, 0, 0, 96, 12, 44, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,128, 16, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, - 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224, 66,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 68,142, 22, 1, 0, 0, 0, 80, 65,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 16, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,224, 17, 44, 3, 1, 0, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 68,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 70,142, 22, 1, 0, 0, 0,224, 66,142, 22, 1, 0, 0, 0,144, 47,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 17, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 16, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0, -162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 50,255, 63, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0,163, 0, 0, 0, - 1, 0, 0, 0,128, 30, 44, 3, 1, 0, 0, 0,192, 13, 44, 3, 1, 0, 0, 0, 32, 15, 44, 3, 1, 0, 0, 0,224, 17, 44, 3, - 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0, 70,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 71,142, 22, 1, 0, 0, 0,112, 68,142, 22, 1, 0, 0, 0, +192, 56,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95, +115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95, +115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, 63, 1, 69, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 71,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32, 73,142, 22, 1, 0, 0, 0, 0, 70,142, 22, 1, 0, 0, 0, 16,109,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 20, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 21, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0, -250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,153,254, 63, 1, 36, 0, 20, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 21, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 23, 44, 3, 1, 0, 0, 0,112, 20, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32, 73,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 74,142, 22, 1, 0, 0, 0,144, 71,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 23, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 24, 44, 3, 1, 0, 0, 0,208, 21, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, -251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 24, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 25, 44, 3, 1, 0, 0, 0, 48, 23, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 25, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 24, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 74,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64, 76,142, 22, 1, 0, 0, 0, 32, 73,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64, 76,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 77,142, 22, 1, 0, 0, 0,176, 74,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 27, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80, 27, 44, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, -142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, -111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, - 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190, -250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68, -160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, - 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128, 30, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,160, 34, 44, 3, - 1, 0, 0, 0, 64, 19, 44, 3, 1, 0, 0, 0,112, 20, 44, 3, 1, 0, 0, 0,240, 25, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224, 31, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 31, 44, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0,160, 34, 44, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 30, 44, 3, - 1, 0, 0, 0,224, 31, 44, 3, 1, 0, 0, 0, 64, 33, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0, 32, 1, 44, 3, - 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,240,189, 43, 3, 1, 0, 0, 0,176,190, 43, 3, 1, 0, 0, 0,208,191, 43, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,157, 1, 0, 0, 18, 4, 0, 0, 9, 9,240, 5, -118, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 60, 15, 3, 1, 0, 0, 0, 64, 39, 44, 3, 1, 0, 0, 0,176, 65, 44, 3, - 1, 0, 0, 0,128, 36, 44, 3, 1, 0, 0, 0,224, 37, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,139,105, 29, 1, 0, 0, 0, 16,140,105, 29, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 36, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 37, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,157, 1, 0, 0, -182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 63, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 37, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 36, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0,224,189, 68, 0, 0, 0, 0, 0,192, 22, 68, 0, 32, 66, 63,188,199,189, 68, 0, 0, 0, 0, 0,192, 22, 68, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5, 92, 2,240, 5, 92, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,183, 1, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 92, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 61, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, 64, 39, 44, 3, - 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0,208, 44, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,114, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 77,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96, 79,142, 22, 1, 0, 0, 0, 64, 76,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 42, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 43, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0,157, 1, 0, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,112, 43, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 42, 44, 3, - 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,132,137,182,195,194, 68, 91, 68,112,158, 93, 65, - 8, 19,249, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0, 91, 2, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0, 91, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, - 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5, 92, 2,223, 5, - 74, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0,183, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 92, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0,208, 44, 44, 3, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, 80, 50, 44, 3, 1, 0, 0, 0, 64, 39, 44, 3, - 1, 0, 0, 0, 16, 42, 44, 3, 1, 0, 0, 0,112, 43, 44, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 52, 81, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 46, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 47, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0, -111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 47, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 48, 44, 3, 1, 0, 0, 0, 48, 46, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 48, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 47, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, - 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, - 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 80, 50, 44, 3, - 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,208, 44, 44, 3, 1, 0, 0, 0, 48, 46, 44, 3, - 1, 0, 0, 0,240, 48, 44, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128, 51, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 52, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, -128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224, 52, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 54, 44, 3, 1, 0, 0, 0,128, 51, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, - 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, -153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, - 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64, 54, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 55, 44, 3, 1, 0, 0, 0,224, 52, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, -102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, -128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,160, 55, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 57, 44, 3, 1, 0, 0, 0, 64, 54, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, - 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, -104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, -128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 0, 57, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 55, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0, -128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 58, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0, 96, 58, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, - 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, - 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191, -184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, - 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195, -136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191, -184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, - 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0,176, 65, 44, 3, 1, 0, 0, 0, 80, 50, 44, 3, 1, 0, 0, 0,128, 51, 44, 3, 1, 0, 0, 0, 0, 57, 44, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 62, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 64, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, - 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 64, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 62, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, -246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, - 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, - 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176, 65, 44, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144, 61, 44, 3, 1, 0, 0, 0,240, 62, 44, 3, 1, 0, 0, 0, 80, 64, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176, 66, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 35, 44, 3, 1, 0, 0, 0,112,188, 43, 3, 1, 0, 0, 0,112,191, 43, 3, 1, 0, 0, 0,144,192, 43, 3, - 1, 0, 0, 0, 48,192, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,235, 2, 0, 0, 0, 0, 0, 0, -155, 1, 0, 0, 18, 18,236, 2,156, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 71, 15, 3, 1, 0, 0, 0, 80, 70, 44, 3, - 1, 0, 0, 0, 48,100, 44, 3, 1, 0, 0, 0,144, 67, 44, 3, 1, 0, 0, 0,240, 68, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,141,105, 29, 1, 0, 0, 0, 16,125,110, 29, 1, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,144, 67, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 68, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,231, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 59, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,235, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,236, 2, 26, 0,236, 2, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -235, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 72, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,240, 68, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 67, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 58, 68, 0, 0, 0, 0, 0, 0, 9, 67, 0, 0, 0, 0, 1,192, 54, 68, 0, 0, 0, 0, - 0, 0,193, 67,219, 2, 0, 0,236, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,218, 2, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, 10, 0,236, 2,130, 1,219, 2, -130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -235, 2, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236, 2,130, 1, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 72, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -112, 0, 0, 0, 80, 70, 44, 3, 1, 0, 0, 0,177, 0, 0, 0, 1, 0, 0, 0,192, 73, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 49,153, 27, - 1, 0, 0, 0, 16,197,152, 27, 1, 0, 0, 0,192,228,152, 27, 1, 0, 0, 0,192,228,152, 27, 1, 0, 0, 0, 62, 62, 62, 32, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 72, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, - 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 72, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 6,188, 63, -254,176,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, - 10, 0,240, 5,130, 1,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0,192, 73, 44, 3, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 80, 79, 44, 3, - 1, 0, 0, 0, 80, 70, 44, 3, 1, 0, 0, 0, 0, 71, 44, 3, 1, 0, 0, 0, 96, 72, 44, 3, 1, 0, 0, 0, 9, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 76, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,240, 77, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 77, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 76, 44, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, - 0, 0, 0, 68,134,137,182,195,195, 68, 91, 68, 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0, -129, 1, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0, -129, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, - 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5,130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80, 79, 44, 3, 1, 0, 0, 0,173, 0, 0, 0, - 1, 0, 0, 0,208, 84, 44, 3, 1, 0, 0, 0,192, 73, 44, 3, 1, 0, 0, 0,144, 76, 44, 3, 1, 0, 0, 0,240, 77, 44, 3, - 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 58, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 80, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 82, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, - 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, - 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 82, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 83, 44, 3, - 1, 0, 0, 0,176, 80, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 83, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 82, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, - 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0, -239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, - 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,208, 84, 44, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, 16, 96, 44, 3, - 1, 0, 0, 0, 80, 79, 44, 3, 1, 0, 0, 0,176, 80, 44, 3, 1, 0, 0, 0,112, 83, 44, 3, 1, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,192, 88, 44, 3, 1, 0, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, - 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 88, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0, 96, 87, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, - 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, -119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,128, 91, 44, 3, 1, 0, 0, 0,192, 88, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 91, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 90, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224, 92, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224, 92, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, - 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, - 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, - 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, - 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67, -151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, - 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, - 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0, 16, 96, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 48,100, 44, 3, 1, 0, 0, 0,208, 84, 44, 3, - 1, 0, 0, 0, 0, 86, 44, 3, 1, 0, 0, 0,128, 91, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 97, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 98, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 98, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 97, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, -248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 48,100, 44, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 96, 44, 3, 1, 0, 0, 0,112, 97, 44, 3, - 1, 0, 0, 0,208, 98, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,160,125, 44, 3, - 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 64, 17, 45, 3, 1, 0, 0, 0, 96,187, 43, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 85, 86, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,144,131, 44, 3, - 1, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0, 32,250, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,127, 44, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,128, 44, 3, - 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0,208,127, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,128, 44, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,129, 44, 3, - 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,130, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 60, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,131, 44, 3, - 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0,208,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 84, 0, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,131, 44, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 3, 19, 4, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0,112,127, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0,240,131, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0, 80,132, 44, 3, 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,144,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,176,132, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0, 16,133, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,240,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,112,133, 44, 3, 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0,240,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0,208,133, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0, 48,134, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,176,129, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,144,134, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,176,129, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,240,134, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0, 80,135, 44, 3, 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0,176,135, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0, 16,136, 44, 3, 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,112,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,112,136, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,112,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,208,136, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,208,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0, 48,137, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,208,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,144,137, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,208,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0,240,137, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0, 80,138, 44, 3, 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0,176,138, 44, 3, 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,131, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0, 16,139, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,131, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,139, 44, 3, 1, 0, 0, 0,192, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,139, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,144,131, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0,208,143, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0, 16,127, 44, 3, - 1, 0, 0, 0,112,127, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,192, 16, 45, 3, 1, 0, 0, 0,192, 16, 45, 3, 1, 0, 0, 0, 16,141, 44, 3, 1, 0, 0, 0,112,142, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,141, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,142, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,142, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16,141, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0, -255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0,145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, -127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,143, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96,190, 44, 3, - 1, 0, 0, 0, 48,140, 44, 3, 1, 0, 0, 0,240,128, 44, 3, 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0,208,127, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 59, 3, 0, 0, 4, 4,132, 1, 60, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,181, 44, 3, - 1, 0, 0, 0, 0,189, 44, 3, 1, 0, 0, 0,176,144, 44, 3, 1, 0, 0, 0, 16,146, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176,144, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,146, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, - 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, - 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, -128, 7, 0, 0, 29, 3, 0, 0, 59, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, - 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16,146, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,144, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,185, 67, 0,128, 66,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,185, 67,253,191, 66,196, - 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1, 29, 3,115, 1, - 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0, -128, 7, 0, 0, 0, 0, 0, 0, 28, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 29, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,147, 44, 3, 1, 0, 0, 0, 64,180, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,112,147, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,149, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99, -111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99, -111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,114, 1, 36, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,149, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,144,150, 44, 3, 1, 0, 0, 0,112,147, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,144,150, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,152, 44, 3, 1, 0, 0, 0, 0,149, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121, -101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121, -101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,152, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,176,153, 44, 3, 1, 0, 0, 0,144,150, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,176,153, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,155, 44, 3, 1, 0, 0, 0, 32,152, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116, -105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116, -105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96, 79,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 80,142, 22, 1, 0, 0, 0,208, 77,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,155, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,208,156, 44, 3, 1, 0, 0, 0,176,153, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,208,156, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,158, 44, 3, 1, 0, 0, 0, 64,155, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116, -112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116, -112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,158, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,240,159, 44, 3, 1, 0, 0, 0,208,156, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,240,159, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,161, 44, 3, 1, 0, 0, 0, 96,158, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115, -116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115, -116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,161, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 16,163, 44, 3, 1, 0, 0, 0,240,159, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0, 16,163, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,164, 44, 3, 1, 0, 0, 0,128,161, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105, -116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105, -116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,164, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 48,166, 44, 3, 1, 0, 0, 0, 16,163, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0, 48,166, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,167, 44, 3, 1, 0, 0, 0,160,164, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121, -115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121, -115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,167, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 80,169, 44, 3, 1, 0, 0, 0, 48,166, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0, 80,169, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,170, 44, 3, 1, 0, 0, 0,192,167, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97, -121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97, -121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,114, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,170, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,112,172, 44, 3, 1, 0, 0, 0, 80,169, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,165,254,114, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,112,172, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,174, 44, 3, 1, 0, 0, 0,224,170, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110, -116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110, -116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,114, 1, 58, 0, 20, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,114, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,174, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,144,175, 44, 3, 1, 0, 0, 0,112,172, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 80,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128, 82,142, 22, 1, 0, 0, 0, 96, 79,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,213,253,114, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,144,175, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,177, 44, 3, 1, 0, 0, 0, 0,174, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117, -116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117, -116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,114, 1,105, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128, 82,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 84,142, 22, 1, 0, 0, 0,240, 80,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,177, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,176,178, 44, 3, 1, 0, 0, 0,144,175, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 60,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,176,178, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,180, 44, 3, 1, 0, 0, 0, 32,177, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111, -115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111, -115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115, -105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,180, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,178, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 12,253,114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 0, 1, 0, 0,208,181, 44, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 0,189, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,183, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,184, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,184, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,183, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, - 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,185, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,185, 44, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 0,189, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,181, 44, 3, 1, 0, 0, 0, 16,183, 44, 3, 1, 0, 0, 0,112,184, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0, 96,190, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0,208,143, 44, 3, - 1, 0, 0, 0,176,126, 44, 3, 1, 0, 0, 0,112,130, 44, 3, 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0,240,128, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,252, 5, - 84, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 44, 3, 1, 0, 0, 0,240,200, 44, 3, - 1, 0, 0, 0, 64,191, 44, 3, 1, 0, 0, 0,160,192, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,191, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,192, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,192, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,191, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,252, 5, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 26, 0, 0, 0, - 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 0,194, 44, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0,240,200, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,195, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96,196, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,196, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, - 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,197, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192,197, 44, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, - 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, - 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,240,200, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,194, 44, 3, 1, 0, 0, 0, 0,195, 44, 3, 1, 0, 0, 0, 96,196, 44, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0, 96,190, 44, 3, - 1, 0, 0, 0,176,129, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, 1, 0, 0, 0,144,128, 44, 3, 1, 0, 0, 0, 16,130, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, 18, 4, 0, 0, 3, 3,132, 1, -214, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,205, 44, 3, 1, 0, 0, 0,160,218, 44, 3, - 1, 0, 0, 0, 48,203, 44, 3, 1, 0, 0, 0,144,204, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,203, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,204, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,204, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,203, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 42,195, 0, 0, 0, 0,115, 1, 0, 0, -132, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -114, 1, 0, 0, 18, 0, 0, 0,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1,188, 0,115, 1,170, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 61, 3, 0, 0, -248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,188, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,205, 44, 3, - 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0,112,211, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,207, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 80,207, 44, 3, - 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,160,207, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, -208, 0, 0, 0,160,207, 44, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,234,138, 3, - 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,234,138, 3, - 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 32,150, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,160, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,144,158, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48, 4,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,208,145, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0,145, 45, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,208, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,210, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, - 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, - 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,210, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176,208, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0, -205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, - 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,112,211, 44, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,160,218, 44, 3, - 1, 0, 0, 0,240,205, 44, 3, 1, 0, 0, 0,176,208, 44, 3, 1, 0, 0, 0, 16,210, 44, 3, 1, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176,212, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,214, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, -108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16,214, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,212, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0, -108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,215, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0,112,215, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195, -115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160,218, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,211, 44, 3, 1, 0, 0, 0,176,212, 44, 3, 1, 0, 0, 0, 16,214, 44, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 32,250, 44, 3, - 1, 0, 0, 0, 80,202, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0, 80,129, 44, 3, - 1, 0, 0, 0,208,130, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0,251, 5, 0, 0, 85, 0, 0, 0, - 18, 4, 0, 0, 1, 1, 91, 2,190, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,245, 44, 3, - 1, 0, 0, 0, 32,249, 44, 3, 1, 0, 0, 0,224,220, 44, 3, 1, 0, 0, 0,112,240, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224,220, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,222, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192, 22, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 90, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 91, 2, 26, 0, 91, 2, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, -251, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 2, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 64,222, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,226, 44, 3, 1, 0, 0, 0,224,220, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, - 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, -161, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, - 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,223, 44, 3, 1, 0, 0, 0, 48,225, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,160,223, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,225, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111, -111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111, -111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,225, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,223, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,192,226, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,229, 44, 3, 1, 0, 0, 0, 64,222, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, -102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0, -251, 5, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,228, 44, 3, 1, 0, 0, 0, 32,228, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0, 32,228, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, -115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97, -115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,229, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112,240, 44, 3, 1, 0, 0, 0,192,226, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,231, 44, 3, - 1, 0, 0, 0,224,238, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,231, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,160,232, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,160,232, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,234, 44, 3, 1, 0, 0, 0, 16,231, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, -101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112, -101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105, -108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,254,163, 0, 58, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,234, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,192,235, 44, 3, 1, 0, 0, 0,160,232, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,219,252,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,192,235, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,237, 44, 3, 1, 0, 0, 0, 48,234, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100, -118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100, -118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,251,163, 0, 3, 1, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,237, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0,224,238, 44, 3, 1, 0, 0, 0,192,235, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,168,251,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 88, 1, 0, 0,224,238, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,237, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, - 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, - 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114, -105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,251,163, 0, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,240, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,229, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 3, 0, 0,251, 5, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,241, 44, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,241, 44, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0,128, 98,216, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, - 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, - 0, 0,128, 63,168,114, 49, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,119, 86,197, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62, 8,179,183,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65,197, 89,120, 62, 48, 27, 10, 63, 32,184, 0,188, 0, 0,196,181,195, 13,188,190,192, 73, 53, 62, 99,126, 81, 63, - 0,128,163, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67, -151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, - 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, - 0, 0,128, 63,168,114, 49, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,119, 86,197, 63,140,225, 88, 62, 9, 46,185, 62, - 35, 44,185, 62, 8,179,183,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, - 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0, 0,245, 44, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32,249, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,246, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,247, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,247, 44, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,246, 44, 3, 1, 0, 0, 0, 0, 0, 64,192, - 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, - 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0, -248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 32,249, 44, 3, - 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,245, 44, 3, 1, 0, 0, 0, 96,246, 44, 3, - 1, 0, 0, 0,192,247, 44, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 32,250, 44, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220, 44, 3, 1, 0, 0, 0,112,130, 44, 3, - 1, 0, 0, 0, 48,128, 44, 3, 1, 0, 0, 0,144,131, 44, 3, 1, 0, 0, 0, 48,131, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0, 18, 4, 0, 0, 6, 6,160, 3,190, 3, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0, 0,251, 44, 3, - 1, 0, 0, 0, 80,255, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,251, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 96,252, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,252, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 80,255, 44, 3, 1, 0, 0, 0, 0,251, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0, -163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,188, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,189, 0,164, 3, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,253, 44, 3, - 1, 0, 0, 0,192,253, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,253, 44, 3, 1, 0, 0, 0,193, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,196,255,172, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 80,255, 44, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,252, 44, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0,128,113,191, 0,192,248, 63, 0, 0,169,191, - 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,227, 2, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,189, 0, 0, 0, -159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 2,164, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -168, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0,160, 11, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,144, 1, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 2, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,240, 2, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 4, 45, 3, 1, 0, 0, 0,144, 1, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, - 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, - 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 80, 4, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 5, 45, 3, 1, 0, 0, 0,240, 2, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, -102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176, 5, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 7, 45, 3, 1, 0, 0, 0, 80, 4, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, - 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, -104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, -167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 7, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 5, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 8, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0,112, 8, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, - 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, - 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, -184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, - 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195, -136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, -184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, - 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160, 11, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0,176, 0, 45, 3, 1, 0, 0, 0,144, 1, 45, 3, 1, 0, 0, 0, 16, 7, 45, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 14, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, - 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 14, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, -246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, - 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, - 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,192, 15, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160, 11, 45, 3, 1, 0, 0, 0, 0, 13, 45, 3, 1, 0, 0, 0, 96, 14, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, 64, 17, 45, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,125, 44, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 86,105, -100,101,111, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,144, 23, 45, 3, 1, 0, 0, 0,112, 31, 45, 3, - 1, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0,160,123, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 19, 45, 3, - 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0,176, 18, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 46, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 19, 45, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 20, 45, 3, - 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 20, 45, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 22, 45, 3, - 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3, 19, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 22, 45, 3, - 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,236, 1, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, - 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3,236, 1, - 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,144, 23, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,240, 23, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 24, 45, 3, 1, 0, 0, 0,144, 23, 45, 3, - 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 80, 24, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 24, 45, 3, 1, 0, 0, 0,240, 23, 45, 3, - 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,176, 24, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 25, 45, 3, 1, 0, 0, 0, 80, 24, 45, 3, - 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 16, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 25, 45, 3, 1, 0, 0, 0,176, 24, 45, 3, - 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,112, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 25, 45, 3, 1, 0, 0, 0, 16, 25, 45, 3, - 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,208, 25, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 26, 45, 3, 1, 0, 0, 0,112, 25, 45, 3, - 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 48, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 26, 45, 3, 1, 0, 0, 0,208, 25, 45, 3, - 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,144, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 26, 45, 3, 1, 0, 0, 0, 48, 26, 45, 3, - 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,240, 26, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 27, 45, 3, 1, 0, 0, 0,144, 26, 45, 3, - 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 80, 27, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 27, 45, 3, 1, 0, 0, 0,240, 26, 45, 3, - 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,176, 27, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 28, 45, 3, 1, 0, 0, 0, 80, 27, 45, 3, - 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 16, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 28, 45, 3, 1, 0, 0, 0,176, 27, 45, 3, - 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,112, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 28, 45, 3, 1, 0, 0, 0, 16, 28, 45, 3, - 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,208, 28, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 29, 45, 3, 1, 0, 0, 0,112, 28, 45, 3, - 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 48, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 29, 45, 3, 1, 0, 0, 0,208, 28, 45, 3, - 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,144, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 29, 45, 3, 1, 0, 0, 0, 48, 29, 45, 3, - 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,240, 29, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 30, 45, 3, 1, 0, 0, 0,144, 29, 45, 3, - 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 80, 30, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 30, 45, 3, 1, 0, 0, 0,240, 29, 45, 3, - 1, 0, 0, 0, 80, 18, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,176, 30, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 31, 45, 3, 1, 0, 0, 0, 80, 30, 45, 3, - 1, 0, 0, 0, 48, 20, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0, 16, 31, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 31, 45, 3, 1, 0, 0, 0,176, 30, 45, 3, - 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,112, 31, 45, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 31, 45, 3, - 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,112, 35, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0,176, 18, 45, 3, 1, 0, 0, 0, 16, 19, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, 46, 4, 0, 0, 7, 7,129, 7, - 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,141, 45, 3, 1, 0, 0, 0, 32,141, 45, 3, - 1, 0, 0, 0,176, 32, 45, 3, 1, 0, 0, 0, 16, 34, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 32, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 34, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 20, 4, 0, 0, - 45, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 34, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 32, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0,240, 79, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255, 79, 69, 0, 0, 0,192, 0, 0, 0, 0,128, 6, 0, 0, -145, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,127, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -127, 6, 0, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,145, 6, 4, 0,128, 6, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 4, 0, 0, - 46, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,112, 35, 45, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96, 47, 45, 3, 1, 0, 0, 0,208, 31, 45, 3, 1, 0, 0, 0, 80, 18, 45, 3, - 1, 0, 0, 0, 80, 21, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0,112, 19, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15,129, 7, 84, 0, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 45, 3, 1, 0, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0, 80, 36, 45, 3, - 1, 0, 0, 0,176, 37, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 36, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,176, 37, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 37, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 36, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 18, 0, 0, 0, - 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 16, 39, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,112, 41, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 41, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208, 42, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208, 42, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, - 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, - 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67, -129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, - 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, - 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 32, 1, 0, 0, 0, 46, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 39, 45, 3, - 1, 0, 0, 0, 16, 40, 45, 3, 1, 0, 0, 0,112, 41, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96, 47, 45, 3, - 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,112, 35, 45, 3, 1, 0, 0, 0, 80, 21, 45, 3, - 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 8, 8,156, 5,151, 1, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,192, 67, 45, 3, 1, 0, 0, 0, 64, 48, 45, 3, - 1, 0, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 48, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0,160, 49, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 31, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0,128,179, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 96,191, 68, 0, 0,200, 65, 0, 96,191, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,156, 5, 26, 0,156, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 49, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0, 64, 48, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0,155, 5, 0, 0,111, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 51, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 49, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -124, 1, 0, 0, 18, 0, 0, 0,155, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,155, 5, 0, 0, 18, 0, 0, 0, -124, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,156, 5,125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 5, 0, 0,111, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 5,125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, - 1, 0, 0, 0,160, 63, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 84,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160, 85,142, 22, 1, 0, 0, 0,128, 82,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253,114, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160, 85,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 87,142, 22, 1, 0, 0, 0, 16, 84,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 53, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 54, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 85, 0, 0, 0, -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,114, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 54, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 56, 45, 3, 1, 0, 0, 0,144, 53, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, -223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,113, 1, 0, 0, 5, 0, 3, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 87,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 85,142, 22, 1, 0, 0, 0,240, 28,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,135,255, 63, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 56, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 57, 45, 3, 1, 0, 0, 0,240, 54, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0, -160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, -111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 57, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 59, 45, 3, 1, 0, 0, 0, 80, 56, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0, -223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 59, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 57, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0, -223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252, 5,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 60, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112, 60, 45, 3, - 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -200, 79,145, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, - 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190, -142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65, -111,121,173,192,248,209,213, 64, 0, 0,128, 63,178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, - 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,112,240,191, 62,108,116, 85, 63, 80,184, 70,188, 0, 0, 46,180,159, 49,181,189, -125,172, 46, 61, 7,213, 73, 62, 0, 64,143,180,182,107, 25,196, 13,135,135, 67, 70, 12,167,195, 71, 0, 72,194,225, 56, 25, 68, - 38, 90,135,195,237,212,166, 67, 84, 2, 72, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63, -143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, - 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, - 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65, -214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 13,114,156, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, +192, 88,142, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,240, 95,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160, 63, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,192, 67, 45, 3, - 1, 0, 0, 0, 96, 52, 45, 3, 1, 0, 0, 0,144, 53, 45, 3, 1, 0, 0, 0, 16, 59, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, - 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, - 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 0, 65, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 45, 3, - 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, - 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, - 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 48, 43,252, 24, 1, 0, 0, 0, +255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 90,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96, 91,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -200, 0, 0, 0,192, 67, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 45, 3, - 1, 0, 0, 0, 0, 65, 45, 3, 1, 0, 0, 0, 96, 66, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 91,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, -160, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0, 96, 47, 45, 3, - 1, 0, 0, 0,112, 22, 45, 3, 1, 0, 0, 0,208, 19, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 2, 2, 72, 3, - 38, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 75, 45, 3, 1, 0, 0, 0, 64,101, 45, 3, - 1, 0, 0, 0,160, 69, 45, 3, 1, 0, 0, 0,192, 73, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 69, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 71, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 82, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 71, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 72, 3, 26, 0, 72, 3, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0,237, 1, 0, 0, - 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 71, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 72, 45, 3, 1, 0, 0, 0,160, 69, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0,253,195, 0, 0, 0, 0,163, 0, 0, 0, -180, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,180, 0, 12, 2,163, 0,250, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,179, 0, 0, 0, 7, 2, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 12, 2, 0, 0, 2, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 92,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192, 92,142, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 72, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 73, 45, 3, 1, 0, 0, 0, 0, 71, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 3, 0, 0, 71, 3, 0, 0, 7, 2, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,240, 95,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192, 88,142, 22, 1, 0, 0, 0, 0, 90,142, 22, 1, 0, 0, 0, 96, 91,142, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 80, 97,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 64,109,142, 22, 1, 0, 0, 0, 48, 49,142, 22, 1, 0, 0, 0, +240, 27,142, 22, 1, 0, 0, 0,176, 31,142, 22, 1, 0, 0, 0, 16, 32,142, 22, 1, 0, 0, 0, 48, 30,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, 0, 0, 0, 0,115, 0, 0, 0, 15, 15, 48, 6,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 15, 3, 1, 0, 0, 0,240,100,142, 22, 1, 0, 0, 0,224,107,142, 22, 1, 0, 0, 0, + 48, 98,142, 22, 1, 0, 0, 0,144, 99,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96,200,252, 24, 1, 0, 0, 0, 80,199,254, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 98,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,144, 99,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,198, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 48, 6, 26, 0, 48, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 99,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 98,142, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, + 18, 0, 0, 0, 89, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 48, 6, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, 26, 0, 0, 0,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 6, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,240,100,142, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0,224,107,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 73, 45, 3, - 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 72, 45, 3, 1, 0, 0, 0, 0, 0, 16,193, - 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, - 17, 0, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0, 18, 0, 0, 0,147, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, -147, 2, 0, 0, 18, 0, 0, 0, 11, 2, 0, 0,111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, - 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0,148, 2, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 71, 3, 0, 0, 7, 2, 0, 0, - 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,148, 2, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 32, 75, 45, 3, - 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0,208, 80, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,101,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,103,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,103,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,101,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,104,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,176,104,142, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,224,107,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,100,142, 22, 1, 0, 0, 0,240,101,142, 22, 1, 0, 0, 0, 80,103,142, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 64,109,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240,126,142, 22, 1, 0, 0, 0, 80, 97,142, 22, 1, 0, 0, 0, +240, 30,142, 22, 1, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0, 80, 34,142, 22, 1, 0, 0, 0, 80, 31,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0,193, 1, 0, 0, 51, 3, 0, 0, 3, 3, 80, 1,115, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 15, 3, 1, 0, 0, 0,224,112,142, 22, 1, 0, 0, 0,144,125,142, 22, 1, 0, 0, 0, + 32,110,142, 22, 1, 0, 0, 0,128,111,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192, 1,252, 24, 1, 0, 0, 0, 48, 91,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,110,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128,111,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,168, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 80, 1, 26, 0, 80, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0, 26, 3, 0, 0, 51, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,111,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,110,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, + 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,159, 67, 0,128,163,195, 0, 0, 0, 0, 63, 1, 0, 0, 80, 1, 0, 0, + 18, 0, 0, 0, 88, 1, 0, 0, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 62, 1, 0, 0, + 18, 0, 0, 0, 88, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 80, 1, 89, 1, 63, 1, 71, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0,193, 1, 0, 0, 25, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1, 89, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 1, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,112,142, 22, 1, 0, 0, 0, +166, 0, 0, 0, 1, 0, 0, 0, 96,118,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,131, 16, 26, 1, 0, 0, 0, + 96,131, 16, 26, 1, 0, 0, 0, 64,114,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 64,114,142, 22, 1, 0, 0, 0, +218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,144,114,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, +144,114,142, 22, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,242, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,253, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,251, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,238, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,237, 39, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,115,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,117,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, + 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, + 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0,117,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160,115,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67, +223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0, +156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 0, 1, 0, 0, 96,118,142, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144,125,142, 22, 1, 0, 0, 0, +224,112,142, 22, 1, 0, 0, 0,160,115,142, 22, 1, 0, 0, 0, 0,117,142, 22, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160,119,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,121,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0,121,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,119,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,122,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 96,122,142, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,125,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,118,142, 22, 1, 0, 0, 0,160,119,142, 22, 1, 0, 0, 0, 0,121,142, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,240,126,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 16,157,142, 22, 1, 0, 0, 0, + 64,109,142, 22, 1, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0, + 16, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 2, 0, 0, 47, 6, 0, 0,117, 0, 0, 0, 21, 4, 0, 0, + 1, 1,147, 3,161, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0,240,151,142, 22, 1, 0, 0, 0, + 16,156,142, 22, 1, 0, 0, 0,208,127,142, 22, 1, 0, 0, 0, 96,147,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,206,253, 24, 1, 0, 0, 0, 96, 76, 40, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,127,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,129,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 91, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192,100, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,146, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,147, 3, 26, 0,147, 3, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 2, 0, 0, 47, 6, 0, 0, +117, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,147, 3, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,129,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,133,142, 22, 1, 0, 0, 0,208,127,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 2, 0, 0,157, 2, 0, 0, +143, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,135, 3, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,130,142, 22, 1, 0, 0, 0, 32,132,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144,130,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,132,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, +104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, +104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,132,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,130,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,133,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,136,142, 22, 1, 0, 0, 0, 48,129,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 2, 0, 0, 47, 6, 0, 0, +143, 0, 0, 0,143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,224, 11, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16,135,142, 22, 1, 0, 0, 0, 16,135,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 16,135,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111, +112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111, +112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,136,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 96,147,142, 22, 1, 0, 0, 0,176,133,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 97,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 97,196, 0, 0,136,195,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,136, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,136, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,137, 2,163, 0,119, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 47, 6, 0, 0, 47, 6, 0, 0,143, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138,142, 22, 1, 0, 0, 0, +208,145,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,138,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +144,139,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144,139,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,141,142, 22, 1, 0, 0, 0, 0,138,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105, +108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105, +108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,252,163, 0, 58, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,141,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176,142,142, 22, 1, 0, 0, 0,144,139,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 45,253,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176,142,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,144,142, 22, 1, 0, 0, 0, 32,141,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18,252,163, 0, 3, 1, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,144,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208,145,142, 22, 1, 0, 0, 0,176,142,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,229,252,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208,145,142, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,144,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, + 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,252,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,147,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160,136,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 2, 0, 0, 47, 6, 0, 0,143, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,147, 3,135, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,148,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192,148,142, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72,220,141, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +178,157,229, 62, 46,247,227,190,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 97,195, 91, 62, 9, 46,185, 62, 35, 44,185, 62, +145,180,109,188,100,241,125, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,160, 32,182,197,149,185,190,137,232, 50, 62, 52,191, 78, 63, 0,128,213, 53, +215,104, 25,196,133,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,158, 87,135,195,205,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +178,157,229, 62, 46,247,227,190,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 97,195, 91, 62, 9, 46,185, 62, 35, 44,185, 62, +145,180,109,188,100,241,125, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +190,200, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,190,200, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,190,200, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 60,248, 2, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, +240,151,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 16,156,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 3, 0,255,255, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,153,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,154,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,154,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,153,142, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 16,156,142, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,151,142, 22, 1, 0, 0, 0, 80,153,142, 22, 1, 0, 0, 0, +176,154,142, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 16,157,142, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 48,185,142, 22, 1, 0, 0, 0,240,126,142, 22, 1, 0, 0, 0,176, 31,142, 22, 1, 0, 0, 0, + 48, 33,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0,112, 32,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,155, 2, 0, 0,117, 0, 0, 0, 51, 2, 0, 0, 2, 2,156, 2,191, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 14, 15, 3, 1, 0, 0, 0,112,163,142, 22, 1, 0, 0, 0, 48,184,142, 22, 1, 0, 0, 0,240,157,142, 22, 1, 0, 0, 0, + 16,162,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,174,250, 24, 1, 0, 0, 0, + 80,135,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,157,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,159,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 39, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,156, 2, 26, 0,156, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0,117, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,156, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 16, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,159,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,160,142, 22, 1, 0, 0, 0,240,157,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 72, 67, 0,128,201,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0,164, 1, 0, 0, + 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0,164, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, + 0, 0, 0, 4, 6, 0,217, 0,165, 1,200, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0,143, 0, 0, 0, 51, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,217, 0,165, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 17, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,160,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16,162,142, 22, 1, 0, 0, 0, 80,159,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0,155, 2, 0, 0,143, 0, 0, 0, 51, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 16, 18, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,162,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,160,142, 22, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,164, 1, 0, 0, + 18, 0, 0, 0,194, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,194, 1, 0, 0, 18, 0, 0, 0,164, 1, 0, 0, +111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0,195, 1,165, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 0, 0,155, 2, 0, 0,143, 0, 0, 0, 51, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,195, 1,165, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 15, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,112,163,142, 22, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0, + 32,169,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,164,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +160,164,142, 22, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,165,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,166,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,166,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192,167,142, 22, 1, 0, 0, 0, 0,165,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, + 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, + 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, + 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,167,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,166,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, + 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, + 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 32,169,142, 22, 1, 0, 0, 0, +167, 0, 0, 0, 1, 0, 0, 0, 16,180,142, 22, 1, 0, 0, 0,112,163,142, 22, 1, 0, 0, 0, 0,165,142, 22, 1, 0, 0, 0, +192,167,142, 22, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,170,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,171,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,171,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192,172,142, 22, 1, 0, 0, 0, 0,170,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,172,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 32,174,142, 22, 1, 0, 0, 0, 96,171,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,174,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128,175,142, 22, 1, 0, 0, 0,192,172,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,175,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,174,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224,176,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224,176,142, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, + 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, + 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195, +205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, + 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 16,180,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 48,184,142, 22, 1, 0, 0, 0, + 32,169,142, 22, 1, 0, 0, 0, 0,170,142, 22, 1, 0, 0, 0,128,175,142, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112,181,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,182,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,182,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,181,142, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, + 48,184,142, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,180,142, 22, 1, 0, 0, 0, +112,181,142, 22, 1, 0, 0, 0,208,182,142, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 48,185,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,176,218,142, 22, 1, 0, 0, 0, 16,157,142, 22, 1, 0, 0, 0, + 48, 33,142, 22, 1, 0, 0, 0,112, 29,142, 22, 1, 0, 0, 0,208, 32,142, 22, 1, 0, 0, 0,144, 33,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0, 53, 2, 0, 0, 21, 4, 0, 0, 12, 12,156, 2,225, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 50, 15, 3, 1, 0, 0, 0, 48,190,142, 22, 1, 0, 0, 0,176,217,142, 22, 1, 0, 0, 0, + 16,186,142, 22, 1, 0, 0, 0,208,188,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,135,251, 24, 1, 0, 0, 0,144, 0,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,186,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,187,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 39, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,156, 2, 26, 0,156, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155, 2, 0, 0, 53, 2, 0, 0, 78, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,156, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 51, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,187,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,208,188,142, 22, 1, 0, 0, 0, 16,186,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, + 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0,192,244,195, 0, 0, 82,194, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, + 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,200, 0,199, 1,200, 0,181, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 79, 2, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0,199, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 52, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,188,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,187,142, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, + 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0,192,244,195, 0, 0, 82,194,195, 1, 0, 0,212, 1, 0, 0, + 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0,194, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,194, 1, 0, 0, + 18, 0, 0, 0,198, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, + 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,212, 1,199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 0, 0, 0,155, 2, 0, 0, 79, 2, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,212, 1,199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 51, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0, 48,190,142, 22, 1, 0, 0, 0, + 21, 1, 0, 0, 1, 0, 0, 0,240,196,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,191,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,208,192,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 49, 2, 0, 0, 74, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,192,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 48,194,142, 22, 1, 0, 0, 0,112,191,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, + 0, 0,112,193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,219,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, + 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, + 18, 0, 0, 0,199, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 10, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,217, 0,200, 1,200, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0,200, 1, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,194,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,144,195,142, 22, 1, 0, 0, 0,208,192,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,195,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,194,142, 22, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, + 0, 0,160,192, 0, 0,160, 64, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,199, 1, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,198, 2, 0, 0, + 18, 0, 0, 0,199, 1, 0, 0,111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0, +105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 0, 0,159, 3, 0, 0, 75, 2, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 2,200, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0,240,196,142, 22, 1, 0, 0, 0, +161, 0, 0, 0, 1, 0, 0, 0,160,202,142, 22, 1, 0, 0, 0, 48,190,142, 22, 1, 0, 0, 0,112,191,142, 22, 1, 0, 0, 0, +144,195,142, 22, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,198,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 32,198,142, 22, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128,198,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,199,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, + 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +224,199,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,201,142, 22, 1, 0, 0, 0,128,198,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, +172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 64,201,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,199,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, +111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, +160,202,142, 22, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0,144,213,142, 22, 1, 0, 0, 0,240,196,142, 22, 1, 0, 0, 0, +128,198,142, 22, 1, 0, 0, 0, 64,201,142, 22, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128,203,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,204,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, + 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +224,204,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,206,142, 22, 1, 0, 0, 0,128,203,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 64,206,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,207,142, 22, 1, 0, 0, 0,224,204,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, +111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160,207,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,209,142, 22, 1, 0, 0, 0, 64,206,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0, +111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0,209,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,207,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, +111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,210,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 96,210,142, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, + 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0, +164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191, +253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181, +195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, + 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191, +253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,213,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +176,217,142, 22, 1, 0, 0, 0,160,202,142, 22, 1, 0, 0, 0,128,203,142, 22, 1, 0, 0, 0, 0,209,142, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,240,214,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,216,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 80,216,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,214,142, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,176,217,142, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144,213,142, 22, 1, 0, 0, 0,240,214,142, 22, 1, 0, 0, 0, 80,216,142, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,176,218,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,185,142, 22, 1, 0, 0, 0,240, 33,142, 22, 1, 0, 0, 0,144, 30,142, 22, 1, 0, 0, 0,208, 29,142, 22, 1, 0, 0, 0, + 80, 34,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0, 53, 3, 0, 0, 21, 4, 0, 0, + 1, 1, 80, 1,225, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0,128,225,142, 22, 1, 0, 0, 0, + 32,235,142, 22, 1, 0, 0, 0,144,219,142, 22, 1, 0, 0, 0,240,220,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 40, 3, 1, 0, 0, 0,176,238, 36, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144,219,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,220,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 64, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0,132, 1, 24, 0,132, 1, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0, + 53, 3, 0, 0, 53, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, + 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240,220,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,219,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 6, 0, 0,128, 7, 0, 0, + 53, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,225, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,222,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 80,222,142, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 24,255, 13, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 12, 84, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128, 72, 1, 77,190, 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, + 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, + 90, 38,173,190, 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, + 88,126,162,190,229,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0, +110,101,239, 64,151, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 3,201,194, 63,111,152,134,191,244,250, 39,191, 8,165, 39,191, +143,164,206, 63, 72,132,132, 63,180,164, 28, 63,149, 84, 28, 63,180,153,196,188, 23,219, 61, 64, 10,108,228,190, 52,247,227,190, + 82, 21, 64,191, 30,193,159,191,216, 49, 49, 65,152, 9, 52, 65,231, 70,158, 62, 23,234,167, 62,192,206,159,187, 0, 0,168,180, +110, 44,196,189,214, 36,193, 61,191, 91,138, 62, 0, 0, 28, 51,211,120, 21,194,145, 5, 2, 66, 7,136,213,193,193,214,159,192, +219, 38, 19, 66,197,173,255,193,155,101,210, 65,173, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, + 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, + 90, 38,173,190, 0,222,192,190,152, 9, 52,193, 0, 0,128, 63, 3,201,194, 63,111,152,134,191,244,250, 39,191, 8,165, 39,191, +143,164,206, 63, 72,132,132, 63,180,164, 28, 63,149, 84, 28, 63,180,153,196,188, 23,219, 61, 64, 10,108,228,190, 52,247,227,190, + 82, 21, 64,191, 30,193,159,191,216, 49, 49, 65,152, 9, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,210, 47, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 7, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128,225,142, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +160,229,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224,226,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,228,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, + 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, + 26, 0,132, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +253, 5, 0, 0,128, 7, 0, 0,249, 3, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +132, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,228,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224,226,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, + 0, 0, 62,195, 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0,207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,132, 1, +208, 0,115, 1,190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +253, 5, 0, 0,128, 7, 0, 0, 41, 3, 0, 0,248, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +132, 1,208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,229,142, 22, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, 32,235,142, 22, 1, 0, 0, 0, +128,225,142, 22, 1, 0, 0, 0,224,226,142, 22, 1, 0, 0, 0, 64,228,142, 22, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 68, 65, 84, 65, 16, 0, 0, 0, 0,231,142, 22, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 80,231,142, 22, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 80,231,142, 22, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,112,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 96,237, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,232,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192,233,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,233,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,232,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, + 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, + 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 32,235,142, 22, 1, 0, 0, 0, +162, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,229,142, 22, 1, 0, 0, 0, 96,232,142, 22, 1, 0, 0, 0, +192,233,142, 22, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,224,236,142, 22, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, + 64,154,143, 22, 1, 0, 0, 0,224, 26,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 82, 67,111,109,112,111,115,105,116,105,110,103, 0,103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,237,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 48,243,142, 22, 1, 0, 0, 0, + 16,251,142, 22, 1, 0, 0, 0,112,251,142, 22, 1, 0, 0, 0, 64,123,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,237,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 80,238,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,238,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +176,238,142, 22, 1, 0, 0, 0,240,237,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,176,238,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,239,142, 22, 1, 0, 0, 0, + 80,238,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 16,239,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0,176,238,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0, 16,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 48,240,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, +208,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 6, 88, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +144,240,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 88, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 6, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +176,241,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,148, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0, + 80,241,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 6,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 16,242,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 6, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,243,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,243,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,238,142, 22, 1, 0, 0, 0,176,238,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,144,243,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,243,142, 22, 1, 0, 0, 0, + 48,243,142, 22, 1, 0, 0, 0, 80,238,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,240,243,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,244,142, 22, 1, 0, 0, 0, +144,243,142, 22, 1, 0, 0, 0,176,238,142, 22, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 80,244,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,244,142, 22, 1, 0, 0, 0, +240,243,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,176,244,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,245,142, 22, 1, 0, 0, 0, + 80,244,142, 22, 1, 0, 0, 0, 16,239,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 16,245,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,245,142, 22, 1, 0, 0, 0, +176,244,142, 22, 1, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,112,245,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,245,142, 22, 1, 0, 0, 0, + 16,245,142, 22, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,208,245,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,246,142, 22, 1, 0, 0, 0, +112,245,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,246,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,246,142, 22, 1, 0, 0, 0, +208,245,142, 22, 1, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,144,246,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,246,142, 22, 1, 0, 0, 0, + 48,246,142, 22, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,240,246,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,247,142, 22, 1, 0, 0, 0, +144,246,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 80,247,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,247,142, 22, 1, 0, 0, 0, +240,246,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,176,247,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,248,142, 22, 1, 0, 0, 0, + 80,247,142, 22, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 16,248,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,248,142, 22, 1, 0, 0, 0, +176,247,142, 22, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,112,248,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,248,142, 22, 1, 0, 0, 0, + 16,248,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,208,248,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,249,142, 22, 1, 0, 0, 0, +112,248,142, 22, 1, 0, 0, 0,240,237,142, 22, 1, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,249,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,249,142, 22, 1, 0, 0, 0, +208,248,142, 22, 1, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,144,249,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,249,142, 22, 1, 0, 0, 0, + 48,249,142, 22, 1, 0, 0, 0, 16,239,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,240,249,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,250,142, 22, 1, 0, 0, 0, +144,249,142, 22, 1, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 80,250,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,250,142, 22, 1, 0, 0, 0, +240,249,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,176,250,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,251,142, 22, 1, 0, 0, 0, + 80,250,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 16,251,142, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,250,142, 22, 1, 0, 0, 0,240,237,142, 22, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,112,251,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 16,255,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0, 80,238,142, 22, 1, 0, 0, 0,176,238,142, 22, 1, 0, 0, 0, +208,239,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, + 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0,192,153,143, 22, 1, 0, 0, 0, +192,153,143, 22, 1, 0, 0, 0, 80,252,142, 22, 1, 0, 0, 0,176,253,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 63, 17, 26, 1, 0, 0, 0, 48, 19,142, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 80,252,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,253,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,253,142, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,252,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0, +112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 3, 0,112, 7, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 16,255,142, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 11,143, 22, 1, 0, 0, 0,112,251,142, 22, 1, 0, 0, 0, +208,242,142, 22, 1, 0, 0, 0, 48,240,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, 16,239,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 15, 15,100, 1, 88, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 15, 3, 1, 0, 0, 0,176, 2,143, 22, 1, 0, 0, 0,160, 9,143, 22, 1, 0, 0, 0, +240,255,142, 22, 1, 0, 0, 0, 80, 1,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,229,146, 22, 1, 0, 0, 0, 96, 86,154, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,255,142, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80, 1,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,178, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,100, 1, 26, 0,100, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 1,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255,142, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 50, 51, 74,193,154,209,131, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 99, 1, 0, 0, + 18, 0, 0, 0, 61, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,100, 1, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, 87, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 1, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,176, 2,143, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0,160, 9,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 3,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16, 5,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 5,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 3,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112, 6,143, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112, 6,143, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,160, 9,143, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176, 2,143, 22, 1, 0, 0, 0,176, 3,143, 22, 1, 0, 0, 0, 16, 5,143, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 0, 11,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 62,143, 22, 1, 0, 0, 0, 16,255,142, 22, 1, 0, 0, 0, + 48,240,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0,208,239,142, 22, 1, 0, 0, 0,144,240,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0, 89, 0, 0, 0, 21, 4, 0, 0, 4, 4,100, 1,189, 3, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0, 0, 49,143, 22, 1, 0, 0, 0,128, 61,143, 22, 1, 0, 0, 0, +224, 11,143, 22, 1, 0, 0, 0, 64, 13,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 81,154, 22, 1, 0, 0, 0, 48, 39,141, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 11,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 64, 13,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,178, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 1, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,100, 1, 31, 0,100, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 13,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 11,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,169, 67, + 0, 0,137,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,169, 67,255,255, 98,196, 0, 0, 0, 0, 83, 1, 0, 0,100, 1, 0, 0, + 18, 0, 0, 0,157, 3, 0, 0, 0, 0, 0, 0, 82, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 82, 1, 0, 0, + 18, 0, 0, 0,157, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,100, 1,158, 3, 83, 1,140, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,118, 16, 26, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, 0,128, 7, 0, 0, 89, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 1,158, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 14,143, 22, 1, 0, 0, 0,112, 47,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 14,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 48, 16,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 82, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 48, 16,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 17,143, 22, 1, 0, 0, 0, +160, 14,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 17,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 80, 19,143, 22, 1, 0, 0, 0, 48, 16,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 80, 19,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 20,143, 22, 1, 0, 0, 0, +192, 17,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 20,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,112, 22,143, 22, 1, 0, 0, 0, 80, 19,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,112, 22,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 24,143, 22, 1, 0, 0, 0, +224, 20,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 24,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,144, 25,143, 22, 1, 0, 0, 0,112, 22,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,144, 25,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 27,143, 22, 1, 0, 0, 0, + 0, 24,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 27,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,176, 28,143, 22, 1, 0, 0, 0,144, 25,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,176, 28,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 30,143, 22, 1, 0, 0, 0, + 32, 27,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, + 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 30,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,208, 31,143, 22, 1, 0, 0, 0,176, 28,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,208, 31,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 33,143, 22, 1, 0, 0, 0, + 64, 30,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83, +101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,252, 76, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 33,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,240, 34,143, 22, 1, 0, 0, 0,208, 31,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,240, 34,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 36,143, 22, 1, 0, 0, 0, + 96, 33,143, 22, 1, 0, 0, 0, 64, 47,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 82, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 36,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 16, 38,143, 22, 1, 0, 0, 0,240, 34,143, 22, 1, 0, 0, 0,192, 34,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253, 82, 1,240, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 16, 38,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 39,143, 22, 1, 0, 0, 0, +128, 36,143, 22, 1, 0, 0, 0,128,241,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181,252, 82, 1,178, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 39,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 48, 41,143, 22, 1, 0, 0, 0, 16, 38,143, 22, 1, 0, 0, 0,112,108,242, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,226,251, 82, 1, 58, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 48, 41,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 42,143, 22, 1, 0, 0, 0, +160, 39,143, 22, 1, 0, 0, 0,160, 93,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,251, 82, 1,102, 0, + 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 42,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 80, 44,143, 22, 1, 0, 0, 0, 48, 41,143, 22, 1, 0, 0, 0,128, 98,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,252, 82, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 80, 44,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 45,143, 22, 1, 0, 0, 0, +192, 42,143, 22, 1, 0, 0, 0, 64,105,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236,251, 82, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 45,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,112, 47,143, 22, 1, 0, 0, 0, 80, 44,143, 22, 1, 0, 0, 0, 32,107,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,212,251, 82, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,112, 47,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 45,143, 22, 1, 0, 0, 0,128,109,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,188,251, 82, 1, 0, 0, + 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 0, 49,143, 22, 1, 0, 0, 0, +162, 0, 0, 0, 1, 0, 0, 0, 96, 54,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0,139, 17, 26, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 50,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160, 51,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 51,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 53,143, 22, 1, 0, 0, 0, 64, 50,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 53,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 51,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96, 54,143, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +128, 61,143, 22, 1, 0, 0, 0, 0, 49,143, 22, 1, 0, 0, 0, 64, 50,143, 22, 1, 0, 0, 0, 0, 53,143, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 55,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,240, 56,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 56,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 55,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 58,143, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80, 58,143, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,128, 61,143, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 54,143, 22, 1, 0, 0, 0,144, 55,143, 22, 1, 0, 0, 0,240, 56,143, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +224, 62,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192, 97,143, 22, 1, 0, 0, 0, 0, 11,143, 22, 1, 0, 0, 0, +112,242,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0,208,242,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 27, 6, 0, 0, 0, 0, 0, 0,147, 1, 0, 0, 1, 1, 27, 3,148, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0, 48, 83,143, 22, 1, 0, 0, 0,192, 96,143, 22, 1, 0, 0, 0, +192, 63,143, 22, 1, 0, 0, 0,160, 78,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 29,141, 22, 1, 0, 0, 0,208,228,152, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 63,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 32, 65,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192, 70, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 27, 3, 26, 0, 27, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 27, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 65,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128, 66,143, 22, 1, 0, 0, 0,192, 63,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,122, 1, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 16, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 66,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,224, 67,143, 22, 1, 0, 0, 0, 32, 65,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 27, 6, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,224, 11, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 67,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,160, 78,143, 22, 1, 0, 0, 0,128, 66,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0, 0,124,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0,124,195, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0, 14, 1,163, 0,252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, 0, 27, 6, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 69,143, 22, 1, 0, 0, 0, 16, 77,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 69,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,208, 70,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,208, 70,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 72,143, 22, 1, 0, 0, 0, + 64, 69,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80, +101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,255,163, 0, 58, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 72,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,240, 73,143, 22, 1, 0, 0, 0,208, 70,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,149,254,163, 0, 59, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,240, 73,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 75,143, 22, 1, 0, 0, 0, + 96, 72,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,184,255,163, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 75,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 16, 77,143, 22, 1, 0, 0, 0,240, 73,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, +103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, +103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,255,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 16, 77,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 75,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114, +109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,255,163, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 78,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 67,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 27, 6, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 3,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,143, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 0, 80,143, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 37,101,230, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,210, 71,114, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, + 72, 1, 77,190, 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62, +149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190, +152, 9, 52,193, 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, 88,126,162,190,229,251,159, 62, + 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,151, 62,208,192, + 78,255,170, 64, 0, 0,128, 63, 4, 6,158, 63, 4,201,153,191,244,250, 39,191, 8,165, 39,191,170,164,167, 63,253,104,151, 63, +180,164, 28, 63,149, 84, 28, 63, 2,127,159,188,156,236, 88, 64, 10,108,228,190, 52,247,227,190,222,212, 27,191,248,135,182,191, +216, 49, 49, 65,152, 9, 52, 65, 80, 25,195, 62,218,249,206, 62, 0,237,196,187, 0, 0, 96,179, 7,178,171,189, 46, 11,169, 61, +217, 47,114, 62, 0, 0, 12,179,254,120, 21,194,182, 5, 2, 66, 70,136,213,193,239,214,159,192, 5, 39, 19, 66, 15,174,255,193, +217,101,210, 65,219, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, 51, 70, 58, 63,225,251,159, 62, +149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, 90, 38,173,190, 0,222,192,190, +152, 9, 52,193, 0, 0,128, 63, 4, 6,158, 63, 4,201,153,191,244,250, 39,191, 8,165, 39,191,170,164,167, 63,253,104,151, 63, +180,164, 28, 63,149, 84, 28, 63, 2,127,159,188,156,236, 88, 64, 10,108,228,190, 52,247,227,190,222,212, 27,191,248,135,182,191, +216, 49, 49, 65,152, 9, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,123, 49,183, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, 1, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 48, 83,143, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 80, 87,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144, 84,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 85,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192, 59, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,238, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,239, 2, 26, 0,239, 2, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 85,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 84,143, 22, 1, 0, 0, 0, + 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68, 40, 57, 61,194,146,211, 11, 68,174,122,214, 66, 82, 97,202, 67, +222, 2, 0, 0,239, 2, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0,221, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,221, 2, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70, +205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,239, 2,122, 1,222, 2,104, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0,239, 5, 0, 0, + 26, 0, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2,122, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, + 80, 87,143, 22, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,208, 92,143, 22, 1, 0, 0, 0, 48, 83,143, 22, 1, 0, 0, 0, +144, 84,143, 22, 1, 0, 0, 0,240, 85,143, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,242,199, 78, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 88,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16, 90,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, + 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 90,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112, 91,143, 22, 1, 0, 0, 0,176, 88,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 91,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 90,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, + 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66, +105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,208, 92,143, 22, 1, 0, 0, 0, +163, 0, 0, 0, 1, 0, 0, 0,192, 96,143, 22, 1, 0, 0, 0, 80, 87,143, 22, 1, 0, 0, 0,176, 88,143, 22, 1, 0, 0, 0, +112, 91,143, 22, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0, 94,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 95,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96, 95,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94,143, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, +192, 96,143, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 92,143, 22, 1, 0, 0, 0, + 0, 94,143, 22, 1, 0, 0, 0, 96, 95,143, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +192, 97,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 64,123,143, 22, 1, 0, 0, 0,224, 62,143, 22, 1, 0, 0, 0, + 80,241,142, 22, 1, 0, 0, 0,112,239,142, 22, 1, 0, 0, 0,240,240,142, 22, 1, 0, 0, 0,176,241,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, 0,149, 1, 0, 0, 21, 4, 0, 0, 16, 16, 28, 6,129, 2, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 15, 3, 1, 0, 0, 0, 96,101,143, 22, 1, 0, 0, 0, 64,122,143, 22, 1, 0, 0, 0, +160, 98,143, 22, 1, 0, 0, 0, 0,100,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,179,137, 22, 1, 0, 0, 0, 96,214, 18, 26, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 98,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,100,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 28, 6, 26, 0, 28, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 30, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,100,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 98,143, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 80, 64,199,195, 40,160, 99, 68,192, 3, 91, 64,248, 73,254, 67, 11, 6, 0, 0, 28, 6, 0, 0, + 18, 0, 0, 0,102, 2, 0, 0, 0, 0, 0, 0, 10, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 10, 6, 0, 0, + 18, 0, 0, 0,102, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 28, 6,103, 2, 11, 6, 85, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, 0,175, 1, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 6,103, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 29, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,101,143, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0,224,106,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 66, 86, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,102,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 32,104,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,104,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128,105,143, 22, 1, 0, 0, 0,192,102,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,105,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,104,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,224,106,143, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, + 32,118,143, 22, 1, 0, 0, 0, 96,101,143, 22, 1, 0, 0, 0,192,102,143, 22, 1, 0, 0, 0,128,105,143, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,108,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,109,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,109,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,208,110,143, 22, 1, 0, 0, 0, 16,108,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,110,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 48,112,143, 22, 1, 0, 0, 0,112,109,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,112,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,144,113,143, 22, 1, 0, 0, 0,208,110,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,113,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,112,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,114,143, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,240,114,143, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61, +170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195, +205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 32,118,143, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 64,122,143, 22, 1, 0, 0, 0, +224,106,143, 22, 1, 0, 0, 0, 16,108,143, 22, 1, 0, 0, 0,144,113,143, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128,119,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,120,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +224,120,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,119,143, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, + 64,122,143, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,118,143, 22, 1, 0, 0, 0, +128,119,143, 22, 1, 0, 0, 0,224,120,143, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 64,123,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 97,143, 22, 1, 0, 0, 0, +240,237,142, 22, 1, 0, 0, 0, 80,241,142, 22, 1, 0, 0, 0, 16,242,142, 22, 1, 0, 0, 0,112,242,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0,147, 1, 0, 0, 6, 6, 0, 3,148, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 22, 15, 3, 1, 0, 0, 0, 64,128,143, 22, 1, 0, 0, 0,192,152,143, 22, 1, 0, 0, 0, + 32,124,143, 22, 1, 0, 0, 0,224,126,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,244, 36, 3, 1, 0, 0, 0,144,205,253, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,124,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128,125,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 64, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 63, 68, 0, 0,200, 65, 0,192, 63, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 3, 26, 0, 0, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 28, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,125,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,224,126,143, 22, 1, 0, 0, 0, 32,124,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,112, 24, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,126,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,125,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, + 0, 0, 0, 0, 0, 0,128, 67, 0, 0,128,191, 0, 0, 0, 64, 0, 0,116,190, 0,128,158, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 23, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 64,128,143, 22, 1, 0, 0, 0, +167, 0, 0, 0, 1, 0, 0, 0,224,131,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,129,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128,130,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 64, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 3, 26, 0, 0, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,130,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,129,143, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68,144, 82, 89,194, 41,149, 13, 68,176,122,214, 66, 82, 97,202, 67,239, 2, 0, 0, 0, 3, 0, 0, + 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0,238, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,238, 2, 0, 0, + 18, 0, 0, 0,121, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 3,122, 1,239, 2,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,224,131,143, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0, 96,137,143, 22, 1, 0, 0, 0, 64,128,143, 22, 1, 0, 0, 0, 32,129,143, 22, 1, 0, 0, 0, +128,130,143, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24,227, 78, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,133,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160,134,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,134,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0,136,143, 22, 1, 0, 0, 0, 64,133,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,136,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160,134,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96,137,143, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +160,148,143, 22, 1, 0, 0, 0,224,131,143, 22, 1, 0, 0, 0, 64,133,143, 22, 1, 0, 0, 0, 0,136,143, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,138,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,240,139,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,139,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,141,143, 22, 1, 0, 0, 0,144,138,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,141,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,142,143, 22, 1, 0, 0, 0,240,139,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,142,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16,144,143, 22, 1, 0, 0, 0, 80,141,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,144,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,142,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,145,143, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,112,145,143, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61, +170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195, +205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,160,148,143, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,192,152,143, 22, 1, 0, 0, 0, + 96,137,143, 22, 1, 0, 0, 0,144,138,143, 22, 1, 0, 0, 0, 16,144,143, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0,150,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96,151,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96,151,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,150,143, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, +192,152,143, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,148,143, 22, 1, 0, 0, 0, + 0,150,143, 22, 1, 0, 0, 0, 96,151,143, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, + 64,154,143, 22, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 48, 86,144, 22, 1, 0, 0, 0,224,236,142, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0, +112,159,143, 22, 1, 0, 0, 0,208,159,143, 22, 1, 0, 0, 0, 48,166,143, 22, 1, 0, 0, 0,144,166,143, 22, 1, 0, 0, 0, +144, 55,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,155,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +176,155,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,112,156,143, 22, 1, 0, 0, 0,176,155,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,156,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +208,156,143, 22, 1, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0, +112,156,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48,157,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 80,158,143, 22, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0, +240,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 52, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +176,158,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 52, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 88, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 88, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,208,159,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,160,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,155,143, 22, 1, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,160,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,160,143, 22, 1, 0, 0, 0, +208,159,143, 22, 1, 0, 0, 0,176,155,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,144,160,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,160,143, 22, 1, 0, 0, 0, + 48,160,143, 22, 1, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,240,160,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,161,143, 22, 1, 0, 0, 0, +144,160,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 80,161,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,161,143, 22, 1, 0, 0, 0, +240,160,143, 22, 1, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,176,161,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,162,143, 22, 1, 0, 0, 0, + 80,161,143, 22, 1, 0, 0, 0,112,156,143, 22, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 16,162,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,162,143, 22, 1, 0, 0, 0, +176,161,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,112,162,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,162,143, 22, 1, 0, 0, 0, + 16,162,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,208,162,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,163,143, 22, 1, 0, 0, 0, +112,162,143, 22, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,163,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144,163,143, 22, 1, 0, 0, 0, +208,162,143, 22, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,144,163,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240,163,143, 22, 1, 0, 0, 0, + 48,163,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,240,163,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80,164,143, 22, 1, 0, 0, 0, +144,163,143, 22, 1, 0, 0, 0,112,156,143, 22, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 80,164,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176,164,143, 22, 1, 0, 0, 0, +240,163,143, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,176,164,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16,165,143, 22, 1, 0, 0, 0, + 80,164,143, 22, 1, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 16,165,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112,165,143, 22, 1, 0, 0, 0, +176,164,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,112,165,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208,165,143, 22, 1, 0, 0, 0, + 16,165,143, 22, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,208,165,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48,166,143, 22, 1, 0, 0, 0, +112,165,143, 22, 1, 0, 0, 0,144,157,143, 22, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 48,166,143, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208,165,143, 22, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,144,166,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 48,170,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0,176,155,143, 22, 1, 0, 0, 0, 16,156,143, 22, 1, 0, 0, 0, + 48,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, + 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0,176, 85,144, 22, 1, 0, 0, 0, +176, 85,144, 22, 1, 0, 0, 0,112,167,143, 22, 1, 0, 0, 0,208,168,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 38, 55, 25, 1, 0, 0, 0,192,145,136, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112,167,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,168,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 2, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 96,151, 21, 26, 1, 0, 0, 0, + 96,151, 21, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,171, 20, 26, 1, 0, 0, 0, + 48, 14, 21, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,168,143, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,167,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0, +112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 2, 0,112, 7, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 48,170,143, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240, 25,144, 22, 1, 0, 0, 0,144,166,143, 22, 1, 0, 0, 0, +144,157,143, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0,176,158,143, 22, 1, 0, 0, 0,112,156,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 51, 3, 0, 0, 4, 4,120, 1, 52, 3, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0, 96, 17,144, 22, 1, 0, 0, 0,144, 24,144, 22, 1, 0, 0, 0, + 16,171,143, 22, 1, 0, 0, 0,112,172,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,187,155, 22, 1, 0, 0, 0, 48,198,155, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,171,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,172,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,188, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,119, 1, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,120, 1, 31, 0,120, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, 21, 3, 0, 0, 51, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 1, 31, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, 0,117, 22, 26, 1, 0, 0, 0, 0,117, 22, 26, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 23, 22, 26, 1, 0, 0, 0,192, 32, 16, 26, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,172,143, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,171,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,179, 67, + 0,128, 64,196, 0, 0, 0, 0, 0, 0, 0, 0,252,127,179, 67,252,191, 64,196, 0, 0, 0, 0,103, 1, 0, 0,120, 1, 0, 0, + 18, 0, 0, 0, 20, 3, 0, 0, 0, 0, 0, 0,102, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,102, 1, 0, 0, + 18, 0, 0, 0, 20, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,120, 1, 21, 3,103, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96,119, 13, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 20, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 1, 21, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0,160, 63, 23, 26, 1, 0, 0, 0,144, 62,252, 24, 1, 0, 0, 0, +208,173,143, 22, 1, 0, 0, 0,208, 15,144, 22, 1, 0, 0, 0,176,205, 20, 26, 1, 0, 0, 0,192, 60, 21, 26, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,173,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 96,175,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,102, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 96,175,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,176,143, 22, 1, 0, 0, 0, +208,173,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,176,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,128,178,143, 22, 1, 0, 0, 0, 96,175,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,128,178,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,180,143, 22, 1, 0, 0, 0, +240,176,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,180,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,160,181,143, 22, 1, 0, 0, 0,128,178,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,160,181,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,183,143, 22, 1, 0, 0, 0, + 16,180,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,183,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,192,184,143, 22, 1, 0, 0, 0,160,181,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,192,184,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,186,143, 22, 1, 0, 0, 0, + 48,183,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,186,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,224,187,143, 22, 1, 0, 0, 0,192,184,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,224,187,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,189,143, 22, 1, 0, 0, 0, + 80,186,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, + 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,189,143, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0,191,143, 22, 1, 0, 0, 0,224,187,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 0,191,143, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 0,144, 22, 1, 0, 0, 0, +112,189,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83, +101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254,114, 1, 69, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 0,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,192, 1,144, 22, 1, 0, 0, 0, 0,191,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254,114, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,192, 1,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 3,144, 22, 1, 0, 0, 0, + 48, 0,144, 22, 1, 0, 0, 0, 64, 47,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,102, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 3,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,224, 4,144, 22, 1, 0, 0, 0,192, 1,144, 22, 1, 0, 0, 0,192, 34,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,102, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,224, 4,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 6,144, 22, 1, 0, 0, 0, + 80, 3,144, 22, 1, 0, 0, 0,128,241,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,102, 1,178, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 6,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0, 8,144, 22, 1, 0, 0, 0,224, 4,144, 22, 1, 0, 0, 0,112,108,242, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,102, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 0, 8,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 9,144, 22, 1, 0, 0, 0, +112, 6,144, 22, 1, 0, 0, 0,160, 93,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,102, 1,102, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 9,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 32, 11,144, 22, 1, 0, 0, 0, 0, 8,144, 22, 1, 0, 0, 0,128, 98,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,102, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 32, 11,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 12,144, 22, 1, 0, 0, 0, +144, 9,144, 22, 1, 0, 0, 0, 64,105,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,102, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 12,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 64, 14,144, 22, 1, 0, 0, 0, 32, 11,144, 22, 1, 0, 0, 0, 32,107,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,102, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 64, 14,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 15,144, 22, 1, 0, 0, 0, +176, 12,144, 22, 1, 0, 0, 0,128,109,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,102, 1, 0, 0, + 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 15,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 14,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,114, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 0, 1, 0, 0, 96, 17,144, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144, 24,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, +176, 45, 37, 3, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160, 18,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 20,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0, 20,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 18,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 21,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 96, 21,144, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144, 24,144, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 17,144, 22, 1, 0, 0, 0,160, 18,144, 22, 1, 0, 0, 0, 0, 20,144, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,240, 25,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224, 37,144, 22, 1, 0, 0, 0, + 48,170,143, 22, 1, 0, 0, 0, 80,155,143, 22, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0, +144,157,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, + 15, 15, 8, 6, 88, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 15, 3, 1, 0, 0, 0,144, 29,144, 22, 1, 0, 0, 0, +128, 36,144, 22, 1, 0, 0, 0,208, 26,144, 22, 1, 0, 0, 0, 48, 28,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,179,155, 22, 1, 0, 0, 0, 96,240,149, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208, 26,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 28,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,193, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 8, 6, 26, 0, 8, 6, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 26, 0, 5, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 4, 15, 3, 1, 0, 0, 0,208,213,253, 24, 1, 0, 0, 0, +208,213,253, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 11, 21, 26, 1, 0, 0, 0, + 16,255, 19, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48, 28,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 26,144, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 7, 6, 0, 0, 18, 0, 0, 0, 61, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 8, 6, 62, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, + 26, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 62, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,255, 19, 26, 1, 0, 0, 0, + 32,119,136, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, +144, 29,144, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0,128, 36,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144, 30,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 31,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 31,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 30,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, + 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 33,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 80, 33,144, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128, 36,144, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 29,144, 22, 1, 0, 0, 0,144, 30,144, 22, 1, 0, 0, 0,240, 31,144, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,224, 37,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,144, 55,144, 22, 1, 0, 0, 0, +240, 25,144, 22, 1, 0, 0, 0, 80,158,143, 22, 1, 0, 0, 0,240,157,143, 22, 1, 0, 0, 0, 48,157,143, 22, 1, 0, 0, 0, +176,158,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, 53, 3, 0, 0, 21, 4, 0, 0, + 3, 3,120, 1,225, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 15, 3, 1, 0, 0, 0,128, 41,144, 22, 1, 0, 0, 0, + 48, 54,144, 22, 1, 0, 0, 0,192, 38,144, 22, 1, 0, 0, 0, 32, 40,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,166,155, 22, 1, 0, 0, 0, 80,177,155, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192, 38,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 40,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,188, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,119, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,120, 1, 26, 0,120, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, +252, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 1, 26, 0, 7, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 15, 3, 1, 0, 0, 0, 0,172,251, 24, 1, 0, 0, 0, + 0,172,251, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,177, 20, 26, 1, 0, 0, 0, + 64,178, 20, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32, 40,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 38,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,179, 67, 0, 0, 53,195, 0, 0, 0, 0, +103, 1, 0, 0,120, 1, 0, 0, 18, 0, 0, 0,198, 0, 0, 0, 0, 0, 0, 0,102, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,102, 1, 0, 0, 18, 0, 0, 0,198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,120, 1,199, 0,103, 1,181, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, 0,128, 7, 0, 0, + 53, 3, 0, 0,251, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,120, 1,199, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 1, 15, 3, 1, 0, 0, 0,240,255,253, 24, 1, 0, 0, 0, +240,255,253, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 71, 20, 26, 1, 0, 0, 0, + 32, 78, 22, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128, 41,144, 22, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, 0, 47,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 64,255, 24, 1, 0, 0, 0, 32, 64,255, 24, 1, 0, 0, 0,224, 42,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, +224, 42,144, 22, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 48, 43,144, 22, 1, 0, 0, 0, + 68, 65, 84, 65,208, 0, 0, 0, 48, 43,144, 22, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +112,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 96,237, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 44,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160, 45,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 55, 0, 0, 67, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,195, 0, 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 45,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64, 44,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, + 0, 0, 0, 0,205, 85,150, 67,223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, + 2, 0, 0, 4, 6, 0,195, 0,156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 0, 47,144, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, + 48, 54,144, 22, 1, 0, 0, 0,128, 41,144, 22, 1, 0, 0, 0, 64, 44,144, 22, 1, 0, 0, 0,160, 45,144, 22, 1, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64, 48,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 49,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, + 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160, 49,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 48,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51,144, 22, 1, 0, 0, 0, + 68, 65, 84, 65,248, 2, 0, 0, 0, 51,144, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 48, 54,144, 22, 1, 0, 0, 0, +157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,144, 22, 1, 0, 0, 0, 64, 48,144, 22, 1, 0, 0, 0, +160, 49,144, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,144, 55,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 37,144, 22, 1, 0, 0, 0, 16,159,143, 22, 1, 0, 0, 0,208,156,143, 22, 1, 0, 0, 0, +240,157,143, 22, 1, 0, 0, 0,112,159,143, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, + 89, 0, 0, 0, 21, 4, 0, 0, 1, 1, 8, 6,189, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0, +144, 80,144, 22, 1, 0, 0, 0,176, 84,144, 22, 1, 0, 0, 0,112, 56,144, 22, 1, 0, 0, 0, 0, 76,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,134,155, 22, 1, 0, 0, 0,112,150,155, 22, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,112, 56,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 57,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,193, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 8, 6, + 26, 0, 8, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 6, 0, 0, 89, 0, 0, 0,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 6, 26, 0, 9, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, +176, 38,252, 24, 1, 0, 0, 0,176, 38,252, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,106, 20, 26, 1, 0, 0, 0, 16,181, 63, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,208, 57,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 62,144, 22, 1, 0, 0, 0, +112, 56,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 42, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 42, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, + 43, 3,143, 0, 25, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,159, 0, 0, 0,235, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 0, 43, 3, 10, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 10, 15, 3, 1, 0, 0, 0, +192, 62,112, 29, 1, 0, 0, 0, 96,220,112, 29, 1, 0, 0, 0, 48, 59,144, 22, 1, 0, 0, 0,192, 60,144, 22, 1, 0, 0, 0, +208,181, 63, 25, 1, 0, 0, 0, 80, 64, 17, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 48, 59,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 60,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101, +108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, + 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 60,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 59,144, 22, 1, 0, 0, 0, 16,106,155, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111, +100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111, +100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 80, 62,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64, 65,144, 22, 1, 0, 0, 0, +208, 57,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, + 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, +120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,159, 0, 0, 0,115, 0, 0, 0,234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 0,120, 0, 11, 0, 6, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 11, 15, 3, 1, 0, 0, 0, + 0, 62,255, 24, 1, 0, 0, 0, 0, 62,255, 24, 1, 0, 0, 0,176, 63,144, 22, 1, 0, 0, 0,176, 63,144, 22, 1, 0, 0, 0, + 16, 65, 17, 26, 1, 0, 0, 0, 96,191, 20, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,176, 63,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 12, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,112,101,114, 97,116,111,114, + 0,110, 0,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 65,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 76,144, 22, 1, 0, 0, 0, 80, 62,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,192, 77,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 34,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,156, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,156, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,157, 2,163, 0,139, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 0, 7, 6, 0, 0,115, 0, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 66,144, 22, 1, 0, 0, 0,112, 74,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 66,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 48, 68,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 48, 68,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 69,144, 22, 1, 0, 0, 0, +160, 66,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80, +101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,171,252,163, 0, 58, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 69,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 80, 71,144, 22, 1, 0, 0, 0, 48, 68,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116, +105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45,253,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 80, 71,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 72,144, 22, 1, 0, 0, 0, +192, 69,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18,252,163, 0, 3, 1, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 72,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,112, 74,144, 22, 1, 0, 0, 0, 80, 71,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, +103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97, +103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253,252,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,112, 74,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 72,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, + 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114, +109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,252,163, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 76,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 65,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 0, 0, 0, 7, 6, 0, 0,115, 0, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,104, 5,163, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,193, 20, 26, 1, 0, 0, 0,240,161, 19, 26, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 77,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96, 77,144, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,203, 30,208, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,178,157,229, 62,183, 56, 39,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63,110, 52,161, 62, + 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,231, 70,186, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 62,239,191, 62,175,116, 85, 63, 48,205, 70,188, 0, 0,115,181,241, 1,125,190,149,231,243, 61, + 90,236, 12, 63, 0, 0,243, 52,215,104, 25,196,133,132,135, 67, 36, 9,167,195,136,252, 71,194, 3, 54, 25, 68,158, 87,135,195, +204,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,178,157,229, 62,183, 56, 39,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63,110, 52,161, 62, + 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,231, 70,186, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,219, 44,173, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,144, 80,144, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,176, 84,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 81,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80, 83,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 80, 83,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 81,144, 22, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, +176, 84,144, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 80,144, 22, 1, 0, 0, 0, +240, 81,144, 22, 1, 0, 0, 0, 80, 83,144, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, + 48, 86,144, 22, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,208, 51,145, 22, 1, 0, 0, 0, 64,154,143, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 71, 97,109,101, 32, 76,111,103,105, 99, 0, 46, 48, 48, + 49, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 87,144, 22, 1, 0, 0, 0, + 32, 92,144, 22, 1, 0, 0, 0,128, 92,144, 22, 1, 0, 0, 0, 0,100,144, 22, 1, 0, 0, 0, 96,100,144, 22, 1, 0, 0, 0, + 80, 20,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 64, 87,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 87,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +160, 87,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 88,144, 22, 1, 0, 0, 0, 64, 87,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 88,144, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 96, 88,144, 22, 1, 0, 0, 0,160, 87,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 96, 88,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +192, 88,144, 22, 1, 0, 0, 0, 0, 88,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 89,144, 22, 1, 0, 0, 0, + 96, 88,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 32, 89,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0, 32, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 64, 90,144, 22, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 6,148, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 64, 90,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,160, 90,144, 22, 1, 0, 0, 0, +224, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +160, 90,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, 64, 90,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 96, 91,144, 22, 1, 0, 0, 0,160, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 56, 5,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 96, 91,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +192, 91,144, 22, 1, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 5, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,192, 91,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 32, 92,144, 22, 1, 0, 0, 0, + 96, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 1,148, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 32, 92,144, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 91,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 60, 1, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 92,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,224, 92,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 87,144, 22, 1, 0, 0, 0, + 0, 88,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 92,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 64, 93,144, 22, 1, 0, 0, 0,128, 92,144, 22, 1, 0, 0, 0,160, 87,144, 22, 1, 0, 0, 0, +192, 88,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 93,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,160, 93,144, 22, 1, 0, 0, 0,224, 92,144, 22, 1, 0, 0, 0, 0, 88,144, 22, 1, 0, 0, 0, + 32, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 93,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 0, 94,144, 22, 1, 0, 0, 0, 64, 93,144, 22, 1, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, + 32, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 94,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 96, 94,144, 22, 1, 0, 0, 0,160, 93,144, 22, 1, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, +128, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 94,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,192, 94,144, 22, 1, 0, 0, 0, 0, 94,144, 22, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0, +224, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 94,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 32, 95,144, 22, 1, 0, 0, 0, 96, 94,144, 22, 1, 0, 0, 0, 96, 88,144, 22, 1, 0, 0, 0, + 64, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 95,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,128, 95,144, 22, 1, 0, 0, 0,192, 94,144, 22, 1, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0, + 64, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 95,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,224, 95,144, 22, 1, 0, 0, 0, 32, 95,144, 22, 1, 0, 0, 0, 64, 87,144, 22, 1, 0, 0, 0, +128, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 95,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 64, 96,144, 22, 1, 0, 0, 0,128, 95,144, 22, 1, 0, 0, 0, 64, 87,144, 22, 1, 0, 0, 0, + 64, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 96,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,160, 96,144, 22, 1, 0, 0, 0,224, 95,144, 22, 1, 0, 0, 0, 32, 89,144, 22, 1, 0, 0, 0, +160, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 96,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 0, 97,144, 22, 1, 0, 0, 0, 64, 96,144, 22, 1, 0, 0, 0, 96, 88,144, 22, 1, 0, 0, 0, +160, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0, 97,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 96, 97,144, 22, 1, 0, 0, 0,160, 96,144, 22, 1, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0, +160, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96, 97,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,192, 97,144, 22, 1, 0, 0, 0, 0, 97,144, 22, 1, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, + 96, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,192, 97,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 32, 98,144, 22, 1, 0, 0, 0, 96, 97,144, 22, 1, 0, 0, 0, 32, 89,144, 22, 1, 0, 0, 0, + 96, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32, 98,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,128, 98,144, 22, 1, 0, 0, 0,192, 97,144, 22, 1, 0, 0, 0,160, 90,144, 22, 1, 0, 0, 0, + 0, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128, 98,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,224, 98,144, 22, 1, 0, 0, 0, 32, 98,144, 22, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0, +192, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,224, 98,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 64, 99,144, 22, 1, 0, 0, 0,128, 98,144, 22, 1, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, +192, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 64, 99,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,160, 99,144, 22, 1, 0, 0, 0,224, 98,144, 22, 1, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, + 32, 92,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160, 99,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 0,100,144, 22, 1, 0, 0, 0, 64, 99,144, 22, 1, 0, 0, 0, 96, 91,144, 22, 1, 0, 0, 0, + 32, 92,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0,100,144, 22, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 99,144, 22, 1, 0, 0, 0,192, 91,144, 22, 1, 0, 0, 0, + 32, 92,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96,100,144, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 0,104,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, +160, 87,144, 22, 1, 0, 0, 0, 0, 88,144, 22, 1, 0, 0, 0, 32, 89,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, +240, 35, 15, 3, 1, 0, 0, 0, 80, 51,145, 22, 1, 0, 0, 0, 80, 51,145, 22, 1, 0, 0, 0, 64,101,144, 22, 1, 0, 0, 0, +160,102,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,116, 16, 26, 1, 0, 0, 0, + 48, 91,147, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,101,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160,102,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,102,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,101,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,129, 7, 3, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 0,104,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, + 48,176,144, 22, 1, 0, 0, 0, 96,100,144, 22, 1, 0, 0, 0, 64, 90,144, 22, 1, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0, +160, 90,144, 22, 1, 0, 0, 0, 96, 88,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 6, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0,147, 1, 0, 0, 4, 4, 96, 1,148, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0, + 80,162,144, 22, 1, 0, 0, 0,208,174,144, 22, 1, 0, 0, 0,224,104,144, 22, 1, 0, 0, 0, 64,106,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 97, 40, 3, 1, 0, 0, 0, 32, 60, 40, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224,104,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,106,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,176, 67, + 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, + 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 96, 1, + 31, 0, 96, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 33, 6, 0, 0,128, 7, 0, 0,117, 1, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,106,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224,104,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 67, 0, 0,137,196, 0, 0, 0, 0, 0, 0, 0, 0,255,127,167, 67, +254,127,177,195, 0, 0, 0, 0, 79, 1, 0, 0, 96, 1, 0, 0, 18, 0, 0, 0,116, 1, 0, 0, 0, 0, 0, 0, 78, 1, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 78, 1, 0, 0, 18, 0, 0, 0,116, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 96, 1, +117, 1, 79, 1, 99, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,172,252, 24, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 33, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,116, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 1,117, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,107,144, 22, 1, 0, 0, 0,192,160,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,160,107,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,109,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, + 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, + 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255, 78, 1, 36, 0, + 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,109,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,192,110,144, 22, 1, 0, 0, 0,160,107,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,192,110,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,112,144, 22, 1, 0, 0, 0, + 48,109,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,112,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,224,113,144, 22, 1, 0, 0, 0,192,110,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,224,113,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,115,144, 22, 1, 0, 0, 0, + 80,112,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, + 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,115,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0,117,144, 22, 1, 0, 0, 0,224,113,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 0,117,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,118,144, 22, 1, 0, 0, 0, +112,115,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,118,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 32,120,144, 22, 1, 0, 0, 0, 0,117,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 32,120,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,121,144, 22, 1, 0, 0, 0, +144,118,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, + 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,121,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 64,123,144, 22, 1, 0, 0, 0, 32,120,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 64,123,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,124,144, 22, 1, 0, 0, 0, +176,121,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255, 51, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,124,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 96,126,144, 22, 1, 0, 0, 0, 64,123,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254, 51, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 96,126,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,127,144, 22, 1, 0, 0, 0, +208,124,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254, 51, 1, 36, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,127,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,128,129,144, 22, 1, 0, 0, 0, 96,126,144, 22, 1, 0, 0, 0, 64, 47,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 78, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,128,129,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,131,144, 22, 1, 0, 0, 0, +240,127,144, 22, 1, 0, 0, 0,192, 34,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127,253, 78, 1,240, 1, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,131,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,160,132,144, 22, 1, 0, 0, 0,128,129,144, 22, 1, 0, 0, 0,128,241,242, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181,252, 78, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,160,132,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,134,144, 22, 1, 0, 0, 0, + 16,131,144, 22, 1, 0, 0, 0,112,108,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, + 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,226,251, 78, 1, 58, 0, + 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,134,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,192,135,144, 22, 1, 0, 0, 0,160,132,144, 22, 1, 0, 0, 0,160, 93,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,251, 78, 1,102, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,192,135,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,137,144, 22, 1, 0, 0, 0, + 48,134,144, 22, 1, 0, 0, 0,128, 98,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,252, 78, 1,105, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,137,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,224,138,144, 22, 1, 0, 0, 0,192,135,144, 22, 1, 0, 0, 0, 64,105,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,236,251, 78, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,224,138,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,140,144, 22, 1, 0, 0, 0, + 80,137,144, 22, 1, 0, 0, 0, 32,107,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, + 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,212,251, 78, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,140,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0,142,144, 22, 1, 0, 0, 0,224,138,144, 22, 1, 0, 0, 0,128,109,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,188,251, 78, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 0,142,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,143,144, 22, 1, 0, 0, 0, +112,140,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 97,109,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,255, 51, 1, 36, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,143,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 32,145,144, 22, 1, 0, 0, 0, 0,142,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,112,108, 97,121,101,114, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,112,108, 97,121,101,114, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,110,100, 97,108,111,110,101, 32, 80,108, 97,121,101,114, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,254, 51, 1,172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 32,145,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,146,144, 22, 1, 0, 0, 0, +144,143,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 95,115,116,101,114,101,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 95,115,116,101,114,101,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116,101,114,101,111, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,254, 51, 1, 36, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,146,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 64,148,144, 22, 1, 0, 0, 0, 32,145,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,115,104, 97,100,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,115,104, 97,100,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,254, 51, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 64,148,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,149,144, 22, 1, 0, 0, 0, +176,146,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,103, 97,109,101, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,253, 51, 1,124, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,149,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 96,151,144, 22, 1, 0, 0, 0, 64,148,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,115,111,117,110,100, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,103, 97,109,101, 95,115,111,117,110,100, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,111,117,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98,253, 51, 1, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 96,151,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,152,144, 22, 1, 0, 0, 0, +208,149,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, + 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 99,101,110,101, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 51, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,152,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,128,154,144, 22, 1, 0, 0, 0, 96,151,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,119,111,114,108,100, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,119,111,114,108,100, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,184,255, 51, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,128,154,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,156,144, 22, 1, 0, 0, 0, +240,152,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95,112,114,101,118,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95,112,114,101,118,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,114,101,118,105,101,119, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24,255, 51, 1,136, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,156,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,160,157,144, 22, 1, 0, 0, 0,128,154,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,175,254, 51, 1, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,160,157,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,159,144, 22, 1, 0, 0, 0, + 16,156,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95, 97,109, 98,105,101,110,116, 95,111, 99, 99,108,117,115,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95, 97,109, 98,105,101,110,116, 95,111, 99, 99,108,117,115,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,109, 98,105,101,110,116, 32, + 79, 99, 99,108,117,115,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,253, 51, 1,199, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,159,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,192,160,144, 22, 1, 0, 0, 0,160,157,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,109,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,109,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 77,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99,253, 51, 1, 85, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,192,160,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,159,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95,115,116, 97,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, + 95,115,116, 97,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,114,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15,253, 51, 1, 60, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 80,162,144, 22, 1, 0, 0, 0, +162, 0, 0, 0, 1, 0, 0, 0,176,167,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,208, 8,252, 24, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,163,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,164,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,164,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,166,144, 22, 1, 0, 0, 0,144,163,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,166,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,164,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,176,167,144, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +208,174,144, 22, 1, 0, 0, 0, 80,162,144, 22, 1, 0, 0, 0,144,163,144, 22, 1, 0, 0, 0, 80,166,144, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,168,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 64,170,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,170,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,168,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160,171,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,160,171,144, 22, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,208,174,144, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,167,144, 22, 1, 0, 0, 0,224,168,144, 22, 1, 0, 0, 0, 64,170,144, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 48,176,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,224,212,144, 22, 1, 0, 0, 0, 0,104,144, 22, 1, 0, 0, 0, + 64, 87,144, 22, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0,224, 89,144, 22, 1, 0, 0, 0, 64, 90,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, 0, 0, 0, 0, 0,147, 1, 0, 0, 17, 17, 32, 6,148, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 73, 15, 3, 1, 0, 0, 0,192,182,144, 22, 1, 0, 0, 0,224,211,144, 22, 1, 0, 0, 0, + 16,177,144, 22, 1, 0, 0, 0, 96,181,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144,195,112, 29, 1, 0, 0, 0,192,133,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,177,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,178,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,196, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 63, 68, 0, 0,200, 65, 0,192, 63, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 32, 6, 26, 0, 32, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 75, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,178,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,181,144, 22, 1, 0, 0, 0, 16,177,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, + 0, 0,180,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, 0, 0,180,195, 0, 0, 0, 0,203, 0, 0, 0,220, 0, 0, 0, + 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, + 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,220, 0,122, 1,203, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219, 0, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220, 0,122, 1, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 75, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208,179,144, 22, 1, 0, 0, 0,208,179,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,179,144, 22, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 63,151, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 79, 71, 73, 67, 95, 80, 84, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 79, 71, 73, 67, 95, 80, 84, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,203, 0, 36, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 96,181,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,178,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 68, 0, 0, 0, 0, 0, 0,112, 67,228, 46, 44,195,220,133,181, 68, + 10, 89,199,194, 66,214,169, 67, 51, 5, 0, 0, 68, 5, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0, 50, 5, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 50, 5, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,250, 70, 0, 0,250, 70, 0, 0, 0, 63, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 68, 5, +122, 1, 51, 5,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +220, 0, 0, 0, 31, 6, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 5,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 74, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 72, 0, 0, 0,192,182,144, 22, 1, 0, 0, 0,174, 0, 0, 0, 1, 0, 0, 0, 96,187,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,183,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,184,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 64, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 63, 68, 0, 0,200, 65, + 0,192, 63, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 3, + 26, 0, 0, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,184,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,186,144, 22, 1, 0, 0, 0, + 64,183,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0,186,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160,184,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,128,191, 0, 0, 0, 64, + 0, 0,116,190, 0,128,158, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 2, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,168, 0, 0, 0, 96,187,144, 22, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, 0,191,144, 22, 1, 0, 0, 0, +192,182,144, 22, 1, 0, 0, 0, 64,183,144, 22, 1, 0, 0, 0, 0,186,144, 22, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,188,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,189,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 64, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, + 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 3, + 26, 0, 0, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,189,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64,188,144, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,144, 82, 89,194, 41,149, 13, 68, +176,122,214, 66, 82, 97,202, 67,239, 2, 0, 0, 0, 3, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0, 0, 0,238, 2, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,238, 2, 0, 0, 18, 0, 0, 0,121, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 3, +122, 1,239, 2,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 2, 0, 0, 26, 0, 0, 0,147, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3,122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 0,191,144, 22, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,128,196,144, 22, 1, 0, 0, 0, + 96,187,144, 22, 1, 0, 0, 0, 64,188,144, 22, 1, 0, 0, 0,160,189,144, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24,227, 78, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96,192,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,193,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192,193,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,195,144, 22, 1, 0, 0, 0, 96,192,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32,195,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,193,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, + 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, +128,196,144, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,192,207,144, 22, 1, 0, 0, 0, 0,191,144, 22, 1, 0, 0, 0, + 96,192,144, 22, 1, 0, 0, 0, 32,195,144, 22, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,176,197,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,199,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, + 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 16,199,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,200,144, 22, 1, 0, 0, 0, +176,197,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, +255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, + 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,112,200,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,201,144, 22, 1, 0, 0, 0, + 16,199,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, + 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, +120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,208,201,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,203,144, 22, 1, 0, 0, 0, +112,200,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0, +122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48,203,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208,201,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,204,144, 22, 1, 0, 0, 0, + 68, 65, 84, 65,248, 2, 0, 0,144,204,144, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63, +176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, + 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191, +222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63, +224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, + 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191, +222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190, +237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,207,144, 22, 1, 0, 0, 0, +157, 0, 0, 0, 1, 0, 0, 0,224,211,144, 22, 1, 0, 0, 0,128,196,144, 22, 1, 0, 0, 0,176,197,144, 22, 1, 0, 0, 0, + 48,203,144, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,209,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128,210,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,210,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,209,144, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66, +112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,224,211,144, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192,207,144, 22, 1, 0, 0, 0, 32,209,144, 22, 1, 0, 0, 0,128,210,144, 22, 1, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,224,212,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, +112,241,144, 22, 1, 0, 0, 0, 48,176,144, 22, 1, 0, 0, 0, 0, 91,144, 22, 1, 0, 0, 0, 96, 91,144, 22, 1, 0, 0, 0, + 32, 89,144, 22, 1, 0, 0, 0,160, 90,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 5, 0, 0,128, 7, 0, 0, +149, 1, 0, 0, 21, 4, 0, 0, 9, 9, 72, 2,129, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 66, 15, 3, 1, 0, 0, 0, +128,216,144, 22, 1, 0, 0, 0, 16,240,144, 22, 1, 0, 0, 0,192,213,144, 22, 1, 0, 0, 0, 32,215,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,233, 36, 3, 1, 0, 0, 0,208,110,113, 29, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,192,213,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,215,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 18, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,181, 67, 0, 0,200, 65, + 0,128,181, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 72, 2, + 26, 0, 72, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 57, 5, 0, 0,128, 7, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 72, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 68, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32,215,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,213,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,181, 67, 0, 0, 0, 0, 0,128,218, 67, 0, 0, 0, 0,131,248, 1, 68, + 0, 0, 0, 0,176,222, 8, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 2, 0, 0, 0, 0, 0, 0,102, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0, 72, 2, +103, 2, 72, 2,103, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 57, 5, 0, 0,128, 7, 0, 0,175, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 72, 2,103, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 67, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0,128,216,144, 22, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 16,222,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,219,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,220,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,182, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,161, 67, 0, 0,200, 65, 0,128,161, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,108, 1, 26, 0,108, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,160, 5, 0, 0, 41, 1, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,108, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,220,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,219,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,173, 67, 0, 0,210,195, 0, 0, 0, 0, 91, 1, 0, 0,108, 1, 0, 0, 18, 0, 0, 0,181, 1, 0, 0, + 0, 0, 0, 0, 90, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 90, 1, 0, 0, 18, 0, 0, 0,181, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, + 0, 0, 0, 4, 6, 0,108, 1,182, 1, 91, 1,164, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 53, 4, 0, 0,160, 5, 0, 0, 67, 1, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,108, 1,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,222,144, 22, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, +144,227,144, 22, 1, 0, 0, 0,128,216,144, 22, 1, 0, 0, 0, 80,219,144, 22, 1, 0, 0, 0,176,220,144, 22, 1, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,223,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0,112,223,144, 22, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0,192,223,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0,192,223,144, 22, 1, 0, 0, 0, +217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 96,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 48,206,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,237, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,224,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,226,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,162, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 68, 1, 30, 0, 68, 1, 30, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 6, 0, 0,128, 7, 0, 0, +252, 3, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 1, 30, 0, 0, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,226,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,224,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,153, 67, 0, 0,137,196, 0, 0, 0, 0, 0, 0, 0, 0,254,127,153, 67,253,127,198,195, 0, 0, 0, 0, + 51, 1, 0, 0, 68, 1, 0, 0, 18, 0, 0, 0,158, 1, 0, 0, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 50, 1, 0, 0, 18, 0, 0, 0,158, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 68, 1,159, 1, 51, 1,141, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 6, 0, 0,128, 7, 0, 0, + 93, 2, 0, 0,251, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 1,159, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, +144,227,144, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,240,232,144, 22, 1, 0, 0, 0, 16,222,144, 22, 1, 0, 0, 0, +208,224,144, 22, 1, 0, 0, 0, 48,226,144, 22, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,228,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 48,230,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, + 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, + 0, 0, 0, 0, 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,230,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,144,231,144, 22, 1, 0, 0, 0,208,228,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,231,144, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,230,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, + 18, 0, 0, 0,123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66, +105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,240,232,144, 22, 1, 0, 0, 0, +163, 0, 0, 0, 1, 0, 0, 0, 16,240,144, 22, 1, 0, 0, 0,144,227,144, 22, 1, 0, 0, 0,208,228,144, 22, 1, 0, 0, 0, +144,231,144, 22, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32,234,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,235,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128,235,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,234,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,236,144, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, +224,236,144, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 16,240,144, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,232,144, 22, 1, 0, 0, 0, 32,234,144, 22, 1, 0, 0, 0,128,235,144, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,112,241,144, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80, 20,145, 22, 1, 0, 0, 0, +224,212,144, 22, 1, 0, 0, 0,192, 91,144, 22, 1, 0, 0, 0, 32, 92,144, 22, 1, 0, 0, 0, 96, 91,144, 22, 1, 0, 0, 0, + 0, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 1, 0, 0, 55, 5, 0, 0,149, 1, 0, 0, 21, 4, 0, 0, + 1, 1,251, 3,129, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0,192, 5,145, 22, 1, 0, 0, 0, + 80, 19,145, 22, 1, 0, 0, 0, 80,242,144, 22, 1, 0, 0, 0, 48, 1,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 77,253, 24, 1, 0, 0, 0,160,199,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 80,242,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,243,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192,126, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,250, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,251, 3, 26, 0,251, 3, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 1, 0, 0, 55, 5, 0, 0, +149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 3, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,243,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,245,144, 22, 1, 0, 0, 0, 80,242,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 1, 0, 0, 61, 1, 0, 0, +175, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,103, 2, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 16,245,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,246,144, 22, 1, 0, 0, 0,176,243,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 1, 0, 0, 55, 5, 0, 0, +175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,224, 11, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112,246,144, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 1,145, 22, 1, 0, 0, 0, 16,245,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0,254,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,209,195, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,180, 1, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,180, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,181, 1,163, 0,163, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 5, 0, 0, 55, 5, 0, 0, +175, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,247,144, 22, 1, 0, 0, 0,160,255,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208,247,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,249,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,249,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +240,250,144, 22, 1, 0, 0, 0,208,247,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,254,253,163, 0, 58, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +240,250,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,252,144, 22, 1, 0, 0, 0, 96,249,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45,253,163, 0, 59, 1, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,252,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 16,254,144, 22, 1, 0, 0, 0,240,250,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 80,254,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 16,254,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,255,144, 22, 1, 0, 0, 0,128,252,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,254,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,255,144, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16,254,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 8,254,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48, 1,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,246,144, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 1, 0, 0, 55, 5, 0, 0, +175, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 3,103, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 2,145, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, +144, 2,145, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,248, 2,131, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,248, 2,131, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,149, 53,207, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,130, 29,122, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,121,195, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,248, 2,131, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +149, 53,207, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,221, 57, 80, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, + 1, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192, 5,145, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +224, 9,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32, 7,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 8,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, + 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, + 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,128, 8,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 7,145, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68, +160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6, +107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,224, 9,145, 22, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, 96, 15,145, 22, 1, 0, 0, 0, +192, 5,145, 22, 1, 0, 0, 0, 32, 7,145, 22, 1, 0, 0, 0,128, 8,145, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 64, 11,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 12,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160, 12,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 14,145, 22, 1, 0, 0, 0, 64, 11,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0, 14,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 12,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, + 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, + 96, 15,145, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, 80, 19,145, 22, 1, 0, 0, 0,224, 9,145, 22, 1, 0, 0, 0, + 64, 11,145, 22, 1, 0, 0, 0, 0, 14,145, 22, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,144, 16,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 17,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,240, 17,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 16,145, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0, 80, 19,145, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 15,145, 22, 1, 0, 0, 0,144, 16,145, 22, 1, 0, 0, 0,240, 17,145, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0, 80, 20,145, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,241,144, 22, 1, 0, 0, 0,128, 89,144, 22, 1, 0, 0, 0,192, 88,144, 22, 1, 0, 0, 0, 32, 92,144, 22, 1, 0, 0, 0, +192, 91,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 1, 0, 0,149, 1, 0, 0, 21, 4, 0, 0, + 3, 3, 60, 1,129, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 15, 3, 1, 0, 0, 0,240, 23,145, 22, 1, 0, 0, 0, + 80, 50,145, 22, 1, 0, 0, 0, 48, 21,145, 22, 1, 0, 0, 0,144, 22,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 94,112, 29, 1, 0, 0, 0,144,198,254, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48, 21,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 22,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,158, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 83, 67, 0, 0,200, 65, 0, 0, 83, 67, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 60, 1, 26, 0, 60, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 1, 0, 0, +149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144, 22,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 21,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,149, 67, 0, 64, 21,196, 0, 0, 0, 0, + 43, 1, 0, 0, 60, 1, 0, 0, 18, 0, 0, 0,102, 2, 0, 0, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 42, 1, 0, 0, 18, 0, 0, 0,102, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0, 60, 1,103, 2, 43, 1, 85, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 1, 0, 0, +175, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 1,103, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 1, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 23,145, 22, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0,192, 36,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,221, 19, 26, 1, 0, 0, 0,112,221, 19, 26, 1, 0, 0, 0, 80, 25,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, + 80, 25,145, 22, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,160, 25,145, 22, 1, 0, 0, 0, + 68, 65, 84, 65,208, 0, 0, 0,160, 25,145, 22, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, + 48,186,129, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, +112,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 96,237, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 26,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16, 28,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 68, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 84, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,212, 0, 26, 0,212, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 0, 0, 0, 41, 1, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,212, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 28,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +112, 29,145, 22, 1, 0, 0, 0,176, 26,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 1, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,182, 1, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 29,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +208, 30,145, 22, 1, 0, 0, 0, 16, 28,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 0, 0, 0, 67, 1, 0, 0, 67, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 30,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 48, 32,145, 22, 1, 0, 0, 0,112, 29,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,211, 0, 0, 0,211, 0, 0, 0, 67, 1, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 32,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 30,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,211, 0, 0, 0, 67, 1, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,212, 0,182, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 33,145, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144, 33,145, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, +121, 92,163, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +121, 92,163, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 15,150, 72, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,149, 53,207, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,121,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +121, 92,163, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,190, 35, 30, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,149, 53,207, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, +159, 55,242, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, 1, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, +192, 36,145, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,224, 40,145, 22, 1, 0, 0, 0,240, 23,145, 22, 1, 0, 0, 0, +176, 26,145, 22, 1, 0, 0, 0, 48, 32,145, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 38,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128, 39,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 39,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 38,145, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68,160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6,107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,224, 40,145, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0, 96, 46,145, 22, 1, 0, 0, 0,192, 36,145, 22, 1, 0, 0, 0, 32, 38,145, 22, 1, 0, 0, 0, +128, 39,145, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 42,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160, 43,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 43,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 45,145, 22, 1, 0, 0, 0, 64, 42,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 45,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160, 43,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96, 46,145, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, + 80, 50,145, 22, 1, 0, 0, 0,224, 40,145, 22, 1, 0, 0, 0, 64, 42,145, 22, 1, 0, 0, 0, 0, 45,145, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144, 47,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,240, 48,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 48,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 47,145, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 80, 50,145, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 46,145, 22, 1, 0, 0, 0,144, 47,145, 22, 1, 0, 0, 0, +240, 48,145, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0,208, 51,145, 22, 1, 0, 0, 0, +190, 0, 0, 0, 1, 0, 0, 0, 96,116,146, 22, 1, 0, 0, 0, 48, 86,144, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 80,114,111,112,101,114,116,105,101,115, 0, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 52,145, 22, 1, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0, +224, 58,145, 22, 1, 0, 0, 0, 0, 66,145, 22, 1, 0, 0, 0, 96, 66,145, 22, 1, 0, 0, 0, 0, 48,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +224, 52,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 53,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 53,145, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,160, 53,145, 22, 1, 0, 0, 0,224, 52,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 53,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0, 54,145, 22, 1, 0, 0, 0, 64, 53,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 0, 54,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 54,145, 22, 1, 0, 0, 0, +160, 53,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 96, 54,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 54,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 32, 55,145, 22, 1, 0, 0, 0, 96, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 55,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +128, 55,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 6, 24, 4, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,128, 55,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224, 55,145, 22, 1, 0, 0, 0, + 32, 55,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +224, 55,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0,128, 55,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,104, 1, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,160, 56,145, 22, 1, 0, 0, 0,224, 55,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +104, 1, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160, 56,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0, 57,145, 22, 1, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 0, 57,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96, 57,145, 22, 1, 0, 0, 0, +160, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,248, 2, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 96, 57,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, 0, 57,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,136, 4, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0, 96, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +136, 4, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +128, 58,145, 22, 1, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +224, 58,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 59,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 53,145, 22, 1, 0, 0, 0,160, 53,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 64, 59,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 59,145, 22, 1, 0, 0, 0,224, 58,145, 22, 1, 0, 0, 0, + 64, 53,145, 22, 1, 0, 0, 0, 96, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +160, 59,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 60,145, 22, 1, 0, 0, 0, 64, 59,145, 22, 1, 0, 0, 0, +160, 53,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 0, 60,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 60,145, 22, 1, 0, 0, 0,160, 59,145, 22, 1, 0, 0, 0, + 96, 54,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 96, 60,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 60,145, 22, 1, 0, 0, 0, 0, 60,145, 22, 1, 0, 0, 0, +224, 52,145, 22, 1, 0, 0, 0, 96, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +192, 60,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 61,145, 22, 1, 0, 0, 0, 96, 60,145, 22, 1, 0, 0, 0, + 0, 54,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 32, 61,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 61,145, 22, 1, 0, 0, 0,192, 60,145, 22, 1, 0, 0, 0, +224, 52,145, 22, 1, 0, 0, 0,224, 55,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +128, 61,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 61,145, 22, 1, 0, 0, 0, 32, 61,145, 22, 1, 0, 0, 0, + 96, 54,145, 22, 1, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +224, 61,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 62,145, 22, 1, 0, 0, 0,128, 61,145, 22, 1, 0, 0, 0, +224, 55,145, 22, 1, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 64, 62,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 62,145, 22, 1, 0, 0, 0,224, 61,145, 22, 1, 0, 0, 0, +224, 55,145, 22, 1, 0, 0, 0,160, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +160, 62,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 63,145, 22, 1, 0, 0, 0, 64, 62,145, 22, 1, 0, 0, 0, + 64, 56,145, 22, 1, 0, 0, 0, 0, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 0, 63,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96, 63,145, 22, 1, 0, 0, 0,160, 62,145, 22, 1, 0, 0, 0, +160, 56,145, 22, 1, 0, 0, 0, 0, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 96, 63,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192, 63,145, 22, 1, 0, 0, 0, 0, 63,145, 22, 1, 0, 0, 0, +160, 56,145, 22, 1, 0, 0, 0, 96, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +192, 63,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32, 64,145, 22, 1, 0, 0, 0, 96, 63,145, 22, 1, 0, 0, 0, + 0, 57,145, 22, 1, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 32, 64,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128, 64,145, 22, 1, 0, 0, 0,192, 63,145, 22, 1, 0, 0, 0, + 96, 57,145, 22, 1, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +128, 64,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224, 64,145, 22, 1, 0, 0, 0, 32, 64,145, 22, 1, 0, 0, 0, + 96, 57,145, 22, 1, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +224, 64,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64, 65,145, 22, 1, 0, 0, 0,128, 64,145, 22, 1, 0, 0, 0, +192, 57,145, 22, 1, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 64, 65,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160, 65,145, 22, 1, 0, 0, 0,224, 64,145, 22, 1, 0, 0, 0, + 32, 58,145, 22, 1, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +160, 65,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 66,145, 22, 1, 0, 0, 0, 64, 65,145, 22, 1, 0, 0, 0, +192, 54,145, 22, 1, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 0, 66,145, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 65,145, 22, 1, 0, 0, 0, + 0, 54,145, 22, 1, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 96, 66,145, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 70,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 54,145, 22, 1, 0, 0, 0, 64, 53,145, 22, 1, 0, 0, 0,160, 53,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, + 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0,224,115,146, 22, 1, 0, 0, 0,224,115,146, 22, 1, 0, 0, 0, + 64, 67,145, 22, 1, 0, 0, 0,160, 68,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 23, 17, 26, 1, 0, 0, 0,240, 18,154, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 67,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,160, 68,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 68,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 67,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, + 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, + 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, + 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 7, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 0, 70,145, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0,208,123,145, 22, 1, 0, 0, 0, 96, 66,145, 22, 1, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0, +128, 58,145, 22, 1, 0, 0, 0,192, 54,145, 22, 1, 0, 0, 0, 0, 54,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 25, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, 4, 4,104, 1, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0, 96, 92,145, 22, 1, 0, 0, 0,208,122,145, 22, 1, 0, 0, 0,224, 70,145, 22, 1, 0, 0, 0, + 64, 72,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,218,149, 22, 1, 0, 0, 0, +112,143,154, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 70,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 64, 72,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0, 0,180, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,103, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,199, 67, 0, 0,232, 65, 0,128,199, 67, 0, 0,232, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,104, 1, 31, 0,104, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 6, 0, 0,128, 7, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,104, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 72,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 70,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,171, 67, 0, 64,121,196, 0, 0, 0, 0, + 0, 0, 0, 0, 3,128,171, 67, 5, 64,121,196, 0, 0, 0, 0, 87, 1, 0, 0,104, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 86, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,104, 1,247, 3, 87, 1,229, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 54, 40, 3, 1, 0, 0, 0, + 7, 0, 0, 0, 6, 0, 0, 0, 25, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,246, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,104, 1,247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 73,145, 22, 1, 0, 0, 0, +208, 90,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 73,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 48, 75,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255, 87, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 48, 75,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 76,145, 22, 1, 0, 0, 0,160, 73,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 66, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 76,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80, 78,145, 22, 1, 0, 0, 0, 48, 75,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80, 78,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 79,145, 22, 1, 0, 0, 0,192, 76,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 66, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 79,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +112, 81,145, 22, 1, 0, 0, 0, 80, 78,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 66, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +112, 81,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 83,145, 22, 1, 0, 0, 0,224, 79,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 66, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 83,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +144, 84,145, 22, 1, 0, 0, 0,112, 81,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 66, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144, 84,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 86,145, 22, 1, 0, 0, 0, 0, 83,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 86,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176, 87,145, 22, 1, 0, 0, 0,144, 84,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 66, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176, 87,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 89,145, 22, 1, 0, 0, 0, 32, 86,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 66, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 89,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208, 90,145, 22, 1, 0, 0, 0,176, 87,145, 22, 1, 0, 0, 0,240, 19,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16,255, 87, 1,204, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208, 90,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 89,145, 22, 1, 0, 0, 0, + 32,158,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95,105,110,102,108,117, +101,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95,105,110,102,108,117, +101,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73,110,102,108,117,101,110, 99,101, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,212,253, 87, 1, 36, 1, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96, 92,145, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, + 96, 96,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 6, 0, 0, 0, + 2, 0, 1, 0, 0, 0, 0, 0, 0,159,251, 24, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160, 93,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 95,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 0, 68, 0, 0,200, 65, + 0,192, 0, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, + 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0, 95,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 93,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 0, 68, 0, 0, 0, 0, 0,128, 26, 68, 56, 58, 14, 66, 61, 2,240, 67, + 0, 0, 0, 0, 55, 58,142, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,144, 1, + 0, 4,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 26, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0, 96, 96,145, 22, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 64,109,145, 22, 1, 0, 0, 0, + 96, 92,145, 22, 1, 0, 0, 0,160, 93,145, 22, 1, 0, 0, 0, 0, 95,145, 22, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 99,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +144,100,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 1, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 4, 2, 26, 0, 4, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,100,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,101,145, 22, 1, 0, 0, 0, 48, 99,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,107, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,101,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,103,145, 22, 1, 0, 0, 0,144,100,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,103,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,104,145, 22, 1, 0, 0, 0,240,101,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,104,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,103,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16,106,145, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 16,106,145, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 28,242,167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +155,253,159, 62, 81,240, 49, 63,144,213, 37,188, 0, 0,240,181,195, 13,188,190,192, 73, 53, 62,101,126, 81, 63, 0, 64,164, 53, +215,104, 25,196,135,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,206,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 34,153, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, + 64,109,145, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 96,113,145, 22, 1, 0, 0, 0, 96, 96,145, 22, 1, 0, 0, 0, + 48, 99,145, 22, 1, 0, 0, 0,176,104,145, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,110,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,112,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,112,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,110,145, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68,160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6,107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,113,145, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0,224,118,145, 22, 1, 0, 0, 0, 64,109,145, 22, 1, 0, 0, 0,160,110,145, 22, 1, 0, 0, 0, + 0,112,145, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,114,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 32,116,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,116,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128,117,145, 22, 1, 0, 0, 0,192,114,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,117,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,116,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,224,118,145, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +208,122,145, 22, 1, 0, 0, 0, 96,113,145, 22, 1, 0, 0, 0,192,114,145, 22, 1, 0, 0, 0,128,117,145, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,120,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,121,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,121,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,120,145, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208,122,145, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,118,145, 22, 1, 0, 0, 0, 16,120,145, 22, 1, 0, 0, 0, +112,121,145, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,123,145, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0,128,174,145, 22, 1, 0, 0, 0, 0, 70,145, 22, 1, 0, 0, 0,224, 52,145, 22, 1, 0, 0, 0, + 96, 54,145, 22, 1, 0, 0, 0, 64, 56,145, 22, 1, 0, 0, 0,224, 55,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,103, 1, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, 4, 4,104, 1, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0, 16,143,145, 22, 1, 0, 0, 0,128,173,145, 22, 1, 0, 0, 0,176,124,145, 22, 1, 0, 0, 0, + 16,126,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,240,141, 22, 1, 0, 0, 0, +192,215,141, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,124,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16,126,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0, 0,180, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,103, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,199, 67, 0, 0,232, 65, 0,128,199, 67, 0, 0,232, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,104, 1, 31, 0,104, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,103, 1, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,104, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,126,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,124,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,171, 67, 0, 0,121,196, 0, 0, 0, 0, + 0, 0, 0, 0,255,127,171, 67,255, 63,121,196, 0, 0, 0, 0, 87, 1, 0, 0,104, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 86, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,104, 1,247, 3, 87, 1,229, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,183, 63, 25, 1, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,103, 1, 0, 0, 0, 0, 0, 0,246, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,104, 1,247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,127,145, 22, 1, 0, 0, 0, +128,141,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,127,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0,129,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255, 86, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0,129,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,130,145, 22, 1, 0, 0, 0,112,127,145, 22, 1, 0, 0, 0, + 64, 47,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 86, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,130,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32,132,145, 22, 1, 0, 0, 0, 0,129,145, 22, 1, 0, 0, 0,192, 34,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32,132,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,133,145, 22, 1, 0, 0, 0,144,130,145, 22, 1, 0, 0, 0, +128,241,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 86, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,133,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64,135,145, 22, 1, 0, 0, 0, 32,132,145, 22, 1, 0, 0, 0,112,108,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 86, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64,135,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,136,145, 22, 1, 0, 0, 0,176,133,145, 22, 1, 0, 0, 0, +160, 93,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 86, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,136,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96,138,145, 22, 1, 0, 0, 0, 64,135,145, 22, 1, 0, 0, 0,128, 98,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 86, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96,138,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,139,145, 22, 1, 0, 0, 0,208,136,145, 22, 1, 0, 0, 0, + 64,105,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,139,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128,141,145, 22, 1, 0, 0, 0, 96,138,145, 22, 1, 0, 0, 0, 32,107,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128,141,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,139,145, 22, 1, 0, 0, 0, +128,109,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 86, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 16,143,145, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, + 16,147,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0,192, 68, 40, 3, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 80,144,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,145,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 0, 68, 0, 0,200, 65, + 0,192, 0, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, + 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,176,145,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,144,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 0, 68, 0, 0, 0, 0, 0,128, 26, 68, 56, 58, 14, 66, 61, 2,240, 67, + 0, 0, 0, 0, 55, 58,142, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,144, 1, + 0, 4,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 26, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0, 16,147,145, 22, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0,240,159,145, 22, 1, 0, 0, 0, + 16,143,145, 22, 1, 0, 0, 0, 80,144,145, 22, 1, 0, 0, 0,176,145,145, 22, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,149,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 64,151,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 1, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 4, 2, 26, 0, 4, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,151,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160,152,145, 22, 1, 0, 0, 0,224,149,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,107, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,152,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0,154,145, 22, 1, 0, 0, 0, 64,151,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,154,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 96,155,145, 22, 1, 0, 0, 0,160,152,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,155,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,154,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,156,145, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192,156,145, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 28,242,167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +155,253,159, 62, 81,240, 49, 63,144,213, 37,188, 0, 0,240,181,195, 13,188,190,192, 73, 53, 62,101,126, 81, 63, 0, 64,164, 53, +215,104, 25,196,135,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,206,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 34,153, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, +240,159,145, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 16,164,145, 22, 1, 0, 0, 0, 16,147,145, 22, 1, 0, 0, 0, +224,149,145, 22, 1, 0, 0, 0, 96,155,145, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,161,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,162,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,162,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,161,145, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68,160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6,107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 16,164,145, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0,144,169,145, 22, 1, 0, 0, 0,240,159,145, 22, 1, 0, 0, 0, 80,161,145, 22, 1, 0, 0, 0, +176,162,145, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,165,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +208,166,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,166,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 48,168,145, 22, 1, 0, 0, 0,112,165,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,168,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,166,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,144,169,145, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +128,173,145, 22, 1, 0, 0, 0, 16,164,145, 22, 1, 0, 0, 0,112,165,145, 22, 1, 0, 0, 0, 48,168,145, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,170,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 32,172,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,172,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,170,145, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,128,173,145, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,169,145, 22, 1, 0, 0, 0,192,170,145, 22, 1, 0, 0, 0, + 32,172,145, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,128,174,145, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0,208,240,145, 22, 1, 0, 0, 0,208,123,145, 22, 1, 0, 0, 0,224, 55,145, 22, 1, 0, 0, 0, + 64, 56,145, 22, 1, 0, 0, 0, 0, 57,145, 22, 1, 0, 0, 0,160, 56,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +105, 1, 0, 0,247, 2, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, 4, 4,143, 1, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0, 96,209,145, 22, 1, 0, 0, 0,208,239,145, 22, 1, 0, 0, 0, 96,175,145, 22, 1, 0, 0, 0, +192,176,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,181,147, 22, 1, 0, 0, 0, +240, 65,148, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,175,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +192,176,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0,128,199, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,142, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,199, 67, 0, 0,232, 65, 0,128,199, 67, 0, 0,232, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,143, 1, 31, 0,143, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,105, 1, 0, 0,247, 2, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,176,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,175,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,190, 67, 0, 0,121,196, 0, 0, 0, 0, + 0, 0, 0, 0,251,255,190, 67,250, 63,121,196, 0, 0, 0, 0,126, 1, 0, 0,143, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0,125, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,125, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,143, 1,247, 3,126, 1,229, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 35, 16, 26, 1, 0, 0, 0, + 3, 0, 0, 0, 2, 0, 0, 0,105, 1, 0, 0,247, 2, 0, 0, 0, 0, 0, 0,246, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1,247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,178,145, 22, 1, 0, 0, 0, +208,207,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,178,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176,179,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255,125, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176,179,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,181,145, 22, 1, 0, 0, 0, 32,178,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 86, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,181,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208,182,145, 22, 1, 0, 0, 0,176,179,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208,182,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96,184,145, 22, 1, 0, 0, 0, 64,181,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 86, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,184,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +240,185,145, 22, 1, 0, 0, 0,208,182,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 86, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +240,185,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,187,145, 22, 1, 0, 0, 0, 96,184,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 86, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,187,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 16,189,145, 22, 1, 0, 0, 0,240,185,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 86, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 16,189,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,190,145, 22, 1, 0, 0, 0,128,187,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,190,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 48,192,145, 22, 1, 0, 0, 0, 16,189,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 86, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 48,192,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,193,145, 22, 1, 0, 0, 0,160,190,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 86, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,193,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80,195,145, 22, 1, 0, 0, 0, 48,192,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,135,255, 86, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80,195,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,196,145, 22, 1, 0, 0, 0,192,193,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,255, 86, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,196,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +112,198,145, 22, 1, 0, 0, 0, 80,195,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,213,254, 86, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +112,198,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,200,145, 22, 1, 0, 0, 0,224,196,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,254, 86, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,200,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +144,201,145, 22, 1, 0, 0, 0,112,198,145, 22, 1, 0, 0, 0, 16,196,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,184,255,125, 1, 36, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144,201,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,203,145, 22, 1, 0, 0, 0, 0,200,145, 22, 1, 0, 0, 0, +144,208,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,112,114,101,118,105,101,119, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,112,114,101,118,105,101,119, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,114,101,118,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24,255,125, 1,136, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,203,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176,204,145, 22, 1, 0, 0, 0,144,201,145, 22, 1, 0, 0, 0, 16,221,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95,119,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,175,254,125, 1, 81, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176,204,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,206,145, 22, 1, 0, 0, 0, 32,203,145, 22, 1, 0, 0, 0, +144,233,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95, 97,109, 98,105,101,110,116, + 95,111, 99, 99,108,117,115,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95, 97,109, 98,105,101,110,116, + 95,111, 99, 99,108,117,115,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,109, 98,105,101,110,116, 32, 79, 99, 99,108,117,115,105,111, +110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,253,125, 1,199, 0, 20, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,206,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208,207,145, 22, 1, 0, 0, 0,176,204,145, 22, 1, 0, 0, 0, 16,246,141, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95,109,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 79, 82, 76, 68, 95, 80, 84, 95,109,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77,105,115,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 99,253,125, 1, 85, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208,207,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,206,145, 22, 1, 0, 0, 0, + 0, 9,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,115,116, 97,114,115, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 82, 76, 68, 95, 80, 84, 95,115,116, 97,114,115, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15,253,125, 1, 60, 0, 20, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 96,209,145, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, + 96,213,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, + 2, 0, 0, 0, 4, 0, 0, 0,240,137, 17, 26, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,210,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,212,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 0, 68, 0, 0,200, 65, + 0,192, 0, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, + 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0,212,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160,210,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 0, 68, 0, 0, 0, 0, 0,128, 26, 68, 56, 58, 14, 66, 61, 2,240, 67, + 0, 0, 0, 0, 55, 58,142, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,144, 1, + 0, 4,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 26, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0, 96,213,145, 22, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 64,226,145, 22, 1, 0, 0, 0, + 96,209,145, 22, 1, 0, 0, 0,160,210,145, 22, 1, 0, 0, 0, 0,212,145, 22, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,216,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +144,217,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 1, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 4, 2, 26, 0, 4, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,217,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,218,145, 22, 1, 0, 0, 0, 48,216,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,107, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,218,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,220,145, 22, 1, 0, 0, 0,144,217,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,220,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,221,145, 22, 1, 0, 0, 0,240,218,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,221,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,220,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16,223,145, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 16,223,145, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 28,242,167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +155,253,159, 62, 81,240, 49, 63,144,213, 37,188, 0, 0,240,181,195, 13,188,190,192, 73, 53, 62,101,126, 81, 63, 0, 64,164, 53, +215,104, 25,196,135,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,206,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 34,153, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, + 64,226,145, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 96,230,145, 22, 1, 0, 0, 0, 96,213,145, 22, 1, 0, 0, 0, + 48,216,145, 22, 1, 0, 0, 0,176,221,145, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,227,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,229,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,229,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,227,145, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68,160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6,107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,230,145, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0,224,235,145, 22, 1, 0, 0, 0, 64,226,145, 22, 1, 0, 0, 0,160,227,145, 22, 1, 0, 0, 0, + 0,229,145, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,231,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 32,233,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,233,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128,234,145, 22, 1, 0, 0, 0,192,231,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,234,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,233,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,224,235,145, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +208,239,145, 22, 1, 0, 0, 0, 96,230,145, 22, 1, 0, 0, 0,192,231,145, 22, 1, 0, 0, 0,128,234,145, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,237,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,238,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,238,145, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,237,145, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,208,239,145, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,235,145, 22, 1, 0, 0, 0, 16,237,145, 22, 1, 0, 0, 0, +112,238,145, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,208,240,145, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 0, 48,146, 22, 1, 0, 0, 0,128,174,145, 22, 1, 0, 0, 0,160, 56,145, 22, 1, 0, 0, 0, + 0, 57,145, 22, 1, 0, 0, 0,192, 57,145, 22, 1, 0, 0, 0, 96, 57,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +249, 2, 0, 0,135, 4, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, 4, 4,143, 1, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0,144, 16,146, 22, 1, 0, 0, 0, 0, 47,146, 22, 1, 0, 0, 0,176,241,145, 22, 1, 0, 0, 0, + 16,243,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,155,146, 22, 1, 0, 0, 0, +224,142,146, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,241,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16,243,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0,128,199, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,142, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,199, 67, 0, 0,232, 65, 0,128,199, 67, 0, 0,232, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,143, 1, 31, 0,143, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,249, 2, 0, 0,135, 4, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,243,145, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,241,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,191, 67, 0, 64,121,196, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0,191, 67, 4, 64,121,196, 0, 0, 0, 0,126, 1, 0, 0,143, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0,125, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,125, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,143, 1,247, 3,126, 1,229, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 66, 17, 26, 1, 0, 0, 0, + 4, 0, 0, 0, 3, 0, 0, 0,249, 2, 0, 0,135, 4, 0, 0, 0, 0, 0, 0,246, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1,247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,244,145, 22, 1, 0, 0, 0, + 0, 15,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,244,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0,246,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0,246,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,247,145, 22, 1, 0, 0, 0,112,244,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,102, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,247,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32,249,145, 22, 1, 0, 0, 0, 0,246,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255,102, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32,249,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,250,145, 22, 1, 0, 0, 0,144,247,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,102, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,250,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64,252,145, 22, 1, 0, 0, 0, 32,249,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254,102, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64,252,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,253,145, 22, 1, 0, 0, 0,176,250,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,102, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,253,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96,255,145, 22, 1, 0, 0, 0, 64,252,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253,102, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96,255,145, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 0,146, 22, 1, 0, 0, 0,208,253,145, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,102, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 0,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128, 2,146, 22, 1, 0, 0, 0, 96,255,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253,102, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128, 2,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 4,146, 22, 1, 0, 0, 0,240, 0,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,102, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 4,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160, 5,146, 22, 1, 0, 0, 0,128, 2,146, 22, 1, 0, 0, 0,224, 17,147, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,184,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160, 5,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 7,146, 22, 1, 0, 0, 0, 16, 4,146, 22, 1, 0, 0, 0, +128, 53,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39,255,126, 1,121, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 7,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192, 8,146, 22, 1, 0, 0, 0,160, 5,146, 22, 1, 0, 0, 0, 96, 58,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,108,111, 99,107,115, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,108,111, 99,107,115, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 32, 76,111, 99,107,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15,255,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192, 8,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 10,146, 22, 1, 0, 0, 0, 48, 7,146, 22, 1, 0, 0, 0, + 64, 63,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,114,101,108, 97,116,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,114,101,108, 97,116,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,108, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,149,254,126, 1, 98, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 10,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224, 11,146, 22, 1, 0, 0, 0,192, 8,146, 22, 1, 0, 0, 0, 32, 68,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 89,254,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224, 11,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 13,146, 22, 1, 0, 0, 0, 80, 10,146, 22, 1, 0, 0, 0, + 0, 73,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,100,105,115,112,108, 97, +121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,100,105,115,112,108, 97, +121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,253,126, 1,107, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 13,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 15,146, 22, 1, 0, 0, 0,224, 11,146, 22, 1, 0, 0, 0,224, 77,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,100,117,112,108,105, 99, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 74, 69, 67, 84, 95, 80, 84, 95,100,117,112,108,105, 99, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,117,112,108,105, 99, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,154,253,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0, 15,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 13,146, 22, 1, 0, 0, 0, +192, 82,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95, 97,110,105,109, 97,116, +105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 74, 69, 67, 84, 95, 80, 84, 95, 97,110,105,109, 97,116, +105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,105,109, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,252,126, 1,146, 0, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,144, 16,146, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, +144, 20,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, + 2, 0, 1, 0, 0, 0, 0, 0,224, 84, 19, 26, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,208, 17,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 19,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 0, 68, 0, 0,200, 65, + 0,192, 0, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, + 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48, 19,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 17,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 0, 68, 0, 0, 0, 0, 0,128, 26, 68, 56, 58, 14, 66, 61, 2,240, 67, + 0, 0, 0, 0, 55, 58,142, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,144, 1, + 0, 4,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,143, 1, 0, 0, 26, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0,144, 20,146, 22, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0,112, 33,146, 22, 1, 0, 0, 0, +144, 16,146, 22, 1, 0, 0, 0,208, 17,146, 22, 1, 0, 0, 0, 48, 19,146, 22, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 23,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +192, 24,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 1, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 4, 2, 26, 0, 4, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 24,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 32, 26,146, 22, 1, 0, 0, 0, 96, 23,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,107, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32, 26,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128, 27,146, 22, 1, 0, 0, 0,192, 24,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 27,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +224, 28,146, 22, 1, 0, 0, 0, 32, 26,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 28,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 27,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 2,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 30,146, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 64, 30,146, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 28,242,167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +155,253,159, 62, 81,240, 49, 63,144,213, 37,188, 0, 0,240,181,195, 13,188,190,192, 73, 53, 62,101,126, 81, 63, 0, 64,164, 53, +215,104, 25,196,135,132,135, 67, 38, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,206,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191,155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 34,153, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, +112, 33,146, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,144, 37,146, 22, 1, 0, 0, 0,144, 20,146, 22, 1, 0, 0, 0, + 96, 23,146, 22, 1, 0, 0, 0,224, 28,146, 22, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208, 34,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 48, 36,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48, 36,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 34,146, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68,160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6,107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144, 37,146, 22, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0, 16, 43,146, 22, 1, 0, 0, 0,112, 33,146, 22, 1, 0, 0, 0,208, 34,146, 22, 1, 0, 0, 0, + 48, 36,146, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 38,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80, 40,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 40,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176, 41,146, 22, 1, 0, 0, 0,240, 38,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 41,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 40,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 16, 43,146, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, + 0, 47,146, 22, 1, 0, 0, 0,144, 37,146, 22, 1, 0, 0, 0,240, 38,146, 22, 1, 0, 0, 0,176, 41,146, 22, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 44,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,160, 45,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 45,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 44,146, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 0, 47,146, 22, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 43,146, 22, 1, 0, 0, 0, 64, 44,146, 22, 1, 0, 0, 0, +160, 45,146, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 0, 48,146, 22, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,240,145, 22, 1, 0, 0, 0, 96, 57,145, 22, 1, 0, 0, 0, +192, 57,145, 22, 1, 0, 0, 0,128, 58,145, 22, 1, 0, 0, 0, 32, 58,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +137, 4, 0, 0, 23, 6, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, 4, 4,143, 1, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0,112, 84,146, 22, 1, 0, 0, 0,224,114,146, 22, 1, 0, 0, 0,224, 48,146, 22, 1, 0, 0, 0, + 64, 50,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76,154, 22, 1, 0, 0, 0, +208, 54,141, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 48,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 64, 50,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,240, 65, + 0, 0, 0, 0, 0,128,199, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,142, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,199, 67, 0, 0,232, 65, 0,128,199, 67, 0, 0,232, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,143, 1, 31, 0,143, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,137, 4, 0, 0, 23, 6, 0, 0,247, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 50,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 48,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,191, 67, 0, 64,121,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,191, 67, 0, 64,121,196, 0, 0, 0, 0,126, 1, 0, 0,143, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0,125, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,125, 1, 0, 0, 18, 0, 0, 0,246, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,143, 1,247, 3,126, 1,229, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 65,154, 22, 1, 0, 0, 0, + 6, 0, 0, 0, 5, 0, 0, 0,137, 4, 0, 0, 23, 6, 0, 0, 0, 0, 0, 0,246, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,143, 1,247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 51,146, 22, 1, 0, 0, 0, +224, 82,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 51,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 48, 53,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 48, 53,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 54,146, 22, 1, 0, 0, 0,160, 51,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 81, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 54,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80, 56,146, 22, 1, 0, 0, 0, 48, 53,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 81, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80, 56,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 57,146, 22, 1, 0, 0, 0,192, 54,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 81, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 57,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +112, 59,146, 22, 1, 0, 0, 0, 80, 56,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 81, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +112, 59,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 61,146, 22, 1, 0, 0, 0,224, 57,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 81, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 61,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +144, 62,146, 22, 1, 0, 0, 0,112, 59,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 81, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144, 62,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 64,146, 22, 1, 0, 0, 0, 0, 61,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 81, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 64,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176, 65,146, 22, 1, 0, 0, 0,144, 62,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 81, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176, 65,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 67,146, 22, 1, 0, 0, 0, 32, 64,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 81, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 67,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208, 68,146, 22, 1, 0, 0, 0,176, 65,146, 22, 1, 0, 0, 0, 96,212,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,109, 97,116,101,114,105, 97,108, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,109, 97,116,101,114,105, 97,108, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 94,255,126, 1,126, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208, 68,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 70,146, 22, 1, 0, 0, 0, 64, 67,146, 22, 1, 0, 0, 0, + 64,214,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,112,114,101,118, +105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,112,114,101,118, +105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,114,101,118,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,190,254,126, 1,136, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 70,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +240, 71,146, 22, 1, 0, 0, 0,208, 68,146, 22, 1, 0, 0, 0, 64,224,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,100,105,102,102,117,115,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,100,105,102,102,117,115,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,102,102,117,115,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,103,254,126, 1, 63, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +240, 71,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 73,146, 22, 1, 0, 0, 0, 96, 70,146, 22, 1, 0, 0, 0, + 32,226,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,112,101, 99, +117,108, 97,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,112,101, 99, +117,108, 97,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,112,101, 99,117,108, 97,114, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,253,126, 1, 83, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 73,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 16, 75,146, 22, 1, 0, 0, 0,240, 71,146, 22, 1, 0, 0, 0, 0,228,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,148,253,126, 1, 80, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 16, 75,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160, 76,146, 22, 1, 0, 0, 0,128, 73,146, 22, 1, 0, 0, 0, +224,229,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,116,114, 97,110, +115,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,116,114, 97,110, +115,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,112, 97,114,101,110, 99,121, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,253,126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160, 76,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 48, 78,146, 22, 1, 0, 0, 0, 16, 75,146, 22, 1, 0, 0, 0,144,201,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,109,105,114,114,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,109,105,114,114,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77,105,114,114,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,100,253,126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 48, 78,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 79,146, 22, 1, 0, 0, 0,160, 76,146, 22, 1, 0, 0, 0, +160,193,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,115,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,115,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,117, 98,115,117,114,102, 97, 99,101, 32, 83, 99, 97,116,116, +101,114,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76,253,126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 79,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80, 81,146, 22, 1, 0, 0, 0, 48, 78,146, 22, 1, 0, 0, 0,112,227,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,116,114, 97,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,116,114, 97,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,116,114, 97,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 52,253,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80, 81,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 82,146, 22, 1, 0, 0, 0,192, 79,146, 22, 1, 0, 0, 0, +208,229,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,111,112,116,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,111,112,116,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,112,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76,252,126, 1,208, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 82,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 81,146, 22, 1, 0, 0, 0, 48,232,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,104, 97,100,111,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 84, 69, 82, 73, 65, 76, 95, 80, 84, 95,115,104, 97,100,111,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,104, 97,100,111,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 52,252,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, +112, 84,146, 22, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,112, 88,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 96,213, 18, 26, 1, 0, 0, 0, +255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 85,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16, 87,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 0, 68, 0, 0,200, 65, 0,192, 0, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 87,146, 22, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 85,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 0, 68, + 0, 0, 0, 0, 0,128, 26, 68, 56, 58, 14, 66, 61, 2,240, 67, 0, 0, 0, 0, 55, 58,142, 68, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, + 0, 0, 0, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, + 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,144, 1, 0, 4,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 26, 0, 0, 0, 25, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0,112, 88,146, 22, 1, 0, 0, 0, +169, 0, 0, 0, 1, 0, 0, 0, 80,101,146, 22, 1, 0, 0, 0,112, 84,146, 22, 1, 0, 0, 0,176, 85,146, 22, 1, 0, 0, 0, + 16, 87,146, 22, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 64, 91,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160, 92,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 1, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 4, 2, 26, 0, 4, 2, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, +149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160, 92,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 94,146, 22, 1, 0, 0, 0, 64, 91,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,107, 2, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0, 94,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 95,146, 22, 1, 0, 0, 0,160, 92,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, +175, 1, 0, 0,175, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96, 95,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 96,146, 22, 1, 0, 0, 0, 0, 94,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 3, 2, 0, 0, +175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192, 96,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 95,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, +175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2,107, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 98,146, 22, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 32, 98,146, 22, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 28,242,167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, + 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0, +164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191, +155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,155,253,159, 62, 81,240, 49, 63,144,213, 37,188, 0, 0,240,181, +195, 13,188,190,192, 73, 53, 62,101,126, 81, 63, 0, 64,164, 53,215,104, 25,196,135,132,135, 67, 38, 9,167,195,136,252, 71,194, + 3, 54, 25, 68,160, 87,135,195,206,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,161,185, 9, 63,206,249,224,190,222,160, 81,191,184,158, 81,191, +155, 41,153, 63,139,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,191,147,142,188,204,156,122, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 34,153, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 80,101,146, 22, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +112,105,146, 22, 1, 0, 0, 0,112, 88,146, 22, 1, 0, 0, 0, 64, 91,146, 22, 1, 0, 0, 0,192, 96,146, 22, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,176,102,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,104,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,195, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, + 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 24, 6, + 26, 0, 24, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 6, 0, 0,149, 1, 0, 0,174, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 16,104,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,102,146, 22, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68, 56,205,190,195,156,102, 95, 68, +160,228,244, 64,110, 44,252, 67, 7, 6, 0, 0, 24, 6, 0, 0, 18, 0, 0, 0,106, 2, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 18, 0, 0, 0,106, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 24, 6, +107, 2, 7, 6, 89, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 6, 0, 0,175, 1, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 6,107, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,112,105,146, 22, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,240,110,146, 22, 1, 0, 0, 0, + 80,101,146, 22, 1, 0, 0, 0,176,102,146, 22, 1, 0, 0, 0, 16,104,146, 22, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,193, 67, 81, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,106,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,108,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,108,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,109,146, 22, 1, 0, 0, 0,208,106,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144,109,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,108,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, + 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, +240,110,146, 22, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,224,114,146, 22, 1, 0, 0, 0,112,105,146, 22, 1, 0, 0, 0, +208,106,146, 22, 1, 0, 0, 0,144,109,146, 22, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32,112,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,113,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,128,113,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32,112,146, 22, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,224,114,146, 22, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,110,146, 22, 1, 0, 0, 0, 32,112,146, 22, 1, 0, 0, 0,128,113,146, 22, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 83, 78, 0, 0,208, 0, 0, 0, 96,116,146, 22, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 64, 24, 38, 3, 1, 0, 0, 0, +208, 51,145, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 81,117, 97,100, 32, 86, +105,101,119, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,117,146, 22, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0,240,121,146, 22, 1, 0, 0, 0, 80,128,146, 22, 1, 0, 0, 0, +176,128,146, 22, 1, 0, 0, 0,240,235, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,117,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +208,117,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,208,117,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,118,146, 22, 1, 0, 0, 0, +112,117,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48,118,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,118,146, 22, 1, 0, 0, 0,208,117,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,118,146, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, 48,118,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 80,119,146, 22, 1, 0, 0, 0,144,118,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0, +240,118,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +176,119,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +208,120,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 68, 3, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0, +112,120,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 68, 3, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48,121,146, 22, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6, 84, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,121,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 80,122,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,117,146, 22, 1, 0, 0, 0, 48,118,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,122,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +176,122,146, 22, 1, 0, 0, 0,240,121,146, 22, 1, 0, 0, 0,208,117,146, 22, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,122,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 16,123,146, 22, 1, 0, 0, 0, 80,122,146, 22, 1, 0, 0, 0, 48,118,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,123,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +112,123,146, 22, 1, 0, 0, 0,176,122,146, 22, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,123,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +208,123,146, 22, 1, 0, 0, 0, 16,123,146, 22, 1, 0, 0, 0,112,117,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,123,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 48,124,146, 22, 1, 0, 0, 0,112,123,146, 22, 1, 0, 0, 0,144,118,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,124,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +144,124,146, 22, 1, 0, 0, 0,208,123,146, 22, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,124,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +240,124,146, 22, 1, 0, 0, 0, 48,124,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,124,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 80,125,146, 22, 1, 0, 0, 0,144,124,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,125,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +176,125,146, 22, 1, 0, 0, 0,240,124,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,125,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 16,126,146, 22, 1, 0, 0, 0, 80,125,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,126,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +112,126,146, 22, 1, 0, 0, 0,176,125,146, 22, 1, 0, 0, 0,144,118,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,126,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +208,126,146, 22, 1, 0, 0, 0, 16,126,146, 22, 1, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,126,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 48,127,146, 22, 1, 0, 0, 0,112,126,146, 22, 1, 0, 0, 0,112,117,146, 22, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,127,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +144,127,146, 22, 1, 0, 0, 0,208,126,146, 22, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,127,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, +240,127,146, 22, 1, 0, 0, 0, 48,127,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,127,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 80,128,146, 22, 1, 0, 0, 0,144,127,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,128,146, 22, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,127,146, 22, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,128,146, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, + 80,132,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0,208,117,146, 22, 1, 0, 0, 0, + 48,118,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0, +192, 23, 38, 3, 1, 0, 0, 0,192, 23, 38, 3, 1, 0, 0, 0,144,129,146, 22, 1, 0, 0, 0,240,130,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 79, 33, 3, 1, 0, 0, 0,224,135, 40, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,144,129,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,130,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, + 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,240,130,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144,129,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, + 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, + 3, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0, 80,132,146, 22, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 80,206, 37, 3, 1, 0, 0, 0, +176,128,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0,112,120,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, +144,118,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 67, 3, 0, 0, + 4, 4,128, 1, 68, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0,192,197, 37, 3, 1, 0, 0, 0, +240,204, 37, 3, 1, 0, 0, 0, 48,133,146, 22, 1, 0, 0, 0,144,134,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 86,112, 29, 1, 0, 0, 0,240, 76,253, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,133,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,134,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,192, 67, 0, 0, 0, 0, 0, 0,248, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,127, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,128, 1, 31, 0,128, 1, 31, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0, + 37, 3, 0, 0, 67, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 1, 31, 0, 0, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144,134,146, 22, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,133,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,183, 67, 0,128, 68,196, 0, 0, 0, 0, 0, 0, 0, 0,253,127,183, 67,253,191, 68,196, 0, 0, 0, 0, +111, 1, 0, 0,128, 1, 0, 0, 18, 0, 0, 0, 36, 3, 0, 0, 0, 0, 0, 0,110, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,110, 1, 0, 0, 18, 0, 0, 0, 36, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,128, 1, 37, 3,111, 1, 19, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 77,253, 24, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 36, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 1, 37, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,135,146, 22, 1, 0, 0, 0, 48,196, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +240,135,146, 22, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,164, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, +120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, +120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,110, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,164, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128,166, 37, 3, 1, 0, 0, 0,240,135,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128,166, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,168, 37, 3, 1, 0, 0, 0,240,164, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,168, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160,169, 37, 3, 1, 0, 0, 0,128,166, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160,169, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,171, 37, 3, 1, 0, 0, 0, 16,168, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, + 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, + 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,171, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192,172, 37, 3, 1, 0, 0, 0,160,169, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192,172, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,174, 37, 3, 1, 0, 0, 0, 48,171, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,174, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224,175, 37, 3, 1, 0, 0, 0,192,172, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224,175, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112,177, 37, 3, 1, 0, 0, 0, 80,174, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114, +111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114, +111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112,177, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0,179, 37, 3, 1, 0, 0, 0,224,175, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0,179, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144,180, 37, 3, 1, 0, 0, 0,112,177, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144,180, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32,182, 37, 3, 1, 0, 0, 0, 0,179, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95,115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,252, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32,182, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176,183, 37, 3, 1, 0, 0, 0,144,180, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,252, 76, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176,183, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64,185, 37, 3, 1, 0, 0, 0, 32,182, 37, 3, 1, 0, 0, 0, 64, 47,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,135,255,110, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64,185, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208,186, 37, 3, 1, 0, 0, 0,176,183, 37, 3, 1, 0, 0, 0, +192, 34,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255,110, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208,186, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96,188, 37, 3, 1, 0, 0, 0, 64,185, 37, 3, 1, 0, 0, 0,128,241,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,165,254,110, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96,188, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240,189, 37, 3, 1, 0, 0, 0,208,186, 37, 3, 1, 0, 0, 0, +112,108,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108, +105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108, +105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254,110, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240,189, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128,191, 37, 3, 1, 0, 0, 0, 96,188, 37, 3, 1, 0, 0, 0,160, 93,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,213,253,110, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128,191, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,193, 37, 3, 1, 0, 0, 0,240,189, 37, 3, 1, 0, 0, 0, +128, 98,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253,110, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,193, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160,194, 37, 3, 1, 0, 0, 0,128,191, 37, 3, 1, 0, 0, 0, 64,105,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 60,253,110, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160,194, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,196, 37, 3, 1, 0, 0, 0, 16,193, 37, 3, 1, 0, 0, 0, + 32,107,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112, +114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112, +114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253,110, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,196, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,160,194, 37, 3, 1, 0, 0, 0,128,109,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 12,253,110, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, +192,197, 37, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,240,204, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,224,224,112, 29, 1, 0, 0, 0, +255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,199, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,200, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,200, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,199, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192,201, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192,201, 37, 3, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,240,204, 37, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,197, 37, 3, 1, 0, 0, 0, 0,199, 37, 3, 1, 0, 0, 0, 96,200, 37, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 80,206, 37, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 64,218, 37, 3, 1, 0, 0, 0, 80,132,146, 22, 1, 0, 0, 0, +112,117,146, 22, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0,144,121,146, 22, 1, 0, 0, 0,176,119,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 15, 15, 0, 6, 84, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 15, 3, 1, 0, 0, 0,240,209, 37, 3, 1, 0, 0, 0,224,216, 37, 3, 1, 0, 0, 0, + 48,207, 37, 3, 1, 0, 0, 0,144,208, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 48,251, 24, 1, 0, 0, 0,144, 12,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,207, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,144,208, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,192, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 6, 26, 0, 0, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 4, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,208, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,207, 37, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, + 18, 0, 0, 0, 57, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0, 0, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, 26, 0, 0, 0, 83, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 3, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,240,209, 37, 3, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0,224,216, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,210, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,212, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,212, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,210, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,213, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,176,213, 37, 3, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,224,216, 37, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,209, 37, 3, 1, 0, 0, 0,240,210, 37, 3, 1, 0, 0, 0, 80,212, 37, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 64,218, 37, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240,235, 37, 3, 1, 0, 0, 0, 80,206, 37, 3, 1, 0, 0, 0, +112,120,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, 80,119,146, 22, 1, 0, 0, 0,208,120,146, 22, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0, 69, 3, 0, 0, 21, 4, 0, 0, 3, 3,128, 1,209, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 15, 3, 1, 0, 0, 0,224,221, 37, 3, 1, 0, 0, 0,144,234, 37, 3, 1, 0, 0, 0, + 32,219, 37, 3, 1, 0, 0, 0,128,220, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224,164,255, 24, 1, 0, 0, 0, 80,217,253, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,219, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,128,220, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,192, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 66, 67, 0, 0,200, 65, 0, 0, 66, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,128, 1, 26, 0,128, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0,252, 3, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 1, 26, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,220, 37, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,219, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, + 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,183, 67, 0, 0, 37,195, 0, 0, 0, 0,111, 1, 0, 0,128, 1, 0, 0, + 18, 0, 0, 0,182, 0, 0, 0, 0, 0, 0, 0,110, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,110, 1, 0, 0, + 18, 0, 0, 0,182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,128, 1,183, 0,111, 1,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0,128, 7, 0, 0, 69, 3, 0, 0,251, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 1,183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 1, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,221, 37, 3, 1, 0, 0, 0, +166, 0, 0, 0, 1, 0, 0, 0, 96,227, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,130,251, 24, 1, 0, 0, 0, +192,130,251, 24, 1, 0, 0, 0, 64,223, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 68, 65, 84, 65, 16, 0, 0, 0, 64,223, 37, 3, 1, 0, 0, 0, +218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0,144,223, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, +144,223, 37, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,128,242, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,253, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0,112,251, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,238, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,237, 39, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,224, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,226, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 55, 0, 0, 67, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, + 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,195, 0, + 26, 0,195, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 4, 0, 0,247, 4, 0, 0, 69, 2, 0, 0, 94, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +195, 0, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0,226, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160,224, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,150, 67, 0,192,116,196, 0, 0, 0, 0, 0, 0, 0, 0,205, 85,150, 67, +223,204, 35,196, 26, 85,207,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0,155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 0, 4, 6, 0,195, 0, +156, 0,195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 4, 0, 0,247, 4, 0, 0, 95, 2, 0, 0,250, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +195, 0,156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 0, 1, 0, 0, 96,227, 37, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0,144,234, 37, 3, 1, 0, 0, 0, +224,221, 37, 3, 1, 0, 0, 0,160,224, 37, 3, 1, 0, 0, 0, 0,226, 37, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +160,228, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0,230, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0,230, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,228, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,231, 37, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 96,231, 37, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,234, 37, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,227, 37, 3, 1, 0, 0, 0,160,228, 37, 3, 1, 0, 0, 0, 0,230, 37, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,240,235, 37, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64,218, 37, 3, 1, 0, 0, 0, 48,121,146, 22, 1, 0, 0, 0,240,118,146, 22, 1, 0, 0, 0, 16,120,146, 22, 1, 0, 0, 0, +144,121,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, 85, 0, 0, 0, 21, 4, 0, 0, + 1, 1, 0, 6,193, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 5, 15, 3, 1, 0, 0, 0,160, 18, 38, 3, 1, 0, 0, 0, +192, 22, 38, 3, 1, 0, 0, 0,208,236, 37, 3, 1, 0, 0, 0, 16, 14, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 44,255, 24, 1, 0, 0, 0, 96,216,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,236, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,238, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,192, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 0, 6, 26, 0, 0, 6, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, + 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,238, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,242, 37, 3, 1, 0, 0, 0,208,236, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0,128, 71,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 47, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 48, 3,143, 0, 30, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +111, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,167, 3, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,239, 37, 3, 1, 0, 0, 0, 32,241, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144,239, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,241, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, +104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115, +104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,241, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,239, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95,111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,242, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,245, 37, 3, 1, 0, 0, 0, 48,238, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0, +111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,224, 11, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16,244, 37, 3, 1, 0, 0, 0, 16,244, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 16,244, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111, +112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111, +112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,108,101,116,101, 32, 83, 99,114,101,101,110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,245, 37, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 96, 0, 38, 3, 1, 0, 0, 0,176,242, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 77,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 35,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,160, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,160, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,161, 2,163, 0,143, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,255, 5, 0, 0,255, 5, 0, 0,111, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,247, 37, 3, 1, 0, 0, 0, +208,254, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,247, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +144,248, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +144,248, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32,250, 37, 3, 1, 0, 0, 0, 0,247, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105, +108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105, +108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,171,252,163, 0, 58, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32,250, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +176,251, 37, 3, 1, 0, 0, 0,144,248, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 45,253,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +176,251, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64,253, 37, 3, 1, 0, 0, 0, 32,250, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18,252,163, 0, 3, 1, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64,253, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +208,254, 37, 3, 1, 0, 0, 0,176,251, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114,111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,253,252,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +208,254, 37, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,253, 37, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102, +111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, + 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,252,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 0, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240, 4, 38, 3, 1, 0, 0, 0,160,245, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0,111, 0, 0, 0, 66, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192, 1, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,192, 1, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, +173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 55,224, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,128,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 2, 19, 51, 1, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0,128,191,176, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20,194,128, 49,110, 18,131, 59, 0, 0, 0, 0, + 0, 0, 0, 0, 65, 55,224, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,170,217,167, 52, 24, 37, 18, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0,122, 67,160,144, 15,183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 2, 19, 51,255,255,127,191, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,127, 63,174, 2, 19, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20,194,128, 49,110, 18,131, 59, 0, 0, 0, 0, + 0, 0, 0, 0, 65, 55,224, 61,234,137, 22,175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +243, 4, 53, 63,243, 4, 53,191, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, +143,226, 31, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 4, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 9, 38, 3, 1, 0, 0, 0, 96, 0, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 0, 0, + 67, 2, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,211, 1, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 6, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 80, 6, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45,178,224, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45,178,224, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 37,213, 17, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,121,195, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 45,178,224, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,143,226, 31, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 9, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16, 14, 38, 3, 1, 0, 0, 0,240, 4, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0,255, 5, 0, 0,111, 0, 0, 0, 66, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,212, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 10, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,224, 10, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, +173,161,136, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 55,224, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,128, 0, 0, 0,128,111, 18,131,187, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128,165, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 11, 0, 0,128, 63, 0, 0,128, 37, 0, 0, 0, 0, 0, 0,128, 37, 0, 0,128, 11, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 37, 0, 0,128, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +173,161,136,163, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61, 66, 55,224,163, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 66, 55,224, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +215,211,111, 13,214,211,111, 65,214,211,111, 39, 0, 0, 0, 0, 23, 37, 18, 39, 23, 37, 18, 13, 23, 37, 18, 65, 0, 0, 0, 0, +255,255,121,195,255,255,121,169,255,255,121,143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128,165, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128,165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +173,161,136,163, 0, 0, 0, 0,111, 18,131,187, 0, 0, 0, 0,173,161,136, 61, 66, 55,224,163, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 66, 55,224, 61,111, 18,131, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,252,194, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0,191, 0, 0, 0,191, 0, 0, 0,191,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, +143,226, 31, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 16, 14, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 9, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0,255, 5, 0, 0, + 67, 2, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3,211, 1, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 15, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, +112, 15, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,209,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,255, 59,230, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 65,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128, 72, 1, 77,190, 0, 0, 0,128,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, + 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, + 90, 38,173,190, 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,223,149, 47, 63, 55, 70, 58, 63,160, 56, 49,188, 0, 0, 0, 0, + 88,126,162,190,229,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,150, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0, +110,101,239, 64,151, 62,208,192, 78,255,170, 64, 0, 0,128, 63,169, 11, 64, 63,150, 35, 18,191,244,250, 39,191, 8,165, 39,191, +131,188, 75, 63,203,225, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,135, 35,206, 63, 10,108,228,190, 52,247,227,190, +179, 97,189,190,167,116, 45,191,216, 49, 49, 65,152, 9, 52, 65,215,136, 32, 63,101, 79, 42, 63, 96, 26, 34,188, 0, 0, 92,181, +225,172, 52,190,162,226, 49, 62, 22,220,254, 62, 0, 0,209, 52,168,120, 21,194,107, 5, 2, 66,204,135,213,193,147,214,159,192, +177, 38, 19, 66,124,173,255,193, 97,101,210, 65,128, 40,160, 64,221,149, 47, 63, 86,126,162,190, 8,165, 39, 63, 0, 0, 0, 0, + 51, 70, 58, 63,225,251,159, 62,149, 84, 28,191, 0, 0, 0, 0,192, 56, 49,188, 55, 53,101, 63, 52,247,227, 62, 0, 0, 0, 0, + 90, 38,173,190, 0,222,192,190,152, 9, 52,193, 0, 0,128, 63,169, 11, 64, 63,150, 35, 18,191,244,250, 39,191, 8,165, 39,191, +131,188, 75, 63,203,225, 15, 63,180,164, 28, 63,149, 84, 28, 63,209,213, 65,188,135, 35,206, 63, 10,108,228,190, 52,247,227,190, +179, 97,189,190,167,116, 45,191,216, 49, 49, 65,152, 9, 52, 65,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128,248, 15, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,248, 15, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,241, 22, 72, 63, 78,162,246,190, 43, 8, 90,190, 3, 35,171,190, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,243, 9, 28, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 76, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 76, 45, 3, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,234,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,176, 76, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 78, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 2, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 78, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 79, 45, 3, 1, 0, 0, 0,176, 76, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 67, 0,128, 4,196, - 0, 0, 64,193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,181, 0, 24, 2,181, 0, - 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -180, 0, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 24, 2, - 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,160, 18, 38, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +192, 22, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,112, 79, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 78, 45, 3, - 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0,128, 4,196, - 0, 0, 64,193,210, 1, 0, 0,227, 1, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, - 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,227, 1, 24, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 0, 0, -151, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 24, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0,255,255, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 0, 20, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96, 21, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 8, 1, 0, 0,208, 80, 45, 3, 1, 0, 0, 0, 21, 1, 0, 0, 1, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0, 32, 75, 45, 3, - 1, 0, 0, 0,176, 76, 45, 3, 1, 0, 0, 0,112, 79, 45, 3, 1, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 96, 21, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 20, 38, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,192, 22, 38, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +160, 18, 38, 3, 1, 0, 0, 0, 0, 20, 38, 3, 1, 0, 0, 0, 96, 21, 38, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,234,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 82, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 83, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,112, 83, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 84, 45, 3, 1, 0, 0, 0, 16, 82, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, - 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0, -146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,208, 84, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 83, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, - 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -168, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,208, 80, 45, 3, - 1, 0, 0, 0, 16, 82, 45, 3, 1, 0, 0, 0,208, 84, 45, 3, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 16, 87, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 88, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, - 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,112, 88, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 89, 45, 3, 1, 0, 0, 0, 16, 87, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, - 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, - 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,208, 89, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48, 91, 45, 3, 1, 0, 0, 0,112, 88, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, - 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0, -102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 48, 91, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 92, 45, 3, 1, 0, 0, 0,208, 89, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, - 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0, -104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, -167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,144, 92, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 91, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 93, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, -248, 2, 0, 0,240, 93, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, - 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, - 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, - 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, -184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, - 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195, -136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, - 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191, -184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, - 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, - 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,157, 0, 0, 0, - 1, 0, 0, 0, 64,101, 45, 3, 1, 0, 0, 0, 48, 86, 45, 3, 1, 0, 0, 0, 16, 87, 45, 3, 1, 0, 0, 0,144, 92, 45, 3, - 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,248,138, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128, 98, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 99, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, - 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 99, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 98, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192, -246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, - 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, - 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 64,101, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 32, 97, 45, 3, 1, 0, 0, 0,128, 98, 45, 3, 1, 0, 0, 0,224, 99, 45, 3, 1, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,160,123, 45, 3, - 1, 0, 0, 0,192, 68, 45, 3, 1, 0, 0, 0,208, 22, 45, 3, 1, 0, 0, 0, 16, 22, 45, 3, 1, 0, 0, 0, 48, 20, 45, 3, - 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0,128, 7, 0, 0,237, 1, 0, 0, - 18, 4, 0, 0, 8, 8, 56, 4, 38, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,107, 45, 3, - 1, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0, 32,103, 45, 3, 1, 0, 0, 0,224,105, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0, 32,103, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,104, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,135, 68, 0, 0, 0, 64, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 55, 4, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,224,156, 68, 0, 0,200, 65, 0,224,156, 68, - 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0, 56, 4, 24, 0, 56, 4, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0, -128, 7, 0, 0,237, 1, 0, 0,237, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,128,104, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,105, 45, 3, 1, 0, 0, 0, 32,103, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 83, 78, 0, 0,208, 0, 0, 0, 64, 24, 38, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0,112,219, 38, 3, 1, 0, 0, 0, + 96,116,146, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 83, 99,114,105,112,116, +105,110,103, 0,103, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 25, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0,144, 30, 38, 3, 1, 0, 0, 0,112, 38, 38, 3, 1, 0, 0, 0, +208, 38, 38, 3, 1, 0, 0, 0,240,195, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 25, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +176, 25, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,176, 25, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 26, 38, 3, 1, 0, 0, 0, + 80, 25, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 16, 26, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 26, 38, 3, 1, 0, 0, 0,176, 25, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 26, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208, 26, 38, 3, 1, 0, 0, 0, 16, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 26, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 48, 27, 38, 3, 1, 0, 0, 0,112, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 48, 27, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +144, 27, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240, 27, 38, 3, 1, 0, 0, 0, 48, 27, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240, 27, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +176, 28, 38, 3, 1, 0, 0, 0,240, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0, + 80, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,160, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 16, 29, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208, 29, 38, 3, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 2,160, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208, 29, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 48, 30, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 4, 3, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 4, 3, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 30, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 30, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176, 25, 38, 3, 1, 0, 0, 0, 16, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 30, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 31, 38, 3, 1, 0, 0, 0,144, 30, 38, 3, 1, 0, 0, 0, +176, 25, 38, 3, 1, 0, 0, 0,208, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 31, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 31, 38, 3, 1, 0, 0, 0,240, 30, 38, 3, 1, 0, 0, 0, + 16, 26, 38, 3, 1, 0, 0, 0, 48, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 31, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 32, 38, 3, 1, 0, 0, 0, 80, 31, 38, 3, 1, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0, 48, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 32, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 32, 38, 3, 1, 0, 0, 0,176, 31, 38, 3, 1, 0, 0, 0, + 48, 27, 38, 3, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 32, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 32, 38, 3, 1, 0, 0, 0, 16, 32, 38, 3, 1, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 32, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 33, 38, 3, 1, 0, 0, 0,112, 32, 38, 3, 1, 0, 0, 0, +112, 26, 38, 3, 1, 0, 0, 0,240, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 33, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 33, 38, 3, 1, 0, 0, 0,208, 32, 38, 3, 1, 0, 0, 0, + 80, 25, 38, 3, 1, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 33, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 33, 38, 3, 1, 0, 0, 0, 48, 33, 38, 3, 1, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 33, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 34, 38, 3, 1, 0, 0, 0,144, 33, 38, 3, 1, 0, 0, 0, +144, 27, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 34, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 34, 38, 3, 1, 0, 0, 0,240, 33, 38, 3, 1, 0, 0, 0, +240, 27, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 34, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 35, 38, 3, 1, 0, 0, 0, 80, 34, 38, 3, 1, 0, 0, 0, + 80, 28, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 35, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 35, 38, 3, 1, 0, 0, 0,176, 34, 38, 3, 1, 0, 0, 0, + 80, 25, 38, 3, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 35, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,208, 35, 38, 3, 1, 0, 0, 0, 16, 35, 38, 3, 1, 0, 0, 0, +240, 27, 38, 3, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +208, 35, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 48, 36, 38, 3, 1, 0, 0, 0,112, 35, 38, 3, 1, 0, 0, 0, + 80, 28, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 48, 36, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,144, 36, 38, 3, 1, 0, 0, 0,208, 35, 38, 3, 1, 0, 0, 0, +176, 28, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +144, 36, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,240, 36, 38, 3, 1, 0, 0, 0, 48, 36, 38, 3, 1, 0, 0, 0, + 16, 29, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +240, 36, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 80, 37, 38, 3, 1, 0, 0, 0,144, 36, 38, 3, 1, 0, 0, 0, +240, 27, 38, 3, 1, 0, 0, 0,208, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 80, 37, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,176, 37, 38, 3, 1, 0, 0, 0,240, 36, 38, 3, 1, 0, 0, 0, +144, 27, 38, 3, 1, 0, 0, 0,208, 29, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +176, 37, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 16, 38, 38, 3, 1, 0, 0, 0, 80, 37, 38, 3, 1, 0, 0, 0, + 48, 27, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 16, 38, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,112, 38, 38, 3, 1, 0, 0, 0,176, 37, 38, 3, 1, 0, 0, 0, +112, 26, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +112, 38, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 38, 38, 3, 1, 0, 0, 0, +208, 29, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +208, 38, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,112, 42, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0,176, 25, 38, 3, 1, 0, 0, 0, 16, 26, 38, 3, 1, 0, 0, 0, 48, 27, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, + 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0,240,218, 38, 3, 1, 0, 0, 0,240,218, 38, 3, 1, 0, 0, 0, +176, 39, 38, 3, 1, 0, 0, 0, 16, 41, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 56, 40, 3, 1, 0, 0, 0,144,246,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 39, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16, 41, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, -128, 7, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, - 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 1, 0, 0,224,105, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,104, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, - 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 37, 2, 0, 0, 18, 0, 0, 0, 55, 4, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 18, 0, 0, 0, 55, 4, 0, 0, 18, 0, 0, 0, 37, 2, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, - 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 56, 4, 38, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 3, 0, 0, -128, 7, 0, 0,237, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 4, 38, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 41, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 39, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, + 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, + 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, + 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 7, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,112, 42, 38, 3, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0,224, 95, 38, 3, 1, 0, 0, 0,208, 38, 38, 3, 1, 0, 0, 0,240, 27, 38, 3, 1, 0, 0, 0, +208, 29, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0,112, 26, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 4, 4,144, 1, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 32, 15, 3, 1, 0, 0, 0, 0, 82, 38, 3, 1, 0, 0, 0,128, 94, 38, 3, 1, 0, 0, 0, 80, 43, 38, 3, 1, 0, 0, 0, +176, 44, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,240, 36, 3, 1, 0, 0, 0, +112,245,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 43, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176, 44, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,200, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,144, 1, 31, 0,144, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0,229, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -240, 0, 0, 0, 64,107, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,128,118, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 44, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 43, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,191, 67, 0, 0, 62,196, 0, 0, 0, 0, + 0, 0, 0, 0,255,127,191, 67,255,191, 52,196, 0, 0, 0, 0,127, 1, 0, 0,144, 1, 0, 0, 18, 0, 0, 0,228, 2, 0, 0, + 0, 0, 0, 0,126, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 18, 0, 0, 0,228, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,144, 1,229, 2,127, 1,211, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 34, 16, 26, 1, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, 0, 0, 0, 0,228, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 1,229, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 46, 38, 3, 1, 0, 0, 0, +112, 80, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 46, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160, 47, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,220,255,126, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,108, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,109, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160, 47, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 49, 38, 3, 1, 0, 0, 0, 16, 46, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,109, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,111, 45, 3, - 1, 0, 0, 0,112,108, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, - 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 76, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,111, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,112, 45, 3, - 1, 0, 0, 0,208,109, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0, -231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, - 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 49, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192, 50, 38, 3, 1, 0, 0, 0,160, 47, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,112, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240,113, 45, 3, - 1, 0, 0, 0, 48,111, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, -162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, - 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,113, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,144,112, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,111,255, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192, 50, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 52, 38, 3, 1, 0, 0, 0, 48, 49, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,100,105,109,101,110,115,105, +111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 76, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,115, 45, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80,115, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, - 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, - 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62, -169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188, -102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, - 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196, -135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, - 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188, -166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62, -169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188, -102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 52, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224, 53, 38, 3, 1, 0, 0, 0,192, 50, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, - 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254, 76, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224, 53, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 55, 38, 3, 1, 0, 0, 0, 80, 52, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128,118, 45, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0, 64,107, 45, 3, 1, 0, 0, 0,112,108, 45, 3, - 1, 0, 0, 0,240,113, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,119, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 64,121, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 76, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,121, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,119, 45, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, - 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0, -121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, - 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 55, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 57, 38, 3, 1, 0, 0, 0,224, 53, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,160,122, 45, 3, 1, 0, 0, 0,172, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,118, 45, 3, 1, 0, 0, 0,224,119, 45, 3, 1, 0, 0, 0, 64,121, 45, 3, - 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253, 76, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,160,123, 45, 3, 1, 0, 0, 0,194, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,102, 45, 3, 1, 0, 0, 0,176, 21, 45, 3, 1, 0, 0, 0,144, 20, 45, 3, - 1, 0, 0, 0,240, 20, 45, 3, 1, 0, 0, 0, 48, 23, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0, -128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 8, 8,228, 1,151, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,192,139, 45, 3, 1, 0, 0, 0,128,124, 45, 3, 1, 0, 0, 0, 64,127, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,124, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,125, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,192, 65, 0, 0, 0, 0, - 0, 0,242, 67, 0, 0, 0, 0, 0, 0,192, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,128,241, 67, - 0, 0,184, 65, 0,128,241, 67, 0, 0,184, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, - 10, 0,228, 1, 24, 0,228, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0, 57, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 58, 38, 3, 1, 0, 0, 0,112, 55, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, + 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,112,101,114,102,111,114,109, + 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,125, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,127, 45, 3, - 1, 0, 0, 0,128,124, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 58, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32, 60, 38, 3, 1, 0, 0, 0, 0, 57, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253, 76, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,127, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,224,125, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, - 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,150, 1, 0, 0, 18, 0, 0, 0, -227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,150, 1, 0, 0, 0, 0, 32, 65, - 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 8, 0,228, 1,151, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,228, 1,151, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32, 60, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 61, 38, 3, 1, 0, 0, 0,144, 58, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,144,132, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 76, 1, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 61, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64, 63, 38, 3, 1, 0, 0, 0, 32, 60, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,117,110,105,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,129, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 48,131, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, - 0, 0,208, 65, 0, 0, 0, 0, 0, 0,194, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,131, 1, 0, 0, 0, 0, 0, 0, - 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, - 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,132, 1, 31, 0,132, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0,193, 1, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 85,110,105,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 50,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,131, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,129, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0, 62,196, - 0, 0, 0, 0, 0, 0, 0, 0, 0,128,185, 67, 0, 0,173,195, 0, 0, 0, 0,115, 1, 0, 0,132, 1, 0, 0, 18, 0, 0, 0, -107, 1, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,114, 1, 0, 0, 18, 0, 0, 0, -107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, - 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,132, 1,108, 1,115, 1, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,192, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 1,108, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64, 63, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 64, 38, 3, 1, 0, 0, 0,176, 61, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95, +115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 69, 78, 69, 95, 80, 84, 95,107,101,121,105,110,103, 95, +115,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75,101,121,105,110,103, 32, 83,101,116,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,144,132, 45, 3, 1, 0, 0, 0,162, 0, 0, 0, - 1, 0, 0, 0,192,139, 45, 3, 1, 0, 0, 0,160,128, 45, 3, 1, 0, 0, 0,208,129, 45, 3, 1, 0, 0, 0, 48,131, 45, 3, - 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,254,126, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 64, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96, 66, 38, 3, 1, 0, 0, 0, 64, 63, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,112,104,121,115,105, 99,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71,114, 97,118,105,116,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,133, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,135, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, - 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, - 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, - 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,153,254,126, 1, 36, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,135, 45, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,133, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96, 66, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 67, 38, 3, 1, 0, 0, 0,208, 64, 38, 3, 1, 0, 0, 0, + 64, 47,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,136, 45, 3, - 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,144,136, 45, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 67, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128, 69, 38, 3, 1, 0, 0, 0, 96, 66, 38, 3, 1, 0, 0, 0,192, 34,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,127,253,126, 1,240, 1, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128, 69, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16, 71, 38, 3, 1, 0, 0, 0,240, 67, 38, 3, 1, 0, 0, 0, +128,241,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115, +105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254,126, 1,178, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16, 71, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160, 72, 38, 3, 1, 0, 0, 0,128, 69, 38, 3, 1, 0, 0, 0,112,108,242, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 83,254,126, 1, 58, 0, 20, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160, 72, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48, 74, 38, 3, 1, 0, 0, 0, 16, 71, 38, 3, 1, 0, 0, 0, +160, 93,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253,126, 1,102, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48, 74, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192, 75, 38, 3, 1, 0, 0, 0,160, 72, 38, 3, 1, 0, 0, 0,128, 98,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84,253,126, 1,105, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192, 75, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80, 77, 38, 3, 1, 0, 0, 0, 48, 74, 38, 3, 1, 0, 0, 0, + 64,105,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114, +109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80, 77, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224, 78, 38, 3, 1, 0, 0, 0,192, 75, 38, 3, 1, 0, 0, 0, 32,107,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36,253,126, 1, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224, 78, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 80, 38, 3, 1, 0, 0, 0, 80, 77, 38, 3, 1, 0, 0, 0, +128,109,243, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253,126, 1, 0, 0, 20, 0, 0, 0, 4, 0, 7, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 80, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 78, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 67, 69, 78, 69, 95, 80, 84, 95,115, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 99,101,110,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,135,255,126, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, + 0, 82, 38, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 96, 87, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0,176,167, 20, 26, 1, 0, 0, 0, +255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64, 83, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,160, 84, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, + 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, + 0, 0, 0, 0, 26, 0, 0, 0, 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160, 84, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 86, 38, 3, 1, 0, 0, 0, 64, 83, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 86, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 84, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,123, 1, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, + 18, 0, 0, 0,123, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66, +105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 96, 87, 38, 3, 1, 0, 0, 0, +163, 0, 0, 0, 1, 0, 0, 0,128, 94, 38, 3, 1, 0, 0, 0, 0, 82, 38, 3, 1, 0, 0, 0, 64, 83, 38, 3, 1, 0, 0, 0, + 0, 86, 38, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144, 88, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,240, 89, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +240, 89, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 88, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, + 26, 0, 0, 0, 80, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 91, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 80, 91, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, + 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,139, 45, 3, - 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,132, 45, 3, 1, 0, 0, 0,208,133, 45, 3, - 1, 0, 0, 0, 48,135, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 7, 0, 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128, 94, 38, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 87, 38, 3, 1, 0, 0, 0,144, 88, 38, 3, 1, 0, 0, 0,240, 89, 38, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 0, 0, 0, 6, 0, 0, 48,234,138, 3, 1, 0, 0, 0,154, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0,116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,248,138, 3, 1, 0, 0, 0, 32,150, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 96,142, 45, 3, - 1, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,142, 45, 3, - 1, 0, 0, 0, 32,139,221, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0,141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, - 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, - 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,144, 45, 3, 1, 0, 0, 0,112,144, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 66, 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,224, 95, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 96,130, 38, 3, 1, 0, 0, 0, +112, 42, 38, 3, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, +240, 27, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 2, 0, 0,239, 5, 0, 0, 0, 0, 0, 0,159, 1, 0, 0, + 18, 18,255, 2,160, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 76, 15, 3, 1, 0, 0, 0,128, 99, 38, 3, 1, 0, 0, 0, + 96,129, 38, 3, 1, 0, 0, 0,192, 96, 38, 3, 1, 0, 0, 0, 32, 98, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,251,249, 24, 1, 0, 0, 0,240,232,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192, 96, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 98, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,192, 63, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,254, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,255, 2, 26, 0,255, 2, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 2, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 78, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32, 98, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 96, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0,128, 63, 68, 0, 0, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0,128, 59, 68, 0, 0, 0, 0, 0, 0,195, 67, +238, 2, 0, 0,255, 2, 0, 0, 0, 0, 0, 0,133, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,237, 2, 0, 0, 0, 0, 0, 0,133, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, 10, 0,255, 2,134, 1,238, 2,134, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 2, 0, 0,239, 5, 0, 0, + 26, 0, 0, 0,159, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 2,134, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 77, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,112, 0, 0, 0, +128, 99, 38, 3, 1, 0, 0, 0,177, 0, 0, 0, 1, 0, 0, 0,240,102, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0,192,186,153, 22, 1, 0, 0, 0, +112,243,140, 22, 1, 0, 0, 0, 48,171,153, 22, 1, 0, 0, 0, 48,171,153, 22, 1, 0, 0, 0, 62, 62, 62, 32, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48,100, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,101, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, + 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, + 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,144,101, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,100, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 6,188, 63,254,176,189, 68, + 0, 0, 0, 0, 0,128,192, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5, +130, 1,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,144, 2, 0, 0,240,102, 38, 3, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0,128,108, 38, 3, 1, 0, 0, 0, +128, 99, 38, 3, 1, 0, 0, 0, 48,100, 38, 3, 1, 0, 0, 0,144,101, 38, 3, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0, -154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63,102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 69, 36, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, - 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, -128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0,142, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,174, 2,210, 1, 48,254,138, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 0,142, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 96,142, 45, 3, - 1, 0, 0, 0,160,141, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,118, 3, 5, 3, 48, 4,139, 3, - 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 96,142, 45, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,142, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,151, 0, 48, 2, 48,248,138, 3, - 1, 0, 0, 0, 68, 65, 84, 65,112, 1, 0, 0,192,142, 45, 3, 1, 0, 0, 0,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, - 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63,111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, - 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, - 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, - 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63,205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, - 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 0, 0, 0,112,144, 45, 3, 1, 0, 0, 0,136, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101, -114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255, 15, 0, 0, 0, 0, 0,255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0, -152, 0, 0, 0, 0,145, 45, 3, 1, 0, 0, 0, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101, -114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, - 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,248, 1, 0, 0,208,145, 45, 3, 1, 0, 0, 0, 41, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63,247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0,148, 45, 3, - 1, 0, 0, 0, 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,149, 45, 3, 1, 0, 0, 0, 68, 65, 84, 65, - 56, 1, 0, 0, 0,148, 45, 3, 1, 0, 0, 0, 72, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, - 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,112,149, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,112,149, 45, 3, 1, 0, 0, 0, 70, 1, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, - 40, 0, 0, 0,192,149, 45, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0, -216, 1, 0, 0, 32,150, 45, 3, 1, 0, 0, 0,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61, -205,204,204, 61,205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0, -128, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0,112, 65, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 61, 0, 0, 5, 0, 0, 0, 0, 0, 10,215,163, 59, - 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,176, 0, 0, 0, 48,152, 45, 3, 1, 0, 0, 0, 27, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 32,153, 45, 3, - 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 32,153, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,242,138, 3, 1, 0, 0, 0,255,255,255,255, - 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 32,153, 45, 3, - 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,176, 32, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0, 32,176, 32, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,248,138, 3, 1, 0, 0, 0, -119, 0, 0, 0, 1, 0, 0, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,105, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 32,107, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,107, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192,105, 38, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68, +134,137,182,195,195, 68, 91, 68, 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, + 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 4, 0, 0,240, 5,130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,128,108, 38, 3, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0, + 0,114, 38, 3, 1, 0, 0, 0,240,102, 38, 3, 1, 0, 0, 0,192,105, 38, 3, 1, 0, 0, 0, 32,107, 38, 3, 1, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, - 53, 70, 58, 63,222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63, -149, 84, 28,191, 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0,128, 63, - 1, 0,128, 51, 1, 0, 0,179, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0,128, 63, 1, 0,128, 51, 0, 0, 0, 0, 2, 0, 0,179, - 2, 0, 0,167, 1, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 53, 1, 0, 0, 41, 1, 0,128,168, 0, 0,128, 63, 0, 0,128, 63, -157,190,215, 49,167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51, -243, 97,106, 49, 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, - 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62, -237, 54, 32, 63, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 79, 66, 0, 0,152, 4, 0, 0, 48,254,138, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, 48, 4,139, 3, 1, 0, 0, 0, - 48,248,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112, -104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 58, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224,109, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,111, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, + 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, + 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, + 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,244, 28, 25, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,160, 45, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,111, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,160,112, 38, 3, 1, 0, 0, 0, +224,109, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -192,188, 32, 3, 1, 0, 0, 0,224,195, 32, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,160,112, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64,111, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, + 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5, +163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,240, 0, 0, 0, 0,114, 38, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, 64,125, 38, 3, 1, 0, 0, 0, +128,108, 38, 3, 1, 0, 0, 0,224,109, 38, 3, 1, 0, 0, 0,160,112, 38, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,115, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +144,116, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,116, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,117, 38, 3, 1, 0, 0, 0, 48,115, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,117, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,119, 38, 3, 1, 0, 0, 0,144,116, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,119, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,120, 38, 3, 1, 0, 0, 0,240,117, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,120, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,119, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16,122, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 16,122, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62, +147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53, +215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62, +147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, +218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, + 64,125, 38, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 96,129, 38, 3, 1, 0, 0, 0, 0,114, 38, 3, 1, 0, 0, 0, + 48,115, 38, 3, 1, 0, 0, 0,176,120, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,126, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,128, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,128, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,126, 38, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 96,129, 38, 3, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,125, 38, 3, 1, 0, 0, 0,160,126, 38, 3, 1, 0, 0, 0, + 0,128, 38, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 96,130, 38, 3, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0,112,161, 38, 3, 1, 0, 0, 0,224, 95, 38, 3, 1, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0, +208, 26, 38, 3, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0,176, 28, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0,161, 1, 0, 0, 21, 4, 0, 0, 9, 9,240, 5,117, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 66, 15, 3, 1, 0, 0, 0, 0,134, 38, 3, 1, 0, 0, 0,112,160, 38, 3, 1, 0, 0, 0, 64,131, 38, 3, 1, 0, 0, 0, +160,132, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,251,249, 24, 1, 0, 0, 0, + 32, 87, 40, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,131, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160,132, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,161, 1, 0, 0,186, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 68, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,132, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,131, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, 0,192, 22, 68, +170, 86,234, 67, 86, 74,131, 68,162, 32, 58, 67,175,111,208, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 90, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, + 0, 0, 0, 4, 10, 0,240, 5, 91, 2,240, 5, 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,187, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 91, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 67, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, 0,134, 38, 3, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, +144,139, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,136, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 48,138, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,157, 1, 0, 0,182, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,138, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,136, 38, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, + 0, 0, 32,193, 0, 0, 0, 68,132,137,182,195,194, 68, 91, 68,112,158, 93, 65, 8, 19,249, 67,223, 5, 0, 0,240, 5, 0, 0, + 18, 0, 0, 0, 91, 2, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, + 18, 0, 0, 0, 91, 2, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, + 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5, 92, 2,223, 5, 74, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,183, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 92, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,144,139, 38, 3, 1, 0, 0, 0, +173, 0, 0, 0, 1, 0, 0, 0, 16,145, 38, 3, 1, 0, 0, 0, 0,134, 38, 3, 1, 0, 0, 0,208,136, 38, 3, 1, 0, 0, 0, + 48,138, 38, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 52, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,140, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80,142, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,142, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,143, 38, 3, 1, 0, 0, 0,240,140, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,143, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,142, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 16,145, 38, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, + 80,156, 38, 3, 1, 0, 0, 0,144,139, 38, 3, 1, 0, 0, 0,240,140, 38, 3, 1, 0, 0, 0,176,143, 38, 3, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,146, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,160,147, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,147, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,149, 38, 3, 1, 0, 0, 0, 64,146, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,149, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,150, 38, 3, 1, 0, 0, 0,160,147, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,150, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192,151, 38, 3, 1, 0, 0, 0, 0,149, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,151, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,150, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,153, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 32,153, 38, 3, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61, +170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195, +205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, + 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 80,156, 38, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,112,160, 38, 3, 1, 0, 0, 0, + 16,145, 38, 3, 1, 0, 0, 0, 64,146, 38, 3, 1, 0, 0, 0,192,151, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,157, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,159, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 16,159, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,157, 38, 3, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, +112,160, 38, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,156, 38, 3, 1, 0, 0, 0, +176,157, 38, 3, 1, 0, 0, 0, 16,159, 38, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +112,161, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,240,195, 38, 3, 1, 0, 0, 0, 96,130, 38, 3, 1, 0, 0, 0, + 80, 25, 38, 3, 1, 0, 0, 0, 80, 28, 38, 3, 1, 0, 0, 0,112, 29, 38, 3, 1, 0, 0, 0, 16, 29, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2, 0, 0, 0, 0, 0, 0,159, 1, 0, 0, 18, 18,240, 2,160, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 76, 15, 3, 1, 0, 0, 0, 16,165, 38, 3, 1, 0, 0, 0,240,194, 38, 3, 1, 0, 0, 0, + 80,162, 38, 3, 1, 0, 0, 0,176,163, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 64, 84, 40, 3, 1, 0, 0, 0, 48,172,252, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,162, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,163, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,231, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 60, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 2, 26, 0,240, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144, 78, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,163, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,162, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,192, 59, 68, + 0, 0, 0, 0, 0, 0, 9, 67, 0, 0, 0, 0, 0,192, 55, 68, 0, 0, 0, 0, 0, 0,195, 67,223, 2, 0, 0,240, 2, 0, 0, + 0, 0, 0, 0,133, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222, 2, 0, 0, + 0, 0, 0, 0,133, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 2, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0, 4, 10, 0,240, 2,134, 1,223, 2,134, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 2, 0, 0, 26, 0, 0, 0,159, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 2,134, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 77, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,112, 0, 0, 0, 16,165, 38, 3, 1, 0, 0, 0, +177, 0, 0, 0, 1, 0, 0, 0,128,168, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 64, 47,152, 22, 1, 0, 0, 0,240, 17,151, 22, 1, 0, 0, 0, +240,184, 63, 25, 1, 0, 0, 0,240,184, 63, 25, 1, 0, 0, 0, 62, 62, 62, 32, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192,165, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,167, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,251, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, 0,224,189, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 26, 0,240, 5, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32,167, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,165, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0,224,189, 68, 0, 0, 0, 0, 0,128,192, 67, 0, 6,188, 63,254,176,189, 68, 0, 0, 0, 0, 0,128,192, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,122, 68, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 4, 10, 0,240, 5,130, 1,240, 5,130, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,130, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 2, 0, 0, +128,168, 38, 3, 1, 0, 0, 0,169, 0, 0, 0, 1, 0, 0, 0, 16,174, 38, 3, 1, 0, 0, 0, 16,165, 38, 3, 1, 0, 0, 0, +192,165, 38, 3, 1, 0, 0, 0, 32,167, 38, 3, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 80,171, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,172, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,190, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,189, 68, 0, 0,200, 65, + 0,224,189, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, + 26, 0,240, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,176,172, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,171, 38, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0, 0, 68, 0, 0, 32,193, 0, 0, 0, 68,134,137,182,195,195, 68, 91, 68, + 30,222,207, 66,116, 8,204, 67,223, 5, 0, 0,240, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,222, 5, 0, 0, 18, 0, 0, 0,129, 1, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,250, 70, 0, 0,250, 70,205,204, 76, 62, 72,225,154, 63, 10, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,240, 5, +130, 1,223, 5,112, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 26, 0, 0, 0,155, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240, 5,130, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 16,174, 38, 3, 1, 0, 0, 0,173, 0, 0, 0, 1, 0, 0, 0,144,179, 38, 3, 1, 0, 0, 0, +128,168, 38, 3, 1, 0, 0, 0, 80,171, 38, 3, 1, 0, 0, 0,176,172, 38, 3, 1, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 52, 81, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112,175, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,176, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0,190, 68, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0,224,189, 68, 0, 0,208, 65, 0,224,189, 68, 0, 0,208, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,240, 5, 27, 0,240, 5, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, + 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5, 27, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,176, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,178, 38, 3, 1, 0, 0, 0,112,175, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 48,178, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,176, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 18, 0, 0, 0,239, 5, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0,239, 5, 0, 0, 18, 0, 0, 0,162, 3, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, + 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,240, 5,163, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,239, 5, 0, 0, +112, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 5,163, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, +144,179, 38, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,208,190, 38, 3, 1, 0, 0, 0, 16,174, 38, 3, 1, 0, 0, 0, +112,175, 38, 3, 1, 0, 0, 0, 48,178, 38, 3, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,192,180, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,182, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, + 26, 0,232, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +232, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32,182, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,183, 38, 3, 1, 0, 0, 0, +192,180, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, +255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, + 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,153, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 24, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,128,183, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,184, 38, 3, 1, 0, 0, 0, + 32,182, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, + 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, +120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224,184, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 64,186, 38, 3, 1, 0, 0, 0, +128,183, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0, +122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 64,186, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224,184, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153, 2, 0, 0,128, 7, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +232, 4, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,187, 38, 3, 1, 0, 0, 0, + 68, 65, 84, 65,248, 2, 0, 0,160,187, 38, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63, +176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, + 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191, +222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63, +224,246, 70,188, 0,128, 32,182, 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, + 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191, +222,160, 81,191,184,158, 81,191,118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190, +237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,208,190, 38, 3, 1, 0, 0, 0, +157, 0, 0, 0, 1, 0, 0, 0,240,194, 38, 3, 1, 0, 0, 0,144,179, 38, 3, 1, 0, 0, 0,192,180, 38, 3, 1, 0, 0, 0, + 64,186, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,192, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +144,193, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,193, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,192, 38, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66, +112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,240,194, 38, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,190, 38, 3, 1, 0, 0, 0, 48,192, 38, 3, 1, 0, 0, 0,144,193, 38, 3, 1, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,240,195, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,161, 38, 3, 1, 0, 0, 0,208, 29, 38, 3, 1, 0, 0, 0,144, 27, 38, 3, 1, 0, 0, 0, + 48, 27, 38, 3, 1, 0, 0, 0, 48, 30, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,241, 5, 0, 0,128, 7, 0, 0, + 5, 3, 0, 0, 21, 4, 0, 0, 3, 3,144, 1, 17, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 15, 3, 1, 0, 0, 0, +144,199, 38, 3, 1, 0, 0, 0,144,217, 38, 3, 1, 0, 0, 0,208,196, 38, 3, 1, 0, 0, 0, 48,198, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,102,253, 24, 1, 0, 0, 0, 0, 90, 40, 3, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,208,196, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,198, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,163, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,200, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,149, 67, 0, 0,200, 65, + 0,128,149, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,144, 1, + 26, 0,144, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +241, 5, 0, 0,128, 7, 0, 0, 5, 3, 0, 0, 30, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 2, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48,198, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208,196, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,131, 67, 0, 0,228,194, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,191, 67, + 0, 0,101,195, 0, 0, 0, 0,127, 1, 0, 0,144, 1, 0, 0, 18, 0, 0, 0,246, 0, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,126, 1, 0, 0, 18, 0, 0, 0,246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 18, 0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 4, 6, 0,144, 1, +247, 0,127, 1,229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +241, 5, 0, 0,128, 7, 0, 0, 31, 3, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 1,247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 1, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,144,199, 38, 3, 1, 0, 0, 0,166, 0, 0, 0, 1, 0, 0, 0, 16,205, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240, 23, 22, 26, 1, 0, 0, 0,240, 23, 22, 26, 1, 0, 0, 0,240,200, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 68, 65, 84, 65, 16, 0, 0, 0,240,200, 38, 3, 1, 0, 0, 0,218, 0, 0, 0, 1, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 64,201, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,208, 0, 0, 0, 64,201, 38, 3, 1, 0, 0, 0,217, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, 21, 0, 1, 0, 1, 0, 1, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,200,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 96,246, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0,112,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,206,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 96,237, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,202, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,203, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,150, 67, 0, 0, 0, 0, 0, 0,248, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 1, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0,128,137, 67, 0, 0,200, 65, 0,128,137, 67, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 44, 1, 31, 0, 44, 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,117, 4, 0, 0,160, 5, 0, 0,218, 2, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 1, 31, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,203, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,202, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,141, 67, + 0, 0, 62,196, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,141, 67, 0, 0,246,194, 0, 0, 0, 0, 27, 1, 0, 0, 44, 1, 0, 0, + 18, 0, 0, 0,140, 0, 0, 0, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 26, 1, 0, 0, + 18, 0, 0, 0,140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0, 44, 1,141, 0, 27, 1,123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,117, 4, 0, 0,160, 5, 0, 0, 77, 2, 0, 0,217, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 1,141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0, 16,205, 38, 3, 1, 0, 0, 0, +162, 0, 0, 0, 1, 0, 0, 0,112,210, 38, 3, 1, 0, 0, 0,144,199, 38, 3, 1, 0, 0, 0, 80,202, 38, 3, 1, 0, 0, 0, +176,203, 38, 3, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,206, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176,207, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, 0, 0, 0, 0, 0, 0,216, 65, + 0, 0, 0, 0, 0, 0,242, 67, 0, 0, 0, 0, 0, 0,216, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0,128,241, 67, 0, 0,208, 65, 0,128,241, 67, 0, 0,208, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,228, 1, 27, 0,228, 1, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0, 85, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1, 27, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,207, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16,209, 38, 3, 1, 0, 0, 0, 80,206, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,209, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176,207, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 18, 0, 0, 0,227, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,227, 1, 0, 0, 18, 0, 0, 0,123, 1, 0, 0, + 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 8, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,157, 5, 0, 0,128, 7, 0, 0,112, 0, 0, 0,235, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,228, 1,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0,112,210, 38, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0, +144,217, 38, 3, 1, 0, 0, 0, 16,205, 38, 3, 1, 0, 0, 0, 80,206, 38, 3, 1, 0, 0, 0, 16,209, 38, 3, 1, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,211, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,213, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,138, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 20, 1, 26, 0, 20, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,213, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,211, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 6, 0, 0,108, 7, 0, 0, 26, 0, 0, 0, 80, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 1, 55, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,214, 38, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 96,214, 38, 3, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65,237,122,111, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,161, 14,106, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, + 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32,193, 0, 0,128, 63,103,212,136, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0, +184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,100, 32,222, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0,144,217, 38, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112,210, 38, 3, 1, 0, 0, 0,160,211, 38, 3, 1, 0, 0, 0, 0,213, 38, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, +159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, +112,219, 38, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, 96,129, 39, 3, 1, 0, 0, 0, 64, 24, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 82, 85, 86, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0, +160,224, 38, 3, 1, 0, 0, 0, 0,225, 38, 3, 1, 0, 0, 0,192,231, 38, 3, 1, 0, 0, 0, 32,232, 38, 3, 1, 0, 0, 0, + 64, 82, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224,220, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +224,220, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,160,221, 38, 3, 1, 0, 0, 0,224,220, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160,221, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0,222, 38, 3, 1, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0, +160,221, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 96,222, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 7, 80, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +128,223, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 4, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, + 32,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 4, 80, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +224,223, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,140, 4, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 6, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 6, 80, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 0,225, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96,225, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224,220, 38, 3, 1, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 96,225, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192,225, 38, 3, 1, 0, 0, 0, + 0,225, 38, 3, 1, 0, 0, 0,224,220, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,192,225, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32,226, 38, 3, 1, 0, 0, 0, + 96,225, 38, 3, 1, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 32,226, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128,226, 38, 3, 1, 0, 0, 0, +192,225, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,128,226, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224,226, 38, 3, 1, 0, 0, 0, + 32,226, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,224,226, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64,227, 38, 3, 1, 0, 0, 0, +128,226, 38, 3, 1, 0, 0, 0,160,221, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 64,227, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160,227, 38, 3, 1, 0, 0, 0, +224,226, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,160,227, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0,228, 38, 3, 1, 0, 0, 0, + 64,227, 38, 3, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 0,228, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96,228, 38, 3, 1, 0, 0, 0, +160,227, 38, 3, 1, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 96,228, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192,228, 38, 3, 1, 0, 0, 0, + 0,228, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,192,228, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 32,229, 38, 3, 1, 0, 0, 0, + 96,228, 38, 3, 1, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 32,229, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,128,229, 38, 3, 1, 0, 0, 0, +192,228, 38, 3, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,128,229, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,224,229, 38, 3, 1, 0, 0, 0, + 32,229, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,224,229, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 64,230, 38, 3, 1, 0, 0, 0, +128,229, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 64,230, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,160,230, 38, 3, 1, 0, 0, 0, +224,229, 38, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,160,230, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0,231, 38, 3, 1, 0, 0, 0, + 64,230, 38, 3, 1, 0, 0, 0,160,221, 38, 3, 1, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 0,231, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 96,231, 38, 3, 1, 0, 0, 0, +160,230, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0, 96,231, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0,192,231, 38, 3, 1, 0, 0, 0, + 0,231, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 0, 0, 0,192,231, 38, 3, 1, 0, 0, 0,192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96,231, 38, 3, 1, 0, 0, 0, 64,224, 38, 3, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0, 32,232, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,192,235, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0,224,220, 38, 3, 1, 0, 0, 0, 64,221, 38, 3, 1, 0, 0, 0, + 96,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, + 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0,240, 35, 15, 3, 1, 0, 0, 0,224,128, 39, 3, 1, 0, 0, 0, +224,128, 39, 3, 1, 0, 0, 0, 0,233, 38, 3, 1, 0, 0, 0, 96,234, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,250, 36, 3, 1, 0, 0, 0,112, 98,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 0,233, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 96,234, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96,234, 38, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,233, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0, +112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,129, 7, 7, 0,112, 7, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, +192,235, 38, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0,128, 29, 39, 3, 1, 0, 0, 0, 32,232, 38, 3, 1, 0, 0, 0, + 64,224, 38, 3, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0,160,221, 38, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 79, 1, 0, 0, 4, 4,116, 1, 80, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0, 16, 13, 39, 3, 1, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0, +160,236, 38, 3, 1, 0, 0, 0, 0,238, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +224, 92, 40, 3, 1, 0, 0, 0, 48,232,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,236, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0,238, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205, 67, + 0, 0, 0, 0, 0, 0,192, 65, 0, 0,144, 65, 0, 0,149, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 61, 68, 0, 0,184, 65, 0,192, 61, 68, 0, 0,184, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0, 24, 1, 26, 0, 24, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 6, 0, 0,128, 7, 0, 0, 79, 1, 0, 0, 79, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,238, 38, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,236, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,128,178, 67, + 0, 0, 12,196, 0, 0, 0, 0, 0, 0, 0, 0,182,145,178, 67, 47,245,159,195, 0, 0, 0, 0, 99, 1, 0, 0,116, 1, 0, 0, + 18, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 98, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 98, 1, 0, 0, + 18, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,116, 1, 80, 1, 99, 1, 62, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 31,148, 22, 1, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 13, 6, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 79, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,116, 1, 80, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96,239, 38, 3, 1, 0, 0, 0,128, 11, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96,239, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,240,240, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 34, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,101, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,240,240, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128,242, 38, 3, 1, 0, 0, 0, + 96,239, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82,101,110,100,101,114, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,135,255, 28, 1, 61, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128,242, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 16,244, 38, 3, 1, 0, 0, 0,240,240, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111,255, 28, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 16,244, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,160,245, 38, 3, 1, 0, 0, 0, +128,242, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,105,109,101,110,115,105,111, +110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,165,254, 28, 1,178, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,160,245, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 48,247, 38, 3, 1, 0, 0, 0, 16,244, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108,105, 97,115,105,110,103, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,254, 28, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 48,247, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192,248, 38, 3, 1, 0, 0, 0, +160,245, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,100,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,213,253, 28, 1,102, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192,248, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 80,250, 38, 3, 1, 0, 0, 0, 48,247, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,253, 28, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0, 80,250, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224,251, 38, 3, 1, 0, 0, 0, +192,248, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,101,114,102,111,114,109, 97, +110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60,253, 28, 1, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224,251, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,112,253, 38, 3, 1, 0, 0, 0, 80,250, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112,114,111, 99,101,115,115,105,110, +103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36,253, 28, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,112,253, 38, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0,255, 38, 3, 1, 0, 0, 0, +224,251, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, + 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,116, 97,109,112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,253, 28, 1, 0, 0, + 20, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0,255, 38, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,144, 0, 39, 3, 1, 0, 0, 0,112,253, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,109,101,115,104, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95,109,101,115,104, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,184,255, 89, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,144, 0, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 32, 2, 39, 3, 1, 0, 0, 0, + 0,255, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +110,111,114,109, 97,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +110,111,114,109, 97,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78,111,114,109, 97,108,115, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,102,255, 89, 1, 58, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 32, 2, 39, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,176, 3, 39, 3, 1, 0, 0, 0,144, 0, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,101,116,116,105,110,103,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,101,116,116,105,110,103,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,101,116,116,105,110,103,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42,255, 89, 1, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,176, 3, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 64, 5, 39, 3, 1, 0, 0, 0, + 32, 2, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +118,101,114,116,101,120, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +118,101,114,116,101,120, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,101,114,116,101,120, 32, 71, +114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,198,254, 89, 1, 76, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 5, 39, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,208, 6, 39, 3, 1, 0, 0, 0,176, 3, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,104, 97,112,101, 95,107,101,121,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,104, 97,112,101, 95,107,101,121,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,112,101, 32, 75,101,121,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181,254, 89, 1, 69, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,208, 6, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 96, 8, 39, 3, 1, 0, 0, 0, + 64, 5, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +117,118, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, +117,118, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 86, 32, 84,101,120,116,117, +114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,157,254, 89, 1, 69, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 96, 8, 39, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0,240, 9, 39, 3, 1, 0, 0, 0,208, 6, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95, 99,111,108,111,114,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95, 99,111,108,111,114,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86,101,114,116,101,120, 32, 67,111,108,111,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,254, 89, 1, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 88, 1, 0, 0,240, 9, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,128, 11, 39, 3, 1, 0, 0, 0, + 96, 8, 39, 3, 1, 0, 0, 0,240, 19,142, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, + 80, 84, 95, 99,111,110,116,101,120,116, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, + 80, 84, 95, 99,111,110,116,101,120,116, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,255,101, 1,204, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,128, 11, 39, 3, 1, 0, 0, 0, +193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 9, 39, 3, 1, 0, 0, 0, 32,158,243, 24, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95,105,110,102,108,117,101,110, 99,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 88, 84, 85, 82, 69, 95, 80, 84, 95,105,110,102,108,117,101,110, 99,101, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 73,110,102,108,117,101,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,212,253,101, 1, 36, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 0, 1, 0, 0, 16, 13, 39, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, 96, 24, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 6, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, + 48, 22, 22, 26, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 80, 14, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 15, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,211, 67, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,166, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,167, 1, 26, 0,167, 1, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 2, 0, 0, 51, 4, 0, 0, + 17, 1, 0, 0, 42, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 1, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176, 15, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16, 17, 39, 3, 1, 0, 0, 0, 80, 14, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 2, 0, 0,141, 2, 0, 0, + 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,189, 0, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 16, 17, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112, 18, 39, 3, 1, 0, 0, 0,176, 15, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 2, 0, 0, 51, 4, 0, 0, + 43, 1, 0, 0, 43, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112, 18, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208, 19, 39, 3, 1, 0, 0, 0, 16, 17, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 4, 0, 0, 51, 4, 0, 0, + 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208, 19, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 18, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 2, 0, 0, 51, 4, 0, 0, + 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 1,189, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 21, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 48, 21, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,169,170, 28, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, + 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0, +164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,177,157,229, 62, 53,194,123,191,222,160, 81,191,184,158, 81,191, +115, 90,127, 63, 63,179,242, 62, 9, 46,185, 62, 35, 44,185, 62,143,180,109,188, 65, 57, 12, 64,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 56,117, 85, 63,240,246, 70,188, 0,224, 32,182, + 42, 13, 40,190, 78, 1,162, 61,203, 52,187, 62, 0, 0,149, 52,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, + 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,177,157,229, 62, 53,194,123,191,222,160, 81,191,184,158, 81,191, +115, 90,127, 63, 63,179,242, 62, 9, 46,185, 62, 35, 44,185, 62,143,180,109,188, 65, 57, 12, 64,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,208,166,141, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96, 24, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +128, 28, 39, 3, 1, 0, 0, 0, 16, 13, 39, 3, 1, 0, 0, 0, 80, 14, 39, 3, 1, 0, 0, 0,208, 19, 39, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,192, 25, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32, 27, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32, 27, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192, 25, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,128, 28, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96, 24, 39, 3, 1, 0, 0, 0,192, 25, 39, 3, 1, 0, 0, 0, 32, 27, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0,128, 29, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 32, 52, 39, 3, 1, 0, 0, 0, +192,235, 38, 3, 1, 0, 0, 0,128,220, 38, 3, 1, 0, 0, 0, 0,222, 38, 3, 1, 0, 0, 0, 32,223, 38, 3, 1, 0, 0, 0, +224,223, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,139, 4, 0, 0, 0, 0, 0, 0, 21, 4, 0, 0, + 6, 6,140, 4, 22, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 22, 15, 3, 1, 0, 0, 0, 16, 36, 39, 3, 1, 0, 0, 0, + 32, 51, 39, 3, 1, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0,176, 34, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,240,118, 37, 3, 1, 0, 0, 0,224,129, 36, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96, 30, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192, 31, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,202, 67, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,145, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,139, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,140, 4, 26, 0,140, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,139, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 28, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192, 31, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176, 34, 39, 3, 1, 0, 0, 0, 96, 30, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 75, 67, 0,128,122,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, 1,128,122,196, 0, 0, 0, 0, +203, 0, 0, 0,220, 0, 0, 0, 18, 0, 0, 0,251, 3, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,202, 0, 0, 0, 18, 0, 0, 0,251, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,220, 0,252, 3,203, 0,234, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,219, 0, 0, 0, + 26, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220, 0,252, 3, 0, 0, 4, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 24, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 33, 39, 3, 1, 0, 0, 0, 32, 33, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32, 33, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 27, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 77, 65, 71, 69, 95, 80, 84, 95,103,112,101,110, 99,105,108, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,196,255,203, 0, 36, 0, 0, 0, 0, 0, 0, 0, 39, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 34, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 31, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, 0, 0, 0, 0, 0, 0,128, 67, +154,153,121,191,205,204,252, 63, 0, 0,140,191, 0, 0, 6, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 3, 0, 0, 0, 0, 0, 0,252, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,220, 0, 0, 0,139, 4, 0, 0, 26, 0, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 3,252, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 23, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 16, 36, 39, 3, 1, 0, 0, 0,167, 0, 0, 0, 1, 0, 0, 0, + 0, 47, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240, 36, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 80, 38, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80, 38, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +176, 39, 39, 3, 1, 0, 0, 0,240, 36, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176, 39, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 16, 41, 39, 3, 1, 0, 0, 0, 80, 38, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16, 41, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +112, 42, 39, 3, 1, 0, 0, 0,176, 39, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112, 42, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 41, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208, 43, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208, 43, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, +226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, 99,126, 81, 63, 0,128,163, 53, +215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, 9, 46,185, 62, 35, 44,185, 62, +232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, +172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, + 0, 47, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32, 51, 39, 3, 1, 0, 0, 0, 16, 36, 39, 3, 1, 0, 0, 0, +240, 36, 39, 3, 1, 0, 0, 0,112, 42, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 48, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192, 49, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192, 49, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 48, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, 32, 51, 39, 3, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 39, 3, 1, 0, 0, 0, 96, 48, 39, 3, 1, 0, 0, 0, +192, 49, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 32, 52, 39, 3, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 64, 82, 39, 3, 1, 0, 0, 0,128, 29, 39, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0, + 32,223, 38, 3, 1, 0, 0, 0, 96,222, 38, 3, 1, 0, 0, 0,192,222, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +141, 4, 0, 0,128, 7, 0, 0, 81, 1, 0, 0, 21, 4, 0, 0, 1, 1,244, 2,197, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 5, 15, 3, 1, 0, 0, 0, 32, 77, 39, 3, 1, 0, 0, 0, 64, 81, 39, 3, 1, 0, 0, 0, 0, 53, 39, 3, 1, 0, 0, 0, +144, 72, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 11,251, 24, 1, 0, 0, 0, +192,179,251, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0, 53, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 96, 54, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 61, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,243, 2, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,244, 2, 26, 0,244, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0,128, 7, 0, 0, 81, 1, 0, 0,106, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,244, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176, 13, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96, 54, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +224, 58, 39, 3, 1, 0, 0, 0, 0, 53, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0,141, 4, 0, 0,107, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,171, 2, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 16, 10, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 55, 39, 3, 1, 0, 0, 0, + 80, 57, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 55, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80, 57, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108, 95,115,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,111,111,108, 32, 83,104,101,108,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,196,255,143, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80, 57, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 55, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95, +111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,111,111,108,115, 95, +111, 98,106,101, 99,116,109,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 98,106,101, 99,116, 32, 84,111,111,108,115, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,223,253,143, 0,205, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224, 58, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +208, 61, 39, 3, 1, 0, 0, 0, 96, 54, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0,128, 7, 0, 0,107, 1, 0, 0,107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +224, 11, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 60, 39, 3, 1, 0, 0, 0, + 64, 60, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 64, 60, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,108, 97,115,116, 95,111,112,101,114, 97,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 78,101,119, 32, 83, 99,114,101,101,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,216,255,144, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208, 61, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144, 72, 39, 3, 1, 0, 0, 0,224, 58, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,192, 77,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,235,195, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,232, 1, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,232, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,233, 1,163, 0,215, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0, +107, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 80, 7, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 63, 39, 3, 1, 0, 0, 0, 0, 71, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 48, 63, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,192, 64, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,111, 98,106,101, 99,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84,114, 97,110,115,102,111,114,109, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,254,163, 0,104, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,192, 64, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 80, 66, 39, 3, 1, 0, 0, 0, 48, 63, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,103,112,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71,114,101, 97,115,101, 32, 80,101,110, 99,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,171,252,163, 0, 58, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 80, 66, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,224, 67, 39, 3, 1, 0, 0, 0,192, 64, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, + 95,112,114,111,112,101,114,116,105,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,105,101,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45,253,163, 0, 59, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,224, 67, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +112, 69, 39, 3, 1, 0, 0, 0, 80, 66, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 51,100,118,105,101,119, 95,100,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,115,112,108, 97,121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 18,252,163, 0, 3, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +112, 69, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 71, 39, 3, 1, 0, 0, 0,224, 67, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 73, 69, 87, 51, 68, 95, 80, 84, 95, 98, 97, 99,107,103,114, +111,117,110,100, 95,105,109, 97,103,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 97, 99,107,103,114,111,117,110,100, 32, 73,109, 97,103,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,253,252,163, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 0, 71, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112, 69, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86, 73, 69, 87, 51, 68, 95, 80, 84, 95,116,114, 97,110,115,102,111,114,109, 95,111,114,105,101,110,116, 97,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84,114, 97,110,115,102,111,114,109, 32, 79,114,105,101,110,116, 97,116,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,205,252,163, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +144, 72, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 61, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0,128, 7, 0, 0, +107, 1, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,244, 2,171, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 6, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 73, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, +240, 73, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160,246,154, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 95,192, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,160, 84, 89,188, 0, 0, 0, 0, + 52,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0, +188,173, 54, 64,136, 95,161,191,147,231,198, 63, 0, 0,128, 63,178,157,229, 62,131, 5,249,190,222,160, 81,191,184,158, 81,191, +117, 90,127, 63,195, 15,112, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,251,178,138, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0,154,211, 93, 64, 0, 25, 95, 64, 52,240,191, 62,121,116, 85, 63,112,188, 70,188, 0, 0,180,181, +162,230,169,190,175,201, 35, 62,102, 67, 61, 63, 0, 0, 90, 53, 37,182, 14,195,119, 34,124, 66, 49, 99,155,194,199,253, 71,194, +254,229, 13, 67,182,178,122,194,141,128,154, 66,213,255, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 95,192, 0, 0,128, 63,178,157,229, 62,131, 5,249,190,222,160, 81,191,184,158, 81,191, +117, 90,127, 63,195, 15,112, 62, 9, 46,185, 62, 35, 44,185, 62,145,180,109,188,251,178,138, 63,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0,154,211, 93, 64, 0, 25, 95, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, + 0, 25, 95, 64,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,208,131, 30, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 32, 77, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, + 64, 81, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,128, 78, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224, 79, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224, 79, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128, 78, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0, 64, 81, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 77, 39, 3, 1, 0, 0, 0,128, 78, 39, 3, 1, 0, 0, 0,224, 79, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 68, 65, 84, 65,160, 0, 0, 0, 64, 82, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 52, 39, 3, 1, 0, 0, 0,224,223, 38, 3, 1, 0, 0, 0,128,223, 38, 3, 1, 0, 0, 0,160,224, 38, 3, 1, 0, 0, 0, + 64,224, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0, 11, 6, 0, 0, 0, 0, 0, 0, 79, 1, 0, 0, + 4, 4,127, 1, 80, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 32, 15, 3, 1, 0, 0, 0,112,112, 39, 3, 1, 0, 0, 0, +224,127, 39, 3, 1, 0, 0, 0, 32, 83, 39, 3, 1, 0, 0, 0,128, 84, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16,198,254, 24, 1, 0, 0, 0, 96, 80, 42, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 32, 83, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128, 84, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,205, 67, 0, 0, 0, 0, 0, 0,192, 65, 0, 0, 0, 0, 0,128,133, 67, 0, 0, 0, 0, 0, 0,192, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0,192, 61, 68, 0, 0,184, 65, 0,192, 61, 68, 0, 0,184, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0, 11, 1, 24, 0, 11, 1, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,141, 4, 0, 0, 11, 6, 0, 0, + 79, 1, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 35, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +128, 84, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 83, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0,184, 67, 0, 0,179,195, 0, 0, 0, 0, 0, 0, 0, 0, 91, 26,184, 67, 83,245,159,195, 0, 0, 0, 0, +110, 1, 0, 0,127, 1, 0, 0, 18, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0,109, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,109, 1, 0, 0, 18, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,127, 1, 80, 1,110, 1, 62, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192, 53, 20, 26, 1, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0,141, 4, 0, 0, 11, 6, 0, 0, + 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,127, 1, 80, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 33, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,224, 85, 39, 3, 1, 0, 0, 0,224,110, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224, 85, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,112, 87, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 32, 34, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, +120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 83, 95, 80, 84, 95, 99,111,110,116,101, +120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67,111,110,116,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,220,255,112, 1, 36, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,112, 87, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 0, 89, 39, 3, 1, 0, 0, 0,224, 85, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,114,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82,101,110,100,101,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84, 1,171,255, 84, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 0, 89, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,112, 87, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,108, 97,121,101,114,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 97,121,101,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,232,255, 84, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,144, 90, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 32, 92, 39, 3, 1, 0, 0, 0, 0, 89, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,100,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,105,109,101,110,115,105,111,110,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +188, 2, 54,255, 84, 1,178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 32, 92, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,176, 93, 39, 3, 1, 0, 0, 0,144, 90, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108, +105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95, 97,110,116,105, 97,108, +105, 97,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,110,116,105, 45, 65,108,105, 97,115,105,110,103, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 4,174,255, 84, 1, 58, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,176, 93, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 64, 95, 39, 3, 1, 0, 0, 0, 32, 92, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,104, 97,100,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +100, 5,130,255, 84, 1,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 64, 95, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,208, 96, 39, 3, 1, 0, 0, 0,176, 93, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,111,117,116,112,117,116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79,117,116,112,117,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,184, 6,127,255, 84, 1,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,208, 96, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, + 96, 98, 39, 3, 1, 0, 0, 0, 64, 95, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,101,114,102,111,114,109, 97,110, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 8,232,255, 84, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, + 96, 98, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0,240, 99, 39, 3, 1, 0, 0, 0,208, 96, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112, +114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,112,111,115,116, 95,112, +114,111, 99,101,115,115,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,111,115,116, 32, 80,114,111, 99,101,115,115,105,110,103, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8,232,255, 84, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0,240, 99, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +128,101, 39, 3, 1, 0, 0, 0, 96, 98, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 82, 69, 78, 68, 69, 82, 95, 80, 84, 95,115,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83,116, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 52, 8,232,255, 84, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +128,101, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 16,103, 39, 3, 1, 0, 0, 0,240, 99, 39, 3, 1, 0, 0, 0, + 0,218,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95, +109,101,115,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95, 99,111,110,116,101,120,116, 95, +109,101,115,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,184,255,112, 1, 36, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 16,103, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +160,104, 39, 3, 1, 0, 0, 0,128,101, 39, 3, 1, 0, 0, 0,224,222,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,110,111,114,109, 97,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,110,111,114,109, 97,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 78,111,114,109, 97,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,172,254,112, 1, 58, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +160,104, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 48,106, 39, 3, 1, 0, 0, 0, 16,103, 39, 3, 1, 0, 0, 0, +192,227,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,101,116,116,105,110,103,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,101,116,116,105,110,103,115, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,101,116,116,105,110,103,115, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,170,254,112, 1, 36, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 48,106, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +192,107, 39, 3, 1, 0, 0, 0,160,104, 39, 3, 1, 0, 0, 0,160,232,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95,103,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 86,101,114,116,101,120, 32, 71,114,111,117,112,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,106,254,112, 1, 76, 0, 0, 0, 0, 0, 4, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +192,107, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 80,109, 39, 3, 1, 0, 0, 0, 48,106, 39, 3, 1, 0, 0, 0, +128,237,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,104, 97,112,101, 95,107,101, +121,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,115,104, 97,112,101, 95,107,101, +121,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83,104, 97,112,101, 32, 75,101,121,115, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89,254,112, 1, 69, 0, 0, 0, 0, 0, 4, 0, 6, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, 80,109, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, +224,110, 39, 3, 1, 0, 0, 0,192,107, 39, 3, 1, 0, 0, 0, 96,242,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,117,118, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 95, 80, 84, 95,117,118, 95,116,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 85, 86, 32, 84,101,120,116,117,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 91,255,112, 1, 69, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 1, 0, 0, +224,110, 39, 3, 1, 0, 0, 0,193, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,109, 39, 3, 1, 0, 0, 0, +192,247,240, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95, 99, +111,108,111,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 95, 80, 84, 95,118,101,114,116,101,120, 95, 99, +111,108,111,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86,101,114,116,101,120, 32, 67,111,108,111,114,115, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254,254,112, 1, 69, 0, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 1, 0, 0,112,112, 39, 3, 1, 0, 0, 0,162, 0, 0, 0, 1, 0, 0, 0, +192,123, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, + 2, 0, 1, 0, 0, 0, 0, 0, 64,148, 21, 26, 1, 0, 0, 0,255, 21, 0, 0,160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,176,113, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,115, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0,128,211, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,166, 1, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,167, 1, + 26, 0,167, 1, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +141, 2, 0, 0, 51, 4, 0, 0, 17, 1, 0, 0, 42, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 1, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 16,115, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,116, 39, 3, 1, 0, 0, 0, +176,113, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, +255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, + 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +141, 2, 0, 0,141, 2, 0, 0, 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0,189, 0, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,112,116, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,117, 39, 3, 1, 0, 0, 0, + 16,115, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, + 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0, +120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +141, 2, 0, 0, 51, 4, 0, 0, 43, 1, 0, 0, 43, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,208,117, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 48,119, 39, 3, 1, 0, 0, 0, +112,116, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0, +122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 51, 4, 0, 0, 51, 4, 0, 0, 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48,119, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +208,117, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +141, 2, 0, 0, 51, 4, 0, 0, 43, 1, 0, 0,231, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +167, 1,189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,120, 39, 3, 1, 0, 0, 0, + 68, 65, 84, 65,248, 2, 0, 0,144,120, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0,255,255,139, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,169,170, 28, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63, +176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, + 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,177,157,229, 62, 53,194,123,191, +222,160, 81,191,184,158, 81,191,115, 90,127, 63, 63,179,242, 62, 9, 46,185, 62, 35, 44,185, 62,143,180,109,188, 65, 57, 12, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 56,117, 85, 63, +240,246, 70,188, 0,224, 32,182, 42, 13, 40,190, 78, 1,162, 61,203, 52,187, 62, 0, 0,149, 52,215,104, 25,196,134,132,135, 67, + 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190, +184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, + 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,177,157,229, 62, 53,194,123,191, +222,160, 81,191,184,158, 81,191,115, 90,127, 63, 63,179,242, 62, 9, 46,185, 62, 35, 44,185, 62,143,180,109,188, 65, 57, 12, 64, +129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190, +237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,208,166,141, 59, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,192,123, 39, 3, 1, 0, 0, 0, +157, 0, 0, 0, 1, 0, 0, 0,224,127, 39, 3, 1, 0, 0, 0,112,112, 39, 3, 1, 0, 0, 0,176,113, 39, 3, 1, 0, 0, 0, + 48,119, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 32,125, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +128,126, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,126, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32,125, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66, +112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,224,127, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,192,123, 39, 3, 1, 0, 0, 0, 32,125, 39, 3, 1, 0, 0, 0,128,126, 39, 3, 1, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 6, 0, 0, 0, 83, 78, 0, 0,208, 0, 0, 0, 96,129, 39, 3, 1, 0, 0, 0,190, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,219, 38, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 83, 82, 86,105,100,101,111, 32, 69,100,105,116,105,110,103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0,144,134, 39, 3, 1, 0, 0, 0,240,134, 39, 3, 1, 0, 0, 0, + 80,141, 39, 3, 1, 0, 0, 0,176,141, 39, 3, 1, 0, 0, 0, 32,212, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,155,180, 21, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208,130, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,130, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 48,131, 39, 3, 1, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 48,131, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,131, 39, 3, 1, 0, 0, 0, +208,130, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 49, 4, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +144,131, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, 48,131, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0,144,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, +176,132, 39, 3, 1, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 22, 4, 1, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0, + 80,132, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7,240, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 16,133, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0, +191, 0, 0, 0, 1, 0, 0, 0,208,133, 39, 3, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 3, 22, 4, 1, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0,208,133, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, + 48,134, 39, 3, 1, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 1, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 0, 0, 0, 48,134, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0,144,134, 39, 3, 1, 0, 0, 0, +208,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 3,240, 1, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, +144,134, 39, 3, 1, 0, 0, 0,191, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,134, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 88, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,134, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 80,135, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208,130, 39, 3, 1, 0, 0, 0, + 48,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,135, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,176,135, 39, 3, 1, 0, 0, 0,240,134, 39, 3, 1, 0, 0, 0,208,130, 39, 3, 1, 0, 0, 0, +240,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,135, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 16,136, 39, 3, 1, 0, 0, 0, 80,135, 39, 3, 1, 0, 0, 0, 48,131, 39, 3, 1, 0, 0, 0, + 80,132, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,136, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,112,136, 39, 3, 1, 0, 0, 0,176,135, 39, 3, 1, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, + 80,132, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,136, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,208,136, 39, 3, 1, 0, 0, 0, 16,136, 39, 3, 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0, +176,132, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,136, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 48,137, 39, 3, 1, 0, 0, 0,112,136, 39, 3, 1, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0, + 16,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,137, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,144,137, 39, 3, 1, 0, 0, 0,208,136, 39, 3, 1, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, +112,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,137, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,240,137, 39, 3, 1, 0, 0, 0, 48,137, 39, 3, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0, +208,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,137, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 80,138, 39, 3, 1, 0, 0, 0,144,137, 39, 3, 1, 0, 0, 0,208,133, 39, 3, 1, 0, 0, 0, + 48,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,138, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,176,138, 39, 3, 1, 0, 0, 0,240,137, 39, 3, 1, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0, + 48,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,176,138, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 16,139, 39, 3, 1, 0, 0, 0, 80,138, 39, 3, 1, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0, +144,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,139, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,112,139, 39, 3, 1, 0, 0, 0,176,138, 39, 3, 1, 0, 0, 0,144,131, 39, 3, 1, 0, 0, 0, +144,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,112,139, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,208,139, 39, 3, 1, 0, 0, 0, 16,139, 39, 3, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0, +144,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,208,139, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 48,140, 39, 3, 1, 0, 0, 0,112,139, 39, 3, 1, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0, +144,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 48,140, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,144,140, 39, 3, 1, 0, 0, 0,208,139, 39, 3, 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0, +112,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,144,140, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0,240,140, 39, 3, 1, 0, 0, 0, 48,140, 39, 3, 1, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0, + 48,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,240,140, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 80,141, 39, 3, 1, 0, 0, 0,144,140, 39, 3, 1, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, +208,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 80,141, 39, 3, 1, 0, 0, 0, +192, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,140, 39, 3, 1, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0, +208,133, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,176,141, 39, 3, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 80,145, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,131, 39, 3, 1, 0, 0, 0, +208,130, 39, 3, 1, 0, 0, 0, 48,131, 39, 3, 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 49, 4, 0, 0, 7, 7,129, 7, 27, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, +240, 35, 15, 3, 1, 0, 0, 0,128,233, 39, 3, 1, 0, 0, 0,128,233, 39, 3, 1, 0, 0, 0,144,142, 39, 3, 1, 0, 0, 0, +240,143, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,182,250, 24, 1, 0, 0, 0, +176, 57,113, 29, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,142, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,143, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,161, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 32,240, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,129, 7, 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 23, 4, 0, 0, 48, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +176, 37, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,143, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,142, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0,240,109, 69, 0, 0,128,192, 0, 0, 0, 0, + 0, 0, 0, 0,255,255,109, 69, 0, 0, 0,192, 0, 0, 0, 0,112, 7, 0, 0,129, 7, 0, 0, 18, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0,111, 7, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,111, 7, 0, 0, 18, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,129, 7, 7, 0,112, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 4, 0, 0, 49, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, +208, 36, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 80,145, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, + 64,157, 39, 3, 1, 0, 0, 0,176,141, 39, 3, 1, 0, 0, 0,112,130, 39, 3, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0, +144,134, 39, 3, 1, 0, 0, 0,144,131, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 87, 0, 0, 0, 15, 15,129, 7, 88, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,240, 2, 15, 3, 1, 0, 0, 0, +240,148, 39, 3, 1, 0, 0, 0,224,155, 39, 3, 1, 0, 0, 0, 48,146, 39, 3, 1, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192,226,250, 24, 1, 0, 0, 0, 32,181,250, 24, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 48,146, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,144,147, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, + 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 4, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,144,147, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,146, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 18, 0, 0, 0, 61, 0, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,129, 7, + 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 26, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +129, 7, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 3, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,240,148, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0,224,155, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,240,149, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 80,151, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,203, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, + 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0, 88, 6, + 26, 0, 88, 6, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87, 6, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 88, 6, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 80,151, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +240,149, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 87, 6, 0, 0, 26, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 88, 6, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,152, 39, 3, 1, 0, 0, 0, + 68, 65, 84, 65,248, 2, 0, 0,176,152, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190, -227,251,159, 62, 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64, -151, 62,208,192, 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, - 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, - 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65,161, 14,106, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224, 91,138, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +209,252,249,195,115,253, 71,194, 0, 0, 0, 0, 0, 0, 0, 0, 98,127,249, 67,129,255, 71, 66, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,128, 63, 0, 0,140, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,213,108, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 1,128,191, 0, 0,128,191, 0, 0, 0, 0, 0, 0, 0, 0,184,175, 31, 65, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 96, 65, 29, 25, 1, 0, 0, 0,208, 72, 29, 25, 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0,192,188, 32, 3, 1, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0,224,195, 32, 3, 1, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,152, 4, 0, 0, 48, 4,139, 3, 1, 0, 0, 0,119, 0, 0, 0, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,254,138, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52,149,147, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,208,145, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0,224,155, 39, 3, 1, 0, 0, 0, +157, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,148, 39, 3, 1, 0, 0, 0,240,149, 39, 3, 1, 0, 0, 0, + 80,151, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, + 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0,159, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, 64,157, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, +160,178, 39, 3, 1, 0, 0, 0, 80,145, 39, 3, 1, 0, 0, 0, 16,133, 39, 3, 1, 0, 0, 0,208,133, 39, 3, 1, 0, 0, 0, +176,132, 39, 3, 1, 0, 0, 0,144,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, + 89, 0, 0, 0,239, 1, 0, 0, 8, 8,129, 7,151, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,208, 69, 15, 3, 1, 0, 0, 0, + 64,162, 39, 3, 1, 0, 0, 0,160,177, 39, 3, 1, 0, 0, 0, 32,158, 39, 3, 1, 0, 0, 0,224,160, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 90,251, 24, 1, 0, 0, 0,160,161,253, 24, 1, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32,158, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,128,159, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,192, 31, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 32,240, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 96,191, 68, 0, 0,200, 65, + 0, 96,191, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,129, 7, + 26, 0,129, 7, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,128, 7, 0, 0, 89, 0, 0, 0,114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +129, 7, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112, 72, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,128,159, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,224,160, 39, 3, 1, 0, 0, 0, + 32,158, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, 0,128,181,195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 67, + 0,128,181,195, 0, 0, 0, 0,203, 0, 0, 0,220, 0, 0, 0, 18, 0, 0, 0,124, 1, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,202, 0, 0, 0, 18, 0, 0, 0,124, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,220, 0, +125, 1,203, 0,107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +165, 6, 0, 0,128, 7, 0, 0,115, 0, 0, 0,239, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +220, 0,125, 1, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 71, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,224,160, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +128,159, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,124, 1, 0, 0, 18, 0, 0, 0,164, 6, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,164, 6, 0, 0, 18, 0, 0, 0,124, 1, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, + 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66,105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0,165, 6, +125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,164, 6, 0, 0,115, 0, 0, 0,239, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +165, 6,125, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 70, 15, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,240, 0, 0, 0, 64,162, 39, 3, 1, 0, 0, 0,163, 0, 0, 0, 1, 0, 0, 0,128,173, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,163, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +208,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0,128,191, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0,252, 5, 26, 0,252, 5, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,252, 5, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,208,164, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 48,166, 39, 3, 1, 0, 0, 0,112,163, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,113, 1, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 48,166, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +144,167, 39, 3, 1, 0, 0, 0,208,164, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, + 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0,111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,167, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +240,168, 39, 3, 1, 0, 0, 0, 48,166, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, + 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,251, 5, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,168, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,144,167, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,251, 5, 0, 0,111, 0, 0, 0,223, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,252, 5,113, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80,170, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, 80,170, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, + 0, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 79,145, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, + 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0, +185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63, +178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62, +145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, +112,240,191, 62,108,116, 85, 63, 80,184, 70,188, 0, 0, 46,180,159, 49,181,189,125,172, 46, 61, 7,213, 73, 62, 0, 64,143,180, +182,107, 25,196, 13,135,135, 67, 70, 12,167,195, 71, 0, 72,194,225, 56, 25, 68, 38, 90,135,195,237,212,166, 67, 84, 2, 72, 66, + 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0, +162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, +178,157,229, 62,241,130,233,191,222,160, 81,191,184,158, 81,191,117, 90,127, 63, 14, 28, 97, 63, 9, 46,185, 62, 35, 44,185, 62, +145,180,109,188,119, 15,130, 64,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 13,114,156, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, +128,173, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0,160,177, 39, 3, 1, 0, 0, 0, 64,162, 39, 3, 1, 0, 0, 0, +112,163, 39, 3, 1, 0, 0, 0,240,168, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, + 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,174, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 64,176, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,176, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,174, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, + 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, + 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0,160,177, 39, 3, 1, 0, 0, 0, +172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,173, 39, 3, 1, 0, 0, 0,224,174, 39, 3, 1, 0, 0, 0, + 64,176, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0,160,178, 39, 3, 1, 0, 0, 0, +194, 0, 0, 0, 1, 0, 0, 0, 32,212, 39, 3, 1, 0, 0, 0, 64,157, 39, 3, 1, 0, 0, 0,208,133, 39, 3, 1, 0, 0, 0, +240,131, 39, 3, 1, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0, 48,134, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 3, 0, 0,241, 1, 0, 0, 21, 4, 0, 0, 2, 2, 80, 3, 37, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, +144, 14, 15, 3, 1, 0, 0, 0, 0,185, 39, 3, 1, 0, 0, 0, 32,211, 39, 3, 1, 0, 0, 0,128,179, 39, 3, 1, 0, 0, 0, +160,183, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,162,253, 24, 1, 0, 0, 0, +160,247,254, 24, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,128,179, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +224,180, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 78, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 84, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 3, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, + 4, 0, 12, 4, 10, 0, 80, 3, 26, 0, 80, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 3, 0, 0,241, 1, 0, 0, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 80, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 80, 16, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,224,180, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 64,182, 39, 3, 1, 0, 0, 0,128,179, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 67, 0, 0,112,193, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 72, 67, 0,128,252,195, 0, 0, 0, 0,200, 0, 0, 0,217, 0, 0, 0, 18, 0, 0, 0, 10, 2, 0, 0, + 0, 0, 0, 0,199, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,199, 0, 0, 0, 18, 0, 0, 0, 10, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 10, 0, 0, 0, 2, 0, 3, 3, + 0, 0, 0, 4, 6, 0,217, 0, 11, 2,200, 0,249, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,216, 0, 0, 0, 11, 2, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 11, 2, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48, 17, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 64,182, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, +160,183, 39, 3, 1, 0, 0, 0,224,180, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79, 3, 0, 0, 79, 3, 0, 0, 11, 2, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 16, 18, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,160,183, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64,182, 39, 3, 1, 0, 0, 0, 0, 0, 16,193, 0, 0,130, 67, 0, 0,160,192, 0, 0,160, 64, + 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 16,193, 0, 0, 32, 65, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 10, 2, 0, 0, + 18, 0, 0, 0,118, 2, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0,118, 2, 0, 0, 18, 0, 0, 0, 10, 2, 0, 0, +111, 18,131, 58,111, 18,131, 58, 0,124,146, 72, 0, 80, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0,105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0,119, 2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,217, 0, 0, 0, 79, 3, 0, 0, 11, 2, 0, 0, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,119, 2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +112, 15, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,248, 0, 0, 0, 0,185, 39, 3, 1, 0, 0, 0,161, 0, 0, 0, 1, 0, 0, 0, +176,190, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,186, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 0, 0, 0, + 48,186, 39, 3, 1, 0, 0, 0, 20, 1, 0, 0, 1, 0, 0, 0, 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,144,186, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,240,187, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 38, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192,103, 68, 0, 0,200, 65, 0,192,103, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 2, 26, 0,152, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 2, 0, 0,225, 1, 0, 0,250, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,187, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,189, 39, 3, 1, 0, 0, 0,144,186, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 67, + 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 67, 0,128, 4,196, 0, 0, 64,193, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 8, 0, 0, 0, 2, 0, 3, 3, 0, 0, 2, 4, 6, 0,181, 0, 24, 2,181, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,180, 0, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 24, 2, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,189, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,187, 39, 3, 1, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, + 0, 0, 0,194, 0, 0, 0, 0, 0, 0, 32,193, 0, 0,104, 68, 0,128, 4,196, 0, 0, 64,193,210, 1, 0, 0,227, 1, 0, 0, + 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,209, 1, 0, 0, + 18, 0, 0, 0, 23, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,124,146, 72, 0, 64, 28, 70, 10,215, 35, 60, 0, 0, 72, 66, + 74, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 4, 4, 0,227, 1, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,181, 0, 0, 0,151, 2, 0, 0,251, 1, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,227, 1, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 1, 0, 0,176,190, 39, 3, 1, 0, 0, 0, + 21, 1, 0, 0, 1, 0, 0, 0, 16,196, 39, 3, 1, 0, 0, 0, 0,185, 39, 3, 1, 0, 0, 0,144,186, 39, 3, 1, 0, 0, 0, + 80,189, 39, 3, 1, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 48,186,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,191, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,193, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,202, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,104, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,192, 41, 68, 0, 0,200, 65, 0,192, 41, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,160, 3, 26, 0,160, 3, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,193, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,194, 39, 3, 1, 0, 0, 0,240,191, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, + 0,128,100,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 67, 0,128,100,196, 0, 0, 0, 0,172, 0, 0, 0,189, 0, 0, 0, + 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,171, 0, 0, 0, + 18, 0, 0, 0,163, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,189, 0,164, 3,172, 0,146, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,194, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,193, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 67, + 0, 0, 0, 0, 0, 0,128, 67, 0, 0,168,191, 0, 0, 20, 64, 0, 0,169,191, 0,128, 20, 64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3, 0, 0, + 0, 0, 0, 0,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,159, 3, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 3,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,168, 0, 0, 0, 16,196, 39, 3, 1, 0, 0, 0, +167, 0, 0, 0, 1, 0, 0, 0, 0,207, 39, 3, 1, 0, 0, 0,176,190, 39, 3, 1, 0, 0, 0,240,191, 39, 3, 1, 0, 0, 0, +176,194, 39, 3, 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,240,196, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 80,198, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 42, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,168, 2, 26, 0,168, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0, 85, 0, 0, 0,110, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 80,198, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,176,199, 39, 3, 1, 0, 0, 0,240,196, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67, + 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,164, 3, 0, 0, 5, 0, 3, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,176,199, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 16,201, 39, 3, 1, 0, 0, 0, 80,198, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 67, + 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0,143, 0, 0, 0,160, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, + 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0,111, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, 34, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 16,201, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,112,202, 39, 3, 1, 0, 0, 0,176,199, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, + 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0,163, 0, 0, 0,180, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, + 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,112,202, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,201, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,167, 2, 0, 0,111, 0, 0, 0, 18, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,168, 2,164, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,203, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0,208,203, 39, 3, 1, 0, 0, 0, +156, 0, 0, 0, 1, 0, 0, 0,226,225,191, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,140, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, 0, 0, 0,128, 0, 0, 0,128, +226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, 53,177,205,190,142, 74, 70, 62, +166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0,164, 96, 68, 65,111,121,173,192, +248,209,213, 64, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, + 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65,250, 8,140, 62,174,189, 27, 63,224, 25, 17,188, 0, 64,153,181,195, 13,188,190,191, 73, 53, 62, + 99,126, 81, 63, 0,128,163, 53,215,104, 25,196,134,132,135, 67, 37, 9,167,195,136,252, 71,194, 3, 54, 25, 68,159, 87,135,195, +205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, 70,119,105, 63,143, 74, 70, 62, + 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +214,211,111,193, 0, 0,128, 63,192, 90, 29, 63,208,249,224,190,222,160, 81,191,184,158, 81,191,253,253,174, 63,140,225, 88, 62, + 9, 46,185, 62, 35, 44,185, 62,232,229,162,188,206,156,122, 63,129, 63,228,190, 42, 61,228,190, 0, 0, 0, 0, 0, 0, 0, 0, + 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190,214,211,111, 65,214,211,111, 65, + 0, 0, 0, 0, 0, 0, 0, 0,172,148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 32, 1, 0, 0, 0,207, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, 32,211, 39, 3, 1, 0, 0, 0, + 16,196, 39, 3, 1, 0, 0, 0,240,196, 39, 3, 1, 0, 0, 0,112,202, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 51, 51, 51, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 10,215, 35, 60, 0, 0,250, 67, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 7, 0, 10, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 96,208, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,192,209, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, 0,224,202, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, 26, 0,152, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +192,209, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,208, 39, 3, 1, 0, 0, 0, + 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, 0, 0, 0, 0, 0, 0, 72, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, 0,124,146, 72, 0, 0, 72, 66, +205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4,122, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, +127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,152, 4,122, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,200, 0, 0, 0, + 32,211, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,207, 39, 3, 1, 0, 0, 0, + 96,208, 39, 3, 1, 0, 0, 0,192,209, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, 68, 65, 84, 65,160, 0, 0, 0, + 32,212, 39, 3, 1, 0, 0, 0,194, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,178, 39, 3, 1, 0, 0, 0, + 48,134, 39, 3, 1, 0, 0, 0,112,133, 39, 3, 1, 0, 0, 0, 80,132, 39, 3, 1, 0, 0, 0,176,132, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 81, 3, 0, 0,128, 7, 0, 0,241, 1, 0, 0, 21, 4, 0, 0, 8, 8, 48, 4, 37, 2, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208, 69, 15, 3, 1, 0, 0, 0, 32,217, 39, 3, 1, 0, 0, 0,128,232, 39, 3, 1, 0, 0, 0, + 0,213, 39, 3, 1, 0, 0, 0,192,215, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,176,151, 22, 1, 0, 0, 0,176,195,140, 22, 1, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 0,213, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 96,214, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,230, 67, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,135, 68, 0, 0, 0, 64, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 4, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 0,224,156, 68, 0, 0,200, 65, 0,224,156, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 0, 10, 0, 56, 4, 24, 0, 56, 4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 3, 0, 0,128, 7, 0, 0,241, 1, 0, 0,241, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,112, 72, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, 96,214, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0,192,215, 39, 3, 1, 0, 0, 0, 0,213, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0,241, 1, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0,144, 71, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0,192,215, 39, 3, 1, 0, 0, 0, +195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,214, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 67, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0,122, 67, 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, 17, 0, 0, 0, + 18, 0, 0, 0, 36, 2, 0, 0, 18, 0, 0, 0, 47, 4, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 47, 4, 0, 0, + 18, 0, 0, 0, 36, 2, 0, 0, 0, 0, 32, 65, 0, 0,128, 64, 0,124,146, 72, 0, 0, 0, 66, 10,215, 35, 60, 0, 0,200, 66, +105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 48, 4, 37, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 3, 0, 0,128, 7, 0, 0,241, 1, 0, 0, 21, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 4, 37, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,176, 70, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,240, 0, 0, 0, 32,217, 39, 3, 1, 0, 0, 0, +163, 0, 0, 0, 1, 0, 0, 0, 96,228, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 80,218, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,176,219, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 76, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,157, 68, 0, 0, 0, 0, 0, 0,208, 65, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,231, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,128,237, 68, 0, 0,200, 65, 0,128,237, 68, 0, 0,200, 65, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,232, 4, 26, 0,232, 4, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0, +225, 1, 0, 0,250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 26, 0, 0, 0, 1, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +176,219, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 16,221, 39, 3, 1, 0, 0, 0, 80,218, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 67, 0, 64, 70,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 67,255,127, 70,196, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0, 43, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,160, 0, 44, 3,143, 0, 26, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,153, 2, 0, 0, +251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 2, 0, 0, 5, 0, + 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, + 16,221, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,112,222, 39, 3, 1, 0, 0, 0,176,219, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 67, 0, 0,206,194, 0, 0, 0, 0, 0, 0, 0, 0,231,102, 16, 67, 0, 0,206,194, 0, 0, 0, 0, +143, 0, 0, 0,160, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0,142, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,142, 0, 0, 0, 18, 0, 0, 0,119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 4, 6, 0,160, 0,120, 0,143, 0,102, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0, +251, 1, 0, 0,251, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 6, 0, + 34, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +112,222, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0,208,223, 39, 3, 1, 0, 0, 0, 16,221, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 67, 0,128,142,196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 67, 0, 0, 26,196, 0, 0, 0, 0, +163, 0, 0, 0,180, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0,162, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,162, 0, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 64, 10, 0, 0, 0, 1, 0, 7, 0, 18, 0, 0, 0, 6, 0,180, 0,122, 2,163, 0,104, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 7, 0, 0,128, 7, 0, 0, +251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, + 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 1, 0, 0, +208,223, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,222, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153, 2, 0, 0,128, 7, 0, 0, +251, 1, 0, 0, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,232, 4, 24, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,225, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,248, 2, 0, 0, + 48,225, 39, 3, 1, 0, 0, 0,156, 0, 0, 0, 1, 0, 0, 0, 1, 0,140, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,165, 7, 36, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 1,128,191, 0, 0,128,191, + 0, 0, 0,128, 0, 0, 0,128,226,215,163,188, 0, 0, 0,128, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63, 69,239,209, 62, 70,119,105, 63,176, 84, 89,188, 0, 0, 0, 0, + 53,177,205,190,142, 74, 70, 62,166, 33,101, 63, 0, 0, 0, 0,185,158, 81, 63, 35, 44,185,190, 43, 61,228, 62, 0, 0, 0, 0, +164, 96, 68, 65,111,121,173,192,248,209,213, 64, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191, +118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65,217,236,191, 62, 54,117, 85, 63,224,246, 70,188, 0,128, 32,182, + 69,129, 32,190,250,186,154, 61,170,205,178, 62, 0, 64, 1, 53,215,104, 25,196,135,132,135, 67, 37, 9,167,195,136,252, 71,194, + 3, 54, 25, 68,160, 87,135,195,205,209,166, 67,151,254, 71, 66, 68,239,209, 62, 51,177,205,190,184,158, 81, 63, 0, 0, 0, 0, + 70,119,105, 63,143, 74, 70, 62, 35, 44,185,190, 0, 0, 0, 0,162, 84, 89,188,166, 33,101, 63, 42, 61,228, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,214,211,111,193, 0, 0,128, 63,180,157,229, 62,169,203,131,191,222,160, 81,191,184,158, 81,191, +118, 90,127, 63, 95, 27,254, 62, 9, 46,185, 62, 35, 44,185, 62,147,180,109,188,102,208, 18, 64,129, 63,228,190, 42, 61,228,190, + 0, 0, 0, 0, 0, 0, 0, 0, 96,132,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 62, 55, 63, 56,186,224,190,237,203,148,190, 3,236,234,190, +214,211,111, 65,214,211,111, 65, 0, 0, 0, 0, 0, 0, 0, 0,218,210,190, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 32, 1, 0, 0, 96,228, 39, 3, 1, 0, 0, 0,157, 0, 0, 0, 1, 0, 0, 0, +128,232, 39, 3, 1, 0, 0, 0, 32,217, 39, 3, 1, 0, 0, 0, 80,218, 39, 3, 1, 0, 0, 0,208,223, 39, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 51, 51, 51, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 65, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7, 0, 48,194,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 12, 66, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 10,215, 35, 60, 0, 0,250, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 7, 0, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0,192,229, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 32,231, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,129, 68, 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0,147, 68, + 0, 0, 0, 0, 0, 0,208, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0,224,202, 68, 0, 0,200, 65, + 0,224,202, 68, 0, 0,200, 65, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 2, 0, 3, 3, 4, 0, 12, 4, 10, 0,152, 4, + 26, 0,152, 4, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,101, 0, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4, 26, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65, 40, 1, 0, 0, 32,231, 39, 3, 1, 0, 0, 0,195, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192,229, 39, 3, 1, 0, 0, 0, 0, 0, 64,192, 0, 0,126, 67, 0, 0, 0, 0, 0, 0, 72, 66,112,189, 17,192,246, 70,125, 67, + 0, 0, 0, 0, 0, 0, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,151, 4, 0, 0, 18, 0, 0, 0,121, 2, 0, 0, 0, 0,128, 63, 0, 0, 72, 66, + 0,124,146, 72, 0, 0, 72, 66,205,204,204, 61, 0, 0, 32, 65, 72, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 4, 8, 0,152, 4, +122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,151, 4, 0, 0,127, 0, 0, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +152, 4,122, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68, 65, 84, 65,200, 0, 0, 0,128,232, 39, 3, 1, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 96,228, 39, 3, 1, 0, 0, 0,192,229, 39, 3, 1, 0, 0, 0, 32,231, 39, 3, 1, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 0, 0, + 83, 67, 0, 0, 0, 6, 0, 0, 48,186,129, 3, 1, 0, 0, 0,154, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 83, 99,101,110,101, 0, +116, 97,103,101, 0, 97,105,110, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,194,129, 3, 1, 0, 0, 0,128,242, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,234, 39, 3, 1, 0, 0, 0,192,234, 39, 3, 1, 0, 0, 0, 0,234, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,235, 39, 3, 1, 0, 0, 0,208, 89, 16, 26, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,250, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6, 0, 25, 0, +141, 0,128, 7, 56, 4, 8, 0, 8, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, + 23, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 8, 0, 24, 0, 10, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,208,236, 39, 3, 1, 0, 0, 0,208,236, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,200, 66, + 0, 0,200, 66, 0, 0,128, 63, 0, 0,128, 63, 1, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 5, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 98, 97, 99,107, 98,117, +102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, + 6, 0, 0, 0, 16, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,173, 2, 95, 0,154,153,217, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 1, 0,180, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 76, 69, 78, 68, 69, 82, 95, + 82, 69, 78, 68, 69, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,172, 0, 0, 0, 0,128, 63, +102,166,171, 67, 0, 0,128, 63, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +176,171,135, 22, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, + 32, 0, 32, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 0, 5, 0, 60, 0, 5, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 2,224, 1, 60, 0, 32, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0,180, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0,128, 7, 56, 4, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195,245, 28,193, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 0,234, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 96,234, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,180, 2,209, 1, 48,200,129, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 96,234, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0,192,234, 39, 3, 1, 0, 0, 0, 0,234, 39, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0,126, 3, 6, 3, 48,206,129, 3, 1, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, +192,234, 39, 3, 1, 0, 0, 0,131, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,234, 39, 3, 1, 0, 0, 0, + 1, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0,153, 0, 47, 2, 48,194,129, 3, 1, 0, 0, 0, 68, 65, 84, 65,120, 1, 0, 0, + 32,235, 39, 3, 1, 0, 0, 0,150, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0, 1, 0,205,204, 76, 63, 0, 0,180, 66, 9, 0, 1, 0, 0, 0,128, 63, +111, 18,131, 58,205,204,204, 61, 0, 0, 1, 0, 32, 0, 32, 0, 32, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 0, 5, 0, 5, 0,255,255, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0,100, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, + 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, 50, 0, 50, 0, 10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10,215, 35, 60,205,204,204, 61, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0,250, 0,205,204,204, 61,205,204,204, 61,102,102,166, 63, 0, 0,192, 63, 0, 0,240, 65, 72,225,122, 63, +205,204,204, 61, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 67, 2, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 88, 0, 0, 0,208,236, 39, 3, 1, 0, 0, 0,136, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 32, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +255,255, 15, 0, 0, 0, 0, 0,255,127, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 67, 65, 0, 0,152, 0, 0, 0, + 96,237, 39, 3, 1, 0, 0, 0, 29, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 65, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, + 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 63,145,137, 68, 66,205,204,204, 61, 0, 0,200, 66, 0, 0, 12, 66,161, 14,234, 64, 0, 0, 0, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 76, 65, 0, 0,248, 1, 0, 0, 48,238, 39, 3, 1, 0, 0, 0, 41, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 76, 65, 83,112,111,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, +247,255,239, 65, 0, 0,150, 66,154,153, 25, 62, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 96,240, 39, 3, 1, 0, 0, 0, + 2, 0, 0, 0, 46, 26,128, 63, 25, 4,240, 65, 0, 0, 52, 66, 0, 0,128, 63, 0, 0, 64, 64,205,204, 76, 61, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 64, 11, 3, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63,111, 18,131, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32,242, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65, 56, 1, 0, 0, + 96,240, 39, 3, 1, 0, 0, 0, 73, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 1, 0, 0, 0,128, 67, + 0, 0, 0, 0, 0, 0,128, 63,243, 4, 53,191,242, 4, 53, 63,242, 4, 53,191,243, 4, 53, 63,208,241, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 24, 0, 0, 0,208,241, 39, 3, 1, 0, 0, 0, 71, 1, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, + 32,242, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 0, 0,216, 1, 0, 0, +128,242, 39, 3, 1, 0, 0, 0,130, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 79, 87,111,114,108,100, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,128, 62, 0, 0,128, 62, 0, 0, 0, 0,205,204,204, 61,205,204,204, 61, +205,204,204, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0,205,204, 28, 65, 0, 0, 0, 0, 0, 0, 32, 0,128, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0,112, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 65, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 61, 0, 0, 5, 0, 0, 0, 0, 0, 10,215,163, 59, 0, 0, 0, 0, + 0, 0,128, 62, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 88, 0, 0,176, 0, 0, 0,144,244, 39, 3, 1, 0, 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84, 88, 84,101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0,128,245, 39, 3, 1, 0, 0, 0, +128,245, 39, 3, 1, 0, 0, 0,128,245, 39, 3, 1, 0, 0, 0,128,245, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,128,129, 3, 1, 0, 0, 0,255,255,255,255, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0,128,245, 39, 3, 1, 0, 0, 0, + 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 37, 35, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 82, 70, 68, 65, 84, 65, 4, 0, 0, 0,128, 37, 35, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,194,129, 3, 1, 0, 0, 0,119, 0, 0, 0, + 1, 0, 0, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 79, 66, 67, 97,109,101,114, 97, 0, 97,109,101,114, 97, 46, 48, 48, 49, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 96,237, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -229,123, 38, 63, 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 42,254,141, 63,192, 57, 49, 60, 34,159, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63, -236, 13, 98,189, 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62, -164,111, 75, 63, 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,222,149, 47, 63, 53, 70, 58, 63, +222, 56, 49,188, 0, 0, 0, 0, 86,126,162,190,227,251,159, 62, 55, 53,101, 63, 0, 0, 0, 0, 7,165, 39, 63,149, 84, 28,191, + 51,247,227, 62, 0, 0, 0, 0,110,101,239, 64,150, 62,208,192, 78,255,170, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 1, 0,128, 50, - 0, 0, 0,179, 0, 0, 0, 0, 1, 0,128, 50, 1, 0,128, 63, 1, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 39, 1, 0, 0, 52, 1, 0,128, 39, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, - 37,255, 16, 63, 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63, -166,111, 75, 63, 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, - 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, -100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, - 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 1, 0,128, 63, 1, 0,128, 51, + 1, 0, 0,179, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0,128, 63, 1, 0,128, 51, 0, 0, 0, 0, 2, 0, 0,179, 2, 0, 0,167, + 1, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 53, 1, 0, 0, 41, 1, 0,128,168, 0, 0,128, 63, 0, 0,128, 63,157,190,215, 49, +167,170, 4, 52, 0, 0, 0,128,129,116,157,178, 1, 0,128, 63, 33, 69, 15, 51, 0, 0, 0,128, 73,254, 67, 51,243, 97,106, 49, + 0, 0,128, 63, 0, 0, 0,128, 3, 0, 64, 52,183,164,157, 39, 0, 0,128, 53, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, +100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,187,225, 16, 63, 0, 0,128, 63,205,204,204, 62,237, 54, 32, 63, + 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0, - 32, 3, 0, 0,128,153, 45, 3, 1, 0, 0, 0, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0, +152, 4, 0, 0, 48,200,129, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, 48,206,129, 3, 1, 0, 0, 0, 48,194,129, 3, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 66, 67,117, 98,101, 0,112,104,101,114,101, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, - 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,160, 63, 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, - 0, 0,128, 63, 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 67, 0, 0, 3, 3, 0, 1, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, - 0, 0, 0, 63,205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,224,156, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176, 19,253, 24, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,245, 39, 3, + 1, 0, 0, 0, 32,246, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63,222,149, 47, 63, 52, 70, 58, 63,179, 56, 49,188, 0, 0, 0,128, 86,126,162,190,227,251,159, 62, + 56, 53,101, 63, 0, 0, 0,128, 7,165, 39, 63,149, 84, 28,191, 50,247,227, 62, 0, 0, 0,128,110,101,239, 64,151, 62,208,192, + 77,255,170, 64, 0, 0,128, 63, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 68, 0, 79, 66, 0, 0, + 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63, +169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0,143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,160, 24,253, 24, 1, 0, 0, 0,176, 31,253, 24, 1, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0,224,245, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 4, 0, 0, 0, 32,246, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 79, 66, 0, 0,152, 4, 0, 0, 48,206,129, 3, 1, 0, 0, 0,119, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48,200,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 79, 66, 76, 97,109,112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,158, 45, 3, 1, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61, -205,204,204, 61,102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 16, 1, 0, 0,224,156, 45, 3, - 1, 0, 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144,158, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0, 0, 0,144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, - 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 48,238, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,229,123, 38, 63, + 87, 43, 98, 61,229,229,238, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54,236,148,190, 25,134,116, 63,236, 13, 98,189, + 0, 0, 0, 0,221,102, 69,191, 57,174, 76,190, 34,194, 26, 63, 0, 0, 0, 0, 37,255, 16, 63,241,161, 95, 62,164,111, 75, 63, + 0, 0, 0, 0,154,112,130, 64,183,178,128, 63,112,236,188, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 1, 0,128, 50, 0, 0, 0,179, + 0, 0, 0, 0, 1, 0,128, 50, 1, 0,128, 63, 1, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 1, 0, 0, 39, 1, 0, 0, 52, 1, 0,128, 39, 0, 0,128, 63, 53,236,148,190,222,102, 69,191, 37,255, 16, 63, + 0, 0, 0,128, 24,134,116, 63, 57,174, 76,190,240,161, 95, 62, 0, 0, 0,128,235, 13, 98,189, 34,194, 26, 63,166,111, 75, 63, + 0, 0, 0,128,208, 19, 13, 63,234, 65,102,190, 10, 10,231,192, 0, 0,128, 63, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 5, 0, 1, 0, 0, 0, 68, 0, 79, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,100, 0, 0, 0, + 0, 0, 0, 0, 56,180,150,201, 0, 0,128, 63,169, 19,208, 60, 0, 0,128, 63,205,204,204, 62,229,208, 34, 62, 0, 0, 0, 0, +143,194,117, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 0, 0, 32, 3, 0, 0, + 96,246, 39, 3, 1, 0, 0, 0, 44, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 65, 77, 97,116,101,114,105, 97,108, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 23, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63,205,204, 76, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 10,215, 35, 60, 0, 0, 0, 0, + 0, 0, 8, 0, 1, 0, 50, 0,205,204, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160, 63, + 0, 0, 0, 0, 0, 0,160, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 2, 0, 2, 0, 50, 0, 0, 6, 0, 0,128, 63, + 0, 0,128, 63, 18, 0, 18, 0, 10,215,163, 59, 10,215,163, 59, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 3, + 67, 0, 0, 3, 1, 0, 4, 0, 12, 0, 4, 0, 0, 0, 0, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0,128, 64, 0, 0, 0, 63, +205,204,204, 61, 0, 0, 0, 63,205,204,204, 61,205,204,204, 61, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63,192,249, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16,251, 39, 3, 1, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63,205,204, 76, 61,205,204,204, 61, +102,102,166, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 16, 1, 0, 0,192,249, 39, 3, 1, 0, 0, 0, + 32, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,112,251, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, +144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 63,205,204, 76, 62, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, - 40, 0, 0, 0, 48,158, 45, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0, -104, 1, 0, 0,144,158, 45, 3, 1, 0, 0, 0, 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, - 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, - 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 68, 65, 84, 65, 40, 0, 0, 0, + 16,251, 39, 3, 1, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 48,212,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 16, 0, 0, + 48,212,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 2, 2, 51, 2, 2, 2, 51, 6, 6, 6,153, 6, 6, 6,153, 6, 6, 6,153, 4, 4, 4,102, 3, 3, 3,102, 2, 2, 2, 51, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 51, 8, 8, 8,153, 11, 11, 11,204, + 13, 13, 13,255, 12, 12, 12,255, 12, 12, 12,255, 11, 11, 11,255, 10, 10, 10,255, 10, 10, 10,255, 9, 9, 9,255, 9, 9, 9,255, + 9, 9, 9,255, 4, 4, 4,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 51, 10, 10, 10,153, 18, 18, 18,255, 20, 20, 20,255, 22, 22, 22,255, + 23, 23, 23,255, 22, 22, 22,255, 20, 20, 20,255, 19, 19, 19,255, 16, 16, 16,255, 14, 14, 14,255, 11, 11, 11,255, 10, 10, 10,255, + 9, 9, 9,255, 9, 9, 9,255, 9, 9, 9,255, 8, 8, 8,204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7,102, 19, 19, 19,204, 27, 27, 27,255, 31, 31, 31,255, 32, 32, 32,255, 33, 33, 33,255, + 33, 33, 33,255, 31, 31, 31,255, 30, 30, 30,255, 27, 27, 27,255, 25, 25, 25,255, 22, 22, 22,255, 19, 19, 19,255, 16, 16, 16,255, + 12, 12, 12,255, 10, 10, 10,255, 10, 10, 10,255, 10, 10, 10,255, 10, 10, 10,255, 4, 4, 4,102, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 13, 13,153, 29, 29, 29,255, 37, 37, 37,255, 40, 40, 40,255, 42, 42, 42,255, 42, 42, 42,255, 43, 43, 43,255, + 41, 41, 41,255, 40, 40, 40,255, 38, 38, 38,255, 36, 36, 36,255, 33, 33, 33,255, 30, 30, 30,255, 27, 27, 27,255, 24, 24, 24,255, + 20, 20, 20,255, 16, 16, 16,255, 12, 12, 12,255, 10, 10, 10,255, 10, 10, 10,255, 10, 10, 10,255, 7, 7, 7,153, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 13, 13,102, 37, 37, 37,255, 44, 44, 44,255, 48, 48, 48,255, 50, 50, 50,255, 51, 51, 51,255, 51, 51, 51,255, 50, 50, 50,255, + 49, 49, 49,255, 48, 48, 48,255, 45, 45, 45,255, 43, 43, 43,255, 41, 41, 41,255, 37, 37, 37,255, 34, 34, 34,255, 31, 31, 31,255, + 28, 28, 28,255, 24, 24, 24,255, 20, 20, 20,255, 15, 15, 15,255, 11, 11, 11,255, 10, 10, 10,255, 11, 11, 11,255, 7, 7, 7,153, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 13, 13,102, + 41, 41, 41,255, 50, 50, 50,255, 54, 54, 54,255, 57, 57, 57,255, 58, 58, 58,255, 59, 59, 59,255, 59, 59, 59,255, 58, 58, 58,255, + 57, 57, 57,255, 55, 55, 55,255, 53, 53, 53,255, 51, 51, 51,255, 48, 48, 48,255, 45, 45, 45,255, 41, 41, 41,255, 38, 38, 38,255, + 35, 35, 35,255, 31, 31, 31,255, 27, 27, 27,255, 23, 23, 23,255, 17, 17, 17,255, 12, 12, 12,255, 11, 11, 11,255, 11, 11, 11,255, + 5, 5, 5,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 36, 36,204, + 53, 53, 53,255, 59, 59, 59,255, 63, 63, 63,255, 65, 65, 65,255, 66, 66, 66,255, 66, 66, 66,255, 66, 66, 66,255, 65, 65, 65,255, + 64, 64, 64,255, 62, 62, 62,255, 60, 60, 60,255, 57, 57, 57,255, 54, 54, 54,255, 51, 51, 51,255, 48, 48, 48,255, 44, 44, 44,255, + 41, 41, 41,255, 37, 37, 37,255, 33, 33, 33,255, 29, 29, 29,255, 24, 24, 24,255, 19, 19, 19,255, 13, 13, 13,255, 11, 11, 11,255, + 12, 12, 12,255, 3, 3, 3, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 19,102, 56, 56, 56,255, + 64, 64, 64,255, 68, 68, 68,255, 71, 71, 71,255, 73, 73, 73,255, 74, 74, 74,255, 74, 74, 74,255, 73, 73, 73,255, 72, 72, 72,255, + 71, 71, 71,255, 69, 69, 69,255, 67, 67, 67,255, 64, 64, 64,255, 61, 61, 61,255, 58, 58, 58,255, 54, 54, 54,255, 50, 50, 50,255, + 47, 47, 47,255, 43, 43, 43,255, 39, 39, 39,255, 34, 34, 34,255, 30, 30, 30,255, 25, 25, 25,255, 19, 19, 19,255, 13, 13, 13,255, + 12, 12, 12,255, 10, 10, 10,204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 54, 54,255, 66, 66, 66,255, + 72, 72, 72,255, 77, 77, 77,255, 79, 79, 79,255, 81, 81, 81,255, 81, 81, 81,255, 81, 81, 81,255, 80, 80, 80,255, 79, 79, 79,255, + 77, 77, 77,255, 75, 75, 75,255, 73, 73, 73,255, 70, 70, 70,255, 67, 67, 67,255, 63, 63, 63,255, 60, 60, 60,255, 56, 56, 56,255, + 52, 52, 52,255, 49, 49, 49,255, 44, 44, 44,255, 40, 40, 40,255, 35, 35, 35,255, 30, 30, 30,255, 24, 24, 24,255, 18, 18, 18,255, + 12, 12, 12,255, 12, 12, 12,255, 6, 6, 6,102, 0, 0, 0, 0, 0, 0, 0, 0, 22, 22, 22,102, 67, 67, 67,255, 76, 76, 76,255, + 81, 81, 81,255, 84, 84, 84,255, 87, 87, 87,255, 88, 88, 88,255, 88, 88, 88,255, 88, 88, 88,255, 87, 87, 87,255, 86, 86, 86,255, + 84, 84, 84,255, 82, 82, 82,255, 79, 79, 79,255, 76, 76, 76,255, 73, 73, 73,255, 69, 69, 69,255, 65, 65, 65,255, 62, 62, 62,255, + 58, 58, 58,255, 54, 54, 54,255, 49, 49, 49,255, 45, 45, 45,255, 40, 40, 40,255, 35, 35, 35,255, 29, 29, 29,255, 23, 23, 23,255, + 16, 16, 16,255, 12, 12, 12,255, 12, 12, 12,204, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 49,204, 76, 76, 76,255, 84, 84, 84,255, + 89, 89, 89,255, 92, 92, 92,255, 94, 94, 94,255, 95, 95, 95,255, 95, 95, 95,255, 95, 95, 95,255, 94, 94, 94,255, 93, 93, 93,255, + 91, 91, 91,255, 88, 88, 88,255, 85, 85, 85,255, 82, 82, 82,255, 79, 79, 79,255, 75, 75, 75,255, 71, 71, 71,255, 67, 67, 67,255, + 63, 63, 63,255, 59, 59, 59,255, 55, 55, 55,255, 50, 50, 50,255, 45, 45, 45,255, 40, 40, 40,255, 34, 34, 34,255, 28, 28, 28,255, + 21, 21, 21,255, 13, 13, 13,255, 14, 14, 14,255, 0, 0, 0, 0, 14, 14, 14,102, 70, 70, 70,255, 85, 85, 85,255, 92, 92, 92,255, + 97, 97, 97,255,100,100,100,255,102,102,102,255,102,102,102,255,103,103,103,255,102,102,102,255,101,101,101,255, 99, 99, 99,255, + 97, 97, 97,255, 94, 94, 94,255, 91, 91, 91,255, 88, 88, 88,255, 84, 84, 84,255, 81, 81, 81,255, 77, 77, 77,255, 72, 72, 72,255, + 68, 68, 68,255, 64, 64, 64,255, 59, 59, 59,255, 55, 55, 55,255, 50, 50, 50,255, 44, 44, 44,255, 39, 39, 39,255, 32, 32, 32,255, + 25, 25, 25,255, 17, 17, 17,255, 13, 13, 13,255, 7, 7, 7,102, 24, 24, 24,102, 80, 80, 80,255, 93, 93, 93,255,100,100,100,255, +104,104,104,255,107,107,107,255,109,109,109,255,109,109,109,255,109,109,109,255,109,109,109,255,107,107,107,255,106,106,106,255, +103,103,103,255,100,100,100,255, 97, 97, 97,255, 94, 94, 94,255, 90, 90, 90,255, 86, 86, 86,255, 82, 82, 82,255, 77, 77, 77,255, + 73, 73, 73,255, 69, 69, 69,255, 64, 64, 64,255, 59, 59, 59,255, 54, 54, 54,255, 49, 49, 49,255, 43, 43, 43,255, 36, 36, 36,255, + 29, 29, 29,255, 21, 21, 21,255, 14, 14, 14,255, 10, 10, 10,153, 29, 29, 29,102, 89, 89, 89,255,100,100,100,255,107,107,107,255, +112,112,112,255,114,114,114,255,116,116,116,255,116,116,116,255,116,116,116,255,115,115,115,255,114,114,114,255,112,112,112,255, +110,110,110,255,107,107,107,255,104,104,104,255,100,100,100,255, 96, 96, 96,255, 92, 92, 92,255, 87, 87, 87,255, 83, 83, 83,255, + 78, 78, 78,255, 73, 73, 73,255, 68, 68, 68,255, 63, 63, 63,255, 58, 58, 58,255, 52, 52, 52,255, 46, 46, 46,255, 40, 40, 40,255, + 33, 33, 33,255, 24, 24, 24,255, 17, 17, 17,255, 13, 13, 13,204, 46, 46, 46,153, 95, 95, 95,255,107,107,107,255,114,114,114,255, +118,118,118,255,121,121,121,255,122,122,122,255,123,123,123,255,123,123,123,255,122,122,122,255,122,122,122,255,120,120,120,255, +118,118,118,255,114,114,114,255,110,110,110,255,106,106,106,255,101,101,101,255, 97, 97, 97,255, 92, 92, 92,255, 87, 87, 87,255, + 83, 83, 83,255, 78, 78, 78,255, 73, 73, 73,255, 68, 68, 68,255, 62, 62, 62,255, 56, 56, 56,255, 50, 50, 50,255, 44, 44, 44,255, + 36, 36, 36,255, 28, 28, 28,255, 19, 19, 19,255, 12, 12, 12,204, 47, 47, 47,153,101,101,101,255,113,113,113,255,120,120,120,255, +125,125,125,255,127,127,127,255,129,129,129,255,130,130,130,255,130,130,130,255,131,131,131,255,131,131,131,255,131,131,131,255, +129,129,129,255,125,125,125,255,120,120,120,255,113,113,113,255,108,108,108,255,103,103,103,255, 97, 97, 97,255, 92, 92, 92,255, + 87, 87, 87,255, 82, 82, 82,255, 77, 77, 77,255, 72, 72, 72,255, 66, 66, 66,255, 60, 60, 60,255, 54, 54, 54,255, 47, 47, 47,255, + 39, 39, 39,255, 31, 31, 31,255, 22, 22, 22,255, 12, 12, 12,204, 48, 48, 48,153,106,106,106,255,118,118,118,255,126,126,126,255, +131,131,131,255,134,134,134,255,135,135,135,255,137,137,137,255,138,138,138,255,142,142,142,255,147,147,147,255,149,149,149,255, +148,148,148,255,142,142,142,255,133,133,133,255,124,124,124,255,115,115,115,255,108,108,108,255,102,102,102,255, 97, 97, 97,255, + 92, 92, 92,255, 87, 87, 87,255, 81, 81, 81,255, 75, 75, 75,255, 69, 69, 69,255, 63, 63, 63,255, 57, 57, 57,255, 49, 49, 49,255, + 42, 42, 42,255, 33, 33, 33,255, 24, 24, 24,255, 9, 9, 9,153, 32, 32, 32,102,109,109,109,255,123,123,123,255,131,131,131,255, +136,136,136,255,140,140,140,255,142,142,142,255,144,144,144,255,148,148,148,255,156,156,156,255,168,168,168,255,176,176,176,255, +177,177,177,255,168,168,168,255,153,153,153,255,137,137,137,255,124,124,124,255,114,114,114,255,107,107,107,255,101,101,101,255, + 96, 96, 96,255, 90, 90, 90,255, 85, 85, 85,255, 79, 79, 79,255, 72, 72, 72,255, 66, 66, 66,255, 59, 59, 59,255, 52, 52, 52,255, + 44, 44, 44,255, 35, 35, 35,255, 26, 26, 26,255, 10, 10, 10,153, 17, 17, 17, 51,110,110,110,255,127,127,127,255,136,136,136,255, +142,142,142,255,145,145,145,255,148,148,148,255,151,151,151,255,159,159,159,255,174,174,174,255,195,195,195,255,212,212,212,255, +216,216,216,255,204,204,204,255,179,179,179,255,154,154,154,255,135,135,135,255,121,121,121,255,112,112,112,255,106,106,106,255, + 99, 99, 99,255, 94, 94, 94,255, 88, 88, 88,255, 82, 82, 82,255, 76, 76, 76,255, 69, 69, 69,255, 62, 62, 62,255, 54, 54, 54,255, + 46, 46, 46,255, 37, 37, 37,255, 26, 26, 26,255, 6, 6, 6,102, 0, 0, 0, 0,107,107,107,255,130,130,130,255,140,140,140,255, +146,146,146,255,150,150,150,255,153,153,153,255,158,158,158,255,169,169,169,255,191,191,191,255,219,219,219,255,246,246,246,255, +254,254,254,255,237,237,237,255,204,204,204,255,170,170,170,255,145,145,145,255,127,127,127,255,117,117,117,255,110,110,110,255, +103,103,103,255, 97, 97, 97,255, 91, 91, 91,255, 85, 85, 85,255, 78, 78, 78,255, 71, 71, 71,255, 64, 64, 64,255, 55, 55, 55,255, + 47, 47, 47,255, 37, 37, 37,255, 25, 25, 25,255, 3, 3, 3, 51, 0, 0, 0, 0, 65, 65, 65,153,129,129,129,255,142,142,142,255, +149,149,149,255,154,154,154,255,157,157,157,255,163,163,163,255,176,176,176,255,199,199,199,255,232,232,232,255,255,255,255,255, +255,255,255,255,255,255,255,255,220,220,220,255,181,181,181,255,151,151,151,255,132,132,132,255,121,121,121,255,113,113,113,255, +106,106,106,255,100,100,100,255, 94, 94, 94,255, 87, 87, 87,255, 80, 80, 80,255, 73, 73, 73,255, 65, 65, 65,255, 57, 57, 57,255, + 48, 48, 48,255, 38, 38, 38,255, 16, 16, 16,153, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 51,127,127,127,255,143,143,143,255, +152,152,152,255,157,157,157,255,161,161,161,255,165,165,165,255,177,177,177,255,198,198,198,255,227,227,227,255,253,253,253,255, +255,255,255,255,250,250,250,255,217,217,217,255,181,181,181,255,153,153,153,255,135,135,135,255,124,124,124,255,117,117,117,255, +110,110,110,255,103,103,103,255, 96, 96, 96,255, 89, 89, 89,255, 82, 82, 82,255, 74, 74, 74,255, 66, 66, 66,255, 57, 57, 57,255, + 48, 48, 48,255, 35, 35, 35,255, 10, 10, 10,153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 93, 93,204,141,141,141,255, +153,153,153,255,159,159,159,255,163,163,163,255,167,167,167,255,174,174,174,255,188,188,188,255,209,209,209,255,228,228,228,255, +234,234,234,255,224,224,224,255,200,200,200,255,173,173,173,255,151,151,151,255,136,136,136,255,127,127,127,255,119,119,119,255, +112,112,112,255,105,105,105,255, 98, 98, 98,255, 91, 91, 91,255, 83, 83, 83,255, 75, 75, 75,255, 66, 66, 66,255, 57, 57, 57,255, + 46, 46, 46,255, 24, 24, 24,204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 51,134,134,134,255, +151,151,151,255,160,160,160,255,164,164,164,255,167,167,167,255,171,171,171,255,178,178,178,255,189,189,189,255,200,200,200,255, +202,202,202,255,195,195,195,255,180,180,180,255,163,163,163,255,148,148,148,255,137,137,137,255,129,129,129,255,121,121,121,255, +114,114,114,255,107,107,107,255, 99, 99, 99,255, 91, 91, 91,255, 83, 83, 83,255, 74, 74, 74,255, 65, 65, 65,255, 55, 55, 55,255, + 41, 41, 41,255, 7, 7, 7, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 49,102, +145,145,145,255,157,157,157,255,164,164,164,255,167,167,167,255,170,170,170,255,172,172,172,255,176,176,176,255,180,180,180,255, +179,179,179,255,174,174,174,255,165,165,165,255,155,155,155,255,145,145,145,255,137,137,137,255,130,130,130,255,122,122,122,255, +115,115,115,255,107,107,107,255, 99, 99, 99,255, 91, 91, 91,255, 82, 82, 82,255, 73, 73, 73,255, 63, 63, 63,255, 50, 50, 50,255, + 22, 22, 22,153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 78, 78, 78,153,149,149,149,255,160,160,160,255,166,166,166,255,168,168,168,255,169,169,169,255,170,170,170,255,169,169,169,255, +167,167,167,255,164,164,164,255,158,158,158,255,151,151,151,255,144,144,144,255,137,137,137,255,130,130,130,255,123,123,123,255, +115,115,115,255,106,106,106,255, 98, 98, 98,255, 89, 89, 89,255, 80, 80, 80,255, 70, 70, 70,255, 58, 58, 58,255, 27, 27, 27,153, + 3, 3, 3, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 80, 80, 80,153,150,150,150,255,160,160,160,255,165,165,165,255,167,167,167,255,167,167,167,255,166,166,166,255, +163,163,163,255,160,160,160,255,155,155,155,255,149,149,149,255,143,143,143,255,137,137,137,255,129,129,129,255,121,121,121,255, +113,113,113,255,105,105,105,255, 96, 96, 96,255, 86, 86, 86,255, 76, 76, 76,255, 63, 63, 63,255, 38, 38, 38,204, 7, 7, 7, 51, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 78, 78, 78,153,147,147,147,255,157,157,157,255,161,161,161,255,163,163,163,255,162,162,162,255, +160,160,160,255,157,157,157,255,152,152,152,255,147,147,147,255,141,141,141,255,135,135,135,255,127,127,127,255,119,119,119,255, +110,110,110,255,101,101,101,255, 91, 91, 91,255, 80, 80, 80,255, 66, 66, 66,255, 32, 32, 32,153, 7, 7, 7, 51, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,134,134,134,255,148,148,148,255,154,154,154,255,155,155,155,255, +154,154,154,255,152,152,152,255,147,147,147,255,142,142,142,255,136,136,136,255,130,130,130,255,122,122,122,255,114,114,114,255, +104,104,104,255, 93, 93, 93,255, 81, 81, 81,255, 54, 54, 54,204, 22, 22, 22,102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 73, 73,153,103,103,103,204,137,137,137,255, +140,140,140,255,140,140,140,255,137,137,137,255,133,133,133,255,127,127,127,255,120,120,120,255,113,113,113,255,102,102,102,255, + 91, 91, 91,255, 64, 64, 64,204, 28, 28, 28,102, 6, 6, 6, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 46, 46, 46,102, 72, 72, 72,153, 72, 72, 72,153, 92, 92, 92,204, 88, 88, 88,204, 81, 81, 81,204, 54, 54, 54,153, 35, 35, 35,102, + 16, 16, 16, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 0, 0,104, 1, 0, 0,112,251, 39, 3, 1, 0, 0, 0, + 39, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 69, 84,101,120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 22, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 62, 0, 0,160, 64, + 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 64, + 0, 0, 0, 64, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204,204, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16,253, 39, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 40, 0, 0, 0, 16,253, 39, 3, 1, 0, 0, 0, + 19, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 48,230,129, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 0, 16, 0, 0, 48,230,129, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, + 0, 0, 0,255, 0, 0, 0,255, 77, 69, 0, 0,144, 1, 0, 0,112,253, 39, 3, 1, 0, 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 77, 69, 67,117, 98,101, 0,112,104,101,114,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 0, 0, -144, 1, 0, 0, 48,160, 45, 3, 1, 0, 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 69, 67,117, 98,101, 0,112,104,101,114,101, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,255, 39, 3, 1, 0, 0, 0, 48, 6, 40, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, 40, 3, 1, 0, 0, 0,192, 3, 40, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48,198, 32, 3, 1, 0, 0, 0,176,168, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,163, 45, 3, 1, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,255, 39, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 2, 40, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,144, 4, 40, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 64,255, 39, 3, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 96,246, 39, 3, 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0,128,255, 39, 3, 1, 0, 0, 0, + 76, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0,162, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,160,164, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16,167, 45, 3, 1, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,128, 51, - 0, 0, 0,180, 0, 0, 0, 0, 4, 0,128, 63, 4, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 67, 0, 0, 0, 30, 0, 4, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65, 8, 0, 0, 0, 48,198, 32, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,128,153, 45, 3, - 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0, 0,162, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, 40, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,160,163, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7840,17 +12355,18 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0, 32, 1, 40, 3, 1, 0, 0, 0, + 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63,255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, + 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191,230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, + 0, 0,128,191, 26,182, 26,182, 26,182,255,127, 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, + 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63,247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0, +245,255,127, 63, 5, 0,128,191, 0, 0,128, 63,230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, + 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73, +230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65,104, 1, 0, 0, 32, 2, 40, 3, 1, 0, 0, 0, 76, 1, 0, 0, 5, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,192, 0, 0, 0,160,163, 45, 3, 1, 0, 0, 0, 60, 0, 0, 0, 8, 0, 0, 0, 0, 0,128, 63, -255,255,127, 63, 0, 0,128,191,230, 73,230, 73, 26,182,255,127, 1, 0, 0, 0, 0, 0,128, 63, 0, 0,128,191, 0, 0,128,191, -230, 73, 26,182, 26,182,255,127, 1, 0, 0, 0, 1, 0,128,191,253,255,127,191, 0, 0,128,191, 26,182, 26,182, 26,182,255,127, - 1, 0, 0, 0,250,255,127,191, 3, 0,128, 63, 0, 0,128,191, 26,182,230, 73, 26,182,255,127, 1, 0, 0, 0, 4, 0,128, 63, -247,255,127, 63, 0, 0,128, 63,230, 73,230, 73,230, 73,255,127, 1, 0, 0, 0,245,255,127, 63, 5, 0,128,191, 0, 0,128, 63, -230, 73, 26,182,230, 73,255,127, 1, 0, 0, 0, 3, 0,128,191,250,255,127,191, 0, 0,128, 63, 26,182, 26,182,230, 73,255,127, - 1, 0, 0, 0,255,255,127,191, 0, 0,128, 63, 0, 0,128, 63, 26,182,230, 73,230, 73,255,127, 1, 0, 0, 0, 68, 65, 84, 65, -104, 1, 0, 0,160,164, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +192, 3, 40, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7858,17 +12374,16 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,144, 0, 0, 0,192, 3, 40, 3, 1, 0, 0, 0, 57, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 68, 65, 84, 65,104, 1, 0, 0,144, 4, 40, 3, 1, 0, 0, 0, + 76, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -144, 0, 0, 0, 64,166, 45, 3, 1, 0, 0, 0, 57, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 35, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 35, 0, 1, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 35, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 35, 0, 2, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 35, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 35, 0, - 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 35, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 35, 0, 6, 0, 0, 0, 7, 0, 0, 0, - 0, 0, 35, 0, 68, 65, 84, 65,104, 1, 0, 0, 16,167, 45, 3, 1, 0, 0, 0, 75, 1, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 6, 40, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,176,168, 45, 3, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7876,28 +12391,29 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0, 48, 6, 40, 3, 1, 0, 0, 0, + 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, + 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, + 85, 83, 69, 82,160, 11, 0, 0,192,162,118, 1, 1, 0, 0, 0,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, + 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 68, 65, 84, 65,120, 0, 0, 0,176,168, 45, 3, 1, 0, 0, 0, 56, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 5, 0, 0, 0, - 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 5, 0, 0, 0, - 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, - 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 2, 85, 83, 69, 82,160, 11, 0, 0,128,215,112, 1, - 1, 0, 0, 0,189, 0, 0, 0, 1, 0, 0, 0, 33,152, 1, 0, 63, 2, 0, 0, 5, 0, 0, 0, 47,116,109,112, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114, +112, 99, 47, 98,105,110, 47, 98,108,101,110,100,101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111, +117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 85,115,101,114,115, - 47,116,111,110, 47, 68,101,115,107,116,111,112, 47, 0, 45,112,111,119,101,114,112, 99, 47, 98,105,110, 47, 98,108,101,110,100, -101,114, 46, 97,112,112, 47, 67,111,110,116,101,110,116,115, 47, 82,101,115,111,117,114, 99,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7916,8 +12432,8 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7926,21 +12442,20 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 48, 52, 6, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 8, 0, 0, + 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, + 48, 4,130, 3, 1, 0, 0, 0, 48, 28,130, 3, 1, 0, 0, 0, 0,251, 36, 3, 1, 0, 0, 0, 0,251, 36, 3, 1, 0, 0, 0, + 16, 6, 37, 3, 1, 0, 0, 0, 16, 6, 37, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, - 3, 0, 0, 0, 48, 52, 6, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 0, 68,172, 0, 0, 36, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 64, 0, 5, 0, 2, 0, 48, 22,139, 3, 1, 0, 0, 0, 48, 46,139, 3, - 1, 0, 0, 0,240,193,121, 22, 1, 0, 0, 0,240,193,121, 22, 1, 0, 0, 0,240,205,121, 22, 1, 0, 0, 0,240,205,121, 22, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, - 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63,205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62,102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, - 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0,205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, - 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, - 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, - 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0,120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, - 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0,100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 32, 0, 0, 0, 1, 0, 2, 0, 25, 0, 0, 0, 20, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0,205,204, 76, 63,205,204, 76, 63, +205,204, 76, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 30, 90,100,191,154,153,153, 62, +102,102,102, 63, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31,250,254, 62, 9, 0, 0, 63,156,153, 25, 63, 0, 0, 0, 0, +205,204, 76, 62,205,204, 76, 62,205,204, 76, 62, 0, 0,128, 63, 44,135, 22, 63, 32,133,235, 62,184,243,125, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,195, 73, 76, 63, 42,135, 86, 63, 0, 0,128, 63, 0, 0, 0, 0, 1, 43,135, 61, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,128, 63, 16, 47, 93, 62, 58,180,200,190, 24, 47, 93,190, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 15, 0, +120, 0, 60, 0, 0, 0, 0, 0,128, 0, 0, 0, 0, 0, 0, 0,144, 31, 15, 0, 6, 0, 15, 0, 8, 0, 10, 0,250, 0, 0, 0, +100, 0,100, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -7950,1564 +12465,1565 @@ char datatoc_B_blend[]= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, - 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, - 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, - 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, 48, 22,139, 3, 1, 0, 0, 0,187, 0, 0, 0, - 1, 0, 0, 0, 48, 46,139, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, - 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255, -255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, -255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, - 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, -128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255, -255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255, -255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230, -100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, -255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 25, 25, 25,255,128,128,128,255,100,100,100,255, - 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50,180, 80, 80, 80,180,100,100,100,180, -128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, - 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0,115,190, 76,255, 90,166, 51,255,240,235,100,255, -215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,140, 25,255, -250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, - 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, - 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, - 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, - 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, - 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255,108,105,111,255,104,106,117,255,105,117,110,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40, -255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255, -219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, - 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18, -255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, - 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, - 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, - 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, - 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, - 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, - 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, - 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65, -216, 21, 0, 0, 48, 46,139, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 22,139, 3, - 1, 0, 0, 0, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0, -231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, - 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, - 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0, -241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0, -236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0, -236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, -143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, - 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, -255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,100,143,143,143,100, 96,192, 64,255, - 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255, -255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, -112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,143,143,143,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, - 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,255,255,255,170,255, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255, -169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, - 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,153,153,153,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, - 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0, -255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,158,158,158,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,140,140,140,255,127,112,112,100, 0, 0, 0, 0, -112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255, -255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30, -200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255, -255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255, -230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, - 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255, -129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, -143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 16, 64, 16,255,102,255,102,255,255,130, 0,255, - 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255,255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10, -255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, - 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255, -255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, - 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, - 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, - 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, - 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, - 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, - 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, - 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,100,228, 0, 0, 48,230,193, 2, 1, 0, 0, 0, 0, 0, 0, 0, - 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, 36, 11, 0, 0, 42,110,101,120,116, 0, 42,112,114,101,118, 0, 42,100, 97,116, - 97, 0, 42,102,105,114,115,116, 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, 0,119, 0,120,109,105,110, 0,120,109, 97,120, - 0,121,109,105,110, 0,121,109, 97,120, 0, 42,112,111,105,110,116,101,114, 0,103,114,111,117,112, 0,118, 97,108, 0,118, 97, -108, 50, 0,116,121,112,101, 0,115,117, 98,116,121,112,101, 0,102,108, 97,103, 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97, -118,101,100, 0,100, 97,116, 97, 0,108,101,110, 0,116,111,116, 97,108,108,101,110, 0, 42,110,101,119,105,100, 0, 42,108,105, - 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117,115, 0,105, 99,111,110, 95,105,100, 0, 42,112,114,111,112,101,114,116,105,101, -115, 0,105,100, 0, 42,105,100, 98,108,111, 99,107, 0, 42,102,105,108,101,100, 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, - 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0,112, 97,100, 0, 42,112, 97,114,101,110,116, 0, -119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42, -114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, 98,108,111, 99,107,116,121,112,101, 0, 97,100,114, 99,111,100,101, 0,110, 97, -109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97,120,114, 99,116, 0,116,111,116,114, 99,116, 0, -118, 97,114,116,121,112,101, 0,116,111,116,118,101,114,116, 0,105,112,111, 0,101,120,116,114, 97,112, 0,114,116, 0, 98,105, -116,109, 97,115,107, 0,115,108,105,100,101, 95,109,105,110, 0,115,108,105,100,101, 95,109, 97,120, 0, 99,117,114,118, 97,108, - 0, 42,100,114,105,118,101,114, 0, 99,117,114,118,101, 0, 99,117,114, 0,115,104,111,119,107,101,121, 0,109,117,116,101,105, -112,111, 0,112,111,115, 0,114,101,108, 97,116,105,118,101, 0,116,111,116,101,108,101,109, 0,112, 97,100, 50, 0, 42,119,101, -105,103,104,116,115, 0,118,103,114,111,117,112, 91, 51, 50, 93, 0,115,108,105,100,101,114,109,105,110, 0,115,108,105,100,101, -114,109, 97,120, 0, 42, 97,100,116, 0, 42,114,101,102,107,101,121, 0,101,108,101,109,115,116,114, 91, 51, 50, 93, 0,101,108, -101,109,115,105,122,101, 0, 98,108,111, 99,107, 0, 42,105,112,111, 0, 42,102,114,111,109, 0,116,111,116,107,101,121, 0,115, -108,117,114,112,104, 0, 42,108,105,110,101, 0, 42,102,111,114,109, 97,116, 0, 98,108,101,110, 0,108,105,110,101,110,111, 0, -115,116, 97,114,116, 0,101,110,100, 0,102,108, 97,103,115, 0, 99,111,108,111,114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, - 42,110, 97,109,101, 0,110,108,105,110,101,115, 0,108,105,110,101,115, 0, 42, 99,117,114,108, 0, 42,115,101,108,108, 0, 99, -117,114, 99, 0,115,101,108, 99, 0,109, 97,114,107,101,114,115, 0, 42,117,110,100,111, 95, 98,117,102, 0,117,110,100,111, 95, -112,111,115, 0,117,110,100,111, 95,108,101,110, 0, 42, 99,111,109,112,105,108,101,100, 0,109,116,105,109,101, 0,115,105,122, -101, 0,115,101,101,107, 0,112, 97,115,115,101,112, 97,114,116, 97,108,112,104, 97, 0, 97,110,103,108,101, 0, 99,108,105,112, -115,116, 97, 0, 99,108,105,112,101,110,100, 0,108,101,110,115, 0,111,114,116,104,111, 95,115, 99, 97,108,101, 0,100,114, 97, -119,115,105,122,101, 0,115,104,105,102,116,120, 0,115,104,105,102,116,121, 0, 89, 70, 95,100,111,102,100,105,115,116, 0, 89, - 70, 95, 97,112,101,114,116,117,114,101, 0, 89, 70, 95, 98,107,104,116,121,112,101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, - 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42,100,111,102, 95,111, 98, 0,102,114, 97,109,101,110,114, 0,102,114, 97,109,101, -115, 0,111,102,102,115,101,116, 0,115,102,114, 97, 0,102,105,101, 95,105,109, 97, 0, 99,121, 99,108, 0,111,107, 0,109,117, -108,116,105, 95,105,110,100,101,120, 0,108, 97,121,101,114, 0,112, 97,115,115, 0,109,101,110,117,110,114, 0, 42,115, 99,101, -110,101, 0,105, 98,117,102,115, 0, 42,103,112,117,116,101,120,116,117,114,101, 0, 42, 97,110,105,109, 0, 42,114,114, 0,115, -111,117,114, 99,101, 0,108, 97,115,116,102,114, 97,109,101, 0,116,112, 97,103,101,102,108, 97,103, 0,116,111,116, 98,105,110, -100, 0,120,114,101,112, 0,121,114,101,112, 0,116,119,115,116, 97, 0,116,119,101,110,100, 0, 98,105,110,100, 99,111,100,101, - 0, 42,114,101,112, 98,105,110,100, 0, 42,112, 97, 99,107,101,100,102,105,108,101, 0, 42,112,114,101,118,105,101,119, 0, 42, -114,101,110,100,101,114, 95,116,101,120,116, 0,108, 97,115,116,117,112,100, 97,116,101, 0,108, 97,115,116,117,115,101,100, 0, - 97,110,105,109,115,112,101,101,100, 0,103,101,110, 95,120, 0,103,101,110, 95,121, 0,103,101,110, 95,116,121,112,101, 0, 97, -115,112,120, 0, 97,115,112,121, 0,116,101,120, 99,111, 0,109, 97,112,116,111, 0,109, 97,112,116,111,110,101,103, 0, 98,108, -101,110,100,116,121,112,101, 0, 42,111, 98,106,101, 99,116, 0, 42,116,101,120, 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0, -112,114,111,106,120, 0,112,114,111,106,121, 0,112,114,111,106,122, 0,109, 97,112,112,105,110,103, 0,111,102,115, 91, 51, 93, - 0,115,105,122,101, 91, 51, 93, 0,114,111,116, 0,116,101,120,102,108, 97,103, 0, 99,111,108,111,114,109,111,100,101,108, 0, -112,109, 97,112,116,111, 0,112,109, 97,112,116,111,110,101,103, 0,110,111,114,109, 97,112,115,112, 97, 99,101, 0,119,104,105, - 99,104, 95,111,117,116,112,117,116, 0, 98,114,117,115,104, 95,109, 97,112, 95,109,111,100,101, 0,112, 97,100, 91, 55, 93, 0, -114, 0,103, 0, 98, 0,107, 0,100,101,102, 95,118, 97,114, 0, 99,111,108,102, 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111, -114,102, 97, 99, 0,100,105,115,112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, 0, 99,111,108,115,112,101, 99,102, 97, 99, 0, -109,105,114,114,102, 97, 99, 0, 97,108,112,104, 97,102, 97, 99, 0,100,105,102,102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, - 0,101,109,105,116,102, 97, 99, 0,104, 97,114,100,102, 97, 99, 0,114, 97,121,109,105,114,114,102, 97, 99, 0,116,114, 97,110, -115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, 0, 99,111,108,101,109,105,116,102, 97, 99, 0, 99,111,108,114,101,102,108,102, - 97, 99, 0, 99,111,108,116,114, 97,110,115,102, 97, 99, 0,100,101,110,115,102, 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, - 99, 0,114,101,102,108,102, 97, 99, 0,116,105,109,101,102, 97, 99, 0,108,101,110,103,116,104,102, 97, 99, 0, 99,108,117,109, -112,102, 97, 99, 0,107,105,110,107,102, 97, 99, 0,114,111,117,103,104,102, 97, 99, 0,112, 97,100,101,110,115,102, 97, 99, 0, -108,105,102,101,102, 97, 99, 0,115,105,122,101,102, 97, 99, 0,105,118,101,108,102, 97, 99, 0,112,118,101,108,102, 97, 99, 0, -115,104, 97,100,111,119,102, 97, 99, 0,122,101,110,117,112,102, 97, 99, 0,122,101,110,100,111,119,110,102, 97, 99, 0, 98,108, -101,110,100,102, 97, 99, 0,110, 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97,110,100,108,101, 0, 42,112,110, 97,109,101, 0, - 42,115,116,110, 97,109,101,115, 0,115,116,121,112,101,115, 0,118, 97,114,115, 0, 42,118, 97,114,115,116,114, 0, 42,114,101, -115,117,108,116, 0, 42, 99,102,114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42, -105,110,115,116, 97,110, 99,101, 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118, -101,114,115,105,111,110, 0, 97, 0,105,112,111,116,121,112,101, 0, 42,105,109, 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105, -109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, 51, 93, 0,115,116,121,112,101, 0,118,105,101, -119,115, 99, 97,108,101, 0,110,111,116,108, 97,121, 0, 99,117, 98,101,114,101,115, 0,100,101,112,116,104, 0,114,101, 99, 97, -108, 99, 0,108, 97,115,116,115,105,122,101, 0,102, 97,108,108,111,102,102, 95,116,121,112,101, 0,102, 97,108,108,111,102,102, - 95,115,111,102,116,110,101,115,115, 0,114, 97,100,105,117,115, 0, 99,111,108,111,114, 95,115,111,117,114, 99,101, 0,116,111, -116,112,111,105,110,116,115, 0,112,100,112, 97,100, 0, 42,112,115,121,115, 0,112,115,121,115, 95, 99, 97, 99,104,101, 95,115, -112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112, -111,105,110,116, 95,116,114,101,101, 0, 42,112,111,105,110,116, 95,100, 97,116, 97, 0,110,111,105,115,101, 95,115,105,122,101, - 0,110,111,105,115,101, 95,100,101,112,116,104, 0,110,111,105,115,101, 95,105,110,102,108,117,101,110, 99,101, 0,110,111,105, -115,101, 95, 98, 97,115,105,115, 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110,111,105,115,101, 95,102, 97, 99, 0,115,112,101, -101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, 91, 51, 93, 0,105,110,116,101,114,112, 95,116, -121,112,101, 0,102,105,108,101, 95,102,111,114,109, 97,116, 0,101,120,116,101,110,100, 0,105,110,116, 95,109,117,108,116,105, -112,108,105,101,114, 0,115,116,105,108,108, 95,102,114, 97,109,101, 0,115,111,117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, - 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0,110,111,105,115,101,115,105,122,101, 0,116,117,114, 98,117,108, 0, 98,114,105, -103,104,116, 0, 99,111,110,116,114, 97,115,116, 0,114,102, 97, 99, 0,103,102, 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116, -101,114,115,105,122,101, 0,109,103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, 97,114,105,116,121, 0,109,103, 95,111, 99,116, - 97,118,101,115, 0,109,103, 95,111,102,102,115,101,116, 0,109,103, 95,103, 97,105,110, 0,100,105,115,116, 95, 97,109,111,117, -110,116, 0,110,115, 95,111,117,116,115, 99, 97,108,101, 0,118,110, 95,119, 49, 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, - 0,118,110, 95,119, 52, 0,118,110, 95,109,101,120,112, 0,118,110, 95,100,105,115,116,109, 0,118,110, 95, 99,111,108,116,121, -112,101, 0,110,111,105,115,101,100,101,112,116,104, 0,110,111,105,115,101,116,121,112,101, 0,110,111,105,115,101, 98, 97,115, -105,115, 0,110,111,105,115,101, 98, 97,115,105,115, 50, 0,105,109, 97,102,108, 97,103, 0, 99,114,111,112,120,109,105,110, 0, - 99,114,111,112,121,109,105,110, 0, 99,114,111,112,120,109, 97,120, 0, 99,114,111,112,121,109, 97,120, 0,116,101,120,102,105, -108,116,101,114, 0, 97,102,109, 97,120, 0,120,114,101,112,101, 97,116, 0,121,114,101,112,101, 97,116, 0, 99,104,101, 99,107, -101,114,100,105,115,116, 0,110, 97, 98,108, 97, 0,105,117,115,101,114, 0, 42,110,111,100,101,116,114,101,101, 0, 42,112,108, -117,103,105,110, 0, 42,101,110,118, 0, 42,112,100, 0, 42,118,100, 0,117,115,101, 95,110,111,100,101,115, 0,108,111, 99, 91, - 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0,109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, - 93, 0,109,111,100,101, 0,116,111,116,101,120, 0,115,104,100,119,114, 0,115,104,100,119,103, 0,115,104,100,119, 98, 0,115, -104,100,119,112, 97,100, 0,101,110,101,114,103,121, 0,100,105,115,116, 0,115,112,111,116,115,105,122,101, 0,115,112,111,116, - 98,108,101,110,100, 0,104, 97,105,110,116, 0, 97,116,116, 49, 0, 97,116,116, 50, 0, 42, 99,117,114,102, 97,108,108,111,102, -102, 0,115,104, 97,100,115,112,111,116,115,105,122,101, 0, 98,105, 97,115, 0,115,111,102,116, 0, 99,111,109,112,114,101,115, -115,116,104,114,101,115,104, 0,112, 97,100, 53, 91, 51, 93, 0, 98,117,102,115,105,122,101, 0,115, 97,109,112, 0, 98,117,102, -102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102,108, 97,103, 0, 98,117,102,116,121,112,101, 0, -114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, 97,121, 95,115, 97,109,112,122, 0,114, 97,121, - 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112,101, 0, 97,114,101, 97, 95,115,105,122,101, 0, - 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101,122, 0, 97,100, 97,112,116, 95,116,104,114,101, -115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116,101,120, 97, 99,116, 0,115,104, 97,100,104, 97, -108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121,112,101, 0,115,107,121, 98,108,101,110,100,116, -121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,112,114,101, 97,100, 0,115,117, -110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122,101, 0, 98, 97, 99,107,115, 99, 97,116,116,101, -114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115,105,116,121, 0, 97,116,109, 95,116,117,114, 98, -105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105,110,103, 95,102, 97, 99,116,111,114, 0, 97,116, -109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,100,105,115,116, 97,110, 99,101, - 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0,115,107,121, 95,101,120,112,111,115,117,114,101, - 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, 0, 89, 70, 95,110,117,109,112,104,111,116,111, -110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112,104,100,101,112,116,104, 0, 89, 70, 95,117,115, -101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, - 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, 95,103,108,111,119,105,110,116, 0, 89, 70, 95, -103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101, -120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, 91, 51, 93, 0,100,101,110,115,105,116,121, 0, -101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0,114,101,102,108,101, 99,116,105,111,110, 0,101, -109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115,109,105,115,115,105,111,110, 95, 99,111,108, 91, - 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, 0,100,101,110,115,105,116,121, 95,115, 99, 97, -108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109,109,101,116,114,121, 0,115,116,101,112,115,105, -122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, 97,100,101, 95,116,121,112,101, 0,112,114,101, - 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101,112,115,105,122,101, 0,109,115, 95,100,105,102, -102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116,101,112,115, 0,109, 97,116,101,114,105, 97,108, - 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112,101, 99, 98, 0,109,105,114,114, 0,109,105,114, -103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98,103, 0, 97,109, 98, 0,101,109,105,116, 0, 97, -110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111,114, 0, 97,108,112,104, 97, 0,114,101,102, 0, -115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115,108,117, 99,101,110, 99,121, 0,118,111,108, 0, -102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95,109,105,114, 95,105, 0,102,114,101,115,110,101, -108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0,102,105,108,116,101,114, 0,116,120, 95,108,105, -109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100,101,112,116,104, 0,114, 97,121, 95,100,101,112, -116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101,100, 50, 0,103,108,111,115,115, 95,109,105,114, - 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115,115, 95,109,105,114, 0,115, 97,109,112, 95,103, -108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,109,105,114, 0, 97,100, 97,112,116, 95, -116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111,115,115, 95,109,105,114, 0,100,105,115,116, 95, -109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, 95,102,108, 97,103, 0,109,111,100,101, 95,108, - 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0,114,105,110,103, 99, 0,104, 97,115,105,122,101, - 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102,108, 97,114,101, 98,111,111,115,116, 0,115,116, -114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0,115,116,114, 97,110,100, 95,101, 97,115,101, 0, -115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110,100, 95,109,105,110, 0,115,116,114, 97,110,100, - 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118,110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, - 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0,115,101,112,116,101,120, 0,114,103, 98,115,101, -108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, 95,108, 97,109,112, 0,109,108, 95,102,108, 97, -103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115,104, 97,100,101,114, 0,114,111,117,103,104,110, -101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0,114,109,115, 0,100, 97,114,107,110,101,115,115, - 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, 99, 0,114, 97,109,112,105,110, 95, 99,111,108, - 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101,110,100, 95, 99,111,108, 0,114, 97,109,112, 98, -108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0,112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, - 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103,114,111,117,112, 0,102,114,105, 99,116,105,111, -110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0,120,121,102,114,105, 99,116, 0,100,121,110, 97, -109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115,115,115, 95, 99,111,108, 91, 51, 93, 0,115,115, -115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115,115, 95,105,111,114, 0,115,115,115, 95, 99,111, -108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95,102,114,111,110,116, 0,115,115,115, 95, 98, 97, - 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115,101,116, 0,109, 97,112,116,111, 95,116,101,120, -116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97,109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0, -105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101,108, 99,111,108, 49, 0,115,101,108, 99,111,108, - 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0,101,120,112,122, 0,114, 97,100, 0,114, 97,100, - 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, 0,100,105,115,112, 0, 42,101,100,105,116,101, -108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, 99,111,108, 0,119,105,114,101,115,105,122,101, - 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42,108, 97,115,116,101,108,101,109, 0,118,101, 99, - 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, - 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, 0,112,110,116,115,117, 0,112,110,116,115,118, - 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114,117, 0,111,114,100,101,114,118, 0,102,108, 97, -103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110,111,116,115,118, 0,116,105,108,116, 95,105,110, -116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99,104, 97,114,105,100,120, 0,107,101,114,110, 0, -104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101,118,111, 98,106, 0, 42,116, 97,112,101,114,111, - 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116,104, 0, 42,107,101,121, 0, 98,101,118, 0,100, -114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, 97,100, 91, 50, 93, 0,116,119,105,115,116, 95, -115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101,115,111,108, 0,119,105,100,116,104, 0,101,120, -116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114,101,115,111,108,118, 95,114,101,110, 0, 97, 99, -116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101,109,111,100,101, 0,115,112, 97, 99,105,110,103, - 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122,101, 0,119,111,114,100,115,112, 97, 99,101, 0, -117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121,111,102, 0,108,105,110,101,119,105,100,116,104, - 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105,116,102,111,110,116, 0,102, 97,109,105,108,121, - 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, 42,118,102,111,110,116,105, 0, 42,118,102,111, -110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116,111,116, 98,111,120, 0, 97, 99,116, 98,111,120, - 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, 0, 42,115,116,114,105,110,102,111, 0, 99,117, -114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, - 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118,101,114,116, 0, 42,109, 99,111,108, 0, 42,109, -115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109,115,101,108,101, 99,116, 0, 42,101,100,105,116, - 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, 97,116, 97, 0,116,111,116,101,100,103,101, 0, -116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99,116, 95,102, 97, 99,101, 0,101,100,105,116,102, -108, 97,103, 0, 99,117, 98,101,109, 97,112,115,105,122,101, 0,115,109,111,111,116,104,114,101,115,104, 0,115,117, 98,100,105, -118, 0,115,117, 98,100,105,118,114, 0,115,117, 98,115,117,114,102,116,121,112,101, 0, 42,109,114, 0, 42,112,118, 0, 42,116, -112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, 0,116,114, 97,110,115,112, 0,116,105,108,101, - 0,117,110,119,114, 97,112, 0,118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0,101,100, 99,111,100,101, 0, 99,114,101, 97,115, -101, 0, 98,119,101,105,103,104,116, 0,100,101,102, 95,110,114, 0, 42,100,119, 0,116,111,116,119,101,105,103,104,116, 0, 99, -111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, 50, 93, 0,105,110,100,101,120, 0,102, 0,105, - 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100,105,115,112, 0, 40, 42,100,105,115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0, -109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108,102, 97, 99,101,115, 0, 42,101,100,103,101,115, - 0, 42,118,101,114,116,115, 0,108,101,118,101,108,115, 0,108,101,118,101,108, 95, 99,111,117,110,116, 0, 99,117,114,114,101, -110,116, 0,110,101,119,108,118,108, 0,101,100,103,101,108,118,108, 0,112,105,110,108,118,108, 0,114,101,110,100,101,114,108, -118,108, 0,117,115,101, 95, 99,111,108, 0, 42,101,100,103,101, 95,102,108, 97,103,115, 0, 42,101,100,103,101, 95, 99,114,101, - 97,115,101,115, 0, 42,118,101,114,116, 95,109, 97,112, 0, 42,101,100,103,101, 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, - 99,101,115, 0, 42,111,108,100, 95,101,100,103,101,115, 0, 42,101,114,114,111,114, 0,109,111,100,105,102,105,101,114, 0,115, -117, 98,100,105,118, 84,121,112,101, 0,114,101,110,100,101,114, 76,101,118,101,108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, - 42,109, 67, 97, 99,104,101, 0,100,101,102, 97,120,105,115, 0,112, 97,100, 91, 54, 93, 0,108,101,110,103,116,104, 0,114, 97, -110,100,111,109,105,122,101, 0,115,101,101,100, 0, 42,111, 98, 95, 97,114,109, 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, - 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42,111,102,102,115,101,116, 95,111, 98, 0,111,102, -102,115,101,116, 91, 51, 93, 0,115, 99, 97,108,101, 91, 51, 93, 0,109,101,114,103,101, 95,100,105,115,116, 0,102,105,116, 95, -116,121,112,101, 0,111,102,102,115,101,116, 95,116,121,112,101, 0, 99,111,117,110,116, 0, 97,120,105,115, 0,116,111,108,101, -114, 97,110, 99,101, 0, 42,109,105,114,114,111,114, 95,111, 98, 0,115,112,108,105,116, 95, 97,110,103,108,101, 0,118, 97,108, -117,101, 0,114,101,115, 0,118, 97,108, 95,102,108, 97,103,115, 0,108,105,109, 95,102,108, 97,103,115, 0,101, 95,102,108, 97, -103,115, 0, 98,101,118,101,108, 95, 97,110,103,108,101, 0,100,101,102,103,114,112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42, -100,111,109, 97,105,110, 0, 42,102,108,111,119, 0, 42, 99,111,108,108, 0,116,105,109,101, 0, 42,116,101,120,116,117,114,101, - 0,115,116,114,101,110,103,116,104, 0,100,105,114,101, 99,116,105,111,110, 0,109,105,100,108,101,118,101,108, 0,116,101,120, -109, 97,112,112,105,110,103, 0, 42,109, 97,112, 95,111, 98,106,101, 99,116, 0,117,118,108, 97,121,101,114, 95,110, 97,109,101, - 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, 95,116,109,112, 0, 42,112,114,111,106,101, 99,116,111,114,115, 91, 49, 48, 93, - 0, 42,105,109, 97,103,101, 0,110,117,109, 95,112,114,111,106,101, 99,116,111,114,115, 0, 97,115,112,101, 99,116,120, 0, 97, -115,112,101, 99,116,121, 0,112,101,114, 99,101,110,116, 0,102, 97, 99,101, 67,111,117,110,116, 0,102, 97, 99, 0,114,101,112, -101, 97,116, 0, 42,111, 98,106,101, 99,116, 99,101,110,116,101,114, 0,115,116, 97,114,116,120, 0,115,116, 97,114,116,121, 0, -104,101,105,103,104,116, 0,110, 97,114,114,111,119, 0,115,112,101,101,100, 0,100, 97,109,112, 0,102, 97,108,108,111,102,102, - 0,116,105,109,101,111,102,102,115, 0,108,105,102,101,116,105,109,101, 0,100,101,102,111,114,109,102,108, 97,103, 0,109,117, -108,116,105, 0, 42,112,114,101,118, 67,111,115, 0,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112, 97,114,101,110, -116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42,105,110,100,101,120, 97,114, 0,116,111,116,105, -110,100,101,120, 0,102,111,114, 99,101, 0, 42, 99,108,111,116,104, 79, 98,106,101, 99,116, 0, 42,115,105,109, 95,112, 97,114, -109,115, 0, 42, 99,111,108,108, 95,112, 97,114,109,115, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, - 99,104,101,115, 0, 42,120, 0, 42,120,110,101,119, 0, 42,120,111,108,100, 0, 42, 99,117,114,114,101,110,116, 95,120,110,101, -119, 0, 42, 99,117,114,114,101,110,116, 95,120, 0, 42, 99,117,114,114,101,110,116, 95,118, 0, 42,109,102, 97, 99,101,115, 0, -110,117,109,118,101,114,116,115, 0,110,117,109,102, 97, 99,101,115, 0, 42, 98,118,104,116,114,101,101, 0, 42,118, 0, 42,100, -109, 0, 99,102,114, 97, 0,111,112,101,114, 97,116,105,111,110, 0,118,101,114,116,101,120, 0,116,111,116,105,110,102,108,117, -101,110, 99,101, 0,103,114,105,100,115,105,122,101, 0,110,101,101,100, 98,105,110,100, 0, 42, 98,105,110,100,119,101,105,103, -104,116,115, 0, 42, 98,105,110,100, 99,111,115, 0,116,111,116, 99, 97,103,101,118,101,114,116, 0, 42,100,121,110,103,114,105, -100, 0, 42,100,121,110,105,110,102,108,117,101,110, 99,101,115, 0, 42,100,121,110,118,101,114,116,115, 0, 42,112, 97,100, 50, - 0,100,121,110,103,114,105,100,115,105,122,101, 0,100,121,110, 99,101,108,108,109,105,110, 91, 51, 93, 0,100,121,110, 99,101, -108,108,119,105,100,116,104, 0, 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, 93, 0,116,111,116,100,109,118,101,114,116, 0, -116,111,116,100,109,101,100,103,101, 0,116,111,116,100,109,102, 97, 99,101, 0,112,115,121,115, 0,112,111,115,105,116,105,111, -110, 0,114, 97,110,100,111,109, 95,112,111,115,105,116,105,111,110, 0, 42,102, 97, 99,101,112, 97, 0,118,103,114,111,117,112, - 0,112,114,111,116,101, 99,116, 0, 42,117,110,100,111, 95,118,101,114,116,115, 0,117,110,100,111, 95,118,101,114,116,115, 95, -116,111,116, 0,117,110,100,111, 95,115,105,103,110, 97,108, 0,108,118,108, 0,116,111,116,108,118,108, 0,115,105,109,112,108, -101, 0, 42,102,115,115, 0, 42,116, 97,114,103,101,116, 0, 42, 97,117,120, 84, 97,114,103,101,116, 0,118,103,114,111,117,112, - 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101,101,112, 68,105,115,116, 0,115,104,114,105,110,107, 84,121,112,101, 0,115,104, -114,105,110,107, 79,112,116,115, 0,112,114,111,106, 65,120,105,115, 0,115,117, 98,115,117,114,102, 76,101,118,101,108,115, 0, - 42,111,114,105,103,105,110, 0,102, 97, 99,116,111,114, 0,108,105,109,105,116, 91, 50, 93, 0,111,114,105,103,105,110, 79,112, -116,115, 0,112,110,116,115,119, 0,111,112,110,116,115,117, 0,111,112,110,116,115,118, 0,111,112,110,116,115,119, 0,116,121, -112,101,117, 0,116,121,112,101,118, 0,116,121,112,101,119, 0,102,117, 0,102,118, 0,102,119, 0,100,117, 0,100,118, 0,100, -119, 0, 42,100,101,102, 0, 42,108, 97,116,116,105, 99,101,100, 97,116, 97, 0,108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, - 0, 42,101,100,105,116,108, 97,116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, 0, 42,115, 99,117,108,112,116, 0,112, 97,114, -116,121,112,101, 0,112, 97,114, 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0,112, 97,114,115,117, 98,115,116,114, 91, 51, 50, - 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114,111,120,121, 0, 42,112,114,111,120,121, 95,103,114,111,117,112, 0, 42,112,114, -111,120,121, 95,102,114,111,109, 0, 42, 97, 99,116,105,111,110, 0, 42,112,111,115,101,108,105, 98, 0, 42,112,111,115,101, 0, - 42,103,112,100, 0, 99,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108,115, 0,100,101,102, 98, 97,115,101, 0, -109,111,100,105,102,105,101,114,115, 0,114,101,115,116,111,114,101, 95,109,111,100,101, 0, 42,109, 97,116, 98,105,116,115, 0, - 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0, -100,114,111,116, 91, 51, 93, 0,100,113,117, 97,116, 91, 52, 93, 0,114,111,116, 65,120,105,115, 91, 51, 93, 0,100,114,111,116, - 65,120,105,115, 91, 51, 93, 0,114,111,116, 65,110,103,108,101, 0,100,114,111,116, 65,110,103,108,101, 0,111, 98,109, 97,116, - 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, 91, 52, 93, 0,108, 97,121, 0, 99,111,108, 98,105,116, -115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99,116,102,108, 97,103, 0,116,114, 97, 99,107,102,108, 97, -103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105,112,111,102,108, 97,103, 0,105,112,111,119,105,110, 0, -115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, 0, 98,111,117,110,100,116,121,112,101, 0,100,117,112, -111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100,117,112,101,110,100, 0,115,102, 0,109, 97,115,115, 0, -100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111,114,109,102, 97, 99,116,111,114, 0,114,100, 97,109,112, -105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, 0,109,105,110, 95,118,101,108, 0,109, 95, 99,111,110, -116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101,115,104,111,108,100, 0,114,111,116,109,111,100,101, 0, -100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116,121,112,101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109, -112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, 99,101,115, 99, 97, 0,112,114,111,112, 0,115,101,110, -115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, 99,116,117, 97,116,111,114,115, 0, 98, 98,115,105,122, -101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, 97,103, 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, - 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105,115,111,116,114,111,112,105, 99, 70,114,105, 99,116,105, -111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0,110,108, 97,115,116,114,105,112,115, 0,104,111,111,107, -115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42,115,111,102,116, 0, 42,100,117,112, 95,103,114,111,117, -112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115,116,114,105, 99,116,102,108, 97,103, 0,115,104, 97,112, -101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97,108, 99,111, 0, 98,111,100,121, 95,116,121,112,101, 0, - 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 42,100,101,114,105,118,101,100, 68,101,102,111,114,109, - 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115,116, 68, 97,116, 97, 77, 97,115,107, 0,115,116, 97,116, -101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97,109,112, 0,112, 99, 95,105,100,115, 0, 42,100,117,112, -108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99,116,105,118,101, 0,111,114,105,103,108, 97,121, 0,110, -111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, - 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105,101,108,100, 0,115,104, 97,112,101, 0,116,101,120, 95, -109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105,115, 0,122,100,105,114, 0,102, 95,115,116,114,101,110, -103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0,102, 95,115,105,122,101, 0,102, 95,112,111,119,101,114, - 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, 95,112,111,119,101,114, 95,114, 0,109, 97,120,114, 97, -100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, 0,112,100,101,102, 95,114,100, 97,109,112, 0,112,100, -101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, 0,112,100,101,102, 95,114,102,114,105, 99,116, 0, 97, - 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, 97,109,112, 0,112,100,101,102, 95,115, 98,105,102,116, - 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95,102, 97, 99, 0, 99,108,117,109,112, 95,112,111,119, 0, -107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97,112,101, 0,107,105,110,107, 95, 97,109,112, 0,102,114, -101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42,114,110,103, 0,102, 95,110,111,105,115,101, 0,119,101, -105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, 97,118,105,116,121, 0,114,116, 91, 51, 93, 0,102,114, - 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95,116,121,112,101,115, 0, 42,105,110,100,101,120, 95, 97, -114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, 91, 56, 93, 0,115,116,101,112, 0,115,105,109,102,114, - 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100,102,114, 97,109,101, 0,101,100,105,116,102,114, 97,109, -101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, 54, 52, 93, 0,112,114,101,118, 95,110, 97,109,101, 91, - 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, 50, 52, 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, - 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, 41, 40, 41, 0,108,105,110, 83,116,105,102,102, 0, 97, -110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116,101,114, 97,116,105,111,110,115, 0,112,105,116,101,114, - 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, 0, 99,105,116,101,114, 97,116,105,111,110,115, 0,107, - 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, 83, 83, 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, - 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, - 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, 0,107, 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, - 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, 0, 99,111,108,108,105,115,105,111,110,102,108, 97,103, -115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116,105,111,110,115, 0,119,101,108,100,105,110,103, 0,116, -111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, 98,115,112,114,105,110,103, 0,109,115,103, 95,108,111, - 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, 97,115,115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97, -115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102,114,105, 99,116, 0,114,107,108,105,109,105,116, 0,112, -104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115,112,114,105,110,103, 0,103,111, 97,108,102,114,105, 99, -116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0,100,101,102,103,111, 97,108, 0,118,101,114,116,103,114, -111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, 97,108, 91, 51, 50, 93, 0,102,117,122,122,121,110,101, -115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99,116, 0,110, 97,109,101,100, 86, 71, 95, 83,112,114,105, -110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101,114,118, 97,108, 0,108,111, 99, 97,108, 0,115,111,108, -118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111,116,112,111,105,110,116,107,101,121, 0,115,101, 99,111, -110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, 97,108,108,100, 97,109,112, 0, 98, 97,108,108,115,116, -105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101,100,103,101, 0,109,105,110,108,111,111,112,115, 0,109, - 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118,101,114, 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0, -115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, 97,116, 99,104, 0,115,104,101, 97,114,115,116,105,102, -102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99,104,101, 0, 42,101,102,102,101, 99,116,111,114, 95,119, -101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97,100,118, 97,110, 99,101,100,111,112,116,105,111,110,115, - 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101,118,105,101,119,114,101,115,120,121,122, 0,114,101, 97, -108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111,100,101, 0,114,101,110,100,101,114, 68,105,115,112,108, - 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97,108,117,101, 0,118,105,115, 99,111,115,105,116,121, 77, -111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110,101,110,116, 0,103,114, 97,118,120, 0,103,114, 97,118, -121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, 97,110,105,109, 69,110,100, 0,103,115,116, 97,114, 0, -109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0,105,110,105, 86,101,108,121, 0,105,110,105, 86,101,108, -122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117,114,102, 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0, -115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, 98, 98, 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83, -105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100,111,109, 97,105,110, 78,111,118,101, 99,103,101,110, 0, -118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114,116, 83,108,105,112, 86, 97,108,117,101, 0,103,101,110, -101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, 97,116,101, 80, 97,114,116,105, 99,108,101,115, 0,115, -117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117,114,102, 97, 99,101, 83,117, 98,100,105,118,115, 0,112, - 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 65,108,112,104, 97, 0, -102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, 83,117,114,102, 78,111,114,109, 97,108,115, 0, 99,112, -115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, 69,110,100, 0, 99,112,115, 81,117, 97,108,105,116,121, - 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0, 97,116,116,114, 97, 99,116,102,111,114, - 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 83,116,114,101,110,103,116,104, 0,118, -101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, 0,108, 97,115,116,103,111,111,100,102,114, 97,109,101, - 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, 0,104,111,114, 98, 0,104,111,114,107, 0,122,101,110, -114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97,109, 98,107, 0,102, 97,115,116, 99,111,108, 0,101,120, -112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108,105,110,102, 97, 99, 0,108,111,103,102, 97, 99, 0,103, -114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, 82, 97,100,105,117,115, 0,115,107,121,116,121,112,101, - 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115,105, 99,115, 69,110,103,105,110,101, 0,116,105, 99,114, - 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112,104,121,115,117, 98,115,116,101,112, 0,109, 97,120,112, -104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, 97, 0,109,105,115,116,100,105,115,116, 0,109,105,115, -116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, 97,114, 98, 0,115,116, 97,114,107, 0,115,116, 97,114, -115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115,116, 97,114,100,105,115,116, 0,115,116, 97,114, 99,111, -108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101,110,100, 0,100,111,102,109,105,110, 0,100,111,102,109, - 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, 99, 0, 97,111,101,110,101,114,103,121, 0, 97,111, 98, -105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, 97,111,109,105,120, 0, 97,111, 99,111,108,111,114, 0, - 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, 95, 97,100, 97,112,116, 95,115,112,101,101,100, 95,102, - 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, 0, 97,111, 95, 97,112,112,114,111,120, 95, 99,111,114, -114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0, 97,111, 95,103, 97,116,104,101,114, - 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95,112, 97,115,115,101,115, 0, 42, 97,111,115,112,104,101, -114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111,108, 0,115,120, 0,115,121, 0, 42,108,112, 70,111,114, -109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114,109, 97,116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, - 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100,119, 75,101,121, 70,114, 97,109,101, 69,118,101,114,121, - 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, 80,101,114, 83,101, 99,111,110,100, 0,100,119, 70,108, - 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118,101,114,121, 0, 97,118,105, 99,111,100,101, 99,110, 97, -109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42,112, 97,100, 0, 99,100, 83,105,122,101, 0,113,116, 99, -111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, 99, 0, 97,117,100,105,111, 95, 99,111,100,101, 99, 0, -118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105, -111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111,108,117,109,101, 0,103,111,112, 95,115,105,122,101, 0, -114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, 95,114, 97,116,101, 0,114, 99, 95, 98,117,102,102,101, -114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95,115,105,122,101, 0,109,117,120, 95,114, 97,116,101, 0, -109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, 95,111,102, 95,115,111,117,110,100, 0,100,111,112,112, -108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99,101, 95,109,111,100,101,108, 0, 42,109, 97,116, 95,111, -118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101,114,114,105,100,101, 0,108, 97,121, 95,122,109, 97,115, -107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, 0,112, 97,115,115, 95,120,111,114, 0, 42, 97,118,105, - 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99,100, 97,116, 97, 0,102,102, 99,111,100,101, 99,100, 97, -116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97,103,101,115, 0,102,114, 97,109, 97,112,116,111, 0,116, -104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108,117,114,102, 97, 99, 0,101,100,103,101, 82, 0,101,100, -103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101,101,110, 0,120,112,108, 97,121, 0,121,112,108, 97,121, - 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114,116, 49, 0,114,116, 50, 0,115,116,101,114,101,111,109, -111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115,101,116, 0,109, 97,120,105,109,115,105,122,101, 0,120, -115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, 97,114,116,115, 0,119,105,110,112,111,115, 0,112,108, - 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116,121,112,101, 0,113,117, 97,108,105,116,121, 0,100,105, -115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, 97,100, 50, 0,115, 99,101,109,111,100,101, 0,114, 97, -121,116,114, 97, 99,101, 95,111,112,116,105,111,110,115, 0,114, 97,121,116,114, 97, 99,101, 95,115,116,114,117, 99,116,117,114, -101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112,104, 97,109,111,100,101, 0,111,115, 97, 0,102, -114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116,121, 0, 98,111,114,100,101,114, 0,100,105,115, -112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0,120, 97,115,112, 0,121, 97,115,112, 0,102,114, -115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108,111,114, 95,109,103,116, 95,102,108, 97,103, 0, -112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111,115,116,115, 97,116, 0,100,105,116,104,101,114, - 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, 98, 97,107,101, 95,102,105,108,116,101,114, 0, - 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, 98, 97,107,101, 95,110,111,114,109, 97,108, 95, -115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105,116, 0, 98, 97,107,101, 95,109, 97,120,100,105, -115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107,101, 95,112, 97,100, 0, 71, 73,113,117, 97,108, -105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, 0, 71, 73,112,104,111,116,111,110,115, 0, 71, - 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111,114,116,120,109,108, 0, 89, 70, 95,110,111, 98, -117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97,100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, - 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112,101,114,115, 97,109,112,108,101, 0, 71, 73,112, -104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116,111,110,115, 0, 71, 73,112,104,111,116,111,110, -114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, - 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, 73,115,104, 97,100,111,119,113,117, 97,108,105, -116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111,119,101,114, 0, 71, 73,105,110,100,105,114,112, -111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112,111,115,117,114,101, 0, 89, 70, 95,114, 97,121, - 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, 89, 70, 95, 65, 65,116,104,114,101,115,104,111, -108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115, -116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117,100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, - 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, 93, 0,115,105,109,112,108,105,102,121, 95,115, -117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100,111,119,115, 97,109,112,108,101,115, 0,115,105, -109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109,112,108,105,102,121, 95, 97,111,115,115,115, 0, - 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, 97, 99,107, 0, 99,105,110,101,111,110,103, 97, -109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100,101,112,116,104, 0,114,112, 97,100, 51, 0,100, -111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, 97,110,103,108,101, 0,100,111,109,101,116,105, -108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116,101,120,116, 0,101,110,103,105,110,101, 91, 51, - 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98,115,117,114,102, 95,109, 97,120, 0,115,104, 97, -100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114,114,111,114, 0,116,105,108,116, 0,114,101,115, - 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, 0,109, 97,116,109,111,100,101, 0,102,114, 97, -109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, - 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114,117,115,104, 95, 99,111,117,110,116, 0, 42,112, - 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117,114,115,111,114, 95, 99,111,108, 91, 52, 93, 0, -112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101,100, 0,110,111,114,109, 97,108, 95, 97,110,103, -108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101,114,116, 0,116,111,116,114,101,107,101,121, 0, -116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, 98,114,117,115,104, 91, 55, 93, 0,101,109,105, -116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0,101,100,105,116,116,121,112,101, 0,100,114, 97, -119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, - 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101,116, 95,115,105,122,101, 0,116, 97, 98,108,101, -116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, 0, 42,118,112, 97,105,110,116, 95,112,114,101, -118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105,110,116, 0, 42,119,112, 97,105,110,116, 0,118, -103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116,121,112,101, 0,101,100,105,116, 98,117,116,102, -108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103,114, 0,116,117,114,110, 0,101,120,116,114, 95, -111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97,108,115,105,122,101, 0, 97,117,116,111,109,101, -114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118,101,114,116,105, 99,101,115, 0,117,110,119,114, - 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0,117,118, 99, 97,108, 99, 95, 99,117, 98,101,115, -105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, 99, 97,108, 99, 95,109, 97,112,100,105,114, 0, -117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97,108, 99, 95,102,108, 97,103, 0,117,118, 95,102, -108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111, -105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, 0,112, 97,114,116,105, 99,108,101, 0,112,114, -111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, 99,116, 95,116,104,114,101,115,104, 0, 99,108, -101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109,111,100,101, 0, 97,117,116,111,107,101,121, 95, -102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116,111,112,111, 95,112, 97,105,110,116, 95,116,111, -111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95,100,105,118, 0,114,101,116,111,112,111, 95,104, -111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100,105,118, 95,116,121,112,101, 0,115,107,103,101, -110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,105,110,116, -101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108,100, 95,101,120,116,101,114,110, 97,108, 0,115, -107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,108, -105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 99,111,114, -114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,115,121,109,109,101,116,114,121, 95,108,105, -109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97,110,103,108,101, 95,119,101,105,103,104,116, 0, -115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116,104, 95,119,101,105,103,104,116, 0,115,107,103, -101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, 95,119,101,105,103,104,116, 0,115,107,103,101, -110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 0,115,107,103,101,110, 95,112,111, -115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110,115, 91, - 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, 0, 42,115,107,103,101,110, 95,116,101,109,112, -108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105, -110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98,100,105,118,105,115,105,111,110, 95,110,117,109, - 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, - 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, 95,115,105,100,101, 95,115,116,114,105,110,103, - 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, 91, 56, 93, 0,101,100,103,101, 95,109,111,100, -101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97,103, 0,115,110, 97,112, 95,116, 97,114,103,101, -116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95,109,111,100,101, 0,116,111,116,111, 98,106, 0, -116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116,109,101, -115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121,115,116, -101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42,115,101, -116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, 51, 93, - 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42,101,100, - 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, 97,110, -115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104,101, 68, - 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97,109,101, - 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107,101,121, -105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110,103,115, - 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, 91, 52, - 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,101, -114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101,114,115, -109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, 97,116, - 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, 97,109, -122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101,114,115, -112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, 97,108, -118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116,104,115, - 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, 52, 93, - 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101,116,121, -112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0,108, 97, -121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101,110,116, -114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99,101,110, -101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103,114,105, -100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0,103,114, -105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107,101,121, -102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100,114, 97, -119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97,119, 0, -122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, 42,112, -114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115,107, 0, -109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0,115, 99, -114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111,109, 0, -107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110,120, 0, -111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0,116, 97, - 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, 0,103, -104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0,109, 97, -105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0,112,114, -101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, 0,114, -101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111,109, 0, -116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101,110, 97, -109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, 95, 98, -111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, 95,102, -112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, 97,109, -115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114,115, 95, -110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121,111,117, -116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, 0,116, -114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, 50, 93, - 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111,117,116, -108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, 0, 99, -117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, 0,115, -116,105, 99,107,121, 0,100,116, 95,117,118,115,116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, 0, 42, -116,101,120,116, 0,116,111,112, 0,118,105,101,119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105,100,116, -104, 0,108,105,110,101,110,114,115, 95,116,111,116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, 0,116, - 97, 98,110,117,109, 98,101,114, 0,115,104,111,119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0,108,105, -118,101, 95,101,100,105,116, 0,112,105,120, 95,112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, 0,116, -120,116, 98, 97,114, 0,119,111,114,100,119,114, 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115,116,114, - 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99,101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, 0, 42, -112,121, 95,101,118,101,110,116, 0, 42,112,121, 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101,114, 99, - 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95,103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, 99,101, - 0,115, 99,114,105,112,116,110, 97,109,101, 91, 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, 93, 0, - 42,115, 99,114,105,112,116, 0, 42, 98,117,116, 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, 97,115, -112,101, 99,116, 0, 42, 99,117,114,102,111,110,116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0,116,114, -101,101,116,121,112,101, 0,116,101,120,102,114,111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105,108,101, -115,121, 0,118,105,101,119,114,101, 99,116, 0, 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108,108,112, -111,115, 0,115, 99,114,111,108,108,104,101,105,103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116,118, 97, -108, 0,112,114,118, 95,119, 0,112,114,118, 95,104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, 40, 42, -114,101,116,117,114,110,102,117,110, 99, 95,101,118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, - 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114,103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105,109,103, - 0,108,101,110, 95, 97,108,108,111, 99, 0, 99,117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114,111,108, -108, 98, 97, 99,107, 0,104,105,115,116,111,114,121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97,109,101, - 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0,112,111, -105,110,116,115, 0,107,101,114,110,105,110,103, 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111,119, 0, -115,104, 97,100,120, 0,115,104, 97,100,121, 0,115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, 99,111, -108,111,114, 0,112, 97,110,101,108,116,105,116,108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103,101,116, -108, 97, 98,101,108, 0,119,105,100,103,101,116, 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101,108, 99, -104, 97,114,115, 0,109,105,110,119,105,100,103,101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99,101, 0, -116,101,109,112,108, 97,116,101,115,112, 97, 99,101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115,112, 97, - 99,101,120, 0, 98,117,116,116,111,110,115,112, 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97,110,101, -108,111,117,116,101,114, 0,112, 97,100, 91, 49, 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, 91, 52, - 93, 0,105,110,110,101,114, 95,115,101,108, 91, 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, 0,116, -101,120,116, 95,115,101,108, 91, 52, 93, 0,115,104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97,100,101, -100,111,119,110, 0,105,110,110,101,114, 95, 97,110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95,115,101, -108, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101,108, 91, - 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 95, -115,101,108, 91, 52, 93, 0,119, 99,111,108, 95,114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0,119, 99, -111,108, 95,116,101,120,116, 0,119, 99,111,108, 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, 0,119, - 99,111,108, 95,116,111,103,103,108,101, 0,119, 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108,105,100, -101,114, 0,119, 99,111,108, 95,109,101,110,117, 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111,108, 95, -109,101,110,117, 95, 98, 97, 99,107, 0,119, 99,111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, 98,111, -120, 0,119, 99,111,108, 95,115, 99,114,111,108,108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, 99,111, -108, 95,115,116, 97,116,101, 0,105, 99,111,110,102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116,105,116, -108,101, 91, 52, 93, 0,116,101,120,116, 95,104,105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97,100,101, -114, 95,116,105,116,108,101, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100,101,114, - 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,105,116, -108,101, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, - 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108,105,115, -116, 95,116,101,120,116, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101,108, 91, - 52, 93, 0,112, 97,110,101,108, 95,116,105,116,108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, 93, 0, -112, 97,110,101,108, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97,100,101, - 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, 0,115, -101,108,101, 99,116, 91, 52, 93, 0,108, 97,109,112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111,117,112, - 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, 52, 93, - 0,118,101,114,116,101,120, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, - 91, 52, 93, 0,101,100,103,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, 93, 0, -101,100,103,101, 95,115,104, 97,114,112, 91, 52, 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0,102, 97, - 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, 52, 93, - 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98,111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95,112,111, -115,101, 91, 52, 93, 0,115,116,114,105,112, 91, 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, 0, 99, -102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99,104, 97, -110,110,101,108, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105,122,101, - 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110,116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, 0,115, -121,110,116, 97,120, 98, 91, 52, 93, 0,115,121,110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, 93, 0, -109,111,118,105,101, 91, 52, 93, 0,105,109, 97,103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100,105,111, - 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105,116,105, -111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, 52, 93, - 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95, -115,101,108,101, 99,116, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104,112, 97, -100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116,102,105, -108,101, 0,116,105,112,111, 0,116,105,110,102,111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116,115,101, -113, 0,116,105,109, 97, 0,116,105,109, 97,115,101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109,101, 0, -116,110,111,100,101, 0,116,108,111,103,105, 99, 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, 93, 0, - 97, 99,116,105,118,101, 95,116,104,101,109,101, 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112,102,108, - 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100,105,114, - 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, 49, 54, - 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, 49, 54, - 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, 93, 0, -121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101,102,108, - 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110,103,117, - 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105,122,101, - 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111,114,109, - 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0,116,114, - 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114,101,115, -104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0,107,101, -121,109, 97,112,115, 0,107,101,121, 99,111,110,102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101,112,115, - 0,117,110,100,111,109,101,109,111,114,121, 0,103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103,112, 95, -101,117, 99,108,105,100,101, 97,110,100,105,115,116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116,116,105, -110,103,115, 0,116, 98, 95,108,101,102,116,109,111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, 0,108, -105,103,104,116, 91, 51, 93, 0,116,119, 95,104,111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95,104, 97, -110,100,108,101,115,105,122,101, 0,116,119, 95,115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101,120, 99, -111,108,108,101, 99,116,114, 97,116,101, 0,119,109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0,109,101, -109, 99, 97, 99,104,101,108,105,109,105,116, 0,112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97,109,101, -115,101,114,118,101,114,112,111,114,116, 0,112, 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110,116,101, -114, 95,100,105, 97, 0,114,118,105,115,105,122,101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, 95,102, -105,108,101,115, 0,115,109,111,111,116,104, 95,118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0,110,100, -111,102, 95,112, 97,110, 0,110,100,111,102, 95,114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112,111, 95, -110,101,119, 0,118,101,114,115,101,109, 97,115,116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, 91, 49, - 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99,108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101,114,116, - 98, 97,115,101, 0,101,100,103,101, 98, 97,115,101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101,110,101, - 0,102,117,108,108, 0,119,105,110,105,100, 0,100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, 0,100, -111, 95,100,114, 97,119, 95,103,101,115,116,117,114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117,114,115, -111,114, 0,115,119, 97,112, 0,109, 97,105,110,119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, 97,110, -105,109,116,105,109,101,114, 0, 42, 99,111,110,116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110,101,119, -118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, 54, 52, - 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115,120, 0, -111,102,115,121, 0,115,105,122,101,120, 0,115,105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116,105,109, -101, 95,102,108, 97,103, 0, 99,111,110,116,114,111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, 42,112, - 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116,105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108,108, 0, -108,105,115,116, 95,115,105,122,101, 0,108,105,115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103,114,105, -112, 95,115,105,122,101, 0,108,105,115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, 0, 42, -102,117,108,108, 0, 98,117,116,115,112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115,112, 97, - 99,101,100, 97,116, 97, 0,104, 97,110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105,110,114, - 99,116, 0,100,114, 97,119,114, 99,116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97,108,105, -103,110,109,101,110,116, 0,117,105, 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114,115,116, -114, 0, 42,114,101,103,105,111,110,100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101,114,115, -105,111,110, 0,112, 97,100,115, 0,109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115,105,111, -110, 0, 42, 99,117,114,115, 99,114,101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97,103,115, - 0,103,108,111, 98, 97,108,102, 0,110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, 99,111, -109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105,103,104, -116, 0,120,111,102,115, 0,121,111,102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, 97,105, -110, 91, 51, 93, 0,115, 97,116,117,114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0,115,116, - 97,114,116,115,116,105,108,108, 0,101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111,114,120, - 0,111,114,121, 0, 42, 99,114,111,112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, 97,108, - 97,110, 99,101, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115,116, 97, -114,116,115,116,105,108,108, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42,105, 98, -117,102, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42,105,110, -115,116, 97,110, 99,101, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95,112,114, -105,118, 97,116,101, 95,100, 97,116, 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102,115, 0, -109, 97, 99,104,105,110,101, 0,115,116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100,115,105, -122,101, 0, 97,110,105,109, 95,112,114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, 97, 99, -102, 49, 0, 42,115,101,113, 49, 0, 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42,115,111, -117,110,100, 0, 42,115,111,117,110,100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99,101,110, -101,110,114, 0,115,116,114,111, 98,101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, 97,114, -116,111,102,115, 0, 97,110,105,109, 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108,101,110, -100, 95,111,112, 97, 99,105,116,121, 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115,101,113, - 98, 97,115,101,112, 0,109,101,116, 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105,109, 97, -103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101,100,103, -101, 87,105,100,116,104, 0,102,111,114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0,102, 67, -108, 97,109,112, 0,102, 66,111,111,115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, 67,111, -109,112, 0, 83, 99, 97,108,101,120, 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70,105,110, - 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, 0,114, -111,116, 73,110,105, 0,114,111,116, 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, 97,109, -101, 77, 97,112, 0,103,108,111, 98, 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109,101, 0, - 98,117,116,116,121,112,101, 0,117,115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111,114,109, -102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108,105,102, -101, 0,102,111,114, 99,101, 91, 51, 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102,118,101, - 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0,109, 97, -116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, 0,111, -109, 97,116, 0,116,105,109,101,116,101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0,118,101, -114,116,103,114,111,117,112, 95,118, 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117,112,110, - 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115,101,100, -101,108,101,109, 0, 42,112,111,105,110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42,109, 97, - 0,107,101,121, 0,113,117, 97,108, 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, 0,116, -111,103,103,108,101, 78, 97,109,101, 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108,117,101, - 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97,109,101, - 91, 51, 50, 93, 0,100, 97,109,112,116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97,116,110, - 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, 50, 93, - 0, 99,111,110,115,116,114, 97,105,110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, 98,106, -101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102,114,101, -113, 0,116,111,116,108,105,110,107,115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101,120, 0, - 97,120,105,115, 95,115,105,110,103,108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, 97,116, -102, 0,112,114,101, 99,105,115,105,111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, 93, 0, - 42,109,121,110,101,119, 0,105,110,112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110,107,115, - 0,118, 97,108,111, 0,115,116, 97,116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111,112, 91, - 51, 50, 93, 0, 98,108,101,110,100,105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, 0,115, -116,114,105,100,101, 97,120,105,115, 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, 97,100, - 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111,112,121, -109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0, - 97,110,103, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111,112,101, -114, 97,116,105,111,110, 0,102,111,114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, 0,108, -105,110,101, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105,116,121, - 91, 51, 93, 0, 42,114,101,102,101,114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109,105,110, - 0,109, 97,120, 0,118,105,115,105,102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, 0,109, - 97,120,108,111, 99, 91, 51, 93, 0,109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, 97,116, -112,114,111,112, 91, 51, 50, 93, 0,100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, 49, 0, -105,110,116, 95, 97,114,103, 95, 50, 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114,103, 95, - 50, 0,116,111, 80,114,111,112, 78, 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100,121, 84, -121,112,101, 0,102,105,108,101,110, 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, 52, 93, - 0,105,110,116, 95, 97,114,103, 0,102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0,103,111, - 0, 97, 99, 99,101,108,108,101,114, 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116,115,112, -101,101,100, 0,109, 97,120,116,105,108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101,100,100, - 97,109,112, 0, 42,115,111,117,114, 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97,110,103, -101,100, 0,109,105,110, 95,103, 97,105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, 95,100, -105,115,116, 97,110, 99,101, 0,109, 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, 97, 99, -116,111,114, 0, 99,111,110,101, 95,105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95, - 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107,101,100, -102,105,108,101, 0, 97,116,116,101,110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99,104,101, - 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95,111,102, -115, 91, 51, 93, 0, 99,104,105,108,100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, 91, 51, 93, 0,116, 97,105,108, - 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104,101, 97,100, 91, 51, 93, 0, 97, -114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,120,119,105,100,116,104, 0, -122,119,105,100,116,104, 0,101, 97,115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104,101, 97,100, 0,114, 97,100, 95, -116, 97,105,108, 0, 98,111,110,101, 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, 42,101,100, 98,111, 0, 42,115, -107,101,116, 99,104, 0,108, 97,121,101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104,111,115,116,101,112, 0,103,104, -111,115,116,115,105,122,101, 0,103,104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105,122,101, 0,103,104,111,115,116, -115,102, 0,103,104,111,115,116,101,102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, 0,112, 97,116,104, 98, 99, 0, -112, 97,116,104, 97, 99, 0, 42,112,111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97,109,101, 0,101,110,100, 95,102, -114, 97,109,101, 0, 42,112,114,111,112, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101,108,101, - 99,116,102,108, 97,103, 0, 97,103,114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, 0,105, -107,116,114,101,101, 0, 42, 98, 95, 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, 42, 98, - 95, 98,111,110,101, 95,100,117, 97,108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, 97,116, - 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97,100, 91, - 51, 93, 0,112,111,115,101, 95,116, 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105,109,105, -116,109, 97,120, 91, 51, 93, 0,115,116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, 0,105, -107,114,111,116,119,101,105,103,104,116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, 0, 99, -104, 97,110, 98, 97,115,101, 0,112,114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102,115,101, -116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, 97, 99, -116,105,118,101, 95,103,114,111,117,112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105,107,112, - 97,114, 97,109, 0,110,117,109,105,116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, 97,120, -115,116,101,112, 0,115,111,108,118,101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97,109,112, -109, 97,120, 0,100, 97,109,112,101,112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, 0, 99, -115, 0, 99,117,114,118,101,115, 0,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0,102,105, -108,116,101,114,102,108, 97,103, 0, 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105,109,101, -115,108,105,100,101, 0, 42,103,114,112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, 97, 99, -101, 0,116, 97,114,115,112, 97, 99,101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105,110, 95, -101,114,114,111,114, 0,114,111,116, 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, 91, 52, - 93, 0,115,112, 97, 99,101, 0,114,111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116,115, 0, -105,116,101,114, 97,116,105,111,110,115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111,110,101, - 0, 42,112,111,108,101,116, 97,114, 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111,108,101, - 97,110,103,108,101, 0,111,114,105,101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, 51, 93, - 0,114,101,115,101,114,118,101,100, 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97,103, 0, -115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119,102,108, - 97,103, 0,118,111,108,109,111,100,101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108,103,101, - 0,112,105,118, 88, 0,112,105,118, 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105,110, 76, -105,109,105,116, 91, 54, 93, 0,109, 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110,118,109, - 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102,114,111, -109, 95,109,105,110, 91, 51, 93, 0,102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, 0,116, -111, 95,109, 97,120, 91, 51, 93, 0,122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110,110,101, -108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, 99,117, -114,109,111,100, 0, 97, 99,116,115,116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115,116,114, -105,100,101,108,101,110, 0,115, 99, 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, 97,110, -110,101,108, 91, 51, 50, 93, 0,111,102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, 0,104, - 97,115,111,117,116,112,117,116, 0,100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42,110,101, -119, 95,115,111, 99,107, 0,110,115, 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110,116,101, -114,110, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111,119,110, - 95,105,110,100,101,120, 0,116,111, 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, 42,110, -101,119, 95,110,111,100,101, 0,117,115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116,112,117, -116,115, 0, 42,115,116,111,114, 97,103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, 99,117, -115,116,111,109, 50, 0, 99,117,115,116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, 99, 0, -101,120,101, 99, 0, 42,116,104,114,101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118,114, 0, - 42, 98,108,111, 99,107, 0, 42,116,121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111,110,111, -100,101, 0, 42,102,114,111,109,115,111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99,107, 0, - 42,116,104,114,101, 97,100,115,116, 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117,114, 95, -105,110,100,101,120, 0, 97,108,108,116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, 0, 42, -115,101,108,111,117,116, 0, 40, 42,116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, 95,100, -114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, 99,104, - 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110,115,112, -101,101,100, 0,112,101,114, 99,101,110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117,114,118, -101,100, 0,105,109, 97,103,101, 95,105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105,103,104, -116, 0, 99,101,110,116,101,114, 95,120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0,119,114, - 97,112, 0,115,105,103,109, 97, 95, 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, 0,115, - 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107,101,121, - 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107,116,121, -112,101, 0,114,111,116, 97,116,105,111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111,112, 0, -109, 97,120, 98,108,117,114, 0, 98,116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110,103,108, -101, 95,111,102,115, 0, 99,111,108,109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100,101, 0, -109, 0, 99, 0,106,105,116, 0,112,114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98,108,101, - 0,109, 97,120,116, 97, 98,108,101, 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, 0, 42, - 99,117,114,118,101, 0, 42,116, 97, 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, 0, 99, -108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98,119,109, -117,108, 91, 51, 93, 0,115, 97,109,112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110,101, 0, -106,105,116,116,101,114, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109,111,111, -116,104, 95,115,116,114,111,107,101, 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, 99,117, -108,112,116, 95,116,111,111,108, 0, 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111,110,101, - 0, 97, 99,116,105,118,101, 95,109, 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0,109, 97, -120,108, 97,121,101,114, 0,116,111,116,115,105,122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111,116, 91, - 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103,114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117,109, 0, -112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115,101,116, - 0,114,116, 91, 50, 93, 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0,100,105, -101,116,105,109,101, 0,110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, 97,105, -114, 95,105,110,100,101,120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, 97,118, -101,109,111,100,101, 0,114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0,100,114, - 97,119, 95,115,105,122,101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115,116,101, -112, 0,104, 97,105,114, 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110,103,108, -101, 0, 97,100, 97,112,116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, 0, 98, - 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, 95,115, -112,108,105,116, 95,111,102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105,108,116, - 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105,109,112, -108,105,102,121, 95,114,101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109,112,108, -105,102,121, 95,116,114, 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111,114,116, - 0,116,105,109,101,116,119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105,100, 95, -114,101,115, 0,112, 97,114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, 97, 99, -116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, 0,114, - 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122,101, 0, -114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119,110,102, - 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98,114, 0, -114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122,101, 0, - 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, 97,116, - 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114,111,117, -103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114,111,117, -103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, 0, 99, -108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, 95,108, -105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97,105,108, - 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116,115, 0, - 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, 0, 42, -112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, 99,104, -105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, 99,104, -101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95,111,117, -116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95,102,114, - 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108,100, 99, - 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101,115,112, - 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, 93, 0, -118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116,111,114, -115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, 51, 93, - 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, 97,120, - 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108,101,110, - 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, 95,119, -105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116,121, 95, -115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, 97,120, -115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98,101,110, -100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114,101,115, -101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101,108,102, - 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111,112, 95, - 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99,107,110, -101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, 0,103, -115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98,117,102, -102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109,101,115, -115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101,108, 0, - 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119,115, 0, -105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111,114,115, - 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111,114,115, - 0,107,101,121, 99,111,110,102,105,103,115, 0, 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117,108,116, - 97, 99,116,109, 97,112, 0,116,105,109,101,114,115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42,103,104, -111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, 50, 93, - 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, 0,108, - 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115,116, 97, -116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0,100,114, - 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, 0,115, -117, 98,119,105,110,100,111,119,115, 0,103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112,114,111, -112,118, 97,108,117,101, 0,115,104,105,102,116, 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101,121,109, -111,100,105,102,105,101,114, 0,109, 97,112,116,121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, 99,101, -105,100, 0,114,101,103,105,111,110,105,100, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105,116,101, -109,115, 0, 98, 97,115,101,110, 97,109,101, 91, 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115,116,111, -109,100, 97,116, 97, 0, 42,114,101,112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, 91, 50, - 93, 0,112,114,101,118,120, 0,112,114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107,101,121, -109, 97,112, 95,105,100,110, 97,109,101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114,101,101, - 0, 42,101,100, 97,116, 97, 0,105,110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116,115, 0, - 97,114,114, 97,121,115,105,122,101, 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, 0,112, -104, 97,115,101, 95,109,117,108,116,105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, 97,108, -117,101, 95,111,102,102,115,101,116, 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97,102,116, -101,114, 95,109,111,100,101, 0, 98,101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, 99,108, -101,115, 0,114,101, 99,116, 0,112,104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, 97, 95, -112, 97,116,104, 0, 97,114,114, 97,121, 95,105,110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115,115,105, -111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, 0, 99, -111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112,105,110, -103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, 95,116, -105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, 91, 54, - 52, 93, 0,116,101,109,112,108, 97,116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107,101,121, -105,110,103,102,108, 97,103, 0, 97, 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, 97, 95, -116,114, 97, 99,107,115, 0, 42, 97, 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114,105,100, -101,115, 0, 97, 99,116, 95, 98,108,101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100,101, 0, - 97, 99,116, 95,105,110,102,108,117,101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97,114, 95, -102, 97, 99,116,111,114, 0,115,105,103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108,111, 99, - 91, 51, 93, 0,113,117,101,117,101, 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115,116, 97, -110, 99,101, 0,104,101, 97,108,116,104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100,105,116, -105,111,110,115, 0, 97, 99,116,105,111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, 95,102, -117,122,122,105,110,101,115,115, 0,108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, 95,115, -109,111,111,116,104,110,101,115,115, 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, 99, 99, -117,114, 97, 99,121, 0, 97,105,114, 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112,101,101, -100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95,112,101, -114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, 97,110, -100, 95,109, 97,120, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95,109, 97, -120, 95, 97,118,101, 0,108, 97,110,100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,115, -116,105, 99,107, 95,102,111,114, 99,101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, 42,102, -108,117,105,100, 95,103,114,111,117,112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101,120, 95, -119,116, 0, 42,116,101,120, 95,115,104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, 49, 91, - 51, 93, 0,100,120, 0,111,109,101,103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, 93, 0, - 97,109,112,108,105,102,121, 0,109, 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111,105,115, -101, 0,100,105,115,115, 95,112,101,114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95,119,116, - 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, 50, 93, - 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95,104,101, - 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, 95,100, -101,110,115,105,116,121, 0,118,103,114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, 0, 42, -118,101,108, 0,109, 97,116, 95,111,108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 84, 89, 80, 69, -194, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0,105,110,116, 0, -108,111,110,103, 0,117,108,111,110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, 0, 76,105,110, -107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, 99, 50,105, 0, -118,101, 99, 50,102, 0,118,101, 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51,100, 0,118,101, - 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, 80,114,111,112, -101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97,114,121, 0, 70, -105,108,101, 68, 97,116, 97, 0, 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118,101,114, 0, 79, - 98,106,101, 99,116, 0, 73,112,111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105,112,108,101, 0, - 73,112,111, 0, 75,101,121, 66,108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101,120,116, 76,105, -110,101, 0, 84,101,120,116, 77, 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108,101, 0, 67, 97, -109,101,114, 97, 0, 73,109, 97,103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, 80, 85, 84,101, -120,116,117,114,101, 0, 97,110,105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, 0, 84,101,120, - 0, 80,108,117,103,105,110, 84,101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, 69,110,118, 77, - 97,112, 0, 73,109, 66,117,102, 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99,108,101, 83,121, -115,116,101,109, 0, 86,111,120,101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, 77, 97,112,112, -105,110,103, 0, 76, 97,109,112, 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86,111,108,117,109, -101, 83,101,116,116,105,110,103,115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111,110,116, 0, 86, - 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77,101,116, 97, 66, - 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117,114,118,101, 0, - 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, 97, 99,101, 0, - 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101,102,111,114,109, - 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100,105,116, 77,101, -115,104, 0, 67,117,115,116,111,109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, 97,108, 86,105, -115,105, 98,105,108,105,116,121, 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80,111,108,121, 0, - 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101,114,116,121, 0, - 77, 73,110,116, 80,114,111,112,101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, 0, 79,114,105, -103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, - 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 32, 40, 49, - 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, 32, 35,100,101, -102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100,101,102,105,110, -101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, - 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, 32, 49, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, - 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, - 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, 35,100,101,102, -105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 32, 50, 32, - 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, - 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 32, 50, - 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, - 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, - 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35,100,101,102,105, -110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 32, 54, 52, - 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, 88, 32, 52, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102,105,110,101, 32, - 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, - 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, - 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 32, 49, - 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 32, 49, - 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, 32, 35,100,101, -102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 32, - 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, - 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, - 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 32, 54, 52, 32, - 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102,100, 32, 99,104, 97,114, - 32,117,115,101, 95, 99,111,108, 44, 32,102,108, 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, 32,108,101,118, -101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100,105,102,105,101, -100, 32,102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116,111,109, 68, 97, -116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, 10, 9,115,104, -111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, 95, 99,114,101, - 97,115,101,115, 59, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77,117,108,116,105, -114,101,115, 32, 42, 42, 47, 10, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116,105, 97,108, 86, -105,115,105, 98,105,108,105,116,121, 32,123, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118,101,114,116, 95, -109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, - 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, 32,101,100,103, -101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, 32, 45, 49, 61, - 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, 59, 10, 9, 77, - 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32,116, -111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97,100, 59, 10,125, - 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114,116, 45, 62,102, -108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, - 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, 69, 77, 80, 9, - 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101,100,103,101, 45, - 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, - 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 9, - 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, 9, 40, 49, 60, - 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, 77, 69, 95, 72, - 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 9, 9, 40, 49, - 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, 49, 60, 60, 55, - 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, 56, 41, 10, 35, -100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, 32,112,117,110, -111, 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 47, 42, 32,114, -101,110,100,101,114, 32, 97,115,115,117,109,101,115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114,100,101,114,101, -100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 49, - 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 9, - 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, - 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, - 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105, -110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, 51, 9, 9, - 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, - 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, 9, 56, 10, 10, - 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 77, - 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, 9, 9, 9, 50, - 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105,115, 32,117,115, -101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62,116,121,112,101, - 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110,101, 32, 77, 69, - 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, 42, 32,109,116, -102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 9, - 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102,116,101,114, 32, - 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117,115,101, 32, 97, -102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, 86, 69, 9, 50, - 32, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, - 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 9, 9, 51, 50, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115,101,100, 44, 32, -115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, - 62,109,111,100,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, 9, 49, 10, 35, -100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, - 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 9, 56, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 9, - 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 87, 79, 83, 73, - 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, 9, 49, 48, 50, - 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100,101,102,105,110, -101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, 32, 90, 32, 97, -120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, - 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, 9, 49, 54, 51, - 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101,115, 32, 49, 45, - 52, 32, 97,114,101, 32,117,115,101,100, 32, 97,115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, 76, 44, 32, 87, - 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116,104, 32,116,104, -105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, 50, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, 97,108,112,104, - 97, 47, 98,105,110, 97,114,121, 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110,103, 33, 32, 42, - 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105,110, 32,116,104, -101, 32,117,115,101,114, 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, 35,100,101,102, -105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117,110,119,114, 97, -112, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, 49, 10, 35,100, -101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105,110,101, 32, 84, - 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, - 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, 32, 32, 49, 54, - 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101,102,105,110,101, - 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, - 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35,101,110,100,105,102, 10,100,105, 79, 67, 75, 33,110,100,101,120, 32,105,110, 32, -110,117,114, 98, 32,108,105,115,116, 32, 42, 47, 10, 9,105,110,116, 32, 97, 99,116,110,117, 59, 10, 9, 47, 42, 32,101,100,105, -116, 44, 32,108, 97,115,116, 32,115,101,108,101, 99,116,101,100, 32, 98,112,111,105,110,116, 32, 42, 47, 10, 9, 66, 80,111,105, -110,116, 32, 42,108, 97,115,116,115,101,108, 98,112, 59, 10, 9, 10, 9, 47, 42, 32,102,111,110,116, 32,112, 97,114,116, 32, 42, - 47, 10, 9,115,104,111,114,116, 32,108,101,110, 44, 32,108,105,110,101,115, 44, 32,112,111,115, 44, 32,115,112, 97, 99,101,109, -111,100,101, 59, 10, 9,102,108,111, 97,116, 32,115,112, 97, 99,105,110,103, 44, 32,108,105,110,101,100,105,115,116, 44, 32,115, -104,101, 97,114, 44, 32,102,115,105,122,101, 44, 32,119,111,114,100,115,112, 97, 99,101, 44, 32,117,108,112,111,115, 44, 32,117, -108,104,101,105,103,104,116, 59, 10, 9,102,108,111, 97,116, 32,120,111,102, 44, 32,121,111,102, 59, 10, 9,102,108,111, 97,116, - 32,108,105,110,101,119,105,100,116,104, 59, 10, 70, 82, 69, 69,216, 24, 0, 77,117,108,116,105,114,101,115, 67,111,108, 0, 77, -117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, 77,117,108,116, -105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102,105,101,114, 68, - 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116,105, 99,101, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,117, -105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, 68, 97,116, 97, - 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100,105,102,105,101, -114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66,101,118,101, -108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, - 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105,110, 83,101,116, -116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 67,111,108, -108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 85, - 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116,101, 77,111,100, -105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67, 97,115, -116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 65, -114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105,102,105,101,114, - 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 77, -111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101,116,116,105,110, -103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, 99,104,101, 0, - 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101,101, 0, 83,117, -114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115,104, 0, 66, 86, - 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101,114, 68, 97,116, - 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115,104, 68,101,102, -111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116,101,109, 77,111, -100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77,111,100,105,102, -105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,117,108,116, -105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100,105,102,105,101, -114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110,107,119,114, 97, -112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111,100,105,102,105, -101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, -105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105,111,110, 0, 98, - 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83,111,102,116, 66, -111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72,111,111,107, 0, - 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103,104,116,115, 0, - 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114,116,101,120, 0, - 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, 99,104, 0, 87, -111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107,116,105,109,101, - 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117,100,105,111, 68, - 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, 97,116, 97, 0, - 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70,114, 97,109,105, -110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, 0, 66,114,117, -115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 66,114, -117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, 0, 84,114, 97, -110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97,105,110,116, 0, - 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116,105,110,103,115, - 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101,110,101, 83,116, - 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105,101,119, 51, 68, - 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86,105,101,119, 68, -101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101,114, 0, 86,105, -101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73,110,102,111, 0, - 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, 83,112, 97, 99, -101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, 97,109,115, 0, - 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111,114, 0, 70,105, -108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, 0, 84,114,101, -101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78,108, 97, 0, 83, -112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, 83,112, 97, 99, -101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83,112, 97, 99,101, - 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115,111,108,101, 0, - 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83,116,121,108,101, - 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105,100,103,101,116, - 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, 99,101, 0, 84, -104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105,103,104,116, 0, - 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101,108, 0, 80, 97, -110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, 99,101, 84,121, -112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71,108,111, 98, 97, -108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, 67,114,111,112, - 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97,108, 97,110, 99, -101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, 0, 83,101,113, -117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, 97, 83,116, 97, - 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111,114,109, 86, 97, -114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114,111,108, 86, 97, -114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, 97,114,116,105, - 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83,101,110,115,111, -114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, 98, 75,101,121, - 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, 98, 65, 99,116, -117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111,108,108,105,115, -105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100,111,109, 83,101, -110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110,115,111,114, 0, - 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116,114,111,108,108, -101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105,111,110, 67,111, -110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100,100, 79, 98,106, -101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, 98, 83,111,117, -110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, 99,116, 65, 99, -116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101,114,116,121, 65, - 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, 65, 99,116,117, - 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, 97,105,110,116, - 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110,100,111,109, 65, - 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97,109,101, 65, 99, -116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 84,119,111, 68, - 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, - 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97,116,111,114, 0, - 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, 98,106,101, 99, -116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 86,101,114,116, - 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103,115, 0, 98, 80, -111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, 65, 99,116,105, -111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67,104, 97,110,110, -101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110, -116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67,111,110,115,116, -114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97, 99, -107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77,105,110, 77, 97, -120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, - 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, 67,111,110,115, -116,114, 97,105,110,116, 0, 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,116, -114,101,116, 99,104, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, 74,111,105,110, -116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, - 67,104,105,108,100, 79,102, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, 67,111,110,115, -116,114, 97,105,110,116, 0, 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 76, -105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110,115,116,114, 97, -105,110,116, 0, 98, 68,105,115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104,114,105,110,107, -119,114, 97,112, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105,101,114, 0, 98, - 65, 99,116,105,111,110, 83,116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, 83,111, 99,107, -101,116, 0, 98, 78,111,100,101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118,105,101,119, 0, -117,105, 66,108,111, 99,107, 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65,110,105,109, 0, - 78,111,100,101, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 66, -105,108, 97,116,101,114, 97,108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, 78,111,100,101, - 73,109, 97,103,101, 70,105,108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, 88, 89,115, 0, - 78,111,100,101, 84,119,111, 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78,111,100,101, 86, -101,114,116,101,120, 67,111,108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114,105,112,116, 68, -105, 99,116, 0, 78,111,100,101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111,100,101, 76,101, -110,115, 68,105,115,116, 0, 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97,112, 80,111,105, -110,116, 0, 67,117,114,118,101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111,109, 68, 97,116, - 97, 76, 97,121,101,114, 0, 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66,111,105,100, 80, - 97,114,116,105, 99,108,101, 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99,108,101, 0, 80, - 97,114,116,105, 99,108,101, 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87,101,105,103,104, -116, 0, 80, 97,114,116,105, 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, - 66,111,105,100, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, - 84,114,101,101, 0, 80, 97,114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, - 71, 80, 68,115,112,111,105,110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, - 71, 80, 68,108, 97,121,101,114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110, -100,111,119, 77, 97,110, 97,103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110,102,105,103, 0, -119,109, 69,118,101,110,116, 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114,101, 0,119,109, - 75,101,121, 77, 97,112, 73,116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, 97,112, 0,119, -109, 79,112,101,114, 97,116,111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, 95, 71,101,110, -101,114, 97,116,111,114, 0, 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111,114, 0, 70, 67, - 77, 95, 69,110,118,101,108,111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, 0, 70, 77,111, -100, 95, 67,121, 99,108,101,115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105,109,105,116,115, - 0, 70, 77,111,100, 95, 78,111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97,110,110,101,108, - 68,114,105,118,101,114, 0, 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, 80, 97,105,114, - 0, 65,110,105,109, 77, 97,112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99,107, 0, 75, 83, - 95, 80, 97,116,104, 0, 75,101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, 0, 73,100, 65, -100,116, 84,101,109,112,108, 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, 71,111, 97,108, - 65,118,111,105,100, 0, 66,111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, 0, 66,111,105, -100, 82,117,108,101, 70,111,108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118,101,114, 97,103, -101, 83,112,101,101,100, 0, 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97,116,101, 0, 70, - 76, 85, 73, 68, 95, 51, 68, 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 84, 76, 69, 78, 1, 0, 1, 0, 2, 0, 2, 0, - 4, 0, 4, 0, 4, 0, 4, 0, 8, 0, 0, 0, 16, 0, 24, 0, 16, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, 12, 0, 24, 0, - 16, 0, 16, 0, 32, 0, 16, 0, 16, 0, 32, 0, 96, 0, 72, 0, 72, 2, 0, 0, 40, 0,144, 0,152, 4,112, 0, 36, 0, 56, 0, -112, 0,128, 0,168, 0, 96, 0, 40, 0, 48, 0,176, 0, 16, 0,152, 0, 40, 0, 0, 6,184, 1, 0, 0, 0, 0, 0, 0, 16, 1, -104, 1,120, 1, 24, 0, 8, 3,200, 0, 0, 0, 96, 0,240, 1, 32, 1,232, 0,136, 0,248, 1, 56, 1, 80, 0, 88, 0, 32, 3, -104, 0, 88, 1, 0, 0,128, 0,104, 0,208, 0, 80, 0, 8, 0, 16, 0,216, 1, 0, 0, 0, 0, 0, 0,144, 1, 20, 0, 48, 0, - 64, 0, 24, 0, 12, 0, 16, 0, 4, 0, 8, 0, 8, 0, 0, 0, 32, 0,112, 0, 48, 0, 8, 0, 16, 0, 8, 0, 8, 0, 4, 0, - 4, 0, 0, 1, 32, 0, 16, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 64, 0, 72, 0, 96, 0,112, 0,120, 0, 88, 0,120, 0, -152, 0, 88, 0, 80, 0,128, 0, 80, 0,104, 0,248, 0, 56, 0,192, 0,176, 0,216, 0, 80, 0,112, 0,128, 0,216, 0,128, 0, -240, 0, 72, 0,128, 0, 0, 0,144, 0, 32, 0, 8, 2,152, 0, 0, 0,112, 0, 0, 0, 0, 0, 88, 0, 8, 0, 8, 0, 8, 1, -104, 0, 96, 0, 88, 0, 88, 0, 88, 0,192, 1,136, 0,128, 0, 72, 0,232, 0, 48, 0, 0, 0,144, 0, 88, 0,104, 0,120, 0, -152, 0, 32, 1,224, 0,192, 0, 0, 0, 72, 0,168, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,216, 1, 40, 0,184, 0,152, 0, - 64, 0, 24, 0, 88, 0, 24, 4, 64, 0, 24, 0, 16, 0, 96, 0, 88, 0, 32, 0, 40, 1, 48, 0, 8, 0,112, 0, 88, 0, 56, 0, - 72, 0,112, 1, 32, 0, 8, 0, 16, 0, 48, 2, 0, 0, 0, 0, 64, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, - 56, 0,152, 0, 72, 0,208, 0,248, 0, 32, 0, 0, 1,240, 0,208, 1,104, 0, 0, 0,152, 0, 0, 0, 40, 1, 16, 0, 16, 0, -168, 0,224, 0,144, 2,120, 2, 64, 0,200, 0, 32, 1, 72, 0,208, 2, 40, 0,112, 0, 40, 0, 24, 1, 32, 0,232, 0, 32, 0, - 32, 0, 80, 2, 16, 1, 16, 0,216, 21, 56, 0,160, 11, 32, 0, 40, 0, 88, 1, 0, 0, 0, 0,160, 0, 0, 0, 40, 1, 0, 0, - 24, 1, 80, 0, 48, 0, 16, 0, 8, 0, 52, 0, 0, 1, 32, 1,200, 1, 8, 1, 48, 1, 64, 0, 32, 0, 12, 0, 24, 0, 48, 0, - 16, 0, 24, 0, 24, 0, 32, 0, 72, 1, 0, 0, 64, 0, 64, 0, 48, 0, 8, 0, 48, 0, 72, 0,104, 0, 40, 0, 8, 0, 72, 0, - 44, 0, 40, 0,108, 0, 72, 0, 72, 0, 96, 0,104, 0, 60, 0,128, 0, 80, 0, 80, 0, 16, 0, 96, 0, 72, 0, 32, 0, 88, 0, - 24, 0, 80, 0,112, 0, 84, 0, 32, 0, 96, 0, 56, 0, 56, 0,112, 0,140, 0, 4, 0, 24, 0, 16, 0, 8, 0, 88, 0, 40, 0, -224, 0, 40, 0, 24, 1,176, 0, 16, 0, 24, 0, 24, 0, 0, 2, 4, 0, 40, 0,120, 0, 8, 1, 88, 0, 56, 0, 88, 0,128, 0, - 80, 0,120, 0, 56, 0, 48, 0, 48, 0, 72, 0, 48, 0, 72, 0, 48, 0, 24, 0, 56, 0,104, 0, 16, 0,112, 0, 96, 0, 28, 0, - 28, 0, 28, 0, 56, 0, 24, 0, 72, 0,168, 0, 40, 0,144, 0, 56, 0, 8, 1, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, 28, 0, - 12, 0, 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 16, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, 56, 0, - 24, 0, 72, 0, 24, 0, 56, 0, 56, 0, 20, 0, 64, 0, 40, 0, 32, 0,192, 0, 8, 2,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 32, 0, 40, 0,192, 0, 40, 0, 32, 0, 8, 1,224, 0,168, 0, 72, 0, 0, 0, 0, 0,120, 0, 0, 0,120, 0, 0, 0, -104, 0, 24, 0, 24, 0, 16, 0, 24, 0, 8, 0, 16, 0, 24, 0, 20, 0,112, 0, 32, 1, 16, 0,104, 0, 0, 1, 40, 0,200, 0, -104, 0,112, 0,104, 0, 32, 0, 80, 0, 56, 0, 80, 0, 64, 0,104, 0, 72, 0, 64, 0,128, 0, 0, 0, 0, 0, 83, 84, 82, 67, -136, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0,128, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, + 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0,128, 63, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, + 48, 4,130, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, 48, 28,130, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 68,101,102, 97,117,108,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, + 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, + 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, + 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, + 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, + 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, + 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, + 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255,255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, + 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, + 0, 0, 0,255, 25, 25, 25,230, 45, 45, 45,230,100,100,100,255,160,160,160,255,255,255,255,255, 0, 0, 25, 0,236,255, 0, 0, + 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255,255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, + 25, 25, 25,255,128,128,128,255,100,100,100,255, 25, 25, 25,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, + 50, 50, 50,180, 80, 80, 80,180,100,100,100,180,128,128,128,255, 0, 0, 0,255,255,255,255,255, 1, 0, 5, 0,251,255, 0, 0, + 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, +115,190, 76,255, 90,166, 51,255,240,235,100,255,215,211, 75,255,180, 0,255,255,153, 0,230,255, 0, 0, 0, 63, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,130,130,130,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76,255, 0, 0, 0, 0,250,250,250,255, 15, 15, 15,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100,255,140, 25,255,250,250,250,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,130,130,130,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,250,250,250,255,250,250,250,255,250,250,250,255, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255, +124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,102,102,102,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +255,255,255,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,150,150,150,100,112,112,112,100, 96,192, 64,255, 94, 94, 94,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 79,101, 73,255,135,177,125,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 12, 10, 10,128,255,140, 0,255, 96,192, 64,255, 82, 96,110,255, +124,137,150,255, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0,255,255,133, 0,255, 3, 0, 0, 0, 0, 0, 0, 0,116,116,116,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255,109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255, +126,126, 80,255,162, 95,111,255,109,145,131,255,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255,255,255,255, 10,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,110,110,110,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,132,132,132,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, + 94, 94, 94,255,172,172,172,255, 17, 27, 60,100, 94, 94, 94,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,195,195,195,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,198,119,119,255,255, 0, 0,255, 64, 64, 64,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0,100, 0, 0,255, 0, 0,200,255,128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,173,173,173,255,127,112,112,100, 0, 0, 0, 0, 91, 91, 91,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 57,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,255,255,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0,155,155,155,160,100,100,100,255, +108,105,111,255,104,106,117,255,105,117,110,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, + 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255, +255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255,255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60, +255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,114,114,114,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,127, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 64, 64, 64,255, 0, 0, 0,255,241, 88, 0,255, 0, 0, 0, 40,255,140, 25,255, + 8, 48, 8,255, 85,187, 85,255,255,255,255,255, 0, 0, 0,255,255,133, 0,255, 0, 0, 0,255,255,160, 0,255,219, 37, 18,255, +255, 32, 32,255, 75, 75, 75,255, 0, 0, 0, 18,255,133, 0, 60,255,133, 0,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0,247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, + 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0, +169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, + 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0, +244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0, +111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0,108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0, +141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0,131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, + 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 68, 65, 84, 65,216, 21, 0, 0, 48, 28,130, 3, 1, 0, 0, 0,187, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 4,130, 3, 1, 0, 0, 0, 82,111,117,110,100,101,100, 0, 0,101,119, 32, 85,115,101,114, + 32, 84,104,101,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, + 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,153,153,153,255,100,100,100,255, 25, 25, 25,255, + 0, 0, 0,255,255,255,255,255, 1, 0, 25, 0,231,255, 0, 0, 25, 25, 25,255,153,153,153,255,153,153,153,255, 90, 90, 90,255, + 0, 0, 0,255,255,255,255,255, 1, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 86,128,194,255,255,255,255,255, +255,255,255,255, 0, 0, 0,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, + 0, 0, 0,255,255,255,255,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255, 90, 90, 90,255, + 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 25, 25, 25,255,180,180,180,255,153,153,153,255,128,128,128,255, + 0, 0, 0,255,255,255,255,255, 1, 0,236,255, 0, 0, 0, 0, 0, 0, 0,255, 70, 70, 70,255, 70, 70, 70,255,255,255,255,255, +255,255,255,255,204,204,204,255, 1, 0, 15, 0,241,255, 0, 0, 0, 0, 0,255, 63, 63, 63,255, 86,128,194,255,255,255,255,255, + 0, 0, 0,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 25, 25, 25,230, 46,124,217,204,255,255,255,255, +255,255,255,255, 0, 0, 0,255, 0, 0, 25, 0,236,255, 0, 0, 0, 0, 0,255, 0, 0, 0, 0, 86,128,194,255,255,255,255,255, +255,255,255,255, 0, 0, 0,255, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +175,175,175, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, + 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255, +255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100,255,130, 0,255, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +107,107,107,100,143,143,143,100, 96,192, 64,255, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 79,101, 73,255,135,177,125,255,255,255,255,255,255,255,255,255,255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 82, 96,110,255,124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,130, 0,255, 2, 0, 0, 0, 0, 0, 0, 0, +114,114,114,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 79,101, 73,255,135,177,125,255,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,143,143,143,255,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,228,156,198,204,255,255,170,204, 96,192, 64,255, 82, 96,110,255, +124,137,150,255, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +143,143,143,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +107,107,107,255,178,178,178,100,255,130, 0,100, 94, 94, 94,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +228,156,198,255,255,255,170,255, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,130, 0,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81,105,135,255, +109, 88,129,255, 78,152, 62,255, 46,143,143,255,169, 84,124,255,126,126, 80,255,162, 95,111,255,109,145,131,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60,255,133, 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 80,200,255,255, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,195,195,195,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,143,143,143,255,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,153,153,153,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +153,153,153,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +143,143,143,255,198,119,119,255,255, 0, 0,255, 88, 88, 88,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,100, 0, 0,255, 0, 0,200,255, +128, 0, 80,255, 95, 95, 0,255, 0,100, 50,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0, 88, 88, 88,255, + 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255, +255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,158,158,158,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +158,158,158,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,150, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +140,140,140,255,127,112,112,100, 0, 0, 0, 0,112,112, 96,255, 0, 0, 0,255,255,136,255,255, 0, 0, 0, 0,255,187,255,255, + 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,112,255,255,255,255,112,255, 0, 0, 0,255,144,144, 48,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 50,150, 30,200,100,200, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +107,107,107,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255,107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, + 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, + 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0,255,130, 0,255, 0, 0, 0,255, +255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60, +255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 4, 0, 0,150,150,150,255,129,131,144,255,127,127,127,255,142,138,145,255,120,145,120,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,100,100,100,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,255, +107,107,107,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 51, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +160,160,160,100,127,112,112,100, 0, 0, 0, 0,143,143,143,255, 0, 0, 0,255,217,217,217,255, 0, 0, 0, 40,255,255,255,255, + 16, 64, 16,255,102,255,102,255,255,130, 0,255, 0, 0, 0,255,255,130, 0,255, 0, 0, 0,255,255,255,255,255,230,150, 50,255, +255, 32, 32,255, 0, 0, 0, 0,255,255,255, 10,255,130, 0, 60,255,138, 48,255, 34,221,221,255,200,200,200,255, 80,200,255, 80, + 0, 0, 0, 0, 0, 0, 0, 0, 96,192, 64,255, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255,255,255,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +114,114,114,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, +145,145,145,245, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255,165,165,165,255, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, + 0, 0, 0, 0, 0, 0, 0,255, 0, 0, 0,255,255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,154, 0, 0,255,189, 17, 17,255,247, 10, 10,255, 0, 0, 0, 0, +247, 64, 24,255,246,105, 19,255,250,153, 0,255, 0, 0, 0, 0, 30,145, 9,255, 89,183, 11,255,131,239, 29,255, 0, 0, 0, 0, + 10, 54,148,255, 54,103,223,255, 94,193,239,255, 0, 0, 0, 0,169, 41, 78,255,193, 65,106,255,240, 93,145,255, 0, 0, 0, 0, + 67, 12,120,255, 84, 58,163,255,135,100,213,255, 0, 0, 0, 0, 36,120, 90,255, 60,149,121,255,111,182,171,255, 0, 0, 0, 0, + 75,112,124,255,106,134,145,255,155,194,205,255, 0, 0, 0, 0,244,201, 12,255,238,194, 54,255,243,255, 0,255, 0, 0, 0, 0, + 30, 32, 36,255, 72, 76, 86,255,255,255,255,255, 0, 0, 0, 0,111, 47,106,255,152, 69,190,255,211, 48,214,255, 0, 0, 0, 0, +108,142, 34,255,127,176, 34,255,187,239, 91,255, 0, 0, 0, 0,141,141,141,255,176,176,176,255,222,222,222,255, 0, 0, 0, 0, +131, 67, 38,255,139, 88, 17,255,189,106, 17,255, 0, 0, 0, 0, 8, 49, 14,255, 28, 67, 11,255, 52, 98, 43,255, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 78, 65, 49,184,228, 0, 0, + 48,134,156, 3, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 83, 68, 78, 65, 78, 65, 77, 69, 38, 11, 0, 0, 42,110,101,120, +116, 0, 42,112,114,101,118, 0, 42,100, 97,116, 97, 0, 42,102,105,114,115,116, 0, 42,108, 97,115,116, 0,120, 0,121, 0,122, + 0,119, 0,120,109,105,110, 0,120,109, 97,120, 0,121,109,105,110, 0,121,109, 97,120, 0, 42,112,111,105,110,116,101,114, 0, +103,114,111,117,112, 0,118, 97,108, 0,118, 97,108, 50, 0,116,121,112,101, 0,115,117, 98,116,121,112,101, 0,102,108, 97,103, + 0,110, 97,109,101, 91, 51, 50, 93, 0,115, 97,118,101,100, 0,100, 97,116, 97, 0,108,101,110, 0,116,111,116, 97,108,108,101, +110, 0, 42,110,101,119,105,100, 0, 42,108,105, 98, 0,110, 97,109,101, 91, 50, 52, 93, 0,117,115, 0,105, 99,111,110, 95,105, +100, 0, 42,112,114,111,112,101,114,116,105,101,115, 0,105,100, 0, 42,105,100, 98,108,111, 99,107, 0, 42,102,105,108,101,100, + 97,116, 97, 0,110, 97,109,101, 91, 50, 52, 48, 93, 0,102,105,108,101,110, 97,109,101, 91, 50, 52, 48, 93, 0,116,111,116, 0, +112, 97,100, 0, 42,112, 97,114,101,110,116, 0,119, 91, 50, 93, 0,104, 91, 50, 93, 0, 99,104, 97,110,103,101,100, 91, 50, 93, + 0,112, 97,100, 48, 0,112, 97,100, 49, 0, 42,114,101, 99,116, 91, 50, 93, 0, 42,111, 98, 0, 98,108,111, 99,107,116,121,112, +101, 0, 97,100,114, 99,111,100,101, 0,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 98,112, 0, 42, 98,101,122,116, 0,109, 97, +120,114, 99,116, 0,116,111,116,114, 99,116, 0,118, 97,114,116,121,112,101, 0,116,111,116,118,101,114,116, 0,105,112,111, 0, +101,120,116,114, 97,112, 0,114,116, 0, 98,105,116,109, 97,115,107, 0,115,108,105,100,101, 95,109,105,110, 0,115,108,105,100, +101, 95,109, 97,120, 0, 99,117,114,118, 97,108, 0, 42,100,114,105,118,101,114, 0, 99,117,114,118,101, 0, 99,117,114, 0,115, +104,111,119,107,101,121, 0,109,117,116,101,105,112,111, 0,112,111,115, 0,114,101,108, 97,116,105,118,101, 0,116,111,116,101, +108,101,109, 0,112, 97,100, 50, 0, 42,119,101,105,103,104,116,115, 0,118,103,114,111,117,112, 91, 51, 50, 93, 0,115,108,105, +100,101,114,109,105,110, 0,115,108,105,100,101,114,109, 97,120, 0, 42, 97,100,116, 0, 42,114,101,102,107,101,121, 0,101,108, +101,109,115,116,114, 91, 51, 50, 93, 0,101,108,101,109,115,105,122,101, 0, 98,108,111, 99,107, 0, 42,105,112,111, 0, 42,102, +114,111,109, 0,116,111,116,107,101,121, 0,115,108,117,114,112,104, 0, 42,108,105,110,101, 0, 42,102,111,114,109, 97,116, 0, + 98,108,101,110, 0,108,105,110,101,110,111, 0,115,116, 97,114,116, 0,101,110,100, 0,102,108, 97,103,115, 0, 99,111,108,111, +114, 91, 52, 93, 0,112, 97,100, 91, 52, 93, 0, 42,110, 97,109,101, 0,110,108,105,110,101,115, 0,108,105,110,101,115, 0, 42, + 99,117,114,108, 0, 42,115,101,108,108, 0, 99,117,114, 99, 0,115,101,108, 99, 0,109, 97,114,107,101,114,115, 0, 42,117,110, +100,111, 95, 98,117,102, 0,117,110,100,111, 95,112,111,115, 0,117,110,100,111, 95,108,101,110, 0, 42, 99,111,109,112,105,108, +101,100, 0,109,116,105,109,101, 0,115,105,122,101, 0,115,101,101,107, 0,112, 97,115,115,101,112, 97,114,116, 97,108,112,104, + 97, 0, 97,110,103,108,101, 0, 99,108,105,112,115,116, 97, 0, 99,108,105,112,101,110,100, 0,108,101,110,115, 0,111,114,116, +104,111, 95,115, 99, 97,108,101, 0,100,114, 97,119,115,105,122,101, 0,115,104,105,102,116,120, 0,115,104,105,102,116,121, 0, + 89, 70, 95,100,111,102,100,105,115,116, 0, 89, 70, 95, 97,112,101,114,116,117,114,101, 0, 89, 70, 95, 98,107,104,116,121,112, +101, 0, 89, 70, 95, 98,107,104, 98,105, 97,115, 0, 89, 70, 95, 98,107,104,114,111,116, 0, 42,100,111,102, 95,111, 98, 0,102, +114, 97,109,101,110,114, 0,102,114, 97,109,101,115, 0,111,102,102,115,101,116, 0,115,102,114, 97, 0,102,105,101, 95,105,109, + 97, 0, 99,121, 99,108, 0,111,107, 0,109,117,108,116,105, 95,105,110,100,101,120, 0,108, 97,121,101,114, 0,112, 97,115,115, + 0,109,101,110,117,110,114, 0, 42,115, 99,101,110,101, 0,105, 98,117,102,115, 0, 42,103,112,117,116,101,120,116,117,114,101, + 0, 42, 97,110,105,109, 0, 42,114,114, 0,115,111,117,114, 99,101, 0,108, 97,115,116,102,114, 97,109,101, 0,116,112, 97,103, +101,102,108, 97,103, 0,116,111,116, 98,105,110,100, 0,120,114,101,112, 0,121,114,101,112, 0,116,119,115,116, 97, 0,116,119, +101,110,100, 0, 98,105,110,100, 99,111,100,101, 0, 42,114,101,112, 98,105,110,100, 0, 42,112, 97, 99,107,101,100,102,105,108, +101, 0, 42,112,114,101,118,105,101,119, 0, 42,114,101,110,100,101,114, 95,116,101,120,116, 0,108, 97,115,116,117,112,100, 97, +116,101, 0,108, 97,115,116,117,115,101,100, 0, 97,110,105,109,115,112,101,101,100, 0,103,101,110, 95,120, 0,103,101,110, 95, +121, 0,103,101,110, 95,116,121,112,101, 0, 97,115,112,120, 0, 97,115,112,121, 0,116,101,120, 99,111, 0,109, 97,112,116,111, + 0,109, 97,112,116,111,110,101,103, 0, 98,108,101,110,100,116,121,112,101, 0, 42,111, 98,106,101, 99,116, 0, 42,116,101,120, + 0,117,118,110, 97,109,101, 91, 51, 50, 93, 0,112,114,111,106,120, 0,112,114,111,106,121, 0,112,114,111,106,122, 0,109, 97, +112,112,105,110,103, 0,111,102,115, 91, 51, 93, 0,115,105,122,101, 91, 51, 93, 0,114,111,116, 0,116,101,120,102,108, 97,103, + 0, 99,111,108,111,114,109,111,100,101,108, 0,112,109, 97,112,116,111, 0,112,109, 97,112,116,111,110,101,103, 0,110,111,114, +109, 97,112,115,112, 97, 99,101, 0,119,104,105, 99,104, 95,111,117,116,112,117,116, 0, 98,114,117,115,104, 95,109, 97,112, 95, +109,111,100,101, 0,112, 97,100, 91, 55, 93, 0,114, 0,103, 0, 98, 0,107, 0,100,101,102, 95,118, 97,114, 0, 99,111,108,102, + 97, 99, 0,118, 97,114,102, 97, 99, 0,110,111,114,102, 97, 99, 0,100,105,115,112,102, 97, 99, 0,119, 97,114,112,102, 97, 99, + 0, 99,111,108,115,112,101, 99,102, 97, 99, 0,109,105,114,114,102, 97, 99, 0, 97,108,112,104, 97,102, 97, 99, 0,100,105,102, +102,102, 97, 99, 0,115,112,101, 99,102, 97, 99, 0,101,109,105,116,102, 97, 99, 0,104, 97,114,100,102, 97, 99, 0,114, 97,121, +109,105,114,114,102, 97, 99, 0,116,114, 97,110,115,108,102, 97, 99, 0, 97,109, 98,102, 97, 99, 0, 99,111,108,101,109,105,116, +102, 97, 99, 0, 99,111,108,114,101,102,108,102, 97, 99, 0, 99,111,108,116,114, 97,110,115,102, 97, 99, 0,100,101,110,115,102, + 97, 99, 0,115, 99, 97,116,116,101,114,102, 97, 99, 0,114,101,102,108,102, 97, 99, 0,116,105,109,101,102, 97, 99, 0,108,101, +110,103,116,104,102, 97, 99, 0, 99,108,117,109,112,102, 97, 99, 0,107,105,110,107,102, 97, 99, 0,114,111,117,103,104,102, 97, + 99, 0,112, 97,100,101,110,115,102, 97, 99, 0,108,105,102,101,102, 97, 99, 0,115,105,122,101,102, 97, 99, 0,105,118,101,108, +102, 97, 99, 0,112,118,101,108,102, 97, 99, 0,115,104, 97,100,111,119,102, 97, 99, 0,122,101,110,117,112,102, 97, 99, 0,122, +101,110,100,111,119,110,102, 97, 99, 0, 98,108,101,110,100,102, 97, 99, 0,110, 97,109,101, 91, 49, 54, 48, 93, 0, 42,104, 97, +110,100,108,101, 0, 42,112,110, 97,109,101, 0, 42,115,116,110, 97,109,101,115, 0,115,116,121,112,101,115, 0,118, 97,114,115, + 0, 42,118, 97,114,115,116,114, 0, 42,114,101,115,117,108,116, 0, 42, 99,102,114, 97, 0,100, 97,116, 97, 91, 51, 50, 93, 0, + 40, 42,100,111,105,116, 41, 40, 41, 0, 40, 42,105,110,115,116, 97,110, 99,101, 95,105,110,105,116, 41, 40, 41, 0, 40, 42, 99, + 97,108,108, 98, 97, 99,107, 41, 40, 41, 0,118,101,114,115,105,111,110, 0, 97, 0,105,112,111,116,121,112,101, 0, 42,105,109, + 97, 0, 42, 99,117, 98,101, 91, 54, 93, 0,105,109, 97,116, 91, 52, 93, 91, 52, 93, 0,111, 98,105,109, 97,116, 91, 51, 93, 91, + 51, 93, 0,115,116,121,112,101, 0,118,105,101,119,115, 99, 97,108,101, 0,110,111,116,108, 97,121, 0, 99,117, 98,101,114,101, +115, 0,100,101,112,116,104, 0,114,101, 99, 97,108, 99, 0,108, 97,115,116,115,105,122,101, 0,102, 97,108,108,111,102,102, 95, +116,121,112,101, 0,102, 97,108,108,111,102,102, 95,115,111,102,116,110,101,115,115, 0,114, 97,100,105,117,115, 0, 99,111,108, +111,114, 95,115,111,117,114, 99,101, 0,116,111,116,112,111,105,110,116,115, 0,112,100,112, 97,100, 0, 42,112,115,121,115, 0, +112,115,121,115, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0,111, 98, 95, 99, 97, 99,104,101, 95,115,112, 97, 99,101, 0, +112,100,112, 97,100, 50, 91, 50, 93, 0, 42,112,111,105,110,116, 95,116,114,101,101, 0, 42,112,111,105,110,116, 95,100, 97,116, + 97, 0,110,111,105,115,101, 95,115,105,122,101, 0,110,111,105,115,101, 95,100,101,112,116,104, 0,110,111,105,115,101, 95,105, +110,102,108,117,101,110, 99,101, 0,110,111,105,115,101, 95, 98, 97,115,105,115, 0,112,100,112, 97,100, 51, 91, 51, 93, 0,110, +111,105,115,101, 95,102, 97, 99, 0,115,112,101,101,100, 95,115, 99, 97,108,101, 0, 42, 99,111, 98, 97, 0,114,101,115,111,108, + 91, 51, 93, 0,105,110,116,101,114,112, 95,116,121,112,101, 0,102,105,108,101, 95,102,111,114,109, 97,116, 0,101,120,116,101, +110,100, 0,105,110,116, 95,109,117,108,116,105,112,108,105,101,114, 0,115,116,105,108,108, 95,102,114, 97,109,101, 0,115,111, +117,114, 99,101, 95,112, 97,116,104, 91, 50, 52, 48, 93, 0, 42,100, 97,116, 97,115,101,116, 0,110,111,105,115,101,115,105,122, +101, 0,116,117,114, 98,117,108, 0, 98,114,105,103,104,116, 0, 99,111,110,116,114, 97,115,116, 0,114,102, 97, 99, 0,103,102, + 97, 99, 0, 98,102, 97, 99, 0,102,105,108,116,101,114,115,105,122,101, 0,109,103, 95, 72, 0,109,103, 95,108, 97, 99,117,110, + 97,114,105,116,121, 0,109,103, 95,111, 99,116, 97,118,101,115, 0,109,103, 95,111,102,102,115,101,116, 0,109,103, 95,103, 97, +105,110, 0,100,105,115,116, 95, 97,109,111,117,110,116, 0,110,115, 95,111,117,116,115, 99, 97,108,101, 0,118,110, 95,119, 49, + 0,118,110, 95,119, 50, 0,118,110, 95,119, 51, 0,118,110, 95,119, 52, 0,118,110, 95,109,101,120,112, 0,118,110, 95,100,105, +115,116,109, 0,118,110, 95, 99,111,108,116,121,112,101, 0,110,111,105,115,101,100,101,112,116,104, 0,110,111,105,115,101,116, +121,112,101, 0,110,111,105,115,101, 98, 97,115,105,115, 0,110,111,105,115,101, 98, 97,115,105,115, 50, 0,105,109, 97,102,108, + 97,103, 0, 99,114,111,112,120,109,105,110, 0, 99,114,111,112,121,109,105,110, 0, 99,114,111,112,120,109, 97,120, 0, 99,114, +111,112,121,109, 97,120, 0,116,101,120,102,105,108,116,101,114, 0, 97,102,109, 97,120, 0,120,114,101,112,101, 97,116, 0,121, +114,101,112,101, 97,116, 0, 99,104,101, 99,107,101,114,100,105,115,116, 0,110, 97, 98,108, 97, 0,105,117,115,101,114, 0, 42, +110,111,100,101,116,114,101,101, 0, 42,112,108,117,103,105,110, 0, 42,101,110,118, 0, 42,112,100, 0, 42,118,100, 0,117,115, +101, 95,110,111,100,101,115, 0,108,111, 99, 91, 51, 93, 0,114,111,116, 91, 51, 93, 0,109, 97,116, 91, 52, 93, 91, 52, 93, 0, +109,105,110, 91, 51, 93, 0,109, 97,120, 91, 51, 93, 0,109,111,100,101, 0,116,111,116,101,120, 0,115,104,100,119,114, 0,115, +104,100,119,103, 0,115,104,100,119, 98, 0,115,104,100,119,112, 97,100, 0,101,110,101,114,103,121, 0,100,105,115,116, 0,115, +112,111,116,115,105,122,101, 0,115,112,111,116, 98,108,101,110,100, 0,104, 97,105,110,116, 0, 97,116,116, 49, 0, 97,116,116, + 50, 0, 42, 99,117,114,102, 97,108,108,111,102,102, 0,115,104, 97,100,115,112,111,116,115,105,122,101, 0, 98,105, 97,115, 0, +115,111,102,116, 0, 99,111,109,112,114,101,115,115,116,104,114,101,115,104, 0,112, 97,100, 53, 91, 51, 93, 0, 98,117,102,115, +105,122,101, 0,115, 97,109,112, 0, 98,117,102,102,101,114,115, 0,102,105,108,116,101,114,116,121,112,101, 0, 98,117,102,102, +108, 97,103, 0, 98,117,102,116,121,112,101, 0,114, 97,121, 95,115, 97,109,112, 0,114, 97,121, 95,115, 97,109,112,121, 0,114, + 97,121, 95,115, 97,109,112,122, 0,114, 97,121, 95,115, 97,109,112, 95,116,121,112,101, 0, 97,114,101, 97, 95,115,104, 97,112, +101, 0, 97,114,101, 97, 95,115,105,122,101, 0, 97,114,101, 97, 95,115,105,122,101,121, 0, 97,114,101, 97, 95,115,105,122,101, +122, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0,114, 97,121, 95,115, 97,109,112, 95,109,101,116,104,111,100, 0,116, +101,120, 97, 99,116, 0,115,104, 97,100,104, 97,108,111,115,116,101,112, 0,115,117,110, 95,101,102,102,101, 99,116, 95,116,121, +112,101, 0,115,107,121, 98,108,101,110,100,116,121,112,101, 0,104,111,114,105,122,111,110, 95, 98,114,105,103,104,116,110,101, +115,115, 0,115,112,114,101, 97,100, 0,115,117,110, 95, 98,114,105,103,104,116,110,101,115,115, 0,115,117,110, 95,115,105,122, +101, 0, 98, 97, 99,107,115, 99, 97,116,116,101,114,101,100, 95,108,105,103,104,116, 0,115,117,110, 95,105,110,116,101,110,115, +105,116,121, 0, 97,116,109, 95,116,117,114, 98,105,100,105,116,121, 0, 97,116,109, 95,105,110,115, 99, 97,116,116,101,114,105, +110,103, 95,102, 97, 99,116,111,114, 0, 97,116,109, 95,101,120,116,105,110, 99,116,105,111,110, 95,102, 97, 99,116,111,114, 0, + 97,116,109, 95,100,105,115,116, 97,110, 99,101, 95,102, 97, 99,116,111,114, 0,115,107,121, 98,108,101,110,100,102, 97, 99, 0, +115,107,121, 95,101,120,112,111,115,117,114,101, 0,115,107,121, 95, 99,111,108,111,114,115,112, 97, 99,101, 0,112, 97,100, 52, + 0, 89, 70, 95,110,117,109,112,104,111,116,111,110,115, 0, 89, 70, 95,110,117,109,115,101, 97,114, 99,104, 0, 89, 70, 95,112, +104,100,101,112,116,104, 0, 89, 70, 95,117,115,101,113,109, 99, 0, 89, 70, 95, 98,117,102,115,105,122,101, 0, 89, 70, 95,112, + 97,100, 0, 89, 70, 95, 99, 97,117,115,116,105, 99, 98,108,117,114, 0, 89, 70, 95,108,116,114, 97,100,105,117,115, 0, 89, 70, + 95,103,108,111,119,105,110,116, 0, 89, 70, 95,103,108,111,119,111,102,115, 0, 89, 70, 95,103,108,111,119,116,121,112,101, 0, + 89, 70, 95,112, 97,100, 50, 0, 42,109,116,101,120, 91, 49, 56, 93, 0,112,114, 95,116,101,120,116,117,114,101, 0,112, 97,100, + 91, 51, 93, 0,100,101,110,115,105,116,121, 0,101,109,105,115,115,105,111,110, 0,115, 99, 97,116,116,101,114,105,110,103, 0, +114,101,102,108,101, 99,116,105,111,110, 0,101,109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,116,114, 97,110,115, +109,105,115,115,105,111,110, 95, 99,111,108, 91, 51, 93, 0,114,101,102,108,101, 99,116,105,111,110, 95, 99,111,108, 91, 51, 93, + 0,100,101,110,115,105,116,121, 95,115, 99, 97,108,101, 0,100,101,112,116,104, 95, 99,117,116,111,102,102, 0, 97,115,121,109, +109,101,116,114,121, 0,115,116,101,112,115,105,122,101, 95,116,121,112,101, 0,115,104, 97,100,101,102,108, 97,103, 0,115,104, + 97,100,101, 95,116,121,112,101, 0,112,114,101, 99, 97, 99,104,101, 95,114,101,115,111,108,117,116,105,111,110, 0,115,116,101, +112,115,105,122,101, 0,109,115, 95,100,105,102,102, 0,109,115, 95,105,110,116,101,110,115,105,116,121, 0,109,115, 95,115,116, +101,112,115, 0,109, 97,116,101,114,105, 97,108, 95,116,121,112,101, 0,115,112,101, 99,114, 0,115,112,101, 99,103, 0,115,112, +101, 99, 98, 0,109,105,114,114, 0,109,105,114,103, 0,109,105,114, 98, 0, 97,109, 98,114, 0, 97,109, 98, 98, 0, 97,109, 98, +103, 0, 97,109, 98, 0,101,109,105,116, 0, 97,110,103, 0,115,112,101, 99,116,114, 97, 0,114, 97,121, 95,109,105,114,114,111, +114, 0, 97,108,112,104, 97, 0,114,101,102, 0,115,112,101, 99, 0,122,111,102,102,115, 0, 97,100,100, 0,116,114, 97,110,115, +108,117, 99,101,110, 99,121, 0,118,111,108, 0,102,114,101,115,110,101,108, 95,109,105,114, 0,102,114,101,115,110,101,108, 95, +109,105,114, 95,105, 0,102,114,101,115,110,101,108, 95,116,114, 97, 0,102,114,101,115,110,101,108, 95,116,114, 97, 95,105, 0, +102,105,108,116,101,114, 0,116,120, 95,108,105,109,105,116, 0,116,120, 95,102, 97,108,108,111,102,102, 0,114, 97,121, 95,100, +101,112,116,104, 0,114, 97,121, 95,100,101,112,116,104, 95,116,114, 97, 0,104, 97,114, 0,115,101,101,100, 49, 0,115,101,101, +100, 50, 0,103,108,111,115,115, 95,109,105,114, 0,103,108,111,115,115, 95,116,114, 97, 0,115, 97,109,112, 95,103,108,111,115, +115, 95,109,105,114, 0,115, 97,109,112, 95,103,108,111,115,115, 95,116,114, 97, 0, 97,100, 97,112,116, 95,116,104,114,101,115, +104, 95,109,105,114, 0, 97,100, 97,112,116, 95,116,104,114,101,115,104, 95,116,114, 97, 0, 97,110,105,115,111, 95,103,108,111, +115,115, 95,109,105,114, 0,100,105,115,116, 95,109,105,114, 0,102, 97,100,101,116,111, 95,109,105,114, 0,115,104, 97,100,101, + 95,102,108, 97,103, 0,109,111,100,101, 95,108, 0,102,108, 97,114,101, 99, 0,115,116, 97,114, 99, 0,108,105,110,101, 99, 0, +114,105,110,103, 99, 0,104, 97,115,105,122,101, 0,102,108, 97,114,101,115,105,122,101, 0,115,117, 98,115,105,122,101, 0,102, +108, 97,114,101, 98,111,111,115,116, 0,115,116,114, 97,110,100, 95,115,116, 97, 0,115,116,114, 97,110,100, 95,101,110,100, 0, +115,116,114, 97,110,100, 95,101, 97,115,101, 0,115,116,114, 97,110,100, 95,115,117,114,102,110,111,114, 0,115,116,114, 97,110, +100, 95,109,105,110, 0,115,116,114, 97,110,100, 95,119,105,100,116,104,102, 97,100,101, 0,115,116,114, 97,110,100, 95,117,118, +110, 97,109,101, 91, 51, 50, 93, 0,115, 98,105, 97,115, 0,108, 98,105, 97,115, 0,115,104, 97,100, 95, 97,108,112,104, 97, 0, +115,101,112,116,101,120, 0,114,103, 98,115,101,108, 0,112,114, 95,116,121,112,101, 0,112,114, 95, 98, 97, 99,107, 0,112,114, + 95,108, 97,109,112, 0,109,108, 95,102,108, 97,103, 0,100,105,102,102, 95,115,104, 97,100,101,114, 0,115,112,101, 99, 95,115, +104, 97,100,101,114, 0,114,111,117,103,104,110,101,115,115, 0,114,101,102,114, 97, 99, 0,112, 97,114, 97,109, 91, 52, 93, 0, +114,109,115, 0,100, 97,114,107,110,101,115,115, 0, 42,114, 97,109,112, 95, 99,111,108, 0, 42,114, 97,109,112, 95,115,112,101, + 99, 0,114, 97,109,112,105,110, 95, 99,111,108, 0,114, 97,109,112,105,110, 95,115,112,101, 99, 0,114, 97,109,112, 98,108,101, +110,100, 95, 99,111,108, 0,114, 97,109,112, 98,108,101,110,100, 95,115,112,101, 99, 0,114, 97,109,112, 95,115,104,111,119, 0, +112, 97,100, 51, 0,114, 97,109,112,102, 97, 99, 95, 99,111,108, 0,114, 97,109,112,102, 97, 99, 95,115,112,101, 99, 0, 42,103, +114,111,117,112, 0,102,114,105, 99,116,105,111,110, 0,102,104, 0,114,101,102,108,101, 99,116, 0,102,104,100,105,115,116, 0, +120,121,102,114,105, 99,116, 0,100,121,110, 97,109,111,100,101, 0,115,115,115, 95,114, 97,100,105,117,115, 91, 51, 93, 0,115, +115,115, 95, 99,111,108, 91, 51, 93, 0,115,115,115, 95,101,114,114,111,114, 0,115,115,115, 95,115, 99, 97,108,101, 0,115,115, +115, 95,105,111,114, 0,115,115,115, 95, 99,111,108,102, 97, 99, 0,115,115,115, 95,116,101,120,102, 97, 99, 0,115,115,115, 95, +102,114,111,110,116, 0,115,115,115, 95, 98, 97, 99,107, 0,115,115,115, 95,102,108, 97,103, 0,115,115,115, 95,112,114,101,115, +101,116, 0,109, 97,112,116,111, 95,116,101,120,116,117,114,101,100, 0,103,112,117,109, 97,116,101,114,105, 97,108, 0,110, 97, +109,101, 91, 50, 53, 54, 93, 0, 42, 98, 98, 0,105, 49, 0,106, 49, 0,107, 49, 0,105, 50, 0,106, 50, 0,107, 50, 0,115,101, +108, 99,111,108, 49, 0,115,101,108, 99,111,108, 50, 0,113,117, 97,116, 91, 52, 93, 0,101,120,112,120, 0,101,120,112,121, 0, +101,120,112,122, 0,114, 97,100, 0,114, 97,100, 50, 0,115, 0, 42,109, 97,116, 0, 42,105,109, 97,116, 0,101,108,101,109,115, + 0,100,105,115,112, 0, 42,101,100,105,116,101,108,101,109,115, 0, 42, 42,109, 97,116, 0,102,108, 97,103, 50, 0,116,111,116, + 99,111,108, 0,119,105,114,101,115,105,122,101, 0,114,101,110,100,101,114,115,105,122,101, 0,116,104,114,101,115,104, 0, 42, +108, 97,115,116,101,108,101,109, 0,118,101, 99, 91, 51, 93, 91, 51, 93, 0, 97,108,102, 97, 0,119,101,105,103,104,116, 0,104, + 49, 0,104, 50, 0,102, 49, 0,102, 50, 0,102, 51, 0,104,105,100,101, 0,118,101, 99, 91, 52, 93, 0,109, 97,116, 95,110,114, + 0,112,110,116,115,117, 0,112,110,116,115,118, 0,114,101,115,111,108,117, 0,114,101,115,111,108,118, 0,111,114,100,101,114, +117, 0,111,114,100,101,114,118, 0,102,108, 97,103,117, 0,102,108, 97,103,118, 0, 42,107,110,111,116,115,117, 0, 42,107,110, +111,116,115,118, 0,116,105,108,116, 95,105,110,116,101,114,112, 0,114, 97,100,105,117,115, 95,105,110,116,101,114,112, 0, 99, +104, 97,114,105,100,120, 0,107,101,114,110, 0,104, 0,110,117,114, 98, 0, 42,101,100,105,116,110,117,114, 98, 0, 42, 98,101, +118,111, 98,106, 0, 42,116, 97,112,101,114,111, 98,106, 0, 42,116,101,120,116,111,110, 99,117,114,118,101, 0, 42,112, 97,116, +104, 0, 42,107,101,121, 0, 98,101,118, 0,100,114, 97,119,102,108, 97,103, 0,116,119,105,115,116, 95,109,111,100,101, 0,112, + 97,100, 91, 50, 93, 0,116,119,105,115,116, 95,115,109,111,111,116,104, 0,112, 97,116,104,108,101,110, 0, 98,101,118,114,101, +115,111,108, 0,119,105,100,116,104, 0,101,120,116, 49, 0,101,120,116, 50, 0,114,101,115,111,108,117, 95,114,101,110, 0,114, +101,115,111,108,118, 95,114,101,110, 0, 97, 99,116,110,117, 0, 42,108, 97,115,116,115,101,108, 98,112, 0,115,112, 97, 99,101, +109,111,100,101, 0,115,112, 97, 99,105,110,103, 0,108,105,110,101,100,105,115,116, 0,115,104,101, 97,114, 0,102,115,105,122, +101, 0,119,111,114,100,115,112, 97, 99,101, 0,117,108,112,111,115, 0,117,108,104,101,105,103,104,116, 0,120,111,102, 0,121, +111,102, 0,108,105,110,101,119,105,100,116,104, 0, 42,115,116,114, 0, 42,115,101,108, 98,111,120,101,115, 0, 42,101,100,105, +116,102,111,110,116, 0,102, 97,109,105,108,121, 91, 50, 52, 93, 0, 42,118,102,111,110,116, 0, 42,118,102,111,110,116, 98, 0, + 42,118,102,111,110,116,105, 0, 42,118,102,111,110,116, 98,105, 0,115,101,112, 99,104, 97,114, 0, 99,116,105,109,101, 0,116, +111,116, 98,111,120, 0, 97, 99,116, 98,111,120, 0, 42,116, 98, 0,115,101,108,115,116, 97,114,116, 0,115,101,108,101,110,100, + 0, 42,115,116,114,105,110,102,111, 0, 99,117,114,105,110,102,111, 0,101,102,102,101, 99,116, 0, 42,109,102, 97, 99,101, 0, + 42,109,116,102, 97, 99,101, 0, 42,116,102, 97, 99,101, 0, 42,109,118,101,114,116, 0, 42,109,101,100,103,101, 0, 42,100,118, +101,114,116, 0, 42,109, 99,111,108, 0, 42,109,115,116,105, 99,107,121, 0, 42,116,101,120, 99,111,109,101,115,104, 0, 42,109, +115,101,108,101, 99,116, 0, 42,101,100,105,116, 95,109,101,115,104, 0,118,100, 97,116, 97, 0,101,100, 97,116, 97, 0,102,100, + 97,116, 97, 0,116,111,116,101,100,103,101, 0,116,111,116,102, 97, 99,101, 0,116,111,116,115,101,108,101, 99,116, 0, 97, 99, +116, 95,102, 97, 99,101, 0,101,100,105,116,102,108, 97,103, 0, 99,117, 98,101,109, 97,112,115,105,122,101, 0,115,109,111,111, +116,104,114,101,115,104, 0,115,117, 98,100,105,118, 0,115,117, 98,100,105,118,114, 0,115,117, 98,115,117,114,102,116,121,112, +101, 0, 42,109,114, 0, 42,112,118, 0, 42,116,112, 97,103,101, 0,117,118, 91, 52, 93, 91, 50, 93, 0, 99,111,108, 91, 52, 93, + 0,116,114, 97,110,115,112, 0,116,105,108,101, 0,117,110,119,114, 97,112, 0,118, 49, 0,118, 50, 0,118, 51, 0,118, 52, 0, +101,100, 99,111,100,101, 0, 99,114,101, 97,115,101, 0, 98,119,101,105,103,104,116, 0,100,101,102, 95,110,114, 0, 42,100,119, + 0,116,111,116,119,101,105,103,104,116, 0, 99,111, 91, 51, 93, 0,110,111, 91, 51, 93, 0,117,118, 91, 50, 93, 0, 99,111, 91, + 50, 93, 0,105,110,100,101,120, 0,102, 0,105, 0,115, 91, 50, 53, 54, 93, 0,116,111,116,100,105,115,112, 0, 40, 42,100,105, +115,112,115, 41, 40, 41, 0,118, 91, 52, 93, 0,109,105,100, 0,118, 91, 50, 93, 0, 42,102, 97, 99,101,115, 0, 42, 99,111,108, +102, 97, 99,101,115, 0, 42,101,100,103,101,115, 0, 42,118,101,114,116,115, 0,108,101,118,101,108,115, 0,108,101,118,101,108, + 95, 99,111,117,110,116, 0, 99,117,114,114,101,110,116, 0,110,101,119,108,118,108, 0,101,100,103,101,108,118,108, 0,112,105, +110,108,118,108, 0,114,101,110,100,101,114,108,118,108, 0,117,115,101, 95, 99,111,108, 0, 42,101,100,103,101, 95,102,108, 97, +103,115, 0, 42,101,100,103,101, 95, 99,114,101, 97,115,101,115, 0, 42,118,101,114,116, 95,109, 97,112, 0, 42,101,100,103,101, + 95,109, 97,112, 0, 42,111,108,100, 95,102, 97, 99,101,115, 0, 42,111,108,100, 95,101,100,103,101,115, 0, 42,101,114,114,111, +114, 0,109,111,100,105,102,105,101,114, 0,115,117, 98,100,105,118, 84,121,112,101, 0,114,101,110,100,101,114, 76,101,118,101, +108,115, 0, 42,101,109, 67, 97, 99,104,101, 0, 42,109, 67, 97, 99,104,101, 0,100,101,102, 97,120,105,115, 0,112, 97,100, 91, + 54, 93, 0,108,101,110,103,116,104, 0,114, 97,110,100,111,109,105,122,101, 0,115,101,101,100, 0, 42,111, 98, 95, 97,114,109, + 0, 42,115,116, 97,114,116, 95, 99, 97,112, 0, 42,101,110,100, 95, 99, 97,112, 0, 42, 99,117,114,118,101, 95,111, 98, 0, 42, +111,102,102,115,101,116, 95,111, 98, 0,111,102,102,115,101,116, 91, 51, 93, 0,115, 99, 97,108,101, 91, 51, 93, 0,109,101,114, +103,101, 95,100,105,115,116, 0,102,105,116, 95,116,121,112,101, 0,111,102,102,115,101,116, 95,116,121,112,101, 0, 99,111,117, +110,116, 0, 97,120,105,115, 0,116,111,108,101,114, 97,110, 99,101, 0, 42,109,105,114,114,111,114, 95,111, 98, 0,115,112,108, +105,116, 95, 97,110,103,108,101, 0,118, 97,108,117,101, 0,114,101,115, 0,118, 97,108, 95,102,108, 97,103,115, 0,108,105,109, + 95,102,108, 97,103,115, 0,101, 95,102,108, 97,103,115, 0, 98,101,118,101,108, 95, 97,110,103,108,101, 0,100,101,102,103,114, +112, 95,110, 97,109,101, 91, 51, 50, 93, 0, 42,100,111,109, 97,105,110, 0, 42,102,108,111,119, 0, 42, 99,111,108,108, 0,116, +105,109,101, 0, 42,116,101,120,116,117,114,101, 0,115,116,114,101,110,103,116,104, 0,100,105,114,101, 99,116,105,111,110, 0, +109,105,100,108,101,118,101,108, 0,116,101,120,109, 97,112,112,105,110,103, 0, 42,109, 97,112, 95,111, 98,106,101, 99,116, 0, +117,118,108, 97,121,101,114, 95,110, 97,109,101, 91, 51, 50, 93, 0,117,118,108, 97,121,101,114, 95,116,109,112, 0, 42,112,114, +111,106,101, 99,116,111,114,115, 91, 49, 48, 93, 0, 42,105,109, 97,103,101, 0,110,117,109, 95,112,114,111,106,101, 99,116,111, +114,115, 0, 97,115,112,101, 99,116,120, 0, 97,115,112,101, 99,116,121, 0,112,101,114, 99,101,110,116, 0,102, 97, 99,101, 67, +111,117,110,116, 0,102, 97, 99, 0,114,101,112,101, 97,116, 0, 42,111, 98,106,101, 99,116, 99,101,110,116,101,114, 0,115,116, + 97,114,116,120, 0,115,116, 97,114,116,121, 0,104,101,105,103,104,116, 0,110, 97,114,114,111,119, 0,115,112,101,101,100, 0, +100, 97,109,112, 0,102, 97,108,108,111,102,102, 0,116,105,109,101,111,102,102,115, 0,108,105,102,101,116,105,109,101, 0,100, +101,102,111,114,109,102,108, 97,103, 0,109,117,108,116,105, 0, 42,112,114,101,118, 67,111,115, 0,115,117, 98,116, 97,114,103, +101,116, 91, 51, 50, 93, 0,112, 97,114,101,110,116,105,110,118, 91, 52, 93, 91, 52, 93, 0, 99,101,110,116, 91, 51, 93, 0, 42, +105,110,100,101,120, 97,114, 0,116,111,116,105,110,100,101,120, 0,102,111,114, 99,101, 0, 42, 99,108,111,116,104, 79, 98,106, +101, 99,116, 0, 42,115,105,109, 95,112, 97,114,109,115, 0, 42, 99,111,108,108, 95,112, 97,114,109,115, 0, 42,112,111,105,110, +116, 95, 99, 97, 99,104,101, 0,112,116, 99, 97, 99,104,101,115, 0, 42,120, 0, 42,120,110,101,119, 0, 42,120,111,108,100, 0, + 42, 99,117,114,114,101,110,116, 95,120,110,101,119, 0, 42, 99,117,114,114,101,110,116, 95,120, 0, 42, 99,117,114,114,101,110, +116, 95,118, 0, 42,109,102, 97, 99,101,115, 0,110,117,109,118,101,114,116,115, 0,110,117,109,102, 97, 99,101,115, 0, 42, 98, +118,104,116,114,101,101, 0, 42,118, 0, 42,100,109, 0, 99,102,114, 97, 0,111,112,101,114, 97,116,105,111,110, 0,118,101,114, +116,101,120, 0,116,111,116,105,110,102,108,117,101,110, 99,101, 0,103,114,105,100,115,105,122,101, 0,110,101,101,100, 98,105, +110,100, 0, 42, 98,105,110,100,119,101,105,103,104,116,115, 0, 42, 98,105,110,100, 99,111,115, 0,116,111,116, 99, 97,103,101, +118,101,114,116, 0, 42,100,121,110,103,114,105,100, 0, 42,100,121,110,105,110,102,108,117,101,110, 99,101,115, 0, 42,100,121, +110,118,101,114,116,115, 0, 42,112, 97,100, 50, 0,100,121,110,103,114,105,100,115,105,122,101, 0,100,121,110, 99,101,108,108, +109,105,110, 91, 51, 93, 0,100,121,110, 99,101,108,108,119,105,100,116,104, 0, 98,105,110,100,109, 97,116, 91, 52, 93, 91, 52, + 93, 0,116,111,116,100,109,118,101,114,116, 0,116,111,116,100,109,101,100,103,101, 0,116,111,116,100,109,102, 97, 99,101, 0, +112,115,121,115, 0,112,111,115,105,116,105,111,110, 0,114, 97,110,100,111,109, 95,112,111,115,105,116,105,111,110, 0, 42,102, + 97, 99,101,112, 97, 0,118,103,114,111,117,112, 0,112,114,111,116,101, 99,116, 0, 42,117,110,100,111, 95,118,101,114,116,115, + 0,117,110,100,111, 95,118,101,114,116,115, 95,116,111,116, 0,117,110,100,111, 95,115,105,103,110, 97,108, 0,108,118,108, 0, +116,111,116,108,118,108, 0,115,105,109,112,108,101, 0, 42,102,115,115, 0, 42,116, 97,114,103,101,116, 0, 42, 97,117,120, 84, + 97,114,103,101,116, 0,118,103,114,111,117,112, 95,110, 97,109,101, 91, 51, 50, 93, 0,107,101,101,112, 68,105,115,116, 0,115, +104,114,105,110,107, 84,121,112,101, 0,115,104,114,105,110,107, 79,112,116,115, 0,112,114,111,106, 65,120,105,115, 0,115,117, + 98,115,117,114,102, 76,101,118,101,108,115, 0, 42,111,114,105,103,105,110, 0,102, 97, 99,116,111,114, 0,108,105,109,105,116, + 91, 50, 93, 0,111,114,105,103,105,110, 79,112,116,115, 0,112,110,116,115,119, 0,111,112,110,116,115,117, 0,111,112,110,116, +115,118, 0,111,112,110,116,115,119, 0,116,121,112,101,117, 0,116,121,112,101,118, 0,116,121,112,101,119, 0,102,117, 0,102, +118, 0,102,119, 0,100,117, 0,100,118, 0,100,119, 0, 42,100,101,102, 0, 42,108, 97,116,116,105, 99,101,100, 97,116, 97, 0, +108, 97,116,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 42,101,100,105,116,108, 97,116,116, 0,118,101, 99, 91, 56, 93, 91, 51, 93, + 0, 42,115, 99,117,108,112,116, 0,112, 97,114,116,121,112,101, 0,112, 97,114, 49, 0,112, 97,114, 50, 0,112, 97,114, 51, 0, +112, 97,114,115,117, 98,115,116,114, 91, 51, 50, 93, 0, 42,116,114, 97, 99,107, 0, 42,112,114,111,120,121, 0, 42,112,114,111, +120,121, 95,103,114,111,117,112, 0, 42,112,114,111,120,121, 95,102,114,111,109, 0, 42, 97, 99,116,105,111,110, 0, 42,112,111, +115,101,108,105, 98, 0, 42,112,111,115,101, 0, 42,103,112,100, 0, 99,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110, +101,108,115, 0,100,101,102, 98, 97,115,101, 0,109,111,100,105,102,105,101,114,115, 0,114,101,115,116,111,114,101, 95,109,111, +100,101, 0, 42,109, 97,116, 98,105,116,115, 0, 97, 99,116, 99,111,108, 0,100,108,111, 99, 91, 51, 93, 0,111,114,105,103, 91, + 51, 93, 0,100,115,105,122,101, 91, 51, 93, 0,100,114,111,116, 91, 51, 93, 0,100,113,117, 97,116, 91, 52, 93, 0,114,111,116, + 65,120,105,115, 91, 51, 93, 0,100,114,111,116, 65,120,105,115, 91, 51, 93, 0,114,111,116, 65,110,103,108,101, 0,100,114,111, +116, 65,110,103,108,101, 0,111, 98,109, 97,116, 91, 52, 93, 91, 52, 93, 0, 99,111,110,115,116,105,110,118, 91, 52, 93, 91, 52, + 93, 0,108, 97,121, 0, 99,111,108, 98,105,116,115, 0,116,114, 97,110,115,102,108, 97,103, 0,112,114,111,116,101, 99,116,102, +108, 97,103, 0,116,114, 97, 99,107,102,108, 97,103, 0,117,112,102,108, 97,103, 0,110,108, 97,102,108, 97,103, 0,105,112,111, +102,108, 97,103, 0,105,112,111,119,105,110, 0,115, 99, 97,102,108, 97,103, 0,115, 99, 97,118,105,115,102,108, 97,103, 0, 98, +111,117,110,100,116,121,112,101, 0,100,117,112,111,110, 0,100,117,112,111,102,102, 0,100,117,112,115,116, 97, 0,100,117,112, +101,110,100, 0,115,102, 0,109, 97,115,115, 0,100, 97,109,112,105,110,103, 0,105,110,101,114,116,105, 97, 0,102,111,114,109, +102, 97, 99,116,111,114, 0,114,100, 97,109,112,105,110,103, 0,109, 97,114,103,105,110, 0,109, 97,120, 95,118,101,108, 0,109, +105,110, 95,118,101,108, 0,109, 95, 99,111,110,116, 97, 99,116, 80,114,111, 99,101,115,115,105,110,103, 84,104,114,101,115,104, +111,108,100, 0,114,111,116,109,111,100,101, 0,100,116, 0,100,116,120, 0,101,109,112,116,121, 95,100,114, 97,119,116,121,112, +101, 0,112, 97,100, 49, 91, 51, 93, 0,101,109,112,116,121, 95,100,114, 97,119,115,105,122,101, 0,100,117,112,102, 97, 99,101, +115, 99, 97, 0,112,114,111,112, 0,115,101,110,115,111,114,115, 0, 99,111,110,116,114,111,108,108,101,114,115, 0, 97, 99,116, +117, 97,116,111,114,115, 0, 98, 98,115,105,122,101, 91, 51, 93, 0, 97, 99,116,100,101,102, 0,103, 97,109,101,102,108, 97,103, + 0,103, 97,109,101,102,108, 97,103, 50, 0, 42, 98,115,111,102,116, 0,115,111,102,116,102,108, 97,103, 0, 97,110,105,115,111, +116,114,111,112,105, 99, 70,114,105, 99,116,105,111,110, 91, 51, 93, 0, 99,111,110,115,116,114, 97,105,110,116,115, 0,110,108, + 97,115,116,114,105,112,115, 0,104,111,111,107,115, 0,112, 97,114,116,105, 99,108,101,115,121,115,116,101,109, 0, 42,115,111, +102,116, 0, 42,100,117,112, 95,103,114,111,117,112, 0,102,108,117,105,100,115,105,109, 70,108, 97,103, 0,114,101,115,116,114, +105, 99,116,102,108, 97,103, 0,115,104, 97,112,101,110,114, 0,115,104, 97,112,101,102,108, 97,103, 0,114,101, 99, 97,108, 99, +111, 0, 98,111,100,121, 95,116,121,112,101, 0, 42,102,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 42,100, +101,114,105,118,101,100, 68,101,102,111,114,109, 0, 42,100,101,114,105,118,101,100, 70,105,110, 97,108, 0,108, 97,115,116, 68, + 97,116, 97, 77, 97,115,107, 0,115,116, 97,116,101, 0,105,110,105,116, 95,115,116, 97,116,101, 0,103,112,117,108, 97,109,112, + 0,112, 99, 95,105,100,115, 0, 42,100,117,112,108,105,108,105,115,116, 0, 99,117,114,105,110,100,101,120, 0, 97, 99,116,105, +118,101, 0,111,114,105,103,108, 97,121, 0,110,111, 95,100,114, 97,119, 0, 97,110,105,109, 97,116,101,100, 0,111,109, 97,116, + 91, 52, 93, 91, 52, 93, 0,111,114, 99,111, 91, 51, 93, 0,100,101,102,108,101, 99,116, 0,102,111,114, 99,101,102,105,101,108, +100, 0,115,104, 97,112,101, 0,116,101,120, 95,109,111,100,101, 0,107,105,110,107, 0,107,105,110,107, 95, 97,120,105,115, 0, +122,100,105,114, 0,102, 95,115,116,114,101,110,103,116,104, 0,102, 95,100, 97,109,112, 0,102, 95,102,108,111,119, 0,102, 95, +115,105,122,101, 0,102, 95,112,111,119,101,114, 0,109, 97,120,100,105,115,116, 0,109,105,110,100,105,115,116, 0,102, 95,112, +111,119,101,114, 95,114, 0,109, 97,120,114, 97,100, 0,109,105,110,114, 97,100, 0,112,100,101,102, 95,100, 97,109,112, 0,112, +100,101,102, 95,114,100, 97,109,112, 0,112,100,101,102, 95,112,101,114,109, 0,112,100,101,102, 95,102,114,105, 99,116, 0,112, +100,101,102, 95,114,102,114,105, 99,116, 0, 97, 98,115,111,114,112,116,105,111,110, 0,112,100,101,102, 95,115, 98,100, 97,109, +112, 0,112,100,101,102, 95,115, 98,105,102,116, 0,112,100,101,102, 95,115, 98,111,102,116, 0, 99,108,117,109,112, 95,102, 97, + 99, 0, 99,108,117,109,112, 95,112,111,119, 0,107,105,110,107, 95,102,114,101,113, 0,107,105,110,107, 95,115,104, 97,112,101, + 0,107,105,110,107, 95, 97,109,112, 0,102,114,101,101, 95,101,110,100, 0,116,101,120, 95,110, 97, 98,108, 97, 0, 42,114,110, +103, 0,102, 95,110,111,105,115,101, 0,119,101,105,103,104,116, 91, 49, 51, 93, 0,103,108,111, 98, 97,108, 95,103,114, 97,118, +105,116,121, 0,114,116, 91, 51, 93, 0,102,114, 97,109,101, 0,116,111,116,112,111,105,110,116, 0,100, 97,116, 97, 95,116,121, +112,101,115, 0, 42,105,110,100,101,120, 95, 97,114,114, 97,121, 0, 42,100, 97,116, 97, 91, 56, 93, 0, 42, 99,117,114, 91, 56, + 93, 0,115,116,101,112, 0,115,105,109,102,114, 97,109,101, 0,115,116, 97,114,116,102,114, 97,109,101, 0,101,110,100,102,114, + 97,109,101, 0,101,100,105,116,102,114, 97,109,101, 0,108, 97,115,116, 95,101,120, 97, 99,116, 0,110, 97,109,101, 91, 54, 52, + 93, 0,112,114,101,118, 95,110, 97,109,101, 91, 54, 52, 93, 0,105,110,102,111, 91, 54, 52, 93, 0,112, 97,116,104, 91, 50, 52, + 48, 93, 0,109,101,109, 95, 99, 97, 99,104,101, 0, 42,101,100,105,116, 0, 40, 42,102,114,101,101, 95,101,100,105,116, 41, 40, + 41, 0,108,105,110, 83,116,105,102,102, 0, 97,110,103, 83,116,105,102,102, 0,118,111,108,117,109,101, 0,118,105,116,101,114, + 97,116,105,111,110,115, 0,112,105,116,101,114, 97,116,105,111,110,115, 0,100,105,116,101,114, 97,116,105,111,110,115, 0, 99, +105,116,101,114, 97,116,105,111,110,115, 0,107, 83, 82, 72, 82, 95, 67, 76, 0,107, 83, 75, 72, 82, 95, 67, 76, 0,107, 83, 83, + 72, 82, 95, 67, 76, 0,107, 83, 82, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, 75, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 83, + 83, 95, 83, 80, 76, 84, 95, 67, 76, 0,107, 86, 67, 70, 0,107, 68, 80, 0,107, 68, 71, 0,107, 76, 70, 0,107, 80, 82, 0,107, + 86, 67, 0,107, 68, 70, 0,107, 77, 84, 0,107, 67, 72, 82, 0,107, 75, 72, 82, 0,107, 83, 72, 82, 0,107, 65, 72, 82, 0, 99, +111,108,108,105,115,105,111,110,102,108, 97,103,115, 0,110,117,109, 99,108,117,115,116,101,114,105,116,101,114, 97,116,105,111, +110,115, 0,119,101,108,100,105,110,103, 0,116,111,116,115,112,114,105,110,103, 0, 42, 98,112,111,105,110,116, 0, 42, 98,115, +112,114,105,110,103, 0,109,115,103, 95,108,111, 99,107, 0,109,115,103, 95,118, 97,108,117,101, 0,110,111,100,101,109, 97,115, +115, 0,110, 97,109,101,100, 86, 71, 95, 77, 97,115,115, 91, 51, 50, 93, 0,103,114, 97,118, 0,109,101,100,105, 97,102,114,105, + 99,116, 0,114,107,108,105,109,105,116, 0,112,104,121,115,105, 99,115, 95,115,112,101,101,100, 0,103,111, 97,108,115,112,114, +105,110,103, 0,103,111, 97,108,102,114,105, 99,116, 0,109,105,110,103,111, 97,108, 0,109, 97,120,103,111, 97,108, 0,100,101, +102,103,111, 97,108, 0,118,101,114,116,103,114,111,117,112, 0,110, 97,109,101,100, 86, 71, 95, 83,111,102,116,103,111, 97,108, + 91, 51, 50, 93, 0,102,117,122,122,121,110,101,115,115, 0,105,110,115,112,114,105,110,103, 0,105,110,102,114,105, 99,116, 0, +110, 97,109,101,100, 86, 71, 95, 83,112,114,105,110,103, 95, 75, 91, 51, 50, 93, 0,101,102,114, 97, 0,105,110,116,101,114,118, + 97,108, 0,108,111, 99, 97,108, 0,115,111,108,118,101,114,102,108, 97,103,115, 0, 42, 42,107,101,121,115, 0,116,111,116,112, +111,105,110,116,107,101,121, 0,115,101, 99,111,110,100,115,112,114,105,110,103, 0, 99,111,108, 98, 97,108,108, 0, 98, 97,108, +108,100, 97,109,112, 0, 98, 97,108,108,115,116,105,102,102, 0,115, 98, 99, 95,109,111,100,101, 0, 97,101,114,111,101,100,103, +101, 0,109,105,110,108,111,111,112,115, 0,109, 97,120,108,111,111,112,115, 0, 99,104,111,107,101, 0,115,111,108,118,101,114, + 95, 73, 68, 0,112,108, 97,115,116,105, 99, 0,115,112,114,105,110,103,112,114,101,108,111, 97,100, 0, 42,115, 99,114, 97,116, + 99,104, 0,115,104,101, 97,114,115,116,105,102,102, 0,105,110,112,117,115,104, 0, 42,112,111,105,110,116, 99, 97, 99,104,101, + 0, 42,101,102,102,101, 99,116,111,114, 95,119,101,105,103,104,116,115, 0, 42,102,109,100, 0,115,104,111,119, 95, 97,100,118, + 97,110, 99,101,100,111,112,116,105,111,110,115, 0,114,101,115,111,108,117,116,105,111,110,120,121,122, 0,112,114,101,118,105, +101,119,114,101,115,120,121,122, 0,114,101, 97,108,115,105,122,101, 0,103,117,105, 68,105,115,112,108, 97,121, 77,111,100,101, + 0,114,101,110,100,101,114, 68,105,115,112,108, 97,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 86, 97,108,117, +101, 0,118,105,115, 99,111,115,105,116,121, 77,111,100,101, 0,118,105,115, 99,111,115,105,116,121, 69,120,112,111,110,101,110, +116, 0,103,114, 97,118,120, 0,103,114, 97,118,121, 0,103,114, 97,118,122, 0, 97,110,105,109, 83,116, 97,114,116, 0, 97,110, +105,109, 69,110,100, 0,103,115,116, 97,114, 0,109, 97,120, 82,101,102,105,110,101, 0,105,110,105, 86,101,108,120, 0,105,110, +105, 86,101,108,121, 0,105,110,105, 86,101,108,122, 0, 42,111,114,103, 77,101,115,104, 0, 42,109,101,115,104, 83,117,114,102, + 97, 99,101, 0, 42,109,101,115,104, 66, 66, 0,115,117,114,102,100, 97,116, 97, 80, 97,116,104, 91, 50, 52, 48, 93, 0, 98, 98, + 83,116, 97,114,116, 91, 51, 93, 0, 98, 98, 83,105,122,101, 91, 51, 93, 0,116,121,112,101, 70,108, 97,103,115, 0,100,111,109, + 97,105,110, 78,111,118,101, 99,103,101,110, 0,118,111,108,117,109,101, 73,110,105,116, 84,121,112,101, 0,112, 97,114,116, 83, +108,105,112, 86, 97,108,117,101, 0,103,101,110,101,114, 97,116,101, 84,114, 97, 99,101,114,115, 0,103,101,110,101,114, 97,116, +101, 80, 97,114,116,105, 99,108,101,115, 0,115,117,114,102, 97, 99,101, 83,109,111,111,116,104,105,110,103, 0,115,117,114,102, + 97, 99,101, 83,117, 98,100,105,118,115, 0,112, 97,114,116,105, 99,108,101, 73,110,102, 83,105,122,101, 0,112, 97,114,116,105, + 99,108,101, 73,110,102, 65,108,112,104, 97, 0,102, 97,114, 70,105,101,108,100, 83,105,122,101, 0, 42,109,101,115,104, 83,117, +114,102, 78,111,114,109, 97,108,115, 0, 99,112,115, 84,105,109,101, 83,116, 97,114,116, 0, 99,112,115, 84,105,109,101, 69,110, +100, 0, 99,112,115, 81,117, 97,108,105,116,121, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 83,116,114,101,110,103,116, +104, 0, 97,116,116,114, 97, 99,116,102,111,114, 99,101, 82, 97,100,105,117,115, 0,118,101,108,111, 99,105,116,121,102,111,114, + 99,101, 83,116,114,101,110,103,116,104, 0,118,101,108,111, 99,105,116,121,102,111,114, 99,101, 82, 97,100,105,117,115, 0,108, + 97,115,116,103,111,111,100,102,114, 97,109,101, 0,109,105,115,116,121,112,101, 0,104,111,114,114, 0,104,111,114,103, 0,104, +111,114, 98, 0,104,111,114,107, 0,122,101,110,114, 0,122,101,110,103, 0,122,101,110, 98, 0,122,101,110,107, 0, 97,109, 98, +107, 0,102, 97,115,116, 99,111,108, 0,101,120,112,111,115,117,114,101, 0,101,120,112, 0,114, 97,110,103,101, 0,108,105,110, +102, 97, 99, 0,108,111,103,102, 97, 99, 0,103,114, 97,118,105,116,121, 0, 97, 99,116,105,118,105,116,121, 66,111,120, 82, 97, +100,105,117,115, 0,115,107,121,116,121,112,101, 0,111, 99, 99,108,117,115,105,111,110, 82,101,115, 0,112,104,121,115,105, 99, +115, 69,110,103,105,110,101, 0,116,105, 99,114, 97,116,101, 0,109, 97,120,108,111,103,105, 99,115,116,101,112, 0,112,104,121, +115,117, 98,115,116,101,112, 0,109, 97,120,112,104,121,115,116,101,112, 0,109,105,115,105, 0,109,105,115,116,115,116, 97, 0, +109,105,115,116,100,105,115,116, 0,109,105,115,116,104,105, 0,115,116, 97,114,114, 0,115,116, 97,114,103, 0,115,116, 97,114, + 98, 0,115,116, 97,114,107, 0,115,116, 97,114,115,105,122,101, 0,115,116, 97,114,109,105,110,100,105,115,116, 0,115,116, 97, +114,100,105,115,116, 0,115,116, 97,114, 99,111,108,110,111,105,115,101, 0,100,111,102,115,116, 97, 0,100,111,102,101,110,100, + 0,100,111,102,109,105,110, 0,100,111,102,109, 97,120, 0, 97,111,100,105,115,116, 0, 97,111,100,105,115,116,102, 97, 99, 0, + 97,111,101,110,101,114,103,121, 0, 97,111, 98,105, 97,115, 0, 97,111,109,111,100,101, 0, 97,111,115, 97,109,112, 0, 97,111, +109,105,120, 0, 97,111, 99,111,108,111,114, 0, 97,111, 95, 97,100, 97,112,116, 95,116,104,114,101,115,104, 0, 97,111, 95, 97, +100, 97,112,116, 95,115,112,101,101,100, 95,102, 97, 99, 0, 97,111, 95, 97,112,112,114,111,120, 95,101,114,114,111,114, 0, 97, +111, 95, 97,112,112,114,111,120, 95, 99,111,114,114,101, 99,116,105,111,110, 0, 97,111, 95,115, 97,109,112, 95,109,101,116,104, +111,100, 0, 97,111, 95,103, 97,116,104,101,114, 95,109,101,116,104,111,100, 0, 97,111, 95, 97,112,112,114,111,120, 95,112, 97, +115,115,101,115, 0, 42, 97,111,115,112,104,101,114,101, 0, 42, 97,111,116, 97, 98,108,101,115, 0,115,101,108, 99,111,108, 0, +115,120, 0,115,121, 0, 42,108,112, 70,111,114,109, 97,116, 0, 42,108,112, 80, 97,114,109,115, 0, 99, 98, 70,111,114,109, 97, +116, 0, 99, 98, 80, 97,114,109,115, 0,102, 99, 99, 84,121,112,101, 0,102, 99, 99, 72, 97,110,100,108,101,114, 0,100,119, 75, +101,121, 70,114, 97,109,101, 69,118,101,114,121, 0,100,119, 81,117, 97,108,105,116,121, 0,100,119, 66,121,116,101,115, 80,101, +114, 83,101, 99,111,110,100, 0,100,119, 70,108, 97,103,115, 0,100,119, 73,110,116,101,114,108,101, 97,118,101, 69,118,101,114, +121, 0, 97,118,105, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 42, 99,100, 80, 97,114,109,115, 0, 42,112, 97, +100, 0, 99,100, 83,105,122,101, 0,113,116, 99,111,100,101, 99,110, 97,109,101, 91, 49, 50, 56, 93, 0, 99,111,100,101, 99, 0, + 97,117,100,105,111, 95, 99,111,100,101, 99, 0,118,105,100,101,111, 95, 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95, + 98,105,116,114, 97,116,101, 0, 97,117,100,105,111, 95,109,105,120,114, 97,116,101, 0, 97,117,100,105,111, 95,118,111,108,117, +109,101, 0,103,111,112, 95,115,105,122,101, 0,114, 99, 95,109,105,110, 95,114, 97,116,101, 0,114, 99, 95,109, 97,120, 95,114, + 97,116,101, 0,114, 99, 95, 98,117,102,102,101,114, 95,115,105,122,101, 0,109,117,120, 95,112, 97, 99,107,101,116, 95,115,105, +122,101, 0,109,117,120, 95,114, 97,116,101, 0,109,105,120,114, 97,116,101, 0,109, 97,105,110, 0,115,112,101,101,100, 95,111, +102, 95,115,111,117,110,100, 0,100,111,112,112,108,101,114, 95,102, 97, 99,116,111,114, 0,100,105,115,116, 97,110, 99,101, 95, +109,111,100,101,108, 0, 42,109, 97,116, 95,111,118,101,114,114,105,100,101, 0, 42,108,105,103,104,116, 95,111,118,101,114,114, +105,100,101, 0,108, 97,121, 95,122,109, 97,115,107, 0,108, 97,121,102,108, 97,103, 0,112, 97,115,115,102,108, 97,103, 0,112, + 97,115,115, 95,120,111,114, 0, 42, 97,118,105, 99,111,100,101, 99,100, 97,116, 97, 0, 42,113,116, 99,111,100,101, 99,100, 97, +116, 97, 0,102,102, 99,111,100,101, 99,100, 97,116, 97, 0,112,115,102,114, 97, 0,112,101,102,114, 97, 0,105,109, 97,103,101, +115, 0,102,114, 97,109, 97,112,116,111, 0,116,104,114,101, 97,100,115, 0,102,114, 97,109,101,108,101,110, 0, 98,108,117,114, +102, 97, 99, 0,101,100,103,101, 82, 0,101,100,103,101, 71, 0,101,100,103,101, 66, 0,102,117,108,108,115, 99,114,101,101,110, + 0,120,112,108, 97,121, 0,121,112,108, 97,121, 0,102,114,101,113,112,108, 97,121, 0, 97,116,116,114,105, 98, 0,114,116, 49, + 0,114,116, 50, 0,115,116,101,114,101,111,109,111,100,101, 0,100,105,109,101,110,115,105,111,110,115,112,114,101,115,101,116, + 0,109, 97,120,105,109,115,105,122,101, 0,120,115, 99,104, 0,121,115, 99,104, 0,120,112, 97,114,116,115, 0,121,112, 97,114, +116,115, 0,119,105,110,112,111,115, 0,112,108, 97,110,101,115, 0,105,109,116,121,112,101, 0,115,117, 98,105,109,116,121,112, +101, 0,113,117, 97,108,105,116,121, 0,100,105,115,112,108, 97,121,109,111,100,101, 0,114,112, 97,100, 49, 0,114,112, 97,100, + 50, 0,115, 99,101,109,111,100,101, 0,114, 97,121,116,114, 97, 99,101, 95,111,112,116,105,111,110,115, 0,114, 97,121,116,114, + 97, 99,101, 95,115,116,114,117, 99,116,117,114,101, 0,114,101,110,100,101,114,101,114, 0,111, 99,114,101,115, 0, 97,108,112, +104, 97,109,111,100,101, 0,111,115, 97, 0,102,114,115, 95,115,101, 99, 0,101,100,103,101,105,110,116, 0,115, 97,102,101,116, +121, 0, 98,111,114,100,101,114, 0,100,105,115,112,114,101, 99,116, 0,108, 97,121,101,114,115, 0, 97, 99,116,108, 97,121, 0, +120, 97,115,112, 0,121, 97,115,112, 0,102,114,115, 95,115,101, 99, 95, 98, 97,115,101, 0,103, 97,117,115,115, 0, 99,111,108, +111,114, 95,109,103,116, 95,102,108, 97,103, 0,112,111,115,116,103, 97,109,109, 97, 0,112,111,115,116,104,117,101, 0,112,111, +115,116,115, 97,116, 0,100,105,116,104,101,114, 95,105,110,116,101,110,115,105,116,121, 0, 98, 97,107,101, 95,111,115, 97, 0, + 98, 97,107,101, 95,102,105,108,116,101,114, 0, 98, 97,107,101, 95,109,111,100,101, 0, 98, 97,107,101, 95,102,108, 97,103, 0, + 98, 97,107,101, 95,110,111,114,109, 97,108, 95,115,112, 97, 99,101, 0, 98, 97,107,101, 95,113,117, 97,100, 95,115,112,108,105, +116, 0, 98, 97,107,101, 95,109, 97,120,100,105,115,116, 0, 98, 97,107,101, 95, 98,105, 97,115,100,105,115,116, 0, 98, 97,107, +101, 95,112, 97,100, 0, 71, 73,113,117, 97,108,105,116,121, 0, 71, 73, 99, 97, 99,104,101, 0, 71, 73,109,101,116,104,111,100, + 0, 71, 73,112,104,111,116,111,110,115, 0, 71, 73,100,105,114,101, 99,116, 0, 89, 70, 95, 65, 65, 0, 89, 70,101,120,112,111, +114,116,120,109,108, 0, 89, 70, 95,110,111, 98,117,109,112, 0, 89, 70, 95, 99,108, 97,109,112,114,103, 98, 0,121,102,112, 97, +100, 49, 0, 71, 73,100,101,112,116,104, 0, 71, 73, 99, 97,117,115,100,101,112,116,104, 0, 71, 73,112,105,120,101,108,115,112, +101,114,115, 97,109,112,108,101, 0, 71, 73,112,104,111,116,111,110, 99,111,117,110,116, 0, 71, 73,109,105,120,112,104,111,116, +111,110,115, 0, 71, 73,112,104,111,116,111,110,114, 97,100,105,117,115, 0, 89, 70, 95,114, 97,121,100,101,112,116,104, 0, 89, + 70, 95, 65, 65,112, 97,115,115,101,115, 0, 89, 70, 95, 65, 65,115, 97,109,112,108,101,115, 0,121,102,112, 97,100, 50, 0, 71, + 73,115,104, 97,100,111,119,113,117, 97,108,105,116,121, 0, 71, 73,114,101,102,105,110,101,109,101,110,116, 0, 71, 73,112,111, +119,101,114, 0, 71, 73,105,110,100,105,114,112,111,119,101,114, 0, 89, 70, 95,103, 97,109,109, 97, 0, 89, 70, 95,101,120,112, +111,115,117,114,101, 0, 89, 70, 95,114, 97,121, 98,105, 97,115, 0, 89, 70, 95, 65, 65,112,105,120,101,108,115,105,122,101, 0, + 89, 70, 95, 65, 65,116,104,114,101,115,104,111,108,100, 0, 98, 97, 99,107, 98,117,102, 91, 49, 54, 48, 93, 0,112,105, 99, 91, + 49, 54, 48, 93, 0,115,116, 97,109,112, 0,115,116, 97,109,112, 95,102,111,110,116, 95,105,100, 0,115,116, 97,109,112, 95,117, +100, 97,116, 97, 91, 49, 54, 48, 93, 0,102,103, 95,115,116, 97,109,112, 91, 52, 93, 0, 98,103, 95,115,116, 97,109,112, 91, 52, + 93, 0,115,105,109,112,108,105,102,121, 95,115,117, 98,115,117,114,102, 0,115,105,109,112,108,105,102,121, 95,115,104, 97,100, +111,119,115, 97,109,112,108,101,115, 0,115,105,109,112,108,105,102,121, 95,112, 97,114,116,105, 99,108,101,115, 0,115,105,109, +112,108,105,102,121, 95, 97,111,115,115,115, 0, 99,105,110,101,111,110,119,104,105,116,101, 0, 99,105,110,101,111,110, 98,108, + 97, 99,107, 0, 99,105,110,101,111,110,103, 97,109,109, 97, 0,106,112, 50, 95,112,114,101,115,101,116, 0,106,112, 50, 95,100, +101,112,116,104, 0,114,112, 97,100, 51, 0,100,111,109,101,114,101,115, 0,100,111,109,101,109,111,100,101, 0,100,111,109,101, + 97,110,103,108,101, 0,100,111,109,101,116,105,108,116, 0,100,111,109,101,114,101,115, 98,117,102, 0, 42,100,111,109,101,116, +101,120,116, 0,101,110,103,105,110,101, 91, 51, 50, 93, 0,112, 97,114,116,105, 99,108,101, 95,112,101,114, 99, 0,115,117, 98, +115,117,114,102, 95,109, 97,120, 0,115,104, 97,100, 98,117,102,115, 97,109,112,108,101, 95,109, 97,120, 0, 97,111, 95,101,114, +114,111,114, 0,116,105,108,116, 0,114,101,115, 98,117,102, 0, 42,119, 97,114,112,116,101,120,116, 0, 99,111,108, 91, 51, 93, + 0,109, 97,116,109,111,100,101, 0,102,114, 97,109,105,110,103, 0,100,111,109,101, 0,115,116,101,114,101,111,102,108, 97,103, + 0, 42, 42, 98,114,117,115,104,101,115, 0, 97, 99,116,105,118,101, 95, 98,114,117,115,104, 95,105,110,100,101,120, 0, 98,114, +117,115,104, 95, 99,111,117,110,116, 0, 42,112, 97,105,110,116, 95, 99,117,114,115,111,114, 0,112, 97,105,110,116, 95, 99,117, +114,115,111,114, 95, 99,111,108, 91, 52, 93, 0,112, 97,105,110,116, 0,116,111,111,108, 0,115,101, 97,109, 95, 98,108,101,101, +100, 0,110,111,114,109, 97,108, 95, 97,110,103,108,101, 0, 42,112, 97,105,110,116, 99,117,114,115,111,114, 0,105,110,118,101, +114,116, 0,116,111,116,114,101,107,101,121, 0,116,111,116, 97,100,100,107,101,121, 0, 98,114,117,115,104,116,121,112,101, 0, + 98,114,117,115,104, 91, 55, 93, 0,101,109,105,116,116,101,114,100,105,115,116, 0,115,101,108,101, 99,116,109,111,100,101, 0, +101,100,105,116,116,121,112,101, 0,100,114, 97,119, 95,115,116,101,112, 0,102, 97,100,101, 95,102,114, 97,109,101,115, 0,110, + 97,109,101, 91, 51, 54, 93, 0,109, 97,116, 91, 51, 93, 91, 51, 93, 0,112,105,118,111,116, 91, 51, 93, 0,116, 97, 98,108,101, +116, 95,115,105,122,101, 0,116, 97, 98,108,101,116, 95,115,116,114,101,110,103,116,104, 0,103, 97,109,109, 97, 0,109,117,108, + 0, 42,118,112, 97,105,110,116, 95,112,114,101,118, 0, 42,119,112, 97,105,110,116, 95,112,114,101,118, 0, 42,118,112, 97,105, +110,116, 0, 42,119,112, 97,105,110,116, 0,118,103,114,111,117,112, 95,119,101,105,103,104,116, 0, 99,111,114,110,101,114,116, +121,112,101, 0,101,100,105,116, 98,117,116,102,108, 97,103, 0,106,111,105,110,116,114,105,108,105,109,105,116, 0,100,101,103, +114, 0,116,117,114,110, 0,101,120,116,114, 95,111,102,102,115, 0,100,111,117, 98,108,105,109,105,116, 0,110,111,114,109, 97, +108,115,105,122,101, 0, 97,117,116,111,109,101,114,103,101, 0,115,101,103,109,101,110,116,115, 0,114,105,110,103,115, 0,118, +101,114,116,105, 99,101,115, 0,117,110,119,114, 97,112,112,101,114, 0,117,118, 99, 97,108, 99, 95,114, 97,100,105,117,115, 0, +117,118, 99, 97,108, 99, 95, 99,117, 98,101,115,105,122,101, 0,117,118, 99, 97,108, 99, 95,109, 97,114,103,105,110, 0,117,118, + 99, 97,108, 99, 95,109, 97,112,100,105,114, 0,117,118, 99, 97,108, 99, 95,109, 97,112, 97,108,105,103,110, 0,117,118, 99, 97, +108, 99, 95,102,108, 97,103, 0,117,118, 95,102,108, 97,103, 0,117,118, 95,115,101,108,101, 99,116,109,111,100,101, 0,117,118, + 95,112, 97,100, 91, 50, 93, 0, 97,117,116,111,105,107, 95, 99,104, 97,105,110,108,101,110, 0,105,109, 97,112, 97,105,110,116, + 0,112, 97,114,116,105, 99,108,101, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 95,115,105,122,101, 0,115,101,108,101, + 99,116, 95,116,104,114,101,115,104, 0, 99,108,101, 97,110, 95,116,104,114,101,115,104, 0, 97,117,116,111,107,101,121, 95,109, +111,100,101, 0, 97,117,116,111,107,101,121, 95,102,108, 97,103, 0,114,101,116,111,112,111, 95,109,111,100,101, 0,114,101,116, +111,112,111, 95,112, 97,105,110,116, 95,116,111,111,108, 0,108,105,110,101, 95,100,105,118, 0,101,108,108,105,112,115,101, 95, +100,105,118, 0,114,101,116,111,112,111, 95,104,111,116,115,112,111,116, 0,109,117,108,116,105,114,101,115, 95,115,117, 98,100, +105,118, 95,116,121,112,101, 0,115,107,103,101,110, 95,114,101,115,111,108,117,116,105,111,110, 0,115,107,103,101,110, 95,116, +104,114,101,115,104,111,108,100, 95,105,110,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,116,104,114,101,115,104,111,108, +100, 95,101,120,116,101,114,110, 97,108, 0,115,107,103,101,110, 95,108,101,110,103,116,104, 95,114, 97,116,105,111, 0,115,107, +103,101,110, 95,108,101,110,103,116,104, 95,108,105,109,105,116, 0,115,107,103,101,110, 95, 97,110,103,108,101, 95,108,105,109, +105,116, 0,115,107,103,101,110, 95, 99,111,114,114,101,108, 97,116,105,111,110, 95,108,105,109,105,116, 0,115,107,103,101,110, + 95,115,121,109,109,101,116,114,121, 95,108,105,109,105,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95, 97, +110,103,108,101, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,108,101,110,103,116, +104, 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,100,105,115,116, 97,110, 99,101, + 95,119,101,105,103,104,116, 0,115,107,103,101,110, 95,111,112,116,105,111,110,115, 0,115,107,103,101,110, 95,112,111,115,116, +112,114,111, 0,115,107,103,101,110, 95,112,111,115,116,112,114,111, 95,112, 97,115,115,101,115, 0,115,107,103,101,110, 95,115, +117, 98,100,105,118,105,115,105,111,110,115, 91, 51, 93, 0,115,107,103,101,110, 95,109,117,108,116,105, 95,108,101,118,101,108, + 0, 42,115,107,103,101,110, 95,116,101,109,112,108, 97,116,101, 0, 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 0, + 98,111,110,101, 95,115,107,101,116, 99,104,105,110,103, 95, 99,111,110,118,101,114,116, 0,115,107,103,101,110, 95,115,117, 98, +100,105,118,105,115,105,111,110, 95,110,117,109, 98,101,114, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,111, +112,116,105,111,110,115, 0,115,107,103,101,110, 95,114,101,116, 97,114,103,101,116, 95,114,111,108,108, 0,115,107,103,101,110, + 95,115,105,100,101, 95,115,116,114,105,110,103, 91, 56, 93, 0,115,107,103,101,110, 95,110,117,109, 95,115,116,114,105,110,103, + 91, 56, 93, 0,101,100,103,101, 95,109,111,100,101, 0,115,110, 97,112, 95,109,111,100,101, 0,115,110, 97,112, 95,102,108, 97, +103, 0,115,110, 97,112, 95,116, 97,114,103,101,116, 0,112,114,111,112,111,114,116,105,111,110, 97,108, 0,112,114,111,112, 95, +109,111,100,101, 0, 97,117,116,111, 95,110,111,114,109, 97,108,105,122,101, 0,105,110,116,112, 97,100, 0,116,111,116,111, 98, +106, 0,116,111,116,108, 97,109,112, 0,116,111,116,111, 98,106,115,101,108, 0,116,111,116, 99,117,114,118,101, 0,116,111,116, +109,101,115,104, 0,116,111,116, 97,114,109, 97,116,117,114,101, 0,115, 99, 97,108,101, 95,108,101,110,103,116,104, 0,115,121, +115,116,101,109, 0,103,114, 97,118,105,116,121, 91, 51, 93, 0, 42, 99, 97,109,101,114, 97, 0, 42,119,111,114,108,100, 0, 42, +115,101,116, 0, 98, 97,115,101, 0, 42, 98, 97,115, 97, 99,116, 0, 42,111, 98,101,100,105,116, 0, 99,117,114,115,111,114, 91, + 51, 93, 0,116,119, 99,101,110,116, 91, 51, 93, 0,116,119,109,105,110, 91, 51, 93, 0,116,119,109, 97,120, 91, 51, 93, 0, 42, +101,100, 0, 42,116,111,111,108,115,101,116,116,105,110,103,115, 0, 42,115,116, 97,116,115, 0, 97,117,100,105,111, 0,116,114, + 97,110,115,102,111,114,109, 95,115,112, 97, 99,101,115, 0,115,111,117,110,100, 95,104, 97,110,100,108,101,115, 0, 42,116,104, +101, 68, 97,103, 0,100, 97,103,105,115,118, 97,108,105,100, 0,100, 97,103,102,108, 97,103,115, 0,106,117,109,112,102,114, 97, +109,101, 0,102,114, 97,109,101, 95,115,116,101,112, 0, 97, 99,116,105,118,101, 95,107,101,121,105,110,103,115,101,116, 0,107, +101,121,105,110,103,115,101,116,115, 0,103,109, 0,117,110,105,116, 0,112,104,121,115,105, 99,115, 95,115,101,116,116,105,110, +103,115, 0, 98,108,101,110,100, 0,119,105,110,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116, 91, 52, 93, + 91, 52, 93, 0,118,105,101,119,105,110,118, 91, 52, 93, 91, 52, 93, 0,112,101,114,115,109, 97,116, 91, 52, 93, 91, 52, 93, 0, +112,101,114,115,105,110,118, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,112,101, +114,115,109, 97,116,111, 98, 91, 52, 93, 91, 52, 93, 0,116,119,109, 97,116, 91, 52, 93, 91, 52, 93, 0,118,105,101,119,113,117, + 97,116, 91, 52, 93, 0,122,102, 97, 99, 0, 99, 97,109,100,120, 0, 99, 97,109,100,121, 0,112,105,120,115,105,122,101, 0, 99, + 97,109,122,111,111,109, 0,118,105,101,119, 98,117,116, 0,114,102,108, 97,103, 0,118,105,101,119,108,111, 99,107, 0,112,101, +114,115,112, 0,118,105,101,119, 0, 99,108,105,112, 91, 54, 93, 91, 52, 93, 0, 42, 99,108,105,112, 98, 98, 0, 42,108,111, 99, + 97,108,118,100, 0, 42,114,105, 0, 42,114,101,116,111,112,111, 95,118,105,101,119, 95,100, 97,116, 97, 0, 42,100,101,112,116, +104,115, 0, 42,115,109,115, 0, 42,115,109,111,111,116,104, 95,116,105,109,101,114, 0,108,118,105,101,119,113,117, 97,116, 91, + 52, 93, 0,108,112,101,114,115,112, 0,108,118,105,101,119, 0,114,101,103,105,111,110, 98, 97,115,101, 0,115,112, 97, 99,101, +116,121,112,101, 0, 98,108,111, 99,107,115, 99, 97,108,101, 0, 98,108,111, 99,107,104, 97,110,100,108,101,114, 91, 56, 93, 0, +108, 97,121, 95,117,115,101,100, 0, 42,111, 98, 95, 99,101,110,116,114,101, 0, 42, 98,103,112,105, 99, 0,111, 98, 95, 99,101, +110,116,114,101, 95, 98,111,110,101, 91, 51, 50, 93, 0,108, 97,121, 97, 99,116, 0,100,114, 97,119,116,121,112,101, 0,115, 99, +101,110,101,108,111, 99,107, 0, 97,114,111,117,110,100, 0,112,105,118,111,116, 95,108, 97,115,116, 0,103,114,105,100, 0,103, +114,105,100,118,105,101,119, 0,112, 97,100,102, 0,110,101, 97,114, 0,102, 97,114, 0,103,114,105,100,108,105,110,101,115, 0, +103,114,105,100,102,108, 97,103, 0,103,114,105,100,115,117, 98,100,105,118, 0,109,111,100,101,115,101,108,101, 99,116, 0,107, +101,121,102,108, 97,103,115, 0,116,119,116,121,112,101, 0,116,119,109,111,100,101, 0,116,119,102,108, 97,103, 0,116,119,100, +114, 97,119,102,108, 97,103, 0, 99,117,115,116,111,109,100, 97,116, 97, 95,109, 97,115,107, 0, 97,102,116,101,114,100,114, 97, +119, 0,122, 98,117,102, 0,120,114, 97,121, 0,110,100,111,102,109,111,100,101, 0,110,100,111,102,102,105,108,116,101,114, 0, + 42,112,114,111,112,101,114,116,105,101,115, 95,115,116,111,114, 97,103,101, 0,118,101,114,116, 0,104,111,114, 0,109, 97,115, +107, 0,109,105,110, 91, 50, 93, 0,109, 97,120, 91, 50, 93, 0,109,105,110,122,111,111,109, 0,109, 97,120,122,111,111,109, 0, +115, 99,114,111,108,108, 0,115, 99,114,111,108,108, 95,117,105, 0,107,101,101,112,116,111,116, 0,107,101,101,112,122,111,111, +109, 0,107,101,101,112,111,102,115, 0, 97,108,105,103,110, 0,119,105,110,120, 0,119,105,110,121, 0,111,108,100,119,105,110, +120, 0,111,108,100,119,105,110,121, 0, 99,117,114,115,111,114, 91, 50, 93, 0, 42,116, 97, 98, 95,111,102,102,115,101,116, 0, +116, 97, 98, 95,110,117,109, 0,116, 97, 98, 95, 99,117,114, 0, 42,115, 99,114,101,101,110, 0,118, 50,100, 0, 42, 97,100,115, + 0,103,104,111,115,116, 67,117,114,118,101,115, 0, 97,117,116,111,115,110, 97,112, 0, 99,117,114,115,111,114, 86, 97,108, 0, +109, 97,105,110, 98, 0,109, 97,105,110, 98,111, 0,109, 97,105,110, 98,117,115,101,114, 0,114,101, 95, 97,108,105,103,110, 0, +112,114,101,118,105,101,119, 0,112, 97,116,104,102,108, 97,103, 0,100, 97,116, 97,105, 99,111,110, 0, 42,112,105,110,105,100, + 0,114,101,110,100,101,114, 95,115,105,122,101, 0, 99,104, 97,110,115,104,111,119,110, 0,122,101, 98,114, 97, 0,122,111,111, +109, 0,116,105,116,108,101, 91, 50, 52, 93, 0,100,105,114, 91, 50, 52, 48, 93, 0,102,105,108,101, 91, 56, 48, 93, 0,114,101, +110, 97,109,101,102,105,108,101, 91, 56, 48, 93, 0,115,111,114,116, 0,100,105,115,112,108, 97,121, 0, 97, 99,116,105,118,101, + 95, 98,111,111,107,109, 97,114,107, 0, 97, 99,116,105,118,101, 95,102,105,108,101, 0,115,101,108,115,116, 97,116,101, 0,102, + 95,102,112, 0,109,101,110,117, 0,102,112, 95,115,116,114, 91, 56, 93, 0, 42,112,117,112,109,101,110,117, 0, 42,112, 97,114, + 97,109,115, 0, 42,102,105,108,101,115, 0, 42,102,111,108,100,101,114,115, 95,112,114,101,118, 0, 42,102,111,108,100,101,114, +115, 95,110,101,120,116, 0, 42,111,112, 0, 42,108,111, 97,100,105,109, 97,103,101, 95,116,105,109,101,114, 0, 42,108, 97,121, +111,117,116, 0,114,101, 99,101,110,116,110,114, 0, 98,111,111,107,109, 97,114,107,110,114, 0,115,121,115,116,101,109,110,114, + 0,116,114,101,101, 0, 42,116,114,101,101,115,116,111,114,101, 0,115,101, 97,114, 99,104, 95,115,116,114,105,110,103, 91, 51, + 50, 93, 0,115,101, 97,114, 99,104, 95,116,115,101, 0,115,101, 97,114, 99,104, 95,102,108, 97,103,115, 0,100,111, 95, 0,111, +117,116,108,105,110,101,118,105,115, 0,115,116,111,114,101,102,108, 97,103, 0, 42, 99,117,109, 97,112, 0,105,109, 97,110,114, + 0, 99,117,114,116,105,108,101, 0,105,109,116,121,112,101,110,114, 0,108,111, 99,107, 0,112,105,110, 0,100,116, 95,117,118, + 0,115,116,105, 99,107,121, 0,100,116, 95,117,118,115,116,114,101,116, 99,104, 0, 99,101,110,116,120, 0, 99,101,110,116,121, + 0, 42,116,101,120,116, 0,116,111,112, 0,118,105,101,119,108,105,110,101,115, 0,108,104,101,105,103,104,116, 0, 99,119,105, +100,116,104, 0,108,105,110,101,110,114,115, 95,116,111,116, 0,108,101,102,116, 0,115,104,111,119,108,105,110,101,110,114,115, + 0,116, 97, 98,110,117,109, 98,101,114, 0,115,104,111,119,115,121,110,116, 97,120, 0,111,118,101,114,119,114,105,116,101, 0, +108,105,118,101, 95,101,100,105,116, 0,112,105,120, 95,112,101,114, 95,108,105,110,101, 0,116,120,116,115, 99,114,111,108,108, + 0,116,120,116, 98, 97,114, 0,119,111,114,100,119,114, 97,112, 0,100,111,112,108,117,103,105,110,115, 0,102,105,110,100,115, +116,114, 91, 50, 53, 54, 93, 0,114,101,112,108, 97, 99,101,115,116,114, 91, 50, 53, 54, 93, 0, 42,112,121, 95,100,114, 97,119, + 0, 42,112,121, 95,101,118,101,110,116, 0, 42,112,121, 95, 98,117,116,116,111,110, 0, 42,112,121, 95, 98,114,111,119,115,101, +114, 99, 97,108,108, 98, 97, 99,107, 0, 42,112,121, 95,103,108,111, 98, 97,108,100,105, 99,116, 0,108, 97,115,116,115,112, 97, + 99,101, 0,115, 99,114,105,112,116,110, 97,109,101, 91, 50, 53, 54, 93, 0,115, 99,114,105,112,116, 97,114,103, 91, 50, 53, 54, + 93, 0, 42,115, 99,114,105,112,116, 0, 42, 98,117,116, 95,114,101,102,115, 0,114,101,100,114, 97,119,115, 0, 42,105,100, 0, + 97,115,112,101, 99,116, 0, 42, 99,117,114,102,111,110,116, 0,109,120, 0,109,121, 0, 42,101,100,105,116,116,114,101,101, 0, +116,114,101,101,116,121,112,101, 0,116,101,120,102,114,111,109, 0,110,117,109,116,105,108,101,115,120, 0,110,117,109,116,105, +108,101,115,121, 0,118,105,101,119,114,101, 99,116, 0, 98,111,111,107,109, 97,114,107,114,101, 99,116, 0,115, 99,114,111,108, +108,112,111,115, 0,115, 99,114,111,108,108,104,101,105,103,104,116, 0,115, 99,114,111,108,108, 97,114,101, 97, 0,114,101,116, +118, 97,108, 0,112,114,118, 95,119, 0,112,114,118, 95,104, 0, 40, 42,114,101,116,117,114,110,102,117,110, 99, 41, 40, 41, 0, + 40, 42,114,101,116,117,114,110,102,117,110, 99, 95,101,118,101,110,116, 41, 40, 41, 0, 40, 42,114,101,116,117,114,110,102,117, +110, 99, 95, 97,114,103,115, 41, 40, 41, 0, 42, 97,114,103, 49, 0, 42, 97,114,103, 50, 0, 42,109,101,110,117,112, 0, 42,105, +109,103, 0,108,101,110, 95, 97,108,108,111, 99, 0, 99,117,114,115,111,114, 0,114,112,116, 95,109, 97,115,107, 0,115, 99,114, +111,108,108, 98, 97, 99,107, 0,104,105,115,116,111,114,121, 0,112,114,111,109,112,116, 91, 56, 93, 0,102,105,108,101,110, 97, +109,101, 91, 50, 53, 54, 93, 0, 98,108,102, 95,105,100, 0,117,105,102,111,110,116, 95,105,100, 0,114, 95,116,111, 95,108, 0, +112,111,105,110,116,115, 0,107,101,114,110,105,110,103, 0,105,116, 97,108,105, 99, 0, 98,111,108,100, 0,115,104, 97,100,111, +119, 0,115,104, 97,100,120, 0,115,104, 97,100,121, 0,115,104, 97,100,111,119, 97,108,112,104, 97, 0,115,104, 97,100,111,119, + 99,111,108,111,114, 0,112, 97,110,101,108,116,105,116,108,101, 0,103,114,111,117,112,108, 97, 98,101,108, 0,119,105,100,103, +101,116,108, 97, 98,101,108, 0,119,105,100,103,101,116, 0,112, 97,110,101,108,122,111,111,109, 0,109,105,110,108, 97, 98,101, +108, 99,104, 97,114,115, 0,109,105,110,119,105,100,103,101,116, 99,104, 97,114,115, 0, 99,111,108,117,109,110,115,112, 97, 99, +101, 0,116,101,109,112,108, 97,116,101,115,112, 97, 99,101, 0, 98,111,120,115,112, 97, 99,101, 0, 98,117,116,116,111,110,115, +112, 97, 99,101,120, 0, 98,117,116,116,111,110,115,112, 97, 99,101,121, 0,112, 97,110,101,108,115,112, 97, 99,101, 0,112, 97, +110,101,108,111,117,116,101,114, 0,112, 97,100, 91, 49, 93, 0,111,117,116,108,105,110,101, 91, 52, 93, 0,105,110,110,101,114, + 91, 52, 93, 0,105,110,110,101,114, 95,115,101,108, 91, 52, 93, 0,105,116,101,109, 91, 52, 93, 0,116,101,120,116, 91, 52, 93, + 0,116,101,120,116, 95,115,101,108, 91, 52, 93, 0,115,104, 97,100,101,100, 0,115,104, 97,100,101,116,111,112, 0,115,104, 97, +100,101,100,111,119,110, 0,105,110,110,101,114, 95, 97,110,105,109, 91, 52, 93, 0,105,110,110,101,114, 95, 97,110,105,109, 95, +115,101,108, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 91, 52, 93, 0,105,110,110,101,114, 95,107,101,121, 95,115,101, +108, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101,110, 91, 52, 93, 0,105,110,110,101,114, 95,100,114,105,118,101, +110, 95,115,101,108, 91, 52, 93, 0,119, 99,111,108, 95,114,101,103,117,108, 97,114, 0,119, 99,111,108, 95,116,111,111,108, 0, +119, 99,111,108, 95,116,101,120,116, 0,119, 99,111,108, 95,114, 97,100,105,111, 0,119, 99,111,108, 95,111,112,116,105,111,110, + 0,119, 99,111,108, 95,116,111,103,103,108,101, 0,119, 99,111,108, 95,110,117,109, 0,119, 99,111,108, 95,110,117,109,115,108, +105,100,101,114, 0,119, 99,111,108, 95,109,101,110,117, 0,119, 99,111,108, 95,112,117,108,108,100,111,119,110, 0,119, 99,111, +108, 95,109,101,110,117, 95, 98, 97, 99,107, 0,119, 99,111,108, 95,109,101,110,117, 95,105,116,101,109, 0,119, 99,111,108, 95, + 98,111,120, 0,119, 99,111,108, 95,115, 99,114,111,108,108, 0,119, 99,111,108, 95,108,105,115,116, 95,105,116,101,109, 0,119, + 99,111,108, 95,115,116, 97,116,101, 0,105, 99,111,110,102,105,108,101, 91, 56, 48, 93, 0, 98, 97, 99,107, 91, 52, 93, 0,116, +105,116,108,101, 91, 52, 93, 0,116,101,120,116, 95,104,105, 91, 52, 93, 0,104,101, 97,100,101,114, 91, 52, 93, 0,104,101, 97, +100,101,114, 95,116,105,116,108,101, 91, 52, 93, 0,104,101, 97,100,101,114, 95,116,101,120,116, 91, 52, 93, 0,104,101, 97,100, +101,114, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0, 98,117,116,116,111,110, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116, +105,116,108,101, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101,120,116, 91, 52, 93, 0, 98,117,116,116,111,110, 95,116,101, +120,116, 95,104,105, 91, 52, 93, 0,108,105,115,116, 91, 52, 93, 0,108,105,115,116, 95,116,105,116,108,101, 91, 52, 93, 0,108, +105,115,116, 95,116,101,120,116, 91, 52, 93, 0,108,105,115,116, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,112, 97,110,101, +108, 91, 52, 93, 0,112, 97,110,101,108, 95,116,105,116,108,101, 91, 52, 93, 0,112, 97,110,101,108, 95,116,101,120,116, 91, 52, + 93, 0,112, 97,110,101,108, 95,116,101,120,116, 95,104,105, 91, 52, 93, 0,115,104, 97,100,101, 49, 91, 52, 93, 0,115,104, 97, +100,101, 50, 91, 52, 93, 0,104,105,108,105,116,101, 91, 52, 93, 0,103,114,105,100, 91, 52, 93, 0,119,105,114,101, 91, 52, 93, + 0,115,101,108,101, 99,116, 91, 52, 93, 0,108, 97,109,112, 91, 52, 93, 0, 97, 99,116,105,118,101, 91, 52, 93, 0,103,114,111, +117,112, 91, 52, 93, 0,103,114,111,117,112, 95, 97, 99,116,105,118,101, 91, 52, 93, 0,116,114, 97,110,115,102,111,114,109, 91, + 52, 93, 0,118,101,114,116,101,120, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100, +103,101, 91, 52, 93, 0,101,100,103,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,101,100,103,101, 95,115,101, 97,109, 91, 52, + 93, 0,101,100,103,101, 95,115,104, 97,114,112, 91, 52, 93, 0,101,100,103,101, 95,102, 97, 99,101,115,101,108, 91, 52, 93, 0, +102, 97, 99,101, 91, 52, 93, 0,102, 97, 99,101, 95,115,101,108,101, 99,116, 91, 52, 93, 0,102, 97, 99,101, 95,100,111,116, 91, + 52, 93, 0,110,111,114,109, 97,108, 91, 52, 93, 0, 98,111,110,101, 95,115,111,108,105,100, 91, 52, 93, 0, 98,111,110,101, 95, +112,111,115,101, 91, 52, 93, 0,115,116,114,105,112, 91, 52, 93, 0,115,116,114,105,112, 95,115,101,108,101, 99,116, 91, 52, 93, + 0, 99,102,114, 97,109,101, 91, 52, 93, 0,100,115, 95, 99,104, 97,110,110,101,108, 91, 52, 93, 0,100,115, 95,115,117, 98, 99, +104, 97,110,110,101,108, 91, 52, 93, 0,118,101,114,116,101,120, 95,115,105,122,101, 0,102, 97, 99,101,100,111,116, 95,115,105, +122,101, 0, 98,112, 97,100, 91, 50, 93, 0,115,121,110,116, 97,120,108, 91, 52, 93, 0,115,121,110,116, 97,120,110, 91, 52, 93, + 0,115,121,110,116, 97,120, 98, 91, 52, 93, 0,115,121,110,116, 97,120,118, 91, 52, 93, 0,115,121,110,116, 97,120, 99, 91, 52, + 93, 0,109,111,118,105,101, 91, 52, 93, 0,105,109, 97,103,101, 91, 52, 93, 0,115, 99,101,110,101, 91, 52, 93, 0, 97,117,100, +105,111, 91, 52, 93, 0,101,102,102,101, 99,116, 91, 52, 93, 0,112,108,117,103,105,110, 91, 52, 93, 0,116,114, 97,110,115,105, +116,105,111,110, 91, 52, 93, 0,109,101,116, 97, 91, 52, 93, 0,101,100,105,116,109,101,115,104, 95, 97, 99,116,105,118,101, 91, + 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101, +120, 95,115,101,108,101, 99,116, 91, 52, 93, 0,104, 97,110,100,108,101, 95,118,101,114,116,101,120, 95,115,105,122,101, 0,104, +112, 97,100, 91, 51, 93, 0,115,111,108,105,100, 91, 52, 93, 0,116,117,105, 0,116, 98,117,116,115, 0,116,118, 51,100, 0,116, +102,105,108,101, 0,116,105,112,111, 0,116,105,110,102,111, 0,116,115,110,100, 0,116, 97, 99,116, 0,116,110,108, 97, 0,116, +115,101,113, 0,116,105,109, 97, 0,116,105,109, 97,115,101,108, 0,116,101,120,116, 0,116,111,111,112,115, 0,116,116,105,109, +101, 0,116,110,111,100,101, 0,116,108,111,103,105, 99, 0,116,117,115,101,114,112,114,101,102, 0,116, 97,114,109, 91, 50, 48, + 93, 0, 97, 99,116,105,118,101, 95,116,104,101,109,101, 95,103,114,111,117,112, 0,115,112,101, 99, 91, 52, 93, 0,100,117,112, +102,108, 97,103, 0,115, 97,118,101,116,105,109,101, 0,116,101,109,112,100,105,114, 91, 49, 54, 48, 93, 0,102,111,110,116,100, +105,114, 91, 49, 54, 48, 93, 0,114,101,110,100,101,114,100,105,114, 91, 49, 54, 48, 93, 0,116,101,120,116,117,100,105,114, 91, + 49, 54, 48, 93, 0,112,108,117,103,116,101,120,100,105,114, 91, 49, 54, 48, 93, 0,112,108,117,103,115,101,113,100,105,114, 91, + 49, 54, 48, 93, 0,112,121,116,104,111,110,100,105,114, 91, 49, 54, 48, 93, 0,115,111,117,110,100,100,105,114, 91, 49, 54, 48, + 93, 0,121,102,101,120,112,111,114,116,100,105,114, 91, 49, 54, 48, 93, 0,118,101,114,115,105,111,110,115, 0,103, 97,109,101, +102,108, 97,103,115, 0,119,104,101,101,108,108,105,110,101,115, 99,114,111,108,108, 0,117,105,102,108, 97,103, 0,108, 97,110, +103,117, 97,103,101, 0,117,115,101,114,112,114,101,102, 0,118,105,101,119,122,111,111,109, 0,109,105,120, 98,117,102,115,105, +122,101, 0, 97,117,100,105,111,100,101,118,105, 99,101, 0, 97,117,100,105,111,114, 97,116,101, 0, 97,117,100,105,111,102,111, +114,109, 97,116, 0, 97,117,100,105,111, 99,104, 97,110,110,101,108,115, 0,100,112,105, 0,101,110, 99,111,100,105,110,103, 0, +116,114, 97,110,115,111,112,116,115, 0,109,101,110,117,116,104,114,101,115,104,111,108,100, 49, 0,109,101,110,117,116,104,114, +101,115,104,111,108,100, 50, 0,116,104,101,109,101,115, 0,117,105,102,111,110,116,115, 0,117,105,115,116,121,108,101,115, 0, +107,101,121,109, 97,112,115, 0,107,101,121, 99,111,110,102,105,103,115,116,114, 91, 54, 52, 93, 0,117,110,100,111,115,116,101, +112,115, 0,117,110,100,111,109,101,109,111,114,121, 0,103,112, 95,109, 97,110,104, 97,116,116,101,110,100,105,115,116, 0,103, +112, 95,101,117, 99,108,105,100,101, 97,110,100,105,115,116, 0,103,112, 95,101,114, 97,115,101,114, 0,103,112, 95,115,101,116, +116,105,110,103,115, 0,116, 98, 95,108,101,102,116,109,111,117,115,101, 0,116, 98, 95,114,105,103,104,116,109,111,117,115,101, + 0,108,105,103,104,116, 91, 51, 93, 0,116,119, 95,104,111,116,115,112,111,116, 0,116,119, 95,102,108, 97,103, 0,116,119, 95, +104, 97,110,100,108,101,115,105,122,101, 0,116,119, 95,115,105,122,101, 0,116,101,120,116,105,109,101,111,117,116, 0,116,101, +120, 99,111,108,108,101, 99,116,114, 97,116,101, 0,119,109,100,114, 97,119,109,101,116,104,111,100, 0,119,109,112, 97,100, 0, +109,101,109, 99, 97, 99,104,101,108,105,109,105,116, 0,112,114,101,102,101,116, 99,104,102,114, 97,109,101,115, 0,102,114, 97, +109,101,115,101,114,118,101,114,112,111,114,116, 0,112, 97,100, 95,114,111,116, 95, 97,110,103,108,101, 0,111, 98, 99,101,110, +116,101,114, 95,100,105, 97, 0,114,118,105,115,105,122,101, 0,114,118,105, 98,114,105,103,104,116, 0,114,101, 99,101,110,116, + 95,102,105,108,101,115, 0,115,109,111,111,116,104, 95,118,105,101,119,116,120, 0,103,108,114,101,115,108,105,109,105,116, 0, +110,100,111,102, 95,112, 97,110, 0,110,100,111,102, 95,114,111,116, 97,116,101, 0, 99,117,114,115,115,105,122,101, 0,105,112, +111, 95,110,101,119, 0,118,101,114,115,101,109, 97,115,116,101,114, 91, 49, 54, 48, 93, 0,118,101,114,115,101,117,115,101,114, + 91, 49, 54, 48, 93, 0,103,108, 97,108,112,104, 97, 99,108,105,112, 0, 99,111, 98, 97, 95,119,101,105,103,104,116, 0,118,101, +114,116, 98, 97,115,101, 0,101,100,103,101, 98, 97,115,101, 0, 97,114,101, 97, 98, 97,115,101, 0, 42,110,101,119,115, 99,101, +110,101, 0,102,117,108,108, 0,119,105,110,105,100, 0,100,111, 95,100,114, 97,119, 0,100,111, 95,114,101,102,114,101,115,104, + 0,100,111, 95,100,114, 97,119, 95,103,101,115,116,117,114,101, 0,100,111, 95,100,114, 97,119, 95,112, 97,105,110,116, 99,117, +114,115,111,114, 0,115,119, 97,112, 0,109, 97,105,110,119,105,110, 0,115,117, 98,119,105,110, 97, 99,116,105,118,101, 0, 42, + 97,110,105,109,116,105,109,101,114, 0, 42, 99,111,110,116,101,120,116, 0,104, 97,110,100,108,101,114, 91, 56, 93, 0, 42,110, +101,119,118, 0,118,101, 99, 0, 42,118, 49, 0, 42,118, 50, 0, 42,116,121,112,101, 0,112, 97,110,101,108,110, 97,109,101, 91, + 54, 52, 93, 0,116, 97, 98,110, 97,109,101, 91, 54, 52, 93, 0,100,114, 97,119,110, 97,109,101, 91, 54, 52, 93, 0,111,102,115, +120, 0,111,102,115,121, 0,115,105,122,101,120, 0,115,105,122,101,121, 0,108, 97, 98,101,108,111,102,115, 0,114,117,110,116, +105,109,101, 95,102,108, 97,103, 0, 99,111,110,116,114,111,108, 0,115,110, 97,112, 0,115,111,114,116,111,114,100,101,114, 0, + 42,112, 97,110,101,108,116, 97, 98, 0, 42, 97, 99,116,105,118,101,100, 97,116, 97, 0,108,105,115,116, 95,115, 99,114,111,108, +108, 0,108,105,115,116, 95,115,105,122,101, 0,108,105,115,116, 95,108, 97,115,116, 95,108,101,110, 0,108,105,115,116, 95,103, +114,105,112, 95,115,105,122,101, 0,108,105,115,116, 95,115,101, 97,114, 99,104, 91, 54, 52, 93, 0, 42,118, 51, 0, 42,118, 52, + 0, 42,102,117,108,108, 0, 98,117,116,115,112, 97, 99,101,116,121,112,101, 0,104,101, 97,100,101,114,116,121,112,101, 0,115, +112, 97, 99,101,100, 97,116, 97, 0,104, 97,110,100,108,101,114,115, 0, 97, 99,116,105,111,110,122,111,110,101,115, 0,119,105, +110,114, 99,116, 0,100,114, 97,119,114, 99,116, 0,115,119,105,110,105,100, 0,114,101,103,105,111,110,116,121,112,101, 0, 97, +108,105,103,110,109,101,110,116, 0,117,105, 98,108,111, 99,107,115, 0,112, 97,110,101,108,115, 0, 42,104,101, 97,100,101,114, +115,116,114, 0, 42,114,101,103,105,111,110,100, 97,116, 97, 0,115,117, 98,118,115,116,114, 91, 52, 93, 0,115,117, 98,118,101, +114,115,105,111,110, 0,112, 97,100,115, 0,109,105,110,118,101,114,115,105,111,110, 0,109,105,110,115,117, 98,118,101,114,115, +105,111,110, 0, 42, 99,117,114,115, 99,114,101,101,110, 0, 42, 99,117,114,115, 99,101,110,101, 0,102,105,108,101,102,108, 97, +103,115, 0,103,108,111, 98, 97,108,102, 0,110, 97,109,101, 91, 56, 48, 93, 0, 42,105, 98,117,102, 0, 42,105, 98,117,102, 95, + 99,111,109,112, 0, 42,115,101, 49, 0, 42,115,101, 50, 0, 42,115,101, 51, 0,110,114, 0, 98,111,116,116,111,109, 0,114,105, +103,104,116, 0,120,111,102,115, 0,121,111,102,115, 0,108,105,102,116, 91, 51, 93, 0,103, 97,109,109, 97, 91, 51, 93, 0,103, + 97,105,110, 91, 51, 93, 0,115, 97,116,117,114, 97,116,105,111,110, 0,100,105,114, 91, 49, 54, 48, 93, 0,100,111,110,101, 0, +115,116, 97,114,116,115,116,105,108,108, 0,101,110,100,115,116,105,108,108, 0, 42,115,116,114,105,112,100, 97,116, 97, 0,111, +114,120, 0,111,114,121, 0, 42, 99,114,111,112, 0, 42,116,114, 97,110,115,102,111,114,109, 0, 42, 99,111,108,111,114, 95, 98, + 97,108, 97,110, 99,101, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,115, +116, 97,114,116,115,116,105,108,108, 0, 42,116,115,116,114,105,112,100, 97,116, 97, 95,101,110,100,115,116,105,108,108, 0, 42, +105, 98,117,102, 95,115,116, 97,114,116,115,116,105,108,108, 0, 42,105, 98,117,102, 95,101,110,100,115,116,105,108,108, 0, 42, +105,110,115,116, 97,110, 99,101, 95,112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42, 42, 99,117,114,114,101,110,116, 95, +112,114,105,118, 97,116,101, 95,100, 97,116, 97, 0, 42,116,109,112, 0,115,116, 97,114,116,111,102,115, 0,101,110,100,111,102, +115, 0,109, 97, 99,104,105,110,101, 0,115,116, 97,114,116,100,105,115,112, 0,101,110,100,100,105,115,112, 0,104, 97,110,100, +115,105,122,101, 0, 97,110,105,109, 95,112,114,101,115,101,101,107, 0, 42,115,116,114,105,112, 0,102, 97, 99,102, 48, 0,102, + 97, 99,102, 49, 0, 42,115,101,113, 49, 0, 42,115,101,113, 50, 0, 42,115,101,113, 51, 0,115,101,113, 98, 97,115,101, 0, 42, +115,111,117,110,100, 0, 42,115,111,117,110,100, 95,104, 97,110,100,108,101, 0,108,101,118,101,108, 0,112, 97,110, 0,115, 99, +101,110,101,110,114, 0,115,116,114,111, 98,101, 0, 42,101,102,102,101, 99,116,100, 97,116, 97, 0, 97,110,105,109, 95,115,116, + 97,114,116,111,102,115, 0, 97,110,105,109, 95,101,110,100,111,102,115, 0, 98,108,101,110,100, 95,109,111,100,101, 0, 98,108, +101,110,100, 95,111,112, 97, 99,105,116,121, 0, 42,111,108,100, 98, 97,115,101,112, 0, 42,112, 97,114,115,101,113, 0, 42,115, +101,113, 98, 97,115,101,112, 0,109,101,116, 97,115,116, 97, 99,107, 0, 42, 97, 99,116, 95,115,101,113, 0, 97, 99,116, 95,105, +109, 97,103,101,100,105,114, 91, 50, 53, 54, 93, 0, 97, 99,116, 95,115,111,117,110,100,100,105,114, 91, 50, 53, 54, 93, 0,101, +100,103,101, 87,105,100,116,104, 0,102,111,114,119, 97,114,100, 0,119,105,112,101,116,121,112,101, 0,102, 77,105,110,105, 0, +102, 67,108, 97,109,112, 0,102, 66,111,111,115,116, 0,100, 68,105,115,116, 0,100, 81,117, 97,108,105,116,121, 0, 98, 78,111, + 67,111,109,112, 0, 83, 99, 97,108,101,120, 73,110,105, 0, 83, 99, 97,108,101,121, 73,110,105, 0, 83, 99, 97,108,101,120, 70, +105,110, 0, 83, 99, 97,108,101,121, 70,105,110, 0,120, 73,110,105, 0,120, 70,105,110, 0,121, 73,110,105, 0,121, 70,105,110, + 0,114,111,116, 73,110,105, 0,114,111,116, 70,105,110, 0,105,110,116,101,114,112,111,108, 97,116,105,111,110, 0, 42,102,114, + 97,109,101, 77, 97,112, 0,103,108,111, 98, 97,108, 83,112,101,101,100, 0,108, 97,115,116, 86, 97,108,105,100, 70,114, 97,109, +101, 0, 98,117,116,116,121,112,101, 0,117,115,101,114,106,105,116, 0,115,116, 97, 0,116,111,116,112, 97,114,116, 0,110,111, +114,109,102, 97, 99, 0,111, 98,102, 97, 99, 0,114, 97,110,100,102, 97, 99, 0,116,101,120,102, 97, 99, 0,114, 97,110,100,108, +105,102,101, 0,102,111,114, 99,101, 91, 51, 93, 0,118,101, 99,116,115,105,122,101, 0,109, 97,120,108,101,110, 0,100,101,102, +118,101, 99, 91, 51, 93, 0,109,117,108,116, 91, 52, 93, 0,108,105,102,101, 91, 52, 93, 0, 99,104,105,108,100, 91, 52, 93, 0, +109, 97,116, 91, 52, 93, 0,116,101,120,109, 97,112, 0, 99,117,114,109,117,108,116, 0,115,116, 97,116,105, 99,115,116,101,112, + 0,111,109, 97,116, 0,116,105,109,101,116,101,120, 0,115,112,101,101,100,116,101,120, 0,102,108, 97,103, 50,110,101,103, 0, +118,101,114,116,103,114,111,117,112, 95,118, 0,118,103,114,111,117,112,110, 97,109,101, 91, 51, 50, 93, 0,118,103,114,111,117, +112,110, 97,109,101, 95,118, 91, 51, 50, 93, 0, 42,107,101,121,115, 0,109,105,110,102, 97, 99, 0,117,115,101,100, 0,117,115, +101,100,101,108,101,109, 0, 42,112,111,105,110, 0,114,101,115,101,116,100,105,115,116, 0,108, 97,115,116,118, 97,108, 0, 42, +109, 97, 0,107,101,121, 0,113,117, 97,108, 0,113,117, 97,108, 50, 0,116, 97,114,103,101,116, 78, 97,109,101, 91, 51, 50, 93, + 0,116,111,103,103,108,101, 78, 97,109,101, 91, 51, 50, 93, 0,118, 97,108,117,101, 91, 51, 50, 93, 0,109, 97,120,118, 97,108, +117,101, 91, 51, 50, 93, 0,100,101,108, 97,121, 0,100,117,114, 97,116,105,111,110, 0,109, 97,116,101,114,105, 97,108, 78, 97, +109,101, 91, 51, 50, 93, 0,100, 97,109,112,116,105,109,101,114, 0,112,114,111,112,110, 97,109,101, 91, 51, 50, 93, 0,109, 97, +116,110, 97,109,101, 91, 51, 50, 93, 0, 97,120,105,115,102,108, 97,103, 0,112,111,115,101, 99,104, 97,110,110,101,108, 91, 51, + 50, 93, 0, 99,111,110,115,116,114, 97,105,110,116, 91, 51, 50, 93, 0, 42,102,114,111,109, 79, 98,106,101, 99,116, 0,115,117, + 98,106,101, 99,116, 91, 51, 50, 93, 0, 98,111,100,121, 91, 51, 50, 93, 0,111,116,121,112,101, 0,112,117,108,115,101, 0,102, +114,101,113, 0,116,111,116,108,105,110,107,115, 0, 42, 42,108,105,110,107,115, 0,116, 97,112, 0,106,111,121,105,110,100,101, +120, 0, 97,120,105,115, 95,115,105,110,103,108,101, 0, 97,120,105,115,102, 0, 98,117,116,116,111,110, 0,104, 97,116, 0,104, + 97,116,102, 0,112,114,101, 99,105,115,105,111,110, 0,115,116,114, 91, 49, 50, 56, 93, 0,109,111,100,117,108,101, 91, 54, 52, + 93, 0, 42,109,121,110,101,119, 0,105,110,112,117,116,115, 0,116,111,116,115,108,105,110,107,115, 0, 42, 42,115,108,105,110, +107,115, 0,118, 97,108,111, 0,115,116, 97,116,101, 95,109, 97,115,107, 0, 42, 97, 99,116, 0,102,114, 97,109,101, 80,114,111, +112, 91, 51, 50, 93, 0, 98,108,101,110,100,105,110, 0,112,114,105,111,114,105,116,121, 0,101,110,100, 95,114,101,115,101,116, + 0,115,116,114,105,100,101, 97,120,105,115, 0,115,116,114,105,100,101,108,101,110,103,116,104, 0,115,110,100,110,114, 0,112, + 97,100, 49, 91, 50, 93, 0,112,105,116, 99,104, 0,115,111,117,110,100, 51, 68, 0,109, 97,107,101, 99,111,112,121, 0, 99,111, +112,121,109, 97,100,101, 0,112, 97,100, 50, 91, 49, 93, 0, 42,109,101, 0,108,105,110, 86,101,108,111, 99,105,116,121, 91, 51, + 93, 0, 97,110,103, 86,101,108,111, 99,105,116,121, 91, 51, 93, 0,108,111, 99, 97,108,102,108, 97,103, 0,100,121,110, 95,111, +112,101,114, 97,116,105,111,110, 0,102,111,114, 99,101,108,111, 99, 91, 51, 93, 0,102,111,114, 99,101,114,111,116, 91, 51, 93, + 0,108,105,110,101, 97,114,118,101,108,111, 99,105,116,121, 91, 51, 93, 0, 97,110,103,117,108, 97,114,118,101,108,111, 99,105, +116,121, 91, 51, 93, 0, 42,114,101,102,101,114,101,110, 99,101, 0, 98,117,116,115,116, 97, 0, 98,117,116,101,110,100, 0,109, +105,110, 0,109, 97,120, 0,118,105,115,105,102, 97, 99, 0,114,111,116,100, 97,109,112, 0,109,105,110,108,111, 99, 91, 51, 93, + 0,109, 97,120,108,111, 99, 91, 51, 93, 0,109,105,110,114,111,116, 91, 51, 93, 0,109, 97,120,114,111,116, 91, 51, 93, 0,109, + 97,116,112,114,111,112, 91, 51, 50, 93, 0,100,105,115,116,114,105, 98,117,116,105,111,110, 0,105,110,116, 95, 97,114,103, 95, + 49, 0,105,110,116, 95, 97,114,103, 95, 50, 0,102,108,111, 97,116, 95, 97,114,103, 95, 49, 0,102,108,111, 97,116, 95, 97,114, +103, 95, 50, 0,116,111, 80,114,111,112, 78, 97,109,101, 91, 51, 50, 93, 0, 42,116,111, 79, 98,106,101, 99,116, 0, 98,111,100, +121, 84,121,112,101, 0,102,105,108,101,110, 97,109,101, 91, 54, 52, 93, 0,108,111, 97,100, 97,110,105,110, 97,109,101, 91, 54, + 52, 93, 0,105,110,116, 95, 97,114,103, 0,102,108,111, 97,116, 95, 97,114,103, 0, 42,115,117, 98,116, 97,114,103,101,116, 0, +103,111, 0, 97, 99, 99,101,108,108,101,114, 97,116,105,111,110, 0,109, 97,120,115,112,101,101,100, 0,109, 97,120,114,111,116, +115,112,101,101,100, 0,109, 97,120,116,105,108,116,115,112,101,101,100, 0,116,105,108,116,100, 97,109,112, 0,115,112,101,101, +100,100, 97,109,112, 0, 42,115,111,117,114, 99,101, 0,102,114, 97,109,101,115,107,105,112, 0,109,117,116,101, 0, 99,104, 97, +110,103,101,100, 0,109,105,110, 95,103, 97,105,110, 0,109, 97,120, 95,103, 97,105,110, 0,114,101,102,101,114,101,110, 99,101, + 95,100,105,115,116, 97,110, 99,101, 0,109, 97,120, 95,100,105,115,116, 97,110, 99,101, 0,114,111,108,108,111,102,102, 95,102, + 97, 99,116,111,114, 0, 99,111,110,101, 95,105,110,110,101,114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101, +114, 95, 97,110,103,108,101, 0, 99,111,110,101, 95,111,117,116,101,114, 95,103, 97,105,110, 0, 42,110,101,119,112, 97, 99,107, +101,100,102,105,108,101, 0, 97,116,116,101,110,117, 97,116,105,111,110, 0,100,105,115,116, 97,110, 99,101, 0, 42, 99, 97, 99, +104,101, 0, 42, 97,114,101, 97, 0, 42,108, 97,109,112,114,101,110, 0,103,111, 98,106,101, 99,116, 0,100,117,112,108,105, 95, +111,102,115, 91, 51, 93, 0, 42,112,114,111,112, 0, 99,104,105,108,100, 98, 97,115,101, 0,114,111,108,108, 0,104,101, 97,100, + 91, 51, 93, 0,116, 97,105,108, 91, 51, 93, 0, 98,111,110,101, 95,109, 97,116, 91, 51, 93, 91, 51, 93, 0, 97,114,109, 95,104, +101, 97,100, 91, 51, 93, 0, 97,114,109, 95,116, 97,105,108, 91, 51, 93, 0, 97,114,109, 95,109, 97,116, 91, 52, 93, 91, 52, 93, + 0,120,119,105,100,116,104, 0,122,119,105,100,116,104, 0,101, 97,115,101, 49, 0,101, 97,115,101, 50, 0,114, 97,100, 95,104, +101, 97,100, 0,114, 97,100, 95,116, 97,105,108, 0, 98,111,110,101, 98, 97,115,101, 0, 99,104, 97,105,110, 98, 97,115,101, 0, + 42,101,100, 98,111, 0, 42,115,107,101,116, 99,104, 0,108, 97,121,101,114, 95,112,114,111,116,101, 99,116,101,100, 0,103,104, +111,115,116,101,112, 0,103,104,111,115,116,115,105,122,101, 0,103,104,111,115,116,116,121,112,101, 0,112, 97,116,104,115,105, +122,101, 0,103,104,111,115,116,115,102, 0,103,104,111,115,116,101,102, 0,112, 97,116,104,115,102, 0,112, 97,116,104,101,102, + 0,112, 97,116,104, 98, 99, 0,112, 97,116,104, 97, 99, 0, 42,112,111,105,110,116,115, 0,115,116, 97,114,116, 95,102,114, 97, +109,101, 0,101,110,100, 95,102,114, 97,109,101, 0, 99,111,110,115,116,102,108, 97,103, 0,105,107,102,108, 97,103, 0,115,101, +108,101, 99,116,102,108, 97,103, 0, 97,103,114,112, 95,105,110,100,101,120, 0, 42, 98,111,110,101, 0, 42, 99,104,105,108,100, + 0,105,107,116,114,101,101, 0, 42, 98, 95, 98,111,110,101, 95,109, 97,116,115, 0, 42,100,117, 97,108, 95,113,117, 97,116, 0, + 42, 98, 95, 98,111,110,101, 95,100,117, 97,108, 95,113,117, 97,116,115, 0,101,117,108, 91, 51, 93, 0, 99,104, 97,110, 95,109, + 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,109, 97,116, 91, 52, 93, 91, 52, 93, 0,112,111,115,101, 95,104,101, 97, +100, 91, 51, 93, 0,112,111,115,101, 95,116, 97,105,108, 91, 51, 93, 0,108,105,109,105,116,109,105,110, 91, 51, 93, 0,108,105, +109,105,116,109, 97,120, 91, 51, 93, 0,115,116,105,102,102,110,101,115,115, 91, 51, 93, 0,105,107,115,116,114,101,116, 99,104, + 0,105,107,114,111,116,119,101,105,103,104,116, 0,105,107,108,105,110,119,101,105,103,104,116, 0, 42, 99,117,115,116,111,109, + 0, 99,104, 97,110, 98, 97,115,101, 0,112,114,111,120,121, 95,108, 97,121,101,114, 0,115,116,114,105,100,101, 95,111,102,102, +115,101,116, 91, 51, 93, 0, 99,121, 99,108,105, 99, 95,111,102,102,115,101,116, 91, 51, 93, 0, 97,103,114,111,117,112,115, 0, + 97, 99,116,105,118,101, 95,103,114,111,117,112, 0,105,107,115,111,108,118,101,114, 0, 42,105,107,100, 97,116, 97, 0, 42,105, +107,112, 97,114, 97,109, 0,110,117,109,105,116,101,114, 0,110,117,109,115,116,101,112, 0,109,105,110,115,116,101,112, 0,109, + 97,120,115,116,101,112, 0,115,111,108,118,101,114, 0,102,101,101,100, 98, 97, 99,107, 0,109, 97,120,118,101,108, 0,100, 97, +109,112,109, 97,120, 0,100, 97,109,112,101,112,115, 0, 99,104, 97,110,110,101,108,115, 0, 99,117,115,116,111,109, 67,111,108, + 0, 99,115, 0, 99,117,114,118,101,115, 0,103,114,111,117,112,115, 0, 97, 99,116,105,118,101, 95,109, 97,114,107,101,114, 0, +102,105,108,116,101,114,102,108, 97,103, 0, 97,100,115, 0, 97, 99,116,110,114, 0, 97, 99,116,119,105,100,116,104, 0,116,105, +109,101,115,108,105,100,101, 0, 42,103,114,112, 0,116,101,109,112, 0,110, 97,109,101, 91, 51, 48, 93, 0,111,119,110,115,112, + 97, 99,101, 0,116, 97,114,115,112, 97, 99,101, 0,101,110,102,111,114, 99,101, 0,104,101, 97,100,116, 97,105,108, 0,108,105, +110, 95,101,114,114,111,114, 0,114,111,116, 95,101,114,114,111,114, 0, 42,116, 97,114, 0,109, 97,116,114,105,120, 91, 52, 93, + 91, 52, 93, 0,115,112, 97, 99,101, 0,114,111,116, 79,114,100,101,114, 0,116, 97,114,110,117,109, 0,116, 97,114,103,101,116, +115, 0,105,116,101,114, 97,116,105,111,110,115, 0,114,111,111,116, 98,111,110,101, 0,109, 97,120, 95,114,111,111,116, 98,111, +110,101, 0, 42,112,111,108,101,116, 97,114, 0,112,111,108,101,115,117, 98,116, 97,114,103,101,116, 91, 51, 50, 93, 0,112,111, +108,101, 97,110,103,108,101, 0,111,114,105,101,110,116,119,101,105,103,104,116, 0,103,114, 97, 98,116, 97,114,103,101,116, 91, + 51, 93, 0,114,101,115,101,114,118,101,100, 49, 0,114,101,115,101,114,118,101,100, 50, 0,109,105,110,109, 97,120,102,108, 97, +103, 0,115,116,117, 99,107, 0, 99, 97, 99,104,101, 91, 51, 93, 0,108,111, 99,107,102,108, 97,103, 0,102,111,108,108,111,119, +102,108, 97,103, 0,118,111,108,109,111,100,101, 0,112,108, 97,110,101, 0,111,114,103,108,101,110,103,116,104, 0, 98,117,108, +103,101, 0,112,105,118, 88, 0,112,105,118, 89, 0,112,105,118, 90, 0, 97,120, 88, 0, 97,120, 89, 0, 97,120, 90, 0,109,105, +110, 76,105,109,105,116, 91, 54, 93, 0,109, 97,120, 76,105,109,105,116, 91, 54, 93, 0,101,120,116,114, 97, 70,122, 0,105,110, +118,109, 97,116, 91, 52, 93, 91, 52, 93, 0,102,114,111,109, 0,116,111, 0,109, 97,112, 91, 51, 93, 0,101,120,112,111, 0,102, +114,111,109, 95,109,105,110, 91, 51, 93, 0,102,114,111,109, 95,109, 97,120, 91, 51, 93, 0,116,111, 95,109,105,110, 91, 51, 93, + 0,116,111, 95,109, 97,120, 91, 51, 93, 0,122,109,105,110, 0,122,109, 97,120, 0,112, 97,100, 91, 57, 93, 0, 99,104, 97,110, +110,101,108, 91, 51, 50, 93, 0,110,111, 95,114,111,116, 95, 97,120,105,115, 0,115,116,114,105,100,101, 95, 97,120,105,115, 0, + 99,117,114,109,111,100, 0, 97, 99,116,115,116, 97,114,116, 0, 97, 99,116,101,110,100, 0, 97, 99,116,111,102,102,115, 0,115, +116,114,105,100,101,108,101,110, 0,115, 99, 97,108,101, 0, 98,108,101,110,100,111,117,116, 0,115,116,114,105,100,101, 99,104, + 97,110,110,101,108, 91, 51, 50, 93, 0,111,102,102,115, 95, 98,111,110,101, 91, 51, 50, 93, 0,104, 97,115,105,110,112,117,116, + 0,104, 97,115,111,117,116,112,117,116, 0,100, 97,116, 97,116,121,112,101, 0,115,111, 99,107,101,116,116,121,112,101, 0, 42, +110,101,119, 95,115,111, 99,107, 0,110,115, 0,108,105,109,105,116, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 0,105,110, +116,101,114,110, 0,115,116, 97, 99,107, 95,105,110,100,101,120, 95,101,120,116, 0,108,111, 99,120, 0,108,111, 99,121, 0,111, +119,110, 95,105,110,100,101,120, 0,116,111, 95,105,110,100,101,120, 0, 42,116,111,115,111, 99,107, 0, 42,108,105,110,107, 0, + 42,110,101,119, 95,110,111,100,101, 0,117,115,101,114,110, 97,109,101, 91, 51, 50, 93, 0,108, 97,115,116,121, 0,111,117,116, +112,117,116,115, 0, 42,115,116,111,114, 97,103,101, 0,109,105,110,105,119,105,100,116,104, 0, 99,117,115,116,111,109, 49, 0, + 99,117,115,116,111,109, 50, 0, 99,117,115,116,111,109, 51, 0, 99,117,115,116,111,109, 52, 0,110,101,101,100, 95,101,120,101, + 99, 0,101,120,101, 99, 0, 42,116,104,114,101, 97,100,100, 97,116, 97, 0,116,111,116,114, 0, 98,117,116,114, 0,112,114,118, +114, 0, 42, 98,108,111, 99,107, 0, 42,116,121,112,101,105,110,102,111, 0, 42,102,114,111,109,110,111,100,101, 0, 42,116,111, +110,111,100,101, 0, 42,102,114,111,109,115,111, 99,107, 0,110,111,100,101,115, 0,108,105,110,107,115, 0, 42,115,116, 97, 99, +107, 0, 42,116,104,114,101, 97,100,115,116, 97, 99,107, 0,105,110,105,116, 0,115,116, 97, 99,107,115,105,122,101, 0, 99,117, +114, 95,105,110,100,101,120, 0, 97,108,108,116,121,112,101,115, 0, 42,111,119,110,116,121,112,101, 0, 42,115,101,108,105,110, + 0, 42,115,101,108,111,117,116, 0, 40, 42,116,105,109,101, 99,117,114,115,111,114, 41, 40, 41, 0, 40, 42,115,116, 97,116,115, + 95,100,114, 97,119, 41, 40, 41, 0, 40, 42,116,101,115,116, 95, 98,114,101, 97,107, 41, 40, 41, 0, 42,116, 98,104, 0, 42,116, + 99,104, 0, 42,115,100,104, 0, 99,121, 99,108,105, 99, 0,109,111,118,105,101, 0,115, 97,109,112,108,101,115, 0,109,105,110, +115,112,101,101,100, 0,112,101,114, 99,101,110,116,120, 0,112,101,114, 99,101,110,116,121, 0, 98,111,107,101,104, 0, 99,117, +114,118,101,100, 0,105,109, 97,103,101, 95,105,110, 95,119,105,100,116,104, 0,105,109, 97,103,101, 95,105,110, 95,104,101,105, +103,104,116, 0, 99,101,110,116,101,114, 95,120, 0, 99,101,110,116,101,114, 95,121, 0,115,112,105,110, 0,105,116,101,114, 0, +119,114, 97,112, 0,115,105,103,109, 97, 95, 99,111,108,111,114, 0,115,105,103,109, 97, 95,115,112, 97, 99,101, 0,104,117,101, + 0,115, 97,116, 0,116, 49, 0,116, 50, 0,116, 51, 0,102,115,116,114,101,110,103,116,104, 0,102, 97,108,112,104, 97, 0,107, +101,121, 91, 52, 93, 0,120, 49, 0,120, 50, 0,121, 49, 0,121, 50, 0, 99,111,108,110, 97,109,101, 91, 51, 50, 93, 0, 98,107, +116,121,112,101, 0,114,111,116, 97,116,105,111,110, 0,103, 97,109, 99,111, 0,110,111, 95,122, 98,117,102, 0,102,115,116,111, +112, 0,109, 97,120, 98,108,117,114, 0, 98,116,104,114,101,115,104, 0, 42,100,105, 99,116, 0, 42,110,111,100,101, 0, 97,110, +103,108,101, 95,111,102,115, 0, 99,111,108,109,111,100, 0,109,105,120, 0,116,104,114,101,115,104,111,108,100, 0,102, 97,100, +101, 0,109, 0, 99, 0,106,105,116, 0,112,114,111,106, 0,102,105,116, 0,115,104,111,114,116,121, 0,109,105,110,116, 97, 98, +108,101, 0,109, 97,120,116, 97, 98,108,101, 0,101,120,116, 95,105,110, 91, 50, 93, 0,101,120,116, 95,111,117,116, 91, 50, 93, + 0, 42, 99,117,114,118,101, 0, 42,116, 97, 98,108,101, 0, 42,112,114,101,109,117,108,116, 97, 98,108,101, 0, 99,117,114,114, + 0, 99,108,105,112,114, 0, 99,109, 91, 52, 93, 0, 98,108, 97, 99,107, 91, 51, 93, 0,119,104,105,116,101, 91, 51, 93, 0, 98, +119,109,117,108, 91, 51, 93, 0,115, 97,109,112,108,101, 91, 51, 93, 0,111,102,102,115,101,116, 91, 50, 93, 0, 99,108,111,110, +101, 0,106,105,116,116,101,114, 0,115,109,111,111,116,104, 95,115,116,114,111,107,101, 95,114, 97,100,105,117,115, 0,115,109, +111,111,116,104, 95,115,116,114,111,107,101, 95,102, 97, 99,116,111,114, 0,114, 97,116,101, 0,114,103, 98, 91, 51, 93, 0,115, + 99,117,108,112,116, 95,116,111,111,108, 0, 97, 99,116,105,118,101, 95,114,110,100, 0, 97, 99,116,105,118,101, 95, 99,108,111, +110,101, 0, 97, 99,116,105,118,101, 95,109, 97,115,107, 0, 42,108, 97,121,101,114,115, 0,116,111,116,108, 97,121,101,114, 0, +109, 97,120,108, 97,121,101,114, 0,116,111,116,115,105,122,101, 0, 42,112,111,111,108, 0,118,101,108, 91, 51, 93, 0,114,111, +116, 91, 52, 93, 0, 97,118,101, 91, 51, 93, 0, 42,103,114,111,117,110,100, 0,119, 97,110,100,101,114, 91, 51, 93, 0,110,117, +109, 0,112, 97,114,101,110,116, 0,112, 97, 91, 52, 93, 0,119, 91, 52, 93, 0,102,117,118, 91, 52, 93, 0,102,111,102,102,115, +101,116, 0,114,116, 91, 50, 93, 0,112,114,101,118, 95,115,116, 97,116,101, 0, 42,104, 97,105,114, 0, 42, 98,111,105,100, 0, +100,105,101,116,105,109,101, 0,110,117,109, 95,100,109, 99, 97, 99,104,101, 0, 97,108,105,118,101, 0,108,111,111,112, 0,104, + 97,105,114, 95,105,110,100,101,120, 0, 42, 98,111,105,100,115, 0,100,105,115,116,114, 0,112,104,121,115,116,121,112,101, 0, + 97,118,101,109,111,100,101, 0,114,101, 97, 99,116,101,118,101,110,116, 0,100,114, 97,119, 0,100,114, 97,119, 95, 97,115, 0, +100,114, 97,119, 95,115,105,122,101, 0, 99,104,105,108,100,116,121,112,101, 0,114,101,110, 95, 97,115, 0,114,101,110, 95,115, +116,101,112, 0,104, 97,105,114, 95,115,116,101,112, 0,107,101,121,115, 95,115,116,101,112, 0, 97,100, 97,112,116, 95, 97,110, +103,108,101, 0, 97,100, 97,112,116, 95,112,105,120, 0,114,111,116,102,114,111,109, 0,105,110,116,101,103,114, 97,116,111,114, + 0, 98, 98, 95, 97,108,105,103,110, 0, 98, 98, 95,117,118, 95,115,112,108,105,116, 0, 98, 98, 95, 97,110,105,109, 0, 98, 98, + 95,115,112,108,105,116, 95,111,102,102,115,101,116, 0, 98, 98, 95,116,105,108,116, 0, 98, 98, 95,114, 97,110,100, 95,116,105, +108,116, 0, 98, 98, 95,111,102,102,115,101,116, 91, 50, 93, 0,115,105,109,112,108,105,102,121, 95,102,108, 97,103, 0,115,105, +109,112,108,105,102,121, 95,114,101,102,115,105,122,101, 0,115,105,109,112,108,105,102,121, 95,114, 97,116,101, 0,115,105,109, +112,108,105,102,121, 95,116,114, 97,110,115,105,116,105,111,110, 0,115,105,109,112,108,105,102,121, 95,118,105,101,119,112,111, +114,116, 0,116,105,109,101,116,119,101, 97,107, 0,106,105,116,102, 97, 99, 0,101,102,102, 95,104, 97,105,114, 0,103,114,105, +100, 95,114,101,115, 0,112, 97,114,116,102, 97, 99, 0,116, 97,110,102, 97, 99, 0,116, 97,110,112,104, 97,115,101, 0,114,101, + 97, 99,116,102, 97, 99, 0,111, 98, 95,118,101,108, 91, 51, 93, 0, 97,118,101,102, 97, 99, 0,112,104, 97,115,101,102, 97, 99, + 0,114, 97,110,100,114,111,116,102, 97, 99, 0,114, 97,110,100,112,104, 97,115,101,102, 97, 99, 0,114, 97,110,100,115,105,122, +101, 0,114,101, 97, 99,116,115,104, 97,112,101, 0, 97, 99, 99, 91, 51, 93, 0,100,114, 97,103,102, 97, 99, 0, 98,114,111,119, +110,102, 97, 99, 0,100, 97,109,112,102, 97, 99, 0,114, 97,110,100,108,101,110,103,116,104, 0, 99,104,105,108,100, 95,110, 98, +114, 0,114,101,110, 95, 99,104,105,108,100, 95,110, 98,114, 0,112, 97,114,101,110,116,115, 0, 99,104,105,108,100,115,105,122, +101, 0, 99,104,105,108,100,114, 97,110,100,115,105,122,101, 0, 99,104,105,108,100,114, 97,100, 0, 99,104,105,108,100,102,108, + 97,116, 0, 99,108,117,109,112,112,111,119, 0,114,111,117,103,104, 49, 0,114,111,117,103,104, 49, 95,115,105,122,101, 0,114, +111,117,103,104, 50, 0,114,111,117,103,104, 50, 95,115,105,122,101, 0,114,111,117,103,104, 50, 95,116,104,114,101,115, 0,114, +111,117,103,104, 95,101,110,100, 0,114,111,117,103,104, 95,101,110,100, 95,115,104, 97,112,101, 0, 99,108,101,110,103,116,104, + 0, 99,108,101,110,103,116,104, 95,116,104,114,101,115, 0, 98,114, 97,110, 99,104, 95,116,104,114,101,115, 0,100,114, 97,119, + 95,108,105,110,101, 91, 50, 93, 0,112, 97,116,104, 95,115,116, 97,114,116, 0,112, 97,116,104, 95,101,110,100, 0,116,114, 97, +105,108, 95, 99,111,117,110,116, 0,107,101,121,101,100, 95,108,111,111,112,115, 0,100,117,112,108,105,119,101,105,103,104,116, +115, 0, 42,101,102,102, 95,103,114,111,117,112, 0, 42,100,117,112, 95,111, 98, 0, 42, 98, 98, 95,111, 98, 0, 42,112,100, 50, + 0, 42,112, 97,114,116, 0, 42,112, 97,114,116,105, 99,108,101,115, 0, 42, 42,112, 97,116,104, 99, 97, 99,104,101, 0, 42, 42, + 99,104,105,108,100, 99, 97, 99,104,101, 0,112, 97,116,104, 99, 97, 99,104,101, 98,117,102,115, 0, 99,104,105,108,100, 99, 97, + 99,104,101, 98,117,102,115, 0, 42, 99,108,109,100, 0, 42,104, 97,105,114, 95,105,110, 95,100,109, 0, 42,104, 97,105,114, 95, +111,117,116, 95,100,109, 0, 42,116, 97,114,103,101,116, 95,111, 98, 0, 42,108, 97,116,116,105, 99,101, 0,116,114,101,101, 95, +102,114, 97,109,101, 0,116,111,116, 99,104,105,108,100, 0,116,111,116, 99, 97, 99,104,101,100, 0,116,111,116, 99,104,105,108, +100, 99, 97, 99,104,101, 0,116, 97,114,103,101,116, 95,112,115,121,115, 0,116,111,116,107,101,121,101,100, 0, 98, 97,107,101, +115,112, 97, 99,101, 0, 98, 98, 95,117,118,110, 97,109,101, 91, 51, 93, 91, 51, 50, 93, 0,118,103,114,111,117,112, 91, 49, 50, + 93, 0,118,103, 95,110,101,103, 0,114,116, 51, 0, 42,114,101,110,100,101,114,100, 97,116, 97, 0, 42,101,102,102,101, 99,116, +111,114,115, 0, 42,116,114,101,101, 0, 42,112,100,100, 0, 42,102,114, 97,110,100, 0, 67,100,105,115, 0, 67,118,105, 0, 91, + 51, 93, 0,115,116,114,117, 99,116,117,114, 97,108, 0, 98,101,110,100,105,110,103, 0,109, 97,120, 95, 98,101,110,100, 0,109, + 97,120, 95,115,116,114,117, 99,116, 0,109, 97,120, 95,115,104,101, 97,114, 0, 97,118,103, 95,115,112,114,105,110,103, 95,108, +101,110, 0,116,105,109,101,115, 99, 97,108,101, 0,101,102,102, 95,102,111,114, 99,101, 95,115, 99, 97,108,101, 0,101,102,102, + 95,119,105,110,100, 95,115, 99, 97,108,101, 0,115,105,109, 95,116,105,109,101, 95,111,108,100, 0,118,101,108,111, 99,105,116, +121, 95,115,109,111,111,116,104, 0,115,116,101,112,115, 80,101,114, 70,114, 97,109,101, 0,112,114,101,114,111,108,108, 0,109, + 97,120,115,112,114,105,110,103,108,101,110, 0,115,111,108,118,101,114, 95,116,121,112,101, 0,118,103,114,111,117,112, 95, 98, +101,110,100, 0,118,103,114,111,117,112, 95,109, 97,115,115, 0,118,103,114,111,117,112, 95,115,116,114,117, 99,116, 0,112,114, +101,115,101,116,115, 0, 42, 99,111,108,108,105,115,105,111,110, 95,108,105,115,116, 0,101,112,115,105,108,111,110, 0,115,101, +108,102, 95,102,114,105, 99,116,105,111,110, 0,115,101,108,102,101,112,115,105,108,111,110, 0,115,101,108,102, 95,108,111,111, +112, 95, 99,111,117,110,116, 0,108,111,111,112, 95, 99,111,117,110,116, 0,112,114,101,115,115,117,114,101, 0,116,104,105, 99, +107,110,101,115,115, 0,115,116,114,111,107,101,115, 0,102,114, 97,109,101,110,117,109, 0, 42, 97, 99,116,102,114, 97,109,101, + 0,103,115,116,101,112, 0,105,110,102,111, 91, 49, 50, 56, 93, 0,115, 98,117,102,102,101,114, 95,115,105,122,101, 0,115, 98, +117,102,102,101,114, 95,115,102,108, 97,103, 0, 42,115, 98,117,102,102,101,114, 0, 42,116,121,112,101,115,116,114, 0, 42,109, +101,115,115, 97,103,101, 0,108,105,115,116, 0,112,114,105,110,116,108,101,118,101,108, 0,115,116,111,114,101,108,101,118,101, +108, 0, 42,119,105,110,100,114, 97,119, 97, 98,108,101, 0, 42,119,105,110, 97, 99,116,105,118,101, 0,119,105,110,100,111,119, +115, 0,105,110,105,116,105, 97,108,105,122,101,100, 0,102,105,108,101, 95,115, 97,118,101,100, 0,111,112,101,114, 97,116,111, +114,115, 0,113,117,101,117,101, 0,114,101,112,111,114,116,115, 0,106,111, 98,115, 0,112, 97,105,110,116, 99,117,114,115,111, +114,115, 0,107,101,121, 99,111,110,102,105,103,115, 0, 42,100,101,102, 97,117,108,116, 99,111,110,102, 0,100,101,102, 97,117, +108,116, 97, 99,116,109, 97,112, 0,116,105,109,101,114,115, 0, 42, 97,117,116,111,115, 97,118,101,116,105,109,101,114, 0, 42, +103,104,111,115,116,119,105,110, 0, 42,110,101,119,115, 99,114,101,101,110, 0,115, 99,114,101,101,110,110, 97,109,101, 91, 51, + 50, 93, 0,112,111,115,120, 0,112,111,115,121, 0,119,105,110,100,111,119,115,116, 97,116,101, 0,109,111,110,105,116,111,114, + 0,108, 97,115,116, 99,117,114,115,111,114, 0, 97,100,100,109,111,117,115,101,109,111,118,101, 0, 42,101,118,101,110,116,115, +116, 97,116,101, 0, 42, 99,117,114,115,119,105,110, 0, 42,116,119,101, 97,107, 0,100,114, 97,119,109,101,116,104,111,100, 0, +100,114, 97,119,102, 97,105,108, 0, 42,100,114, 97,119,100, 97,116, 97, 0,109,111,100, 97,108,104, 97,110,100,108,101,114,115, + 0,115,117, 98,119,105,110,100,111,119,115, 0,103,101,115,116,117,114,101, 0,105,100,110, 97,109,101, 91, 54, 52, 93, 0,112, +114,111,112,118, 97,108,117,101, 0,115,104,105,102,116, 0, 99,116,114,108, 0, 97,108,116, 0,111,115,107,101,121, 0,107,101, +121,109,111,100,105,102,105,101,114, 0,109, 97,112,116,121,112,101, 0, 42,112,116,114, 0,105,116,101,109,115, 0,115,112, 97, + 99,101,105,100, 0,114,101,103,105,111,110,105,100, 0, 40, 42,112,111,108,108, 41, 40, 41, 0, 42,109,111,100, 97,108, 95,105, +116,101,109,115, 0, 98, 97,115,101,110, 97,109,101, 91, 54, 52, 93, 0, 97, 99,116,107,101,121,109, 97,112, 0, 42, 99,117,115, +116,111,109,100, 97,116, 97, 0, 42,114,101,112,111,114,116,115, 0,109, 97, 99,114,111, 0, 42,111,112,109, 0,109,118, 97,108, + 91, 50, 93, 0,112,114,101,118,120, 0,112,114,101,118,121, 0,117,110,105, 99,111,100,101, 0, 97,115, 99,105,105, 0, 42,107, +101,121,109, 97,112, 95,105,100,110, 97,109,101, 0, 99,117,115,116,111,109, 0, 99,117,115,116,111,109,100, 97,116, 97,102,114, +101,101, 0, 42,101,100, 97,116, 97, 0,105,110,102,108,117,101,110, 99,101, 0, 42, 99,111,101,102,102,105, 99,105,101,110,116, +115, 0, 97,114,114, 97,121,115,105,122,101, 0,112,111,108,121, 95,111,114,100,101,114, 0, 97,109,112,108,105,116,117,100,101, + 0,112,104, 97,115,101, 95,109,117,108,116,105,112,108,105,101,114, 0,112,104, 97,115,101, 95,111,102,102,115,101,116, 0,118, + 97,108,117,101, 95,111,102,102,115,101,116, 0,109,105,100,118, 97,108, 0, 98,101,102,111,114,101, 95,109,111,100,101, 0, 97, +102,116,101,114, 95,109,111,100,101, 0, 98,101,102,111,114,101, 95, 99,121, 99,108,101,115, 0, 97,102,116,101,114, 95, 99,121, + 99,108,101,115, 0,114,101, 99,116, 0,112,104, 97,115,101, 0,109,111,100,105,102,105, 99, 97,116,105,111,110, 0, 42,114,110, + 97, 95,112, 97,116,104, 0, 97,114,114, 97,121, 95,105,110,100,101,120, 0,105,100,116,121,112,101, 0,101,120,112,114,101,115, +115,105,111,110, 91, 50, 53, 54, 93, 0,118,101, 99, 91, 50, 93, 0, 42,102,112,116, 0, 99,111,108,111,114, 95,109,111,100,101, + 0, 99,111,108,111,114, 91, 51, 93, 0,102,114,111,109, 91, 49, 50, 56, 93, 0,116,111, 91, 49, 50, 56, 93, 0,109, 97,112,112, +105,110,103,115, 0,115,116,114,105,112,115, 0, 42,114,101,109, 97,112, 0,102, 99,117,114,118,101,115, 0,115,116,114,105,112, + 95,116,105,109,101, 0, 98,108,101,110,100,109,111,100,101, 0,101,120,116,101,110,100,109,111,100,101, 0,103,114,111,117,112, + 91, 54, 52, 93, 0,116,101,109,112,108, 97,116,101,115, 0,103,114,111,117,112,109,111,100,101, 0,112, 97,116,104,115, 0,107, +101,121,105,110,103,102,108, 97,103, 0, 97, 99,116,105,118,101, 95,112, 97,116,104, 0, 42,116,109,112, 97, 99,116, 0,110,108, + 97, 95,116,114, 97, 99,107,115, 0, 42, 97, 99,116,115,116,114,105,112, 0,100,114,105,118,101,114,115, 0,111,118,101,114,114, +105,100,101,115, 0, 97, 99,116, 95, 98,108,101,110,100,109,111,100,101, 0, 97, 99,116, 95,101,120,116,101,110,100,109,111,100, +101, 0, 97, 99,116, 95,105,110,102,108,117,101,110, 99,101, 0,114,117,108,101, 0,111,112,116,105,111,110,115, 0,102,101, 97, +114, 95,102, 97, 99,116,111,114, 0,115,105,103,110, 97,108, 95,105,100, 0,108,111,111,107, 95, 97,104,101, 97,100, 0,111,108, +111, 99, 91, 51, 93, 0,113,117,101,117,101, 95,115,105,122,101, 0,119, 97,110,100,101,114, 0,102,108,101,101, 95,100,105,115, +116, 97,110, 99,101, 0,104,101, 97,108,116,104, 0,115,116, 97,116,101, 95,105,100, 0,114,117,108,101,115, 0, 99,111,110,100, +105,116,105,111,110,115, 0, 97, 99,116,105,111,110,115, 0,114,117,108,101,115,101,116, 95,116,121,112,101, 0,114,117,108,101, + 95,102,117,122,122,105,110,101,115,115, 0,108, 97,115,116, 95,115,116, 97,116,101, 95,105,100, 0,108, 97,110,100,105,110,103, + 95,115,109,111,111,116,104,110,101,115,115, 0, 98, 97,110,107,105,110,103, 0, 97,103,103,114,101,115,115,105,111,110, 0, 97, + 99, 99,117,114, 97, 99,121, 0, 97,105,114, 95,109,105,110, 95,115,112,101,101,100, 0, 97,105,114, 95,109, 97,120, 95,115,112, +101,101,100, 0, 97,105,114, 95,109, 97,120, 95, 97, 99, 99, 0, 97,105,114, 95,109, 97,120, 95, 97,118,101, 0, 97,105,114, 95, +112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, 95,106,117,109,112, 95,115,112,101,101,100, 0,108, + 97,110,100, 95,109, 97,120, 95,115,112,101,101,100, 0,108, 97,110,100, 95,109, 97,120, 95, 97, 99, 99, 0,108, 97,110,100, 95, +109, 97,120, 95, 97,118,101, 0,108, 97,110,100, 95,112,101,114,115,111,110, 97,108, 95,115,112, 97, 99,101, 0,108, 97,110,100, + 95,115,116,105, 99,107, 95,102,111,114, 99,101, 0,115,116, 97,116,101,115, 0, 42,115,109,100, 0, 42,102,108,117,105,100, 0, + 42,102,108,117,105,100, 95,103,114,111,117,112, 0, 42, 99,111,108,108, 95,103,114,111,117,112, 0, 42,119,116, 0, 42,116,101, +120, 95,119,116, 0, 42,116,101,120, 95,115,104, 97,100,111,119, 0, 42,115,104, 97,100,111,119, 0,112, 48, 91, 51, 93, 0,112, + 49, 91, 51, 93, 0,100,120, 0,111,109,101,103, 97, 0,116,101,109,112, 65,109, 98, 0, 98,101,116, 97, 0,114,101,115, 91, 51, + 93, 0, 97,109,112,108,105,102,121, 0,109, 97,120,114,101,115, 0,118,105,101,119,115,101,116,116,105,110,103,115, 0,110,111, +105,115,101, 0,100,105,115,115, 95,112,101,114, 99,101,110,116, 0,100,105,115,115, 95,115,112,101,101,100, 0,114,101,115, 95, +119,116, 91, 51, 93, 0,100,120, 95,119,116, 0,118, 51,100,110,117,109, 0, 42,112,111,105,110,116, 95, 99, 97, 99,104,101, 91, + 50, 93, 0,112,116, 99, 97, 99,104,101,115, 91, 50, 93, 0,118,101,108,111, 99,105,116,121, 91, 51, 93, 0,118,103,114,112, 95, +104,101, 97,116, 95,115, 99, 97,108,101, 91, 50, 93, 0,118,103,114,111,117,112, 95,102,108,111,119, 0,118,103,114,111,117,112, + 95,100,101,110,115,105,116,121, 0,118,103,114,111,117,112, 95,104,101, 97,116, 0, 42,112,111,105,110,116,115, 95,111,108,100, + 0, 42,118,101,108, 0,109, 97,116, 95,111,108,100, 91, 52, 93, 91, 52, 93, 0,110,117,109,112,111,105,110,116,115, 0, 0, 0, + 84, 89, 80, 69,195, 1, 0, 0, 99,104, 97,114, 0,117, 99,104, 97,114, 0,115,104,111,114,116, 0,117,115,104,111,114,116, 0, +105,110,116, 0,108,111,110,103, 0,117,108,111,110,103, 0,102,108,111, 97,116, 0,100,111,117, 98,108,101, 0,118,111,105,100, + 0, 76,105,110,107, 0, 76,105,110,107, 68, 97,116, 97, 0, 76,105,115,116, 66, 97,115,101, 0,118,101, 99, 50,115, 0,118,101, + 99, 50,105, 0,118,101, 99, 50,102, 0,118,101, 99, 50,100, 0,118,101, 99, 51,105, 0,118,101, 99, 51,102, 0,118,101, 99, 51, +100, 0,118,101, 99, 52,105, 0,118,101, 99, 52,102, 0,118,101, 99, 52,100, 0,114, 99,116,105, 0,114, 99,116,102, 0, 73, 68, + 80,114,111,112,101,114,116,121, 68, 97,116, 97, 0, 73, 68, 80,114,111,112,101,114,116,121, 0, 73, 68, 0, 76,105, 98,114, 97, +114,121, 0, 70,105,108,101, 68, 97,116, 97, 0, 80,114,101,118,105,101,119, 73,109, 97,103,101, 0, 73,112,111, 68,114,105,118, +101,114, 0, 79, 98,106,101, 99,116, 0, 73,112,111, 67,117,114,118,101, 0, 66, 80,111,105,110,116, 0, 66,101,122, 84,114,105, +112,108,101, 0, 73,112,111, 0, 75,101,121, 66,108,111, 99,107, 0, 75,101,121, 0, 65,110,105,109, 68, 97,116, 97, 0, 84,101, +120,116, 76,105,110,101, 0, 84,101,120,116, 77, 97,114,107,101,114, 0, 84,101,120,116, 0, 80, 97, 99,107,101,100, 70,105,108, +101, 0, 67, 97,109,101,114, 97, 0, 73,109, 97,103,101, 85,115,101,114, 0, 83, 99,101,110,101, 0, 73,109, 97,103,101, 0, 71, + 80, 85, 84,101,120,116,117,114,101, 0, 97,110,105,109, 0, 82,101,110,100,101,114, 82,101,115,117,108,116, 0, 77, 84,101,120, + 0, 84,101,120, 0, 80,108,117,103,105,110, 84,101,120, 0, 67, 66, 68, 97,116, 97, 0, 67,111,108,111,114, 66, 97,110,100, 0, + 69,110,118, 77, 97,112, 0, 73,109, 66,117,102, 0, 80,111,105,110,116, 68,101,110,115,105,116,121, 0, 80, 97,114,116,105, 99, +108,101, 83,121,115,116,101,109, 0, 86,111,120,101,108, 68, 97,116, 97, 0, 98, 78,111,100,101, 84,114,101,101, 0, 84,101,120, + 77, 97,112,112,105,110,103, 0, 76, 97,109,112, 0, 67,117,114,118,101, 77, 97,112,112,105,110,103, 0, 87, 97,118,101, 0, 86, +111,108,117,109,101, 83,101,116,116,105,110,103,115, 0, 77, 97,116,101,114,105, 97,108, 0, 71,114,111,117,112, 0, 86, 70,111, +110,116, 0, 86, 70,111,110,116, 68, 97,116, 97, 0, 77,101,116, 97, 69,108,101,109, 0, 66,111,117,110,100, 66,111,120, 0, 77, +101,116, 97, 66, 97,108,108, 0, 78,117,114, 98, 0, 67,104, 97,114, 73,110,102,111, 0, 84,101,120,116, 66,111,120, 0, 67,117, +114,118,101, 0, 80, 97,116,104, 0, 83,101,108, 66,111,120, 0, 69,100,105,116, 70,111,110,116, 0, 77,101,115,104, 0, 77, 70, + 97, 99,101, 0, 77, 84, 70, 97, 99,101, 0, 84, 70, 97, 99,101, 0, 77, 86,101,114,116, 0, 77, 69,100,103,101, 0, 77, 68,101, +102,111,114,109, 86,101,114,116, 0, 77, 67,111,108, 0, 77, 83,116,105, 99,107,121, 0, 77, 83,101,108,101, 99,116, 0, 69,100, +105,116, 77,101,115,104, 0, 67,117,115,116,111,109, 68, 97,116, 97, 0, 77,117,108,116,105,114,101,115, 0, 80, 97,114,116,105, + 97,108, 86,105,115,105, 98,105,108,105,116,121, 0, 77, 68,101,102,111,114,109, 87,101,105,103,104,116, 0, 77, 84,101,120, 80, +111,108,121, 0, 77, 76,111,111,112, 85, 86, 0, 77, 76,111,111,112, 67,111,108, 0, 77, 70,108,111, 97,116, 80,114,111,112,101, +114,116,121, 0, 77, 73,110,116, 80,114,111,112,101,114,116,121, 0, 77, 83,116,114,105,110,103, 80,114,111,112,101,114,116,121, + 0, 79,114,105,103, 83,112, 97, 99,101, 70, 97, 99,101, 0, 77, 68,105,115,112,115, 0, 32, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 32, 40, 49, 60, 60, 49, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, + 77, 32, 40, 49, 60, 60, 50, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 32, 40, 49, 60, 60, 51, 41, 32, + 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, 32, 40, 49, 60, 60, 53, 41, 32, 35,100, +101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 32, 40, 49, 60, 60, 55, 41, 32, 35,100,101,102,105,110, +101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 32, 40, 49, 60, 60, 56, 41, 32, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 83, 72, 65, 82, 80, 32, 40, 49, 60, 60, 57, 41, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, + 49, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 32, 50, 32, 35,100,101,102,105,110,101, 32, + 77, 69, 95, 70, 76, 73, 80, 86, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 52, 32, 56, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, + 80, 82, 79, 74, 88, 90, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 89, 90, 32, 54, 52, 32, 32, + 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, 86, + 51, 32, 50, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 86, 51, 86, 52, 32, 52, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 32, 56, 32, 32, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 83, 77, 79, 79, 84, 72, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, + 69, 76, 32, 50, 32, 32, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 32, 48, 32, 35,100,101,102,105,110,101, + 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 32, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 32, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 49, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, + 84, 73, 86, 69, 32, 50, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 49, 32, 52, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 69, 76, 50, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 32, 49, 54, 32, 35, +100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, + 69, 32, 54, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 32, 49, 32, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 32, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 69, + 88, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, 82, 84, 32, 56, 32, 35,100,101,102, +105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 32, 49, 54, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, + 68, 67, 79, 76, 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, 76, 69, 83, 32, 49, 50, 56, 32, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 32, 50, 53, 54, 32, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 84, 87, 79, 83, 73, 68, 69, 32, 53, 49, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, + 76, 69, 32, 49, 48, 50, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 32, 50, 48, 52, 56, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 32, 52, 48, 57, 54, 32, 32, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 83, 72, 65, 68, 79, 87, 32, 56, 49, 57, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, + 78, 84, 32, 49, 54, 51, 56, 52, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 32, 48, 32, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 32, 49, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 32, 50, + 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 32, 52, 32, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 83, 85, 66, 32, 51, 32, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 32, 49, 32, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 32, 50, 32, 35,100,101,102,105,110,101, + 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 32, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, + 82, 69, 67, 65, 84, 69, 68, 52, 32, 56, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 32, 49, 54, 32, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 32, 51, 50, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, + 32, 54, 52, 32, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 52, 32, 49, 50, 56, 32, 35,101,110,100,105,102,100, 32, + 99,104, 97,114, 32,117,115,101, 95, 99,111,108, 44, 32,102,108, 97,103, 59, 10, 10, 9, 47, 42, 32, 83,112,101, 99,105, 97,108, + 32,108,101,118,101,108, 32, 49, 32,100, 97,116, 97, 32,116,104, 97,116, 32, 99, 97,110,110,111,116, 32, 98,101, 32,109,111,100, +105,102,105,101,100, 32,102,114,111,109, 32,111,116,104,101,114, 32,108,101,118,101,108,115, 32, 42, 47, 10, 9, 67,117,115,116, +111,109, 68, 97,116, 97, 32,118,100, 97,116, 97, 59, 10, 9, 67,117,115,116,111,109, 68, 97,116, 97, 32,102,100, 97,116, 97, 59, + 10, 9,115,104,111,114,116, 32, 42,101,100,103,101, 95,102,108, 97,103,115, 59, 10, 9, 99,104, 97,114, 32, 42,101,100,103,101, + 95, 99,114,101, 97,115,101,115, 59, 10,125, 32, 77,117,108,116,105,114,101,115, 59, 10, 10, 47, 42, 42, 32, 69,110,100, 32, 77, +117,108,116,105,114,101,115, 32, 42, 42, 47, 10, 10,116,121,112,101,100,101,102, 32,115,116,114,117, 99,116, 32, 80, 97,114,116, +105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 32,123, 10, 9,117,110,115,105,103,110,101,100, 32,105,110,116, 32, 42,118, +101,114,116, 95,109, 97,112, 59, 32, 47, 42, 32,118,101,114,116, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, + 32, 78,101,119, 32, 73,110,100,101,120, 32, 42, 47, 10, 9,105,110,116, 32, 42,101,100,103,101, 95,109, 97,112, 59, 32, 47, 42, + 32,101,100,103,101, 95,109, 97,112, 91, 79,108,100, 32, 73,110,100,101,120, 93, 61, 32, 78,101,119, 32, 73,110,100,101,120, 44, + 32, 45, 49, 61, 32,104,105,100,100,101,110, 32, 42, 47, 10, 9, 77, 70, 97, 99,101, 32, 42,111,108,100, 95,102, 97, 99,101,115, + 59, 10, 9, 77, 69,100,103,101, 32, 42,111,108,100, 95,101,100,103,101,115, 59, 10, 9,117,110,115,105,103,110,101,100, 32,105, +110,116, 32,116,111,116,102, 97, 99,101, 44, 32,116,111,116,101,100,103,101, 44, 32,116,111,116,118,101,114,116, 44, 32,112, 97, +100, 59, 10,125, 32, 80, 97,114,116,105, 97,108, 86,105,115,105, 98,105,108,105,116,121, 59, 10, 10, 47, 42, 32,109,118,101,114, +116, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, + 95, 83, 80, 72, 69, 82, 69, 84, 69, 83, 84, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 80, 72, 69, 82, 69, 84, + 69, 77, 80, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 72, 73, 68, 69, 9, 9, 9, 49, 54, 10, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 86, 69, 82, 84, 95, 77, 69, 82, 71, 69, 68, 9, 9, 40, 49, 60, 60, 54, 41, 10, 10, 47, 42, 32,109,101, +100,103,101, 45, 62,102,108, 97,103, 32, 40, 49, 61, 83, 69, 76, 69, 67, 84, 41, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 69, 68, 71, 69, 68, 82, 65, 87, 9, 9, 9, 40, 49, 60, 60, 49, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, + 69, 65, 77, 9, 9, 9, 9, 40, 49, 60, 60, 50, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 71, 79, 78, 9, 9, 9, + 9, 40, 49, 60, 60, 51, 41, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,114,101,115,101,114,118,101, 32, 49, 54, 32,102,111,114, 32, + 77, 69, 95, 72, 73, 68, 69, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 69, 68, 71, 69, 82, 69, 78, 68, 69, 82, + 9, 9, 40, 49, 60, 60, 53, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 76, 79, 79, 83, 69, 69, 68, 71, 69, 9, 9, 40, + 49, 60, 60, 55, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 69, 65, 77, 95, 76, 65, 83, 84, 9, 9, 40, 49, 60, 60, + 56, 41, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 83, 72, 65, 82, 80, 9, 9, 9, 40, 49, 60, 60, 57, 41, 10, 10, 47, 42, + 32,112,117,110,111, 32, 61, 32,118,101,114,116,101,120,110,111,114,109, 97,108, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, + 47, 42, 32,114,101,110,100,101,114, 32, 97,115,115,117,109,101,115, 32,102,108,105,112,115, 32,116,111, 32, 98,101, 32,111,114, +100,101,114,101,100, 32,108,105,107,101, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, + 73, 80, 86, 49, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 50, 9, 9, 50, 10, 35,100,101, +102,105,110,101, 32, 77, 69, 95, 70, 76, 73, 80, 86, 51, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 76, 73, + 80, 86, 52, 9, 9, 56, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 89, 9, 9, 49, 54, 10, 35,100,101, +102,105,110,101, 32, 77, 69, 95, 80, 82, 79, 74, 88, 90, 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 80, 82, + 79, 74, 89, 90, 9, 9, 54, 52, 10, 10, 47, 42, 32,101,100, 99,111,100,101, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35, +100,101,102,105,110,101, 32, 77, 69, 95, 86, 49, 86, 50, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 50, + 86, 51, 9, 9, 9, 50, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 51, 86, 49, 9, 9, 9, 52, 10, 35,100,101,102,105, +110,101, 32, 77, 69, 95, 86, 51, 86, 52, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 52, 86, 49, 9, 9, + 9, 56, 10, 10, 47, 42, 32,102,108, 97,103, 32, 40,109,102, 97, 99,101, 41, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, + 69, 95, 83, 77, 79, 79, 84, 72, 9, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 65, 67, 69, 95, 83, 69, 76, + 9, 9, 9, 50, 10, 9, 9, 9, 9, 9, 9, 47, 42, 32,102,108, 97,103, 32, 77, 69, 95, 72, 73, 68, 69, 61, 61, 49, 54, 32,105, +115, 32,117,115,101,100, 32,104,101,114,101, 32,116,111,111, 32, 42, 47, 32, 10, 47, 42, 32,109,115,101,108,101, 99,116, 45, 62, +116,121,112,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 86, 83, 69,108, 9, 48, 10, 35,100,101,102,105,110, +101, 32, 77, 69, 95, 69, 83, 69,108, 32, 49, 10, 35,100,101,102,105,110,101, 32, 77, 69, 95, 70, 83, 69, 76, 32, 50, 10, 10, 47, + 42, 32,109,116,102, 97, 99,101, 45, 62,102,108, 97,103, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, + 69, 67, 84, 9, 49, 32, 47, 42, 32,117,115,101, 32, 77, 70, 97, 99,101, 32,104,105,100,101, 32,102,108, 97,103, 32, 40, 97,102, +116,101,114, 32, 50, 46, 52, 51, 41, 44, 32,115,104,111,117,108,100, 32, 98,101, 32, 97, 98,108,101, 32,116,111, 32,114,101,117, +115,101, 32, 97,102,116,101,114, 32, 50, 46, 52, 52, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 67, 84, 73, + 86, 69, 9, 50, 32, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 33, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, + 70, 95, 83, 69, 76, 49, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 50, 9, 9, 56, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 51, 9, 9, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 69, 76, 52, + 9, 9, 51, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 72, 73, 68, 69, 9, 9, 54, 52, 32, 47, 42, 32,117,110,117,115, +101,100, 44, 32,115, 97,109,101, 32, 97,115, 32, 84, 70, 95, 83, 69, 76, 69, 67, 84, 32, 42, 47, 10, 10, 47, 42, 32,109,116,102, + 97, 99,101, 45, 62,109,111,100,101, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 89, 78, 65, 77, 73, 67, 9, + 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 83, 79, 82, 84, 9, 50, 10, 35,100,101,102,105,110, +101, 32, 84, 70, 95, 84, 69, 88, 9, 9, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 86, 69, + 82, 84, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 76, 73, 71, 72, 84, 9, 9, 49, 54, 10, 10, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 83, 72, 65, 82, 69, 68, 67, 79, 76, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, 73, + 76, 69, 83, 9, 9, 49, 50, 56, 9, 9, 47, 42, 32,100,101,112,114,101, 99, 97,116,101,100, 32, 42, 47, 10, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 9, 50, 53, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 84, + 87, 79, 83, 73, 68, 69, 9, 9, 53, 49, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 73, 78, 86, 73, 83, 73, 66, 76, 69, + 9, 49, 48, 50, 52, 10, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 79, 66, 67, 79, 76, 9, 9, 50, 48, 52, 56, 10, 35,100, +101,102,105,110,101, 32, 84, 70, 95, 66, 73, 76, 76, 66, 79, 65, 82, 68, 50, 9, 52, 48, 57, 54, 9, 47, 42, 32,119,105,116,104, + 32, 90, 32, 97,120,105,115, 32, 99,111,110,115,116,114, 97,105,110,116, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, + 95, 83, 72, 65, 68, 79, 87, 9, 9, 56, 49, 57, 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 66, 77, 70, 79, 78, 84, 9, + 9, 49, 54, 51, 56, 52, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,116,114, 97,110,115,112, 44, 32,118, 97,108,117,101, +115, 32, 49, 45, 52, 32, 97,114,101, 32,117,115,101,100, 32, 97,115, 32,102,108, 97,103,115, 32,105,110, 32,116,104,101, 32, 71, + 76, 44, 32, 87, 65, 82, 78, 73, 78, 71, 44, 32, 84, 70, 95, 83, 85, 66, 32, 99, 97,110,116, 32,119,111,114,107, 32,119,105,116, +104, 32,116,104,105,115, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 79, 76, 73, 68, 9, 48, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 65, 68, 68, 9, 9, 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 65, 76, 80, 72, 65, 9, + 50, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 67, 76, 73, 80, 9, 9, 52, 32, 47, 42, 32, 99,108,105,112,109, 97,112, 32, + 97,108,112,104, 97, 47, 98,105,110, 97,114,121, 32, 97,108,112,104, 97, 32, 97,108,108, 32,111,114, 32,110,111,116,104,105,110, +103, 33, 32, 42, 47, 10, 10, 47, 42, 32,115,117, 98, 32,105,115, 32,110,111,116, 32, 97,118, 97,105,108, 97, 98,108,101, 32,105, +110, 32,116,104,101, 32,117,115,101,114, 32,105,110,116,101,114,102, 97, 99,101, 32, 97,110,121,109,111,114,101, 32, 42, 47, 10, + 35,100,101,102,105,110,101, 32, 84, 70, 95, 83, 85, 66, 9, 9, 51, 10, 10, 10, 47, 42, 32,109,116,102, 97, 99,101, 45, 62,117, +110,119,114, 97,112, 32, 42, 47, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 49, 9, + 49, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 50, 9, 50, 10, 35,100,101,102,105, +110,101, 32, 84, 70, 95, 68, 69, 80, 82, 69, 67, 65, 84, 69, 68, 51, 9, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 68, + 69, 80, 82, 69, 67, 65, 84, 69, 68, 52, 9, 56, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 49, 9, 9, 32, 32, + 32, 32, 49, 54, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 50, 9, 9, 32, 32, 32, 32, 51, 50, 10, 35,100,101, +102,105,110,101, 32, 84, 70, 95, 80, 73, 78, 51, 9, 32, 32, 32, 9, 9, 54, 52, 10, 35,100,101,102,105,110,101, 32, 84, 70, 95, + 80, 73, 78, 52, 9, 32, 32, 32, 32, 9, 49, 50, 56, 10, 10, 35,101,110,100,105,102, 10,100,105, 79, 67, 75, 33,110,100,101,120, + 32,105,110, 32,110,117,114, 98, 32,108,105,115,116, 32, 42, 47, 10, 9,105,110,116, 32, 97, 99,116,110,117, 59, 10, 9, 47, 42, + 32,101,100,105,116, 44, 32,108, 97,115,116, 32,115,101,108,101, 99,116,101,100, 32, 98,112,111,105,110,116, 32, 42, 47, 10, 9, + 66, 80,111,105,110,116, 32, 42,108, 97,115,116,115,101,108, 98,112, 59, 10, 9, 10, 9, 47, 42, 32,102,111,110,116, 32,112, 97, +114,116, 32, 42, 47, 10, 9,115,104,111,114,116, 32,108,101,110, 44, 32,108,105,110,101,115, 44, 32,112,111,115, 44, 32,115,112, + 97, 99,101,109,111,100,101, 59, 10, 9,102,108,111, 97,116, 32,115,112, 97, 99,105,110,103, 44, 32,108,105,110,101,100,105,115, +116, 44, 32,115,104,101, 97,114, 44, 32,102,115,105,122,101, 44, 32,119,111,114,100,115,112, 97, 99,101, 44, 32,117,108,112,111, +115, 44, 32,117,108,104,101,105,103,104,116, 59, 10, 9,102,108,111, 97,116, 32,120,111,102, 44, 32,121,111,102, 59, 10, 9,102, +108,111, 97,116, 32,108,105,110,101,119,105,100,116,104, 59, 10, 70, 82, 69, 69,216, 24, 0, 77,117,108,116,105,114,101,115, 67, +111,108, 0, 77,117,108,116,105,114,101,115, 67,111,108, 70, 97, 99,101, 0, 77,117,108,116,105,114,101,115, 70, 97, 99,101, 0, + 77,117,108,116,105,114,101,115, 69,100,103,101, 0, 77,117,108,116,105,114,101,115, 76,101,118,101,108, 0, 77,111,100,105,102, +105,101,114, 68, 97,116, 97, 0, 83,117, 98,115,117,114,102, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 76, 97,116,116, +105, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,117,114,118,101, 77,111,100,105,102,105,101,114, 68, 97,116, + 97, 0, 66,117,105,108,100, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77, 97,115,107, 77,111,100,105,102,105,101,114, + 68, 97,116, 97, 0, 65,114,114, 97,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 77,105,114,114,111,114, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 69,100,103,101, 83,112,108,105,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 66,101,118,101,108, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 77,101,115,104, 77,111,100,105,102,105,101,114, 68, + 97,116, 97, 0, 83,109,111,107,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,107,101, 68,111,109, 97,105, +110, 83,101,116,116,105,110,103,115, 0, 83,109,111,107,101, 70,108,111,119, 83,101,116,116,105,110,103,115, 0, 83,109,111,107, +101, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 68,105,115,112,108, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97, +116, 97, 0, 85, 86, 80,114,111,106,101, 99,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101, 99,105,109, 97,116, +101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,109,111,111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, + 0, 67, 97,115,116, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 87, 97,118,101, 77,111,100,105,102,105,101,114, 68, 97, +116, 97, 0, 65,114,109, 97,116,117,114,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 72,111,111,107, 77,111,100,105, +102,105,101,114, 68, 97,116, 97, 0, 83,111,102,116, 98,111,100,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108, +111,116,104, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 67,108,111,116,104, 0, 67,108,111,116,104, 83,105,109, 83,101, +116,116,105,110,103,115, 0, 67,108,111,116,104, 67,111,108,108, 83,101,116,116,105,110,103,115, 0, 80,111,105,110,116, 67, 97, + 99,104,101, 0, 67,111,108,108,105,115,105,111,110, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 66, 86, 72, 84,114,101, +101, 0, 83,117,114,102, 97, 99,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 68,101,114,105,118,101,100, 77,101,115, +104, 0, 66, 86, 72, 84,114,101,101, 70,114,111,109, 77,101,115,104, 0, 66,111,111,108,101, 97,110, 77,111,100,105,102,105,101, +114, 68, 97,116, 97, 0, 77, 68,101,102, 73,110,102,108,117,101,110, 99,101, 0, 77, 68,101,102, 67,101,108,108, 0, 77,101,115, +104, 68,101,102,111,114,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,121,115,116, +101,109, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 73,110,115,116, 97,110, 99,101, 77, +111,100,105,102,105,101,114, 68, 97,116, 97, 0, 69,120,112,108,111,100,101, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 77,117,108,116,105,114,101,115, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 77,111,100, +105,102,105,101,114, 68, 97,116, 97, 0, 70,108,117,105,100,115,105,109, 83,101,116,116,105,110,103,115, 0, 83,104,114,105,110, +107,119,114, 97,112, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, 83,105,109,112,108,101, 68,101,102,111,114,109, 77,111, +100,105,102,105,101,114, 68, 97,116, 97, 0, 83,104, 97,112,101, 75,101,121, 77,111,100,105,102,105,101,114, 68, 97,116, 97, 0, + 76, 97,116,116,105, 99,101, 0, 98, 68,101,102,111,114,109, 71,114,111,117,112, 0, 83, 99,117,108,112,116, 83,101,115,115,105, +111,110, 0, 98, 65, 99,116,105,111,110, 0, 98, 80,111,115,101, 0, 98, 71, 80,100, 97,116, 97, 0, 66,117,108,108,101,116, 83, +111,102,116, 66,111,100,121, 0, 80, 97,114,116, 68,101,102,108,101, 99,116, 0, 83,111,102,116, 66,111,100,121, 0, 79, 98, 72, +111,111,107, 0, 68,117,112,108,105, 79, 98,106,101, 99,116, 0, 82, 78, 71, 0, 69,102,102,101, 99,116,111,114, 87,101,105,103, +104,116,115, 0, 80, 84, 67, 97, 99,104,101, 77,101,109, 0, 80, 84, 67, 97, 99,104,101, 69,100,105,116, 0, 83, 66, 86,101,114, +116,101,120, 0, 66,111,100,121, 80,111,105,110,116, 0, 66,111,100,121, 83,112,114,105,110,103, 0, 83, 66, 83, 99,114, 97,116, + 99,104, 0, 87,111,114,108,100, 0, 66, 97,115,101, 0, 65,118,105, 67,111,100,101, 99, 68, 97,116, 97, 0, 81,117,105, 99,107, +116,105,109,101, 67,111,100,101, 99, 68, 97,116, 97, 0, 70, 70, 77,112,101,103, 67,111,100,101, 99, 68, 97,116, 97, 0, 65,117, +100,105,111, 68, 97,116, 97, 0, 83, 99,101,110,101, 82,101,110,100,101,114, 76, 97,121,101,114, 0, 82,101,110,100,101,114, 68, + 97,116, 97, 0, 82,101,110,100,101,114, 80,114,111,102,105,108,101, 0, 71, 97,109,101, 68,111,109,101, 0, 71, 97,109,101, 70, +114, 97,109,105,110,103, 0, 71, 97,109,101, 68, 97,116, 97, 0, 84,105,109,101, 77, 97,114,107,101,114, 0, 80, 97,105,110,116, + 0, 66,114,117,115,104, 0, 73,109, 97,103,101, 80, 97,105,110,116, 83,101,116,116,105,110,103,115, 0, 80, 97,114,116,105, 99, +108,101, 66,114,117,115,104, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 69,100,105,116, 83,101,116,116,105,110,103,115, + 0, 84,114, 97,110,115,102,111,114,109, 79,114,105,101,110,116, 97,116,105,111,110, 0, 83, 99,117,108,112,116, 0, 86, 80, 97, +105,110,116, 0, 84,111,111,108, 83,101,116,116,105,110,103,115, 0, 98, 83,116, 97,116,115, 0, 85,110,105,116, 83,101,116,116, +105,110,103,115, 0, 80,104,121,115,105, 99,115, 83,101,116,116,105,110,103,115, 0, 69,100,105,116,105,110,103, 0, 83, 99,101, +110,101, 83,116, 97,116,115, 0, 68, 97,103, 70,111,114,101,115,116, 0, 66, 71,112,105, 99, 0, 82,101,103,105,111,110, 86,105, +101,119, 51, 68, 0, 82,101,110,100,101,114, 73,110,102,111, 0, 82,101,116,111,112,111, 86,105,101,119, 68, 97,116, 97, 0, 86, +105,101,119, 68,101,112,116,104,115, 0, 83,109,111,111,116,104, 86,105,101,119, 83,116,111,114,101, 0,119,109, 84,105,109,101, +114, 0, 86,105,101,119, 51, 68, 0, 83,112, 97, 99,101, 76,105,110,107, 0, 86,105,101,119, 50, 68, 0, 83,112, 97, 99,101, 73, +110,102,111, 0, 98, 83, 99,114,101,101,110, 0, 83,112, 97, 99,101, 73,112,111, 0, 98, 68,111,112,101, 83,104,101,101,116, 0, + 83,112, 97, 99,101, 66,117,116,115, 0, 83,112, 97, 99,101, 83,101,113, 0, 70,105,108,101, 83,101,108,101, 99,116, 80, 97,114, + 97,109,115, 0, 83,112, 97, 99,101, 70,105,108,101, 0, 70,105,108,101, 76,105,115,116, 0,119,109, 79,112,101,114, 97,116,111, +114, 0, 70,105,108,101, 76, 97,121,111,117,116, 0, 83,112, 97, 99,101, 79,111,112,115, 0, 84,114,101,101, 83,116,111,114,101, + 0, 84,114,101,101, 83,116,111,114,101, 69,108,101,109, 0, 83,112, 97, 99,101, 73,109, 97,103,101, 0, 83,112, 97, 99,101, 78, +108, 97, 0, 83,112, 97, 99,101, 84,101,120,116, 0, 83, 99,114,105,112,116, 0, 83,112, 97, 99,101, 83, 99,114,105,112,116, 0, + 83,112, 97, 99,101, 84,105,109,101, 0, 83,112, 97, 99,101, 78,111,100,101, 0, 83,112, 97, 99,101, 76,111,103,105, 99, 0, 83, +112, 97, 99,101, 73,109, 97, 83,101,108, 0, 67,111,110,115,111,108,101, 76,105,110,101, 0, 83,112, 97, 99,101, 67,111,110,115, +111,108,101, 0, 83,112, 97, 99,101, 85,115,101,114, 80,114,101,102, 0,117,105, 70,111,110,116, 0,117,105, 70,111,110,116, 83, +116,121,108,101, 0,117,105, 83,116,121,108,101, 0,117,105, 87,105,100,103,101,116, 67,111,108,111,114,115, 0,117,105, 87,105, +100,103,101,116, 83,116, 97,116,101, 67,111,108,111,114,115, 0, 84,104,101,109,101, 85, 73, 0, 84,104,101,109,101, 83,112, 97, + 99,101, 0, 84,104,101,109,101, 87,105,114,101, 67,111,108,111,114, 0, 98, 84,104,101,109,101, 0, 83,111,108,105,100, 76,105, +103,104,116, 0, 85,115,101,114, 68,101,102, 0, 83, 99,114, 86,101,114,116, 0, 83, 99,114, 69,100,103,101, 0, 80, 97,110,101, +108, 0, 80, 97,110,101,108, 84,121,112,101, 0,117,105, 76, 97,121,111,117,116, 0, 83, 99,114, 65,114,101, 97, 0, 83,112, 97, + 99,101, 84,121,112,101, 0, 65, 82,101,103,105,111,110, 0, 65, 82,101,103,105,111,110, 84,121,112,101, 0, 70,105,108,101, 71, +108,111, 98, 97,108, 0, 83,116,114,105,112, 69,108,101,109, 0, 84, 83,116,114,105,112, 69,108,101,109, 0, 83,116,114,105,112, + 67,114,111,112, 0, 83,116,114,105,112, 84,114, 97,110,115,102,111,114,109, 0, 83,116,114,105,112, 67,111,108,111,114, 66, 97, +108, 97,110, 99,101, 0, 83,116,114,105,112, 80,114,111,120,121, 0, 83,116,114,105,112, 0, 80,108,117,103,105,110, 83,101,113, + 0, 83,101,113,117,101,110, 99,101, 0, 98, 83,111,117,110,100, 0, 83,111,117,110,100, 72, 97,110,100,108,101, 0, 77,101,116, + 97, 83,116, 97, 99,107, 0, 87,105,112,101, 86, 97,114,115, 0, 71,108,111,119, 86, 97,114,115, 0, 84,114, 97,110,115,102,111, +114,109, 86, 97,114,115, 0, 83,111,108,105,100, 67,111,108,111,114, 86, 97,114,115, 0, 83,112,101,101,100, 67,111,110,116,114, +111,108, 86, 97,114,115, 0, 69,102,102,101, 99,116, 0, 66,117,105,108,100, 69,102,102, 0, 80, 97,114,116, 69,102,102, 0, 80, + 97,114,116,105, 99,108,101, 0, 87, 97,118,101, 69,102,102, 0, 98, 80,114,111,112,101,114,116,121, 0, 98, 78,101, 97,114, 83, +101,110,115,111,114, 0, 98, 77,111,117,115,101, 83,101,110,115,111,114, 0, 98, 84,111,117, 99,104, 83,101,110,115,111,114, 0, + 98, 75,101,121, 98,111, 97,114,100, 83,101,110,115,111,114, 0, 98, 80,114,111,112,101,114,116,121, 83,101,110,115,111,114, 0, + 98, 65, 99,116,117, 97,116,111,114, 83,101,110,115,111,114, 0, 98, 68,101,108, 97,121, 83,101,110,115,111,114, 0, 98, 67,111, +108,108,105,115,105,111,110, 83,101,110,115,111,114, 0, 98, 82, 97,100, 97,114, 83,101,110,115,111,114, 0, 98, 82, 97,110,100, +111,109, 83,101,110,115,111,114, 0, 98, 82, 97,121, 83,101,110,115,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 83,101,110, +115,111,114, 0, 98, 77,101,115,115, 97,103,101, 83,101,110,115,111,114, 0, 98, 83,101,110,115,111,114, 0, 98, 67,111,110,116, +114,111,108,108,101,114, 0, 98, 74,111,121,115,116,105, 99,107, 83,101,110,115,111,114, 0, 98, 69,120,112,114,101,115,115,105, +111,110, 67,111,110,116, 0, 98, 80,121,116,104,111,110, 67,111,110,116, 0, 98, 65, 99,116,117, 97,116,111,114, 0, 98, 65,100, +100, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 65, 99,116,105,111,110, 65, 99,116,117, 97,116,111,114, 0, + 98, 83,111,117,110,100, 65, 99,116,117, 97,116,111,114, 0, 83,111,117,110,100, 51, 68, 0, 98, 69,100,105,116, 79, 98,106,101, + 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 83, 99,101,110,101, 65, 99,116,117, 97,116,111,114, 0, 98, 80,114,111,112,101, +114,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, 79, 98,106,101, 99,116, 65, 99,116,117, 97,116,111,114, 0, 98, 73,112,111, + 65, 99,116,117, 97,116,111,114, 0, 98, 67, 97,109,101,114, 97, 65, 99,116,117, 97,116,111,114, 0, 98, 67,111,110,115,116,114, + 97,105,110,116, 65, 99,116,117, 97,116,111,114, 0, 98, 71,114,111,117,112, 65, 99,116,117, 97,116,111,114, 0, 98, 82, 97,110, +100,111,109, 65, 99,116,117, 97,116,111,114, 0, 98, 77,101,115,115, 97,103,101, 65, 99,116,117, 97,116,111,114, 0, 98, 71, 97, +109,101, 65, 99,116,117, 97,116,111,114, 0, 98, 86,105,115,105, 98,105,108,105,116,121, 65, 99,116,117, 97,116,111,114, 0, 98, + 84,119,111, 68, 70,105,108,116,101,114, 65, 99,116,117, 97,116,111,114, 0, 98, 80, 97,114,101,110,116, 65, 99,116,117, 97,116, +111,114, 0, 98, 83,116, 97,116,101, 65, 99,116,117, 97,116,111,114, 0, 98, 65,114,109, 97,116,117,114,101, 65, 99,116,117, 97, +116,111,114, 0, 70,114,101,101, 67, 97,109,101,114, 97, 0, 83,112, 97, 99,101, 83,111,117,110,100, 0, 71,114,111,117,112, 79, + 98,106,101, 99,116, 0, 66,111,110,101, 0, 98, 65,114,109, 97,116,117,114,101, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, + 86,101,114,116, 0, 98, 77,111,116,105,111,110, 80, 97,116,104, 0, 98, 65,110,105,109, 86,105,122, 83,101,116,116,105,110,103, +115, 0, 98, 80,111,115,101, 67,104, 97,110,110,101,108, 0, 98, 73, 75, 80, 97,114, 97,109, 0, 98, 73,116, 97,115, 99, 0, 98, + 65, 99,116,105,111,110, 71,114,111,117,112, 0, 83,112, 97, 99,101, 65, 99,116,105,111,110, 0, 98, 65, 99,116,105,111,110, 67, +104, 97,110,110,101,108, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 67,104, 97,110,110,101,108, 0, 98, 67,111,110,115,116, +114, 97,105,110,116, 0, 98, 67,111,110,115,116,114, 97,105,110,116, 84, 97,114,103,101,116, 0, 98, 80,121,116,104,111,110, 67, +111,110,115,116,114, 97,105,110,116, 0, 98, 75,105,110,101,109, 97,116,105, 99, 67,111,110,115,116,114, 97,105,110,116, 0, 98, + 84,114, 97, 99,107, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 97,116,101, 76,105,107,101, 67,111,110, +115,116,114, 97,105,110,116, 0, 98, 76,111, 99, 97,116,101, 76,105,107,101, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 77, +105,110, 77, 97,120, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,107,101, 67,111,110,115,116,114, 97, +105,110,116, 0, 98, 65, 99,116,105,111,110, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 76,111, 99,107, 84,114, 97, 99,107, + 67,111,110,115,116,114, 97,105,110,116, 0, 98, 68, 97,109,112, 84,114, 97, 99,107, 67,111,110,115,116,114, 97,105,110,116, 0, + 98, 70,111,108,108,111,119, 80, 97,116,104, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,116,114,101,116, 99,104, 84,111, + 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,105,103,105,100, 66,111,100,121, 74,111,105,110,116, 67,111,110,115,116,114, + 97,105,110,116, 0, 98, 67,108, 97,109,112, 84,111, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 67,104,105,108,100, 79,102, + 67,111,110,115,116,114, 97,105,110,116, 0, 98, 84,114, 97,110,115,102,111,114,109, 67,111,110,115,116,114, 97,105,110,116, 0, + 98, 76,111, 99, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 82,111,116, 76,105,109,105,116, 67,111,110, +115,116,114, 97,105,110,116, 0, 98, 83,105,122,101, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 68,105, +115,116, 76,105,109,105,116, 67,111,110,115,116,114, 97,105,110,116, 0, 98, 83,104,114,105,110,107,119,114, 97,112, 67,111,110, +115,116,114, 97,105,110,116, 0, 98, 65, 99,116,105,111,110, 77,111,100,105,102,105,101,114, 0, 98, 65, 99,116,105,111,110, 83, +116,114,105,112, 0, 98, 78,111,100,101, 83,116, 97, 99,107, 0, 98, 78,111,100,101, 83,111, 99,107,101,116, 0, 98, 78,111,100, +101, 76,105,110,107, 0, 98, 78,111,100,101, 0, 98, 78,111,100,101, 80,114,101,118,105,101,119, 0,117,105, 66,108,111, 99,107, + 0, 98, 78,111,100,101, 84,121,112,101, 0, 78,111,100,101, 73,109, 97,103,101, 65,110,105,109, 0, 78,111,100,101, 66,108,117, +114, 68, 97,116, 97, 0, 78,111,100,101, 68, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 66,105,108, 97,116,101,114, 97, +108, 66,108,117,114, 68, 97,116, 97, 0, 78,111,100,101, 72,117,101, 83, 97,116, 0, 78,111,100,101, 73,109, 97,103,101, 70,105, +108,101, 0, 78,111,100,101, 67,104,114,111,109, 97, 0, 78,111,100,101, 84,119,111, 88, 89,115, 0, 78,111,100,101, 84,119,111, + 70,108,111, 97,116,115, 0, 78,111,100,101, 71,101,111,109,101,116,114,121, 0, 78,111,100,101, 86,101,114,116,101,120, 67,111, +108, 0, 78,111,100,101, 68,101,102,111, 99,117,115, 0, 78,111,100,101, 83, 99,114,105,112,116, 68,105, 99,116, 0, 78,111,100, +101, 71,108, 97,114,101, 0, 78,111,100,101, 84,111,110,101,109, 97,112, 0, 78,111,100,101, 76,101,110,115, 68,105,115,116, 0, + 84,101,120, 78,111,100,101, 79,117,116,112,117,116, 0, 67,117,114,118,101, 77, 97,112, 80,111,105,110,116, 0, 67,117,114,118, +101, 77, 97,112, 0, 66,114,117,115,104, 67,108,111,110,101, 0, 67,117,115,116,111,109, 68, 97,116, 97, 76, 97,121,101,114, 0, + 72, 97,105,114, 75,101,121, 0, 80, 97,114,116,105, 99,108,101, 75,101,121, 0, 66,111,105,100, 80, 97,114,116,105, 99,108,101, + 0, 66,111,105,100, 68, 97,116, 97, 0, 67,104,105,108,100, 80, 97,114,116,105, 99,108,101, 0, 80, 97,114,116,105, 99,108,101, + 84, 97,114,103,101,116, 0, 80, 97,114,116,105, 99,108,101, 68,117,112,108,105, 87,101,105,103,104,116, 0, 80, 97,114,116,105, + 99,108,101, 68, 97,116, 97, 0, 80, 97,114,116,105, 99,108,101, 83,101,116,116,105,110,103,115, 0, 66,111,105,100, 83,101,116, +116,105,110,103,115, 0, 80, 97,114,116,105, 99,108,101, 67, 97, 99,104,101, 75,101,121, 0, 75, 68, 84,114,101,101, 0, 80, 97, +114,116,105, 99,108,101, 68,114, 97,119, 68, 97,116, 97, 0, 76,105,110,107, 78,111,100,101, 0, 98, 71, 80, 68,115,112,111,105, +110,116, 0, 98, 71, 80, 68,115,116,114,111,107,101, 0, 98, 71, 80, 68,102,114, 97,109,101, 0, 98, 71, 80, 68,108, 97,121,101, +114, 0, 82,101,112,111,114,116, 0, 82,101,112,111,114,116, 76,105,115,116, 0,119,109, 87,105,110,100,111,119, 77, 97,110, 97, +103,101,114, 0,119,109, 87,105,110,100,111,119, 0,119,109, 75,101,121, 67,111,110,102,105,103, 0,119,109, 69,118,101,110,116, + 0,119,109, 83,117, 98, 87,105,110,100,111,119, 0,119,109, 71,101,115,116,117,114,101, 0,119,109, 75,101,121, 77, 97,112, 73, +116,101,109, 0, 80,111,105,110,116,101,114, 82, 78, 65, 0,119,109, 75,101,121, 77, 97,112, 0,119,109, 79,112,101,114, 97,116, +111,114, 84,121,112,101, 0, 70, 77,111,100,105,102,105,101,114, 0, 70, 77,111,100, 95, 71,101,110,101,114, 97,116,111,114, 0, + 70, 77,111,100, 95, 70,117,110, 99,116,105,111,110, 71,101,110,101,114, 97,116,111,114, 0, 70, 67, 77, 95, 69,110,118,101,108, +111,112,101, 68, 97,116, 97, 0, 70, 77,111,100, 95, 69,110,118,101,108,111,112,101, 0, 70, 77,111,100, 95, 67,121, 99,108,101, +115, 0, 70, 77,111,100, 95, 80,121,116,104,111,110, 0, 70, 77,111,100, 95, 76,105,109,105,116,115, 0, 70, 77,111,100, 95, 78, +111,105,115,101, 0, 68,114,105,118,101,114, 84, 97,114,103,101,116, 0, 67,104, 97,110,110,101,108, 68,114,105,118,101,114, 0, + 70, 80,111,105,110,116, 0, 70, 67,117,114,118,101, 0, 65,110,105,109, 77, 97,112, 80, 97,105,114, 0, 65,110,105,109, 77, 97, +112,112,101,114, 0, 78,108, 97, 83,116,114,105,112, 0, 78,108, 97, 84,114, 97, 99,107, 0, 75, 83, 95, 80, 97,116,104, 0, 75, +101,121,105,110,103, 83,101,116, 0, 65,110,105,109, 79,118,101,114,114,105,100,101, 0, 73,100, 65,100,116, 84,101,109,112,108, + 97,116,101, 0, 66,111,105,100, 82,117,108,101, 0, 66,111,105,100, 82,117,108,101, 71,111, 97,108, 65,118,111,105,100, 0, 66, +111,105,100, 82,117,108,101, 65,118,111,105,100, 67,111,108,108,105,115,105,111,110, 0, 66,111,105,100, 82,117,108,101, 70,111, +108,108,111,119, 76,101, 97,100,101,114, 0, 66,111,105,100, 82,117,108,101, 65,118,101,114, 97,103,101, 83,112,101,101,100, 0, + 66,111,105,100, 82,117,108,101, 70,105,103,104,116, 0, 66,111,105,100, 83,116, 97,116,101, 0, 70, 76, 85, 73, 68, 95, 51, 68, + 0, 87, 84, 85, 82, 66, 85, 76, 69, 78, 67, 69, 0, 0, 0, 0, 84, 76, 69, 78, 1, 0, 1, 0, 2, 0, 2, 0, 4, 0, 4, 0, + 4, 0, 4, 0, 8, 0, 0, 0, 16, 0, 24, 0, 16, 0, 4, 0, 8, 0, 8, 0, 16, 0, 12, 0, 12, 0, 24, 0, 16, 0, 16, 0, + 32, 0, 16, 0, 16, 0, 32, 0, 96, 0, 72, 0, 72, 2, 0, 0, 40, 0,144, 0,152, 4,112, 0, 36, 0, 56, 0,112, 0,128, 0, +168, 0, 96, 0, 40, 0, 48, 0,176, 0, 16, 0,152, 0, 40, 0, 0, 6,184, 1, 0, 0, 0, 0, 0, 0, 16, 1,104, 1,120, 1, + 24, 0, 8, 3,200, 0, 0, 0, 96, 0,240, 1, 32, 1,232, 0,136, 0,248, 1, 56, 1, 80, 0, 88, 0, 32, 3,104, 0, 88, 1, + 0, 0,128, 0,104, 0,208, 0, 80, 0, 8, 0, 16, 0,216, 1, 0, 0, 0, 0, 0, 0,144, 1, 20, 0, 48, 0, 64, 0, 24, 0, + 12, 0, 16, 0, 4, 0, 8, 0, 8, 0, 0, 0, 32, 0,112, 0, 48, 0, 8, 0, 16, 0, 8, 0, 8, 0, 4, 0, 4, 0, 0, 1, + 32, 0, 16, 0, 0, 0, 16, 0, 64, 0, 24, 0, 12, 0, 64, 0, 72, 0, 96, 0,112, 0,120, 0, 88, 0,120, 0,152, 0, 88, 0, + 80, 0,128, 0, 80, 0,104, 0,248, 0, 56, 0,192, 0,176, 0,216, 0, 80, 0,112, 0,128, 0,216, 0,128, 0,240, 0, 72, 0, +128, 0, 0, 0,144, 0, 32, 0, 8, 2,152, 0, 0, 0,112, 0, 0, 0, 0, 0, 88, 0, 8, 0, 8, 0, 8, 1,104, 0, 96, 0, + 88, 0, 88, 0, 88, 0,192, 1,136, 0,128, 0, 72, 0,232, 0, 48, 0, 0, 0,144, 0, 88, 0,104, 0,120, 0,152, 0, 32, 1, +224, 0,192, 0, 0, 0, 72, 0,168, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,216, 1, 40, 0,184, 0,152, 0, 64, 0, 24, 0, + 88, 0, 24, 4, 64, 0, 24, 0, 16, 0, 96, 0, 88, 0, 32, 0, 40, 1, 48, 0, 8, 0,112, 0, 88, 0, 56, 0, 72, 0,120, 1, + 32, 0, 8, 0, 16, 0, 48, 2, 0, 0, 0, 0, 64, 0,248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, 56, 0,152, 0, + 72, 0,208, 0,248, 0, 32, 0, 0, 1,240, 0,208, 1,104, 0, 0, 0,152, 0, 0, 0, 40, 1, 16, 0, 16, 0,168, 0,224, 0, +144, 2,120, 2, 64, 0,200, 0, 32, 1, 72, 0,208, 2, 40, 0,112, 0, 40, 0, 24, 1, 32, 0,232, 0, 32, 0, 32, 0, 80, 2, + 16, 1, 16, 0,216, 21, 56, 0,160, 11, 32, 0, 40, 0, 88, 1, 0, 0, 0, 0,160, 0, 0, 0, 40, 1, 0, 0, 24, 1, 80, 0, + 48, 0, 16, 0, 8, 0, 52, 0, 0, 1, 32, 1,200, 1, 8, 1, 48, 1, 64, 0, 32, 0, 12, 0, 24, 0, 48, 0, 16, 0, 24, 0, + 24, 0, 32, 0, 72, 1, 0, 0, 64, 0, 64, 0, 48, 0, 8, 0, 48, 0, 72, 0,104, 0, 40, 0, 8, 0, 72, 0, 44, 0, 40, 0, +108, 0, 72, 0, 72, 0, 96, 0,104, 0, 60, 0,128, 0, 80, 0, 80, 0, 16, 0, 96, 0, 72, 0, 32, 0, 88, 0, 24, 0, 80, 0, +112, 0, 84, 0, 32, 0, 96, 0, 56, 0, 56, 0,112, 0,140, 0, 4, 0, 24, 0, 16, 0, 8, 0, 88, 0, 40, 0,224, 0, 40, 0, + 32, 1,176, 0, 16, 0, 24, 0, 24, 0, 0, 2, 4, 0, 40, 0,120, 0, 8, 1, 88, 0, 56, 0, 88, 0,128, 0, 80, 0,120, 0, + 56, 0, 48, 0, 48, 0, 72, 0, 48, 0, 72, 0, 48, 0, 48, 0, 24, 0, 56, 0,104, 0, 16, 0,112, 0, 96, 0, 28, 0, 28, 0, + 28, 0, 56, 0, 24, 0, 72, 0,168, 0, 40, 0,144, 0, 56, 0, 8, 1, 0, 0, 0, 0, 0, 0, 16, 0, 40, 0, 28, 0, 12, 0, + 12, 0, 16, 1, 40, 0, 8, 0, 8, 0, 64, 0, 32, 0, 24, 0, 16, 0, 24, 0, 32, 0, 8, 0, 32, 0, 12, 0, 56, 0, 24, 0, + 72, 0, 24, 0, 56, 0, 56, 0, 20, 0, 64, 0, 40, 0, 32, 0,192, 0, 8, 2,104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 32, 0, 40, 0,192, 0, 40, 0, 32, 0, 8, 1,224, 0,168, 0, 72, 0, 0, 0, 0, 0,120, 0, 0, 0,120, 0, 0, 0,104, 0, + 24, 0, 24, 0, 16, 0, 24, 0, 8, 0, 16, 0, 24, 0, 20, 0,112, 0, 32, 1, 16, 0,104, 0, 0, 1, 40, 0,200, 0,104, 0, +112, 0,104, 0, 32, 0, 80, 0, 56, 0, 80, 0, 64, 0,104, 0, 72, 0, 64, 0,128, 0, 0, 0, 0, 0, 0, 0, 83, 84, 82, 67, +137, 1, 0, 0, 10, 0, 2, 0, 10, 0, 0, 0, 10, 0, 1, 0, 11, 0, 3, 0, 11, 0, 0, 0, 11, 0, 1, 0, 9, 0, 2, 0, 12, 0, 2, 0, 9, 0, 3, 0, 9, 0, 4, 0, 13, 0, 2, 0, 2, 0, 5, 0, 2, 0, 6, 0, 14, 0, 2, 0, 4, 0, 5, 0, 4, 0, 6, 0, 15, 0, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0, 16, 0, 2, 0, 8, 0, 5, 0, 8, 0, 6, 0, 17, 0, 3, 0, 4, 0, 5, 0, 4, 0, 6, 0, 4, 0, 7, 0, 18, 0, 3, 0, 7, 0, 5, 0, 7, 0, 6, 0, 7, 0, 7, 0, 19, 0, 3, 0, @@ -9776,7 +14292,7 @@ char datatoc_B_blend[]= { 46, 0,134, 0, 32, 0,164, 0,194, 0, 4, 0,194, 0, 0, 0,194, 0, 1, 0, 0, 0,100, 5, 7, 0,101, 5,195, 0, 6, 0, 189, 0, 85, 5, 7, 0,102, 5, 4, 0, 90, 0, 0, 0,103, 5, 0, 0,104, 5, 0, 0,191, 2,196, 0, 9, 0,189, 0, 85, 5, 7, 0,105, 5, 7, 0,106, 5, 2, 0, 70, 1, 2, 0, 19, 0, 4, 0, 36, 0, 4, 0,107, 5, 87, 0,108, 5, 9, 0, 89, 5, -197, 0, 72, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, 7, 0,114, 5, +197, 0, 74, 0,196, 0,109, 5,196, 0,110, 5,195, 0, 81, 3, 7, 0,111, 5, 2, 0,112, 5, 2, 0,113, 5, 7, 0,114, 5, 7, 0,115, 5, 2, 0,228, 3, 2, 0,116, 5, 7, 0,117, 5, 7, 0,118, 5, 7, 0,119, 5, 2, 0,120, 5, 2, 0, 96, 5, 2, 0,121, 5, 2, 0,122, 5, 2, 0,123, 5, 2, 0,124, 5, 7, 0,125, 5, 7, 0,126, 5, 7, 0,127, 5, 2, 0,128, 5, 2, 0,129, 5, 2, 0,130, 5, 2, 0,131, 5, 2, 0,132, 5, 2, 0,133, 5, 2, 0,134, 5,191, 0,135, 5,193, 0,136, 5, @@ -9785,80 +14301,80 @@ char datatoc_B_blend[]= { 7, 0,153, 5, 7, 0,154, 5, 7, 0,155, 5, 7, 0,156, 5, 7, 0,157, 5, 7, 0,158, 5, 2, 0,159, 5, 0, 0,160, 5, 0, 0,161, 5, 0, 0,162, 5, 0, 0,163, 5, 32, 0,164, 5, 0, 0,165, 5, 0, 0,166, 5, 0, 0,167, 5, 0, 0,168, 5, 0, 0,169, 5, 0, 0,170, 5, 0, 0,171, 5, 0, 0,172, 5, 2, 0,173, 5, 2, 0,174, 5, 2, 0,175, 5, 2, 0,176, 5, - 2, 0,177, 5,198, 0, 8, 0, 4, 0,178, 5, 4, 0,179, 5, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, 4, 0,183, 5, - 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,184, 5, 2, 0,185, 5, 2, 0, 19, 0,200, 0, 2, 0, 7, 0,186, 5, - 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,187, 5,176, 0,188, 5, 46, 0,189, 5, 47, 0,238, 0, - 12, 0,190, 5,177, 0,191, 5, 32, 0,192, 5, 7, 0,193, 5, 7, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, 4, 0,112, 3, - 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,197, 5,197, 0,198, 5,202, 0,199, 5,183, 0,182, 0,181, 0,200, 5, - 12, 0,100, 0, 12, 0,201, 5, 12, 0,202, 5,203, 0,203, 5, 2, 0,204, 5, 2, 0,205, 5, 2, 0,247, 0, 2, 0,206, 5, - 4, 0,207, 5, 4, 0,208, 5, 12, 0,209, 5,186, 0, 77, 5,187, 0,210, 5,199, 0,211, 5,162, 0, 94, 3,200, 0,212, 5, -204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, 7, 0,213, 5,205, 0, 35, 0, - 7, 0,214, 5, 7, 0,215, 5, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, 7, 0,221, 5, - 7, 0,222, 5, 7, 0, 77, 1, 7, 0,223, 5, 7, 0,224, 5, 7, 0,225, 5, 7, 0,226, 5, 7, 0,171, 0, 2, 0,227, 5, - 2, 0,228, 5, 2, 0, 71, 2, 2, 0,229, 5, 2, 0,230, 5, 2, 0,231, 5, 2, 0,232, 5, 7, 0,233, 5, 72, 0,234, 5, -162, 0, 94, 3,205, 0,235, 5,206, 0,236, 5,207, 0,237, 5,208, 0,238, 5,209, 0,239, 5,210, 0,240, 5, 7, 0,241, 5, - 2, 0,242, 5, 2, 0,243, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5, 7, 0,222, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,248, 5, 2, 0,231, 5, 2, 0,232, 5, - 32, 0,187, 5, 32, 0,249, 5,204, 0,250, 5,211, 0,235, 5, 0, 0,251, 5, 4, 0,112, 3, 4, 0,252, 5, 2, 0,253, 5, - 2, 0, 70, 0, 2, 0,254, 5, 2, 0,255, 5, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, 2, 0, 0, 6, 7, 0,112, 0, - 7, 0, 1, 6, 7, 0, 2, 6, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0,171, 0, 7, 0,193, 5, 2, 0, 6, 6, - 2, 0,122, 1, 2, 0, 7, 6, 2, 0, 8, 6, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, 2, 0, 13, 6, - 2, 0, 14, 6, 4, 0, 15, 6, 12, 0, 16, 6, 2, 0, 17, 6, 2, 0,140, 2, 2, 0, 18, 6, 0, 0, 19, 6, 0, 0, 20, 6, - 9, 0, 21, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 22, 6, 23, 0, 23, 6, 23, 0, 24, 6, - 7, 0, 25, 6, 7, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 2, 0, 29, 6, 2, 0, 30, 6, 2, 0, 31, 6, 2, 0, 32, 6, - 2, 0, 33, 6, 2, 0, 19, 0, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0,255, 5, - 7, 0, 39, 6, 7, 0, 40, 6, 4, 0, 41, 6, 4, 0, 42, 6,212, 0, 6, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,215, 0, 43, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, - 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,217, 0, 45, 6, 12, 0, 46, 6, 2, 0, 70, 1, 2, 0, 47, 6, - 4, 0, 19, 0, 7, 0, 48, 6, 4, 0,255, 5,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,206, 0,236, 5,213, 0, 44, 6, 2, 0, 49, 6, 2, 0, 50, 6, 2, 0, 51, 6, 2, 0, 52, 6, - 2, 0, 34, 6, 2, 0, 53, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 54, 6, 4, 0, 55, 6, 27, 0, 56, 6, -219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, - 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 49, 6, 2, 0, 57, 6, 2, 0, 58, 6, 2, 0, 59, 6, 4, 0, 19, 0, 7, 0, 60, 6, -162, 0, 94, 3,220, 0, 16, 0, 0, 0, 61, 6, 0, 0, 62, 6, 0, 0, 63, 6, 0, 0, 64, 6, 2, 0, 17, 0, 2, 0, 19, 0, - 2, 0, 65, 6, 2, 0, 66, 6, 2, 0,182, 1, 2, 0, 67, 6, 4, 0, 68, 6, 4, 0, 69, 6, 2, 0, 70, 6, 2, 0, 71, 6, - 0, 0, 72, 6, 0, 0, 73, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0, -220, 0, 74, 6,222, 0, 75, 6, 12, 0, 76, 6, 12, 0, 77, 6,223, 0, 78, 6,210, 0, 79, 6,224, 0, 80, 6, 2, 0, 81, 6, - 2, 0, 82, 6, 2, 0, 83, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6, 12, 0, 84, 6,226, 0, 85, 6, 0, 0, 86, 6,227, 0, 87, 6, 4, 0, 88, 6, - 4, 0, 89, 6, 2, 0, 19, 0, 2, 0, 90, 6, 2, 0, 91, 6, 2, 0, 37, 0,228, 0, 29, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 47, 0,230, 2, 45, 0, 58, 1, 64, 0, 92, 6, 2, 0,133, 0, - 2, 0, 93, 6, 2, 0, 70, 0, 2, 0, 94, 6, 4, 0, 19, 0, 2, 0, 95, 6, 2, 0, 96, 6, 2, 0, 97, 6, 2, 0,239, 1, - 0, 0, 98, 6, 0, 0, 99, 6, 0, 0,100, 6, 0, 0,255, 5, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0, 60, 6, 7, 0,122, 1, - 7, 0,101, 6, 7, 0,102, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, - 7, 0,246, 5, 2, 0,247, 5, 2, 0, 47, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 45, 6,213, 0, 44, 6,230, 0, 27, 0, -212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 42, 0,103, 6, 4, 0,104, 6, - 4, 0,105, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,106, 6, 0, 0,107, 6, 0, 0,108, 6, 4, 0,109, 6, 4, 0,110, 6, - 4, 0,111, 6, 4, 0,112, 6, 2, 0,113, 6, 2, 0,114, 6, 7, 0,115, 6, 23, 0,116, 6, 23, 0,117, 6, 4, 0,118, 6, - 4, 0,119, 6, 0, 0,120, 6, 0, 0,121, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,122, 6, 9, 0,123, 6, 9, 0,124, 6, - 9, 0,125, 6, 9, 0,126, 6, 4, 0, 90, 0, 4, 0,127, 6, 0, 0,128, 6, 0, 0,129, 6,232, 0, 10, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,231, 0,130, 6, 2, 0, 90, 0, 2, 0,133, 0, 4, 0, 43, 0, - 9, 0,131, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5,213, 0, 44, 6, - 4, 0, 19, 0, 4, 0,132, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, - 2, 0,247, 5,213, 0, 44, 6, 27, 0,133, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, 7, 0,134, 6, 9, 0,135, 6, - 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,136, 6, 7, 0,137, 6, 61, 0, 59, 1, 61, 0,138, 6, 4, 0,139, 6, 2, 0,140, 6, - 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, - 2, 0,247, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,222, 0, 75, 6, 0, 0, 61, 6, 0, 0, 62, 6, - 0, 0, 63, 6, 2, 0, 17, 0, 2, 0, 71, 6, 2, 0, 19, 0, 2, 0, 65, 6, 9, 0,135, 6, 4, 0, 68, 6, 4, 0,141, 6, - 4, 0,142, 6, 4, 0, 69, 6, 23, 0,143, 6, 23, 0,144, 6, 7, 0,145, 6, 7, 0,146, 6, 7, 0,147, 6, 7, 0,134, 6, - 2, 0,148, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 67, 6, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0,149, 6, 2, 0,150, 6, - 9, 0,151, 6, 9, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 2, 0,156, 6, 0, 0, 73, 6, 57, 0,157, 6, -237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,158, 6, 4, 0, 23, 0, 0, 0, 84, 0, 4, 0,159, 6, 4, 0, 17, 0, -238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5, 4, 0, 17, 0, - 4, 0,160, 6, 4, 0, 19, 0, 4, 0,106, 6, 12, 0,161, 6, 12, 0,162, 6, 0, 0,163, 6,239, 0, 5, 0,212, 0, 0, 0, -212, 0, 1, 0, 12, 0,244, 5, 4, 0,245, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0,240, 0, 1, 0, 0, 0,164, 6, - 2, 0,165, 6, 2, 0,166, 6, 2, 0,167, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,166, 6, 2, 0,168, 6, 2, 0,169, 6, - 0, 0,191, 2, 2, 0,170, 6, 2, 0,171, 6, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0, 34, 6, 7, 0,175, 6, - 7, 0,176, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,177, 6,241, 0,178, 6,241, 0,179, 6, -241, 0,180, 6, 7, 0,181, 6, 2, 0,182, 6, 2, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, 2, 0,187, 6, - 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6,243, 0, 10, 0, 0, 0,192, 6, 0, 0,193, 6, 0, 0,194, 6, - 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 2, 0,198, 6, 2, 0,199, 6, 2, 0,200, 6, 2, 0, 37, 0,244, 0, 8, 0, - 0, 0,201, 6, 0, 0,202, 6, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 7, 0,213, 5, 7, 0, 37, 0, -245, 0, 17, 0,243, 0,207, 6,243, 0,208, 6,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6,243, 0,213, 6, + 2, 0,177, 5, 4, 0,178, 5, 4, 0,179, 5,198, 0, 8, 0, 4, 0,180, 5, 4, 0,181, 5, 4, 0,182, 5, 4, 0,183, 5, + 4, 0,184, 5, 4, 0,185, 5, 4, 0, 54, 0, 4, 0,126, 2,199, 0, 3, 0, 7, 0,186, 5, 2, 0,187, 5, 2, 0, 19, 0, +200, 0, 2, 0, 7, 0,188, 5, 4, 0, 19, 0, 46, 0, 38, 0, 27, 0, 31, 0, 39, 0, 75, 0, 32, 0,189, 5,176, 0,190, 5, + 46, 0,191, 5, 47, 0,238, 0, 12, 0,192, 5,177, 0,193, 5, 32, 0,194, 5, 7, 0,195, 5, 7, 0,196, 5, 7, 0,197, 5, + 7, 0,198, 5, 4, 0,112, 3, 2, 0, 19, 0, 2, 0, 64, 1, 61, 0, 59, 1,201, 0,199, 5,197, 0,200, 5,202, 0,201, 5, +183, 0,182, 0,181, 0,202, 5, 12, 0,100, 0, 12, 0,203, 5, 12, 0,204, 5,203, 0,205, 5, 2, 0,206, 5, 2, 0,207, 5, + 2, 0,247, 0, 2, 0,208, 5, 4, 0,209, 5, 4, 0,210, 5, 12, 0,211, 5,186, 0, 77, 5,187, 0,212, 5,199, 0,213, 5, +162, 0, 94, 3,200, 0,214, 5,204, 0, 6, 0, 47, 0,238, 0, 45, 0, 58, 1, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,106, 0, + 7, 0,215, 5,205, 0, 35, 0, 7, 0,216, 5, 7, 0,217, 5, 7, 0,218, 5, 7, 0,219, 5, 7, 0,220, 5, 7, 0,221, 5, + 7, 0,222, 5, 7, 0,223, 5, 7, 0,224, 5, 7, 0, 77, 1, 7, 0,225, 5, 7, 0,226, 5, 7, 0,227, 5, 7, 0,228, 5, + 7, 0,171, 0, 2, 0,229, 5, 2, 0,230, 5, 2, 0, 71, 2, 2, 0,231, 5, 2, 0,232, 5, 2, 0,233, 5, 2, 0,234, 5, + 7, 0,235, 5, 72, 0,236, 5,162, 0, 94, 3,205, 0,237, 5,206, 0,238, 5,207, 0,239, 5,208, 0,240, 5,209, 0,241, 5, +210, 0,242, 5, 7, 0,243, 5, 2, 0,244, 5, 2, 0,245, 5, 4, 0,239, 1,211, 0, 54, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5, 7, 0,224, 5, 7, 0, 77, 1, 7, 0, 43, 0, 4, 0,250, 5, + 2, 0,233, 5, 2, 0,234, 5, 32, 0,189, 5, 32, 0,251, 5,204, 0,252, 5,211, 0,237, 5, 0, 0,253, 5, 4, 0,112, 3, + 4, 0,254, 5, 2, 0,255, 5, 2, 0, 70, 0, 2, 0, 0, 6, 2, 0, 1, 6, 2, 0,239, 1, 2, 0, 19, 0, 2, 0, 29, 2, + 2, 0, 2, 6, 7, 0,112, 0, 7, 0, 3, 6, 7, 0, 4, 6, 7, 0, 5, 6, 7, 0, 6, 6, 7, 0, 7, 6, 7, 0,171, 0, + 7, 0,195, 5, 2, 0, 8, 6, 2, 0,122, 1, 2, 0, 9, 6, 2, 0, 10, 6, 2, 0, 11, 6, 2, 0, 12, 6, 2, 0, 13, 6, + 2, 0, 14, 6, 2, 0, 15, 6, 2, 0, 16, 6, 4, 0, 17, 6, 12, 0, 18, 6, 2, 0, 19, 6, 2, 0,140, 2, 2, 0, 20, 6, + 0, 0, 21, 6, 0, 0, 22, 6, 9, 0, 23, 6,162, 0, 94, 3,213, 0, 25, 0, 24, 0, 36, 0, 24, 0, 64, 0, 23, 0, 24, 6, + 23, 0, 25, 6, 23, 0, 26, 6, 7, 0, 27, 6, 7, 0, 28, 6, 7, 0, 29, 6, 7, 0, 30, 6, 2, 0, 31, 6, 2, 0, 32, 6, + 2, 0, 33, 6, 2, 0, 34, 6, 2, 0, 35, 6, 2, 0, 19, 0, 2, 0, 36, 6, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0, 39, 6, + 2, 0, 40, 6, 2, 0, 1, 6, 7, 0, 41, 6, 7, 0, 42, 6, 4, 0, 43, 6, 4, 0, 44, 6,212, 0, 6, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,214, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,215, 0, 45, 6, 46, 0,134, 0,216, 0, 14, 0,212, 0, 0, 0, +212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,213, 0, 46, 6,217, 0, 47, 6, 12, 0, 48, 6, + 2, 0, 70, 1, 2, 0, 49, 6, 4, 0, 19, 0, 7, 0, 50, 6, 4, 0, 1, 6,218, 0, 20, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,206, 0,238, 5,213, 0, 46, 6, 2, 0, 51, 6, 2, 0, 52, 6, + 2, 0, 53, 6, 2, 0, 54, 6, 2, 0, 36, 6, 2, 0, 55, 6, 0, 0, 19, 0, 0, 0,137, 1, 9, 0, 66, 2, 4, 0, 56, 6, + 4, 0, 57, 6, 27, 0, 58, 6,219, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, + 2, 0,249, 5,213, 0, 46, 6, 7, 0, 90, 2, 7, 0, 91, 2, 2, 0, 51, 6, 2, 0, 59, 6, 2, 0, 60, 6, 2, 0, 61, 6, + 4, 0, 19, 0, 7, 0, 62, 6,162, 0, 94, 3,220, 0, 16, 0, 0, 0, 63, 6, 0, 0, 64, 6, 0, 0, 65, 6, 0, 0, 66, 6, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 67, 6, 2, 0, 68, 6, 2, 0,182, 1, 2, 0, 69, 6, 4, 0, 70, 6, 4, 0, 71, 6, + 2, 0, 72, 6, 2, 0, 73, 6, 0, 0, 74, 6, 0, 0, 75, 6,221, 0, 16, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, + 4, 0,247, 5, 4, 0, 37, 0,220, 0, 76, 6,222, 0, 77, 6, 12, 0, 78, 6, 12, 0, 79, 6,223, 0, 80, 6,210, 0, 81, 6, +224, 0, 82, 6, 2, 0, 83, 6, 2, 0, 84, 6, 2, 0, 85, 6, 2, 0, 70, 0,225, 0, 17, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,213, 0, 46, 6, 12, 0, 86, 6,226, 0, 87, 6, 0, 0, 88, 6, +227, 0, 89, 6, 4, 0, 90, 6, 4, 0, 91, 6, 2, 0, 19, 0, 2, 0, 92, 6, 2, 0, 93, 6, 2, 0, 37, 0,228, 0, 29, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5, 47, 0,230, 2, 45, 0, 58, 1, + 64, 0, 94, 6, 2, 0,133, 0, 2, 0, 95, 6, 2, 0, 70, 0, 2, 0, 96, 6, 4, 0, 19, 0, 2, 0, 97, 6, 2, 0, 98, 6, + 2, 0, 99, 6, 2, 0,239, 1, 0, 0,100, 6, 0, 0,101, 6, 0, 0,102, 6, 0, 0, 1, 6, 7, 0, 90, 2, 7, 0, 91, 2, + 7, 0, 62, 6, 7, 0,122, 1, 7, 0,103, 6, 7, 0,104, 6,162, 0, 94, 3,229, 0, 11, 0,212, 0, 0, 0,212, 0, 1, 0, + 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5, 2, 0, 49, 6, 2, 0, 19, 0, 4, 0, 37, 0,217, 0, 47, 6, +213, 0, 46, 6,230, 0, 27, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5, + 42, 0,105, 6, 4, 0,106, 6, 4, 0,107, 6, 2, 0, 90, 0, 2, 0,133, 0, 2, 0,108, 6, 0, 0,109, 6, 0, 0,110, 6, + 4, 0,111, 6, 4, 0,112, 6, 4, 0,113, 6, 4, 0,114, 6, 2, 0,115, 6, 2, 0,116, 6, 7, 0,117, 6, 23, 0,118, 6, + 23, 0,119, 6, 4, 0,120, 6, 4, 0,121, 6, 0, 0,122, 6, 0, 0,123, 6,231, 0, 10, 0, 27, 0, 31, 0, 9, 0,124, 6, + 9, 0,125, 6, 9, 0,126, 6, 9, 0,127, 6, 9, 0,128, 6, 4, 0, 90, 0, 4, 0,129, 6, 0, 0,130, 6, 0, 0,131, 6, +232, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5,231, 0,132, 6, 2, 0, 90, 0, + 2, 0,133, 0, 4, 0, 43, 0, 9, 0,133, 6,233, 0, 8, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, + 7, 0,248, 5,213, 0, 46, 6, 4, 0, 19, 0, 4, 0,134, 6,234, 0, 23, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, + 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,213, 0, 46, 6, 27, 0,135, 6, 27, 0, 81, 0, 2, 0, 19, 0, 2, 0,133, 0, + 7, 0,136, 6, 9, 0,137, 6, 7, 0, 90, 2, 7, 0, 91, 2, 7, 0,138, 6, 7, 0,139, 6, 61, 0, 59, 1, 61, 0,140, 6, + 4, 0,141, 6, 2, 0,142, 6, 2, 0, 37, 0,162, 0, 94, 3,235, 0, 10, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, + 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5, 2, 0, 19, 0, 2, 0,121, 3, 4, 0, 37, 0,162, 0, 94, 3,236, 0, 42, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,213, 0, 46, 6,222, 0, 77, 6, + 0, 0, 63, 6, 0, 0, 64, 6, 0, 0, 65, 6, 2, 0, 17, 0, 2, 0, 73, 6, 2, 0, 19, 0, 2, 0, 67, 6, 9, 0,137, 6, + 4, 0, 70, 6, 4, 0,143, 6, 4, 0,144, 6, 4, 0, 71, 6, 23, 0,145, 6, 23, 0,146, 6, 7, 0,147, 6, 7, 0,148, 6, + 7, 0,149, 6, 7, 0,136, 6, 2, 0,150, 6, 2, 0,237, 0, 2, 0,182, 1, 2, 0, 69, 6, 2, 0, 37, 0, 2, 0, 43, 0, + 2, 0,151, 6, 2, 0,152, 6, 9, 0,153, 6, 9, 0,154, 6, 9, 0,155, 6, 9, 0,156, 6, 9, 0,157, 6, 2, 0,158, 6, + 0, 0, 75, 6, 57, 0,159, 6,237, 0, 7, 0,237, 0, 0, 0,237, 0, 1, 0, 4, 0,160, 6, 4, 0, 23, 0, 0, 0, 84, 0, + 4, 0,161, 6, 4, 0, 17, 0,238, 0, 13, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, + 2, 0,249, 5, 4, 0, 17, 0, 4, 0,162, 6, 4, 0, 19, 0, 4, 0,108, 6, 12, 0,163, 6, 12, 0,164, 6, 0, 0,165, 6, +239, 0, 5, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 4, 0, 37, 0,240, 0, 7, 0,240, 0, 0, 0, +240, 0, 1, 0, 0, 0,166, 6, 2, 0,167, 6, 2, 0,168, 6, 2, 0,169, 6, 2, 0, 37, 0,241, 0, 12, 0, 2, 0,168, 6, + 2, 0,170, 6, 2, 0,171, 6, 0, 0,191, 2, 2, 0,172, 6, 2, 0,173, 6, 2, 0,174, 6, 2, 0,175, 6, 2, 0,176, 6, + 2, 0, 36, 6, 7, 0,177, 6, 7, 0,178, 6,242, 0, 18, 0,242, 0, 0, 0,242, 0, 1, 0, 0, 0,234, 3,241, 0,179, 6, +241, 0,180, 6,241, 0,181, 6,241, 0,182, 6, 7, 0,183, 6, 2, 0,184, 6, 2, 0,185, 6, 2, 0,186, 6, 2, 0,187, 6, + 2, 0,188, 6, 2, 0,189, 6, 2, 0,190, 6, 2, 0,191, 6, 2, 0,192, 6, 2, 0,193, 6,243, 0, 10, 0, 0, 0,194, 6, + 0, 0,195, 6, 0, 0,196, 6, 0, 0,197, 6, 0, 0,198, 6, 0, 0,199, 6, 2, 0,200, 6, 2, 0,201, 6, 2, 0,202, 6, + 2, 0, 37, 0,244, 0, 8, 0, 0, 0,203, 6, 0, 0,204, 6, 0, 0,205, 6, 0, 0,206, 6, 0, 0,207, 6, 0, 0,208, 6, + 7, 0,215, 5, 7, 0, 37, 0,245, 0, 17, 0,243, 0,209, 6,243, 0,210, 6,243, 0,211, 6,243, 0,212, 6,243, 0,213, 6, 243, 0,214, 6,243, 0,215, 6,243, 0,216, 6,243, 0,217, 6,243, 0,218, 6,243, 0,219, 6,243, 0,220, 6,243, 0,221, 6, -244, 0,222, 6, 0, 0,223, 6,246, 0, 71, 0, 0, 0,224, 6, 0, 0,225, 6, 0, 0,196, 6, 0, 0,226, 6, 0, 0,227, 6, +243, 0,222, 6,243, 0,223, 6,244, 0,224, 6, 0, 0,225, 6,246, 0, 71, 0, 0, 0,226, 6, 0, 0,227, 6, 0, 0,198, 6, 0, 0,228, 6, 0, 0,229, 6, 0, 0,230, 6, 0, 0,231, 6, 0, 0,232, 6, 0, 0,233, 6, 0, 0,234, 6, 0, 0,235, 6, 0, 0,236, 6, 0, 0,237, 6, 0, 0,238, 6, 0, 0,239, 6, 0, 0,240, 6, 0, 0,241, 6, 0, 0,242, 6, 0, 0,243, 6, 0, 0,244, 6, 0, 0,245, 6, 0, 0,246, 6, 0, 0,247, 6, 0, 0,248, 6, 0, 0,249, 6, 0, 0,250, 6, 0, 0,251, 6, @@ -9867,293 +14383,294 @@ char datatoc_B_blend[]= { 0, 0, 12, 7, 0, 0, 13, 7, 0, 0, 14, 7, 0, 0, 15, 7, 0, 0, 16, 7, 0, 0, 17, 7, 0, 0, 18, 7, 0, 0, 19, 7, 0, 0, 20, 7, 0, 0, 21, 7, 0, 0, 22, 7, 0, 0, 23, 7, 0, 0, 24, 7, 0, 0, 25, 7, 0, 0, 26, 7, 0, 0, 27, 7, 0, 0, 28, 7, 0, 0, 29, 7, 0, 0, 30, 7, 0, 0, 31, 7, 0, 0, 32, 7, 0, 0, 33, 7, 0, 0, 34, 7, 0, 0, 35, 7, - 0, 0, 36, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 37, 7, 0, 0,248, 6, 0, 0,250, 6, 2, 0, 19, 0, 2, 0, 37, 0, -248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 38, 7,246, 0, 39, 7,246, 0, 40, 7,246, 0, 41, 7, + 0, 0, 36, 7, 0, 0, 37, 7, 0, 0, 38, 7, 0, 0, 92, 0,247, 0, 5, 0, 0, 0, 39, 7, 0, 0,250, 6, 0, 0,252, 6, + 2, 0, 19, 0, 2, 0, 37, 0,248, 0, 24, 0,248, 0, 0, 0,248, 0, 1, 0, 0, 0, 20, 0,245, 0, 40, 7,246, 0, 41, 7, 246, 0, 42, 7,246, 0, 43, 7,246, 0, 44, 7,246, 0, 45, 7,246, 0, 46, 7,246, 0, 47, 7,246, 0, 48, 7,246, 0, 49, 7, -246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,247, 0, 56, 7, 4, 0, 57, 7, - 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 58, 7, 7, 0, 44, 2,250, 0, 73, 0, - 4, 0, 19, 0, 4, 0, 59, 7, 4, 0, 60, 7, 0, 0, 61, 7, 0, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, 0, 0, 65, 7, - 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 2, 0, 70, 7, 2, 0, 37, 0, 4, 0, 71, 7, 4, 0, 72, 7, - 4, 0, 73, 7, 4, 0, 74, 7, 2, 0, 75, 7, 2, 0, 76, 7, 4, 0, 77, 7, 4, 0, 78, 7, 4, 0, 79, 7, 4, 0, 80, 7, - 4, 0, 81, 7, 4, 0,161, 6, 4, 0, 82, 7, 2, 0, 83, 7, 2, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, 12, 0, 87, 7, - 12, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 0, 0, 91, 7, 2, 0, 92, 7, 2, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, - 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7,249, 0,100, 7, 2, 0,101, 7, 2, 0,102, 7, 2, 0,103, 7, - 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 4, 0,109, 7, 4, 0,110, 7, 2, 0,111, 7, - 2, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, 2, 0,119, 7, - 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 0, 0,123, 7, 0, 0,124, 7, 7, 0,125, 7, 2, 0,140, 5, 2, 0,141, 5, - 55, 0,126, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,127, 7, 12, 0,128, 7, 12, 0,129, 7, 12, 0,244, 5, 46, 0,134, 0, - 46, 0,130, 7, 2, 0,131, 7, 2, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, 2, 0,137, 7, - 2, 0, 37, 0, 2, 0,138, 7, 2, 0,139, 7, 4, 0, 70, 0,210, 0,140, 7, 9, 0,141, 7, 2, 0,142, 7,251, 0, 5, 0, -251, 0, 0, 0,251, 0, 1, 0,251, 0,143, 7, 13, 0,144, 7, 4, 0, 19, 0,252, 0, 7, 0,252, 0, 0, 0,252, 0, 1, 0, -251, 0,145, 7,251, 0,146, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0,253, 0, 0, 0,253, 0, 1, 0, -254, 0,147, 7,255, 0, 80, 6, 0, 0,148, 7, 0, 0,149, 7, 0, 0,150, 7, 2, 0,151, 7, 2, 0,152, 7, 2, 0,153, 7, - 2, 0,154, 7, 2, 0,155, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,156, 7, 2, 0,157, 7, 2, 0,158, 7, 4, 0,159, 7, -253, 0,160, 7, 9, 0,161, 7, 4, 0,162, 7, 4, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 0, 0,166, 7, 0, 1, 22, 0, - 0, 1, 0, 0, 0, 1, 1, 0,251, 0,145, 7,251, 0,146, 7,251, 0,167, 7,251, 0,168, 7,215, 0,169, 7, 23, 0, 52, 0, - 0, 0,245, 5, 0, 0,170, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,171, 7, 2, 0, 37, 0, 2, 0,134, 7, 2, 0,159, 6, - 2, 0, 19, 0, 1, 1,147, 7, 12, 0,172, 7, 12, 0,244, 5, 12, 0,173, 7, 12, 0,174, 7, 2, 1, 21, 0, 2, 1, 0, 0, - 2, 1, 1, 0,213, 0, 44, 6, 23, 0,175, 7, 23, 0,176, 7, 2, 0, 35, 6, 2, 0, 36, 6, 2, 0,177, 7, 2, 0,178, 7, - 2, 0,179, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,133, 7, 2, 0,137, 7, 4, 0, 43, 0, 3, 1,147, 7, 12, 0,180, 7, - 12, 0,181, 7, 12, 0,173, 7, 0, 0,182, 7, 9, 0,183, 7, 4, 1, 12, 0, 0, 0,184, 7, 2, 0,185, 7, 2, 0,186, 7, - 2, 0,187, 7, 2, 0,188, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,189, 7, 46, 0,190, 7, 4, 0,191, 7, 4, 0,192, 7, - 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,193, 7, 6, 1, 8, 0, 57, 0,194, 7, 57, 0,195, 7, 6, 1,196, 7, 6, 1,197, 7, - 6, 1,198, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,199, 7, 7, 1, 4, 0, 4, 0,104, 6, 4, 0,200, 7, 4, 0,109, 6, - 4, 0,201, 7, 8, 1, 2, 0, 4, 0,202, 7, 4, 0,203, 7, 9, 1, 7, 0, 7, 0,204, 7, 7, 0,205, 7, 7, 0,206, 7, - 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,207, 7, 10, 1, 6, 0, 0, 0,208, 7, 0, 0, 63, 6, 49, 0,137, 0, - 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, 4, 0, 57, 0, 4, 0, 23, 0, - 4, 0, 28, 0, 4, 0,209, 7, 4, 0,210, 7, 4, 0,211, 7, 5, 1,212, 7, 0, 0,208, 7, 4, 0,213, 7, 4, 0,214, 7, - 10, 1, 88, 3, 7, 1,215, 7, 8, 1,216, 7, 9, 1,217, 7, 6, 1,218, 7, 6, 1,219, 7, 6, 1,220, 7, 57, 0,221, 7, - 57, 0,222, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, 4, 0,235, 0, 9, 0,228, 0, - 7, 0,230, 0, 7, 0,231, 0, 9, 0,223, 7, 9, 0,224, 7, 9, 0,232, 0, 9, 0,234, 0, 13, 1, 43, 0, 13, 1, 0, 0, - 13, 1, 1, 0, 9, 0,225, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, 4, 0, 23, 0, 4, 0, 88, 0, - 4, 0,226, 7, 4, 0,227, 7, 4, 0,210, 7, 4, 0,211, 7, 4, 0,228, 7, 4, 0,246, 0, 4, 0,229, 7, 4, 0,230, 7, - 7, 0,106, 5, 7, 0,231, 7, 4, 0,126, 0, 4, 0,232, 7, 11, 1,233, 7, 36, 0, 80, 0, 46, 0,134, 0, 49, 0,137, 0, - 7, 0,234, 7, 7, 0,235, 7, 12, 1, 60, 1, 13, 1,236, 7, 13, 1,237, 7, 13, 1,238, 7, 12, 0,239, 7, 14, 1,240, 7, - 15, 1,241, 7, 7, 0,242, 7, 7, 0,243, 7, 4, 0,244, 7, 7, 0,245, 7, 9, 0,246, 7, 4, 0,247, 7, 4, 0,248, 7, - 4, 0,249, 7, 7, 0,250, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,251, 7, 13, 1,252, 7,201, 0, 6, 0, - 12, 0,253, 7, 12, 0,239, 7, 12, 0,254, 7, 13, 1,255, 7, 0, 0, 0, 8, 0, 0, 1, 8, 17, 1, 4, 0, 7, 0, 2, 8, - 7, 0,109, 0, 2, 0, 3, 8, 2, 0, 4, 8, 18, 1, 6, 0, 7, 0, 5, 8, 7, 0, 6, 8, 7, 0, 7, 8, 7, 0, 8, 8, - 4, 0, 9, 8, 4, 0, 10, 8, 19, 1, 12, 0, 7, 0, 11, 8, 7, 0, 12, 8, 7, 0, 13, 8, 7, 0, 14, 8, 7, 0, 15, 8, - 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 4, 0,234, 2, 4, 0, 21, 8, 20, 1, 2, 0, - 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 22, 8, 7, 0, 23, 8, 4, 0, 90, 0, 4, 0,192, 2, 4, 0, 24, 8, - 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 23, 1, 8, 0, - 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0, 57, 0, 7, 0, 23, 0, 7, 0,126, 0, - 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 2, 0, 29, 4, - 2, 0, 26, 8, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 28, 8, 4, 0, 82, 0, 4, 0,194, 2, 7, 0, 29, 8, - 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0,244, 2, 7, 0, 57, 1, 7, 0, 35, 8, - 7, 0, 36, 8, 7, 0, 37, 0, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 39, 8, 2, 0, 40, 8, 2, 0, 41, 8, 2, 0, 42, 8, - 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 29, 2, 2, 0, 48, 8, 2, 0, 26, 2, - 2, 0, 49, 8, 0, 0, 50, 8, 0, 0, 51, 8, 7, 0,240, 0, 25, 1, 52, 8, 68, 0,242, 1, 26, 1, 16, 0, 26, 1, 0, 0, - 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 25, 8, 2, 0,242, 0, 7, 0,239, 2, 7, 0,240, 2, 7, 0,241, 2, - 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 53, 8, 7, 0,244, 2, 7, 0,246, 2, 7, 0,247, 2,227, 0, 5, 0, - 2, 0, 17, 0, 2, 0,199, 7, 2, 0, 19, 0, 2, 0, 54, 8, 27, 0,133, 6,226, 0, 3, 0, 4, 0, 69, 0, 4, 0, 55, 8, -227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 22, 0, - 9, 0, 56, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 57, 8, 4, 0, 58, 8, 4, 0, 37, 0, 29, 1, 4, 0, - 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, 67, 0, 59, 8, 7, 0, 77, 1, - 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 60, 8, 2, 0, 61, 8, 2, 0, 17, 0, 2, 0, 62, 8, 0, 0, 63, 8, 0, 0, 64, 8, - 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 65, 8, 0, 0, 66, 8, 33, 1, 3, 0, 4, 0, 17, 0, - 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 67, 8, 2, 0, 68, 8, 2, 0, 19, 0, 2, 0, 37, 0, 35, 1, 6, 0, - 0, 0, 20, 0, 0, 0, 69, 8, 2, 0, 70, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, 36, 1, 5, 0, 0, 0, 20, 0, - 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, 4, 0,194, 2, 4, 0, 67, 8, - 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 71, 8, 0, 0, 72, 8, 2, 0, 70, 1, 2, 0, 43, 0, 4, 0, 73, 8, - 39, 1, 4, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, 32, 0, 76, 8, 0, 0, 77, 8, - 0, 0, 78, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0, 19, 0, 2, 0, 80, 8, - 2, 0, 81, 8, 2, 0, 82, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, 42, 1, 83, 8, 32, 0, 45, 0, - 2, 0, 90, 5, 2, 0,242, 7, 2, 0, 84, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 0, 85, 8, - 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 86, 8, 4, 0, 87, 8, 4, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, 4, 0, 91, 8, - 44, 1, 1, 0, 0, 0, 92, 8, 45, 1, 4, 0, 42, 0,103, 6, 0, 0, 93, 8, 4, 0, 70, 1, 4, 0, 19, 0, 42, 1, 18, 0, - 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 95, 8, 2, 0, 82, 8, 2, 0, 79, 8, - 2, 0, 96, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 83, 8, 41, 1, 97, 8, 2, 0, 15, 0, - 2, 0, 98, 8, 4, 0, 99, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, 48, 1, 12, 0,160, 0,100, 8, - 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0,102, 8, 2, 0,103, 8, - 2, 0,104, 8, 2, 0,105, 8, 7, 0,106, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,107, 8, 4, 0, 27, 8, 4, 0, 89, 0, - 2, 0,108, 8, 7, 0,243, 3, 7, 0,109, 8, 14, 1,240, 7, 50, 1,110, 8, 2, 0, 17, 0, 2, 0,111, 8, 2, 0,112, 8, - 2, 0,113, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, 81, 0,114, 8, 0, 0, 20, 0, - 7, 0,115, 8, 7, 0,116, 8, 7, 0,129, 3, 2, 0,117, 8, 2, 0,118, 8, 52, 1, 5, 0, 2, 0, 17, 0, 2, 0, 19, 0, - 4, 0, 37, 0, 46, 0,134, 0, 32, 0,187, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, 0, 0, 20, 0, 0, 0, 65, 8, - 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 79, 8, 2, 0,130, 3, 7, 0,119, 8, 7, 0,120, 8, - 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,121, 8, 7, 0,122, 8, 32, 0,123, 8, 55, 1, 10, 0, - 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,101, 8, 2, 0, 43, 0, 2, 0, 64, 0, - 2, 0,124, 8, 2, 0,125, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,126, 8, 7, 0,127, 8, 7, 0,236, 2, - 2, 0, 19, 0, 2, 0,206, 2, 7, 0,128, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, 2, 0, 19, 0, 2, 0,244, 2, - 2, 0,220, 2, 2, 0,129, 8, 4, 0, 37, 0, 7, 0,130, 8, 7, 0,131, 8, 7, 0,132, 8, 7, 0,133, 8, 0, 0,134, 8, - 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0, 20, 0, 2, 0,137, 1, 2, 0, 64, 0, - 2, 0,124, 8, 2, 0,125, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,135, 8, 4, 0,136, 8, 4, 0,137, 8, 7, 0,138, 8, - 7, 0,139, 8, 0, 0, 71, 8, 60, 1, 7, 0, 0, 0,140, 8, 32, 0,141, 8, 0, 0, 77, 8, 2, 0,142, 8, 2, 0, 43, 0, - 4, 0, 70, 0, 0, 0, 78, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 27, 8, 4, 0, 89, 0, 0, 0,143, 8, - 0, 0,144, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0,145, 8, - 7, 0,146, 8, 42, 0,103, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, 32, 0, 45, 0, 65, 1, 2, 0, - 4, 0, 17, 0, 4, 0, 24, 6, 66, 1, 6, 0, 0, 0, 74, 8, 0, 0, 75, 8, 4, 0, 17, 0, 7, 0, 37, 2, 32, 0, 51, 3, - 32, 0,147, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 94, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 79, 8, - 2, 0,148, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, 7, 0,149, 8, 7, 0,150, 8, - 7, 0,151, 8, 7, 0,152, 8, 4, 0, 19, 0, 7, 0,129, 8, 7, 0,153, 8, 7, 0,154, 8, 7, 0, 37, 0, 15, 1, 12, 0, - 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,155, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, 4, 0,231, 3, 4, 0,156, 8, - 4, 0,157, 8, 4, 0,158, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,159, 8, 7, 0,160, 8, 7, 0,161, 8, - 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 14, 1, 15, 0, 27, 0, 31, 0, 0, 0,222, 0, - 43, 0,149, 0, 9, 0,223, 0, 43, 0,167, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,168, 8, 7, 0,109, 8, 7, 0,159, 8, - 7, 0,160, 8, 7, 0,169, 8, 4, 0, 90, 0, 4, 0,158, 8, 9, 0,170, 8, 68, 1, 15, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 0, 1,171, 8,213, 0, 44, 6, 14, 1,240, 7, 2, 0, 70, 1, 2, 0,107, 8, - 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 96, 6, 4, 0, 70, 0, 69, 1, 6, 0, 69, 1, 0, 0, 69, 1, 1, 0, - 32, 0, 45, 0, 9, 0,172, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, 12, 0,173, 8, 4, 0,131, 0, - 7, 0,174, 8, 70, 1, 25, 0, 70, 1, 0, 0, 70, 1, 1, 0, 70, 1, 38, 0, 12, 0,175, 8, 0, 0, 20, 0, 7, 0,176, 8, - 7, 0,177, 8, 7, 0,178, 8, 7, 0,179, 8, 4, 0, 19, 0, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, 7, 0, 77, 1, - 7, 0, 37, 2, 7, 0,183, 8, 7, 0,192, 2, 7, 0,184, 8, 7, 0,185, 8, 7, 0,186, 8, 7, 0,187, 8, 7, 0,188, 8, - 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, 39, 0, 75, 0, 12, 0,189, 8, 12, 0,190, 8, - 12, 0,191, 8, 9, 0,192, 8, 4, 0, 19, 0, 4, 0,253, 5, 2, 0,248, 2, 2, 0, 54, 6, 2, 0,131, 0, 2, 0,193, 8, - 2, 0,194, 8, 2, 0,195, 8, 2, 0,196, 8, 2, 0,197, 8, 4, 0,198, 8, 4, 0,199, 8, 4, 0,200, 8, 4, 0,201, 8, - 4, 0,202, 8, 4, 0,203, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, 73, 1, 5, 0, 72, 1,204, 8, 4, 0,192, 2, - 4, 0,205, 8, 4, 0,206, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, 4, 0, 54, 6, 4, 0,200, 8, 4, 0,201, 8, - 4, 0,202, 8, 4, 0,203, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, 26, 0,207, 8, 12, 0,156, 3, 0, 0, 20, 0, - 2, 0, 19, 0, 2, 0,208, 8, 2, 0,209, 8, 2, 0,210, 8, 2, 0,115, 3, 2, 0,211, 8, 4, 0, 73, 2, 4, 0,200, 8, - 4, 0,201, 8, 70, 1,212, 8, 75, 1, 38, 0, 75, 1,213, 8, 12, 0,214, 8, 9, 0,215, 8, 9, 0,216, 8, 9, 0,217, 8, - 7, 0, 65, 1, 7, 0,172, 0, 7, 0,218, 8, 7, 0, 16, 2, 7, 0,106, 3, 7, 0,108, 3, 2, 0,138, 3, 2, 0, 37, 0, - 7, 0,219, 8, 7, 0,220, 8, 7, 0,111, 3, 7, 0,221, 8, 7, 0,222, 8, 7, 0,223, 8, 7, 0,224, 8, 7, 0,225, 8, - 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0, 66, 2, 32, 0,229, 8,161, 0, 11, 0, 12, 0,230, 8, 2, 0, 19, 0, - 2, 0,231, 8, 7, 0,102, 2, 7, 0,232, 8, 7, 0,233, 8, 12, 0,234, 8, 4, 0,235, 8, 4, 0,236, 8, 9, 0,237, 8, - 9, 0,238, 8, 76, 1, 1, 0, 4, 0,236, 8, 77, 1, 12, 0, 4, 0,236, 8, 7, 0, 91, 8, 2, 0,239, 8, 2, 0,240, 8, - 7, 0,241, 8, 7, 0,242, 8, 2, 0,243, 8, 2, 0, 19, 0, 7, 0,244, 8, 7, 0,245, 8, 7, 0,246, 8, 7, 0,247, 8, - 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,248, 8, 4, 0, 19, 0, 4, 0,249, 8, 0, 0,234, 3,247, 0,250, 8, -160, 0, 7, 0, 27, 0, 31, 0, 12, 0,251, 8, 12, 0,230, 8, 12, 0,252, 8, 12, 0,100, 0, 4, 0, 19, 0, 4, 0,253, 8, -217, 0, 4, 0, 27, 0,155, 8, 12, 0,230, 8, 4, 0,254, 8, 4, 0, 19, 0, 79, 1, 17, 0,212, 0, 0, 0,212, 0, 1, 0, - 12, 0,244, 5, 4, 0,245, 5, 7, 0,246, 5, 2, 0,247, 5,213, 0, 44, 6,160, 0, 91, 3,217, 0,255, 8, 0, 0, 70, 1, - 0, 0, 47, 6, 2, 0, 19, 0, 2, 0, 0, 9, 2, 0, 97, 6, 2, 0, 96, 6, 2, 0, 1, 9, 7, 0, 2, 9, 80, 1, 8, 0, - 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 3, 9, 36, 0, 80, 0, 12, 0, 95, 3, 4, 0, 19, 0, 0, 0, 20, 0, 4, 0, 4, 9, - 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, 0, 0, 5, 9, 82, 1, 14, 0, 82, 1, 0, 0, - 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 6, 9, 0, 0, 7, 9, 0, 0, 5, 9, 7, 0, 8, 9, - 7, 0, 9, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 10, 9, 7, 0, 11, 9, 83, 1, 9, 0, 83, 1, 0, 0, 83, 1, 1, 0, - 32, 0, 12, 9, 0, 0,251, 2, 7, 0, 13, 9, 2, 0, 14, 9, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 15, 9, 84, 1, 7, 0, - 42, 0,103, 6, 26, 0,207, 8, 4, 0, 19, 0, 4, 0, 16, 9, 12, 0, 17, 9, 32, 0, 12, 9, 0, 0,251, 2, 85, 1, 15, 0, - 32, 0, 12, 9, 2, 0, 18, 9, 2, 0, 19, 0, 2, 0, 19, 9, 2, 0, 20, 9, 0, 0,251, 2, 32, 0, 21, 9, 0, 0, 22, 9, - 7, 0, 23, 9, 7, 0, 37, 2, 7, 0, 24, 9, 7, 0, 25, 9, 2, 0, 17, 0, 2, 0, 70, 1, 7, 0, 77, 1, 86, 1, 6, 0, - 32, 0, 12, 9, 4, 0, 26, 9, 4, 0, 27, 9, 4, 0, 90, 0, 4, 0, 37, 0, 0, 0,251, 2, 87, 1, 4, 0, 32, 0, 12, 9, - 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, - 89, 1, 10, 0, 32, 0, 12, 9, 4, 0, 28, 9, 7, 0,125, 0, 4, 0, 19, 0, 2, 0, 99, 6, 2, 0, 29, 9, 2, 0, 43, 0, - 2, 0, 70, 0, 7, 0, 30, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 26, 9, 0, 0,251, 2, - 91, 1, 10, 0, 32, 0, 12, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, 4, 0, 89, 0, 7, 0,126, 8, 7, 0,127, 8, - 4, 0, 37, 0,160, 0,100, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 12, 9, 4, 0,116, 3, 4, 0, 31, 9, 0, 0,251, 2, - 93, 1, 5, 0, 32, 0, 12, 9, 7, 0,125, 0, 4, 0, 32, 9, 4, 0,116, 3, 4, 0,117, 3, 94, 1, 6, 0, 32, 0, 12, 9, - 4, 0, 33, 9, 4, 0, 34, 9, 7, 0, 35, 9, 7, 0, 36, 9, 0, 0,251, 2, 95, 1, 16, 0, 32, 0, 12, 9, 32, 0,213, 8, - 4, 0, 17, 0, 7, 0, 37, 9, 7, 0, 38, 9, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, 7, 0, 43, 9, - 7, 0, 44, 9, 7, 0, 45, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 96, 1, 3, 0, 32, 0, 12, 9, - 4, 0, 19, 0, 4, 0, 29, 2, 97, 1, 5, 0, 32, 0, 12, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 46, 9, 0, 0,251, 2, - 98, 1, 10, 0, 32, 0, 12, 9, 0, 0,251, 2, 2, 0, 47, 9, 2, 0, 48, 9, 0, 0, 49, 9, 0, 0, 50, 9, 7, 0, 51, 9, - 7, 0, 52, 9, 7, 0, 53, 9, 7, 0, 54, 9, 99, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, - 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, - 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, - 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 55, 9, 7, 0, 56, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 7, 0, 32, 0, 12, 9, - 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,103, 1, 5, 0, 32, 0, 51, 3, - 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 57, 9,104, 1, 10, 0,104, 1, 0, 0,104, 1, 1, 0, 2, 0, 17, 0, - 2, 0, 19, 0, 0, 0, 58, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,248, 8, 2, 0, 59, 9, 32, 0, 45, 0,105, 1, 22, 0, -105, 1, 0, 0,105, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 60, 9, 2, 0, 61, 9, 36, 0, 80, 0,160, 0,100, 8, - 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0,237, 2, - 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 0, 0, 68, 9, 0, 0, 69, 9, 12, 0, 97, 3,106, 1, 8, 0, 7, 0, 44, 2, - 7, 0,126, 8, 7, 0,127, 8, 9, 0, 2, 0, 2, 0, 70, 9, 2, 0, 71, 9, 2, 0, 72, 9, 2, 0, 73, 9,107, 1, 18, 0, -107, 1, 0, 0,107, 1, 1, 0,107, 1, 74, 9, 0, 0, 20, 0,106, 1, 75, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 76, 9, - 2, 0, 77, 9, 2, 0, 78, 9, 2, 0, 79, 9, 4, 0, 43, 0, 7, 0, 80, 9, 7, 0, 81, 9, 4, 0, 82, 9, 4, 0, 83, 9, -107, 1, 84, 9,108, 1, 85, 9,109, 1, 34, 0,109, 1, 0, 0,109, 1, 1, 0,109, 1, 86, 9, 0, 0, 20, 0, 0, 0, 87, 9, - 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,209, 7, 2, 0,242, 7, 2, 0, 88, 9, 2, 0,133, 0, 2, 0, 77, 9, 2, 0,199, 7, - 12, 0, 95, 8, 12, 0, 89, 9, 27, 0,133, 6, 9, 0, 90, 9, 7, 0, 80, 9, 7, 0, 81, 9, 7, 0, 75, 2, 7, 0, 91, 9, - 2, 0, 92, 9, 2, 0, 93, 9, 7, 0, 94, 9, 7, 0, 95, 9, 2, 0, 96, 9, 2, 0, 97, 9, 9, 0, 98, 9, 24, 0, 99, 9, - 24, 0,100, 9, 24, 0,101, 9,110, 1,150, 0,111, 1,102, 9,112, 1,103, 9,108, 1, 8, 0,108, 1, 0, 0,108, 1, 1, 0, -109, 1,104, 9,109, 1,105, 9,107, 1,106, 9,107, 1, 84, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, 27, 0, 31, 0, - 39, 0, 75, 0, 12, 0,107, 9, 12, 0,108, 9,106, 1,109, 9, 12, 0,110, 9, 4, 0, 17, 0, 4, 0,111, 9, 4, 0,112, 9, - 4, 0,113, 9, 12, 0,114, 9,112, 1,115, 9,107, 1,116, 9,107, 1,117, 9, 9, 0,118, 9, 9, 0,119, 9, 4, 0,120, 9, - 9, 0,121, 9, 9, 0,122, 9, 9, 0,123, 9,113, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,199, 7, 0, 0,124, 9, - 0, 0,125, 9, 2, 0, 37, 0,114, 1, 16, 0, 2, 0,153, 7, 2, 0,154, 7, 2, 0,126, 9, 2, 0,150, 8, 2, 0,127, 9, - 2, 0, 68, 0, 7, 0,236, 2, 7, 0,128, 9, 7, 0,129, 9, 2, 0, 92, 1, 0, 0,130, 9, 0, 0,105, 5, 2, 0,131, 9, - 2, 0, 37, 0, 4, 0,132, 9, 4, 0,133, 9,115, 1, 9, 0, 7, 0,134, 9, 7, 0,135, 9, 7, 0,169, 8, 7, 0,109, 0, - 7, 0,136, 9, 7, 0, 60, 6, 2, 0,137, 9, 0, 0,138, 9, 0, 0, 37, 0,116, 1, 4, 0, 7, 0,139, 9, 7, 0,140, 9, - 2, 0,137, 9, 2, 0, 37, 0,117, 1, 3, 0, 7, 0,141, 9, 7, 0,142, 9, 7, 0, 15, 0,118, 1, 7, 0, 0, 0, 6, 2, - 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,119, 1, 7, 0, 7, 0,143, 9, - 7, 0,144, 9, 7, 0,145, 9, 7, 0, 86, 2, 7, 0,146, 9, 7, 0,147, 9, 7, 0,148, 9,120, 1, 4, 0, 2, 0,149, 9, - 2, 0,150, 9, 2, 0,151, 9, 2, 0,152, 9,121, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,122, 1, 2, 0, 0, 0,166, 0, - 0, 0,153, 9,123, 1, 1, 0, 0, 0, 20, 0,124, 1, 10, 0, 0, 0,154, 9, 0, 0,155, 9, 0, 0, 53, 6, 0, 0,156, 9, - 2, 0,126, 9, 2, 0,157, 9, 7, 0,158, 9, 7, 0,159, 9, 7, 0,160, 9, 7, 0, 66, 9,125, 1, 2, 0, 9, 0,161, 9, - 9, 0,162, 9,126, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,137, 9, 0, 0,109, 0, 0, 0,163, 9, 0, 0,106, 0, - 0, 0, 71, 2, 7, 0,164, 9, 7, 0,165, 9, 7, 0,166, 9, 7, 0,167, 9,127, 1, 8, 0, 7, 0, 60, 8, 7, 0,125, 0, - 7, 0,105, 5, 7, 0,158, 2, 7, 0,168, 9, 7, 0,236, 0, 7, 0,169, 9, 4, 0, 17, 0,128, 1, 4, 0, 2, 0,170, 9, - 2, 0,171, 9, 2, 0,172, 9, 2, 0, 37, 0,129, 1, 1, 0, 0, 0, 20, 0,130, 1, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, - 2, 0, 19, 0, 2, 0,173, 9,131, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,174, 9, 7, 0,175, 9, - 7, 0,176, 9, 7, 0,177, 9,130, 1,178, 9,130, 1,179, 9,130, 1,180, 9, 64, 0, 9, 0, 4, 0, 19, 0, 4, 0, 64, 0, - 24, 0,181, 9, 24, 0,182, 9,131, 1,183, 9, 7, 0,184, 9, 7, 0,185, 9, 7, 0,186, 9, 7, 0,187, 9,132, 1, 4, 0, - 47, 0,230, 2, 7, 0,188, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,132, 1,189, 9, 64, 0,178, 9, - 51, 0,135, 1, 2, 0, 19, 0, 2, 0,213, 5, 4, 0,106, 0, 7, 0,190, 9, 7, 0, 83, 2, 4, 0,191, 9, 7, 0,192, 9, - 7, 0,193, 9, 7, 0,194, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,195, 9, 0, 0,191, 6,133, 1, 10, 0, 4, 0, 17, 0, - 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,196, 9, 4, 0,197, 9, 4, 0,198, 9, 0, 0, 92, 0, 0, 0, 20, 0, - 9, 0, 2, 0, 92, 0, 6, 0,133, 1,199, 9, 4, 0,200, 9, 4, 0,201, 9, 4, 0,202, 9, 4, 0, 37, 0, 9, 0,203, 9, -134, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,135, 1, 5, 0, 7, 0,153, 2, - 7, 0,204, 9, 7, 0,205, 9, 7, 0,206, 9, 7, 0,220, 2,136, 1, 5, 0, 32, 0,207, 9,137, 1, 22, 0, 7, 0,186, 5, - 7, 0,208, 9, 7, 0, 57, 0,138, 1, 7, 0, 4, 0,209, 9, 4, 0,210, 9, 4, 0,211, 9, 7, 0,212, 9, 7, 0,213, 9, - 7, 0,214, 9, 7, 0, 57, 0,139, 1, 8, 0,139, 1, 0, 0,139, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, 2, 0, 19, 0, - 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 68, 8,140, 1, 6, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, 2, 0,205, 2, - 2, 0, 19, 0, 2, 0,215, 9,141, 1, 18, 0,135, 1,172, 3,135, 1,216, 9,134, 1,217, 9,135, 1, 52, 8,136, 1,218, 9, - 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,219, 9, 4, 0,209, 9, 4, 0,220, 9, 7, 0,213, 9, 7, 0,214, 9, - 7, 0,106, 0, 2, 0, 19, 0, 2, 0,221, 9, 2, 0,222, 9, 2, 0,223, 9,142, 1,110, 0, 27, 0, 31, 0, 39, 0, 75, 0, -143, 1,224, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 47, 9, 2, 0,225, 9, 2, 0,226, 9, 2, 0,138, 3, - 2, 0,227, 9, 2, 0,228, 9, 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, 2, 0,223, 4, - 2, 0, 98, 5, 2, 0,234, 9, 2, 0,235, 9, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0, 26, 2, 2, 0, 45, 8, - 2, 0, 21, 8, 2, 0,239, 9, 2, 0,240, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,241, 9, 2, 0,242, 9, 2, 0,243, 9, - 2, 0,244, 9, 7, 0,245, 9, 7, 0,246, 9, 7, 0,247, 9, 2, 0,248, 9, 2, 0,249, 9, 7, 0,250, 9, 7, 0,251, 9, - 7, 0,252, 9, 7, 0, 27, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 33, 8, 7, 0,253, 9, 7, 0,254, 9, 7, 0,255, 9, - 4, 0, 28, 8, 4, 0, 26, 8, 4, 0, 0, 10, 7, 0, 29, 8, 7, 0, 30, 8, 7, 0, 31, 8, 7, 0, 1, 10, 7, 0, 2, 10, - 7, 0, 3, 10, 7, 0, 4, 10, 7, 0, 5, 10, 7, 0, 57, 0, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 8, 10, 7, 0, 9, 10, - 7, 0,129, 3, 7, 0,106, 0, 7, 0, 10, 10, 7, 0, 11, 10, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, - 7, 0, 16, 10, 4, 0, 17, 10, 4, 0, 18, 10, 7, 0, 19, 10, 7, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, 7, 0, 23, 10, - 7, 0,210, 0, 7, 0, 24, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 25, 10, 7, 0, 26, 10, 7, 0, 27, 10, - 7, 0, 28, 10, 7, 0, 29, 10, 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, 7, 0, 35, 10, - 7, 0, 36, 10, 7, 0, 37, 10, 4, 0, 38, 10, 4, 0, 39, 10, 68, 0,161, 3, 12, 0, 40, 10, 68, 0, 41, 10, 32, 0, 42, 10, - 32, 0, 43, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 44, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,142, 1, 45, 10, -141, 1, 46, 10,138, 1,213, 8,171, 0,239, 3, 9, 0,240, 3,144, 1, 47, 10,144, 1, 48, 10, 12, 0, 49, 10, 12, 0, 50, 10, -134, 0, 51, 10,142, 0, 52, 10,142, 0, 53, 10, 32, 0, 54, 10, 32, 0, 55, 10, 32, 0, 38, 0, 12, 0, 17, 9, 0, 0, 20, 0, - 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 56, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 28, 8, 4, 0, 57, 10, - 4, 0, 58, 10, 4, 0, 59, 10, 2, 0,247, 0, 2, 0, 60, 10, 2, 0, 61, 10, 2, 0, 62, 10, 0, 0, 63, 10, 2, 0, 64, 10, - 2, 0, 65, 10, 2, 0, 66, 10, 9, 0, 67, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 68, 10,145, 1, 69, 10,146, 1, 70, 10, - 7, 0, 71, 10,136, 0, 35, 0,147, 1,170, 8, 7, 0, 26, 4, 7, 0, 72, 10, 7, 0, 73, 10, 7, 0,120, 4, 7, 0, 74, 10, - 7, 0,139, 3, 7, 0,129, 3, 7, 0, 75, 10, 7, 0, 85, 2, 7, 0, 76, 10, 7, 0, 77, 10, 7, 0, 78, 10, 7, 0, 79, 10, - 7, 0, 80, 10, 7, 0, 81, 10, 7, 0, 27, 4, 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 84, 10, 7, 0, 28, 4, 7, 0, 24, 4, - 7, 0, 25, 4, 7, 0, 85, 10, 4, 0, 86, 10, 4, 0, 90, 0, 4, 0, 87, 10, 4, 0, 88, 10, 2, 0, 89, 10, 2, 0, 90, 10, - 2, 0, 91, 10, 2, 0, 92, 10, 2, 0, 93, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,147, 1, 94, 10, 7, 0, 95, 10, - 7, 0, 96, 10, 7, 0,243, 1, 7, 0, 97, 10, 4, 0, 90, 0, 2, 0, 98, 10, 2, 0, 99, 10,148, 1, 4, 0, 7, 0, 5, 0, - 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,100, 10,149, 1, 6, 0,149, 1, 0, 0,149, 1, 1, 0,148, 1,204, 8, 4, 0,253, 0, - 2, 0,101, 10, 2, 0, 19, 0,150, 1, 5, 0,150, 1, 0, 0,150, 1, 1, 0, 12, 0,102, 10, 4, 0,103, 10, 4, 0, 19, 0, -151, 1, 9, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,124, 0,150, 1,104, 10, 4, 0, 19, 0, 2, 0,101, 10, 2, 0,105, 10, - 7, 0, 91, 0, 0, 0,106, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,107, 10, 2, 0,108, 10, - 9, 0,109, 10,152, 1, 7, 0,152, 1, 0, 0,152, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0,110, 10, - 0, 0,111, 10,153, 1, 5, 0, 12, 0,112, 10, 4, 0,113, 10, 4, 0,114, 10, 4, 0, 19, 0, 4, 0, 37, 0,154, 1, 18, 0, - 27, 0, 31, 0,155, 1,115, 10,155, 1,116, 10, 12, 0,117, 10, 4, 0,118, 10, 2, 0,119, 10, 2, 0, 37, 0, 12, 0,120, 10, - 12, 0,121, 10,153, 1,122, 10, 12, 0,123, 10, 12, 0,124, 10, 12, 0,125, 10,156, 1,126, 10, 4, 0,127, 10, 4, 0, 70, 0, - 12, 0,128, 10,210, 0,129, 10,155, 1, 30, 0,155, 1, 0, 0,155, 1, 1, 0, 9, 0,130, 10, 4, 0,132, 7, 4, 0, 37, 0, -215, 0, 43, 6,215, 0,131, 10, 0, 0,132, 10, 2, 0,133, 10, 2, 0,134, 10, 2, 0,153, 7, 2, 0,154, 7, 2, 0,135, 10, - 2, 0,136, 10, 2, 0,178, 3, 2, 0,159, 6, 2, 0,137, 10, 2, 0,138, 10, 4, 0,239, 1,157, 1,139, 10,158, 1,140, 10, -159, 1,141, 10, 4, 0,142, 10, 4, 0,143, 10, 9, 0,144, 10, 12, 0,121, 10, 12, 0,173, 7, 12, 0,145, 10, 12, 0,146, 10, - 12, 0,147, 10,160, 1, 16, 0,160, 1, 0, 0,160, 1, 1, 0, 0, 0,148, 10, 26, 0, 30, 0, 2, 0,149, 10, 2, 0, 17, 0, - 2, 0, 15, 0, 2, 0,150, 10, 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 19, 0, 2, 0,155, 10, - 2, 0, 71, 2,161, 1,156, 10,162, 1, 10, 0,162, 1, 0, 0,162, 1, 1, 0, 12, 0,157, 10, 0, 0,148, 10, 2, 0,158, 10, - 2, 0,159, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,160, 10, 9, 0,161, 10,156, 1, 7, 0,156, 1, 0, 0,156, 1, 1, 0, - 0, 0,148, 10, 0, 0,162, 10, 12, 0, 90, 7, 4, 0,163, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0,223, 0, 1, 0, - 0, 0,148, 10, 26, 0, 30, 0,163, 1,147, 7, 9, 0,164, 10,161, 1,156, 10,153, 1,165, 10, 12, 0,166, 10,223, 0,167, 10, - 2, 0, 19, 0, 2, 0,137, 1,157, 1, 23, 0,157, 1, 0, 0,157, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, - 2, 0, 6, 0, 2, 0,168, 10, 2, 0,169, 10, 2, 0,170, 10, 2, 0,171, 10, 0, 0,172, 10, 0, 0, 37, 0, 2, 0,150, 10, - 2, 0,151, 10, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0, 43, 0, 0, 0,173, 10, 2, 0,174, 10, 2, 0,175, 10, - 4, 0, 70, 0, 9, 0,164, 10,164, 1, 8, 0,164, 1, 0, 0,164, 1, 1, 0, 9, 0, 2, 0, 9, 0,176, 10, 0, 0,234, 3, - 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,177, 10,165, 1, 5, 0, 7, 0,178, 10, 4, 0,179, 10, 4, 0,180, 10, 4, 0, 70, 1, - 4, 0, 19, 0,166, 1, 6, 0, 7, 0,181, 10, 7, 0,182, 10, 7, 0,183, 10, 7, 0,184, 10, 4, 0, 17, 0, 4, 0, 19, 0, -167, 1, 5, 0, 7, 0,126, 8, 7, 0,127, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,168, 1, 5, 0,167, 1, 2, 0, - 4, 0, 54, 0, 7, 0,185, 10, 7, 0,126, 8, 7, 0,127, 8,169, 1, 4, 0, 2, 0,186, 10, 2, 0,187, 10, 2, 0,188, 10, - 2, 0,189, 10,170, 1, 2, 0, 42, 0,130, 6, 26, 0,207, 8,171, 1, 3, 0, 24, 0,190, 10, 4, 0, 19, 0, 4, 0, 37, 0, -172, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,191, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,192, 10,173, 1, 9, 0, -173, 1, 0, 0,173, 1, 1, 0, 27, 0,133, 6, 0, 0,193, 10, 4, 0,194, 10, 4, 0,195, 10, 4, 0, 90, 0, 4, 0, 37, 0, - 0, 0,234, 3,174, 1, 6, 0, 12, 0, 17, 9, 0, 0,196, 10, 7, 0, 61, 0, 7, 0,177, 10, 4, 0, 17, 0, 4, 0, 19, 0, -175, 1, 3, 0, 7, 0,197, 10, 4, 0, 19, 0, 4, 0, 37, 0,176, 1, 15, 0,176, 1, 0, 0,176, 1, 1, 0, 78, 1, 3, 9, -174, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,175, 1,198, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, 2, 0, 16, 1, - 4, 0,194, 10, 0, 0,193, 10, 4, 0,199, 10, 7, 0,200, 10,177, 1, 2, 0, 0, 0,201, 10, 0, 0,202, 10,178, 1, 4, 0, -178, 1, 0, 0,178, 1, 1, 0,160, 0, 51, 3, 12, 0,203, 10,179, 1, 24, 0,179, 1, 0, 0,179, 1, 1, 0, 12, 0,204, 10, -160, 0,100, 8,178, 1,205, 10, 12, 0,206, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,177, 10, 7, 0,207, 10, 7, 0, 88, 0, - 7, 0, 89, 0, 7, 0, 62, 9, 7, 0, 63, 9, 7, 0,237, 2, 7, 0, 66, 9, 7, 0,102, 8, 7, 0, 67, 9, 2, 0,208, 10, - 2, 0,209, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,180, 1, 6, 0,180, 1, 0, 0,180, 1, 1, 0, - 12, 0,204, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,181, 1, 10, 0,181, 1, 0, 0,181, 1, 1, 0, 27, 0,133, 6, - 0, 0,210, 10, 4, 0,195, 10, 4, 0,211, 10, 0, 0,193, 10, 4, 0,194, 10, 2, 0, 19, 0, 2, 0,212, 10,182, 1, 7, 0, -182, 1, 0, 0,182, 1, 1, 0, 12, 0,213, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,214, 10, 4, 0,215, 10,183, 1, 5, 0, -183, 1, 0, 0,183, 1, 1, 0, 0, 0,193, 10, 4, 0,194, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3,160, 0,216, 10, -178, 1,205, 10, 12, 0,217, 10,179, 1,218, 10, 12, 0,219, 10, 12, 0,220, 10, 4, 0, 19, 0, 4, 0,247, 0, 2, 0,221, 10, - 2, 0,222, 10, 7, 0,223, 10,184, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,185, 1, 5, 0,185, 1, 0, 0,185, 1, 1, 0, - 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,186, 1, 6, 0,185, 1,224, 10, 32, 0, 45, 0, 4, 0,225, 10, 7, 0,226, 10, - 4, 0,227, 10, 4, 0,248, 8,187, 1, 3, 0,185, 1,224, 10, 4, 0,225, 10, 7, 0,228, 10,188, 1, 8, 0,185, 1,224, 10, - 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,229, 10, 7, 0, 18, 3, 7, 0,169, 8, 4, 0,225, 10, 4, 0,230, 10,189, 1, 5, 0, -185, 1,224, 10, 7, 0,231, 10, 7, 0,242, 7, 7, 0,243, 2, 7, 0, 57, 0,190, 1, 3, 0,185, 1,224, 10, 7, 0,169, 8, - 7, 0,232, 10,137, 1, 4, 0, 7, 0,233, 10, 7, 0, 12, 10, 2, 0,234, 10, 2, 0, 70, 1,191, 1, 14, 0,191, 1, 0, 0, -191, 1, 1, 0, 12, 0,235, 10, 12, 0,236, 10, 12, 0,237, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, 4, 0,238, 10, - 7, 0,239, 10, 4, 0,227, 10, 4, 0,248, 8, 7, 0,243, 3, 7, 0,245, 2,143, 1, 23, 0, 4, 0,225, 10, 4, 0,240, 10, - 7, 0,241, 10, 7, 0, 57, 0, 7, 0,242, 10, 7, 0,241, 2, 7, 0,233, 10, 7, 0,243, 10, 7, 0,222, 2, 7, 0,244, 10, - 7, 0,117, 4, 7, 0,245, 10, 7, 0,246, 10, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, 7, 0,251, 10, - 7, 0,252, 10, 7, 0,253, 10, 7, 0,254, 10, 7, 0,255, 10, 12, 0, 0, 11,122, 0, 34, 0,121, 0, 1, 11,192, 1, 2, 11, - 68, 0, 3, 11, 68, 0, 41, 10, 68, 0, 4, 11,193, 1, 5, 11, 48, 0,165, 0, 48, 0, 6, 11, 48, 0, 7, 11, 7, 0, 8, 11, - 7, 0, 9, 11, 7, 0, 10, 11, 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 4, 9, 7, 0, 13, 11, 7, 0,171, 1, 7, 0, 14, 11, - 4, 0, 15, 11, 4, 0, 16, 11, 4, 0, 17, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 18, 11, 2, 0, 19, 11, 2, 0, 20, 11, - 4, 0, 21, 11, 7, 0,222, 2, 4, 0, 22, 11, 7, 0, 23, 11, 4, 0, 24, 11,138, 0, 25, 11, 12, 0, 26, 11,169, 0, 57, 4, -123, 0, 11, 0,121, 0, 1, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 4, 9, 7, 0, 27, 11, 7, 0, 28, 11, 2, 0, 29, 11, - 2, 0, 30, 11, 2, 0, 31, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 1, 11,140, 0, 15, 3,142, 0, 17, 3, - 7, 0,204, 8, 7, 0, 32, 11, 7, 0, 33, 11, 7, 0, 67, 1, 7, 0, 34, 11, 4, 0, 35, 11, 4, 0, 13, 3, 2, 0, 17, 0, +246, 0, 50, 7,246, 0, 51, 7,246, 0, 52, 7,246, 0, 53, 7,246, 0, 54, 7,246, 0, 55, 7,246, 0, 56, 7,246, 0, 57, 7, +247, 0, 58, 7, 4, 0, 59, 7, 4, 0, 37, 0,249, 0, 5, 0, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,139, 2, 7, 0, 60, 7, + 7, 0, 44, 2,250, 0, 73, 0, 4, 0, 19, 0, 4, 0, 61, 7, 4, 0, 62, 7, 0, 0, 63, 7, 0, 0, 64, 7, 0, 0, 65, 7, + 0, 0, 66, 7, 0, 0, 67, 7, 0, 0, 68, 7, 0, 0, 69, 7, 0, 0, 70, 7, 0, 0, 71, 7, 2, 0, 72, 7, 2, 0, 37, 0, + 4, 0, 73, 7, 4, 0, 74, 7, 4, 0, 75, 7, 4, 0, 76, 7, 2, 0, 77, 7, 2, 0, 78, 7, 4, 0, 79, 7, 4, 0, 80, 7, + 4, 0, 81, 7, 4, 0, 82, 7, 4, 0, 83, 7, 4, 0,163, 6, 4, 0, 84, 7, 2, 0, 85, 7, 2, 0, 86, 7, 2, 0, 87, 7, + 2, 0, 88, 7, 12, 0, 89, 7, 12, 0, 90, 7, 12, 0, 91, 7, 12, 0, 92, 7, 0, 0, 93, 7, 2, 0, 94, 7, 2, 0, 95, 7, + 2, 0, 96, 7, 2, 0, 97, 7, 2, 0, 98, 7, 2, 0, 99, 7, 2, 0,100, 7, 2, 0,101, 7,249, 0,102, 7, 2, 0,103, 7, + 2, 0,104, 7, 2, 0,105, 7, 2, 0,106, 7, 2, 0,107, 7, 2, 0,108, 7, 2, 0,109, 7, 2, 0,110, 7, 4, 0,111, 7, + 4, 0,112, 7, 2, 0,113, 7, 2, 0,114, 7, 2, 0,115, 7, 2, 0,116, 7, 2, 0,117, 7, 2, 0,118, 7, 2, 0,119, 7, + 2, 0,120, 7, 2, 0,121, 7, 2, 0,122, 7, 2, 0,123, 7, 2, 0,124, 7, 0, 0,125, 7, 0, 0,126, 7, 7, 0,127, 7, + 2, 0,140, 5, 2, 0,141, 5, 55, 0,128, 7,215, 0, 21, 0, 27, 0, 31, 0, 12, 0,129, 7, 12, 0,130, 7, 12, 0,131, 7, + 12, 0,246, 5, 46, 0,134, 0, 46, 0,132, 7, 2, 0,133, 7, 2, 0,134, 7, 2, 0,135, 7, 2, 0,136, 7, 2, 0,137, 7, + 2, 0,138, 7, 2, 0,139, 7, 2, 0, 37, 0, 2, 0,140, 7, 2, 0,141, 7, 4, 0, 70, 0,210, 0,142, 7, 9, 0,143, 7, + 2, 0,144, 7,251, 0, 5, 0,251, 0, 0, 0,251, 0, 1, 0,251, 0,145, 7, 13, 0,146, 7, 4, 0, 19, 0,252, 0, 7, 0, +252, 0, 0, 0,252, 0, 1, 0,251, 0,147, 7,251, 0,148, 7, 2, 0,249, 4, 2, 0, 19, 0, 4, 0, 37, 0,253, 0, 25, 0, +253, 0, 0, 0,253, 0, 1, 0,254, 0,149, 7,255, 0, 82, 6, 0, 0,150, 7, 0, 0,151, 7, 0, 0,152, 7, 2, 0,153, 7, + 2, 0,154, 7, 2, 0,155, 7, 2, 0,156, 7, 2, 0,157, 7, 2, 0, 37, 0, 2, 0, 19, 0, 2, 0,158, 7, 2, 0,159, 7, + 2, 0,160, 7, 4, 0,161, 7,253, 0,162, 7, 9, 0,163, 7, 4, 0,164, 7, 4, 0,165, 7, 4, 0,166, 7, 4, 0,167, 7, + 0, 0,168, 7, 0, 1, 22, 0, 0, 1, 0, 0, 0, 1, 1, 0,251, 0,147, 7,251, 0,148, 7,251, 0,169, 7,251, 0,170, 7, +215, 0,171, 7, 23, 0, 52, 0, 0, 0,247, 5, 0, 0,172, 7, 2, 0, 37, 6, 2, 0, 38, 6, 2, 0,173, 7, 2, 0, 37, 0, + 2, 0,136, 7, 2, 0,161, 6, 2, 0, 19, 0, 1, 1,149, 7, 12, 0,174, 7, 12, 0,246, 5, 12, 0,175, 7, 12, 0,176, 7, + 2, 1, 21, 0, 2, 1, 0, 0, 2, 1, 1, 0,213, 0, 46, 6, 23, 0,177, 7, 23, 0,178, 7, 2, 0, 37, 6, 2, 0, 38, 6, + 2, 0,179, 7, 2, 0,180, 7, 2, 0,181, 7, 2, 0, 19, 0, 7, 0, 86, 2, 2, 0,135, 7, 2, 0,139, 7, 4, 0, 43, 0, + 3, 1,149, 7, 12, 0,182, 7, 12, 0,183, 7, 12, 0,175, 7, 0, 0,184, 7, 9, 0,185, 7, 4, 1, 12, 0, 0, 0,186, 7, + 2, 0,187, 7, 2, 0,188, 7, 2, 0,189, 7, 2, 0,190, 7, 2, 0,236, 4, 2, 0,231, 4,215, 0,191, 7, 46, 0,192, 7, + 4, 0,193, 7, 4, 0,194, 7, 0, 0, 35, 0, 5, 1, 1, 0, 0, 0,195, 7, 6, 1, 8, 0, 57, 0,196, 7, 57, 0,197, 7, + 6, 1,198, 7, 6, 1,199, 7, 6, 1,200, 7, 2, 0,129, 0, 2, 0, 19, 0, 4, 0,201, 7, 7, 1, 4, 0, 4, 0,106, 6, + 4, 0,202, 7, 4, 0,111, 6, 4, 0,203, 7, 8, 1, 2, 0, 4, 0,204, 7, 4, 0,205, 7, 9, 1, 7, 0, 7, 0,206, 7, + 7, 0,207, 7, 7, 0,208, 7, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0,115, 4, 7, 0,209, 7, 10, 1, 6, 0, 0, 0,210, 7, + 0, 0, 65, 6, 49, 0,137, 0, 2, 0,106, 0, 2, 0,235, 4, 4, 0, 37, 0, 11, 1, 21, 0, 11, 1, 0, 0, 11, 1, 1, 0, + 4, 0, 57, 0, 4, 0, 23, 0, 4, 0, 28, 0, 4, 0,211, 7, 4, 0,212, 7, 4, 0,213, 7, 5, 1,214, 7, 0, 0,210, 7, + 4, 0,215, 7, 4, 0,216, 7, 10, 1, 88, 3, 7, 1,217, 7, 8, 1,218, 7, 9, 1,219, 7, 6, 1,220, 7, 6, 1,221, 7, + 6, 1,222, 7, 57, 0,223, 7, 57, 0,224, 7, 12, 1, 12, 0, 0, 0, 6, 2, 9, 0,223, 0, 0, 0,224, 0, 4, 0,227, 0, + 4, 0,235, 0, 9, 0,228, 0, 7, 0,230, 0, 7, 0,231, 0, 9, 0,225, 7, 9, 0,226, 7, 9, 0,232, 0, 9, 0,234, 0, + 13, 1, 43, 0, 13, 1, 0, 0, 13, 1, 1, 0, 9, 0,227, 7, 9, 0, 26, 0, 0, 0, 27, 0, 4, 0, 19, 0, 4, 0, 17, 0, + 4, 0, 23, 0, 4, 0, 88, 0, 4, 0,228, 7, 4, 0,229, 7, 4, 0,212, 7, 4, 0,213, 7, 4, 0,230, 7, 4, 0,246, 0, + 4, 0,231, 7, 4, 0,232, 7, 7, 0,106, 5, 7, 0,233, 7, 4, 0,126, 0, 4, 0,234, 7, 11, 1,235, 7, 36, 0, 80, 0, + 46, 0,134, 0, 49, 0,137, 0, 7, 0,236, 7, 7, 0,237, 7, 12, 1, 60, 1, 13, 1,238, 7, 13, 1,239, 7, 13, 1,240, 7, + 12, 0,241, 7, 14, 1,242, 7, 15, 1,243, 7, 7, 0,244, 7, 7, 0,245, 7, 4, 0,246, 7, 7, 0,247, 7, 9, 0,248, 7, + 4, 0,249, 7, 4, 0,250, 7, 4, 0,251, 7, 7, 0,252, 7, 16, 1, 4, 0, 16, 1, 0, 0, 16, 1, 1, 0, 12, 0,253, 7, + 13, 1,254, 7,201, 0, 6, 0, 12, 0,255, 7, 12, 0,241, 7, 12, 0, 0, 8, 13, 1, 1, 8, 0, 0, 2, 8, 0, 0, 3, 8, + 17, 1, 4, 0, 7, 0, 4, 8, 7, 0,109, 0, 2, 0, 5, 8, 2, 0, 6, 8, 18, 1, 6, 0, 7, 0, 7, 8, 7, 0, 8, 8, + 7, 0, 9, 8, 7, 0, 10, 8, 4, 0, 11, 8, 4, 0, 12, 8, 19, 1, 12, 0, 7, 0, 13, 8, 7, 0, 14, 8, 7, 0, 15, 8, + 7, 0, 16, 8, 7, 0, 17, 8, 7, 0, 18, 8, 7, 0, 19, 8, 7, 0, 20, 8, 7, 0, 21, 8, 7, 0, 22, 8, 4, 0,234, 2, + 4, 0, 23, 8, 20, 1, 2, 0, 7, 0, 75, 5, 7, 0, 37, 0, 21, 1, 5, 0, 7, 0, 24, 8, 7, 0, 25, 8, 4, 0, 90, 0, + 4, 0,192, 2, 4, 0, 26, 8, 22, 1, 6, 0, 22, 1, 0, 0, 22, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 27, 8, + 2, 0, 57, 0, 23, 1, 8, 0, 23, 1, 0, 0, 23, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 27, 8, 2, 0, 57, 0, + 7, 0, 23, 0, 7, 0,126, 0, 24, 1, 45, 0, 24, 1, 0, 0, 24, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 27, 8, + 2, 0,242, 0, 2, 0, 29, 4, 2, 0, 28, 8, 7, 0, 29, 8, 7, 0, 89, 0, 7, 0,247, 2, 4, 0, 30, 8, 4, 0, 82, 0, + 4, 0,194, 2, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 34, 8, 7, 0, 35, 8, 7, 0, 36, 8, 7, 0,244, 2, + 7, 0, 57, 1, 7, 0, 37, 8, 7, 0, 38, 8, 7, 0, 37, 0, 7, 0, 39, 8, 7, 0, 40, 8, 7, 0, 41, 8, 2, 0, 42, 8, + 2, 0, 43, 8, 2, 0, 44, 8, 2, 0, 45, 8, 2, 0, 46, 8, 2, 0, 47, 8, 2, 0, 48, 8, 2, 0, 49, 8, 2, 0, 29, 2, + 2, 0, 50, 8, 2, 0, 26, 2, 2, 0, 51, 8, 0, 0, 52, 8, 0, 0, 53, 8, 7, 0,240, 0, 25, 1, 54, 8, 68, 0,242, 1, + 26, 1, 16, 0, 26, 1, 0, 0, 26, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 27, 8, 2, 0,242, 0, 7, 0,239, 2, + 7, 0,240, 2, 7, 0,241, 2, 7, 0, 75, 2, 7, 0,242, 2, 7, 0,243, 2, 7, 0, 55, 8, 7, 0,244, 2, 7, 0,246, 2, + 7, 0,247, 2,227, 0, 5, 0, 2, 0, 17, 0, 2, 0,201, 7, 2, 0, 19, 0, 2, 0, 56, 8, 27, 0,135, 6,226, 0, 3, 0, + 4, 0, 69, 0, 4, 0, 57, 8,227, 0, 2, 0, 27, 1, 7, 0, 27, 1, 0, 0, 27, 1, 1, 0, 0, 0, 20, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 4, 0, 22, 0, 9, 0, 58, 8, 28, 1, 5, 0, 0, 0, 20, 0, 7, 0, 77, 1, 7, 0, 59, 8, 4, 0, 60, 8, + 4, 0, 37, 0, 29, 1, 4, 0, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 43, 0, 2, 0, 70, 0, 30, 1, 4, 0, 0, 0, 20, 0, + 67, 0, 61, 8, 7, 0, 77, 1, 7, 0, 37, 0, 31, 1, 6, 0, 2, 0, 62, 8, 2, 0, 63, 8, 2, 0, 17, 0, 2, 0, 64, 8, + 0, 0, 65, 8, 0, 0, 66, 8, 32, 1, 5, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 0, 0, 67, 8, 0, 0, 68, 8, + 33, 1, 3, 0, 4, 0, 17, 0, 4, 0, 37, 0, 0, 0, 20, 0, 34, 1, 4, 0, 2, 0, 69, 8, 2, 0, 70, 8, 2, 0, 19, 0, + 2, 0, 37, 0, 35, 1, 6, 0, 0, 0, 20, 0, 0, 0, 71, 8, 2, 0, 72, 8, 2, 0,244, 2, 2, 0, 70, 1, 2, 0, 70, 0, + 36, 1, 5, 0, 0, 0, 20, 0, 7, 0,109, 0, 7, 0,117, 4, 2, 0, 19, 0, 2, 0,206, 2, 37, 1, 3, 0, 0, 0, 20, 0, + 4, 0,194, 2, 4, 0, 69, 8, 38, 1, 7, 0, 0, 0, 20, 0, 7, 0,117, 4, 0, 0, 73, 8, 0, 0, 74, 8, 2, 0, 70, 1, + 2, 0, 43, 0, 4, 0, 75, 8, 39, 1, 4, 0, 0, 0, 76, 8, 0, 0, 77, 8, 4, 0, 17, 0, 7, 0,210, 2, 40, 1, 3, 0, + 32, 0, 78, 8, 0, 0, 79, 8, 0, 0, 80, 8, 41, 1, 18, 0, 41, 1, 0, 0, 41, 1, 1, 0, 2, 0, 17, 0, 2, 0, 81, 8, + 2, 0, 19, 0, 2, 0, 82, 8, 2, 0, 83, 8, 2, 0, 84, 8, 2, 0, 43, 0, 2, 0, 70, 0, 0, 0, 20, 0, 9, 0, 2, 0, + 42, 1, 85, 8, 32, 0, 45, 0, 2, 0, 90, 5, 2, 0,244, 7, 2, 0, 86, 8, 2, 0, 37, 0, 43, 1, 11, 0, 0, 0, 20, 0, + 0, 0, 17, 0, 0, 0, 87, 8, 2, 0, 19, 0, 2, 0,206, 2, 2, 0, 88, 8, 4, 0, 89, 8, 4, 0, 90, 8, 4, 0, 91, 8, + 4, 0, 92, 8, 4, 0, 93, 8, 44, 1, 1, 0, 0, 0, 94, 8, 45, 1, 4, 0, 42, 0,105, 6, 0, 0, 95, 8, 4, 0, 70, 1, + 4, 0, 19, 0, 42, 1, 18, 0, 42, 1, 0, 0, 42, 1, 1, 0, 42, 1, 96, 8, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 97, 8, + 2, 0, 84, 8, 2, 0, 81, 8, 2, 0, 98, 8, 2, 0, 70, 0, 2, 0,239, 1, 0, 0, 20, 0, 9, 0, 2, 0, 46, 1, 85, 8, + 41, 1, 99, 8, 2, 0, 15, 0, 2, 0,100, 8, 4, 0,101, 8, 47, 1, 3, 0, 4, 0,220, 2, 4, 0, 37, 0, 32, 0, 45, 0, + 48, 1, 12, 0,160, 0,102, 8, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 29, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,103, 8, + 2, 0,104, 8, 2, 0,105, 8, 2, 0,106, 8, 2, 0,107, 8, 7, 0,108, 8, 49, 1, 13, 0, 2, 0, 19, 0, 2, 0,109, 8, + 4, 0, 29, 8, 4, 0, 89, 0, 2, 0,110, 8, 7, 0,243, 3, 7, 0,111, 8, 14, 1,242, 7, 50, 1,112, 8, 2, 0, 17, 0, + 2, 0,113, 8, 2, 0,114, 8, 2, 0,115, 8, 51, 1, 11, 0, 4, 0,220, 2, 2, 0, 17, 0, 2, 0, 19, 0, 32, 0, 45, 0, + 81, 0,116, 8, 0, 0, 20, 0, 7, 0,117, 8, 7, 0,118, 8, 7, 0,129, 3, 2, 0,119, 8, 2, 0,120, 8, 52, 1, 5, 0, + 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 37, 0, 46, 0,134, 0, 32, 0,189, 5, 53, 1, 5, 0, 4, 0, 19, 0, 4, 0, 17, 0, + 0, 0, 20, 0, 0, 0, 67, 8, 32, 0, 45, 0, 54, 1, 13, 0, 2, 0, 19, 0, 2, 0, 17, 0, 2, 0, 81, 8, 2, 0,130, 3, + 7, 0,121, 8, 7, 0,122, 8, 7, 0, 65, 1, 7, 0, 66, 1, 7, 0,101, 3, 7, 0,104, 3, 7, 0,123, 8, 7, 0,124, 8, + 32, 0,125, 8, 55, 1, 10, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 29, 8, 4, 0, 89, 0, 0, 0, 20, 0, 0, 0,103, 8, + 2, 0, 43, 0, 2, 0, 64, 0, 2, 0,126, 8, 2, 0,127, 8, 56, 1, 8, 0, 32, 0, 45, 0, 7, 0,241, 2, 7, 0,128, 8, + 7, 0,129, 8, 7, 0,236, 2, 2, 0, 19, 0, 2, 0,206, 2, 7, 0,130, 8, 57, 1, 12, 0, 2, 0, 17, 0, 2, 0, 70, 1, + 2, 0, 19, 0, 2, 0,244, 2, 2, 0,220, 2, 2, 0,131, 8, 4, 0, 37, 0, 7, 0,132, 8, 7, 0,133, 8, 7, 0,134, 8, + 7, 0,135, 8, 0, 0,136, 8, 58, 1, 9, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 29, 8, 4, 0, 89, 0, 0, 0, 20, 0, + 2, 0,137, 1, 2, 0, 64, 0, 2, 0,126, 8, 2, 0,127, 8, 59, 1, 7, 0, 4, 0,194, 2, 4, 0,137, 8, 4, 0,138, 8, + 4, 0,139, 8, 7, 0,140, 8, 7, 0,141, 8, 0, 0, 73, 8, 60, 1, 7, 0, 0, 0,142, 8, 32, 0,143, 8, 0, 0, 79, 8, + 2, 0,144, 8, 2, 0, 43, 0, 4, 0, 70, 0, 0, 0, 80, 8, 61, 1, 6, 0, 2, 0, 19, 0, 2, 0, 17, 0, 4, 0, 29, 8, + 4, 0, 89, 0, 0, 0,145, 8, 0, 0,146, 8, 62, 1, 1, 0, 4, 0, 19, 0, 63, 1, 6, 0, 0, 0, 92, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 4, 0,147, 8, 7, 0,148, 8, 42, 0,105, 6, 64, 1, 4, 0, 0, 0, 71, 2, 2, 0, 19, 0, 4, 0, 17, 0, + 32, 0, 45, 0, 65, 1, 2, 0, 4, 0, 17, 0, 4, 0, 26, 6, 66, 1, 6, 0, 0, 0, 76, 8, 0, 0, 77, 8, 4, 0, 17, 0, + 7, 0, 37, 2, 32, 0, 51, 3, 32, 0,149, 8, 46, 1, 10, 0, 46, 1, 0, 0, 46, 1, 1, 0, 46, 1, 96, 8, 2, 0, 17, 0, + 2, 0, 19, 0, 2, 0, 81, 8, 2, 0,150, 8, 0, 0, 20, 0, 9, 0, 2, 0, 32, 0, 45, 0, 67, 1, 10, 0, 7, 0,129, 3, + 7, 0,151, 8, 7, 0,152, 8, 7, 0,153, 8, 7, 0,154, 8, 4, 0, 19, 0, 7, 0,131, 8, 7, 0,155, 8, 7, 0,156, 8, + 7, 0, 37, 0, 15, 1, 12, 0, 15, 1, 0, 0, 15, 1, 1, 0, 14, 1,157, 8, 9, 0,223, 0, 4, 0,172, 3, 4, 0,230, 3, + 4, 0,231, 3, 4, 0,158, 8, 4, 0,159, 8, 4, 0,160, 8, 7, 0,243, 3, 7, 0, 37, 0, 50, 1, 8, 0, 7, 0,161, 8, + 7, 0,162, 8, 7, 0,163, 8, 7, 0,164, 8, 7, 0,165, 8, 7, 0,166, 8, 7, 0,167, 8, 7, 0,168, 8, 14, 1, 15, 0, + 27, 0, 31, 0, 0, 0,222, 0, 43, 0,149, 0, 9, 0,223, 0, 43, 0,169, 8, 36, 0, 80, 0, 7, 0,243, 3, 7, 0,170, 8, + 7, 0,111, 8, 7, 0,161, 8, 7, 0,162, 8, 7, 0,171, 8, 4, 0, 90, 0, 4, 0,160, 8, 9, 0,172, 8, 68, 1, 15, 0, +212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 0, 1,173, 8,213, 0, 46, 6, 14, 1,242, 7, + 2, 0, 70, 1, 2, 0,109, 8, 2, 0, 90, 2, 2, 0, 91, 2, 2, 0, 19, 0, 2, 0, 98, 6, 4, 0, 70, 0, 69, 1, 6, 0, + 69, 1, 0, 0, 69, 1, 1, 0, 32, 0, 45, 0, 9, 0,174, 8, 4, 0,247, 0, 4, 0, 37, 0, 68, 0, 4, 0, 27, 0, 31, 0, + 12, 0,175, 8, 4, 0,131, 0, 7, 0,176, 8, 70, 1, 26, 0, 70, 1, 0, 0, 70, 1, 1, 0, 26, 0,177, 8, 70, 1, 38, 0, + 12, 0,178, 8, 0, 0, 20, 0, 7, 0,179, 8, 7, 0,180, 8, 7, 0,181, 8, 7, 0,182, 8, 4, 0, 19, 0, 7, 0,183, 8, + 7, 0,184, 8, 7, 0,185, 8, 7, 0, 77, 1, 7, 0, 37, 2, 7, 0,186, 8, 7, 0,192, 2, 7, 0,187, 8, 7, 0,188, 8, + 7, 0,189, 8, 7, 0,190, 8, 7, 0,191, 8, 7, 0,172, 0, 2, 0,131, 0, 2, 0,121, 5, 71, 1, 22, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 12, 0,192, 8, 12, 0,193, 8, 12, 0,194, 8, 9, 0,195, 8, 4, 0, 19, 0, 4, 0,255, 5, 2, 0,248, 2, + 2, 0, 56, 6, 2, 0,131, 0, 2, 0,196, 8, 2, 0,197, 8, 2, 0,198, 8, 2, 0,199, 8, 2, 0,200, 8, 4, 0,201, 8, + 4, 0,202, 8, 4, 0,203, 8, 4, 0,204, 8, 4, 0,205, 8, 4, 0,206, 8, 72, 1, 2, 0, 7, 0,153, 2, 4, 0, 19, 0, + 73, 1, 5, 0, 72, 1,207, 8, 4, 0,192, 2, 4, 0,208, 8, 4, 0,209, 8, 4, 0, 19, 0, 74, 1, 6, 0, 4, 0, 37, 0, + 4, 0, 56, 6, 4, 0,203, 8, 4, 0,204, 8, 4, 0,205, 8, 4, 0,206, 8, 75, 1, 42, 0, 75, 1, 0, 0, 75, 1, 1, 0, + 26, 0,177, 8, 12, 0,156, 3, 0, 0, 20, 0, 2, 0, 19, 0, 2, 0,210, 8, 2, 0,211, 8, 2, 0,212, 8, 2, 0,115, 3, + 2, 0,213, 8, 4, 0, 73, 2, 4, 0,203, 8, 4, 0,204, 8, 70, 1,214, 8, 75, 1, 38, 0, 75, 1,215, 8, 12, 0,216, 8, + 9, 0,217, 8, 9, 0,218, 8, 9, 0,219, 8, 7, 0, 65, 1, 7, 0,172, 0, 7, 0,220, 8, 7, 0, 16, 2, 7, 0,106, 3, + 7, 0,108, 3, 2, 0,138, 3, 2, 0, 37, 0, 7, 0,221, 8, 7, 0,222, 8, 7, 0,111, 3, 7, 0,223, 8, 7, 0,224, 8, + 7, 0,225, 8, 7, 0,226, 8, 7, 0,227, 8, 7, 0,228, 8, 7, 0,229, 8, 7, 0,230, 8, 7, 0, 66, 2, 32, 0,231, 8, +161, 0, 11, 0, 12, 0,232, 8, 2, 0, 19, 0, 2, 0,233, 8, 7, 0,102, 2, 7, 0,234, 8, 7, 0,235, 8, 12, 0,236, 8, + 4, 0,237, 8, 4, 0,238, 8, 9, 0,239, 8, 9, 0,240, 8, 76, 1, 1, 0, 4, 0,238, 8, 77, 1, 12, 0, 4, 0,238, 8, + 7, 0, 93, 8, 2, 0,241, 8, 2, 0,242, 8, 7, 0,243, 8, 7, 0,244, 8, 2, 0,245, 8, 2, 0, 19, 0, 7, 0,246, 8, + 7, 0,247, 8, 7, 0,248, 8, 7, 0,249, 8, 78, 1, 7, 0, 78, 1, 0, 0, 78, 1, 1, 0, 12, 0,250, 8, 4, 0, 19, 0, + 4, 0,251, 8, 0, 0,234, 3,247, 0,252, 8,160, 0, 7, 0, 27, 0, 31, 0, 12, 0,253, 8, 12, 0,232, 8, 12, 0,254, 8, + 12, 0,100, 0, 4, 0, 19, 0, 4, 0,255, 8,217, 0, 4, 0, 27, 0,157, 8, 12, 0,232, 8, 4, 0, 0, 9, 4, 0, 19, 0, + 79, 1, 17, 0,212, 0, 0, 0,212, 0, 1, 0, 12, 0,246, 5, 4, 0,247, 5, 7, 0,248, 5, 2, 0,249, 5,213, 0, 46, 6, +160, 0, 91, 3,217, 0, 1, 9, 0, 0, 70, 1, 0, 0, 49, 6, 2, 0, 19, 0, 2, 0, 2, 9, 2, 0, 99, 6, 2, 0, 98, 6, + 2, 0, 3, 9, 7, 0, 4, 9, 80, 1, 8, 0, 80, 1, 0, 0, 80, 1, 1, 0, 78, 1, 5, 9, 36, 0, 80, 0, 12, 0, 95, 3, + 4, 0, 19, 0, 0, 0, 20, 0, 4, 0, 6, 9, 81, 1, 5, 0, 81, 1, 0, 0, 81, 1, 1, 0, 36, 0, 80, 0, 2, 0, 19, 0, + 0, 0, 7, 9, 82, 1, 14, 0, 82, 1, 0, 0, 82, 1, 1, 0, 9, 0, 2, 0, 2, 0, 17, 0, 2, 0, 19, 0, 0, 0, 8, 9, + 0, 0, 9, 9, 0, 0, 7, 9, 7, 0, 10, 9, 7, 0, 11, 9, 4, 0, 37, 0, 36, 0, 80, 0, 7, 0, 12, 9, 7, 0, 13, 9, + 83, 1, 9, 0, 83, 1, 0, 0, 83, 1, 1, 0, 32, 0, 14, 9, 0, 0,251, 2, 7, 0, 15, 9, 2, 0, 16, 9, 2, 0, 19, 0, + 2, 0, 17, 0, 2, 0, 17, 9, 84, 1, 7, 0, 42, 0,105, 6, 26, 0,177, 8, 4, 0, 19, 0, 4, 0, 18, 9, 12, 0, 19, 9, + 32, 0, 14, 9, 0, 0,251, 2, 85, 1, 15, 0, 32, 0, 14, 9, 2, 0, 20, 9, 2, 0, 19, 0, 2, 0, 21, 9, 2, 0, 22, 9, + 0, 0,251, 2, 32, 0, 23, 9, 0, 0, 24, 9, 7, 0, 25, 9, 7, 0, 37, 2, 7, 0, 26, 9, 7, 0, 27, 9, 2, 0, 17, 0, + 2, 0, 70, 1, 7, 0, 77, 1, 86, 1, 6, 0, 32, 0, 14, 9, 4, 0, 28, 9, 4, 0, 29, 9, 4, 0, 90, 0, 4, 0, 37, 0, + 0, 0,251, 2, 87, 1, 4, 0, 32, 0, 14, 9, 4, 0, 19, 0, 4, 0, 28, 9, 0, 0,251, 2, 88, 1, 4, 0, 32, 0, 14, 9, + 4, 0, 19, 0, 4, 0, 28, 9, 0, 0,251, 2, 89, 1, 10, 0, 32, 0, 14, 9, 4, 0, 30, 9, 7, 0,125, 0, 4, 0, 19, 0, + 2, 0,101, 6, 2, 0, 31, 9, 2, 0, 43, 0, 2, 0, 70, 0, 7, 0, 32, 9, 0, 0,251, 2, 90, 1, 4, 0, 32, 0, 14, 9, + 4, 0, 19, 0, 4, 0, 28, 9, 0, 0,251, 2, 91, 1, 10, 0, 32, 0, 14, 9, 2, 0, 17, 0, 2, 0, 37, 4, 4, 0, 88, 0, + 4, 0, 89, 0, 7, 0,128, 8, 7, 0,129, 8, 4, 0, 37, 0,160, 0,102, 8, 0, 0,251, 2, 92, 1, 4, 0, 32, 0, 14, 9, + 4, 0,116, 3, 4, 0, 33, 9, 0, 0,251, 2, 93, 1, 4, 0, 32, 0, 14, 9, 4, 0,116, 3, 4, 0, 37, 0, 0, 0,251, 2, + 94, 1, 5, 0, 32, 0, 14, 9, 7, 0,125, 0, 4, 0, 34, 9, 4, 0,116, 3, 4, 0,117, 3, 95, 1, 6, 0, 32, 0, 14, 9, + 4, 0, 35, 9, 4, 0, 36, 9, 7, 0, 37, 9, 7, 0, 38, 9, 0, 0,251, 2, 96, 1, 16, 0, 32, 0, 14, 9, 32, 0,215, 8, + 4, 0, 17, 0, 7, 0, 39, 9, 7, 0, 40, 9, 7, 0, 41, 9, 7, 0, 42, 9, 7, 0, 43, 9, 7, 0, 44, 9, 7, 0, 45, 9, + 7, 0, 46, 9, 7, 0, 47, 9, 2, 0, 19, 0, 2, 0, 37, 0, 2, 0, 43, 0, 2, 0, 70, 0, 97, 1, 3, 0, 32, 0, 14, 9, + 4, 0, 19, 0, 4, 0, 29, 2, 98, 1, 5, 0, 32, 0, 14, 9, 4, 0, 19, 0, 4, 0, 37, 0, 7, 0, 48, 9, 0, 0,251, 2, + 99, 1, 10, 0, 32, 0, 14, 9, 0, 0,251, 2, 2, 0, 49, 9, 2, 0, 50, 9, 0, 0, 51, 9, 0, 0, 52, 9, 7, 0, 53, 9, + 7, 0, 54, 9, 7, 0, 55, 9, 7, 0, 56, 9,100, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, 7, 0, 12, 0, + 7, 0, 57, 9, 7, 0, 58, 9, 2, 0, 19, 0, 2, 0, 29, 2,101, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, 7, 0, 11, 0, + 7, 0, 12, 0, 7, 0, 57, 9, 7, 0, 58, 9, 2, 0, 19, 0, 2, 0, 29, 2,102, 1, 8, 0, 7, 0, 9, 0, 7, 0, 10, 0, + 7, 0, 11, 0, 7, 0, 12, 0, 7, 0, 57, 9, 7, 0, 58, 9, 2, 0, 19, 0, 2, 0, 29, 2,103, 1, 7, 0, 32, 0, 14, 9, + 0, 0,251, 2, 7, 0, 77, 1, 7, 0, 86, 1, 2, 0, 19, 0, 2, 0, 70, 1, 4, 0, 37, 0,104, 1, 5, 0, 32, 0, 51, 3, + 7, 0, 77, 1, 2, 0, 55, 3, 0, 0, 57, 3, 0, 0, 59, 9,105, 1, 10, 0,105, 1, 0, 0,105, 1, 1, 0, 2, 0, 17, 0, + 2, 0, 19, 0, 0, 0, 60, 9, 7, 0, 21, 1, 7, 0, 22, 1, 2, 0,250, 8, 2, 0, 61, 9, 32, 0, 45, 0,106, 1, 22, 0, +106, 1, 0, 0,106, 1, 1, 0, 2, 0, 19, 0, 2, 0, 70, 1, 2, 0, 62, 9, 2, 0, 63, 9, 36, 0, 80, 0,160, 0,102, 8, + 32, 0,164, 0, 7, 0, 88, 0, 7, 0, 89, 0, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0, 66, 9, 7, 0, 67, 9, 7, 0,237, 2, + 7, 0, 68, 9, 7, 0,104, 8, 7, 0, 69, 9, 0, 0, 70, 9, 0, 0, 71, 9, 12, 0, 97, 3,107, 1, 8, 0, 7, 0, 44, 2, + 7, 0,128, 8, 7, 0,129, 8, 9, 0, 2, 0, 2, 0, 72, 9, 2, 0, 73, 9, 2, 0, 74, 9, 2, 0, 75, 9,108, 1, 18, 0, +108, 1, 0, 0,108, 1, 1, 0,108, 1, 76, 9, 0, 0, 20, 0,107, 1, 77, 9, 2, 0, 17, 0, 2, 0, 19, 0, 2, 0, 78, 9, + 2, 0, 79, 9, 2, 0, 80, 9, 2, 0, 81, 9, 4, 0, 43, 0, 7, 0, 82, 9, 7, 0, 83, 9, 4, 0, 84, 9, 4, 0, 85, 9, +108, 1, 86, 9,109, 1, 87, 9,110, 1, 34, 0,110, 1, 0, 0,110, 1, 1, 0,110, 1, 88, 9, 0, 0, 20, 0, 0, 0, 89, 9, + 2, 0, 17, 0, 2, 0, 19, 0, 2, 0,211, 7, 2, 0,244, 7, 2, 0, 90, 9, 2, 0,133, 0, 2, 0, 79, 9, 2, 0,201, 7, + 12, 0, 97, 8, 12, 0, 91, 9, 27, 0,135, 6, 9, 0, 92, 9, 7, 0, 82, 9, 7, 0, 83, 9, 7, 0, 75, 2, 7, 0, 93, 9, + 2, 0, 94, 9, 2, 0, 95, 9, 7, 0, 96, 9, 7, 0, 97, 9, 2, 0, 98, 9, 2, 0, 99, 9, 9, 0,100, 9, 24, 0,101, 9, + 24, 0,102, 9, 24, 0,103, 9,111, 1,150, 0,112, 1,104, 9,113, 1,105, 9,109, 1, 8, 0,109, 1, 0, 0,109, 1, 1, 0, +110, 1,106, 9,110, 1,107, 9,108, 1,108, 9,108, 1, 86, 9, 4, 0, 19, 0, 4, 0, 37, 0, 61, 0, 20, 0, 27, 0, 31, 0, + 39, 0, 75, 0, 12, 0,109, 9, 12, 0,110, 9,107, 1,111, 9, 12, 0,112, 9, 4, 0, 17, 0, 4, 0,113, 9, 4, 0,114, 9, + 4, 0,115, 9, 12, 0,116, 9,113, 1,117, 9,108, 1,118, 9,108, 1,119, 9, 9, 0,120, 9, 9, 0,121, 9, 4, 0,122, 9, + 9, 0,123, 9, 9, 0,124, 9, 9, 0,125, 9,114, 1, 6, 0, 4, 0,124, 0, 4, 0,126, 0, 4, 0,201, 7, 0, 0,126, 9, + 0, 0,127, 9, 2, 0, 37, 0,115, 1, 16, 0, 2, 0,155, 7, 2, 0,156, 7, 2, 0,128, 9, 2, 0,152, 8, 2, 0,129, 9, + 2, 0, 68, 0, 7, 0,236, 2, 7, 0,130, 9, 7, 0,131, 9, 2, 0, 92, 1, 0, 0,132, 9, 0, 0,105, 5, 2, 0,133, 9, + 2, 0, 37, 0, 4, 0,134, 9, 4, 0,135, 9,116, 1, 9, 0, 7, 0,136, 9, 7, 0,137, 9, 7, 0,171, 8, 7, 0,109, 0, + 7, 0,138, 9, 7, 0, 62, 6, 2, 0,139, 9, 0, 0,140, 9, 0, 0, 37, 0,117, 1, 4, 0, 7, 0,141, 9, 7, 0,142, 9, + 2, 0,139, 9, 2, 0, 37, 0,118, 1, 3, 0, 7, 0,143, 9, 7, 0,144, 9, 7, 0, 15, 0,119, 1, 7, 0, 0, 0, 6, 2, + 2, 0,233, 4, 2, 0,234, 4, 2, 0,235, 4, 2, 0,181, 4, 4, 0,126, 0, 4, 0, 35, 4,120, 1, 7, 0, 7, 0,145, 9, + 7, 0,146, 9, 7, 0,147, 9, 7, 0, 86, 2, 7, 0,148, 9, 7, 0,149, 9, 7, 0,150, 9,121, 1, 4, 0, 2, 0,151, 9, + 2, 0,152, 9, 2, 0,153, 9, 2, 0,154, 9,122, 1, 2, 0, 7, 0, 5, 0, 7, 0, 6, 0,123, 1, 2, 0, 0, 0,166, 0, + 0, 0,155, 9,124, 1, 1, 0, 0, 0, 20, 0,125, 1, 10, 0, 0, 0,156, 9, 0, 0,157, 9, 0, 0, 55, 6, 0, 0,158, 9, + 2, 0,128, 9, 2, 0,159, 9, 7, 0,160, 9, 7, 0,161, 9, 7, 0,162, 9, 7, 0, 68, 9,126, 1, 2, 0, 9, 0,163, 9, + 9, 0,164, 9,127, 1, 11, 0, 0, 0,235, 4, 0, 0, 17, 0, 0, 0,139, 9, 0, 0,109, 0, 0, 0,165, 9, 0, 0,106, 0, + 0, 0, 71, 2, 7, 0,166, 9, 7, 0,167, 9, 7, 0,168, 9, 7, 0,169, 9,128, 1, 8, 0, 7, 0, 62, 8, 7, 0,125, 0, + 7, 0,105, 5, 7, 0,158, 2, 7, 0,170, 9, 7, 0,236, 0, 7, 0,171, 9, 4, 0, 17, 0,129, 1, 4, 0, 2, 0,172, 9, + 2, 0,173, 9, 2, 0,174, 9, 2, 0, 37, 0,130, 1, 1, 0, 0, 0, 20, 0,131, 1, 4, 0, 7, 0, 5, 0, 7, 0, 6, 0, + 2, 0, 19, 0, 2, 0,175, 9,132, 1, 10, 0, 2, 0,223, 3, 2, 0, 19, 0, 7, 0,117, 4, 7, 0,176, 9, 7, 0,177, 9, + 7, 0,178, 9, 7, 0,179, 9,131, 1,180, 9,131, 1,181, 9,131, 1,182, 9, 64, 0, 9, 0, 4, 0, 19, 0, 4, 0, 64, 0, + 24, 0,183, 9, 24, 0,184, 9,132, 1,185, 9, 7, 0,186, 9, 7, 0,187, 9, 7, 0,188, 9, 7, 0,189, 9,133, 1, 4, 0, + 47, 0,230, 2, 7, 0,190, 9, 7, 0,171, 1, 7, 0, 37, 0,190, 0, 17, 0, 27, 0, 31, 0,133, 1,191, 9, 64, 0,180, 9, + 51, 0,135, 1, 2, 0, 19, 0, 2, 0,215, 5, 4, 0,106, 0, 7, 0,192, 9, 7, 0, 83, 2, 4, 0,193, 9, 7, 0,194, 9, + 7, 0,195, 9, 7, 0,196, 9, 7, 0,171, 1, 2, 0,105, 1, 0, 0,197, 9, 0, 0,193, 6,134, 1, 10, 0, 4, 0, 17, 0, + 4, 0,125, 0, 4, 0, 19, 0, 4, 0,178, 3, 4, 0,198, 9, 4, 0,199, 9, 4, 0,200, 9, 0, 0, 92, 0, 0, 0, 20, 0, + 9, 0, 2, 0, 92, 0, 6, 0,134, 1,201, 9, 4, 0,202, 9, 4, 0,203, 9, 4, 0,204, 9, 4, 0, 37, 0, 9, 0,205, 9, +135, 1, 5, 0, 7, 0,153, 2, 7, 0,220, 2, 7, 0, 37, 2, 2, 0,129, 2, 2, 0, 37, 0,136, 1, 5, 0, 7, 0,153, 2, + 7, 0,206, 9, 7, 0,207, 9, 7, 0,208, 9, 7, 0,220, 2,137, 1, 5, 0, 32, 0,209, 9,138, 1, 22, 0, 7, 0,188, 5, + 7, 0,210, 9, 7, 0, 57, 0,139, 1, 7, 0, 4, 0,211, 9, 4, 0,212, 9, 4, 0,213, 9, 7, 0,214, 9, 7, 0,215, 9, + 7, 0,216, 9, 7, 0, 57, 0,140, 1, 8, 0,140, 1, 0, 0,140, 1, 1, 0, 32, 0, 45, 0, 4, 0, 38, 3, 2, 0, 19, 0, + 2, 0, 70, 1, 7, 0,220, 2, 7, 0, 70, 8,141, 1, 6, 0,141, 1, 0, 0,141, 1, 1, 0, 32, 0, 45, 0, 2, 0,205, 2, + 2, 0, 19, 0, 2, 0,217, 9,142, 1, 18, 0,136, 1,172, 3,136, 1,218, 9,135, 1,219, 9,136, 1, 54, 8,137, 1,220, 9, + 4, 0, 82, 0, 7, 0,220, 2, 7, 0,247, 2, 7, 0,221, 9, 4, 0,211, 9, 4, 0,222, 9, 7, 0,215, 9, 7, 0,216, 9, + 7, 0,106, 0, 2, 0, 19, 0, 2, 0,223, 9, 2, 0,224, 9, 2, 0,225, 9,143, 1,110, 0, 27, 0, 31, 0, 39, 0, 75, 0, +144, 1,226, 9,169, 0, 57, 4, 4, 0, 19, 0, 2, 0, 17, 0, 2, 0, 49, 9, 2, 0,227, 9, 2, 0,228, 9, 2, 0,138, 3, + 2, 0,229, 9, 2, 0,230, 9, 2, 0,231, 9, 2, 0,232, 9, 2, 0,233, 9, 2, 0,234, 9, 2, 0,235, 9, 2, 0,223, 4, + 2, 0, 98, 5, 2, 0,236, 9, 2, 0,237, 9, 2, 0,238, 9, 2, 0,239, 9, 2, 0,240, 9, 2, 0, 26, 2, 2, 0, 47, 8, + 2, 0, 23, 8, 2, 0,241, 9, 2, 0,242, 9, 2, 0,188, 3, 2, 0,189, 3, 2, 0,243, 9, 2, 0,244, 9, 2, 0,245, 9, + 2, 0,246, 9, 7, 0,247, 9, 7, 0,248, 9, 7, 0,249, 9, 2, 0,250, 9, 2, 0,251, 9, 7, 0,252, 9, 7, 0,253, 9, + 7, 0,254, 9, 7, 0, 29, 8, 7, 0, 89, 0, 7, 0,247, 2, 7, 0, 35, 8, 7, 0,255, 9, 7, 0, 0, 10, 7, 0, 1, 10, + 4, 0, 30, 8, 4, 0, 28, 8, 4, 0, 2, 10, 7, 0, 31, 8, 7, 0, 32, 8, 7, 0, 33, 8, 7, 0, 3, 10, 7, 0, 4, 10, + 7, 0, 5, 10, 7, 0, 6, 10, 7, 0, 7, 10, 7, 0, 57, 0, 7, 0, 8, 10, 7, 0, 9, 10, 7, 0, 10, 10, 7, 0, 11, 10, + 7, 0,129, 3, 7, 0,106, 0, 7, 0, 12, 10, 7, 0, 13, 10, 7, 0, 14, 10, 7, 0, 15, 10, 7, 0, 16, 10, 7, 0, 17, 10, + 7, 0, 18, 10, 4, 0, 19, 10, 4, 0, 20, 10, 7, 0, 21, 10, 7, 0, 22, 10, 7, 0, 23, 10, 7, 0, 24, 10, 7, 0, 25, 10, + 7, 0,210, 0, 7, 0, 26, 10, 7, 0,214, 3, 7, 0,212, 3, 7, 0,213, 3, 7, 0, 27, 10, 7, 0, 28, 10, 7, 0, 29, 10, + 7, 0, 30, 10, 7, 0, 31, 10, 7, 0, 32, 10, 7, 0, 33, 10, 7, 0, 34, 10, 7, 0, 35, 10, 7, 0, 36, 10, 7, 0, 37, 10, + 7, 0, 38, 10, 7, 0, 39, 10, 4, 0, 40, 10, 4, 0, 41, 10, 68, 0,161, 3, 12, 0, 42, 10, 68, 0, 43, 10, 32, 0, 44, 10, + 32, 0, 45, 10, 36, 0, 80, 0,164, 0, 62, 1,164, 0, 46, 10, 59, 0, 44, 0, 59, 0, 0, 0, 59, 0, 1, 0,143, 1, 47, 10, +142, 1, 48, 10,139, 1,215, 8,171, 0,239, 3, 9, 0,240, 3,145, 1, 49, 10,145, 1, 50, 10, 12, 0, 51, 10, 12, 0, 52, 10, +134, 0, 53, 10,142, 0, 54, 10,142, 0, 55, 10, 32, 0, 56, 10, 32, 0, 57, 10, 32, 0, 38, 0, 12, 0, 19, 9, 0, 0, 20, 0, + 7, 0,240, 0, 7, 0, 18, 3, 7, 0, 58, 10, 4, 0,194, 2, 4, 0, 57, 0, 4, 0, 19, 0, 4, 0, 30, 8, 4, 0, 59, 10, + 4, 0, 60, 10, 4, 0, 61, 10, 2, 0,247, 0, 2, 0, 62, 10, 2, 0, 63, 10, 2, 0, 64, 10, 0, 0, 65, 10, 2, 0, 66, 10, + 2, 0, 67, 10, 2, 0, 68, 10, 9, 0, 69, 10,138, 0, 56, 4, 12, 0, 5, 3, 12, 0, 70, 10,146, 1, 71, 10,147, 1, 72, 10, + 7, 0, 73, 10,136, 0, 35, 0,148, 1,172, 8, 7, 0, 26, 4, 7, 0, 74, 10, 7, 0, 75, 10, 7, 0,120, 4, 7, 0, 76, 10, + 7, 0,139, 3, 7, 0,129, 3, 7, 0, 77, 10, 7, 0, 85, 2, 7, 0, 78, 10, 7, 0, 79, 10, 7, 0, 80, 10, 7, 0, 81, 10, + 7, 0, 82, 10, 7, 0, 83, 10, 7, 0, 27, 4, 7, 0, 84, 10, 7, 0, 85, 10, 7, 0, 86, 10, 7, 0, 28, 4, 7, 0, 24, 4, + 7, 0, 25, 4, 7, 0, 87, 10, 4, 0, 88, 10, 4, 0, 90, 0, 4, 0, 89, 10, 4, 0, 90, 10, 2, 0, 91, 10, 2, 0, 92, 10, + 2, 0, 93, 10, 2, 0, 94, 10, 2, 0, 95, 10, 2, 0, 37, 0,169, 0, 57, 4,137, 0, 8, 0,148, 1, 96, 10, 7, 0, 97, 10, + 7, 0, 98, 10, 7, 0,243, 1, 7, 0, 99, 10, 4, 0, 90, 0, 2, 0,100, 10, 2, 0,101, 10,149, 1, 4, 0, 7, 0, 5, 0, + 7, 0, 6, 0, 7, 0, 7, 0, 7, 0,102, 10,150, 1, 6, 0,150, 1, 0, 0,150, 1, 1, 0,149, 1,207, 8, 4, 0,253, 0, + 2, 0,103, 10, 2, 0, 19, 0,151, 1, 5, 0,151, 1, 0, 0,151, 1, 1, 0, 12, 0,104, 10, 4, 0,105, 10, 4, 0, 19, 0, +152, 1, 9, 0,152, 1, 0, 0,152, 1, 1, 0, 12, 0,124, 0,151, 1,106, 10, 4, 0, 19, 0, 2, 0,103, 10, 2, 0,107, 10, + 7, 0, 91, 0, 0, 0,108, 10,162, 0, 6, 0, 27, 0, 31, 0, 12, 0,251, 4, 4, 0, 19, 0, 2, 0,109, 10, 2, 0,110, 10, + 9, 0,111, 10,153, 1, 7, 0,153, 1, 0, 0,153, 1, 1, 0, 2, 0, 17, 0, 2, 0, 19, 0, 4, 0, 23, 0, 0, 0,112, 10, + 0, 0,113, 10,154, 1, 5, 0, 12, 0,114, 10, 4, 0,115, 10, 4, 0,116, 10, 4, 0, 19, 0, 4, 0, 37, 0,155, 1, 18, 0, + 27, 0, 31, 0,156, 1,117, 10,156, 1,118, 10, 12, 0,119, 10, 4, 0,120, 10, 2, 0,121, 10, 2, 0, 37, 0, 12, 0,122, 10, + 12, 0,123, 10,154, 1,124, 10, 12, 0,125, 10, 12, 0,126, 10, 12, 0,127, 10,157, 1,128, 10, 4, 0,129, 10, 4, 0, 70, 0, + 12, 0,130, 10,210, 0,131, 10,156, 1, 30, 0,156, 1, 0, 0,156, 1, 1, 0, 9, 0,132, 10, 4, 0,134, 7, 4, 0, 37, 0, +215, 0, 45, 6,215, 0,133, 10, 0, 0,134, 10, 2, 0,135, 10, 2, 0,136, 10, 2, 0,155, 7, 2, 0,156, 7, 2, 0,137, 10, + 2, 0,138, 10, 2, 0,178, 3, 2, 0,161, 6, 2, 0,139, 10, 2, 0,140, 10, 4, 0,239, 1,158, 1,141, 10,159, 1,142, 10, +160, 1,143, 10, 4, 0,144, 10, 4, 0,145, 10, 9, 0,146, 10, 12, 0,123, 10, 12, 0,175, 7, 12, 0,147, 10, 12, 0,148, 10, + 12, 0,149, 10,161, 1, 16, 0,161, 1, 0, 0,161, 1, 1, 0, 0, 0,150, 10, 26, 0, 30, 0, 2, 0,151, 10, 2, 0, 17, 0, + 2, 0, 15, 0, 2, 0,152, 10, 2, 0,153, 10, 2, 0,154, 10, 2, 0,155, 10, 2, 0,156, 10, 2, 0, 19, 0, 2, 0,157, 10, + 2, 0, 71, 2,162, 1,158, 10,163, 1, 10, 0,163, 1, 0, 0,163, 1, 1, 0, 12, 0,159, 10, 0, 0,150, 10, 2, 0,160, 10, + 2, 0,161, 10, 2, 0, 19, 0, 2, 0, 37, 0, 4, 0,162, 10, 9, 0,163, 10,157, 1, 7, 0,157, 1, 0, 0,157, 1, 1, 0, + 0, 0,150, 10, 0, 0,164, 10, 12, 0, 92, 7, 4, 0,165, 10, 4, 0, 19, 0,223, 0, 12, 0,223, 0, 0, 0,223, 0, 1, 0, + 0, 0,150, 10, 26, 0, 30, 0,164, 1,149, 7, 9, 0,166, 10,162, 1,158, 10,154, 1,167, 10, 12, 0,168, 10,223, 0,169, 10, + 2, 0, 19, 0, 2, 0,137, 1,158, 1, 23, 0,158, 1, 0, 0,158, 1, 1, 0, 2, 0, 17, 0, 2, 0, 15, 0, 2, 0, 5, 0, + 2, 0, 6, 0, 2, 0,170, 10, 2, 0,171, 10, 2, 0,172, 10, 2, 0,173, 10, 0, 0,174, 10, 0, 0, 37, 0, 2, 0,152, 10, + 2, 0,153, 10, 2, 0,154, 10, 2, 0,155, 10, 2, 0,156, 10, 2, 0, 43, 0, 0, 0,175, 10, 2, 0,176, 10, 2, 0,177, 10, + 4, 0, 70, 0, 9, 0,166, 10,165, 1, 8, 0,165, 1, 0, 0,165, 1, 1, 0, 9, 0, 2, 0, 9, 0,178, 10, 0, 0,234, 3, + 2, 0, 17, 0, 2, 0, 19, 0, 7, 0,179, 10,166, 1, 5, 0, 7, 0,180, 10, 4, 0,181, 10, 4, 0,182, 10, 4, 0, 70, 1, + 4, 0, 19, 0,167, 1, 6, 0, 7, 0,183, 10, 7, 0,184, 10, 7, 0,185, 10, 7, 0,186, 10, 4, 0, 17, 0, 4, 0, 19, 0, +168, 1, 5, 0, 7, 0,128, 8, 7, 0,129, 8, 7, 0,220, 2, 2, 0, 40, 2, 2, 0, 41, 2,169, 1, 5, 0,168, 1, 2, 0, + 4, 0, 54, 0, 7, 0,187, 10, 7, 0,128, 8, 7, 0,129, 8,170, 1, 4, 0, 2, 0,188, 10, 2, 0,189, 10, 2, 0,190, 10, + 2, 0,191, 10,171, 1, 2, 0, 42, 0,132, 6, 26, 0,177, 8,172, 1, 3, 0, 24, 0,192, 10, 4, 0, 19, 0, 4, 0, 37, 0, +173, 1, 6, 0, 7, 0,106, 0, 7, 0,222, 2, 7, 0,193, 10, 7, 0, 37, 0, 2, 0,246, 0, 2, 0,194, 10,174, 1, 9, 0, +174, 1, 0, 0,174, 1, 1, 0, 27, 0,135, 6, 0, 0,195, 10, 4, 0,196, 10, 4, 0,197, 10, 4, 0, 90, 0, 4, 0, 37, 0, + 0, 0,234, 3,175, 1, 6, 0, 12, 0, 19, 9, 0, 0,198, 10, 7, 0, 61, 0, 7, 0,179, 10, 4, 0, 17, 0, 4, 0, 19, 0, +176, 1, 3, 0, 7, 0,199, 10, 4, 0, 19, 0, 4, 0, 37, 0,177, 1, 15, 0,177, 1, 0, 0,177, 1, 1, 0, 78, 1, 5, 9, +175, 1, 62, 0, 12, 0, 97, 3, 35, 0, 50, 0,176, 1,200, 10, 4, 0, 54, 0, 7, 0, 61, 0, 2, 0, 19, 0, 2, 0, 16, 1, + 4, 0,196, 10, 0, 0,195, 10, 4, 0,201, 10, 7, 0,202, 10,178, 1, 2, 0, 0, 0,203, 10, 0, 0,204, 10,179, 1, 4, 0, +179, 1, 0, 0,179, 1, 1, 0,160, 0, 51, 3, 12, 0,205, 10,180, 1, 24, 0,180, 1, 0, 0,180, 1, 1, 0, 12, 0,206, 10, +160, 0,102, 8,179, 1,207, 10, 12, 0,208, 10, 12, 0, 97, 3, 0, 0,234, 3, 7, 0,179, 10, 7, 0,209, 10, 7, 0, 88, 0, + 7, 0, 89, 0, 7, 0, 64, 9, 7, 0, 65, 9, 7, 0,237, 2, 7, 0, 68, 9, 7, 0,104, 8, 7, 0, 69, 9, 2, 0,210, 10, + 2, 0,211, 10, 2, 0, 43, 0, 2, 0, 17, 0, 4, 0, 19, 0, 4, 0, 70, 0,181, 1, 6, 0,181, 1, 0, 0,181, 1, 1, 0, + 12, 0,206, 10, 4, 0, 19, 0, 4, 0,157, 2, 0, 0,234, 3,182, 1, 10, 0,182, 1, 0, 0,182, 1, 1, 0, 27, 0,135, 6, + 0, 0,212, 10, 4, 0,197, 10, 4, 0,213, 10, 0, 0,195, 10, 4, 0,196, 10, 2, 0, 19, 0, 2, 0,214, 10,183, 1, 7, 0, +183, 1, 0, 0,183, 1, 1, 0, 12, 0,215, 10, 0, 0,234, 3, 2, 0, 19, 0, 2, 0,216, 10, 4, 0,217, 10,184, 1, 5, 0, +184, 1, 0, 0,184, 1, 1, 0, 0, 0,195, 10, 4, 0,196, 10, 7, 0,210, 2, 39, 0, 12, 0,160, 0, 91, 3,160, 0,218, 10, +179, 1,207, 10, 12, 0,219, 10,180, 1,220, 10, 12, 0,221, 10, 12, 0,222, 10, 4, 0, 19, 0, 4, 0,247, 0, 2, 0,223, 10, + 2, 0,224, 10, 7, 0,225, 10,185, 1, 2, 0, 27, 0, 31, 0, 39, 0, 75, 0,186, 1, 5, 0,186, 1, 0, 0,186, 1, 1, 0, + 4, 0, 17, 0, 4, 0, 19, 0, 0, 0, 20, 0,187, 1, 6, 0,186, 1,226, 10, 32, 0, 45, 0, 4, 0,227, 10, 7, 0,228, 10, + 4, 0,229, 10, 4, 0,250, 8,188, 1, 3, 0,186, 1,226, 10, 4, 0,227, 10, 7, 0,230, 10,189, 1, 8, 0,186, 1,226, 10, + 32, 0, 45, 0, 7, 0, 65, 1, 7, 0,231, 10, 7, 0, 18, 3, 7, 0,171, 8, 4, 0,227, 10, 4, 0,232, 10,190, 1, 5, 0, +186, 1,226, 10, 7, 0,233, 10, 7, 0,244, 7, 7, 0,243, 2, 7, 0, 57, 0,191, 1, 3, 0,186, 1,226, 10, 7, 0,171, 8, + 7, 0,234, 10,138, 1, 4, 0, 7, 0,235, 10, 7, 0, 14, 10, 2, 0,236, 10, 2, 0, 70, 1,192, 1, 14, 0,192, 1, 0, 0, +192, 1, 1, 0, 12, 0,237, 10, 12, 0,238, 10, 12, 0,239, 10, 0, 0, 20, 0, 4, 0, 31, 0, 4, 0, 19, 0, 4, 0,240, 10, + 7, 0,241, 10, 4, 0,229, 10, 4, 0,250, 8, 7, 0,243, 3, 7, 0,245, 2,144, 1, 23, 0, 4, 0,227, 10, 4, 0,242, 10, + 7, 0,243, 10, 7, 0, 57, 0, 7, 0,244, 10, 7, 0,241, 2, 7, 0,235, 10, 7, 0,245, 10, 7, 0,222, 2, 7, 0,246, 10, + 7, 0,117, 4, 7, 0,247, 10, 7, 0,248, 10, 7, 0,249, 10, 7, 0,250, 10, 7, 0,251, 10, 7, 0,252, 10, 7, 0,253, 10, + 7, 0,254, 10, 7, 0,255, 10, 7, 0, 0, 11, 7, 0, 1, 11, 12, 0, 2, 11,122, 0, 34, 0,121, 0, 3, 11,193, 1, 4, 11, + 68, 0, 5, 11, 68, 0, 43, 10, 68, 0, 6, 11,194, 1, 7, 11, 48, 0,165, 0, 48, 0, 8, 11, 48, 0, 9, 11, 7, 0, 10, 11, + 7, 0, 11, 11, 7, 0, 12, 11, 7, 0, 13, 11, 7, 0, 14, 11, 7, 0, 6, 9, 7, 0, 15, 11, 7, 0,171, 1, 7, 0, 16, 11, + 4, 0, 17, 11, 4, 0, 18, 11, 4, 0, 19, 11, 4, 0, 90, 0, 4, 0, 37, 0, 4, 0, 20, 11, 2, 0, 21, 11, 2, 0, 22, 11, + 4, 0, 23, 11, 7, 0,222, 2, 4, 0, 24, 11, 7, 0, 25, 11, 4, 0, 26, 11,138, 0, 27, 11, 12, 0, 28, 11,169, 0, 57, 4, +123, 0, 11, 0,121, 0, 3, 11, 59, 0,255, 0, 7, 0,138, 1, 7, 0, 6, 9, 7, 0, 29, 11, 7, 0, 30, 11, 2, 0, 31, 11, + 2, 0, 32, 11, 2, 0, 33, 11, 2, 0, 17, 0, 4, 0, 37, 0,124, 0, 13, 0,121, 0, 3, 11,140, 0, 15, 3,142, 0, 17, 3, + 7, 0,207, 8, 7, 0, 34, 11, 7, 0, 35, 11, 7, 0, 67, 1, 7, 0, 36, 11, 4, 0, 37, 11, 4, 0, 13, 3, 2, 0, 17, 0, 2, 0, 37, 0, 4, 0, 70, 0, 69, 78, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; From 93173a6dd4eaf1955516e35335009494a92f300b Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Fri, 30 Oct 2009 20:20:48 +0000 Subject: [PATCH 267/412] Mac / COCOA : - fix 10.4 compile issues - fix some scons issues & add WITH_BF_COLLADA = False in scons darwin_config.py to allow build waiting for complete Collada Mac implementation --- config/darwin-config.py | 3 +++ intern/ghost/SConscript | 9 --------- source/blender/imbuf/intern/imbuf_cocoa.m | 7 ++++--- source/blender/windowmanager/SConscript | 3 +++ 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/config/darwin-config.py b/config/darwin-config.py index 6dd65aeb40f..8a1b0eff6c1 100644 --- a/config/darwin-config.py +++ b/config/darwin-config.py @@ -246,6 +246,9 @@ BF_OPENGL_LIB = 'GL GLU' BF_OPENGL_LIBPATH = '/System/Library/Frameworks/OpenGL.framework/Libraries' BF_OPENGL_LINKFLAGS = ['-framework', 'OpenGL'] +#OpenCollada flags +WITH_BF_COLLADA = False + ############################################################################# ################### various compile settings and flags ################## ############################################################################# diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript index 2dbda4befe7..09da6f94ddc 100644 --- a/intern/ghost/SConscript +++ b/intern/ghost/SConscript @@ -10,15 +10,6 @@ sources = env.Glob('intern/*.cpp') if window_system == 'darwin': sources += env.Glob('intern/*.mm') -#if env['WITH_GHOST_COCOA'] == True: -# env.Append(CFLAGS=['-DGHOST_COCOA']) -# env.Append(CXXFLAGS=['-DGHOST_COCOA']) -# env.Append(CPPFLAGS=['-DGHOST_COCOA']) - -#defs = '' -#if env['WITH_GHOST_COCOA']: -# defs += 'GHOST_COCOA' -# maybe we need it later pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_Window'] diff --git a/source/blender/imbuf/intern/imbuf_cocoa.m b/source/blender/imbuf/intern/imbuf_cocoa.m index e5bebf68f66..5ede7ee3e00 100644 --- a/source/blender/imbuf/intern/imbuf_cocoa.m +++ b/source/blender/imbuf/intern/imbuf_cocoa.m @@ -29,6 +29,7 @@ * */ +#include #include #import @@ -65,7 +66,7 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) { struct ImBuf *ibuf = NULL; - uint32 width, height; + uint32_t width, height; uchar *rasterRGB = NULL; uchar *rasterRGBA = NULL; uchar *toIBuf = NULL; @@ -204,7 +205,7 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) short imb_cocoaSaveImage(struct ImBuf *ibuf, char *name, int flags) { - uint16 samplesperpixel, bitspersample; + uint16_t samplesperpixel, bitspersample; unsigned char *from = NULL, *to = NULL; unsigned short *to16 = NULL; float *fromf = NULL; @@ -224,7 +225,7 @@ short imb_cocoaSaveImage(struct ImBuf *ibuf, char *name, int flags) /* check for a valid number of bytes per pixel. Like the PNG writer, * the TIFF writer supports 1, 3 or 4 bytes per pixel, corresponding * to gray, RGB, RGBA respectively. */ - samplesperpixel = (uint16)((ibuf->depth + 7) >> 3); + samplesperpixel = (uint16_t)((ibuf->depth + 7) >> 3); switch (samplesperpixel) { case 4: /*RGBA type*/ hasAlpha = YES; diff --git a/source/blender/windowmanager/SConscript b/source/blender/windowmanager/SConscript index c01649485a5..2a86d42f590 100644 --- a/source/blender/windowmanager/SConscript +++ b/source/blender/windowmanager/SConscript @@ -29,4 +29,7 @@ if env['OURPLATFORM'] == 'linux2': if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'): incs += ' ' + env['BF_PTHREADS_INC'] +if env['WITH_GHOST_COCOA']: + sources.remove('intern/wm_apple.c') + env.BlenderLib ( 'bf_windowmanager', sources, Split(incs), defs, libtype=['core'], priority=[5] ) From 0cf1d391edba39f211ee122314631adfb76272b8 Mon Sep 17 00:00:00 2001 From: Andrea Weikert Date: Fri, 30 Oct 2009 20:40:41 +0000 Subject: [PATCH 268/412] 2.5 Sequencer Swap active sequence with the sequence on the right (CTRL+R) or left (CTRL+L). was small Durian wish. Note: in find_next_prev removed the code to find selected only if sel was != 0 I believe it should be possible to pass -1 in the case I want to find the next strip regardless of selection state. --- .../editors/space_sequencer/sequencer_edit.c | 112 +++++++++++++++++- .../space_sequencer/sequencer_intern.h | 2 + .../editors/space_sequencer/sequencer_ops.c | 4 + 3 files changed, 116 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index 339ba55bfd1..7557d5420bd 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -298,8 +298,6 @@ Sequence *find_next_prev_sequence(Scene *scene, Sequence *test, int lr, int sel) if(ed==NULL) return NULL; - if (sel) sel = SELECT; - seq= ed->seqbasep->first; while(seq) { if( (seq!=test) && @@ -2559,5 +2557,115 @@ void SEQUENCER_OT_previous_edit(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + /* properties */ +} + +static void swap_sequence(Sequence* seqa, Sequence* seqb) +{ + int gap = seqb->startdisp - seqa->enddisp; + seqb->start = seqa->start; + calc_sequence(seqb); + seqa->start = seqb->enddisp + gap; + calc_sequence(seqa); +} + +static Sequence* sequence_find_parent(Scene* scene, Sequence* child) +{ + Editing *ed= seq_give_editing(scene, FALSE); + Sequence *parent= NULL; + Sequence *seq; + + if(ed==NULL) return NULL; + + for(seq= ed->seqbasep->first; seq; seq= seq->next) { + if ( (seq != child) && seq_is_parent(seq, child) ) { + parent = seq; + break; + } + } + return parent; + +} + +static int sequencer_swap_internal_exec(bContext *C, int side) +{ + Scene *scene= CTX_data_scene(C); + Editing *ed= seq_give_editing(scene, FALSE); + Sequence *active_seq = get_last_seq(scene); + Sequence *seq; + + if(ed==NULL) return OPERATOR_CANCELLED; + if(active_seq==NULL) return OPERATOR_CANCELLED; + + seq = find_next_prev_sequence(scene, active_seq, side, -1); + + if(seq) { + + /* disallow effect strips */ + if (seq->effectdata || seq->seq1 || seq->seq2 || seq->seq3) + return OPERATOR_CANCELLED; + if (active_seq->effectdata || active_seq->seq1 || active_seq->seq2 || active_seq->seq3) + return OPERATOR_CANCELLED; + + /* disallow if parent strip (effect strip) is attached */ + if ( sequence_find_parent(scene, active_seq)) { + return OPERATOR_CANCELLED; + } + + switch (side) { + case SEQ_SIDE_LEFT: + swap_sequence(seq, active_seq); + break; + case SEQ_SIDE_RIGHT: + swap_sequence(active_seq, seq); + break; + } + ED_area_tag_redraw(CTX_wm_area(C)); + } + + return OPERATOR_FINISHED; +} + +static int sequencer_swap_right_exec(bContext *C, wmOperator *op) +{ + return sequencer_swap_internal_exec(C, SEQ_SIDE_RIGHT); +} + +void SEQUENCER_OT_swap_right(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Swap Strip Right"; + ot->idname= "SEQUENCER_OT_swap_right"; + ot->description="Swap active strip with strip to the right."; + + /* api callbacks */ + ot->exec= sequencer_swap_right_exec; + ot->poll= ED_operator_sequencer_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ +} + +static int sequencer_swap_left_exec(bContext *C, wmOperator *op) +{ + return sequencer_swap_internal_exec(C, SEQ_SIDE_LEFT); +} + +void SEQUENCER_OT_swap_left(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Swap Strip Left"; + ot->idname= "SEQUENCER_OT_swap_left"; + ot->description="Swap active strip with strip to the left."; + + /* api callbacks */ + ot->exec= sequencer_swap_left_exec; + ot->poll= ED_operator_sequencer_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + /* properties */ } \ No newline at end of file diff --git a/source/blender/editors/space_sequencer/sequencer_intern.h b/source/blender/editors/space_sequencer/sequencer_intern.h index c69a57931b9..0a8208fcc2e 100644 --- a/source/blender/editors/space_sequencer/sequencer_intern.h +++ b/source/blender/editors/space_sequencer/sequencer_intern.h @@ -93,6 +93,8 @@ void SEQUENCER_OT_meta_separate(struct wmOperatorType *ot); void SEQUENCER_OT_snap(struct wmOperatorType *ot); void SEQUENCER_OT_previous_edit(struct wmOperatorType *ot); void SEQUENCER_OT_next_edit(struct wmOperatorType *ot); +void SEQUENCER_OT_swap_right(struct wmOperatorType *ot); +void SEQUENCER_OT_swap_left(struct wmOperatorType *ot); void SEQUENCER_OT_view_all(struct wmOperatorType *ot); void SEQUENCER_OT_view_selected(struct wmOperatorType *ot); diff --git a/source/blender/editors/space_sequencer/sequencer_ops.c b/source/blender/editors/space_sequencer/sequencer_ops.c index 0e4a8df04c6..64192e57210 100644 --- a/source/blender/editors/space_sequencer/sequencer_ops.c +++ b/source/blender/editors/space_sequencer/sequencer_ops.c @@ -79,6 +79,8 @@ void sequencer_operatortypes(void) WM_operatortype_append(SEQUENCER_OT_snap); WM_operatortype_append(SEQUENCER_OT_next_edit); WM_operatortype_append(SEQUENCER_OT_previous_edit); + WM_operatortype_append(SEQUENCER_OT_swap_right); + WM_operatortype_append(SEQUENCER_OT_swap_left); WM_operatortype_append(SEQUENCER_OT_view_all); WM_operatortype_append(SEQUENCER_OT_view_selected); @@ -147,6 +149,8 @@ void sequencer_keymap(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "SEQUENCER_OT_next_edit", PAGEUPKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "SEQUENCER_OT_previous_edit", PAGEDOWNKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_right", RKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_left", LKEY, KM_PRESS, KM_CTRL, 0); /* Mouse selection, a bit verbose :/ */ WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); From 9aa380b67ee0bf5542fd2b190bc6349b5bf9a537 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Fri, 30 Oct 2009 20:47:13 +0000 Subject: [PATCH 269/412] Make Collada False by default everywhere --- config/win32-mingw-config.py | 4 ++++ tools/btools.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py index 6b10b410715..b519aa95ca7 100644 --- a/config/win32-mingw-config.py +++ b/config/win32-mingw-config.py @@ -126,6 +126,10 @@ BF_OPENGL_LIB = 'opengl32 glu32' BF_OPENGL_LIB_STATIC = [ '${BF_OPENGL}/lib/libGL.a', '${BF_OPENGL}/lib/libGLU.a', '${BF_OPENGL}/lib/libXmu.a', '${BF_OPENGL}/lib/libXext.a', '${BF_OPENGL}/lib/libX11.a', '${BF_OPENGL}/lib/libXi.a' ] + +# Disable Collada by default +WITH_BF_COLLADA = False + ## CC = 'gcc' CXX = 'g++' diff --git a/tools/btools.py b/tools/btools.py index 4f554a6901b..326c0412cea 100755 --- a/tools/btools.py +++ b/tools/btools.py @@ -335,7 +335,7 @@ def read_opts(cfg, args): ('BF_OPENGL_LIB_STATIC', 'OpenGL static libraries', ''), ('BF_OPENGL_LINKFLAGS', 'OpenGL link flags', ''), - (BoolVariable('WITH_BF_COLLADA', 'Build COLLADA import/export module if true', True)), + (BoolVariable('WITH_BF_COLLADA', 'Build COLLADA import/export module if true', False)), ('BF_COLLADA', 'COLLADA base path', ''), ('BF_COLLADA_INC', 'COLLADA include path', ''), ('BF_COLLADA_LIB', 'COLLADA library', ''), From 9c1fc8497b4f5fc0cf85e2b1a0e6978be281ab0a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Oct 2009 21:40:07 +0000 Subject: [PATCH 270/412] small change to strip-swap, Made keys Alt+L/RArrowKey, added in menu, dont treat color strips like other effects --- release/scripts/ui/space_sequencer.py | 3 +++ source/blender/editors/space_sequencer/sequencer_edit.c | 6 +++--- source/blender/editors/space_sequencer/sequencer_ops.c | 5 +++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 7f6bb134283..59066097879 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -246,6 +246,9 @@ class SEQUENCER_MT_strip(bpy.types.Menu): layout.item_booleanO("sequencer.mute", "unselected", 1, text="Mute Deselected Strips") layout.itemO("sequencer.snap") + + layout.itemO("sequencer.swap_right") + layout.itemO("sequencer.swap_left") # Panels class SequencerButtonsPanel(bpy.types.Panel): diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index 7557d5420bd..a5e89b4023a 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2602,9 +2602,9 @@ static int sequencer_swap_internal_exec(bContext *C, int side) if(seq) { /* disallow effect strips */ - if (seq->effectdata || seq->seq1 || seq->seq2 || seq->seq3) + if ((seq->type!=SEQ_COLOR) && (seq->effectdata || seq->seq1 || seq->seq2 || seq->seq3)) return OPERATOR_CANCELLED; - if (active_seq->effectdata || active_seq->seq1 || active_seq->seq2 || active_seq->seq3) + if ((active_seq->type!=SEQ_COLOR) && (active_seq->effectdata || active_seq->seq1 || active_seq->seq2 || active_seq->seq3)) return OPERATOR_CANCELLED; /* disallow if parent strip (effect strip) is attached */ @@ -2668,4 +2668,4 @@ void SEQUENCER_OT_swap_left(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ -} \ No newline at end of file +} diff --git a/source/blender/editors/space_sequencer/sequencer_ops.c b/source/blender/editors/space_sequencer/sequencer_ops.c index 64192e57210..90342fc62b5 100644 --- a/source/blender/editors/space_sequencer/sequencer_ops.c +++ b/source/blender/editors/space_sequencer/sequencer_ops.c @@ -149,8 +149,9 @@ void sequencer_keymap(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "SEQUENCER_OT_next_edit", PAGEUPKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "SEQUENCER_OT_previous_edit", PAGEDOWNKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_right", RKEY, KM_PRESS, KM_CTRL, 0); - WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_left", LKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_left", LEFTARROWKEY, KM_PRESS, KM_ALT, 0); + WM_keymap_add_item(keymap, "SEQUENCER_OT_swap_right", RIGHTARROWKEY, KM_PRESS, KM_ALT, 0); + /* Mouse selection, a bit verbose :/ */ WM_keymap_add_item(keymap, "SEQUENCER_OT_select", SELECTMOUSE, KM_PRESS, 0, 0); From a8e56a274e88d32887834e68d4cc2ad9d8f1474b Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 30 Oct 2009 21:56:09 +0000 Subject: [PATCH 271/412] Commit of Patch [#19711] Add Menu Item: View3d -> View -> Show All Layers by Jeff Doyle (nfz). Thanks! This adds: * "Show All Layers" to the View3d -> View menu * "Center Cursor and View All" and "Align Active Camera to View" to the align view submenu. --- release/scripts/ui/space_view3d.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 68c28370eb6..5472e7c0863 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -108,6 +108,10 @@ class VIEW3D_MT_view(bpy.types.Menu): layout.itemO("view3d.clip_border", text="Clipping Border...") layout.itemO("view3d.zoom_border", text="Zoom Border...") + layout.itemS() + + layout.item_intO("view3d.layers", "nr", 0, text="Show All Layers") + layout.itemS() layout.itemO("view3d.localview", text="View Global/Local") @@ -146,6 +150,8 @@ class VIEW3D_MT_view_align(bpy.types.Menu): def draw(self, context): layout = self.layout + layout.item_booleanO("view3d.view_all", "center", True, text="Center Cursor and View All") + layout.itemO("view3d.camera_to_view", text="Align Active Camera to View") layout.itemO("view3d.view_center") class VIEW3D_MT_view_cameras(bpy.types.Menu): From 9efc427f80a1bbb9f078acb4b56e6897f4f318ec Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 01:23:49 +0000 Subject: [PATCH 272/412] pep8 compliance for bpy_ops.py add bpy.props to the modules so you can do... from bpy.props import * --- release/scripts/modules/bpy_ops.py | 821 ++++++++++++++----------- source/blender/python/intern/bpy_rna.c | 1 + 2 files changed, 454 insertions(+), 368 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index fbb4a8b537d..e7f4b60ee98 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -1,422 +1,507 @@ # for slightly faster access -from bpy.__ops__ import add as op_add -from bpy.__ops__ import remove as op_remove -from bpy.__ops__ import dir as op_dir -from bpy.__ops__ import call as op_call -from bpy.__ops__ import as_string as op_as_string -from bpy.__ops__ import get_rna as op_get_rna +from bpy.__ops__ import add as op_add +from bpy.__ops__ import remove as op_remove +from bpy.__ops__ import dir as op_dir +from bpy.__ops__ import call as op_call +from bpy.__ops__ import as_string as op_as_string +from bpy.__ops__ import get_rna as op_get_rna # Keep in sync with WM_types.h context_dict = { - 'INVOKE_DEFAULT':0, - 'INVOKE_REGION_WIN':1, - 'INVOKE_AREA':2, - 'INVOKE_SCREEN':3, - 'EXEC_DEFAULT':4, - 'EXEC_REGION_WIN':5, - 'EXEC_AREA':6, - 'EXEC_SCREEN':7, + 'INVOKE_DEFAULT': 0, + 'INVOKE_REGION_WIN': 1, + 'INVOKE_AREA': 2, + 'INVOKE_SCREEN': 3, + 'EXEC_DEFAULT': 4, + 'EXEC_REGION_WIN': 5, + 'EXEC_AREA': 6, + 'EXEC_SCREEN': 7, } + class bpy_ops(object): - ''' - Fake module like class. + ''' + Fake module like class. - bpy.ops - ''' + bpy.ops + ''' - def __getattr__(self, module): - ''' - gets a bpy.ops submodule - ''' - if module.startswith('__'): - raise AttributeError(module) - return bpy_ops_submodule(module) - - def add(self, pyop): - op_add(pyop) - - def remove(self, pyop): - op_remove(pyop) - - def __dir__(self): - - submodules = set() - - # add this classes functions - for id_name in dir(self.__class__): - if not id_name.startswith('__'): - submodules.add(id_name) - - for id_name in op_dir(): - id_split = id_name.split('_OT_', 1) - - if len(id_split) == 2: - submodules.add(id_split[0].lower()) - else: - submodules.add(id_split[0]) - - return list(submodules) - - def __repr__(self): - return "" + def __getattr__(self, module): + ''' + gets a bpy.ops submodule + ''' + if module.startswith('__'): + raise AttributeError(module) + return bpy_ops_submodule(module) + + def add(self, pyop): + op_add(pyop) + + def remove(self, pyop): + op_remove(pyop) + + def __dir__(self): + + submodules = set() + + # add this classes functions + for id_name in dir(self.__class__): + if not id_name.startswith('__'): + submodules.add(id_name) + + for id_name in op_dir(): + id_split = id_name.split('_OT_', 1) + + if len(id_split) == 2: + submodules.add(id_split[0].lower()) + else: + submodules.add(id_split[0]) + + return list(submodules) + + def __repr__(self): + return "" class bpy_ops_submodule(object): - ''' - Utility class to fake submodules. - - eg. bpy.ops.object - ''' - __keys__ = ('module',) - - def __init__(self, module): - self.module = module - - def __getattr__(self, func): - ''' - gets a bpy.ops.submodule function - ''' - return bpy_ops_submodule_op(self.module, func) - - def __dir__(self): - - functions = set() - - module_upper = self.module.upper() - - for id_name in op_dir(): - id_split = id_name.split('_OT_', 1) - if len(id_split) == 2 and module_upper == id_split[0]: - functions.add(id_split[1]) - - return list(functions) - - def __repr__(self): - return "" % self.module + ''' + Utility class to fake submodules. + + eg. bpy.ops.object + ''' + __keys__ = ('module',) + + def __init__(self, module): + self.module = module + + def __getattr__(self, func): + ''' + gets a bpy.ops.submodule function + ''' + return bpy_ops_submodule_op(self.module, func) + + def __dir__(self): + + functions = set() + + module_upper = self.module.upper() + + for id_name in op_dir(): + id_split = id_name.split('_OT_', 1) + if len(id_split) == 2 and module_upper == id_split[0]: + functions.add(id_split[1]) + + return list(functions) + + def __repr__(self): + return "" % self.module + class bpy_ops_submodule_op(object): - ''' - Utility class to fake submodule operators. - - eg. bpy.ops.object.somefunc - ''' - __keys__ = ('module', 'func') - def __init__(self, module, func): - self.module = module - self.func = func - - def idname(self): - # submod.foo -> SUBMOD_OT_foo - return self.module.upper() + '_OT_' + self.func - - def __call__(self, *args, **kw): - - # Get the operator from blender - if len(args) > 2: - raise ValueError("only 1 or 2 arguments for the execution context is supported") - - C_dict = None - - if args: - - C_exec = 'EXEC_DEFAULT' - - if len(args) == 2: - C_exec = args[0] - C_dict = args[1] - else: - if type(args[0]) != str: - C_dict= args[0] - else: - C_exec= args[0] - - try: - context = context_dict[C_exec] - except: - raise ValueError("Expected a single context argument in: " + str(list(context_dict.keys()))) - - if len(args) == 2: - C_dict= args[1] - - return op_call(self.idname() , C_dict, kw, context) - - else: - return op_call(self.idname(), C_dict, kw) - - def get_rna(self): - ''' - currently only used for '__rna__' - ''' - return op_get_rna(self.idname()) - - - def __repr__(self): # useful display, repr(op) - return op_as_string(self.idname()) - - def __str__(self): # used for print(...) - return "" % (self.module, self.func, id(self)) + ''' + Utility class to fake submodule operators. + + eg. bpy.ops.object.somefunc + ''' + + __keys__ = ('module', 'func') + + def __init__(self, module, func): + self.module = module + self.func = func + + def idname(self): + # submod.foo -> SUBMOD_OT_foo + return self.module.upper() + '_OT_' + self.func + + def __call__(self, *args, **kw): + + # Get the operator from blender + if len(args) > 2: + raise ValueError("1 or 2 args execution context is supported") + + C_dict = None + + if args: + + C_exec = 'EXEC_DEFAULT' + + if len(args) == 2: + C_exec = args[0] + C_dict = args[1] + else: + if type(args[0]) != str: + C_dict = args[0] + else: + C_exec = args[0] + + try: + context = context_dict[C_exec] + except: + raise ValueError("Expected a single context argument in: " + \ + str(list(context_dict.keys()))) + + if len(args) == 2: + C_dict = args[1] + + return op_call(self.idname(), C_dict, kw, context) + + else: + return op_call(self.idname(), C_dict, kw) + + def get_rna(self): + ''' + currently only used for '__rna__' + ''' + return op_get_rna(self.idname()) + + def __repr__(self): # useful display, repr(op) + return op_as_string(self.idname()) + + def __str__(self): # used for print(...) + return "" % \ + (self.module, self.func, id(self)) import bpy bpy.ops = bpy_ops() # TODO, C macro's cant define settings :| -class MESH_OT_delete_edgeloop(bpy.types.Operator): - '''Export a single object as a stanford PLY with normals, colours and texture coordinates.''' - __idname__ = "mesh.delete_edgeloop" - __label__ = "Delete Edge Loop" - - def execute(self, context): - bpy.ops.tfm.edge_slide(value=1.0) - bpy.ops.mesh.select_more() - bpy.ops.mesh.remove_doubles() - return ('FINISHED',) +from bpy.props import * + + +class MESH_OT_delete_edgeloop(bpy.types.Operator): + '''Export a single object as a stanford PLY with normals, + colours and texture coordinates.''' + __idname__ = "mesh.delete_edgeloop" + __label__ = "Delete Edge Loop" + + def execute(self, context): + bpy.ops.tfm.edge_slide(value=1.0) + bpy.ops.mesh.select_more() + bpy.ops.mesh.remove_doubles() + return ('FINISHED',) + +rna_path_prop = StringProperty(attr="path", name="Context Attributes", + description="rna context string", maxlen=1024, default="") + +rna_reverse_prop = BoolProperty(attr="reverse", name="Reverse", + description="Cycle backwards", default=False) -rna_path_prop = bpy.props.StringProperty(attr="path", name="Context Attributes", description="rna context string", maxlen= 1024, default= "") -rna_reverse_prop = bpy.props.BoolProperty(attr="reverse", name="Reverse", description="Cycle backwards", default= False) class NullPathMember: - pass + pass + def context_path_validate(context, path): - import sys - try: - value = eval("context.%s" % path) - except AttributeError: - if "'NoneType'" in str(sys.exc_info()[1]): - # One of the items in the rna path is None, just ignore this - value = NullPathMember - else: - # We have a real error in the rna path, dont ignore that - raise - - return value - - + import sys + try: + value = eval("context.%s" % path) + except AttributeError: + if "'NoneType'" in str(sys.exc_info()[1]): + # One of the items in the rna path is None, just ignore this + value = NullPathMember + else: + # We have a real error in the rna path, dont ignore that + raise + + return value + def execute_context_assign(self, context): - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s=self.value" % self.path) - return ('FINISHED',) + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s=self.value" % self.path) + return ('FINISHED',) + class WM_OT_context_set_boolean(bpy.types.Operator): - '''Set a context value.''' - __idname__ = "wm.context_set_boolean" - __label__ = "Context Set" - __props__ = [rna_path_prop, bpy.props.BoolProperty(attr="value", name="Value", description="Assignment value", default= True)] - execute = execute_context_assign + '''Set a context value.''' + __idname__ = "wm.context_set_boolean" + __label__ = "Context Set" + __props__ = [ + rna_path_prop, + BoolProperty(attr="value", name="Value", + description="Assignment value", default=True)] + + execute = execute_context_assign + class WM_OT_context_set_int(bpy.types.Operator): # same as enum - '''Set a context value.''' - __idname__ = "wm.context_set_int" - __label__ = "Context Set" - __props__ = [rna_path_prop, bpy.props.IntProperty(attr="value", name="Value", description="Assignment value", default= 0)] - execute = execute_context_assign - + '''Set a context value.''' + __idname__ = "wm.context_set_int" + __label__ = "Context Set" + __props__ = [ + rna_path_prop, + IntProperty(attr="value", name="Value", + description="Assignment value", default=0)] + execute = execute_context_assign + + class WM_OT_context_set_float(bpy.types.Operator): # same as enum - '''Set a context value.''' - __idname__ = "wm.context_set_int" - __label__ = "Context Set" - __props__ = [rna_path_prop, bpy.props.FloatProperty(attr="value", name="Value", description="Assignment value", default= 0.0)] - execute = execute_context_assign + '''Set a context value.''' + __idname__ = "wm.context_set_int" + __label__ = "Context Set" + __props__ = [ + rna_path_prop, + FloatProperty(attr="value", name="Value", + description="Assignment value", default=0.0)] + execute = execute_context_assign + class WM_OT_context_set_string(bpy.types.Operator): # same as enum - '''Set a context value.''' - __idname__ = "wm.context_set_string" - __label__ = "Context Set" - __props__ = [rna_path_prop, bpy.props.StringProperty(attr="value", name="Value", description="Assignment value", maxlen= 1024, default= "")] - execute = execute_context_assign + '''Set a context value.''' + __idname__ = "wm.context_set_string" + __label__ = "Context Set" + __props__ = [ + rna_path_prop, + StringProperty(attr="value", name="Value", + description="Assignment value", maxlen=1024, default="")] + + execute = execute_context_assign + class WM_OT_context_set_enum(bpy.types.Operator): - '''Set a context value.''' - __idname__ = "wm.context_set_enum" - __label__ = "Context Set" - __props__ = [rna_path_prop, bpy.props.StringProperty(attr="value", name="Value", description="Assignment value (as a string)", maxlen= 1024, default= "")] - execute = execute_context_assign + '''Set a context value.''' + __idname__ = "wm.context_set_enum" + __label__ = "Context Set" + __props__ = [ + rna_path_prop, + StringProperty(attr="value", name="Value", + description="Assignment value (as a string)", + maxlen=1024, default="")] + + execute = execute_context_assign + class WM_OT_context_toggle(bpy.types.Operator): - '''Toggle a context value.''' - __idname__ = "wm.context_toggle" - __label__ = "Context Toggle" - __props__ = [rna_path_prop] - def execute(self, context): - - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s=not (context.%s)" % (self.path, self.path)) # security nuts will complain. - return ('FINISHED',) + '''Toggle a context value.''' + __idname__ = "wm.context_toggle" + __label__ = "Context Toggle" + __props__ = [rna_path_prop] + + def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s=not (context.%s)" % (self.path, self.path)) + return ('FINISHED',) + class WM_OT_context_toggle_enum(bpy.types.Operator): - '''Toggle a context value.''' - __idname__ = "wm.context_toggle_enum" - __label__ = "Context Toggle Values" - __props__ = [ - rna_path_prop, - bpy.props.StringProperty(attr="value_1", name="Value", description="Toggle enum", maxlen= 1024, default= ""), - bpy.props.StringProperty(attr="value_2", name="Value", description="Toggle enum", maxlen= 1024, default= "") - ] - def execute(self, context): - - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s = ['%s', '%s'][context.%s!='%s']" % (self.path, self.value_1, self.value_2, self.path, self.value_2)) # security nuts will complain. - return ('FINISHED',) + '''Toggle a context value.''' + __idname__ = "wm.context_toggle_enum" + __label__ = "Context Toggle Values" + __props__ = [ + rna_path_prop, + StringProperty(attr="value_1", name="Value", \ + description="Toggle enum", maxlen=1024, default=""), + + StringProperty(attr="value_2", name="Value", \ + description="Toggle enum", maxlen=1024, default="")] + + def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s = ['%s', '%s'][context.%s!='%s']" % \ + (self.path, self.value_1, self.value_2, self.path, self.value_2)) + + return ('FINISHED',) + class WM_OT_context_cycle_int(bpy.types.Operator): - '''Set a context value. Useful for cycling active material, vertex keys, groups' etc.''' - __idname__ = "wm.context_cycle_int" - __label__ = "Context Int Cycle" - __props__ = [rna_path_prop, rna_reverse_prop] - def execute(self, context): - - value = context_path_validate(context, self.path) - if value == NullPathMember: - return ('PASS_THROUGH',) - - self.value = value - if self.reverse: self.value -= 1 - else: self.value += 1 - execute_context_assign(self, context) - - if self.value != eval("context.%s" % self.path): - # relies on rna clamping int's out of the range - if self.reverse: self.value = (1<<32) - else: self.value = -(1<<32) - execute_context_assign(self, context) - - return ('FINISHED',) + '''Set a context value. Useful for cycling active material, + vertex keys, groups' etc.''' + __idname__ = "wm.context_cycle_int" + __label__ = "Context Int Cycle" + __props__ = [rna_path_prop, rna_reverse_prop] + + def execute(self, context): + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + self.value = value + if self.reverse: + self.value -= 1 + else: + self.value += 1 + execute_context_assign(self, context) + + if self.value != eval("context.%s" % self.path): + # relies on rna clamping int's out of the range + if self.reverse: + self.value = (1 << 32) + else: + self.value = - (1 << 32) + execute_context_assign(self, context) + + return ('FINISHED',) + class WM_OT_context_cycle_enum(bpy.types.Operator): - '''Toggle a context value.''' - __idname__ = "wm.context_cycle_enum" - __label__ = "Context Enum Cycle" - __props__ = [rna_path_prop, rna_reverse_prop] - def execute(self, context): - - value = context_path_validate(context, self.path) - if value == NullPathMember: - return ('PASS_THROUGH',) - - orig_value = value - - # Have to get rna enum values - rna_struct_str, rna_prop_str = self.path.rsplit('.', 1) - i = rna_prop_str.find('[') - if i != -1: rna_prop_str = rna_prop_str[0:i] # just incse we get "context.foo.bar[0]" - - rna_struct = eval("context.%s.rna_type" % rna_struct_str) - - rna_prop = rna_struct.properties[rna_prop_str] - - if type(rna_prop) != bpy.types.EnumProperty: - raise Exception("expected an enum property") - - enums = rna_struct.properties[rna_prop_str].items.keys() - orig_index = enums.index(orig_value) - - # Have the info we need, advance to the next item - if self.reverse: - if orig_index==0: advance_enum = enums[-1] - else: advance_enum = enums[orig_index-1] - else: - if orig_index==len(enums)-1: advance_enum = enums[0] - else: advance_enum = enums[orig_index+1] - - # set the new value - exec("context.%s=advance_enum" % self.path) - return ('FINISHED',) + '''Toggle a context value.''' + __idname__ = "wm.context_cycle_enum" + __label__ = "Context Enum Cycle" + __props__ = [rna_path_prop, rna_reverse_prop] -doc_id = bpy.props.StringProperty(attr="doc_id", name="Doc ID", description="ID for the documentation", maxlen= 1024, default= "") -doc_new = bpy.props.StringProperty(attr="doc_new", name="Doc New", description="", maxlen= 1024, default= "") + def execute(self, context): + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + orig_value = value + + # Have to get rna enum values + rna_struct_str, rna_prop_str = self.path.rsplit('.', 1) + i = rna_prop_str.find('[') + + # just incse we get "context.foo.bar[0]" + if i != -1: + rna_prop_str = rna_prop_str[0:i] + + rna_struct = eval("context.%s.rna_type" % rna_struct_str) + + rna_prop = rna_struct.properties[rna_prop_str] + + if type(rna_prop) != bpy.types.EnumProperty: + raise Exception("expected an enum property") + + enums = rna_struct.properties[rna_prop_str].items.keys() + orig_index = enums.index(orig_value) + + # Have the info we need, advance to the next item + if self.reverse: + if orig_index == 0: + advance_enum = enums[-1] + else: + advance_enum = enums[orig_index-1] + else: + if orig_index == len(enums) - 1: + advance_enum = enums[0] + else: + advance_enum = enums[orig_index + 1] + + # set the new value + exec("context.%s=advance_enum" % self.path) + return ('FINISHED',) + +doc_id = StringProperty(attr="doc_id", name="Doc ID", + description="ID for the documentation", maxlen=1024, default="") + +doc_new = StringProperty(attr="doc_new", name="Doc New", + description="", maxlen=1024, default="") class WM_OT_doc_view(bpy.types.Operator): - '''Load online reference docs''' - __idname__ = "wm.doc_view" - __label__ = "View Documentation" - __props__ = [doc_id] - _prefix = 'http://www.blender.org/documentation/250PythonDoc' - - def _nested_class_string(self, class_string): - ls = [] - class_obj = getattr(bpy.types, class_string, None).__rna__ - while class_obj: - ls.insert(0, class_obj) - class_obj = class_obj.nested - return '.'.join([class_obj.identifier for class_obj in ls]) - - def execute(self, context): - id_split = self.doc_id.split('.') - # Example url, http://www.graphicall.org/ftp/ideasman42/html/bpy.types.Space3DView-class.html#background_image - # Example operator http://www.graphicall.org/ftp/ideasman42/html/bpy.ops.boid-module.html#boidrule_add - if len(id_split) == 1: # rna, class - url= '%s/bpy.types.%s-class.html' % (self._prefix, id_split[0]) - elif len(id_split) == 2: # rna, class.prop - class_name, class_prop = id_split - - class_name_full = self._nested_class_string(class_name) # It so happens that epydoc nests these - - if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): - url= '%s/bpy.ops.%s-module.html#%s' % (self._prefix, class_name_full, class_prop) - else: - url= '%s/bpy.types.%s-class.html#%s' % (self._prefix, class_name_full, class_prop) - - else: - return ('PASS_THROUGH',) - - import webbrowser - webbrowser.open(url) - - return ('FINISHED',) + '''Load online reference docs''' + __idname__ = "wm.doc_view" + __label__ = "View Documentation" + __props__ = [doc_id] + _prefix = 'http://www.blender.org/documentation/250PythonDoc' + + def _nested_class_string(self, class_string): + ls = [] + class_obj = getattr(bpy.types, class_string, None).__rna__ + while class_obj: + ls.insert(0, class_obj) + class_obj = class_obj.nested + return '.'.join([class_obj.identifier for class_obj in ls]) + + def execute(self, context): + id_split = self.doc_id.split('.') + if len(id_split) == 1: # rna, class + url = '%s/bpy.types.%s-class.html' % (self._prefix, id_split[0]) + elif len(id_split) == 2: # rna, class.prop + class_name, class_prop = id_split + + # It so happens that epydoc nests these + class_name_full = self._nested_class_string(class_name) + + if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): + url = '%s/bpy.ops.%s-module.html#%s' % \ + (self._prefix, class_name_full, class_prop) + else: + url = '%s/bpy.types.%s-class.html#%s' % \ + (self._prefix, class_name_full, class_prop) + + else: + return ('PASS_THROUGH',) + + import webbrowser + webbrowser.open(url) + + return ('FINISHED',) class WM_OT_doc_edit(bpy.types.Operator): - '''Load online reference docs''' - __idname__ = "wm.doc_edit" - __label__ = "Edit Documentation" - __props__ = [doc_id, doc_new] - - - def _send_xmlrpc(self, data_dict): - print("sending data:", data_dict) - - import xmlrpc.client - user = 'blenderuser' - pwd = 'blender>user' - - docblog = xmlrpc.client.ServerProxy("http://www.mindrones.com/blender/svn/xmlrpc.php") - docblog.metaWeblog.newPost(1,user,pwd, data_dict,1) - - def execute(self, context): - - class_name, class_prop = self.doc_id.split('.') - - if self.doc_new: - op_class = getattr(bpy.types, class_name.upper() + '_OT_' + class_prop, None) - - if op_class: - doc_orig = op_class.__rna__.description - if doc_orig != self.doc_new: - print("operator - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - self._send_xmlrpc({'title':'OPERATOR %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) - else: - doc_orig = getattr(bpy.types, class_name).__rna__.properties[class_prop].description - if doc_orig != self.doc_new: - print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - # Ugh, will run this on every edit.... better not make any mistakes - self._send_xmlrpc({'title':'RNA %s:%s' % (self.doc_id,doc_orig),'description':self.doc_new}) - - return ('FINISHED',) - - def invoke(self, context, event): - wm = context.manager - wm.invoke_props_popup(self.__operator__, event) - return ('RUNNING_MODAL',) + '''Load online reference docs''' + __idname__ = "wm.doc_edit" + __label__ = "Edit Documentation" + __props__ = [doc_id, doc_new] + _url = "http://www.mindrones.com/blender/svn/xmlrpc.php" + + def _send_xmlrpc(self, data_dict): + print("sending data:", data_dict) + + import xmlrpc.client + user = 'blenderuser' + pwd = 'blender>user' + + docblog = xmlrpc.client.ServerProxy(self._url) + docblog.metaWeblog.newPost(1, user, pwd, data_dict, 1) + + def execute(self, context): + + class_name, class_prop = self.doc_id.split('.') + + if not self.doc_new: + return 'OPERATOR_CANCELLED' + + # check if this is an operator + op_name = class_name.upper() + '_OT_' + class_prop + op_class = getattr(bpy.types, op_name, None) + + # Upload this to the web server + upload = {} + + if op_class: + rna = op_class.__rna__ + doc_orig = rna.description + if doc_orig == self.doc_new: + return 'OPERATOR_CANCELLED' + + print("op - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + upload["title"] = 'OPERATOR %s:%s' % (self.doc_id, doc_orig) + upload["description"] = self.doc_new + + self._send_xmlrpc(upload) + + else: + rna = getattr(bpy.types, class_name).__rna__ + doc_orig = rna.properties[class_prop].description + if doc_orig == self.doc_new: + return 'OPERATOR_CANCELLED' + + print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) + + upload["description"] = self.doc_new + + self._send_xmlrpc(upload) + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.invoke_props_popup(self.__operator__, event) + return ('RUNNING_MODAL',) bpy.ops.add(MESH_OT_delete_edgeloop) diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index 50a2213ef28..d9c996474fd 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -2723,6 +2723,7 @@ PyObject *BPY_rna_props( void ) { PyObject *submodule; submodule= PyModule_Create(&props_module); + PyDict_SetItemString(PySys_GetObject("modules"), props_module.m_name, submodule); /* INCREF since its its assumed that all these functions return the * module with a new ref like PyDict_New, since they are passed to From ea8c41bf54b599e64b6c847b0dcc64a82f209dc0 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sat, 31 Oct 2009 02:54:27 +0000 Subject: [PATCH 273/412] Resizing didn't handle PET correctly for size attributes (position was ok, that's why it worked alright in edit mode). --- source/blender/editors/transform/transform.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 5fd728feb36..f582fd03ba8 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -2356,7 +2356,7 @@ static void ElementResize(TransInfo *t, TransData *td, float mat[3][3]) { if ((t->flag & T_V3D_ALIGN)==0) { // align mode doesn't resize objects itself if((td->flag & TD_SINGLESIZE) && !(t->con.mode & CON_APPLY)){ /* scale val and reset size */ - *td->val = td->ival * fsize[0] * td->factor; + *td->val = td->ival * (1 + (fsize[0] - 1) * td->factor); td->ext->size[0] = td->ext->isize[0]; td->ext->size[1] = td->ext->isize[1]; @@ -2367,9 +2367,9 @@ static void ElementResize(TransInfo *t, TransData *td, float mat[3][3]) { if (td->flag & TD_SINGLESIZE) *td->val = td->ival; - td->ext->size[0] = td->ext->isize[0] * (fsize[0]) * td->factor; - td->ext->size[1] = td->ext->isize[1] * (fsize[1]) * td->factor; - td->ext->size[2] = td->ext->isize[2] * (fsize[2]) * td->factor; + td->ext->size[0] = td->ext->isize[0] * (1 + (fsize[0] - 1) * td->factor); + td->ext->size[1] = td->ext->isize[1] * (1 + (fsize[1] - 1) * td->factor); + td->ext->size[2] = td->ext->isize[2] * (1 + (fsize[2] - 1) * td->factor); } } From 85eb9d6a2f0a0d94f795fc5264670e85ad56992f Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sat, 31 Oct 2009 10:17:19 +0000 Subject: [PATCH 274/412] Commit of Patch [#19768] Add View3d Menu Items: View -> Playback Animation and View->Cameras->Active Camera by Jeff Doyle (nfz). Thanks! --- release/scripts/ui/space_view3d.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 5472e7c0863..90447b6d777 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -122,7 +122,10 @@ class VIEW3D_MT_view(bpy.types.Menu): layout.itemO("screen.region_foursplit", text="Toggle Quad View") layout.itemO("screen.screen_full_area", text="Toggle Full Screen") - + + layout.itemS() + + layout.itemO("screen.animation_play", text="Playback Animation", icon='ICON_PLAY') class VIEW3D_MT_view_navigation(bpy.types.Menu): __label__ = "Navigation" @@ -161,6 +164,7 @@ class VIEW3D_MT_view_cameras(bpy.types.Menu): layout = self.layout layout.itemO("view3d.object_as_camera") + layout.item_enumO("view3d.viewnumpad", "type", 'CAMERA', text="Active Camera") # ********** Select menus, suffix from context.mode ********** From ea265fc69702566a846be3005d9fd814a10d7d54 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 13:31:23 +0000 Subject: [PATCH 275/412] change blender python interface for classes not to ise __idname__ rather bl_idname since __somename__ is for pythons internal use. replacements... "__idname__" -> "bl_idname" "__props__" -> "bl_props" "__label__" -> "bl_label" "__register__" -> "bl_register" "__undo__" -> "bl_undo" "__space_type__" -> "bl_space_type" "__default_closed__" -> "bl_default_closed" "__region_type__" -> "bl_region_type" "__context__" -> "bl_context" "__show_header__" -> "bl_show_header" "__URL__" -> "_url" --- release/scripts/io/add_mesh_torus.py | 10 +- release/scripts/io/engine_render_pov.py | 12 +- release/scripts/io/export_3ds.py | 6 +- release/scripts/io/export_fbx.py | 6 +- release/scripts/io/export_mdd.py | 6 +- release/scripts/io/export_obj.py | 6 +- release/scripts/io/export_ply.py | 6 +- release/scripts/io/export_x3d.py | 6 +- release/scripts/io/import_3ds.py | 6 +- release/scripts/io/import_obj.py | 6 +- release/scripts/io/mesh_skin.py | 10 +- release/scripts/io/netrender/client.py | 4 +- release/scripts/io/netrender/operators.py | 66 +++---- release/scripts/io/netrender/ui.py | 16 +- release/scripts/modules/bpy_ops.py | 78 ++++---- release/scripts/templates/operator.py | 6 +- release/scripts/templates/operator_simple.py | 4 +- release/scripts/ui/buttons_data_armature.py | 18 +- release/scripts/ui/buttons_data_bone.py | 22 +-- release/scripts/ui/buttons_data_camera.py | 12 +- release/scripts/ui/buttons_data_curve.py | 16 +- release/scripts/ui/buttons_data_empty.py | 8 +- release/scripts/ui/buttons_data_lamp.py | 24 +-- release/scripts/ui/buttons_data_lattice.py | 10 +- release/scripts/ui/buttons_data_mesh.py | 20 +-- release/scripts/ui/buttons_data_metaball.py | 12 +- release/scripts/ui/buttons_data_modifier.py | 8 +- release/scripts/ui/buttons_data_text.py | 18 +- release/scripts/ui/buttons_game.py | 40 ++--- release/scripts/ui/buttons_material.py | 68 +++---- release/scripts/ui/buttons_object.py | 24 +-- .../scripts/ui/buttons_object_constraint.py | 26 +-- release/scripts/ui/buttons_particle.py | 48 ++--- release/scripts/ui/buttons_physics_cloth.py | 24 +-- release/scripts/ui/buttons_physics_field.py | 12 +- release/scripts/ui/buttons_physics_fluid.py | 20 +-- release/scripts/ui/buttons_physics_smoke.py | 28 +-- .../scripts/ui/buttons_physics_softbody.py | 32 ++-- release/scripts/ui/buttons_render.py | 36 ++-- release/scripts/ui/buttons_scene.py | 16 +- release/scripts/ui/buttons_texture.py | 56 +++--- release/scripts/ui/buttons_world.py | 18 +- release/scripts/ui/space_buttons.py | 4 +- release/scripts/ui/space_console.py | 18 +- release/scripts/ui/space_filebrowser.py | 2 +- release/scripts/ui/space_image.py | 58 +++--- release/scripts/ui/space_info.py | 70 ++++---- release/scripts/ui/space_logic.py | 6 +- release/scripts/ui/space_node.py | 8 +- release/scripts/ui/space_outliner.py | 6 +- release/scripts/ui/space_sequencer.py | 36 ++-- release/scripts/ui/space_text.py | 30 ++-- release/scripts/ui/space_time.py | 10 +- release/scripts/ui/space_userpref.py | 62 +++---- release/scripts/ui/space_view3d.py | 170 +++++++++--------- release/scripts/ui/space_view3d_toolbar.py | 88 ++++----- source/blender/makesrna/intern/rna_ui.c | 24 +-- source/blender/python/epy_doc_gen.py | 4 +- .../blender/python/intern/bpy_operator_wrap.c | 16 +- source/blender/python/intern/bpy_rna.c | 22 +-- source/blender/python/rna_dump.py | 4 +- 61 files changed, 755 insertions(+), 753 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index f413fe72e4d..1f5d4a25229 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -49,11 +49,11 @@ def add_torus(PREF_MAJOR_RAD, PREF_MINOR_RAD, PREF_MAJOR_SEG, PREF_MINOR_SEG): class MESH_OT_primitive_torus_add(bpy.types.Operator): '''Add a torus mesh.''' - __idname__ = "mesh.primitive_torus_add" - __label__ = "Add Torus" - __register__ = True - __undo__ = True - __props__ = [ + bl_idname = "mesh.primitive_torus_add" + bl_label = "Add Torus" + bl_register = True + bl_undo = True + bl_props = [ bpy.props.FloatProperty(attr="major_radius", name="Major Radius", description="Number of segments for the main ring of the torus", default= 1.0, min= 0.01, max= 100.0), bpy.props.FloatProperty(attr="minor_radius", name="Minor Radius", description="Number of segments for the minor ring of the torus", default= 0.25, min= 0.01, max= 100.0), bpy.props.IntProperty(attr="major_segments", name="Major Segments", description="Number of segments for the main ring of the torus", default= 48, min= 3, max= 256), diff --git a/release/scripts/io/engine_render_pov.py b/release/scripts/io/engine_render_pov.py index f69c8a267e0..6e5edfb5e05 100644 --- a/release/scripts/io/engine_render_pov.py +++ b/release/scripts/io/engine_render_pov.py @@ -697,8 +697,8 @@ IntProperty( attr="pov_radio_recursion_limit", class PovrayRender(bpy.types.RenderEngine): - __idname__ = 'POVRAY_RENDER' - __label__ = "Povray" + bl_idname = 'POVRAY_RENDER' + bl_label = "Povray" DELAY = 0.02 def _export(self, scene): @@ -850,9 +850,9 @@ for member in dir(buttons_material): del buttons_material class RenderButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "render" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "render" # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here def poll(self, context): @@ -860,7 +860,7 @@ class RenderButtonsPanel(bpy.types.Panel): return (rd.use_game_engine==False) and (rd.engine in self.COMPAT_ENGINES) class RENDER_PT_povray_radiosity(RenderButtonsPanel): - __label__ = "Radiosity" + bl_label = "Radiosity" COMPAT_ENGINES = set(['POVRAY_RENDER']) def draw_header(self, context): diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index 99913523fd3..c31847a99a7 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1093,13 +1093,13 @@ def save_3ds(filename, context): class EXPORT_OT_autodesk_3ds(bpy.types.Operator): '''Export to 3DS file format (.3ds).''' - __idname__ = "export.autodesk_3ds" - __label__ = 'Export 3DS' + bl_idname = "export.autodesk_3ds" + bl_label = 'Export 3DS' # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ # bpy.props.StringProperty(attr="filename", name="File Name", description="File name used for exporting the 3DS file", maxlen= 1024, default= ""), bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the 3DS file", maxlen= 1024, default= ""), ] diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index d159c6588e5..4c3fd727169 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -3335,13 +3335,13 @@ def write_ui(): class EXPORT_OT_fbx(bpy.types.Operator): '''Selection to an ASCII Autodesk FBX''' - __idname__ = "export.fbx" - __label__ = "Export FBX" + bl_idname = "export.fbx" + bl_label = "Export FBX" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the FBX file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="EXP_OBS_SELECTED", name="Selected Objects", description="Export selected objects on visible layers", default=True), diff --git a/release/scripts/io/export_mdd.py b/release/scripts/io/export_mdd.py index 1336660aefc..9a2ba6fe67d 100644 --- a/release/scripts/io/export_mdd.py +++ b/release/scripts/io/export_mdd.py @@ -135,8 +135,8 @@ def write(filename, sce, ob, PREF_STARTFRAME, PREF_ENDFRAME, PREF_FPS): class EXPORT_OT_mdd(bpy.types.Operator): '''Animated mesh to MDD vertex keyframe file.''' - __idname__ = "export.mdd" - __label__ = "Export MDD" + bl_idname = "export.mdd" + bl_label = "Export MDD" # get first scene to get min and max properties for frames, fps @@ -148,7 +148,7 @@ class EXPORT_OT_mdd(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the MDD file", maxlen= 1024, default= "tmp.mdd"), bpy.props.IntProperty(attr="fps", name="Frames Per Second", description="Number of frames/second", min=minfps, max=maxfps, default= 25), bpy.props.IntProperty(attr="start_frame", name="Start Frame", description="Start frame for baking", min=minframe,max=maxframe,default=1), diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 1e8a152e91f..641ebec3150 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -916,13 +916,13 @@ Currently the exporter lacks these features: class EXPORT_OT_obj(bpy.types.Operator): '''Save a Wavefront OBJ File''' - __idname__ = "export.obj" - __label__ = 'Export OBJ' + bl_idname = "export.obj" + bl_label = 'Export OBJ' # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the OBJ file", maxlen= 1024, default= ""), # context group diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index 953ed4dc89e..67cd6a85599 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -233,13 +233,13 @@ def write(filename, scene, ob, \ class EXPORT_OT_ply(bpy.types.Operator): '''Export a single object as a stanford PLY with normals, colours and texture coordinates.''' - __idname__ = "export.ply" - __label__ = "Export PLY" + bl_idname = "export.ply" + bl_label = "Export PLY" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True), diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py index 2c6ca749757..ad9abc5162a 100644 --- a/release/scripts/io/export_x3d.py +++ b/release/scripts/io/export_x3d.py @@ -1198,13 +1198,13 @@ def x3d_export_ui(filename): class EXPORT_OT_x3d(bpy.types.Operator): '''Export selection to Extensible 3D file (.x3d)''' - __idname__ = "export.x3d" - __label__ = 'Export X3D' + bl_idname = "export.x3d" + bl_label = 'Export X3D' # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the X3D file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="apply_modifiers", name="Apply Modifiers", description="Use transformed mesh data from each object.", default=True), diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_3ds.py index da0634a26d7..38eef583ecd 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_3ds.py @@ -1124,13 +1124,13 @@ else: class IMPORT_OT_autodesk_3ds(bpy.types.Operator): '''Import from 3DS file format (.3ds)''' - __idname__ = "import.autodesk_3ds" - __label__ = 'Import 3DS' + bl_idname = "import.autodesk_3ds" + bl_label = 'Import 3DS' # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for importing the 3DS file", maxlen= 1024, default= ""), # bpy.props.FloatProperty(attr="size_constraint", name="Size Constraint", description="Scale the model by 10 until it reacehs the size constraint. Zero Disables.", min=0.0, max=1000.0, soft_min=0.0, soft_max=1000.0, default=10.0), diff --git a/release/scripts/io/import_obj.py b/release/scripts/io/import_obj.py index a557e4427d8..eaa76942a11 100644 --- a/release/scripts/io/import_obj.py +++ b/release/scripts/io/import_obj.py @@ -1555,13 +1555,13 @@ else: class IMPORT_OT_obj(bpy.types.Operator): '''Load a Wavefront OBJ File.''' - __idname__ = "import.obj" - __label__ = "Import OBJ" + bl_idname = "import.obj" + bl_label = "Import OBJ" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for importing the OBJ file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="CREATE_SMOOTH_GROUPS", name="Smooth Groups", description="Surround smooth groups by sharp edges", default= True), diff --git a/release/scripts/io/mesh_skin.py b/release/scripts/io/mesh_skin.py index f6fafc41111..c7528c984b2 100644 --- a/release/scripts/io/mesh_skin.py +++ b/release/scripts/io/mesh_skin.py @@ -620,13 +620,13 @@ def main(context): class MESH_OT_skin(bpy.types.Operator): '''Bridge face loops.''' - __idname__ = "mesh.skin" - __label__ = "Add Torus" - __register__ = True - __undo__ = True + bl_idname = "mesh.skin" + bl_label = "Add Torus" + bl_register = True + bl_undo = True ''' - __props__ = [ + bl_props = [ bpy.props.EnumProperty(attr="loft_method", items=[(), ()], description="", default= True), ] ''' diff --git a/release/scripts/io/netrender/client.py b/release/scripts/io/netrender/client.py index d4a7b242cab..f08e292ab2a 100644 --- a/release/scripts/io/netrender/client.py +++ b/release/scripts/io/netrender/client.py @@ -159,8 +159,8 @@ def requestResult(conn, job_id, frame): @rnaType class NetworkRenderEngine(bpy.types.RenderEngine): - __idname__ = 'NET_RENDER' - __label__ = "Network Render" + bl_idname = 'NET_RENDER' + bl_label = "Network Render" def render(self, scene): if scene.network_render.mode == "RENDER_CLIENT": self.render_client(scene) diff --git a/release/scripts/io/netrender/operators.py b/release/scripts/io/netrender/operators.py index e46b0c7b888..468cbba6564 100644 --- a/release/scripts/io/netrender/operators.py +++ b/release/scripts/io/netrender/operators.py @@ -10,13 +10,13 @@ import netrender.model @rnaOperator class RENDER_OT_netclientanim(bpy.types.Operator): '''Start rendering an animation on network''' - __idname__ = "render.netclientanim" - __label__ = "Animation on network" + bl_idname = "render.netclientanim" + bl_label = "Animation on network" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -41,13 +41,13 @@ class RENDER_OT_netclientanim(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientsend(bpy.types.Operator): '''Send Render Job to the Network''' - __idname__ = "render.netclientsend" - __label__ = "Send job" + bl_idname = "render.netclientsend" + bl_label = "Send job" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -70,13 +70,13 @@ class RENDER_OT_netclientsend(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientstatus(bpy.types.Operator): '''Refresh the status of the current jobs''' - __idname__ = "render.netclientstatus" - __label__ = "Client Status" + bl_idname = "render.netclientstatus" + bl_label = "Client Status" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -115,13 +115,13 @@ class RENDER_OT_netclientstatus(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientblacklistslave(bpy.types.Operator): '''Operator documentation text, will be used for the operator tooltip and python docs.''' - __idname__ = "render.netclientblacklistslave" - __label__ = "Client Blacklist Slave" + bl_idname = "render.netclientblacklistslave" + bl_label = "Client Blacklist Slave" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -150,13 +150,13 @@ class RENDER_OT_netclientblacklistslave(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientwhitelistslave(bpy.types.Operator): '''Operator documentation text, will be used for the operator tooltip and python docs.''' - __idname__ = "render.netclientwhitelistslave" - __label__ = "Client Whitelist Slave" + bl_idname = "render.netclientwhitelistslave" + bl_label = "Client Whitelist Slave" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -186,13 +186,13 @@ class RENDER_OT_netclientwhitelistslave(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientslaves(bpy.types.Operator): '''Refresh status about available Render slaves''' - __idname__ = "render.netclientslaves" - __label__ = "Client Slaves" + bl_idname = "render.netclientslaves" + bl_label = "Client Slaves" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -236,13 +236,13 @@ class RENDER_OT_netclientslaves(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientcancel(bpy.types.Operator): '''Cancel the selected network rendering job.''' - __idname__ = "render.netclientcancel" - __label__ = "Client Cancel" + bl_idname = "render.netclientcancel" + bl_label = "Client Cancel" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): netsettings = context.scene.network_render @@ -270,13 +270,13 @@ class RENDER_OT_netclientcancel(bpy.types.Operator): @rnaOperator class RENDER_OT_netclientcancelall(bpy.types.Operator): '''Cancel all running network rendering jobs.''' - __idname__ = "render.netclientcancelall" - __label__ = "Client Cancel All" + bl_idname = "render.netclientcancelall" + bl_label = "Client Cancel All" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -302,13 +302,13 @@ class RENDER_OT_netclientcancelall(bpy.types.Operator): @rnaOperator class netclientdownload(bpy.types.Operator): '''Download render results from the network''' - __idname__ = "render.netclientdownload" - __label__ = "Client Download" + bl_idname = "render.netclientdownload" + bl_label = "Client Download" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): netsettings = context.scene.network_render @@ -352,13 +352,13 @@ class netclientdownload(bpy.types.Operator): @rnaOperator class netclientscan(bpy.types.Operator): '''Operator documentation text, will be used for the operator tooltip and python docs.''' - __idname__ = "render.netclientscan" - __label__ = "Client Scan" + bl_idname = "render.netclientscan" + bl_label = "Client Scan" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True @@ -390,13 +390,13 @@ class netclientscan(bpy.types.Operator): @rnaOperator class netclientweb(bpy.types.Operator): '''Open new window with information about running rendering jobs''' - __idname__ = "render.netclientweb" - __label__ = "Open Master Monitor" + bl_idname = "render.netclientweb" + bl_label = "Open Master Monitor" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - __props__ = [] + bl_props = [] def poll(self, context): return True diff --git a/release/scripts/io/netrender/ui.py b/release/scripts/io/netrender/ui.py index 7d7f3c29630..b0ae5815915 100644 --- a/release/scripts/io/netrender/ui.py +++ b/release/scripts/io/netrender/ui.py @@ -18,9 +18,9 @@ DONE = 2 ERROR = 3 class RenderButtonsPanel(bpy.types.Panel): - __space_type__ = "PROPERTIES" - __region_type__ = "WINDOW" - __context__ = "render" + bl_space_type = "PROPERTIES" + bl_region_type = "WINDOW" + bl_context = "render" # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here def poll(self, context): @@ -30,7 +30,7 @@ class RenderButtonsPanel(bpy.types.Panel): # Setting panel, use in the scene for now. @rnaType class RENDER_PT_network_settings(RenderButtonsPanel): - __label__ = "Network Settings" + bl_label = "Network Settings" COMPAT_ENGINES = set(['NET_RENDER']) def draw(self, context): @@ -56,7 +56,7 @@ class RENDER_PT_network_settings(RenderButtonsPanel): @rnaType class RENDER_PT_network_job(RenderButtonsPanel): - __label__ = "Job Settings" + bl_label = "Job Settings" COMPAT_ENGINES = set(['NET_RENDER']) def poll(self, context): @@ -84,7 +84,7 @@ class RENDER_PT_network_job(RenderButtonsPanel): @rnaType class RENDER_PT_network_slaves(RenderButtonsPanel): - __label__ = "Slaves Status" + bl_label = "Slaves Status" COMPAT_ENGINES = set(['NET_RENDER']) def poll(self, context): @@ -120,7 +120,7 @@ class RENDER_PT_network_slaves(RenderButtonsPanel): @rnaType class RENDER_PT_network_slaves_blacklist(RenderButtonsPanel): - __label__ = "Slaves Blacklist" + bl_label = "Slaves Blacklist" COMPAT_ENGINES = set(['NET_RENDER']) def poll(self, context): @@ -155,7 +155,7 @@ class RENDER_PT_network_slaves_blacklist(RenderButtonsPanel): @rnaType class RENDER_PT_network_jobs(RenderButtonsPanel): - __label__ = "Jobs" + bl_label = "Jobs" COMPAT_ENGINES = set(['NET_RENDER']) def poll(self, context): diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index e7f4b60ee98..eb793b1b7bc 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -151,7 +151,7 @@ class bpy_ops_submodule_op(object): def get_rna(self): ''' - currently only used for '__rna__' + currently only used for 'bl_rna' ''' return op_get_rna(self.idname()) @@ -173,8 +173,8 @@ from bpy.props import * class MESH_OT_delete_edgeloop(bpy.types.Operator): '''Export a single object as a stanford PLY with normals, colours and texture coordinates.''' - __idname__ = "mesh.delete_edgeloop" - __label__ = "Delete Edge Loop" + bl_idname = "mesh.delete_edgeloop" + bl_label = "Delete Edge Loop" def execute(self, context): bpy.ops.tfm.edge_slide(value=1.0) @@ -218,9 +218,9 @@ def execute_context_assign(self, context): class WM_OT_context_set_boolean(bpy.types.Operator): '''Set a context value.''' - __idname__ = "wm.context_set_boolean" - __label__ = "Context Set" - __props__ = [ + bl_idname = "wm.context_set_boolean" + bl_label = "Context Set" + bl_props = [ rna_path_prop, BoolProperty(attr="value", name="Value", description="Assignment value", default=True)] @@ -230,9 +230,9 @@ class WM_OT_context_set_boolean(bpy.types.Operator): class WM_OT_context_set_int(bpy.types.Operator): # same as enum '''Set a context value.''' - __idname__ = "wm.context_set_int" - __label__ = "Context Set" - __props__ = [ + bl_idname = "wm.context_set_int" + bl_label = "Context Set" + bl_props = [ rna_path_prop, IntProperty(attr="value", name="Value", description="Assignment value", default=0)] @@ -241,9 +241,9 @@ class WM_OT_context_set_int(bpy.types.Operator): # same as enum class WM_OT_context_set_float(bpy.types.Operator): # same as enum '''Set a context value.''' - __idname__ = "wm.context_set_int" - __label__ = "Context Set" - __props__ = [ + bl_idname = "wm.context_set_int" + bl_label = "Context Set" + bl_props = [ rna_path_prop, FloatProperty(attr="value", name="Value", description="Assignment value", default=0.0)] @@ -252,9 +252,9 @@ class WM_OT_context_set_float(bpy.types.Operator): # same as enum class WM_OT_context_set_string(bpy.types.Operator): # same as enum '''Set a context value.''' - __idname__ = "wm.context_set_string" - __label__ = "Context Set" - __props__ = [ + bl_idname = "wm.context_set_string" + bl_label = "Context Set" + bl_props = [ rna_path_prop, StringProperty(attr="value", name="Value", description="Assignment value", maxlen=1024, default="")] @@ -264,9 +264,9 @@ class WM_OT_context_set_string(bpy.types.Operator): # same as enum class WM_OT_context_set_enum(bpy.types.Operator): '''Set a context value.''' - __idname__ = "wm.context_set_enum" - __label__ = "Context Set" - __props__ = [ + bl_idname = "wm.context_set_enum" + bl_label = "Context Set" + bl_props = [ rna_path_prop, StringProperty(attr="value", name="Value", description="Assignment value (as a string)", @@ -277,9 +277,9 @@ class WM_OT_context_set_enum(bpy.types.Operator): class WM_OT_context_toggle(bpy.types.Operator): '''Toggle a context value.''' - __idname__ = "wm.context_toggle" - __label__ = "Context Toggle" - __props__ = [rna_path_prop] + bl_idname = "wm.context_toggle" + bl_label = "Context Toggle" + bl_props = [rna_path_prop] def execute(self, context): @@ -292,9 +292,9 @@ class WM_OT_context_toggle(bpy.types.Operator): class WM_OT_context_toggle_enum(bpy.types.Operator): '''Toggle a context value.''' - __idname__ = "wm.context_toggle_enum" - __label__ = "Context Toggle Values" - __props__ = [ + bl_idname = "wm.context_toggle_enum" + bl_label = "Context Toggle Values" + bl_props = [ rna_path_prop, StringProperty(attr="value_1", name="Value", \ description="Toggle enum", maxlen=1024, default=""), @@ -316,9 +316,9 @@ class WM_OT_context_toggle_enum(bpy.types.Operator): class WM_OT_context_cycle_int(bpy.types.Operator): '''Set a context value. Useful for cycling active material, vertex keys, groups' etc.''' - __idname__ = "wm.context_cycle_int" - __label__ = "Context Int Cycle" - __props__ = [rna_path_prop, rna_reverse_prop] + bl_idname = "wm.context_cycle_int" + bl_label = "Context Int Cycle" + bl_props = [rna_path_prop, rna_reverse_prop] def execute(self, context): @@ -346,9 +346,9 @@ class WM_OT_context_cycle_int(bpy.types.Operator): class WM_OT_context_cycle_enum(bpy.types.Operator): '''Toggle a context value.''' - __idname__ = "wm.context_cycle_enum" - __label__ = "Context Enum Cycle" - __props__ = [rna_path_prop, rna_reverse_prop] + bl_idname = "wm.context_cycle_enum" + bl_label = "Context Enum Cycle" + bl_props = [rna_path_prop, rna_reverse_prop] def execute(self, context): @@ -401,14 +401,14 @@ doc_new = StringProperty(attr="doc_new", name="Doc New", class WM_OT_doc_view(bpy.types.Operator): '''Load online reference docs''' - __idname__ = "wm.doc_view" - __label__ = "View Documentation" - __props__ = [doc_id] + bl_idname = "wm.doc_view" + bl_label = "View Documentation" + bl_props = [doc_id] _prefix = 'http://www.blender.org/documentation/250PythonDoc' def _nested_class_string(self, class_string): ls = [] - class_obj = getattr(bpy.types, class_string, None).__rna__ + class_obj = getattr(bpy.types, class_string, None).bl_rna while class_obj: ls.insert(0, class_obj) class_obj = class_obj.nested @@ -442,9 +442,9 @@ class WM_OT_doc_view(bpy.types.Operator): class WM_OT_doc_edit(bpy.types.Operator): '''Load online reference docs''' - __idname__ = "wm.doc_edit" - __label__ = "Edit Documentation" - __props__ = [doc_id, doc_new] + bl_idname = "wm.doc_edit" + bl_label = "Edit Documentation" + bl_props = [doc_id, doc_new] _url = "http://www.mindrones.com/blender/svn/xmlrpc.php" def _send_xmlrpc(self, data_dict): @@ -472,7 +472,7 @@ class WM_OT_doc_edit(bpy.types.Operator): upload = {} if op_class: - rna = op_class.__rna__ + rna = op_class.bl_rna doc_orig = rna.description if doc_orig == self.doc_new: return 'OPERATOR_CANCELLED' @@ -484,7 +484,7 @@ class WM_OT_doc_edit(bpy.types.Operator): self._send_xmlrpc(upload) else: - rna = getattr(bpy.types, class_name).__rna__ + rna = getattr(bpy.types, class_name).bl_rna doc_orig = rna.properties[class_prop].description if doc_orig == self.doc_new: return 'OPERATOR_CANCELLED' diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index 7e3dad93ad8..30d4ad83dc6 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -3,14 +3,14 @@ def write_some_data(context, path, use_some_setting): class ExportSomeData(bpy.types.Operator): '''This appiers in the tooltip of the operator and in the generated docs.''' - __idname__ = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed - __label__ = "Export Some Data" + bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed + bl_label = "Export Some Data" # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. # TODO, add better example props - __props__ = [ + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="use_some_setting", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), ] diff --git a/release/scripts/templates/operator_simple.py b/release/scripts/templates/operator_simple.py index b82543c3bf8..f0f4b104950 100644 --- a/release/scripts/templates/operator_simple.py +++ b/release/scripts/templates/operator_simple.py @@ -4,8 +4,8 @@ def main(context): class SimpleOperator(bpy.types.Operator): '''''' - __idname__ = "object.simple_operator" - __label__ = "Simple Object Operator" + bl_idname = "object.simple_operator" + bl_label = "Simple Object Operator" def poll(self, context): return context.active_object != None diff --git a/release/scripts/ui/buttons_data_armature.py b/release/scripts/ui/buttons_data_armature.py index 0fb00b03961..db635be763c 100644 --- a/release/scripts/ui/buttons_data_armature.py +++ b/release/scripts/ui/buttons_data_armature.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.armature class DATA_PT_context_arm(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -29,7 +29,7 @@ class DATA_PT_context_arm(DataButtonsPanel): split.itemS() class DATA_PT_skeleton(DataButtonsPanel): - __label__ = "Skeleton" + bl_label = "Skeleton" def draw(self, context): layout = self.layout @@ -56,7 +56,7 @@ class DATA_PT_skeleton(DataButtonsPanel): col.itemR(arm, "deform_bbone_rest", text="B-Bones Rest") class DATA_PT_display(DataButtonsPanel): - __label__ = "Display" + bl_label = "Display" def draw(self, context): layout = self.layout @@ -73,7 +73,7 @@ class DATA_PT_display(DataButtonsPanel): flow.itemR(arm, "delay_deform", text="Delay Refresh") class DATA_PT_bone_groups(DataButtonsPanel): - __label__ = "Bone Groups" + bl_label = "Bone Groups" def poll(self, context): return (context.object and context.object.type=='ARMATURE' and context.object.pose) @@ -113,7 +113,7 @@ class DATA_PT_bone_groups(DataButtonsPanel): #row.itemO("object.bone_group_deselect", text="Deselect") class DATA_PT_paths(DataButtonsPanel): - __label__ = "Paths" + bl_label = "Paths" def draw(self, context): layout = self.layout @@ -149,7 +149,7 @@ class DATA_PT_paths(DataButtonsPanel): row.itemO("pose.paths_clear", text="Clear Paths") class DATA_PT_ghost(DataButtonsPanel): - __label__ = "Ghost" + bl_label = "Ghost" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_bone.py b/release/scripts/ui/buttons_data_bone.py index 56a1b048594..a3ac86fa841 100644 --- a/release/scripts/ui/buttons_data_bone.py +++ b/release/scripts/ui/buttons_data_bone.py @@ -2,15 +2,15 @@ import bpy class BoneButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "bone" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "bone" def poll(self, context): return (context.bone or context.edit_bone) class BONE_PT_context_bone(BoneButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -24,7 +24,7 @@ class BONE_PT_context_bone(BoneButtonsPanel): row.itemR(bone, "name", text="") class BONE_PT_transform(BoneButtonsPanel): - __label__ = "Transform" + bl_label = "Transform" def draw(self, context): layout = self.layout @@ -69,8 +69,8 @@ class BONE_PT_transform(BoneButtonsPanel): layout.itemR(pchan, "rotation_mode") class BONE_PT_transform_locks(BoneButtonsPanel): - __label__ = "Transform Locks" - __default_closed__ = True + bl_label = "Transform Locks" + bl_default_closed = True def poll(self, context): return context.bone @@ -99,7 +99,7 @@ class BONE_PT_transform_locks(BoneButtonsPanel): row.column().itemR(pchan, "lock_scale") class BONE_PT_relations(BoneButtonsPanel): - __label__ = "Relations" + bl_label = "Relations" def draw(self, context): layout = self.layout @@ -140,7 +140,7 @@ class BONE_PT_relations(BoneButtonsPanel): sub.itemR(bone, "inherit_scale", text="Inherit Scale") class BONE_PT_display(BoneButtonsPanel): - __label__ = "Display" + bl_label = "Display" def poll(self, context): return context.bone @@ -173,8 +173,8 @@ class BONE_PT_display(BoneButtonsPanel): col.itemR(pchan, "custom_shape", text="") class BONE_PT_deform(BoneButtonsPanel): - __label__ = "Deform" - __default_closed__ = True + bl_label = "Deform" + bl_default_closed = True def draw_header(self, context): bone = context.bone diff --git a/release/scripts/ui/buttons_data_camera.py b/release/scripts/ui/buttons_data_camera.py index 19d7dfef852..c76d2633a51 100644 --- a/release/scripts/ui/buttons_data_camera.py +++ b/release/scripts/ui/buttons_data_camera.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.camera class DATA_PT_context_camera(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -29,7 +29,7 @@ class DATA_PT_context_camera(DataButtonsPanel): split.itemS() class DATA_PT_camera(DataButtonsPanel): - __label__ = "Lens" + bl_label = "Lens" def draw(self, context): layout = self.layout @@ -70,7 +70,7 @@ class DATA_PT_camera(DataButtonsPanel): row.itemR(cam, "dof_distance", text="Distance") class DATA_PT_camera_display(DataButtonsPanel): - __label__ = "Display" + bl_label = "Display" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_curve.py b/release/scripts/ui/buttons_data_curve.py index 393bbf12756..e86af9bf3ab 100644 --- a/release/scripts/ui/buttons_data_curve.py +++ b/release/scripts/ui/buttons_data_curve.py @@ -2,9 +2,9 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return (context.object and context.object.type in ('CURVE', 'SURFACE') and context.curve) @@ -25,7 +25,7 @@ class DataButtonsPanelActive(DataButtonsPanel): return (curve and curve.active_spline) class DATA_PT_context_curve(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -44,7 +44,7 @@ class DATA_PT_context_curve(DataButtonsPanel): split.itemS() class DATA_PT_shape_curve(DataButtonsPanel): - __label__ = "Shape" + bl_label = "Shape" def draw(self, context): layout = self.layout @@ -96,7 +96,7 @@ class DATA_PT_shape_curve(DataButtonsPanel): # col.itemR(curve, "vertex_normal_flip") class DATA_PT_geometry_curve(DataButtonsPanel): - __label__ = "Geometry" + bl_label = "Geometry" def draw(self, context): layout = self.layout @@ -120,7 +120,7 @@ class DATA_PT_geometry_curve(DataButtonsPanel): col.itemR(curve, "bevel_object", text="") class DATA_PT_pathanim(DataButtonsPanelCurve): - __label__ = "Path Animation" + bl_label = "Path Animation" def draw_header(self, context): curve = context.curve @@ -146,7 +146,7 @@ class DATA_PT_pathanim(DataButtonsPanelCurve): col.itemR(curve, "use_time_offset", text="Offset Children") class DATA_PT_active_spline(DataButtonsPanelActive): - __label__ = "Active Spline" + bl_label = "Active Spline" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_empty.py b/release/scripts/ui/buttons_data_empty.py index eda6cced0ae..652f470a605 100644 --- a/release/scripts/ui/buttons_data_empty.py +++ b/release/scripts/ui/buttons_data_empty.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return (context.object and context.object.type == 'EMPTY') class DATA_PT_empty(DataButtonsPanel): - __label__ = "Empty" + bl_label = "Empty" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_lamp.py b/release/scripts/ui/buttons_data_lamp.py index 4e495d158eb..74c4ba012df 100644 --- a/release/scripts/ui/buttons_data_lamp.py +++ b/release/scripts/ui/buttons_data_lamp.py @@ -2,21 +2,21 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.lamp class DATA_PT_preview(DataButtonsPanel): - __label__ = "Preview" + bl_label = "Preview" def draw(self, context): self.layout.template_preview(context.lamp) class DATA_PT_context_lamp(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -35,7 +35,7 @@ class DATA_PT_context_lamp(DataButtonsPanel): split.itemS() class DATA_PT_lamp(DataButtonsPanel): - __label__ = "Lamp" + bl_label = "Lamp" def draw(self, context): layout = self.layout @@ -75,7 +75,7 @@ class DATA_PT_lamp(DataButtonsPanel): col.itemR(lamp, "diffuse") class DATA_PT_sunsky(DataButtonsPanel): - __label__ = "Sky & Atmosphere" + bl_label = "Sky & Atmosphere" def poll(self, context): lamp = context.lamp @@ -139,7 +139,7 @@ class DATA_PT_sunsky(DataButtonsPanel): sub.itemR(lamp, "atmosphere_extinction", slider=True ,text="Extinction") class DATA_PT_shadow(DataButtonsPanel): - __label__ = "Shadow" + bl_label = "Shadow" def poll(self, context): lamp = context.lamp @@ -237,7 +237,7 @@ class DATA_PT_shadow(DataButtonsPanel): sub.itemR(lamp, "shadow_buffer_clip_end", text=" Clip End") class DATA_PT_area(DataButtonsPanel): - __label__ = "Area Shape" + bl_label = "Area Shape" def poll(self, context): lamp = context.lamp @@ -261,7 +261,7 @@ class DATA_PT_area(DataButtonsPanel): sub.itemR(lamp, "size_y", text="Size Y") class DATA_PT_spot(DataButtonsPanel): - __label__ = "Spot Shape" + bl_label = "Spot Shape" def poll(self, context): lamp = context.lamp @@ -289,8 +289,8 @@ class DATA_PT_spot(DataButtonsPanel): sub.itemR(lamp, "halo_step", text="Step") class DATA_PT_falloff_curve(DataButtonsPanel): - __label__ = "Falloff Curve" - __default_closed__ = True + bl_label = "Falloff Curve" + bl_default_closed = True def poll(self, context): lamp = context.lamp diff --git a/release/scripts/ui/buttons_data_lattice.py b/release/scripts/ui/buttons_data_lattice.py index bc977860330..3272e1ccf55 100644 --- a/release/scripts/ui/buttons_data_lattice.py +++ b/release/scripts/ui/buttons_data_lattice.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.lattice class DATA_PT_context_lattice(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -29,7 +29,7 @@ class DATA_PT_context_lattice(DataButtonsPanel): split.itemS() class DATA_PT_lattice(DataButtonsPanel): - __label__ = "Lattice" + bl_label = "Lattice" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 77c6f834073..f0120b58c6d 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.mesh class DATA_PT_context_mesh(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -29,7 +29,7 @@ class DATA_PT_context_mesh(DataButtonsPanel): split.itemS() class DATA_PT_normals(DataButtonsPanel): - __label__ = "Normals" + bl_label = "Normals" def draw(self, context): layout = self.layout @@ -49,7 +49,7 @@ class DATA_PT_normals(DataButtonsPanel): col.itemR(mesh, "double_sided") class DATA_PT_settings(DataButtonsPanel): - __label__ = "Settings" + bl_label = "Settings" def draw(self, context): layout = self.layout @@ -62,7 +62,7 @@ class DATA_PT_settings(DataButtonsPanel): col.itemR(mesh, "texture_mesh") class DATA_PT_vertex_groups(DataButtonsPanel): - __label__ = "Vertex Groups" + bl_label = "Vertex Groups" def poll(self, context): return (context.object and context.object.type in ('MESH', 'LATTICE')) @@ -106,7 +106,7 @@ class DATA_PT_vertex_groups(DataButtonsPanel): layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight") class DATA_PT_shape_keys(DataButtonsPanel): - __label__ = "Shape Keys" + bl_label = "Shape Keys" def poll(self, context): return (context.object and context.object.type in ('MESH', 'LATTICE', 'CURVE', 'SURFACE')) @@ -191,7 +191,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): row.itemR(key, "slurph") class DATA_PT_uv_texture(DataButtonsPanel): - __label__ = "UV Texture" + bl_label = "UV Texture" def draw(self, context): layout = self.layout @@ -212,7 +212,7 @@ class DATA_PT_uv_texture(DataButtonsPanel): layout.itemR(lay, "name") class DATA_PT_vertex_colors(DataButtonsPanel): - __label__ = "Vertex Colors" + bl_label = "Vertex Colors" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_metaball.py b/release/scripts/ui/buttons_data_metaball.py index 757546fdf8a..bf937f212d9 100644 --- a/release/scripts/ui/buttons_data_metaball.py +++ b/release/scripts/ui/buttons_data_metaball.py @@ -1,15 +1,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return context.meta_ball class DATA_PT_context_metaball(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -28,7 +28,7 @@ class DATA_PT_context_metaball(DataButtonsPanel): split.itemS() class DATA_PT_metaball(DataButtonsPanel): - __label__ = "Metaball" + bl_label = "Metaball" def draw(self, context): layout = self.layout @@ -51,7 +51,7 @@ class DATA_PT_metaball(DataButtonsPanel): layout.itemR(mball, "flag", expand=True) class DATA_PT_metaball_element(DataButtonsPanel): - __label__ = "Active Element" + bl_label = "Active Element" def poll(self, context): return (context.meta_ball and context.meta_ball.active_element) diff --git a/release/scripts/ui/buttons_data_modifier.py b/release/scripts/ui/buttons_data_modifier.py index 754e8ce106e..7a49e84e906 100644 --- a/release/scripts/ui/buttons_data_modifier.py +++ b/release/scripts/ui/buttons_data_modifier.py @@ -2,12 +2,12 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "modifier" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "modifier" class DATA_PT_modifiers(DataButtonsPanel): - __label__ = "Modifiers" + bl_label = "Modifiers" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_data_text.py b/release/scripts/ui/buttons_data_text.py index 0d46d5f8a0d..9b8e1e4d984 100644 --- a/release/scripts/ui/buttons_data_text.py +++ b/release/scripts/ui/buttons_data_text.py @@ -2,15 +2,15 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" def poll(self, context): return (context.object and context.object.type == 'TEXT' and context.curve) class DATA_PT_context_text(DataButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -29,7 +29,7 @@ class DATA_PT_context_text(DataButtonsPanel): split.itemS() class DATA_PT_shape_text(DataButtonsPanel): - __label__ = "Shape Text" + bl_label = "Shape Text" def draw(self, context): layout = self.layout @@ -63,7 +63,7 @@ class DATA_PT_shape_text(DataButtonsPanel): col.itemR(curve, "fast", text="Fast Editing") class DATA_PT_geometry_text(DataButtonsPanel): - __label__ = "Geometry" + bl_label = "Geometry" def draw(self, context): layout = self.layout @@ -87,7 +87,7 @@ class DATA_PT_geometry_text(DataButtonsPanel): col.itemR(curve, "bevel_object", text="") class DATA_PT_font(DataButtonsPanel): - __label__ = "Font" + bl_label = "Font" def draw(self, context): layout = self.layout @@ -127,7 +127,7 @@ class DATA_PT_font(DataButtonsPanel): col.itemR(text, "ul_height", text="Thickness") class DATA_PT_paragraph(DataButtonsPanel): - __label__ = "Paragraph" + bl_label = "Paragraph" def draw(self, context): layout = self.layout @@ -151,7 +151,7 @@ class DATA_PT_paragraph(DataButtonsPanel): col.itemR(text, "offset_y", text="Y") class DATA_PT_textboxes(DataButtonsPanel): - __label__ = "Text Boxes" + bl_label = "Text Boxes" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/buttons_game.py index bf25289333f..2a1e6adee5b 100644 --- a/release/scripts/ui/buttons_game.py +++ b/release/scripts/ui/buttons_game.py @@ -2,9 +2,9 @@ import bpy class PhysicsButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): ob = context.active_object @@ -12,7 +12,7 @@ class PhysicsButtonsPanel(bpy.types.Panel): return ob and ob.game and (rd.engine == 'BLENDER_GAME') class PHYSICS_PT_game_physics(PhysicsButtonsPanel): - __label__ = "Physics" + bl_label = "Physics" def draw(self, context): layout = self.layout @@ -131,7 +131,7 @@ class PHYSICS_PT_game_physics(PhysicsButtonsPanel): layout.itemR(ob, "restrict_render", text="Invisible") class PHYSICS_PT_game_collision_bounds(PhysicsButtonsPanel): - __label__ = "Collision Bounds" + bl_label = "Collision Bounds" def poll(self, context): game = context.object.game @@ -159,16 +159,16 @@ bpy.types.register(PHYSICS_PT_game_physics) bpy.types.register(PHYSICS_PT_game_collision_bounds) class RenderButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "render" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "render" def poll(self, context): rd = context.scene.render_data return (rd.engine == 'BLENDER_GAME') class RENDER_PT_game(RenderButtonsPanel): - __label__ = "Game" + bl_label = "Game" def draw(self, context): layout = self.layout @@ -178,7 +178,7 @@ class RENDER_PT_game(RenderButtonsPanel): row.itemL() class RENDER_PT_game_player(RenderButtonsPanel): - __label__ = "Standalone Player" + bl_label = "Standalone Player" def draw(self, context): layout = self.layout @@ -209,7 +209,7 @@ class RENDER_PT_game_player(RenderButtonsPanel): col.itemR(gs, "framing_color", text="") class RENDER_PT_game_stereo(RenderButtonsPanel): - __label__ = "Stereo" + bl_label = "Stereo" def draw(self, context): layout = self.layout @@ -258,7 +258,7 @@ class RENDER_PT_game_stereo(RenderButtonsPanel): layout.itemR(gs, "dome_text") class RENDER_PT_game_shading(RenderButtonsPanel): - __label__ = "Shading" + bl_label = "Shading" def draw(self, context): layout = self.layout @@ -280,7 +280,7 @@ class RENDER_PT_game_shading(RenderButtonsPanel): col.itemR(gs, "glsl_extra_textures", text="Extra Textures") class RENDER_PT_game_performance(RenderButtonsPanel): - __label__ = "Performance" + bl_label = "Performance" def draw(self, context): layout = self.layout @@ -302,7 +302,7 @@ class RENDER_PT_game_performance(RenderButtonsPanel): col.itemR(gs, "display_lists") class RENDER_PT_game_sound(RenderButtonsPanel): - __label__ = "Sound" + bl_label = "Sound" def draw(self, context): layout = self.layout @@ -321,16 +321,16 @@ bpy.types.register(RENDER_PT_game_performance) bpy.types.register(RENDER_PT_game_sound) class WorldButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "world" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "world" def poll(self, context): rd = context.scene.render_data return (rd.engine == 'BLENDER_GAME') class WORLD_PT_game_context_world(WorldButtonsPanel): - __show_header__ = False + bl_show_header = False def poll(self, context): rd = context.scene.render_data @@ -351,7 +351,7 @@ class WORLD_PT_game_context_world(WorldButtonsPanel): split.template_ID(space, "pin_id") class WORLD_PT_game_world(WorldButtonsPanel): - __label__ = "World" + bl_label = "World" def draw(self, context): layout = self.layout @@ -370,7 +370,7 @@ class WORLD_PT_game_world(WorldButtonsPanel): row.itemR(world.mist, "depth") class WORLD_PT_game_physics(WorldButtonsPanel): - __label__ = "Physics" + bl_label = "Physics" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index 4ba3577a092..c83f4a65209 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -14,9 +14,9 @@ def active_node_mat(mat): return None class MaterialButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "material" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "material" # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here def poll(self, context): @@ -25,14 +25,14 @@ class MaterialButtonsPanel(bpy.types.Panel): return mat and (engine in self.COMPAT_ENGINES) class MATERIAL_PT_preview(MaterialButtonsPanel): - __label__ = "Preview" + bl_label = "Preview" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def draw(self, context): self.layout.template_preview(context.material) class MATERIAL_PT_context_material(MaterialButtonsPanel): - __show_header__ = False + bl_show_header = False COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -83,7 +83,7 @@ class MATERIAL_PT_context_material(MaterialButtonsPanel): layout.itemR(mat, "type", expand=True) class MATERIAL_PT_shading(MaterialButtonsPanel): - __label__ = "Shading" + bl_label = "Shading" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -118,8 +118,8 @@ class MATERIAL_PT_shading(MaterialButtonsPanel): layout.itemR(mat, "alpha") class MATERIAL_PT_strand(MaterialButtonsPanel): - __label__ = "Strand" - __default_closed__ = True + bl_label = "Strand" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -161,7 +161,7 @@ class MATERIAL_PT_strand(MaterialButtonsPanel): sub.itemR(tan, "blend_distance", text="Distance") class MATERIAL_PT_physics(MaterialButtonsPanel): - __label__ = "Physics" + bl_label = "Physics" COMPAT_ENGINES = set(['BLENDER_GAME']) def draw(self, context): @@ -182,7 +182,7 @@ class MATERIAL_PT_physics(MaterialButtonsPanel): col.itemR(phys, "damp", slider=True) class MATERIAL_PT_options(MaterialButtonsPanel): - __label__ = "Options" + bl_label = "Options" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -224,8 +224,8 @@ class MATERIAL_PT_options(MaterialButtonsPanel): col.itemR(mat, "object_color") class MATERIAL_PT_shadow(MaterialButtonsPanel): - __label__ = "Shadow" - __default_closed__ = True + bl_label = "Shadow" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -258,7 +258,7 @@ class MATERIAL_PT_shadow(MaterialButtonsPanel): sub.itemR(mat, "shadow_ray_bias", text="Ray Bias") class MATERIAL_PT_diffuse(MaterialButtonsPanel): - __label__ = "Diffuse" + bl_label = "Diffuse" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -314,7 +314,7 @@ class MATERIAL_PT_diffuse(MaterialButtonsPanel): row.itemR(mat, "diffuse_ramp_factor", text="Factor") class MATERIAL_PT_specular(MaterialButtonsPanel): - __label__ = "Specular" + bl_label = "Specular" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) def poll(self, context): @@ -368,8 +368,8 @@ class MATERIAL_PT_specular(MaterialButtonsPanel): row.itemR(mat, "specular_ramp_factor", text="Factor") class MATERIAL_PT_sss(MaterialButtonsPanel): - __label__ = "Subsurface Scattering" - __default_closed__ = True + bl_label = "Subsurface Scattering" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -413,8 +413,8 @@ class MATERIAL_PT_sss(MaterialButtonsPanel): col.itemR(sss, "error_tolerance", text="Error") class MATERIAL_PT_mirror(MaterialButtonsPanel): - __label__ = "Mirror" - __default_closed__ = True + bl_label = "Mirror" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -468,8 +468,8 @@ class MATERIAL_PT_mirror(MaterialButtonsPanel): sub.itemR(raym, "gloss_anisotropic", text="Anisotropic") class MATERIAL_PT_transp(MaterialButtonsPanel): - __label__= "Transparency" - __default_closed__ = True + bl_label= "Transparency" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -528,7 +528,7 @@ class MATERIAL_PT_transp(MaterialButtonsPanel): sub.itemR(rayt, "gloss_samples", text="Samples") class MATERIAL_PT_halo(MaterialButtonsPanel): - __label__= "Halo" + bl_label= "Halo" COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -575,7 +575,7 @@ class MATERIAL_PT_halo(MaterialButtonsPanel): sub.itemR(halo, "star_tips") class MATERIAL_PT_flare(MaterialButtonsPanel): - __label__= "Flare" + bl_label= "Flare" COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -623,9 +623,9 @@ bpy.types.register(MATERIAL_PT_shadow) # Volumetrics class VolumeButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "material" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "material" def poll(self, context): mat = context.material @@ -633,8 +633,8 @@ class VolumeButtonsPanel(bpy.types.Panel): return mat and (mat.type == 'VOLUME') and (engine in self.COMPAT_ENGINES) class MATERIAL_PT_volume_density(VolumeButtonsPanel): - __label__ = "Density" - __default_closed__ = False + bl_label = "Density" + bl_default_closed = False COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -648,8 +648,8 @@ class MATERIAL_PT_volume_density(VolumeButtonsPanel): row.itemR(vol, "density_scale") class MATERIAL_PT_volume_shading(VolumeButtonsPanel): - __label__ = "Shading" - __default_closed__ = False + bl_label = "Shading" + bl_default_closed = False COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -673,8 +673,8 @@ class MATERIAL_PT_volume_shading(VolumeButtonsPanel): sub.itemR(vol, "reflection_color", text="") class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): - __label__ = "Lighting" - __default_closed__ = False + bl_label = "Lighting" + bl_default_closed = False COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -708,7 +708,7 @@ class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): sub.itemR(vol, "ms_intensity") class MATERIAL_PT_volume_transp(VolumeButtonsPanel): - __label__= "Transparency" + bl_label= "Transparency" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -719,8 +719,8 @@ class MATERIAL_PT_volume_transp(VolumeButtonsPanel): layout.itemR(mat, "transparency_method", expand=True) class MATERIAL_PT_volume_integration(VolumeButtonsPanel): - __label__ = "Integration" - __default_closed__ = False + bl_label = "Integration" + bl_default_closed = False COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): diff --git a/release/scripts/ui/buttons_object.py b/release/scripts/ui/buttons_object.py index 78aa52a647e..37ecf83d846 100644 --- a/release/scripts/ui/buttons_object.py +++ b/release/scripts/ui/buttons_object.py @@ -2,12 +2,12 @@ import bpy class ObjectButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "object" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "object" class OBJECT_PT_context_object(ObjectButtonsPanel): - __show_header__ = False + bl_show_header = False def draw(self, context): layout = self.layout @@ -19,7 +19,7 @@ class OBJECT_PT_context_object(ObjectButtonsPanel): row.itemR(ob, "name", text="") class OBJECT_PT_transform(ObjectButtonsPanel): - __label__ = "Transform" + bl_label = "Transform" def draw(self, context): layout = self.layout @@ -44,8 +44,8 @@ class OBJECT_PT_transform(ObjectButtonsPanel): layout.itemR(ob, "rotation_mode") class OBJECT_PT_transform_locks(ObjectButtonsPanel): - __label__ = "Transform Locks" - __default_closed__ = True + bl_label = "Transform Locks" + bl_default_closed = True def draw(self, context): layout = self.layout @@ -69,7 +69,7 @@ class OBJECT_PT_transform_locks(ObjectButtonsPanel): row.column().itemR(ob, "lock_scale") class OBJECT_PT_relations(ObjectButtonsPanel): - __label__ = "Relations" + bl_label = "Relations" def draw(self, context): layout = self.layout @@ -97,7 +97,7 @@ class OBJECT_PT_relations(ObjectButtonsPanel): sub.active = parent != None class OBJECT_PT_groups(ObjectButtonsPanel): - __label__ = "Groups" + bl_label = "Groups" def draw(self, context): layout = self.layout @@ -123,7 +123,7 @@ class OBJECT_PT_groups(ObjectButtonsPanel): split.column().itemR(group, "dupli_offset", text="") class OBJECT_PT_display(ObjectButtonsPanel): - __label__ = "Display" + bl_label = "Display" def draw(self, context): layout = self.layout @@ -149,7 +149,7 @@ class OBJECT_PT_display(ObjectButtonsPanel): flow.itemR(ob, "draw_transparent", text="Transparency") class OBJECT_PT_duplication(ObjectButtonsPanel): - __label__ = "Duplication" + bl_label = "Duplication" def draw(self, context): layout = self.layout @@ -183,7 +183,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel): layout.itemR(ob, "dupli_group", text="Group") class OBJECT_PT_animation(ObjectButtonsPanel): - __label__ = "Animation" + bl_label = "Animation" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_object_constraint.py b/release/scripts/ui/buttons_object_constraint.py index 07ea5f43907..40fc4f7343d 100644 --- a/release/scripts/ui/buttons_object_constraint.py +++ b/release/scripts/ui/buttons_object_constraint.py @@ -2,9 +2,9 @@ import bpy class ConstraintButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "constraint" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "constraint" def draw_constraint(self, context, con): layout = self.layout @@ -577,8 +577,8 @@ class ConstraintButtonsPanel(bpy.types.Panel): row.itemR(con, "track", expand=True) class OBJECT_PT_constraints(ConstraintButtonsPanel): - __label__ = "Constraints" - __context__ = "constraint" + bl_label = "Constraints" + bl_context = "constraint" def poll(self, context): return (context.object) @@ -595,9 +595,9 @@ class OBJECT_PT_constraints(ConstraintButtonsPanel): self.draw_constraint(context, con) class BONE_PT_inverse_kinematics(ConstraintButtonsPanel): - __label__ = "Inverse Kinematics" - __default_closed__ = True - __context__ = "bone_constraint" + bl_label = "Inverse Kinematics" + bl_default_closed = True + bl_context = "bone_constraint" def poll(self, context): ob = context.object @@ -677,9 +677,9 @@ class BONE_PT_inverse_kinematics(ConstraintButtonsPanel): #row.itemR(pchan, "ik_lin_weight", text="Weight", slider=True) class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): - __label__ = "iTaSC parameters" - __default_closed__ = True - __context__ = "bone_constraint" + bl_label = "iTaSC parameters" + bl_default_closed = True + bl_context = "bone_constraint" def poll(self, context): ob = context.object @@ -727,8 +727,8 @@ class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): row.itemR(itasc, "dampeps", text="Eps", slider=True) class BONE_PT_constraints(ConstraintButtonsPanel): - __label__ = "Constraints" - __context__ = "bone_constraint" + bl_label = "Constraints" + bl_context = "bone_constraint" def poll(self, context): ob = context.object diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/buttons_particle.py index 4054fbf8780..8ab31df7543 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/buttons_particle.py @@ -16,15 +16,15 @@ def particle_panel_poll(context): return psys.settings.type in ('EMITTER', 'REACTOR', 'HAIR') class ParticleButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "particle" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "particle" def poll(self, context): return particle_panel_poll(context) class PARTICLE_PT_particles(ParticleButtonsPanel): - __show_header__ = False + bl_show_header = False def poll(self, context): return (context.particle_system or context.object) @@ -105,7 +105,7 @@ class PARTICLE_PT_particles(ParticleButtonsPanel): split.itemR(psys, "reactor_target_particle_system", text="Particle System") class PARTICLE_PT_emission(ParticleButtonsPanel): - __label__ = "Emission" + bl_label = "Emission" def poll(self, context): if particle_panel_poll(context): @@ -158,8 +158,8 @@ class PARTICLE_PT_emission(ParticleButtonsPanel): row.itemR(part, "grid_resolution") class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel): - __label__ = "Hair dynamics" - __default_closed__ = True + bl_label = "Hair dynamics" + bl_default_closed = True def poll(self, context): psys = context.particle_system @@ -205,8 +205,8 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel): col.itemR(cloth, "quality", text="Steps",slider=True) class PARTICLE_PT_cache(ParticleButtonsPanel): - __label__ = "Cache" - __default_closed__ = True + bl_label = "Cache" + bl_default_closed = True def poll(self, context): psys = context.particle_system @@ -225,7 +225,7 @@ class PARTICLE_PT_cache(ParticleButtonsPanel): point_cache_ui(self, psys.point_cache, particle_panel_enabled(context, psys), not psys.hair_dynamics, 0) class PARTICLE_PT_velocity(ParticleButtonsPanel): - __label__ = "Velocity" + bl_label = "Velocity" def poll(self, context): if particle_panel_poll(context): @@ -270,7 +270,7 @@ class PARTICLE_PT_velocity(ParticleButtonsPanel): # sub.itemR(part, "reaction_shape", slider=True) class PARTICLE_PT_rotation(ParticleButtonsPanel): - __label__ = "Rotation" + bl_label = "Rotation" def poll(self, context): if particle_panel_poll(context): @@ -309,7 +309,7 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel): sub.itemR(part, "angular_velocity_factor", text="") class PARTICLE_PT_physics(ParticleButtonsPanel): - __label__ = "Physics" + bl_label = "Physics" def poll(self, context): if particle_panel_poll(context): @@ -449,7 +449,7 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): layout.itemR(key, "mode", expand=True) class PARTICLE_PT_boidbrain(ParticleButtonsPanel): - __label__ = "Boid Brain" + bl_label = "Boid Brain" def poll(self, context): psys = context.particle_system @@ -543,7 +543,7 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): row.itemR(rule, "flee_distance") class PARTICLE_PT_render(ParticleButtonsPanel): - __label__ = "Render" + bl_label = "Render" def poll(self, context): psys = context.particle_system @@ -706,8 +706,8 @@ class PARTICLE_PT_render(ParticleButtonsPanel): col.itemL(text="") class PARTICLE_PT_draw(ParticleButtonsPanel): - __label__ = "Display" - __default_closed__ = True + bl_label = "Display" + bl_default_closed = True def poll(self, context): psys = context.particle_system @@ -761,8 +761,8 @@ class PARTICLE_PT_draw(ParticleButtonsPanel): #subcol.itemL(text="Override material color") class PARTICLE_PT_children(ParticleButtonsPanel): - __label__ = "Children" - __default_closed__ = True + bl_label = "Children" + bl_default_closed = True def draw(self, context): layout = self.layout @@ -837,8 +837,8 @@ class PARTICLE_PT_children(ParticleButtonsPanel): sub.itemR(part, "kink_shape", slider=True) class PARTICLE_PT_field_weights(ParticleButtonsPanel): - __label__ = "Field Weights" - __default_closed__ = True + bl_label = "Field Weights" + bl_default_closed = True def draw(self, context): part = context.particle_system.settings @@ -848,8 +848,8 @@ class PARTICLE_PT_field_weights(ParticleButtonsPanel): self.layout.itemR(part.effector_weights, "do_growing_hair") class PARTICLE_PT_force_fields(ParticleButtonsPanel): - __label__ = "Force Field Settings" - __default_closed__ = True + bl_label = "Force Field Settings" + bl_default_closed = True def draw(self, context): layout = self.layout @@ -874,8 +874,8 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel): basic_force_field_falloff_ui(self, part.force_field_2) class PARTICLE_PT_vertexgroups(ParticleButtonsPanel): - __label__ = "Vertexgroups" - __default_closed__ = True + bl_label = "Vertexgroups" + bl_default_closed = True def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/buttons_physics_cloth.py b/release/scripts/ui/buttons_physics_cloth.py index bcf1d3b8316..3a40713adb8 100644 --- a/release/scripts/ui/buttons_physics_cloth.py +++ b/release/scripts/ui/buttons_physics_cloth.py @@ -8,9 +8,9 @@ def cloth_panel_enabled(md): return md.point_cache.baked==False class PhysicButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): ob = context.object @@ -18,7 +18,7 @@ class PhysicButtonsPanel(bpy.types.Panel): return (ob and ob.type == 'MESH') and (not rd.use_game_engine) class PHYSICS_PT_cloth(PhysicButtonsPanel): - __label__ = "Cloth" + bl_label = "Cloth" def draw(self, context): layout = self.layout @@ -88,8 +88,8 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel): """ class PHYSICS_PT_cloth_cache(PhysicButtonsPanel): - __label__ = "Cloth Cache" - __default_closed__ = True + bl_label = "Cloth Cache" + bl_default_closed = True def poll(self, context): return context.cloth @@ -99,8 +99,8 @@ class PHYSICS_PT_cloth_cache(PhysicButtonsPanel): point_cache_ui(self, md.point_cache, cloth_panel_enabled(md), 0, 0) class PHYSICS_PT_cloth_collision(PhysicButtonsPanel): - __label__ = "Cloth Collision" - __default_closed__ = True + bl_label = "Cloth Collision" + bl_default_closed = True def poll(self, context): return context.cloth @@ -134,8 +134,8 @@ class PHYSICS_PT_cloth_collision(PhysicButtonsPanel): sub.itemR(cloth, "self_min_distance", slider=True, text="Distance") class PHYSICS_PT_cloth_stiffness(PhysicButtonsPanel): - __label__ = "Cloth Stiffness Scaling" - __default_closed__ = True + bl_label = "Cloth Stiffness Scaling" + bl_default_closed = True def poll(self, context): return context.cloth @@ -170,8 +170,8 @@ class PHYSICS_PT_cloth_stiffness(PhysicButtonsPanel): sub.item_pointerR(cloth, "bending_vertex_group", ob, "vertex_groups", text="") class PHYSICS_PT_cloth_field_weights(PhysicButtonsPanel): - __label__ = "Cloth Field Weights" - __default_closed__ = True + bl_label = "Cloth Field Weights" + bl_default_closed = True def poll(self, context): return (context.cloth) diff --git a/release/scripts/ui/buttons_physics_field.py b/release/scripts/ui/buttons_physics_field.py index ac713bb5e67..6d8864560c7 100644 --- a/release/scripts/ui/buttons_physics_field.py +++ b/release/scripts/ui/buttons_physics_field.py @@ -5,16 +5,16 @@ from buttons_physics_common import basic_force_field_settings_ui from buttons_physics_common import basic_force_field_falloff_ui class PhysicButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): rd = context.scene.render_data return (context.object) and (not rd.use_game_engine) class PHYSICS_PT_field(PhysicButtonsPanel): - __label__ = "Force Fields" + bl_label = "Force Fields" def draw(self, context): layout = self.layout @@ -130,8 +130,8 @@ class PHYSICS_PT_field(PhysicButtonsPanel): sub.itemR(field, "radial_maximum", text="Distance") class PHYSICS_PT_collision(PhysicButtonsPanel): - __label__ = "Collision" - #__default_closed__ = True + bl_label = "Collision" + #bl_default_closed = True def poll(self, context): ob = context.object diff --git a/release/scripts/ui/buttons_physics_fluid.py b/release/scripts/ui/buttons_physics_fluid.py index e178a831ddd..047c2e17db9 100644 --- a/release/scripts/ui/buttons_physics_fluid.py +++ b/release/scripts/ui/buttons_physics_fluid.py @@ -2,9 +2,9 @@ import bpy class PhysicButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): ob = context.object @@ -12,7 +12,7 @@ class PhysicButtonsPanel(bpy.types.Panel): return (ob and ob.type == 'MESH') and (not rd.use_game_engine) class PHYSICS_PT_fluid(PhysicButtonsPanel): - __label__ = "Fluid" + bl_label = "Fluid" def draw(self, context): layout = self.layout @@ -169,8 +169,8 @@ class PHYSICS_PT_fluid(PhysicButtonsPanel): sub.itemR(fluid, "velocity_radius", text="Radius") class PHYSICS_PT_domain_gravity(PhysicButtonsPanel): - __label__ = "Domain World" - __default_closed__ = True + bl_label = "Domain World" + bl_default_closed = True def poll(self, context): md = context.fluid @@ -207,8 +207,8 @@ class PHYSICS_PT_domain_gravity(PhysicButtonsPanel): sub.itemR(fluid, "compressibility", slider=True) class PHYSICS_PT_domain_boundary(PhysicButtonsPanel): - __label__ = "Domain Boundary" - __default_closed__ = True + bl_label = "Domain Boundary" + bl_default_closed = True def poll(self, context): md = context.fluid @@ -235,8 +235,8 @@ class PHYSICS_PT_domain_boundary(PhysicButtonsPanel): sub.itemR(fluid, "surface_subdivisions", text="Subdivisions") class PHYSICS_PT_domain_particles(PhysicButtonsPanel): - __label__ = "Domain Particles" - __default_closed__ = True + bl_label = "Domain Particles" + bl_default_closed = True def poll(self, context): md = context.fluid diff --git a/release/scripts/ui/buttons_physics_smoke.py b/release/scripts/ui/buttons_physics_smoke.py index b1523148a30..dd728fcc876 100644 --- a/release/scripts/ui/buttons_physics_smoke.py +++ b/release/scripts/ui/buttons_physics_smoke.py @@ -5,9 +5,9 @@ from buttons_physics_common import point_cache_ui from buttons_physics_common import effector_weights_ui class PhysicButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): ob = context.object @@ -15,7 +15,7 @@ class PhysicButtonsPanel(bpy.types.Panel): return (ob and ob.type == 'MESH') and (not rd.use_game_engine) class PHYSICS_PT_smoke(PhysicButtonsPanel): - __label__ = "Smoke" + bl_label = "Smoke" def draw(self, context): layout = self.layout @@ -86,8 +86,8 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel): # layout.itemS() class PHYSICS_PT_smoke_groups(PhysicButtonsPanel): - __label__ = "Smoke Groups" - __default_closed__ = True + bl_label = "Smoke Groups" + bl_default_closed = True def poll(self, context): md = context.smoke @@ -112,8 +112,8 @@ class PHYSICS_PT_smoke_groups(PhysicButtonsPanel): col.itemR(group, "coll_group", text="") class PHYSICS_PT_smoke_cache(PhysicButtonsPanel): - __label__ = "Smoke Cache" - __default_closed__ = True + bl_label = "Smoke Cache" + bl_default_closed = True def poll(self, context): md = context.smoke @@ -128,8 +128,8 @@ class PHYSICS_PT_smoke_cache(PhysicButtonsPanel): point_cache_ui(self, cache, cache.baked==False, 0, 1) class PHYSICS_PT_smoke_highres(PhysicButtonsPanel): - __label__ = "Smoke High Resolution" - __default_closed__ = True + bl_label = "Smoke High Resolution" + bl_default_closed = True def poll(self, context): md = context.smoke @@ -158,8 +158,8 @@ class PHYSICS_PT_smoke_highres(PhysicButtonsPanel): col.itemR(md, "viewhighres") class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel): - __label__ = "Smoke High Resolution Cache" - __default_closed__ = True + bl_label = "Smoke High Resolution Cache" + bl_default_closed = True def poll(self, context): md = context.smoke @@ -174,8 +174,8 @@ class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel): point_cache_ui(self, cache, cache.baked==False, 0, 1) class PHYSICS_PT_smoke_field_weights(PhysicButtonsPanel): - __label__ = "Smoke Field Weights" - __default_closed__ = True + bl_label = "Smoke Field Weights" + bl_default_closed = True def poll(self, context): smoke = context.smoke diff --git a/release/scripts/ui/buttons_physics_softbody.py b/release/scripts/ui/buttons_physics_softbody.py index cd66df00044..41c061b85c1 100644 --- a/release/scripts/ui/buttons_physics_softbody.py +++ b/release/scripts/ui/buttons_physics_softbody.py @@ -8,9 +8,9 @@ def softbody_panel_enabled(md): return md.point_cache.baked==False class PhysicButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" def poll(self, context): ob = context.object @@ -18,7 +18,7 @@ class PhysicButtonsPanel(bpy.types.Panel): return (ob and ob.type == 'MESH') and (not rd.use_game_engine) class PHYSICS_PT_softbody(PhysicButtonsPanel): - __label__ = "Soft Body" + bl_label = "Soft Body" def draw(self, context): layout = self.layout @@ -59,8 +59,8 @@ class PHYSICS_PT_softbody(PhysicButtonsPanel): col.itemR(softbody, "speed") class PHYSICS_PT_softbody_cache(PhysicButtonsPanel): - __label__ = "Soft Body Cache" - __default_closed__ = True + bl_label = "Soft Body Cache" + bl_default_closed = True def poll(self, context): return context.soft_body @@ -70,8 +70,8 @@ class PHYSICS_PT_softbody_cache(PhysicButtonsPanel): point_cache_ui(self, md.point_cache, softbody_panel_enabled(md), 0, 0) class PHYSICS_PT_softbody_goal(PhysicButtonsPanel): - __label__ = "Soft Body Goal" - __default_closed__ = True + bl_label = "Soft Body Goal" + bl_default_closed = True def poll(self, context): return context.soft_body @@ -111,8 +111,8 @@ class PHYSICS_PT_softbody_goal(PhysicButtonsPanel): layout.item_pointerR(softbody, "goal_vertex_group", ob, "vertex_groups", text="Vertex Group") class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): - __label__ = "Soft Body Edges" - __default_closed__ = True + bl_label = "Soft Body Edges" + bl_default_closed = True def poll(self, context): return context.soft_body @@ -159,8 +159,8 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): col.itemR(softbody, "face_collision", text="Face") class PHYSICS_PT_softbody_collision(PhysicButtonsPanel): - __label__ = "Soft Body Collision" - __default_closed__ = True + bl_label = "Soft Body Collision" + bl_default_closed = True def poll(self, context): return context.soft_body @@ -190,8 +190,8 @@ class PHYSICS_PT_softbody_collision(PhysicButtonsPanel): col.itemR(softbody, "ball_damp", text="Dampening") class PHYSICS_PT_softbody_solver(PhysicButtonsPanel): - __label__ = "Soft Body Solver" - __default_closed__ = True + bl_label = "Soft Body Solver" + bl_default_closed = True def poll(self, context): return context.soft_body @@ -224,8 +224,8 @@ class PHYSICS_PT_softbody_solver(PhysicButtonsPanel): layout.itemR(softbody, "diagnose") class PHYSICS_PT_softbody_field_weights(PhysicButtonsPanel): - __label__ = "Soft Body Field Weights" - __default_closed__ = True + bl_label = "Soft Body Field Weights" + bl_default_closed = True def poll(self, context): return (context.soft_body) diff --git a/release/scripts/ui/buttons_render.py b/release/scripts/ui/buttons_render.py index 0826c766ce3..f20546a5c4d 100644 --- a/release/scripts/ui/buttons_render.py +++ b/release/scripts/ui/buttons_render.py @@ -2,9 +2,9 @@ import bpy class RenderButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "render" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "render" # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here def poll(self, context): @@ -12,7 +12,7 @@ class RenderButtonsPanel(bpy.types.Panel): return (context.scene and rd.use_game_engine==False) and (rd.engine in self.COMPAT_ENGINES) class RENDER_PT_render(RenderButtonsPanel): - __label__ = "Render" + bl_label = "Render" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -27,8 +27,8 @@ class RENDER_PT_render(RenderButtonsPanel): layout.itemR(rd, "display_mode", text="Display") class RENDER_PT_layers(RenderButtonsPanel): - __label__ = "Layers" - __default_closed__ = True + bl_label = "Layers" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -121,7 +121,7 @@ class RENDER_PT_layers(RenderButtonsPanel): row.itemR(rl, "pass_refraction_exclude", text="", icon='ICON_X') class RENDER_PT_shading(RenderButtonsPanel): - __label__ = "Shading" + bl_label = "Shading" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -143,8 +143,8 @@ class RENDER_PT_shading(RenderButtonsPanel): col.itemR(rd, "alpha_mode", text="Alpha") class RENDER_PT_performance(RenderButtonsPanel): - __label__ = "Performance" - __default_closed__ = True + bl_label = "Performance" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -183,8 +183,8 @@ class RENDER_PT_performance(RenderButtonsPanel): sub.itemR(rd, "use_local_coords", text="Local Coordinates") class RENDER_PT_post_processing(RenderButtonsPanel): - __label__ = "Post Processing" - __default_closed__ = True + bl_label = "Post Processing" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -220,7 +220,7 @@ class RENDER_PT_post_processing(RenderButtonsPanel): sub.itemR(rd, "edge_color", text="") class RENDER_PT_output(RenderButtonsPanel): - __label__ = "Output" + bl_label = "Output" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -284,8 +284,8 @@ class RENDER_PT_output(RenderButtonsPanel): split.itemR(rd, "tiff_bit") class RENDER_PT_encoding(RenderButtonsPanel): - __label__ = "Encoding" - __default_closed__ = True + bl_label = "Encoding" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -336,7 +336,7 @@ class RENDER_PT_encoding(RenderButtonsPanel): col.itemR(rd, "ffmpeg_audio_volume") class RENDER_PT_antialiasing(RenderButtonsPanel): - __label__ = "Anti-Aliasing" + bl_label = "Anti-Aliasing" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): @@ -362,7 +362,7 @@ class RENDER_PT_antialiasing(RenderButtonsPanel): col.itemR(rd, "filter_size", text="Size", slider=True) class RENDER_PT_dimensions(RenderButtonsPanel): - __label__ = "Dimensions" + bl_label = "Dimensions" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -401,8 +401,8 @@ class RENDER_PT_dimensions(RenderButtonsPanel): col.itemR(rd, "fps_base",text="/") class RENDER_PT_stamp(RenderButtonsPanel): - __label__ = "Stamp" - __default_closed__ = True + bl_label = "Stamp" + bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): diff --git a/release/scripts/ui/buttons_scene.py b/release/scripts/ui/buttons_scene.py index 54f47791d59..800644ef4ab 100644 --- a/release/scripts/ui/buttons_scene.py +++ b/release/scripts/ui/buttons_scene.py @@ -2,15 +2,15 @@ import bpy class SceneButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "scene" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "scene" def poll(self, context): return context.scene class SCENE_PT_scene(SceneButtonsPanel): - __label__ = "Scene" + bl_label = "Scene" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -22,7 +22,7 @@ class SCENE_PT_scene(SceneButtonsPanel): layout.itemR(scene, "set", text="Background") class SCENE_PT_unit(SceneButtonsPanel): - __label__ = "Units" + bl_label = "Units" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -39,7 +39,7 @@ class SCENE_PT_unit(SceneButtonsPanel): row.itemR(unit, "use_separate") class SCENE_PT_keying_sets(SceneButtonsPanel): - __label__ = "Keying Sets" + bl_label = "Keying Sets" def draw(self, context): layout = self.layout @@ -69,7 +69,7 @@ class SCENE_PT_keying_sets(SceneButtonsPanel): col.itemR(ks, "insertkey_visual", text="Visual") class SCENE_PT_keying_set_paths(SceneButtonsPanel): - __label__ = "Active Keying Set" + bl_label = "Active Keying Set" def poll(self, context): return (context.scene != None) and (context.scene.active_keying_set != None) @@ -115,7 +115,7 @@ class SCENE_PT_keying_set_paths(SceneButtonsPanel): col.itemR(ksp, "group") class SCENE_PT_physics(SceneButtonsPanel): - __label__ = "Gravity" + bl_label = "Gravity" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 1a308bbb2ad..cb5bca9e26a 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -26,16 +26,16 @@ def context_tex_datablock(context): return idblock class TextureButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "texture" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "texture" def poll(self, context): tex = context.texture return (tex and (tex.type != 'NONE' or tex.use_nodes)) class TEXTURE_PT_preview(TextureButtonsPanel): - __label__ = "Preview" + bl_label = "Preview" def draw(self, context): layout = self.layout @@ -51,7 +51,7 @@ class TEXTURE_PT_preview(TextureButtonsPanel): layout.template_preview(tex, slot=slot) class TEXTURE_PT_context_texture(TextureButtonsPanel): - __show_header__ = False + bl_show_header = False def poll(self, context): return (context.material or context.world or context.lamp or context.brush or context.texture) @@ -107,8 +107,8 @@ class TEXTURE_PT_context_texture(TextureButtonsPanel): split.itemR(tex, "type", text="") class TEXTURE_PT_colors(TextureButtonsPanel): - __label__ = "Colors" - __default_closed__ = True + bl_label = "Colors" + bl_default_closed = True def draw(self, context): layout = self.layout @@ -143,7 +143,7 @@ class TextureSlotPanel(TextureButtonsPanel): ) class TEXTURE_PT_mapping(TextureSlotPanel): - __label__ = "Mapping" + bl_label = "Mapping" def draw(self, context): layout = self.layout @@ -218,7 +218,7 @@ class TEXTURE_PT_mapping(TextureSlotPanel): class TEXTURE_PT_influence(TextureSlotPanel): - __label__ = "Influence" + bl_label = "Influence" def poll(self, context): return context.texture_slot @@ -327,7 +327,7 @@ class TextureTypePanel(TextureButtonsPanel): return (tex and tex.type == self.tex_type and not tex.use_nodes) class TEXTURE_PT_clouds(TextureTypePanel): - __label__ = "Clouds" + bl_label = "Clouds" tex_type = 'CLOUDS' def draw(self, context): @@ -346,7 +346,7 @@ class TEXTURE_PT_clouds(TextureTypePanel): flow.itemR(tex, "nabla", text="Nabla") class TEXTURE_PT_wood(TextureTypePanel): - __label__ = "Wood" + bl_label = "Wood" tex_type = 'WOOD' def draw(self, context): @@ -370,7 +370,7 @@ class TEXTURE_PT_wood(TextureTypePanel): flow.itemR(tex, "nabla") class TEXTURE_PT_marble(TextureTypePanel): - __label__ = "Marble" + bl_label = "Marble" tex_type = 'MARBLE' def draw(self, context): @@ -391,7 +391,7 @@ class TEXTURE_PT_marble(TextureTypePanel): flow.itemR(tex, "nabla") class TEXTURE_PT_magic(TextureTypePanel): - __label__ = "Magic" + bl_label = "Magic" tex_type = 'MAGIC' def draw(self, context): @@ -404,7 +404,7 @@ class TEXTURE_PT_magic(TextureTypePanel): row.itemR(tex, "turbulence") class TEXTURE_PT_blend(TextureTypePanel): - __label__ = "Blend" + bl_label = "Blend" tex_type = 'BLEND' def draw(self, context): @@ -419,7 +419,7 @@ class TEXTURE_PT_blend(TextureTypePanel): sub.itemR(tex, "flip_axis", expand=True) class TEXTURE_PT_stucci(TextureTypePanel): - __label__ = "Stucci" + bl_label = "Stucci" tex_type = 'STUCCI' def draw(self, context): @@ -437,7 +437,7 @@ class TEXTURE_PT_stucci(TextureTypePanel): row.itemR(tex, "turbulence") class TEXTURE_PT_image(TextureTypePanel): - __label__ = "Image" + bl_label = "Image" tex_type = 'IMAGE' def draw(self, context): @@ -448,8 +448,8 @@ class TEXTURE_PT_image(TextureTypePanel): layout.template_image(tex, "image", tex.image_user) class TEXTURE_PT_image_sampling(TextureTypePanel): - __label__ = "Image Sampling" - __default_closed__ = True + bl_label = "Image Sampling" + bl_default_closed = True tex_type = 'IMAGE' def draw(self, context): @@ -491,8 +491,8 @@ class TEXTURE_PT_image_sampling(TextureTypePanel): col.itemR(tex, "filter_eccentricity", text="Eccentricity") class TEXTURE_PT_image_mapping(TextureTypePanel): - __label__ = "Image Mapping" - __default_closed__ = True + bl_label = "Image Mapping" + bl_default_closed = True tex_type = 'IMAGE' def draw(self, context): @@ -539,7 +539,7 @@ class TEXTURE_PT_image_mapping(TextureTypePanel): col.itemR(tex, "crop_max_y", text="Y") class TEXTURE_PT_plugin(TextureTypePanel): - __label__ = "Plugin" + bl_label = "Plugin" tex_type = 'PLUGIN' def draw(self, context): @@ -550,7 +550,7 @@ class TEXTURE_PT_plugin(TextureTypePanel): layout.itemL(text="Nothing yet") class TEXTURE_PT_envmap(TextureTypePanel): - __label__ = "Environment Map" + bl_label = "Environment Map" tex_type = 'ENVIRONMENT_MAP' def draw(self, context): @@ -561,7 +561,7 @@ class TEXTURE_PT_envmap(TextureTypePanel): layout.itemL(text="Nothing yet") class TEXTURE_PT_musgrave(TextureTypePanel): - __label__ = "Musgrave" + bl_label = "Musgrave" tex_type = 'MUSGRAVE' def draw(self, context): @@ -594,7 +594,7 @@ class TEXTURE_PT_musgrave(TextureTypePanel): row.itemR(tex, "nabla") class TEXTURE_PT_voronoi(TextureTypePanel): - __label__ = "Voronoi" + bl_label = "Voronoi" tex_type = 'VORONOI' def draw(self, context): @@ -628,7 +628,7 @@ class TEXTURE_PT_voronoi(TextureTypePanel): row.itemR(tex, "nabla") class TEXTURE_PT_distortednoise(TextureTypePanel): - __label__ = "Distorted Noise" + bl_label = "Distorted Noise" tex_type = 'DISTORTED_NOISE' def draw(self, context): @@ -645,7 +645,7 @@ class TEXTURE_PT_distortednoise(TextureTypePanel): flow.itemR(tex, "nabla") class TEXTURE_PT_voxeldata(TextureButtonsPanel): - __label__ = "Voxel Data" + bl_label = "Voxel Data" def poll(self, context): tex = context.texture @@ -675,7 +675,7 @@ class TEXTURE_PT_voxeldata(TextureButtonsPanel): layout.itemR(vd, "intensity") class TEXTURE_PT_pointdensity(TextureButtonsPanel): - __label__ = "Point Density" + bl_label = "Point Density" def poll(self, context): tex = context.texture @@ -727,7 +727,7 @@ class TEXTURE_PT_pointdensity(TextureButtonsPanel): col.itemR(pd, "falloff_softness") class TEXTURE_PT_pointdensity_turbulence(TextureButtonsPanel): - __label__ = "Turbulence" + bl_label = "Turbulence" def poll(self, context): tex = context.texture diff --git a/release/scripts/ui/buttons_world.py b/release/scripts/ui/buttons_world.py index abf2a139c06..b0bb27518d4 100644 --- a/release/scripts/ui/buttons_world.py +++ b/release/scripts/ui/buttons_world.py @@ -2,9 +2,9 @@ import bpy class WorldButtonsPanel(bpy.types.Panel): - __space_type__ = 'PROPERTIES' - __region_type__ = 'WINDOW' - __context__ = "world" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "world" # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here def poll(self, context): @@ -12,14 +12,14 @@ class WorldButtonsPanel(bpy.types.Panel): return (context.world) and (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) class WORLD_PT_preview(WorldButtonsPanel): - __label__ = "Preview" + bl_label = "Preview" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): self.layout.template_preview(context.world) class WORLD_PT_context_world(WorldButtonsPanel): - __show_header__ = False + bl_show_header = False COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -41,7 +41,7 @@ class WORLD_PT_context_world(WorldButtonsPanel): split.template_ID(space, "pin_id") class WORLD_PT_world(WorldButtonsPanel): - __label__ = "World" + bl_label = "World" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -62,7 +62,7 @@ class WORLD_PT_world(WorldButtonsPanel): row.column().itemR(world, "ambient_color") class WORLD_PT_mist(WorldButtonsPanel): - __label__ = "Mist" + bl_label = "Mist" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): @@ -86,7 +86,7 @@ class WORLD_PT_mist(WorldButtonsPanel): layout.itemR(world.mist, "falloff") class WORLD_PT_stars(WorldButtonsPanel): - __label__ = "Stars" + bl_label = "Stars" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): @@ -108,7 +108,7 @@ class WORLD_PT_stars(WorldButtonsPanel): flow.itemR(world.stars, "average_separation", text="Separation") class WORLD_PT_ambient_occlusion(WorldButtonsPanel): - __label__ = "Ambient Occlusion" + bl_label = "Ambient Occlusion" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw_header(self, context): diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index 299e8bc9dae..fdbae7164b3 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -2,7 +2,7 @@ import bpy class Buttons_HT_header(bpy.types.Header): - __space_type__ = 'PROPERTIES' + bl_space_type = 'PROPERTIES' def draw(self, context): layout = self.layout @@ -22,7 +22,7 @@ class Buttons_HT_header(bpy.types.Header): row.itemR(scene, "current_frame") class Buttons_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index d02577d93e6..9bcd98be49e 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -3,7 +3,7 @@ import bpy class CONSOLE_HT_header(bpy.types.Header): - __space_type__ = 'CONSOLE' + bl_space_type = 'CONSOLE' def draw(self, context): sc = context.space_data @@ -41,7 +41,7 @@ class CONSOLE_HT_header(bpy.types.Header): class CONSOLE_MT_console(bpy.types.Menu): - __label__ = "Console" + bl_label = "Console" def draw(self, context): layout = self.layout @@ -52,7 +52,7 @@ class CONSOLE_MT_console(bpy.types.Menu): class CONSOLE_MT_report(bpy.types.Menu): - __label__ = "Report" + bl_label = "Report" def draw(self, context): layout = self.layout @@ -110,9 +110,9 @@ def get_console(console_id): class CONSOLE_OT_exec(bpy.types.Operator): '''Execute the current console line as a python expression.''' - __idname__ = "console.execute" - __label__ = "Console Execute" - __register__ = False + bl_idname = "console.execute" + bl_label = "Console Execute" + bl_register = False # Both prompts must be the same length PROMPT = '>>> ' @@ -190,9 +190,9 @@ class CONSOLE_OT_exec(bpy.types.Operator): class CONSOLE_OT_autocomplete(bpy.types.Operator): '''Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one.''' - __idname__ = "console.autocomplete" - __label__ = "Console Autocomplete" - __register__ = False + bl_idname = "console.autocomplete" + bl_label = "Console Autocomplete" + bl_register = False def poll(self, context): return context.space_data.console_type == 'PYTHON' diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index 1ab6a1f4f0b..28253a2a2b0 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -2,7 +2,7 @@ import bpy class FILEBROWSER_HT_header(bpy.types.Header): - __space_type__ = 'FILE_BROWSER' + bl_space_type = 'FILE_BROWSER' def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index 93d8043b61f..a69c225535f 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -2,7 +2,7 @@ import bpy class IMAGE_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -43,7 +43,7 @@ class IMAGE_MT_view(bpy.types.Menu): layout.itemO("screen.screen_full_area") class IMAGE_MT_select(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -63,7 +63,7 @@ class IMAGE_MT_select(bpy.types.Menu): layout.itemO("uv.select_linked") class IMAGE_MT_image(bpy.types.Menu): - __label__ = "Image" + bl_label = "Image" def draw(self, context): layout = self.layout @@ -106,7 +106,7 @@ class IMAGE_MT_image(bpy.types.Menu): layout.itemR(sima, "image_painting") class IMAGE_MT_uvs_showhide(bpy.types.Menu): - __label__ = "Show/Hide Faces" + bl_label = "Show/Hide Faces" def draw(self, context): layout = self.layout @@ -116,7 +116,7 @@ class IMAGE_MT_uvs_showhide(bpy.types.Menu): layout.item_booleanO("uv.hide", "unselected", True) class IMAGE_MT_uvs_transform(bpy.types.Menu): - __label__ = "Transform" + bl_label = "Transform" def draw(self, context): layout = self.layout @@ -126,7 +126,7 @@ class IMAGE_MT_uvs_transform(bpy.types.Menu): layout.itemO("tfm.resize") class IMAGE_MT_uvs_mirror(bpy.types.Menu): - __label__ = "Mirror" + bl_label = "Mirror" def draw(self, context): layout = self.layout @@ -139,7 +139,7 @@ class IMAGE_MT_uvs_mirror(bpy.types.Menu): props.constraint_axis[1]= True class IMAGE_MT_uvs_weldalign(bpy.types.Menu): - __label__ = "Weld/Align" + bl_label = "Weld/Align" def draw(self, context): layout = self.layout @@ -148,7 +148,7 @@ class IMAGE_MT_uvs_weldalign(bpy.types.Menu): layout.items_enumO("uv.align", "axis") # W, 2/3/4 class IMAGE_MT_uvs(bpy.types.Menu): - __label__ = "UVs" + bl_label = "UVs" def draw(self, context): layout = self.layout @@ -190,7 +190,7 @@ class IMAGE_MT_uvs(bpy.types.Menu): layout.itemM("IMAGE_MT_uvs_showhide") class IMAGE_HT_header(bpy.types.Header): - __space_type__ = 'IMAGE_EDITOR' + bl_space_type = 'IMAGE_EDITOR' def draw(self, context): layout = self.layout @@ -270,9 +270,9 @@ class IMAGE_HT_header(bpy.types.Header): layout.itemR(sima, "update_automatically", text="") class IMAGE_PT_image_properties(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Image" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Image" def poll(self, context): sima = context.space_data @@ -288,9 +288,9 @@ class IMAGE_PT_image_properties(bpy.types.Panel): layout.template_image(sima, "image", iuser, compact=True) class IMAGE_PT_game_properties(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Game Properties" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Game Properties" def poll(self, context): rd = context.scene.render_data @@ -332,9 +332,9 @@ class IMAGE_PT_game_properties(bpy.types.Panel): class IMAGE_PT_view_properties(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Display" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Display" def poll(self, context): sima = context.space_data @@ -385,9 +385,9 @@ class IMAGE_PT_view_properties(bpy.types.Panel): #col.itemR(uvedit, "draw_faces") class IMAGE_PT_paint(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Paint" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint" def poll(self, context): sima = context.space_data @@ -430,10 +430,10 @@ class IMAGE_PT_paint(bpy.types.Panel): col.itemR(brush, "blend", text="Blend") class IMAGE_PT_paint_stroke(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Paint Stroke" - __default_closed__ = True + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint Stroke" + bl_default_closed = True def poll(self, context): sima = context.space_data @@ -458,10 +458,10 @@ class IMAGE_PT_paint_stroke(bpy.types.Panel): row.itemR(brush, "use_spacing_pressure", toggle=True, text="") class IMAGE_PT_paint_curve(bpy.types.Panel): - __space_type__ = 'IMAGE_EDITOR' - __region_type__ = 'UI' - __label__ = "Paint Curve" - __default_closed__ = True + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint Curve" + bl_default_closed = True def poll(self, context): sima = context.space_data diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index d4fcbbcdd4d..58ba96e0181 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -5,7 +5,7 @@ import dynamic_menu # reload(dynamic_menu) class INFO_HT_header(bpy.types.Header): - __space_type__ = 'INFO' + bl_space_type = 'INFO' def draw(self, context): layout = self.layout @@ -43,7 +43,7 @@ class INFO_HT_header(bpy.types.Header): layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") class INFO_MT_file(bpy.types.Menu): - __label__ = "File" + bl_label = "File" def draw(self, context): layout = self.layout @@ -85,7 +85,7 @@ class INFO_MT_file(bpy.types.Menu): # test for expanding menus ''' class INFO_MT_file_more(INFO_MT_file): - __label__ = "File" + bl_label = "File" def draw(self, context): layout = self.layout @@ -96,19 +96,19 @@ dynamic_menu.setup(INFO_MT_file_more) ''' class INFO_MT_file_import(dynamic_menu.DynMenu): - __label__ = "Import" + bl_label = "Import" def draw(self, context): self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") class INFO_MT_file_export(dynamic_menu.DynMenu): - __label__ = "Export" + bl_label = "Export" def draw(self, context): self.layout.itemO("WM_OT_collada_export", text="COLLADA (.dae)...") class INFO_MT_file_external_data(bpy.types.Menu): - __label__ = "External Data" + bl_label = "External Data" def draw(self, context): layout = self.layout @@ -124,7 +124,7 @@ class INFO_MT_file_external_data(bpy.types.Menu): layout.itemO("file.find_missing_files") class INFO_MT_mesh_add(dynamic_menu.DynMenu): - __label__ = "Mesh" + bl_label = "Mesh" def draw(self, context): layout = self.layout layout.operator_context = 'INVOKE_REGION_WIN' @@ -140,7 +140,7 @@ class INFO_MT_mesh_add(dynamic_menu.DynMenu): layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY', text="Monkey") class INFO_MT_add(bpy.types.Menu): - __label__ = "Add" + bl_label = "Add" def draw(self, context): layout = self.layout @@ -175,7 +175,7 @@ class INFO_MT_add(bpy.types.Menu): layout.item_menu_enumO("object.group_instance_add", "type", text="Group Instance", icon='ICON_OUTLINER_OB_EMPTY') class INFO_MT_game(bpy.types.Menu): - __label__ = "Game" + bl_label = "Game" def draw(self, context): layout = self.layout @@ -192,7 +192,7 @@ class INFO_MT_game(bpy.types.Menu): layout.itemR(gs, "deprecation_warnings") class INFO_MT_render(bpy.types.Menu): - __label__ = "Render" + bl_label = "Render" def draw(self, context): layout = self.layout @@ -212,7 +212,7 @@ class INFO_MT_render(bpy.types.Menu): layout.itemO("screen.render_view_show") class INFO_MT_help(bpy.types.Menu): - __label__ = "Help" + bl_label = "Help" def draw(self, context): layout = self.layout @@ -247,54 +247,54 @@ bpy.types.register(INFO_MT_help) class HelpOperator(bpy.types.Operator): def execute(self, context): import webbrowser - webbrowser.open(self.__URL__) + webbrowser.open(self._url) return ('FINISHED',) class HELP_OT_manual(HelpOperator): '''The Blender Wiki manual''' - __idname__ = "help.manual" - __label__ = "Manual" - __URL__ = 'http://wiki.blender.org/index.php/Manual' + bl_idname = "help.manual" + bl_label = "Manual" + _url = 'http://wiki.blender.org/index.php/Manual' class HELP_OT_release_logs(HelpOperator): '''Information about the changes in this version of Blender''' - __idname__ = "help.release_logs" - __label__ = "Release Logs" - __URL__ = 'http://www.blender.org/development/release-logs/' + bl_idname = "help.release_logs" + bl_label = "Release Logs" + _url = 'http://www.blender.org/development/release-logs/' class HELP_OT_blender_website(HelpOperator): '''The official Blender website''' - __idname__ = "help.blender_website" - __label__ = "Blender Website" - __URL__ = 'http://www.blender.org/' + bl_idname = "help.blender_website" + bl_label = "Blender Website" + _url = 'http://www.blender.org/' class HELP_OT_blender_eshop(HelpOperator): '''Buy official Blender resources and merchandise online''' - __idname__ = "help.blender_eshop" - __label__ = "Blender e-Shop" - __URL__ = 'http://www.blender3d.org/e-shop' + bl_idname = "help.blender_eshop" + bl_label = "Blender e-Shop" + _url = 'http://www.blender3d.org/e-shop' class HELP_OT_developer_community(HelpOperator): '''Get involved with Blender development''' - __idname__ = "help.developer_community" - __label__ = "Developer Community" - __URL__ = 'http://www.blender.org/community/get-involved/' + bl_idname = "help.developer_community" + bl_label = "Developer Community" + _url = 'http://www.blender.org/community/get-involved/' class HELP_OT_user_community(HelpOperator): '''Get involved with other Blender users''' - __idname__ = "help.user_community" - __label__ = "User Community" - __URL__ = 'http://www.blender.org/community/user-community/' + bl_idname = "help.user_community" + bl_label = "User Community" + _url = 'http://www.blender.org/community/user-community/' class HELP_OT_report_bug(HelpOperator): '''Report a bug in the Blender bug tracker''' - __idname__ = "help.report_bug" - __label__ = "Report a Bug" - __URL__ = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' + bl_idname = "help.report_bug" + bl_label = "Report a Bug" + _url = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' class HELP_OT_operator_cheat_sheet(bpy.types.Operator): - __idname__ = "help.operator_cheat_sheet" - __label__ = "Operator Cheat Sheet (new textblock)" + bl_idname = "help.operator_cheat_sheet" + bl_label = "Operator Cheat Sheet (new textblock)" def execute(self, context): op_strings = [] tot = 0 diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index 5748d15a53a..7c6ce62bb6b 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -1,9 +1,9 @@ import bpy class LOGIC_PT_properties(bpy.types.Panel): - __space_type__ = 'LOGIC_EDITOR' - __region_type__ = 'UI' - __label__ = "Properties" + bl_space_type = 'LOGIC_EDITOR' + bl_region_type = 'UI' + bl_label = "Properties" def poll(self, context): ob = context.active_object diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index 5c5c49afbc7..f9d1b59e3ec 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -2,7 +2,7 @@ import bpy class NODE_HT_header(bpy.types.Header): - __space_type__ = 'NODE_EDITOR' + bl_space_type = 'NODE_EDITOR' def draw(self, context): layout = self.layout @@ -48,7 +48,7 @@ class NODE_HT_header(bpy.types.Header): layout.itemR(snode, "backdrop") class NODE_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -65,7 +65,7 @@ class NODE_MT_view(bpy.types.Menu): layout.itemO("screen.screen_full_area") class NODE_MT_select(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -78,7 +78,7 @@ class NODE_MT_select(bpy.types.Menu): layout.itemO("node.select_linked_to") class NODE_MT_node(bpy.types.Menu): - __label__ = "Node" + bl_label = "Node" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 40816309e7e..b3cb04e9286 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -2,7 +2,7 @@ import bpy class OUTLINER_HT_header(bpy.types.Header): - __space_type__ = 'OUTLINER' + bl_space_type = 'OUTLINER' def draw(self, context): layout = self.layout @@ -41,7 +41,7 @@ class OUTLINER_HT_header(bpy.types.Header): row.itemL(text="No Keying Set active") class OUTLINER_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -58,7 +58,7 @@ class OUTLINER_MT_view(bpy.types.Menu): col.itemO("outliner.show_hierarchy") class OUTLINER_MT_edit_datablocks(bpy.types.Menu): - __label__ = "Edit" + bl_label = "Edit" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 59066097879..5d5f4ed662f 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -7,7 +7,7 @@ def act_strip(context): # Header class SEQUENCER_HT_header(bpy.types.Header): - __space_type__ = 'SEQUENCE_EDITOR' + bl_space_type = 'SEQUENCE_EDITOR' def draw(self, context): layout = self.layout @@ -38,7 +38,7 @@ class SEQUENCER_HT_header(bpy.types.Header): layout.itemR(st, "display_channel", text="Channel") class SEQUENCER_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -105,7 +105,7 @@ class SEQUENCER_MT_view(bpy.types.Menu): """ class SEQUENCER_MT_select(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -125,7 +125,7 @@ class SEQUENCER_MT_select(bpy.types.Menu): layout.itemO("sequencer.select_inverse") class SEQUENCER_MT_marker(bpy.types.Menu): - __label__ = "Marker (TODO)" + bl_label = "Marker (TODO)" def draw(self, context): layout = self.layout @@ -143,7 +143,7 @@ class SEQUENCER_MT_marker(bpy.types.Menu): #layout.itemO("sequencer.sound_strip_add", text="Transform Markers") # toggle, will be rna - (sseq->flag & SEQ_MARKER_TRANS) class SEQUENCER_MT_add(bpy.types.Menu): - __label__ = "Add" + bl_label = "Add" def draw(self, context): layout = self.layout @@ -160,7 +160,7 @@ class SEQUENCER_MT_add(bpy.types.Menu): layout.itemM("SEQUENCER_MT_add_effect") class SEQUENCER_MT_add_effect(bpy.types.Menu): - __label__ = "Effect Strip..." + bl_label = "Effect Strip..." def draw(self, context): layout = self.layout @@ -183,7 +183,7 @@ class SEQUENCER_MT_add_effect(bpy.types.Menu): layout.item_enumO("sequencer.effect_strip_add", 'type', 'SPEED') class SEQUENCER_MT_strip(bpy.types.Menu): - __label__ = "Strip" + bl_label = "Strip" def draw(self, context): layout = self.layout @@ -252,21 +252,21 @@ class SEQUENCER_MT_strip(bpy.types.Menu): # Panels class SequencerButtonsPanel(bpy.types.Panel): - __space_type__ = 'SEQUENCE_EDITOR' - __region_type__ = 'UI' + bl_space_type = 'SEQUENCE_EDITOR' + bl_region_type = 'UI' def poll(self, context): return context.space_data.display_mode == 'SEQUENCER' and act_strip(context) != None class SequencerButtonsPanel_Output(bpy.types.Panel): - __space_type__ = 'SEQUENCE_EDITOR' - __region_type__ = 'UI' + bl_space_type = 'SEQUENCE_EDITOR' + bl_region_type = 'UI' def poll(self, context): return context.space_data.display_mode != 'SEQUENCER' class SEQUENCER_PT_edit(SequencerButtonsPanel): - __label__ = "Edit Strip" + bl_label = "Edit Strip" def draw(self, context): layout = self.layout @@ -317,7 +317,7 @@ class SEQUENCER_PT_edit(SequencerButtonsPanel): col.itemR(strip, "end_still", text="End") class SEQUENCER_PT_effect(SequencerButtonsPanel): - __label__ = "Effect Strip" + bl_label = "Effect Strip" def poll(self, context): if context.space_data.display_mode != 'SEQUENCER': @@ -404,7 +404,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel): col.itemR(strip, "rotation_end", text="End") class SEQUENCER_PT_input(SequencerButtonsPanel): - __label__ = "Strip Input" + bl_label = "Strip Input" def poll(self, context): if context.space_data.display_mode != 'SEQUENCER': @@ -459,7 +459,7 @@ class SEQUENCER_PT_input(SequencerButtonsPanel): col.itemR(strip, "animation_end_offset", text="End") class SEQUENCER_PT_sound(SequencerButtonsPanel): - __label__ = "Sound" + bl_label = "Sound" def poll(self, context): if context.space_data.display_mode != 'SEQUENCER': @@ -490,7 +490,7 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel): row.itemR(strip.sound, "caching") class SEQUENCER_PT_filter(SequencerButtonsPanel): - __label__ = "Filter" + bl_label = "Filter" def poll(self, context): if context.space_data.display_mode != 'SEQUENCER': @@ -539,7 +539,7 @@ class SEQUENCER_PT_filter(SequencerButtonsPanel): col.itemR(strip.color_balance, "inverse_gain", text="Inverse") class SEQUENCER_PT_proxy(SequencerButtonsPanel): - __label__ = "Proxy" + bl_label = "Proxy" def poll(self, context): if context.space_data.display_mode != 'SEQUENCER': @@ -568,7 +568,7 @@ class SEQUENCER_PT_proxy(SequencerButtonsPanel): flow.itemR(strip.proxy, "file") class SEQUENCER_PT_view(SequencerButtonsPanel_Output): - __label__ = "View Settings" + bl_label = "View Settings" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index 479f2b60f51..97052c68043 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -2,7 +2,7 @@ import bpy class TEXT_HT_header(bpy.types.Header): - __space_type__ = 'TEXT_EDITOR' + bl_space_type = 'TEXT_EDITOR' def draw(self, context): layout = self.layout @@ -49,9 +49,9 @@ class TEXT_HT_header(bpy.types.Header): row.itemO("text.run_script") class TEXT_PT_properties(bpy.types.Panel): - __space_type__ = 'TEXT_EDITOR' - __region_type__ = 'UI' - __label__ = "Properties" + bl_space_type = 'TEXT_EDITOR' + bl_region_type = 'UI' + bl_label = "Properties" def draw(self, context): layout = self.layout @@ -69,9 +69,9 @@ class TEXT_PT_properties(bpy.types.Panel): flow.itemR(st, "tab_width") class TEXT_PT_find(bpy.types.Panel): - __space_type__ = 'TEXT_EDITOR' - __region_type__ = 'UI' - __label__ = "Find" + bl_space_type = 'TEXT_EDITOR' + bl_region_type = 'UI' + bl_label = "Find" def draw(self, context): layout = self.layout @@ -101,7 +101,7 @@ class TEXT_PT_find(bpy.types.Panel): row.itemR(st, "find_all", text="All") class TEXT_MT_text(bpy.types.Menu): - __label__ = "Text" + bl_label = "Text" def draw(self, context): layout = self.layout @@ -151,7 +151,7 @@ class TEXT_MT_templates(bpy.types.Menu): ''' Creates the menu items by scanning scripts/templates ''' - __label__ = "Script Templates" + bl_label = "Script Templates" def draw(self, context): import os @@ -175,7 +175,7 @@ class TEXT_MT_templates(bpy.types.Menu): class TEXT_MT_edit_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -184,7 +184,7 @@ class TEXT_MT_edit_view(bpy.types.Menu): layout.item_enumO("text.move", "type", 'FILE_BOTTOM', text="Bottom of File") class TEXT_MT_edit_select(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -193,7 +193,7 @@ class TEXT_MT_edit_select(bpy.types.Menu): layout.itemO("text.select_line") class TEXT_MT_edit_markers(bpy.types.Menu): - __label__ = "Markers" + bl_label = "Markers" def draw(self, context): layout = self.layout @@ -203,7 +203,7 @@ class TEXT_MT_edit_markers(bpy.types.Menu): layout.itemO("text.previous_marker") class TEXT_MT_format(bpy.types.Menu): - __label__ = "Format" + bl_label = "Format" def draw(self, context): layout = self.layout @@ -221,7 +221,7 @@ class TEXT_MT_format(bpy.types.Menu): layout.item_menu_enumO("text.convert_whitespace", "type") class TEXT_MT_edit_to3d(bpy.types.Menu): - __label__ = "Text To 3D Object" + bl_label = "Text To 3D Object" def draw(self, context): layout = self.layout @@ -230,7 +230,7 @@ class TEXT_MT_edit_to3d(bpy.types.Menu): layout.item_booleanO("text.to_3d_object", "split_lines", True, text="One Object Per Line"); class TEXT_MT_edit(bpy.types.Menu): - __label__ = "Edit" + bl_label = "Edit" def poll(self, context): return (context.space_data.text) diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index 2ead4305960..1e385be06dd 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -2,7 +2,7 @@ import bpy class TIME_HT_header(bpy.types.Header): - __space_type__ = 'TIMELINE' + bl_space_type = 'TIMELINE' def draw(self, context): layout = self.layout @@ -64,7 +64,7 @@ class TIME_HT_header(bpy.types.Header): row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') class TIME_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -78,7 +78,7 @@ class TIME_MT_view(bpy.types.Menu): layout.itemR(st, "only_selected") class TIME_MT_frame(bpy.types.Menu): - __label__ = "Frame" + bl_label = "Frame" def draw(self, context): layout = self.layout @@ -102,7 +102,7 @@ class TIME_MT_frame(bpy.types.Menu): sub.itemM("TIME_MT_autokey") class TIME_MT_playback(bpy.types.Menu): - __label__ = "Playback" + bl_label = "Playback" def draw(self, context): layout = self.layout @@ -129,7 +129,7 @@ class TIME_MT_playback(bpy.types.Menu): layout.itemR(scene, "scrub_audio") class TIME_MT_autokey(bpy.types.Menu): - __label__ = "Auto-Keyframing Mode" + bl_label = "Auto-Keyframing Mode" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 10e1831de0f..c03c9ff2a2f 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -2,7 +2,7 @@ import bpy class USERPREF_HT_header(bpy.types.Header): - __space_type__ = 'USER_PREFERENCES' + bl_space_type = 'USER_PREFERENCES' def draw(self, context): layout = self.layout @@ -18,14 +18,14 @@ class USERPREF_HT_header(bpy.types.Header): layout.itemO("wm.keyconfig_export", "Export Key Configuration...") class USERPREF_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout class USERPREF_PT_tabs(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_show_header = False def draw(self, context): layout = self.layout @@ -35,9 +35,9 @@ class USERPREF_PT_tabs(bpy.types.Panel): layout.itemR(userpref, "active_section", expand=True) class USERPREF_PT_interface(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __label__ = "Interface" - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Interface" + bl_show_header = False def poll(self, context): userpref = context.user_preferences @@ -119,9 +119,9 @@ class USERPREF_PT_interface(bpy.types.Panel): sub1.itemR(view, "open_sublevel_delay", text="Sub Level") class USERPREF_PT_edit(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __label__ = "Edit" - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Edit" + bl_show_header = False def poll(self, context): userpref = context.user_preferences @@ -222,9 +222,9 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.itemR(edit, "duplicate_particle", text="Particle") class USERPREF_PT_system(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __label__ = "System" - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "System" + bl_show_header = False def poll(self, context): userpref = context.user_preferences @@ -313,9 +313,9 @@ class USERPREF_PT_system(bpy.types.Panel): sub1.itemR(system, "memory_cache_limit") class USERPREF_PT_file(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __label__ = "Files" - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Files" + bl_show_header = False def poll(self, context): userpref = context.user_preferences @@ -379,9 +379,9 @@ class USERPREF_PT_file(bpy.types.Panel): sub3.itemR(paths, "auto_save_time", text="Timer (mins)") class USERPREF_PT_input(bpy.types.Panel): - __space_type__ = 'USER_PREFERENCES' - __label__ = "Input" - __show_header__ = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Input" + bl_show_header = False def poll(self, context): userpref = context.user_preferences @@ -556,9 +556,9 @@ bpy.types.register(USERPREF_PT_input) class WM_OT_keyconfig_export(bpy.types.Operator): "Export key configuration to a python script." - __idname__ = "wm.keyconfig_export" - __label__ = "Export Key Configuration..." - __props__ = [ + bl_idname = "wm.keyconfig_export" + bl_label = "Export Key Configuration..." + bl_props = [ bpy.props.StringProperty(attr="path", name="File Path", description="File path to write file to.")] def _string_value(self, value): @@ -644,8 +644,8 @@ class WM_OT_keyconfig_export(bpy.types.Operator): class WM_OT_keymap_edit(bpy.types.Operator): "Edit key map." - __idname__ = "wm.keymap_edit" - __label__ = "Edit Key Map" + bl_idname = "wm.keymap_edit" + bl_label = "Edit Key Map" def execute(self, context): wm = context.manager @@ -655,9 +655,9 @@ class WM_OT_keymap_edit(bpy.types.Operator): class WM_OT_keymap_restore(bpy.types.Operator): "Restore key map" - __idname__ = "wm.keymap_restore" - __label__ = "Restore Key Map" - __props__ = [bpy.props.BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.")] + bl_idname = "wm.keymap_restore" + bl_label = "Restore Key Map" + bl_props = [bpy.props.BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.")] def execute(self, context): wm = context.manager @@ -673,8 +673,8 @@ class WM_OT_keymap_restore(bpy.types.Operator): class WM_OT_keyitem_add(bpy.types.Operator): "Add key map item." - __idname__ = "wm.keyitem_add" - __label__ = "Add Key Map Item" + bl_idname = "wm.keyitem_add" + bl_label = "Add Key Map Item" def execute(self, context): wm = context.manager @@ -684,8 +684,8 @@ class WM_OT_keyitem_add(bpy.types.Operator): class WM_OT_keyitem_remove(bpy.types.Operator): "Remove key map item." - __idname__ = "wm.keyitem_remove" - __label__ = "Remove Key Map Item" + bl_idname = "wm.keyitem_remove" + bl_label = "Remove Key Map Item" def execute(self, context): wm = context.manager diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 90447b6d777..0a132355bf9 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -6,7 +6,7 @@ import dynamic_menu # ********** Header ********** class VIEW3D_HT_header(bpy.types.Header): - __space_type__ = 'VIEW_3D' + bl_space_type = 'VIEW_3D' def draw(self, context): layout = self.layout @@ -46,7 +46,7 @@ class VIEW3D_HT_header(bpy.types.Header): # ********** Utilities ********** class VIEW3D_MT_showhide(bpy.types.Menu): - __label__ = "Show/Hide" + bl_label = "Show/Hide" _operator_name = "" def draw(self, context): @@ -57,7 +57,7 @@ class VIEW3D_MT_showhide(bpy.types.Menu): layout.item_booleanO("%s.hide" % self._operator_name, "unselected", True, text="Hide Unselected") class VIEW3D_MT_snap(bpy.types.Menu): - __label__ = "Snap" + bl_label = "Snap" def draw(self, context): layout = self.layout @@ -75,7 +75,7 @@ class VIEW3D_MT_snap(bpy.types.Menu): # ********** View menus ********** class VIEW3D_MT_view(bpy.types.Menu): - __label__ = "View" + bl_label = "View" def draw(self, context): layout = self.layout @@ -127,7 +127,7 @@ class VIEW3D_MT_view(bpy.types.Menu): layout.itemO("screen.animation_play", text="Playback Animation", icon='ICON_PLAY') class VIEW3D_MT_view_navigation(bpy.types.Menu): - __label__ = "Navigation" + bl_label = "Navigation" def draw(self, context): layout = self.layout @@ -148,7 +148,7 @@ class VIEW3D_MT_view_navigation(bpy.types.Menu): layout.itemO("view3d.fly") class VIEW3D_MT_view_align(bpy.types.Menu): - __label__ = "Align View" + bl_label = "Align View" def draw(self, context): layout = self.layout @@ -158,7 +158,7 @@ class VIEW3D_MT_view_align(bpy.types.Menu): layout.itemO("view3d.view_center") class VIEW3D_MT_view_cameras(bpy.types.Menu): - __label__ = "Cameras" + bl_label = "Cameras" def draw(self, context): layout = self.layout @@ -169,7 +169,7 @@ class VIEW3D_MT_view_cameras(bpy.types.Menu): # ********** Select menus, suffix from context.mode ********** class VIEW3D_MT_select_object(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -188,7 +188,7 @@ class VIEW3D_MT_select_object(bpy.types.Menu): layout.itemO("object.select_pattern", text="Select Pattern...") class VIEW3D_MT_select_pose(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -218,7 +218,7 @@ class VIEW3D_MT_select_pose(bpy.types.Menu): props.direction = 'CHILD' class VIEW3D_MT_select_particle(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -236,7 +236,7 @@ class VIEW3D_MT_select_particle(bpy.types.Menu): layout.itemO("particle.select_less") class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -281,7 +281,7 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): layout.itemO("mesh.region_to_loop") class VIEW3D_MT_select_edit_curve(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -309,7 +309,7 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu): layout.itemO("curve.select_less") class VIEW3D_MT_select_edit_surface(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -334,7 +334,7 @@ class VIEW3D_MT_select_edit_surface(bpy.types.Menu): layout.itemO("curve.select_less") class VIEW3D_MT_select_edit_metaball(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -351,7 +351,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu): layout.itemO("mball.select_random_metaelems") class VIEW3D_MT_select_edit_lattice(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -363,7 +363,7 @@ class VIEW3D_MT_select_edit_lattice(bpy.types.Menu): layout.itemO("lattice.select_all_toggle", text="Select/Deselect All") class VIEW3D_MT_select_edit_armature(bpy.types.Menu): - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -391,7 +391,7 @@ class VIEW3D_MT_select_edit_armature(bpy.types.Menu): props.direction = 'CHILD' class VIEW3D_MT_select_face(bpy.types.Menu):# XXX no matching enum - __label__ = "Select" + bl_label = "Select" def draw(self, context): layout = self.layout @@ -401,8 +401,8 @@ class VIEW3D_MT_select_face(bpy.types.Menu):# XXX no matching enum # ********** Object menu ********** class VIEW3D_MT_object(bpy.types.Menu): - __context__ = "objectmode" - __label__ = "Object" + bl_context = "objectmode" + bl_label = "Object" def draw(self, context): layout = self.layout @@ -444,7 +444,7 @@ class VIEW3D_MT_object(bpy.types.Menu): layout.item_menu_enumO("object.convert", "target") class VIEW3D_MT_object_clear(bpy.types.Menu): - __label__ = "Clear" + bl_label = "Clear" def draw(self, context): layout = self.layout @@ -455,7 +455,7 @@ class VIEW3D_MT_object_clear(bpy.types.Menu): layout.itemO("object.origin_clear", text="Origin") class VIEW3D_MT_object_apply(bpy.types.Menu): - __label__ = "Apply" + bl_label = "Apply" def draw(self, context): layout = self.layout @@ -469,7 +469,7 @@ class VIEW3D_MT_object_apply(bpy.types.Menu): class VIEW3D_MT_object_parent(bpy.types.Menu): - __label__ = "Parent" + bl_label = "Parent" def draw(self, context): layout = self.layout @@ -478,7 +478,7 @@ class VIEW3D_MT_object_parent(bpy.types.Menu): layout.itemO("object.parent_clear", text="Clear") class VIEW3D_MT_object_track(bpy.types.Menu): - __label__ = "Track" + bl_label = "Track" def draw(self, context): layout = self.layout @@ -487,7 +487,7 @@ class VIEW3D_MT_object_track(bpy.types.Menu): layout.itemO("object.track_clear", text="Clear") class VIEW3D_MT_object_group(bpy.types.Menu): - __label__ = "Group" + bl_label = "Group" def draw(self, context): layout = self.layout @@ -501,7 +501,7 @@ class VIEW3D_MT_object_group(bpy.types.Menu): layout.itemO("group.objects_remove_active") class VIEW3D_MT_object_constraints(bpy.types.Menu): - __label__ = "Constraints" + bl_label = "Constraints" def draw(self, context): layout = self.layout @@ -510,7 +510,7 @@ class VIEW3D_MT_object_constraints(bpy.types.Menu): layout.itemO("object.constraints_clear") class VIEW3D_MT_object_showhide(bpy.types.Menu): - __label__ = "Show/Hide" + bl_label = "Show/Hide" def draw(self, context): layout = self.layout @@ -520,7 +520,7 @@ class VIEW3D_MT_object_showhide(bpy.types.Menu): layout.item_booleanO("object.restrictview_set", "unselected", True, text="Hide Unselected") class VIEW3D_MT_make_single_user(bpy.types.Menu): - __label__ = "Make Single User" + bl_label = "Make Single User" def draw(self, context): layout = self.layout @@ -543,7 +543,7 @@ class VIEW3D_MT_make_single_user(bpy.types.Menu): # ********** Vertex paint menu ********** class VIEW3D_MT_paint_vertex(bpy.types.Menu): - __label__ = "Paint" + bl_label = "Paint" def draw(self, context): layout = self.layout @@ -557,7 +557,7 @@ class VIEW3D_MT_paint_vertex(bpy.types.Menu): # ********** Sculpt menu ********** class VIEW3D_MT_sculpt(bpy.types.Menu): - __label__ = "Sculpt" + bl_label = "Sculpt" def draw(self, context): layout = self.layout @@ -592,7 +592,7 @@ class VIEW3D_MT_sculpt(bpy.types.Menu): # ********** Particle menu ********** class VIEW3D_MT_particle(bpy.types.Menu): - __label__ = "Particle" + bl_label = "Particle" def draw(self, context): layout = self.layout @@ -621,7 +621,7 @@ class VIEW3D_MT_particle_showhide(VIEW3D_MT_showhide): # ********** Pose Menu ********** class VIEW3D_MT_pose(bpy.types.Menu): - __label__ = "Pose" + bl_label = "Pose" def draw(self, context): layout = self.layout @@ -680,7 +680,7 @@ class VIEW3D_MT_pose(bpy.types.Menu): layout.item_menu_enumO("pose.flags_set", 'mode', text="Bone Settings") class VIEW3D_MT_pose_transform(bpy.types.Menu): - __label__ = "Clear Transform" + bl_label = "Clear Transform" def draw(self, context): layout = self.layout @@ -694,7 +694,7 @@ class VIEW3D_MT_pose_transform(bpy.types.Menu): layout.itemL(text="Origin") class VIEW3D_MT_pose_pose(bpy.types.Menu): - __label__ = "Pose Library" + bl_label = "Pose Library" def draw(self, context): layout = self.layout @@ -708,7 +708,7 @@ class VIEW3D_MT_pose_pose(bpy.types.Menu): layout.itemO("poselib.pose_remove", text="Remove Pose...") class VIEW3D_MT_pose_motion(bpy.types.Menu): - __label__ = "Motion Paths" + bl_label = "Motion Paths" def draw(self, context): layout = self.layout @@ -717,7 +717,7 @@ class VIEW3D_MT_pose_motion(bpy.types.Menu): layout.itemO("pose.paths_clear", text="Clear") class VIEW3D_MT_pose_group(bpy.types.Menu): - __label__ = "Bone Groups" + bl_label = "Bone Groups" def draw(self, context): layout = self.layout @@ -731,7 +731,7 @@ class VIEW3D_MT_pose_group(bpy.types.Menu): class VIEW3D_MT_pose_ik(bpy.types.Menu): - __label__ = "Inverse Kinematics" + bl_label = "Inverse Kinematics" def draw(self, context): layout = self.layout @@ -740,7 +740,7 @@ class VIEW3D_MT_pose_ik(bpy.types.Menu): layout.itemO("pose.ik_clear") class VIEW3D_MT_pose_constraints(bpy.types.Menu): - __label__ = "Constraints" + bl_label = "Constraints" def draw(self, context): layout = self.layout @@ -755,7 +755,7 @@ class VIEW3D_MT_pose_showhide(VIEW3D_MT_showhide): # Edit MESH class VIEW3D_MT_edit_mesh(bpy.types.Menu): - __label__ = "Mesh" + bl_label = "Mesh" def draw(self, context): layout = self.layout @@ -798,7 +798,7 @@ class VIEW3D_MT_edit_mesh(bpy.types.Menu): # Only used by the menu class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): - __label__ = "Specials" + bl_label = "Specials" def draw(self, context): layout = self.layout @@ -822,7 +822,7 @@ class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): layout.itemO("mesh.select_vertex_path") class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): - __label__ = "Vertices" + bl_label = "Vertices" def draw(self, context): layout = self.layout @@ -846,7 +846,7 @@ class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): layout.itemO("mesh.shape_propagate_to_all") class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): - __label__ = "Edges" + bl_label = "Edges" def draw(self, context): layout = self.layout @@ -885,7 +885,7 @@ class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): class VIEW3D_MT_edit_mesh_faces(dynamic_menu.DynMenu): - __label__ = "Faces" + bl_label = "Faces" def draw(self, context): layout = self.layout @@ -925,7 +925,7 @@ class VIEW3D_MT_edit_mesh_faces(dynamic_menu.DynMenu): class VIEW3D_MT_edit_mesh_normals(bpy.types.Menu): - __label__ = "Normals" + bl_label = "Normals" def draw(self, context): layout = self.layout @@ -974,12 +974,12 @@ def draw_curve(self, context): layout.itemM("VIEW3D_MT_edit_curve_showhide") class VIEW3D_MT_edit_curve(bpy.types.Menu): - __label__ = "Curve" + bl_label = "Curve" draw = draw_curve class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu): - __label__ = "Control Points" + bl_label = "Control Points" def draw(self, context): layout = self.layout @@ -996,7 +996,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu): layout.item_menu_enumO("curve.handle_type_set", "type") class VIEW3D_MT_edit_curve_segments(bpy.types.Menu): - __label__ = "Segments" + bl_label = "Segments" def draw(self, context): layout = self.layout @@ -1009,13 +1009,13 @@ class VIEW3D_MT_edit_curve_showhide(VIEW3D_MT_showhide): # Edit SURFACE class VIEW3D_MT_edit_surface(bpy.types.Menu): - __label__ = "Surface" + bl_label = "Surface" draw = draw_curve # Edit TEXT class VIEW3D_MT_edit_text(bpy.types.Menu): - __label__ = "Text" + bl_label = "Text" def draw(self, context): layout = self.layout @@ -1027,7 +1027,7 @@ class VIEW3D_MT_edit_text(bpy.types.Menu): layout.itemm("view3d_mt_edit_text_chars") class VIEW3D_MT_edit_text_chars(bpy.types.Menu): - __label__ = "Special Characters" + bl_label = "Special Characters" def draw(self, context): layout = self.layout @@ -1061,7 +1061,7 @@ class VIEW3D_MT_edit_text_chars(bpy.types.Menu): # Edit META class VIEW3D_MT_edit_meta(bpy.types.Menu): - __label__ = "Metaball" + bl_label = "Metaball" def draw(self, context): layout = self.layout @@ -1090,7 +1090,7 @@ class VIEW3D_MT_edit_meta(bpy.types.Menu): layout.itemM("VIEW3D_MT_edit_meta_showhide") class VIEW3D_MT_edit_meta_showhide(bpy.types.Menu): - __label__ = "Show/Hide" + bl_label = "Show/Hide" def draw(self, context): layout = self.layout @@ -1101,7 +1101,7 @@ class VIEW3D_MT_edit_meta_showhide(bpy.types.Menu): # Edit LATTICE class VIEW3D_MT_edit_lattice(bpy.types.Menu): - __label__ = "Lattice" + bl_label = "Lattice" def draw(self, context): layout = self.layout @@ -1121,7 +1121,7 @@ class VIEW3D_MT_edit_lattice(bpy.types.Menu): # Edit ARMATURE class VIEW3D_MT_edit_armature(bpy.types.Menu): - __label__ = "Armature" + bl_label = "Armature" def draw(self, context): layout = self.layout @@ -1178,7 +1178,7 @@ class VIEW3D_MT_edit_armature(bpy.types.Menu): layout.item_menu_enumO("armature.flags_set", "mode", text="Bone Settings") class VIEW3D_MT_edit_armature_parent(bpy.types.Menu): - __label__ = "Parent" + bl_label = "Parent" def draw(self, context): layout = self.layout @@ -1187,7 +1187,7 @@ class VIEW3D_MT_edit_armature_parent(bpy.types.Menu): layout.itemO("armature.parent_clear", text="Clear") class VIEW3D_MT_edit_armature_roll(bpy.types.Menu): - __label__ = "Bone Roll" + bl_label = "Bone Roll" def draw(self, context): layout = self.layout @@ -1202,9 +1202,9 @@ class VIEW3D_MT_edit_armature_roll(bpy.types.Menu): # ********** Panel ********** class VIEW3D_PT_3dview_properties(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "View" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "View" def poll(self, context): view = context.space_data @@ -1235,10 +1235,10 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel): layout.column().itemR(scene, "cursor_location", text="3D Cursor:") class VIEW3D_PT_3dview_display(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Display" - __default_closed__ = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Display" + bl_default_closed = True def poll(self, context): view = context.space_data @@ -1278,9 +1278,9 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): # col.itemR(view, "box_clip") class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Mesh Display" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Mesh Display" def poll(self, context): editmesh = context.mode == 'EDIT_MESH' @@ -1313,9 +1313,9 @@ class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): col.itemR(mesh, "draw_face_area") class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Curve Display" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Curve Display" def poll(self, context): editmesh = context.mode == 'EDIT_CURVE' @@ -1333,10 +1333,10 @@ class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel): col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") class VIEW3D_PT_background_image(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Background Image" - __default_closed__ = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Background Image" + bl_default_closed = True def poll(self, context): view = context.space_data @@ -1371,10 +1371,10 @@ class VIEW3D_PT_background_image(bpy.types.Panel): col.itemR(bg, "offset_y", text="Y") class VIEW3D_PT_transform_orientations(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Transform Orientations" - __default_closed__ = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Transform Orientations" + bl_default_closed = True def poll(self, context): view = context.space_data @@ -1397,10 +1397,10 @@ class VIEW3D_PT_transform_orientations(bpy.types.Panel): col.itemO("tfm.delete_orientation", text="Delete") class VIEW3D_PT_etch_a_ton(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'UI' - __label__ = "Skeleton Sketching" - __default_closed__ = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Skeleton Sketching" + bl_default_closed = True def poll(self, context): scene = context.space_data @@ -1442,11 +1442,11 @@ class VIEW3D_PT_etch_a_ton(bpy.types.Panel): class OBJECT_OT_select_pattern(bpy.types.Operator): '''Select object matching a naming pattern.''' - __idname__ = "object.select_pattern" - __label__ = "Select Pattern" - __register__ = True - __undo__ = True - __props__ = [ + bl_idname = "object.select_pattern" + bl_label = "Select Pattern" + bl_register = True + bl_undo = True + bl_props = [ bpy.props.StringProperty(attr="pattern", name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*"), bpy.props.BoolProperty(attr="case_sensitive", name="Case Sensitive", description="Do a case sensitive compare", default= False), bpy.props.BoolProperty(attr="extend", name="Extend", description="Extend the existing selection", default= True), diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 1b80a35b504..df4cf6dcbaf 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -2,14 +2,14 @@ import bpy class View3DPanel(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'TOOLS' + bl_space_type = 'VIEW_3D' + bl_region_type = 'TOOLS' # ********** default tools for objectmode **************** class VIEW3D_PT_tools_objectmode(View3DPanel): - __context__ = "objectmode" - __label__ = "Object Tools" + bl_context = "objectmode" + bl_label = "Object Tools" def draw(self, context): layout = self.layout @@ -53,8 +53,8 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): # ********** default tools for editmode_mesh **************** class VIEW3D_PT_tools_meshedit(View3DPanel): - __context__ = "mesh_edit" - __label__ = "Mesh Tools" + bl_context = "mesh_edit" + bl_label = "Mesh Tools" def draw(self, context): layout = self.layout @@ -104,8 +104,8 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("screen.redo_last", text="Tweak...") class VIEW3D_PT_tools_meshedit_options(View3DPanel): - __context__ = "mesh_edit" - __label__ = "Mesh Options" + bl_context = "mesh_edit" + bl_label = "Mesh Options" def draw(self, context): layout = self.layout @@ -118,8 +118,8 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel): # ********** default tools for editmode_curve **************** class VIEW3D_PT_tools_curveedit(View3DPanel): - __context__ = "curve_edit" - __label__ = "Curve Tools" + bl_context = "curve_edit" + bl_label = "Curve Tools" def draw(self, context): layout = self.layout @@ -165,8 +165,8 @@ class VIEW3D_PT_tools_curveedit(View3DPanel): # ********** default tools for editmode_surface **************** class VIEW3D_PT_tools_surfaceedit(View3DPanel): - __context__ = "surface_edit" - __label__ = "Surface Tools" + bl_context = "surface_edit" + bl_label = "Surface Tools" def draw(self, context): layout = self.layout @@ -204,8 +204,8 @@ class VIEW3D_PT_tools_surfaceedit(View3DPanel): # ********** default tools for editmode_text **************** class VIEW3D_PT_tools_textedit(View3DPanel): - __context__ = "text_edit" - __label__ = "Text Tools" + bl_context = "text_edit" + bl_label = "Text Tools" def draw(self, context): layout = self.layout @@ -230,8 +230,8 @@ class VIEW3D_PT_tools_textedit(View3DPanel): # ********** default tools for editmode_armature **************** class VIEW3D_PT_tools_armatureedit(View3DPanel): - __context__ = "armature_edit" - __label__ = "Armature Tools" + bl_context = "armature_edit" + bl_label = "Armature Tools" def draw(self, context): layout = self.layout @@ -265,8 +265,8 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col.itemO("screen.redo_last", text="Tweak...") class VIEW3D_PT_tools_armatureedit_options(View3DPanel): - __context__ = "armature_edit" - __label__ = "Armature Options" + bl_context = "armature_edit" + bl_label = "Armature Options" def draw(self, context): layout = self.layout @@ -279,8 +279,8 @@ class VIEW3D_PT_tools_armatureedit_options(View3DPanel): # ********** default tools for editmode_mball **************** class VIEW3D_PT_tools_mballedit(View3DPanel): - __context__ = "mball_edit" - __label__ = "Meta Tools" + bl_context = "mball_edit" + bl_label = "Meta Tools" def draw(self, context): layout = self.layout @@ -306,8 +306,8 @@ class VIEW3D_PT_tools_mballedit(View3DPanel): # ********** default tools for editmode_lattice **************** class VIEW3D_PT_tools_latticeedit(View3DPanel): - __context__ = "lattice_edit" - __label__ = "Lattice Tools" + bl_context = "lattice_edit" + bl_label = "Lattice Tools" def draw(self, context): layout = self.layout @@ -333,8 +333,8 @@ class VIEW3D_PT_tools_latticeedit(View3DPanel): # ********** default tools for posemode **************** class VIEW3D_PT_tools_posemode(View3DPanel): - __context__ = "posemode" - __label__ = "Pose Tools" + bl_context = "posemode" + bl_label = "Pose Tools" def draw(self, context): layout = self.layout @@ -381,8 +381,8 @@ class VIEW3D_PT_tools_posemode(View3DPanel): col.itemO("screen.redo_last", text="Tweak...") class VIEW3D_PT_tools_posemode_options(View3DPanel): - __context__ = "posemode" - __label__ = "Pose Options" + bl_context = "posemode" + bl_label = "Pose Options" def draw(self, context): layout = self.layout @@ -396,8 +396,8 @@ class VIEW3D_PT_tools_posemode_options(View3DPanel): # ********** default tools for paint modes **************** class PaintPanel(bpy.types.Panel): - __space_type__ = 'VIEW_3D' - __region_type__ = 'TOOLS' + bl_space_type = 'VIEW_3D' + bl_region_type = 'TOOLS' def paint_settings(self, context): ts = context.tool_settings @@ -416,7 +416,7 @@ class PaintPanel(bpy.types.Panel): return False class VIEW3D_PT_tools_brush(PaintPanel): - __label__ = "Brush" + bl_label = "Brush" def poll(self, context): return self.paint_settings(context) @@ -555,8 +555,8 @@ class VIEW3D_PT_tools_brush(PaintPanel): ''' class VIEW3D_PT_tools_brush_stroke(PaintPanel): - __label__ = "Stroke" - __default_closed__ = True + bl_label = "Stroke" + bl_default_closed = True def poll(self, context): settings = self.paint_settings(context) @@ -597,8 +597,8 @@ class VIEW3D_PT_tools_brush_stroke(PaintPanel): row.itemR(brush, "use_spacing_pressure", toggle=True, text="") class VIEW3D_PT_tools_brush_curve(PaintPanel): - __label__ = "Curve" - __default_closed__ = True + bl_label = "Curve" + bl_default_closed = True def poll(self, context): settings = self.paint_settings(context) @@ -614,7 +614,7 @@ class VIEW3D_PT_tools_brush_curve(PaintPanel): layout.item_menu_enumO("brush.curve_preset", property="shape") class VIEW3D_PT_sculpt_options(PaintPanel): - __label__ = "Options" + bl_label = "Options" def poll(self, context): return context.sculpt_object @@ -645,8 +645,8 @@ class VIEW3D_PT_sculpt_options(PaintPanel): # ********** default tools for weightpaint **************** class VIEW3D_PT_tools_weightpaint(View3DPanel): - __context__ = "weightpaint" - __label__ = "Weight Tools" + bl_context = "weightpaint" + bl_label = "Weight Tools" def draw(self, context): layout = self.layout @@ -661,8 +661,8 @@ class VIEW3D_PT_tools_weightpaint(View3DPanel): col.itemO("object.vertex_group_clean", text="Clean") class VIEW3D_PT_tools_weightpaint_options(View3DPanel): - __context__ = "weightpaint" - __label__ = "Options" + bl_context = "weightpaint" + bl_label = "Options" def draw(self, context): layout = self.layout @@ -694,8 +694,8 @@ class VIEW3D_PT_tools_weightpaint_options(View3DPanel): # ********** default tools for vertexpaint **************** class VIEW3D_PT_tools_vertexpaint(View3DPanel): - __context__ = "vertexpaint" - __label__ = "Options" + bl_context = "vertexpaint" + bl_label = "Options" def draw(self, context): layout = self.layout @@ -719,8 +719,8 @@ class VIEW3D_PT_tools_vertexpaint(View3DPanel): # ********** default tools for texturepaint **************** class VIEW3D_PT_tools_projectpaint(View3DPanel): - __context__ = "texturepaint" - __label__ = "Project Paint" + bl_context = "texturepaint" + bl_label = "Project Paint" def poll(self, context): return context.tool_settings.image_paint.tool != 'SMEAR' @@ -774,8 +774,8 @@ class VIEW3D_PT_tools_projectpaint(View3DPanel): # ********** default tools for particle mode **************** class VIEW3D_PT_tools_particlemode(View3DPanel): - __context__ = "particlemode" - __label__ = "Options" + bl_context = "particlemode" + bl_label = "Options" def draw(self, context): layout = self.layout diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 8d6a18dd9c2..34b50e1b3ea 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -591,33 +591,34 @@ static void rna_def_panel(BlenderRNA *brna) RNA_def_property_string_sdna(prop, NULL, "drawname"); /* registration */ - prop= RNA_def_property(srna, "idname", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_REGISTER_OPTIONAL); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "label", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->label"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "space_type", PROP_ENUM, PROP_NONE); + prop= RNA_def_property(srna, "bl_space_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "type->space_type"); RNA_def_property_enum_items(prop, space_type_items); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "region_type", PROP_ENUM, PROP_NONE); + prop= RNA_def_property(srna, "bl_region_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "type->region_type"); RNA_def_property_enum_items(prop, region_type_items); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "context", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_context", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->context"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "default_closed", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "bl_default_closed", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "type->flag", PNL_DEFAULT_CLOSED); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "show_header", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "bl_show_header", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "type->flag", PNL_NO_HEADER); RNA_def_property_flag(prop, PROP_REGISTER); } @@ -647,11 +648,11 @@ static void rna_def_header(BlenderRNA *brna) RNA_def_property_struct_type(prop, "UILayout"); /* registration */ - prop= RNA_def_property(srna, "idname", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "space_type", PROP_ENUM, PROP_NONE); + prop= RNA_def_property(srna, "bl_space_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "type->space_type"); RNA_def_property_enum_items(prop, space_type_items); RNA_def_property_flag(prop, PROP_REGISTER); @@ -691,11 +692,12 @@ static void rna_def_menu(BlenderRNA *brna) RNA_def_property_struct_type(prop, "UILayout"); /* registration */ - prop= RNA_def_property(srna, "idname", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_REGISTER_OPTIONAL); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "label", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->label"); RNA_def_property_flag(prop, PROP_REGISTER); diff --git a/source/blender/python/epy_doc_gen.py b/source/blender/python/epy_doc_gen.py index 4ff5c8102e2..851eaa3b6f3 100644 --- a/source/blender/python/epy_doc_gen.py +++ b/source/blender/python/epy_doc_gen.py @@ -440,7 +440,7 @@ def rna2epy(BASEPATH): for rna_type_name in dir(bpy.types): rna_type = getattr(bpy.types, rna_type_name) - try: rna_struct = rna_type.__rna__ + try: rna_struct = rna_type.bl_rna except: rna_struct = None if rna_struct: @@ -672,7 +672,7 @@ def op2epy(BASEPATH): op_mod = getattr(bpy.ops, op_mod_name) operators = dir(op_mod) for op in sorted(operators): - # rna = getattr(bpy.types, op).__rna__ + # rna = getattr(bpy.types, op).bl_rna rna = getattr(op_mod, op).get_rna() write_func(rna, '', out, 'OPERATOR') diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c index 769a8336d4a..959213b77aa 100644 --- a/source/blender/python/intern/bpy_operator_wrap.c +++ b/source/blender/python/intern/bpy_operator_wrap.c @@ -41,13 +41,13 @@ #include "../generic/bpy_internal_import.h" // our own imports -#define PYOP_ATTR_PROP "__props__" -#define PYOP_ATTR_UINAME "__label__" -#define PYOP_ATTR_IDNAME "__idname__" /* the name given by python */ -#define PYOP_ATTR_IDNAME_BL "__idname_bl__" /* our own name converted into blender syntax, users wont see this */ -#define PYOP_ATTR_DESCRIPTION "__doc__" /* use pythons docstring */ -#define PYOP_ATTR_REGISTER "__register__" /* True/False. if this python operator should be registered */ -#define PYOP_ATTR_UNDO "__undo__" /* True/False. if this python operator should be undone */ +#define PYOP_ATTR_PROP "bl_props" +#define PYOP_ATTR_UINAME "bl_label" +#define PYOP_ATTR_IDNAME "bl_idname" /* the name given by python */ +#define PYOP_ATTR_IDNAME_BL "_bl_idname" /* our own name converted into blender syntax, users wont see this */ +#define PYOP_ATTR_DESCRIPTION "__doc__" /* use pythons docstring */ +#define PYOP_ATTR_REGISTER "bl_register" /* True/False. if this python operator should be registered */ +#define PYOP_ATTR_UNDO "bl_undo" /* True/False. if this python operator should be undone */ static struct BPY_flag_def pyop_ret_flags[] = { {"RUNNING_MODAL", OPERATOR_RUNNING_MODAL}, @@ -98,7 +98,7 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat bpy_context_set(C, &gilstate); args = PyTuple_New(1); - PyTuple_SET_ITEM(args, 0, PyObject_GetAttrString(py_class, "__rna__")); // need to use an rna instance as the first arg + PyTuple_SET_ITEM(args, 0, PyObject_GetAttrString(py_class, "bl_rna")); // need to use an rna instance as the first arg py_class_instance = PyObject_Call(py_class, args, NULL); Py_DECREF(args); diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index d9c996474fd..abd53df30cd 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -2407,7 +2407,7 @@ static void pyrna_subtype_set_rna(PyObject *newclass, StructRNA *srna) item = pyrna_struct_CreatePyObject(&ptr); //item = PyCObject_FromVoidPtr(srna, NULL); - PyDict_SetItemString(((PyTypeObject *)newclass)->tp_dict, "__rna__", item); + PyDict_SetItemString(((PyTypeObject *)newclass)->tp_dict, "bl_rna", item); Py_DECREF(item); /* done with rna instance */ @@ -2740,26 +2740,26 @@ static StructRNA *pyrna_struct_as_srna(PyObject *self) /* ack, PyObject_GetAttrString wont look up this types tp_dict first :/ */ if(PyType_Check(self)) { - py_srna = (BPy_StructRNA *)PyDict_GetItemString(((PyTypeObject *)self)->tp_dict, "__rna__"); + py_srna = (BPy_StructRNA *)PyDict_GetItemString(((PyTypeObject *)self)->tp_dict, "bl_rna"); Py_XINCREF(py_srna); } if(py_srna==NULL) - py_srna = (BPy_StructRNA*)PyObject_GetAttrString(self, "__rna__"); + py_srna = (BPy_StructRNA*)PyObject_GetAttrString(self, "bl_rna"); if(py_srna==NULL) { - PyErr_SetString(PyExc_SystemError, "internal error, self had no __rna__ attribute, should never happen."); + PyErr_SetString(PyExc_SystemError, "internal error, self had no bl_rna attribute, should never happen."); return NULL; } if(!BPy_StructRNA_Check(py_srna)) { - PyErr_Format(PyExc_SystemError, "internal error, __rna__ was of type %.200s, instead of %.200s instance.", Py_TYPE(py_srna)->tp_name, pyrna_struct_Type.tp_name); + PyErr_Format(PyExc_SystemError, "internal error, bl_rna was of type %.200s, instead of %.200s instance.", Py_TYPE(py_srna)->tp_name, pyrna_struct_Type.tp_name); Py_DECREF(py_srna); return NULL; } if(py_srna->ptr.type != &RNA_Struct) { - PyErr_SetString(PyExc_SystemError, "internal error, __rna__ was not a RNA_Struct type of rna struct."); + PyErr_SetString(PyExc_SystemError, "internal error, bl_rna was not a RNA_Struct type of rna struct."); Py_DECREF(py_srna); return NULL; } @@ -3107,7 +3107,7 @@ static int deferred_register_props(PyObject *py_class, StructRNA *srna) PyObject *props, *dummy_args, *item; int i; - props= PyObject_GetAttrString(py_class, "__props__"); + props= PyObject_GetAttrString(py_class, "bl_props"); if(!props) { PyErr_Clear(); @@ -3138,7 +3138,7 @@ static int deferred_register_props(PyObject *py_class, StructRNA *srna) } else { PyErr_Clear(); - PyErr_SetString(PyExc_AttributeError, "expected list of dicts for __props__."); + PyErr_SetString(PyExc_AttributeError, "expected list of dicts for bl_props."); Py_DECREF(dummy_args); return 0; } @@ -3179,7 +3179,7 @@ static int bpy_class_validate(PointerRNA *dummyptr, void *py_data, int *have_fun PyObject *item, *fitem; PyObject *py_arg_count; int i, flag, arg_count, func_arg_count; - char identifier[128]; + char *identifier; if (base_class) { if (!PyObject_IsSubclass(py_class, base_class)) { @@ -3250,11 +3250,11 @@ static int bpy_class_validate(PointerRNA *dummyptr, void *py_data, int *have_fun if(!(flag & PROP_REGISTER)) continue; - BLI_snprintf(identifier, sizeof(identifier), "__%s__", RNA_property_identifier(prop)); + identifier= RNA_property_identifier(prop); item = PyObject_GetAttrString(py_class, identifier); if (item==NULL) { - if(strcmp(identifier, "__idname__") == 0) { + if(strcmp(identifier, "bl_idname") == 0) { item= PyObject_GetAttrString(py_class, "__name__"); if(item) { diff --git a/source/blender/python/rna_dump.py b/source/blender/python/rna_dump.py index 66fb76c35aa..7dde4007f66 100644 --- a/source/blender/python/rna_dump.py +++ b/source/blender/python/rna_dump.py @@ -123,10 +123,10 @@ seek(bpy.data, 'bpy.data', 0) ''' for d in dir(bpy.types): t = getattr(bpy.types, d) - try: r = t.__rna__ + try: r = t.bl_rna except: r = None if r: - seek(r, 'bpy.types.' + d + '.__rna__', 0) + seek(r, 'bpy.types.' + d + '.bl_rna', 0) ''' #print dir(bpy) From e4881eef529262ec131ab22688e44fb9af2f0bb9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 16:40:14 +0000 Subject: [PATCH 276/412] define operator properties in the class, similar to django fields # Before [ bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True), bpy.props.BoolProperty(attr="use_uvs", name="Export UVs", description="Exort the active UV layer", default= True), bpy.props.BoolProperty(attr="use_colors", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True) ] # After path = StringProperty(attr="", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") use_modifiers = BoolProperty(attr="", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) use_normals = BoolProperty(attr="", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True) use_uvs = BoolProperty(attr="", name="Export UVs", description="Exort the active UV layer", default= True) use_colors = BoolProperty(attr="", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True) --- release/scripts/io/add_mesh_torus.py | 12 +- release/scripts/io/export_3ds.py | 10 +- release/scripts/io/export_fbx.py | 60 +++---- release/scripts/io/export_mdd.py | 12 +- release/scripts/io/export_obj.py | 52 +++--- release/scripts/io/export_ply.py | 17 +- release/scripts/io/export_x3d.py | 16 +- release/scripts/io/import_3ds.py | 14 +- release/scripts/io/import_obj.py | 34 ++-- release/scripts/io/mesh_skin.py | 5 +- release/scripts/io/netrender/operators.py | 55 ------- release/scripts/modules/bpy_ops.py | 80 +++++----- release/scripts/templates/operator.py | 12 +- release/scripts/ui/space_userpref.py | 10 +- release/scripts/ui/space_view3d.py | 12 +- .../blender/python/intern/bpy_operator_wrap.c | 70 ++------ source/blender/python/intern/bpy_rna.c | 150 ++++++++++-------- source/blender/python/intern/bpy_rna.h | 2 + 18 files changed, 285 insertions(+), 338 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index 1f5d4a25229..b16d372b319 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -46,6 +46,7 @@ def add_torus(PREF_MAJOR_RAD, PREF_MINOR_RAD, PREF_MAJOR_SEG, PREF_MINOR_SEG): return verts, faces +from bpy.props import * class MESH_OT_primitive_torus_add(bpy.types.Operator): '''Add a torus mesh.''' @@ -53,12 +54,11 @@ class MESH_OT_primitive_torus_add(bpy.types.Operator): bl_label = "Add Torus" bl_register = True bl_undo = True - bl_props = [ - bpy.props.FloatProperty(attr="major_radius", name="Major Radius", description="Number of segments for the main ring of the torus", default= 1.0, min= 0.01, max= 100.0), - bpy.props.FloatProperty(attr="minor_radius", name="Minor Radius", description="Number of segments for the minor ring of the torus", default= 0.25, min= 0.01, max= 100.0), - bpy.props.IntProperty(attr="major_segments", name="Major Segments", description="Number of segments for the main ring of the torus", default= 48, min= 3, max= 256), - bpy.props.IntProperty(attr="minor_segments", name="Minor Segments", description="Number of segments for the minor ring of the torus", default= 16, min= 3, max= 256), - ] + + major_radius = FloatProperty(name="Major Radius", description="Number of segments for the main ring of the torus", default= 1.0, min= 0.01, max= 100.0) + minor_radius = FloatProperty(name="Minor Radius", description="Number of segments for the minor ring of the torus", default= 0.25, min= 0.01, max= 100.0) + major_segments = IntProperty(name="Major Segments", description="Number of segments for the main ring of the torus", default= 48, min= 3, max= 256) + minor_segments = IntProperty(name="Minor Segments", description="Number of segments for the minor ring of the torus", default= 16, min= 3, max= 256) def execute(self, context): verts_loc, faces = add_torus(self.major_radius, self.minor_radius, self.major_segments, self.minor_segments) diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index c31847a99a7..35ea1b5adeb 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1090,7 +1090,7 @@ def save_3ds(filename, context): # else: # Blender.Draw.PupMenu("Error%t|This script requires a full python installation") # # save_3ds('/test_b.3ds') - +from bpy.props import * class EXPORT_OT_autodesk_3ds(bpy.types.Operator): '''Export to 3DS file format (.3ds).''' bl_idname = "export.autodesk_3ds" @@ -1099,10 +1099,10 @@ class EXPORT_OT_autodesk_3ds(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - # bpy.props.StringProperty(attr="filename", name="File Name", description="File name used for exporting the 3DS file", maxlen= 1024, default= ""), - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the 3DS file", maxlen= 1024, default= ""), - ] + + # filename = StringProperty(name="File Name", description="File name used for exporting the 3DS file", maxlen= 1024, default= ""), + path = StringProperty(name="File Path", description="File path used for exporting the 3DS file", maxlen= 1024, default= "") + def execute(self, context): save_3ds(self.path, context) diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index 4c3fd727169..47374e5fd67 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -3332,7 +3332,7 @@ def write_ui(): # GLOBALS.clear() - +from bpy.props import * class EXPORT_OT_fbx(bpy.types.Operator): '''Selection to an ASCII Autodesk FBX''' bl_idname = "export.fbx" @@ -3341,35 +3341,35 @@ class EXPORT_OT_fbx(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the FBX file", maxlen= 1024, default= ""), - - bpy.props.BoolProperty(attr="EXP_OBS_SELECTED", name="Selected Objects", description="Export selected objects on visible layers", default=True), -# bpy.props.BoolProperty(attr="EXP_OBS_SCENE", name="Scene Objects", description="Export all objects in this scene", default=True), - bpy.props.FloatProperty(attr="_SCALE", name="Scale", description="Scale all data, (Note! some imports dont support scaled armatures)", min=0.01, max=1000.0, soft_min=0.01, soft_max=1000.0, default=1.0), - bpy.props.BoolProperty(attr="_XROT90", name="Rot X90", description="Rotate all objects 90 degrese about the X axis", default=True), - bpy.props.BoolProperty(attr="_YROT90", name="Rot Y90", description="Rotate all objects 90 degrese about the Y axis", default=False), - bpy.props.BoolProperty(attr="_ZROT90", name="Rot Z90", description="Rotate all objects 90 degrese about the Z axis", default=False), - bpy.props.BoolProperty(attr="EXP_EMPTY", name="Empties", description="Export empty objects", default=True), - bpy.props.BoolProperty(attr="EXP_CAMERA", name="Cameras", description="Export camera objects", default=True), - bpy.props.BoolProperty(attr="EXP_LAMP", name="Lamps", description="Export lamp objects", default=True), - bpy.props.BoolProperty(attr="EXP_ARMATURE", name="Armatures", description="Export armature objects", default=True), - bpy.props.BoolProperty(attr="EXP_MESH", name="Meshes", description="Export mesh objects", default=True), - bpy.props.BoolProperty(attr="EXP_MESH_APPLY_MOD", name="Modifiers", description="Apply modifiers to mesh objects", default=True), - bpy.props.BoolProperty(attr="EXP_MESH_HQ_NORMALS", name="HQ Normals", description="Generate high quality normals", default=True), - bpy.props.BoolProperty(attr="EXP_IMAGE_COPY", name="Copy Image Files", description="Copy image files to the destination path", default=False), - # armature animation - bpy.props.BoolProperty(attr="ANIM_ENABLE", name="Enable Animation", description="Export keyframe animation", default=True), - bpy.props.BoolProperty(attr="ANIM_OPTIMIZE", name="Optimize Keyframes", description="Remove double keyframes", default=True), - bpy.props.FloatProperty(attr="ANIM_OPTIMIZE_PRECISSION", name="Precision", description="Tolerence for comparing double keyframes (higher for greater accuracy)", min=1, max=16, soft_min=1, soft_max=16, default=6.0), -# bpy.props.BoolProperty(attr="ANIM_ACTION_ALL", name="Current Action", description="Use actions currently applied to the armatures (use scene start/end frame)", default=True), - bpy.props.BoolProperty(attr="ANIM_ACTION_ALL", name="All Actions", description="Use all actions for armatures, if false, use current action", default=False), - # batch - bpy.props.BoolProperty(attr="BATCH_ENABLE", name="Enable Batch", description="Automate exporting multiple scenes or groups to files", default=False), - bpy.props.BoolProperty(attr="BATCH_GROUP", name="Group > File", description="Export each group as an FBX file, if false, export each scene as an FBX file", default=False), - bpy.props.BoolProperty(attr="BATCH_OWN_DIR", name="Own Dir", description="Create a dir for each exported file", default=True), - bpy.props.StringProperty(attr="BATCH_FILE_PREFIX", name="Prefix", description="Prefix each file with this name", maxlen= 1024, default=""), - ] + + path = StringProperty(name="File Path", description="File path used for exporting the FBX file", maxlen= 1024, default= "") + + EXP_OBS_SELECTED = BoolProperty(name="Selected Objects", description="Export selected objects on visible layers", default=True) +# EXP_OBS_SCENE = BoolProperty(name="Scene Objects", description="Export all objects in this scene", default=True) + _SCALE = FloatProperty(name="Scale", description="Scale all data, (Note! some imports dont support scaled armatures)", min=0.01, max=1000.0, soft_min=0.01, soft_max=1000.0, default=1.0) + _XROT90 = BoolProperty(name="Rot X90", description="Rotate all objects 90 degrese about the X axis", default=True) + _YROT90 = BoolProperty(name="Rot Y90", description="Rotate all objects 90 degrese about the Y axis", default=False) + _ZROT90 = BoolProperty(name="Rot Z90", description="Rotate all objects 90 degrese about the Z axis", default=False) + EXP_EMPTY = BoolProperty(name="Empties", description="Export empty objects", default=True) + EXP_CAMERA = BoolProperty(name="Cameras", description="Export camera objects", default=True) + EXP_LAMP = BoolProperty(name="Lamps", description="Export lamp objects", default=True) + EXP_ARMATURE = BoolProperty(name="Armatures", description="Export armature objects", default=True) + EXP_MESH = BoolProperty(name="Meshes", description="Export mesh objects", default=True) + EXP_MESH_APPLY_MOD = BoolProperty(name="Modifiers", description="Apply modifiers to mesh objects", default=True) + EXP_MESH_HQ_NORMALS = BoolProperty(name="HQ Normals", description="Generate high quality normals", default=True) + EXP_IMAGE_COPY = BoolProperty(name="Copy Image Files", description="Copy image files to the destination path", default=False) + # armature animation + ANIM_ENABLE = BoolProperty(name="Enable Animation", description="Export keyframe animation", default=True) + ANIM_OPTIMIZE = BoolProperty(name="Optimize Keyframes", description="Remove double keyframes", default=True) + ANIM_OPTIMIZE_PRECISSION = FloatProperty(name="Precision", description="Tolerence for comparing double keyframes (higher for greater accuracy)", min=1, max=16, soft_min=1, soft_max=16, default=6.0) +# ANIM_ACTION_ALL = BoolProperty(name="Current Action", description="Use actions currently applied to the armatures (use scene start/end frame)", default=True) + ANIM_ACTION_ALL = BoolProperty(name="All Actions", description="Use all actions for armatures, if false, use current action", default=False) + # batch + BATCH_ENABLE = BoolProperty(name="Enable Batch", description="Automate exporting multiple scenes or groups to files", default=False) + BATCH_GROUP = BoolProperty(name="Group > File", description="Export each group as an FBX file, if false, export each scene as an FBX file", default=False) + BATCH_OWN_DIR = BoolProperty(name="Own Dir", description="Create a dir for each exported file", default=True) + BATCH_FILE_PREFIX = StringProperty(name="Prefix", description="Prefix each file with this name", maxlen= 1024, default="") + def poll(self, context): print("Poll") diff --git a/release/scripts/io/export_mdd.py b/release/scripts/io/export_mdd.py index 9a2ba6fe67d..ebf5b32fa88 100644 --- a/release/scripts/io/export_mdd.py +++ b/release/scripts/io/export_mdd.py @@ -133,6 +133,8 @@ def write(filename, sce, ob, PREF_STARTFRAME, PREF_ENDFRAME, PREF_FPS): """ sce.set_frame(orig_frame) +from bpy.props import * + class EXPORT_OT_mdd(bpy.types.Operator): '''Animated mesh to MDD vertex keyframe file.''' bl_idname = "export.mdd" @@ -148,12 +150,10 @@ class EXPORT_OT_mdd(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the MDD file", maxlen= 1024, default= "tmp.mdd"), - bpy.props.IntProperty(attr="fps", name="Frames Per Second", description="Number of frames/second", min=minfps, max=maxfps, default= 25), - bpy.props.IntProperty(attr="start_frame", name="Start Frame", description="Start frame for baking", min=minframe,max=maxframe,default=1), - bpy.props.IntProperty(attr="end_frame", name="End Frame", description="End frame for baking", min=minframe, max=maxframe, default= 250), - ] + path = StringProperty(name="File Path", description="File path used for exporting the MDD file", maxlen= 1024, default= "tmp.mdd") + fps = IntProperty(name="Frames Per Second", description="Number of frames/second", min=minfps, max=maxfps, default= 25) + start_frame = IntProperty(name="Start Frame", description="Start frame for baking", min=minframe,max=maxframe,default=1) + end_frame = IntProperty(name="End Frame", description="End frame for baking", min=minframe, max=maxframe, default= 250) def poll(self, context): return context.active_object != None diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 641ebec3150..7a0031229f7 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -913,6 +913,9 @@ Currently the exporter lacks these features: * multiple scene export (only active scene is written) * particles ''' + +from bpy.props import * + class EXPORT_OT_obj(bpy.types.Operator): '''Save a Wavefront OBJ File''' @@ -922,35 +925,34 @@ class EXPORT_OT_obj(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the OBJ file", maxlen= 1024, default= ""), + path = StringProperty(name="File Path", description="File path used for exporting the OBJ file", maxlen= 1024, default= "") - # context group - bpy.props.BoolProperty(attr="use_selection", name="Selection Only", description="", default= False), - bpy.props.BoolProperty(attr="use_all_scenes", name="All Scenes", description="", default= False), - bpy.props.BoolProperty(attr="use_animation", name="All Animation", description="", default= False), + # context group + use_selection = BoolProperty(name="Selection Only", description="", default= False) + use_all_scenes = BoolProperty(name="All Scenes", description="", default= False) + use_animation = BoolProperty(name="All Animation", description="", default= False) - # object group - bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="", default= True), - bpy.props.BoolProperty(attr="use_rotate90", name="Rotate X90", description="", default= True), + # object group + use_modifiers = BoolProperty(name="Apply Modifiers", description="", default= True) + use_rotate90 = BoolProperty(name="Rotate X90", description="", default= True) - # extra data group - bpy.props.BoolProperty(attr="use_edges", name="Edges", description="", default= True), - bpy.props.BoolProperty(attr="use_normals", name="Normals", description="", default= False), - bpy.props.BoolProperty(attr="use_hq_normals", name="High Quality Normals", description="", default= True), - bpy.props.BoolProperty(attr="use_uvs", name="UVs", description="", default= True), - bpy.props.BoolProperty(attr="use_materials", name="Materials", description="", default= True), - bpy.props.BoolProperty(attr="copy_images", name="Copy Images", description="", default= False), - bpy.props.BoolProperty(attr="use_triangles", name="Triangulate", description="", default= False), - bpy.props.BoolProperty(attr="use_vertex_groups", name="Polygroups", description="", default= False), - bpy.props.BoolProperty(attr="use_nurbs", name="Nurbs", description="", default= False), + # extra data group + use_edges = BoolProperty(name="Edges", description="", default= True) + use_normals = BoolProperty(name="Normals", description="", default= False) + use_hq_normals = BoolProperty(name="High Quality Normals", description="", default= True) + use_uvs = BoolProperty(name="UVs", description="", default= True) + use_materials = BoolProperty(name="Materials", description="", default= True) + copy_images = BoolProperty(name="Copy Images", description="", default= False) + use_triangles = BoolProperty(name="Triangulate", description="", default= False) + use_vertex_groups = BoolProperty(name="Polygroups", description="", default= False) + use_nurbs = BoolProperty(name="Nurbs", description="", default= False) - # grouping group - bpy.props.BoolProperty(attr="use_blen_objects", name="Objects as OBJ Objects", description="", default= True), - bpy.props.BoolProperty(attr="group_by_object", name="Objects as OBJ Groups ", description="", default= False), - bpy.props.BoolProperty(attr="group_by_material", name="Material Groups", description="", default= False), - bpy.props.BoolProperty(attr="keep_vertex_order", name="Keep Vertex Order", description="", default= False) - ] + # grouping group + use_blen_objects = BoolProperty(name="Objects as OBJ Objects", description="", default= True) + group_by_object = BoolProperty(name="Objects as OBJ Groups ", description="", default= False) + group_by_material = BoolProperty(name="Material Groups", description="", default= False) + keep_vertex_order = BoolProperty(name="Keep Vertex Order", description="", default= False) + def execute(self, context): diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index 67cd6a85599..fedf50d6a4e 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -231,6 +231,9 @@ def write(filename, scene, ob, \ Blender.Window.EditMode(1, '', 0) """ +from bpy.props import * + + class EXPORT_OT_ply(bpy.types.Operator): '''Export a single object as a stanford PLY with normals, colours and texture coordinates.''' bl_idname = "export.ply" @@ -239,13 +242,13 @@ class EXPORT_OT_ply(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), - bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), - bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True), - bpy.props.BoolProperty(attr="use_uvs", name="Export UVs", description="Exort the active UV layer", default= True), - bpy.props.BoolProperty(attr="use_colors", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True) - ] + + path = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") + use_modifiers = BoolProperty(name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) + use_normals = BoolProperty(name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True) + use_uvs = BoolProperty(name="Export UVs", description="Exort the active UV layer", default= True) + use_colors = BoolProperty(name="Export Vertex Colors", description="Exort the active vertex color layer", default= True) + def poll(self, context): return context.active_object != None diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py index ad9abc5162a..a360e2cd17f 100644 --- a/release/scripts/io/export_x3d.py +++ b/release/scripts/io/export_x3d.py @@ -1196,6 +1196,8 @@ def x3d_export_ui(filename): # if __name__ == '__main__': # Blender.Window.FileSelector(x3d_export_ui,"Export X3D", Blender.Get('filename').replace('.blend', '.x3d')) +from bpy.props import * + class EXPORT_OT_x3d(bpy.types.Operator): '''Export selection to Extensible 3D file (.x3d)''' bl_idname = "export.x3d" @@ -1203,14 +1205,12 @@ class EXPORT_OT_x3d(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the X3D file", maxlen= 1024, default= ""), - - bpy.props.BoolProperty(attr="apply_modifiers", name="Apply Modifiers", description="Use transformed mesh data from each object.", default=True), - bpy.props.BoolProperty(attr="triangulate", name="Triangulate", description="Triangulate quads.", default=False), - bpy.props.BoolProperty(attr="compress", name="Compress", description="GZip the resulting file, requires a full python install.", default=False), - ] + path = StringProperty(name="File Path", description="File path used for exporting the X3D file", maxlen= 1024, default= "") + + apply_modifiers = BoolProperty(name="Apply Modifiers", description="Use transformed mesh data from each object.", default=True) + triangulate = BoolProperty(name="Triangulate", description="Triangulate quads.", default=False) + compress = BoolProperty(name="Compress", description="GZip the resulting file, requires a full python install.", default=False) + def execute(self, context): x3d_export(self.path, context, self.apply_modifiers, self.triangulate, self.compress) diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_3ds.py index 38eef583ecd..581192bcfbf 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_3ds.py @@ -1121,6 +1121,8 @@ else: print 'TOTAL TIME: %.6f' % (Blender.sys.time() - TIME) ''' +from bpy.props import * + class IMPORT_OT_autodesk_3ds(bpy.types.Operator): '''Import from 3DS file format (.3ds)''' @@ -1129,14 +1131,12 @@ class IMPORT_OT_autodesk_3ds(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. + + path = StringProperty(name="File Path", description="File path used for importing the 3DS file", maxlen= 1024, default= ""), - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for importing the 3DS file", maxlen= 1024, default= ""), - -# bpy.props.FloatProperty(attr="size_constraint", name="Size Constraint", description="Scale the model by 10 until it reacehs the size constraint. Zero Disables.", min=0.0, max=1000.0, soft_min=0.0, soft_max=1000.0, default=10.0), -# bpy.props.BoolProperty(attr="search_images", name="Image Search", description="Search subdirectories for any assosiated images (Warning, may be slow)", default=True), -# bpy.props.BoolProperty(attr="apply_matrix", name="Transform Fix", description="Workaround for object transformations importing incorrectly", default=False), - ] +# size_constraint = FloatProperty(name="Size Constraint", description="Scale the model by 10 until it reacehs the size constraint. Zero Disables.", min=0.0, max=1000.0, soft_min=0.0, soft_max=1000.0, default=10.0), +# search_images = BoolProperty(name="Image Search", description="Search subdirectories for any assosiated images (Warning, may be slow)", default=True), +# apply_matrix = BoolProperty(name="Transform Fix", description="Workaround for object transformations importing incorrectly", default=False), def execute(self, context): load_3ds(self.path, context, 0.0, False, False) diff --git a/release/scripts/io/import_obj.py b/release/scripts/io/import_obj.py index eaa76942a11..2e3473edb25 100644 --- a/release/scripts/io/import_obj.py +++ b/release/scripts/io/import_obj.py @@ -1553,6 +1553,8 @@ else: print 'TOTAL TIME: %.6f' % (sys.time() - TIME) ''' +from bpy.props import * + class IMPORT_OT_obj(bpy.types.Operator): '''Load a Wavefront OBJ File.''' bl_idname = "import.obj" @@ -1561,23 +1563,23 @@ class IMPORT_OT_obj(bpy.types.Operator): # List of operator properties, the attributes will be assigned # to the class instance from the operator settings before calling. - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for importing the OBJ file", maxlen= 1024, default= ""), + + path = StringProperty(name="File Path", description="File path used for importing the OBJ file", maxlen= 1024, default= "") - bpy.props.BoolProperty(attr="CREATE_SMOOTH_GROUPS", name="Smooth Groups", description="Surround smooth groups by sharp edges", default= True), - bpy.props.BoolProperty(attr="CREATE_FGONS", name="NGons as FGons", description="Import faces with more then 4 verts as fgons", default= True), - bpy.props.BoolProperty(attr="CREATE_EDGES", name="Lines as Edges", description="Import lines and faces with 2 verts as edge", default= True), - bpy.props.BoolProperty(attr="SPLIT_OBJECTS", name="Object", description="Import OBJ Objects into Blender Objects", default= True), - bpy.props.BoolProperty(attr="SPLIT_GROUPS", name="Group", description="Import OBJ Groups into Blender Objects", default= True), - bpy.props.BoolProperty(attr="SPLIT_MATERIALS", name="Material", description="Import each material into a seperate mesh (Avoids > 16 per mesh error)", default= True), - # old comment: only used for user feedback - # disabled this option because in old code a handler for it disabled SPLIT* params, it's not passed to load_obj - # bpy.props.BoolProperty(attr="KEEP_VERT_ORDER", name="Keep Vert Order", description="Keep vert and face order, disables split options, enable for morph targets", default= True), - bpy.props.BoolProperty(attr="ROTATE_X90", name="-X90", description="Rotate X 90.", default= True), - bpy.props.FloatProperty(attr="CLAMP_SIZE", name="Clamp Scale", description="Clamp the size to this maximum (Zero to Disable)", min=0.01, max=1000.0, soft_min=0.0, soft_max=1000.0, default=0.0), - bpy.props.BoolProperty(attr="POLYGROUPS", name="Poly Groups", description="Import OBJ groups as vertex groups.", default= True), - bpy.props.BoolProperty(attr="IMAGE_SEARCH", name="Image Search", description="Search subdirs for any assosiated images (Warning, may be slow)", default= True), - ] + CREATE_SMOOTH_GROUPS = BoolProperty(name="Smooth Groups", description="Surround smooth groups by sharp edges", default= True) + CREATE_FGONS = BoolProperty(name="NGons as FGons", description="Import faces with more then 4 verts as fgons", default= True) + CREATE_EDGES = BoolProperty(name="Lines as Edges", description="Import lines and faces with 2 verts as edge", default= True) + SPLIT_OBJECTS = BoolProperty(name="Object", description="Import OBJ Objects into Blender Objects", default= True) + SPLIT_GROUPS = BoolProperty(name="Group", description="Import OBJ Groups into Blender Objects", default= True) + SPLIT_MATERIALS = BoolProperty(name="Material", description="Import each material into a seperate mesh (Avoids > 16 per mesh error)", default= True) + # old comment: only used for user feedback + # disabled this option because in old code a handler for it disabled SPLIT* params, it's not passed to load_obj + # KEEP_VERT_ORDER = BoolProperty(name="Keep Vert Order", description="Keep vert and face order, disables split options, enable for morph targets", default= True) + ROTATE_X90 = BoolProperty(name="-X90", description="Rotate X 90.", default= True) + CLAMP_SIZE = FloatProperty(name="Clamp Scale", description="Clamp the size to this maximum (Zero to Disable)", min=0.01, max=1000.0, soft_min=0.0, soft_max=1000.0, default=0.0) + POLYGROUPS = BoolProperty(name="Poly Groups", description="Import OBJ groups as vertex groups.", default= True) + IMAGE_SEARCH = BoolProperty(name="Image Search", description="Search subdirs for any assosiated images (Warning, may be slow)", default= True) + def execute(self, context): # print("Selected: " + context.active_object.name) diff --git a/release/scripts/io/mesh_skin.py b/release/scripts/io/mesh_skin.py index c7528c984b2..9db66e16444 100644 --- a/release/scripts/io/mesh_skin.py +++ b/release/scripts/io/mesh_skin.py @@ -626,9 +626,8 @@ class MESH_OT_skin(bpy.types.Operator): bl_undo = True ''' - bl_props = [ - bpy.props.EnumProperty(attr="loft_method", items=[(), ()], description="", default= True), - ] + loft_method = EnumProperty(attr="loft_method", items=[(), ()], description="", default= True) + ''' def execute(self, context): diff --git a/release/scripts/io/netrender/operators.py b/release/scripts/io/netrender/operators.py index 468cbba6564..e14b4a36fc7 100644 --- a/release/scripts/io/netrender/operators.py +++ b/release/scripts/io/netrender/operators.py @@ -13,11 +13,6 @@ class RENDER_OT_netclientanim(bpy.types.Operator): bl_idname = "render.netclientanim" bl_label = "Animation on network" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -44,11 +39,6 @@ class RENDER_OT_netclientsend(bpy.types.Operator): bl_idname = "render.netclientsend" bl_label = "Send job" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -73,11 +63,6 @@ class RENDER_OT_netclientstatus(bpy.types.Operator): bl_idname = "render.netclientstatus" bl_label = "Client Status" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -118,11 +103,6 @@ class RENDER_OT_netclientblacklistslave(bpy.types.Operator): bl_idname = "render.netclientblacklistslave" bl_label = "Client Blacklist Slave" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -153,11 +133,6 @@ class RENDER_OT_netclientwhitelistslave(bpy.types.Operator): bl_idname = "render.netclientwhitelistslave" bl_label = "Client Whitelist Slave" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -189,11 +164,6 @@ class RENDER_OT_netclientslaves(bpy.types.Operator): bl_idname = "render.netclientslaves" bl_label = "Client Slaves" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -239,11 +209,6 @@ class RENDER_OT_netclientcancel(bpy.types.Operator): bl_idname = "render.netclientcancel" bl_label = "Client Cancel" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): netsettings = context.scene.network_render return netsettings.active_job_index >= 0 and len(netsettings.jobs) > 0 @@ -273,11 +238,6 @@ class RENDER_OT_netclientcancelall(bpy.types.Operator): bl_idname = "render.netclientcancelall" bl_label = "Client Cancel All" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -305,11 +265,6 @@ class netclientdownload(bpy.types.Operator): bl_idname = "render.netclientdownload" bl_label = "Client Download" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): netsettings = context.scene.network_render return netsettings.active_job_index >= 0 and len(netsettings.jobs) > 0 @@ -355,11 +310,6 @@ class netclientscan(bpy.types.Operator): bl_idname = "render.netclientscan" bl_label = "Client Scan" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True @@ -393,11 +343,6 @@ class netclientweb(bpy.types.Operator): bl_idname = "render.netclientweb" bl_label = "Open Master Monitor" - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - bl_props = [] - def poll(self, context): return True diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index eb793b1b7bc..1f6d6bf8526 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -182,10 +182,10 @@ class MESH_OT_delete_edgeloop(bpy.types.Operator): bpy.ops.mesh.remove_doubles() return ('FINISHED',) -rna_path_prop = StringProperty(attr="path", name="Context Attributes", +rna_path_prop = StringProperty(name="Context Attributes", description="rna context string", maxlen=1024, default="") -rna_reverse_prop = BoolProperty(attr="reverse", name="Reverse", +rna_reverse_prop = BoolProperty(name="Reverse", description="Cycle backwards", default=False) @@ -220,11 +220,11 @@ class WM_OT_context_set_boolean(bpy.types.Operator): '''Set a context value.''' bl_idname = "wm.context_set_boolean" bl_label = "Context Set" - bl_props = [ - rna_path_prop, - BoolProperty(attr="value", name="Value", - description="Assignment value", default=True)] - + + path = rna_path_prop + value = BoolProperty(name="Value", + description="Assignment value", default=True) + execute = execute_context_assign @@ -232,10 +232,10 @@ class WM_OT_context_set_int(bpy.types.Operator): # same as enum '''Set a context value.''' bl_idname = "wm.context_set_int" bl_label = "Context Set" - bl_props = [ - rna_path_prop, - IntProperty(attr="value", name="Value", - description="Assignment value", default=0)] + + path = rna_path_prop + value = IntProperty(name="Value", description="Assign value", default=0) + execute = execute_context_assign @@ -243,10 +243,11 @@ class WM_OT_context_set_float(bpy.types.Operator): # same as enum '''Set a context value.''' bl_idname = "wm.context_set_int" bl_label = "Context Set" - bl_props = [ - rna_path_prop, - FloatProperty(attr="value", name="Value", - description="Assignment value", default=0.0)] + + path = rna_path_prop + value = FloatProperty(name="Value", + description="Assignment value", default=0.0) + execute = execute_context_assign @@ -254,10 +255,10 @@ class WM_OT_context_set_string(bpy.types.Operator): # same as enum '''Set a context value.''' bl_idname = "wm.context_set_string" bl_label = "Context Set" - bl_props = [ - rna_path_prop, - StringProperty(attr="value", name="Value", - description="Assignment value", maxlen=1024, default="")] + + path = rna_path_prop + value = StringProperty(name="Value", + description="Assign value", maxlen=1024, default="") execute = execute_context_assign @@ -266,11 +267,11 @@ class WM_OT_context_set_enum(bpy.types.Operator): '''Set a context value.''' bl_idname = "wm.context_set_enum" bl_label = "Context Set" - bl_props = [ - rna_path_prop, - StringProperty(attr="value", name="Value", + + path = rna_path_prop + value = StringProperty(name="Value", description="Assignment value (as a string)", - maxlen=1024, default="")] + maxlen=1024, default="") execute = execute_context_assign @@ -279,7 +280,7 @@ class WM_OT_context_toggle(bpy.types.Operator): '''Toggle a context value.''' bl_idname = "wm.context_toggle" bl_label = "Context Toggle" - bl_props = [rna_path_prop] + path = rna_path_prop def execute(self, context): @@ -294,13 +295,13 @@ class WM_OT_context_toggle_enum(bpy.types.Operator): '''Toggle a context value.''' bl_idname = "wm.context_toggle_enum" bl_label = "Context Toggle Values" - bl_props = [ - rna_path_prop, - StringProperty(attr="value_1", name="Value", \ - description="Toggle enum", maxlen=1024, default=""), - StringProperty(attr="value_2", name="Value", \ - description="Toggle enum", maxlen=1024, default="")] + path = rna_path_prop + value_1 = StringProperty(name="Value", \ + description="Toggle enum", maxlen=1024, default="") + + value_2 = StringProperty(name="Value", \ + description="Toggle enum", maxlen=1024, default="") def execute(self, context): @@ -318,7 +319,8 @@ class WM_OT_context_cycle_int(bpy.types.Operator): vertex keys, groups' etc.''' bl_idname = "wm.context_cycle_int" bl_label = "Context Int Cycle" - bl_props = [rna_path_prop, rna_reverse_prop] + path = rna_path_prop + reverse = rna_reverse_prop def execute(self, context): @@ -348,7 +350,9 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): '''Toggle a context value.''' bl_idname = "wm.context_cycle_enum" bl_label = "Context Enum Cycle" - bl_props = [rna_path_prop, rna_reverse_prop] + + path = rna_path_prop + reverse = rna_reverse_prop def execute(self, context): @@ -392,10 +396,10 @@ class WM_OT_context_cycle_enum(bpy.types.Operator): exec("context.%s=advance_enum" % self.path) return ('FINISHED',) -doc_id = StringProperty(attr="doc_id", name="Doc ID", +doc_id = StringProperty(name="Doc ID", description="ID for the documentation", maxlen=1024, default="") -doc_new = StringProperty(attr="doc_new", name="Doc New", +doc_new = StringProperty(name="Doc New", description="", maxlen=1024, default="") @@ -403,7 +407,8 @@ class WM_OT_doc_view(bpy.types.Operator): '''Load online reference docs''' bl_idname = "wm.doc_view" bl_label = "View Documentation" - bl_props = [doc_id] + + doc_id = doc_id _prefix = 'http://www.blender.org/documentation/250PythonDoc' def _nested_class_string(self, class_string): @@ -444,7 +449,10 @@ class WM_OT_doc_edit(bpy.types.Operator): '''Load online reference docs''' bl_idname = "wm.doc_edit" bl_label = "Edit Documentation" - bl_props = [doc_id, doc_new] + + doc_id = doc_id + doc_new = doc_new + _url = "http://www.mindrones.com/blender/svn/xmlrpc.php" def _send_xmlrpc(self, data_dict): diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index 30d4ad83dc6..c03d5850237 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -1,6 +1,10 @@ +import bpy + def write_some_data(context, path, use_some_setting): pass - + +from bpy.props import * + class ExportSomeData(bpy.types.Operator): '''This appiers in the tooltip of the operator and in the generated docs.''' bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed @@ -10,10 +14,8 @@ class ExportSomeData(bpy.types.Operator): # to the class instance from the operator settings before calling. # TODO, add better example props - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""), - bpy.props.BoolProperty(attr="use_some_setting", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True), - ] + path = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") + use_some_setting = BoolProperty(name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) def poll(self, context): return context.active_object != None diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index c03c9ff2a2f..b5fdf2fcea0 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -554,12 +554,15 @@ bpy.types.register(USERPREF_PT_system) bpy.types.register(USERPREF_PT_file) bpy.types.register(USERPREF_PT_input) +from bpy.props import * + + class WM_OT_keyconfig_export(bpy.types.Operator): "Export key configuration to a python script." bl_idname = "wm.keyconfig_export" bl_label = "Export Key Configuration..." - bl_props = [ - bpy.props.StringProperty(attr="path", name="File Path", description="File path to write file to.")] + + path = bpy.props.StringProperty(name="File Path", description="File path to write file to.") def _string_value(self, value): result = "" @@ -657,7 +660,8 @@ class WM_OT_keymap_restore(bpy.types.Operator): "Restore key map" bl_idname = "wm.keymap_restore" bl_label = "Restore Key Map" - bl_props = [bpy.props.BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.")] + + all = BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.") def execute(self, context): wm = context.manager diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 0a132355bf9..f0d1a0dcc6c 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1439,6 +1439,8 @@ class VIEW3D_PT_etch_a_ton(bpy.types.Panel): # Operators +from bpy.props import * + class OBJECT_OT_select_pattern(bpy.types.Operator): '''Select object matching a naming pattern.''' @@ -1446,11 +1448,11 @@ class OBJECT_OT_select_pattern(bpy.types.Operator): bl_label = "Select Pattern" bl_register = True bl_undo = True - bl_props = [ - bpy.props.StringProperty(attr="pattern", name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*"), - bpy.props.BoolProperty(attr="case_sensitive", name="Case Sensitive", description="Do a case sensitive compare", default= False), - bpy.props.BoolProperty(attr="extend", name="Extend", description="Extend the existing selection", default= True), - ] + + pattern = StringProperty(name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*") + case_sensitive = BoolProperty(name="Case Sensitive", description="Do a case sensitive compare", default= False) + extend = BoolProperty(name="Extend", description="Extend the existing selection", default= True) + def execute(self, context): diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c index 959213b77aa..aeb99779d33 100644 --- a/source/blender/python/intern/bpy_operator_wrap.c +++ b/source/blender/python/intern/bpy_operator_wrap.c @@ -41,7 +41,6 @@ #include "../generic/bpy_internal_import.h" // our own imports -#define PYOP_ATTR_PROP "bl_props" #define PYOP_ATTR_UINAME "bl_label" #define PYOP_ATTR_IDNAME "bl_idname" /* the name given by python */ #define PYOP_ATTR_IDNAME_BL "_bl_idname" /* our own name converted into blender syntax, users wont see this */ @@ -300,46 +299,18 @@ void PYTHON_OT_wrapper(wmOperatorType *ot, void *userdata) PyErr_Clear(); } - - - props= PyObject_GetAttrString(py_class, PYOP_ATTR_PROP); - - if (props) { - PyObject *dummy_args = PyTuple_New(0); - int i; - - for(i=0; isrna, NULL); - - py_ret = pyfunc(py_srna_cobject, dummy_args, py_kw); - if (py_ret) { - Py_DECREF(py_ret); - } else { - fprintf(stderr, "BPy Operator \"%s\" registration error: %s item %d could not run\n", ot->idname, PYOP_ATTR_PROP, i); - PyLineSpit(); - PyErr_Print(); - PyErr_Clear(); - } - Py_DECREF(py_srna_cobject); - - } else { - /* cant return NULL from here */ // XXX a bit ugly - PyErr_Print(); - PyErr_Clear(); - } - - // expect a tuple with a CObject and a dict + /* Can't use this because it returns a dict proxy + * + * item= PyObject_GetAttrString(py_class, "__dict__"); + */ + item= ((PyTypeObject*)py_class)->tp_dict; + if(item) { + if(pyrna_deferred_register_props(ot->srna, item)!=0) { + PyErr_Print(); + PyErr_Clear(); } - Py_DECREF(dummy_args); - Py_DECREF(props); - } else { + } + else { PyErr_Clear(); } } @@ -359,7 +330,6 @@ PyObject *PYOP_wrap_add(PyObject *self, PyObject *py_class) static struct BPY_class_attr_check pyop_class_attr_values[]= { {PYOP_ATTR_IDNAME, 's', -1, OP_MAX_TYPENAME-3, 0}, /* -3 because a.b -> A_OT_b */ {PYOP_ATTR_UINAME, 's', -1,-1, BPY_CLASS_ATTR_OPTIONAL}, - {PYOP_ATTR_PROP, 'l', -1,-1, BPY_CLASS_ATTR_OPTIONAL}, {PYOP_ATTR_DESCRIPTION, 's', -1,-1, BPY_CLASS_ATTR_NONE_OK}, {"execute", 'f', 2, -1, BPY_CLASS_ATTR_OPTIONAL}, {"invoke", 'f', 3, -1, BPY_CLASS_ATTR_OPTIONAL}, @@ -400,24 +370,6 @@ PyObject *PYOP_wrap_add(PyObject *self, PyObject *py_class) WM_operatortype_remove(idname); } - /* If we have properties set, check its a list of dicts */ - item= PyObject_GetAttrString(py_class, PYOP_ATTR_PROP); - if (item) { - for(i=0; i 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -2831,6 +2828,10 @@ PyObject *BPy_BoolProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssi:BoolProperty", kwlist, &id, &name, &description, &def)) + return NULL; + prop= RNA_def_boolean(srna, id, def, name, description); RNA_def_property_duplicate_pointers(prop); Py_RETURN_NONE; @@ -2843,13 +2844,10 @@ PyObject *BPy_BoolProperty(PyObject *self, PyObject *args, PyObject *kw) PyObject *BPy_IntProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "name", "description", "min", "max", "soft_min", "soft_max", "default", NULL}; - char *id, *name="", *description=""; + char *id=NULL, *name="", *description=""; int min=INT_MIN, max=INT_MAX, soft_min=INT_MIN, soft_max=INT_MAX, def=0; PropertyRNA *prop; StructRNA *srna; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssiiiii:IntProperty", kwlist, &id, &name, &description, &min, &max, &soft_min, &soft_max, &def)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -2861,6 +2859,10 @@ PyObject *BPy_IntProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssiiiii:IntProperty", kwlist, &id, &name, &description, &min, &max, &soft_min, &soft_max, &def)) + return NULL; + prop= RNA_def_int(srna, id, def, min, max, name, description, soft_min, soft_max); RNA_def_property_duplicate_pointers(prop); Py_RETURN_NONE; @@ -2873,13 +2875,10 @@ PyObject *BPy_IntProperty(PyObject *self, PyObject *args, PyObject *kw) PyObject *BPy_FloatProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "name", "description", "min", "max", "soft_min", "soft_max", "default", NULL}; - char *id, *name="", *description=""; + char *id=NULL, *name="", *description=""; float min=-FLT_MAX, max=FLT_MAX, soft_min=-FLT_MAX, soft_max=FLT_MAX, def=0.0f; PropertyRNA *prop; StructRNA *srna; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssfffff:FloatProperty", kwlist, &id, &name, &description, &min, &max, &soft_min, &soft_max, &def)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -2891,6 +2890,10 @@ PyObject *BPy_FloatProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssfffff:FloatProperty", kwlist, &id, &name, &description, &min, &max, &soft_min, &soft_max, &def)) + return NULL; + prop= RNA_def_float(srna, id, def, min, max, name, description, soft_min, soft_max); RNA_def_property_duplicate_pointers(prop); Py_RETURN_NONE; @@ -2903,13 +2906,10 @@ PyObject *BPy_FloatProperty(PyObject *self, PyObject *args, PyObject *kw) PyObject *BPy_StringProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "name", "description", "maxlen", "default", NULL}; - char *id, *name="", *description="", *def=""; + char *id=NULL, *name="", *description="", *def=""; int maxlen=0; PropertyRNA *prop; StructRNA *srna; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssis:StringProperty", kwlist, &id, &name, &description, &maxlen, &def)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -2921,6 +2921,10 @@ PyObject *BPy_StringProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "s|ssis:StringProperty", kwlist, &id, &name, &description, &maxlen, &def)) + return NULL; + prop= RNA_def_string(srna, id, def, maxlen, name, description); RNA_def_property_duplicate_pointers(prop); Py_RETURN_NONE; @@ -2979,15 +2983,12 @@ static EnumPropertyItem *enum_items_from_py(PyObject *value, const char *def, in PyObject *BPy_EnumProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "items", "name", "description", "default", NULL}; - char *id, *name="", *description="", *def=""; + char *id=NULL, *name="", *description="", *def=""; int defvalue=0; PyObject *items= Py_None; EnumPropertyItem *eitems; PropertyRNA *prop; StructRNA *srna; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|sss:EnumProperty", kwlist, &id, &items, &name, &description, &def)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -2999,6 +3000,10 @@ PyObject *BPy_EnumProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|sss:EnumProperty", kwlist, &id, &items, &name, &description, &def)) + return NULL; + eitems= enum_items_from_py(items, def, &defvalue); if(!eitems) return NULL; @@ -3035,13 +3040,10 @@ static StructRNA *pointer_type_from_py(PyObject *value) PyObject *BPy_PointerProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "type", "name", "description", NULL}; - char *id, *name="", *description=""; + char *id=NULL, *name="", *description=""; PropertyRNA *prop; StructRNA *srna, *ptype; PyObject *type= Py_None; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|ss:PointerProperty", kwlist, &id, &type, &name, &description)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -3053,6 +3055,10 @@ PyObject *BPy_PointerProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|ss:PointerProperty", kwlist, &id, &type, &name, &description)) + return NULL; + ptype= pointer_type_from_py(type); if(!ptype) return NULL; @@ -3070,13 +3076,10 @@ PyObject *BPy_PointerProperty(PyObject *self, PyObject *args, PyObject *kw) PyObject *BPy_CollectionProperty(PyObject *self, PyObject *args, PyObject *kw) { static char *kwlist[] = {"attr", "type", "name", "description", NULL}; - char *id, *name="", *description=""; + char *id=NULL, *name="", *description=""; PropertyRNA *prop; StructRNA *srna, *ptype; PyObject *type= Py_None; - - if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|ss:CollectionProperty", kwlist, &id, &type, &name, &description)) - return NULL; if (PyTuple_Size(args) > 0) { PyErr_SetString(PyExc_ValueError, "all args must be keywors"); // TODO - py3 can enforce this. @@ -3088,6 +3091,10 @@ PyObject *BPy_CollectionProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; /* self's type was compatible but error getting the srna */ } else if(srna) { + + if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|ss:CollectionProperty", kwlist, &id, &type, &name, &description)) + return NULL; + ptype= pointer_type_from_py(type); if(!ptype) return NULL; @@ -3102,50 +3109,58 @@ PyObject *BPy_CollectionProperty(PyObject *self, PyObject *args, PyObject *kw) return NULL; } -static int deferred_register_props(PyObject *py_class, StructRNA *srna) +int pyrna_deferred_register_props(StructRNA *srna, PyObject *class_dict) { - PyObject *props, *dummy_args, *item; - int i; - - props= PyObject_GetAttrString(py_class, "bl_props"); - - if(!props) { - PyErr_Clear(); - return 1; - } + PyObject *dummy_args, *item, *key; + Py_ssize_t pos = 0; dummy_args = PyTuple_New(0); - - for(i=0; itp_dict; + if(item) { + if(pyrna_deferred_register_props(srna_new, item)!=0) { + return NULL; + } + } + else { + PyErr_Clear(); + } Py_RETURN_NONE; } diff --git a/source/blender/python/intern/bpy_rna.h b/source/blender/python/intern/bpy_rna.h index d006b168f45..d480fd3ec9b 100644 --- a/source/blender/python/intern/bpy_rna.h +++ b/source/blender/python/intern/bpy_rna.h @@ -91,6 +91,8 @@ PyObject *BPy_CollectionProperty(PyObject *self, PyObject *args, PyObject *kw); PyObject *pyrna_basetype_register(PyObject *self, PyObject *args); PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args); +int pyrna_deferred_register_props(struct StructRNA *srna, PyObject *class_dict); + /* called before stopping python */ void pyrna_alloc_types(void); void pyrna_free_types(void); From af72bb50ae41f5ba1f9f5b2310b2aee77907fecf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 18:48:58 +0000 Subject: [PATCH 277/412] improved class validation, variables defined by the rna interface as non-optional could fail silently when absent in the class. Set these to PROP_REGISTER_OPTIONAL and raise an error when others are not found. last commit broke povray too. --- release/scripts/ui/buttons_data_armature.py | 1 + release/scripts/ui/buttons_data_bone.py | 1 + release/scripts/ui/buttons_data_camera.py | 1 + release/scripts/ui/buttons_data_curve.py | 1 + release/scripts/ui/buttons_data_lamp.py | 1 + release/scripts/ui/buttons_data_lattice.py | 1 + release/scripts/ui/buttons_data_mesh.py | 1 + release/scripts/ui/buttons_data_metaball.py | 1 + release/scripts/ui/buttons_data_text.py | 3 ++- release/scripts/ui/buttons_game.py | 1 + release/scripts/ui/buttons_material.py | 1 + release/scripts/ui/buttons_object.py | 1 + release/scripts/ui/buttons_particle.py | 1 + release/scripts/ui/buttons_texture.py | 2 +- release/scripts/ui/buttons_world.py | 1 + release/scripts/ui/space_info.py | 3 +++ release/scripts/ui/space_userpref.py | 7 +++++++ release/scripts/ui/space_view3d.py | 1 + source/blender/makesrna/intern/rna_render.c | 4 ++-- source/blender/makesrna/intern/rna_ui.c | 8 +++----- source/blender/python/intern/bpy_rna.c | 7 +++++-- 21 files changed, 37 insertions(+), 11 deletions(-) diff --git a/release/scripts/ui/buttons_data_armature.py b/release/scripts/ui/buttons_data_armature.py index db635be763c..75264f5d7ec 100644 --- a/release/scripts/ui/buttons_data_armature.py +++ b/release/scripts/ui/buttons_data_armature.py @@ -10,6 +10,7 @@ class DataButtonsPanel(bpy.types.Panel): return context.armature class DATA_PT_context_arm(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_bone.py b/release/scripts/ui/buttons_data_bone.py index a3ac86fa841..706c418d0ce 100644 --- a/release/scripts/ui/buttons_data_bone.py +++ b/release/scripts/ui/buttons_data_bone.py @@ -10,6 +10,7 @@ class BoneButtonsPanel(bpy.types.Panel): return (context.bone or context.edit_bone) class BONE_PT_context_bone(BoneButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_camera.py b/release/scripts/ui/buttons_data_camera.py index c76d2633a51..1321e42b97d 100644 --- a/release/scripts/ui/buttons_data_camera.py +++ b/release/scripts/ui/buttons_data_camera.py @@ -10,6 +10,7 @@ class DataButtonsPanel(bpy.types.Panel): return context.camera class DATA_PT_context_camera(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_curve.py b/release/scripts/ui/buttons_data_curve.py index e86af9bf3ab..90d84dc09ed 100644 --- a/release/scripts/ui/buttons_data_curve.py +++ b/release/scripts/ui/buttons_data_curve.py @@ -25,6 +25,7 @@ class DataButtonsPanelActive(DataButtonsPanel): return (curve and curve.active_spline) class DATA_PT_context_curve(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_lamp.py b/release/scripts/ui/buttons_data_lamp.py index 74c4ba012df..0d384701029 100644 --- a/release/scripts/ui/buttons_data_lamp.py +++ b/release/scripts/ui/buttons_data_lamp.py @@ -16,6 +16,7 @@ class DATA_PT_preview(DataButtonsPanel): self.layout.template_preview(context.lamp) class DATA_PT_context_lamp(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_lattice.py b/release/scripts/ui/buttons_data_lattice.py index 3272e1ccf55..505ea6e42e9 100644 --- a/release/scripts/ui/buttons_data_lattice.py +++ b/release/scripts/ui/buttons_data_lattice.py @@ -10,6 +10,7 @@ class DataButtonsPanel(bpy.types.Panel): return context.lattice class DATA_PT_context_lattice(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index f0120b58c6d..2ed52206d7e 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -10,6 +10,7 @@ class DataButtonsPanel(bpy.types.Panel): return context.mesh class DATA_PT_context_mesh(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_metaball.py b/release/scripts/ui/buttons_data_metaball.py index bf937f212d9..ebb5efb40ca 100644 --- a/release/scripts/ui/buttons_data_metaball.py +++ b/release/scripts/ui/buttons_data_metaball.py @@ -9,6 +9,7 @@ class DataButtonsPanel(bpy.types.Panel): return context.meta_ball class DATA_PT_context_metaball(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_data_text.py b/release/scripts/ui/buttons_data_text.py index 9b8e1e4d984..49847863d7c 100644 --- a/release/scripts/ui/buttons_data_text.py +++ b/release/scripts/ui/buttons_data_text.py @@ -10,6 +10,7 @@ class DataButtonsPanel(bpy.types.Panel): return (context.object and context.object.type == 'TEXT' and context.curve) class DATA_PT_context_text(DataButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): @@ -171,7 +172,7 @@ class DATA_PT_textboxes(DataButtonsPanel): col.itemR(box, "x", text="X") col.itemR(box, "y", text="Y") -bpy.types.register(DATA_PT_context_text) +bpy.types.register(DATA_PT_context_text) bpy.types.register(DATA_PT_shape_text) bpy.types.register(DATA_PT_geometry_text) bpy.types.register(DATA_PT_font) diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/buttons_game.py index 2a1e6adee5b..77581884515 100644 --- a/release/scripts/ui/buttons_game.py +++ b/release/scripts/ui/buttons_game.py @@ -330,6 +330,7 @@ class WorldButtonsPanel(bpy.types.Panel): return (rd.engine == 'BLENDER_GAME') class WORLD_PT_game_context_world(WorldButtonsPanel): + bl_label = "" bl_show_header = False def poll(self, context): diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index c83f4a65209..af95eec9a68 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -32,6 +32,7 @@ class MATERIAL_PT_preview(MaterialButtonsPanel): self.layout.template_preview(context.material) class MATERIAL_PT_context_material(MaterialButtonsPanel): + bl_label = "" bl_show_header = False COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) diff --git a/release/scripts/ui/buttons_object.py b/release/scripts/ui/buttons_object.py index 37ecf83d846..213fbf17dd6 100644 --- a/release/scripts/ui/buttons_object.py +++ b/release/scripts/ui/buttons_object.py @@ -7,6 +7,7 @@ class ObjectButtonsPanel(bpy.types.Panel): bl_context = "object" class OBJECT_PT_context_object(ObjectButtonsPanel): + bl_label = "" bl_show_header = False def draw(self, context): diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/buttons_particle.py index 8ab31df7543..ad9a82c6824 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/buttons_particle.py @@ -24,6 +24,7 @@ class ParticleButtonsPanel(bpy.types.Panel): return particle_panel_poll(context) class PARTICLE_PT_particles(ParticleButtonsPanel): + bl_label = "" bl_show_header = False def poll(self, context): diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index cb5bca9e26a..3426a879cca 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -1,4 +1,3 @@ - import bpy def active_node_mat(mat): @@ -51,6 +50,7 @@ class TEXTURE_PT_preview(TextureButtonsPanel): layout.template_preview(tex, slot=slot) class TEXTURE_PT_context_texture(TextureButtonsPanel): + bl_label = "" bl_show_header = False def poll(self, context): diff --git a/release/scripts/ui/buttons_world.py b/release/scripts/ui/buttons_world.py index b0bb27518d4..cfe2410595c 100644 --- a/release/scripts/ui/buttons_world.py +++ b/release/scripts/ui/buttons_world.py @@ -19,6 +19,7 @@ class WORLD_PT_preview(WorldButtonsPanel): self.layout.template_preview(context.world) class WORLD_PT_context_world(WorldButtonsPanel): + bl_label = "" bl_show_header = False COMPAT_ENGINES = set(['BLENDER_RENDER']) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 58ba96e0181..bf7d30c461d 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -96,12 +96,14 @@ dynamic_menu.setup(INFO_MT_file_more) ''' class INFO_MT_file_import(dynamic_menu.DynMenu): + bl_idname = "INFO_MT_file_import" bl_label = "Import" def draw(self, context): self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") class INFO_MT_file_export(dynamic_menu.DynMenu): + bl_idname = "INFO_MT_file_export" bl_label = "Export" def draw(self, context): @@ -124,6 +126,7 @@ class INFO_MT_file_external_data(bpy.types.Menu): layout.itemO("file.find_missing_files") class INFO_MT_mesh_add(dynamic_menu.DynMenu): + bl_idname = "INFO_MT_mesh_add" bl_label = "Mesh" def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index b5fdf2fcea0..ef85a608d17 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -24,7 +24,9 @@ class USERPREF_MT_view(bpy.types.Menu): layout = self.layout class USERPREF_PT_tabs(bpy.types.Panel): + bl_label = "" bl_space_type = 'USER_PREFERENCES' + bl_region_type = 'WINDOW' bl_show_header = False def draw(self, context): @@ -37,6 +39,7 @@ class USERPREF_PT_tabs(bpy.types.Panel): class USERPREF_PT_interface(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Interface" + bl_region_type = 'WINDOW' bl_show_header = False def poll(self, context): @@ -121,6 +124,7 @@ class USERPREF_PT_interface(bpy.types.Panel): class USERPREF_PT_edit(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Edit" + bl_region_type = 'WINDOW' bl_show_header = False def poll(self, context): @@ -224,6 +228,7 @@ class USERPREF_PT_edit(bpy.types.Panel): class USERPREF_PT_system(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "System" + bl_region_type = 'WINDOW' bl_show_header = False def poll(self, context): @@ -315,6 +320,7 @@ class USERPREF_PT_system(bpy.types.Panel): class USERPREF_PT_file(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Files" + bl_region_type = 'WINDOW' bl_show_header = False def poll(self, context): @@ -381,6 +387,7 @@ class USERPREF_PT_file(bpy.types.Panel): class USERPREF_PT_input(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Input" + bl_region_type = 'WINDOW' bl_show_header = False def poll(self, context): diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index f0d1a0dcc6c..d0f60c98a1c 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -886,6 +886,7 @@ class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): class VIEW3D_MT_edit_mesh_faces(dynamic_menu.DynMenu): bl_label = "Faces" + bl_idname = "VIEW3D_MT_edit_mesh_faces" def draw(self, context): layout = self.layout diff --git a/source/blender/makesrna/intern/rna_render.c b/source/blender/makesrna/intern/rna_render.c index a67831715a2..3505253b60f 100644 --- a/source/blender/makesrna/intern/rna_render.c +++ b/source/blender/makesrna/intern/rna_render.c @@ -269,11 +269,11 @@ static void rna_def_render_engine(BlenderRNA *brna) /* registration */ RNA_define_verify_sdna(0); - prop= RNA_def_property(srna, "idname", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); - prop= RNA_def_property(srna, "label", PROP_STRING, PROP_NONE); + prop= RNA_def_property(srna, "bl_label", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->name"); RNA_def_property_flag(prop, PROP_REGISTER); diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 34b50e1b3ea..1bb7fe720a6 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -592,7 +592,6 @@ static void rna_def_panel(BlenderRNA *brna) /* registration */ prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); - RNA_def_property_clear_flag(prop, PROP_REGISTER_OPTIONAL); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); @@ -612,15 +611,15 @@ static void rna_def_panel(BlenderRNA *brna) prop= RNA_def_property(srna, "bl_context", PROP_STRING, PROP_NONE); RNA_def_property_string_sdna(prop, NULL, "type->context"); - RNA_def_property_flag(prop, PROP_REGISTER); + RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL); /* should this be optional? - Campbell */ prop= RNA_def_property(srna, "bl_default_closed", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "type->flag", PNL_DEFAULT_CLOSED); - RNA_def_property_flag(prop, PROP_REGISTER); + RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL); prop= RNA_def_property(srna, "bl_show_header", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "type->flag", PNL_NO_HEADER); - RNA_def_property_flag(prop, PROP_REGISTER); + RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL); } static void rna_def_header(BlenderRNA *brna) @@ -693,7 +692,6 @@ static void rna_def_menu(BlenderRNA *brna) /* registration */ prop= RNA_def_property(srna, "bl_idname", PROP_STRING, PROP_NONE); - RNA_def_property_clear_flag(prop, PROP_REGISTER_OPTIONAL); RNA_def_property_string_sdna(prop, NULL, "type->idname"); RNA_def_property_flag(prop, PROP_REGISTER); diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index f12c7b55b0e..f914c3cacea 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -3194,7 +3194,7 @@ static int bpy_class_validate(PointerRNA *dummyptr, void *py_data, int *have_fun PyObject *item, *fitem; PyObject *py_arg_count; int i, flag, arg_count, func_arg_count; - char *identifier; + const char *identifier; if (base_class) { if (!PyObject_IsSubclass(py_class, base_class)) { @@ -3269,6 +3269,8 @@ static int bpy_class_validate(PointerRNA *dummyptr, void *py_data, int *have_fun item = PyObject_GetAttrString(py_class, identifier); if (item==NULL) { + + /* Sneaky workaround to use the class name as the bl_idname */ if(strcmp(identifier, "bl_idname") == 0) { item= PyObject_GetAttrString(py_class, "__name__"); @@ -3280,7 +3282,8 @@ static int bpy_class_validate(PointerRNA *dummyptr, void *py_data, int *have_fun } } - if (item==NULL && (flag & PROP_REGISTER_OPTIONAL)==0) { + + if (item == NULL && (((flag & PROP_REGISTER_OPTIONAL) != PROP_REGISTER_OPTIONAL))) { PyErr_Format( PyExc_AttributeError, "expected %.200s class to have an \"%.200s\" attribute", class_type, identifier); return -1; } From f9b19d54b5a07c5d654ecb634aefc5690e07e6fd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 19:31:45 +0000 Subject: [PATCH 278/412] tabs to spaces, remove trailing white space. (apart of pep8) didnt do "release/scripts/io" since some exporters cant be auto converted --- release/datafiles/datatoc.py | 28 +- release/scripts/modules/bpy_ext/Object.py | 2 +- release/scripts/modules/bpy_ops.py | 10 +- release/scripts/modules/bpy_sys.py | 8 +- release/scripts/modules/dynamic_menu.py | 144 +- release/scripts/templates/gamelogic.py | 126 +- release/scripts/templates/gamelogic_basic.py | 20 +- release/scripts/templates/gamelogic_module.py | 18 +- release/scripts/templates/operator.py | 72 +- release/scripts/templates/operator_simple.py | 28 +- release/scripts/ui/buttons_data_armature.py | 302 +-- release/scripts/ui/buttons_data_bone.py | 386 +-- release/scripts/ui/buttons_data_camera.py | 156 +- release/scripts/ui/buttons_data_curve.py | 374 +-- release/scripts/ui/buttons_data_empty.py | 30 +- release/scripts/ui/buttons_data_lamp.py | 532 ++-- release/scripts/ui/buttons_data_lattice.py | 86 +- release/scripts/ui/buttons_data_mesh.py | 362 +-- release/scripts/ui/buttons_data_metaball.py | 178 +- release/scripts/ui/buttons_data_modifier.py | 826 +++--- release/scripts/ui/buttons_data_text.py | 282 +- release/scripts/ui/buttons_game.py | 670 ++--- release/scripts/ui/buttons_material.py | 1284 ++++----- release/scripts/ui/buttons_object.py | 352 +-- .../scripts/ui/buttons_object_constraint.py | 1390 +++++----- release/scripts/ui/buttons_particle.py | 1728 ++++++------ release/scripts/ui/buttons_physics_cloth.py | 300 +-- release/scripts/ui/buttons_physics_common.py | 310 +-- release/scripts/ui/buttons_physics_field.py | 362 +-- release/scripts/ui/buttons_physics_fluid.py | 468 ++-- release/scripts/ui/buttons_physics_smoke.py | 314 +-- .../scripts/ui/buttons_physics_softbody.py | 402 +-- release/scripts/ui/buttons_render.py | 752 +++--- release/scripts/ui/buttons_scene.py | 226 +- release/scripts/ui/buttons_texture.py | 1332 +++++----- release/scripts/ui/buttons_world.py | 284 +- release/scripts/ui/space_buttons.py | 42 +- release/scripts/ui/space_filebrowser.py | 80 +- release/scripts/ui/space_image.py | 696 ++--- release/scripts/ui/space_info.py | 420 +-- release/scripts/ui/space_logic.py | 46 +- release/scripts/ui/space_node.py | 150 +- release/scripts/ui/space_outliner.py | 118 +- release/scripts/ui/space_sequencer.py | 1034 ++++---- release/scripts/ui/space_text.py | 374 +-- release/scripts/ui/space_time.py | 240 +- release/scripts/ui/space_userpref.py | 1196 ++++----- release/scripts/ui/space_view3d.py | 2332 ++++++++--------- release/scripts/ui/space_view3d_toolbar.py | 1378 +++++----- source/blender/python/epy_doc_gen.py | 1290 ++++----- source/blender/python/rna_dump.py | 196 +- source/blender/python/simple_enum_gen.py | 70 +- 52 files changed, 11903 insertions(+), 11903 deletions(-) diff --git a/release/datafiles/datatoc.py b/release/datafiles/datatoc.py index 362d4ddc126..70bb348ad02 100755 --- a/release/datafiles/datatoc.py +++ b/release/datafiles/datatoc.py @@ -27,23 +27,23 @@ import sys, os if len(sys.argv) < 2: - sys.stdout.write("Usage: datatoc \n") - sys.exit(1) + sys.stdout.write("Usage: datatoc \n") + sys.exit(1) filename = sys.argv[1] try: - fpin = open(filename, "rb"); + fpin = open(filename, "rb"); except: - sys.stdout.write("Unable to open input %s\n" % sys.argv[1]) - sys.exit(1) + sys.stdout.write("Unable to open input %s\n" % sys.argv[1]) + sys.exit(1) fpin.seek(0, os.SEEK_END) size = fpin.tell() fpin.seek(0) if filename[0] == ".": - filename = filename[1:] + filename = filename[1:] cname = filename + ".c" sys.stdout.write("Making C file <%s>\n" % cname) @@ -52,10 +52,10 @@ filename = filename.replace(".", "_") sys.stdout.write(str(size)) sys.stdout.write("\n") try: - fpout = open(cname, "w") + fpout = open(cname, "w") except: - sys.stdout.write("Unable to open output %s\n" % cname) - sys.exit(1) + sys.stdout.write("Unable to open output %s\n" % cname) + sys.exit(1) fpout.write("/* DataToC output of file <%s> */\n\n" % filename) fpout.write("int datatoc_%s_size= %d;\n" % (filename, size)) @@ -63,11 +63,11 @@ fpout.write("int datatoc_%s_size= %d;\n" % (filename, size)) fpout.write("char datatoc_%s[]= {\n" % filename) while size > 0: - size -= 1 - if size % 32 == 31: - fpout.write("\n") - - fpout.write("%3d," % ord(fpin.read(1))) + size -= 1 + if size % 32 == 31: + fpout.write("\n") + + fpout.write("%3d," % ord(fpin.read(1))) fpout.write("\n 0};\n\n") diff --git a/release/scripts/modules/bpy_ext/Object.py b/release/scripts/modules/bpy_ext/Object.py index a842318844e..6419e1f1017 100644 --- a/release/scripts/modules/bpy_ext/Object.py +++ b/release/scripts/modules/bpy_ext/Object.py @@ -1,4 +1,4 @@ import bpy class_obj = bpy.types.Object -class_obj.getChildren = lambda ob: [child for child in bpy.data.objects if child.parent == ob] \ No newline at end of file +class_obj.getChildren = lambda ob: [child for child in bpy.data.objects if child.parent == ob] diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 1f6d6bf8526..ce6e85da4e7 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -220,11 +220,11 @@ class WM_OT_context_set_boolean(bpy.types.Operator): '''Set a context value.''' bl_idname = "wm.context_set_boolean" bl_label = "Context Set" - + path = rna_path_prop value = BoolProperty(name="Value", description="Assignment value", default=True) - + execute = execute_context_assign @@ -232,10 +232,10 @@ class WM_OT_context_set_int(bpy.types.Operator): # same as enum '''Set a context value.''' bl_idname = "wm.context_set_int" bl_label = "Context Set" - + path = rna_path_prop value = IntProperty(name="Value", description="Assign value", default=0) - + execute = execute_context_assign @@ -255,7 +255,7 @@ class WM_OT_context_set_string(bpy.types.Operator): # same as enum '''Set a context value.''' bl_idname = "wm.context_set_string" bl_label = "Context Set" - + path = rna_path_prop value = StringProperty(name="Value", description="Assign value", maxlen=1024, default="") diff --git a/release/scripts/modules/bpy_sys.py b/release/scripts/modules/bpy_sys.py index e60e8b01d09..a56d2dc62f1 100644 --- a/release/scripts/modules/bpy_sys.py +++ b/release/scripts/modules/bpy_sys.py @@ -2,10 +2,10 @@ import bpy import os def expandpath(path): - if path.startswith("//"): - return os.path.join(os.path.dirname(bpy.data.filename), path[2:]) - - return path + if path.startswith("//"): + return os.path.join(os.path.dirname(bpy.data.filename), path[2:]) + + return path import types bpy.sys = types.ModuleType("bpy.sys") diff --git a/release/scripts/modules/dynamic_menu.py b/release/scripts/modules/dynamic_menu.py index ce51dc9937b..664271ab33f 100644 --- a/release/scripts/modules/dynamic_menu.py +++ b/release/scripts/modules/dynamic_menu.py @@ -1,86 +1,86 @@ import bpy def collect_baseclasses(_class, bases): - - if _class is type or _class is object: - return bases - - bases.append(_class) - for _superclass in _class.__bases__: - collect_baseclasses(_superclass, bases) - - return bases + + if _class is type or _class is object: + return bases + + bases.append(_class) + for _superclass in _class.__bases__: + collect_baseclasses(_superclass, bases) + + return bases def collect_subclasses(_class, subs): - - if _class is type or _class is object: - return subs - - subs.append(_class) - for _subclass in _class.__subclasses__(): - collect_subclasses(_subclass, subs) - - return subs + + if _class is type or _class is object: + return subs + + subs.append(_class) + for _subclass in _class.__subclasses__(): + collect_subclasses(_subclass, subs) + + return subs class DynMenu(bpy.types.Menu): - - def draw(self, context): - ''' - This is a draw function that is used to call all subclasses draw functions - starting from the registered classes draw function and working down. - - DynMenu.setup() must be called first. - - Sort/group classes could be nice - ''' - - subclass_ls = [] - collect_subclasses(self.__class__, subclass_ls) - # print(subclass_ls) - - for subclass in subclass_ls: - # print("drawwing", subclass) # , dir(subclass)) - subclass.internal_draw(self, context) - # print("subclass.internal_draw", subclass.internal_draw) + + def draw(self, context): + ''' + This is a draw function that is used to call all subclasses draw functions + starting from the registered classes draw function and working down. + + DynMenu.setup() must be called first. + + Sort/group classes could be nice + ''' + + subclass_ls = [] + collect_subclasses(self.__class__, subclass_ls) + # print(subclass_ls) + + for subclass in subclass_ls: + # print("drawwing", subclass) # , dir(subclass)) + subclass.internal_draw(self, context) + # print("subclass.internal_draw", subclass.internal_draw) def setup(menu_class): - ''' - Setup subclasses (not needed when self.add() is used) - ''' - bases = collect_baseclasses(menu_class, []) - - # Incase 'DynMenu' isnt last - while bases[-1] is not DynMenu: - bases.pop() - bases.pop() # remove 'DynMenu' - - root_class = bases[-1] # this is the registered class - - for subclass in collect_subclasses(root_class, []): - #print(subclass) - - draw = getattr(subclass, 'draw', None) - if draw and not hasattr(subclass, 'internal_draw'): - # print("replace", subclass, draw) - try: - del subclass.draw - except: - pass - subclass.internal_draw = draw - - root_class.draw = DynMenu.draw + ''' + Setup subclasses (not needed when self.add() is used) + ''' + bases = collect_baseclasses(menu_class, []) + + # Incase 'DynMenu' isnt last + while bases[-1] is not DynMenu: + bases.pop() + bases.pop() # remove 'DynMenu' + + root_class = bases[-1] # this is the registered class + + for subclass in collect_subclasses(root_class, []): + #print(subclass) + + draw = getattr(subclass, 'draw', None) + if draw and not hasattr(subclass, 'internal_draw'): + # print("replace", subclass, draw) + try: + del subclass.draw + except: + pass + subclass.internal_draw = draw + + root_class.draw = DynMenu.draw def add(menu_class, func): - ''' - Add a single function directly without having to make a class - - important that the returned value should be stored in the module that called it. - ''' - - newclass = type('', (menu_class,), {}) - newclass.internal_draw = func - setup(menu_class) - return newclass + ''' + Add a single function directly without having to make a class + + important that the returned value should be stored in the module that called it. + ''' + + newclass = type('', (menu_class,), {}) + newclass.internal_draw = func + setup(menu_class) + return newclass ''' # so we dont need to import this module diff --git a/release/scripts/templates/gamelogic.py b/release/scripts/templates/gamelogic.py index af9dbd8a56a..8bfe799bacf 100644 --- a/release/scripts/templates/gamelogic.py +++ b/release/scripts/templates/gamelogic.py @@ -4,75 +4,75 @@ # GameLogic has been added to the global namespace no need to import # for keyboard event comparison -# import GameKeys +# import GameKeys # support for Vector(), Matrix() types and advanced functions like AngleBetweenVecs(v1,v2) and RotationMatrix(...) -# import Mathutils +# import Mathutils # for functions like getWindowWidth(), getWindowHeight() # import Rasterizer def main(): - cont = GameLogic.getCurrentController() - - # The KX_GameObject that owns this controller. - own = cont.owner - - # for scripts that deal with spacial logic - own_pos = own.worldPosition - - - # Some example functions, remove to write your own script. - # check for a positive sensor, will run on any object without errors. - print 'Logic info for KX_GameObject', own.name - input = False - - for sens in cont.sensors: - # The sensor can be on another object, we may want to use it - own_sens = sens.owner - print ' sensor:', sens.name, - if sens.positive: - print '(true)' - input = True - else: - print '(false)' - - for actu in cont.actuators: - # The actuator can be on another object, we may want to use it - own_actu = actu.owner - print ' actuator:', actu.name - - # This runs the actuator or turns it off - # note that actuators will continue to run unless explicitly turned off. - if input: - cont.activate(actu) - else: - cont.deactivate(actu) - - # Its also good practice to get sensors and actuators by name - # rather then index so any changes to their order wont break the script. - - # sens_key = cont.sensors['key_sensor'] - # actu_motion = cont.actuators['motion'] - - - # Loop through all other objects in the scene - sce = GameLogic.getCurrentScene() - print 'Scene Objects:', sce.name - for ob in sce.objects: - print ' ', ob.name, ob.worldPosition - - - # Example where collision objects are checked for their properties - # adding to our objects "life" property - """ - actu_collide = cont.sensors['collision_sens'] - for ob in actu_collide.objectHitList: - # Check to see the object has this property - if ob.has_key('life'): - own['life'] += ob['life'] - ob['life'] = 0 - print own['life'] - """ + cont = GameLogic.getCurrentController() + + # The KX_GameObject that owns this controller. + own = cont.owner + + # for scripts that deal with spacial logic + own_pos = own.worldPosition + + + # Some example functions, remove to write your own script. + # check for a positive sensor, will run on any object without errors. + print 'Logic info for KX_GameObject', own.name + input = False + + for sens in cont.sensors: + # The sensor can be on another object, we may want to use it + own_sens = sens.owner + print ' sensor:', sens.name, + if sens.positive: + print '(true)' + input = True + else: + print '(false)' + + for actu in cont.actuators: + # The actuator can be on another object, we may want to use it + own_actu = actu.owner + print ' actuator:', actu.name + + # This runs the actuator or turns it off + # note that actuators will continue to run unless explicitly turned off. + if input: + cont.activate(actu) + else: + cont.deactivate(actu) + + # Its also good practice to get sensors and actuators by name + # rather then index so any changes to their order wont break the script. + + # sens_key = cont.sensors['key_sensor'] + # actu_motion = cont.actuators['motion'] + + + # Loop through all other objects in the scene + sce = GameLogic.getCurrentScene() + print 'Scene Objects:', sce.name + for ob in sce.objects: + print ' ', ob.name, ob.worldPosition + + + # Example where collision objects are checked for their properties + # adding to our objects "life" property + """ + actu_collide = cont.sensors['collision_sens'] + for ob in actu_collide.objectHitList: + # Check to see the object has this property + if ob.has_key('life'): + own['life'] += ob['life'] + ob['life'] = 0 + print own['life'] + """ main() diff --git a/release/scripts/templates/gamelogic_basic.py b/release/scripts/templates/gamelogic_basic.py index c9c2a594309..5e7d19672fe 100644 --- a/release/scripts/templates/gamelogic_basic.py +++ b/release/scripts/templates/gamelogic_basic.py @@ -1,15 +1,15 @@ def main(): - cont = GameLogic.getCurrentController() - own = cont.owner - - sens = cont.sensors['mySensor'] - actu = cont.actuators['myActuator'] - - if sens.positive: - cont.activate(actu) - else: - cont.deactivate(actu) + cont = GameLogic.getCurrentController() + own = cont.owner + + sens = cont.sensors['mySensor'] + actu = cont.actuators['myActuator'] + + if sens.positive: + cont.activate(actu) + else: + cont.deactivate(actu) main() diff --git a/release/scripts/templates/gamelogic_module.py b/release/scripts/templates/gamelogic_module.py index 1bc221e727d..5a61a3592dc 100644 --- a/release/scripts/templates/gamelogic_module.py +++ b/release/scripts/templates/gamelogic_module.py @@ -13,14 +13,14 @@ import GameLogic # with multiple objects. def main(cont): - own = cont.owner - - sens = cont.sensors['mySensor'] - actu = cont.actuators['myActuator'] - - if sens.positive: - cont.activate(actu) - else: - cont.deactivate(actu) + own = cont.owner + + sens = cont.sensors['mySensor'] + actu = cont.actuators['myActuator'] + + if sens.positive: + cont.activate(actu) + else: + cont.deactivate(actu) # dont call main(GameLogic.getCurrentController()), the py controller will diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index c03d5850237..3e9e65f13f8 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -1,46 +1,46 @@ import bpy def write_some_data(context, path, use_some_setting): - pass + pass from bpy.props import * class ExportSomeData(bpy.types.Operator): - '''This appiers in the tooltip of the operator and in the generated docs.''' - bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed - bl_label = "Export Some Data" - - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - - # TODO, add better example props - path = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") - use_some_setting = BoolProperty(name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) - - def poll(self, context): - return context.active_object != None - - def execute(self, context): - if not self.is_property_set("path"): - raise Exception("filename not set") - - write(self.path, context, use_setting, SOME_SETTING = self.use_some_setting) + '''This appiers in the tooltip of the operator and in the generated docs.''' + bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed + bl_label = "Export Some Data" - return ('FINISHED',) - - def invoke(self, context, event): - wm = context.manager - - if True: - # File selector - wm.add_fileselect(self.__operator__) # will run self.execute() - return ('RUNNING_MODAL',) - else if 0: - # Redo popup - wm.invoke_props_popup(self.__operator__, event) # - return ('RUNNING_MODAL',) - else if 0: - return self.execute(context) + # List of operator properties, the attributes will be assigned + # to the class instance from the operator settings before calling. + + # TODO, add better example props + path = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") + use_some_setting = BoolProperty(name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) + + def poll(self, context): + return context.active_object != None + + def execute(self, context): + if not self.is_property_set("path"): + raise Exception("filename not set") + + write(self.path, context, use_setting, SOME_SETTING = self.use_some_setting) + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + + if True: + # File selector + wm.add_fileselect(self.__operator__) # will run self.execute() + return ('RUNNING_MODAL',) + else if 0: + # Redo popup + wm.invoke_props_popup(self.__operator__, event) # + return ('RUNNING_MODAL',) + else if 0: + return self.execute(context) bpy.ops.add(ExportSomeData) @@ -52,4 +52,4 @@ menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) # Use for running this script directly if __name__ == "__main__": - bpy.ops.export.some_data(path="/tmp/test.ply") \ No newline at end of file + bpy.ops.export.some_data(path="/tmp/test.ply") diff --git a/release/scripts/templates/operator_simple.py b/release/scripts/templates/operator_simple.py index f0f4b104950..b19ce981833 100644 --- a/release/scripts/templates/operator_simple.py +++ b/release/scripts/templates/operator_simple.py @@ -1,20 +1,20 @@ def main(context): - for ob in context.scene.objects: - print(ob) - + for ob in context.scene.objects: + print(ob) + class SimpleOperator(bpy.types.Operator): - '''''' - bl_idname = "object.simple_operator" - bl_label = "Simple Object Operator" - - def poll(self, context): - return context.active_object != None - - def execute(self, context): - main(context) - return ('FINISHED',) + '''''' + bl_idname = "object.simple_operator" + bl_label = "Simple Object Operator" + + def poll(self, context): + return context.active_object != None + + def execute(self, context): + main(context) + return ('FINISHED',) bpy.ops.add(SimpleOperator) if __name__ == "__main__": - bpy.ops.object.simple_operator() + bpy.ops.object.simple_operator() diff --git a/release/scripts/ui/buttons_data_armature.py b/release/scripts/ui/buttons_data_armature.py index 75264f5d7ec..b4abce01e4d 100644 --- a/release/scripts/ui/buttons_data_armature.py +++ b/release/scripts/ui/buttons_data_armature.py @@ -1,180 +1,180 @@ import bpy - + class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return context.armature + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.armature class DATA_PT_context_arm(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - arm = context.armature - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif arm: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + arm = context.armature + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif arm: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_skeleton(DataButtonsPanel): - bl_label = "Skeleton" - - def draw(self, context): - layout = self.layout - - ob = context.object - arm = context.armature - space = context.space_data - - layout.itemR(arm, "pose_position", expand=True) - - split = layout.split() + bl_label = "Skeleton" + + def draw(self, context): + layout = self.layout + + ob = context.object + arm = context.armature + space = context.space_data + + layout.itemR(arm, "pose_position", expand=True) + + split = layout.split() + + col = split.column() + col.itemL(text="Layers:") + col.itemR(arm, "layer", text="") + col.itemL(text="Protected Layers:") + col.itemR(arm, "layer_protection", text="") + + col = split.column() + col.itemL(text="Deform:") + col.itemR(arm, "deform_vertexgroups", text="Vertex Groups") + col.itemR(arm, "deform_envelope", text="Envelopes") + col.itemR(arm, "deform_quaternion", text="Quaternion") + col.itemR(arm, "deform_bbone_rest", text="B-Bones Rest") - col = split.column() - col.itemL(text="Layers:") - col.itemR(arm, "layer", text="") - col.itemL(text="Protected Layers:") - col.itemR(arm, "layer_protection", text="") - - col = split.column() - col.itemL(text="Deform:") - col.itemR(arm, "deform_vertexgroups", text="Vertex Groups") - col.itemR(arm, "deform_envelope", text="Envelopes") - col.itemR(arm, "deform_quaternion", text="Quaternion") - col.itemR(arm, "deform_bbone_rest", text="B-Bones Rest") - class DATA_PT_display(DataButtonsPanel): - bl_label = "Display" - - def draw(self, context): - layout = self.layout - - arm = context.armature + bl_label = "Display" - layout.row().itemR(arm, "drawtype", expand=True) + def draw(self, context): + layout = self.layout - flow = layout.column_flow() - flow.itemR(arm, "draw_names", text="Names") - flow.itemR(arm, "draw_axes", text="Axes") - flow.itemR(arm, "draw_custom_bone_shapes", text="Shapes") - flow.itemR(arm, "draw_group_colors", text="Colors") - flow.itemR(arm, "delay_deform", text="Delay Refresh") + arm = context.armature + + layout.row().itemR(arm, "drawtype", expand=True) + + flow = layout.column_flow() + flow.itemR(arm, "draw_names", text="Names") + flow.itemR(arm, "draw_axes", text="Axes") + flow.itemR(arm, "draw_custom_bone_shapes", text="Shapes") + flow.itemR(arm, "draw_group_colors", text="Colors") + flow.itemR(arm, "delay_deform", text="Delay Refresh") class DATA_PT_bone_groups(DataButtonsPanel): - bl_label = "Bone Groups" - - def poll(self, context): - return (context.object and context.object.type=='ARMATURE' and context.object.pose) + bl_label = "Bone Groups" - def draw(self, context): - layout = self.layout - - ob = context.object - pose = ob.pose - - row = layout.row() - row.template_list(pose, "bone_groups", pose, "active_bone_group_index", rows=2) - - col = row.column(align=True) - col.active = (ob.proxy == None) - col.itemO("pose.group_add", icon='ICON_ZOOMIN', text="") - col.itemO("pose.group_remove", icon='ICON_ZOOMOUT', text="") - - group = pose.active_bone_group - if group: - col = layout.column() - col.active= (ob.proxy == None) - col.itemR(group, "name") - - split = layout.split(0.5) - split.active= (ob.proxy == None) - split.itemR(group, "color_set") - if group.color_set: - split.template_triColorSet(group, "colors") - - row = layout.row(align=True) - row.active = (ob.proxy == None) - - row.itemO("pose.group_assign", text="Assign") - row.itemO("pose.group_remove", text="Remove") #row.itemO("pose.bone_group_remove_from", text="Remove") - #row.itemO("object.bone_group_select", text="Select") - #row.itemO("object.bone_group_deselect", text="Deselect") + def poll(self, context): + return (context.object and context.object.type=='ARMATURE' and context.object.pose) + + def draw(self, context): + layout = self.layout + + ob = context.object + pose = ob.pose + + row = layout.row() + row.template_list(pose, "bone_groups", pose, "active_bone_group_index", rows=2) + + col = row.column(align=True) + col.active = (ob.proxy == None) + col.itemO("pose.group_add", icon='ICON_ZOOMIN', text="") + col.itemO("pose.group_remove", icon='ICON_ZOOMOUT', text="") + + group = pose.active_bone_group + if group: + col = layout.column() + col.active= (ob.proxy == None) + col.itemR(group, "name") + + split = layout.split(0.5) + split.active= (ob.proxy == None) + split.itemR(group, "color_set") + if group.color_set: + split.template_triColorSet(group, "colors") + + row = layout.row(align=True) + row.active = (ob.proxy == None) + + row.itemO("pose.group_assign", text="Assign") + row.itemO("pose.group_remove", text="Remove") #row.itemO("pose.bone_group_remove_from", text="Remove") + #row.itemO("object.bone_group_select", text="Select") + #row.itemO("object.bone_group_deselect", text="Deselect") class DATA_PT_paths(DataButtonsPanel): - bl_label = "Paths" + bl_label = "Paths" - def draw(self, context): - layout = self.layout - - arm = context.armature - - layout.itemR(arm, "paths_type", expand=True) - - split = layout.split() - - col = split.column() - sub = col.column(align=True) - if (arm.paths_type == 'CURRENT_FRAME'): - sub.itemR(arm, "path_before_current", text="Before") - sub.itemR(arm, "path_after_current", text="After") - elif (arm.paths_type == 'RANGE'): - sub.itemR(arm, "path_start_frame", text="Start") - sub.itemR(arm, "path_end_frame", text="End") + def draw(self, context): + layout = self.layout - sub.itemR(arm, "path_size", text="Step") - col.row().itemR(arm, "paths_location", expand=True) - - col = split.column() - col.itemL(text="Display:") - col.itemR(arm, "paths_show_frame_numbers", text="Frame Numbers") - col.itemR(arm, "paths_highlight_keyframes", text="Keyframes") - col.itemR(arm, "paths_show_keyframe_numbers", text="Keyframe Numbers") - - layout.itemS() - - row = layout.row() - row.itemO("pose.paths_calculate", text="Calculate Paths") - row.itemO("pose.paths_clear", text="Clear Paths") + arm = context.armature + + layout.itemR(arm, "paths_type", expand=True) + + split = layout.split() + + col = split.column() + sub = col.column(align=True) + if (arm.paths_type == 'CURRENT_FRAME'): + sub.itemR(arm, "path_before_current", text="Before") + sub.itemR(arm, "path_after_current", text="After") + elif (arm.paths_type == 'RANGE'): + sub.itemR(arm, "path_start_frame", text="Start") + sub.itemR(arm, "path_end_frame", text="End") + + sub.itemR(arm, "path_size", text="Step") + col.row().itemR(arm, "paths_location", expand=True) + + col = split.column() + col.itemL(text="Display:") + col.itemR(arm, "paths_show_frame_numbers", text="Frame Numbers") + col.itemR(arm, "paths_highlight_keyframes", text="Keyframes") + col.itemR(arm, "paths_show_keyframe_numbers", text="Keyframe Numbers") + + layout.itemS() + + row = layout.row() + row.itemO("pose.paths_calculate", text="Calculate Paths") + row.itemO("pose.paths_clear", text="Clear Paths") class DATA_PT_ghost(DataButtonsPanel): - bl_label = "Ghost" + bl_label = "Ghost" - def draw(self, context): - layout = self.layout - - arm = context.armature - - layout.itemR(arm, "ghost_type", expand=True) - - split = layout.split() + def draw(self, context): + layout = self.layout - col = split.column() + arm = context.armature - sub = col.column(align=True) - if arm.ghost_type == 'RANGE': - sub.itemR(arm, "ghost_start_frame", text="Start") - sub.itemR(arm, "ghost_end_frame", text="End") - sub.itemR(arm, "ghost_size", text="Step") - elif arm.ghost_type == 'CURRENT_FRAME': - sub.itemR(arm, "ghost_step", text="Range") - sub.itemR(arm, "ghost_size", text="Step") + layout.itemR(arm, "ghost_type", expand=True) - col = split.column() - col.itemL(text="Display:") - col.itemR(arm, "ghost_only_selected", text="Selected Only") + split = layout.split() + + col = split.column() + + sub = col.column(align=True) + if arm.ghost_type == 'RANGE': + sub.itemR(arm, "ghost_start_frame", text="Start") + sub.itemR(arm, "ghost_end_frame", text="End") + sub.itemR(arm, "ghost_size", text="Step") + elif arm.ghost_type == 'CURRENT_FRAME': + sub.itemR(arm, "ghost_step", text="Range") + sub.itemR(arm, "ghost_size", text="Step") + + col = split.column() + col.itemL(text="Display:") + col.itemR(arm, "ghost_only_selected", text="Selected Only") bpy.types.register(DATA_PT_context_arm) bpy.types.register(DATA_PT_skeleton) diff --git a/release/scripts/ui/buttons_data_bone.py b/release/scripts/ui/buttons_data_bone.py index 706c418d0ce..962cb871377 100644 --- a/release/scripts/ui/buttons_data_bone.py +++ b/release/scripts/ui/buttons_data_bone.py @@ -1,225 +1,225 @@ import bpy - + class BoneButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "bone" - - def poll(self, context): - return (context.bone or context.edit_bone) + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "bone" + + def poll(self, context): + return (context.bone or context.edit_bone) class BONE_PT_context_bone(BoneButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def draw(self, context): - layout = self.layout - - bone = context.bone - if not bone: - bone = context.edit_bone - - row = layout.row() - row.itemL(text="", icon='ICON_BONE_DATA') - row.itemR(bone, "name", text="") + def draw(self, context): + layout = self.layout + + bone = context.bone + if not bone: + bone = context.edit_bone + + row = layout.row() + row.itemL(text="", icon='ICON_BONE_DATA') + row.itemR(bone, "name", text="") class BONE_PT_transform(BoneButtonsPanel): - bl_label = "Transform" + bl_label = "Transform" - def draw(self, context): - layout = self.layout - - ob = context.object - bone = context.bone - if not bone: - bone = context.edit_bone + def draw(self, context): + layout = self.layout - row = layout.row() - row.column().itemR(bone, "head") - row.column().itemR(bone, "tail") + ob = context.object + bone = context.bone + if not bone: + bone = context.edit_bone - col = row.column() - sub = col.column(align=True) - sub.itemL(text="Roll:") - sub.itemR(bone, "roll", text="") - sub.itemL() - sub.itemR(bone, "locked") + row = layout.row() + row.column().itemR(bone, "head") + row.column().itemR(bone, "tail") - else: - pchan = ob.pose.pose_channels[context.bone.name] + col = row.column() + sub = col.column(align=True) + sub.itemL(text="Roll:") + sub.itemR(bone, "roll", text="") + sub.itemL() + sub.itemR(bone, "locked") - row = layout.row() - col = row.column() - col.itemR(pchan, "location") - col.active = not (bone.parent and bone.connected) + else: + pchan = ob.pose.pose_channels[context.bone.name] - col = row.column() - if pchan.rotation_mode == 'QUATERNION': - col.itemR(pchan, "rotation_quaternion", text="Rotation") - elif pchan.rotation_mode == 'AXIS_ANGLE': - #col.itemL(text="Rotation") - #col.itemR(pchan, "rotation_angle", text="Angle") - #col.itemR(pchan, "rotation_axis", text="Axis") - col.itemR(pchan, "rotation_axis_angle", text="Rotation") - else: - col.itemR(pchan, "rotation_euler", text="Rotation") + row = layout.row() + col = row.column() + col.itemR(pchan, "location") + col.active = not (bone.parent and bone.connected) + + col = row.column() + if pchan.rotation_mode == 'QUATERNION': + col.itemR(pchan, "rotation_quaternion", text="Rotation") + elif pchan.rotation_mode == 'AXIS_ANGLE': + #col.itemL(text="Rotation") + #col.itemR(pchan, "rotation_angle", text="Angle") + #col.itemR(pchan, "rotation_axis", text="Axis") + col.itemR(pchan, "rotation_axis_angle", text="Rotation") + else: + col.itemR(pchan, "rotation_euler", text="Rotation") + + row.column().itemR(pchan, "scale") + + layout.itemR(pchan, "rotation_mode") - row.column().itemR(pchan, "scale") - - layout.itemR(pchan, "rotation_mode") - class BONE_PT_transform_locks(BoneButtonsPanel): - bl_label = "Transform Locks" - bl_default_closed = True - - def poll(self, context): - return context.bone - - def draw(self, context): - layout = self.layout - - ob = context.object - bone = context.bone - pchan = ob.pose.pose_channels[context.bone.name] - - row = layout.row() - col = row.column() - col.itemR(pchan, "lock_location") - col.active = not (bone.parent and bone.connected) - - col = row.column() - if pchan.rotation_mode in ('QUATERNION', 'AXIS_ANGLE'): - col.itemR(pchan, "lock_rotations_4d", text="Lock Rotation") - if pchan.lock_rotations_4d: - col.itemR(pchan, "lock_rotation_w", text="W") - col.itemR(pchan, "lock_rotation", text="") - else: - col.itemR(pchan, "lock_rotation", text="Rotation") - - row.column().itemR(pchan, "lock_scale") + bl_label = "Transform Locks" + bl_default_closed = True + + def poll(self, context): + return context.bone + + def draw(self, context): + layout = self.layout + + ob = context.object + bone = context.bone + pchan = ob.pose.pose_channels[context.bone.name] + + row = layout.row() + col = row.column() + col.itemR(pchan, "lock_location") + col.active = not (bone.parent and bone.connected) + + col = row.column() + if pchan.rotation_mode in ('QUATERNION', 'AXIS_ANGLE'): + col.itemR(pchan, "lock_rotations_4d", text="Lock Rotation") + if pchan.lock_rotations_4d: + col.itemR(pchan, "lock_rotation_w", text="W") + col.itemR(pchan, "lock_rotation", text="") + else: + col.itemR(pchan, "lock_rotation", text="Rotation") + + row.column().itemR(pchan, "lock_scale") class BONE_PT_relations(BoneButtonsPanel): - bl_label = "Relations" + bl_label = "Relations" - def draw(self, context): - layout = self.layout - - ob = context.object - bone = context.bone - arm = context.armature - - if not bone: - bone = context.edit_bone - pchan = None - else: - pchan = ob.pose.pose_channels[context.bone.name] + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemL(text="Layers:") - col.itemR(bone, "layer", text="") - - col.itemS() - - if ob and pchan: - col.itemL(text="Bone Group:") - col.item_pointerR(pchan, "bone_group", ob.pose, "bone_groups", text="") - - col = split.column() - col.itemL(text="Parent:") - if context.bone: - col.itemR(bone, "parent", text="") - else: - col.item_pointerR(bone, "parent", arm, "edit_bones", text="") - - sub = col.column() - sub.active = bone.parent != None - sub.itemR(bone, "connected") - sub.itemR(bone, "hinge", text="Inherit Rotation") - sub.itemR(bone, "inherit_scale", text="Inherit Scale") + ob = context.object + bone = context.bone + arm = context.armature + + if not bone: + bone = context.edit_bone + pchan = None + else: + pchan = ob.pose.pose_channels[context.bone.name] + + split = layout.split() + + col = split.column() + col.itemL(text="Layers:") + col.itemR(bone, "layer", text="") + + col.itemS() + + if ob and pchan: + col.itemL(text="Bone Group:") + col.item_pointerR(pchan, "bone_group", ob.pose, "bone_groups", text="") + + col = split.column() + col.itemL(text="Parent:") + if context.bone: + col.itemR(bone, "parent", text="") + else: + col.item_pointerR(bone, "parent", arm, "edit_bones", text="") + + sub = col.column() + sub.active = bone.parent != None + sub.itemR(bone, "connected") + sub.itemR(bone, "hinge", text="Inherit Rotation") + sub.itemR(bone, "inherit_scale", text="Inherit Scale") class BONE_PT_display(BoneButtonsPanel): - bl_label = "Display" - - def poll(self, context): - return context.bone - - def draw(self, context): - layout = self.layout - - ob = context.object - bone = context.bone - arm = context.armature - - if not bone: - bone = context.edit_bone - pchan = None - else: - pchan = ob.pose.pose_channels[context.bone.name] - - if ob and pchan: - - split = layout.split() - - col = split.column() - - col.itemR(bone, "draw_wire", text="Wireframe") - col.itemR(bone, "hidden", text="Hide") - - col = split.column() - - col.itemL(text="Custom Shape:") - col.itemR(pchan, "custom_shape", text="") + bl_label = "Display" + + def poll(self, context): + return context.bone + + def draw(self, context): + layout = self.layout + + ob = context.object + bone = context.bone + arm = context.armature + + if not bone: + bone = context.edit_bone + pchan = None + else: + pchan = ob.pose.pose_channels[context.bone.name] + + if ob and pchan: + + split = layout.split() + + col = split.column() + + col.itemR(bone, "draw_wire", text="Wireframe") + col.itemR(bone, "hidden", text="Hide") + + col = split.column() + + col.itemL(text="Custom Shape:") + col.itemR(pchan, "custom_shape", text="") class BONE_PT_deform(BoneButtonsPanel): - bl_label = "Deform" - bl_default_closed = True + bl_label = "Deform" + bl_default_closed = True - def draw_header(self, context): - bone = context.bone - - if not bone: - bone = context.edit_bone - - self.layout.itemR(bone, "deform", text="") + def draw_header(self, context): + bone = context.bone - def draw(self, context): - layout = self.layout - - bone = context.bone - - if not bone: - bone = context.edit_bone - - layout.active = bone.deform - - split = layout.split() + if not bone: + bone = context.edit_bone - col = split.column() - col.itemL(text="Envelope:") - - sub = col.column(align=True) - sub.itemR(bone, "envelope_distance", text="Distance") - sub.itemR(bone, "envelope_weight", text="Weight") - col.itemR(bone, "multiply_vertexgroup_with_envelope", text="Multiply") + self.layout.itemR(bone, "deform", text="") - sub = col.column(align=True) - sub.itemL(text="Radius:") - sub.itemR(bone, "head_radius", text="Head") - sub.itemR(bone, "tail_radius", text="Tail") + def draw(self, context): + layout = self.layout - col = split.column() - col.itemL(text="Curved Bones:") - - sub = col.column(align=True) - sub.itemR(bone, "bbone_segments", text="Segments") - sub.itemR(bone, "bbone_in", text="Ease In") - sub.itemR(bone, "bbone_out", text="Ease Out") - - col.itemL(text="Offset:") - col.itemR(bone, "cyclic_offset") + bone = context.bone + + if not bone: + bone = context.edit_bone + + layout.active = bone.deform + + split = layout.split() + + col = split.column() + col.itemL(text="Envelope:") + + sub = col.column(align=True) + sub.itemR(bone, "envelope_distance", text="Distance") + sub.itemR(bone, "envelope_weight", text="Weight") + col.itemR(bone, "multiply_vertexgroup_with_envelope", text="Multiply") + + sub = col.column(align=True) + sub.itemL(text="Radius:") + sub.itemR(bone, "head_radius", text="Head") + sub.itemR(bone, "tail_radius", text="Tail") + + col = split.column() + col.itemL(text="Curved Bones:") + + sub = col.column(align=True) + sub.itemR(bone, "bbone_segments", text="Segments") + sub.itemR(bone, "bbone_in", text="Ease In") + sub.itemR(bone, "bbone_out", text="Ease Out") + + col.itemL(text="Offset:") + col.itemR(bone, "cyclic_offset") bpy.types.register(BONE_PT_context_bone) bpy.types.register(BONE_PT_transform) diff --git a/release/scripts/ui/buttons_data_camera.py b/release/scripts/ui/buttons_data_camera.py index 1321e42b97d..f0c39dc2593 100644 --- a/release/scripts/ui/buttons_data_camera.py +++ b/release/scripts/ui/buttons_data_camera.py @@ -2,97 +2,97 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.camera - def poll(self, context): - return context.camera - class DATA_PT_context_camera(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - cam = context.camera - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif cam: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + cam = context.camera + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif cam: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_camera(DataButtonsPanel): - bl_label = "Lens" + bl_label = "Lens" - def draw(self, context): - layout = self.layout - - cam = context.camera + def draw(self, context): + layout = self.layout - layout.itemR(cam, "type", expand=True) - - row = layout.row() - if cam.type == 'PERSP': - if cam.lens_unit == 'MILLIMETERS': - row.itemR(cam, "lens", text="Angle") - elif cam.lens_unit == 'DEGREES': - row.itemR(cam, "angle") - row.itemR(cam, "lens_unit", text="") + cam = context.camera - elif cam.type == 'ORTHO': - row.itemR(cam, "ortho_scale") + layout.itemR(cam, "type", expand=True) + + row = layout.row() + if cam.type == 'PERSP': + if cam.lens_unit == 'MILLIMETERS': + row.itemR(cam, "lens", text="Angle") + elif cam.lens_unit == 'DEGREES': + row.itemR(cam, "angle") + row.itemR(cam, "lens_unit", text="") + + elif cam.type == 'ORTHO': + row.itemR(cam, "ortho_scale") + + layout.itemR(cam, "panorama") + + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Shift:") + col.itemR(cam, "shift_x", text="X") + col.itemR(cam, "shift_y", text="Y") + + col = split.column(align=True) + col.itemL(text="Clipping:") + col.itemR(cam, "clip_start", text="Start") + col.itemR(cam, "clip_end", text="End") + + layout.itemL(text="Depth of Field:") + + row = layout.row() + row.itemR(cam, "dof_object", text="") + row.itemR(cam, "dof_distance", text="Distance") - layout.itemR(cam, "panorama") - - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Shift:") - col.itemR(cam, "shift_x", text="X") - col.itemR(cam, "shift_y", text="Y") - - col = split.column(align=True) - col.itemL(text="Clipping:") - col.itemR(cam, "clip_start", text="Start") - col.itemR(cam, "clip_end", text="End") - - layout.itemL(text="Depth of Field:") - - row = layout.row() - row.itemR(cam, "dof_object", text="") - row.itemR(cam, "dof_distance", text="Distance") - class DATA_PT_camera_display(DataButtonsPanel): - bl_label = "Display" + bl_label = "Display" - def draw(self, context): - layout = self.layout - - cam = context.camera + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemR(cam, "show_limits", text="Limits") - col.itemR(cam, "show_mist", text="Mist") - col.itemR(cam, "show_title_safe", text="Title Safe") - col.itemR(cam, "show_name", text="Name") - - col = split.column() - col.itemR(cam, "draw_size", text="Size") - col.itemS() - col.itemR(cam, "show_passepartout", text="Passepartout") - sub = col.column() - sub.active = cam.show_passepartout - sub.itemR(cam, "passepartout_alpha", text="Alpha", slider=True) + cam = context.camera + + split = layout.split() + + col = split.column() + col.itemR(cam, "show_limits", text="Limits") + col.itemR(cam, "show_mist", text="Mist") + col.itemR(cam, "show_title_safe", text="Title Safe") + col.itemR(cam, "show_name", text="Name") + + col = split.column() + col.itemR(cam, "draw_size", text="Size") + col.itemS() + col.itemR(cam, "show_passepartout", text="Passepartout") + sub = col.column() + sub.active = cam.show_passepartout + sub.itemR(cam, "passepartout_alpha", text="Alpha", slider=True) bpy.types.register(DATA_PT_context_camera) bpy.types.register(DATA_PT_camera) diff --git a/release/scripts/ui/buttons_data_curve.py b/release/scripts/ui/buttons_data_curve.py index 90d84dc09ed..fdb24cab2b1 100644 --- a/release/scripts/ui/buttons_data_curve.py +++ b/release/scripts/ui/buttons_data_curve.py @@ -2,94 +2,94 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return (context.object and context.object.type in ('CURVE', 'SURFACE') and context.curve) - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return (context.object and context.object.type in ('CURVE', 'SURFACE') and context.curve) + class DataButtonsPanelCurve(DataButtonsPanel): - ''' - Same as above but for curves only - ''' - def poll(self, context): - return (context.object and context.object.type == 'CURVE' and context.curve) + ''' + Same as above but for curves only + ''' + def poll(self, context): + return (context.object and context.object.type == 'CURVE' and context.curve) class DataButtonsPanelActive(DataButtonsPanel): - ''' - Same as above but for curves only - ''' - def poll(self, context): - curve = context.curve - return (curve and curve.active_spline) + ''' + Same as above but for curves only + ''' + def poll(self, context): + curve = context.curve + return (curve and curve.active_spline) class DATA_PT_context_curve(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - curve = context.curve - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif curve: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + curve = context.curve + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif curve: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_shape_curve(DataButtonsPanel): - bl_label = "Shape" - - def draw(self, context): - layout = self.layout - - ob = context.object - curve = context.curve - space = context.space_data - is_surf = (ob.type == 'SURFACE') + bl_label = "Shape" - if not is_surf: - row = layout.row() - row.itemR(curve, "dimensions", expand=True) - - split = layout.split() - - col = split.column() - - if not is_surf: - sub = col.column() - sub.active = (curve.dimensions=='2D') - sub.itemL(text="Caps:") - row = sub.row() - row.itemR(curve, "front") - row.itemR(curve, "back") - - col.itemL(text="Textures:") + def draw(self, context): + layout = self.layout + + ob = context.object + curve = context.curve + space = context.space_data + is_surf = (ob.type == 'SURFACE') + + if not is_surf: + row = layout.row() + row.itemR(curve, "dimensions", expand=True) + + split = layout.split() + + col = split.column() + + if not is_surf: + sub = col.column() + sub.active = (curve.dimensions=='2D') + sub.itemL(text="Caps:") + row = sub.row() + row.itemR(curve, "front") + row.itemR(curve, "back") + + col.itemL(text="Textures:") # col.itemR(curve, "uv_orco") - col.itemR(curve, "auto_texspace") - - col = split.column() - col.itemL(text="Resolution:") - sub = col.column(align=True) - sub.itemR(curve, "resolution_u", text="Preview U") - sub.itemR(curve, "render_resolution_u", text="Render U") + col.itemR(curve, "auto_texspace") - if is_surf: - sub = col.column(align=True) - sub.itemR(curve, "resolution_v", text="Preview V") - sub.itemR(curve, "render_resolution_v", text="Render V") - - # XXX - put somewhere nicer. - row= layout.row() - row.itemR(curve, "twist_mode") - row.itemR(curve, "twist_smooth") # XXX - may not be kept + col = split.column() + col.itemL(text="Resolution:") + sub = col.column(align=True) + sub.itemR(curve, "resolution_u", text="Preview U") + sub.itemR(curve, "render_resolution_u", text="Render U") + + if is_surf: + sub = col.column(align=True) + sub.itemR(curve, "resolution_v", text="Preview V") + sub.itemR(curve, "render_resolution_v", text="Render V") + + # XXX - put somewhere nicer. + row= layout.row() + row.itemR(curve, "twist_mode") + row.itemR(curve, "twist_smooth") # XXX - may not be kept # col.itemL(text="Display:") # col.itemL(text="HANDLES") @@ -97,127 +97,127 @@ class DATA_PT_shape_curve(DataButtonsPanel): # col.itemR(curve, "vertex_normal_flip") class DATA_PT_geometry_curve(DataButtonsPanel): - bl_label = "Geometry" + bl_label = "Geometry" - def draw(self, context): - layout = self.layout - - curve = context.curve + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemL(text="Modification:") - col.itemR(curve, "width") - col.itemR(curve, "extrude") - col.itemL(text="Taper Object:") - col.itemR(curve, "taper_object", text="") - - col = split.column() - col.itemL(text="Bevel:") - col.itemR(curve, "bevel_depth", text="Depth") - col.itemR(curve, "bevel_resolution", text="Resolution") - col.itemL(text="Bevel Object:") - col.itemR(curve, "bevel_object", text="") + curve = context.curve + + split = layout.split() + + col = split.column() + col.itemL(text="Modification:") + col.itemR(curve, "width") + col.itemR(curve, "extrude") + col.itemL(text="Taper Object:") + col.itemR(curve, "taper_object", text="") + + col = split.column() + col.itemL(text="Bevel:") + col.itemR(curve, "bevel_depth", text="Depth") + col.itemR(curve, "bevel_resolution", text="Resolution") + col.itemL(text="Bevel Object:") + col.itemR(curve, "bevel_object", text="") class DATA_PT_pathanim(DataButtonsPanelCurve): - bl_label = "Path Animation" - - def draw_header(self, context): - curve = context.curve + bl_label = "Path Animation" - self.layout.itemR(curve, "use_path", text="") + def draw_header(self, context): + curve = context.curve - def draw(self, context): - layout = self.layout - - curve = context.curve - - layout.active = curve.use_path - - split = layout.split() - - col = split.column() - col.itemR(curve, "path_length", text="Frames") - col.itemR(curve, "use_path_follow") + self.layout.itemR(curve, "use_path", text="") + + def draw(self, context): + layout = self.layout + + curve = context.curve + + layout.active = curve.use_path + + split = layout.split() + + col = split.column() + col.itemR(curve, "path_length", text="Frames") + col.itemR(curve, "use_path_follow") + + col = split.column() + col.itemR(curve, "use_stretch") + col.itemR(curve, "use_radius") + col.itemR(curve, "use_time_offset", text="Offset Children") - col = split.column() - col.itemR(curve, "use_stretch") - col.itemR(curve, "use_radius") - col.itemR(curve, "use_time_offset", text="Offset Children") - class DATA_PT_active_spline(DataButtonsPanelActive): - bl_label = "Active Spline" + bl_label = "Active Spline" - def draw(self, context): - layout = self.layout - - ob = context.object - curve = context.curve - act_spline = curve.active_spline - is_surf = (ob.type == 'SURFACE') - is_poly = (act_spline.type == 'POLY') - - split = layout.split() - - if is_poly: - # These settings are below but its easier to have - # poly's set aside since they use so few settings - col = split.column() - col.itemL(text="Cyclic:") - col.itemR(act_spline, "smooth") - col = split.column() - col.itemR(act_spline, "cyclic_u", text="U") - - else: - col = split.column() - col.itemL(text="Cyclic:") - if act_spline.type == 'NURBS': - col.itemL(text="Bezier:") - col.itemL(text="Endpoint:") - col.itemL(text="Order:") - - col.itemL(text="Resolution:") - - col = split.column() - col.itemR(act_spline, "cyclic_u", text="U") - - if act_spline.type == 'NURBS': - sub = col.column() - # sub.active = (not act_spline.cyclic_u) - sub.itemR(act_spline, "bezier_u", text="U") - sub.itemR(act_spline, "endpoint_u", text="U") - - sub = col.column() - sub.itemR(act_spline, "order_u", text="U") - col.itemR(act_spline, "resolution_u", text="U") - - if is_surf: - col = split.column() - col.itemR(act_spline, "cyclic_v", text="V") - - # its a surface, assume its a nurb. - sub = col.column() - sub.active = (not act_spline.cyclic_v) - sub.itemR(act_spline, "bezier_v", text="V") - sub.itemR(act_spline, "endpoint_v", text="V") - sub = col.column() - sub.itemR(act_spline, "order_v", text="V") - sub.itemR(act_spline, "resolution_v", text="V") + def draw(self, context): + layout = self.layout - - if not is_surf: - split = layout.split() - col = split.column() - col.active = (curve.dimensions=='3D') - - col.itemL(text="Interpolation:") - col.itemR(act_spline, "tilt_interpolation", text="Tilt") - col.itemR(act_spline, "radius_interpolation", text="Radius") - - split = layout.split() - col = split.column() - col.itemR(act_spline, "smooth") + ob = context.object + curve = context.curve + act_spline = curve.active_spline + is_surf = (ob.type == 'SURFACE') + is_poly = (act_spline.type == 'POLY') + + split = layout.split() + + if is_poly: + # These settings are below but its easier to have + # poly's set aside since they use so few settings + col = split.column() + col.itemL(text="Cyclic:") + col.itemR(act_spline, "smooth") + col = split.column() + col.itemR(act_spline, "cyclic_u", text="U") + + else: + col = split.column() + col.itemL(text="Cyclic:") + if act_spline.type == 'NURBS': + col.itemL(text="Bezier:") + col.itemL(text="Endpoint:") + col.itemL(text="Order:") + + col.itemL(text="Resolution:") + + col = split.column() + col.itemR(act_spline, "cyclic_u", text="U") + + if act_spline.type == 'NURBS': + sub = col.column() + # sub.active = (not act_spline.cyclic_u) + sub.itemR(act_spline, "bezier_u", text="U") + sub.itemR(act_spline, "endpoint_u", text="U") + + sub = col.column() + sub.itemR(act_spline, "order_u", text="U") + col.itemR(act_spline, "resolution_u", text="U") + + if is_surf: + col = split.column() + col.itemR(act_spline, "cyclic_v", text="V") + + # its a surface, assume its a nurb. + sub = col.column() + sub.active = (not act_spline.cyclic_v) + sub.itemR(act_spline, "bezier_v", text="V") + sub.itemR(act_spline, "endpoint_v", text="V") + sub = col.column() + sub.itemR(act_spline, "order_v", text="V") + sub.itemR(act_spline, "resolution_v", text="V") + + + if not is_surf: + split = layout.split() + col = split.column() + col.active = (curve.dimensions=='3D') + + col.itemL(text="Interpolation:") + col.itemR(act_spline, "tilt_interpolation", text="Tilt") + col.itemR(act_spline, "radius_interpolation", text="Radius") + + split = layout.split() + col = split.column() + col.itemR(act_spline, "smooth") bpy.types.register(DATA_PT_context_curve) bpy.types.register(DATA_PT_shape_curve) diff --git a/release/scripts/ui/buttons_data_empty.py b/release/scripts/ui/buttons_data_empty.py index 652f470a605..5fe864ee7a2 100644 --- a/release/scripts/ui/buttons_data_empty.py +++ b/release/scripts/ui/buttons_data_empty.py @@ -2,22 +2,22 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return (context.object and context.object.type == 'EMPTY') - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return (context.object and context.object.type == 'EMPTY') + class DATA_PT_empty(DataButtonsPanel): - bl_label = "Empty" + bl_label = "Empty" - def draw(self, context): - layout = self.layout - - ob = context.object + def draw(self, context): + layout = self.layout + + ob = context.object + + layout.itemR(ob, "empty_draw_type", text="Display") + layout.itemR(ob, "empty_draw_size", text="Size") - layout.itemR(ob, "empty_draw_type", text="Display") - layout.itemR(ob, "empty_draw_size", text="Size") - bpy.types.register(DATA_PT_empty) diff --git a/release/scripts/ui/buttons_data_lamp.py b/release/scripts/ui/buttons_data_lamp.py index 0d384701029..c7c25bfd090 100644 --- a/release/scripts/ui/buttons_data_lamp.py +++ b/release/scripts/ui/buttons_data_lamp.py @@ -2,306 +2,306 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return context.lamp - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.lamp + class DATA_PT_preview(DataButtonsPanel): - bl_label = "Preview" + bl_label = "Preview" + + def draw(self, context): + self.layout.template_preview(context.lamp) - def draw(self, context): - self.layout.template_preview(context.lamp) - class DATA_PT_context_lamp(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - lamp = context.lamp - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif lamp: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + lamp = context.lamp + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif lamp: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_lamp(DataButtonsPanel): - bl_label = "Lamp" + bl_label = "Lamp" - def draw(self, context): - layout = self.layout - - lamp = context.lamp - - layout.itemR(lamp, "type", expand=True) - - split = layout.split() - - col = split.column() - sub = col.column() - sub.itemR(lamp, "color", text="") - sub.itemR(lamp, "energy") + def draw(self, context): + layout = self.layout - if lamp.type in ('POINT', 'SPOT'): - sub.itemL(text="Falloff:") - sub.itemR(lamp, "falloff_type", text="") - sub.itemR(lamp, "distance") + lamp = context.lamp - if lamp.falloff_type == 'LINEAR_QUADRATIC_WEIGHTED': - col.itemL(text="Attenuation Factors:") - sub = col.column(align=True) - sub.itemR(lamp, "linear_attenuation", slider=True, text="Linear") - sub.itemR(lamp, "quadratic_attenuation", slider=True, text="Quadratic") - - col.itemR(lamp, "sphere") - - if lamp.type == 'AREA': - col.itemR(lamp, "distance") - col.itemR(lamp, "gamma") - - col = split.column() - col.itemR(lamp, "negative") - col.itemR(lamp, "layer", text="This Layer Only") - col.itemR(lamp, "specular") - col.itemR(lamp, "diffuse") + layout.itemR(lamp, "type", expand=True) + + split = layout.split() + + col = split.column() + sub = col.column() + sub.itemR(lamp, "color", text="") + sub.itemR(lamp, "energy") + + if lamp.type in ('POINT', 'SPOT'): + sub.itemL(text="Falloff:") + sub.itemR(lamp, "falloff_type", text="") + sub.itemR(lamp, "distance") + + if lamp.falloff_type == 'LINEAR_QUADRATIC_WEIGHTED': + col.itemL(text="Attenuation Factors:") + sub = col.column(align=True) + sub.itemR(lamp, "linear_attenuation", slider=True, text="Linear") + sub.itemR(lamp, "quadratic_attenuation", slider=True, text="Quadratic") + + col.itemR(lamp, "sphere") + + if lamp.type == 'AREA': + col.itemR(lamp, "distance") + col.itemR(lamp, "gamma") + + col = split.column() + col.itemR(lamp, "negative") + col.itemR(lamp, "layer", text="This Layer Only") + col.itemR(lamp, "specular") + col.itemR(lamp, "diffuse") class DATA_PT_sunsky(DataButtonsPanel): - bl_label = "Sky & Atmosphere" - - def poll(self, context): - lamp = context.lamp - return (lamp and lamp.type == 'SUN') + bl_label = "Sky & Atmosphere" - def draw(self, context): - layout = self.layout - - lamp = context.lamp.sky + def poll(self, context): + lamp = context.lamp + return (lamp and lamp.type == 'SUN') - layout.itemR(lamp, "sky") + def draw(self, context): + layout = self.layout + + lamp = context.lamp.sky + + layout.itemR(lamp, "sky") + + row = layout.row() + row.active = lamp.sky or lamp.atmosphere + row.itemR(lamp, "atmosphere_turbidity", text="Turbidity") + + split = layout.split() + + col = split.column() + col.active = lamp.sky + col.itemL(text="Blending:") + sub = col.column() + sub.itemR(lamp, "sky_blend_type", text="") + sub.itemR(lamp, "sky_blend", text="Factor") + + col.itemL(text="Color Space:") + sub = col.column() + sub.row().itemR(lamp, "sky_color_space", expand=True) + sub.itemR(lamp, "sky_exposure", text="Exposure") + + col = split.column() + col.active = lamp.sky + col.itemL(text="Horizon:") + sub = col.column() + sub.itemR(lamp, "horizon_brightness", text="Brightness") + sub.itemR(lamp, "spread", text="Spread") + + col.itemL(text="Sun:") + sub = col.column() + sub.itemR(lamp, "sun_brightness", text="Brightness") + sub.itemR(lamp, "sun_size", text="Size") + sub.itemR(lamp, "backscattered_light", slider=True,text="Back Light") + + layout.itemS() + + layout.itemR(lamp, "atmosphere") + + split = layout.split() + + col = split.column() + col.active = lamp.atmosphere + col.itemL(text="Intensity:") + col.itemR(lamp, "sun_intensity", text="Sun") + col.itemR(lamp, "atmosphere_distance_factor", text="Distance") + + col = split.column() + col.active = lamp.atmosphere + col.itemL(text="Scattering:") + sub = col.column(align=True) + sub.itemR(lamp, "atmosphere_inscattering", slider=True, text="Inscattering") + sub.itemR(lamp, "atmosphere_extinction", slider=True ,text="Extinction") - row = layout.row() - row.active = lamp.sky or lamp.atmosphere - row.itemR(lamp, "atmosphere_turbidity", text="Turbidity") - - split = layout.split() - - col = split.column() - col.active = lamp.sky - col.itemL(text="Blending:") - sub = col.column() - sub.itemR(lamp, "sky_blend_type", text="") - sub.itemR(lamp, "sky_blend", text="Factor") - - col.itemL(text="Color Space:") - sub = col.column() - sub.row().itemR(lamp, "sky_color_space", expand=True) - sub.itemR(lamp, "sky_exposure", text="Exposure") - - col = split.column() - col.active = lamp.sky - col.itemL(text="Horizon:") - sub = col.column() - sub.itemR(lamp, "horizon_brightness", text="Brightness") - sub.itemR(lamp, "spread", text="Spread") - - col.itemL(text="Sun:") - sub = col.column() - sub.itemR(lamp, "sun_brightness", text="Brightness") - sub.itemR(lamp, "sun_size", text="Size") - sub.itemR(lamp, "backscattered_light", slider=True,text="Back Light") - - layout.itemS() - - layout.itemR(lamp, "atmosphere") - - split = layout.split() - - col = split.column() - col.active = lamp.atmosphere - col.itemL(text="Intensity:") - col.itemR(lamp, "sun_intensity", text="Sun") - col.itemR(lamp, "atmosphere_distance_factor", text="Distance") - - col = split.column() - col.active = lamp.atmosphere - col.itemL(text="Scattering:") - sub = col.column(align=True) - sub.itemR(lamp, "atmosphere_inscattering", slider=True, text="Inscattering") - sub.itemR(lamp, "atmosphere_extinction", slider=True ,text="Extinction") - class DATA_PT_shadow(DataButtonsPanel): - bl_label = "Shadow" - - def poll(self, context): - lamp = context.lamp - return (lamp and lamp.type in ('POINT','SUN', 'SPOT', 'AREA')) + bl_label = "Shadow" - def draw(self, context): - layout = self.layout - - lamp = context.lamp + def poll(self, context): + lamp = context.lamp + return (lamp and lamp.type in ('POINT','SUN', 'SPOT', 'AREA')) - layout.itemR(lamp, "shadow_method", expand=True) - - if lamp.shadow_method != 'NOSHADOW': - split = layout.split() - - col = split.column() - col.itemR(lamp, "shadow_color", text="") - - col = split.column() - col.itemR(lamp, "shadow_layer", text="This Layer Only") - col.itemR(lamp, "only_shadow") - - if lamp.shadow_method == 'RAY_SHADOW': - col = layout.column() - col.itemL(text="Sampling:") - col.row().itemR(lamp, "shadow_ray_sampling_method", expand=True) - - if lamp.type in ('POINT', 'SUN', 'SPOT'): - split = layout.split() - - col = split.column() - col.itemR(lamp, "shadow_soft_size", text="Soft Size") - - col.itemR(lamp, "shadow_ray_samples", text="Samples") - if lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC': - col.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") - col = split.column() - - elif lamp.type == 'AREA': - split = layout.split() - - col = split.column() - sub = split.column(align=True) - if lamp.shape == 'SQUARE': - col.itemR(lamp, "shadow_ray_samples_x", text="Samples") - elif lamp.shape == 'RECTANGLE': - col.itemR(lamp, "shadow_ray_samples_x", text="Samples X") - col.itemR(lamp, "shadow_ray_samples_y", text="Samples Y") - - if lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC': - col.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") - - elif lamp.shadow_ray_sampling_method == 'CONSTANT_JITTERED': - sub.itemR(lamp, "umbra") - sub.itemR(lamp, "dither") - sub.itemR(lamp, "jitter") + def draw(self, context): + layout = self.layout - elif lamp.shadow_method == 'BUFFER_SHADOW': - col = layout.column() - col.itemL(text="Buffer Type:") - col.row().itemR(lamp, "shadow_buffer_type", expand=True) + lamp = context.lamp - if lamp.shadow_buffer_type in ('REGULAR', 'HALFWAY', 'DEEP'): - split = layout.split() - - col = split.column() - col.itemL(text="Filter Type:") - col.itemR(lamp, "shadow_filter_type", text="") - sub = col.column(align=True) - sub.itemR(lamp, "shadow_buffer_soft", text="Soft") - sub.itemR(lamp, "shadow_buffer_bias", text="Bias") - - col = split.column() - col.itemL(text="Sample Buffers:") - col.itemR(lamp, "shadow_sample_buffers", text="") - sub = col.column(align=True) - sub.itemR(lamp, "shadow_buffer_size", text="Size") - sub.itemR(lamp, "shadow_buffer_samples", text="Samples") - if lamp.shadow_buffer_type == 'DEEP': - col.itemR(lamp, "compression_threshold") - - elif lamp.shadow_buffer_type == 'IRREGULAR': - layout.itemR(lamp, "shadow_buffer_bias", text="Bias") - - row = layout.row() - row.itemR(lamp, "auto_clip_start", text="Autoclip Start") - sub = row.row() - sub.active = not lamp.auto_clip_start - sub.itemR(lamp, "shadow_buffer_clip_start", text="Clip Start") + layout.itemR(lamp, "shadow_method", expand=True) - row = layout.row() - row.itemR(lamp, "auto_clip_end", text="Autoclip End") - sub = row.row() - sub.active = not lamp.auto_clip_end - sub.itemR(lamp, "shadow_buffer_clip_end", text=" Clip End") + if lamp.shadow_method != 'NOSHADOW': + split = layout.split() + + col = split.column() + col.itemR(lamp, "shadow_color", text="") + + col = split.column() + col.itemR(lamp, "shadow_layer", text="This Layer Only") + col.itemR(lamp, "only_shadow") + + if lamp.shadow_method == 'RAY_SHADOW': + col = layout.column() + col.itemL(text="Sampling:") + col.row().itemR(lamp, "shadow_ray_sampling_method", expand=True) + + if lamp.type in ('POINT', 'SUN', 'SPOT'): + split = layout.split() + + col = split.column() + col.itemR(lamp, "shadow_soft_size", text="Soft Size") + + col.itemR(lamp, "shadow_ray_samples", text="Samples") + if lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC': + col.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") + col = split.column() + + elif lamp.type == 'AREA': + split = layout.split() + + col = split.column() + sub = split.column(align=True) + if lamp.shape == 'SQUARE': + col.itemR(lamp, "shadow_ray_samples_x", text="Samples") + elif lamp.shape == 'RECTANGLE': + col.itemR(lamp, "shadow_ray_samples_x", text="Samples X") + col.itemR(lamp, "shadow_ray_samples_y", text="Samples Y") + + if lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC': + col.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") + + elif lamp.shadow_ray_sampling_method == 'CONSTANT_JITTERED': + sub.itemR(lamp, "umbra") + sub.itemR(lamp, "dither") + sub.itemR(lamp, "jitter") + + elif lamp.shadow_method == 'BUFFER_SHADOW': + col = layout.column() + col.itemL(text="Buffer Type:") + col.row().itemR(lamp, "shadow_buffer_type", expand=True) + + if lamp.shadow_buffer_type in ('REGULAR', 'HALFWAY', 'DEEP'): + split = layout.split() + + col = split.column() + col.itemL(text="Filter Type:") + col.itemR(lamp, "shadow_filter_type", text="") + sub = col.column(align=True) + sub.itemR(lamp, "shadow_buffer_soft", text="Soft") + sub.itemR(lamp, "shadow_buffer_bias", text="Bias") + + col = split.column() + col.itemL(text="Sample Buffers:") + col.itemR(lamp, "shadow_sample_buffers", text="") + sub = col.column(align=True) + sub.itemR(lamp, "shadow_buffer_size", text="Size") + sub.itemR(lamp, "shadow_buffer_samples", text="Samples") + if lamp.shadow_buffer_type == 'DEEP': + col.itemR(lamp, "compression_threshold") + + elif lamp.shadow_buffer_type == 'IRREGULAR': + layout.itemR(lamp, "shadow_buffer_bias", text="Bias") + + row = layout.row() + row.itemR(lamp, "auto_clip_start", text="Autoclip Start") + sub = row.row() + sub.active = not lamp.auto_clip_start + sub.itemR(lamp, "shadow_buffer_clip_start", text="Clip Start") + + row = layout.row() + row.itemR(lamp, "auto_clip_end", text="Autoclip End") + sub = row.row() + sub.active = not lamp.auto_clip_end + sub.itemR(lamp, "shadow_buffer_clip_end", text=" Clip End") class DATA_PT_area(DataButtonsPanel): - bl_label = "Area Shape" - - def poll(self, context): - lamp = context.lamp - return (lamp and lamp.type == 'AREA') + bl_label = "Area Shape" - def draw(self, context): - layout = self.layout - - lamp = context.lamp + def poll(self, context): + lamp = context.lamp + return (lamp and lamp.type == 'AREA') - split = layout.split() - - col = split.column() - col.row().itemR(lamp, "shape", expand=True) - - sub = col.column(align=True) - if (lamp.shape == 'SQUARE'): - sub.itemR(lamp, "size") - elif (lamp.shape == 'RECTANGLE'): - sub.itemR(lamp, "size", text="Size X") - sub.itemR(lamp, "size_y", text="Size Y") + def draw(self, context): + layout = self.layout + + lamp = context.lamp + + split = layout.split() + + col = split.column() + col.row().itemR(lamp, "shape", expand=True) + + sub = col.column(align=True) + if (lamp.shape == 'SQUARE'): + sub.itemR(lamp, "size") + elif (lamp.shape == 'RECTANGLE'): + sub.itemR(lamp, "size", text="Size X") + sub.itemR(lamp, "size_y", text="Size Y") class DATA_PT_spot(DataButtonsPanel): - bl_label = "Spot Shape" - - def poll(self, context): - lamp = context.lamp - return (lamp and lamp.type == 'SPOT') + bl_label = "Spot Shape" - def draw(self, context): - layout = self.layout - - lamp = context.lamp + def poll(self, context): + lamp = context.lamp + return (lamp and lamp.type == 'SPOT') - split = layout.split() - - col = split.column() - sub = col.column() - sub.itemR(lamp, "spot_size", text="Size") - sub.itemR(lamp, "spot_blend", text="Blend", slider=True) - col.itemR(lamp, "square") - - col = split.column() - col.itemR(lamp, "halo") - sub = col.column(align=True) - sub.active = lamp.halo - sub.itemR(lamp, "halo_intensity", text="Intensity") - if lamp.shadow_method == 'BUFFER_SHADOW': - sub.itemR(lamp, "halo_step", text="Step") + def draw(self, context): + layout = self.layout + + lamp = context.lamp + + split = layout.split() + + col = split.column() + sub = col.column() + sub.itemR(lamp, "spot_size", text="Size") + sub.itemR(lamp, "spot_blend", text="Blend", slider=True) + col.itemR(lamp, "square") + + col = split.column() + col.itemR(lamp, "halo") + sub = col.column(align=True) + sub.active = lamp.halo + sub.itemR(lamp, "halo_intensity", text="Intensity") + if lamp.shadow_method == 'BUFFER_SHADOW': + sub.itemR(lamp, "halo_step", text="Step") class DATA_PT_falloff_curve(DataButtonsPanel): - bl_label = "Falloff Curve" - bl_default_closed = True - - def poll(self, context): - lamp = context.lamp + bl_label = "Falloff Curve" + bl_default_closed = True - return (lamp and lamp.type in ('POINT', 'SPOT') and lamp.falloff_type == 'CUSTOM_CURVE') + def poll(self, context): + lamp = context.lamp - def draw(self, context): - lamp = context.lamp + return (lamp and lamp.type in ('POINT', 'SPOT') and lamp.falloff_type == 'CUSTOM_CURVE') - self.layout.template_curve_mapping(lamp, "falloff_curve") + def draw(self, context): + lamp = context.lamp + + self.layout.template_curve_mapping(lamp, "falloff_curve") bpy.types.register(DATA_PT_context_lamp) bpy.types.register(DATA_PT_preview) diff --git a/release/scripts/ui/buttons_data_lattice.py b/release/scripts/ui/buttons_data_lattice.py index 505ea6e42e9..fa3451ce5e6 100644 --- a/release/scripts/ui/buttons_data_lattice.py +++ b/release/scripts/ui/buttons_data_lattice.py @@ -2,56 +2,56 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return context.lattice - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.lattice + class DATA_PT_context_lattice(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - lat = context.lattice - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif lat: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + lat = context.lattice + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif lat: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_lattice(DataButtonsPanel): - bl_label = "Lattice" + bl_label = "Lattice" - def draw(self, context): - layout = self.layout - - lat = context.lattice + def draw(self, context): + layout = self.layout - row = layout.row() - row.itemR(lat, "points_u") - row.itemR(lat, "interpolation_type_u", expand=True) - - row = layout.row() - row.itemR(lat, "points_v") - row.itemR(lat, "interpolation_type_v", expand=True) - - row = layout.row() - row.itemR(lat, "points_w") - row.itemR(lat, "interpolation_type_w", expand=True) - - row = layout.row() - row.itemO("lattice.make_regular") - row.itemR(lat, "outside") + lat = context.lattice + + row = layout.row() + row.itemR(lat, "points_u") + row.itemR(lat, "interpolation_type_u", expand=True) + + row = layout.row() + row.itemR(lat, "points_v") + row.itemR(lat, "interpolation_type_v", expand=True) + + row = layout.row() + row.itemR(lat, "points_w") + row.itemR(lat, "interpolation_type_w", expand=True) + + row = layout.row() + row.itemO("lattice.make_regular") + row.itemR(lat, "outside") bpy.types.register(DATA_PT_context_lattice) bpy.types.register(DATA_PT_lattice) diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py index 2ed52206d7e..c9141a59bf4 100644 --- a/release/scripts/ui/buttons_data_mesh.py +++ b/release/scripts/ui/buttons_data_mesh.py @@ -2,236 +2,236 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return context.mesh + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.mesh class DATA_PT_context_mesh(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - mesh = context.mesh - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif mesh: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + mesh = context.mesh + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif mesh: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_normals(DataButtonsPanel): - bl_label = "Normals" + bl_label = "Normals" - def draw(self, context): - layout = self.layout - - mesh = context.mesh - - split = layout.split() - - col = split.column() - col.itemR(mesh, "autosmooth") - sub = col.column() - sub.active = mesh.autosmooth - sub.itemR(mesh, "autosmooth_angle", text="Angle") - - col = split.column() - col.itemR(mesh, "vertex_normal_flip") - col.itemR(mesh, "double_sided") + def draw(self, context): + layout = self.layout + + mesh = context.mesh + + split = layout.split() + + col = split.column() + col.itemR(mesh, "autosmooth") + sub = col.column() + sub.active = mesh.autosmooth + sub.itemR(mesh, "autosmooth_angle", text="Angle") + + col = split.column() + col.itemR(mesh, "vertex_normal_flip") + col.itemR(mesh, "double_sided") class DATA_PT_settings(DataButtonsPanel): - bl_label = "Settings" + bl_label = "Settings" - def draw(self, context): - layout = self.layout - - mesh = context.mesh - - split = layout.split() - - col = split.column() - col.itemR(mesh, "texture_mesh") + def draw(self, context): + layout = self.layout + + mesh = context.mesh + + split = layout.split() + + col = split.column() + col.itemR(mesh, "texture_mesh") class DATA_PT_vertex_groups(DataButtonsPanel): - bl_label = "Vertex Groups" - - def poll(self, context): - return (context.object and context.object.type in ('MESH', 'LATTICE')) + bl_label = "Vertex Groups" - def draw(self, context): - layout = self.layout - - ob = context.object - group = ob.active_vertex_group + def poll(self, context): + return (context.object and context.object.type in ('MESH', 'LATTICE')) - rows = 2 - if group: - rows= 5 + def draw(self, context): + layout = self.layout - row = layout.row() - row.template_list(ob, "vertex_groups", ob, "active_vertex_group_index", rows=rows) + ob = context.object + group = ob.active_vertex_group - col = row.column(align=True) - col.itemO("object.vertex_group_add", icon='ICON_ZOOMIN', text="") - col.itemO("object.vertex_group_remove", icon='ICON_ZOOMOUT', text="") + rows = 2 + if group: + rows= 5 - col.itemO("object.vertex_group_copy", icon='ICON_COPY_ID', text="") - if ob.data.users > 1: - col.itemO("object.vertex_group_copy_to_linked", icon='ICON_LINK_AREA', text="") + row = layout.row() + row.template_list(ob, "vertex_groups", ob, "active_vertex_group_index", rows=rows) - if group: - row = layout.row() - row.itemR(group, "name") + col = row.column(align=True) + col.itemO("object.vertex_group_add", icon='ICON_ZOOMIN', text="") + col.itemO("object.vertex_group_remove", icon='ICON_ZOOMOUT', text="") - if ob.mode == 'EDIT' and len(ob.vertex_groups) > 0: - row = layout.row() - - sub = row.row(align=True) - sub.itemO("object.vertex_group_assign", text="Assign") - sub.itemO("object.vertex_group_remove_from", text="Remove") - - sub = row.row(align=True) - sub.itemO("object.vertex_group_select", text="Select") - sub.itemO("object.vertex_group_deselect", text="Deselect") + col.itemO("object.vertex_group_copy", icon='ICON_COPY_ID', text="") + if ob.data.users > 1: + col.itemO("object.vertex_group_copy_to_linked", icon='ICON_LINK_AREA', text="") - layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight") + if group: + row = layout.row() + row.itemR(group, "name") + + if ob.mode == 'EDIT' and len(ob.vertex_groups) > 0: + row = layout.row() + + sub = row.row(align=True) + sub.itemO("object.vertex_group_assign", text="Assign") + sub.itemO("object.vertex_group_remove_from", text="Remove") + + sub = row.row(align=True) + sub.itemO("object.vertex_group_select", text="Select") + sub.itemO("object.vertex_group_deselect", text="Deselect") + + layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight") class DATA_PT_shape_keys(DataButtonsPanel): - bl_label = "Shape Keys" - - def poll(self, context): - return (context.object and context.object.type in ('MESH', 'LATTICE', 'CURVE', 'SURFACE')) + bl_label = "Shape Keys" - def draw(self, context): - layout = self.layout - - ob = context.object - key = ob.data.shape_keys - kb = ob.active_shape_key + def poll(self, context): + return (context.object and context.object.type in ('MESH', 'LATTICE', 'CURVE', 'SURFACE')) - enable_edit = ob.mode != 'EDIT' - enable_edit_value = False + def draw(self, context): + layout = self.layout - if ob.shape_key_lock == False: - if enable_edit or (ob.type == 'MESH' and ob.shape_key_edit_mode): - enable_edit_value = True + ob = context.object + key = ob.data.shape_keys + kb = ob.active_shape_key - row = layout.row() + enable_edit = ob.mode != 'EDIT' + enable_edit_value = False - rows = 2 - if kb: - rows= 5 - row.template_list(key, "keys", ob, "active_shape_key_index", rows=rows) + if ob.shape_key_lock == False: + if enable_edit or (ob.type == 'MESH' and ob.shape_key_edit_mode): + enable_edit_value = True - col = row.column() + row = layout.row() - subcol = col.column(align=True) - subcol.itemO("object.shape_key_add", icon='ICON_ZOOMIN', text="") - subcol.itemO("object.shape_key_remove", icon='ICON_ZOOMOUT', text="") + rows = 2 + if kb: + rows= 5 + row.template_list(key, "keys", ob, "active_shape_key_index", rows=rows) - if kb: - col.itemS() + col = row.column() - subcol = col.column(align=True) - subcol.item_enumO("object.shape_key_move", "type", 'UP', icon='ICON_TRIA_UP', text="") - subcol.item_enumO("object.shape_key_move", "type", 'DOWN', icon='ICON_TRIA_DOWN', text="") + subcol = col.column(align=True) + subcol.itemO("object.shape_key_add", icon='ICON_ZOOMIN', text="") + subcol.itemO("object.shape_key_remove", icon='ICON_ZOOMOUT', text="") - split = layout.split(percentage=0.4) - sub = split.row() - sub.enabled = enable_edit - sub.itemR(key, "relative") + if kb: + col.itemS() - sub = split.row() - sub.alignment = 'RIGHT' + subcol = col.column(align=True) + subcol.item_enumO("object.shape_key_move", "type", 'UP', icon='ICON_TRIA_UP', text="") + subcol.item_enumO("object.shape_key_move", "type", 'DOWN', icon='ICON_TRIA_DOWN', text="") - subrow = sub.row(align=True) - subrow.active= enable_edit_value - subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") - subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") - subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") + split = layout.split(percentage=0.4) + sub = split.row() + sub.enabled = enable_edit + sub.itemR(key, "relative") - sub.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") + sub = split.row() + sub.alignment = 'RIGHT' - sub.itemR(ob, "shape_key_edit_mode", text="") + subrow = sub.row(align=True) + subrow.active= enable_edit_value + subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") + subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") - row = layout.row() - row.itemR(kb, "name") + sub.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") - if key.relative: - if ob.active_shape_key_index != 0: - row = layout.row() - row.active = enable_edit_value - row.itemR(kb, "value") - - split = layout.split() - sub = split.column(align=True) - sub.active = enable_edit_value - sub.itemL(text="Range:") - sub.itemR(kb, "slider_min", text="Min") - sub.itemR(kb, "slider_max", text="Max") - - sub = split.column(align=True) - sub.active = enable_edit_value - sub.itemL(text="Blend:") - sub.item_pointerR(kb, "vertex_group", ob, "vertex_groups", text="") - sub.item_pointerR(kb, "relative_key", key, "keys", text="") - - else: - row = layout.row() - row.active = enable_edit_value - row.itemR(key, "slurph") + sub.itemR(ob, "shape_key_edit_mode", text="") + + row = layout.row() + row.itemR(kb, "name") + + if key.relative: + if ob.active_shape_key_index != 0: + row = layout.row() + row.active = enable_edit_value + row.itemR(kb, "value") + + split = layout.split() + sub = split.column(align=True) + sub.active = enable_edit_value + sub.itemL(text="Range:") + sub.itemR(kb, "slider_min", text="Min") + sub.itemR(kb, "slider_max", text="Max") + + sub = split.column(align=True) + sub.active = enable_edit_value + sub.itemL(text="Blend:") + sub.item_pointerR(kb, "vertex_group", ob, "vertex_groups", text="") + sub.item_pointerR(kb, "relative_key", key, "keys", text="") + + else: + row = layout.row() + row.active = enable_edit_value + row.itemR(key, "slurph") class DATA_PT_uv_texture(DataButtonsPanel): - bl_label = "UV Texture" - - def draw(self, context): - layout = self.layout - - me = context.mesh + bl_label = "UV Texture" - row = layout.row() - col = row.column() - - col.template_list(me, "uv_textures", me, "active_uv_texture_index", rows=2) + def draw(self, context): + layout = self.layout - col = row.column(align=True) - col.itemO("mesh.uv_texture_add", icon='ICON_ZOOMIN', text="") - col.itemO("mesh.uv_texture_remove", icon='ICON_ZOOMOUT', text="") + me = context.mesh - lay = me.active_uv_texture - if lay: - layout.itemR(lay, "name") + row = layout.row() + col = row.column() + + col.template_list(me, "uv_textures", me, "active_uv_texture_index", rows=2) + + col = row.column(align=True) + col.itemO("mesh.uv_texture_add", icon='ICON_ZOOMIN', text="") + col.itemO("mesh.uv_texture_remove", icon='ICON_ZOOMOUT', text="") + + lay = me.active_uv_texture + if lay: + layout.itemR(lay, "name") class DATA_PT_vertex_colors(DataButtonsPanel): - bl_label = "Vertex Colors" - - def draw(self, context): - layout = self.layout - - me = context.mesh + bl_label = "Vertex Colors" - row = layout.row() - col = row.column() + def draw(self, context): + layout = self.layout - col.template_list(me, "vertex_colors", me, "active_vertex_color_index", rows=2) + me = context.mesh - col = row.column(align=True) - col.itemO("mesh.vertex_color_add", icon='ICON_ZOOMIN', text="") - col.itemO("mesh.vertex_color_remove", icon='ICON_ZOOMOUT', text="") + row = layout.row() + col = row.column() - lay = me.active_vertex_color - if lay: - layout.itemR(lay, "name") + col.template_list(me, "vertex_colors", me, "active_vertex_color_index", rows=2) + + col = row.column(align=True) + col.itemO("mesh.vertex_color_add", icon='ICON_ZOOMIN', text="") + col.itemO("mesh.vertex_color_remove", icon='ICON_ZOOMOUT', text="") + + lay = me.active_vertex_color + if lay: + layout.itemR(lay, "name") bpy.types.register(DATA_PT_context_mesh) bpy.types.register(DATA_PT_normals) diff --git a/release/scripts/ui/buttons_data_metaball.py b/release/scripts/ui/buttons_data_metaball.py index ebb5efb40ca..8176041e1cc 100644 --- a/release/scripts/ui/buttons_data_metaball.py +++ b/release/scripts/ui/buttons_data_metaball.py @@ -1,106 +1,106 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return context.meta_ball + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return context.meta_ball class DATA_PT_context_metaball(DataButtonsPanel): - bl_label = "" - bl_show_header = False - - def draw(self, context): - layout = self.layout - - ob = context.object - mball = context.meta_ball - space = context.space_data + bl_label = "" + bl_show_header = False - split = layout.split(percentage=0.65) + def draw(self, context): + layout = self.layout - if ob: - split.template_ID(ob, "data") - split.itemS() - elif mball: - split.template_ID(space, "pin_id") - split.itemS() + ob = context.object + mball = context.meta_ball + space = context.space_data + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif mball: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_metaball(DataButtonsPanel): - bl_label = "Metaball" + bl_label = "Metaball" - def draw(self, context): - layout = self.layout - - mball = context.meta_ball - - split = layout.split() - - col = split.column() - col.itemL(text="Resolution:") - sub = col.column(align=True) - sub.itemR(mball, "wire_size", text="View") - sub.itemR(mball, "render_size", text="Render") - - col = split.column() - col.itemL(text="Settings:") - col.itemR(mball, "threshold", text="Threshold") + def draw(self, context): + layout = self.layout - layout.itemL(text="Update:") - layout.itemR(mball, "flag", expand=True) + mball = context.meta_ball + + split = layout.split() + + col = split.column() + col.itemL(text="Resolution:") + sub = col.column(align=True) + sub.itemR(mball, "wire_size", text="View") + sub.itemR(mball, "render_size", text="Render") + + col = split.column() + col.itemL(text="Settings:") + col.itemR(mball, "threshold", text="Threshold") + + layout.itemL(text="Update:") + layout.itemR(mball, "flag", expand=True) class DATA_PT_metaball_element(DataButtonsPanel): - bl_label = "Active Element" - - def poll(self, context): - return (context.meta_ball and context.meta_ball.active_element) + bl_label = "Active Element" - def draw(self, context): - layout = self.layout - - metaelem = context.meta_ball.active_element - - split = layout.split(percentage=0.3) - split.itemL(text="Type:") - split.itemR(metaelem, "type", text="") - - split = layout.split() - - col = split.column() - col.itemL(text="Settings:") - col.itemR(metaelem, "stiffness", text="Stiffness") - col.itemR(metaelem, "negative", text="Negative") - col.itemR(metaelem, "hide", text="Hide") - - if metaelem.type == 'BALL': - col = split.column(align=True) - - elif metaelem.type == 'CUBE': - col = split.column(align=True) - col.itemL(text="Size:") - col.itemR(metaelem, "size_x", text="X") - col.itemR(metaelem, "size_y", text="Y") - col.itemR(metaelem, "size_z", text="Z") - - elif metaelem.type == 'TUBE': - col = split.column(align=True) - col.itemL(text="Size:") - col.itemR(metaelem, "size_x", text="X") - - elif metaelem.type == 'PLANE': - col = split.column(align=True) - col.itemL(text="Size:") - col.itemR(metaelem, "size_x", text="X") - col.itemR(metaelem, "size_y", text="Y") - - elif metaelem.type == 'ELLIPSOID': - col = split.column(align=True) - col.itemL(text="Size:") - col.itemR(metaelem, "size_x", text="X") - col.itemR(metaelem, "size_y", text="Y") - col.itemR(metaelem, "size_z", text="Z") + def poll(self, context): + return (context.meta_ball and context.meta_ball.active_element) + + def draw(self, context): + layout = self.layout + + metaelem = context.meta_ball.active_element + + split = layout.split(percentage=0.3) + split.itemL(text="Type:") + split.itemR(metaelem, "type", text="") + + split = layout.split() + + col = split.column() + col.itemL(text="Settings:") + col.itemR(metaelem, "stiffness", text="Stiffness") + col.itemR(metaelem, "negative", text="Negative") + col.itemR(metaelem, "hide", text="Hide") + + if metaelem.type == 'BALL': + col = split.column(align=True) + + elif metaelem.type == 'CUBE': + col = split.column(align=True) + col.itemL(text="Size:") + col.itemR(metaelem, "size_x", text="X") + col.itemR(metaelem, "size_y", text="Y") + col.itemR(metaelem, "size_z", text="Z") + + elif metaelem.type == 'TUBE': + col = split.column(align=True) + col.itemL(text="Size:") + col.itemR(metaelem, "size_x", text="X") + + elif metaelem.type == 'PLANE': + col = split.column(align=True) + col.itemL(text="Size:") + col.itemR(metaelem, "size_x", text="X") + col.itemR(metaelem, "size_y", text="Y") + + elif metaelem.type == 'ELLIPSOID': + col = split.column(align=True) + col.itemL(text="Size:") + col.itemR(metaelem, "size_x", text="X") + col.itemR(metaelem, "size_y", text="Y") + col.itemR(metaelem, "size_z", text="Z") bpy.types.register(DATA_PT_context_metaball) bpy.types.register(DATA_PT_metaball) diff --git a/release/scripts/ui/buttons_data_modifier.py b/release/scripts/ui/buttons_data_modifier.py index 7a49e84e906..a256d20a314 100644 --- a/release/scripts/ui/buttons_data_modifier.py +++ b/release/scripts/ui/buttons_data_modifier.py @@ -2,448 +2,448 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "modifier" - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "modifier" + class DATA_PT_modifiers(DataButtonsPanel): - bl_label = "Modifiers" + bl_label = "Modifiers" - def draw(self, context): - layout = self.layout - - ob = context.object + def draw(self, context): + layout = self.layout - row = layout.row() - row.item_menu_enumO("object.modifier_add", "type") - row.itemL() + ob = context.object - for md in ob.modifiers: - box = layout.template_modifier(md) - if box: - # match enum type to our functions, avoids a lookup table. - getattr(self, md.type)(box, ob, md) - - # the mt.type enum is (ab)used for a lookup on function names - # ...to avoid lengthy if statements - # so each type must have a function here. + row = layout.row() + row.item_menu_enumO("object.modifier_add", "type") + row.itemL() - def ARMATURE(self, layout, ob, md): - layout.itemR(md, "object") - - split = layout.split(percentage=0.5) - split.itemL(text="Vertex Group:") - sub = split.split(percentage=0.7) - sub.item_pointerR(md, "vertex_group", ob, "vertex_groups", text="") - subsub = sub.row() - subsub.active = md.vertex_group - subsub.itemR(md, "invert") - - layout.itemS() - - split = layout.split() + for md in ob.modifiers: + box = layout.template_modifier(md) + if box: + # match enum type to our functions, avoids a lookup table. + getattr(self, md.type)(box, ob, md) - col = split.column() - col.itemL(text="Bind To:") - col.itemR(md, "use_vertex_groups", text="Vertex Groups") - col.itemR(md, "use_bone_envelopes", text="Bone Envelopes") - - col = split.column() - col.itemL(text="Deformation:") - col.itemR(md, "quaternion") - col.itemR(md, "multi_modifier") - - def ARRAY(self, layout, ob, md): - layout.itemR(md, "fit_type") - if md.fit_type == 'FIXED_COUNT': - layout.itemR(md, "count") - elif md.fit_type == 'FIT_LENGTH': - layout.itemR(md, "length") - elif md.fit_type == 'FIT_CURVE': - layout.itemR(md, "curve") + # the mt.type enum is (ab)used for a lookup on function names + # ...to avoid lengthy if statements + # so each type must have a function here. - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemR(md, "constant_offset") - sub = col.column() - sub.active = md.constant_offset - sub.itemR(md, "constant_offset_displacement", text="") + def ARMATURE(self, layout, ob, md): + layout.itemR(md, "object") - col.itemS() + split = layout.split(percentage=0.5) + split.itemL(text="Vertex Group:") + sub = split.split(percentage=0.7) + sub.item_pointerR(md, "vertex_group", ob, "vertex_groups", text="") + subsub = sub.row() + subsub.active = md.vertex_group + subsub.itemR(md, "invert") - col.itemR(md, "merge_adjacent_vertices", text="Merge") - sub = col.column() - sub.active = md.merge_adjacent_vertices - sub.itemR(md, "merge_end_vertices", text="First Last") - sub.itemR(md, "merge_distance", text="Distance") - - col = split.column() - col.itemR(md, "relative_offset") - sub = col.column() - sub.active = md.relative_offset - sub.itemR(md, "relative_offset_displacement", text="") + layout.itemS() - col.itemS() + split = layout.split() - col.itemR(md, "add_offset_object") - sub = col.column() - sub.active = md.add_offset_object - sub.itemR(md, "offset_object", text="") + col = split.column() + col.itemL(text="Bind To:") + col.itemR(md, "use_vertex_groups", text="Vertex Groups") + col.itemR(md, "use_bone_envelopes", text="Bone Envelopes") - layout.itemS() - - col = layout.column() - col.itemR(md, "start_cap") - col.itemR(md, "end_cap") - - def BEVEL(self, layout, ob, md): - row = layout.row() - row.itemR(md, "width") - row.itemR(md, "only_vertices") - - layout.itemL(text="Limit Method:") - layout.row().itemR(md, "limit_method", expand=True) - if md.limit_method == 'ANGLE': - layout.itemR(md, "angle") - elif md.limit_method == 'WEIGHT': - layout.row().itemR(md, "edge_weight_method", expand=True) - - def BOOLEAN(self, layout, ob, md): - layout.itemR(md, "operation") - layout.itemR(md, "object") - - def BUILD(self, layout, ob, md): - split = layout.split() - - col = split.column() - col.itemR(md, "start") - col.itemR(md, "length") + col = split.column() + col.itemL(text="Deformation:") + col.itemR(md, "quaternion") + col.itemR(md, "multi_modifier") - col = split.column() - col.itemR(md, "randomize") - sub = col.column() - sub.active = md.randomize - sub.itemR(md, "seed") + def ARRAY(self, layout, ob, md): + layout.itemR(md, "fit_type") + if md.fit_type == 'FIXED_COUNT': + layout.itemR(md, "count") + elif md.fit_type == 'FIT_LENGTH': + layout.itemR(md, "length") + elif md.fit_type == 'FIT_CURVE': + layout.itemR(md, "curve") - def CAST(self, layout, ob, md): - layout.itemR(md, "cast_type") - layout.itemR(md, "object") - if md.object: - layout.itemR(md, "use_transform") - - flow = layout.column_flow() - flow.itemR(md, "x") - flow.itemR(md, "y") - flow.itemR(md, "z") - flow.itemR(md, "factor") - flow.itemR(md, "radius") - flow.itemR(md, "size") + layout.itemS() - layout.itemR(md, "from_radius") - - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - - def CLOTH(self, layout, ob, md): - layout.itemL(text="See Cloth panel.") - - def COLLISION(self, layout, ob, md): - layout.itemL(text="See Collision panel.") - - def CURVE(self, layout, ob, md): - layout.itemR(md, "object") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "deform_axis") - - def DECIMATE(self, layout, ob, md): - layout.itemR(md, "ratio") - layout.itemR(md, "face_count") - - def DISPLACE(self, layout, ob, md): - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "texture") - layout.itemR(md, "midlevel") - layout.itemR(md, "strength") - layout.itemR(md, "direction") - layout.itemR(md, "texture_coordinates") - if md.texture_coordinates == 'OBJECT': - layout.itemR(md, "texture_coordinate_object", text="Object") - elif md.texture_coordinates == 'UV' and ob.type == 'MESH': - layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") - - def EDGE_SPLIT(self, layout, ob, md): - split = layout.split() - - col = split.column() - col.itemR(md, "use_edge_angle", text="Edge Angle") - sub = col.column() - sub.active = md.use_edge_angle - sub.itemR(md, "split_angle") - - col = split.column() - col.itemR(md, "use_sharp", text="Sharp Edges") - - def EXPLODE(self, layout, ob, md): - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "protect") + split = layout.split() - flow = layout.column_flow(2) - flow.itemR(md, "split_edges") - flow.itemR(md, "unborn") - flow.itemR(md, "alive") - flow.itemR(md, "dead") + col = split.column() + col.itemR(md, "constant_offset") + sub = col.column() + sub.active = md.constant_offset + sub.itemR(md, "constant_offset_displacement", text="") - layout.itemO("object.explode_refresh", text="Refresh"); - - def FLUID_SIMULATION(self, layout, ob, md): - layout.itemL(text="See Fluid panel.") - - def HOOK(self, layout, ob, md): - col = layout.column() - col.itemR(md, "object") - if md.object and md.object.type == 'ARMATURE': - layout.item_pointerR(md, "subtarget", md.object.data, "bones", text="Bone") - - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + col.itemS() - split = layout.split() - split.itemR(md, "falloff") - split.itemR(md, "force", slider=True) + col.itemR(md, "merge_adjacent_vertices", text="Merge") + sub = col.column() + sub.active = md.merge_adjacent_vertices + sub.itemR(md, "merge_end_vertices", text="First Last") + sub.itemR(md, "merge_distance", text="Distance") - layout.itemS() + col = split.column() + col.itemR(md, "relative_offset") + sub = col.column() + sub.active = md.relative_offset + sub.itemR(md, "relative_offset_displacement", text="") - row = layout.row() - row.itemO("object.hook_reset", text="Reset") - row.itemO("object.hook_recenter", text="Recenter") + col.itemS() - if ob.mode == 'EDIT': - row = layout.row() - row.itemO("object.hook_select", text="Select") - row.itemO("object.hook_assign", text="Assign") - - def LATTICE(self, layout, ob, md): - layout.itemR(md, "object") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - - def MASK(self, layout, ob, md): - layout.itemR(md, "mode") - if md.mode == 'ARMATURE': - layout.itemR(md, "armature") - elif md.mode == 'VERTEX_GROUP': - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "inverse") - - def MESH_DEFORM(self, layout, ob, md): - layout.itemR(md, "object") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "invert") + col.itemR(md, "add_offset_object") + sub = col.column() + sub.active = md.add_offset_object + sub.itemR(md, "offset_object", text="") - layout.itemS() - - if md.is_bound: - layout.itemO("object.meshdeform_bind", text="Unbind") - else: - layout.itemO("object.meshdeform_bind", text="Bind") - row = layout.row() - row.itemR(md, "precision") - row.itemR(md, "dynamic") - - def MIRROR(self, layout, ob, md): - layout.itemR(md, "merge_limit") - split = layout.split() - - col = split.column() - col.itemR(md, "x") - col.itemR(md, "y") - col.itemR(md, "z") - - col = split.column() - col.itemL(text="Textures:") - col.itemR(md, "mirror_u") - col.itemR(md, "mirror_v") - - col = split.column() - col.itemR(md, "clip", text="Do Clipping") - col.itemR(md, "mirror_vertex_groups", text="Vertex Group") - - layout.itemR(md, "mirror_object") - - def MULTIRES(self, layout, ob, md): - layout.itemR(md, "subdivision_type") - - row = layout.row() - row.itemO("object.multires_subdivide", text="Subdivide") - row.itemO("object.multires_higher_levels_delete", text="Delete Higher") + layout.itemS() - layout.itemR(md, "level") - - def PARTICLE_INSTANCE(self, layout, ob, md): - layout.itemR(md, "object") - layout.itemR(md, "particle_system_number") - - flow = layout.column_flow() - flow.itemR(md, "normal") - flow.itemR(md, "children") - flow.itemR(md, "size") - flow.itemR(md, "path") - if md.path: - flow.itemR(md, "keep_shape") - flow.itemR(md, "unborn") - flow.itemR(md, "alive") - flow.itemR(md, "dead") - flow.itemL(md, "") - if md.path: - flow.itemR(md, "axis", text="") - - if md.path: - row = layout.row() - row.itemR(md, "position", slider=True) - row.itemR(md, "random_position", text = "Random", slider=True) - - def PARTICLE_SYSTEM(self, layout, ob, md): - layout.itemL(text="See Particle panel.") - - def SHRINKWRAP(self, layout, ob, md): - layout.itemR(md, "target") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "offset") - layout.itemR(md, "subsurf_levels") - layout.itemR(md, "mode") - if md.mode == 'PROJECT': - layout.itemR(md, "subsurf_levels") - layout.itemR(md, "auxiliary_target") - - row = layout.row() - row.itemR(md, "x") - row.itemR(md, "y") - row.itemR(md, "z") - - flow = layout.column_flow() - flow.itemR(md, "negative") - flow.itemR(md, "positive") - flow.itemR(md, "cull_front_faces") - flow.itemR(md, "cull_back_faces") - elif md.mode == 'NEAREST_SURFACEPOINT': - layout.itemR(md, "keep_above_surface") - - def SIMPLE_DEFORM(self, layout, ob, md): - layout.itemR(md, "mode") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "origin") - layout.itemR(md, "relative") - layout.itemR(md, "factor") - layout.itemR(md, "limits") - if md.mode in ('TAPER', 'STRETCH'): - layout.itemR(md, "lock_x_axis") - layout.itemR(md, "lock_y_axis") - - def SMOKE(self, layout, ob, md): - layout.itemL(text="See Smoke panel.") - - def SMOOTH(self, layout, ob, md): - split = layout.split() - - col = split.column() - col.itemR(md, "x") - col.itemR(md, "y") - col.itemR(md, "z") - - col = split.column() - col.itemR(md, "factor") - col.itemR(md, "repeat") - - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - - def SOFT_BODY(self, layout, ob, md): - layout.itemL(text="See Soft Body panel.") - - def SUBSURF(self, layout, ob, md): - layout.row().itemR(md, "subdivision_type", expand=True) - - flow = layout.column_flow() - flow.itemR(md, "levels", text="Preview") - flow.itemR(md, "render_levels", text="Render") - flow.itemR(md, "optimal_draw", text="Optimal Display") - flow.itemR(md, "subsurf_uv") + col = layout.column() + col.itemR(md, "start_cap") + col.itemR(md, "end_cap") - def SURFACE(self, layout, ob, md): - layout.itemL(text="See Fields panel.") - - def UV_PROJECT(self, layout, ob, md): - if ob.type == 'MESH': - layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") - layout.itemR(md, "image") - layout.itemR(md, "override_image") + def BEVEL(self, layout, ob, md): + row = layout.row() + row.itemR(md, "width") + row.itemR(md, "only_vertices") - split = layout.split() + layout.itemL(text="Limit Method:") + layout.row().itemR(md, "limit_method", expand=True) + if md.limit_method == 'ANGLE': + layout.itemR(md, "angle") + elif md.limit_method == 'WEIGHT': + layout.row().itemR(md, "edge_weight_method", expand=True) - col = split.column() - col.itemL(text="Aspect Ratio:") + def BOOLEAN(self, layout, ob, md): + layout.itemR(md, "operation") + layout.itemR(md, "object") - sub = col.column(align=True) - sub.itemR(md, "horizontal_aspect_ratio", text="Horizontal") - sub.itemR(md, "vertical_aspect_ratio", text="Vertical") + def BUILD(self, layout, ob, md): + split = layout.split() - col = split.column() - col.itemL(text="Projectors:") + col = split.column() + col.itemR(md, "start") + col.itemR(md, "length") - sub = col.column(align=True) - sub.itemR(md, "num_projectors", text="Number") - for proj in md.projectors: - sub.itemR(proj, "object", text="") - - def WAVE(self, layout, ob, md): - split = layout.split() - - col = split.column() - col.itemL(text="Motion:") - col.itemR(md, "x") - col.itemR(md, "y") - col.itemR(md, "cyclic") - - col = split.column() - col.itemR(md, "normals") - sub = col.column() - sub.active = md.normals - sub.itemR(md, "x_normal", text="X") - sub.itemR(md, "y_normal", text="Y") - sub.itemR(md, "z_normal", text="Z") - - split = layout.split() + col = split.column() + col.itemR(md, "randomize") + sub = col.column() + sub.active = md.randomize + sub.itemR(md, "seed") - col = split.column() - col.itemL(text="Time:") - sub = col.column(align=True) - sub.itemR(md, "time_offset", text="Offset") - sub.itemR(md, "lifetime", text="Life") - col.itemR(md, "damping_time", text="Damping") - - col = split.column() - col.itemL(text="Position:") - sub = col.column(align=True) - sub.itemR(md, "start_position_x", text="X") - sub.itemR(md, "start_position_y", text="Y") - col.itemR(md, "falloff_radius", text="Falloff") - - layout.itemS() - - layout.itemR(md, "start_position_object") - layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") - layout.itemR(md, "texture") - layout.itemR(md, "texture_coordinates") - if md.texture_coordinates == 'MAP_UV' and ob.type == 'MESH': - layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") - elif md.texture_coordinates == 'OBJECT': - layout.itemR(md, "texture_coordinates_object") - - layout.itemS() - - flow = layout.column_flow() - flow.itemR(md, "speed", slider=True) - flow.itemR(md, "height", slider=True) - flow.itemR(md, "width", slider=True) - flow.itemR(md, "narrowness", slider=True) + def CAST(self, layout, ob, md): + layout.itemR(md, "cast_type") + layout.itemR(md, "object") + if md.object: + layout.itemR(md, "use_transform") + + flow = layout.column_flow() + flow.itemR(md, "x") + flow.itemR(md, "y") + flow.itemR(md, "z") + flow.itemR(md, "factor") + flow.itemR(md, "radius") + flow.itemR(md, "size") + + layout.itemR(md, "from_radius") + + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + + def CLOTH(self, layout, ob, md): + layout.itemL(text="See Cloth panel.") + + def COLLISION(self, layout, ob, md): + layout.itemL(text="See Collision panel.") + + def CURVE(self, layout, ob, md): + layout.itemR(md, "object") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "deform_axis") + + def DECIMATE(self, layout, ob, md): + layout.itemR(md, "ratio") + layout.itemR(md, "face_count") + + def DISPLACE(self, layout, ob, md): + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "texture") + layout.itemR(md, "midlevel") + layout.itemR(md, "strength") + layout.itemR(md, "direction") + layout.itemR(md, "texture_coordinates") + if md.texture_coordinates == 'OBJECT': + layout.itemR(md, "texture_coordinate_object", text="Object") + elif md.texture_coordinates == 'UV' and ob.type == 'MESH': + layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") + + def EDGE_SPLIT(self, layout, ob, md): + split = layout.split() + + col = split.column() + col.itemR(md, "use_edge_angle", text="Edge Angle") + sub = col.column() + sub.active = md.use_edge_angle + sub.itemR(md, "split_angle") + + col = split.column() + col.itemR(md, "use_sharp", text="Sharp Edges") + + def EXPLODE(self, layout, ob, md): + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "protect") + + flow = layout.column_flow(2) + flow.itemR(md, "split_edges") + flow.itemR(md, "unborn") + flow.itemR(md, "alive") + flow.itemR(md, "dead") + + layout.itemO("object.explode_refresh", text="Refresh"); + + def FLUID_SIMULATION(self, layout, ob, md): + layout.itemL(text="See Fluid panel.") + + def HOOK(self, layout, ob, md): + col = layout.column() + col.itemR(md, "object") + if md.object and md.object.type == 'ARMATURE': + layout.item_pointerR(md, "subtarget", md.object.data, "bones", text="Bone") + + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + + split = layout.split() + split.itemR(md, "falloff") + split.itemR(md, "force", slider=True) + + layout.itemS() + + row = layout.row() + row.itemO("object.hook_reset", text="Reset") + row.itemO("object.hook_recenter", text="Recenter") + + if ob.mode == 'EDIT': + row = layout.row() + row.itemO("object.hook_select", text="Select") + row.itemO("object.hook_assign", text="Assign") + + def LATTICE(self, layout, ob, md): + layout.itemR(md, "object") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + + def MASK(self, layout, ob, md): + layout.itemR(md, "mode") + if md.mode == 'ARMATURE': + layout.itemR(md, "armature") + elif md.mode == 'VERTEX_GROUP': + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "inverse") + + def MESH_DEFORM(self, layout, ob, md): + layout.itemR(md, "object") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "invert") + + layout.itemS() + + if md.is_bound: + layout.itemO("object.meshdeform_bind", text="Unbind") + else: + layout.itemO("object.meshdeform_bind", text="Bind") + row = layout.row() + row.itemR(md, "precision") + row.itemR(md, "dynamic") + + def MIRROR(self, layout, ob, md): + layout.itemR(md, "merge_limit") + split = layout.split() + + col = split.column() + col.itemR(md, "x") + col.itemR(md, "y") + col.itemR(md, "z") + + col = split.column() + col.itemL(text="Textures:") + col.itemR(md, "mirror_u") + col.itemR(md, "mirror_v") + + col = split.column() + col.itemR(md, "clip", text="Do Clipping") + col.itemR(md, "mirror_vertex_groups", text="Vertex Group") + + layout.itemR(md, "mirror_object") + + def MULTIRES(self, layout, ob, md): + layout.itemR(md, "subdivision_type") + + row = layout.row() + row.itemO("object.multires_subdivide", text="Subdivide") + row.itemO("object.multires_higher_levels_delete", text="Delete Higher") + + layout.itemR(md, "level") + + def PARTICLE_INSTANCE(self, layout, ob, md): + layout.itemR(md, "object") + layout.itemR(md, "particle_system_number") + + flow = layout.column_flow() + flow.itemR(md, "normal") + flow.itemR(md, "children") + flow.itemR(md, "size") + flow.itemR(md, "path") + if md.path: + flow.itemR(md, "keep_shape") + flow.itemR(md, "unborn") + flow.itemR(md, "alive") + flow.itemR(md, "dead") + flow.itemL(md, "") + if md.path: + flow.itemR(md, "axis", text="") + + if md.path: + row = layout.row() + row.itemR(md, "position", slider=True) + row.itemR(md, "random_position", text = "Random", slider=True) + + def PARTICLE_SYSTEM(self, layout, ob, md): + layout.itemL(text="See Particle panel.") + + def SHRINKWRAP(self, layout, ob, md): + layout.itemR(md, "target") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "offset") + layout.itemR(md, "subsurf_levels") + layout.itemR(md, "mode") + if md.mode == 'PROJECT': + layout.itemR(md, "subsurf_levels") + layout.itemR(md, "auxiliary_target") + + row = layout.row() + row.itemR(md, "x") + row.itemR(md, "y") + row.itemR(md, "z") + + flow = layout.column_flow() + flow.itemR(md, "negative") + flow.itemR(md, "positive") + flow.itemR(md, "cull_front_faces") + flow.itemR(md, "cull_back_faces") + elif md.mode == 'NEAREST_SURFACEPOINT': + layout.itemR(md, "keep_above_surface") + + def SIMPLE_DEFORM(self, layout, ob, md): + layout.itemR(md, "mode") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "origin") + layout.itemR(md, "relative") + layout.itemR(md, "factor") + layout.itemR(md, "limits") + if md.mode in ('TAPER', 'STRETCH'): + layout.itemR(md, "lock_x_axis") + layout.itemR(md, "lock_y_axis") + + def SMOKE(self, layout, ob, md): + layout.itemL(text="See Smoke panel.") + + def SMOOTH(self, layout, ob, md): + split = layout.split() + + col = split.column() + col.itemR(md, "x") + col.itemR(md, "y") + col.itemR(md, "z") + + col = split.column() + col.itemR(md, "factor") + col.itemR(md, "repeat") + + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + + def SOFT_BODY(self, layout, ob, md): + layout.itemL(text="See Soft Body panel.") + + def SUBSURF(self, layout, ob, md): + layout.row().itemR(md, "subdivision_type", expand=True) + + flow = layout.column_flow() + flow.itemR(md, "levels", text="Preview") + flow.itemR(md, "render_levels", text="Render") + flow.itemR(md, "optimal_draw", text="Optimal Display") + flow.itemR(md, "subsurf_uv") + + def SURFACE(self, layout, ob, md): + layout.itemL(text="See Fields panel.") + + def UV_PROJECT(self, layout, ob, md): + if ob.type == 'MESH': + layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") + layout.itemR(md, "image") + layout.itemR(md, "override_image") + + split = layout.split() + + col = split.column() + col.itemL(text="Aspect Ratio:") + + sub = col.column(align=True) + sub.itemR(md, "horizontal_aspect_ratio", text="Horizontal") + sub.itemR(md, "vertical_aspect_ratio", text="Vertical") + + col = split.column() + col.itemL(text="Projectors:") + + sub = col.column(align=True) + sub.itemR(md, "num_projectors", text="Number") + for proj in md.projectors: + sub.itemR(proj, "object", text="") + + def WAVE(self, layout, ob, md): + split = layout.split() + + col = split.column() + col.itemL(text="Motion:") + col.itemR(md, "x") + col.itemR(md, "y") + col.itemR(md, "cyclic") + + col = split.column() + col.itemR(md, "normals") + sub = col.column() + sub.active = md.normals + sub.itemR(md, "x_normal", text="X") + sub.itemR(md, "y_normal", text="Y") + sub.itemR(md, "z_normal", text="Z") + + split = layout.split() + + col = split.column() + col.itemL(text="Time:") + sub = col.column(align=True) + sub.itemR(md, "time_offset", text="Offset") + sub.itemR(md, "lifetime", text="Life") + col.itemR(md, "damping_time", text="Damping") + + col = split.column() + col.itemL(text="Position:") + sub = col.column(align=True) + sub.itemR(md, "start_position_x", text="X") + sub.itemR(md, "start_position_y", text="Y") + col.itemR(md, "falloff_radius", text="Falloff") + + layout.itemS() + + layout.itemR(md, "start_position_object") + layout.item_pointerR(md, "vertex_group", ob, "vertex_groups") + layout.itemR(md, "texture") + layout.itemR(md, "texture_coordinates") + if md.texture_coordinates == 'MAP_UV' and ob.type == 'MESH': + layout.item_pointerR(md, "uv_layer", ob.data, "uv_textures") + elif md.texture_coordinates == 'OBJECT': + layout.itemR(md, "texture_coordinates_object") + + layout.itemS() + + flow = layout.column_flow() + flow.itemR(md, "speed", slider=True) + flow.itemR(md, "height", slider=True) + flow.itemR(md, "width", slider=True) + flow.itemR(md, "narrowness", slider=True) bpy.types.register(DATA_PT_modifiers) diff --git a/release/scripts/ui/buttons_data_text.py b/release/scripts/ui/buttons_data_text.py index 49847863d7c..873da4ad17d 100644 --- a/release/scripts/ui/buttons_data_text.py +++ b/release/scripts/ui/buttons_data_text.py @@ -2,178 +2,178 @@ import bpy class DataButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "data" - - def poll(self, context): - return (context.object and context.object.type == 'TEXT' and context.curve) + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "data" + + def poll(self, context): + return (context.object and context.object.type == 'TEXT' and context.curve) class DATA_PT_context_text(DataButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def draw(self, context): - layout = self.layout - - ob = context.object - curve = context.curve - space = context.space_data + def draw(self, context): + layout = self.layout - split = layout.split(percentage=0.65) + ob = context.object + curve = context.curve + space = context.space_data - if ob: - split.template_ID(ob, "data") - split.itemS() - elif curve: - split.template_ID(space, "pin_id") - split.itemS() + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "data") + split.itemS() + elif curve: + split.template_ID(space, "pin_id") + split.itemS() class DATA_PT_shape_text(DataButtonsPanel): - bl_label = "Shape Text" + bl_label = "Shape Text" - def draw(self, context): - layout = self.layout - - ob = context.object - curve = context.curve - space = context.space_data - - split = layout.split() - - col = split.column() - col.itemL(text="Caps:") - row = col.row() - row .itemR(curve, "front") - row .itemR(curve, "back") - # col = split.column() - col.itemL(text="Textures:") - col.itemR(curve, "uv_orco") - col.itemR(curve, "auto_texspace") - - col = split.column() - col.itemL(text="Resolution:") - sub = col.column(align=True) - sub.itemR(curve, "resolution_u", text="Preview") - sub.itemR(curve, "render_resolution_u", text="Render") - - # resolution_v is not used for text - - sub = col.column(align=True) - col.itemL(text="Display:") - col.itemR(curve, "fast", text="Fast Editing") + def draw(self, context): + layout = self.layout + + ob = context.object + curve = context.curve + space = context.space_data + + split = layout.split() + + col = split.column() + col.itemL(text="Caps:") + row = col.row() + row .itemR(curve, "front") + row .itemR(curve, "back") + # col = split.column() + col.itemL(text="Textures:") + col.itemR(curve, "uv_orco") + col.itemR(curve, "auto_texspace") + + col = split.column() + col.itemL(text="Resolution:") + sub = col.column(align=True) + sub.itemR(curve, "resolution_u", text="Preview") + sub.itemR(curve, "render_resolution_u", text="Render") + + # resolution_v is not used for text + + sub = col.column(align=True) + col.itemL(text="Display:") + col.itemR(curve, "fast", text="Fast Editing") class DATA_PT_geometry_text(DataButtonsPanel): - bl_label = "Geometry" + bl_label = "Geometry" - def draw(self, context): - layout = self.layout - - curve = context.curve + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemL(text="Modification:") - col.itemR(curve, "width") - col.itemR(curve, "extrude") - col.itemL(text="Taper Object:") - col.itemR(curve, "taper_object", text="") - - col = split.column() - col.itemL(text="Bevel:") - col.itemR(curve, "bevel_depth", text="Depth") - col.itemR(curve, "bevel_resolution", text="Resolution") - col.itemL(text="Bevel Object:") - col.itemR(curve, "bevel_object", text="") + curve = context.curve + + split = layout.split() + + col = split.column() + col.itemL(text="Modification:") + col.itemR(curve, "width") + col.itemR(curve, "extrude") + col.itemL(text="Taper Object:") + col.itemR(curve, "taper_object", text="") + + col = split.column() + col.itemL(text="Bevel:") + col.itemR(curve, "bevel_depth", text="Depth") + col.itemR(curve, "bevel_resolution", text="Resolution") + col.itemL(text="Bevel Object:") + col.itemR(curve, "bevel_object", text="") class DATA_PT_font(DataButtonsPanel): - bl_label = "Font" + bl_label = "Font" - def draw(self, context): - layout = self.layout - - text = context.curve - char = context.curve.edit_format + def draw(self, context): + layout = self.layout - layout.itemR(text, "font") - - row = layout.row() - row.itemR(text, "text_size", text="Size") - row.itemR(text, "shear") - - split = layout.split() - - col = split.column() - col.itemL(text="Object Font:") - col.itemR(text, "family", text="") + text = context.curve + char = context.curve.edit_format - col = split.column() - col.itemL(text="Text on Curve:") - col.itemR(text, "text_on_curve", text="") - - split = layout.split() - - col = split.column() - col.itemL(text="Character:") - col.itemR(char, "bold") - col.itemR(char, "italic") - col.itemR(char, "underline") + layout.itemR(text, "font") + + row = layout.row() + row.itemR(text, "text_size", text="Size") + row.itemR(text, "shear") + + split = layout.split() + + col = split.column() + col.itemL(text="Object Font:") + col.itemR(text, "family", text="") + + col = split.column() + col.itemL(text="Text on Curve:") + col.itemR(text, "text_on_curve", text="") + + split = layout.split() + + col = split.column() + col.itemL(text="Character:") + col.itemR(char, "bold") + col.itemR(char, "italic") + col.itemR(char, "underline") # col.itemR(char, "style") # col.itemR(char, "wrap") - col = split.column(align=True) - col.itemL(text="Underline:") - col.itemR(text, "ul_position", text="Position") - col.itemR(text, "ul_height", text="Thickness") + col = split.column(align=True) + col.itemL(text="Underline:") + col.itemR(text, "ul_position", text="Position") + col.itemR(text, "ul_height", text="Thickness") class DATA_PT_paragraph(DataButtonsPanel): - bl_label = "Paragraph" + bl_label = "Paragraph" - def draw(self, context): - layout = self.layout - - text = context.curve + def draw(self, context): + layout = self.layout - layout.itemL(text="Align:") - layout.itemR(text, "spacemode", expand=True) + text = context.curve - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Spacing:") - col.itemR(text, "spacing", text="Character") - col.itemR(text, "word_spacing", text="Word") - col.itemR(text, "line_dist", text="Line") + layout.itemL(text="Align:") + layout.itemR(text, "spacemode", expand=True) - col = split.column(align=True) - col.itemL(text="Offset:") - col.itemR(text, "offset_x", text="X") - col.itemR(text, "offset_y", text="Y") + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Spacing:") + col.itemR(text, "spacing", text="Character") + col.itemR(text, "word_spacing", text="Word") + col.itemR(text, "line_dist", text="Line") + + col = split.column(align=True) + col.itemL(text="Offset:") + col.itemR(text, "offset_x", text="X") + col.itemR(text, "offset_y", text="Y") class DATA_PT_textboxes(DataButtonsPanel): - bl_label = "Text Boxes" + bl_label = "Text Boxes" - def draw(self, context): - layout = self.layout - - text = context.curve - - for box in text.textboxes: - split = layout.box().split() - - col = split.column(align=True) - col.itemL(text="Dimensions:") - col.itemR(box, "width", text="Width") - col.itemR(box, "height", text="Height") - - col = split.column(align=True) - col.itemL(text="Offset:") - col.itemR(box, "x", text="X") - col.itemR(box, "y", text="Y") + def draw(self, context): + layout = self.layout + + text = context.curve + + for box in text.textboxes: + split = layout.box().split() + + col = split.column(align=True) + col.itemL(text="Dimensions:") + col.itemR(box, "width", text="Width") + col.itemR(box, "height", text="Height") + + col = split.column(align=True) + col.itemL(text="Offset:") + col.itemR(box, "x", text="X") + col.itemR(box, "y", text="Y") bpy.types.register(DATA_PT_context_text) -bpy.types.register(DATA_PT_shape_text) +bpy.types.register(DATA_PT_shape_text) bpy.types.register(DATA_PT_geometry_text) bpy.types.register(DATA_PT_font) bpy.types.register(DATA_PT_paragraph) diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/buttons_game.py index 77581884515..af67512dd3e 100644 --- a/release/scripts/ui/buttons_game.py +++ b/release/scripts/ui/buttons_game.py @@ -1,317 +1,317 @@ import bpy - -class PhysicsButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" - def poll(self, context): - ob = context.active_object - rd = context.scene.render_data - return ob and ob.game and (rd.engine == 'BLENDER_GAME') +class PhysicsButtonsPanel(bpy.types.Panel): + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + ob = context.active_object + rd = context.scene.render_data + return ob and ob.game and (rd.engine == 'BLENDER_GAME') class PHYSICS_PT_game_physics(PhysicsButtonsPanel): - bl_label = "Physics" + bl_label = "Physics" - def draw(self, context): - layout = self.layout - - ob = context.active_object - game = ob.game - soft = ob.game.soft_body + def draw(self, context): + layout = self.layout - layout.itemR(game, "physics_type") - layout.itemS() - - #if game.physics_type == 'DYNAMIC': - if game.physics_type in ('DYNAMIC', 'RIGID_BODY'): - split = layout.split() - - col = split.column() - col.itemR(game, "actor") - col.itemR(game, "ghost") - col.itemR(ob, "restrict_render", text="Invisible") # out of place but useful - - col = split.column() - col.itemR(game, "material_physics") - col.itemR(game, "rotate_from_normal") - col.itemR(game, "no_sleeping") - - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemL(text="Attributes:") - col.itemR(game, "mass") - col.itemR(game, "radius") - col.itemR(game, "form_factor") - - col = split.column() - sub = col.column() - sub.active = (game.physics_type == 'RIGID_BODY') - sub.itemR(game, "anisotropic_friction") - subsub = sub.column() - subsub.active = game.anisotropic_friction - subsub.itemR(game, "friction_coefficients", text="", slider=True) - - split = layout.split() - - col = split.column() - col.itemL(text="Velocity:") - sub = col.column(align=True) - sub.itemR(game, "minimum_velocity", text="Minimum") - sub.itemR(game, "maximum_velocity", text="Maximum") - - col = split.column() - col.itemL(text="Damping:") - sub = col.column(align=True) - sub.itemR(game, "damping", text="Translation", slider=True) - sub.itemR(game, "rotation_damping", text="Rotation", slider=True) - - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemL(text="Lock Translation:") - col.itemR(game, "lock_x_axis", text="X") - col.itemR(game, "lock_y_axis", text="Y") - col.itemR(game, "lock_z_axis", text="Z") - - col = split.column() - col.itemL(text="Lock Rotation:") - col.itemR(game, "lock_x_rot_axis", text="X") - col.itemR(game, "lock_y_rot_axis", text="Y") - col.itemR(game, "lock_z_rot_axis", text="Z") - - elif game.physics_type == 'SOFT_BODY': - col = layout.column() - col.itemR(game, "actor") - col.itemR(game, "ghost") - col.itemR(ob, "restrict_render", text="Invisible") - - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemL(text="Attributes:") - col.itemR(game, "mass") - col.itemR(soft, "welding") - col.itemR(soft, "position_iterations") - col.itemR(soft, "linstiff", slider=True) - col.itemR(soft, "dynamic_friction", slider=True) - col.itemR(soft, "margin", slider=True) - col.itemR(soft, "bending_const", text="Bending Constraints") + ob = context.active_object + game = ob.game + soft = ob.game.soft_body + + layout.itemR(game, "physics_type") + layout.itemS() + + #if game.physics_type == 'DYNAMIC': + if game.physics_type in ('DYNAMIC', 'RIGID_BODY'): + split = layout.split() + + col = split.column() + col.itemR(game, "actor") + col.itemR(game, "ghost") + col.itemR(ob, "restrict_render", text="Invisible") # out of place but useful + + col = split.column() + col.itemR(game, "material_physics") + col.itemR(game, "rotate_from_normal") + col.itemR(game, "no_sleeping") + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemL(text="Attributes:") + col.itemR(game, "mass") + col.itemR(game, "radius") + col.itemR(game, "form_factor") + + col = split.column() + sub = col.column() + sub.active = (game.physics_type == 'RIGID_BODY') + sub.itemR(game, "anisotropic_friction") + subsub = sub.column() + subsub.active = game.anisotropic_friction + subsub.itemR(game, "friction_coefficients", text="", slider=True) + + split = layout.split() + + col = split.column() + col.itemL(text="Velocity:") + sub = col.column(align=True) + sub.itemR(game, "minimum_velocity", text="Minimum") + sub.itemR(game, "maximum_velocity", text="Maximum") + + col = split.column() + col.itemL(text="Damping:") + sub = col.column(align=True) + sub.itemR(game, "damping", text="Translation", slider=True) + sub.itemR(game, "rotation_damping", text="Rotation", slider=True) + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemL(text="Lock Translation:") + col.itemR(game, "lock_x_axis", text="X") + col.itemR(game, "lock_y_axis", text="Y") + col.itemR(game, "lock_z_axis", text="Z") + + col = split.column() + col.itemL(text="Lock Rotation:") + col.itemR(game, "lock_x_rot_axis", text="X") + col.itemR(game, "lock_y_rot_axis", text="Y") + col.itemR(game, "lock_z_rot_axis", text="Z") + + elif game.physics_type == 'SOFT_BODY': + col = layout.column() + col.itemR(game, "actor") + col.itemR(game, "ghost") + col.itemR(ob, "restrict_render", text="Invisible") + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemL(text="Attributes:") + col.itemR(game, "mass") + col.itemR(soft, "welding") + col.itemR(soft, "position_iterations") + col.itemR(soft, "linstiff", slider=True) + col.itemR(soft, "dynamic_friction", slider=True) + col.itemR(soft, "margin", slider=True) + col.itemR(soft, "bending_const", text="Bending Constraints") + + col = split.column() + col.itemR(soft, "shape_match") + sub = col.column() + sub.active = soft.shape_match + sub.itemR(soft, "threshold", slider=True) + + col.itemS() + + col.itemL(text="Cluster Collision:") + col.itemR(soft, "cluster_rigid_to_softbody") + col.itemR(soft, "cluster_soft_to_softbody") + sub = col.column() + sub.active = (soft.cluster_rigid_to_softbody or soft.cluster_soft_to_softbody) + sub.itemR(soft, "cluster_iterations", text="Iterations") + + elif game.physics_type == 'STATIC': + col = layout.column() + col.itemR(game, "actor") + col.itemR(game, "ghost") + col.itemR(ob, "restrict_render", text="Invisible") + + elif game.physics_type in ('SENSOR', 'INVISIBLE', 'NO_COLLISION', 'OCCLUDE'): + layout.itemR(ob, "restrict_render", text="Invisible") - col = split.column() - col.itemR(soft, "shape_match") - sub = col.column() - sub.active = soft.shape_match - sub.itemR(soft, "threshold", slider=True) - - col.itemS() - - col.itemL(text="Cluster Collision:") - col.itemR(soft, "cluster_rigid_to_softbody") - col.itemR(soft, "cluster_soft_to_softbody") - sub = col.column() - sub.active = (soft.cluster_rigid_to_softbody or soft.cluster_soft_to_softbody) - sub.itemR(soft, "cluster_iterations", text="Iterations") - - elif game.physics_type == 'STATIC': - col = layout.column() - col.itemR(game, "actor") - col.itemR(game, "ghost") - col.itemR(ob, "restrict_render", text="Invisible") - - elif game.physics_type in ('SENSOR', 'INVISIBLE', 'NO_COLLISION', 'OCCLUDE'): - layout.itemR(ob, "restrict_render", text="Invisible") - class PHYSICS_PT_game_collision_bounds(PhysicsButtonsPanel): - bl_label = "Collision Bounds" + bl_label = "Collision Bounds" - def poll(self, context): - game = context.object.game - rd = context.scene.render_data - return (game.physics_type in ('DYNAMIC', 'RIGID_BODY', 'SENSOR', 'SOFT_BODY', 'STATIC')) and (rd.engine == 'BLENDER_GAME') + def poll(self, context): + game = context.object.game + rd = context.scene.render_data + return (game.physics_type in ('DYNAMIC', 'RIGID_BODY', 'SENSOR', 'SOFT_BODY', 'STATIC')) and (rd.engine == 'BLENDER_GAME') - def draw_header(self, context): - game = context.active_object.game + def draw_header(self, context): + game = context.active_object.game - self.layout.itemR(game, "use_collision_bounds", text="") - - def draw(self, context): - layout = self.layout - - game = context.active_object.game + self.layout.itemR(game, "use_collision_bounds", text="") - layout.active = game.use_collision_bounds - layout.itemR(game, "collision_bounds", text="Bounds") - - row = layout.row() - row.itemR(game, "collision_compound", text="Compound") - row.itemR(game, "collision_margin", text="Margin", slider=True) + def draw(self, context): + layout = self.layout + + game = context.active_object.game + + layout.active = game.use_collision_bounds + layout.itemR(game, "collision_bounds", text="Bounds") + + row = layout.row() + row.itemR(game, "collision_compound", text="Compound") + row.itemR(game, "collision_margin", text="Margin", slider=True) bpy.types.register(PHYSICS_PT_game_physics) bpy.types.register(PHYSICS_PT_game_collision_bounds) class RenderButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "render" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "render" - def poll(self, context): - rd = context.scene.render_data - return (rd.engine == 'BLENDER_GAME') + def poll(self, context): + rd = context.scene.render_data + return (rd.engine == 'BLENDER_GAME') class RENDER_PT_game(RenderButtonsPanel): - bl_label = "Game" + bl_label = "Game" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - row = layout.row() - row.itemO("view3d.game_start", text="Start") - row.itemL() + row = layout.row() + row.itemO("view3d.game_start", text="Start") + row.itemL() class RENDER_PT_game_player(RenderButtonsPanel): - bl_label = "Standalone Player" + bl_label = "Standalone Player" - def draw(self, context): - layout = self.layout - - gs = context.scene.game_data - - layout.itemR(gs, "fullscreen") + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemL(text="Resolution:") - sub = col.column(align=True) - sub.itemR(gs, "resolution_x", slider=False, text="X") - sub.itemR(gs, "resolution_y", slider=False, text="Y") + gs = context.scene.game_data - col = split.column() - col.itemL(text="Quality:") - sub = col.column(align=True) - sub.itemR(gs, "depth", text="Bit Depth", slider=False) - sub.itemR(gs, "frequency", text="FPS", slider=False) + layout.itemR(gs, "fullscreen") - # framing: - col = layout.column() - col.itemL(text="Framing:") - col.row().itemR(gs, "framing_type", expand=True) - if gs.framing_type == 'LETTERBOX': - col.itemR(gs, "framing_color", text="") + split = layout.split() + + col = split.column() + col.itemL(text="Resolution:") + sub = col.column(align=True) + sub.itemR(gs, "resolution_x", slider=False, text="X") + sub.itemR(gs, "resolution_y", slider=False, text="Y") + + col = split.column() + col.itemL(text="Quality:") + sub = col.column(align=True) + sub.itemR(gs, "depth", text="Bit Depth", slider=False) + sub.itemR(gs, "frequency", text="FPS", slider=False) + + # framing: + col = layout.column() + col.itemL(text="Framing:") + col.row().itemR(gs, "framing_type", expand=True) + if gs.framing_type == 'LETTERBOX': + col.itemR(gs, "framing_color", text="") class RENDER_PT_game_stereo(RenderButtonsPanel): - bl_label = "Stereo" + bl_label = "Stereo" - def draw(self, context): - layout = self.layout - - gs = context.scene.game_data - stereo_mode = gs.stereo + def draw(self, context): + layout = self.layout - # stereo options: - layout.itemR(gs, "stereo", expand=True) - - # stereo: - if stereo_mode == 'STEREO': - layout.itemR(gs, "stereo_mode") - layout.itemL(text="To do: Focal Length") - layout.itemL(text="To do: Eye Separation") + gs = context.scene.game_data + stereo_mode = gs.stereo - # dome: - elif stereo_mode == 'DOME': - layout.itemR(gs, "dome_mode", text="Dome Type") + # stereo options: + layout.itemR(gs, "stereo", expand=True) - dome_type = gs.dome_mode + # stereo: + if stereo_mode == 'STEREO': + layout.itemR(gs, "stereo_mode") + layout.itemL(text="To do: Focal Length") + layout.itemL(text="To do: Eye Separation") - split=layout.split() + # dome: + elif stereo_mode == 'DOME': + layout.itemR(gs, "dome_mode", text="Dome Type") - if dome_type == 'FISHEYE' or \ - dome_type == 'TRUNCATED_REAR' or \ - dome_type == 'TRUNCATED_FRONT': - - col=split.column() - col.itemR(gs, "dome_angle", slider=True) - col.itemR(gs, "dome_tilt") + dome_type = gs.dome_mode - col=split.column() - col.itemR(gs, "dome_tesselation", text="Tesselation") - col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) + split=layout.split() - elif dome_type == 'PANORAM_SPH': - col=split.column() - col.itemR(gs, "dome_tesselation", text="Tesselation") - col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) + if dome_type == 'FISHEYE' or \ + dome_type == 'TRUNCATED_REAR' or \ + dome_type == 'TRUNCATED_FRONT': - else: # cube map - col=split.column() - col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) - - layout.itemR(gs, "dome_text") + col=split.column() + col.itemR(gs, "dome_angle", slider=True) + col.itemR(gs, "dome_tilt") + + col=split.column() + col.itemR(gs, "dome_tesselation", text="Tesselation") + col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) + + elif dome_type == 'PANORAM_SPH': + col=split.column() + col.itemR(gs, "dome_tesselation", text="Tesselation") + col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) + + else: # cube map + col=split.column() + col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) + + layout.itemR(gs, "dome_text") class RENDER_PT_game_shading(RenderButtonsPanel): - bl_label = "Shading" + bl_label = "Shading" - def draw(self, context): - layout = self.layout - - gs = context.scene.game_data - layout.itemR(gs, "material_mode", expand=True) - - if gs.material_mode == 'GLSL': - split = layout.split() + def draw(self, context): + layout = self.layout - col = split.column() - col.itemR(gs, "glsl_lights", text="Lights") - col.itemR(gs, "glsl_shaders", text="Shaders") - col.itemR(gs, "glsl_shadows", text="Shadows") + gs = context.scene.game_data + layout.itemR(gs, "material_mode", expand=True) - col = split.column() - col.itemR(gs, "glsl_ramps", text="Ramps") - col.itemR(gs, "glsl_nodes", text="Nodes") - col.itemR(gs, "glsl_extra_textures", text="Extra Textures") + if gs.material_mode == 'GLSL': + split = layout.split() + + col = split.column() + col.itemR(gs, "glsl_lights", text="Lights") + col.itemR(gs, "glsl_shaders", text="Shaders") + col.itemR(gs, "glsl_shadows", text="Shadows") + + col = split.column() + col.itemR(gs, "glsl_ramps", text="Ramps") + col.itemR(gs, "glsl_nodes", text="Nodes") + col.itemR(gs, "glsl_extra_textures", text="Extra Textures") class RENDER_PT_game_performance(RenderButtonsPanel): - bl_label = "Performance" + bl_label = "Performance" - def draw(self, context): - layout = self.layout - - gs = context.scene.game_data + def draw(self, context): + layout = self.layout - split = layout.split() + gs = context.scene.game_data + + split = layout.split() + + col = split.column() + col.itemL(text="Show:") + col.itemR(gs, "show_debug_properties", text="Debug Properties") + col.itemR(gs, "show_framerate_profile", text="Framerate and Profile") + col.itemR(gs, "show_physics_visualization", text="Physics Visualization") + col.itemR(gs, "deprecation_warnings") + + col = split.column() + col.itemL(text="Render:") + col.itemR(gs, "all_frames") + col.itemR(gs, "display_lists") - col = split.column() - col.itemL(text="Show:") - col.itemR(gs, "show_debug_properties", text="Debug Properties") - col.itemR(gs, "show_framerate_profile", text="Framerate and Profile") - col.itemR(gs, "show_physics_visualization", text="Physics Visualization") - col.itemR(gs, "deprecation_warnings") - - col = split.column() - col.itemL(text="Render:") - col.itemR(gs, "all_frames") - col.itemR(gs, "display_lists") - class RENDER_PT_game_sound(RenderButtonsPanel): - bl_label = "Sound" + bl_label = "Sound" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - scene = context.scene - - layout.itemR(scene, "distance_model") - layout.itemR(scene, "speed_of_sound", text="Speed") - layout.itemR(scene, "doppler_factor") + scene = context.scene + + layout.itemR(scene, "distance_model") + layout.itemR(scene, "speed_of_sound", text="Speed") + layout.itemR(scene, "doppler_factor") bpy.types.register(RENDER_PT_game) bpy.types.register(RENDER_PT_game_player) @@ -321,96 +321,96 @@ bpy.types.register(RENDER_PT_game_performance) bpy.types.register(RENDER_PT_game_sound) class WorldButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "world" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "world" - def poll(self, context): - rd = context.scene.render_data - return (rd.engine == 'BLENDER_GAME') + def poll(self, context): + rd = context.scene.render_data + return (rd.engine == 'BLENDER_GAME') class WORLD_PT_game_context_world(WorldButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def poll(self, context): - rd = context.scene.render_data - return (context.scene) and (rd.use_game_engine) + def poll(self, context): + rd = context.scene.render_data + return (context.scene) and (rd.use_game_engine) - def draw(self, context): - layout = self.layout - - scene = context.scene - world = context.world - space = context.space_data + def draw(self, context): + layout = self.layout - split = layout.split(percentage=0.65) + scene = context.scene + world = context.world + space = context.space_data - if scene: - split.template_ID(scene, "world", new="world.new") - elif world: - split.template_ID(space, "pin_id") + split = layout.split(percentage=0.65) + + if scene: + split.template_ID(scene, "world", new="world.new") + elif world: + split.template_ID(space, "pin_id") class WORLD_PT_game_world(WorldButtonsPanel): - bl_label = "World" + bl_label = "World" - def draw(self, context): - layout = self.layout - - world = context.world + def draw(self, context): + layout = self.layout - row = layout.row() - row.column().itemR(world, "horizon_color") - row.column().itemR(world, "ambient_color") + world = context.world - layout.itemR(world.mist, "enabled", text="Mist") + row = layout.row() + row.column().itemR(world, "horizon_color") + row.column().itemR(world, "ambient_color") - row = layout.column_flow() - row.active = world.mist.enabled - row.itemR(world.mist, "start") - row.itemR(world.mist, "depth") + layout.itemR(world.mist, "enabled", text="Mist") + + row = layout.column_flow() + row.active = world.mist.enabled + row.itemR(world.mist, "start") + row.itemR(world.mist, "depth") class WORLD_PT_game_physics(WorldButtonsPanel): - bl_label = "Physics" - - def draw(self, context): - layout = self.layout - - gs = context.scene.game_data - - layout.itemR(gs, "physics_engine") - if gs.physics_engine != 'NONE': - layout.itemR(gs, "physics_gravity", text="Gravity") - - split = layout.split() - - col = split.column() - col.itemL(text="Physics Steps:") - sub = col.column(align=True) - sub.itemR(gs, "physics_step_max", text="Max") - sub.itemR(gs, "physics_step_sub", text="Substeps") - col.itemR(gs, "fps", text="FPS") - - col = split.column() - col.itemL(text="Logic Steps:") - col.itemR(gs, "logic_step_max", text="Max") - - col = layout.column() - col.itemR(gs, "use_occlusion_culling", text="Occlusion Culling") - sub = col.column() - sub.active = gs.use_occlusion_culling - sub.itemR(gs, "occlusion_culling_resolution", text="Resolution") + bl_label = "Physics" - else: - split = layout.split() - - col = split.column() - col.itemL(text="Physics Steps:") - col.itemR(gs, "fps", text="FPS") - - col = split.column() - col.itemL(text="Logic Steps:") - col.itemR(gs, "logic_step_max", text="Max") + def draw(self, context): + layout = self.layout + + gs = context.scene.game_data + + layout.itemR(gs, "physics_engine") + if gs.physics_engine != 'NONE': + layout.itemR(gs, "physics_gravity", text="Gravity") + + split = layout.split() + + col = split.column() + col.itemL(text="Physics Steps:") + sub = col.column(align=True) + sub.itemR(gs, "physics_step_max", text="Max") + sub.itemR(gs, "physics_step_sub", text="Substeps") + col.itemR(gs, "fps", text="FPS") + + col = split.column() + col.itemL(text="Logic Steps:") + col.itemR(gs, "logic_step_max", text="Max") + + col = layout.column() + col.itemR(gs, "use_occlusion_culling", text="Occlusion Culling") + sub = col.column() + sub.active = gs.use_occlusion_culling + sub.itemR(gs, "occlusion_culling_resolution", text="Resolution") + + else: + split = layout.split() + + col = split.column() + col.itemL(text="Physics Steps:") + col.itemR(gs, "fps", text="FPS") + + col = split.column() + col.itemL(text="Logic Steps:") + col.itemR(gs, "logic_step_max", text="Max") bpy.types.register(WORLD_PT_game_context_world) bpy.types.register(WORLD_PT_game_world) diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py index af95eec9a68..9131b5284f7 100644 --- a/release/scripts/ui/buttons_material.py +++ b/release/scripts/ui/buttons_material.py @@ -1,612 +1,612 @@ - + import bpy def active_node_mat(mat): - # TODO, 2.4x has a pipeline section, for 2.5 we need to communicate - # which settings from node-materials are used - if mat: - mat_node = mat.active_node_material - if mat_node: - return mat_node - else: - return mat + # TODO, 2.4x has a pipeline section, for 2.5 we need to communicate + # which settings from node-materials are used + if mat: + mat_node = mat.active_node_material + if mat_node: + return mat_node + else: + return mat - return None + return None class MaterialButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "material" - # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "material" + # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here - def poll(self, context): - mat = context.material - engine = context.scene.render_data.engine - return mat and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = context.material + engine = context.scene.render_data.engine + return mat and (engine in self.COMPAT_ENGINES) class MATERIAL_PT_preview(MaterialButtonsPanel): - bl_label = "Preview" - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "Preview" + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + + def draw(self, context): + self.layout.template_preview(context.material) - def draw(self, context): - self.layout.template_preview(context.material) - class MATERIAL_PT_context_material(MaterialButtonsPanel): - bl_label = "" - bl_show_header = False - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "" + bl_show_header = False + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def poll(self, context): - # An exception, dont call the parent poll func because - # this manages materials for all engine types - - engine = context.scene.render_data.engine - return (context.material or context.object) and (engine in self.COMPAT_ENGINES) + def poll(self, context): + # An exception, dont call the parent poll func because + # this manages materials for all engine types - def draw(self, context): - layout = self.layout - - mat = context.material - ob = context.object - slot = context.material_slot - space = context.space_data + engine = context.scene.render_data.engine + return (context.material or context.object) and (engine in self.COMPAT_ENGINES) - if ob: - row = layout.row() + def draw(self, context): + layout = self.layout - row.template_list(ob, "materials", ob, "active_material_index", rows=2) + mat = context.material + ob = context.object + slot = context.material_slot + space = context.space_data - col = row.column(align=True) - col.itemO("object.material_slot_add", icon='ICON_ZOOMIN', text="") - col.itemO("object.material_slot_remove", icon='ICON_ZOOMOUT', text="") - col.itemO("object.material_slot_copy", icon='ICON_COPY_ID', text="") + if ob: + row = layout.row() - if ob.mode == 'EDIT': - row = layout.row(align=True) - row.itemO("object.material_slot_assign", text="Assign") - row.itemO("object.material_slot_select", text="Select") - row.itemO("object.material_slot_deselect", text="Deselect") + row.template_list(ob, "materials", ob, "active_material_index", rows=2) - split = layout.split(percentage=0.65) + col = row.column(align=True) + col.itemO("object.material_slot_add", icon='ICON_ZOOMIN', text="") + col.itemO("object.material_slot_remove", icon='ICON_ZOOMOUT', text="") + col.itemO("object.material_slot_copy", icon='ICON_COPY_ID', text="") + + if ob.mode == 'EDIT': + row = layout.row(align=True) + row.itemO("object.material_slot_assign", text="Assign") + row.itemO("object.material_slot_select", text="Select") + row.itemO("object.material_slot_deselect", text="Deselect") + + split = layout.split(percentage=0.65) + + if ob: + split.template_ID(ob, "active_material", new="material.new") + row = split.row() + if slot: + row.itemR(slot, "link", text="") + else: + row.itemL() + elif mat: + split.template_ID(space, "pin_id") + split.itemS() + + if mat: + layout.itemR(mat, "type", expand=True) - if ob: - split.template_ID(ob, "active_material", new="material.new") - row = split.row() - if slot: - row.itemR(slot, "link", text="") - else: - row.itemL() - elif mat: - split.template_ID(space, "pin_id") - split.itemS() - - if mat: - layout.itemR(mat, "type", expand=True) - class MATERIAL_PT_shading(MaterialButtonsPanel): - bl_label = "Shading" - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "Shading" + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) + def draw(self, context): + layout = self.layout + + mat = active_node_mat(context.material) + + if mat.type in ('SURFACE', 'WIRE'): + split = layout.split() + + col = split.column() + sub = col.column() + sub.active = not mat.shadeless + sub.itemR(mat, "emit") + sub.itemR(mat, "ambient") + sub = col.column() + sub.itemR(mat, "translucency") + + col = split.column() + col.itemR(mat, "shadeless") + sub = col.column() + sub.active = not mat.shadeless + sub.itemR(mat, "tangent_shading") + sub.itemR(mat, "cubic") + + elif mat.type == 'HALO': + layout.itemR(mat, "alpha") - if mat.type in ('SURFACE', 'WIRE'): - split = layout.split() - - col = split.column() - sub = col.column() - sub.active = not mat.shadeless - sub.itemR(mat, "emit") - sub.itemR(mat, "ambient") - sub = col.column() - sub.itemR(mat, "translucency") - - col = split.column() - col.itemR(mat, "shadeless") - sub = col.column() - sub.active = not mat.shadeless - sub.itemR(mat, "tangent_shading") - sub.itemR(mat, "cubic") - - elif mat.type == 'HALO': - layout.itemR(mat, "alpha") - class MATERIAL_PT_strand(MaterialButtonsPanel): - bl_label = "Strand" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Strand" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) + + def poll(self, context): + mat = context.material + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) + + def draw(self, context): + layout = self.layout + + mat = context.material # dont use node material + tan = mat.strand + + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Size:") + col.itemR(tan, "root_size", text="Root") + col.itemR(tan, "tip_size", text="Tip") + col.itemR(tan, "min_size", text="Minimum") + col.itemR(tan, "blender_units") + sub = col.column() + sub.active = (not mat.shadeless) + sub.itemR(tan, "tangent_shading") + col.itemR(tan, "shape") + + col = split.column() + col.itemL(text="Shading:") + col.itemR(tan, "width_fade") + ob = context.object + if ob and ob.type == 'MESH': col.item_pointerR(tan, "uv_layer", ob.data, "uv_textures", text="") + else: col.itemR(tan, "uv_layer", text="") + col.itemS() + sub = col.column() + sub.active = (not mat.shadeless) + sub.itemR(tan, "surface_diffuse") + sub = col.column() + sub.active = tan.surface_diffuse + sub.itemR(tan, "blend_distance", text="Distance") - def poll(self, context): - mat = context.material - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) - - def draw(self, context): - layout = self.layout - - mat = context.material # dont use node material - tan = mat.strand - - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Size:") - col.itemR(tan, "root_size", text="Root") - col.itemR(tan, "tip_size", text="Tip") - col.itemR(tan, "min_size", text="Minimum") - col.itemR(tan, "blender_units") - sub = col.column() - sub.active = (not mat.shadeless) - sub.itemR(tan, "tangent_shading") - col.itemR(tan, "shape") - - col = split.column() - col.itemL(text="Shading:") - col.itemR(tan, "width_fade") - ob = context.object - if ob and ob.type == 'MESH': col.item_pointerR(tan, "uv_layer", ob.data, "uv_textures", text="") - else: col.itemR(tan, "uv_layer", text="") - col.itemS() - sub = col.column() - sub.active = (not mat.shadeless) - sub.itemR(tan, "surface_diffuse") - sub = col.column() - sub.active = tan.surface_diffuse - sub.itemR(tan, "blend_distance", text="Distance") - class MATERIAL_PT_physics(MaterialButtonsPanel): - bl_label = "Physics" - COMPAT_ENGINES = set(['BLENDER_GAME']) - - def draw(self, context): - layout = self.layout - - phys = context.material.physics # dont use node material - - split = layout.split() - - col = split.column() - col.itemR(phys, "distance") - col.itemR(phys, "friction") - col.itemR(phys, "align_to_normal") - - col = split.column() - col.itemR(phys, "force", slider=True) - col.itemR(phys, "elasticity", slider=True) - col.itemR(phys, "damp", slider=True) - + bl_label = "Physics" + COMPAT_ENGINES = set(['BLENDER_GAME']) + + def draw(self, context): + layout = self.layout + + phys = context.material.physics # dont use node material + + split = layout.split() + + col = split.column() + col.itemR(phys, "distance") + col.itemR(phys, "friction") + col.itemR(phys, "align_to_normal") + + col = split.column() + col.itemR(phys, "force", slider=True) + col.itemR(phys, "elasticity", slider=True) + col.itemR(phys, "damp", slider=True) + class MATERIAL_PT_options(MaterialButtonsPanel): - bl_label = "Options" - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "Options" + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE', 'HALO')) and (engine in self.COMPAT_ENGINES) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - - split = layout.split() - - col = split.column() - col.itemR(mat, "traceable") - col.itemR(mat, "full_oversampling") - col.itemR(mat, "sky") - col.itemR(mat, "exclude_mist") - col.itemR(mat, "invert_z") - sub = col.row() - sub.itemR(mat, "z_offset") - sub.active = mat.transparency and mat.transparency_method == 'Z_TRANSPARENCY' - sub = col.column(align=True) - sub.itemL(text="Light Group:") - sub.itemR(mat, "light_group", text="") - row = sub.row() - row.active = mat.light_group - row.itemR(mat, "light_group_exclusive", text="Exclusive") + def draw(self, context): + layout = self.layout - col = split.column() - col.itemR(mat, "face_texture") - sub = col.column() - sub.active = mat.face_texture - sub.itemR(mat, "face_texture_alpha") - col.itemS() - col.itemR(mat, "vertex_color_paint") - col.itemR(mat, "vertex_color_light") - col.itemR(mat, "object_color") + mat = active_node_mat(context.material) + + split = layout.split() + + col = split.column() + col.itemR(mat, "traceable") + col.itemR(mat, "full_oversampling") + col.itemR(mat, "sky") + col.itemR(mat, "exclude_mist") + col.itemR(mat, "invert_z") + sub = col.row() + sub.itemR(mat, "z_offset") + sub.active = mat.transparency and mat.transparency_method == 'Z_TRANSPARENCY' + sub = col.column(align=True) + sub.itemL(text="Light Group:") + sub.itemR(mat, "light_group", text="") + row = sub.row() + row.active = mat.light_group + row.itemR(mat, "light_group_exclusive", text="Exclusive") + + col = split.column() + col.itemR(mat, "face_texture") + sub = col.column() + sub.active = mat.face_texture + sub.itemR(mat, "face_texture_alpha") + col.itemS() + col.itemR(mat, "vertex_color_paint") + col.itemR(mat, "vertex_color_light") + col.itemR(mat, "object_color") class MATERIAL_PT_shadow(MaterialButtonsPanel): - bl_label = "Shadow" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + bl_label = "Shadow" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - - split = layout.split() - - col = split.column() - col.itemR(mat, "shadows", text="Receive") - col.itemR(mat, "receive_transparent_shadows", text="Receive Transparent") - col.itemR(mat, "only_shadow", text="Shadows Only") - col.itemR(mat, "cast_shadows_only", text="Cast Only") - col.itemR(mat, "shadow_casting_alpha", text="Casting Alpha") - - col = split.column() - col.itemR(mat, "cast_buffer_shadows") - sub = col.column() - sub.active = mat.cast_buffer_shadows - sub.itemR(mat, "shadow_buffer_bias", text="Buffer Bias") - col.itemR(mat, "ray_shadow_bias", text="Auto Ray Bias") - sub = col.column() - sub.active = (not mat.ray_shadow_bias) - sub.itemR(mat, "shadow_ray_bias", text="Ray Bias") + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + + def draw(self, context): + layout = self.layout + + mat = active_node_mat(context.material) + + split = layout.split() + + col = split.column() + col.itemR(mat, "shadows", text="Receive") + col.itemR(mat, "receive_transparent_shadows", text="Receive Transparent") + col.itemR(mat, "only_shadow", text="Shadows Only") + col.itemR(mat, "cast_shadows_only", text="Cast Only") + col.itemR(mat, "shadow_casting_alpha", text="Casting Alpha") + + col = split.column() + col.itemR(mat, "cast_buffer_shadows") + sub = col.column() + sub.active = mat.cast_buffer_shadows + sub.itemR(mat, "shadow_buffer_bias", text="Buffer Bias") + col.itemR(mat, "ray_shadow_bias", text="Auto Ray Bias") + sub = col.column() + sub.active = (not mat.ray_shadow_bias) + sub.itemR(mat, "shadow_ray_bias", text="Ray Bias") class MATERIAL_PT_diffuse(MaterialButtonsPanel): - bl_label = "Diffuse" - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "Diffuse" + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - - split = layout.split() - - col = split.column() - col.itemR(mat, "diffuse_color", text="") - sub = col.column() - sub.active = (not mat.shadeless) - sub.itemR(mat, "diffuse_intensity", text="Intensity") - - col = split.column() - col.active = (not mat.shadeless) - col.itemR(mat, "diffuse_shader", text="") - col.itemR(mat, "use_diffuse_ramp", text="Ramp") - - col = layout.column() - col.active = (not mat.shadeless) - if mat.diffuse_shader == 'OREN_NAYAR': - col.itemR(mat, "roughness") - elif mat.diffuse_shader == 'MINNAERT': - col.itemR(mat, "darkness") - elif mat.diffuse_shader == 'TOON': - row = col.row() - row.itemR(mat, "diffuse_toon_size", text="Size") - row.itemR(mat, "diffuse_toon_smooth", text="Smooth") - elif mat.diffuse_shader == 'FRESNEL': - row = col.row() - row.itemR(mat, "diffuse_fresnel", text="Fresnel") - row.itemR(mat, "diffuse_fresnel_factor", text="Factor") - - if mat.use_diffuse_ramp: - layout.itemS() - layout.template_color_ramp(mat, "diffuse_ramp", expand=True) - layout.itemS() - row = layout.row() - split = row.split(percentage=0.3) - split.itemL(text="Input:") - split.itemR(mat, "diffuse_ramp_input", text="") - split = row.split(percentage=0.3) - split.itemL(text="Blend:") - split.itemR(mat, "diffuse_ramp_blend", text="") - row = layout.row() - row.itemR(mat, "diffuse_ramp_factor", text="Factor") + def draw(self, context): + layout = self.layout + + mat = active_node_mat(context.material) + + split = layout.split() + + col = split.column() + col.itemR(mat, "diffuse_color", text="") + sub = col.column() + sub.active = (not mat.shadeless) + sub.itemR(mat, "diffuse_intensity", text="Intensity") + + col = split.column() + col.active = (not mat.shadeless) + col.itemR(mat, "diffuse_shader", text="") + col.itemR(mat, "use_diffuse_ramp", text="Ramp") + + col = layout.column() + col.active = (not mat.shadeless) + if mat.diffuse_shader == 'OREN_NAYAR': + col.itemR(mat, "roughness") + elif mat.diffuse_shader == 'MINNAERT': + col.itemR(mat, "darkness") + elif mat.diffuse_shader == 'TOON': + row = col.row() + row.itemR(mat, "diffuse_toon_size", text="Size") + row.itemR(mat, "diffuse_toon_smooth", text="Smooth") + elif mat.diffuse_shader == 'FRESNEL': + row = col.row() + row.itemR(mat, "diffuse_fresnel", text="Fresnel") + row.itemR(mat, "diffuse_fresnel_factor", text="Factor") + + if mat.use_diffuse_ramp: + layout.itemS() + layout.template_color_ramp(mat, "diffuse_ramp", expand=True) + layout.itemS() + row = layout.row() + split = row.split(percentage=0.3) + split.itemL(text="Input:") + split.itemR(mat, "diffuse_ramp_input", text="") + split = row.split(percentage=0.3) + split.itemL(text="Blend:") + split.itemR(mat, "diffuse_ramp_blend", text="") + row = layout.row() + row.itemR(mat, "diffuse_ramp_factor", text="Factor") class MATERIAL_PT_specular(MaterialButtonsPanel): - bl_label = "Specular" - COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) + bl_label = "Specular" + COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - - layout.active = (not mat.shadeless) - - split = layout.split() - - col = split.column() - col.itemR(mat, "specular_color", text="") - col.itemR(mat, "specular_intensity", text="Intensity") + def draw(self, context): + layout = self.layout - col = split.column() - col.itemR(mat, "specular_shader", text="") - col.itemR(mat, "use_specular_ramp", text="Ramp") + mat = active_node_mat(context.material) + + layout.active = (not mat.shadeless) + + split = layout.split() + + col = split.column() + col.itemR(mat, "specular_color", text="") + col.itemR(mat, "specular_intensity", text="Intensity") + + col = split.column() + col.itemR(mat, "specular_shader", text="") + col.itemR(mat, "use_specular_ramp", text="Ramp") + + col = layout.column() + if mat.specular_shader in ('COOKTORR', 'PHONG'): + col.itemR(mat, "specular_hardness", text="Hardness") + elif mat.specular_shader == 'BLINN': + row = col.row() + row.itemR(mat, "specular_hardness", text="Hardness") + row.itemR(mat, "specular_ior", text="IOR") + elif mat.specular_shader == 'WARDISO': + col.itemR(mat, "specular_slope", text="Slope") + elif mat.specular_shader == 'TOON': + row = col.row() + row.itemR(mat, "specular_toon_size", text="Size") + row.itemR(mat, "specular_toon_smooth", text="Smooth") + + if mat.use_specular_ramp: + layout.itemS() + layout.template_color_ramp(mat, "specular_ramp", expand=True) + layout.itemS() + row = layout.row() + split = row.split(percentage=0.3) + split.itemL(text="Input:") + split.itemR(mat, "specular_ramp_input", text="") + split = row.split(percentage=0.3) + split.itemL(text="Blend:") + split.itemR(mat, "specular_ramp_blend", text="") + row = layout.row() + row.itemR(mat, "specular_ramp_factor", text="Factor") - col = layout.column() - if mat.specular_shader in ('COOKTORR', 'PHONG'): - col.itemR(mat, "specular_hardness", text="Hardness") - elif mat.specular_shader == 'BLINN': - row = col.row() - row.itemR(mat, "specular_hardness", text="Hardness") - row.itemR(mat, "specular_ior", text="IOR") - elif mat.specular_shader == 'WARDISO': - col.itemR(mat, "specular_slope", text="Slope") - elif mat.specular_shader == 'TOON': - row = col.row() - row.itemR(mat, "specular_toon_size", text="Size") - row.itemR(mat, "specular_toon_smooth", text="Smooth") - - if mat.use_specular_ramp: - layout.itemS() - layout.template_color_ramp(mat, "specular_ramp", expand=True) - layout.itemS() - row = layout.row() - split = row.split(percentage=0.3) - split.itemL(text="Input:") - split.itemR(mat, "specular_ramp_input", text="") - split = row.split(percentage=0.3) - split.itemL(text="Blend:") - split.itemR(mat, "specular_ramp_blend", text="") - row = layout.row() - row.itemR(mat, "specular_ramp_factor", text="Factor") - class MATERIAL_PT_sss(MaterialButtonsPanel): - bl_label = "Subsurface Scattering" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + bl_label = "Subsurface Scattering" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - mat = active_node_mat(context.material) - sss = mat.subsurface_scattering - - self.layout.active = (not mat.shadeless) - self.layout.itemR(sss, "enabled", text="") - - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - sss = mat.subsurface_scattering + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - layout.active = sss.enabled - - split = layout.split() - split.active = (not mat.shadeless) - - col = split.column() - col.itemR(sss, "ior") - col.itemR(sss, "scale") - col.itemR(sss, "color", text="") - col.itemR(sss, "radius", text="RGB Radius") - - col = split.column() - sub = col.column(align=True) - sub.itemL(text="Blend:") - sub.itemR(sss, "color_factor", text="Color") - sub.itemR(sss, "texture_factor", text="Texture") - sub.itemL(text="Scattering Weight:") - sub.itemR(sss, "front") - sub.itemR(sss, "back") - col.itemS() - col.itemR(sss, "error_tolerance", text="Error") + def draw_header(self, context): + mat = active_node_mat(context.material) + sss = mat.subsurface_scattering + + self.layout.active = (not mat.shadeless) + self.layout.itemR(sss, "enabled", text="") + + def draw(self, context): + layout = self.layout + + mat = active_node_mat(context.material) + sss = mat.subsurface_scattering + + layout.active = sss.enabled + + split = layout.split() + split.active = (not mat.shadeless) + + col = split.column() + col.itemR(sss, "ior") + col.itemR(sss, "scale") + col.itemR(sss, "color", text="") + col.itemR(sss, "radius", text="RGB Radius") + + col = split.column() + sub = col.column(align=True) + sub.itemL(text="Blend:") + sub.itemR(sss, "color_factor", text="Color") + sub.itemR(sss, "texture_factor", text="Texture") + sub.itemL(text="Scattering Weight:") + sub.itemR(sss, "front") + sub.itemR(sss, "back") + col.itemS() + col.itemR(sss, "error_tolerance", text="Error") class MATERIAL_PT_mirror(MaterialButtonsPanel): - bl_label = "Mirror" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - - def draw_header(self, context): - raym = active_node_mat(context.material).raytrace_mirror + bl_label = "Mirror" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - self.layout.itemR(raym, "enabled", text="") - - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - raym = mat.raytrace_mirror - - layout.active = raym.enabled - - split = layout.split() - - col = split.column() - col.itemR(raym, "reflect_factor") - col.itemR(mat, "mirror_color", text="") + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - col = split.column() - col.itemR(raym, "fresnel") - sub = col.column() - sub.active = raym.fresnel > 0 - sub.itemR(raym, "fresnel_factor", text="Blend") - - split = layout.split() - - col = split.column() - col.itemS() - col.itemR(raym, "distance", text="Max Dist") - col.itemR(raym, "depth") - col.itemS() - sub = col.split(percentage=0.4) - sub.itemL(text="Fade To:") - sub.itemR(raym, "fade_to", text="") - - col = split.column() - col.itemL(text="Gloss:") - col.itemR(raym, "gloss_factor", text="Amount") - sub = col.column() - sub.active = raym.gloss_factor < 1.0 - sub.itemR(raym, "gloss_threshold", text="Threshold") - sub.itemR(raym, "gloss_samples", text="Samples") - sub.itemR(raym, "gloss_anisotropic", text="Anisotropic") + def draw_header(self, context): + raym = active_node_mat(context.material).raytrace_mirror + + self.layout.itemR(raym, "enabled", text="") + + def draw(self, context): + layout = self.layout + + mat = active_node_mat(context.material) + raym = mat.raytrace_mirror + + layout.active = raym.enabled + + split = layout.split() + + col = split.column() + col.itemR(raym, "reflect_factor") + col.itemR(mat, "mirror_color", text="") + + col = split.column() + col.itemR(raym, "fresnel") + sub = col.column() + sub.active = raym.fresnel > 0 + sub.itemR(raym, "fresnel_factor", text="Blend") + + split = layout.split() + + col = split.column() + col.itemS() + col.itemR(raym, "distance", text="Max Dist") + col.itemR(raym, "depth") + col.itemS() + sub = col.split(percentage=0.4) + sub.itemL(text="Fade To:") + sub.itemR(raym, "fade_to", text="") + + col = split.column() + col.itemL(text="Gloss:") + col.itemR(raym, "gloss_factor", text="Amount") + sub = col.column() + sub.active = raym.gloss_factor < 1.0 + sub.itemR(raym, "gloss_threshold", text="Threshold") + sub.itemR(raym, "gloss_samples", text="Samples") + sub.itemR(raym, "gloss_anisotropic", text="Anisotropic") class MATERIAL_PT_transp(MaterialButtonsPanel): - bl_label= "Transparency" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - mat = active_node_mat(context.material) - engine = context.scene.render_data.engine - return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) + bl_label= "Transparency" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - mat = active_node_mat(context.material) + def poll(self, context): + mat = active_node_mat(context.material) + engine = context.scene.render_data.engine + return mat and (mat.type in ('SURFACE', 'WIRE')) and (engine in self.COMPAT_ENGINES) - self.layout.itemR(mat, "transparency", text="") + def draw_header(self, context): + mat = active_node_mat(context.material) - def draw(self, context): - layout = self.layout - - mat = active_node_mat(context.material) - rayt = mat.raytrace_transparency - - row = layout.row() - row.active = mat.transparency and (not mat.shadeless) - row.itemR(mat, "transparency_method", expand=True) - - split = layout.split() - - col = split.column() - col.itemR(mat, "alpha") - row = col.row() - row.active = mat.transparency and (not mat.shadeless) - row.itemR(mat, "specular_alpha", text="Specular") + self.layout.itemR(mat, "transparency", text="") - col = split.column() - col.active = (not mat.shadeless) - col.itemR(rayt, "fresnel") - sub = col.column() - sub.active = rayt.fresnel > 0 - sub.itemR(rayt, "fresnel_factor", text="Blend") + def draw(self, context): + layout = self.layout - if mat.transparency_method == 'RAYTRACE': - layout.itemS() - split = layout.split() - split.active = mat.transparency + mat = active_node_mat(context.material) + rayt = mat.raytrace_transparency - col = split.column() - col.itemR(rayt, "ior") - col.itemR(rayt, "filter") - col.itemR(rayt, "falloff") - col.itemR(rayt, "limit") - col.itemR(rayt, "depth") - - col = split.column() - col.itemL(text="Gloss:") - col.itemR(rayt, "gloss_factor", text="Amount") - sub = col.column() - sub.active = rayt.gloss_factor < 1.0 - sub.itemR(rayt, "gloss_threshold", text="Threshold") - sub.itemR(rayt, "gloss_samples", text="Samples") + row = layout.row() + row.active = mat.transparency and (not mat.shadeless) + row.itemR(mat, "transparency_method", expand=True) + + split = layout.split() + + col = split.column() + col.itemR(mat, "alpha") + row = col.row() + row.active = mat.transparency and (not mat.shadeless) + row.itemR(mat, "specular_alpha", text="Specular") + + col = split.column() + col.active = (not mat.shadeless) + col.itemR(rayt, "fresnel") + sub = col.column() + sub.active = rayt.fresnel > 0 + sub.itemR(rayt, "fresnel_factor", text="Blend") + + if mat.transparency_method == 'RAYTRACE': + layout.itemS() + split = layout.split() + split.active = mat.transparency + + col = split.column() + col.itemR(rayt, "ior") + col.itemR(rayt, "filter") + col.itemR(rayt, "falloff") + col.itemR(rayt, "limit") + col.itemR(rayt, "depth") + + col = split.column() + col.itemL(text="Gloss:") + col.itemR(rayt, "gloss_factor", text="Amount") + sub = col.column() + sub.active = rayt.gloss_factor < 1.0 + sub.itemR(rayt, "gloss_threshold", text="Threshold") + sub.itemR(rayt, "gloss_samples", text="Samples") class MATERIAL_PT_halo(MaterialButtonsPanel): - bl_label= "Halo" - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - mat = context.material - engine = context.scene.render_data.engine - return mat and (mat.type == 'HALO') and (engine in self.COMPAT_ENGINES) - - def draw(self, context): - layout = self.layout - - mat = context.material # dont use node material - halo = mat.halo + bl_label= "Halo" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - split = layout.split() - - col = split.column() - col.itemR(mat, "diffuse_color", text="") - col.itemR(halo, "size") - col.itemR(halo, "hardness") - col.itemR(halo, "add") - col.itemL(text="Options:") - col.itemR(halo, "texture") - col.itemR(halo, "vertex_normal") - col.itemR(halo, "xalpha") - col.itemR(halo, "shaded") - col.itemR(halo, "soft") + def poll(self, context): + mat = context.material + engine = context.scene.render_data.engine + return mat and (mat.type == 'HALO') and (engine in self.COMPAT_ENGINES) + + def draw(self, context): + layout = self.layout + + mat = context.material # dont use node material + halo = mat.halo + + split = layout.split() + + col = split.column() + col.itemR(mat, "diffuse_color", text="") + col.itemR(halo, "size") + col.itemR(halo, "hardness") + col.itemR(halo, "add") + col.itemL(text="Options:") + col.itemR(halo, "texture") + col.itemR(halo, "vertex_normal") + col.itemR(halo, "xalpha") + col.itemR(halo, "shaded") + col.itemR(halo, "soft") + + col = split.column() + col.itemR(halo, "ring") + sub = col.column() + sub.active = halo.ring + sub.itemR(halo, "rings") + sub.itemR(mat, "mirror_color", text="") + col.itemS() + col.itemR(halo, "lines") + sub = col.column() + sub.active = halo.lines + sub.itemR(halo, "line_number", text="Lines") + sub.itemR(mat, "specular_color", text="") + col.itemS() + col.itemR(halo, "star") + sub = col.column() + sub.active = halo.star + sub.itemR(halo, "star_tips") - col = split.column() - col.itemR(halo, "ring") - sub = col.column() - sub.active = halo.ring - sub.itemR(halo, "rings") - sub.itemR(mat, "mirror_color", text="") - col.itemS() - col.itemR(halo, "lines") - sub = col.column() - sub.active = halo.lines - sub.itemR(halo, "line_number", text="Lines") - sub.itemR(mat, "specular_color", text="") - col.itemS() - col.itemR(halo, "star") - sub = col.column() - sub.active = halo.star - sub.itemR(halo, "star_tips") - class MATERIAL_PT_flare(MaterialButtonsPanel): - bl_label= "Flare" - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - mat = context.material - engine = context.scene.render_data.engine - return mat and (mat.type == 'HALO') and (engine in self.COMPAT_ENGINES) - - def draw_header(self, context): - halo = context.material.halo + bl_label= "Flare" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - self.layout.itemR(halo, "flare_mode", text="") - - def draw(self, context): - layout = self.layout - - mat = context.material # dont use node material - halo = mat.halo + def poll(self, context): + mat = context.material + engine = context.scene.render_data.engine + return mat and (mat.type == 'HALO') and (engine in self.COMPAT_ENGINES) + + def draw_header(self, context): + halo = context.material.halo + + self.layout.itemR(halo, "flare_mode", text="") + + def draw(self, context): + layout = self.layout + + mat = context.material # dont use node material + halo = mat.halo + + layout.active = halo.flare_mode + + split = layout.split() + + col = split.column() + col.itemR(halo, "flare_size", text="Size") + col.itemR(halo, "flare_boost", text="Boost") + col.itemR(halo, "flare_seed", text="Seed") + col = split.column() + col.itemR(halo, "flares_sub", text="Subflares") + col.itemR(halo, "flare_subsize", text="Subsize") - layout.active = halo.flare_mode - - split = layout.split() - - col = split.column() - col.itemR(halo, "flare_size", text="Size") - col.itemR(halo, "flare_boost", text="Boost") - col.itemR(halo, "flare_seed", text="Seed") - col = split.column() - col.itemR(halo, "flares_sub", text="Subflares") - col.itemR(halo, "flare_subsize", text="Subsize") - bpy.types.register(MATERIAL_PT_context_material) bpy.types.register(MATERIAL_PT_preview) bpy.types.register(MATERIAL_PT_diffuse) @@ -624,122 +624,122 @@ bpy.types.register(MATERIAL_PT_shadow) # Volumetrics class VolumeButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "material" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "material" - def poll(self, context): - mat = context.material - engine = context.scene.render_data.engine - return mat and (mat.type == 'VOLUME') and (engine in self.COMPAT_ENGINES) + def poll(self, context): + mat = context.material + engine = context.scene.render_data.engine + return mat and (mat.type == 'VOLUME') and (engine in self.COMPAT_ENGINES) class MATERIAL_PT_volume_density(VolumeButtonsPanel): - bl_label = "Density" - bl_default_closed = False - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Density" + bl_default_closed = False + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - vol = context.material.volume # dont use node material - - split = layout.split() - row = split.row() - row.itemR(vol, "density") - row.itemR(vol, "density_scale") + vol = context.material.volume # dont use node material + + split = layout.split() + row = split.row() + row.itemR(vol, "density") + row.itemR(vol, "density_scale") class MATERIAL_PT_volume_shading(VolumeButtonsPanel): - bl_label = "Shading" - bl_default_closed = False - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Shading" + bl_default_closed = False + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - vol = context.material.volume # dont use node material - - split = layout.split() - - col = split.column() - col.itemR(vol, "scattering") - col.itemR(vol, "asymmetry") - col.itemR(vol, "transmission_color") - - col = split.column() - sub = col.column(align=True) - sub.itemR(vol, "emission") - sub.itemR(vol, "emission_color", text="") - sub = col.column(align=True) - sub.itemR(vol, "reflection") - sub.itemR(vol, "reflection_color", text="") + vol = context.material.volume # dont use node material + + split = layout.split() + + col = split.column() + col.itemR(vol, "scattering") + col.itemR(vol, "asymmetry") + col.itemR(vol, "transmission_color") + + col = split.column() + sub = col.column(align=True) + sub.itemR(vol, "emission") + sub.itemR(vol, "emission_color", text="") + sub = col.column(align=True) + sub.itemR(vol, "reflection") + sub.itemR(vol, "reflection_color", text="") class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): - bl_label = "Lighting" - bl_default_closed = False - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Lighting" + bl_default_closed = False + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - vol = context.material.volume # dont use node material - - split = layout.split() - - col = split.column() - col.itemR(vol, "lighting_mode", text="") - - col = split.column() - - if vol.lighting_mode == 'SHADED': - col.itemR(vol, "external_shadows") - col.itemR(vol, "light_cache") - sub = col.column() - sub.active = vol.light_cache - sub.itemR(vol, "cache_resolution") - elif vol.lighting_mode in ('MULTIPLE_SCATTERING', 'SHADED_PLUS_MULTIPLE_SCATTERING'): - sub = col.column() - sub.enabled = True - sub.active = False - sub.itemR(vol, "light_cache") - col.itemR(vol, "cache_resolution") - - sub = col.column(align=True) - sub.itemR(vol, "ms_diffusion") - sub.itemR(vol, "ms_spread") - sub.itemR(vol, "ms_intensity") + def draw(self, context): + layout = self.layout + + vol = context.material.volume # dont use node material + + split = layout.split() + + col = split.column() + col.itemR(vol, "lighting_mode", text="") + + col = split.column() + + if vol.lighting_mode == 'SHADED': + col.itemR(vol, "external_shadows") + col.itemR(vol, "light_cache") + sub = col.column() + sub.active = vol.light_cache + sub.itemR(vol, "cache_resolution") + elif vol.lighting_mode in ('MULTIPLE_SCATTERING', 'SHADED_PLUS_MULTIPLE_SCATTERING'): + sub = col.column() + sub.enabled = True + sub.active = False + sub.itemR(vol, "light_cache") + col.itemR(vol, "cache_resolution") + + sub = col.column(align=True) + sub.itemR(vol, "ms_diffusion") + sub.itemR(vol, "ms_spread") + sub.itemR(vol, "ms_intensity") class MATERIAL_PT_volume_transp(VolumeButtonsPanel): - bl_label= "Transparency" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label= "Transparency" + COMPAT_ENGINES = set(['BLENDER_RENDER']) + + def draw(self, context): + layout = self.layout + + mat = context.material # dont use node material + + layout.itemR(mat, "transparency_method", expand=True) - def draw(self, context): - layout = self.layout - - mat = context.material # dont use node material - - layout.itemR(mat, "transparency_method", expand=True) - class MATERIAL_PT_volume_integration(VolumeButtonsPanel): - bl_label = "Integration" - bl_default_closed = False - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Integration" + bl_default_closed = False + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - vol = context.material.volume # dont use node material - - split = layout.split() - - col = split.column() - col.itemL(text="Step Calculation:") - col.itemR(vol, "step_calculation", text="") - col = col.column(align=True) - col.itemR(vol, "step_size") - - col = split.column() - col.itemL() - col.itemR(vol, "depth_cutoff") + vol = context.material.volume # dont use node material + + split = layout.split() + + col = split.column() + col.itemL(text="Step Calculation:") + col.itemR(vol, "step_calculation", text="") + col = col.column(align=True) + col.itemR(vol, "step_size") + + col = split.column() + col.itemL() + col.itemR(vol, "depth_cutoff") bpy.types.register(MATERIAL_PT_volume_density) bpy.types.register(MATERIAL_PT_volume_shading) diff --git a/release/scripts/ui/buttons_object.py b/release/scripts/ui/buttons_object.py index 213fbf17dd6..a5705277a6e 100644 --- a/release/scripts/ui/buttons_object.py +++ b/release/scripts/ui/buttons_object.py @@ -2,219 +2,219 @@ import bpy class ObjectButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "object" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "object" class OBJECT_PT_context_object(ObjectButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def draw(self, context): - layout = self.layout - - ob = context.object - - row = layout.row() - row.itemL(text="", icon='ICON_OBJECT_DATA') - row.itemR(ob, "name", text="") + def draw(self, context): + layout = self.layout + + ob = context.object + + row = layout.row() + row.itemL(text="", icon='ICON_OBJECT_DATA') + row.itemR(ob, "name", text="") class OBJECT_PT_transform(ObjectButtonsPanel): - bl_label = "Transform" + bl_label = "Transform" + + def draw(self, context): + layout = self.layout + + ob = context.object + + row = layout.row() + + row.column().itemR(ob, "location") + if ob.rotation_mode == 'QUATERNION': + row.column().itemR(ob, "rotation_quaternion", text="Rotation") + elif ob.rotation_mode == 'AXIS_ANGLE': + #row.column().itemL(text="Rotation") + #row.column().itemR(pchan, "rotation_angle", text="Angle") + #row.column().itemR(pchan, "rotation_axis", text="Axis") + row.column().itemR(ob, "rotation_axis_angle", text="Rotation") + else: + row.column().itemR(ob, "rotation_euler", text="Rotation") + + row.column().itemR(ob, "scale") + + layout.itemR(ob, "rotation_mode") - def draw(self, context): - layout = self.layout - - ob = context.object - - row = layout.row() - - row.column().itemR(ob, "location") - if ob.rotation_mode == 'QUATERNION': - row.column().itemR(ob, "rotation_quaternion", text="Rotation") - elif ob.rotation_mode == 'AXIS_ANGLE': - #row.column().itemL(text="Rotation") - #row.column().itemR(pchan, "rotation_angle", text="Angle") - #row.column().itemR(pchan, "rotation_axis", text="Axis") - row.column().itemR(ob, "rotation_axis_angle", text="Rotation") - else: - row.column().itemR(ob, "rotation_euler", text="Rotation") - - row.column().itemR(ob, "scale") - - layout.itemR(ob, "rotation_mode") - class OBJECT_PT_transform_locks(ObjectButtonsPanel): - bl_label = "Transform Locks" - bl_default_closed = True - - def draw(self, context): - layout = self.layout - - ob = context.object - - row = layout.row() - - col = row.column() - col.itemR(ob, "lock_location") - - col = row.column() - if ob.rotation_mode in ('QUATERNION', 'AXIS_ANGLE'): - col.itemR(ob, "lock_rotations_4d", text="Lock Rotation") - if ob.lock_rotations_4d: - col.itemR(ob, "lock_rotation_w", text="W") - col.itemR(ob, "lock_rotation", text="") - else: - col.itemR(ob, "lock_rotation", text="Rotation") - - row.column().itemR(ob, "lock_scale") + bl_label = "Transform Locks" + bl_default_closed = True + + def draw(self, context): + layout = self.layout + + ob = context.object + + row = layout.row() + + col = row.column() + col.itemR(ob, "lock_location") + + col = row.column() + if ob.rotation_mode in ('QUATERNION', 'AXIS_ANGLE'): + col.itemR(ob, "lock_rotations_4d", text="Lock Rotation") + if ob.lock_rotations_4d: + col.itemR(ob, "lock_rotation_w", text="W") + col.itemR(ob, "lock_rotation", text="") + else: + col.itemR(ob, "lock_rotation", text="Rotation") + + row.column().itemR(ob, "lock_scale") class OBJECT_PT_relations(ObjectButtonsPanel): - bl_label = "Relations" + bl_label = "Relations" - def draw(self, context): - layout = self.layout - - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemR(ob, "layers") - col.itemS() - col.itemR(ob, "pass_index") + ob = context.object - col = split.column() - col.itemL(text="Parent:") - col.itemR(ob, "parent", text="") + split = layout.split() - sub = col.column() - split = sub.split(percentage=0.3) - split.itemL(text="Type:") - split.itemR(ob, "parent_type", text="") - parent = ob.parent - if parent and ob.parent_type == 'BONE' and parent.type == 'ARMATURE': - sub.item_pointerR(ob, "parent_bone", parent.data, "bones", text="") - sub.active = parent != None + col = split.column() + col.itemR(ob, "layers") + col.itemS() + col.itemR(ob, "pass_index") + + col = split.column() + col.itemL(text="Parent:") + col.itemR(ob, "parent", text="") + + sub = col.column() + split = sub.split(percentage=0.3) + split.itemL(text="Type:") + split.itemR(ob, "parent_type", text="") + parent = ob.parent + if parent and ob.parent_type == 'BONE' and parent.type == 'ARMATURE': + sub.item_pointerR(ob, "parent_bone", parent.data, "bones", text="") + sub.active = parent != None class OBJECT_PT_groups(ObjectButtonsPanel): - bl_label = "Groups" + bl_label = "Groups" - def draw(self, context): - layout = self.layout - - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - split.item_menu_enumO("object.group_add", "group", text="Add to Group") - split.itemL() + ob = context.object - for group in bpy.data.groups: - if ob.name in group.objects: - col = layout.column(align=True) + split = layout.split() + split.item_menu_enumO("object.group_add", "group", text="Add to Group") + split.itemL() - col.set_context_pointer("group", group) + for group in bpy.data.groups: + if ob.name in group.objects: + col = layout.column(align=True) - row = col.box().row() - row.itemR(group, "name", text="") - row.itemO("object.group_remove", text="", icon='VICON_X') + col.set_context_pointer("group", group) - split = col.box().split() - split.column().itemR(group, "layer", text="Dupli") - split.column().itemR(group, "dupli_offset", text="") + row = col.box().row() + row.itemR(group, "name", text="") + row.itemO("object.group_remove", text="", icon='VICON_X') + + split = col.box().split() + split.column().itemR(group, "layer", text="Dupli") + split.column().itemR(group, "dupli_offset", text="") class OBJECT_PT_display(ObjectButtonsPanel): - bl_label = "Display" + bl_label = "Display" - def draw(self, context): - layout = self.layout - - ob = context.object - - split = layout.split() - col = split.column() - col.itemR(ob, "max_draw_type", text="Type") - col = split.column() - row = col.row() - row.itemR(ob, "draw_bounds", text="Bounds") - sub = row.row() - sub.active = ob.draw_bounds - sub.itemR(ob, "draw_bounds_type", text="") + def draw(self, context): + layout = self.layout - flow = layout.column_flow() - flow.itemR(ob, "draw_name", text="Name") - flow.itemR(ob, "draw_axis", text="Axis") - flow.itemR(ob, "draw_wire", text="Wire") - flow.itemR(ob, "draw_texture_space", text="Texture Space") - flow.itemR(ob, "x_ray", text="X-Ray") - flow.itemR(ob, "draw_transparent", text="Transparency") + ob = context.object + + split = layout.split() + col = split.column() + col.itemR(ob, "max_draw_type", text="Type") + col = split.column() + row = col.row() + row.itemR(ob, "draw_bounds", text="Bounds") + sub = row.row() + sub.active = ob.draw_bounds + sub.itemR(ob, "draw_bounds_type", text="") + + flow = layout.column_flow() + flow.itemR(ob, "draw_name", text="Name") + flow.itemR(ob, "draw_axis", text="Axis") + flow.itemR(ob, "draw_wire", text="Wire") + flow.itemR(ob, "draw_texture_space", text="Texture Space") + flow.itemR(ob, "x_ray", text="X-Ray") + flow.itemR(ob, "draw_transparent", text="Transparency") class OBJECT_PT_duplication(ObjectButtonsPanel): - bl_label = "Duplication" + bl_label = "Duplication" - def draw(self, context): - layout = self.layout - - ob = context.object + def draw(self, context): + layout = self.layout - layout.itemR(ob, "dupli_type", expand=True) + ob = context.object - if ob.dupli_type == 'FRAMES': - split = layout.split() - - col = split.column(align=True) - col.itemR(ob, "dupli_frames_start", text="Start") - col.itemR(ob, "dupli_frames_end", text="End") - - col = split.column(align=True) - col.itemR(ob, "dupli_frames_on", text="On") - col.itemR(ob, "dupli_frames_off", text="Off") - - layout.itemR(ob, "dupli_frames_no_speed", text="No Speed") + layout.itemR(ob, "dupli_type", expand=True) - elif ob.dupli_type == 'VERTS': - layout.itemR(ob, "dupli_verts_rotation", text="Rotation") + if ob.dupli_type == 'FRAMES': + split = layout.split() - elif ob.dupli_type == 'FACES': - row = layout.row() - row.itemR(ob, "dupli_faces_scale", text="Scale") - row.itemR(ob, "dupli_faces_inherit_scale", text="Inherit Scale") + col = split.column(align=True) + col.itemR(ob, "dupli_frames_start", text="Start") + col.itemR(ob, "dupli_frames_end", text="End") - elif ob.dupli_type == 'GROUP': - layout.itemR(ob, "dupli_group", text="Group") + col = split.column(align=True) + col.itemR(ob, "dupli_frames_on", text="On") + col.itemR(ob, "dupli_frames_off", text="Off") + + layout.itemR(ob, "dupli_frames_no_speed", text="No Speed") + + elif ob.dupli_type == 'VERTS': + layout.itemR(ob, "dupli_verts_rotation", text="Rotation") + + elif ob.dupli_type == 'FACES': + row = layout.row() + row.itemR(ob, "dupli_faces_scale", text="Scale") + row.itemR(ob, "dupli_faces_inherit_scale", text="Inherit Scale") + + elif ob.dupli_type == 'GROUP': + layout.itemR(ob, "dupli_group", text="Group") class OBJECT_PT_animation(ObjectButtonsPanel): - bl_label = "Animation" + bl_label = "Animation" - def draw(self, context): - layout = self.layout - - ob = context.object - - split = layout.split() - - col = split.column() - col.itemL(text="Time Offset:") - col.itemR(ob, "time_offset_edit", text="Edit") - row = col.row() - row.itemR(ob, "time_offset_particle", text="Particle") - row.active = len(ob.particle_systems) != 0 - row = col.row() - row.itemR(ob, "time_offset_parent", text="Parent") - row.active = ob.parent != None - row = col.row() - row.itemR(ob, "slow_parent") - row.active = ob.parent != None - col.itemR(ob, "time_offset", text="Offset") + def draw(self, context): + layout = self.layout - col = split.column() - col.itemL(text="Track:") - col.itemR(ob, "track", text="") - col.itemR(ob, "track_axis", text="Axis") - col.itemR(ob, "up_axis", text="Up Axis") - row = col.row() - row.itemR(ob, "track_override_parent", text="Override Parent") - row.active = ob.parent != None + ob = context.object + + split = layout.split() + + col = split.column() + col.itemL(text="Time Offset:") + col.itemR(ob, "time_offset_edit", text="Edit") + row = col.row() + row.itemR(ob, "time_offset_particle", text="Particle") + row.active = len(ob.particle_systems) != 0 + row = col.row() + row.itemR(ob, "time_offset_parent", text="Parent") + row.active = ob.parent != None + row = col.row() + row.itemR(ob, "slow_parent") + row.active = ob.parent != None + col.itemR(ob, "time_offset", text="Offset") + + col = split.column() + col.itemL(text="Track:") + col.itemR(ob, "track", text="") + col.itemR(ob, "track_axis", text="Axis") + col.itemR(ob, "up_axis", text="Up Axis") + row = col.row() + row.itemR(ob, "track_override_parent", text="Override Parent") + row.active = ob.parent != None bpy.types.register(OBJECT_PT_context_object) bpy.types.register(OBJECT_PT_transform) diff --git a/release/scripts/ui/buttons_object_constraint.py b/release/scripts/ui/buttons_object_constraint.py index 40fc4f7343d..de3db7cbe40 100644 --- a/release/scripts/ui/buttons_object_constraint.py +++ b/release/scripts/ui/buttons_object_constraint.py @@ -2,750 +2,750 @@ import bpy class ConstraintButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "constraint" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "constraint" - def draw_constraint(self, context, con): - layout = self.layout - - box = layout.template_constraint(con) + def draw_constraint(self, context, con): + layout = self.layout - if box: - # match enum type to our functions, avoids a lookup table. - getattr(self, con.type)(context, box, con) - - # show/key buttons here are most likely obsolete now, with - # keyframing functionality being part of every button - if con.type not in ('RIGID_BODY_JOINT', 'NULL'): - box.itemR(con, "influence") - - def space_template(self, layout, con, target=True, owner=True): - if target or owner: - row = layout.row() + box = layout.template_constraint(con) - row.itemL(text="Convert:") + if box: + # match enum type to our functions, avoids a lookup table. + getattr(self, con.type)(context, box, con) - if target: - row.itemR(con, "target_space", text="") + # show/key buttons here are most likely obsolete now, with + # keyframing functionality being part of every button + if con.type not in ('RIGID_BODY_JOINT', 'NULL'): + box.itemR(con, "influence") - if target and owner: - row.itemL(icon='ICON_ARROW_LEFTRIGHT') + def space_template(self, layout, con, target=True, owner=True): + if target or owner: + row = layout.row() - if owner: - row.itemR(con, "owner_space", text="") - - def target_template(self, layout, con, subtargets=True): - layout.itemR(con, "target") # XXX limiting settings for only 'curves' or some type of object - - if con.target and subtargets: - if con.target.type == 'ARMATURE': - layout.item_pointerR(con, "subtarget", con.target.data, "bones", text="Bone") - - if con.type == 'COPY_LOCATION': - row = layout.row() - row.itemL(text="Head/Tail:") - row.itemR(con, "head_tail", text="") - elif con.target.type in ('MESH', 'LATTICE'): - layout.item_pointerR(con, "subtarget", con.target, "vertex_groups", text="Vertex Group") + row.itemL(text="Convert:") - def ik_template(self, layout, con): - # only used for iTaSC - layout.itemR(con, "pole_target") - - if con.pole_target and con.pole_target.type == 'ARMATURE': - layout.item_pointerR(con, "pole_subtarget", con.pole_target.data, "bones", text="Bone") - - if con.pole_target: - row = layout.row() - row.itemL() - row.itemR(con, "pole_angle") - - split = layout.split(percentage=0.33) - col = split.column() - col.itemR(con, "tail") - col.itemR(con, "stretch") + if target: + row.itemR(con, "target_space", text="") - col = split.column() - col.itemR(con, "chain_length") - col.itemR(con, "targetless") + if target and owner: + row.itemL(icon='ICON_ARROW_LEFTRIGHT') - def CHILD_OF(self, context, layout, con): - self.target_template(layout, con) + if owner: + row.itemR(con, "owner_space", text="") - split = layout.split() - - col = split.column() - col.itemL(text="Location:") - col.itemR(con, "locationx", text="X") - col.itemR(con, "locationy", text="Y") - col.itemR(con, "locationz", text="Z") - - col = split.column() - col.itemL(text="Rotation:") - col.itemR(con, "rotationx", text="X") - col.itemR(con, "rotationy", text="Y") - col.itemR(con, "rotationz", text="Z") - - col = split.column() - col.itemL(text="Scale:") - col.itemR(con, "sizex", text="X") - col.itemR(con, "sizey", text="Y") - col.itemR(con, "sizez", text="Z") - - row = layout.row() - row.itemO("constraint.childof_set_inverse") - row.itemO("constraint.childof_clear_inverse") - - def TRACK_TO(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemL(text="To:") - row.itemR(con, "track", expand=True) - - row = layout.row() - #row.itemR(con, "up", text="Up", expand=True) # XXX: up and expand don't play nice together - row.itemR(con, "up", text="Up") - row.itemR(con, "target_z") - - self.space_template(layout, con) - - def IK(self, context, layout, con): - if context.object.pose.ik_solver == "ITASC": - layout.itemR(con, "ik_type") - getattr(self, "IK_"+con.ik_type)(context, layout, con) - else: - # Legacy IK constraint - self.target_template(layout, con) - layout.itemR(con, "pole_target") - - if con.pole_target and con.pole_target.type == 'ARMATURE': - layout.item_pointerR(con, "pole_subtarget", con.pole_target.data, "bones", text="Bone") - - if con.pole_target: - row = layout.row() - row.itemL() - row.itemR(con, "pole_angle") - - split = layout.split() - col = split.column() - col.itemR(con, "tail") - col.itemR(con, "stretch") + def target_template(self, layout, con, subtargets=True): + layout.itemR(con, "target") # XXX limiting settings for only 'curves' or some type of object - col = split.column() - col.itemR(con, "iterations") - col.itemR(con, "chain_length") - - split = layout.split() - col = split.column() - col.itemL() - col.itemR(con, "targetless") - col.itemR(con, "rotation") + if con.target and subtargets: + if con.target.type == 'ARMATURE': + layout.item_pointerR(con, "subtarget", con.target.data, "bones", text="Bone") - col = split.column() - col.itemL(text="Weight:") - col.itemR(con, "weight", text="Position", slider=True) - sub = col.column() - sub.active = con.rotation - sub.itemR(con, "orient_weight", text="Rotation", slider=True) + if con.type == 'COPY_LOCATION': + row = layout.row() + row.itemL(text="Head/Tail:") + row.itemR(con, "head_tail", text="") + elif con.target.type in ('MESH', 'LATTICE'): + layout.item_pointerR(con, "subtarget", con.target, "vertex_groups", text="Vertex Group") - def IK_COPY_POSE(self, context, layout, con): - self.target_template(layout, con) - self.ik_template(layout, con) - - row = layout.row() - row.itemL(text="Axis Ref:") - row.itemR(con, "axis_reference", expand=True) - split = layout.split(percentage=0.33) - split.row().itemR(con, "position") - row = split.row() - row.itemR(con, "weight", text="Weight", slider=True) - row.active = con.position - split = layout.split(percentage=0.33) - row = split.row() - row.itemL(text="Lock:") - row = split.row() - row.itemR(con, "pos_lock_x", text="X") - row.itemR(con, "pos_lock_y", text="Y") - row.itemR(con, "pos_lock_z", text="Z") - split.active = con.position - - split = layout.split(percentage=0.33) - split.row().itemR(con, "rotation") - row = split.row() - row.itemR(con, "orient_weight", text="Weight", slider=True) - row.active = con.rotation - split = layout.split(percentage=0.33) - row = split.row() - row.itemL(text="Lock:") - row = split.row() - row.itemR(con, "rot_lock_x", text="X") - row.itemR(con, "rot_lock_y", text="Y") - row.itemR(con, "rot_lock_z", text="Z") - split.active = con.rotation - - def IK_DISTANCE(self, context, layout, con): - self.target_template(layout, con) - self.ik_template(layout, con) + def ik_template(self, layout, con): + # only used for iTaSC + layout.itemR(con, "pole_target") - layout.itemR(con, "limit_mode") - row = layout.row() - row.itemR(con, "weight", text="Weight", slider=True) - row.itemR(con, "distance", text="Distance", slider=True) + if con.pole_target and con.pole_target.type == 'ARMATURE': + layout.item_pointerR(con, "pole_subtarget", con.pole_target.data, "bones", text="Bone") - def FOLLOW_PATH(self, context, layout, con): - self.target_template(layout, con) - - split = layout.split() - - col = split.column() - col.itemR(con, "use_curve_follow") - col.itemR(con, "use_curve_radius") - - col = split.column() - col.itemR(con, "use_fixed_position") - if con.use_fixed_position: - col.itemR(con, "offset_factor", text="Offset") - else: - col.itemR(con, "offset") - - row = layout.row() - row.itemL(text="Forward:") - row.itemR(con, "forward", expand=True) - - row = layout.row() - row.itemR(con, "up", text="Up") - row.itemL() - - def LIMIT_ROTATION(self, context, layout, con): - - split = layout.split() - - col = split.column() - col.itemR(con, "use_limit_x") - sub = col.column() - sub.active = con.use_limit_x - sub.itemR(con, "minimum_x", text="Min") - sub.itemR(con, "maximum_x", text="Max") - - col = split.column() - col.itemR(con, "use_limit_y") - sub = col.column() - sub.active = con.use_limit_y - sub.itemR(con, "minimum_y", text="Min") - sub.itemR(con, "maximum_y", text="Max") - - col = split.column() - col.itemR(con, "use_limit_z") - sub = col.column() - sub.active = con.use_limit_z - sub.itemR(con, "minimum_z", text="Min") - sub.itemR(con, "maximum_z", text="Max") - - row = layout.row() - row.itemR(con, "limit_transform") - row.itemL() - - row = layout.row() - row.itemL(text="Convert:") - row.itemR(con, "owner_space", text="") - - def LIMIT_LOCATION(self, context, layout, con): - split = layout.split() - - col = split.column() - col.itemR(con, "use_minimum_x") - sub = col.column() - sub.active = con.use_minimum_x - sub.itemR(con, "minimum_x", text="") - col.itemR(con, "use_maximum_x") - sub = col.column() - sub.active = con.use_maximum_x - sub.itemR(con, "maximum_x", text="") - - col = split.column() - col.itemR(con, "use_minimum_y") - sub = col.column() - sub.active = con.use_minimum_y - sub.itemR(con, "minimum_y", text="") - col.itemR(con, "use_maximum_y") - sub = col.column() - sub.active = con.use_maximum_y - sub.itemR(con, "maximum_y", text="") - - col = split.column() - col.itemR(con, "use_minimum_z") - sub = col.column() - sub.active = con.use_minimum_z - sub.itemR(con, "minimum_z", text="") - col.itemR(con, "use_maximum_z") - sub = col.column() - sub.active = con.use_maximum_z - sub.itemR(con, "maximum_z", text="") - - row = layout.row() - row.itemR(con, "limit_transform") - row.itemL() - - row = layout.row() - row.itemL(text="Convert:") - row.itemR(con, "owner_space", text="") - - def LIMIT_SCALE(self, context, layout, con): - split = layout.split() + if con.pole_target: + row = layout.row() + row.itemL() + row.itemR(con, "pole_angle") - col = split.column() - col.itemR(con, "use_minimum_x") - sub = col.column() - sub.active = con.use_minimum_x - sub.itemR(con, "minimum_x", text="") - col.itemR(con, "use_maximum_x") - sub = col.column() - sub.active = con.use_maximum_x - sub.itemR(con, "maximum_x", text="") - - col = split.column() - col.itemR(con, "use_minimum_y") - sub = col.column() - sub.active = con.use_minimum_y - sub.itemR(con, "minimum_y", text="") - col.itemR(con, "use_maximum_y") - sub = col.column() - sub.active = con.use_maximum_y - sub.itemR(con, "maximum_y", text="") - - col = split.column() - col.itemR(con, "use_minimum_z") - sub = col.column() - sub.active = con.use_minimum_z - sub.itemR(con, "minimum_z", text="") - col.itemR(con, "use_maximum_z") - sub = col.column() - sub.active = con.use_maximum_z - sub.itemR(con, "maximum_z", text="") - - row = layout.row() - row.itemR(con, "limit_transform") - row.itemL() - - row = layout.row() - row.itemL(text="Convert:") - row.itemR(con, "owner_space", text="") - - def COPY_ROTATION(self, context, layout, con): - self.target_template(layout, con) - - split = layout.split() - - col = split.column() - col.itemR(con, "rotate_like_x", text="X") - sub = col.column() - sub.active = con.rotate_like_x - sub.itemR(con, "invert_x", text="Invert") - - col = split.column() - col.itemR(con, "rotate_like_y", text="Y") - sub = col.column() - sub.active = con.rotate_like_y - sub.itemR(con, "invert_y", text="Invert") - - col = split.column() - col.itemR(con, "rotate_like_z", text="Z") - sub = col.column() - sub.active = con.rotate_like_z - sub.itemR(con, "invert_z", text="Invert") + split = layout.split(percentage=0.33) + col = split.column() + col.itemR(con, "tail") + col.itemR(con, "stretch") - layout.itemR(con, "offset") - - self.space_template(layout, con) - - def COPY_LOCATION(self, context, layout, con): - self.target_template(layout, con) - - split = layout.split() - - col = split.column() - col.itemR(con, "locate_like_x", text="X") - sub = col.column() - sub.active = con.locate_like_x - sub.itemR(con, "invert_x", text="Invert") - - col = split.column() - col.itemR(con, "locate_like_y", text="Y") - sub = col.column() - sub.active = con.locate_like_y - sub.itemR(con, "invert_y", text="Invert") - - col = split.column() - col.itemR(con, "locate_like_z", text="Z") - sub = col.column() - sub.active = con.locate_like_z - sub.itemR(con, "invert_z", text="Invert") + col = split.column() + col.itemR(con, "chain_length") + col.itemR(con, "targetless") - layout.itemR(con, "offset") - - self.space_template(layout, con) - - def COPY_SCALE(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row(align=True) - row.itemR(con, "size_like_x", text="X") - row.itemR(con, "size_like_y", text="Y") - row.itemR(con, "size_like_z", text="Z") + def CHILD_OF(self, context, layout, con): + self.target_template(layout, con) - layout.itemR(con, "offset") - - self.space_template(layout, con) - - #def SCRIPT(self, context, layout, con): - - def ACTION(self, context, layout, con): - self.target_template(layout, con) - - layout.itemR(con, "action") - layout.itemR(con, "transform_channel") + split = layout.split() - split = layout.split() - - col = split.column(align=True) - col.itemR(con, "start_frame", text="Start") - col.itemR(con, "end_frame", text="End") - - col = split.column(align=True) - col.itemR(con, "minimum", text="Min") - col.itemR(con, "maximum", text="Max") - - row = layout.row() - row.itemL(text="Convert:") - row.itemR(con, "owner_space", text="") - - def LOCKED_TRACK(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemL(text="To:") - row.itemR(con, "track", expand=True) - - row = layout.row() - row.itemL(text="Lock:") - row.itemR(con, "locked", expand=True) - - def LIMIT_DISTANCE(self, context, layout, con): - self.target_template(layout, con) - - col = layout.column(align=True); - col.itemR(con, "distance") - col.itemO("constraint.limitdistance_reset") - - row = layout.row() - row.itemL(text="Clamp Region:") - row.itemR(con, "limit_mode", text="") - - def STRETCH_TO(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemR(con, "original_length", text="Rest Length") - row.itemO("constraint.stretchto_reset", text="Reset") - - col = layout.column() - col.itemR(con, "bulge", text="Volume Variation") - - row = layout.row() - row.itemL(text="Volume:") - row.itemR(con, "volume", expand=True) - row.itemL(text="Plane:") - row.itemR(con, "keep_axis", expand=True) - - def FLOOR(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemR(con, "sticky") - row.itemR(con, "use_rotation") - - layout.itemR(con, "offset") - - row = layout.row() - row.itemL(text="Min/Max:") - row.itemR(con, "floor_location", expand=True) - - def RIGID_BODY_JOINT(self, context, layout, con): - self.target_template(layout, con) - - layout.itemR(con, "pivot_type") - layout.itemR(con, "child") - - row = layout.row() - row.itemR(con, "disable_linked_collision", text="No Collision") - row.itemR(con, "draw_pivot", text="Display Pivot") - - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Pivot:") - col.itemR(con, "pivot_x", text="X") - col.itemR(con, "pivot_y", text="Y") - col.itemR(con, "pivot_z", text="Z") - - col = split.column(align=True) - col.itemL(text="Axis:") - col.itemR(con, "axis_x", text="X") - col.itemR(con, "axis_y", text="Y") - col.itemR(con, "axis_z", text="Z") - - #Missing: Limit arrays (not wrapped in RNA yet) - - def CLAMP_TO(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemL(text="Main Axis:") - row.itemR(con, "main_axis", expand=True) - - row = layout.row() - row.itemR(con, "cyclic") - - def TRANSFORM(self, context, layout, con): - self.target_template(layout, con) - - layout.itemR(con, "extrapolate_motion", text="Extrapolate") - - split = layout.split() - - col = split.column() - col.itemL(text="Source:") - col.row().itemR(con, "map_from", expand=True) - - sub = col.row(align=True) - sub.itemL(text="X:") - sub.itemR(con, "from_min_x", text="") - sub.itemR(con, "from_max_x", text="") - - sub = col.row(align=True) - sub.itemL(text="Y:") - sub.itemR(con, "from_min_y", text="") - sub.itemR(con, "from_max_y", text="") - - sub = col.row(align=True) - sub.itemL(text="Z:") - sub.itemR(con, "from_min_z", text="") - sub.itemR(con, "from_max_z", text="") - - split = layout.split() - - col = split.column() - col.itemL(text="Destination:") - col.row().itemR(con, "map_to", expand=True) + col = split.column() + col.itemL(text="Location:") + col.itemR(con, "locationx", text="X") + col.itemR(con, "locationy", text="Y") + col.itemR(con, "locationz", text="Z") + + col = split.column() + col.itemL(text="Rotation:") + col.itemR(con, "rotationx", text="X") + col.itemR(con, "rotationy", text="Y") + col.itemR(con, "rotationz", text="Z") + + col = split.column() + col.itemL(text="Scale:") + col.itemR(con, "sizex", text="X") + col.itemR(con, "sizey", text="Y") + col.itemR(con, "sizez", text="Z") + + row = layout.row() + row.itemO("constraint.childof_set_inverse") + row.itemO("constraint.childof_clear_inverse") + + def TRACK_TO(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemL(text="To:") + row.itemR(con, "track", expand=True) + + row = layout.row() + #row.itemR(con, "up", text="Up", expand=True) # XXX: up and expand don't play nice together + row.itemR(con, "up", text="Up") + row.itemR(con, "target_z") + + self.space_template(layout, con) + + def IK(self, context, layout, con): + if context.object.pose.ik_solver == "ITASC": + layout.itemR(con, "ik_type") + getattr(self, "IK_"+con.ik_type)(context, layout, con) + else: + # Legacy IK constraint + self.target_template(layout, con) + layout.itemR(con, "pole_target") + + if con.pole_target and con.pole_target.type == 'ARMATURE': + layout.item_pointerR(con, "pole_subtarget", con.pole_target.data, "bones", text="Bone") + + if con.pole_target: + row = layout.row() + row.itemL() + row.itemR(con, "pole_angle") + + split = layout.split() + col = split.column() + col.itemR(con, "tail") + col.itemR(con, "stretch") + + col = split.column() + col.itemR(con, "iterations") + col.itemR(con, "chain_length") + + split = layout.split() + col = split.column() + col.itemL() + col.itemR(con, "targetless") + col.itemR(con, "rotation") + + col = split.column() + col.itemL(text="Weight:") + col.itemR(con, "weight", text="Position", slider=True) + sub = col.column() + sub.active = con.rotation + sub.itemR(con, "orient_weight", text="Rotation", slider=True) + + def IK_COPY_POSE(self, context, layout, con): + self.target_template(layout, con) + self.ik_template(layout, con) + + row = layout.row() + row.itemL(text="Axis Ref:") + row.itemR(con, "axis_reference", expand=True) + split = layout.split(percentage=0.33) + split.row().itemR(con, "position") + row = split.row() + row.itemR(con, "weight", text="Weight", slider=True) + row.active = con.position + split = layout.split(percentage=0.33) + row = split.row() + row.itemL(text="Lock:") + row = split.row() + row.itemR(con, "pos_lock_x", text="X") + row.itemR(con, "pos_lock_y", text="Y") + row.itemR(con, "pos_lock_z", text="Z") + split.active = con.position + + split = layout.split(percentage=0.33) + split.row().itemR(con, "rotation") + row = split.row() + row.itemR(con, "orient_weight", text="Weight", slider=True) + row.active = con.rotation + split = layout.split(percentage=0.33) + row = split.row() + row.itemL(text="Lock:") + row = split.row() + row.itemR(con, "rot_lock_x", text="X") + row.itemR(con, "rot_lock_y", text="Y") + row.itemR(con, "rot_lock_z", text="Z") + split.active = con.rotation + + def IK_DISTANCE(self, context, layout, con): + self.target_template(layout, con) + self.ik_template(layout, con) + + layout.itemR(con, "limit_mode") + row = layout.row() + row.itemR(con, "weight", text="Weight", slider=True) + row.itemR(con, "distance", text="Distance", slider=True) + + def FOLLOW_PATH(self, context, layout, con): + self.target_template(layout, con) + + split = layout.split() + + col = split.column() + col.itemR(con, "use_curve_follow") + col.itemR(con, "use_curve_radius") + + col = split.column() + col.itemR(con, "use_fixed_position") + if con.use_fixed_position: + col.itemR(con, "offset_factor", text="Offset") + else: + col.itemR(con, "offset") + + row = layout.row() + row.itemL(text="Forward:") + row.itemR(con, "forward", expand=True) + + row = layout.row() + row.itemR(con, "up", text="Up") + row.itemL() + + def LIMIT_ROTATION(self, context, layout, con): + + split = layout.split() + + col = split.column() + col.itemR(con, "use_limit_x") + sub = col.column() + sub.active = con.use_limit_x + sub.itemR(con, "minimum_x", text="Min") + sub.itemR(con, "maximum_x", text="Max") + + col = split.column() + col.itemR(con, "use_limit_y") + sub = col.column() + sub.active = con.use_limit_y + sub.itemR(con, "minimum_y", text="Min") + sub.itemR(con, "maximum_y", text="Max") + + col = split.column() + col.itemR(con, "use_limit_z") + sub = col.column() + sub.active = con.use_limit_z + sub.itemR(con, "minimum_z", text="Min") + sub.itemR(con, "maximum_z", text="Max") + + row = layout.row() + row.itemR(con, "limit_transform") + row.itemL() + + row = layout.row() + row.itemL(text="Convert:") + row.itemR(con, "owner_space", text="") + + def LIMIT_LOCATION(self, context, layout, con): + split = layout.split() + + col = split.column() + col.itemR(con, "use_minimum_x") + sub = col.column() + sub.active = con.use_minimum_x + sub.itemR(con, "minimum_x", text="") + col.itemR(con, "use_maximum_x") + sub = col.column() + sub.active = con.use_maximum_x + sub.itemR(con, "maximum_x", text="") + + col = split.column() + col.itemR(con, "use_minimum_y") + sub = col.column() + sub.active = con.use_minimum_y + sub.itemR(con, "minimum_y", text="") + col.itemR(con, "use_maximum_y") + sub = col.column() + sub.active = con.use_maximum_y + sub.itemR(con, "maximum_y", text="") + + col = split.column() + col.itemR(con, "use_minimum_z") + sub = col.column() + sub.active = con.use_minimum_z + sub.itemR(con, "minimum_z", text="") + col.itemR(con, "use_maximum_z") + sub = col.column() + sub.active = con.use_maximum_z + sub.itemR(con, "maximum_z", text="") + + row = layout.row() + row.itemR(con, "limit_transform") + row.itemL() + + row = layout.row() + row.itemL(text="Convert:") + row.itemR(con, "owner_space", text="") + + def LIMIT_SCALE(self, context, layout, con): + split = layout.split() + + col = split.column() + col.itemR(con, "use_minimum_x") + sub = col.column() + sub.active = con.use_minimum_x + sub.itemR(con, "minimum_x", text="") + col.itemR(con, "use_maximum_x") + sub = col.column() + sub.active = con.use_maximum_x + sub.itemR(con, "maximum_x", text="") + + col = split.column() + col.itemR(con, "use_minimum_y") + sub = col.column() + sub.active = con.use_minimum_y + sub.itemR(con, "minimum_y", text="") + col.itemR(con, "use_maximum_y") + sub = col.column() + sub.active = con.use_maximum_y + sub.itemR(con, "maximum_y", text="") + + col = split.column() + col.itemR(con, "use_minimum_z") + sub = col.column() + sub.active = con.use_minimum_z + sub.itemR(con, "minimum_z", text="") + col.itemR(con, "use_maximum_z") + sub = col.column() + sub.active = con.use_maximum_z + sub.itemR(con, "maximum_z", text="") + + row = layout.row() + row.itemR(con, "limit_transform") + row.itemL() + + row = layout.row() + row.itemL(text="Convert:") + row.itemR(con, "owner_space", text="") + + def COPY_ROTATION(self, context, layout, con): + self.target_template(layout, con) + + split = layout.split() + + col = split.column() + col.itemR(con, "rotate_like_x", text="X") + sub = col.column() + sub.active = con.rotate_like_x + sub.itemR(con, "invert_x", text="Invert") + + col = split.column() + col.itemR(con, "rotate_like_y", text="Y") + sub = col.column() + sub.active = con.rotate_like_y + sub.itemR(con, "invert_y", text="Invert") + + col = split.column() + col.itemR(con, "rotate_like_z", text="Z") + sub = col.column() + sub.active = con.rotate_like_z + sub.itemR(con, "invert_z", text="Invert") + + layout.itemR(con, "offset") + + self.space_template(layout, con) + + def COPY_LOCATION(self, context, layout, con): + self.target_template(layout, con) + + split = layout.split() + + col = split.column() + col.itemR(con, "locate_like_x", text="X") + sub = col.column() + sub.active = con.locate_like_x + sub.itemR(con, "invert_x", text="Invert") + + col = split.column() + col.itemR(con, "locate_like_y", text="Y") + sub = col.column() + sub.active = con.locate_like_y + sub.itemR(con, "invert_y", text="Invert") + + col = split.column() + col.itemR(con, "locate_like_z", text="Z") + sub = col.column() + sub.active = con.locate_like_z + sub.itemR(con, "invert_z", text="Invert") + + layout.itemR(con, "offset") + + self.space_template(layout, con) + + def COPY_SCALE(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row(align=True) + row.itemR(con, "size_like_x", text="X") + row.itemR(con, "size_like_y", text="Y") + row.itemR(con, "size_like_z", text="Z") + + layout.itemR(con, "offset") + + self.space_template(layout, con) + + #def SCRIPT(self, context, layout, con): + + def ACTION(self, context, layout, con): + self.target_template(layout, con) + + layout.itemR(con, "action") + layout.itemR(con, "transform_channel") + + split = layout.split() + + col = split.column(align=True) + col.itemR(con, "start_frame", text="Start") + col.itemR(con, "end_frame", text="End") + + col = split.column(align=True) + col.itemR(con, "minimum", text="Min") + col.itemR(con, "maximum", text="Max") + + row = layout.row() + row.itemL(text="Convert:") + row.itemR(con, "owner_space", text="") + + def LOCKED_TRACK(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemL(text="To:") + row.itemR(con, "track", expand=True) + + row = layout.row() + row.itemL(text="Lock:") + row.itemR(con, "locked", expand=True) + + def LIMIT_DISTANCE(self, context, layout, con): + self.target_template(layout, con) + + col = layout.column(align=True); + col.itemR(con, "distance") + col.itemO("constraint.limitdistance_reset") + + row = layout.row() + row.itemL(text="Clamp Region:") + row.itemR(con, "limit_mode", text="") + + def STRETCH_TO(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemR(con, "original_length", text="Rest Length") + row.itemO("constraint.stretchto_reset", text="Reset") + + col = layout.column() + col.itemR(con, "bulge", text="Volume Variation") + + row = layout.row() + row.itemL(text="Volume:") + row.itemR(con, "volume", expand=True) + row.itemL(text="Plane:") + row.itemR(con, "keep_axis", expand=True) + + def FLOOR(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemR(con, "sticky") + row.itemR(con, "use_rotation") + + layout.itemR(con, "offset") + + row = layout.row() + row.itemL(text="Min/Max:") + row.itemR(con, "floor_location", expand=True) + + def RIGID_BODY_JOINT(self, context, layout, con): + self.target_template(layout, con) + + layout.itemR(con, "pivot_type") + layout.itemR(con, "child") + + row = layout.row() + row.itemR(con, "disable_linked_collision", text="No Collision") + row.itemR(con, "draw_pivot", text="Display Pivot") + + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Pivot:") + col.itemR(con, "pivot_x", text="X") + col.itemR(con, "pivot_y", text="Y") + col.itemR(con, "pivot_z", text="Z") + + col = split.column(align=True) + col.itemL(text="Axis:") + col.itemR(con, "axis_x", text="X") + col.itemR(con, "axis_y", text="Y") + col.itemR(con, "axis_z", text="Z") + + #Missing: Limit arrays (not wrapped in RNA yet) + + def CLAMP_TO(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemL(text="Main Axis:") + row.itemR(con, "main_axis", expand=True) + + row = layout.row() + row.itemR(con, "cyclic") + + def TRANSFORM(self, context, layout, con): + self.target_template(layout, con) + + layout.itemR(con, "extrapolate_motion", text="Extrapolate") + + split = layout.split() + + col = split.column() + col.itemL(text="Source:") + col.row().itemR(con, "map_from", expand=True) + + sub = col.row(align=True) + sub.itemL(text="X:") + sub.itemR(con, "from_min_x", text="") + sub.itemR(con, "from_max_x", text="") + + sub = col.row(align=True) + sub.itemL(text="Y:") + sub.itemR(con, "from_min_y", text="") + sub.itemR(con, "from_max_y", text="") + + sub = col.row(align=True) + sub.itemL(text="Z:") + sub.itemR(con, "from_min_z", text="") + sub.itemR(con, "from_max_z", text="") + + split = layout.split() + + col = split.column() + col.itemL(text="Destination:") + col.row().itemR(con, "map_to", expand=True) + + sub = col.row(align=True) + sub.itemR(con, "map_to_x_from", text="") + sub.itemR(con, "to_min_x", text="") + sub.itemR(con, "to_max_x", text="") + + sub = col.row(align=True) + sub.itemR(con, "map_to_y_from", text="") + sub.itemR(con, "to_min_y", text="") + sub.itemR(con, "to_max_y", text="") + + sub = col.row(align=True) + sub.itemR(con, "map_to_z_from", text="") + sub.itemR(con, "to_min_z", text="") + sub.itemR(con, "to_max_z", text="") + + self.space_template(layout, con) + + def SHRINKWRAP (self, context, layout, con): + self.target_template(layout, con) + + layout.itemR(con, "distance") + layout.itemR(con, "shrinkwrap_type") + + if con.shrinkwrap_type == 'PROJECT': + row = layout.row(align=True) + row.itemR(con, "axis_x") + row.itemR(con, "axis_y") + row.itemR(con, "axis_z") + + def DAMPED_TRACK(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemL(text="To:") + row.itemR(con, "track", expand=True) - sub = col.row(align=True) - sub.itemR(con, "map_to_x_from", text="") - sub.itemR(con, "to_min_x", text="") - sub.itemR(con, "to_max_x", text="") - - sub = col.row(align=True) - sub.itemR(con, "map_to_y_from", text="") - sub.itemR(con, "to_min_y", text="") - sub.itemR(con, "to_max_y", text="") - - sub = col.row(align=True) - sub.itemR(con, "map_to_z_from", text="") - sub.itemR(con, "to_min_z", text="") - sub.itemR(con, "to_max_z", text="") - - self.space_template(layout, con) - - def SHRINKWRAP (self, context, layout, con): - self.target_template(layout, con) - - layout.itemR(con, "distance") - layout.itemR(con, "shrinkwrap_type") - - if con.shrinkwrap_type == 'PROJECT': - row = layout.row(align=True) - row.itemR(con, "axis_x") - row.itemR(con, "axis_y") - row.itemR(con, "axis_z") - - def DAMPED_TRACK(self, context, layout, con): - self.target_template(layout, con) - - row = layout.row() - row.itemL(text="To:") - row.itemR(con, "track", expand=True) - class OBJECT_PT_constraints(ConstraintButtonsPanel): - bl_label = "Constraints" - bl_context = "constraint" + bl_label = "Constraints" + bl_context = "constraint" - def poll(self, context): - return (context.object) - - def draw(self, context): - layout = self.layout - ob = context.object + def poll(self, context): + return (context.object) - row = layout.row() - row.item_menu_enumO("object.constraint_add", "type") - row.itemL(); + def draw(self, context): + layout = self.layout + ob = context.object - for con in ob.constraints: - self.draw_constraint(context, con) + row = layout.row() + row.item_menu_enumO("object.constraint_add", "type") + row.itemL(); + + for con in ob.constraints: + self.draw_constraint(context, con) class BONE_PT_inverse_kinematics(ConstraintButtonsPanel): - bl_label = "Inverse Kinematics" - bl_default_closed = True - bl_context = "bone_constraint" - - def poll(self, context): - ob = context.object - bone = context.bone + bl_label = "Inverse Kinematics" + bl_default_closed = True + bl_context = "bone_constraint" - if ob and bone: - pchan = ob.pose.pose_channels[bone.name] - return pchan.has_ik - - return False + def poll(self, context): + ob = context.object + bone = context.bone - def draw(self, context): - layout = self.layout - - ob = context.object - bone = context.bone - pchan = ob.pose.pose_channels[bone.name] + if ob and bone: + pchan = ob.pose.pose_channels[bone.name] + return pchan.has_ik - row = layout.row() - row.itemR(ob.pose, "ik_solver") + return False - split = layout.split(percentage=0.25) - split.itemR(pchan, "ik_dof_x", text="X") - row = split.row() - row.itemR(pchan, "ik_stiffness_x", text="Stiffness", slider=True) - row.active = pchan.ik_dof_x + def draw(self, context): + layout = self.layout - split = layout.split(percentage=0.25) - row = split.row() - row.itemR(pchan, "ik_limit_x", text="Limit") - row.active = pchan.ik_dof_x - row = split.row(align=True) - row.itemR(pchan, "ik_min_x", text="") - row.itemR(pchan, "ik_max_x", text="") - row.active = pchan.ik_dof_x and pchan.ik_limit_x + ob = context.object + bone = context.bone + pchan = ob.pose.pose_channels[bone.name] - split = layout.split(percentage=0.25) - split.itemR(pchan, "ik_dof_y", text="Y") - row = split.row() - row.itemR(pchan, "ik_stiffness_y", text="Stiffness", slider=True) - row.active = pchan.ik_dof_y + row = layout.row() + row.itemR(ob.pose, "ik_solver") - split = layout.split(percentage=0.25) - row = split.row() - row.itemR(pchan, "ik_limit_y", text="Limit") - row.active = pchan.ik_dof_y - row = split.row(align=True) - row.itemR(pchan, "ik_min_y", text="") - row.itemR(pchan, "ik_max_y", text="") - row.active = pchan.ik_dof_y and pchan.ik_limit_y + split = layout.split(percentage=0.25) + split.itemR(pchan, "ik_dof_x", text="X") + row = split.row() + row.itemR(pchan, "ik_stiffness_x", text="Stiffness", slider=True) + row.active = pchan.ik_dof_x - split = layout.split(percentage=0.25) - split.itemR(pchan, "ik_dof_z", text="Z") - row = split.row() - row.itemR(pchan, "ik_stiffness_z", text="Stiffness", slider=True) - row.active = pchan.ik_dof_z + split = layout.split(percentage=0.25) + row = split.row() + row.itemR(pchan, "ik_limit_x", text="Limit") + row.active = pchan.ik_dof_x + row = split.row(align=True) + row.itemR(pchan, "ik_min_x", text="") + row.itemR(pchan, "ik_max_x", text="") + row.active = pchan.ik_dof_x and pchan.ik_limit_x - split = layout.split(percentage=0.25) - row = split.row() - row.itemR(pchan, "ik_limit_z", text="Limit") - row.active = pchan.ik_dof_z - row = split.row(align=True) - row.itemR(pchan, "ik_min_z", text="") - row.itemR(pchan, "ik_max_z", text="") - row.active = pchan.ik_dof_z and pchan.ik_limit_z - split = layout.split() - split.itemR(pchan, "ik_stretch", text="Stretch", slider=True) - split.itemL() + split = layout.split(percentage=0.25) + split.itemR(pchan, "ik_dof_y", text="Y") + row = split.row() + row.itemR(pchan, "ik_stiffness_y", text="Stiffness", slider=True) + row.active = pchan.ik_dof_y - if ob.pose.ik_solver == "ITASC": - row = layout.row() - row.itemR(pchan, "ik_rot_control", text="Control Rotation") - row.itemR(pchan, "ik_rot_weight", text="Weight", slider=True) - # not supported yet - #row = layout.row() - #row.itemR(pchan, "ik_lin_control", text="Joint Size") - #row.itemR(pchan, "ik_lin_weight", text="Weight", slider=True) + split = layout.split(percentage=0.25) + row = split.row() + row.itemR(pchan, "ik_limit_y", text="Limit") + row.active = pchan.ik_dof_y + row = split.row(align=True) + row.itemR(pchan, "ik_min_y", text="") + row.itemR(pchan, "ik_max_y", text="") + row.active = pchan.ik_dof_y and pchan.ik_limit_y + + split = layout.split(percentage=0.25) + split.itemR(pchan, "ik_dof_z", text="Z") + row = split.row() + row.itemR(pchan, "ik_stiffness_z", text="Stiffness", slider=True) + row.active = pchan.ik_dof_z + + split = layout.split(percentage=0.25) + row = split.row() + row.itemR(pchan, "ik_limit_z", text="Limit") + row.active = pchan.ik_dof_z + row = split.row(align=True) + row.itemR(pchan, "ik_min_z", text="") + row.itemR(pchan, "ik_max_z", text="") + row.active = pchan.ik_dof_z and pchan.ik_limit_z + split = layout.split() + split.itemR(pchan, "ik_stretch", text="Stretch", slider=True) + split.itemL() + + if ob.pose.ik_solver == "ITASC": + row = layout.row() + row.itemR(pchan, "ik_rot_control", text="Control Rotation") + row.itemR(pchan, "ik_rot_weight", text="Weight", slider=True) + # not supported yet + #row = layout.row() + #row.itemR(pchan, "ik_lin_control", text="Joint Size") + #row.itemR(pchan, "ik_lin_weight", text="Weight", slider=True) class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): - bl_label = "iTaSC parameters" - bl_default_closed = True - bl_context = "bone_constraint" - - def poll(self, context): - ob = context.object - bone = context.bone + bl_label = "iTaSC parameters" + bl_default_closed = True + bl_context = "bone_constraint" - if ob and bone: - pchan = ob.pose.pose_channels[bone.name] - return pchan.has_ik and ob.pose.ik_solver == "ITASC" and ob.pose.ik_param - - return False + def poll(self, context): + ob = context.object + bone = context.bone - def draw(self, context): - layout = self.layout + if ob and bone: + pchan = ob.pose.pose_channels[bone.name] + return pchan.has_ik and ob.pose.ik_solver == "ITASC" and ob.pose.ik_param - ob = context.object - itasc = ob.pose.ik_param + return False - layout.itemR(itasc, "mode", expand=True) - simulation = itasc.mode == "SIMULATION" - if simulation: - layout.itemL(text="Reiteration:") - layout.itemR(itasc, "reiteration", expand=True) - - flow = layout.column_flow() - flow.itemR(itasc, "precision", text="Prec") - flow.itemR(itasc, "num_iter", text="Iter") - flow.active = not simulation or itasc.reiteration != "NEVER" + def draw(self, context): + layout = self.layout - if simulation: - layout.itemR(itasc, "auto_step") - row = layout.row() - if itasc.auto_step: - row.itemR(itasc, "min_step", text="Min") - row.itemR(itasc, "max_step", text="Max") - else: - row.itemR(itasc, "num_step") - - layout.itemR(itasc, "solver") - if simulation: - layout.itemR(itasc, "feedback") - layout.itemR(itasc, "max_velocity") - if itasc.solver == "DLS": - row = layout.row() - row.itemR(itasc, "dampmax", text="Damp", slider=True) - row.itemR(itasc, "dampeps", text="Eps", slider=True) + ob = context.object + itasc = ob.pose.ik_param + + layout.itemR(itasc, "mode", expand=True) + simulation = itasc.mode == "SIMULATION" + if simulation: + layout.itemL(text="Reiteration:") + layout.itemR(itasc, "reiteration", expand=True) + + flow = layout.column_flow() + flow.itemR(itasc, "precision", text="Prec") + flow.itemR(itasc, "num_iter", text="Iter") + flow.active = not simulation or itasc.reiteration != "NEVER" + + if simulation: + layout.itemR(itasc, "auto_step") + row = layout.row() + if itasc.auto_step: + row.itemR(itasc, "min_step", text="Min") + row.itemR(itasc, "max_step", text="Max") + else: + row.itemR(itasc, "num_step") + + layout.itemR(itasc, "solver") + if simulation: + layout.itemR(itasc, "feedback") + layout.itemR(itasc, "max_velocity") + if itasc.solver == "DLS": + row = layout.row() + row.itemR(itasc, "dampmax", text="Damp", slider=True) + row.itemR(itasc, "dampeps", text="Eps", slider=True) class BONE_PT_constraints(ConstraintButtonsPanel): - bl_label = "Constraints" - bl_context = "bone_constraint" + bl_label = "Constraints" + bl_context = "bone_constraint" - def poll(self, context): - ob = context.object - return (ob and ob.type == 'ARMATURE' and context.bone) - - def draw(self, context): - layout = self.layout - - ob = context.object - pchan = ob.pose.pose_channels[context.bone.name] + def poll(self, context): + ob = context.object + return (ob and ob.type == 'ARMATURE' and context.bone) - row = layout.row() - row.item_menu_enumO("pose.constraint_add", "type") - row.itemL(); + def draw(self, context): + layout = self.layout - for con in pchan.constraints: - self.draw_constraint(context, con) + ob = context.object + pchan = ob.pose.pose_channels[context.bone.name] + + row = layout.row() + row.item_menu_enumO("pose.constraint_add", "type") + row.itemL(); + + for con in pchan.constraints: + self.draw_constraint(context, con) bpy.types.register(OBJECT_PT_constraints) bpy.types.register(BONE_PT_iksolver_itasc) diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/buttons_particle.py index ad9a82c6824..7633787b69b 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/buttons_particle.py @@ -7,938 +7,938 @@ from buttons_physics_common import basic_force_field_settings_ui from buttons_physics_common import basic_force_field_falloff_ui def particle_panel_enabled(context, psys): - return psys.point_cache.baked==False and psys.edited==False and (not context.particle_system_editable) - + return psys.point_cache.baked==False and psys.edited==False and (not context.particle_system_editable) + def particle_panel_poll(context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return psys.settings.type in ('EMITTER', 'REACTOR', 'HAIR') + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + return psys.settings.type in ('EMITTER', 'REACTOR', 'HAIR') class ParticleButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "particle" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "particle" - def poll(self, context): - return particle_panel_poll(context) + def poll(self, context): + return particle_panel_poll(context) class PARTICLE_PT_particles(ParticleButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def poll(self, context): - return (context.particle_system or context.object) + def poll(self, context): + return (context.particle_system or context.object) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - ob = context.object - psys = context.particle_system + ob = context.object + psys = context.particle_system - if ob: - row = layout.row() + if ob: + row = layout.row() - row.template_list(ob, "particle_systems", ob, "active_particle_system_index", rows=2) + row.template_list(ob, "particle_systems", ob, "active_particle_system_index", rows=2) - col = row.column(align=True) - col.itemO("object.particle_system_add", icon='ICON_ZOOMIN', text="") - col.itemO("object.particle_system_remove", icon='ICON_ZOOMOUT', text="") + col = row.column(align=True) + col.itemO("object.particle_system_add", icon='ICON_ZOOMIN', text="") + col.itemO("object.particle_system_remove", icon='ICON_ZOOMOUT', text="") - if psys and not psys.settings: - split = layout.split(percentage=0.32) + if psys and not psys.settings: + split = layout.split(percentage=0.32) + + col = split.column() + col.itemL(text="Name:") + col.itemL(text="Settings:") + + col = split.column() + col.itemR(psys, "name", text="") + col.template_ID(psys, "settings", new="particle.new") + elif psys: + part = psys.settings + + split = layout.split(percentage=0.32) + col = split.column() + col.itemL(text="Name:") + if part.type in ('EMITTER', 'REACTOR', 'HAIR'): + col.itemL(text="Settings:") + col.itemL(text="Type:") + + col = split.column() + col.itemR(psys, "name", text="") + if part.type in ('EMITTER', 'REACTOR', 'HAIR'): + col.template_ID(psys, "settings", new="particle.new") + + #row = layout.row() + #row.itemL(text="Viewport") + #row.itemL(text="Render") + + if part: + if part.type not in ('EMITTER', 'REACTOR', 'HAIR'): + layout.itemL(text="No settings for fluid particles") + return + + row=col.row() + row.enabled = particle_panel_enabled(context, psys) + row.itemR(part, "type", text="") + row.itemR(psys, "seed") + + split = layout.split(percentage=0.65) + if part.type=='HAIR': + if psys.edited==True: + split.itemO("particle.edited_clear", text="Free Edit") + else: + split.itemL(text="") + row = split.row() + row.enabled = particle_panel_enabled(context, psys) + row.itemR(part, "hair_step") + if psys.edited==True: + if psys.global_hair: + layout.itemO("particle.connect_hair") + layout.itemL(text="Hair is disconnected.") + else: + layout.itemO("particle.disconnect_hair") + layout.itemL(text="") + elif part.type=='REACTOR': + split.enabled = particle_panel_enabled(context, psys) + split.itemR(psys, "reactor_target_object") + split.itemR(psys, "reactor_target_particle_system", text="Particle System") - col = split.column() - col.itemL(text="Name:") - col.itemL(text="Settings:") - - col = split.column() - col.itemR(psys, "name", text="") - col.template_ID(psys, "settings", new="particle.new") - elif psys: - part = psys.settings - - split = layout.split(percentage=0.32) - col = split.column() - col.itemL(text="Name:") - if part.type in ('EMITTER', 'REACTOR', 'HAIR'): - col.itemL(text="Settings:") - col.itemL(text="Type:") - - col = split.column() - col.itemR(psys, "name", text="") - if part.type in ('EMITTER', 'REACTOR', 'HAIR'): - col.template_ID(psys, "settings", new="particle.new") - - #row = layout.row() - #row.itemL(text="Viewport") - #row.itemL(text="Render") - - if part: - if part.type not in ('EMITTER', 'REACTOR', 'HAIR'): - layout.itemL(text="No settings for fluid particles") - return - - row=col.row() - row.enabled = particle_panel_enabled(context, psys) - row.itemR(part, "type", text="") - row.itemR(psys, "seed") - - split = layout.split(percentage=0.65) - if part.type=='HAIR': - if psys.edited==True: - split.itemO("particle.edited_clear", text="Free Edit") - else: - split.itemL(text="") - row = split.row() - row.enabled = particle_panel_enabled(context, psys) - row.itemR(part, "hair_step") - if psys.edited==True: - if psys.global_hair: - layout.itemO("particle.connect_hair") - layout.itemL(text="Hair is disconnected.") - else: - layout.itemO("particle.disconnect_hair") - layout.itemL(text="") - elif part.type=='REACTOR': - split.enabled = particle_panel_enabled(context, psys) - split.itemR(psys, "reactor_target_object") - split.itemR(psys, "reactor_target_particle_system", text="Particle System") - class PARTICLE_PT_emission(ParticleButtonsPanel): - bl_label = "Emission" - - def poll(self, context): - if particle_panel_poll(context): - return not context.particle_system.point_cache.external - else: - return False - - def draw(self, context): - layout = self.layout + bl_label = "Emission" - psys = context.particle_system - part = psys.settings - - layout.enabled = particle_panel_enabled(context, psys) and not psys.multiple_caches - - row = layout.row() - row.active = part.distribution != 'GRID' - row.itemR(part, "amount") - - if part.type != 'HAIR': - split = layout.split() - - col = split.column(align=True) - col.itemR(part, "start") - col.itemR(part, "end") + def poll(self, context): + if particle_panel_poll(context): + return not context.particle_system.point_cache.external + else: + return False - col = split.column(align=True) - col.itemR(part, "lifetime") - col.itemR(part, "random_lifetime", slider=True) - - layout.row().itemL(text="Emit From:") - - row = layout.row() - row.itemR(part, "emit_from", expand=True) - row = layout.row() - row.itemR(part, "trand") - if part.distribution!='GRID': - row.itemR(part, "even_distribution") - - if part.emit_from=='FACE' or part.emit_from=='VOLUME': - row = layout.row() - row.itemR(part, "distribution", expand=True) - - row = layout.row() + def draw(self, context): + layout = self.layout - if part.distribution=='JIT': - row.itemR(part, "userjit", text="Particles/Face") - row.itemR(part, "jitter_factor", text="Jittering Amount", slider=True) - elif part.distribution=='GRID': - row.itemR(part, "grid_resolution") + psys = context.particle_system + part = psys.settings + + layout.enabled = particle_panel_enabled(context, psys) and not psys.multiple_caches + + row = layout.row() + row.active = part.distribution != 'GRID' + row.itemR(part, "amount") + + if part.type != 'HAIR': + split = layout.split() + + col = split.column(align=True) + col.itemR(part, "start") + col.itemR(part, "end") + + col = split.column(align=True) + col.itemR(part, "lifetime") + col.itemR(part, "random_lifetime", slider=True) + + layout.row().itemL(text="Emit From:") + + row = layout.row() + row.itemR(part, "emit_from", expand=True) + row = layout.row() + row.itemR(part, "trand") + if part.distribution!='GRID': + row.itemR(part, "even_distribution") + + if part.emit_from=='FACE' or part.emit_from=='VOLUME': + row = layout.row() + row.itemR(part, "distribution", expand=True) + + row = layout.row() + + if part.distribution=='JIT': + row.itemR(part, "userjit", text="Particles/Face") + row.itemR(part, "jitter_factor", text="Jittering Amount", slider=True) + elif part.distribution=='GRID': + row.itemR(part, "grid_resolution") class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel): - bl_label = "Hair dynamics" - bl_default_closed = True - - def poll(self, context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return psys.settings.type == 'HAIR' - - def draw_header(self, context): - #cloth = context.cloth.collision_settings - - #self.layout.active = cloth_panel_enabled(context.cloth) - #self.layout.itemR(cloth, "enable_collision", text="") - psys = context.particle_system - self.layout.itemR(psys, "hair_dynamics", text="") - - def draw(self, context): - layout = self.layout + bl_label = "Hair dynamics" + bl_default_closed = True - psys = context.particle_system - part = psys.settings - cloth = psys.cloth.settings - - layout.enabled = psys.hair_dynamics - - split = layout.split() - - col = split.column() - col.itemL(text="Material:") - sub = col.column(align=True) - sub.itemR(cloth, "pin_stiffness", text="Stiffness") - sub.itemR(cloth, "mass") - sub.itemR(cloth, "bending_stiffness", text="Bending") - sub.itemR(cloth, "internal_friction", slider="True") - - col = split.column() + def poll(self, context): + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + return psys.settings.type == 'HAIR' + + def draw_header(self, context): + #cloth = context.cloth.collision_settings + + #self.layout.active = cloth_panel_enabled(context.cloth) + #self.layout.itemR(cloth, "enable_collision", text="") + psys = context.particle_system + self.layout.itemR(psys, "hair_dynamics", text="") + + def draw(self, context): + layout = self.layout + + psys = context.particle_system + part = psys.settings + cloth = psys.cloth.settings + + layout.enabled = psys.hair_dynamics + + split = layout.split() + + col = split.column() + col.itemL(text="Material:") + sub = col.column(align=True) + sub.itemR(cloth, "pin_stiffness", text="Stiffness") + sub.itemR(cloth, "mass") + sub.itemR(cloth, "bending_stiffness", text="Bending") + sub.itemR(cloth, "internal_friction", slider="True") + + col = split.column() + + col.itemL(text="Damping:") + sub = col.column(align=True) + sub.itemR(cloth, "spring_damping", text="Spring") + sub.itemR(cloth, "air_damping", text="Air") + + col.itemL(text="Quality:") + col.itemR(cloth, "quality", text="Steps",slider=True) - col.itemL(text="Damping:") - sub = col.column(align=True) - sub.itemR(cloth, "spring_damping", text="Spring") - sub.itemR(cloth, "air_damping", text="Air") - - col.itemL(text="Quality:") - col.itemR(cloth, "quality", text="Steps",slider=True) - class PARTICLE_PT_cache(ParticleButtonsPanel): - bl_label = "Cache" - bl_default_closed = True - - def poll(self, context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - phystype = psys.settings.physics_type - if phystype == 'NO' or phystype == 'KEYED': - return False - return psys.settings.type in ('EMITTER', 'REACTOR') or (psys.settings.type == 'HAIR' and psys.hair_dynamics) + bl_label = "Cache" + bl_default_closed = True - def draw(self, context): - layout = self.layout + def poll(self, context): + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + phystype = psys.settings.physics_type + if phystype == 'NO' or phystype == 'KEYED': + return False + return psys.settings.type in ('EMITTER', 'REACTOR') or (psys.settings.type == 'HAIR' and psys.hair_dynamics) - psys = context.particle_system - - point_cache_ui(self, psys.point_cache, particle_panel_enabled(context, psys), not psys.hair_dynamics, 0) + def draw(self, context): + layout = self.layout + + psys = context.particle_system + + point_cache_ui(self, psys.point_cache, particle_panel_enabled(context, psys), not psys.hair_dynamics, 0) class PARTICLE_PT_velocity(ParticleButtonsPanel): - bl_label = "Velocity" - - def poll(self, context): - if particle_panel_poll(context): - psys = context.particle_system - return psys.settings.physics_type != 'BOIDS' and not psys.point_cache.external - else: - return False + bl_label = "Velocity" - def draw(self, context): - layout = self.layout + def poll(self, context): + if particle_panel_poll(context): + psys = context.particle_system + return psys.settings.physics_type != 'BOIDS' and not psys.point_cache.external + else: + return False + + def draw(self, context): + layout = self.layout + + psys = context.particle_system + part = psys.settings + + layout.enabled = particle_panel_enabled(context, psys) + + split = layout.split() + + sub = split.column() + sub.itemL(text="Emitter Geometry:") + sub.itemR(part, "normal_factor") + subsub = sub.column(align=True) + subsub.itemR(part, "tangent_factor") + subsub.itemR(part, "tangent_phase", slider=True) + + sub = split.column() + sub.itemL(text="Emitter Object") + sub.itemR(part, "object_aligned_factor", text="") + + layout.row().itemL(text="Other:") + split = layout.split() + sub = split.column() + if part.emit_from=='PARTICLE': + sub.itemR(part, "particle_factor") + else: + sub.itemR(part, "object_factor", slider=True) + sub = split.column() + sub.itemR(part, "random_factor") + + #if part.type=='REACTOR': + # sub.itemR(part, "reactor_factor") + # sub.itemR(part, "reaction_shape", slider=True) - psys = context.particle_system - part = psys.settings - - layout.enabled = particle_panel_enabled(context, psys) - - split = layout.split() - - sub = split.column() - sub.itemL(text="Emitter Geometry:") - sub.itemR(part, "normal_factor") - subsub = sub.column(align=True) - subsub.itemR(part, "tangent_factor") - subsub.itemR(part, "tangent_phase", slider=True) - - sub = split.column() - sub.itemL(text="Emitter Object") - sub.itemR(part, "object_aligned_factor", text="") - - layout.row().itemL(text="Other:") - split = layout.split() - sub = split.column() - if part.emit_from=='PARTICLE': - sub.itemR(part, "particle_factor") - else: - sub.itemR(part, "object_factor", slider=True) - sub = split.column() - sub.itemR(part, "random_factor") - - #if part.type=='REACTOR': - # sub.itemR(part, "reactor_factor") - # sub.itemR(part, "reaction_shape", slider=True) - class PARTICLE_PT_rotation(ParticleButtonsPanel): - bl_label = "Rotation" - - def poll(self, context): - if particle_panel_poll(context): - psys = context.particle_system - return psys.settings.physics_type != 'BOIDS' and not psys.point_cache.external - else: - return False + bl_label = "Rotation" - def draw(self, context): - layout = self.layout + def poll(self, context): + if particle_panel_poll(context): + psys = context.particle_system + return psys.settings.physics_type != 'BOIDS' and not psys.point_cache.external + else: + return False - psys = context.particle_system - part = psys.settings - - layout.enabled = particle_panel_enabled(context, psys) - - split = layout.split() - split.itemL(text="Initial Rotation:") - split.itemR(part, "rotation_dynamic") - split = layout.split() - - sub = split.column(align=True) - sub.itemR(part, "rotation_mode", text="") - sub.itemR(part, "random_rotation_factor", slider=True, text="Random") - - sub = split.column(align=True) - sub.itemR(part, "phase_factor", slider=True) - sub.itemR(part, "random_phase_factor", text="Random", slider=True) + def draw(self, context): + layout = self.layout + + psys = context.particle_system + part = psys.settings + + layout.enabled = particle_panel_enabled(context, psys) + + split = layout.split() + split.itemL(text="Initial Rotation:") + split.itemR(part, "rotation_dynamic") + split = layout.split() + + sub = split.column(align=True) + sub.itemR(part, "rotation_mode", text="") + sub.itemR(part, "random_rotation_factor", slider=True, text="Random") + + sub = split.column(align=True) + sub.itemR(part, "phase_factor", slider=True) + sub.itemR(part, "random_phase_factor", text="Random", slider=True) + + layout.row().itemL(text="Angular Velocity:") + layout.row().itemR(part, "angular_velocity_mode", expand=True) + split = layout.split() + + sub = split.column() + + sub.itemR(part, "angular_velocity_factor", text="") - layout.row().itemL(text="Angular Velocity:") - layout.row().itemR(part, "angular_velocity_mode", expand=True) - split = layout.split() - - sub = split.column() - - sub.itemR(part, "angular_velocity_factor", text="") - class PARTICLE_PT_physics(ParticleButtonsPanel): - bl_label = "Physics" - - def poll(self, context): - if particle_panel_poll(context): - return not context.particle_system.point_cache.external - else: - return False + bl_label = "Physics" - def draw(self, context): - layout = self.layout + def poll(self, context): + if particle_panel_poll(context): + return not context.particle_system.point_cache.external + else: + return False - psys = context.particle_system - part = psys.settings - - layout.enabled = particle_panel_enabled(context, psys) + def draw(self, context): + layout = self.layout - row = layout.row() - row.itemR(part, "physics_type", expand=True) - if part.physics_type != 'NO': - row = layout.row() - col = row.column(align=True) - col.itemR(part, "particle_size") - col.itemR(part, "random_size", slider=True) - col = row.column(align=True) - col.itemR(part, "mass") - col.itemR(part, "sizemass", text="Multiply mass with size") - - if part.physics_type == 'NEWTON': - split = layout.split() - sub = split.column() - - sub.itemL(text="Forces:") - sub.itemR(part, "brownian_factor") - sub.itemR(part, "drag_factor", slider=True) - sub.itemR(part, "damp_factor", slider=True) - sub = split.column() - sub.itemR(part, "size_deflect") - sub.itemR(part, "die_on_collision") - sub.itemR(part, "integrator") - sub.itemR(part, "time_tweak") - - elif part.physics_type == 'KEYED': - split = layout.split() - sub = split.column() - - row = layout.row() - col = row.column() - col.active = not psys.keyed_timing - col.itemR(part, "keyed_loops", text="Loops") - row.itemR(psys, "keyed_timing", text="Use Timing") - - layout.itemL(text="Keys:") - elif part.physics_type=='BOIDS': - boids = part.boids - + psys = context.particle_system + part = psys.settings - row = layout.row() - row.itemR(boids, "allow_flight") - row.itemR(boids, "allow_land") - row.itemR(boids, "allow_climb") - - split = layout.split() - - sub = split.column() - col = sub.column(align=True) - col.active = boids.allow_flight - col.itemR(boids, "air_max_speed") - col.itemR(boids, "air_min_speed", slider="True") - col.itemR(boids, "air_max_acc", slider="True") - col.itemR(boids, "air_max_ave", slider="True") - col.itemR(boids, "air_personal_space") - row = col.row() - row.active = (boids.allow_land or boids.allow_climb) and boids.allow_flight - row.itemR(boids, "landing_smoothness") - - sub = split.column() - col = sub.column(align=True) - col.active = boids.allow_land or boids.allow_climb - col.itemR(boids, "land_max_speed") - col.itemR(boids, "land_jump_speed") - col.itemR(boids, "land_max_acc", slider="True") - col.itemR(boids, "land_max_ave", slider="True") - col.itemR(boids, "land_personal_space") - col.itemR(boids, "land_stick_force") - - row = layout.row() - - col = row.column(align=True) - col.itemL(text="Battle:") - col.itemR(boids, "health") - col.itemR(boids, "strength") - col.itemR(boids, "aggression") - col.itemR(boids, "accuracy") - col.itemR(boids, "range") - - col = row.column() - col.itemL(text="Misc:") - col.itemR(boids, "banking", slider=True) - col.itemR(boids, "height", slider=True) - - if part.physics_type=='KEYED' or part.physics_type=='BOIDS': - if part.physics_type=='BOIDS': - layout.itemL(text="Relations:") - - row = layout.row() - row.template_list(psys, "targets", psys, "active_particle_target_index") - - col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.new_target", icon='ICON_ZOOMIN', text="") - subcol.itemO("particle.remove_target", icon='ICON_ZOOMOUT', text="") - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.target_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("particle.target_move_down", icon='VICON_MOVE_DOWN', text="") - - key = psys.active_particle_target - if key: - row = layout.row() - if part.physics_type=='KEYED': - col = row.column() - #doesn't work yet - #col.red_alert = key.valid - col.itemR(key, "object", text="") - col.itemR(key, "system", text="System") - col = row.column(); - col.active = psys.keyed_timing - col.itemR(key, "time") - col.itemR(key, "duration") - else: - subrow = row.row() - #doesn't work yet - #subrow.red_alert = key.valid - subrow.itemR(key, "object", text="") - subrow.itemR(key, "system", text="System") - - layout.itemR(key, "mode", expand=True) + layout.enabled = particle_panel_enabled(context, psys) + + row = layout.row() + row.itemR(part, "physics_type", expand=True) + if part.physics_type != 'NO': + row = layout.row() + col = row.column(align=True) + col.itemR(part, "particle_size") + col.itemR(part, "random_size", slider=True) + col = row.column(align=True) + col.itemR(part, "mass") + col.itemR(part, "sizemass", text="Multiply mass with size") + + if part.physics_type == 'NEWTON': + split = layout.split() + sub = split.column() + + sub.itemL(text="Forces:") + sub.itemR(part, "brownian_factor") + sub.itemR(part, "drag_factor", slider=True) + sub.itemR(part, "damp_factor", slider=True) + sub = split.column() + sub.itemR(part, "size_deflect") + sub.itemR(part, "die_on_collision") + sub.itemR(part, "integrator") + sub.itemR(part, "time_tweak") + + elif part.physics_type == 'KEYED': + split = layout.split() + sub = split.column() + + row = layout.row() + col = row.column() + col.active = not psys.keyed_timing + col.itemR(part, "keyed_loops", text="Loops") + row.itemR(psys, "keyed_timing", text="Use Timing") + + layout.itemL(text="Keys:") + elif part.physics_type=='BOIDS': + boids = part.boids + + + row = layout.row() + row.itemR(boids, "allow_flight") + row.itemR(boids, "allow_land") + row.itemR(boids, "allow_climb") + + split = layout.split() + + sub = split.column() + col = sub.column(align=True) + col.active = boids.allow_flight + col.itemR(boids, "air_max_speed") + col.itemR(boids, "air_min_speed", slider="True") + col.itemR(boids, "air_max_acc", slider="True") + col.itemR(boids, "air_max_ave", slider="True") + col.itemR(boids, "air_personal_space") + row = col.row() + row.active = (boids.allow_land or boids.allow_climb) and boids.allow_flight + row.itemR(boids, "landing_smoothness") + + sub = split.column() + col = sub.column(align=True) + col.active = boids.allow_land or boids.allow_climb + col.itemR(boids, "land_max_speed") + col.itemR(boids, "land_jump_speed") + col.itemR(boids, "land_max_acc", slider="True") + col.itemR(boids, "land_max_ave", slider="True") + col.itemR(boids, "land_personal_space") + col.itemR(boids, "land_stick_force") + + row = layout.row() + + col = row.column(align=True) + col.itemL(text="Battle:") + col.itemR(boids, "health") + col.itemR(boids, "strength") + col.itemR(boids, "aggression") + col.itemR(boids, "accuracy") + col.itemR(boids, "range") + + col = row.column() + col.itemL(text="Misc:") + col.itemR(boids, "banking", slider=True) + col.itemR(boids, "height", slider=True) + + if part.physics_type=='KEYED' or part.physics_type=='BOIDS': + if part.physics_type=='BOIDS': + layout.itemL(text="Relations:") + + row = layout.row() + row.template_list(psys, "targets", psys, "active_particle_target_index") + + col = row.column() + subrow = col.row() + subcol = subrow.column(align=True) + subcol.itemO("particle.new_target", icon='ICON_ZOOMIN', text="") + subcol.itemO("particle.remove_target", icon='ICON_ZOOMOUT', text="") + subrow = col.row() + subcol = subrow.column(align=True) + subcol.itemO("particle.target_move_up", icon='VICON_MOVE_UP', text="") + subcol.itemO("particle.target_move_down", icon='VICON_MOVE_DOWN', text="") + + key = psys.active_particle_target + if key: + row = layout.row() + if part.physics_type=='KEYED': + col = row.column() + #doesn't work yet + #col.red_alert = key.valid + col.itemR(key, "object", text="") + col.itemR(key, "system", text="System") + col = row.column(); + col.active = psys.keyed_timing + col.itemR(key, "time") + col.itemR(key, "duration") + else: + subrow = row.row() + #doesn't work yet + #subrow.red_alert = key.valid + subrow.itemR(key, "object", text="") + subrow.itemR(key, "system", text="System") + + layout.itemR(key, "mode", expand=True) class PARTICLE_PT_boidbrain(ParticleButtonsPanel): - bl_label = "Boid Brain" + bl_label = "Boid Brain" - def poll(self, context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - if psys.point_cache.external: return False - return psys.settings.physics_type=='BOIDS' - - def draw(self, context): - layout = self.layout + def poll(self, context): + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + if psys.point_cache.external: return False + return psys.settings.physics_type=='BOIDS' - boids = context.particle_system.settings.boids - - layout.enabled = particle_panel_enabled(context, context.particle_system) - - # Currently boids can only use the first state so these are commented out for now. - #row = layout.row() - #row.template_list(boids, "states", boids, "active_boid_state_index", compact="True") - #col = row.row() - #subrow = col.row(align=True) - #subrow.itemO("boid.state_add", icon='ICON_ZOOMIN', text="") - #subrow.itemO("boid.state_del", icon='ICON_ZOOMOUT', text="") - #subrow = row.row(align=True) - #subrow.itemO("boid.state_move_up", icon='VICON_MOVE_UP', text="") - #subrow.itemO("boid.state_move_down", icon='VICON_MOVE_DOWN', text="") - - state = boids.active_boid_state - - #layout.itemR(state, "name", text="State name") - - row = layout.row() - row.itemR(state, "ruleset_type") - if state.ruleset_type=='FUZZY': - row.itemR(state, "rule_fuzziness", slider=True) - else: - row.itemL(text="") - - row = layout.row() - row.template_list(state, "rules", state, "active_boid_rule_index") - - col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.item_menu_enumO("boid.rule_add", "type", icon='ICON_ZOOMIN', text="") - subcol.itemO("boid.rule_del", icon='ICON_ZOOMOUT', text="") - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("boid.rule_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("boid.rule_move_down", icon='VICON_MOVE_DOWN', text="") - - rule = state.active_boid_rule - - if rule: - row = layout.row() - row.itemR(rule, "name", text="") - #somebody make nice icons for boids here please! -jahka - row.itemR(rule, "in_air", icon='VICON_MOVE_UP', text="") - row.itemR(rule, "on_land", icon='VICON_MOVE_DOWN', text="") - - row = layout.row() + def draw(self, context): + layout = self.layout - if rule.type == 'GOAL': - row.itemR(rule, "object") - row = layout.row() - row.itemR(rule, "predict") - elif rule.type == 'AVOID': - row.itemR(rule, "object") - row = layout.row() - row.itemR(rule, "predict") - row.itemR(rule, "fear_factor") - elif rule.type == 'FOLLOW_PATH': - row.itemL(text="Not yet functional.") - elif rule.type == 'AVOID_COLLISION': - row.itemR(rule, "boids") - row.itemR(rule, "deflectors") - row.itemR(rule, "look_ahead") - elif rule.type == 'FOLLOW_LEADER': - row.itemR(rule, "object", text="") - row.itemR(rule, "distance") - row = layout.row() - row.itemR(rule, "line") - subrow = row.row() - subrow.active = rule.line - subrow.itemR(rule, "queue_size") - elif rule.type == 'AVERAGE_SPEED': - row.itemR(rule, "speed", slider=True) - row.itemR(rule, "wander", slider=True) - row.itemR(rule, "level", slider=True) - elif rule.type == 'FIGHT': - row.itemR(rule, "distance") - row.itemR(rule, "flee_distance") + boids = context.particle_system.settings.boids + + layout.enabled = particle_panel_enabled(context, context.particle_system) + + # Currently boids can only use the first state so these are commented out for now. + #row = layout.row() + #row.template_list(boids, "states", boids, "active_boid_state_index", compact="True") + #col = row.row() + #subrow = col.row(align=True) + #subrow.itemO("boid.state_add", icon='ICON_ZOOMIN', text="") + #subrow.itemO("boid.state_del", icon='ICON_ZOOMOUT', text="") + #subrow = row.row(align=True) + #subrow.itemO("boid.state_move_up", icon='VICON_MOVE_UP', text="") + #subrow.itemO("boid.state_move_down", icon='VICON_MOVE_DOWN', text="") + + state = boids.active_boid_state + + #layout.itemR(state, "name", text="State name") + + row = layout.row() + row.itemR(state, "ruleset_type") + if state.ruleset_type=='FUZZY': + row.itemR(state, "rule_fuzziness", slider=True) + else: + row.itemL(text="") + + row = layout.row() + row.template_list(state, "rules", state, "active_boid_rule_index") + + col = row.column() + subrow = col.row() + subcol = subrow.column(align=True) + subcol.item_menu_enumO("boid.rule_add", "type", icon='ICON_ZOOMIN', text="") + subcol.itemO("boid.rule_del", icon='ICON_ZOOMOUT', text="") + subrow = col.row() + subcol = subrow.column(align=True) + subcol.itemO("boid.rule_move_up", icon='VICON_MOVE_UP', text="") + subcol.itemO("boid.rule_move_down", icon='VICON_MOVE_DOWN', text="") + + rule = state.active_boid_rule + + if rule: + row = layout.row() + row.itemR(rule, "name", text="") + #somebody make nice icons for boids here please! -jahka + row.itemR(rule, "in_air", icon='VICON_MOVE_UP', text="") + row.itemR(rule, "on_land", icon='VICON_MOVE_DOWN', text="") + + row = layout.row() + + if rule.type == 'GOAL': + row.itemR(rule, "object") + row = layout.row() + row.itemR(rule, "predict") + elif rule.type == 'AVOID': + row.itemR(rule, "object") + row = layout.row() + row.itemR(rule, "predict") + row.itemR(rule, "fear_factor") + elif rule.type == 'FOLLOW_PATH': + row.itemL(text="Not yet functional.") + elif rule.type == 'AVOID_COLLISION': + row.itemR(rule, "boids") + row.itemR(rule, "deflectors") + row.itemR(rule, "look_ahead") + elif rule.type == 'FOLLOW_LEADER': + row.itemR(rule, "object", text="") + row.itemR(rule, "distance") + row = layout.row() + row.itemR(rule, "line") + subrow = row.row() + subrow.active = rule.line + subrow.itemR(rule, "queue_size") + elif rule.type == 'AVERAGE_SPEED': + row.itemR(rule, "speed", slider=True) + row.itemR(rule, "wander", slider=True) + row.itemR(rule, "level", slider=True) + elif rule.type == 'FIGHT': + row.itemR(rule, "distance") + row.itemR(rule, "flee_distance") class PARTICLE_PT_render(ParticleButtonsPanel): - bl_label = "Render" - - def poll(self, context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return True; - - def draw(self, context): - layout = self.layout + bl_label = "Render" - psys = context.particle_system - part = psys.settings + def poll(self, context): + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + return True; - row = layout.row() - row.itemR(part, "material") - row.itemR(psys, "parent"); - - split = layout.split() - - sub = split.column() - sub.itemR(part, "emitter"); - sub.itemR(part, "parent"); - sub = split.column() - sub.itemR(part, "unborn"); - sub.itemR(part, "died"); - - row = layout.row() - row.itemR(part, "ren_as", expand=True) - - split = layout.split() - - sub = split.column() - - if part.ren_as == 'LINE': - sub.itemR(part, "line_length_tail") - sub.itemR(part, "line_length_head") - sub = split.column() - sub.itemR(part, "velocity_length") - elif part.ren_as == 'PATH': - - if (part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False): - box = layout.box() - box.itemL(text="Baked or keyed particles needed for correct rendering.") - return - - sub.itemR(part, "render_strand") - colsub = sub.column() - colsub.active = part.render_strand == False - colsub.itemR(part, "render_adaptive") - colsub = sub.column() - colsub.active = part.render_adaptive or part.render_strand == True - colsub.itemR(part, "adaptive_angle") - colsub = sub.column() - colsub.active = part.render_adaptive == True and part.render_strand == False - colsub.itemR(part, "adaptive_pix") - sub.itemR(part, "hair_bspline") - sub.itemR(part, "render_step", text="Steps") - sub = split.column() + def draw(self, context): + layout = self.layout - sub.itemL(text="Timing:") - sub.itemR(part, "abs_path_time") - sub.itemR(part, "path_start", text="Start", slider= not part.abs_path_time) - sub.itemR(part, "path_end", text="End", slider= not part.abs_path_time) - sub.itemR(part, "random_length", text="Random", slider=True) - - row = layout.row() - col = row.column() - - if part.type=='HAIR' and part.render_strand==True and part.child_type=='FACES': - layout.itemR(part, "enable_simplify") - if part.enable_simplify==True: - row = layout.row() - row.itemR(part, "simplify_refsize") - row.itemR(part, "simplify_rate") - row.itemR(part, "simplify_transition") - row = layout.row() - row.itemR(part, "viewport") - subrow = row.row() - subrow.active = part.viewport==True - subrow.itemR(part, "simplify_viewport") + psys = context.particle_system + part = psys.settings - elif part.ren_as == 'OBJECT': - sub.itemR(part, "dupli_object") - sub.itemR(part, "use_global_dupli") - elif part.ren_as == 'GROUP': - sub.itemR(part, "dupli_group") - split = layout.split() - sub = split.column() - sub.itemR(part, "whole_group") - colsub = sub.column() - colsub.active = part.whole_group == False - colsub.itemR(part, "use_group_count") - - sub = split.column() - colsub = sub.column() - colsub.active = part.whole_group == False - colsub.itemR(part, "use_global_dupli") - colsub.itemR(part, "rand_group") - - if part.use_group_count and not part.whole_group: - row = layout.row() - row.template_list(part, "dupliweights", part, "active_dupliweight_index") - - col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.dupliob_copy", icon='ICON_ZOOMIN', text="") - subcol.itemO("particle.dupliob_remove", icon='ICON_ZOOMOUT', text="") - subcol.itemO("particle.dupliob_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("particle.dupliob_move_down", icon='VICON_MOVE_DOWN', text="") - - weight = part.active_dupliweight - if weight: - row = layout.row() - row.itemR(weight, "count") + row = layout.row() + row.itemR(part, "material") + row.itemR(psys, "parent"); + + split = layout.split() + + sub = split.column() + sub.itemR(part, "emitter"); + sub.itemR(part, "parent"); + sub = split.column() + sub.itemR(part, "unborn"); + sub.itemR(part, "died"); + + row = layout.row() + row.itemR(part, "ren_as", expand=True) + + split = layout.split() + + sub = split.column() + + if part.ren_as == 'LINE': + sub.itemR(part, "line_length_tail") + sub.itemR(part, "line_length_head") + sub = split.column() + sub.itemR(part, "velocity_length") + elif part.ren_as == 'PATH': + + if (part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False): + box = layout.box() + box.itemL(text="Baked or keyed particles needed for correct rendering.") + return + + sub.itemR(part, "render_strand") + colsub = sub.column() + colsub.active = part.render_strand == False + colsub.itemR(part, "render_adaptive") + colsub = sub.column() + colsub.active = part.render_adaptive or part.render_strand == True + colsub.itemR(part, "adaptive_angle") + colsub = sub.column() + colsub.active = part.render_adaptive == True and part.render_strand == False + colsub.itemR(part, "adaptive_pix") + sub.itemR(part, "hair_bspline") + sub.itemR(part, "render_step", text="Steps") + sub = split.column() + + sub.itemL(text="Timing:") + sub.itemR(part, "abs_path_time") + sub.itemR(part, "path_start", text="Start", slider= not part.abs_path_time) + sub.itemR(part, "path_end", text="End", slider= not part.abs_path_time) + sub.itemR(part, "random_length", text="Random", slider=True) + + row = layout.row() + col = row.column() + + if part.type=='HAIR' and part.render_strand==True and part.child_type=='FACES': + layout.itemR(part, "enable_simplify") + if part.enable_simplify==True: + row = layout.row() + row.itemR(part, "simplify_refsize") + row.itemR(part, "simplify_rate") + row.itemR(part, "simplify_transition") + row = layout.row() + row.itemR(part, "viewport") + subrow = row.row() + subrow.active = part.viewport==True + subrow.itemR(part, "simplify_viewport") + + elif part.ren_as == 'OBJECT': + sub.itemR(part, "dupli_object") + sub.itemR(part, "use_global_dupli") + elif part.ren_as == 'GROUP': + sub.itemR(part, "dupli_group") + split = layout.split() + sub = split.column() + sub.itemR(part, "whole_group") + colsub = sub.column() + colsub.active = part.whole_group == False + colsub.itemR(part, "use_group_count") + + sub = split.column() + colsub = sub.column() + colsub.active = part.whole_group == False + colsub.itemR(part, "use_global_dupli") + colsub.itemR(part, "rand_group") + + if part.use_group_count and not part.whole_group: + row = layout.row() + row.template_list(part, "dupliweights", part, "active_dupliweight_index") + + col = row.column() + subrow = col.row() + subcol = subrow.column(align=True) + subcol.itemO("particle.dupliob_copy", icon='ICON_ZOOMIN', text="") + subcol.itemO("particle.dupliob_remove", icon='ICON_ZOOMOUT', text="") + subcol.itemO("particle.dupliob_move_up", icon='VICON_MOVE_UP', text="") + subcol.itemO("particle.dupliob_move_down", icon='VICON_MOVE_DOWN', text="") + + weight = part.active_dupliweight + if weight: + row = layout.row() + row.itemR(weight, "count") + + elif part.ren_as == 'BILLBOARD': + sub.itemL(text="Align:") + + row = layout.row() + row.itemR(part, "billboard_align", expand=True) + row.itemR(part, "billboard_lock", text="Lock") + row = layout.row() + row.itemR(part, "billboard_object") + + row = layout.row() + col = row.column(align=True) + col.itemL(text="Tilt:") + col.itemR(part, "billboard_tilt", text="Angle", slider=True) + col.itemR(part, "billboard_random_tilt", slider=True) + col = row.column() + col.itemR(part, "billboard_offset") + + row = layout.row() + row.itemR(psys, "billboard_normal_uv") + row = layout.row() + row.itemR(psys, "billboard_time_index_uv") + + row = layout.row() + row.itemL(text="Split uv's:") + row.itemR(part, "billboard_uv_split", text="Number of splits") + row = layout.row() + row.itemR(psys, "billboard_split_uv") + row = layout.row() + row.itemL(text="Animate:") + row.itemR(part, "billboard_animation", expand=True) + row.itemL(text="Offset:") + row.itemR(part, "billboard_split_offset", expand=True) + if part.ren_as == 'HALO' or part.ren_as == 'LINE' or part.ren_as=='BILLBOARD': + row = layout.row() + col = row.column() + col.itemR(part, "trail_count") + if part.trail_count > 1: + col.itemR(part, "abs_path_time", text="Length in frames") + col = row.column() + col.itemR(part, "path_end", text="Length", slider=not part.abs_path_time) + col.itemR(part, "random_length", text="Random", slider=True) + else: + col = row.column() + col.itemL(text="") - elif part.ren_as == 'BILLBOARD': - sub.itemL(text="Align:") - - row = layout.row() - row.itemR(part, "billboard_align", expand=True) - row.itemR(part, "billboard_lock", text="Lock") - row = layout.row() - row.itemR(part, "billboard_object") - - row = layout.row() - col = row.column(align=True) - col.itemL(text="Tilt:") - col.itemR(part, "billboard_tilt", text="Angle", slider=True) - col.itemR(part, "billboard_random_tilt", slider=True) - col = row.column() - col.itemR(part, "billboard_offset") - - row = layout.row() - row.itemR(psys, "billboard_normal_uv") - row = layout.row() - row.itemR(psys, "billboard_time_index_uv") - - row = layout.row() - row.itemL(text="Split uv's:") - row.itemR(part, "billboard_uv_split", text="Number of splits") - row = layout.row() - row.itemR(psys, "billboard_split_uv") - row = layout.row() - row.itemL(text="Animate:") - row.itemR(part, "billboard_animation", expand=True) - row.itemL(text="Offset:") - row.itemR(part, "billboard_split_offset", expand=True) - if part.ren_as == 'HALO' or part.ren_as == 'LINE' or part.ren_as=='BILLBOARD': - row = layout.row() - col = row.column() - col.itemR(part, "trail_count") - if part.trail_count > 1: - col.itemR(part, "abs_path_time", text="Length in frames") - col = row.column() - col.itemR(part, "path_end", text="Length", slider=not part.abs_path_time) - col.itemR(part, "random_length", text="Random", slider=True) - else: - col = row.column() - col.itemL(text="") - class PARTICLE_PT_draw(ParticleButtonsPanel): - bl_label = "Display" - bl_default_closed = True - - def poll(self, context): - psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return True; - - def draw(self, context): - layout = self.layout + bl_label = "Display" + bl_default_closed = True - psys = context.particle_system - part = psys.settings - - row = layout.row() - row.itemR(part, "draw_as", expand=True) - - if part.draw_as=='NONE' or (part.ren_as=='NONE' and part.draw_as=='RENDER'): - return - - path = (part.ren_as=='PATH' and part.draw_as=='RENDER') or part.draw_as=='PATH' - - if path and part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False: - box = layout.box() - box.itemL(text="Baked or keyed particles needed for correct drawing.") - return - - row = layout.row() - row.itemR(part, "display", slider=True) - if part.draw_as!='RENDER' or part.ren_as=='HALO': - row.itemR(part, "draw_size") - else: - row.itemL(text="") - - row = layout.row() - col = row.column() - col.itemR(part, "show_size") - col.itemR(part, "velocity") - col.itemR(part, "num") - if part.physics_type == 'BOIDS': - col.itemR(part, "draw_health") - - col = row.column() - col.itemR(part, "material_color", text="Use material color") - - if (path): - col.itemR(part, "draw_step") - else: - subcol = col.column() - subcol.active = part.material_color==False - #subcol.itemL(text="color") - #subcol.itemL(text="Override material color") + def poll(self, context): + psys = context.particle_system + if psys==None: return False + if psys.settings==None: return False + return True; + + def draw(self, context): + layout = self.layout + + psys = context.particle_system + part = psys.settings + + row = layout.row() + row.itemR(part, "draw_as", expand=True) + + if part.draw_as=='NONE' or (part.ren_as=='NONE' and part.draw_as=='RENDER'): + return + + path = (part.ren_as=='PATH' and part.draw_as=='RENDER') or part.draw_as=='PATH' + + if path and part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False: + box = layout.box() + box.itemL(text="Baked or keyed particles needed for correct drawing.") + return + + row = layout.row() + row.itemR(part, "display", slider=True) + if part.draw_as!='RENDER' or part.ren_as=='HALO': + row.itemR(part, "draw_size") + else: + row.itemL(text="") + + row = layout.row() + col = row.column() + col.itemR(part, "show_size") + col.itemR(part, "velocity") + col.itemR(part, "num") + if part.physics_type == 'BOIDS': + col.itemR(part, "draw_health") + + col = row.column() + col.itemR(part, "material_color", text="Use material color") + + if (path): + col.itemR(part, "draw_step") + else: + subcol = col.column() + subcol.active = part.material_color==False + #subcol.itemL(text="color") + #subcol.itemL(text="Override material color") class PARTICLE_PT_children(ParticleButtonsPanel): - bl_label = "Children" - bl_default_closed = True + bl_label = "Children" + bl_default_closed = True - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - psys = context.particle_system - part = psys.settings - - layout.row().itemR(part, "child_type", expand=True) - - if part.child_type=='NONE': - return - - row = layout.row() - - col = row.column(align=True) - col.itemR(part, "child_nbr", text="Display") - col.itemR(part, "rendered_child_nbr", text="Render") - - col = row.column(align=True) - - if part.child_type=='FACES': - col.itemR(part, "virtual_parents", slider=True) - else: - col.itemR(part, "child_radius", text="Radius") - col.itemR(part, "child_roundness", text="Roundness", slider=True) - - col = row.column(align=True) - col.itemR(part, "child_size", text="Size") - col.itemR(part, "child_random_size", text="Random") - - layout.row().itemL(text="Effects:") - - row = layout.row() - - col = row.column(align=True) - col.itemR(part, "clump_factor", slider=True) - col.itemR(part, "clumppow", slider=True) - - col = row.column(align=True) - col.itemR(part, "rough_endpoint") - col.itemR(part, "rough_end_shape") + psys = context.particle_system + part = psys.settings - row = layout.row() - - col = row.column(align=True) - col.itemR(part, "rough1") - col.itemR(part, "rough1_size") + layout.row().itemR(part, "child_type", expand=True) - col = row.column(align=True) - col.itemR(part, "rough2") - col.itemR(part, "rough2_size") - col.itemR(part, "rough2_thres", slider=True) - - row = layout.row() - col = row.column(align=True) - col.itemR(part, "child_length", slider=True) - col.itemR(part, "child_length_thres", slider=True) - - col = row.column(align=True) - col.itemL(text="Space reserved for") - col.itemL(text="hair parting controls") - - layout.row().itemL(text="Kink:") - layout.row().itemR(part, "kink", expand=True) - - split = layout.split() - - sub = split.column() - sub.itemR(part, "kink_amplitude") - sub.itemR(part, "kink_frequency") - sub = split.column() - sub.itemR(part, "kink_shape", slider=True) + if part.child_type=='NONE': + return + + row = layout.row() + + col = row.column(align=True) + col.itemR(part, "child_nbr", text="Display") + col.itemR(part, "rendered_child_nbr", text="Render") + + col = row.column(align=True) + + if part.child_type=='FACES': + col.itemR(part, "virtual_parents", slider=True) + else: + col.itemR(part, "child_radius", text="Radius") + col.itemR(part, "child_roundness", text="Roundness", slider=True) + + col = row.column(align=True) + col.itemR(part, "child_size", text="Size") + col.itemR(part, "child_random_size", text="Random") + + layout.row().itemL(text="Effects:") + + row = layout.row() + + col = row.column(align=True) + col.itemR(part, "clump_factor", slider=True) + col.itemR(part, "clumppow", slider=True) + + col = row.column(align=True) + col.itemR(part, "rough_endpoint") + col.itemR(part, "rough_end_shape") + + row = layout.row() + + col = row.column(align=True) + col.itemR(part, "rough1") + col.itemR(part, "rough1_size") + + col = row.column(align=True) + col.itemR(part, "rough2") + col.itemR(part, "rough2_size") + col.itemR(part, "rough2_thres", slider=True) + + row = layout.row() + col = row.column(align=True) + col.itemR(part, "child_length", slider=True) + col.itemR(part, "child_length_thres", slider=True) + + col = row.column(align=True) + col.itemL(text="Space reserved for") + col.itemL(text="hair parting controls") + + layout.row().itemL(text="Kink:") + layout.row().itemR(part, "kink", expand=True) + + split = layout.split() + + sub = split.column() + sub.itemR(part, "kink_amplitude") + sub.itemR(part, "kink_frequency") + sub = split.column() + sub.itemR(part, "kink_shape", slider=True) class PARTICLE_PT_field_weights(ParticleButtonsPanel): - bl_label = "Field Weights" - bl_default_closed = True - - def draw(self, context): - part = context.particle_system.settings - effector_weights_ui(self, part.effector_weights) - - if part.type == 'HAIR': - self.layout.itemR(part.effector_weights, "do_growing_hair") - + bl_label = "Field Weights" + bl_default_closed = True + + def draw(self, context): + part = context.particle_system.settings + effector_weights_ui(self, part.effector_weights) + + if part.type == 'HAIR': + self.layout.itemR(part.effector_weights, "do_growing_hair") + class PARTICLE_PT_force_fields(ParticleButtonsPanel): - bl_label = "Force Field Settings" - bl_default_closed = True - - def draw(self, context): - layout = self.layout + bl_label = "Force Field Settings" + bl_default_closed = True + + def draw(self, context): + layout = self.layout + + part = context.particle_system.settings + + layout.itemR(part, "self_effect") + + split = layout.split(percentage=0.2) + split.itemL(text="Type 1:") + split.itemR(part.force_field_1, "type",text="") + basic_force_field_settings_ui(self, part.force_field_1) + basic_force_field_falloff_ui(self, part.force_field_1) + + if part.force_field_1.type != 'NONE': + layout.itemL(text="") + + split = layout.split(percentage=0.2) + split.itemL(text="Type 2:") + split.itemR(part.force_field_2, "type",text="") + basic_force_field_settings_ui(self, part.force_field_2) + basic_force_field_falloff_ui(self, part.force_field_2) - part = context.particle_system.settings - - layout.itemR(part, "self_effect") - - split = layout.split(percentage=0.2) - split.itemL(text="Type 1:") - split.itemR(part.force_field_1, "type",text="") - basic_force_field_settings_ui(self, part.force_field_1) - basic_force_field_falloff_ui(self, part.force_field_1) - - if part.force_field_1.type != 'NONE': - layout.itemL(text="") - - split = layout.split(percentage=0.2) - split.itemL(text="Type 2:") - split.itemR(part.force_field_2, "type",text="") - basic_force_field_settings_ui(self, part.force_field_2) - basic_force_field_falloff_ui(self, part.force_field_2) - class PARTICLE_PT_vertexgroups(ParticleButtonsPanel): - bl_label = "Vertexgroups" - bl_default_closed = True + bl_label = "Vertexgroups" + bl_default_closed = True - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - psys = context.particle_system - part = psys.settings - - layout.itemL(text="Nothing here yet.") + psys = context.particle_system + part = psys.settings - #row = layout.row() - #row.itemL(text="Vertex Group") - #row.itemL(text="Negate") + layout.itemL(text="Nothing here yet.") - - #row = layout.row() - #row.itemR(psys, "vertex_group_density") - #row.itemR(psys, "vertex_group_density_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_velocity") - #row.itemR(psys, "vertex_group_velocity_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_length") - #row.itemR(psys, "vertex_group_length_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_clump") - #row.itemR(psys, "vertex_group_clump_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_kink") - #row.itemR(psys, "vertex_group_kink_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness1") - #row.itemR(psys, "vertex_group_roughness1_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness2") - #row.itemR(psys, "vertex_group_roughness2_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness_end") - #row.itemR(psys, "vertex_group_roughness_end_negate", text="") + #row = layout.row() + #row.itemL(text="Vertex Group") + #row.itemL(text="Negate") + + + #row = layout.row() + #row.itemR(psys, "vertex_group_density") + #row.itemR(psys, "vertex_group_density_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_velocity") + #row.itemR(psys, "vertex_group_velocity_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_length") + #row.itemR(psys, "vertex_group_length_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_clump") + #row.itemR(psys, "vertex_group_clump_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_kink") + #row.itemR(psys, "vertex_group_kink_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_roughness1") + #row.itemR(psys, "vertex_group_roughness1_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_roughness2") + #row.itemR(psys, "vertex_group_roughness2_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_roughness_end") + #row.itemR(psys, "vertex_group_roughness_end_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_size") + #row.itemR(psys, "vertex_group_size_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_tangent") + #row.itemR(psys, "vertex_group_tangent_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_rotation") + #row.itemR(psys, "vertex_group_rotation_negate", text="") + + #row = layout.row() + #row.itemR(psys, "vertex_group_field") + #row.itemR(psys, "vertex_group_field_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_size") - #row.itemR(psys, "vertex_group_size_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_tangent") - #row.itemR(psys, "vertex_group_tangent_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_rotation") - #row.itemR(psys, "vertex_group_rotation_negate", text="") - - #row = layout.row() - #row.itemR(psys, "vertex_group_field") - #row.itemR(psys, "vertex_group_field_negate", text="") - bpy.types.register(PARTICLE_PT_particles) bpy.types.register(PARTICLE_PT_hair_dynamics) bpy.types.register(PARTICLE_PT_cache) diff --git a/release/scripts/ui/buttons_physics_cloth.py b/release/scripts/ui/buttons_physics_cloth.py index 3a40713adb8..208f2ed75e3 100644 --- a/release/scripts/ui/buttons_physics_cloth.py +++ b/release/scripts/ui/buttons_physics_cloth.py @@ -5,181 +5,181 @@ from buttons_physics_common import point_cache_ui from buttons_physics_common import effector_weights_ui def cloth_panel_enabled(md): - return md.point_cache.baked==False + return md.point_cache.baked==False class PhysicButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + ob = context.object + rd = context.scene.render_data + return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - def poll(self, context): - ob = context.object - rd = context.scene.render_data - return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - class PHYSICS_PT_cloth(PhysicButtonsPanel): - bl_label = "Cloth" + bl_label = "Cloth" - def draw(self, context): - layout = self.layout - - md = context.cloth - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - split.operator_context = 'EXEC_DEFAULT' + md = context.cloth + ob = context.object - if md: - # remove modifier + settings - split.set_context_pointer("modifier", md) - split.itemO("object.modifier_remove", text="Remove") + split = layout.split() + split.operator_context = 'EXEC_DEFAULT' - row = split.row(align=True) - row.itemR(md, "render", text="") - row.itemR(md, "realtime", text="") - else: - # add modifier - split.item_enumO("object.modifier_add", "type", 'CLOTH', text="Add") - split.itemL() + if md: + # remove modifier + settings + split.set_context_pointer("modifier", md) + split.itemO("object.modifier_remove", text="Remove") - if md: - cloth = md.settings - - layout.active = cloth_panel_enabled(md) + row = split.row(align=True) + row.itemR(md, "render", text="") + row.itemR(md, "realtime", text="") + else: + # add modifier + split.item_enumO("object.modifier_add", "type", 'CLOTH', text="Add") + split.itemL() - split = layout.split() - - col = split.column() - - col.itemL(text="Quality:") - col.itemR(cloth, "quality", text="Steps",slider=True) - - col.itemL(text="Material:") - sub = col.column(align=True) - sub.itemR(cloth, "mass") - sub.itemR(cloth, "structural_stiffness", text="Structural") - sub.itemR(cloth, "bending_stiffness", text="Bending") - - col = split.column() - - col.itemL(text="Presets:") - col.itemL(text="TODO!") + if md: + cloth = md.settings - col.itemL(text="Damping:") - sub = col.column(align=True) - sub.itemR(cloth, "spring_damping", text="Spring") - sub.itemR(cloth, "air_damping", text="Air") + layout.active = cloth_panel_enabled(md) - col.itemR(cloth, "pin_cloth", text="Pin") - sub = col.column(align=True) - sub.active = cloth.pin_cloth - sub.itemR(cloth, "pin_stiffness", text="Stiffness") - sub.item_pointerR(cloth, "mass_vertex_group", ob, "vertex_groups", text="") - - # Disabled for now - """ - if cloth.mass_vertex_group: - layout.itemL(text="Goal:") - - col = layout.column_flow() - col.itemR(cloth, "goal_default", text="Default") - col.itemR(cloth, "goal_spring", text="Stiffness") - col.itemR(cloth, "goal_friction", text="Friction") - """ + split = layout.split() + + col = split.column() + + col.itemL(text="Quality:") + col.itemR(cloth, "quality", text="Steps",slider=True) + + col.itemL(text="Material:") + sub = col.column(align=True) + sub.itemR(cloth, "mass") + sub.itemR(cloth, "structural_stiffness", text="Structural") + sub.itemR(cloth, "bending_stiffness", text="Bending") + + col = split.column() + + col.itemL(text="Presets:") + col.itemL(text="TODO!") + + col.itemL(text="Damping:") + sub = col.column(align=True) + sub.itemR(cloth, "spring_damping", text="Spring") + sub.itemR(cloth, "air_damping", text="Air") + + col.itemR(cloth, "pin_cloth", text="Pin") + sub = col.column(align=True) + sub.active = cloth.pin_cloth + sub.itemR(cloth, "pin_stiffness", text="Stiffness") + sub.item_pointerR(cloth, "mass_vertex_group", ob, "vertex_groups", text="") + + # Disabled for now + """ + if cloth.mass_vertex_group: + layout.itemL(text="Goal:") + + col = layout.column_flow() + col.itemR(cloth, "goal_default", text="Default") + col.itemR(cloth, "goal_spring", text="Stiffness") + col.itemR(cloth, "goal_friction", text="Friction") + """ class PHYSICS_PT_cloth_cache(PhysicButtonsPanel): - bl_label = "Cloth Cache" - bl_default_closed = True + bl_label = "Cloth Cache" + bl_default_closed = True - def poll(self, context): - return context.cloth + def poll(self, context): + return context.cloth + + def draw(self, context): + md = context.cloth + point_cache_ui(self, md.point_cache, cloth_panel_enabled(md), 0, 0) - def draw(self, context): - md = context.cloth - point_cache_ui(self, md.point_cache, cloth_panel_enabled(md), 0, 0) - class PHYSICS_PT_cloth_collision(PhysicButtonsPanel): - bl_label = "Cloth Collision" - bl_default_closed = True + bl_label = "Cloth Collision" + bl_default_closed = True - def poll(self, context): - return context.cloth - - def draw_header(self, context): - cloth = context.cloth.collision_settings - - self.layout.active = cloth_panel_enabled(context.cloth) - self.layout.itemR(cloth, "enable_collision", text="") + def poll(self, context): + return context.cloth - def draw(self, context): - layout = self.layout - - cloth = context.cloth.collision_settings - md = context.cloth - - layout.active = cloth.enable_collision and cloth_panel_enabled(md) - - split = layout.split() - - col = split.column() - col.itemR(cloth, "collision_quality", slider=True, text="Quality") - col.itemR(cloth, "min_distance", slider=True, text="Distance") - col.itemR(cloth, "friction") - - col = split.column() - col.itemR(cloth, "enable_self_collision", text="Self Collision") - sub = col.column() - sub.active = cloth.enable_self_collision - sub.itemR(cloth, "self_collision_quality", slider=True, text="Quality") - sub.itemR(cloth, "self_min_distance", slider=True, text="Distance") + def draw_header(self, context): + cloth = context.cloth.collision_settings + + self.layout.active = cloth_panel_enabled(context.cloth) + self.layout.itemR(cloth, "enable_collision", text="") + + def draw(self, context): + layout = self.layout + + cloth = context.cloth.collision_settings + md = context.cloth + + layout.active = cloth.enable_collision and cloth_panel_enabled(md) + + split = layout.split() + + col = split.column() + col.itemR(cloth, "collision_quality", slider=True, text="Quality") + col.itemR(cloth, "min_distance", slider=True, text="Distance") + col.itemR(cloth, "friction") + + col = split.column() + col.itemR(cloth, "enable_self_collision", text="Self Collision") + sub = col.column() + sub.active = cloth.enable_self_collision + sub.itemR(cloth, "self_collision_quality", slider=True, text="Quality") + sub.itemR(cloth, "self_min_distance", slider=True, text="Distance") class PHYSICS_PT_cloth_stiffness(PhysicButtonsPanel): - bl_label = "Cloth Stiffness Scaling" - bl_default_closed = True + bl_label = "Cloth Stiffness Scaling" + bl_default_closed = True - def poll(self, context): - return context.cloth - - def draw_header(self, context): - cloth = context.cloth.settings - - self.layout.active = cloth_panel_enabled(context.cloth) - self.layout.itemR(cloth, "stiffness_scaling", text="") + def poll(self, context): + return context.cloth - def draw(self, context): - layout = self.layout - - md = context.cloth - ob = context.object - cloth = context.cloth.settings - - layout.active = cloth.stiffness_scaling and cloth_panel_enabled(md) - - split = layout.split() - - col = split.column() - col.itemL(text="Structural Stiffness:") - sub = col.column(align=True) - sub.itemR(cloth, "structural_stiffness_max", text="Max") - sub.item_pointerR(cloth, "structural_stiffness_vertex_group", ob, "vertex_groups", text="") - - col = split.column() - col.itemL(text="Bending Stiffness:") - sub = col.column(align=True) - sub.itemR(cloth, "bending_stiffness_max", text="Max") - sub.item_pointerR(cloth, "bending_vertex_group", ob, "vertex_groups", text="") + def draw_header(self, context): + cloth = context.cloth.settings + + self.layout.active = cloth_panel_enabled(context.cloth) + self.layout.itemR(cloth, "stiffness_scaling", text="") + + def draw(self, context): + layout = self.layout + + md = context.cloth + ob = context.object + cloth = context.cloth.settings + + layout.active = cloth.stiffness_scaling and cloth_panel_enabled(md) + + split = layout.split() + + col = split.column() + col.itemL(text="Structural Stiffness:") + sub = col.column(align=True) + sub.itemR(cloth, "structural_stiffness_max", text="Max") + sub.item_pointerR(cloth, "structural_stiffness_vertex_group", ob, "vertex_groups", text="") + + col = split.column() + col.itemL(text="Bending Stiffness:") + sub = col.column(align=True) + sub.itemR(cloth, "bending_stiffness_max", text="Max") + sub.item_pointerR(cloth, "bending_vertex_group", ob, "vertex_groups", text="") class PHYSICS_PT_cloth_field_weights(PhysicButtonsPanel): - bl_label = "Cloth Field Weights" - bl_default_closed = True - - def poll(self, context): - return (context.cloth) - - def draw(self, context): - cloth = context.cloth.settings - effector_weights_ui(self, cloth.effector_weights) - + bl_label = "Cloth Field Weights" + bl_default_closed = True + + def poll(self, context): + return (context.cloth) + + def draw(self, context): + cloth = context.cloth.settings + effector_weights_ui(self, cloth.effector_weights) + bpy.types.register(PHYSICS_PT_cloth) bpy.types.register(PHYSICS_PT_cloth_cache) bpy.types.register(PHYSICS_PT_cloth_collision) diff --git a/release/scripts/ui/buttons_physics_common.py b/release/scripts/ui/buttons_physics_common.py index 411d6e62ad0..bc2b9662d1e 100644 --- a/release/scripts/ui/buttons_physics_common.py +++ b/release/scripts/ui/buttons_physics_common.py @@ -1,159 +1,159 @@ import bpy def point_cache_ui(self, cache, enabled, particles, smoke): - layout = self.layout - layout.set_context_pointer("PointCache", cache) - - row = layout.row() - row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2 ) - col = row.column(align=True) - col.itemO("ptcache.add_new", icon='ICON_ZOOMIN', text="") - col.itemO("ptcache.remove", icon='ICON_ZOOMOUT', text="") - - row = layout.row() - row.itemL(text="File Name:") - if particles: - row.itemR(cache, "external") - - if cache.external: - split = layout.split(percentage=0.80) - split.itemR(cache, "name", text="") - split.itemR(cache, "index", text="") - - layout.itemL(text="File Path:") - layout.itemR(cache, "filepath", text="") - - layout.itemL(text=cache.info) - else: - layout.itemR(cache, "name", text="") - - if not particles: - row = layout.row() - row.enabled = enabled - row.itemR(cache, "start_frame") - row.itemR(cache, "end_frame") - - row = layout.row() - - if cache.baked == True: - row.itemO("ptcache.free_bake", text="Free Bake") - else: - row.item_booleanO("ptcache.bake", "bake", True, text="Bake") - - sub = row.row() - sub.enabled = (cache.frames_skipped or cache.outdated) and enabled - sub.itemO("ptcache.bake", "bake", False, text="Calculate to Current Frame") - - row = layout.row() - row.enabled = enabled - row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake") - if not smoke: - row.itemR(cache, "step"); - - if not smoke: - row = layout.row() - sub = row.row() - sub.enabled = enabled - sub.itemR(cache, "quick_cache") - row.itemR(cache, "disk_cache") - - layout.itemL(text=cache.info) - - layout.itemS() - - row = layout.row() - row.item_booleanO("ptcache.bake_all", "bake", True, text="Bake All Dynamics") - row.itemO("ptcache.free_bake_all", text="Free All Bakes") - layout.itemO("ptcache.bake_all", "bake", False, text="Update All Dynamics to current frame") - -def effector_weights_ui(self, weights): - layout = self.layout - - layout.itemR(weights, "group") - - split = layout.split() - split.itemR(weights, "gravity", slider=True) - split.itemR(weights, "all", slider=True) - - layout.itemS() - - flow = layout.column_flow() - flow.itemR(weights, "force", slider=True) - flow.itemR(weights, "vortex", slider=True) - flow.itemR(weights, "magnetic", slider=True) - flow.itemR(weights, "wind", slider=True) - flow.itemR(weights, "curveguide", slider=True) - flow.itemR(weights, "texture", slider=True) - flow.itemR(weights, "harmonic", slider=True) - flow.itemR(weights, "charge", slider=True) - flow.itemR(weights, "lennardjones", slider=True) - flow.itemR(weights, "turbulence", slider=True) - flow.itemR(weights, "drag", slider=True) - flow.itemR(weights, "boid", slider=True) - -def basic_force_field_settings_ui(self, field): - layout = self.layout - split = layout.split() - - if not field or field.type == 'NONE': - return - - col = split.column() - - if field.type == 'DRAG': - col.itemR(field, "linear_drag", text="Linear") - else: - col.itemR(field, "strength") - - if field.type == 'TURBULENCE': - col.itemR(field, "size") - col.itemR(field, "flow") - elif field.type == 'HARMONIC': - col.itemR(field, "harmonic_damping", text="Damping") - elif field.type == 'VORTEX' and field.shape != 'POINT': - col.itemR(field, "inflow") - elif field.type == 'DRAG': - col.itemR(field, "quadratic_drag", text="Quadratic") - else: - col.itemR(field, "flow") - - col = split.column() - col.itemR(field, "noise") - col.itemR(field, "seed") - if field.type == 'TURBULENCE': - col.itemR(field, "global_coordinates", text="Global") - - split = layout.split() - - col = split.column() - col.itemL(text="Effect point:") - col.itemR(field, "do_location") - col.itemR(field, "do_rotation") - - sub = split.column() - sub.itemL(text="Collision:") - sub.itemR(field, "do_absorption") - - -def basic_force_field_falloff_ui(self, field): - layout = self.layout - split = layout.split(percentage=0.35) - - if not field or field.type == 'NONE': - return - - col = split.column() - col.itemR(field, "z_direction", text="") - col.itemR(field, "use_min_distance", text="Use Minimum") - col.itemR(field, "use_max_distance", text="Use Maximum") + layout = self.layout + layout.set_context_pointer("PointCache", cache) - col = split.column() - col.itemR(field, "falloff_power", text="Power") - - sub = col.column() - sub.active = field.use_min_distance - sub.itemR(field, "minimum_distance", text="Distance") - - sub = col.column() - sub.active = field.use_max_distance - sub.itemR(field, "maximum_distance", text="Distance") + row = layout.row() + row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2 ) + col = row.column(align=True) + col.itemO("ptcache.add_new", icon='ICON_ZOOMIN', text="") + col.itemO("ptcache.remove", icon='ICON_ZOOMOUT', text="") + + row = layout.row() + row.itemL(text="File Name:") + if particles: + row.itemR(cache, "external") + + if cache.external: + split = layout.split(percentage=0.80) + split.itemR(cache, "name", text="") + split.itemR(cache, "index", text="") + + layout.itemL(text="File Path:") + layout.itemR(cache, "filepath", text="") + + layout.itemL(text=cache.info) + else: + layout.itemR(cache, "name", text="") + + if not particles: + row = layout.row() + row.enabled = enabled + row.itemR(cache, "start_frame") + row.itemR(cache, "end_frame") + + row = layout.row() + + if cache.baked == True: + row.itemO("ptcache.free_bake", text="Free Bake") + else: + row.item_booleanO("ptcache.bake", "bake", True, text="Bake") + + sub = row.row() + sub.enabled = (cache.frames_skipped or cache.outdated) and enabled + sub.itemO("ptcache.bake", "bake", False, text="Calculate to Current Frame") + + row = layout.row() + row.enabled = enabled + row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake") + if not smoke: + row.itemR(cache, "step"); + + if not smoke: + row = layout.row() + sub = row.row() + sub.enabled = enabled + sub.itemR(cache, "quick_cache") + row.itemR(cache, "disk_cache") + + layout.itemL(text=cache.info) + + layout.itemS() + + row = layout.row() + row.item_booleanO("ptcache.bake_all", "bake", True, text="Bake All Dynamics") + row.itemO("ptcache.free_bake_all", text="Free All Bakes") + layout.itemO("ptcache.bake_all", "bake", False, text="Update All Dynamics to current frame") + +def effector_weights_ui(self, weights): + layout = self.layout + + layout.itemR(weights, "group") + + split = layout.split() + split.itemR(weights, "gravity", slider=True) + split.itemR(weights, "all", slider=True) + + layout.itemS() + + flow = layout.column_flow() + flow.itemR(weights, "force", slider=True) + flow.itemR(weights, "vortex", slider=True) + flow.itemR(weights, "magnetic", slider=True) + flow.itemR(weights, "wind", slider=True) + flow.itemR(weights, "curveguide", slider=True) + flow.itemR(weights, "texture", slider=True) + flow.itemR(weights, "harmonic", slider=True) + flow.itemR(weights, "charge", slider=True) + flow.itemR(weights, "lennardjones", slider=True) + flow.itemR(weights, "turbulence", slider=True) + flow.itemR(weights, "drag", slider=True) + flow.itemR(weights, "boid", slider=True) + +def basic_force_field_settings_ui(self, field): + layout = self.layout + split = layout.split() + + if not field or field.type == 'NONE': + return + + col = split.column() + + if field.type == 'DRAG': + col.itemR(field, "linear_drag", text="Linear") + else: + col.itemR(field, "strength") + + if field.type == 'TURBULENCE': + col.itemR(field, "size") + col.itemR(field, "flow") + elif field.type == 'HARMONIC': + col.itemR(field, "harmonic_damping", text="Damping") + elif field.type == 'VORTEX' and field.shape != 'POINT': + col.itemR(field, "inflow") + elif field.type == 'DRAG': + col.itemR(field, "quadratic_drag", text="Quadratic") + else: + col.itemR(field, "flow") + + col = split.column() + col.itemR(field, "noise") + col.itemR(field, "seed") + if field.type == 'TURBULENCE': + col.itemR(field, "global_coordinates", text="Global") + + split = layout.split() + + col = split.column() + col.itemL(text="Effect point:") + col.itemR(field, "do_location") + col.itemR(field, "do_rotation") + + sub = split.column() + sub.itemL(text="Collision:") + sub.itemR(field, "do_absorption") + + +def basic_force_field_falloff_ui(self, field): + layout = self.layout + split = layout.split(percentage=0.35) + + if not field or field.type == 'NONE': + return + + col = split.column() + col.itemR(field, "z_direction", text="") + col.itemR(field, "use_min_distance", text="Use Minimum") + col.itemR(field, "use_max_distance", text="Use Maximum") + + col = split.column() + col.itemR(field, "falloff_power", text="Power") + + sub = col.column() + sub.active = field.use_min_distance + sub.itemR(field, "minimum_distance", text="Distance") + + sub = col.column() + sub.active = field.use_max_distance + sub.itemR(field, "maximum_distance", text="Distance") diff --git a/release/scripts/ui/buttons_physics_field.py b/release/scripts/ui/buttons_physics_field.py index 6d8864560c7..1f0518620d9 100644 --- a/release/scripts/ui/buttons_physics_field.py +++ b/release/scripts/ui/buttons_physics_field.py @@ -5,198 +5,198 @@ from buttons_physics_common import basic_force_field_settings_ui from buttons_physics_common import basic_force_field_falloff_ui class PhysicButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + rd = context.scene.render_data + return (context.object) and (not rd.use_game_engine) - def poll(self, context): - rd = context.scene.render_data - return (context.object) and (not rd.use_game_engine) - class PHYSICS_PT_field(PhysicButtonsPanel): - bl_label = "Force Fields" + bl_label = "Force Fields" - def draw(self, context): - layout = self.layout - - ob = context.object - field = ob.field - - split = layout.split(percentage=0.2) - split.itemL(text="Type:") - split.itemR(field, "type",text="") - - if field.type not in ('NONE', 'GUIDE', 'TEXTURE'): - split = layout.split(percentage=0.2) - #split = layout.row() - split.itemL(text="Shape:") - split.itemR(field, "shape", text="") - - split = layout.split() - - if field.type == 'NONE': - return # nothing to draw - elif field.type == 'GUIDE': - col = split.column() - col.itemR(field, "guide_minimum") - col.itemR(field, "guide_free") - col.itemR(field, "falloff_power") - col.itemR(field, "guide_path_add") - - col = split.column() - col.itemL(text="Clumping:") - col.itemR(field, "guide_clump_amount") - col.itemR(field, "guide_clump_shape") - - row = layout.row() - row.itemR(field, "use_max_distance") - sub = row.row() - sub.active = field.use_max_distance - sub.itemR(field, "maximum_distance") - - layout.itemS() + def draw(self, context): + layout = self.layout - layout.itemR(field, "guide_kink_type") - if (field.guide_kink_type != "NONE"): - layout.itemR(field, "guide_kink_axis") - - flow = layout.column_flow() - flow.itemR(field, "guide_kink_frequency") - flow.itemR(field, "guide_kink_shape") - flow.itemR(field, "guide_kink_amplitude") + ob = context.object + field = ob.field - elif field.type == 'TEXTURE': - col = split.column() - col.itemR(field, "strength") - col.itemR(field, "texture", text="") - col.itemR(field, "texture_mode", text="") - col.itemR(field, "texture_nabla") - - col = split.column() - col.itemR(field, "use_coordinates") - col.itemR(field, "root_coordinates") - col.itemR(field, "force_2d") + split = layout.split(percentage=0.2) + split.itemL(text="Type:") + split.itemR(field, "type",text="") - else : - basic_force_field_settings_ui(self, field) - - if field.type not in ('NONE', 'GUIDE'): - - layout.itemL(text="Falloff:") - layout.itemR(field, "falloff_type", expand=True) + if field.type not in ('NONE', 'GUIDE', 'TEXTURE'): + split = layout.split(percentage=0.2) + #split = layout.row() + split.itemL(text="Shape:") + split.itemR(field, "shape", text="") - basic_force_field_falloff_ui(self, field) - - if field.falloff_type == 'CONE': - layout.itemS() - - split = layout.split(percentage=0.35) - - col = split.column() - col.itemL(text="Angular:") - col.itemR(field, "use_radial_min", text="Use Minimum") - col.itemR(field, "use_radial_max", text="Use Maximum") - - col = split.column() - col.itemR(field, "radial_falloff", text="Power") - - sub = col.column() - sub.active = field.use_radial_min - sub.itemR(field, "radial_minimum", text="Angle") - - sub = col.column() - sub.active = field.use_radial_max - sub.itemR(field, "radial_maximum", text="Angle") - - elif field.falloff_type == 'TUBE': - layout.itemS() - - split = layout.split(percentage=0.35) - - col = split.column() - col.itemL(text="Radial:") - col.itemR(field, "use_radial_min", text="Use Minimum") - col.itemR(field, "use_radial_max", text="Use Maximum") - - col = split.column() - col.itemR(field, "radial_falloff", text="Power") - - sub = col.column() - sub.active = field.use_radial_min - sub.itemR(field, "radial_minimum", text="Distance") - - sub = col.column() - sub.active = field.use_radial_max - sub.itemR(field, "radial_maximum", text="Distance") + split = layout.split() + + if field.type == 'NONE': + return # nothing to draw + elif field.type == 'GUIDE': + col = split.column() + col.itemR(field, "guide_minimum") + col.itemR(field, "guide_free") + col.itemR(field, "falloff_power") + col.itemR(field, "guide_path_add") + + col = split.column() + col.itemL(text="Clumping:") + col.itemR(field, "guide_clump_amount") + col.itemR(field, "guide_clump_shape") + + row = layout.row() + row.itemR(field, "use_max_distance") + sub = row.row() + sub.active = field.use_max_distance + sub.itemR(field, "maximum_distance") + + layout.itemS() + + layout.itemR(field, "guide_kink_type") + if (field.guide_kink_type != "NONE"): + layout.itemR(field, "guide_kink_axis") + + flow = layout.column_flow() + flow.itemR(field, "guide_kink_frequency") + flow.itemR(field, "guide_kink_shape") + flow.itemR(field, "guide_kink_amplitude") + + elif field.type == 'TEXTURE': + col = split.column() + col.itemR(field, "strength") + col.itemR(field, "texture", text="") + col.itemR(field, "texture_mode", text="") + col.itemR(field, "texture_nabla") + + col = split.column() + col.itemR(field, "use_coordinates") + col.itemR(field, "root_coordinates") + col.itemR(field, "force_2d") + + else : + basic_force_field_settings_ui(self, field) + + if field.type not in ('NONE', 'GUIDE'): + + layout.itemL(text="Falloff:") + layout.itemR(field, "falloff_type", expand=True) + + basic_force_field_falloff_ui(self, field) + + if field.falloff_type == 'CONE': + layout.itemS() + + split = layout.split(percentage=0.35) + + col = split.column() + col.itemL(text="Angular:") + col.itemR(field, "use_radial_min", text="Use Minimum") + col.itemR(field, "use_radial_max", text="Use Maximum") + + col = split.column() + col.itemR(field, "radial_falloff", text="Power") + + sub = col.column() + sub.active = field.use_radial_min + sub.itemR(field, "radial_minimum", text="Angle") + + sub = col.column() + sub.active = field.use_radial_max + sub.itemR(field, "radial_maximum", text="Angle") + + elif field.falloff_type == 'TUBE': + layout.itemS() + + split = layout.split(percentage=0.35) + + col = split.column() + col.itemL(text="Radial:") + col.itemR(field, "use_radial_min", text="Use Minimum") + col.itemR(field, "use_radial_max", text="Use Maximum") + + col = split.column() + col.itemR(field, "radial_falloff", text="Power") + + sub = col.column() + sub.active = field.use_radial_min + sub.itemR(field, "radial_minimum", text="Distance") + + sub = col.column() + sub.active = field.use_radial_max + sub.itemR(field, "radial_maximum", text="Distance") class PHYSICS_PT_collision(PhysicButtonsPanel): - bl_label = "Collision" - #bl_default_closed = True - - def poll(self, context): - ob = context.object - rd = context.scene.render_data - return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - - def draw(self, context): - layout = self.layout - - md = context.collision + bl_label = "Collision" + #bl_default_closed = True - split = layout.split() - split.operator_context = 'EXEC_DEFAULT' + def poll(self, context): + ob = context.object + rd = context.scene.render_data + return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - if md: - # remove modifier + settings - split.set_context_pointer("modifier", md) - split.itemO("object.modifier_remove", text="Remove") - col = split.column() - - #row = split.row(align=True) - #row.itemR(md, "render", text="") - #row.itemR(md, "realtime", text="") - - coll = md.settings - - else: - # add modifier - split.item_enumO("object.modifier_add", "type", 'COLLISION', text="Add") - split.itemL() - - coll = None - - if coll: - settings = context.object.collision + def draw(self, context): + layout = self.layout + + md = context.collision + + split = layout.split() + split.operator_context = 'EXEC_DEFAULT' + + if md: + # remove modifier + settings + split.set_context_pointer("modifier", md) + split.itemO("object.modifier_remove", text="Remove") + col = split.column() + + #row = split.row(align=True) + #row.itemR(md, "render", text="") + #row.itemR(md, "realtime", text="") + + coll = md.settings + + else: + # add modifier + split.item_enumO("object.modifier_add", "type", 'COLLISION', text="Add") + split.itemL() + + coll = None + + if coll: + settings = context.object.collision + + layout.active = settings.enabled + + split = layout.split() + + col = split.column() + col.itemL(text="Particle:") + col.itemR(settings, "permeability", slider=True) + col.itemL(text="Particle Damping:") + sub = col.column(align=True) + sub.itemR(settings, "damping_factor", text="Factor", slider=True) + sub.itemR(settings, "random_damping", text="Random", slider=True) + + col.itemL(text="Soft Body and Cloth:") + sub = col.column(align=True) + sub.itemR(settings, "outer_thickness", text="Outer", slider=True) + sub.itemR(settings, "inner_thickness", text="Inner", slider=True) + + layout.itemL(text="Force Fields:") + layout.itemR(settings, "absorption", text="Absorption") + + col = split.column() + col.itemL(text="") + col.itemR(settings, "kill_particles") + col.itemL(text="Particle Friction:") + sub = col.column(align=True) + sub.itemR(settings, "friction_factor", text="Factor", slider=True) + sub.itemR(settings, "random_friction", text="Random", slider=True) + col.itemL(text="Soft Body Damping:") + col.itemR(settings, "damping", text="Factor", slider=True) - layout.active = settings.enabled - - split = layout.split() - - col = split.column() - col.itemL(text="Particle:") - col.itemR(settings, "permeability", slider=True) - col.itemL(text="Particle Damping:") - sub = col.column(align=True) - sub.itemR(settings, "damping_factor", text="Factor", slider=True) - sub.itemR(settings, "random_damping", text="Random", slider=True) - - col.itemL(text="Soft Body and Cloth:") - sub = col.column(align=True) - sub.itemR(settings, "outer_thickness", text="Outer", slider=True) - sub.itemR(settings, "inner_thickness", text="Inner", slider=True) - - layout.itemL(text="Force Fields:") - layout.itemR(settings, "absorption", text="Absorption") - - col = split.column() - col.itemL(text="") - col.itemR(settings, "kill_particles") - col.itemL(text="Particle Friction:") - sub = col.column(align=True) - sub.itemR(settings, "friction_factor", text="Factor", slider=True) - sub.itemR(settings, "random_friction", text="Random", slider=True) - col.itemL(text="Soft Body Damping:") - col.itemR(settings, "damping", text="Factor", slider=True) - bpy.types.register(PHYSICS_PT_field) bpy.types.register(PHYSICS_PT_collision) diff --git a/release/scripts/ui/buttons_physics_fluid.py b/release/scripts/ui/buttons_physics_fluid.py index 047c2e17db9..cdef3f88185 100644 --- a/release/scripts/ui/buttons_physics_fluid.py +++ b/release/scripts/ui/buttons_physics_fluid.py @@ -2,254 +2,254 @@ import bpy class PhysicButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + ob = context.object + rd = context.scene.render_data + return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - def poll(self, context): - ob = context.object - rd = context.scene.render_data - return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - class PHYSICS_PT_fluid(PhysicButtonsPanel): - bl_label = "Fluid" + bl_label = "Fluid" - def draw(self, context): - layout = self.layout - - md = context.fluid - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - split.operator_context = 'EXEC_DEFAULT' + md = context.fluid + ob = context.object - if md: - # remove modifier + settings - split.set_context_pointer("modifier", md) - split.itemO("object.modifier_remove", text="Remove") + split = layout.split() + split.operator_context = 'EXEC_DEFAULT' - row = split.row(align=True) - row.itemR(md, "render", text="") - row.itemR(md, "realtime", text="") - - fluid = md.settings - - else: - # add modifier - split.item_enumO("object.modifier_add", "type", 'FLUID_SIMULATION', text="Add") - split.itemL() - - fluid = None - - - if fluid: - layout.itemR(fluid, "type") + if md: + # remove modifier + settings + split.set_context_pointer("modifier", md) + split.itemO("object.modifier_remove", text="Remove") - if fluid.type == 'DOMAIN': - layout.itemO("fluid.bake", text="Bake Fluid Simulation", icon='ICON_MOD_FLUIDSIM') - split = layout.split() - - col = split.column() - col.itemL(text="Resolution:") - col.itemR(fluid, "resolution", text="Final") - col.itemL(text="Render Display:") - col.itemR(fluid, "render_display_mode", text="") - col.itemL(text="Time:") - sub = col.column(align=True) - sub.itemR(fluid, "start_time", text="Start") - sub.itemR(fluid, "end_time", text="End") - - col = split.column() - col.itemL(text="Required Memory: " + fluid.memory_estimate) - col.itemR(fluid, "preview_resolution", text="Preview") - col.itemL(text="Viewport Display:") - col.itemR(fluid, "viewport_display_mode", text="") - col.itemL() - col.itemR(fluid, "generate_speed_vectors") - col.itemR(fluid, "reverse_frames") - - layout.itemR(fluid, "path", text="") - - elif fluid.type == 'FLUID': - split = layout.split() - - col = split.column() - col.itemL(text="Volume Initialization:") - col.itemR(fluid, "volume_initialization", text="") - col.itemR(fluid, "export_animated_mesh") - - col = split.column() - col.itemL(text="Initial Velocity:") - col.itemR(fluid, "initial_velocity", text="") - - elif fluid.type == 'OBSTACLE': - split = layout.split() - - col = split.column() - col.itemL(text="Volume Initialization:") - col.itemR(fluid, "volume_initialization", text="") - col.itemR(fluid, "export_animated_mesh") - - col = split.column() - col.itemL(text="Slip Type:") - col.itemR(fluid, "slip_type", text="") - if fluid.slip_type == 'PARTIALSLIP': - col.itemR(fluid, "partial_slip_factor", slider=True, text="Amount") - - col.itemL(text="Impact:") - col.itemR(fluid, "impact_factor", text="Factor") - - elif fluid.type == 'INFLOW': - split = layout.split() - - col = split.column() - col.itemL(text="Volume Initialization:") - col.itemR(fluid, "volume_initialization", text="") - col.itemR(fluid, "export_animated_mesh") - col.itemR(fluid, "local_coordinates") - - col = split.column() - col.itemL(text="Inflow Velocity:") - col.itemR(fluid, "inflow_velocity", text="") - - elif fluid.type == 'OUTFLOW': - split = layout.split() - - col = split.column() - col.itemL(text="Volume Initialization:") - col.itemR(fluid, "volume_initialization", text="") - col.itemR(fluid, "export_animated_mesh") - - split.column() - - elif fluid.type == 'PARTICLE': - split = layout.split(percentage=0.5) - - col = split.column() - col.itemL(text="Influence:") - col.itemR(fluid, "particle_influence", text="Size") - col.itemR(fluid, "alpha_influence", text="Alpha") - - col = split.column() - col.itemL(text="Type:") - col.itemR(fluid, "drops") - col.itemR(fluid, "floats") - col = split.column() - col.itemL() - col.itemR(fluid, "tracer") - - layout.itemR(fluid, "path", text="") - - elif fluid.type == 'CONTROL': - split = layout.split() - - col = split.column() - col.itemL(text="") - col.itemR(fluid, "quality", slider=True) - col.itemR(fluid, "reverse_frames") - - col = split.column() - col.itemL(text="Time:") - sub = col.column(align=True) - sub.itemR(fluid, "start_time", text="Start") - sub.itemR(fluid, "end_time", text="End") - - split = layout.split() - - col = split.column() - col.itemL(text="Attraction Force:") - sub = col.column(align=True) - sub.itemR(fluid, "attraction_strength", text="Strength") - sub.itemR(fluid, "attraction_radius", text="Radius") - - col = split.column() - col.itemL(text="Velocity Force:") - sub = col.column(align=True) - sub.itemR(fluid, "velocity_strength", text="Strength") - sub.itemR(fluid, "velocity_radius", text="Radius") + row = split.row(align=True) + row.itemR(md, "render", text="") + row.itemR(md, "realtime", text="") + + fluid = md.settings + + else: + # add modifier + split.item_enumO("object.modifier_add", "type", 'FLUID_SIMULATION', text="Add") + split.itemL() + + fluid = None + + + if fluid: + layout.itemR(fluid, "type") + + if fluid.type == 'DOMAIN': + layout.itemO("fluid.bake", text="Bake Fluid Simulation", icon='ICON_MOD_FLUIDSIM') + split = layout.split() + + col = split.column() + col.itemL(text="Resolution:") + col.itemR(fluid, "resolution", text="Final") + col.itemL(text="Render Display:") + col.itemR(fluid, "render_display_mode", text="") + col.itemL(text="Time:") + sub = col.column(align=True) + sub.itemR(fluid, "start_time", text="Start") + sub.itemR(fluid, "end_time", text="End") + + col = split.column() + col.itemL(text="Required Memory: " + fluid.memory_estimate) + col.itemR(fluid, "preview_resolution", text="Preview") + col.itemL(text="Viewport Display:") + col.itemR(fluid, "viewport_display_mode", text="") + col.itemL() + col.itemR(fluid, "generate_speed_vectors") + col.itemR(fluid, "reverse_frames") + + layout.itemR(fluid, "path", text="") + + elif fluid.type == 'FLUID': + split = layout.split() + + col = split.column() + col.itemL(text="Volume Initialization:") + col.itemR(fluid, "volume_initialization", text="") + col.itemR(fluid, "export_animated_mesh") + + col = split.column() + col.itemL(text="Initial Velocity:") + col.itemR(fluid, "initial_velocity", text="") + + elif fluid.type == 'OBSTACLE': + split = layout.split() + + col = split.column() + col.itemL(text="Volume Initialization:") + col.itemR(fluid, "volume_initialization", text="") + col.itemR(fluid, "export_animated_mesh") + + col = split.column() + col.itemL(text="Slip Type:") + col.itemR(fluid, "slip_type", text="") + if fluid.slip_type == 'PARTIALSLIP': + col.itemR(fluid, "partial_slip_factor", slider=True, text="Amount") + + col.itemL(text="Impact:") + col.itemR(fluid, "impact_factor", text="Factor") + + elif fluid.type == 'INFLOW': + split = layout.split() + + col = split.column() + col.itemL(text="Volume Initialization:") + col.itemR(fluid, "volume_initialization", text="") + col.itemR(fluid, "export_animated_mesh") + col.itemR(fluid, "local_coordinates") + + col = split.column() + col.itemL(text="Inflow Velocity:") + col.itemR(fluid, "inflow_velocity", text="") + + elif fluid.type == 'OUTFLOW': + split = layout.split() + + col = split.column() + col.itemL(text="Volume Initialization:") + col.itemR(fluid, "volume_initialization", text="") + col.itemR(fluid, "export_animated_mesh") + + split.column() + + elif fluid.type == 'PARTICLE': + split = layout.split(percentage=0.5) + + col = split.column() + col.itemL(text="Influence:") + col.itemR(fluid, "particle_influence", text="Size") + col.itemR(fluid, "alpha_influence", text="Alpha") + + col = split.column() + col.itemL(text="Type:") + col.itemR(fluid, "drops") + col.itemR(fluid, "floats") + col = split.column() + col.itemL() + col.itemR(fluid, "tracer") + + layout.itemR(fluid, "path", text="") + + elif fluid.type == 'CONTROL': + split = layout.split() + + col = split.column() + col.itemL(text="") + col.itemR(fluid, "quality", slider=True) + col.itemR(fluid, "reverse_frames") + + col = split.column() + col.itemL(text="Time:") + sub = col.column(align=True) + sub.itemR(fluid, "start_time", text="Start") + sub.itemR(fluid, "end_time", text="End") + + split = layout.split() + + col = split.column() + col.itemL(text="Attraction Force:") + sub = col.column(align=True) + sub.itemR(fluid, "attraction_strength", text="Strength") + sub.itemR(fluid, "attraction_radius", text="Radius") + + col = split.column() + col.itemL(text="Velocity Force:") + sub = col.column(align=True) + sub.itemR(fluid, "velocity_strength", text="Strength") + sub.itemR(fluid, "velocity_radius", text="Radius") class PHYSICS_PT_domain_gravity(PhysicButtonsPanel): - bl_label = "Domain World" - bl_default_closed = True - - def poll(self, context): - md = context.fluid - return md and (md.settings.type == 'DOMAIN') + bl_label = "Domain World" + bl_default_closed = True + + def poll(self, context): + md = context.fluid + return md and (md.settings.type == 'DOMAIN') + + def draw(self, context): + layout = self.layout + + fluid = context.fluid.settings + + split = layout.split() + + col = split.column() + col.itemL(text="Gravity:") + col.itemR(fluid, "gravity", text="") + col.itemL(text="Real World Size:") + col.itemR(fluid, "real_world_size", text="Metres") + + col = split.column() + col.itemL(text="Viscosity Presets:") + sub = col.column(align=True) + sub.itemR(fluid, "viscosity_preset", text="") + + if fluid.viscosity_preset == 'MANUAL': + sub.itemR(fluid, "viscosity_base", text="Base") + sub.itemR(fluid, "viscosity_exponent", text="Exponent", slider=True) + else: + sub.itemL() + sub.itemL() + + col.itemL(text="Optimization:") + sub = col.column(align=True) + sub.itemR(fluid, "grid_levels", slider=True) + sub.itemR(fluid, "compressibility", slider=True) - def draw(self, context): - layout = self.layout - - fluid = context.fluid.settings - - split = layout.split() - - col = split.column() - col.itemL(text="Gravity:") - col.itemR(fluid, "gravity", text="") - col.itemL(text="Real World Size:") - col.itemR(fluid, "real_world_size", text="Metres") - - col = split.column() - col.itemL(text="Viscosity Presets:") - sub = col.column(align=True) - sub.itemR(fluid, "viscosity_preset", text="") - - if fluid.viscosity_preset == 'MANUAL': - sub.itemR(fluid, "viscosity_base", text="Base") - sub.itemR(fluid, "viscosity_exponent", text="Exponent", slider=True) - else: - sub.itemL() - sub.itemL() - - col.itemL(text="Optimization:") - sub = col.column(align=True) - sub.itemR(fluid, "grid_levels", slider=True) - sub.itemR(fluid, "compressibility", slider=True) - class PHYSICS_PT_domain_boundary(PhysicButtonsPanel): - bl_label = "Domain Boundary" - bl_default_closed = True - - def poll(self, context): - md = context.fluid - return md and (md.settings.type == 'DOMAIN') + bl_label = "Domain Boundary" + bl_default_closed = True - def draw(self, context): - layout = self.layout - - fluid = context.fluid.settings - - split = layout.split() - - col = split.column() - col.itemL(text="Slip Type:") - sub = col.column(align=True) - sub.itemR(fluid, "slip_type", text="") - if fluid.slip_type == 'PARTIALSLIP': - sub.itemR(fluid, "partial_slip_factor", slider=True, text="Amount") + def poll(self, context): + md = context.fluid + return md and (md.settings.type == 'DOMAIN') + + def draw(self, context): + layout = self.layout + + fluid = context.fluid.settings + + split = layout.split() + + col = split.column() + col.itemL(text="Slip Type:") + sub = col.column(align=True) + sub.itemR(fluid, "slip_type", text="") + if fluid.slip_type == 'PARTIALSLIP': + sub.itemR(fluid, "partial_slip_factor", slider=True, text="Amount") + + col = split.column() + col.itemL(text="Surface:") + sub = col.column(align=True) + sub.itemR(fluid, "surface_smoothing", text="Smoothing") + sub.itemR(fluid, "surface_subdivisions", text="Subdivisions") - col = split.column() - col.itemL(text="Surface:") - sub = col.column(align=True) - sub.itemR(fluid, "surface_smoothing", text="Smoothing") - sub.itemR(fluid, "surface_subdivisions", text="Subdivisions") - class PHYSICS_PT_domain_particles(PhysicButtonsPanel): - bl_label = "Domain Particles" - bl_default_closed = True - - def poll(self, context): - md = context.fluid - return md and (md.settings.type == 'DOMAIN') - - def draw(self, context): - layout = self.layout - - fluid = context.fluid.settings - - col = layout.column(align=True) - col.itemR(fluid, "tracer_particles") - col.itemR(fluid, "generate_particles") + bl_label = "Domain Particles" + bl_default_closed = True + + def poll(self, context): + md = context.fluid + return md and (md.settings.type == 'DOMAIN') + + def draw(self, context): + layout = self.layout + + fluid = context.fluid.settings + + col = layout.column(align=True) + col.itemR(fluid, "tracer_particles") + col.itemR(fluid, "generate_particles") bpy.types.register(PHYSICS_PT_fluid) bpy.types.register(PHYSICS_PT_domain_gravity) diff --git a/release/scripts/ui/buttons_physics_smoke.py b/release/scripts/ui/buttons_physics_smoke.py index dd728fcc876..eaf32ccb0f3 100644 --- a/release/scripts/ui/buttons_physics_smoke.py +++ b/release/scripts/ui/buttons_physics_smoke.py @@ -5,186 +5,186 @@ from buttons_physics_common import point_cache_ui from buttons_physics_common import effector_weights_ui class PhysicButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + ob = context.object + rd = context.scene.render_data + return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - def poll(self, context): - ob = context.object - rd = context.scene.render_data - return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - class PHYSICS_PT_smoke(PhysicButtonsPanel): - bl_label = "Smoke" + bl_label = "Smoke" - def draw(self, context): - layout = self.layout - - md = context.smoke - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - split.operator_context = 'EXEC_DEFAULT' + md = context.smoke + ob = context.object - if md: - # remove modifier + settings - split.set_context_pointer("modifier", md) - split.itemO("object.modifier_remove", text="Remove") + split = layout.split() + split.operator_context = 'EXEC_DEFAULT' - row = split.row(align=True) - row.itemR(md, "render", text="") - row.itemR(md, "realtime", text="") - - else: - # add modifier - split.item_enumO("object.modifier_add", "type", 'SMOKE', text="Add") - split.itemL() + if md: + # remove modifier + settings + split.set_context_pointer("modifier", md) + split.itemO("object.modifier_remove", text="Remove") - if md: - layout.itemR(md, "smoke_type", expand=True) - - if md.smoke_type == 'TYPE_DOMAIN': - - domain = md.domain_settings - - split = layout.split() - - col = split.column() - col.itemL(text="Resolution:") - col.itemR(domain, "maxres", text="Divisions") - - col = split.column() - col.itemL(text="Behavior:") - col.itemR(domain, "alpha") - col.itemR(domain, "beta") - col.itemR(domain, "dissolve_smoke", text="Dissolve") - sub = col.column() - sub.active = domain.dissolve_smoke - sub.itemR(domain, "dissolve_speed", text="Time") - sub.itemR(domain, "dissolve_smoke_log", text="Slow") - - elif md.smoke_type == 'TYPE_FLOW': - - flow = md.flow_settings - - split = layout.split() - - col = split.column() - col.itemR(flow, "outflow") - col.itemL(text="Particle System:") - col.item_pointerR(flow, "psys", ob, "particle_systems", text="") - - if md.flow_settings.outflow: - col = split.column() - else: - col = split.column() - col.itemL(text="Behavior:") - col.itemR(flow, "temperature") - col.itemR(flow, "density") - - #elif md.smoke_type == 'TYPE_COLL': - # layout.itemS() + row = split.row(align=True) + row.itemR(md, "render", text="") + row.itemR(md, "realtime", text="") + + else: + # add modifier + split.item_enumO("object.modifier_add", "type", 'SMOKE', text="Add") + split.itemL() + + if md: + layout.itemR(md, "smoke_type", expand=True) + + if md.smoke_type == 'TYPE_DOMAIN': + + domain = md.domain_settings + + split = layout.split() + + col = split.column() + col.itemL(text="Resolution:") + col.itemR(domain, "maxres", text="Divisions") + + col = split.column() + col.itemL(text="Behavior:") + col.itemR(domain, "alpha") + col.itemR(domain, "beta") + col.itemR(domain, "dissolve_smoke", text="Dissolve") + sub = col.column() + sub.active = domain.dissolve_smoke + sub.itemR(domain, "dissolve_speed", text="Time") + sub.itemR(domain, "dissolve_smoke_log", text="Slow") + + elif md.smoke_type == 'TYPE_FLOW': + + flow = md.flow_settings + + split = layout.split() + + col = split.column() + col.itemR(flow, "outflow") + col.itemL(text="Particle System:") + col.item_pointerR(flow, "psys", ob, "particle_systems", text="") + + if md.flow_settings.outflow: + col = split.column() + else: + col = split.column() + col.itemL(text="Behavior:") + col.itemR(flow, "temperature") + col.itemR(flow, "density") + + #elif md.smoke_type == 'TYPE_COLL': + # layout.itemS() class PHYSICS_PT_smoke_groups(PhysicButtonsPanel): - bl_label = "Smoke Groups" - bl_default_closed = True - - def poll(self, context): - md = context.smoke - return md and (md.smoke_type == 'TYPE_DOMAIN') + bl_label = "Smoke Groups" + bl_default_closed = True - def draw(self, context): - layout = self.layout - - group = context.smoke.domain_settings - - split = layout.split() - - col = split.column() - col.itemL(text="Flow Group:") - col.itemR(group, "fluid_group", text="") - - #col.itemL(text="Effector Group:") - #col.itemR(group, "eff_group", text="") - - col = split.column() - col.itemL(text="Collision Group:") - col.itemR(group, "coll_group", text="") + def poll(self, context): + md = context.smoke + return md and (md.smoke_type == 'TYPE_DOMAIN') + + def draw(self, context): + layout = self.layout + + group = context.smoke.domain_settings + + split = layout.split() + + col = split.column() + col.itemL(text="Flow Group:") + col.itemR(group, "fluid_group", text="") + + #col.itemL(text="Effector Group:") + #col.itemR(group, "eff_group", text="") + + col = split.column() + col.itemL(text="Collision Group:") + col.itemR(group, "coll_group", text="") class PHYSICS_PT_smoke_cache(PhysicButtonsPanel): - bl_label = "Smoke Cache" - bl_default_closed = True + bl_label = "Smoke Cache" + bl_default_closed = True - def poll(self, context): - md = context.smoke - return md and (md.smoke_type == 'TYPE_DOMAIN') + def poll(self, context): + md = context.smoke + return md and (md.smoke_type == 'TYPE_DOMAIN') - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout + + md = context.smoke.domain_settings + cache = md.point_cache_low + + point_cache_ui(self, cache, cache.baked==False, 0, 1) - md = context.smoke.domain_settings - cache = md.point_cache_low - - point_cache_ui(self, cache, cache.baked==False, 0, 1) - class PHYSICS_PT_smoke_highres(PhysicButtonsPanel): - bl_label = "Smoke High Resolution" - bl_default_closed = True - - def poll(self, context): - md = context.smoke - return md and (md.smoke_type == 'TYPE_DOMAIN') + bl_label = "Smoke High Resolution" + bl_default_closed = True - def draw_header(self, context): - high = context.smoke.domain_settings - - self.layout.itemR(high, "highres", text="") - - def draw(self, context): - layout = self.layout - - md = context.smoke.domain_settings + def poll(self, context): + md = context.smoke + return md and (md.smoke_type == 'TYPE_DOMAIN') + + def draw_header(self, context): + high = context.smoke.domain_settings + + self.layout.itemR(high, "highres", text="") + + def draw(self, context): + layout = self.layout + + md = context.smoke.domain_settings + + split = layout.split() + + col = split.column() + col.itemL(text="Resolution:") + col.itemR(md, "amplify", text="Divisions") + + col = split.column() + col.itemL(text="Noise Method:") + col.row().itemR(md, "noise_type", text="") + col.itemR(md, "strength") + col.itemR(md, "viewhighres") - split = layout.split() - - col = split.column() - col.itemL(text="Resolution:") - col.itemR(md, "amplify", text="Divisions") - - col = split.column() - col.itemL(text="Noise Method:") - col.row().itemR(md, "noise_type", text="") - col.itemR(md, "strength") - col.itemR(md, "viewhighres") - class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel): - bl_label = "Smoke High Resolution Cache" - bl_default_closed = True + bl_label = "Smoke High Resolution Cache" + bl_default_closed = True - def poll(self, context): - md = context.smoke - return md and (md.smoke_type == 'TYPE_DOMAIN') and md.domain_settings.highres + def poll(self, context): + md = context.smoke + return md and (md.smoke_type == 'TYPE_DOMAIN') and md.domain_settings.highres - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout + + md = context.smoke.domain_settings + cache = md.point_cache_high + + point_cache_ui(self, cache, cache.baked==False, 0, 1) - md = context.smoke.domain_settings - cache = md.point_cache_high - - point_cache_ui(self, cache, cache.baked==False, 0, 1) - class PHYSICS_PT_smoke_field_weights(PhysicButtonsPanel): - bl_label = "Smoke Field Weights" - bl_default_closed = True - - def poll(self, context): - smoke = context.smoke - return (smoke and smoke.smoke_type == 'TYPE_DOMAIN') - - def draw(self, context): - domain = context.smoke.domain_settings - effector_weights_ui(self, domain.effector_weights) - + bl_label = "Smoke Field Weights" + bl_default_closed = True + + def poll(self, context): + smoke = context.smoke + return (smoke and smoke.smoke_type == 'TYPE_DOMAIN') + + def draw(self, context): + domain = context.smoke.domain_settings + effector_weights_ui(self, domain.effector_weights) + bpy.types.register(PHYSICS_PT_smoke) bpy.types.register(PHYSICS_PT_smoke_field_weights) bpy.types.register(PHYSICS_PT_smoke_cache) diff --git a/release/scripts/ui/buttons_physics_softbody.py b/release/scripts/ui/buttons_physics_softbody.py index 41c061b85c1..a11c33b95b2 100644 --- a/release/scripts/ui/buttons_physics_softbody.py +++ b/release/scripts/ui/buttons_physics_softbody.py @@ -5,236 +5,236 @@ from buttons_physics_common import point_cache_ui from buttons_physics_common import effector_weights_ui def softbody_panel_enabled(md): - return md.point_cache.baked==False + return md.point_cache.baked==False class PhysicButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "physics" + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "physics" + + def poll(self, context): + ob = context.object + rd = context.scene.render_data + return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - def poll(self, context): - ob = context.object - rd = context.scene.render_data - return (ob and ob.type == 'MESH') and (not rd.use_game_engine) - class PHYSICS_PT_softbody(PhysicButtonsPanel): - bl_label = "Soft Body" + bl_label = "Soft Body" - def draw(self, context): - layout = self.layout - - md = context.soft_body - ob = context.object + def draw(self, context): + layout = self.layout - split = layout.split() - split.operator_context = "EXEC_DEFAULT" + md = context.soft_body + ob = context.object - if md: - # remove modifier + settings - split.set_context_pointer("modifier", md) - split.itemO("object.modifier_remove", text="Remove") + split = layout.split() + split.operator_context = "EXEC_DEFAULT" - row = split.row(align=True) - row.itemR(md, "render", text="") - row.itemR(md, "realtime", text="") - else: - # add modifier - split.item_enumO("object.modifier_add", "type", 'SOFT_BODY', text="Add") - split.itemL("") - - if md: - softbody = md.settings + if md: + # remove modifier + settings + split.set_context_pointer("modifier", md) + split.itemO("object.modifier_remove", text="Remove") - # General - split = layout.split() - split.enabled = softbody_panel_enabled(md) - - col = split.column() - col.itemL(text="Object:") - col.itemR(softbody, "mass") - col.itemR(softbody, "friction") + row = split.row(align=True) + row.itemR(md, "render", text="") + row.itemR(md, "realtime", text="") + else: + # add modifier + split.item_enumO("object.modifier_add", "type", 'SOFT_BODY', text="Add") + split.itemL("") + + if md: + softbody = md.settings + + # General + split = layout.split() + split.enabled = softbody_panel_enabled(md) + + col = split.column() + col.itemL(text="Object:") + col.itemR(softbody, "mass") + col.itemR(softbody, "friction") + + col = split.column() + col.itemL(text="Simulation:") + col.itemR(softbody, "speed") - col = split.column() - col.itemL(text="Simulation:") - col.itemR(softbody, "speed") - class PHYSICS_PT_softbody_cache(PhysicButtonsPanel): - bl_label = "Soft Body Cache" - bl_default_closed = True + bl_label = "Soft Body Cache" + bl_default_closed = True - def poll(self, context): - return context.soft_body + def poll(self, context): + return context.soft_body + + def draw(self, context): + md = context.soft_body + point_cache_ui(self, md.point_cache, softbody_panel_enabled(md), 0, 0) - def draw(self, context): - md = context.soft_body - point_cache_ui(self, md.point_cache, softbody_panel_enabled(md), 0, 0) - class PHYSICS_PT_softbody_goal(PhysicButtonsPanel): - bl_label = "Soft Body Goal" - bl_default_closed = True - - def poll(self, context): - return context.soft_body - - def draw_header(self, context): - softbody = context.soft_body.settings - - self.layout.active = softbody_panel_enabled(context.soft_body) - self.layout.itemR(softbody, "use_goal", text="") - - def draw(self, context): - layout = self.layout - - md = context.soft_body - softbody = md.settings - ob = context.object - - layout.active = softbody.use_goal and softbody_panel_enabled(md) + bl_label = "Soft Body Goal" + bl_default_closed = True - split = layout.split() + def poll(self, context): + return context.soft_body - # Goal - split = layout.split() + def draw_header(self, context): + softbody = context.soft_body.settings - col = split.column() - col.itemL(text="Goal Strengths:") - col.itemR(softbody, "goal_default", text="Default") - sub = col.column(align=True) - sub.itemR(softbody, "goal_min", text="Minimum") - sub.itemR(softbody, "goal_max", text="Maximum") - - col = split.column() - col.itemL(text="Goal Settings:") - col.itemR(softbody, "goal_spring", text="Stiffness") - col.itemR(softbody, "goal_friction", text="Damping") - - layout.item_pointerR(softbody, "goal_vertex_group", ob, "vertex_groups", text="Vertex Group") + self.layout.active = softbody_panel_enabled(context.soft_body) + self.layout.itemR(softbody, "use_goal", text="") + + def draw(self, context): + layout = self.layout + + md = context.soft_body + softbody = md.settings + ob = context.object + + layout.active = softbody.use_goal and softbody_panel_enabled(md) + + split = layout.split() + + # Goal + split = layout.split() + + col = split.column() + col.itemL(text="Goal Strengths:") + col.itemR(softbody, "goal_default", text="Default") + sub = col.column(align=True) + sub.itemR(softbody, "goal_min", text="Minimum") + sub.itemR(softbody, "goal_max", text="Maximum") + + col = split.column() + col.itemL(text="Goal Settings:") + col.itemR(softbody, "goal_spring", text="Stiffness") + col.itemR(softbody, "goal_friction", text="Damping") + + layout.item_pointerR(softbody, "goal_vertex_group", ob, "vertex_groups", text="Vertex Group") class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): - bl_label = "Soft Body Edges" - bl_default_closed = True - - def poll(self, context): - return context.soft_body - - def draw_header(self, context): - softbody = context.soft_body.settings - - self.layout.active = softbody_panel_enabled(context.soft_body) - self.layout.itemR(softbody, "use_edges", text="") - - def draw(self, context): - layout = self.layout - - md = context.soft_body - softbody = md.settings - ob = context.object + bl_label = "Soft Body Edges" + bl_default_closed = True - layout.active = softbody.use_edges and softbody_panel_enabled(md) - - split = layout.split() - - col = split.column() - col.itemL(text="Springs:") - col.itemR(softbody, "pull") - col.itemR(softbody, "push") - col.itemR(softbody, "damp") - col.itemR(softbody, "plastic") - col.itemR(softbody, "bending") - col.itemR(softbody, "spring_length", text="Length") - - col = split.column() - col.itemR(softbody, "stiff_quads") - sub = col.column() - sub.active = softbody.stiff_quads - sub.itemR(softbody, "shear") - - col.itemR(softbody, "new_aero", text="Aero") - sub = col.column() - sub.enabled = softbody.new_aero - sub.itemR(softbody, "aero", text="Factor") + def poll(self, context): + return context.soft_body + + def draw_header(self, context): + softbody = context.soft_body.settings + + self.layout.active = softbody_panel_enabled(context.soft_body) + self.layout.itemR(softbody, "use_edges", text="") + + def draw(self, context): + layout = self.layout + + md = context.soft_body + softbody = md.settings + ob = context.object + + layout.active = softbody.use_edges and softbody_panel_enabled(md) + + split = layout.split() + + col = split.column() + col.itemL(text="Springs:") + col.itemR(softbody, "pull") + col.itemR(softbody, "push") + col.itemR(softbody, "damp") + col.itemR(softbody, "plastic") + col.itemR(softbody, "bending") + col.itemR(softbody, "spring_length", text="Length") + + col = split.column() + col.itemR(softbody, "stiff_quads") + sub = col.column() + sub.active = softbody.stiff_quads + sub.itemR(softbody, "shear") + + col.itemR(softbody, "new_aero", text="Aero") + sub = col.column() + sub.enabled = softbody.new_aero + sub.itemR(softbody, "aero", text="Factor") + + col.itemL(text="Collision:") + col.itemR(softbody, "edge_collision", text="Edge") + col.itemR(softbody, "face_collision", text="Face") - col.itemL(text="Collision:") - col.itemR(softbody, "edge_collision", text="Edge") - col.itemR(softbody, "face_collision", text="Face") - class PHYSICS_PT_softbody_collision(PhysicButtonsPanel): - bl_label = "Soft Body Collision" - bl_default_closed = True - - def poll(self, context): - return context.soft_body - - def draw_header(self, context): - softbody = context.soft_body.settings - - self.layout.active = softbody_panel_enabled(context.soft_body) - self.layout.itemR(softbody, "self_collision", text="") - - def draw(self, context): - layout = self.layout - - md = context.soft_body - softbody = md.settings - ob = context.object + bl_label = "Soft Body Collision" + bl_default_closed = True - layout.active = softbody.self_collision and softbody_panel_enabled(md) - - layout.itemL(text="Collision Type:") - layout.itemR(softbody, "collision_type", expand=True) - - col = layout.column(align=True) - col.itemL(text="Ball:") - col.itemR(softbody, "ball_size", text="Size") - col.itemR(softbody, "ball_stiff", text="Stiffness") - col.itemR(softbody, "ball_damp", text="Dampening") + def poll(self, context): + return context.soft_body + + def draw_header(self, context): + softbody = context.soft_body.settings + + self.layout.active = softbody_panel_enabled(context.soft_body) + self.layout.itemR(softbody, "self_collision", text="") + + def draw(self, context): + layout = self.layout + + md = context.soft_body + softbody = md.settings + ob = context.object + + layout.active = softbody.self_collision and softbody_panel_enabled(md) + + layout.itemL(text="Collision Type:") + layout.itemR(softbody, "collision_type", expand=True) + + col = layout.column(align=True) + col.itemL(text="Ball:") + col.itemR(softbody, "ball_size", text="Size") + col.itemR(softbody, "ball_stiff", text="Stiffness") + col.itemR(softbody, "ball_damp", text="Dampening") class PHYSICS_PT_softbody_solver(PhysicButtonsPanel): - bl_label = "Soft Body Solver" - bl_default_closed = True - - def poll(self, context): - return context.soft_body - - def draw(self, context): - layout = self.layout - - md = context.soft_body - softbody = md.settings - ob = context.object + bl_label = "Soft Body Solver" + bl_default_closed = True - layout.active = softbody_panel_enabled(md) + def poll(self, context): + return context.soft_body - # Solver - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Step Size:") - col.itemR(softbody, "minstep") - col.itemR(softbody, "maxstep") - col.itemR(softbody, "auto_step", text="Auto-Step") - - col = split.column() - col.itemR(softbody, "error_limit") - col.itemL(text="Helpers:") - col.itemR(softbody, "choke") - col.itemR(softbody, "fuzzy") - - layout.itemL(text="Diagnostics:") - layout.itemR(softbody, "diagnose") + def draw(self, context): + layout = self.layout + + md = context.soft_body + softbody = md.settings + ob = context.object + + layout.active = softbody_panel_enabled(md) + + # Solver + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Step Size:") + col.itemR(softbody, "minstep") + col.itemR(softbody, "maxstep") + col.itemR(softbody, "auto_step", text="Auto-Step") + + col = split.column() + col.itemR(softbody, "error_limit") + col.itemL(text="Helpers:") + col.itemR(softbody, "choke") + col.itemR(softbody, "fuzzy") + + layout.itemL(text="Diagnostics:") + layout.itemR(softbody, "diagnose") class PHYSICS_PT_softbody_field_weights(PhysicButtonsPanel): - bl_label = "Soft Body Field Weights" - bl_default_closed = True - - def poll(self, context): - return (context.soft_body) - - def draw(self, context): - md = context.soft_body - softbody = md.settings - effector_weights_ui(self, softbody.effector_weights) - + bl_label = "Soft Body Field Weights" + bl_default_closed = True + + def poll(self, context): + return (context.soft_body) + + def draw(self, context): + md = context.soft_body + softbody = md.settings + effector_weights_ui(self, softbody.effector_weights) + bpy.types.register(PHYSICS_PT_softbody) bpy.types.register(PHYSICS_PT_softbody_cache) bpy.types.register(PHYSICS_PT_softbody_goal) diff --git a/release/scripts/ui/buttons_render.py b/release/scripts/ui/buttons_render.py index f20546a5c4d..2e437b671e5 100644 --- a/release/scripts/ui/buttons_render.py +++ b/release/scripts/ui/buttons_render.py @@ -2,445 +2,445 @@ import bpy class RenderButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "render" - # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here - - def poll(self, context): - rd = context.scene.render_data - return (context.scene and rd.use_game_engine==False) and (rd.engine in self.COMPAT_ENGINES) + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "render" + # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here + + def poll(self, context): + rd = context.scene.render_data + return (context.scene and rd.use_game_engine==False) and (rd.engine in self.COMPAT_ENGINES) class RENDER_PT_render(RenderButtonsPanel): - bl_label = "Render" - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + bl_label = "Render" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - row = layout.row() - row.itemO("screen.render", text="Image", icon='ICON_RENDER_STILL') - row.item_booleanO("screen.render", "animation", True, text="Animation", icon='ICON_RENDER_ANIMATION') + def draw(self, context): + layout = self.layout - layout.itemR(rd, "display_mode", text="Display") + rd = context.scene.render_data + + row = layout.row() + row.itemO("screen.render", text="Image", icon='ICON_RENDER_STILL') + row.item_booleanO("screen.render", "animation", True, text="Animation", icon='ICON_RENDER_ANIMATION') + + layout.itemR(rd, "display_mode", text="Display") class RENDER_PT_layers(RenderButtonsPanel): - bl_label = "Layers" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def draw(self, context): - layout = self.layout - - scene = context.scene - rd = scene.render_data + bl_label = "Layers" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - row = layout.row() - row.template_list(rd, "layers", rd, "active_layer_index", rows=2) + def draw(self, context): + layout = self.layout - col = row.column(align=True) - col.itemO("scene.render_layer_add", icon='ICON_ZOOMIN', text="") - col.itemO("scene.render_layer_remove", icon='ICON_ZOOMOUT', text="") + scene = context.scene + rd = scene.render_data - rl = rd.layers[rd.active_layer_index] - - if rl: - layout.itemR(rl, "name") + row = layout.row() + row.template_list(rd, "layers", rd, "active_layer_index", rows=2) - split = layout.split() - - col = split.column() - col.itemR(scene, "visible_layers", text="Scene") - col = split.column() - col.itemR(rl, "visible_layers", text="Layer") + col = row.column(align=True) + col.itemO("scene.render_layer_add", icon='ICON_ZOOMIN', text="") + col.itemO("scene.render_layer_remove", icon='ICON_ZOOMOUT', text="") - layout.itemR(rl, "light_override", text="Light") - layout.itemR(rl, "material_override", text="Material") - - layout.itemS() - layout.itemL(text="Include:") - - split = layout.split() + rl = rd.layers[rd.active_layer_index] - col = split.column() - col.itemR(rl, "zmask") - row = col.row() - row.itemR(rl, "zmask_negate", text="Negate") - row.active = rl.zmask - col.itemR(rl, "all_z") + if rl: + layout.itemR(rl, "name") - col = split.column() - col.itemR(rl, "solid") - col.itemR(rl, "halo") - col.itemR(rl, "ztransp") + split = layout.split() - col = split.column() - col.itemR(rl, "sky") - col.itemR(rl, "edge") - col.itemR(rl, "strand") + col = split.column() + col.itemR(scene, "visible_layers", text="Scene") + col = split.column() + col.itemR(rl, "visible_layers", text="Layer") - if rl.zmask: - split = layout.split() - split.itemL(text="Zmask Layers:") - split.column().itemR(rl, "zmask_layers", text="") - - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemL(text="Passes:") - col.itemR(rl, "pass_combined") - col.itemR(rl, "pass_z") - col.itemR(rl, "pass_vector") - col.itemR(rl, "pass_normal") - col.itemR(rl, "pass_uv") - col.itemR(rl, "pass_mist") - col.itemR(rl, "pass_object_index") + layout.itemR(rl, "light_override", text="Light") + layout.itemR(rl, "material_override", text="Material") - col = split.column() - col.itemL() - col.itemR(rl, "pass_color") - col.itemR(rl, "pass_diffuse") - row = col.row() - row.itemR(rl, "pass_specular") - row.itemR(rl, "pass_specular_exclude", text="", icon='ICON_X') - row = col.row() - row.itemR(rl, "pass_shadow") - row.itemR(rl, "pass_shadow_exclude", text="", icon='ICON_X') - row = col.row() - row.itemR(rl, "pass_ao") - row.itemR(rl, "pass_ao_exclude", text="", icon='ICON_X') - row = col.row() - row.itemR(rl, "pass_reflection") - row.itemR(rl, "pass_reflection_exclude", text="", icon='ICON_X') - row = col.row() - row.itemR(rl, "pass_refraction") - row.itemR(rl, "pass_refraction_exclude", text="", icon='ICON_X') + layout.itemS() + layout.itemL(text="Include:") + + split = layout.split() + + col = split.column() + col.itemR(rl, "zmask") + row = col.row() + row.itemR(rl, "zmask_negate", text="Negate") + row.active = rl.zmask + col.itemR(rl, "all_z") + + col = split.column() + col.itemR(rl, "solid") + col.itemR(rl, "halo") + col.itemR(rl, "ztransp") + + col = split.column() + col.itemR(rl, "sky") + col.itemR(rl, "edge") + col.itemR(rl, "strand") + + if rl.zmask: + split = layout.split() + split.itemL(text="Zmask Layers:") + split.column().itemR(rl, "zmask_layers", text="") + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemL(text="Passes:") + col.itemR(rl, "pass_combined") + col.itemR(rl, "pass_z") + col.itemR(rl, "pass_vector") + col.itemR(rl, "pass_normal") + col.itemR(rl, "pass_uv") + col.itemR(rl, "pass_mist") + col.itemR(rl, "pass_object_index") + + col = split.column() + col.itemL() + col.itemR(rl, "pass_color") + col.itemR(rl, "pass_diffuse") + row = col.row() + row.itemR(rl, "pass_specular") + row.itemR(rl, "pass_specular_exclude", text="", icon='ICON_X') + row = col.row() + row.itemR(rl, "pass_shadow") + row.itemR(rl, "pass_shadow_exclude", text="", icon='ICON_X') + row = col.row() + row.itemR(rl, "pass_ao") + row.itemR(rl, "pass_ao_exclude", text="", icon='ICON_X') + row = col.row() + row.itemR(rl, "pass_reflection") + row.itemR(rl, "pass_reflection_exclude", text="", icon='ICON_X') + row = col.row() + row.itemR(rl, "pass_refraction") + row.itemR(rl, "pass_refraction_exclude", text="", icon='ICON_X') class RENDER_PT_shading(RenderButtonsPanel): - bl_label = "Shading" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Shading" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data - - split = layout.split() - - col = split.column() - col.itemR(rd, "render_textures", text="Textures") - col.itemR(rd, "render_shadows", text="Shadows") - col.itemR(rd, "render_sss", text="Subsurface Scattering") - col.itemR(rd, "render_envmaps", text="Environment Map") - - col = split.column() - col.itemR(rd, "render_raytracing", text="Ray Tracing") - col.itemR(rd, "color_management") - col.itemR(rd, "alpha_mode", text="Alpha") + def draw(self, context): + layout = self.layout + + rd = context.scene.render_data + + split = layout.split() + + col = split.column() + col.itemR(rd, "render_textures", text="Textures") + col.itemR(rd, "render_shadows", text="Shadows") + col.itemR(rd, "render_sss", text="Subsurface Scattering") + col.itemR(rd, "render_envmaps", text="Environment Map") + + col = split.column() + col.itemR(rd, "render_raytracing", text="Ray Tracing") + col.itemR(rd, "color_management") + col.itemR(rd, "alpha_mode", text="Alpha") class RENDER_PT_performance(RenderButtonsPanel): - bl_label = "Performance" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Performance" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column(align=True) - col.itemL(text="Threads:") - col.row().itemR(rd, "threads_mode", expand=True) - sub = col.column() - sub.enabled = rd.threads_mode == 'THREADS_FIXED' - sub.itemR(rd, "threads") - col.itemL(text="Tiles:") - col.itemR(rd, "parts_x", text="X") - col.itemR(rd, "parts_y", text="Y") + rd = context.scene.render_data - col = split.column() - col.itemL(text="Memory:") - sub = col.column() - sub.itemR(rd, "save_buffers") - sub.enabled = not rd.full_sample - sub = col.column() - sub.active = rd.use_compositing - sub.itemR(rd, "free_image_textures") - sub = col.column() - sub.active = rd.render_raytracing - sub.itemL(text="Acceleration structure:") - sub.itemR(rd, "raytrace_structure", text="") - if rd.raytrace_structure == "OCTREE": - sub.itemR(rd, "octree_resolution", text="Resolution") - else: - sub.itemR(rd, "use_instances", text="Instances") - sub.itemR(rd, "use_local_coords", text="Local Coordinates") + split = layout.split() + + col = split.column(align=True) + col.itemL(text="Threads:") + col.row().itemR(rd, "threads_mode", expand=True) + sub = col.column() + sub.enabled = rd.threads_mode == 'THREADS_FIXED' + sub.itemR(rd, "threads") + col.itemL(text="Tiles:") + col.itemR(rd, "parts_x", text="X") + col.itemR(rd, "parts_y", text="Y") + + col = split.column() + col.itemL(text="Memory:") + sub = col.column() + sub.itemR(rd, "save_buffers") + sub.enabled = not rd.full_sample + sub = col.column() + sub.active = rd.use_compositing + sub.itemR(rd, "free_image_textures") + sub = col.column() + sub.active = rd.render_raytracing + sub.itemL(text="Acceleration structure:") + sub.itemR(rd, "raytrace_structure", text="") + if rd.raytrace_structure == "OCTREE": + sub.itemR(rd, "octree_resolution", text="Resolution") + else: + sub.itemR(rd, "use_instances", text="Instances") + sub.itemR(rd, "use_local_coords", text="Local Coordinates") class RENDER_PT_post_processing(RenderButtonsPanel): - bl_label = "Post Processing" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Post Processing" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def draw(self, context): + layout = self.layout - split = layout.split() + rd = context.scene.render_data + + split = layout.split() + + col = split.column() + col.itemR(rd, "use_compositing") + col.itemR(rd, "use_sequencer") + + col = split.column() + col.itemR(rd, "dither_intensity", text="Dither", slider=True) + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemR(rd, "fields", text="Fields") + sub = col.column() + sub.active = rd.fields + sub.row().itemR(rd, "field_order", expand=True) + sub.itemR(rd, "fields_still", text="Still") + + col = split.column() + col.itemR(rd, "edge") + sub = col.column() + sub.active = rd.edge + sub.itemR(rd, "edge_threshold", text="Threshold", slider=True) + sub.itemR(rd, "edge_color", text="") - col = split.column() - col.itemR(rd, "use_compositing") - col.itemR(rd, "use_sequencer") - - col = split.column() - col.itemR(rd, "dither_intensity", text="Dither", slider=True) - - layout.itemS() - - split = layout.split() - - col = split.column() - col.itemR(rd, "fields", text="Fields") - sub = col.column() - sub.active = rd.fields - sub.row().itemR(rd, "field_order", expand=True) - sub.itemR(rd, "fields_still", text="Still") - - col = split.column() - col.itemR(rd, "edge") - sub = col.column() - sub.active = rd.edge - sub.itemR(rd, "edge_threshold", text="Threshold", slider=True) - sub.itemR(rd, "edge_color", text="") - class RENDER_PT_output(RenderButtonsPanel): - bl_label = "Output" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Output" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data - - layout.itemR(rd, "output_path", text="") + def draw(self, context): + layout = self.layout - split = layout.split() - col = split.column() - col.itemR(rd, "file_format", text="") - col.row().itemR(rd, "color_mode", text="Color", expand=True) + rd = context.scene.render_data - col = split.column() - col.itemR(rd, "file_extensions") - col.itemR(rd, "use_overwrite") - col.itemR(rd, "use_placeholder") + layout.itemR(rd, "output_path", text="") - if rd.file_format in ('AVIJPEG', 'JPEG'): - split = layout.split() - split.itemR(rd, "quality", slider=True) - - elif rd.file_format == 'OPENEXR': - split = layout.split() - - col = split.column() - col.itemL(text="Codec:") - col.itemR(rd, "exr_codec", text="") + split = layout.split() + col = split.column() + col.itemR(rd, "file_format", text="") + col.row().itemR(rd, "color_mode", text="Color", expand=True) - subsplit = split.split() - col = subsplit.column() - col.itemR(rd, "exr_half") - col.itemR(rd, "exr_zbuf") - col = subsplit.column() - col.itemR(rd, "exr_preview") - - elif rd.file_format == 'JPEG2000': - split = layout.split() - col = split.column() - col.itemL(text="Depth:") - col.row().itemR(rd, "jpeg2k_depth", expand=True) + col = split.column() + col.itemR(rd, "file_extensions") + col.itemR(rd, "use_overwrite") + col.itemR(rd, "use_placeholder") - col = split.column() - col.itemR(rd, "jpeg2k_preset", text="") - col.itemR(rd, "jpeg2k_ycc") - - elif rd.file_format in ('CINEON', 'DPX'): - split = layout.split() - col = split.column() - col.itemR(rd, "cineon_log", text="Convert to Log") + if rd.file_format in ('AVIJPEG', 'JPEG'): + split = layout.split() + split.itemR(rd, "quality", slider=True) - col = split.column(align=True) - col.active = rd.cineon_log - col.itemR(rd, "cineon_black", text="Black") - col.itemR(rd, "cineon_white", text="White") - col.itemR(rd, "cineon_gamma", text="Gamma") - - elif rd.file_format == 'TIFF': - split = layout.split() - split.itemR(rd, "tiff_bit") + elif rd.file_format == 'OPENEXR': + split = layout.split() + + col = split.column() + col.itemL(text="Codec:") + col.itemR(rd, "exr_codec", text="") + + subsplit = split.split() + col = subsplit.column() + col.itemR(rd, "exr_half") + col.itemR(rd, "exr_zbuf") + col = subsplit.column() + col.itemR(rd, "exr_preview") + + elif rd.file_format == 'JPEG2000': + split = layout.split() + col = split.column() + col.itemL(text="Depth:") + col.row().itemR(rd, "jpeg2k_depth", expand=True) + + col = split.column() + col.itemR(rd, "jpeg2k_preset", text="") + col.itemR(rd, "jpeg2k_ycc") + + elif rd.file_format in ('CINEON', 'DPX'): + split = layout.split() + col = split.column() + col.itemR(rd, "cineon_log", text="Convert to Log") + + col = split.column(align=True) + col.active = rd.cineon_log + col.itemR(rd, "cineon_black", text="Black") + col.itemR(rd, "cineon_white", text="White") + col.itemR(rd, "cineon_gamma", text="Gamma") + + elif rd.file_format == 'TIFF': + split = layout.split() + split.itemR(rd, "tiff_bit") class RENDER_PT_encoding(RenderButtonsPanel): - bl_label = "Encoding" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def poll(self, context): - rd = context.scene.render_data - return rd.file_format in ('FFMPEG', 'XVID', 'H264', 'THEORA') + bl_label = "Encoding" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def poll(self, context): + rd = context.scene.render_data + return rd.file_format in ('FFMPEG', 'XVID', 'H264', 'THEORA') - split = layout.split() - - split.itemR(rd, "ffmpeg_format") - if rd.ffmpeg_format in ('AVI', 'QUICKTIME', 'MKV', 'OGG'): - split.itemR(rd, "ffmpeg_codec") - else: - split.itemL() + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemR(rd, "ffmpeg_video_bitrate") - col.itemL(text="Rate:") - col.itemR(rd, "ffmpeg_minrate", text="Minimum") - col.itemR(rd, "ffmpeg_maxrate", text="Maximum") - col.itemR(rd, "ffmpeg_buffersize", text="Buffer") - - col = split.column() - col.itemR(rd, "ffmpeg_gopsize") - col.itemR(rd, "ffmpeg_autosplit") - col.itemL(text="Mux:") - col.itemR(rd, "ffmpeg_muxrate", text="Rate") - col.itemR(rd, "ffmpeg_packetsize", text="Packet Size") - - row = layout.row() - row.itemL(text="Audio:") - row = layout.row() - row.itemR(rd, "ffmpeg_audio_codec") - - split = layout.split() + rd = context.scene.render_data - col = split.column() - col.itemR(rd, "ffmpeg_audio_bitrate") - col.itemR(rd, "ffmpeg_audio_mixrate") - col = split.column() - col.itemR(rd, "ffmpeg_multiplex_audio") - col.itemR(rd, "ffmpeg_audio_volume") + split = layout.split() + + split.itemR(rd, "ffmpeg_format") + if rd.ffmpeg_format in ('AVI', 'QUICKTIME', 'MKV', 'OGG'): + split.itemR(rd, "ffmpeg_codec") + else: + split.itemL() + + split = layout.split() + + col = split.column() + col.itemR(rd, "ffmpeg_video_bitrate") + col.itemL(text="Rate:") + col.itemR(rd, "ffmpeg_minrate", text="Minimum") + col.itemR(rd, "ffmpeg_maxrate", text="Maximum") + col.itemR(rd, "ffmpeg_buffersize", text="Buffer") + + col = split.column() + col.itemR(rd, "ffmpeg_gopsize") + col.itemR(rd, "ffmpeg_autosplit") + col.itemL(text="Mux:") + col.itemR(rd, "ffmpeg_muxrate", text="Rate") + col.itemR(rd, "ffmpeg_packetsize", text="Packet Size") + + row = layout.row() + row.itemL(text="Audio:") + row = layout.row() + row.itemR(rd, "ffmpeg_audio_codec") + + split = layout.split() + + col = split.column() + col.itemR(rd, "ffmpeg_audio_bitrate") + col.itemR(rd, "ffmpeg_audio_mixrate") + col = split.column() + col.itemR(rd, "ffmpeg_multiplex_audio") + col.itemR(rd, "ffmpeg_audio_volume") class RENDER_PT_antialiasing(RenderButtonsPanel): - bl_label = "Anti-Aliasing" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Anti-Aliasing" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - rd = context.scene.render_data + def draw_header(self, context): + rd = context.scene.render_data - self.layout.itemR(rd, "antialiasing", text="") + self.layout.itemR(rd, "antialiasing", text="") - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def draw(self, context): + layout = self.layout - layout.active = rd.antialiasing + rd = context.scene.render_data - split = layout.split() - - col = split.column() - col.row().itemR(rd, "antialiasing_samples", expand=True) - col.itemR(rd, "full_sample") + layout.active = rd.antialiasing + + split = layout.split() + + col = split.column() + col.row().itemR(rd, "antialiasing_samples", expand=True) + col.itemR(rd, "full_sample") + + col = split.column() + col.itemR(rd, "pixel_filter", text="") + col.itemR(rd, "filter_size", text="Size", slider=True) - col = split.column() - col.itemR(rd, "pixel_filter", text="") - col.itemR(rd, "filter_size", text="Size", slider=True) - class RENDER_PT_dimensions(RenderButtonsPanel): - bl_label = "Dimensions" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Dimensions" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - scene = context.scene - rd = scene.render_data - - split = layout.split() - - col = split.column() - sub = col.column(align=True) - sub.itemL(text="Resolution:") - sub.itemR(rd, "resolution_x", text="X") - sub.itemR(rd, "resolution_y", text="Y") - sub.itemR(rd, "resolution_percentage", text="") - - sub.itemL(text="Aspect Ratio:") - sub.itemR(rd, "pixel_aspect_x", text="X") - sub.itemR(rd, "pixel_aspect_y", text="Y") + def draw(self, context): + layout = self.layout - row = col.row() - row.itemR(rd, "use_border", text="Border") - rowsub = row.row() - rowsub.active = rd.use_border - rowsub.itemR(rd, "crop_to_border", text="Crop") - - col = split.column(align=True) - col.itemL(text="Frame Range:") - col.itemR(scene, "start_frame", text="Start") - col.itemR(scene, "end_frame", text="End") - col.itemR(scene, "frame_step", text="Step") - - col.itemL(text="Frame Rate:") - col.itemR(rd, "fps") - col.itemR(rd, "fps_base",text="/") + scene = context.scene + rd = scene.render_data + + split = layout.split() + + col = split.column() + sub = col.column(align=True) + sub.itemL(text="Resolution:") + sub.itemR(rd, "resolution_x", text="X") + sub.itemR(rd, "resolution_y", text="Y") + sub.itemR(rd, "resolution_percentage", text="") + + sub.itemL(text="Aspect Ratio:") + sub.itemR(rd, "pixel_aspect_x", text="X") + sub.itemR(rd, "pixel_aspect_y", text="Y") + + row = col.row() + row.itemR(rd, "use_border", text="Border") + rowsub = row.row() + rowsub.active = rd.use_border + rowsub.itemR(rd, "crop_to_border", text="Crop") + + col = split.column(align=True) + col.itemL(text="Frame Range:") + col.itemR(scene, "start_frame", text="Start") + col.itemR(scene, "end_frame", text="End") + col.itemR(scene, "frame_step", text="Step") + + col.itemL(text="Frame Rate:") + col.itemR(rd, "fps") + col.itemR(rd, "fps_base",text="/") class RENDER_PT_stamp(RenderButtonsPanel): - bl_label = "Stamp" - bl_default_closed = True - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Stamp" + bl_default_closed = True + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - rd = context.scene.render_data + def draw_header(self, context): + rd = context.scene.render_data - self.layout.itemR(rd, "render_stamp", text="") + self.layout.itemR(rd, "render_stamp", text="") - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def draw(self, context): + layout = self.layout - layout.active = rd.render_stamp + rd = context.scene.render_data - split = layout.split() - - col = split.column() - col.itemR(rd, "stamp_time", text="Time") - col.itemR(rd, "stamp_date", text="Date") - col.itemR(rd, "stamp_render_time", text="RenderTime") - col.itemR(rd, "stamp_frame", text="Frame") - col.itemR(rd, "stamp_scene", text="Scene") - col.itemR(rd, "stamp_camera", text="Camera") - col.itemR(rd, "stamp_filename", text="Filename") - col.itemR(rd, "stamp_marker", text="Marker") - col.itemR(rd, "stamp_sequence_strip", text="Seq. Strip") + layout.active = rd.render_stamp - col = split.column() - col.active = rd.render_stamp - col.itemR(rd, "stamp_foreground", slider=True) - col.itemR(rd, "stamp_background", slider=True) - col.itemR(rd, "stamp_font_size", text="Font Size") + split = layout.split() - row = layout.split(percentage=0.2) - row.itemR(rd, "stamp_note", text="Note") - sub = row.row() - sub.active = rd.stamp_note - sub.itemR(rd, "stamp_note_text", text="") + col = split.column() + col.itemR(rd, "stamp_time", text="Time") + col.itemR(rd, "stamp_date", text="Date") + col.itemR(rd, "stamp_render_time", text="RenderTime") + col.itemR(rd, "stamp_frame", text="Frame") + col.itemR(rd, "stamp_scene", text="Scene") + col.itemR(rd, "stamp_camera", text="Camera") + col.itemR(rd, "stamp_filename", text="Filename") + col.itemR(rd, "stamp_marker", text="Marker") + col.itemR(rd, "stamp_sequence_strip", text="Seq. Strip") + + col = split.column() + col.active = rd.render_stamp + col.itemR(rd, "stamp_foreground", slider=True) + col.itemR(rd, "stamp_background", slider=True) + col.itemR(rd, "stamp_font_size", text="Font Size") + + row = layout.split(percentage=0.2) + row.itemR(rd, "stamp_note", text="Note") + sub = row.row() + sub.active = rd.stamp_note + sub.itemR(rd, "stamp_note_text", text="") bpy.types.register(RENDER_PT_render) bpy.types.register(RENDER_PT_layers) diff --git a/release/scripts/ui/buttons_scene.py b/release/scripts/ui/buttons_scene.py index 800644ef4ab..9a2d7af4495 100644 --- a/release/scripts/ui/buttons_scene.py +++ b/release/scripts/ui/buttons_scene.py @@ -2,135 +2,135 @@ import bpy class SceneButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "scene" - - def poll(self, context): - return context.scene + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "scene" + + def poll(self, context): + return context.scene class SCENE_PT_scene(SceneButtonsPanel): - bl_label = "Scene" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Scene" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout - - scene = context.scene + def draw(self, context): + layout = self.layout - layout.itemR(scene, "camera") - layout.itemR(scene, "set", text="Background") + scene = context.scene + + layout.itemR(scene, "camera") + layout.itemR(scene, "set", text="Background") class SCENE_PT_unit(SceneButtonsPanel): - bl_label = "Units" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Units" + COMPAT_ENGINES = set(['BLENDER_RENDER']) + + def draw(self, context): + layout = self.layout + + unit = context.scene.unit_settings + + col = layout.column() + col.row().itemR(unit, "system", expand=True) + + row = layout.row() + row.active = (unit.system != 'NONE') + row.itemR(unit, "scale_length", text="Scale") + row.itemR(unit, "use_separate") - def draw(self, context): - layout = self.layout - - unit = context.scene.unit_settings - - col = layout.column() - col.row().itemR(unit, "system", expand=True) - - row = layout.row() - row.active = (unit.system != 'NONE') - row.itemR(unit, "scale_length", text="Scale") - row.itemR(unit, "use_separate") - class SCENE_PT_keying_sets(SceneButtonsPanel): - bl_label = "Keying Sets" - - def draw(self, context): - layout = self.layout - - scene = context.scene - - row = layout.row() - - col = row.column() - col.template_list(scene, "keying_sets", scene, "active_keying_set_index", rows=2) - - col = row.column(align=True) - col.itemO("anim.keying_set_add", icon='ICON_ZOOMIN', text="") - col.itemO("anim.keying_set_remove", icon='ICON_ZOOMOUT', text="") - - ks = scene.active_keying_set - if ks: - row = layout.row() - - col = row.column() - col.itemR(ks, "name") - col.itemR(ks, "absolute") - - col = row.column() - col.itemL(text="Keyframing Settings:") - col.itemR(ks, "insertkey_needed", text="Needed") - col.itemR(ks, "insertkey_visual", text="Visual") - + bl_label = "Keying Sets" + + def draw(self, context): + layout = self.layout + + scene = context.scene + + row = layout.row() + + col = row.column() + col.template_list(scene, "keying_sets", scene, "active_keying_set_index", rows=2) + + col = row.column(align=True) + col.itemO("anim.keying_set_add", icon='ICON_ZOOMIN', text="") + col.itemO("anim.keying_set_remove", icon='ICON_ZOOMOUT', text="") + + ks = scene.active_keying_set + if ks: + row = layout.row() + + col = row.column() + col.itemR(ks, "name") + col.itemR(ks, "absolute") + + col = row.column() + col.itemL(text="Keyframing Settings:") + col.itemR(ks, "insertkey_needed", text="Needed") + col.itemR(ks, "insertkey_visual", text="Visual") + class SCENE_PT_keying_set_paths(SceneButtonsPanel): - bl_label = "Active Keying Set" - - def poll(self, context): - return (context.scene != None) and (context.scene.active_keying_set != None) - - def draw(self, context): - layout = self.layout - - scene = context.scene - ks = scene.active_keying_set - - row = layout.row() - row.itemL(text="Paths:") - - row = layout.row() - - col = row.column() - col.template_list(ks, "paths", ks, "active_path_index", rows=2) - - col = row.column(align=True) - col.itemO("anim.keying_set_path_add", icon='ICON_ZOOMIN', text="") - col.itemO("anim.keying_set_path_remove", icon='ICON_ZOOMOUT', text="") - - ksp = ks.active_path - if ksp: - col = layout.column() - col.itemL(text="Target:") - col.template_any_ID(ksp, "id", "id_type") - col.template_path_builder(ksp, "rna_path", ksp.id) - - - row = layout.row() - - col = row.column() - col.itemL(text="Array Target:") - col.itemR(ksp, "entire_array") - if ksp.entire_array == False: - col.itemR(ksp, "array_index") - - col = row.column() - col.itemL(text="F-Curve Grouping:") - col.itemR(ksp, "grouping") - if ksp.grouping == 'NAMED': - col.itemR(ksp, "group") + bl_label = "Active Keying Set" + + def poll(self, context): + return (context.scene != None) and (context.scene.active_keying_set != None) + + def draw(self, context): + layout = self.layout + + scene = context.scene + ks = scene.active_keying_set + + row = layout.row() + row.itemL(text="Paths:") + + row = layout.row() + + col = row.column() + col.template_list(ks, "paths", ks, "active_path_index", rows=2) + + col = row.column(align=True) + col.itemO("anim.keying_set_path_add", icon='ICON_ZOOMIN', text="") + col.itemO("anim.keying_set_path_remove", icon='ICON_ZOOMOUT', text="") + + ksp = ks.active_path + if ksp: + col = layout.column() + col.itemL(text="Target:") + col.template_any_ID(ksp, "id", "id_type") + col.template_path_builder(ksp, "rna_path", ksp.id) + + + row = layout.row() + + col = row.column() + col.itemL(text="Array Target:") + col.itemR(ksp, "entire_array") + if ksp.entire_array == False: + col.itemR(ksp, "array_index") + + col = row.column() + col.itemL(text="F-Curve Grouping:") + col.itemR(ksp, "grouping") + if ksp.grouping == 'NAMED': + col.itemR(ksp, "group") class SCENE_PT_physics(SceneButtonsPanel): - bl_label = "Gravity" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Gravity" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - self.layout.itemR(context.scene, "use_gravity", text="") + def draw_header(self, context): + self.layout.itemR(context.scene, "use_gravity", text="") - def draw(self, context): - layout = self.layout - - scene = context.scene + def draw(self, context): + layout = self.layout - layout.active = scene.use_gravity + scene = context.scene - layout.itemR(scene, "gravity", text="") + layout.active = scene.use_gravity -bpy.types.register(SCENE_PT_scene) + layout.itemR(scene, "gravity", text="") + +bpy.types.register(SCENE_PT_scene) bpy.types.register(SCENE_PT_unit) bpy.types.register(SCENE_PT_keying_sets) bpy.types.register(SCENE_PT_keying_set_paths) diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py index 3426a879cca..29f11789ba6 100644 --- a/release/scripts/ui/buttons_texture.py +++ b/release/scripts/ui/buttons_texture.py @@ -1,766 +1,766 @@ import bpy def active_node_mat(mat): - if mat: - mat_node = mat.active_node_material - if mat_node: - return mat_node - else: - return mat + if mat: + mat_node = mat.active_node_material + if mat_node: + return mat_node + else: + return mat + + return None - return None - def context_tex_datablock(context): - - idblock = active_node_mat(context.material) - if idblock: return idblock - - idblock = context.lamp - if idblock: return idblock - - idblock = context.world - if idblock: return idblock - - idblock = context.brush - return idblock + + idblock = active_node_mat(context.material) + if idblock: return idblock + + idblock = context.lamp + if idblock: return idblock + + idblock = context.world + if idblock: return idblock + + idblock = context.brush + return idblock class TextureButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "texture" - - def poll(self, context): - tex = context.texture - return (tex and (tex.type != 'NONE' or tex.use_nodes)) - + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "texture" + + def poll(self, context): + tex = context.texture + return (tex and (tex.type != 'NONE' or tex.use_nodes)) + class TEXTURE_PT_preview(TextureButtonsPanel): - bl_label = "Preview" + bl_label = "Preview" + + def draw(self, context): + layout = self.layout + + tex = context.texture + slot = context.texture_slot + + idblock = context_tex_datablock(context) + + if idblock: + layout.template_preview(tex, parent=idblock, slot=slot) + else: + layout.template_preview(tex, slot=slot) - def draw(self, context): - layout = self.layout - - tex = context.texture - slot = context.texture_slot - - idblock = context_tex_datablock(context) - - if idblock: - layout.template_preview(tex, parent=idblock, slot=slot) - else: - layout.template_preview(tex, slot=slot) - class TEXTURE_PT_context_texture(TextureButtonsPanel): - bl_label = "" - bl_show_header = False + bl_label = "" + bl_show_header = False - def poll(self, context): - return (context.material or context.world or context.lamp or context.brush or context.texture) + def poll(self, context): + return (context.material or context.world or context.lamp or context.brush or context.texture) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - tex = context.texture + tex = context.texture - idblock = context_tex_datablock(context) - - space = context.space_data + idblock = context_tex_datablock(context) - if idblock: - row = layout.row() - - row.template_list(idblock, "textures", idblock, "active_texture_index", rows=2) - - col = row.column(align=True) - col.item_enumO("texture.slot_move", "type", 'UP', text="", icon='ICON_TRIA_UP') - col.item_enumO("texture.slot_move", "type", 'DOWN', text="", icon='ICON_TRIA_DOWN') - - - split = layout.split(percentage=0.65) + space = context.space_data - if idblock: - split.template_ID(idblock, "active_texture", new="texture.new") - elif tex: - split.template_ID(space, "pin_id") + if idblock: + row = layout.row() - if (not space.pin_id) and ( - context.sculpt_object or - context.vertex_paint_object or - context.weight_paint_object or - context.texture_paint_object - ): - split.itemR(space, "brush_texture", text="Brush", toggle=True) + row.template_list(idblock, "textures", idblock, "active_texture_index", rows=2) - if tex: - layout.itemR(tex, "use_nodes") - - split = layout.split(percentage=0.2) + col = row.column(align=True) + col.item_enumO("texture.slot_move", "type", 'UP', text="", icon='ICON_TRIA_UP') + col.item_enumO("texture.slot_move", "type", 'DOWN', text="", icon='ICON_TRIA_DOWN') - if tex.use_nodes: - slot = context.texture_slot - if slot: - split.itemL(text="Output:") - split.itemR(slot, "output_node", text="") + split = layout.split(percentage=0.65) + + if idblock: + split.template_ID(idblock, "active_texture", new="texture.new") + elif tex: + split.template_ID(space, "pin_id") + + if (not space.pin_id) and ( + context.sculpt_object or + context.vertex_paint_object or + context.weight_paint_object or + context.texture_paint_object + ): + split.itemR(space, "brush_texture", text="Brush", toggle=True) + + if tex: + layout.itemR(tex, "use_nodes") + + split = layout.split(percentage=0.2) + + if tex.use_nodes: + slot = context.texture_slot + + if slot: + split.itemL(text="Output:") + split.itemR(slot, "output_node", text="") + + else: + split.itemL(text="Type:") + split.itemR(tex, "type", text="") - else: - split.itemL(text="Type:") - split.itemR(tex, "type", text="") - class TEXTURE_PT_colors(TextureButtonsPanel): - bl_label = "Colors" - bl_default_closed = True + bl_label = "Colors" + bl_default_closed = True - def draw(self, context): - layout = self.layout - - tex = context.texture + def draw(self, context): + layout = self.layout - layout.itemR(tex, "use_color_ramp", text="Ramp") - if tex.use_color_ramp: - layout.template_color_ramp(tex, "color_ramp", expand=True) + tex = context.texture - split = layout.split() + layout.itemR(tex, "use_color_ramp", text="Ramp") + if tex.use_color_ramp: + layout.template_color_ramp(tex, "color_ramp", expand=True) - col = split.column() - col.itemL(text="RGB Multiply:") - sub = col.column(align=True) - sub.itemR(tex, "factor_red", text="R") - sub.itemR(tex, "factor_green", text="G") - sub.itemR(tex, "factor_blue", text="B") + split = layout.split() + + col = split.column() + col.itemL(text="RGB Multiply:") + sub = col.column(align=True) + sub.itemR(tex, "factor_red", text="R") + sub.itemR(tex, "factor_green", text="G") + sub.itemR(tex, "factor_blue", text="B") + + col = split.column() + col.itemL(text="Adjust:") + col.itemR(tex, "brightness") + col.itemR(tex, "contrast") - col = split.column() - col.itemL(text="Adjust:") - col.itemR(tex, "brightness") - col.itemR(tex, "contrast") - # Texture Slot Panels # - + class TextureSlotPanel(TextureButtonsPanel): - def poll(self, context): - return ( - context.texture_slot and - TextureButtonsPanel.poll(self, context) - ) - + def poll(self, context): + return ( + context.texture_slot and + TextureButtonsPanel.poll(self, context) + ) + class TEXTURE_PT_mapping(TextureSlotPanel): - bl_label = "Mapping" - - def draw(self, context): - layout = self.layout - - idblock = context_tex_datablock(context) - - tex = context.texture_slot - textype = context.texture + bl_label = "Mapping" - if type(idblock) != bpy.types.Brush: - split = layout.split(percentage=0.3) - col = split.column() - col.itemL(text="Coordinates:") - col = split.column() - col.itemR(tex, "texture_coordinates", text="") + def draw(self, context): + layout = self.layout - if tex.texture_coordinates == 'ORCO': - """ - ob = context.object - if ob and ob.type == 'MESH': - split = layout.split(percentage=0.3) - split.itemL(text="Mesh:") - split.itemR(ob.data, "texco_mesh", text="") - """ - elif tex.texture_coordinates == 'UV': - split = layout.split(percentage=0.3) - split.itemL(text="Layer:") - ob = context.object - if ob and ob.type == 'MESH': split.item_pointerR(tex, "uv_layer", ob.data, "uv_textures", text="") - else: split.itemR(tex, "uv_layer", text="") - elif tex.texture_coordinates == 'OBJECT': - split = layout.split(percentage=0.3) - split.itemL(text="Object:") - split.itemR(tex, "object", text="") - - if type(idblock) == bpy.types.Brush: - layout.itemR(tex, "map_mode", expand=True) - - row = layout.row() - row.active = tex.map_mode in ('FIXED', 'TILED') - row.itemR(tex, "angle") + idblock = context_tex_datablock(context) - row = layout.row() - row.active = tex.map_mode in ('TILED', '3D') - row.column().itemR(tex, "size") - else: - if type(idblock) == bpy.types.Material: - split = layout.split(percentage=0.3) - split.itemL(text="Projection:") - split.itemR(tex, "mapping", text="") + tex = context.texture_slot + textype = context.texture + + if type(idblock) != bpy.types.Brush: + split = layout.split(percentage=0.3) + col = split.column() + col.itemL(text="Coordinates:") + col = split.column() + col.itemR(tex, "texture_coordinates", text="") + + if tex.texture_coordinates == 'ORCO': + """ + ob = context.object + if ob and ob.type == 'MESH': + split = layout.split(percentage=0.3) + split.itemL(text="Mesh:") + split.itemR(ob.data, "texco_mesh", text="") + """ + elif tex.texture_coordinates == 'UV': + split = layout.split(percentage=0.3) + split.itemL(text="Layer:") + ob = context.object + if ob and ob.type == 'MESH': split.item_pointerR(tex, "uv_layer", ob.data, "uv_textures", text="") + else: split.itemR(tex, "uv_layer", text="") + elif tex.texture_coordinates == 'OBJECT': + split = layout.split(percentage=0.3) + split.itemL(text="Object:") + split.itemR(tex, "object", text="") + + if type(idblock) == bpy.types.Brush: + layout.itemR(tex, "map_mode", expand=True) + + row = layout.row() + row.active = tex.map_mode in ('FIXED', 'TILED') + row.itemR(tex, "angle") + + row = layout.row() + row.active = tex.map_mode in ('TILED', '3D') + row.column().itemR(tex, "size") + else: + if type(idblock) == bpy.types.Material: + split = layout.split(percentage=0.3) + split.itemL(text="Projection:") + split.itemR(tex, "mapping", text="") + + split = layout.split() + + col = split.column() + if tex.texture_coordinates in ('ORCO', 'UV'): + col.itemR(tex, "from_dupli") + elif tex.texture_coordinates == 'OBJECT': + col.itemR(tex, "from_original") + else: + col.itemL() + + col = split.column() + row = col.row() + row.itemR(tex, "x_mapping", text="") + row.itemR(tex, "y_mapping", text="") + row.itemR(tex, "z_mapping", text="") + + # any non brush + row = layout.row() + row.column().itemR(tex, "offset") + row.column().itemR(tex, "size") - split = layout.split() - - col = split.column() - if tex.texture_coordinates in ('ORCO', 'UV'): - col.itemR(tex, "from_dupli") - elif tex.texture_coordinates == 'OBJECT': - col.itemR(tex, "from_original") - else: - col.itemL() - - col = split.column() - row = col.row() - row.itemR(tex, "x_mapping", text="") - row.itemR(tex, "y_mapping", text="") - row.itemR(tex, "z_mapping", text="") - - # any non brush - row = layout.row() - row.column().itemR(tex, "offset") - row.column().itemR(tex, "size") - class TEXTURE_PT_influence(TextureSlotPanel): - bl_label = "Influence" - def poll(self, context): - return context.texture_slot - - - def draw(self, context): - - layout = self.layout - - idblock = context_tex_datablock(context) - - textype = context.texture - tex = context.texture_slot + bl_label = "Influence" + def poll(self, context): + return context.texture_slot - def factor_but(layout, active, toggle, factor, name): - row = layout.row(align=True) - row.itemR(tex, toggle, text="") - sub = row.row() - sub.active = active - sub.itemR(tex, factor, text=name, slider=True) - - if type(idblock) == bpy.types.Material: - if idblock.type in ('SURFACE', 'HALO', 'WIRE'): - split = layout.split() - - col = split.column() - col.itemL(text="Diffuse:") - factor_but(col, tex.map_diffuse, "map_diffuse", "diffuse_factor", "Intensity") - factor_but(col, tex.map_colordiff, "map_colordiff", "colordiff_factor", "Color") - factor_but(col, tex.map_alpha, "map_alpha", "alpha_factor", "Alpha") - factor_but(col, tex.map_translucency, "map_translucency", "translucency_factor", "Translucency") - col.itemL(text="Specular:") - factor_but(col, tex.map_specular, "map_specular", "specular_factor", "Intensity") - factor_but(col, tex.map_colorspec, "map_colorspec", "colorspec_factor", "Color") - factor_but(col, tex.map_hardness, "map_hardness", "hardness_factor", "Hardness") + def draw(self, context): - col = split.column() - col.itemL(text="Shading:") - factor_but(col, tex.map_ambient, "map_ambient", "ambient_factor", "Ambient") - factor_but(col, tex.map_emit, "map_emit", "emit_factor", "Emit") - factor_but(col, tex.map_mirror, "map_mirror", "mirror_factor", "Mirror") - factor_but(col, tex.map_raymir, "map_raymir", "raymir_factor", "Ray Mirror") + layout = self.layout - col.itemL(text="Geometry:") - factor_but(col, tex.map_normal, "map_normal", "normal_factor", "Normal") - factor_but(col, tex.map_warp, "map_warp", "warp_factor", "Warp") - factor_but(col, tex.map_displacement, "map_displacement", "displacement_factor", "Displace") + idblock = context_tex_datablock(context) - #sub = col.column() - #sub.active = tex.map_translucency or tex.map_emit or tex.map_alpha or tex.map_raymir or tex.map_hardness or tex.map_ambient or tex.map_specularity or tex.map_reflection or tex.map_mirror - #sub.itemR(tex, "default_value", text="Amount", slider=True) - elif idblock.type == 'VOLUME': - split = layout.split() - - col = split.column() - factor_but(col, tex.map_density, "map_density", "density_factor", "Density") - factor_but(col, tex.map_emission, "map_emission", "emission_factor", "Emission") - factor_but(col, tex.map_scattering, "map_scattering", "scattering_factor", "Scattering") - factor_but(col, tex.map_reflection, "map_reflection", "reflection_factor", "Reflection") - - col = split.column() - col.itemL(text=" ") - factor_but(col, tex.map_alpha, "map_coloremission", "coloremission_factor", "Emission Color") - factor_but(col, tex.map_colortransmission, "map_colortransmission", "colortransmission_factor", "Transmission Color") - factor_but(col, tex.map_colorreflection, "map_colorreflection", "colorreflection_factor", "Reflection Color") + textype = context.texture + tex = context.texture_slot - elif type(idblock) == bpy.types.Lamp: - row = layout.row() - factor_but(row, tex.map_color, "map_color", "color_factor", "Color") - factor_but(row, tex.map_shadow, "map_shadow", "shadow_factor", "Shadow") - - elif type(idblock) == bpy.types.World: - split = layout.split() - - col = split.column() - factor_but(col, tex.map_blend, "map_blend", "blend_factor", "Blend") - factor_but(col, tex.map_horizon, "map_horizon", "horizon_factor", "Horizon") + def factor_but(layout, active, toggle, factor, name): + row = layout.row(align=True) + row.itemR(tex, toggle, text="") + sub = row.row() + sub.active = active + sub.itemR(tex, factor, text=name, slider=True) - col = split.column() - factor_but(col, tex.map_zenith_up, "map_zenith_up", "zenith_up_factor", "Zenith Up") - factor_but(col, tex.map_zenith_down, "map_zenith_down", "zenith_down_factor", "Zenith Down") + if type(idblock) == bpy.types.Material: + if idblock.type in ('SURFACE', 'HALO', 'WIRE'): + split = layout.split() - layout.itemS() - - split = layout.split() + col = split.column() + col.itemL(text="Diffuse:") + factor_but(col, tex.map_diffuse, "map_diffuse", "diffuse_factor", "Intensity") + factor_but(col, tex.map_colordiff, "map_colordiff", "colordiff_factor", "Color") + factor_but(col, tex.map_alpha, "map_alpha", "alpha_factor", "Alpha") + factor_but(col, tex.map_translucency, "map_translucency", "translucency_factor", "Translucency") - col = split.column() - col.itemR(tex, "blend_type", text="Blend") - col.itemR(tex, "rgb_to_intensity") - sub = col.column() - sub.active = tex.rgb_to_intensity - sub.itemR(tex, "color", text="") + col.itemL(text="Specular:") + factor_but(col, tex.map_specular, "map_specular", "specular_factor", "Intensity") + factor_but(col, tex.map_colorspec, "map_colorspec", "colorspec_factor", "Color") + factor_but(col, tex.map_hardness, "map_hardness", "hardness_factor", "Hardness") - col = split.column() - col.itemR(tex, "negate", text="Negative") - col.itemR(tex, "stencil") - - if type(idblock) in (bpy.types.Material, bpy.types.World): - col.itemR(tex, "default_value", text="DVar", slider=True) + col = split.column() + col.itemL(text="Shading:") + factor_but(col, tex.map_ambient, "map_ambient", "ambient_factor", "Ambient") + factor_but(col, tex.map_emit, "map_emit", "emit_factor", "Emit") + factor_but(col, tex.map_mirror, "map_mirror", "mirror_factor", "Mirror") + factor_but(col, tex.map_raymir, "map_raymir", "raymir_factor", "Ray Mirror") + + col.itemL(text="Geometry:") + factor_but(col, tex.map_normal, "map_normal", "normal_factor", "Normal") + factor_but(col, tex.map_warp, "map_warp", "warp_factor", "Warp") + factor_but(col, tex.map_displacement, "map_displacement", "displacement_factor", "Displace") + + #sub = col.column() + #sub.active = tex.map_translucency or tex.map_emit or tex.map_alpha or tex.map_raymir or tex.map_hardness or tex.map_ambient or tex.map_specularity or tex.map_reflection or tex.map_mirror + #sub.itemR(tex, "default_value", text="Amount", slider=True) + elif idblock.type == 'VOLUME': + split = layout.split() + + col = split.column() + factor_but(col, tex.map_density, "map_density", "density_factor", "Density") + factor_but(col, tex.map_emission, "map_emission", "emission_factor", "Emission") + factor_but(col, tex.map_scattering, "map_scattering", "scattering_factor", "Scattering") + factor_but(col, tex.map_reflection, "map_reflection", "reflection_factor", "Reflection") + + col = split.column() + col.itemL(text=" ") + factor_but(col, tex.map_alpha, "map_coloremission", "coloremission_factor", "Emission Color") + factor_but(col, tex.map_colortransmission, "map_colortransmission", "colortransmission_factor", "Transmission Color") + factor_but(col, tex.map_colorreflection, "map_colorreflection", "colorreflection_factor", "Reflection Color") + + elif type(idblock) == bpy.types.Lamp: + row = layout.row() + factor_but(row, tex.map_color, "map_color", "color_factor", "Color") + factor_but(row, tex.map_shadow, "map_shadow", "shadow_factor", "Shadow") + + elif type(idblock) == bpy.types.World: + split = layout.split() + + col = split.column() + factor_but(col, tex.map_blend, "map_blend", "blend_factor", "Blend") + factor_but(col, tex.map_horizon, "map_horizon", "horizon_factor", "Horizon") + + col = split.column() + factor_but(col, tex.map_zenith_up, "map_zenith_up", "zenith_up_factor", "Zenith Up") + factor_but(col, tex.map_zenith_down, "map_zenith_down", "zenith_down_factor", "Zenith Down") + + layout.itemS() + + split = layout.split() + + col = split.column() + col.itemR(tex, "blend_type", text="Blend") + col.itemR(tex, "rgb_to_intensity") + sub = col.column() + sub.active = tex.rgb_to_intensity + sub.itemR(tex, "color", text="") + + col = split.column() + col.itemR(tex, "negate", text="Negative") + col.itemR(tex, "stencil") + + if type(idblock) in (bpy.types.Material, bpy.types.World): + col.itemR(tex, "default_value", text="DVar", slider=True) # Texture Type Panels # class TextureTypePanel(TextureButtonsPanel): - def poll(self, context): - tex = context.texture - return (tex and tex.type == self.tex_type and not tex.use_nodes) + def poll(self, context): + tex = context.texture + return (tex and tex.type == self.tex_type and not tex.use_nodes) class TEXTURE_PT_clouds(TextureTypePanel): - bl_label = "Clouds" - tex_type = 'CLOUDS' + bl_label = "Clouds" + tex_type = 'CLOUDS' - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "stype", expand=True) - layout.itemL(text="Noise:") - layout.itemR(tex, "noise_type", text="Type", expand=True) - layout.itemR(tex, "noise_basis", text="Basis") - - flow = layout.column_flow() - flow.itemR(tex, "noise_size", text="Size") - flow.itemR(tex, "noise_depth", text="Depth") - flow.itemR(tex, "nabla", text="Nabla") + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "stype", expand=True) + layout.itemL(text="Noise:") + layout.itemR(tex, "noise_type", text="Type", expand=True) + layout.itemR(tex, "noise_basis", text="Basis") + + flow = layout.column_flow() + flow.itemR(tex, "noise_size", text="Size") + flow.itemR(tex, "noise_depth", text="Depth") + flow.itemR(tex, "nabla", text="Nabla") class TEXTURE_PT_wood(TextureTypePanel): - bl_label = "Wood" - tex_type = 'WOOD' + bl_label = "Wood" + tex_type = 'WOOD' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "noisebasis2", expand=True) + layout.itemR(tex, "stype", expand=True) + + col = layout.column() + col.active = tex.stype in ('RINGNOISE', 'BANDNOISE') + col.itemL(text="Noise:") + col.row().itemR(tex, "noise_type", text="Type", expand=True) + col.itemR(tex, "noise_basis", text="Basis") + + flow = layout.column_flow() + flow.active = tex.stype in ('RINGNOISE', 'BANDNOISE') + flow.itemR(tex, "noise_size", text="Size") + flow.itemR(tex, "turbulence") + flow.itemR(tex, "nabla") - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "noisebasis2", expand=True) - layout.itemR(tex, "stype", expand=True) - - col = layout.column() - col.active = tex.stype in ('RINGNOISE', 'BANDNOISE') - col.itemL(text="Noise:") - col.row().itemR(tex, "noise_type", text="Type", expand=True) - col.itemR(tex, "noise_basis", text="Basis") - - flow = layout.column_flow() - flow.active = tex.stype in ('RINGNOISE', 'BANDNOISE') - flow.itemR(tex, "noise_size", text="Size") - flow.itemR(tex, "turbulence") - flow.itemR(tex, "nabla") - class TEXTURE_PT_marble(TextureTypePanel): - bl_label = "Marble" - tex_type = 'MARBLE' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "stype", expand=True) - layout.itemR(tex, "noisebasis2", expand=True) - layout.itemL(text="Noise:") - layout.itemR(tex, "noise_type", text="Type", expand=True) - layout.itemR(tex, "noise_basis", text="Basis") - - flow = layout.column_flow() - flow.itemR(tex, "noise_size", text="Size") - flow.itemR(tex, "noise_depth", text="Depth") - flow.itemR(tex, "turbulence") - flow.itemR(tex, "nabla") + bl_label = "Marble" + tex_type = 'MARBLE' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "stype", expand=True) + layout.itemR(tex, "noisebasis2", expand=True) + layout.itemL(text="Noise:") + layout.itemR(tex, "noise_type", text="Type", expand=True) + layout.itemR(tex, "noise_basis", text="Basis") + + flow = layout.column_flow() + flow.itemR(tex, "noise_size", text="Size") + flow.itemR(tex, "noise_depth", text="Depth") + flow.itemR(tex, "turbulence") + flow.itemR(tex, "nabla") class TEXTURE_PT_magic(TextureTypePanel): - bl_label = "Magic" - tex_type = 'MAGIC' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - row = layout.row() - row.itemR(tex, "noise_depth", text="Depth") - row.itemR(tex, "turbulence") + bl_label = "Magic" + tex_type = 'MAGIC' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + row = layout.row() + row.itemR(tex, "noise_depth", text="Depth") + row.itemR(tex, "turbulence") class TEXTURE_PT_blend(TextureTypePanel): - bl_label = "Blend" - tex_type = 'BLEND' - - def draw(self, context): - layout = self.layout - - tex = context.texture + bl_label = "Blend" + tex_type = 'BLEND' - layout.itemR(tex, "progression") - sub = layout.row() + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "progression") + sub = layout.row() + + sub.active = (tex.progression in ('LINEAR', 'QUADRATIC', 'EASING', 'RADIAL')) + sub.itemR(tex, "flip_axis", expand=True) - sub.active = (tex.progression in ('LINEAR', 'QUADRATIC', 'EASING', 'RADIAL')) - sub.itemR(tex, "flip_axis", expand=True) - class TEXTURE_PT_stucci(TextureTypePanel): - bl_label = "Stucci" - tex_type = 'STUCCI' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "stype", expand=True) - layout.itemL(text="Noise:") - layout.itemR(tex, "noise_type", text="Type", expand=True) - layout.itemR(tex, "noise_basis", text="Basis") - - row = layout.row() - row.itemR(tex, "noise_size", text="Size") - row.itemR(tex, "turbulence") - + bl_label = "Stucci" + tex_type = 'STUCCI' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "stype", expand=True) + layout.itemL(text="Noise:") + layout.itemR(tex, "noise_type", text="Type", expand=True) + layout.itemR(tex, "noise_basis", text="Basis") + + row = layout.row() + row.itemR(tex, "noise_size", text="Size") + row.itemR(tex, "turbulence") + class TEXTURE_PT_image(TextureTypePanel): - bl_label = "Image" - tex_type = 'IMAGE' - - def draw(self, context): - layout = self.layout + bl_label = "Image" + tex_type = 'IMAGE' - tex = context.texture + def draw(self, context): + layout = self.layout - layout.template_image(tex, "image", tex.image_user) + tex = context.texture + + layout.template_image(tex, "image", tex.image_user) class TEXTURE_PT_image_sampling(TextureTypePanel): - bl_label = "Image Sampling" - bl_default_closed = True - tex_type = 'IMAGE' - - def draw(self, context): - layout = self.layout - - tex = context.texture - slot = context.texture_slot - - split = layout.split() + bl_label = "Image Sampling" + bl_default_closed = True + tex_type = 'IMAGE' - col = split.column() - col.itemL(text="Alpha:") - col.itemR(tex, "use_alpha", text="Use") - col.itemR(tex, "calculate_alpha", text="Calculate") - col.itemR(tex, "invert_alpha", text="Invert") + def draw(self, context): + layout = self.layout - col.itemL(text="Flip:") - col.itemR(tex, "flip_axis", text="X/Y Axis") + tex = context.texture + slot = context.texture_slot - col = split.column() - col.itemR(tex, "normal_map") - row = col.row() - row.active = tex.normal_map - row.itemR(tex, "normal_space", text="") - - col.itemL(text="Filter:") - col.itemR(tex, "filter", text="") - col.itemR(tex, "mipmap") - - row = col.row() - row.active = tex.mipmap - row.itemR(tex, "mipmap_gauss", text="Gauss") - - col.itemR(tex, "interpolation") - if tex.mipmap and tex.filter != 'DEFAULT': - if tex.filter == 'FELINE': - col.itemR(tex, "filter_probes", text="Probes") - else: - col.itemR(tex, "filter_eccentricity", text="Eccentricity") + split = layout.split() + + col = split.column() + col.itemL(text="Alpha:") + col.itemR(tex, "use_alpha", text="Use") + col.itemR(tex, "calculate_alpha", text="Calculate") + col.itemR(tex, "invert_alpha", text="Invert") + + col.itemL(text="Flip:") + col.itemR(tex, "flip_axis", text="X/Y Axis") + + col = split.column() + col.itemR(tex, "normal_map") + row = col.row() + row.active = tex.normal_map + row.itemR(tex, "normal_space", text="") + + col.itemL(text="Filter:") + col.itemR(tex, "filter", text="") + col.itemR(tex, "mipmap") + + row = col.row() + row.active = tex.mipmap + row.itemR(tex, "mipmap_gauss", text="Gauss") + + col.itemR(tex, "interpolation") + if tex.mipmap and tex.filter != 'DEFAULT': + if tex.filter == 'FELINE': + col.itemR(tex, "filter_probes", text="Probes") + else: + col.itemR(tex, "filter_eccentricity", text="Eccentricity") class TEXTURE_PT_image_mapping(TextureTypePanel): - bl_label = "Image Mapping" - bl_default_closed = True - tex_type = 'IMAGE' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "extension") - - split = layout.split() - - if tex.extension == 'REPEAT': - col = split.column(align=True) - col.itemL(text="Repeat:") - col.itemR(tex, "repeat_x", text="X") - col.itemR(tex, "repeat_y", text="Y") - - col = split.column(align=True) - col.itemL(text="Mirror:") - col.itemR(tex, "mirror_x", text="X") - col.itemR(tex, "mirror_y", text="Y") - layout.itemS() + bl_label = "Image Mapping" + bl_default_closed = True + tex_type = 'IMAGE' - elif tex.extension == 'CHECKER': - col = split.column(align=True) - row = col.row() - row.itemR(tex, "checker_even", text="Even") - row.itemR(tex, "checker_odd", text="Odd") + def draw(self, context): + layout = self.layout - split.itemR(tex, "checker_distance", text="Distance") - layout.itemS() + tex = context.texture + + layout.itemR(tex, "extension") + + split = layout.split() + + if tex.extension == 'REPEAT': + col = split.column(align=True) + col.itemL(text="Repeat:") + col.itemR(tex, "repeat_x", text="X") + col.itemR(tex, "repeat_y", text="Y") + + col = split.column(align=True) + col.itemL(text="Mirror:") + col.itemR(tex, "mirror_x", text="X") + col.itemR(tex, "mirror_y", text="Y") + layout.itemS() + + elif tex.extension == 'CHECKER': + col = split.column(align=True) + row = col.row() + row.itemR(tex, "checker_even", text="Even") + row.itemR(tex, "checker_odd", text="Odd") + + split.itemR(tex, "checker_distance", text="Distance") + layout.itemS() + + split = layout.split() + + col = split.column(align=True) + #col.itemR(tex, "crop_rectangle") + col.itemL(text="Crop Minimum:") + col.itemR(tex, "crop_min_x", text="X") + col.itemR(tex, "crop_min_y", text="Y") + + col = split.column(align=True) + col.itemL(text="Crop Maximum:") + col.itemR(tex, "crop_max_x", text="X") + col.itemR(tex, "crop_max_y", text="Y") - split = layout.split() - - col = split.column(align=True) - #col.itemR(tex, "crop_rectangle") - col.itemL(text="Crop Minimum:") - col.itemR(tex, "crop_min_x", text="X") - col.itemR(tex, "crop_min_y", text="Y") - - col = split.column(align=True) - col.itemL(text="Crop Maximum:") - col.itemR(tex, "crop_max_x", text="X") - col.itemR(tex, "crop_max_y", text="Y") - class TEXTURE_PT_plugin(TextureTypePanel): - bl_label = "Plugin" - tex_type = 'PLUGIN' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemL(text="Nothing yet") - + bl_label = "Plugin" + tex_type = 'PLUGIN' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemL(text="Nothing yet") + class TEXTURE_PT_envmap(TextureTypePanel): - bl_label = "Environment Map" - tex_type = 'ENVIRONMENT_MAP' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemL(text="Nothing yet") - + bl_label = "Environment Map" + tex_type = 'ENVIRONMENT_MAP' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemL(text="Nothing yet") + class TEXTURE_PT_musgrave(TextureTypePanel): - bl_label = "Musgrave" - tex_type = 'MUSGRAVE' - - def draw(self, context): - layout = self.layout - - tex = context.texture - - layout.itemR(tex, "musgrave_type") - - split = layout.split() - - col = split.column() - col.itemR(tex, "highest_dimension", text="Dimension") - col.itemR(tex, "lacunarity") - col.itemR(tex, "octaves") - - col = split.column() - if (tex.musgrave_type in ('HETERO_TERRAIN', 'RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL')): - col.itemR(tex, "offset") - if (tex.musgrave_type in ('RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL')): - col.itemR(tex, "gain") - col.itemR(tex, "noise_intensity", text="Intensity") - - layout.itemL(text="Noise:") - - layout.itemR(tex, "noise_basis", text="Basis") - - row = layout.row() - row.itemR(tex, "noise_size", text="Size") - row.itemR(tex, "nabla") + bl_label = "Musgrave" + tex_type = 'MUSGRAVE' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "musgrave_type") + + split = layout.split() + + col = split.column() + col.itemR(tex, "highest_dimension", text="Dimension") + col.itemR(tex, "lacunarity") + col.itemR(tex, "octaves") + + col = split.column() + if (tex.musgrave_type in ('HETERO_TERRAIN', 'RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL')): + col.itemR(tex, "offset") + if (tex.musgrave_type in ('RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL')): + col.itemR(tex, "gain") + col.itemR(tex, "noise_intensity", text="Intensity") + + layout.itemL(text="Noise:") + + layout.itemR(tex, "noise_basis", text="Basis") + + row = layout.row() + row.itemR(tex, "noise_size", text="Size") + row.itemR(tex, "nabla") class TEXTURE_PT_voronoi(TextureTypePanel): - bl_label = "Voronoi" - tex_type = 'VORONOI' + bl_label = "Voronoi" + tex_type = 'VORONOI' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + split = layout.split() + + col = split.column() + col.itemL(text="Distance Metric:") + col.itemR(tex, "distance_metric", text="") + sub = col.column() + sub.active = tex.distance_metric == 'MINKOVSKY' + sub.itemR(tex, "minkovsky_exponent", text="Exponent") + col.itemL(text="Coloring:") + col.itemR(tex, "coloring", text="") + col.itemR(tex, "noise_intensity", text="Intensity") + + col = split.column(align=True) + col.itemL(text="Feature Weights:") + col.itemR(tex, "weight_1", text="1", slider=True) + col.itemR(tex, "weight_2", text="2", slider=True) + col.itemR(tex, "weight_3", text="3", slider=True) + col.itemR(tex, "weight_4", text="4", slider=True) + + layout.itemL(text="Noise:") + + row = layout.row() + row.itemR(tex, "noise_size", text="Size") + row.itemR(tex, "nabla") - def draw(self, context): - layout = self.layout - - tex = context.texture - - split = layout.split() - - col = split.column() - col.itemL(text="Distance Metric:") - col.itemR(tex, "distance_metric", text="") - sub = col.column() - sub.active = tex.distance_metric == 'MINKOVSKY' - sub.itemR(tex, "minkovsky_exponent", text="Exponent") - col.itemL(text="Coloring:") - col.itemR(tex, "coloring", text="") - col.itemR(tex, "noise_intensity", text="Intensity") - - col = split.column(align=True) - col.itemL(text="Feature Weights:") - col.itemR(tex, "weight_1", text="1", slider=True) - col.itemR(tex, "weight_2", text="2", slider=True) - col.itemR(tex, "weight_3", text="3", slider=True) - col.itemR(tex, "weight_4", text="4", slider=True) - - layout.itemL(text="Noise:") - - row = layout.row() - row.itemR(tex, "noise_size", text="Size") - row.itemR(tex, "nabla") - class TEXTURE_PT_distortednoise(TextureTypePanel): - bl_label = "Distorted Noise" - tex_type = 'DISTORTED_NOISE' - - def draw(self, context): - layout = self.layout - - tex = context.texture + bl_label = "Distorted Noise" + tex_type = 'DISTORTED_NOISE' + + def draw(self, context): + layout = self.layout + + tex = context.texture + + layout.itemR(tex, "noise_distortion") + layout.itemR(tex, "noise_basis", text="Basis") + + flow = layout.column_flow() + flow.itemR(tex, "distortion", text="Distortion") + flow.itemR(tex, "noise_size", text="Size") + flow.itemR(tex, "nabla") - layout.itemR(tex, "noise_distortion") - layout.itemR(tex, "noise_basis", text="Basis") - - flow = layout.column_flow() - flow.itemR(tex, "distortion", text="Distortion") - flow.itemR(tex, "noise_size", text="Size") - flow.itemR(tex, "nabla") - class TEXTURE_PT_voxeldata(TextureButtonsPanel): - bl_label = "Voxel Data" + bl_label = "Voxel Data" - def poll(self, context): - tex = context.texture - return (tex and tex.type == 'VOXEL_DATA') + def poll(self, context): + tex = context.texture + return (tex and tex.type == 'VOXEL_DATA') - def draw(self, context): - layout = self.layout - - tex = context.texture - vd = tex.voxeldata + def draw(self, context): + layout = self.layout + + tex = context.texture + vd = tex.voxeldata + + layout.itemR(vd, "file_format") + if vd.file_format in ['BLENDER_VOXEL', 'RAW_8BIT']: + layout.itemR(vd, "source_path") + if vd.file_format == 'RAW_8BIT': + layout.itemR(vd, "resolution") + elif vd.file_format == 'SMOKE': + layout.itemR(vd, "domain_object") + + layout.itemR(vd, "still") + row = layout.row() + row.active = vd.still + row.itemR(vd, "still_frame_number") + + layout.itemR(vd, "interpolation") + layout.itemR(vd, "extension") + layout.itemR(vd, "intensity") - layout.itemR(vd, "file_format") - if vd.file_format in ['BLENDER_VOXEL', 'RAW_8BIT']: - layout.itemR(vd, "source_path") - if vd.file_format == 'RAW_8BIT': - layout.itemR(vd, "resolution") - elif vd.file_format == 'SMOKE': - layout.itemR(vd, "domain_object") - - layout.itemR(vd, "still") - row = layout.row() - row.active = vd.still - row.itemR(vd, "still_frame_number") - - layout.itemR(vd, "interpolation") - layout.itemR(vd, "extension") - layout.itemR(vd, "intensity") - class TEXTURE_PT_pointdensity(TextureButtonsPanel): - bl_label = "Point Density" + bl_label = "Point Density" - def poll(self, context): - tex = context.texture - return (tex and tex.type == 'POINT_DENSITY') + def poll(self, context): + tex = context.texture + return (tex and tex.type == 'POINT_DENSITY') - def draw(self, context): - layout = self.layout - - tex = context.texture - pd = tex.pointdensity - - layout.itemR(pd, "point_source", expand=True) + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - if pd.point_source == 'PARTICLE_SYSTEM': - col.itemL(text="Object:") - col.itemR(pd, "object", text="") - - sub = col.column() - sub.enabled = pd.object - if pd.object: - sub.itemL(text="System:") - sub.item_pointerR(pd, "particle_system", pd.object, "particle_systems", text="") - sub.itemL(text="Cache:") - sub.itemR(pd, "particle_cache", text="") - else: - col.itemL(text="Object:") - col.itemR(pd, "object", text="") - col.itemL(text="Cache:") - col.itemR(pd, "vertices_cache", text="") - - col.itemS() - - col.itemL(text="Color Source:") - col.itemR(pd, "color_source", text="") - if pd.color_source in ('PARTICLE_SPEED', 'PARTICLE_VELOCITY'): - col.itemR(pd, "speed_scale") - if pd.color_source in ('PARTICLE_SPEED', 'PARTICLE_AGE'): - layout.template_color_ramp(pd, "color_ramp", expand=True) + tex = context.texture + pd = tex.pointdensity - col = split.column() - col.itemL() - col.itemR(pd, "radius") - col.itemL(text="Falloff:") - col.itemR(pd, "falloff", text="") - if pd.falloff == 'SOFT': - col.itemR(pd, "falloff_softness") + layout.itemR(pd, "point_source", expand=True) + + split = layout.split() + + col = split.column() + if pd.point_source == 'PARTICLE_SYSTEM': + col.itemL(text="Object:") + col.itemR(pd, "object", text="") + + sub = col.column() + sub.enabled = pd.object + if pd.object: + sub.itemL(text="System:") + sub.item_pointerR(pd, "particle_system", pd.object, "particle_systems", text="") + sub.itemL(text="Cache:") + sub.itemR(pd, "particle_cache", text="") + else: + col.itemL(text="Object:") + col.itemR(pd, "object", text="") + col.itemL(text="Cache:") + col.itemR(pd, "vertices_cache", text="") + + col.itemS() + + col.itemL(text="Color Source:") + col.itemR(pd, "color_source", text="") + if pd.color_source in ('PARTICLE_SPEED', 'PARTICLE_VELOCITY'): + col.itemR(pd, "speed_scale") + if pd.color_source in ('PARTICLE_SPEED', 'PARTICLE_AGE'): + layout.template_color_ramp(pd, "color_ramp", expand=True) + + col = split.column() + col.itemL() + col.itemR(pd, "radius") + col.itemL(text="Falloff:") + col.itemR(pd, "falloff", text="") + if pd.falloff == 'SOFT': + col.itemR(pd, "falloff_softness") class TEXTURE_PT_pointdensity_turbulence(TextureButtonsPanel): - bl_label = "Turbulence" - - def poll(self, context): - tex = context.texture - return (tex and tex.type == 'POINT_DENSITY') - - def draw_header(self, context): - layout = self.layout - - tex = context.texture - pd = tex.pointdensity - - layout.itemR(pd, "turbulence", text="") - - def draw(self, context): - layout = self.layout - - tex = context.texture - pd = tex.pointdensity - layout.active = pd.turbulence + bl_label = "Turbulence" - split = layout.split() - - col = split.column() - col.itemL(text="Influence:") - col.itemR(pd, "turbulence_influence", text="") - col.itemL(text="Noise Basis:") - col.itemR(pd, "noise_basis", text="") - - col = split.column() - col.itemL() - col.itemR(pd, "turbulence_size") - col.itemR(pd, "turbulence_depth") - col.itemR(pd, "turbulence_strength") + def poll(self, context): + tex = context.texture + return (tex and tex.type == 'POINT_DENSITY') + + def draw_header(self, context): + layout = self.layout + + tex = context.texture + pd = tex.pointdensity + + layout.itemR(pd, "turbulence", text="") + + def draw(self, context): + layout = self.layout + + tex = context.texture + pd = tex.pointdensity + layout.active = pd.turbulence + + split = layout.split() + + col = split.column() + col.itemL(text="Influence:") + col.itemR(pd, "turbulence_influence", text="") + col.itemL(text="Noise Basis:") + col.itemR(pd, "noise_basis", text="") + + col = split.column() + col.itemL() + col.itemR(pd, "turbulence_size") + col.itemR(pd, "turbulence_depth") + col.itemR(pd, "turbulence_strength") bpy.types.register(TEXTURE_PT_context_texture) bpy.types.register(TEXTURE_PT_preview) diff --git a/release/scripts/ui/buttons_world.py b/release/scripts/ui/buttons_world.py index cfe2410595c..7078a48b72e 100644 --- a/release/scripts/ui/buttons_world.py +++ b/release/scripts/ui/buttons_world.py @@ -2,181 +2,181 @@ import bpy class WorldButtonsPanel(bpy.types.Panel): - bl_space_type = 'PROPERTIES' - bl_region_type = 'WINDOW' - bl_context = "world" - # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here - - def poll(self, context): - rd = context.scene.render_data - return (context.world) and (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) + bl_space_type = 'PROPERTIES' + bl_region_type = 'WINDOW' + bl_context = "world" + # COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here + + def poll(self, context): + rd = context.scene.render_data + return (context.world) and (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) class WORLD_PT_preview(WorldButtonsPanel): - bl_label = "Preview" - COMPAT_ENGINES = set(['BLENDER_RENDER']) - - def draw(self, context): - self.layout.template_preview(context.world) - + bl_label = "Preview" + COMPAT_ENGINES = set(['BLENDER_RENDER']) + + def draw(self, context): + self.layout.template_preview(context.world) + class WORLD_PT_context_world(WorldButtonsPanel): - bl_label = "" - bl_show_header = False - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "" + bl_show_header = False + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def poll(self, context): - rd = context.scene.render_data - return (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) + def poll(self, context): + rd = context.scene.render_data + return (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) - def draw(self, context): - layout = self.layout - - scene = context.scene - world = context.world - space = context.space_data + def draw(self, context): + layout = self.layout - split = layout.split(percentage=0.65) + scene = context.scene + world = context.world + space = context.space_data - if scene: - split.template_ID(scene, "world", new="world.new") - elif world: - split.template_ID(space, "pin_id") + split = layout.split(percentage=0.65) + + if scene: + split.template_ID(scene, "world", new="world.new") + elif world: + split.template_ID(space, "pin_id") class WORLD_PT_world(WorldButtonsPanel): - bl_label = "World" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "World" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - world = context.world + world = context.world + + row = layout.row() + row.itemR(world, "paper_sky") + row.itemR(world, "blend_sky") + row.itemR(world, "real_sky") + + row = layout.row() + row.column().itemR(world, "horizon_color") + col = row.column() + col.itemR(world, "zenith_color") + col.active = world.blend_sky + row.column().itemR(world, "ambient_color") - row = layout.row() - row.itemR(world, "paper_sky") - row.itemR(world, "blend_sky") - row.itemR(world, "real_sky") - - row = layout.row() - row.column().itemR(world, "horizon_color") - col = row.column() - col.itemR(world, "zenith_color") - col.active = world.blend_sky - row.column().itemR(world, "ambient_color") - class WORLD_PT_mist(WorldButtonsPanel): - bl_label = "Mist" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Mist" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - world = context.world + def draw_header(self, context): + world = context.world - self.layout.itemR(world.mist, "enabled", text="") + self.layout.itemR(world.mist, "enabled", text="") - def draw(self, context): - layout = self.layout - - world = context.world + def draw(self, context): + layout = self.layout - layout.active = world.mist.enabled + world = context.world - flow = layout.column_flow() - flow.itemR(world.mist, "intensity", slider=True) - flow.itemR(world.mist, "start") - flow.itemR(world.mist, "depth") - flow.itemR(world.mist, "height") + layout.active = world.mist.enabled + + flow = layout.column_flow() + flow.itemR(world.mist, "intensity", slider=True) + flow.itemR(world.mist, "start") + flow.itemR(world.mist, "depth") + flow.itemR(world.mist, "height") + + layout.itemR(world.mist, "falloff") - layout.itemR(world.mist, "falloff") - class WORLD_PT_stars(WorldButtonsPanel): - bl_label = "Stars" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Stars" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - world = context.world + def draw_header(self, context): + world = context.world - self.layout.itemR(world.stars, "enabled", text="") + self.layout.itemR(world.stars, "enabled", text="") - def draw(self, context): - layout = self.layout - - world = context.world + def draw(self, context): + layout = self.layout - layout.active = world.stars.enabled + world = context.world + + layout.active = world.stars.enabled + + flow = layout.column_flow() + flow.itemR(world.stars, "size") + flow.itemR(world.stars, "color_randomization", text="Colors") + flow.itemR(world.stars, "min_distance", text="Min. Dist") + flow.itemR(world.stars, "average_separation", text="Separation") - flow = layout.column_flow() - flow.itemR(world.stars, "size") - flow.itemR(world.stars, "color_randomization", text="Colors") - flow.itemR(world.stars, "min_distance", text="Min. Dist") - flow.itemR(world.stars, "average_separation", text="Separation") - class WORLD_PT_ambient_occlusion(WorldButtonsPanel): - bl_label = "Ambient Occlusion" - COMPAT_ENGINES = set(['BLENDER_RENDER']) + bl_label = "Ambient Occlusion" + COMPAT_ENGINES = set(['BLENDER_RENDER']) - def draw_header(self, context): - world = context.world + def draw_header(self, context): + world = context.world - self.layout.itemR(world.ambient_occlusion, "enabled", text="") + self.layout.itemR(world.ambient_occlusion, "enabled", text="") - def draw(self, context): - layout = self.layout - - ao = context.world.ambient_occlusion - - layout.active = ao.enabled - - layout.itemR(ao, "gather_method", expand=True) + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - col.itemL(text="Attenuation:") - if ao.gather_method == 'RAYTRACE': - col.itemR(ao, "distance") - col.itemR(ao, "falloff") - sub = col.row() - sub.active = ao.falloff - sub.itemR(ao, "falloff_strength", text="Strength") - - if ao.gather_method == 'RAYTRACE': - col = split.column() - - col.itemL(text="Sampling:") - col.itemR(ao, "sample_method", text="") + ao = context.world.ambient_occlusion - sub = col.column() - sub.itemR(ao, "samples") + layout.active = ao.enabled - if ao.sample_method == 'ADAPTIVE_QMC': - sub.itemR(ao, "threshold") - sub.itemR(ao, "adapt_to_speed", slider=True) - elif ao.sample_method == 'CONSTANT_JITTERED': - sub.itemR(ao, "bias") - - if ao.gather_method == 'APPROXIMATE': - col = split.column() - - col.itemL(text="Sampling:") - col.itemR(ao, "passes") - col.itemR(ao, "error_tolerance", text="Error") - col.itemR(ao, "pixel_cache") - col.itemR(ao, "correction") - - col = layout.column() - col.itemL(text="Influence:") - - col.row().itemR(ao, "blend_mode", expand=True) - - split = layout.split() - - col = split.column() - col.itemR(ao, "energy") - - col = split.column() - sub = col.split(percentage=0.3) - sub.itemL(text="Color:") - sub.itemR(ao, "color", text="") + layout.itemR(ao, "gather_method", expand=True) -bpy.types.register(WORLD_PT_context_world) + split = layout.split() + + col = split.column() + col.itemL(text="Attenuation:") + if ao.gather_method == 'RAYTRACE': + col.itemR(ao, "distance") + col.itemR(ao, "falloff") + sub = col.row() + sub.active = ao.falloff + sub.itemR(ao, "falloff_strength", text="Strength") + + if ao.gather_method == 'RAYTRACE': + col = split.column() + + col.itemL(text="Sampling:") + col.itemR(ao, "sample_method", text="") + + sub = col.column() + sub.itemR(ao, "samples") + + if ao.sample_method == 'ADAPTIVE_QMC': + sub.itemR(ao, "threshold") + sub.itemR(ao, "adapt_to_speed", slider=True) + elif ao.sample_method == 'CONSTANT_JITTERED': + sub.itemR(ao, "bias") + + if ao.gather_method == 'APPROXIMATE': + col = split.column() + + col.itemL(text="Sampling:") + col.itemR(ao, "passes") + col.itemR(ao, "error_tolerance", text="Error") + col.itemR(ao, "pixel_cache") + col.itemR(ao, "correction") + + col = layout.column() + col.itemL(text="Influence:") + + col.row().itemR(ao, "blend_mode", expand=True) + + split = layout.split() + + col = split.column() + col.itemR(ao, "energy") + + col = split.column() + sub = col.split(percentage=0.3) + sub.itemL(text="Color:") + sub.itemR(ao, "color", text="") + +bpy.types.register(WORLD_PT_context_world) bpy.types.register(WORLD_PT_preview) bpy.types.register(WORLD_PT_world) bpy.types.register(WORLD_PT_ambient_occlusion) diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index fdbae7164b3..42cdac9ce24 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -2,34 +2,34 @@ import bpy class Buttons_HT_header(bpy.types.Header): - bl_space_type = 'PROPERTIES' + bl_space_type = 'PROPERTIES' - def draw(self, context): - layout = self.layout - - so = context.space_data - scene = context.scene + def draw(self, context): + layout = self.layout - row= layout.row(align=True) - row.template_header() + so = context.space_data + scene = context.scene - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("Buttons_MT_view", text="View") - - row = layout.row() - row.itemR(so, "buttons_context", expand=True, text="") - row.itemR(scene, "current_frame") + row= layout.row(align=True) + row.template_header() + + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("Buttons_MT_view", text="View") + + row = layout.row() + row.itemR(so, "buttons_context", expand=True, text="") + row.itemR(scene, "current_frame") class Buttons_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout - so = context.space_data + def draw(self, context): + layout = self.layout + so = context.space_data - col = layout.column() - col.itemR(so, "panel_alignment", expand=True) + col = layout.column() + col.itemR(so, "panel_alignment", expand=True) bpy.types.register(Buttons_HT_header) bpy.types.register(Buttons_MT_view) diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index 28253a2a2b0..b73d5b6486e 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -2,47 +2,47 @@ import bpy class FILEBROWSER_HT_header(bpy.types.Header): - bl_space_type = 'FILE_BROWSER' + bl_space_type = 'FILE_BROWSER' - def draw(self, context): - layout = self.layout - - st = context.space_data - params = st.params - - layout.template_header(menus=False) - - row = layout.row() - row.itemS() - - row = layout.row(align=True) - row.itemO("file.previous", text="", icon='ICON_BACK') - row.itemO("file.next", text="", icon='ICON_FORWARD') - row.itemO("file.parent", text="", icon='ICON_FILE_PARENT') - row.itemO("file.refresh", text="", icon='ICON_FILE_REFRESH') - - row = layout.row() - row.itemS() - - row = layout.row(align=True) - row.itemO("file.directory_new", text="", icon='ICON_NEWFOLDER') - - layout.itemR(params, "display", expand=True, text="") - layout.itemR(params, "sort", expand=True, text="") - - layout.itemR(params, "hide_dot", text="Hide Invisible") - layout.itemR(params, "do_filter", text="", icon='ICON_FILTER') - - row = layout.row(align=True) - row.active = params.do_filter + def draw(self, context): + layout = self.layout - row.itemR(params, "filter_folder", text=""); - row.itemR(params, "filter_blender", text=""); - row.itemR(params, "filter_image", text=""); - row.itemR(params, "filter_movie", text=""); - row.itemR(params, "filter_script", text=""); - row.itemR(params, "filter_font", text=""); - row.itemR(params, "filter_sound", text=""); - row.itemR(params, "filter_text", text=""); + st = context.space_data + params = st.params + + layout.template_header(menus=False) + + row = layout.row() + row.itemS() + + row = layout.row(align=True) + row.itemO("file.previous", text="", icon='ICON_BACK') + row.itemO("file.next", text="", icon='ICON_FORWARD') + row.itemO("file.parent", text="", icon='ICON_FILE_PARENT') + row.itemO("file.refresh", text="", icon='ICON_FILE_REFRESH') + + row = layout.row() + row.itemS() + + row = layout.row(align=True) + row.itemO("file.directory_new", text="", icon='ICON_NEWFOLDER') + + layout.itemR(params, "display", expand=True, text="") + layout.itemR(params, "sort", expand=True, text="") + + layout.itemR(params, "hide_dot", text="Hide Invisible") + layout.itemR(params, "do_filter", text="", icon='ICON_FILTER') + + row = layout.row(align=True) + row.active = params.do_filter + + row.itemR(params, "filter_folder", text=""); + row.itemR(params, "filter_blender", text=""); + row.itemR(params, "filter_image", text=""); + row.itemR(params, "filter_movie", text=""); + row.itemR(params, "filter_script", text=""); + row.itemR(params, "filter_font", text=""); + row.itemR(params, "filter_sound", text=""); + row.itemR(params, "filter_text", text=""); bpy.types.register(FILEBROWSER_HT_header) diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index a69c225535f..4466a5d236f 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -2,480 +2,480 @@ import bpy class IMAGE_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout - - sima = context.space_data - uv = sima.uv_editor - settings = context.tool_settings + def draw(self, context): + layout = self.layout - show_uvedit = sima.show_uvedit + sima = context.space_data + uv = sima.uv_editor + settings = context.tool_settings - layout.itemO("image.properties", icon='ICON_MENU_PANEL') + show_uvedit = sima.show_uvedit - layout.itemS() + layout.itemO("image.properties", icon='ICON_MENU_PANEL') - layout.itemR(sima, "update_automatically") - if show_uvedit: - layout.itemR(settings, "uv_local_view") # Numpad / + layout.itemS() - layout.itemS() + layout.itemR(sima, "update_automatically") + if show_uvedit: + layout.itemR(settings, "uv_local_view") # Numpad / - layout.itemO("image.view_zoom_in") - layout.itemO("image.view_zoom_out") + layout.itemS() - layout.itemS() + layout.itemO("image.view_zoom_in") + layout.itemO("image.view_zoom_out") - ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]]; + layout.itemS() - for a, b in ratios: - text = "Zoom %d:%d" % (a, b) - layout.item_floatO("image.view_zoom_ratio", "ratio", a/b, text=text) + ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]]; - layout.itemS() + for a, b in ratios: + text = "Zoom %d:%d" % (a, b) + layout.item_floatO("image.view_zoom_ratio", "ratio", a/b, text=text) - if show_uvedit: - layout.itemO("image.view_selected") + layout.itemS() - layout.itemO("image.view_all") - layout.itemO("screen.screen_full_area") + if show_uvedit: + layout.itemO("image.view_selected") + + layout.itemO("image.view_all") + layout.itemO("screen.screen_full_area") class IMAGE_MT_select(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("uv.select_border") - layout.item_booleanO("uv.select_border", "pinned", True) + layout.itemO("uv.select_border") + layout.item_booleanO("uv.select_border", "pinned", True) - layout.itemS() - - layout.itemO("uv.select_all_toggle") - layout.itemO("uv.select_inverse") - layout.itemO("uv.unlink_selection") - - layout.itemS() + layout.itemS() - layout.itemO("uv.select_pinned") - layout.itemO("uv.select_linked") + layout.itemO("uv.select_all_toggle") + layout.itemO("uv.select_inverse") + layout.itemO("uv.unlink_selection") + + layout.itemS() + + layout.itemO("uv.select_pinned") + layout.itemO("uv.select_linked") class IMAGE_MT_image(bpy.types.Menu): - bl_label = "Image" + bl_label = "Image" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - sima = context.space_data - ima = sima.image + sima = context.space_data + ima = sima.image - layout.itemO("image.new") - layout.itemO("image.open") + layout.itemO("image.new") + layout.itemO("image.open") - show_render = sima.show_render + show_render = sima.show_render - if ima: - if not show_render: - layout.itemO("image.replace") - layout.itemO("image.reload") + if ima: + if not show_render: + layout.itemO("image.replace") + layout.itemO("image.reload") - layout.itemO("image.save") - layout.itemO("image.save_as") + layout.itemO("image.save") + layout.itemO("image.save_as") - if ima.source == 'SEQUENCE': - layout.itemO("image.save_sequence") + if ima.source == 'SEQUENCE': + layout.itemO("image.save_sequence") - if not show_render: - layout.itemS() + if not show_render: + layout.itemS() - if ima.packed_file: - layout.itemO("image.unpack") - else: - layout.itemO("image.pack") + if ima.packed_file: + layout.itemO("image.unpack") + else: + layout.itemO("image.pack") - # only for dirty && specific image types, perhaps - # this could be done in operator poll too - if ima.dirty: - if ima.source in ('FILE', 'GENERATED') and ima.type != 'MULTILAYER': - layout.item_booleanO("image.pack", "as_png", True, text="Pack As PNG") + # only for dirty && specific image types, perhaps + # this could be done in operator poll too + if ima.dirty: + if ima.source in ('FILE', 'GENERATED') and ima.type != 'MULTILAYER': + layout.item_booleanO("image.pack", "as_png", True, text="Pack As PNG") - layout.itemS() + layout.itemS() - layout.itemR(sima, "image_painting") + layout.itemR(sima, "image_painting") class IMAGE_MT_uvs_showhide(bpy.types.Menu): - bl_label = "Show/Hide Faces" + bl_label = "Show/Hide Faces" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("uv.reveal") - layout.itemO("uv.hide") - layout.item_booleanO("uv.hide", "unselected", True) + layout.itemO("uv.reveal") + layout.itemO("uv.hide") + layout.item_booleanO("uv.hide", "unselected", True) class IMAGE_MT_uvs_transform(bpy.types.Menu): - bl_label = "Transform" + bl_label = "Transform" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("tfm.translate") - layout.itemO("tfm.rotate") - layout.itemO("tfm.resize") + layout.itemO("tfm.translate") + layout.itemO("tfm.rotate") + layout.itemO("tfm.resize") class IMAGE_MT_uvs_mirror(bpy.types.Menu): - bl_label = "Mirror" + bl_label = "Mirror" - def draw(self, context): - layout = self.layout - layout.operator_context = "EXEC_REGION_WIN" + def draw(self, context): + layout = self.layout + layout.operator_context = "EXEC_REGION_WIN" - props= layout.itemO("tfm.mirror", text="X Axis", properties=True) - props.constraint_axis[0]= True + props= layout.itemO("tfm.mirror", text="X Axis", properties=True) + props.constraint_axis[0]= True - props= layout.itemO("tfm.mirror", text="Y Axis", properties=True) - props.constraint_axis[1]= True + props= layout.itemO("tfm.mirror", text="Y Axis", properties=True) + props.constraint_axis[1]= True class IMAGE_MT_uvs_weldalign(bpy.types.Menu): - bl_label = "Weld/Align" + bl_label = "Weld/Align" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("uv.weld") # W, 1 - layout.items_enumO("uv.align", "axis") # W, 2/3/4 + layout.itemO("uv.weld") # W, 1 + layout.items_enumO("uv.align", "axis") # W, 2/3/4 class IMAGE_MT_uvs(bpy.types.Menu): - bl_label = "UVs" + bl_label = "UVs" - def draw(self, context): - layout = self.layout - - sima = context.space_data - uv = sima.uv_editor - settings = context.tool_settings + def draw(self, context): + layout = self.layout - layout.itemR(uv, "snap_to_pixels") - layout.itemR(uv, "constrain_to_image_bounds") + sima = context.space_data + uv = sima.uv_editor + settings = context.tool_settings - layout.itemS() + layout.itemR(uv, "snap_to_pixels") + layout.itemR(uv, "constrain_to_image_bounds") - layout.itemR(uv, "live_unwrap") - layout.itemO("uv.unwrap") - layout.item_booleanO("uv.pin", "clear", True, text="Unpin") - layout.itemO("uv.pin") + layout.itemS() - layout.itemS() + layout.itemR(uv, "live_unwrap") + layout.itemO("uv.unwrap") + layout.item_booleanO("uv.pin", "clear", True, text="Unpin") + layout.itemO("uv.pin") - layout.itemO("uv.pack_islands") - layout.itemO("uv.average_islands_scale") - layout.itemO("uv.minimize_stretch") - layout.itemO("uv.stitch") + layout.itemS() - layout.itemS() + layout.itemO("uv.pack_islands") + layout.itemO("uv.average_islands_scale") + layout.itemO("uv.minimize_stretch") + layout.itemO("uv.stitch") - layout.itemM("IMAGE_MT_uvs_transform") - layout.itemM("IMAGE_MT_uvs_mirror") - layout.itemM("IMAGE_MT_uvs_weldalign") + layout.itemS() - layout.itemS() + layout.itemM("IMAGE_MT_uvs_transform") + layout.itemM("IMAGE_MT_uvs_mirror") + layout.itemM("IMAGE_MT_uvs_weldalign") - layout.itemR(settings, "proportional_editing") - layout.item_menu_enumR(settings, "proportional_editing_falloff") + layout.itemS() - layout.itemS() + layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing_falloff") - layout.itemM("IMAGE_MT_uvs_showhide") + layout.itemS() + + layout.itemM("IMAGE_MT_uvs_showhide") class IMAGE_HT_header(bpy.types.Header): - bl_space_type = 'IMAGE_EDITOR' + bl_space_type = 'IMAGE_EDITOR' - def draw(self, context): - layout = self.layout - - sima = context.space_data - ima = sima.image - iuser = sima.image_user - settings = context.tool_settings + def draw(self, context): + layout = self.layout - show_render = sima.show_render - show_paint = sima.show_paint - show_uvedit = sima.show_uvedit + sima = context.space_data + ima = sima.image + iuser = sima.image_user + settings = context.tool_settings - row = layout.row(align=True) - row.template_header() + show_render = sima.show_render + show_paint = sima.show_paint + show_uvedit = sima.show_uvedit - # menus - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("IMAGE_MT_view") + row = layout.row(align=True) + row.template_header() - if show_uvedit: - sub.itemM("IMAGE_MT_select") + # menus + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("IMAGE_MT_view") - if ima and ima.dirty: - sub.itemM("IMAGE_MT_image", text="Image*") - else: - sub.itemM("IMAGE_MT_image", text="Image") + if show_uvedit: + sub.itemM("IMAGE_MT_select") - if show_uvedit: - sub.itemM("IMAGE_MT_uvs") + if ima and ima.dirty: + sub.itemM("IMAGE_MT_image", text="Image*") + else: + sub.itemM("IMAGE_MT_image", text="Image") - layout.template_ID(sima, "image", new="image.new") + if show_uvedit: + sub.itemM("IMAGE_MT_uvs") - # uv editing - if show_uvedit: - uvedit = sima.uv_editor + layout.template_ID(sima, "image", new="image.new") - layout.itemR(uvedit, "pivot", text="", icon_only=True) - layout.itemR(settings, "uv_sync_selection", text="") + # uv editing + if show_uvedit: + uvedit = sima.uv_editor - if settings.uv_sync_selection: - layout.itemR(settings, "mesh_selection_mode", text="", expand=True) - else: - layout.itemR(settings, "uv_selection_mode", text="", expand=True) - layout.itemR(uvedit, "sticky_selection_mode", text="", icon_only=True) - pass + layout.itemR(uvedit, "pivot", text="", icon_only=True) + layout.itemR(settings, "uv_sync_selection", text="") - row = layout.row(align=True) - row.itemR(settings, "snap", text="") - if settings.snap: - row.itemR(settings, "snap_mode", text="") + if settings.uv_sync_selection: + layout.itemR(settings, "mesh_selection_mode", text="", expand=True) + else: + layout.itemR(settings, "uv_selection_mode", text="", expand=True) + layout.itemR(uvedit, "sticky_selection_mode", text="", icon_only=True) + pass - """ - mesh = context.edit_object.data - row.item_pointerR(mesh, "active_uv_layer", mesh, "uv_textures") - """ + row = layout.row(align=True) + row.itemR(settings, "snap", text="") + if settings.snap: + row.itemR(settings, "snap_mode", text="") - if ima: - # layers - layout.template_image_layers(ima, iuser) + """ + mesh = context.edit_object.data + row.item_pointerR(mesh, "active_uv_layer", mesh, "uv_textures") + """ - # painting - layout.itemR(sima, "image_painting", text="") + if ima: + # layers + layout.template_image_layers(ima, iuser) - # draw options - row = layout.row(align=True) - row.itemR(sima, "draw_channels", text="", expand=True) + # painting + layout.itemR(sima, "image_painting", text="") - row = layout.row(align=True) - if ima.type == 'COMPOSITE': - row.itemO("image.record_composite", icon='ICON_REC') - if ima.type == 'COMPOSITE' and ima.source in ('MOVIE', 'SEQUENCE'): - row.itemO("image.play_composite", icon='ICON_PLAY') - - if show_uvedit or sima.image_painting: - layout.itemR(sima, "update_automatically", text="") + # draw options + row = layout.row(align=True) + row.itemR(sima, "draw_channels", text="", expand=True) + + row = layout.row(align=True) + if ima.type == 'COMPOSITE': + row.itemO("image.record_composite", icon='ICON_REC') + if ima.type == 'COMPOSITE' and ima.source in ('MOVIE', 'SEQUENCE'): + row.itemO("image.play_composite", icon='ICON_PLAY') + + if show_uvedit or sima.image_painting: + layout.itemR(sima, "update_automatically", text="") class IMAGE_PT_image_properties(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Image" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Image" - def poll(self, context): - sima = context.space_data - return (sima.image) + def poll(self, context): + sima = context.space_data + return (sima.image) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - sima = context.space_data - ima = sima.image - iuser = sima.image_user + sima = context.space_data + ima = sima.image + iuser = sima.image_user - layout.template_image(sima, "image", iuser, compact=True) + layout.template_image(sima, "image", iuser, compact=True) class IMAGE_PT_game_properties(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Game Properties" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Game Properties" - def poll(self, context): - rd = context.scene.render_data - sima = context.space_data - return (sima and sima.image) and (rd.engine == 'BLENDER_GAME') + def poll(self, context): + rd = context.scene.render_data + sima = context.space_data + return (sima and sima.image) and (rd.engine == 'BLENDER_GAME') - def draw(self, context): - layout = self.layout - - sima = context.space_data - ima = sima.image + def draw(self, context): + layout = self.layout - split = layout.split() + sima = context.space_data + ima = sima.image - col = split.column() - - sub = col.column(align=True) - sub.itemR(ima, "animated") + split = layout.split() + + col = split.column() + + sub = col.column(align=True) + sub.itemR(ima, "animated") + + subsub = sub.column() + subsub.active = ima.animated + subsub.itemR(ima, "animation_start", text="Start") + subsub.itemR(ima, "animation_end", text="End") + subsub.itemR(ima, "animation_speed", text="Speed") + + col.itemR(ima, "tiles") + sub = col.column(align=True) + sub.active = ima.tiles or ima.animated + sub.itemR(ima, "tiles_x", text="X") + sub.itemR(ima, "tiles_y", text="Y") + + col = split.column() + col.itemL(text="Clamp:") + col.itemR(ima, "clamp_x", text="X") + col.itemR(ima, "clamp_y", text="Y") + col.itemS() + col.itemR(ima, "mapping", expand=True) - subsub = sub.column() - subsub.active = ima.animated - subsub.itemR(ima, "animation_start", text="Start") - subsub.itemR(ima, "animation_end", text="End") - subsub.itemR(ima, "animation_speed", text="Speed") - - col.itemR(ima, "tiles") - sub = col.column(align=True) - sub.active = ima.tiles or ima.animated - sub.itemR(ima, "tiles_x", text="X") - sub.itemR(ima, "tiles_y", text="Y") - - col = split.column() - col.itemL(text="Clamp:") - col.itemR(ima, "clamp_x", text="X") - col.itemR(ima, "clamp_y", text="Y") - col.itemS() - col.itemR(ima, "mapping", expand=True) - class IMAGE_PT_view_properties(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Display" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Display" - def poll(self, context): - sima = context.space_data - return (sima and (sima.image or sima.show_uvedit)) + def poll(self, context): + sima = context.space_data + return (sima and (sima.image or sima.show_uvedit)) - def draw(self, context): - layout = self.layout - - sima = context.space_data - ima = sima.image - show_uvedit = sima.show_uvedit - uvedit = sima.uv_editor + def draw(self, context): + layout = self.layout - split = layout.split() + sima = context.space_data + ima = sima.image + show_uvedit = sima.show_uvedit + uvedit = sima.uv_editor - col = split.column() - if ima: - col.itemR(ima, "display_aspect", text="Aspect Ratio") + split = layout.split() - col = split.column() - col.itemL(text="Coordinates:") - col.itemR(sima, "draw_repeated", text="Repeat") - if show_uvedit: - col.itemR(uvedit, "normalized_coordinates", text="Normalized") - elif show_uvedit: - col.itemL(text="Coordinates:") - col.itemR(uvedit, "normalized_coordinates", text="Normalized") + col = split.column() + if ima: + col.itemR(ima, "display_aspect", text="Aspect Ratio") - if show_uvedit: - - col = layout.column() - col.itemL(text="UVs:") - row = col.row() - row.itemR(uvedit, "edge_draw_type", expand=True) - - split = layout.split() + col = split.column() + col.itemL(text="Coordinates:") + col.itemR(sima, "draw_repeated", text="Repeat") + if show_uvedit: + col.itemR(uvedit, "normalized_coordinates", text="Normalized") + elif show_uvedit: + col.itemL(text="Coordinates:") + col.itemR(uvedit, "normalized_coordinates", text="Normalized") - col = split.column() - col.itemR(uvedit, "draw_stretch", text="Stretch") - sub = col.column() - sub.active = uvedit.draw_stretch - sub.row().itemR(uvedit, "draw_stretch_type", expand=True) - - col = split.column() - col.itemR(uvedit, "draw_smooth_edges", text="Smooth") - col.itemR(uvedit, "draw_modified_edges", text="Modified") - #col.itemR(uvedit, "draw_edges") - #col.itemR(uvedit, "draw_faces") + if show_uvedit: + + col = layout.column() + col.itemL(text="UVs:") + row = col.row() + row.itemR(uvedit, "edge_draw_type", expand=True) + + split = layout.split() + + col = split.column() + col.itemR(uvedit, "draw_stretch", text="Stretch") + sub = col.column() + sub.active = uvedit.draw_stretch + sub.row().itemR(uvedit, "draw_stretch_type", expand=True) + + col = split.column() + col.itemR(uvedit, "draw_smooth_edges", text="Smooth") + col.itemR(uvedit, "draw_modified_edges", text="Modified") + #col.itemR(uvedit, "draw_edges") + #col.itemR(uvedit, "draw_faces") class IMAGE_PT_paint(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Paint" + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint" - def poll(self, context): - sima = context.space_data - return sima.show_paint + def poll(self, context): + sima = context.space_data + return sima.show_paint - def draw(self, context): - layout = self.layout - - settings = context.tool_settings.image_paint - brush = settings.brush + def draw(self, context): + layout = self.layout - col = layout.split().column() - row = col.row() - row.template_list(settings, "brushes", settings, "active_brush_index", rows=2) - - col.template_ID(settings, "brush", new="brush.add") + settings = context.tool_settings.image_paint + brush = settings.brush - row = layout.row(align=True) - row.item_enumR(settings, "tool", 'DRAW') - row.item_enumR(settings, "tool", 'SOFTEN') - row.item_enumR(settings, "tool", 'CLONE') - row.item_enumR(settings, "tool", 'SMEAR') - - if brush: - col = layout.column() - col.itemR(brush, "color", text="") + col = layout.split().column() + row = col.row() + row.template_list(settings, "brushes", settings, "active_brush_index", rows=2) - row = col.row(align=True) - row.itemR(brush, "size", slider=True) - row.itemR(brush, "use_size_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "strength", slider=True) - row.itemR(brush, "use_strength_pressure", toggle=True, text="") + col.template_ID(settings, "brush", new="brush.add") - row = col.row(align=True) - row.itemR(brush, "jitter", slider=True) - row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + row = layout.row(align=True) + row.item_enumR(settings, "tool", 'DRAW') + row.item_enumR(settings, "tool", 'SOFTEN') + row.item_enumR(settings, "tool", 'CLONE') + row.item_enumR(settings, "tool", 'SMEAR') - col.itemR(brush, "blend", text="Blend") + if brush: + col = layout.column() + col.itemR(brush, "color", text="") + + row = col.row(align=True) + row.itemR(brush, "size", slider=True) + row.itemR(brush, "use_size_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "strength", slider=True) + row.itemR(brush, "use_strength_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "jitter", slider=True) + row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + + col.itemR(brush, "blend", text="Blend") class IMAGE_PT_paint_stroke(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Paint Stroke" - bl_default_closed = True + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint Stroke" + bl_default_closed = True - def poll(self, context): - sima = context.space_data - settings = context.tool_settings.image_paint - return sima.show_paint and settings.brush + def poll(self, context): + sima = context.space_data + settings = context.tool_settings.image_paint + return sima.show_paint and settings.brush - def draw(self, context): - layout = self.layout - - settings = context.tool_settings.image_paint - brush = settings.brush + def draw(self, context): + layout = self.layout - layout.itemR(brush, "use_airbrush") - col = layout.column() - col.active = brush.use_airbrush - col.itemR(brush, "rate", slider=True) + settings = context.tool_settings.image_paint + brush = settings.brush - layout.itemR(brush, "use_space") - row = layout.row(align=True) - row.active = brush.use_space - row.itemR(brush, "spacing", text="Distance", slider=True) - row.itemR(brush, "use_spacing_pressure", toggle=True, text="") + layout.itemR(brush, "use_airbrush") + col = layout.column() + col.active = brush.use_airbrush + col.itemR(brush, "rate", slider=True) + + layout.itemR(brush, "use_space") + row = layout.row(align=True) + row.active = brush.use_space + row.itemR(brush, "spacing", text="Distance", slider=True) + row.itemR(brush, "use_spacing_pressure", toggle=True, text="") class IMAGE_PT_paint_curve(bpy.types.Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'UI' - bl_label = "Paint Curve" - bl_default_closed = True + bl_space_type = 'IMAGE_EDITOR' + bl_region_type = 'UI' + bl_label = "Paint Curve" + bl_default_closed = True - def poll(self, context): - sima = context.space_data - settings = context.tool_settings.image_paint - return sima.show_paint and settings.brush + def poll(self, context): + sima = context.space_data + settings = context.tool_settings.image_paint + return sima.show_paint and settings.brush - def draw(self, context): - layout = self.layout - - settings = context.tool_settings.image_paint - brush = settings.brush + def draw(self, context): + layout = self.layout - layout.template_curve_mapping(brush, "curve") - layout.item_menu_enumO("brush.curve_preset", property="shape") + settings = context.tool_settings.image_paint + brush = settings.brush + + layout.template_curve_mapping(brush, "curve") + layout.item_menu_enumO("brush.curve_preset", property="shape") bpy.types.register(IMAGE_MT_view) bpy.types.register(IMAGE_MT_select) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index bf7d30c461d..b127d6288dc 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -5,234 +5,234 @@ import dynamic_menu # reload(dynamic_menu) class INFO_HT_header(bpy.types.Header): - bl_space_type = 'INFO' + bl_space_type = 'INFO' - def draw(self, context): - layout = self.layout - - st = context.space_data - scene = context.scene - rd = scene.render_data + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() + st = context.space_data + scene = context.scene + rd = scene.render_data - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("INFO_MT_file") - sub.itemM("INFO_MT_add") - if rd.use_game_engine: - sub.itemM("INFO_MT_game") - else: - sub.itemM("INFO_MT_render") - sub.itemM("INFO_MT_help") + row = layout.row(align=True) + row.template_header() - layout.template_ID(context.window, "screen", new="screen.new", unlink="screen.delete") - layout.template_ID(context.screen, "scene", new="scene.new", unlink="scene.delete") + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("INFO_MT_file") + sub.itemM("INFO_MT_add") + if rd.use_game_engine: + sub.itemM("INFO_MT_game") + else: + sub.itemM("INFO_MT_render") + sub.itemM("INFO_MT_help") - if rd.multiple_engines: - layout.itemR(rd, "engine", text="") + layout.template_ID(context.window, "screen", new="screen.new", unlink="screen.delete") + layout.template_ID(context.screen, "scene", new="scene.new", unlink="scene.delete") - layout.itemS() + if rd.multiple_engines: + layout.itemR(rd, "engine", text="") - layout.template_operator_search() - layout.template_running_jobs() + layout.itemS() - layout.itemL(text=scene.statistics()) - - layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") + layout.template_operator_search() + layout.template_running_jobs() + + layout.itemL(text=scene.statistics()) + + layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") class INFO_MT_file(bpy.types.Menu): - bl_label = "File" + bl_label = "File" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.operator_context = "EXEC_AREA" - layout.itemO("wm.read_homefile", text="New", icon='ICON_NEW') - layout.operator_context = "INVOKE_AREA" - layout.itemO("wm.open_mainfile", text="Open...", icon='ICON_FILE_FOLDER') - layout.item_menu_enumO("wm.open_recentfile", "file", text="Open Recent") - layout.itemO("wm.recover_last_session") - layout.itemO("wm.recover_auto_save", text="Recover Auto Save...") + layout.operator_context = "EXEC_AREA" + layout.itemO("wm.read_homefile", text="New", icon='ICON_NEW') + layout.operator_context = "INVOKE_AREA" + layout.itemO("wm.open_mainfile", text="Open...", icon='ICON_FILE_FOLDER') + layout.item_menu_enumO("wm.open_recentfile", "file", text="Open Recent") + layout.itemO("wm.recover_last_session") + layout.itemO("wm.recover_auto_save", text="Recover Auto Save...") - layout.itemS() + layout.itemS() - layout.operator_context = "EXEC_AREA" - layout.itemO("wm.save_mainfile", text="Save", icon='ICON_FILE_TICK') - layout.operator_context = "INVOKE_AREA" - layout.itemO("wm.save_as_mainfile", text="Save As...") - layout.itemO("screen.userpref_show", text="User Preferences...", icon='ICON_PREFERENCES') + layout.operator_context = "EXEC_AREA" + layout.itemO("wm.save_mainfile", text="Save", icon='ICON_FILE_TICK') + layout.operator_context = "INVOKE_AREA" + layout.itemO("wm.save_as_mainfile", text="Save As...") + layout.itemO("screen.userpref_show", text="User Preferences...", icon='ICON_PREFERENCES') - layout.itemS() - layout.operator_context = "INVOKE_AREA" - layout.itemO("wm.link_append", text="Link") - layout.item_booleanO("wm.link_append", "link", False, text="Append") - layout.itemS() + layout.itemS() + layout.operator_context = "INVOKE_AREA" + layout.itemO("wm.link_append", text="Link") + layout.item_booleanO("wm.link_append", "link", False, text="Append") + layout.itemS() - layout.itemM("INFO_MT_file_import") - layout.itemM("INFO_MT_file_export") + layout.itemM("INFO_MT_file_import") + layout.itemM("INFO_MT_file_export") - layout.itemS() + layout.itemS() - layout.itemM("INFO_MT_file_external_data") + layout.itemM("INFO_MT_file_external_data") - layout.itemS() + layout.itemS() - layout.operator_context = "EXEC_AREA" - layout.itemO("wm.exit_blender", text="Quit", icon='ICON_QUIT') + layout.operator_context = "EXEC_AREA" + layout.itemO("wm.exit_blender", text="Quit", icon='ICON_QUIT') # test for expanding menus ''' class INFO_MT_file_more(INFO_MT_file): - bl_label = "File" + bl_label = "File" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("wm.read_homefile", text="TESTING ") + layout.itemO("wm.read_homefile", text="TESTING ") dynamic_menu.setup(INFO_MT_file_more) ''' class INFO_MT_file_import(dynamic_menu.DynMenu): - bl_idname = "INFO_MT_file_import" - bl_label = "Import" + bl_idname = "INFO_MT_file_import" + bl_label = "Import" - def draw(self, context): - self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") + def draw(self, context): + self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") class INFO_MT_file_export(dynamic_menu.DynMenu): - bl_idname = "INFO_MT_file_export" - bl_label = "Export" + bl_idname = "INFO_MT_file_export" + bl_label = "Export" - def draw(self, context): - self.layout.itemO("WM_OT_collada_export", text="COLLADA (.dae)...") + def draw(self, context): + self.layout.itemO("WM_OT_collada_export", text="COLLADA (.dae)...") class INFO_MT_file_external_data(bpy.types.Menu): - bl_label = "External Data" + bl_label = "External Data" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("file.pack_all", text="Pack into .blend file") - layout.itemO("file.unpack_all", text="Unpack into Files...") + layout.itemO("file.pack_all", text="Pack into .blend file") + layout.itemO("file.unpack_all", text="Unpack into Files...") - layout.itemS() + layout.itemS() - layout.itemO("file.make_paths_relative") - layout.itemO("file.make_paths_absolute") - layout.itemO("file.report_missing_files") - layout.itemO("file.find_missing_files") + layout.itemO("file.make_paths_relative") + layout.itemO("file.make_paths_absolute") + layout.itemO("file.report_missing_files") + layout.itemO("file.find_missing_files") class INFO_MT_mesh_add(dynamic_menu.DynMenu): - bl_idname = "INFO_MT_mesh_add" - bl_label = "Mesh" - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemO("mesh.primitive_plane_add", icon='ICON_MESH_PLANE', text="Plane") - layout.itemO("mesh.primitive_cube_add", icon='ICON_MESH_CUBE', text="Cube") - layout.itemO("mesh.primitive_circle_add", icon='ICON_MESH_CIRCLE', text="Circle") - layout.itemO("mesh.primitive_uv_sphere_add", icon='ICON_MESH_UVSPHERE', text="UV Sphere") - layout.itemO("mesh.primitive_ico_sphere_add", icon='ICON_MESH_ICOSPHERE', text="Icosphere") - layout.itemO("mesh.primitive_tube_add", icon='ICON_MESH_TUBE', text="Tube") - layout.itemO("mesh.primitive_cone_add", icon='ICON_MESH_CONE', text="Cone") - layout.itemS() - layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID', text="Grid") - layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY', text="Monkey") + bl_idname = "INFO_MT_mesh_add" + bl_label = "Mesh" + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' + layout.itemO("mesh.primitive_plane_add", icon='ICON_MESH_PLANE', text="Plane") + layout.itemO("mesh.primitive_cube_add", icon='ICON_MESH_CUBE', text="Cube") + layout.itemO("mesh.primitive_circle_add", icon='ICON_MESH_CIRCLE', text="Circle") + layout.itemO("mesh.primitive_uv_sphere_add", icon='ICON_MESH_UVSPHERE', text="UV Sphere") + layout.itemO("mesh.primitive_ico_sphere_add", icon='ICON_MESH_ICOSPHERE', text="Icosphere") + layout.itemO("mesh.primitive_tube_add", icon='ICON_MESH_TUBE', text="Tube") + layout.itemO("mesh.primitive_cone_add", icon='ICON_MESH_CONE', text="Cone") + layout.itemS() + layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID', text="Grid") + layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY', text="Monkey") class INFO_MT_add(bpy.types.Menu): - bl_label = "Add" + bl_label = "Add" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.operator_context = "EXEC_SCREEN" + layout.operator_context = "EXEC_SCREEN" - # layout.item_menu_enumO("object.mesh_add", "type", text="Mesh", icon='ICON_OUTLINER_OB_MESH') - layout.itemM("INFO_MT_mesh_add", icon='ICON_OUTLINER_OB_MESH') - - layout.item_menu_enumO("object.curve_add", "type", text="Curve", icon='ICON_OUTLINER_OB_CURVE') - layout.item_menu_enumO("object.surface_add", "type", text="Surface", icon='ICON_OUTLINER_OB_SURFACE') - layout.item_menu_enumO("object.metaball_add", "type", 'META', text="Metaball", icon='ICON_OUTLINER_OB_META') - layout.itemO("object.text_add", text="Text", icon='ICON_OUTLINER_OB_FONT') + # layout.item_menu_enumO("object.mesh_add", "type", text="Mesh", icon='ICON_OUTLINER_OB_MESH') + layout.itemM("INFO_MT_mesh_add", icon='ICON_OUTLINER_OB_MESH') - layout.itemS() + layout.item_menu_enumO("object.curve_add", "type", text="Curve", icon='ICON_OUTLINER_OB_CURVE') + layout.item_menu_enumO("object.surface_add", "type", text="Surface", icon='ICON_OUTLINER_OB_SURFACE') + layout.item_menu_enumO("object.metaball_add", "type", 'META', text="Metaball", icon='ICON_OUTLINER_OB_META') + layout.itemO("object.text_add", text="Text", icon='ICON_OUTLINER_OB_FONT') - layout.itemO("object.armature_add", text="Armature", icon='ICON_OUTLINER_OB_ARMATURE') - layout.item_enumO("object.add", "type", 'LATTICE', icon='ICON_OUTLINER_OB_LATTICE') - layout.item_enumO("object.add", "type", 'EMPTY', icon='ICON_OUTLINER_OB_EMPTY') + layout.itemS() - layout.itemS() + layout.itemO("object.armature_add", text="Armature", icon='ICON_OUTLINER_OB_ARMATURE') + layout.item_enumO("object.add", "type", 'LATTICE', icon='ICON_OUTLINER_OB_LATTICE') + layout.item_enumO("object.add", "type", 'EMPTY', icon='ICON_OUTLINER_OB_EMPTY') - layout.item_enumO("object.add", "type", 'CAMERA', icon='ICON_OUTLINER_OB_CAMERA') - layout.item_menu_enumO("object.lamp_add", "type", 'LAMP', text="Lamp", icon='ICON_OUTLINER_OB_LAMP') - - layout.itemS() - - layout.item_menu_enumO("object.effector_add", "type", 'EMPTY', text="Force Field", icon='ICON_OUTLINER_OB_EMPTY') + layout.itemS() - layout.itemS() - - layout.item_menu_enumO("object.group_instance_add", "type", text="Group Instance", icon='ICON_OUTLINER_OB_EMPTY') + layout.item_enumO("object.add", "type", 'CAMERA', icon='ICON_OUTLINER_OB_CAMERA') + layout.item_menu_enumO("object.lamp_add", "type", 'LAMP', text="Lamp", icon='ICON_OUTLINER_OB_LAMP') + + layout.itemS() + + layout.item_menu_enumO("object.effector_add", "type", 'EMPTY', text="Force Field", icon='ICON_OUTLINER_OB_EMPTY') + + layout.itemS() + + layout.item_menu_enumO("object.group_instance_add", "type", text="Group Instance", icon='ICON_OUTLINER_OB_EMPTY') class INFO_MT_game(bpy.types.Menu): - bl_label = "Game" + bl_label = "Game" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - gs = context.scene.game_data + gs = context.scene.game_data - layout.itemO("view3d.game_start") + layout.itemO("view3d.game_start") - layout.itemS() + layout.itemS() - layout.itemR(gs, "show_debug_properties") - layout.itemR(gs, "show_framerate_profile") - layout.itemR(gs, "show_physics_visualization") - layout.itemR(gs, "deprecation_warnings") + layout.itemR(gs, "show_debug_properties") + layout.itemR(gs, "show_framerate_profile") + layout.itemR(gs, "show_physics_visualization") + layout.itemR(gs, "deprecation_warnings") class INFO_MT_render(bpy.types.Menu): - bl_label = "Render" + bl_label = "Render" - def draw(self, context): - layout = self.layout - - rd = context.scene.render_data + def draw(self, context): + layout = self.layout - layout.itemO("screen.render", text="Render Image", icon='ICON_RENDER_STILL') - layout.item_booleanO("screen.render", "animation", True, text="Render Animation", icon='ICON_RENDER_ANIMATION') + rd = context.scene.render_data - layout.itemS() + layout.itemO("screen.render", text="Render Image", icon='ICON_RENDER_STILL') + layout.item_booleanO("screen.render", "animation", True, text="Render Animation", icon='ICON_RENDER_ANIMATION') - layout.itemO("screen.opengl_render", text="OpenGL Render Image") - layout.item_booleanO("screen.opengl_render", "animation", True, text="OpenGL Render Animation") + layout.itemS() - layout.itemS() + layout.itemO("screen.opengl_render", text="OpenGL Render Image") + layout.item_booleanO("screen.opengl_render", "animation", True, text="OpenGL Render Animation") - layout.itemO("screen.render_view_show") + layout.itemS() + + layout.itemO("screen.render_view_show") class INFO_MT_help(bpy.types.Menu): - bl_label = "Help" + bl_label = "Help" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("help.manual", icon='ICON_HELP') - layout.itemO("help.release_logs", icon='ICON_URL') + layout.itemO("help.manual", icon='ICON_HELP') + layout.itemO("help.release_logs", icon='ICON_URL') - layout.itemS() + layout.itemS() - layout.itemO("help.blender_website", icon='ICON_URL') - layout.itemO("help.blender_eshop", icon='ICON_URL') - layout.itemO("help.developer_community", icon='ICON_URL') - layout.itemO("help.user_community", icon='ICON_URL') - layout.itemS() - layout.itemO("help.report_bug", icon='ICON_URL') - layout.itemS() - layout.itemO("help.operator_cheat_sheet") + layout.itemO("help.blender_website", icon='ICON_URL') + layout.itemO("help.blender_eshop", icon='ICON_URL') + layout.itemO("help.developer_community", icon='ICON_URL') + layout.itemO("help.user_community", icon='ICON_URL') + layout.itemS() + layout.itemO("help.report_bug", icon='ICON_URL') + layout.itemS() + layout.itemO("help.operator_cheat_sheet") bpy.types.register(INFO_HT_header) bpy.types.register(INFO_MT_file) @@ -248,77 +248,77 @@ bpy.types.register(INFO_MT_help) # Help operators class HelpOperator(bpy.types.Operator): - def execute(self, context): - import webbrowser - webbrowser.open(self._url) - return ('FINISHED',) + def execute(self, context): + import webbrowser + webbrowser.open(self._url) + return ('FINISHED',) class HELP_OT_manual(HelpOperator): - '''The Blender Wiki manual''' - bl_idname = "help.manual" - bl_label = "Manual" - _url = 'http://wiki.blender.org/index.php/Manual' + '''The Blender Wiki manual''' + bl_idname = "help.manual" + bl_label = "Manual" + _url = 'http://wiki.blender.org/index.php/Manual' class HELP_OT_release_logs(HelpOperator): - '''Information about the changes in this version of Blender''' - bl_idname = "help.release_logs" - bl_label = "Release Logs" - _url = 'http://www.blender.org/development/release-logs/' + '''Information about the changes in this version of Blender''' + bl_idname = "help.release_logs" + bl_label = "Release Logs" + _url = 'http://www.blender.org/development/release-logs/' class HELP_OT_blender_website(HelpOperator): - '''The official Blender website''' - bl_idname = "help.blender_website" - bl_label = "Blender Website" - _url = 'http://www.blender.org/' + '''The official Blender website''' + bl_idname = "help.blender_website" + bl_label = "Blender Website" + _url = 'http://www.blender.org/' class HELP_OT_blender_eshop(HelpOperator): - '''Buy official Blender resources and merchandise online''' - bl_idname = "help.blender_eshop" - bl_label = "Blender e-Shop" - _url = 'http://www.blender3d.org/e-shop' + '''Buy official Blender resources and merchandise online''' + bl_idname = "help.blender_eshop" + bl_label = "Blender e-Shop" + _url = 'http://www.blender3d.org/e-shop' class HELP_OT_developer_community(HelpOperator): - '''Get involved with Blender development''' - bl_idname = "help.developer_community" - bl_label = "Developer Community" - _url = 'http://www.blender.org/community/get-involved/' + '''Get involved with Blender development''' + bl_idname = "help.developer_community" + bl_label = "Developer Community" + _url = 'http://www.blender.org/community/get-involved/' class HELP_OT_user_community(HelpOperator): - '''Get involved with other Blender users''' - bl_idname = "help.user_community" - bl_label = "User Community" - _url = 'http://www.blender.org/community/user-community/' - + '''Get involved with other Blender users''' + bl_idname = "help.user_community" + bl_label = "User Community" + _url = 'http://www.blender.org/community/user-community/' + class HELP_OT_report_bug(HelpOperator): - '''Report a bug in the Blender bug tracker''' - bl_idname = "help.report_bug" - bl_label = "Report a Bug" - _url = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' + '''Report a bug in the Blender bug tracker''' + bl_idname = "help.report_bug" + bl_label = "Report a Bug" + _url = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' class HELP_OT_operator_cheat_sheet(bpy.types.Operator): - bl_idname = "help.operator_cheat_sheet" - bl_label = "Operator Cheat Sheet (new textblock)" - def execute(self, context): - op_strings = [] - tot = 0 - for op_module_name in dir(bpy.ops): - op_module = getattr(bpy.ops, op_module_name) - for op_submodule_name in dir(op_module): - op = getattr(op_module, op_submodule_name) - text = repr(op) - if text.startswith('bpy.ops.'): - op_strings.append(text) - tot += 1 - - op_strings.append('') - - bpy.ops.text.new() # XXX - assumes new text is always at the end! - textblock = bpy.data.texts[-1] - textblock.write('# %d Operators\n\n' % tot) - textblock.write('\n'.join(op_strings)) - textblock.name = "OperatorList.txt" - print("See OperatorList.txt textblock") - return ('FINISHED',) + bl_idname = "help.operator_cheat_sheet" + bl_label = "Operator Cheat Sheet (new textblock)" + def execute(self, context): + op_strings = [] + tot = 0 + for op_module_name in dir(bpy.ops): + op_module = getattr(bpy.ops, op_module_name) + for op_submodule_name in dir(op_module): + op = getattr(op_module, op_submodule_name) + text = repr(op) + if text.startswith('bpy.ops.'): + op_strings.append(text) + tot += 1 + + op_strings.append('') + + bpy.ops.text.new() # XXX - assumes new text is always at the end! + textblock = bpy.data.texts[-1] + textblock.write('# %d Operators\n\n' % tot) + textblock.write('\n'.join(op_strings)) + textblock.name = "OperatorList.txt" + print("See OperatorList.txt textblock") + return ('FINISHED',) bpy.ops.add(HELP_OT_manual) bpy.ops.add(HELP_OT_release_logs) diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index 7c6ce62bb6b..cd2f2262ef6 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -1,29 +1,29 @@ import bpy class LOGIC_PT_properties(bpy.types.Panel): - bl_space_type = 'LOGIC_EDITOR' - bl_region_type = 'UI' - bl_label = "Properties" + bl_space_type = 'LOGIC_EDITOR' + bl_region_type = 'UI' + bl_label = "Properties" - def poll(self, context): - ob = context.active_object - return ob and ob.game + def poll(self, context): + ob = context.active_object + return ob and ob.game + + def draw(self, context): + layout = self.layout + + ob = context.active_object + game = ob.game + + layout.itemO("object.game_property_new", text="Add Game Property") + + for i, prop in enumerate(game.properties): + + row = layout.row(align=True) + row.itemR(prop, "name", text="") + row.itemR(prop, "type", text="") + row.itemR(prop, "value", text="", toggle=True) # we dont care about the type. rna will display correctly + row.itemR(prop, "debug", text="", toggle=True, icon='ICON_INFO') + row.item_intO("object.game_property_remove", "index", i, text="", icon='ICON_X') - def draw(self, context): - layout = self.layout - - ob = context.active_object - game = ob.game - - layout.itemO("object.game_property_new", text="Add Game Property") - - for i, prop in enumerate(game.properties): - - row = layout.row(align=True) - row.itemR(prop, "name", text="") - row.itemR(prop, "type", text="") - row.itemR(prop, "value", text="", toggle=True) # we dont care about the type. rna will display correctly - row.itemR(prop, "debug", text="", toggle=True, icon='ICON_INFO') - row.item_intO("object.game_property_remove", "index", i, text="", icon='ICON_X') - bpy.types.register(LOGIC_PT_properties) diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index f9d1b59e3ec..2a8d4de2c4b 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -2,112 +2,112 @@ import bpy class NODE_HT_header(bpy.types.Header): - bl_space_type = 'NODE_EDITOR' + bl_space_type = 'NODE_EDITOR' - def draw(self, context): - layout = self.layout - - snode = context.space_data + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() + snode = context.space_data - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("NODE_MT_view") - sub.itemM("NODE_MT_select") - sub.itemM("NODE_MT_add") - sub.itemM("NODE_MT_node") + row = layout.row(align=True) + row.template_header() - row = layout.row() - row.itemR(snode, "tree_type", text="", expand=True) + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("NODE_MT_view") + sub.itemM("NODE_MT_select") + sub.itemM("NODE_MT_add") + sub.itemM("NODE_MT_node") - if snode.tree_type == 'MATERIAL': - ob = snode.id_from - id = snode.id - if ob: - layout.template_ID(ob, "active_material", new="material.new") - if id: - layout.itemR(id, "use_nodes") + row = layout.row() + row.itemR(snode, "tree_type", text="", expand=True) - elif snode.tree_type == 'TEXTURE': - row.itemR(snode, "texture_type", text="", expand=True) + if snode.tree_type == 'MATERIAL': + ob = snode.id_from + id = snode.id + if ob: + layout.template_ID(ob, "active_material", new="material.new") + if id: + layout.itemR(id, "use_nodes") - id = snode.id - id_from = snode.id_from - if id_from: - layout.template_ID(id_from, "active_texture", new="texture.new") - if id: - layout.itemR(id, "use_nodes") + elif snode.tree_type == 'TEXTURE': + row.itemR(snode, "texture_type", text="", expand=True) - elif snode.tree_type == 'COMPOSITING': - id = snode.id + id = snode.id + id_from = snode.id_from + if id_from: + layout.template_ID(id_from, "active_texture", new="texture.new") + if id: + layout.itemR(id, "use_nodes") - layout.itemR(id, "use_nodes") - layout.itemR(id.render_data, "free_unused_nodes", text="Free Unused") - layout.itemR(snode, "backdrop") + elif snode.tree_type == 'COMPOSITING': + id = snode.id + + layout.itemR(id, "use_nodes") + layout.itemR(id.render_data, "free_unused_nodes", text="Free Unused") + layout.itemR(snode, "backdrop") class NODE_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - # layout.itemO("grease_pencil..") - # layout.itemS() + # layout.itemO("grease_pencil..") + # layout.itemS() - layout.itemO("view2d.zoom_in") - layout.itemO("view2d.zoom_out") + layout.itemO("view2d.zoom_in") + layout.itemO("view2d.zoom_out") - layout.itemS() + layout.itemS() - layout.itemO("node.view_all") - layout.itemO("screen.screen_full_area") + layout.itemO("node.view_all") + layout.itemO("screen.screen_full_area") class NODE_MT_select(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("node.select_border") + layout.itemO("node.select_border") - layout.itemS() - layout.itemO("node.select_all") - layout.itemO("node.select_linked_from") - layout.itemO("node.select_linked_to") + layout.itemS() + layout.itemO("node.select_all") + layout.itemO("node.select_linked_from") + layout.itemO("node.select_linked_to") class NODE_MT_node(bpy.types.Menu): - bl_label = "Node" + bl_label = "Node" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("tfm.translate") - layout.itemO("tfm.resize") - layout.itemO("tfm.rotate") + layout.itemO("tfm.translate") + layout.itemO("tfm.resize") + layout.itemO("tfm.rotate") - layout.itemS() + layout.itemS() - layout.itemO("node.duplicate") - layout.itemO("node.delete") + layout.itemO("node.duplicate") + layout.itemO("node.delete") - # XXX - # layout.itemS() - # layout.itemO("node.make_link") - layout.itemS() - layout.itemO("node.group_edit") - layout.itemO("node.group_ungroup") - layout.itemO("node.group_make") + # XXX + # layout.itemS() + # layout.itemO("node.make_link") + layout.itemS() + layout.itemO("node.group_edit") + layout.itemO("node.group_ungroup") + layout.itemO("node.group_make") - layout.itemS() + layout.itemS() - layout.itemO("node.visibility_toggle") + layout.itemO("node.visibility_toggle") - # XXX - # layout.itemO("node.rename") - # layout.itemS() - # layout.itemO("node.show_cyclic_dependencies") + # XXX + # layout.itemO("node.rename") + # layout.itemS() + # layout.itemO("node.show_cyclic_dependencies") bpy.types.register(NODE_HT_header) bpy.types.register(NODE_MT_view) diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index b3cb04e9286..384e49a1276 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -2,76 +2,76 @@ import bpy class OUTLINER_HT_header(bpy.types.Header): - bl_space_type = 'OUTLINER' + bl_space_type = 'OUTLINER' - def draw(self, context): - layout = self.layout - - space = context.space_data - scene = context.scene - ks = context.scene.active_keying_set + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() + space = context.space_data + scene = context.scene + ks = context.scene.active_keying_set - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("OUTLINER_MT_view") - if space.display_mode == 'DATABLOCKS': - sub.itemM("OUTLINER_MT_edit_datablocks") + row = layout.row(align=True) + row.template_header() - layout.itemR(space, "display_mode", text="") - - layout.itemS() - - if space.display_mode == 'DATABLOCKS': - row = layout.row(align=True) - row.itemO("outliner.keyingset_add_selected", icon='ICON_ZOOMIN', text="") - row.itemO("outliner.keyingset_remove_selected", icon='ICON_ZOOMOUT', text="") - - if ks: - row = layout.row(align=False) - row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") - - row = layout.row(align=True) - row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') - row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') - else: - row = layout.row(align=False) - row.itemL(text="No Keying Set active") + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("OUTLINER_MT_view") + if space.display_mode == 'DATABLOCKS': + sub.itemM("OUTLINER_MT_edit_datablocks") + + layout.itemR(space, "display_mode", text="") + + layout.itemS() + + if space.display_mode == 'DATABLOCKS': + row = layout.row(align=True) + row.itemO("outliner.keyingset_add_selected", icon='ICON_ZOOMIN', text="") + row.itemO("outliner.keyingset_remove_selected", icon='ICON_ZOOMOUT', text="") + + if ks: + row = layout.row(align=False) + row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") + + row = layout.row(align=True) + row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') + row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') + else: + row = layout.row(align=False) + row.itemL(text="No Keying Set active") class OUTLINER_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout - - space = context.space_data + def draw(self, context): + layout = self.layout - col = layout.column() - if space.display_mode not in ('DATABLOCKS', 'USER_PREFERENCES', 'KEYMAPS'): - col.itemR(space, "show_restriction_columns") - col.itemS() - col.itemO("outliner.show_active") + space = context.space_data + + col = layout.column() + if space.display_mode not in ('DATABLOCKS', 'USER_PREFERENCES', 'KEYMAPS'): + col.itemR(space, "show_restriction_columns") + col.itemS() + col.itemO("outliner.show_active") + + col.itemO("outliner.show_one_level") + col.itemO("outliner.show_hierarchy") - col.itemO("outliner.show_one_level") - col.itemO("outliner.show_hierarchy") - class OUTLINER_MT_edit_datablocks(bpy.types.Menu): - bl_label = "Edit" - - def draw(self, context): - layout = self.layout - - col = layout.column() + bl_label = "Edit" - col.itemO("outliner.keyingset_add_selected") - col.itemO("outliner.keyingset_remove_selected") - - col.itemS() - - col.itemO("outliner.drivers_add_selected") - col.itemO("outliner.drivers_delete_selected") + def draw(self, context): + layout = self.layout + + col = layout.column() + + col.itemO("outliner.keyingset_add_selected") + col.itemO("outliner.keyingset_remove_selected") + + col.itemS() + + col.itemO("outliner.drivers_add_selected") + col.itemO("outliner.drivers_delete_selected") bpy.types.register(OUTLINER_HT_header) bpy.types.register(OUTLINER_MT_view) diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 5d5f4ed662f..75bd9edc8d0 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -2,582 +2,582 @@ import bpy def act_strip(context): - try: return context.scene.sequence_editor.active_strip - except: return None + try: return context.scene.sequence_editor.active_strip + except: return None # Header class SEQUENCER_HT_header(bpy.types.Header): - bl_space_type = 'SEQUENCE_EDITOR' + bl_space_type = 'SEQUENCE_EDITOR' - def draw(self, context): - layout = self.layout - - st = context.space_data + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() - - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("SEQUENCER_MT_view") - - row.itemS() - - if st.display_mode == 'SEQUENCER': - sub.itemM("SEQUENCER_MT_select") - sub.itemM("SEQUENCER_MT_marker") - sub.itemM("SEQUENCER_MT_add") - sub.itemM("SEQUENCER_MT_strip") + st = context.space_data - layout.itemR(st, "display_mode", text="") + row = layout.row(align=True) + row.template_header() - if st.display_mode == 'SEQUENCER': - layout.itemS() - layout.itemO("sequencer.reload") - else: - layout.itemR(st, "display_channel", text="Channel") + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("SEQUENCER_MT_view") + + row.itemS() + + if st.display_mode == 'SEQUENCER': + sub.itemM("SEQUENCER_MT_select") + sub.itemM("SEQUENCER_MT_marker") + sub.itemM("SEQUENCER_MT_add") + sub.itemM("SEQUENCER_MT_strip") + + layout.itemR(st, "display_mode", text="") + + if st.display_mode == 'SEQUENCER': + layout.itemS() + layout.itemO("sequencer.reload") + else: + layout.itemR(st, "display_channel", text="Channel") class SEQUENCER_MT_view(bpy.types.Menu): - bl_label = "View" - - def draw(self, context): - layout = self.layout - - st = context.space_data - - layout.column() - - """ - uiBlock *block= uiBeginBlock(C, ar, "seq_viewmenu", UI_EMBOSSP); - short yco= 0, menuwidth=120; + bl_label = "View" - if (sseq->mainb == SEQ_DRAW_SEQUENCE) { - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, - "Play Back Animation " - "in all Sequence Areas|Alt A", 0, yco-=20, - menuwidth, 19, NULL, 0.0, 0.0, 1, 1, ""); - } - else { - uiDefIconTextBut(block, BUTM, 1, ICON_MENU_PANEL, - "Grease Pencil...", 0, yco-=20, - menuwidth, 19, NULL, 0.0, 0.0, 1, 7, ""); - uiDefMenuSep(block); + def draw(self, context): + layout = self.layout - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, - "Play Back Animation " - "in this window|Alt A", 0, yco-=20, - menuwidth, 19, NULL, 0.0, 0.0, 1, 1, ""); - } - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, - "Play Back Animation in all " - "3D Views and Sequence Areas|Alt Shift A", - 0, yco-=20, - menuwidth, 19, NULL, 0.0, 0.0, 1, 2, ""); + st = context.space_data - """ - layout.itemS() - layout.itemO("sequencer.view_all") - layout.itemO("sequencer.view_selected") - layout.itemS() - layout.itemO("screen.screen_full_area", text="Toggle Full Screen") - """ - + layout.column() - /* Lock Time */ - uiDefIconTextBut(block, BUTM, 1, (v2d->flag & V2D_VIEWSYNC_SCREEN_TIME)?ICON_CHECKBOX_HLT:ICON_CHECKBOX_DEHLT, - "Lock Time to Other Windows|", 0, yco-=20, - menuwidth, 19, NULL, 0.0, 0.0, 1, 5, ""); + """ + uiBlock *block= uiBeginBlock(C, ar, "seq_viewmenu", UI_EMBOSSP); + short yco= 0, menuwidth=120; - /* Draw time or frames.*/ - uiDefMenuSep(block); - """ - - layout.itemR(st, "draw_frames") - if st.display_mode == 'IMAGE': - layout.itemR(st, "draw_safe_margin") - if st.display_mode == 'WAVEFORM': - layout.itemR(st, "seperate_color_preview") - - """ - if(!sa->full) uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Maximize Window|Ctrl UpArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0,0, ""); - else uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Tile Window|Ctrl DownArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 0, ""); + if (sseq->mainb == SEQ_DRAW_SEQUENCE) { + uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, + "Play Back Animation " + "in all Sequence Areas|Alt A", 0, yco-=20, + menuwidth, 19, NULL, 0.0, 0.0, 1, 1, ""); + } + else { + uiDefIconTextBut(block, BUTM, 1, ICON_MENU_PANEL, + "Grease Pencil...", 0, yco-=20, + menuwidth, 19, NULL, 0.0, 0.0, 1, 7, ""); + uiDefMenuSep(block); - """ + uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, + "Play Back Animation " + "in this window|Alt A", 0, yco-=20, + menuwidth, 19, NULL, 0.0, 0.0, 1, 1, ""); + } + uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, + "Play Back Animation in all " + "3D Views and Sequence Areas|Alt Shift A", + 0, yco-=20, + menuwidth, 19, NULL, 0.0, 0.0, 1, 2, ""); + + """ + layout.itemS() + layout.itemO("sequencer.view_all") + layout.itemO("sequencer.view_selected") + layout.itemS() + layout.itemO("screen.screen_full_area", text="Toggle Full Screen") + """ + + + /* Lock Time */ + uiDefIconTextBut(block, BUTM, 1, (v2d->flag & V2D_VIEWSYNC_SCREEN_TIME)?ICON_CHECKBOX_HLT:ICON_CHECKBOX_DEHLT, + "Lock Time to Other Windows|", 0, yco-=20, + menuwidth, 19, NULL, 0.0, 0.0, 1, 5, ""); + + /* Draw time or frames.*/ + uiDefMenuSep(block); + """ + + layout.itemR(st, "draw_frames") + if st.display_mode == 'IMAGE': + layout.itemR(st, "draw_safe_margin") + if st.display_mode == 'WAVEFORM': + layout.itemR(st, "seperate_color_preview") + + """ + if(!sa->full) uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Maximize Window|Ctrl UpArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0,0, ""); + else uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Tile Window|Ctrl DownArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 0, ""); + + """ class SEQUENCER_MT_select(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout - - st = context.space_data - - layout.column() - layout.item_enumO("sequencer.select_active_side", "side", 'LEFT', text="Strips to the Left") - layout.item_enumO("sequencer.select_active_side", "side", 'RIGHT', text="Strips to the Right") - layout.itemS() - layout.item_enumO("sequencer.select_handles", "side", 'BOTH', text="Surrounding Handles") - layout.item_enumO("sequencer.select_handles", "side", 'LEFT', text="Left Handle") - layout.item_enumO("sequencer.select_handles", "side", 'RIGHT', text="Right Handle") - layout.itemS() - layout.itemO("sequencer.select_linked") - layout.itemO("sequencer.select_all_toggle") - layout.itemO("sequencer.select_inverse") + def draw(self, context): + layout = self.layout + + st = context.space_data + + layout.column() + layout.item_enumO("sequencer.select_active_side", "side", 'LEFT', text="Strips to the Left") + layout.item_enumO("sequencer.select_active_side", "side", 'RIGHT', text="Strips to the Right") + layout.itemS() + layout.item_enumO("sequencer.select_handles", "side", 'BOTH', text="Surrounding Handles") + layout.item_enumO("sequencer.select_handles", "side", 'LEFT', text="Left Handle") + layout.item_enumO("sequencer.select_handles", "side", 'RIGHT', text="Right Handle") + layout.itemS() + layout.itemO("sequencer.select_linked") + layout.itemO("sequencer.select_all_toggle") + layout.itemO("sequencer.select_inverse") class SEQUENCER_MT_marker(bpy.types.Menu): - bl_label = "Marker (TODO)" + bl_label = "Marker (TODO)" - def draw(self, context): - layout = self.layout - - st = context.space_data - - layout.column() - layout.itemO("marker.add", text="Add Marker") - layout.itemO("marker.duplicate", text="Duplicate Marker") - layout.itemO("marker.move", text="Grab/Move Marker") - layout.itemO("marker.delete", text="Delete Marker") - layout.itemS() - layout.itemL(text="ToDo: Name Marker") - - #layout.itemO("sequencer.sound_strip_add", text="Transform Markers") # toggle, will be rna - (sseq->flag & SEQ_MARKER_TRANS) + def draw(self, context): + layout = self.layout + + st = context.space_data + + layout.column() + layout.itemO("marker.add", text="Add Marker") + layout.itemO("marker.duplicate", text="Duplicate Marker") + layout.itemO("marker.move", text="Grab/Move Marker") + layout.itemO("marker.delete", text="Delete Marker") + layout.itemS() + layout.itemL(text="ToDo: Name Marker") + + #layout.itemO("sequencer.sound_strip_add", text="Transform Markers") # toggle, will be rna - (sseq->flag & SEQ_MARKER_TRANS) class SEQUENCER_MT_add(bpy.types.Menu): - bl_label = "Add" + bl_label = "Add" - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - - st = context.space_data - - layout.column() - layout.itemO("sequencer.scene_strip_add", text="Scene") - layout.itemO("sequencer.movie_strip_add", text="Movie") - layout.itemO("sequencer.image_strip_add", text="Image") - layout.itemO("sequencer.sound_strip_add", text="Sound") - - layout.itemM("SEQUENCER_MT_add_effect") + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' + + st = context.space_data + + layout.column() + layout.itemO("sequencer.scene_strip_add", text="Scene") + layout.itemO("sequencer.movie_strip_add", text="Movie") + layout.itemO("sequencer.image_strip_add", text="Image") + layout.itemO("sequencer.sound_strip_add", text="Sound") + + layout.itemM("SEQUENCER_MT_add_effect") class SEQUENCER_MT_add_effect(bpy.types.Menu): - bl_label = "Effect Strip..." + bl_label = "Effect Strip..." - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - st = context.space_data - - layout.column() - layout.item_enumO("sequencer.effect_strip_add", 'type', 'ADD') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'SUBTRACT') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'ALPHA_OVER') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'ALPHA_UNDER') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'GAMMA_CROSS') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'MULTIPLY') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'OVER_DROP') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'PLUGIN') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'WIPE') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'GLOW') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'TRANSFORM') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'COLOR') - layout.item_enumO("sequencer.effect_strip_add", 'type', 'SPEED') + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' + st = context.space_data + + layout.column() + layout.item_enumO("sequencer.effect_strip_add", 'type', 'ADD') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'SUBTRACT') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'ALPHA_OVER') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'ALPHA_UNDER') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'GAMMA_CROSS') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'MULTIPLY') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'OVER_DROP') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'PLUGIN') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'WIPE') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'GLOW') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'TRANSFORM') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'COLOR') + layout.item_enumO("sequencer.effect_strip_add", 'type', 'SPEED') class SEQUENCER_MT_strip(bpy.types.Menu): - bl_label = "Strip" + bl_label = "Strip" - def draw(self, context): - layout = self.layout - - st = context.space_data - - layout.operator_context = 'INVOKE_REGION_WIN' - - layout.column() - layout.item_enumO("tfm.transform", "mode", 'TRANSLATION', text="Grab/Move") - layout.item_enumO("tfm.transform", "mode", 'TIME_EXTEND', text="Grab/Extend from frame") - # uiItemO(layout, NULL, 0, "sequencer.strip_snap"); // TODO - add this operator - layout.itemS() - - layout.item_enumO("sequencer.cut", "type", 'HARD', text="Cut (hard) at frame") - layout.item_enumO("sequencer.cut", "type", 'SOFT', text="Cut (soft) at frame") - layout.itemO("sequencer.images_separate") - layout.itemS() - - layout.itemO("sequencer.duplicate") - layout.itemO("sequencer.delete") - - strip = act_strip(context) - - if strip: - stype = strip.type - - if stype=='EFFECT': - layout.itemS() - layout.itemO("sequencer.effect_change") - layout.itemO("sequencer.effect_reassign_inputs") - elif stype=='IMAGE': - layout.itemS() - layout.itemO("sequencer.image_change") - elif stype=='SCENE': - layout.itemS() - layout.itemO("sequencer.scene_change", text="Change Scene") - elif stype=='MOVIE': - layout.itemS() - layout.itemO("sequencer.movie_change") - - layout.itemS() - - layout.itemO("sequencer.meta_make") - layout.itemO("sequencer.meta_separate") - - #if (ed && (ed->metastack.first || (ed->act_seq && ed->act_seq->type == SEQ_META))) { - # uiItemS(layout); - # uiItemO(layout, NULL, 0, "sequencer.meta_toggle"); - #} - - layout.itemS() - layout.itemO("sequencer.reload") - layout.itemS() - layout.itemO("sequencer.lock") - layout.itemO("sequencer.unlock") - layout.itemO("sequencer.mute") - layout.itemO("sequencer.unmute") - - layout.item_booleanO("sequencer.mute", "unselected", 1, text="Mute Deselected Strips") + def draw(self, context): + layout = self.layout - layout.itemO("sequencer.snap") - - layout.itemO("sequencer.swap_right") - layout.itemO("sequencer.swap_left") + st = context.space_data + + layout.operator_context = 'INVOKE_REGION_WIN' + + layout.column() + layout.item_enumO("tfm.transform", "mode", 'TRANSLATION', text="Grab/Move") + layout.item_enumO("tfm.transform", "mode", 'TIME_EXTEND', text="Grab/Extend from frame") + # uiItemO(layout, NULL, 0, "sequencer.strip_snap"); // TODO - add this operator + layout.itemS() + + layout.item_enumO("sequencer.cut", "type", 'HARD', text="Cut (hard) at frame") + layout.item_enumO("sequencer.cut", "type", 'SOFT', text="Cut (soft) at frame") + layout.itemO("sequencer.images_separate") + layout.itemS() + + layout.itemO("sequencer.duplicate") + layout.itemO("sequencer.delete") + + strip = act_strip(context) + + if strip: + stype = strip.type + + if stype=='EFFECT': + layout.itemS() + layout.itemO("sequencer.effect_change") + layout.itemO("sequencer.effect_reassign_inputs") + elif stype=='IMAGE': + layout.itemS() + layout.itemO("sequencer.image_change") + elif stype=='SCENE': + layout.itemS() + layout.itemO("sequencer.scene_change", text="Change Scene") + elif stype=='MOVIE': + layout.itemS() + layout.itemO("sequencer.movie_change") + + layout.itemS() + + layout.itemO("sequencer.meta_make") + layout.itemO("sequencer.meta_separate") + + #if (ed && (ed->metastack.first || (ed->act_seq && ed->act_seq->type == SEQ_META))) { + # uiItemS(layout); + # uiItemO(layout, NULL, 0, "sequencer.meta_toggle"); + #} + + layout.itemS() + layout.itemO("sequencer.reload") + layout.itemS() + layout.itemO("sequencer.lock") + layout.itemO("sequencer.unlock") + layout.itemO("sequencer.mute") + layout.itemO("sequencer.unmute") + + layout.item_booleanO("sequencer.mute", "unselected", 1, text="Mute Deselected Strips") + + layout.itemO("sequencer.snap") + + layout.itemO("sequencer.swap_right") + layout.itemO("sequencer.swap_left") # Panels class SequencerButtonsPanel(bpy.types.Panel): - bl_space_type = 'SEQUENCE_EDITOR' - bl_region_type = 'UI' + bl_space_type = 'SEQUENCE_EDITOR' + bl_region_type = 'UI' + + def poll(self, context): + return context.space_data.display_mode == 'SEQUENCER' and act_strip(context) != None - def poll(self, context): - return context.space_data.display_mode == 'SEQUENCER' and act_strip(context) != None - class SequencerButtonsPanel_Output(bpy.types.Panel): - bl_space_type = 'SEQUENCE_EDITOR' - bl_region_type = 'UI' + bl_space_type = 'SEQUENCE_EDITOR' + bl_region_type = 'UI' - def poll(self, context): - return context.space_data.display_mode != 'SEQUENCER' + def poll(self, context): + return context.space_data.display_mode != 'SEQUENCER' class SEQUENCER_PT_edit(SequencerButtonsPanel): - bl_label = "Edit Strip" + bl_label = "Edit Strip" + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + split = layout.split(percentage=0.3) + split.itemL(text="Name:") + split.itemR(strip, "name", text="") + + split = layout.split(percentage=0.3) + split.itemL(text="Type:") + split.itemR(strip, "type", text="") + + split = layout.split(percentage=0.3) + split.itemL(text="Blend:") + split.itemR(strip, "blend_mode", text="") + + row = layout.row() + if strip.mute == True: + row.itemR(strip, "mute", toggle=True, icon='ICON_RESTRICT_VIEW_ON', text="") + elif strip.mute == False: + row.itemR(strip, "mute", toggle=True, icon='ICON_RESTRICT_VIEW_OFF', text="") + + sub = row.row() + sub.active = (not strip.mute) + + sub.itemR(strip, "blend_opacity", text="Opacity", slider=True) + + row = layout.row() + row.itemR(strip, "lock") + row.itemR(strip, "frame_locked", text="Frame Lock") + + col = layout.column() + col.enabled = not strip.lock + col.itemR(strip, "channel") + col.itemR(strip, "start_frame") + col.itemR(strip, "length") + + col = layout.column(align=True) + col.itemL(text="Offset:") + col.itemR(strip, "start_offset", text="Start") + col.itemR(strip, "end_offset", text="End") + + col = layout.column(align=True) + col.itemL(text="Still:") + col.itemR(strip, "start_still", text="Start") + col.itemR(strip, "end_still", text="End") - def draw(self, context): - layout = self.layout - - strip = act_strip(context) - - split = layout.split(percentage=0.3) - split.itemL(text="Name:") - split.itemR(strip, "name", text="") - - split = layout.split(percentage=0.3) - split.itemL(text="Type:") - split.itemR(strip, "type", text="") - - split = layout.split(percentage=0.3) - split.itemL(text="Blend:") - split.itemR(strip, "blend_mode", text="") - - row = layout.row() - if strip.mute == True: - row.itemR(strip, "mute", toggle=True, icon='ICON_RESTRICT_VIEW_ON', text="") - elif strip.mute == False: - row.itemR(strip, "mute", toggle=True, icon='ICON_RESTRICT_VIEW_OFF', text="") - - sub = row.row() - sub.active = (not strip.mute) - - sub.itemR(strip, "blend_opacity", text="Opacity", slider=True) - - row = layout.row() - row.itemR(strip, "lock") - row.itemR(strip, "frame_locked", text="Frame Lock") - - col = layout.column() - col.enabled = not strip.lock - col.itemR(strip, "channel") - col.itemR(strip, "start_frame") - col.itemR(strip, "length") - - col = layout.column(align=True) - col.itemL(text="Offset:") - col.itemR(strip, "start_offset", text="Start") - col.itemR(strip, "end_offset", text="End") - - col = layout.column(align=True) - col.itemL(text="Still:") - col.itemR(strip, "start_still", text="Start") - col.itemR(strip, "end_still", text="End") - class SEQUENCER_PT_effect(SequencerButtonsPanel): - bl_label = "Effect Strip" + bl_label = "Effect Strip" - def poll(self, context): - if context.space_data.display_mode != 'SEQUENCER': - return False - - strip = act_strip(context) - if not strip: - return False - - return strip.type in ('COLOR', 'WIPE', 'GLOW', 'SPEED', 'TRANSFORM') + def poll(self, context): + if context.space_data.display_mode != 'SEQUENCER': + return False - def draw(self, context): - layout = self.layout - - strip = act_strip(context) - - if strip.type == 'COLOR': - layout.itemR(strip, "color") - - elif strip.type == 'WIPE': - - col = layout.column() - col.itemR(strip, "transition_type") - col.itemL(text="Direction:") - col.row().itemR(strip, "direction", expand=True) - - col = layout.column() - col.itemR(strip, "blur_width", slider=True) - if strip.transition_type in ('SINGLE', 'DOUBLE'): - col.itemR(strip, "angle") - - elif strip.type == 'GLOW': - flow = layout.column_flow() - flow.itemR(strip, "threshold", slider=True) - flow.itemR(strip, "clamp", slider=True) - flow.itemR(strip, "boost_factor") - flow.itemR(strip, "blur_distance") - - row = layout.row() - row.itemR(strip, "quality", slider=True) - row.itemR(strip, "only_boost") - - elif strip.type == 'SPEED': - layout.itemR(strip, "global_speed") - - flow = layout.column_flow() - flow.itemR(strip, "curve_velocity") - flow.itemR(strip, "curve_compress_y") - flow.itemR(strip, "frame_blending") - - elif strip.type == 'TRANSFORM': - - col = layout.column() - col.itemR(strip, "interpolation") - col.itemR(strip, "translation_unit") - - col = layout.column(align=True) - col.itemL(text="Position X:") - col.itemR(strip, "translate_start_x", text="Start") - col.itemR(strip, "translate_end_x", text="End") - - col = layout.column(align=True) - col.itemL(text="Position Y:") - col.itemR(strip, "translate_start_y", text="Start") - col.itemR(strip, "translate_end_y", text="End") - - layout.itemS() - - col = layout.column(align=True) - col.itemL(text="Scale X:") - col.itemR(strip, "scale_start_x", text="Start") - col.itemR(strip, "scale_end_x", text="End") - - col = layout.column(align=True) - col.itemL(text="Scale Y:") - col.itemR(strip, "scale_start_y", text="Start") - col.itemR(strip, "scale_end_y", text="End") - - layout.itemS() - - col = layout.column(align=True) - col.itemL(text="Rotation:") - col.itemR(strip, "rotation_start", text="Start") - col.itemR(strip, "rotation_end", text="End") + strip = act_strip(context) + if not strip: + return False + + return strip.type in ('COLOR', 'WIPE', 'GLOW', 'SPEED', 'TRANSFORM') + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + if strip.type == 'COLOR': + layout.itemR(strip, "color") + + elif strip.type == 'WIPE': + + col = layout.column() + col.itemR(strip, "transition_type") + col.itemL(text="Direction:") + col.row().itemR(strip, "direction", expand=True) + + col = layout.column() + col.itemR(strip, "blur_width", slider=True) + if strip.transition_type in ('SINGLE', 'DOUBLE'): + col.itemR(strip, "angle") + + elif strip.type == 'GLOW': + flow = layout.column_flow() + flow.itemR(strip, "threshold", slider=True) + flow.itemR(strip, "clamp", slider=True) + flow.itemR(strip, "boost_factor") + flow.itemR(strip, "blur_distance") + + row = layout.row() + row.itemR(strip, "quality", slider=True) + row.itemR(strip, "only_boost") + + elif strip.type == 'SPEED': + layout.itemR(strip, "global_speed") + + flow = layout.column_flow() + flow.itemR(strip, "curve_velocity") + flow.itemR(strip, "curve_compress_y") + flow.itemR(strip, "frame_blending") + + elif strip.type == 'TRANSFORM': + + col = layout.column() + col.itemR(strip, "interpolation") + col.itemR(strip, "translation_unit") + + col = layout.column(align=True) + col.itemL(text="Position X:") + col.itemR(strip, "translate_start_x", text="Start") + col.itemR(strip, "translate_end_x", text="End") + + col = layout.column(align=True) + col.itemL(text="Position Y:") + col.itemR(strip, "translate_start_y", text="Start") + col.itemR(strip, "translate_end_y", text="End") + + layout.itemS() + + col = layout.column(align=True) + col.itemL(text="Scale X:") + col.itemR(strip, "scale_start_x", text="Start") + col.itemR(strip, "scale_end_x", text="End") + + col = layout.column(align=True) + col.itemL(text="Scale Y:") + col.itemR(strip, "scale_start_y", text="Start") + col.itemR(strip, "scale_end_y", text="End") + + layout.itemS() + + col = layout.column(align=True) + col.itemL(text="Rotation:") + col.itemR(strip, "rotation_start", text="Start") + col.itemR(strip, "rotation_end", text="End") class SEQUENCER_PT_input(SequencerButtonsPanel): - bl_label = "Strip Input" - - def poll(self, context): - if context.space_data.display_mode != 'SEQUENCER': - return False - - strip = act_strip(context) - if not strip: - return False - - return strip.type in ('MOVIE', 'IMAGE') - - def draw(self, context): - layout = self.layout - - strip = act_strip(context) - - split = layout.split(percentage=0.2) - col = split.column() - col.itemL(text="Path:") - col = split.column() - col.itemR(strip, "directory", text="") - - # Current element for the filename + bl_label = "Strip Input" - elem = strip.getStripElem(context.scene.current_frame) - if elem: - split = layout.split(percentage=0.2) - col = split.column() - col.itemL(text="File:") - col = split.column() - col.itemR(elem, "filename", text="") # strip.elements[0] could be a fallback - - layout.itemR(strip, "use_translation", text="Image Offset:") - if strip.transform: - col = layout.column(align=True) - col.active = strip.use_translation - col.itemR(strip.transform, "offset_x", text="X") - col.itemR(strip.transform, "offset_y", text="Y") - - layout.itemR(strip, "use_crop", text="Image Crop:") - if strip.crop: - col = layout.column(align=True) - col.active = strip.use_crop - col.itemR(strip.crop, "top") - col.itemR(strip.crop, "left") - col.itemR(strip.crop, "bottom") - col.itemR(strip.crop, "right") - - col = layout.column(align=True) - col.itemL(text="Trim Duration:") - col.itemR(strip, "animation_start_offset", text="Start") - col.itemR(strip, "animation_end_offset", text="End") + def poll(self, context): + if context.space_data.display_mode != 'SEQUENCER': + return False + + strip = act_strip(context) + if not strip: + return False + + return strip.type in ('MOVIE', 'IMAGE') + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + split = layout.split(percentage=0.2) + col = split.column() + col.itemL(text="Path:") + col = split.column() + col.itemR(strip, "directory", text="") + + # Current element for the filename + + elem = strip.getStripElem(context.scene.current_frame) + if elem: + split = layout.split(percentage=0.2) + col = split.column() + col.itemL(text="File:") + col = split.column() + col.itemR(elem, "filename", text="") # strip.elements[0] could be a fallback + + layout.itemR(strip, "use_translation", text="Image Offset:") + if strip.transform: + col = layout.column(align=True) + col.active = strip.use_translation + col.itemR(strip.transform, "offset_x", text="X") + col.itemR(strip.transform, "offset_y", text="Y") + + layout.itemR(strip, "use_crop", text="Image Crop:") + if strip.crop: + col = layout.column(align=True) + col.active = strip.use_crop + col.itemR(strip.crop, "top") + col.itemR(strip.crop, "left") + col.itemR(strip.crop, "bottom") + col.itemR(strip.crop, "right") + + col = layout.column(align=True) + col.itemL(text="Trim Duration:") + col.itemR(strip, "animation_start_offset", text="Start") + col.itemR(strip, "animation_end_offset", text="End") class SEQUENCER_PT_sound(SequencerButtonsPanel): - bl_label = "Sound" - - def poll(self, context): - if context.space_data.display_mode != 'SEQUENCER': - return False - - strip = act_strip(context) - if not strip: - return False - - return strip.type in ('SOUND', ) - - def draw(self, context): - layout = self.layout - - strip = act_strip(context) - - layout.template_ID(strip, "sound", new="sound.open") - - layout.itemS() - layout.itemR(strip.sound, "filename", text="") - - row = layout.row() - if strip.sound.packed_file: - row.itemO("sound.unpack", icon='ICON_PACKAGE', text="Unpack") - else: - row.itemO("sound.pack", icon='ICON_UGLYPACKAGE', text="Pack") - - row.itemR(strip.sound, "caching") + bl_label = "Sound" + + def poll(self, context): + if context.space_data.display_mode != 'SEQUENCER': + return False + + strip = act_strip(context) + if not strip: + return False + + return strip.type in ('SOUND', ) + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + layout.template_ID(strip, "sound", new="sound.open") + + layout.itemS() + layout.itemR(strip.sound, "filename", text="") + + row = layout.row() + if strip.sound.packed_file: + row.itemO("sound.unpack", icon='ICON_PACKAGE', text="Unpack") + else: + row.itemO("sound.pack", icon='ICON_UGLYPACKAGE', text="Pack") + + row.itemR(strip.sound, "caching") class SEQUENCER_PT_filter(SequencerButtonsPanel): - bl_label = "Filter" - - def poll(self, context): - if context.space_data.display_mode != 'SEQUENCER': - return False - - strip = act_strip(context) - if not strip: - return False - - return strip.type in ('MOVIE', 'IMAGE', 'SCENE', 'META') - - def draw(self, context): - layout = self.layout - - strip = act_strip(context) + bl_label = "Filter" - col = layout.column() - col.itemL(text="Video:") - col.itemR(strip, "strobe") - col.itemR(strip, "de_interlace") - - col = layout.column() - col.itemL(text="Colors:") - col.itemR(strip, "multiply_colors", text="Multiply") - col.itemR(strip, "premultiply") - col.itemR(strip, "convert_float") + def poll(self, context): + if context.space_data.display_mode != 'SEQUENCER': + return False - col = layout.column() - col.itemL(text="Flip:") - col.itemR(strip, "flip_x", text="X") - col.itemR(strip, "flip_y", text="Y") - col.itemR(strip, "reverse_frames", text="Backwards") - - layout.itemR(strip, "use_color_balance") - if strip.color_balance: # TODO - need to add this somehow - row = layout.row() - row.active = strip.use_color_balance - col = row.column() - col.itemR(strip.color_balance, "lift") - col.itemR(strip.color_balance, "inverse_lift", text="Inverse") - col = row.column() - col.itemR(strip.color_balance, "gamma") - col.itemR(strip.color_balance, "inverse_gamma", text="Inverse") - col = row.column() - col.itemR(strip.color_balance, "gain") - col.itemR(strip.color_balance, "inverse_gain", text="Inverse") + strip = act_strip(context) + if not strip: + return False + + return strip.type in ('MOVIE', 'IMAGE', 'SCENE', 'META') + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + col = layout.column() + col.itemL(text="Video:") + col.itemR(strip, "strobe") + col.itemR(strip, "de_interlace") + + col = layout.column() + col.itemL(text="Colors:") + col.itemR(strip, "multiply_colors", text="Multiply") + col.itemR(strip, "premultiply") + col.itemR(strip, "convert_float") + + col = layout.column() + col.itemL(text="Flip:") + col.itemR(strip, "flip_x", text="X") + col.itemR(strip, "flip_y", text="Y") + col.itemR(strip, "reverse_frames", text="Backwards") + + layout.itemR(strip, "use_color_balance") + if strip.color_balance: # TODO - need to add this somehow + row = layout.row() + row.active = strip.use_color_balance + col = row.column() + col.itemR(strip.color_balance, "lift") + col.itemR(strip.color_balance, "inverse_lift", text="Inverse") + col = row.column() + col.itemR(strip.color_balance, "gamma") + col.itemR(strip.color_balance, "inverse_gamma", text="Inverse") + col = row.column() + col.itemR(strip.color_balance, "gain") + col.itemR(strip.color_balance, "inverse_gain", text="Inverse") class SEQUENCER_PT_proxy(SequencerButtonsPanel): - bl_label = "Proxy" - - def poll(self, context): - if context.space_data.display_mode != 'SEQUENCER': - return False - - strip = act_strip(context) - if not strip: - return False - - return strip.type in ('MOVIE', 'IMAGE', 'SCENE', 'META') - - def draw_header(self, context): - strip = act_strip(context) - - self.layout.itemR(strip, "use_proxy", text="") + bl_label = "Proxy" - def draw(self, context): - layout = self.layout - - strip = act_strip(context) - - flow = layout.column_flow() - flow.itemR(strip, "proxy_custom_directory") - if strip.proxy: # TODO - need to add this somehow - flow.itemR(strip.proxy, "directory") - flow.itemR(strip.proxy, "file") + def poll(self, context): + if context.space_data.display_mode != 'SEQUENCER': + return False + + strip = act_strip(context) + if not strip: + return False + + return strip.type in ('MOVIE', 'IMAGE', 'SCENE', 'META') + + def draw_header(self, context): + strip = act_strip(context) + + self.layout.itemR(strip, "use_proxy", text="") + + def draw(self, context): + layout = self.layout + + strip = act_strip(context) + + flow = layout.column_flow() + flow.itemR(strip, "proxy_custom_directory") + if strip.proxy: # TODO - need to add this somehow + flow.itemR(strip.proxy, "directory") + flow.itemR(strip.proxy, "file") class SEQUENCER_PT_view(SequencerButtonsPanel_Output): - bl_label = "View Settings" + bl_label = "View Settings" - def draw(self, context): - layout = self.layout - - st = context.space_data + def draw(self, context): + layout = self.layout - col = layout.column() - col.itemR(st, "draw_overexposed") # text="Zebra" - col.itemR(st, "draw_safe_margin") + st = context.space_data + + col = layout.column() + col.itemR(st, "draw_overexposed") # text="Zebra" + col.itemR(st, "draw_safe_margin") bpy.types.register(SEQUENCER_HT_header) # header/menu classes bpy.types.register(SEQUENCER_MT_view) diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index 97052c68043..75bfd21bf88 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -2,265 +2,265 @@ import bpy class TEXT_HT_header(bpy.types.Header): - bl_space_type = 'TEXT_EDITOR' + bl_space_type = 'TEXT_EDITOR' - def draw(self, context): - layout = self.layout - - st = context.space_data - text = st.text + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() + st = context.space_data + text = st.text - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("TEXT_MT_text") - if text: - sub.itemM("TEXT_MT_edit") - sub.itemM("TEXT_MT_format") + row = layout.row(align=True) + row.template_header() - if text and text.modified: - row = layout.row() - # row.color(redalert) - row.itemO("text.resolve_conflict", text="", icon='ICON_HELP') + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("TEXT_MT_text") + if text: + sub.itemM("TEXT_MT_edit") + sub.itemM("TEXT_MT_format") - layout.template_ID(st, "text", new="text.new", unlink="text.unlink") + if text and text.modified: + row = layout.row() + # row.color(redalert) + row.itemO("text.resolve_conflict", text="", icon='ICON_HELP') - row = layout.row(align=True) - row.itemR(st, "line_numbers", text="") - row.itemR(st, "word_wrap", text="") - row.itemR(st, "syntax_highlight", text="") + layout.template_ID(st, "text", new="text.new", unlink="text.unlink") - if text: - row = layout.row() - if text.filename != "": - if text.dirty: - row.itemL(text="File: *%s (unsaved)" % text.filename) - else: - row.itemL(text="File: %s" % text.filename ) - else: - if text.library: - row.itemL(text="Text: External") - else: - row.itemL(text="Text: Internal") - - row = layout.row() - row.itemO("text.run_script") + row = layout.row(align=True) + row.itemR(st, "line_numbers", text="") + row.itemR(st, "word_wrap", text="") + row.itemR(st, "syntax_highlight", text="") + + if text: + row = layout.row() + if text.filename != "": + if text.dirty: + row.itemL(text="File: *%s (unsaved)" % text.filename) + else: + row.itemL(text="File: %s" % text.filename ) + else: + if text.library: + row.itemL(text="Text: External") + else: + row.itemL(text="Text: Internal") + + row = layout.row() + row.itemO("text.run_script") class TEXT_PT_properties(bpy.types.Panel): - bl_space_type = 'TEXT_EDITOR' - bl_region_type = 'UI' - bl_label = "Properties" + bl_space_type = 'TEXT_EDITOR' + bl_region_type = 'UI' + bl_label = "Properties" - def draw(self, context): - layout = self.layout - - st = context.space_data + def draw(self, context): + layout = self.layout - flow = layout.column_flow() - flow.itemR(st, "line_numbers") - flow.itemR(st, "word_wrap") - flow.itemR(st, "syntax_highlight") - flow.itemR(st, "live_edit") + st = context.space_data - flow = layout.column_flow() - flow.itemR(st, "font_size") - flow.itemR(st, "tab_width") + flow = layout.column_flow() + flow.itemR(st, "line_numbers") + flow.itemR(st, "word_wrap") + flow.itemR(st, "syntax_highlight") + flow.itemR(st, "live_edit") + + flow = layout.column_flow() + flow.itemR(st, "font_size") + flow.itemR(st, "tab_width") class TEXT_PT_find(bpy.types.Panel): - bl_space_type = 'TEXT_EDITOR' - bl_region_type = 'UI' - bl_label = "Find" + bl_space_type = 'TEXT_EDITOR' + bl_region_type = 'UI' + bl_label = "Find" - def draw(self, context): - layout = self.layout - - st = context.space_data + def draw(self, context): + layout = self.layout - # find - col = layout.column(align=True) - row = col.row() - row.itemR(st, "find_text", text="") - row.itemO("text.find_set_selected", text="", icon='ICON_TEXT') - col.itemO("text.find") + st = context.space_data - # replace - col = layout.column(align=True) - row = col.row() - row.itemR(st, "replace_text", text="") - row.itemO("text.replace_set_selected", text="", icon='ICON_TEXT') - col.itemO("text.replace") + # find + col = layout.column(align=True) + row = col.row() + row.itemR(st, "find_text", text="") + row.itemO("text.find_set_selected", text="", icon='ICON_TEXT') + col.itemO("text.find") - # mark - layout.itemO("text.mark_all") + # replace + col = layout.column(align=True) + row = col.row() + row.itemR(st, "replace_text", text="") + row.itemO("text.replace_set_selected", text="", icon='ICON_TEXT') + col.itemO("text.replace") - # settings - row = layout.row() - row.itemR(st, "find_wrap", text="Wrap") - row.itemR(st, "find_all", text="All") + # mark + layout.itemO("text.mark_all") + + # settings + row = layout.row() + row.itemR(st, "find_wrap", text="Wrap") + row.itemR(st, "find_all", text="All") class TEXT_MT_text(bpy.types.Menu): - bl_label = "Text" + bl_label = "Text" - def draw(self, context): - layout = self.layout - - st = context.space_data - text = st.text + def draw(self, context): + layout = self.layout - layout.column() - layout.itemO("text.new") - layout.itemO("text.open") + st = context.space_data + text = st.text - if text: - layout.itemO("text.reload") + layout.column() + layout.itemO("text.new") + layout.itemO("text.open") - layout.column() - layout.itemO("text.save") - layout.itemO("text.save_as") + if text: + layout.itemO("text.reload") - if text.filename != "": - layout.itemO("text.make_internal") + layout.column() + layout.itemO("text.save") + layout.itemO("text.save_as") - layout.column() - layout.itemO("text.run_script") + if text.filename != "": + layout.itemO("text.make_internal") - #ifndef DISABLE_PYTHON - # XXX if(BPY_is_pyconstraint(text)) - # XXX uiMenuItemO(head, 0, "text.refresh_pyconstraints"); - #endif + layout.column() + layout.itemO("text.run_script") - layout.itemS() + #ifndef DISABLE_PYTHON + # XXX if(BPY_is_pyconstraint(text)) + # XXX uiMenuItemO(head, 0, "text.refresh_pyconstraints"); + #endif + + layout.itemS() + + layout.itemO("text.properties", icon='ICON_MENU_PANEL') + + + + #ifndef DISABLE_PYTHON + # XXX layout.column() + # XXX uiDefIconTextBlockBut(block, text_template_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Script Templates", 0, yco-=20, 120, 19, ""); + # XXX uiDefIconTextBlockBut(block, text_plugin_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Text Plugins", 0, yco-=20, 120, 19, ""); + #endif + + layout.itemM("TEXT_MT_templates") - layout.itemO("text.properties", icon='ICON_MENU_PANEL') - - - - #ifndef DISABLE_PYTHON - # XXX layout.column() - # XXX uiDefIconTextBlockBut(block, text_template_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Script Templates", 0, yco-=20, 120, 19, ""); - # XXX uiDefIconTextBlockBut(block, text_plugin_scriptsmenu, NULL, ICON_RIGHTARROW_THIN, "Text Plugins", 0, yco-=20, 120, 19, ""); - #endif - - layout.itemM("TEXT_MT_templates") - class TEXT_MT_templates(bpy.types.Menu): - ''' - Creates the menu items by scanning scripts/templates - ''' - bl_label = "Script Templates" - - def draw(self, context): - import os - - def path_to_name(f): - f_base = os.path.splitext(f)[0] - f_base = f_base.replace("_", " ") - return ' '.join([w[0].upper() + w[1:] for w in f_base.split()]) - - layout = self.layout - template_dir = os.path.join(os.path.dirname(__file__), os.path.pardir, "templates") - - for f in sorted(os.listdir(template_dir)): - - if f.startswith("."): - continue - - path = os.path.join(template_dir, f) - layout.item_stringO("text.open", "path", path, text=path_to_name(f)) + ''' + Creates the menu items by scanning scripts/templates + ''' + bl_label = "Script Templates" + + def draw(self, context): + import os + + def path_to_name(f): + f_base = os.path.splitext(f)[0] + f_base = f_base.replace("_", " ") + return ' '.join([w[0].upper() + w[1:] for w in f_base.split()]) + + layout = self.layout + template_dir = os.path.join(os.path.dirname(__file__), os.path.pardir, "templates") + + for f in sorted(os.listdir(template_dir)): + + if f.startswith("."): + continue + + path = os.path.join(template_dir, f) + layout.item_stringO("text.open", "path", path, text=path_to_name(f)) class TEXT_MT_edit_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.item_enumO("text.move", "type", 'FILE_TOP', text="Top of File") - layout.item_enumO("text.move", "type", 'FILE_BOTTOM', text="Bottom of File") + layout.item_enumO("text.move", "type", 'FILE_TOP', text="Top of File") + layout.item_enumO("text.move", "type", 'FILE_BOTTOM', text="Bottom of File") class TEXT_MT_edit_select(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("text.select_all") - layout.itemO("text.select_line") + layout.itemO("text.select_all") + layout.itemO("text.select_line") class TEXT_MT_edit_markers(bpy.types.Menu): - bl_label = "Markers" + bl_label = "Markers" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("text.markers_clear") - layout.itemO("text.next_marker") - layout.itemO("text.previous_marker") + layout.itemO("text.markers_clear") + layout.itemO("text.next_marker") + layout.itemO("text.previous_marker") class TEXT_MT_format(bpy.types.Menu): - bl_label = "Format" + bl_label = "Format" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("text.indent") - layout.itemO("text.unindent") + layout.itemO("text.indent") + layout.itemO("text.unindent") - layout.itemS() + layout.itemS() - layout.itemO("text.comment") - layout.itemO("text.uncomment") + layout.itemO("text.comment") + layout.itemO("text.uncomment") - layout.itemS() + layout.itemS() - layout.item_menu_enumO("text.convert_whitespace", "type") + layout.item_menu_enumO("text.convert_whitespace", "type") class TEXT_MT_edit_to3d(bpy.types.Menu): - bl_label = "Text To 3D Object" + bl_label = "Text To 3D Object" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.item_booleanO("text.to_3d_object", "split_lines", False, text="One Object"); - layout.item_booleanO("text.to_3d_object", "split_lines", True, text="One Object Per Line"); + layout.item_booleanO("text.to_3d_object", "split_lines", False, text="One Object"); + layout.item_booleanO("text.to_3d_object", "split_lines", True, text="One Object Per Line"); class TEXT_MT_edit(bpy.types.Menu): - bl_label = "Edit" + bl_label = "Edit" - def poll(self, context): - return (context.space_data.text) + def poll(self, context): + return (context.space_data.text) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("ed.undo") - layout.itemO("ed.redo") + layout.itemO("ed.undo") + layout.itemO("ed.redo") - layout.itemS() + layout.itemS() - layout.itemO("text.cut") - layout.itemO("text.copy") - layout.itemO("text.paste") + layout.itemO("text.cut") + layout.itemO("text.copy") + layout.itemO("text.paste") - layout.itemS() + layout.itemS() - layout.itemM("TEXT_MT_edit_view") - layout.itemM("TEXT_MT_edit_select") - layout.itemM("TEXT_MT_edit_markers") + layout.itemM("TEXT_MT_edit_view") + layout.itemM("TEXT_MT_edit_select") + layout.itemM("TEXT_MT_edit_markers") - layout.itemS() + layout.itemS() - layout.itemO("text.jump") - layout.itemO("text.properties", text="Find...") + layout.itemO("text.jump") + layout.itemO("text.properties", text="Find...") - layout.itemS() + layout.itemS() - layout.itemM("TEXT_MT_edit_to3d") + layout.itemM("TEXT_MT_edit_to3d") bpy.types.register(TEXT_HT_header) bpy.types.register(TEXT_PT_properties) diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index 1e385be06dd..1322d774ebe 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -2,143 +2,143 @@ import bpy class TIME_HT_header(bpy.types.Header): - bl_space_type = 'TIMELINE' + bl_space_type = 'TIMELINE' - def draw(self, context): - layout = self.layout - - st = context.space_data - scene = context.scene - tools = context.tool_settings - screen = context.screen + def draw(self, context): + layout = self.layout - row = layout.row(align=True) - row.template_header() + st = context.space_data + scene = context.scene + tools = context.tool_settings + screen = context.screen - if context.area.show_menus: - sub = row.row(align=True) - sub.itemM("TIME_MT_view") - sub.itemM("TIME_MT_frame") - sub.itemM("TIME_MT_playback") + row = layout.row(align=True) + row.template_header() - layout.itemR(scene, "use_preview_range", text="PR") - - row = layout.row(align=True) - if not scene.use_preview_range: - row.itemR(scene, "start_frame", text="Start") - row.itemR(scene, "end_frame", text="End") - else: - row.itemR(scene, "preview_range_start_frame", text="Start") - row.itemR(scene, "preview_range_end_frame", text="End") - - layout.itemR(scene, "current_frame", text="") - - layout.itemS() + if context.area.show_menus: + sub = row.row(align=True) + sub.itemM("TIME_MT_view") + sub.itemM("TIME_MT_frame") + sub.itemM("TIME_MT_playback") - row = layout.row(align=True) - row.item_booleanO("screen.frame_jump", "end", False, text="", icon='ICON_REW') - row.item_booleanO("screen.keyframe_jump", "next", False, text="", icon='ICON_PREV_KEYFRAME') - if not screen.animation_playing: - row.item_booleanO("screen.animation_play", "reverse", True, text="", icon='ICON_PLAY_REVERSE') - row.itemO("screen.animation_play", text="", icon='ICON_PLAY') - else: - sub = row.row() - sub.scale_x = 2.0 - sub.itemO("screen.animation_play", text="", icon='ICON_PAUSE') - row.item_booleanO("screen.keyframe_jump", "next", True, text="", icon='ICON_NEXT_KEYFRAME') - row.item_booleanO("screen.frame_jump", "end", True, text="", icon='ICON_FF') - - row = layout.row(align=True) - row.itemR(tools, "enable_auto_key", text="", toggle=True, icon='ICON_REC') - if screen.animation_playing and tools.enable_auto_key: - subsub = row.row() - subsub.itemR(tools, "record_with_nla", toggle=True) - - layout.itemR(scene, "sync_audio", text="", toggle=True, icon='ICON_SPEAKER') - - layout.itemS() - - row = layout.row(align=True) - row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") - row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') - row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') + layout.itemR(scene, "use_preview_range", text="PR") + + row = layout.row(align=True) + if not scene.use_preview_range: + row.itemR(scene, "start_frame", text="Start") + row.itemR(scene, "end_frame", text="End") + else: + row.itemR(scene, "preview_range_start_frame", text="Start") + row.itemR(scene, "preview_range_end_frame", text="End") + + layout.itemR(scene, "current_frame", text="") + + layout.itemS() + + row = layout.row(align=True) + row.item_booleanO("screen.frame_jump", "end", False, text="", icon='ICON_REW') + row.item_booleanO("screen.keyframe_jump", "next", False, text="", icon='ICON_PREV_KEYFRAME') + if not screen.animation_playing: + row.item_booleanO("screen.animation_play", "reverse", True, text="", icon='ICON_PLAY_REVERSE') + row.itemO("screen.animation_play", text="", icon='ICON_PLAY') + else: + sub = row.row() + sub.scale_x = 2.0 + sub.itemO("screen.animation_play", text="", icon='ICON_PAUSE') + row.item_booleanO("screen.keyframe_jump", "next", True, text="", icon='ICON_NEXT_KEYFRAME') + row.item_booleanO("screen.frame_jump", "end", True, text="", icon='ICON_FF') + + row = layout.row(align=True) + row.itemR(tools, "enable_auto_key", text="", toggle=True, icon='ICON_REC') + if screen.animation_playing and tools.enable_auto_key: + subsub = row.row() + subsub.itemR(tools, "record_with_nla", toggle=True) + + layout.itemR(scene, "sync_audio", text="", toggle=True, icon='ICON_SPEAKER') + + layout.itemS() + + row = layout.row(align=True) + row.item_pointerR(scene, "active_keying_set", scene, "keying_sets", text="") + row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') + row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') class TIME_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout - - st = context.space_data - - layout.itemO("anim.time_toggle") - - layout.itemS() - - layout.itemR(st, "only_selected") + def draw(self, context): + layout = self.layout + + st = context.space_data + + layout.itemO("anim.time_toggle") + + layout.itemS() + + layout.itemR(st, "only_selected") class TIME_MT_frame(bpy.types.Menu): - bl_label = "Frame" + bl_label = "Frame" - def draw(self, context): - layout = self.layout - tools = context.tool_settings - - layout.itemO("marker.add", text="Add Marker") - layout.itemO("marker.duplicate", text="Duplicate Marker") - layout.itemO("marker.move", text="Grab/Move Marker") - layout.itemO("marker.delete", text="Delete Marker") - layout.itemL(text="ToDo: Name Marker") - - layout.itemS() - - layout.itemO("time.start_frame_set") - layout.itemO("time.end_frame_set") - - layout.itemS() - - sub = layout.row() - #sub.active = tools.enable_auto_key - sub.itemM("TIME_MT_autokey") + def draw(self, context): + layout = self.layout + tools = context.tool_settings + + layout.itemO("marker.add", text="Add Marker") + layout.itemO("marker.duplicate", text="Duplicate Marker") + layout.itemO("marker.move", text="Grab/Move Marker") + layout.itemO("marker.delete", text="Delete Marker") + layout.itemL(text="ToDo: Name Marker") + + layout.itemS() + + layout.itemO("time.start_frame_set") + layout.itemO("time.end_frame_set") + + layout.itemS() + + sub = layout.row() + #sub.active = tools.enable_auto_key + sub.itemM("TIME_MT_autokey") class TIME_MT_playback(bpy.types.Menu): - bl_label = "Playback" + bl_label = "Playback" - def draw(self, context): - layout = self.layout - - st = context.space_data - scene = context.scene - - layout.itemR(st, "play_top_left") - layout.itemR(st, "play_all_3d") - layout.itemR(st, "play_anim") - layout.itemR(st, "play_buttons") - layout.itemR(st, "play_image") - layout.itemR(st, "play_sequencer") - layout.itemR(st, "play_nodes") - - layout.itemS() - - layout.itemR(st, "continue_physics") - - layout.itemS() - - layout.itemR(scene, "sync_audio", icon='ICON_SPEAKER') - layout.itemR(scene, "mute_audio") - layout.itemR(scene, "scrub_audio") + def draw(self, context): + layout = self.layout + + st = context.space_data + scene = context.scene + + layout.itemR(st, "play_top_left") + layout.itemR(st, "play_all_3d") + layout.itemR(st, "play_anim") + layout.itemR(st, "play_buttons") + layout.itemR(st, "play_image") + layout.itemR(st, "play_sequencer") + layout.itemR(st, "play_nodes") + + layout.itemS() + + layout.itemR(st, "continue_physics") + + layout.itemS() + + layout.itemR(scene, "sync_audio", icon='ICON_SPEAKER') + layout.itemR(scene, "mute_audio") + layout.itemR(scene, "scrub_audio") class TIME_MT_autokey(bpy.types.Menu): - bl_label = "Auto-Keyframing Mode" + bl_label = "Auto-Keyframing Mode" - def draw(self, context): - layout = self.layout - tools = context.tool_settings - - layout.active = tools.enable_auto_key - - layout.item_enumR(tools, "autokey_mode", 'ADD_REPLACE_KEYS') - layout.item_enumR(tools, "autokey_mode", 'REPLACE_KEYS') + def draw(self, context): + layout = self.layout + tools = context.tool_settings + + layout.active = tools.enable_auto_key + + layout.item_enumR(tools, "autokey_mode", 'ADD_REPLACE_KEYS') + layout.item_enumR(tools, "autokey_mode", 'REPLACE_KEYS') bpy.types.register(TIME_HT_header) bpy.types.register(TIME_MT_view) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index ef85a608d17..2c129e50463 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -1,556 +1,556 @@ - + import bpy class USERPREF_HT_header(bpy.types.Header): - bl_space_type = 'USER_PREFERENCES' + bl_space_type = 'USER_PREFERENCES' - def draw(self, context): - layout = self.layout - layout.template_header(menus=False) - - userpref = context.user_preferences - - layout.operator_context = "EXEC_AREA" - layout.itemO("wm.save_homefile", text="Save As Default") + def draw(self, context): + layout = self.layout + layout.template_header(menus=False) + + userpref = context.user_preferences + + layout.operator_context = "EXEC_AREA" + layout.itemO("wm.save_homefile", text="Save As Default") + + if userpref.active_section == 'INPUT': + layout.operator_context = "INVOKE_DEFAULT" + layout.itemO("wm.keyconfig_export", "Export Key Configuration...") - if userpref.active_section == 'INPUT': - layout.operator_context = "INVOKE_DEFAULT" - layout.itemO("wm.keyconfig_export", "Export Key Configuration...") - class USERPREF_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout class USERPREF_PT_tabs(bpy.types.Panel): - bl_label = "" - bl_space_type = 'USER_PREFERENCES' - bl_region_type = 'WINDOW' - bl_show_header = False + bl_label = "" + bl_space_type = 'USER_PREFERENCES' + bl_region_type = 'WINDOW' + bl_show_header = False - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences + def draw(self, context): + layout = self.layout - layout.itemR(userpref, "active_section", expand=True) + userpref = context.user_preferences + + layout.itemR(userpref, "active_section", expand=True) class USERPREF_PT_interface(bpy.types.Panel): - bl_space_type = 'USER_PREFERENCES' - bl_label = "Interface" - bl_region_type = 'WINDOW' - bl_show_header = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Interface" + bl_region_type = 'WINDOW' + bl_show_header = False - def poll(self, context): - userpref = context.user_preferences - return (userpref.active_section == 'INTERFACE') + def poll(self, context): + userpref = context.user_preferences + return (userpref.active_section == 'INTERFACE') - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences - view = userpref.view + def draw(self, context): + layout = self.layout - split = layout.split() - - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="Display:") - sub1.itemR(view, "tooltips") - sub1.itemR(view, "display_object_info", text="Object Info") - sub1.itemR(view, "use_large_cursors") - sub1.itemR(view, "show_view_name", text="View Name") - sub1.itemR(view, "show_playback_fps", text="Playback FPS") - sub1.itemR(view, "global_scene") - sub1.itemR(view, "pin_floating_panels") - sub1.itemR(view, "object_center_size") - sub1.itemS() - sub1.itemS() - sub1.itemS() - sub1.itemR(view, "show_mini_axis", text="Display Mini Axis") - sub2 = sub1.column() - sub2.enabled = view.show_mini_axis - sub2.itemR(view, "mini_axis_size", text="Size") - sub2.itemR(view, "mini_axis_brightness", text="Brightness") - - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="View Manipulation:") - sub1.itemR(view, "auto_depth") - sub1.itemR(view, "global_pivot") - sub1.itemR(view, "zoom_to_mouse") - sub1.itemR(view, "rotate_around_selection") - sub1.itemS() - - - sub1.itemR(view, "auto_perspective") - sub1.itemR(view, "smooth_view") - sub1.itemR(view, "rotation_angle") + userpref = context.user_preferences + view = userpref.view + + split = layout.split() + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="Display:") + sub1.itemR(view, "tooltips") + sub1.itemR(view, "display_object_info", text="Object Info") + sub1.itemR(view, "use_large_cursors") + sub1.itemR(view, "show_view_name", text="View Name") + sub1.itemR(view, "show_playback_fps", text="Playback FPS") + sub1.itemR(view, "global_scene") + sub1.itemR(view, "pin_floating_panels") + sub1.itemR(view, "object_center_size") + sub1.itemS() + sub1.itemS() + sub1.itemS() + sub1.itemR(view, "show_mini_axis", text="Display Mini Axis") + sub2 = sub1.column() + sub2.enabled = view.show_mini_axis + sub2.itemR(view, "mini_axis_size", text="Size") + sub2.itemR(view, "mini_axis_brightness", text="Brightness") + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="View Manipulation:") + sub1.itemR(view, "auto_depth") + sub1.itemR(view, "global_pivot") + sub1.itemR(view, "zoom_to_mouse") + sub1.itemR(view, "rotate_around_selection") + sub1.itemS() + + + sub1.itemR(view, "auto_perspective") + sub1.itemR(view, "smooth_view") + sub1.itemR(view, "rotation_angle") + + col = split.column() + sub = col.split(percentage=0.85) + sub1 = sub.column() - col = split.column() - sub = col.split(percentage=0.85) - sub1 = sub.column() - #Toolbox doesn't exist yet # sub1.itemL(text="Toolbox:") # sub1.itemR(view, "use_column_layout") # sub1.itemL(text="Open Toolbox Delay:") # sub1.itemR(view, "open_left_mouse_delay", text="Hold LMB") # sub1.itemR(view, "open_right_mouse_delay", text="Hold RMB") - - #manipulator - sub1.itemR(view, "use_manipulator") - sub2 = sub1.column() - sub2.enabled = view.use_manipulator - sub2.itemR(view, "manipulator_size", text="Size") - sub2.itemR(view, "manipulator_handle_size", text="Handle Size") - sub2.itemR(view, "manipulator_hotspot", text="Hotspot") - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Menus:") - sub1.itemR(view, "open_mouse_over") - sub1.itemL(text="Menu Open Delay:") - sub1.itemR(view, "open_toplevel_delay", text="Top Level") - sub1.itemR(view, "open_sublevel_delay", text="Sub Level") + + #manipulator + sub1.itemR(view, "use_manipulator") + sub2 = sub1.column() + sub2.enabled = view.use_manipulator + sub2.itemR(view, "manipulator_size", text="Size") + sub2.itemR(view, "manipulator_handle_size", text="Handle Size") + sub2.itemR(view, "manipulator_hotspot", text="Hotspot") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Menus:") + sub1.itemR(view, "open_mouse_over") + sub1.itemL(text="Menu Open Delay:") + sub1.itemR(view, "open_toplevel_delay", text="Top Level") + sub1.itemR(view, "open_sublevel_delay", text="Sub Level") class USERPREF_PT_edit(bpy.types.Panel): - bl_space_type = 'USER_PREFERENCES' - bl_label = "Edit" - bl_region_type = 'WINDOW' - bl_show_header = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Edit" + bl_region_type = 'WINDOW' + bl_show_header = False - def poll(self, context): - userpref = context.user_preferences - return (userpref.active_section == 'EDITING') + def poll(self, context): + userpref = context.user_preferences + return (userpref.active_section == 'EDITING') - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences - edit = userpref.edit - - split = layout.split() - - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="Link Materials To:") - sub1.row().itemR(edit, "material_link", expand=True) - sub1.itemS() - sub1.itemS() - sub1.itemS() - sub1.itemL(text="New Objects:") - sub1.itemR(edit, "enter_edit_mode") - sub1.itemL(text="Align To:") - sub1.row().itemR(edit, "object_align", expand=True) - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Undo:") - sub1.itemR(edit, "global_undo") - sub1.itemR(edit, "undo_steps", text="Steps") - sub1.itemR(edit, "undo_memory_limit", text="Memory Limit") - - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="Snap:") - sub1.itemR(edit, "snap_translate", text="Translate") - sub1.itemR(edit, "snap_rotate", text="Rotate") - sub1.itemR(edit, "snap_scale", text="Scale") - sub1.itemS() - sub1.itemS() - sub1.itemS() - sub1.itemL(text="Grease Pencil:") - sub1.itemR(edit, "grease_pencil_manhattan_distance", text="Manhattan Distance") - sub1.itemR(edit, "grease_pencil_euclidean_distance", text="Euclidean Distance") - # sub1.itemR(edit, "grease_pencil_simplify_stroke", text="Simplify Stroke") - sub1.itemR(edit, "grease_pencil_eraser_radius", text="Eraser Radius") - sub1.itemR(edit, "grease_pencil_smooth_stroke", text="Smooth Stroke") - - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="Keyframing:") - sub1.itemR(edit, "use_visual_keying") - sub1.itemR(edit, "keyframe_insert_needed", text="Only Insert Needed") - sub1.itemS() - sub1.itemL(text="New F-Curve Defaults:") - sub1.itemR(edit, "new_interpolation_type", text="Interpolation") - sub1.itemS() - sub1.itemR(edit, "auto_keying_enable", text="Auto Keyframing:") - sub2 = sub1.column() - sub2.active = edit.auto_keying_enable - sub2.itemR(edit, "auto_keyframe_insert_keyingset", text="Only Insert for Keying Set") - sub2.itemR(edit, "auto_keyframe_insert_available", text="Only Insert Available") - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Transform:") - sub1.itemR(edit, "drag_immediately") - - sub1.itemS() - sub1.itemS() - sub1.itemS() + def draw(self, context): + layout = self.layout + + userpref = context.user_preferences + edit = userpref.edit + + split = layout.split() + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="Link Materials To:") + sub1.row().itemR(edit, "material_link", expand=True) + sub1.itemS() + sub1.itemS() + sub1.itemS() + sub1.itemL(text="New Objects:") + sub1.itemR(edit, "enter_edit_mode") + sub1.itemL(text="Align To:") + sub1.row().itemR(edit, "object_align", expand=True) + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Undo:") + sub1.itemR(edit, "global_undo") + sub1.itemR(edit, "undo_steps", text="Steps") + sub1.itemR(edit, "undo_memory_limit", text="Memory Limit") + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="Snap:") + sub1.itemR(edit, "snap_translate", text="Translate") + sub1.itemR(edit, "snap_rotate", text="Rotate") + sub1.itemR(edit, "snap_scale", text="Scale") + sub1.itemS() + sub1.itemS() + sub1.itemS() + sub1.itemL(text="Grease Pencil:") + sub1.itemR(edit, "grease_pencil_manhattan_distance", text="Manhattan Distance") + sub1.itemR(edit, "grease_pencil_euclidean_distance", text="Euclidean Distance") + # sub1.itemR(edit, "grease_pencil_simplify_stroke", text="Simplify Stroke") + sub1.itemR(edit, "grease_pencil_eraser_radius", text="Eraser Radius") + sub1.itemR(edit, "grease_pencil_smooth_stroke", text="Smooth Stroke") + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="Keyframing:") + sub1.itemR(edit, "use_visual_keying") + sub1.itemR(edit, "keyframe_insert_needed", text="Only Insert Needed") + sub1.itemS() + sub1.itemL(text="New F-Curve Defaults:") + sub1.itemR(edit, "new_interpolation_type", text="Interpolation") + sub1.itemS() + sub1.itemR(edit, "auto_keying_enable", text="Auto Keyframing:") + sub2 = sub1.column() + sub2.active = edit.auto_keying_enable + sub2.itemR(edit, "auto_keyframe_insert_keyingset", text="Only Insert for Keying Set") + sub2.itemR(edit, "auto_keyframe_insert_available", text="Only Insert Available") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Transform:") + sub1.itemR(edit, "drag_immediately") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + col = split.column() + sub = col.split(percentage=0.85) + + sub1 = sub.column() + sub1.itemL(text="Duplicate Data:") + sub1.itemR(edit, "duplicate_mesh", text="Mesh") + sub1.itemR(edit, "duplicate_surface", text="Surface") + sub1.itemR(edit, "duplicate_curve", text="Curve") + sub1.itemR(edit, "duplicate_text", text="Text") + sub1.itemR(edit, "duplicate_metaball", text="Metaball") + sub1.itemR(edit, "duplicate_armature", text="Armature") + sub1.itemR(edit, "duplicate_lamp", text="Lamp") + sub1.itemR(edit, "duplicate_material", text="Material") + sub1.itemR(edit, "duplicate_texture", text="Texture") + sub1.itemR(edit, "duplicate_ipo", text="F-Curve") + sub1.itemR(edit, "duplicate_action", text="Action") + sub1.itemR(edit, "duplicate_particle", text="Particle") - col = split.column() - sub = col.split(percentage=0.85) - - sub1 = sub.column() - sub1.itemL(text="Duplicate Data:") - sub1.itemR(edit, "duplicate_mesh", text="Mesh") - sub1.itemR(edit, "duplicate_surface", text="Surface") - sub1.itemR(edit, "duplicate_curve", text="Curve") - sub1.itemR(edit, "duplicate_text", text="Text") - sub1.itemR(edit, "duplicate_metaball", text="Metaball") - sub1.itemR(edit, "duplicate_armature", text="Armature") - sub1.itemR(edit, "duplicate_lamp", text="Lamp") - sub1.itemR(edit, "duplicate_material", text="Material") - sub1.itemR(edit, "duplicate_texture", text="Texture") - sub1.itemR(edit, "duplicate_ipo", text="F-Curve") - sub1.itemR(edit, "duplicate_action", text="Action") - sub1.itemR(edit, "duplicate_particle", text="Particle") - class USERPREF_PT_system(bpy.types.Panel): - bl_space_type = 'USER_PREFERENCES' - bl_label = "System" - bl_region_type = 'WINDOW' - bl_show_header = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "System" + bl_region_type = 'WINDOW' + bl_show_header = False - def poll(self, context): - userpref = context.user_preferences - return (userpref.active_section == 'SYSTEM') + def poll(self, context): + userpref = context.user_preferences + return (userpref.active_section == 'SYSTEM') - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences - system = userpref.system - - split = layout.split() - - col = split.column() - sub = col.split(percentage=0.9) - - sub1 = sub.column() - sub1.itemL(text="General:") - sub1.itemR(system, "dpi") - sub1.itemR(system, "frame_server_port") - sub1.itemR(system, "scrollback", text="Console Scrollback") - sub1.itemR(system, "emulate_numpad") - sub1.itemR(system, "auto_run_python_scripts") - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Sound:") - sub1.row().itemR(system, "audio_device", expand=True) - sub2 = sub1.column() - sub2.active = system.audio_device != 'NONE' - sub2.itemR(system, "enable_all_codecs") - sub2.itemR(system, "game_sound") - sub2.itemR(system, "audio_channels", text="Channels") - sub2.itemR(system, "audio_mixing_buffer", text="Mixing Buffer") - sub2.itemR(system, "audio_sample_rate", text="Sample Rate") - sub2.itemR(system, "audio_sample_format", text="Sample Format") - - col = split.column() - sub = col.split(percentage=0.9) - - sub1 = sub .column() - sub1.itemL(text="Weight Colors:") - sub1.itemR(system, "use_weight_color_range", text="Use Custom Range") - sub2 = sub1.column() - sub2.active = system.use_weight_color_range - sub2.template_color_ramp(system, "weight_color_range", expand=True) - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemR(system, "language") - sub1.itemL(text="Translate:") - sub1.itemR(system, "translate_tooltips", text="Tooltips") - sub1.itemR(system, "translate_buttons", text="Labels") - sub1.itemR(system, "translate_toolbox", text="Toolbox") - - sub1.itemS() - - sub1.itemR(system, "use_textured_fonts") - - col = split.column() - sub = col.split(percentage=0.9) - - sub1 = sub.column() + def draw(self, context): + layout = self.layout + + userpref = context.user_preferences + system = userpref.system + + split = layout.split() + + col = split.column() + sub = col.split(percentage=0.9) + + sub1 = sub.column() + sub1.itemL(text="General:") + sub1.itemR(system, "dpi") + sub1.itemR(system, "frame_server_port") + sub1.itemR(system, "scrollback", text="Console Scrollback") + sub1.itemR(system, "emulate_numpad") + sub1.itemR(system, "auto_run_python_scripts") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Sound:") + sub1.row().itemR(system, "audio_device", expand=True) + sub2 = sub1.column() + sub2.active = system.audio_device != 'NONE' + sub2.itemR(system, "enable_all_codecs") + sub2.itemR(system, "game_sound") + sub2.itemR(system, "audio_channels", text="Channels") + sub2.itemR(system, "audio_mixing_buffer", text="Mixing Buffer") + sub2.itemR(system, "audio_sample_rate", text="Sample Rate") + sub2.itemR(system, "audio_sample_format", text="Sample Format") + + col = split.column() + sub = col.split(percentage=0.9) + + sub1 = sub .column() + sub1.itemL(text="Weight Colors:") + sub1.itemR(system, "use_weight_color_range", text="Use Custom Range") + sub2 = sub1.column() + sub2.active = system.use_weight_color_range + sub2.template_color_ramp(system, "weight_color_range", expand=True) + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemR(system, "language") + sub1.itemL(text="Translate:") + sub1.itemR(system, "translate_tooltips", text="Tooltips") + sub1.itemR(system, "translate_buttons", text="Labels") + sub1.itemR(system, "translate_toolbox", text="Toolbox") + + sub1.itemS() + + sub1.itemR(system, "use_textured_fonts") + + col = split.column() + sub = col.split(percentage=0.9) + + sub1 = sub.column() + + sub1.itemL(text="OpenGL:") + sub1.itemR(system, "clip_alpha", slider=True) + sub1.itemR(system, "use_mipmaps") + sub1.itemR(system, "use_vbos") + sub1.itemL(text="Window Draw Method:") + sub1.row().itemR(system, "window_draw_method", expand=True) + sub1.itemL(text="Textures:") + sub1.itemR(system, "gl_texture_limit", text="Limit Size") + sub1.itemR(system, "texture_time_out", text="Time Out") + sub1.itemR(system, "texture_collection_rate", text="Collection Rate") + + sub1.itemS() + sub1.itemS() + sub1.itemS() + + sub1.itemL(text="Sequencer:") + sub1.itemR(system, "prefetch_frames") + sub1.itemR(system, "memory_cache_limit") - sub1.itemL(text="OpenGL:") - sub1.itemR(system, "clip_alpha", slider=True) - sub1.itemR(system, "use_mipmaps") - sub1.itemR(system, "use_vbos") - sub1.itemL(text="Window Draw Method:") - sub1.row().itemR(system, "window_draw_method", expand=True) - sub1.itemL(text="Textures:") - sub1.itemR(system, "gl_texture_limit", text="Limit Size") - sub1.itemR(system, "texture_time_out", text="Time Out") - sub1.itemR(system, "texture_collection_rate", text="Collection Rate") - - sub1.itemS() - sub1.itemS() - sub1.itemS() - - sub1.itemL(text="Sequencer:") - sub1.itemR(system, "prefetch_frames") - sub1.itemR(system, "memory_cache_limit") - class USERPREF_PT_file(bpy.types.Panel): - bl_space_type = 'USER_PREFERENCES' - bl_label = "Files" - bl_region_type = 'WINDOW' - bl_show_header = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Files" + bl_region_type = 'WINDOW' + bl_show_header = False - def poll(self, context): - userpref = context.user_preferences - return (userpref.active_section == 'FILES') + def poll(self, context): + userpref = context.user_preferences + return (userpref.active_section == 'FILES') - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences - paths = userpref.filepaths - - split = layout.split(percentage=0.6) - - col = split.column() - col.itemL(text="File Paths:") - sub = col.split(percentage=0.3) - - sub.itemL(text="Fonts:") - sub.itemR(paths, "fonts_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Textures:") - sub.itemR(paths, "textures_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Texture Plugins:") - sub.itemR(paths, "texture_plugin_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Sequence Plugins:") - sub.itemR(paths, "sequence_plugin_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Render Output:") - sub.itemR(paths, "render_output_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Scripts:") - sub.itemR(paths, "python_scripts_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Sounds:") - sub.itemR(paths, "sounds_directory", text="") - sub = col.split(percentage=0.3) - sub.itemL(text="Temp:") - sub.itemR(paths, "temporary_directory", text="") - - col = split.column() - sub = col.split(percentage=0.2) - sub1 = sub.column() - sub2 = sub.column() - sub2.itemL(text="Save & Load:") - sub2.itemR(paths, "use_relative_paths") - sub2.itemR(paths, "compress_file") - sub2.itemR(paths, "load_ui") - sub2.itemR(paths, "filter_file_extensions") - sub2.itemR(paths, "hide_dot_files_datablocks") - sub2.itemS() - sub2.itemS() - sub2.itemL(text="Auto Save:") - sub2.itemR(paths, "save_version") - sub2.itemR(paths, "recent_files") - sub2.itemR(paths, "save_preview_images") - sub2.itemR(paths, "auto_save_temporary_files") - sub3 = sub2.column() - sub3.enabled = paths.auto_save_temporary_files - sub3.itemR(paths, "auto_save_time", text="Timer (mins)") + def draw(self, context): + layout = self.layout + + userpref = context.user_preferences + paths = userpref.filepaths + + split = layout.split(percentage=0.6) + + col = split.column() + col.itemL(text="File Paths:") + sub = col.split(percentage=0.3) + + sub.itemL(text="Fonts:") + sub.itemR(paths, "fonts_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Textures:") + sub.itemR(paths, "textures_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Texture Plugins:") + sub.itemR(paths, "texture_plugin_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Sequence Plugins:") + sub.itemR(paths, "sequence_plugin_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Render Output:") + sub.itemR(paths, "render_output_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Scripts:") + sub.itemR(paths, "python_scripts_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Sounds:") + sub.itemR(paths, "sounds_directory", text="") + sub = col.split(percentage=0.3) + sub.itemL(text="Temp:") + sub.itemR(paths, "temporary_directory", text="") + + col = split.column() + sub = col.split(percentage=0.2) + sub1 = sub.column() + sub2 = sub.column() + sub2.itemL(text="Save & Load:") + sub2.itemR(paths, "use_relative_paths") + sub2.itemR(paths, "compress_file") + sub2.itemR(paths, "load_ui") + sub2.itemR(paths, "filter_file_extensions") + sub2.itemR(paths, "hide_dot_files_datablocks") + sub2.itemS() + sub2.itemS() + sub2.itemL(text="Auto Save:") + sub2.itemR(paths, "save_version") + sub2.itemR(paths, "recent_files") + sub2.itemR(paths, "save_preview_images") + sub2.itemR(paths, "auto_save_temporary_files") + sub3 = sub2.column() + sub3.enabled = paths.auto_save_temporary_files + sub3.itemR(paths, "auto_save_time", text="Timer (mins)") class USERPREF_PT_input(bpy.types.Panel): - bl_space_type = 'USER_PREFERENCES' - bl_label = "Input" - bl_region_type = 'WINDOW' - bl_show_header = False + bl_space_type = 'USER_PREFERENCES' + bl_label = "Input" + bl_region_type = 'WINDOW' + bl_show_header = False - def poll(self, context): - userpref = context.user_preferences - return (userpref.active_section == 'INPUT') + def poll(self, context): + userpref = context.user_preferences + return (userpref.active_section == 'INPUT') - def draw(self, context): - layout = self.layout - - userpref = context.user_preferences - wm = context.manager - #input = userpref.input - input = userpref - inputs = userpref.inputs + def draw(self, context): + layout = self.layout - split = layout.split(percentage=0.25) + userpref = context.user_preferences + wm = context.manager + #input = userpref.input + input = userpref + inputs = userpref.inputs - # General settings - row = split.row() - col = row.column() + split = layout.split(percentage=0.25) - sub = col.column() - sub.itemL(text="Configuration:") - sub.item_pointerR(wm, "active_keyconfig", wm, "keyconfigs", text="") + # General settings + row = split.row() + col = row.column() - col.itemS() + sub = col.column() + sub.itemL(text="Configuration:") + sub.item_pointerR(wm, "active_keyconfig", wm, "keyconfigs", text="") - sub = col.column() - sub.itemL(text="Mouse:") - sub1 = sub.column() - sub1.enabled = (inputs.select_mouse == 'RIGHT') - sub1.itemR(inputs, "emulate_3_button_mouse") - sub.itemR(inputs, "continuous_mouse") + col.itemS() - sub.itemL(text="Select With:") - sub.row().itemR(inputs, "select_mouse", expand=True) - sub.itemL(text="Middle Mouse:") - sub.row().itemR(inputs, "middle_mouse", expand=True) - - sub.itemS() - sub.itemS() - sub.itemS() - - sub.itemL(text="Orbit Style:") - sub.row().itemR(inputs, "view_rotation", expand=True) - - sub.itemL(text="Zoom Style:") - sub.row().itemR(inputs, "viewport_zoom_style", expand=True) - - #sub.itemR(inputs, "use_middle_mouse_paste") + sub = col.column() + sub.itemL(text="Mouse:") + sub1 = sub.column() + sub1.enabled = (inputs.select_mouse == 'RIGHT') + sub1.itemR(inputs, "emulate_3_button_mouse") + sub.itemR(inputs, "continuous_mouse") - #col.itemS() + sub.itemL(text="Select With:") + sub.row().itemR(inputs, "select_mouse", expand=True) + sub.itemL(text="Middle Mouse:") + sub.row().itemR(inputs, "middle_mouse", expand=True) - #sub = col.column() - #sub.itemL(text="Mouse Wheel:") - #sub.itemR(view, "wheel_invert_zoom", text="Invert Zoom") - #sub.itemR(view, "wheel_scroll_lines", text="Scroll Lines") + sub.itemS() + sub.itemS() + sub.itemS() - col.itemS() + sub.itemL(text="Orbit Style:") + sub.row().itemR(inputs, "view_rotation", expand=True) - sub = col.column() - sub.itemL(text="NDOF Device:") - sub.itemR(inputs, "ndof_pan_speed", text="Pan Speed") - sub.itemR(inputs, "ndof_rotate_speed", text="Orbit Speed") + sub.itemL(text="Zoom Style:") + sub.row().itemR(inputs, "viewport_zoom_style", expand=True) - row.itemS() + #sub.itemR(inputs, "use_middle_mouse_paste") - # Keymap Settings - col = split.column() + #col.itemS() - kc = wm.active_keyconfig - defkc = wm.default_keyconfig - km = wm.active_keymap + #sub = col.column() + #sub.itemL(text="Mouse Wheel:") + #sub.itemR(view, "wheel_invert_zoom", text="Invert Zoom") + #sub.itemR(view, "wheel_scroll_lines", text="Scroll Lines") - subsplit = col.split() - subsplit.item_pointerR(wm, "active_keymap", defkc, "keymaps", text="Map:") - if km.user_defined: - row = subsplit.row() - row.itemO("WM_OT_keymap_restore", text="Restore") - row.item_booleanO("WM_OT_keymap_restore", "all", True, text="Restore All") - else: - row = subsplit.row() - row.itemO("WM_OT_keymap_edit", text="Edit") - row.itemL() + col.itemS() - col.itemS() - - for kmi in km.items: - subcol = col.column() - subcol.set_context_pointer("keyitem", kmi) + sub = col.column() + sub.itemL(text="NDOF Device:") + sub.itemR(inputs, "ndof_pan_speed", text="Pan Speed") + sub.itemR(inputs, "ndof_rotate_speed", text="Orbit Speed") - row = subcol.row() + row.itemS() - if kmi.expanded: - row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") - else: - row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") + # Keymap Settings + col = split.column() - itemrow = row.row() - itemrow.enabled = km.user_defined - itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") + kc = wm.active_keyconfig + defkc = wm.default_keyconfig + km = wm.active_keymap - itemcol = itemrow.column() - itemcol.active = kmi.active - row = itemcol.row() - row.itemR(kmi, "idname", text="") + subsplit = col.split() + subsplit.item_pointerR(wm, "active_keymap", defkc, "keymaps", text="Map:") + if km.user_defined: + row = subsplit.row() + row.itemO("WM_OT_keymap_restore", text="Restore") + row.item_booleanO("WM_OT_keymap_restore", "all", True, text="Restore All") + else: + row = subsplit.row() + row.itemO("WM_OT_keymap_edit", text="Edit") + row.itemL() - sub = row.row() - sub.scale_x = 0.6 - sub.itemR(kmi, "map_type", text="") + col.itemS() - sub = row.row(align=True) - if kmi.map_type == 'KEYBOARD': - sub.itemR(kmi, "type", text="", full_event=True) - elif kmi.map_type == 'MOUSE': - sub.itemR(kmi, "type", text="", full_event=True) - elif kmi.map_type == 'TWEAK': - sub.scale_x = 0.5 - sub.itemR(kmi, "type", text="") - sub.itemR(kmi, "value", text="") - elif kmi.map_type == 'TIMER': - sub.itemR(kmi, "type", text="") - else: - sub.itemL() + for kmi in km.items: + subcol = col.column() + subcol.set_context_pointer("keyitem", kmi) - if kmi.expanded: - if kmi.map_type not in ('TEXTINPUT', 'TIMER'): - sub = itemcol.row(align=True) + row = subcol.row() - if kmi.map_type == 'KEYBOARD': - sub.itemR(kmi, "type", text="", event=True) - sub.itemR(kmi, "value", text="") - elif kmi.map_type == 'MOUSE': - sub.itemR(kmi, "type", text="") - sub.itemR(kmi, "value", text="") - else: - sub.itemL() - sub.itemL() + if kmi.expanded: + row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") + else: + row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") - subrow = sub.row() - subrow.scale_x = 0.75 - subrow.itemR(kmi, "shift") - subrow.itemR(kmi, "ctrl") - subrow.itemR(kmi, "alt") - subrow.itemR(kmi, "oskey", text="Cmd") - sub.itemR(kmi, "key_modifier", text="", event=True) + itemrow = row.row() + itemrow.enabled = km.user_defined + itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") - flow = itemcol.column_flow(columns=2) - props = kmi.properties + itemcol = itemrow.column() + itemcol.active = kmi.active + row = itemcol.row() + row.itemR(kmi, "idname", text="") - if props != None: - for pname in dir(props): - if not props.is_property_hidden(pname): - flow.itemR(props, pname) + sub = row.row() + sub.scale_x = 0.6 + sub.itemR(kmi, "map_type", text="") - itemcol.itemS() + sub = row.row(align=True) + if kmi.map_type == 'KEYBOARD': + sub.itemR(kmi, "type", text="", full_event=True) + elif kmi.map_type == 'MOUSE': + sub.itemR(kmi, "type", text="", full_event=True) + elif kmi.map_type == 'TWEAK': + sub.scale_x = 0.5 + sub.itemR(kmi, "type", text="") + sub.itemR(kmi, "value", text="") + elif kmi.map_type == 'TIMER': + sub.itemR(kmi, "type", text="") + else: + sub.itemL() - itemrow.itemO("wm.keyitem_remove", text="", icon="ICON_ZOOMOUT") + if kmi.expanded: + if kmi.map_type not in ('TEXTINPUT', 'TIMER'): + sub = itemcol.row(align=True) - itemrow = col.row() - itemrow.itemL() - itemrow.itemO("wm.keyitem_add", text="", icon="ICON_ZOOMIN") - itemrow.enabled = km.user_defined + if kmi.map_type == 'KEYBOARD': + sub.itemR(kmi, "type", text="", event=True) + sub.itemR(kmi, "value", text="") + elif kmi.map_type == 'MOUSE': + sub.itemR(kmi, "type", text="") + sub.itemR(kmi, "value", text="") + else: + sub.itemL() + sub.itemL() + + subrow = sub.row() + subrow.scale_x = 0.75 + subrow.itemR(kmi, "shift") + subrow.itemR(kmi, "ctrl") + subrow.itemR(kmi, "alt") + subrow.itemR(kmi, "oskey", text="Cmd") + sub.itemR(kmi, "key_modifier", text="", event=True) + + flow = itemcol.column_flow(columns=2) + props = kmi.properties + + if props != None: + for pname in dir(props): + if not props.is_property_hidden(pname): + flow.itemR(props, pname) + + itemcol.itemS() + + itemrow.itemO("wm.keyitem_remove", text="", icon="ICON_ZOOMOUT") + + itemrow = col.row() + itemrow.itemL() + itemrow.itemO("wm.keyitem_add", text="", icon="ICON_ZOOMIN") + itemrow.enabled = km.user_defined bpy.types.register(USERPREF_HT_header) bpy.types.register(USERPREF_MT_view) @@ -565,145 +565,145 @@ from bpy.props import * class WM_OT_keyconfig_export(bpy.types.Operator): - "Export key configuration to a python script." - bl_idname = "wm.keyconfig_export" - bl_label = "Export Key Configuration..." - - path = bpy.props.StringProperty(name="File Path", description="File path to write file to.") + "Export key configuration to a python script." + bl_idname = "wm.keyconfig_export" + bl_label = "Export Key Configuration..." - def _string_value(self, value): - result = "" - if isinstance(value, str): - if value != "": - result = "\'%s\'" % value - elif isinstance(value, bool): - if value: - result = "True" - else: - result = "False" - elif isinstance(value, float): - result = "%.10f" % value - elif isinstance(value, int): - result = "%d" % value - elif getattr(value, '__len__', False): - if len(value): - result = "[" - for i in range(0, len(value)): - result += self._string_value(value[i]) - if i != len(value)-1: - result += ", " - result += "]" - else: - print("Export key configuration: can't write ", value) + path = bpy.props.StringProperty(name="File Path", description="File path to write file to.") - return result + def _string_value(self, value): + result = "" + if isinstance(value, str): + if value != "": + result = "\'%s\'" % value + elif isinstance(value, bool): + if value: + result = "True" + else: + result = "False" + elif isinstance(value, float): + result = "%.10f" % value + elif isinstance(value, int): + result = "%d" % value + elif getattr(value, '__len__', False): + if len(value): + result = "[" + for i in range(0, len(value)): + result += self._string_value(value[i]) + if i != len(value)-1: + result += ", " + result += "]" + else: + print("Export key configuration: can't write ", value) - def execute(self, context): - if not self.path: - raise Exception("File path not set.") + return result - f = open(self.path, "w") - if not f: - raise Exception("Could not open file.") + def execute(self, context): + if not self.path: + raise Exception("File path not set.") - wm = context.manager - kc = wm.active_keyconfig + f = open(self.path, "w") + if not f: + raise Exception("Could not open file.") - f.write('# Configuration %s\n' % kc.name) + wm = context.manager + kc = wm.active_keyconfig - f.write("wm = bpy.data.windowmanagers[0]\n"); - f.write("kc = wm.add_keyconfig(\'%s\')\n\n" % kc.name) + f.write('# Configuration %s\n' % kc.name) - for km in kc.keymaps: - f.write("# Map %s\n" % km.name) - f.write("km = kc.add_keymap(\'%s\', space_type=\'%s\', region_type=\'%s\')\n\n" % (km.name, km.space_type, km.region_type)) - for kmi in km.items: - f.write("kmi = km.add_item(\'%s\', \'%s\', \'%s\'" % (kmi.idname, kmi.type, kmi.value)) - if kmi.shift: - f.write(", shift=True") - if kmi.ctrl: - f.write(", ctrl=True") - if kmi.alt: - f.write(", alt=True") - if kmi.oskey: - f.write(", oskey=True") - if kmi.key_modifier and kmi.key_modifier != 'NONE': - f.write(", key_modifier=\'%s\'" % kmi.key_modifier) - f.write(")\n") + f.write("wm = bpy.data.windowmanagers[0]\n"); + f.write("kc = wm.add_keyconfig(\'%s\')\n\n" % kc.name) - props = kmi.properties + for km in kc.keymaps: + f.write("# Map %s\n" % km.name) + f.write("km = kc.add_keymap(\'%s\', space_type=\'%s\', region_type=\'%s\')\n\n" % (km.name, km.space_type, km.region_type)) + for kmi in km.items: + f.write("kmi = km.add_item(\'%s\', \'%s\', \'%s\'" % (kmi.idname, kmi.type, kmi.value)) + if kmi.shift: + f.write(", shift=True") + if kmi.ctrl: + f.write(", ctrl=True") + if kmi.alt: + f.write(", alt=True") + if kmi.oskey: + f.write(", oskey=True") + if kmi.key_modifier and kmi.key_modifier != 'NONE': + f.write(", key_modifier=\'%s\'" % kmi.key_modifier) + f.write(")\n") - if props != None: - for pname in dir(props): - if props.is_property_set(pname) and not props.is_property_hidden(pname): - value = eval("props.%s" % pname) - value = self._string_value(value) - if value != "": - f.write("kmi.properties.%s = %s\n" % (pname, value)) + props = kmi.properties - f.write("\n") + if props != None: + for pname in dir(props): + if props.is_property_set(pname) and not props.is_property_hidden(pname): + value = eval("props.%s" % pname) + value = self._string_value(value) + if value != "": + f.write("kmi.properties.%s = %s\n" % (pname, value)) - f.close() + f.write("\n") - return ('FINISHED',) + f.close() - def invoke(self, context, event): - wm = context.manager - wm.add_fileselect(self.__operator__) - return ('RUNNING_MODAL',) + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.add_fileselect(self.__operator__) + return ('RUNNING_MODAL',) class WM_OT_keymap_edit(bpy.types.Operator): - "Edit key map." - bl_idname = "wm.keymap_edit" - bl_label = "Edit Key Map" + "Edit key map." + bl_idname = "wm.keymap_edit" + bl_label = "Edit Key Map" - def execute(self, context): - wm = context.manager - km = wm.active_keymap - km.copy_to_user() - return ('FINISHED',) + def execute(self, context): + wm = context.manager + km = wm.active_keymap + km.copy_to_user() + return ('FINISHED',) class WM_OT_keymap_restore(bpy.types.Operator): - "Restore key map" - bl_idname = "wm.keymap_restore" - bl_label = "Restore Key Map" - - all = BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.") + "Restore key map" + bl_idname = "wm.keymap_restore" + bl_label = "Restore Key Map" - def execute(self, context): - wm = context.manager + all = BoolProperty(attr="all", name="All Keymaps", description="Restore all keymaps to default.") - if self.all: - for km in wm.default_keyconfig.keymaps: - km.restore_to_default() - else: - km = wm.active_keymap - km.restore_to_default() + def execute(self, context): + wm = context.manager + + if self.all: + for km in wm.default_keyconfig.keymaps: + km.restore_to_default() + else: + km = wm.active_keymap + km.restore_to_default() + + return ('FINISHED',) - return ('FINISHED',) - class WM_OT_keyitem_add(bpy.types.Operator): - "Add key map item." - bl_idname = "wm.keyitem_add" - bl_label = "Add Key Map Item" + "Add key map item." + bl_idname = "wm.keyitem_add" + bl_label = "Add Key Map Item" + + def execute(self, context): + wm = context.manager + km = wm.active_keymap + kmi = km.add_item("", "A", "PRESS") + return ('FINISHED',) - def execute(self, context): - wm = context.manager - km = wm.active_keymap - kmi = km.add_item("", "A", "PRESS") - return ('FINISHED',) - class WM_OT_keyitem_remove(bpy.types.Operator): - "Remove key map item." - bl_idname = "wm.keyitem_remove" - bl_label = "Remove Key Map Item" + "Remove key map item." + bl_idname = "wm.keyitem_remove" + bl_label = "Remove Key Map Item" - def execute(self, context): - wm = context.manager - kmi = context.keyitem - km = wm.active_keymap - km.remove_item(kmi) - return ('FINISHED',) + def execute(self, context): + wm = context.manager + kmi = context.keyitem + km = wm.active_keymap + km.remove_item(kmi) + return ('FINISHED',) bpy.ops.add(WM_OT_keyconfig_export) bpy.ops.add(WM_OT_keymap_edit) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index d0f60c98a1c..5eefc1b5950 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -6,1272 +6,1272 @@ import dynamic_menu # ********** Header ********** class VIEW3D_HT_header(bpy.types.Header): - bl_space_type = 'VIEW_3D' + bl_space_type = 'VIEW_3D' - def draw(self, context): - layout = self.layout - - view = context.space_data - mode_string = context.mode - edit_object = context.edit_object - object = context.active_object - - row = layout.row(align=True) - row.template_header() + def draw(self, context): + layout = self.layout - # Menus - if context.area.show_menus: - sub = row.row(align=True) + view = context.space_data + mode_string = context.mode + edit_object = context.edit_object + object = context.active_object - sub.itemM("VIEW3D_MT_view") - - # Select Menu - if mode_string not in ('EDIT_TEXT', 'SCULPT', 'PAINT_WEIGHT', 'PAINT_VERTEX', 'PAINT_TEXTURE'): - sub.itemM("VIEW3D_MT_select_%s" % mode_string.lower()) - - if edit_object: - sub.itemM("VIEW3D_MT_edit_%s" % edit_object.type.lower()) - elif object: - ob_mode_string = object.mode - - if mode_string not in ['PAINT_WEIGHT', 'PAINT_TEXTURE']: - sub.itemM("VIEW3D_MT_%s" % mode_string.lower()) - else: - sub.itemM("VIEW3D_MT_object") + row = layout.row(align=True) + row.template_header() - layout.template_header_3D() + # Menus + if context.area.show_menus: + sub = row.row(align=True) + + sub.itemM("VIEW3D_MT_view") + + # Select Menu + if mode_string not in ('EDIT_TEXT', 'SCULPT', 'PAINT_WEIGHT', 'PAINT_VERTEX', 'PAINT_TEXTURE'): + sub.itemM("VIEW3D_MT_select_%s" % mode_string.lower()) + + if edit_object: + sub.itemM("VIEW3D_MT_edit_%s" % edit_object.type.lower()) + elif object: + ob_mode_string = object.mode + + if mode_string not in ['PAINT_WEIGHT', 'PAINT_TEXTURE']: + sub.itemM("VIEW3D_MT_%s" % mode_string.lower()) + else: + sub.itemM("VIEW3D_MT_object") + + layout.template_header_3D() # ********** Menu ********** # ********** Utilities ********** class VIEW3D_MT_showhide(bpy.types.Menu): - bl_label = "Show/Hide" - _operator_name = "" + bl_label = "Show/Hide" + _operator_name = "" - def draw(self, context): - layout = self.layout - - layout.itemO("%s.reveal" % self._operator_name, text="Show Hidden") - layout.itemO("%s.hide" % self._operator_name, text="Hide Selected") - layout.item_booleanO("%s.hide" % self._operator_name, "unselected", True, text="Hide Unselected") + def draw(self, context): + layout = self.layout + + layout.itemO("%s.reveal" % self._operator_name, text="Show Hidden") + layout.itemO("%s.hide" % self._operator_name, text="Hide Selected") + layout.item_booleanO("%s.hide" % self._operator_name, "unselected", True, text="Hide Unselected") class VIEW3D_MT_snap(bpy.types.Menu): - bl_label = "Snap" + bl_label = "Snap" - def draw(self, context): - layout = self.layout - - layout.itemO("view3d.snap_selected_to_grid", text="Selection to Grid") - layout.itemO("view3d.snap_selected_to_cursor", text="Selection to Cursor") - layout.itemO("view3d.snap_selected_to_center", text="Selection to Center") - - layout.itemS() - - layout.itemO("view3d.snap_cursor_to_selected", text="Cursor to Selected") - layout.itemO("view3d.snap_cursor_to_grid", text="Cursor to Grid") - layout.itemO("view3d.snap_cursor_to_active", text="Cursor to Active") + def draw(self, context): + layout = self.layout + + layout.itemO("view3d.snap_selected_to_grid", text="Selection to Grid") + layout.itemO("view3d.snap_selected_to_cursor", text="Selection to Cursor") + layout.itemO("view3d.snap_selected_to_center", text="Selection to Center") + + layout.itemS() + + layout.itemO("view3d.snap_cursor_to_selected", text="Cursor to Selected") + layout.itemO("view3d.snap_cursor_to_grid", text="Cursor to Grid") + layout.itemO("view3d.snap_cursor_to_active", text="Cursor to Active") # ********** View menus ********** class VIEW3D_MT_view(bpy.types.Menu): - bl_label = "View" + bl_label = "View" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.properties", icon='ICON_MENU_PANEL') - layout.itemO("view3d.toolbar", icon='ICON_MENU_PANEL') - - layout.itemS() - - layout.item_enumO("view3d.viewnumpad", "type", 'CAMERA') - layout.item_enumO("view3d.viewnumpad", "type", 'TOP') - layout.item_enumO("view3d.viewnumpad", "type", 'FRONT') - layout.item_enumO("view3d.viewnumpad", "type", 'RIGHT') - - layout.itemM("VIEW3D_MT_view_cameras", text="Cameras") - - layout.itemS() - - layout.itemO("view3d.view_persportho") - - layout.itemS() - - layout.itemM("VIEW3D_MT_view_navigation") - layout.itemM("VIEW3D_MT_view_align") - - layout.itemS() + layout.itemO("view3d.properties", icon='ICON_MENU_PANEL') + layout.itemO("view3d.toolbar", icon='ICON_MENU_PANEL') - layout.operator_context = "INVOKE_REGION_WIN" - - layout.itemO("view3d.clip_border", text="Clipping Border...") - layout.itemO("view3d.zoom_border", text="Zoom Border...") - - layout.itemS() + layout.itemS() - layout.item_intO("view3d.layers", "nr", 0, text="Show All Layers") + layout.item_enumO("view3d.viewnumpad", "type", 'CAMERA') + layout.item_enumO("view3d.viewnumpad", "type", 'TOP') + layout.item_enumO("view3d.viewnumpad", "type", 'FRONT') + layout.item_enumO("view3d.viewnumpad", "type", 'RIGHT') - layout.itemS() - - layout.itemO("view3d.localview", text="View Global/Local") - layout.itemO("view3d.view_center") - layout.itemO("view3d.view_all") - - layout.itemS() - - layout.itemO("screen.region_foursplit", text="Toggle Quad View") - layout.itemO("screen.screen_full_area", text="Toggle Full Screen") - - layout.itemS() - - layout.itemO("screen.animation_play", text="Playback Animation", icon='ICON_PLAY') + layout.itemM("VIEW3D_MT_view_cameras", text="Cameras") + + layout.itemS() + + layout.itemO("view3d.view_persportho") + + layout.itemS() + + layout.itemM("VIEW3D_MT_view_navigation") + layout.itemM("VIEW3D_MT_view_align") + + layout.itemS() + + layout.operator_context = "INVOKE_REGION_WIN" + + layout.itemO("view3d.clip_border", text="Clipping Border...") + layout.itemO("view3d.zoom_border", text="Zoom Border...") + + layout.itemS() + + layout.item_intO("view3d.layers", "nr", 0, text="Show All Layers") + + layout.itemS() + + layout.itemO("view3d.localview", text="View Global/Local") + layout.itemO("view3d.view_center") + layout.itemO("view3d.view_all") + + layout.itemS() + + layout.itemO("screen.region_foursplit", text="Toggle Quad View") + layout.itemO("screen.screen_full_area", text="Toggle Full Screen") + + layout.itemS() + + layout.itemO("screen.animation_play", text="Playback Animation", icon='ICON_PLAY') class VIEW3D_MT_view_navigation(bpy.types.Menu): - bl_label = "Navigation" + bl_label = "Navigation" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.items_enumO("view3d.view_orbit", "type") - - layout.itemS() - - layout.items_enumO("view3d.view_pan", "type") - - layout.itemS() - - layout.item_floatO("view3d.zoom", "delta", 1.0, text="Zoom In") - layout.item_floatO("view3d.zoom", "delta", -1.0, text="Zoom Out") - - layout.itemS() - - layout.itemO("view3d.fly") + layout.items_enumO("view3d.view_orbit", "type") + + layout.itemS() + + layout.items_enumO("view3d.view_pan", "type") + + layout.itemS() + + layout.item_floatO("view3d.zoom", "delta", 1.0, text="Zoom In") + layout.item_floatO("view3d.zoom", "delta", -1.0, text="Zoom Out") + + layout.itemS() + + layout.itemO("view3d.fly") class VIEW3D_MT_view_align(bpy.types.Menu): - bl_label = "Align View" + bl_label = "Align View" + + def draw(self, context): + layout = self.layout + + layout.item_booleanO("view3d.view_all", "center", True, text="Center Cursor and View All") + layout.itemO("view3d.camera_to_view", text="Align Active Camera to View") + layout.itemO("view3d.view_center") - def draw(self, context): - layout = self.layout - - layout.item_booleanO("view3d.view_all", "center", True, text="Center Cursor and View All") - layout.itemO("view3d.camera_to_view", text="Align Active Camera to View") - layout.itemO("view3d.view_center") - class VIEW3D_MT_view_cameras(bpy.types.Menu): - bl_label = "Cameras" + bl_label = "Cameras" - def draw(self, context): - layout = self.layout - - layout.itemO("view3d.object_as_camera") - layout.item_enumO("view3d.viewnumpad", "type", 'CAMERA', text="Active Camera") + def draw(self, context): + layout = self.layout + + layout.itemO("view3d.object_as_camera") + layout.item_enumO("view3d.viewnumpad", "type", 'CAMERA', text="Active Camera") # ********** Select menus, suffix from context.mode ********** class VIEW3D_MT_select_object(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border") + layout.itemO("view3d.select_border") - layout.itemS() + layout.itemS() - layout.itemO("object.select_all_toggle", text="Select/Deselect All") - layout.itemO("object.select_inverse", text="Inverse") - layout.itemO("object.select_random", text="Random") - layout.itemO("object.select_mirror", text="Mirror") - layout.itemO("object.select_by_layer", text="Select All by Layer") - layout.item_menu_enumO("object.select_by_type", "type", "", text="Select All by Type...") - layout.item_menu_enumO("object.select_grouped", "type", text="Select Grouped...") - layout.itemO("object.select_pattern", text="Select Pattern...") + layout.itemO("object.select_all_toggle", text="Select/Deselect All") + layout.itemO("object.select_inverse", text="Inverse") + layout.itemO("object.select_random", text="Random") + layout.itemO("object.select_mirror", text="Mirror") + layout.itemO("object.select_by_layer", text="Select All by Layer") + layout.item_menu_enumO("object.select_by_type", "type", "", text="Select All by Type...") + layout.item_menu_enumO("object.select_grouped", "type", text="Select Grouped...") + layout.itemO("object.select_pattern", text="Select Pattern...") class VIEW3D_MT_select_pose(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border", text="Border Select...") - layout.itemS() - - layout.itemO("pose.select_all_toggle", text="Select/Deselect All") - layout.itemO("pose.select_inverse", text="Inverse") - layout.itemO("pose.select_constraint_target", text="Constraint Target") - layout.itemO("pose.select_linked", text="Linked") - - layout.itemS() - - layout.item_enumO("pose.select_hierarchy", "direction", 'PARENT') - layout.item_enumO("pose.select_hierarchy", "direction", 'CHILD') - - layout.itemS() - - props = layout.itemO("pose.select_hierarchy", properties=True, text="Extend Parent") - props.extend = True - props.direction = 'PARENT' + layout.itemS() - props = layout.itemO("pose.select_hierarchy", properties=True, text="Extend Child") - props.extend = True - props.direction = 'CHILD' + layout.itemO("pose.select_all_toggle", text="Select/Deselect All") + layout.itemO("pose.select_inverse", text="Inverse") + layout.itemO("pose.select_constraint_target", text="Constraint Target") + layout.itemO("pose.select_linked", text="Linked") + + layout.itemS() + + layout.item_enumO("pose.select_hierarchy", "direction", 'PARENT') + layout.item_enumO("pose.select_hierarchy", "direction", 'CHILD') + + layout.itemS() + + props = layout.itemO("pose.select_hierarchy", properties=True, text="Extend Parent") + props.extend = True + props.direction = 'PARENT' + + props = layout.itemO("pose.select_hierarchy", properties=True, text="Extend Child") + props.extend = True + props.direction = 'CHILD' class VIEW3D_MT_select_particle(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border") + layout.itemO("view3d.select_border") - layout.itemS() - - layout.itemO("particle.select_all_toggle", text="Select/Deselect All") - layout.itemO("particle.select_linked") - - layout.itemS() - - layout.itemO("particle.select_more") - layout.itemO("particle.select_less") + layout.itemS() + + layout.itemO("particle.select_all_toggle", text="Select/Deselect All") + layout.itemO("particle.select_linked") + + layout.itemS() + + layout.itemO("particle.select_more") + layout.itemO("particle.select_less") class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border", text="Border Select...") - layout.itemS() + layout.itemS() - layout.itemO("mesh.select_all_toggle", text="Select/Deselect All") - layout.itemO("mesh.select_inverse", text="Inverse") + layout.itemO("mesh.select_all_toggle", text="Select/Deselect All") + layout.itemO("mesh.select_inverse", text="Inverse") - layout.itemS() + layout.itemS() - layout.itemO("mesh.select_random", text="Random...") - layout.itemO("mesh.edges_select_sharp", text="Sharp Edges") - layout.itemO("mesh.faces_select_linked_flat", text="Linked Flat Faces") + layout.itemO("mesh.select_random", text="Random...") + layout.itemO("mesh.edges_select_sharp", text="Sharp Edges") + layout.itemO("mesh.faces_select_linked_flat", text="Linked Flat Faces") - layout.itemS() + layout.itemS() - layout.item_enumO("mesh.select_by_number_vertices", "type", 'TRIANGLES', text="Triangles") - layout.item_enumO("mesh.select_by_number_vertices", "type", 'QUADS', text="Quads") - layout.item_enumO("mesh.select_by_number_vertices", "type", 'OTHER', text="Loose Verts/Edges") - layout.itemO("mesh.select_similar", text="Similar...") + layout.item_enumO("mesh.select_by_number_vertices", "type", 'TRIANGLES', text="Triangles") + layout.item_enumO("mesh.select_by_number_vertices", "type", 'QUADS', text="Quads") + layout.item_enumO("mesh.select_by_number_vertices", "type", 'OTHER', text="Loose Verts/Edges") + layout.itemO("mesh.select_similar", text="Similar...") - layout.itemS() + layout.itemS() - layout.itemO("mesh.select_less", text="Less") - layout.itemO("mesh.select_more", text="More") + layout.itemO("mesh.select_less", text="Less") + layout.itemO("mesh.select_more", text="More") - layout.itemS() - - layout.itemO("mesh.select_mirror", text="Mirror") + layout.itemS() - layout.itemO("mesh.select_linked", text="Linked") - layout.itemO("mesh.select_vertex_path", text="Vertex Path") - layout.itemO("mesh.loop_multi_select", text="Edge Loop") - layout.item_booleanO("mesh.loop_multi_select", "ring", True, text="Edge Ring") + layout.itemO("mesh.select_mirror", text="Mirror") - layout.itemS() + layout.itemO("mesh.select_linked", text="Linked") + layout.itemO("mesh.select_vertex_path", text="Vertex Path") + layout.itemO("mesh.loop_multi_select", text="Edge Loop") + layout.item_booleanO("mesh.loop_multi_select", "ring", True, text="Edge Ring") - layout.itemO("mesh.loop_to_region") - layout.itemO("mesh.region_to_loop") + layout.itemS() + + layout.itemO("mesh.loop_to_region") + layout.itemO("mesh.region_to_loop") class VIEW3D_MT_select_edit_curve(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") - layout.itemO("view3d.select_circle", text="Circle Select...") + layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_circle", text="Circle Select...") - layout.itemS() - - layout.itemO("curve.select_all_toggle", text="Select/Deselect All") - layout.itemO("curve.select_inverse") - layout.itemO("curve.select_random") - layout.itemO("curve.select_every_nth") + layout.itemS() - layout.itemS() - - layout.itemO("curve.de_select_first") - layout.itemO("curve.de_select_last") - layout.itemO("curve.select_next") - layout.itemO("curve.select_previous") + layout.itemO("curve.select_all_toggle", text="Select/Deselect All") + layout.itemO("curve.select_inverse") + layout.itemO("curve.select_random") + layout.itemO("curve.select_every_nth") - layout.itemS() - - layout.itemO("curve.select_more") - layout.itemO("curve.select_less") + layout.itemS() + + layout.itemO("curve.de_select_first") + layout.itemO("curve.de_select_last") + layout.itemO("curve.select_next") + layout.itemO("curve.select_previous") + + layout.itemS() + + layout.itemO("curve.select_more") + layout.itemO("curve.select_less") class VIEW3D_MT_select_edit_surface(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") - layout.itemO("view3d.select_circle", text="Circle Select...") + layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_circle", text="Circle Select...") - layout.itemS() - - layout.itemO("curve.select_all_toggle", text="Select/Deselect All") - layout.itemO("curve.select_inverse") - layout.itemO("curve.select_random") - layout.itemO("curve.select_every_nth") + layout.itemS() - layout.itemS() - - layout.itemO("curve.select_row") + layout.itemO("curve.select_all_toggle", text="Select/Deselect All") + layout.itemO("curve.select_inverse") + layout.itemO("curve.select_random") + layout.itemO("curve.select_every_nth") - layout.itemS() - - layout.itemO("curve.select_more") - layout.itemO("curve.select_less") + layout.itemS() + + layout.itemO("curve.select_row") + + layout.itemS() + + layout.itemO("curve.select_more") + layout.itemO("curve.select_less") class VIEW3D_MT_select_edit_metaball(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border") - - layout.itemS() - - layout.itemO("mball.select_deselect_all_metaelems") - layout.itemO("mball.select_inverse_metaelems") - - layout.itemS() - - layout.itemO("mball.select_random_metaelems") + layout.itemO("view3d.select_border") + + layout.itemS() + + layout.itemO("mball.select_deselect_all_metaelems") + layout.itemO("mball.select_inverse_metaelems") + + layout.itemS() + + layout.itemO("mball.select_random_metaelems") class VIEW3D_MT_select_edit_lattice(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border") + layout.itemO("view3d.select_border") - layout.itemS() - - layout.itemO("lattice.select_all_toggle", text="Select/Deselect All") + layout.itemS() + + layout.itemO("lattice.select_all_toggle", text="Select/Deselect All") class VIEW3D_MT_select_edit_armature(bpy.types.Menu): - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border", text="Border Select...") - layout.itemS() - - layout.itemO("armature.select_all_toggle", text="Select/Deselect All") - layout.itemO("armature.select_inverse", text="Inverse") + layout.itemS() - layout.itemS() - - layout.item_enumO("armature.select_hierarchy", "direction", 'PARENT', text="Parent") - layout.item_enumO("armature.select_hierarchy", "direction", 'CHILD', text="Child") - - layout.itemS() - - props = layout.itemO("armature.select_hierarchy", properties=True, text="Extend Parent") - props.extend = True - props.direction = 'PARENT' + layout.itemO("armature.select_all_toggle", text="Select/Deselect All") + layout.itemO("armature.select_inverse", text="Inverse") - props = layout.itemO("armature.select_hierarchy", properties=True, text="Extend Child") - props.extend = True - props.direction = 'CHILD' + layout.itemS() + + layout.item_enumO("armature.select_hierarchy", "direction", 'PARENT', text="Parent") + layout.item_enumO("armature.select_hierarchy", "direction", 'CHILD', text="Child") + + layout.itemS() + + props = layout.itemO("armature.select_hierarchy", properties=True, text="Extend Parent") + props.extend = True + props.direction = 'PARENT' + + props = layout.itemO("armature.select_hierarchy", properties=True, text="Extend Child") + props.extend = True + props.direction = 'CHILD' class VIEW3D_MT_select_face(bpy.types.Menu):# XXX no matching enum - bl_label = "Select" + bl_label = "Select" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.view3d_select_faceselmenu() + layout.view3d_select_faceselmenu() # ********** Object menu ********** class VIEW3D_MT_object(bpy.types.Menu): - bl_context = "objectmode" - bl_label = "Object" + bl_context = "objectmode" + bl_label = "Object" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout + + layout.itemM("VIEW3D_MT_object_clear") + layout.itemM("VIEW3D_MT_object_apply") + layout.itemM("VIEW3D_MT_snap") + + layout.itemS() + + layout.itemO("anim.insert_keyframe_menu", text="Insert Keyframe...") + layout.itemO("anim.delete_keyframe_v3d", text="Delete Keyframe...") + + layout.itemS() + + layout.itemO("object.duplicate_move") + layout.item_booleanO("object.duplicate", "linked", True, text="Duplicate Linked") + layout.itemO("object.delete", text="Delete...") + layout.itemO("object.proxy_make", text="Make Proxy...") + layout.item_menu_enumO("object.make_local", "type", text="Make Local...") + layout.itemM("VIEW3D_MT_make_single_user") + + layout.itemS() + + layout.itemM("VIEW3D_MT_object_parent") + layout.itemM("VIEW3D_MT_object_track") + layout.itemM("VIEW3D_MT_object_group") + layout.itemM("VIEW3D_MT_object_constraints") + + layout.itemS() + + layout.itemO("object.join") + + layout.itemS() + + layout.itemO("object.move_to_layer", text="Move to Layer...") + layout.itemM("VIEW3D_MT_object_showhide") + + layout.item_menu_enumO("object.convert", "target") - layout.itemM("VIEW3D_MT_object_clear") - layout.itemM("VIEW3D_MT_object_apply") - layout.itemM("VIEW3D_MT_snap") - - layout.itemS() - - layout.itemO("anim.insert_keyframe_menu", text="Insert Keyframe...") - layout.itemO("anim.delete_keyframe_v3d", text="Delete Keyframe...") - - layout.itemS() - - layout.itemO("object.duplicate_move") - layout.item_booleanO("object.duplicate", "linked", True, text="Duplicate Linked") - layout.itemO("object.delete", text="Delete...") - layout.itemO("object.proxy_make", text="Make Proxy...") - layout.item_menu_enumO("object.make_local", "type", text="Make Local...") - layout.itemM("VIEW3D_MT_make_single_user") - - layout.itemS() - - layout.itemM("VIEW3D_MT_object_parent") - layout.itemM("VIEW3D_MT_object_track") - layout.itemM("VIEW3D_MT_object_group") - layout.itemM("VIEW3D_MT_object_constraints") - - layout.itemS() - - layout.itemO("object.join") - - layout.itemS() - - layout.itemO("object.move_to_layer", text="Move to Layer...") - layout.itemM("VIEW3D_MT_object_showhide") - - layout.item_menu_enumO("object.convert", "target") - class VIEW3D_MT_object_clear(bpy.types.Menu): - bl_label = "Clear" + bl_label = "Clear" + + def draw(self, context): + layout = self.layout + + layout.itemO("object.location_clear", text="Location") + layout.itemO("object.rotation_clear", text="Rotation") + layout.itemO("object.scale_clear", text="Scale") + layout.itemO("object.origin_clear", text="Origin") - def draw(self, context): - layout = self.layout - - layout.itemO("object.location_clear", text="Location") - layout.itemO("object.rotation_clear", text="Rotation") - layout.itemO("object.scale_clear", text="Scale") - layout.itemO("object.origin_clear", text="Origin") - class VIEW3D_MT_object_apply(bpy.types.Menu): - bl_label = "Apply" + bl_label = "Apply" + + def draw(self, context): + layout = self.layout + + layout.itemO("object.location_apply", text="Location") + layout.itemO("object.rotation_apply", text="Rotation") + layout.itemO("object.scale_apply", text="Scale") + layout.itemS() + layout.itemO("object.visual_transform_apply", text="Visual Transform") + layout.itemO("object.duplicates_make_real") - def draw(self, context): - layout = self.layout - - layout.itemO("object.location_apply", text="Location") - layout.itemO("object.rotation_apply", text="Rotation") - layout.itemO("object.scale_apply", text="Scale") - layout.itemS() - layout.itemO("object.visual_transform_apply", text="Visual Transform") - layout.itemO("object.duplicates_make_real") - class VIEW3D_MT_object_parent(bpy.types.Menu): - bl_label = "Parent" + bl_label = "Parent" + + def draw(self, context): + layout = self.layout + + layout.itemO("object.parent_set", text="Set") + layout.itemO("object.parent_clear", text="Clear") - def draw(self, context): - layout = self.layout - - layout.itemO("object.parent_set", text="Set") - layout.itemO("object.parent_clear", text="Clear") - class VIEW3D_MT_object_track(bpy.types.Menu): - bl_label = "Track" + bl_label = "Track" + + def draw(self, context): + layout = self.layout + + layout.itemO("object.track_set", text="Set") + layout.itemO("object.track_clear", text="Clear") - def draw(self, context): - layout = self.layout - - layout.itemO("object.track_set", text="Set") - layout.itemO("object.track_clear", text="Clear") - class VIEW3D_MT_object_group(bpy.types.Menu): - bl_label = "Group" + bl_label = "Group" + + def draw(self, context): + layout = self.layout + + layout.itemO("group.group_create") + layout.itemO("group.objects_remove") + + layout.itemS() + + layout.itemO("group.objects_add_active") + layout.itemO("group.objects_remove_active") - def draw(self, context): - layout = self.layout - - layout.itemO("group.group_create") - layout.itemO("group.objects_remove") - - layout.itemS() - - layout.itemO("group.objects_add_active") - layout.itemO("group.objects_remove_active") - class VIEW3D_MT_object_constraints(bpy.types.Menu): - bl_label = "Constraints" + bl_label = "Constraints" + + def draw(self, context): + layout = self.layout + + layout.itemO("object.constraint_add_with_targets") + layout.itemO("object.constraints_clear") - def draw(self, context): - layout = self.layout - - layout.itemO("object.constraint_add_with_targets") - layout.itemO("object.constraints_clear") - class VIEW3D_MT_object_showhide(bpy.types.Menu): - bl_label = "Show/Hide" + bl_label = "Show/Hide" - def draw(self, context): - layout = self.layout - - layout.itemO("object.restrictview_clear", text="Show Hidden") - layout.itemO("object.restrictview_set", text="Hide Selected") - layout.item_booleanO("object.restrictview_set", "unselected", True, text="Hide Unselected") + def draw(self, context): + layout = self.layout + + layout.itemO("object.restrictview_clear", text="Show Hidden") + layout.itemO("object.restrictview_set", text="Hide Selected") + layout.item_booleanO("object.restrictview_set", "unselected", True, text="Hide Unselected") class VIEW3D_MT_make_single_user(bpy.types.Menu): - bl_label = "Make Single User" + bl_label = "Make Single User" - def draw(self, context): - layout = self.layout - - props = layout.itemO("object.make_single_user", properties=True, text="Object") - props.object = True - - props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData") - props.object = props.obdata = True - - props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData & Materials+Tex") - props.object = props.obdata = props.material = props.texture = True - - props = layout.itemO("object.make_single_user", properties=True, text="Materials+Tex") - props.material = props.texture = True - - props = layout.itemO("object.make_single_user", properties=True, text="Animation") - props.animation = True + def draw(self, context): + layout = self.layout + + props = layout.itemO("object.make_single_user", properties=True, text="Object") + props.object = True + + props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData") + props.object = props.obdata = True + + props = layout.itemO("object.make_single_user", properties=True, text="Object & ObData & Materials+Tex") + props.object = props.obdata = props.material = props.texture = True + + props = layout.itemO("object.make_single_user", properties=True, text="Materials+Tex") + props.material = props.texture = True + + props = layout.itemO("object.make_single_user", properties=True, text="Animation") + props.animation = True + +# ********** Vertex paint menu ********** -# ********** Vertex paint menu ********** - class VIEW3D_MT_paint_vertex(bpy.types.Menu): - bl_label = "Paint" + bl_label = "Paint" - def draw(self, context): - layout = self.layout - - sculpt = context.tool_settings.sculpt + def draw(self, context): + layout = self.layout - layout.itemO("paint.vertex_color_set") - props = layout.itemO("paint.vertex_color_set", text="Set Selected Vertex Colors", properties=True) - props.selected = True + sculpt = context.tool_settings.sculpt + + layout.itemO("paint.vertex_color_set") + props = layout.itemO("paint.vertex_color_set", text="Set Selected Vertex Colors", properties=True) + props.selected = True + +# ********** Sculpt menu ********** -# ********** Sculpt menu ********** - class VIEW3D_MT_sculpt(bpy.types.Menu): - bl_label = "Sculpt" + bl_label = "Sculpt" - def draw(self, context): - layout = self.layout - - sculpt = context.tool_settings.sculpt - brush = context.tool_settings.sculpt.brush - - layout.itemR(sculpt, "symmetry_x") - layout.itemR(sculpt, "symmetry_y") - layout.itemR(sculpt, "symmetry_z") - layout.itemS() - layout.itemR(sculpt, "lock_x") - layout.itemR(sculpt, "lock_y") - layout.itemR(sculpt, "lock_z") - layout.itemS() - layout.item_menu_enumO("brush.curve_preset", property="shape") - layout.itemS() - - if brush.sculpt_tool != 'GRAB': - layout.itemR(brush, "use_airbrush") - - if brush.sculpt_tool != 'LAYER': - layout.itemR(brush, "use_anchor") - - if brush.sculpt_tool in ('DRAW', 'PINCH', 'INFLATE', 'LAYER', 'CLAY'): - layout.itemR(brush, "flip_direction") + def draw(self, context): + layout = self.layout - if brush.sculpt_tool == 'LAYER': - layout.itemR(brush, "use_persistent") - layout.itemO("sculpt.set_persistent_base") + sculpt = context.tool_settings.sculpt + brush = context.tool_settings.sculpt.brush + + layout.itemR(sculpt, "symmetry_x") + layout.itemR(sculpt, "symmetry_y") + layout.itemR(sculpt, "symmetry_z") + layout.itemS() + layout.itemR(sculpt, "lock_x") + layout.itemR(sculpt, "lock_y") + layout.itemR(sculpt, "lock_z") + layout.itemS() + layout.item_menu_enumO("brush.curve_preset", property="shape") + layout.itemS() + + if brush.sculpt_tool != 'GRAB': + layout.itemR(brush, "use_airbrush") + + if brush.sculpt_tool != 'LAYER': + layout.itemR(brush, "use_anchor") + + if brush.sculpt_tool in ('DRAW', 'PINCH', 'INFLATE', 'LAYER', 'CLAY'): + layout.itemR(brush, "flip_direction") + + if brush.sculpt_tool == 'LAYER': + layout.itemR(brush, "use_persistent") + layout.itemO("sculpt.set_persistent_base") + +# ********** Particle menu ********** -# ********** Particle menu ********** - class VIEW3D_MT_particle(bpy.types.Menu): - bl_label = "Particle" + bl_label = "Particle" - def draw(self, context): - layout = self.layout - - particle_edit = context.tool_settings.particle_edit - - layout.itemO("particle.mirror") - - layout.itemS() - - layout.itemO("particle.remove_doubles") - layout.itemO("particle.delete") - - if particle_edit.selection_mode == 'POINT': - layout.itemO("particle.subdivide") - - layout.itemO("particle.rekey") - - layout.itemS() - - layout.itemM("VIEW3D_MT_particle_showhide") + def draw(self, context): + layout = self.layout + + particle_edit = context.tool_settings.particle_edit + + layout.itemO("particle.mirror") + + layout.itemS() + + layout.itemO("particle.remove_doubles") + layout.itemO("particle.delete") + + if particle_edit.selection_mode == 'POINT': + layout.itemO("particle.subdivide") + + layout.itemO("particle.rekey") + + layout.itemS() + + layout.itemM("VIEW3D_MT_particle_showhide") class VIEW3D_MT_particle_showhide(VIEW3D_MT_showhide): - _operator_name = "particle" + _operator_name = "particle" # ********** Pose Menu ********** class VIEW3D_MT_pose(bpy.types.Menu): - bl_label = "Pose" + bl_label = "Pose" - def draw(self, context): - layout = self.layout - - arm = context.active_object.data - - if arm.drawtype in ('BBONE', 'ENVELOPE'): - layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale Envelope Distance") - - layout.itemM("VIEW3D_MT_pose_transform") - - layout.itemS() - - layout.itemO("anim.insert_keyframe_menu", text="Insert Keyframe...") - layout.itemO("anim.delete_keyframe_v3d", text="Delete Keyframe...") - - layout.itemS() - - layout.itemO("pose.apply") - - layout.itemS() - - layout.itemO("pose.copy") - layout.itemO("pose.paste") - layout.item_booleanO("pose.paste", "flipped", True, text="Paste X-Flipped Pose") - - layout.itemS() - - layout.itemM("VIEW3D_MT_pose_pose") - layout.itemM("VIEW3D_MT_pose_motion") - layout.itemM("VIEW3D_MT_pose_group") - - layout.itemS() - - layout.itemM("VIEW3D_MT_pose_ik") - layout.itemM("VIEW3D_MT_pose_constraints") - - layout.itemS() - - layout.operator_context = "EXEC_AREA" - layout.item_enumO("pose.autoside_names", "axis", 'XAXIS', text="AutoName Left/Right") - layout.item_enumO("pose.autoside_names", "axis", 'YAXIS', text="AutoName Front/Back") - layout.item_enumO("pose.autoside_names", "axis", 'ZAXIS', text="AutoName Top/Bottom") - - layout.itemO("pose.flip_names") - - layout.itemS() - - layout.operator_context = "INVOKE_AREA" - layout.itemO("pose.armature_layers", text="Change Armature Layers...") - layout.itemO("pose.bone_layers", text="Change Bone Layers...") - - layout.itemS() - - layout.itemM("VIEW3D_MT_pose_showhide") - layout.item_menu_enumO("pose.flags_set", 'mode', text="Bone Settings") + def draw(self, context): + layout = self.layout + + arm = context.active_object.data + + if arm.drawtype in ('BBONE', 'ENVELOPE'): + layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale Envelope Distance") + + layout.itemM("VIEW3D_MT_pose_transform") + + layout.itemS() + + layout.itemO("anim.insert_keyframe_menu", text="Insert Keyframe...") + layout.itemO("anim.delete_keyframe_v3d", text="Delete Keyframe...") + + layout.itemS() + + layout.itemO("pose.apply") + + layout.itemS() + + layout.itemO("pose.copy") + layout.itemO("pose.paste") + layout.item_booleanO("pose.paste", "flipped", True, text="Paste X-Flipped Pose") + + layout.itemS() + + layout.itemM("VIEW3D_MT_pose_pose") + layout.itemM("VIEW3D_MT_pose_motion") + layout.itemM("VIEW3D_MT_pose_group") + + layout.itemS() + + layout.itemM("VIEW3D_MT_pose_ik") + layout.itemM("VIEW3D_MT_pose_constraints") + + layout.itemS() + + layout.operator_context = "EXEC_AREA" + layout.item_enumO("pose.autoside_names", "axis", 'XAXIS', text="AutoName Left/Right") + layout.item_enumO("pose.autoside_names", "axis", 'YAXIS', text="AutoName Front/Back") + layout.item_enumO("pose.autoside_names", "axis", 'ZAXIS', text="AutoName Top/Bottom") + + layout.itemO("pose.flip_names") + + layout.itemS() + + layout.operator_context = "INVOKE_AREA" + layout.itemO("pose.armature_layers", text="Change Armature Layers...") + layout.itemO("pose.bone_layers", text="Change Bone Layers...") + + layout.itemS() + + layout.itemM("VIEW3D_MT_pose_showhide") + layout.item_menu_enumO("pose.flags_set", 'mode', text="Bone Settings") class VIEW3D_MT_pose_transform(bpy.types.Menu): - bl_label = "Clear Transform" + bl_label = "Clear Transform" + + def draw(self, context): + layout = self.layout + + layout.itemL(text="User Transform") + + layout.itemO("pose.loc_clear", text="Location") + layout.itemO("pose.rot_clear", text="Rotation") + layout.itemO("pose.scale_clear", text="Scale") + + layout.itemL(text="Origin") - def draw(self, context): - layout = self.layout - - layout.itemL(text="User Transform") - - layout.itemO("pose.loc_clear", text="Location") - layout.itemO("pose.rot_clear", text="Rotation") - layout.itemO("pose.scale_clear", text="Scale") - - layout.itemL(text="Origin") - class VIEW3D_MT_pose_pose(bpy.types.Menu): - bl_label = "Pose Library" + bl_label = "Pose Library" - def draw(self, context): - layout = self.layout - - layout.itemO("poselib.browse_interactive", text="Browse Poses...") - - layout.itemS() - - layout.itemO("poselib.pose_add", text="Add Pose...") - layout.itemO("poselib.pose_rename", text="Rename Pose...") - layout.itemO("poselib.pose_remove", text="Remove Pose...") + def draw(self, context): + layout = self.layout + + layout.itemO("poselib.browse_interactive", text="Browse Poses...") + + layout.itemS() + + layout.itemO("poselib.pose_add", text="Add Pose...") + layout.itemO("poselib.pose_rename", text="Rename Pose...") + layout.itemO("poselib.pose_remove", text="Remove Pose...") class VIEW3D_MT_pose_motion(bpy.types.Menu): - bl_label = "Motion Paths" + bl_label = "Motion Paths" + + def draw(self, context): + layout = self.layout + + layout.itemO("pose.paths_calculate", text="Calculate") + layout.itemO("pose.paths_clear", text="Clear") - def draw(self, context): - layout = self.layout - - layout.itemO("pose.paths_calculate", text="Calculate") - layout.itemO("pose.paths_clear", text="Clear") - class VIEW3D_MT_pose_group(bpy.types.Menu): - bl_label = "Bone Groups" + bl_label = "Bone Groups" + + def draw(self, context): + layout = self.layout + layout.itemO("pose.group_add") + layout.itemO("pose.group_remove") + + layout.itemS() + + layout.itemO("pose.group_assign") + layout.itemO("pose.group_unassign") + - def draw(self, context): - layout = self.layout - layout.itemO("pose.group_add") - layout.itemO("pose.group_remove") - - layout.itemS() - - layout.itemO("pose.group_assign") - layout.itemO("pose.group_unassign") - - class VIEW3D_MT_pose_ik(bpy.types.Menu): - bl_label = "Inverse Kinematics" + bl_label = "Inverse Kinematics" + + def draw(self, context): + layout = self.layout + + layout.itemO("pose.ik_add") + layout.itemO("pose.ik_clear") - def draw(self, context): - layout = self.layout - - layout.itemO("pose.ik_add") - layout.itemO("pose.ik_clear") - class VIEW3D_MT_pose_constraints(bpy.types.Menu): - bl_label = "Constraints" + bl_label = "Constraints" + + def draw(self, context): + layout = self.layout + + layout.itemO("pose.constraint_add_with_targets", text="Add (With Targets)...") + layout.itemO("pose.constraints_clear") - def draw(self, context): - layout = self.layout - - layout.itemO("pose.constraint_add_with_targets", text="Add (With Targets)...") - layout.itemO("pose.constraints_clear") - class VIEW3D_MT_pose_showhide(VIEW3D_MT_showhide): - _operator_name = "pose" + _operator_name = "pose" # ********** Edit Menus, suffix from ob.type ********** # Edit MESH class VIEW3D_MT_edit_mesh(bpy.types.Menu): - bl_label = "Mesh" + bl_label = "Mesh" - def draw(self, context): - layout = self.layout - - settings = context.tool_settings + def draw(self, context): + layout = self.layout - layout.itemO("ed.undo") - layout.itemO("ed.redo") - - layout.itemS() - - layout.itemM("VIEW3D_MT_snap") - - layout.itemS() - - layout.itemO("uv.mapping_menu", text="UV Unwrap...") - - layout.itemS() - - layout.itemO("mesh.extrude_move") - layout.itemO("mesh.duplicate_move") - layout.itemO("mesh.delete", text="Delete...") - - layout.itemS() - - layout.itemM("VIEW3D_MT_edit_mesh_vertices") - layout.itemM("VIEW3D_MT_edit_mesh_edges") - layout.itemM("VIEW3D_MT_edit_mesh_faces") - layout.itemM("VIEW3D_MT_edit_mesh_normals") - - layout.itemS() - - layout.itemR(settings, "automerge_editing") - layout.item_menu_enumR(settings, "proportional_editing") - layout.item_menu_enumR(settings, "proportional_editing_falloff") - - layout.itemS() - - layout.itemM("VIEW3D_MT_edit_mesh_showhide") + settings = context.tool_settings + + layout.itemO("ed.undo") + layout.itemO("ed.redo") + + layout.itemS() + + layout.itemM("VIEW3D_MT_snap") + + layout.itemS() + + layout.itemO("uv.mapping_menu", text="UV Unwrap...") + + layout.itemS() + + layout.itemO("mesh.extrude_move") + layout.itemO("mesh.duplicate_move") + layout.itemO("mesh.delete", text="Delete...") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_mesh_vertices") + layout.itemM("VIEW3D_MT_edit_mesh_edges") + layout.itemM("VIEW3D_MT_edit_mesh_faces") + layout.itemM("VIEW3D_MT_edit_mesh_normals") + + layout.itemS() + + layout.itemR(settings, "automerge_editing") + layout.item_menu_enumR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing_falloff") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_mesh_showhide") # Only used by the menu class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): - bl_label = "Specials" + bl_label = "Specials" - def draw(self, context): - layout = self.layout - - layout.operator_context = 'INVOKE_REGION_WIN' - - layout.itemO("mesh.subdivide", text="Subdivide") - layout.item_floatO("mesh.subdivide", "smoothness", 1.0, text="Subdivide Smooth") - layout.itemO("mesh.merge", text="Merge...") - layout.itemO("mesh.remove_doubles") - layout.itemO("mesh.hide", text="Hide") - layout.itemO("mesh.reveal", text="Reveal") - layout.itemO("mesh.select_inverse") - layout.itemO("mesh.flip_normals") - layout.itemO("mesh.vertices_smooth", text="Smooth") - # layout.itemO("mesh.bevel", text="Bevel") - layout.itemO("mesh.faces_shade_smooth") - layout.itemO("mesh.faces_shade_flat") - layout.itemO("mesh.blend_from_shape") - layout.itemO("mesh.shape_propagate_to_all") - layout.itemO("mesh.select_vertex_path") + def draw(self, context): + layout = self.layout + + layout.operator_context = 'INVOKE_REGION_WIN' + + layout.itemO("mesh.subdivide", text="Subdivide") + layout.item_floatO("mesh.subdivide", "smoothness", 1.0, text="Subdivide Smooth") + layout.itemO("mesh.merge", text="Merge...") + layout.itemO("mesh.remove_doubles") + layout.itemO("mesh.hide", text="Hide") + layout.itemO("mesh.reveal", text="Reveal") + layout.itemO("mesh.select_inverse") + layout.itemO("mesh.flip_normals") + layout.itemO("mesh.vertices_smooth", text="Smooth") + # layout.itemO("mesh.bevel", text="Bevel") + layout.itemO("mesh.faces_shade_smooth") + layout.itemO("mesh.faces_shade_flat") + layout.itemO("mesh.blend_from_shape") + layout.itemO("mesh.shape_propagate_to_all") + layout.itemO("mesh.select_vertex_path") class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): - bl_label = "Vertices" + bl_label = "Vertices" - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - - layout.itemO("mesh.merge") - layout.itemO("mesh.rip") - layout.itemO("mesh.split") - layout.itemO("mesh.separate") + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemS() - - layout.itemO("mesh.vertices_smooth") - layout.itemO("mesh.remove_doubles") - - layout.itemO("mesh.select_vertex_path") - - layout.itemO("mesh.blend_from_shape") - - layout.itemO("object.vertex_group_blend") - layout.itemO("mesh.shape_propagate_to_all") + layout.itemO("mesh.merge") + layout.itemO("mesh.rip") + layout.itemO("mesh.split") + layout.itemO("mesh.separate") + + layout.itemS() + + layout.itemO("mesh.vertices_smooth") + layout.itemO("mesh.remove_doubles") + + layout.itemO("mesh.select_vertex_path") + + layout.itemO("mesh.blend_from_shape") + + layout.itemO("object.vertex_group_blend") + layout.itemO("mesh.shape_propagate_to_all") class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): - bl_label = "Edges" + bl_label = "Edges" - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - - layout.itemO("mesh.edge_face_add") - layout.itemO("mesh.subdivide") + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemS() - - layout.itemO("mesh.mark_seam") - layout.item_booleanO("mesh.mark_seam", "clear", True, text="Clear Seam") - - layout.itemS() - - layout.itemO("mesh.mark_sharp") - layout.item_booleanO("mesh.mark_sharp", "clear", True, text="Clear Sharp") - - layout.itemS() - - layout.item_enumO("mesh.edge_rotate", "direction", 'CW', text="Rotate Edge CW") - layout.item_enumO("mesh.edge_rotate", "direction", 'CCW', text="Rotate Edge CCW") + layout.itemO("mesh.edge_face_add") + layout.itemO("mesh.subdivide") - layout.itemS() - - layout.itemO("TFM_OT_edge_slide", text="Edge Slide") - layout.itemO("mesh.loop_multi_select", text="Edge Loop") + layout.itemS() - # uiItemO(layout, "Loopcut", 0, "mesh.loop_cut"); // CutEdgeloop(em, 1); - # uiItemO(layout, "Edge Slide", 0, "mesh.edge_slide"); // EdgeSlide(em, 0,0.0); - - layout.item_booleanO("mesh.loop_multi_select", "ring", True, text="Edge Ring") - - layout.itemO("mesh.loop_to_region") - layout.itemO("mesh.region_to_loop") + layout.itemO("mesh.mark_seam") + layout.item_booleanO("mesh.mark_seam", "clear", True, text="Clear Seam") + + layout.itemS() + + layout.itemO("mesh.mark_sharp") + layout.item_booleanO("mesh.mark_sharp", "clear", True, text="Clear Sharp") + + layout.itemS() + + layout.item_enumO("mesh.edge_rotate", "direction", 'CW', text="Rotate Edge CW") + layout.item_enumO("mesh.edge_rotate", "direction", 'CCW', text="Rotate Edge CCW") + + layout.itemS() + + layout.itemO("TFM_OT_edge_slide", text="Edge Slide") + layout.itemO("mesh.loop_multi_select", text="Edge Loop") + + # uiItemO(layout, "Loopcut", 0, "mesh.loop_cut"); // CutEdgeloop(em, 1); + # uiItemO(layout, "Edge Slide", 0, "mesh.edge_slide"); // EdgeSlide(em, 0,0.0); + + layout.item_booleanO("mesh.loop_multi_select", "ring", True, text="Edge Ring") + + layout.itemO("mesh.loop_to_region") + layout.itemO("mesh.region_to_loop") class VIEW3D_MT_edit_mesh_faces(dynamic_menu.DynMenu): - bl_label = "Faces" - bl_idname = "VIEW3D_MT_edit_mesh_faces" + bl_label = "Faces" + bl_idname = "VIEW3D_MT_edit_mesh_faces" - def draw(self, context): - layout = self.layout - layout.operator_context = 'INVOKE_REGION_WIN' - - layout.itemO("mesh.flip_normals") - # layout.itemO("mesh.bevel") - # layout.itemO("mesh.bevel") - layout.itemO("mesh.edge_face_add") - layout.itemO("mesh.fill") - layout.itemO("mesh.beauty_fill") + def draw(self, context): + layout = self.layout + layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemS() - - layout.itemO("mesh.quads_convert_to_tris") - layout.itemO("mesh.tris_convert_to_quads") - layout.itemO("mesh.edge_flip") - - layout.itemS() - - layout.itemO("mesh.faces_shade_smooth") - layout.itemO("mesh.faces_shade_flat") - - layout.itemS() + layout.itemO("mesh.flip_normals") + # layout.itemO("mesh.bevel") + # layout.itemO("mesh.bevel") + layout.itemO("mesh.edge_face_add") + layout.itemO("mesh.fill") + layout.itemO("mesh.beauty_fill") - # uiItemO(layout, NULL, 0, "mesh.face_mode"); // mesh_set_face_flags(em, 1); - # uiItemBooleanO(layout, NULL, 0, "mesh.face_mode", "clear", 1); // mesh_set_face_flags(em, 0); - - layout.item_enumO("mesh.edge_rotate", "direction", 'CW', text="Rotate Edge CW") - - layout.itemS() - - layout.item_menu_enumO("mesh.uvs_rotate", "direction") - layout.item_menu_enumO("mesh.uvs_mirror", "axis") - layout.item_menu_enumO("mesh.colors_rotate", "direction") - layout.item_menu_enumO("mesh.colors_mirror", "axis") + layout.itemS() + + layout.itemO("mesh.quads_convert_to_tris") + layout.itemO("mesh.tris_convert_to_quads") + layout.itemO("mesh.edge_flip") + + layout.itemS() + + layout.itemO("mesh.faces_shade_smooth") + layout.itemO("mesh.faces_shade_flat") + + layout.itemS() + + # uiItemO(layout, NULL, 0, "mesh.face_mode"); // mesh_set_face_flags(em, 1); + # uiItemBooleanO(layout, NULL, 0, "mesh.face_mode", "clear", 1); // mesh_set_face_flags(em, 0); + + layout.item_enumO("mesh.edge_rotate", "direction", 'CW', text="Rotate Edge CW") + + layout.itemS() + + layout.item_menu_enumO("mesh.uvs_rotate", "direction") + layout.item_menu_enumO("mesh.uvs_mirror", "axis") + layout.item_menu_enumO("mesh.colors_rotate", "direction") + layout.item_menu_enumO("mesh.colors_mirror", "axis") class VIEW3D_MT_edit_mesh_normals(bpy.types.Menu): - bl_label = "Normals" + bl_label = "Normals" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - layout.itemO("mesh.normals_make_consistent", text="Recalculate Outside") - layout.item_booleanO("mesh.normals_make_consistent", "inside", True, text="Recalculate Inside") + layout.itemO("mesh.normals_make_consistent", text="Recalculate Outside") + layout.item_booleanO("mesh.normals_make_consistent", "inside", True, text="Recalculate Inside") + + layout.itemS() + + layout.itemO("mesh.flip_normals") - layout.itemS() - - layout.itemO("mesh.flip_normals") - class VIEW3D_MT_edit_mesh_showhide(VIEW3D_MT_showhide): - _operator_name = "mesh" + _operator_name = "mesh" # Edit Curve # draw_curve is used by VIEW3D_MT_edit_curve and VIEW3D_MT_edit_surface def draw_curve(self, context): - layout = self.layout - - settings = context.tool_settings - - layout.itemM("VIEW3D_MT_snap") - - layout.itemS() - - layout.itemO("curve.extrude") - layout.itemO("curve.duplicate") - layout.itemO("curve.separate") - layout.itemO("curve.make_segment") - layout.itemO("curve.cyclic_toggle") - layout.itemO("curve.delete", text="Delete...") - - layout.itemS() - - layout.itemM("VIEW3D_MT_edit_curve_ctrlpoints") - layout.itemM("VIEW3D_MT_edit_curve_segments") - - layout.itemS() - - layout.itemR(settings, "proportional_editing") - layout.item_menu_enumR(settings, "proportional_editing_falloff") - - layout.itemS() - - layout.itemM("VIEW3D_MT_edit_curve_showhide") + layout = self.layout + + settings = context.tool_settings + + layout.itemM("VIEW3D_MT_snap") + + layout.itemS() + + layout.itemO("curve.extrude") + layout.itemO("curve.duplicate") + layout.itemO("curve.separate") + layout.itemO("curve.make_segment") + layout.itemO("curve.cyclic_toggle") + layout.itemO("curve.delete", text="Delete...") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_curve_ctrlpoints") + layout.itemM("VIEW3D_MT_edit_curve_segments") + + layout.itemS() + + layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing_falloff") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_curve_showhide") class VIEW3D_MT_edit_curve(bpy.types.Menu): - bl_label = "Curve" + bl_label = "Curve" + + draw = draw_curve - draw = draw_curve - class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu): - bl_label = "Control Points" + bl_label = "Control Points" + + def draw(self, context): + layout = self.layout + + edit_object = context.edit_object + + if edit_object.type == 'CURVE': + layout.item_enumO("tfm.transform", "mode", 'TILT') + layout.itemO("curve.tilt_clear") + layout.itemO("curve.separate") + + layout.itemS() + + layout.item_menu_enumO("curve.handle_type_set", "type") - def draw(self, context): - layout = self.layout - - edit_object = context.edit_object - - if edit_object.type == 'CURVE': - layout.item_enumO("tfm.transform", "mode", 'TILT') - layout.itemO("curve.tilt_clear") - layout.itemO("curve.separate") - - layout.itemS() - - layout.item_menu_enumO("curve.handle_type_set", "type") - class VIEW3D_MT_edit_curve_segments(bpy.types.Menu): - bl_label = "Segments" + bl_label = "Segments" - def draw(self, context): - layout = self.layout - - layout.itemO("curve.subdivide") - layout.itemO("curve.switch_direction") + def draw(self, context): + layout = self.layout + + layout.itemO("curve.subdivide") + layout.itemO("curve.switch_direction") class VIEW3D_MT_edit_curve_showhide(VIEW3D_MT_showhide): - _operator_name = "curve" + _operator_name = "curve" # Edit SURFACE class VIEW3D_MT_edit_surface(bpy.types.Menu): - bl_label = "Surface" + bl_label = "Surface" - draw = draw_curve + draw = draw_curve # Edit TEXT class VIEW3D_MT_edit_text(bpy.types.Menu): - bl_label = "Text" + bl_label = "Text" - def draw(self, context): - layout = self.layout - - layout.itemO("font.file_paste") - - layout.itemS() - - layout.itemm("view3d_mt_edit_text_chars") + def draw(self, context): + layout = self.layout + + layout.itemO("font.file_paste") + + layout.itemS() + + layout.itemm("view3d_mt_edit_text_chars") class VIEW3D_MT_edit_text_chars(bpy.types.Menu): - bl_label = "Special Characters" + bl_label = "Special Characters" - def draw(self, context): - layout = self.layout - - layout.item_stringO("font.text_insert", "text", b'\xC2\xA9'.decode(), text="Copyright|Alt C") - layout.item_stringO("font.text_insert", "text", b'\xC2\xAE'.decode(), text="Registered Trademark|Alt R") - - layout.itemS() - - layout.item_stringO("font.text_insert", "text", b'\xC2\xB0'.decode(), text="Degree Sign|Alt G") - layout.item_stringO("font.text_insert", "text", b'\xC3\x97'.decode(), text="Multiplication Sign|Alt x") - layout.item_stringO("font.text_insert", "text", b'\xC2\x8A'.decode(), text="Circle|Alt .") - layout.item_stringO("font.text_insert", "text", b'\xC2\xB9'.decode(), text="Superscript 1|Alt 1") - layout.item_stringO("font.text_insert", "text", b'\xC2\xB2'.decode(), text="Superscript 2|Alt 2") - layout.item_stringO("font.text_insert", "text", b'\xC2\xB3'.decode(), text="Superscript 3|Alt 3") - layout.item_stringO("font.text_insert", "text", b'\xC2\xBB'.decode(), text="Double >>|Alt >") - layout.item_stringO("font.text_insert", "text", b'\xC2\xAB'.decode(), text="Double <<|Alt <") - layout.item_stringO("font.text_insert", "text", b'\xE2\x80\xB0'.decode(), text="Promillage|Alt %") - - layout.itemS() - - layout.item_stringO("font.text_insert", "text", b'\xC2\xA4'.decode(), text="Dutch Florin|Alt F") - layout.item_stringO("font.text_insert", "text", b'\xC2\xA3'.decode(), text="British Pound|Alt L") - layout.item_stringO("font.text_insert", "text", b'\xC2\xA5'.decode(), text="Japanese Yen|Alt Y") - - layout.itemS() - - layout.item_stringO("font.text_insert", "text", b'\xC3\x9F'.decode(), text="German S|Alt S") - layout.item_stringO("font.text_insert", "text", b'\xC2\xBF'.decode(), text="Spanish Question Mark|Alt ?") - layout.item_stringO("font.text_insert", "text", b'\xC2\xA1'.decode(), text="Spanish Exclamation Mark|Alt !") + def draw(self, context): + layout = self.layout + + layout.item_stringO("font.text_insert", "text", b'\xC2\xA9'.decode(), text="Copyright|Alt C") + layout.item_stringO("font.text_insert", "text", b'\xC2\xAE'.decode(), text="Registered Trademark|Alt R") + + layout.itemS() + + layout.item_stringO("font.text_insert", "text", b'\xC2\xB0'.decode(), text="Degree Sign|Alt G") + layout.item_stringO("font.text_insert", "text", b'\xC3\x97'.decode(), text="Multiplication Sign|Alt x") + layout.item_stringO("font.text_insert", "text", b'\xC2\x8A'.decode(), text="Circle|Alt .") + layout.item_stringO("font.text_insert", "text", b'\xC2\xB9'.decode(), text="Superscript 1|Alt 1") + layout.item_stringO("font.text_insert", "text", b'\xC2\xB2'.decode(), text="Superscript 2|Alt 2") + layout.item_stringO("font.text_insert", "text", b'\xC2\xB3'.decode(), text="Superscript 3|Alt 3") + layout.item_stringO("font.text_insert", "text", b'\xC2\xBB'.decode(), text="Double >>|Alt >") + layout.item_stringO("font.text_insert", "text", b'\xC2\xAB'.decode(), text="Double <<|Alt <") + layout.item_stringO("font.text_insert", "text", b'\xE2\x80\xB0'.decode(), text="Promillage|Alt %") + + layout.itemS() + + layout.item_stringO("font.text_insert", "text", b'\xC2\xA4'.decode(), text="Dutch Florin|Alt F") + layout.item_stringO("font.text_insert", "text", b'\xC2\xA3'.decode(), text="British Pound|Alt L") + layout.item_stringO("font.text_insert", "text", b'\xC2\xA5'.decode(), text="Japanese Yen|Alt Y") + + layout.itemS() + + layout.item_stringO("font.text_insert", "text", b'\xC3\x9F'.decode(), text="German S|Alt S") + layout.item_stringO("font.text_insert", "text", b'\xC2\xBF'.decode(), text="Spanish Question Mark|Alt ?") + layout.item_stringO("font.text_insert", "text", b'\xC2\xA1'.decode(), text="Spanish Exclamation Mark|Alt !") # Edit META class VIEW3D_MT_edit_meta(bpy.types.Menu): - bl_label = "Metaball" + bl_label = "Metaball" - def draw(self, context): - layout = self.layout - - settings = context.tool_settings + def draw(self, context): + layout = self.layout - layout.itemO("ed.undo") - layout.itemO("ed.redo") - - layout.itemS() - - layout.itemM("VIEW3D_MT_snap") - - layout.itemS() - - layout.itemO("mball.delete_metaelems", text="Delete...") - layout.itemO("mball.duplicate_metaelems") - - layout.itemS() - - layout.itemR(settings, "proportional_editing") - layout.item_menu_enumR(settings, "proportional_editing_falloff") - - layout.itemS() - - layout.itemM("VIEW3D_MT_edit_meta_showhide") + settings = context.tool_settings + + layout.itemO("ed.undo") + layout.itemO("ed.redo") + + layout.itemS() + + layout.itemM("VIEW3D_MT_snap") + + layout.itemS() + + layout.itemO("mball.delete_metaelems", text="Delete...") + layout.itemO("mball.duplicate_metaelems") + + layout.itemS() + + layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing_falloff") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_meta_showhide") class VIEW3D_MT_edit_meta_showhide(bpy.types.Menu): - bl_label = "Show/Hide" + bl_label = "Show/Hide" - def draw(self, context): - layout = self.layout - - layout.itemO("mball.reveal_metaelems", text="Show Hidden") - layout.itemO("mball.hide_metaelems", text="Hide Selected") - layout.item_booleanO("mball.hide_metaelems", "unselected", True, text="Hide Unselected") + def draw(self, context): + layout = self.layout + + layout.itemO("mball.reveal_metaelems", text="Show Hidden") + layout.itemO("mball.hide_metaelems", text="Hide Selected") + layout.item_booleanO("mball.hide_metaelems", "unselected", True, text="Hide Unselected") # Edit LATTICE class VIEW3D_MT_edit_lattice(bpy.types.Menu): - bl_label = "Lattice" + bl_label = "Lattice" - def draw(self, context): - layout = self.layout - - settings = context.tool_settings + def draw(self, context): + layout = self.layout - layout.itemM("VIEW3D_MT_snap") - - layout.itemS() - - layout.itemO("lattice.make_regular") - - layout.itemS() - - layout.itemR(settings, "proportional_editing") - layout.item_menu_enumR(settings, "proportional_editing_falloff") + settings = context.tool_settings + + layout.itemM("VIEW3D_MT_snap") + + layout.itemS() + + layout.itemO("lattice.make_regular") + + layout.itemS() + + layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing_falloff") # Edit ARMATURE class VIEW3D_MT_edit_armature(bpy.types.Menu): - bl_label = "Armature" + bl_label = "Armature" - def draw(self, context): - layout = self.layout - - edit_object = context.edit_object - arm = edit_object.data - - layout.itemM("VIEW3D_MT_snap") - layout.itemM("VIEW3D_MT_edit_armature_roll") - - if arm.drawtype == 'ENVELOPE': - layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale Envelope Distance") - else: - layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale B-Bone Width") - - layout.itemS() - - layout.itemO("armature.extrude_move") + def draw(self, context): + layout = self.layout -# EXTRUDE FORKED DOESN'T WORK YET + edit_object = context.edit_object + arm = edit_object.data + + layout.itemM("VIEW3D_MT_snap") + layout.itemM("VIEW3D_MT_edit_armature_roll") + + if arm.drawtype == 'ENVELOPE': + layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale Envelope Distance") + else: + layout.item_enumO("tfm.transform", "mode", 'BONESIZE', text="Scale B-Bone Width") + + layout.itemS() + + layout.itemO("armature.extrude_move") + +# EXTRUDE FORKED DOESN'T WORK YET # if arm.x_axis_mirror: # layout.item_booleanO("armature.extrude_move", "forked", True, text="Extrude Forked") - - layout.itemO("armature.duplicate_move") - layout.itemO("armature.merge") - layout.itemO("armature.fill") - layout.itemO("armature.delete") - layout.itemO("armature.separate") - layout.itemS() + layout.itemO("armature.duplicate_move") + layout.itemO("armature.merge") + layout.itemO("armature.fill") + layout.itemO("armature.delete") + layout.itemO("armature.separate") - layout.itemO("armature.subdivide_multi", text="Subdivide") - - layout.itemS() - - layout.operator_context = "EXEC_AREA" - layout.item_enumO("armature.autoside_names", "type", 'XAXIS', text="AutoName Left/Right") - layout.item_enumO("armature.autoside_names", "type", 'YAXIS', text="AutoName Front/Back") - layout.item_enumO("armature.autoside_names", "type", 'ZAXIS', text="AutoName Top/Bottom") - layout.itemO("armature.flip_names") + layout.itemS() - layout.itemS() - - layout.operator_context = "INVOKE_DEFAULT" - layout.itemO("armature.armature_layers") - layout.itemO("armature.bone_layers") + layout.itemO("armature.subdivide_multi", text="Subdivide") - layout.itemS() + layout.itemS() - layout.itemM("VIEW3D_MT_edit_armature_parent") + layout.operator_context = "EXEC_AREA" + layout.item_enumO("armature.autoside_names", "type", 'XAXIS', text="AutoName Left/Right") + layout.item_enumO("armature.autoside_names", "type", 'YAXIS', text="AutoName Front/Back") + layout.item_enumO("armature.autoside_names", "type", 'ZAXIS', text="AutoName Top/Bottom") + layout.itemO("armature.flip_names") - layout.itemS() - - layout.item_menu_enumO("armature.flags_set", "mode", text="Bone Settings") + layout.itemS() + + layout.operator_context = "INVOKE_DEFAULT" + layout.itemO("armature.armature_layers") + layout.itemO("armature.bone_layers") + + layout.itemS() + + layout.itemM("VIEW3D_MT_edit_armature_parent") + + layout.itemS() + + layout.item_menu_enumO("armature.flags_set", "mode", text="Bone Settings") class VIEW3D_MT_edit_armature_parent(bpy.types.Menu): - bl_label = "Parent" + bl_label = "Parent" - def draw(self, context): - layout = self.layout - - layout.itemO("armature.parent_set", text="Make") - layout.itemO("armature.parent_clear", text="Clear") + def draw(self, context): + layout = self.layout + + layout.itemO("armature.parent_set", text="Make") + layout.itemO("armature.parent_clear", text="Clear") class VIEW3D_MT_edit_armature_roll(bpy.types.Menu): - bl_label = "Bone Roll" + bl_label = "Bone Roll" - def draw(self, context): - layout = self.layout - - layout.item_enumO("armature.calculate_roll", "type", 'GLOBALUP', text="Clear Roll (Z-Axis Up)") - layout.item_enumO("armature.calculate_roll", "type", 'CURSOR', text="Roll to Cursor") - - layout.itemS() - - layout.item_enumO("tfm.transform", "mode", 'BONE_ROLL', text="Set Roll") + def draw(self, context): + layout = self.layout + + layout.item_enumO("armature.calculate_roll", "type", 'GLOBALUP', text="Clear Roll (Z-Axis Up)") + layout.item_enumO("armature.calculate_roll", "type", 'CURSOR', text="Roll to Cursor") + + layout.itemS() + + layout.item_enumO("tfm.transform", "mode", 'BONE_ROLL', text="Set Roll") # ********** Panel ********** class VIEW3D_PT_3dview_properties(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "View" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "View" - def poll(self, context): - view = context.space_data - return (view) + def poll(self, context): + view = context.space_data + return (view) + + def draw(self, context): + layout = self.layout + + view = context.space_data + scene = context.scene + + col = layout.column() + col.itemL(text="Camera:") + col.itemR(view, "camera", text="") + col.itemR(view, "lens") + + col = layout.column(align=True) + col.itemL(text="Clip:") + col.itemR(view, "clip_start", text="Start") + col.itemR(view, "clip_end", text="End") + + col = layout.column(align=True) + col.itemL(text="Grid:") + col.itemR(view, "grid_lines", text="Lines") + col.itemR(view, "grid_spacing", text="Spacing") + col.itemR(view, "grid_subdivisions", text="Subdivisions") + + layout.column().itemR(scene, "cursor_location", text="3D Cursor:") - def draw(self, context): - layout = self.layout - - view = context.space_data - scene = context.scene - - col = layout.column() - col.itemL(text="Camera:") - col.itemR(view, "camera", text="") - col.itemR(view, "lens") - - col = layout.column(align=True) - col.itemL(text="Clip:") - col.itemR(view, "clip_start", text="Start") - col.itemR(view, "clip_end", text="End") - - col = layout.column(align=True) - col.itemL(text="Grid:") - col.itemR(view, "grid_lines", text="Lines") - col.itemR(view, "grid_spacing", text="Spacing") - col.itemR(view, "grid_subdivisions", text="Subdivisions") - - layout.column().itemR(scene, "cursor_location", text="3D Cursor:") - class VIEW3D_PT_3dview_display(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Display" - bl_default_closed = True - - def poll(self, context): - view = context.space_data - return (view) + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Display" + bl_default_closed = True - def draw(self, context): - layout = self.layout + def poll(self, context): + view = context.space_data + return (view) - view = context.space_data - gs = context.scene.game_data - ob = context.object - - col = layout.column() - col.itemR(view, "display_floor", text="Grid Floor") - col.itemR(view, "display_x_axis", text="X Axis") - col.itemR(view, "display_y_axis", text="Y Axis") - col.itemR(view, "display_z_axis", text="Z Axis") - col.itemR(view, "outline_selected") - col.itemR(view, "all_object_centers") - col.itemR(view, "relationship_lines") - if ob and ob.type =='MESH': - mesh = context.active_object.data - col.itemR(mesh, "all_edges") - - col = layout.column() - col.itemL(text="Shading:") - col.itemR(gs, "material_mode", text="") - col.itemR(view, "textured_solid") + def draw(self, context): + layout = self.layout -# XXX - the Quad View options don't work yet + view = context.space_data + gs = context.scene.game_data + ob = context.object + + col = layout.column() + col.itemR(view, "display_floor", text="Grid Floor") + col.itemR(view, "display_x_axis", text="X Axis") + col.itemR(view, "display_y_axis", text="Y Axis") + col.itemR(view, "display_z_axis", text="Z Axis") + col.itemR(view, "outline_selected") + col.itemR(view, "all_object_centers") + col.itemR(view, "relationship_lines") + if ob and ob.type =='MESH': + mesh = context.active_object.data + col.itemR(mesh, "all_edges") + + col = layout.column() + col.itemL(text="Shading:") + col.itemR(gs, "material_mode", text="") + col.itemR(view, "textured_solid") + +# XXX - the Quad View options don't work yet # layout.itemS() -# +# # layout.itemO("screen.region_foursplit", text="Toggle Quad View") # col = layout.column() # col.itemR(view, "lock_rotation") @@ -1279,203 +1279,203 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): # col.itemR(view, "box_clip") class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Mesh Display" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Mesh Display" - def poll(self, context): - editmesh = context.mode == 'EDIT_MESH' - return (editmesh) + def poll(self, context): + editmesh = context.mode == 'EDIT_MESH' + return (editmesh) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - mesh = context.active_object.data - - col = layout.column() - col.itemL(text="Overlays:") - col.itemR(mesh, "draw_edges", text="Edges") - col.itemR(mesh, "draw_faces", text="Faces") - col.itemR(mesh, "draw_creases", text="Creases") - col.itemR(mesh, "draw_bevel_weights", text="Bevel Weights") - col.itemR(mesh, "draw_seams", text="Seams") - col.itemR(mesh, "draw_sharp", text="Sharp") - - col.itemS() - col.itemL(text="Normals:") - col.itemR(mesh, "draw_normals", text="Face") - col.itemR(mesh, "draw_vertex_normals", text="Vertex") - col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") - - col.itemS() - col.itemL(text="Numerics:") - col.itemR(mesh, "draw_edge_lenght") - col.itemR(mesh, "draw_edge_angle") - col.itemR(mesh, "draw_face_area") + mesh = context.active_object.data + + col = layout.column() + col.itemL(text="Overlays:") + col.itemR(mesh, "draw_edges", text="Edges") + col.itemR(mesh, "draw_faces", text="Faces") + col.itemR(mesh, "draw_creases", text="Creases") + col.itemR(mesh, "draw_bevel_weights", text="Bevel Weights") + col.itemR(mesh, "draw_seams", text="Seams") + col.itemR(mesh, "draw_sharp", text="Sharp") + + col.itemS() + col.itemL(text="Normals:") + col.itemR(mesh, "draw_normals", text="Face") + col.itemR(mesh, "draw_vertex_normals", text="Vertex") + col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") + + col.itemS() + col.itemL(text="Numerics:") + col.itemR(mesh, "draw_edge_lenght") + col.itemR(mesh, "draw_edge_angle") + col.itemR(mesh, "draw_face_area") class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Curve Display" + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Curve Display" - def poll(self, context): - editmesh = context.mode == 'EDIT_CURVE' - return (editmesh) + def poll(self, context): + editmesh = context.mode == 'EDIT_CURVE' + return (editmesh) - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - curve = context.active_object.data - - col = layout.column() - col.itemL(text="Overlays:") - col.itemR(curve, "draw_handles", text="Handles") - col.itemR(curve, "draw_normals", text="Normals") - col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") + curve = context.active_object.data + + col = layout.column() + col.itemL(text="Overlays:") + col.itemR(curve, "draw_handles", text="Handles") + col.itemR(curve, "draw_normals", text="Normals") + col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") class VIEW3D_PT_background_image(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Background Image" - bl_default_closed = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Background Image" + bl_default_closed = True - def poll(self, context): - view = context.space_data - bg = context.space_data.background_image - return (view) + def poll(self, context): + view = context.space_data + bg = context.space_data.background_image + return (view) - def draw_header(self, context): - layout = self.layout - view = context.space_data + def draw_header(self, context): + layout = self.layout + view = context.space_data - layout.itemR(view, "display_background_image", text="") + layout.itemR(view, "display_background_image", text="") - def draw(self, context): - layout = self.layout - - view = context.space_data - bg = view.background_image + def draw(self, context): + layout = self.layout - if bg: - layout.active = view.display_background_image + view = context.space_data + bg = view.background_image - col = layout.column() - col.itemR(bg, "image", text="") - #col.itemR(bg, "image_user") - col.itemR(bg, "size") - col.itemR(bg, "transparency", slider=True) - - - col = layout.column(align=True) - col.itemL(text="Offset:") - col.itemR(bg, "offset_x", text="X") - col.itemR(bg, "offset_y", text="Y") + if bg: + layout.active = view.display_background_image + + col = layout.column() + col.itemR(bg, "image", text="") + #col.itemR(bg, "image_user") + col.itemR(bg, "size") + col.itemR(bg, "transparency", slider=True) + + + col = layout.column(align=True) + col.itemL(text="Offset:") + col.itemR(bg, "offset_x", text="X") + col.itemR(bg, "offset_y", text="Y") class VIEW3D_PT_transform_orientations(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Transform Orientations" - bl_default_closed = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Transform Orientations" + bl_default_closed = True - def poll(self, context): - view = context.space_data - return (view) + def poll(self, context): + view = context.space_data + return (view) - def draw(self, context): - layout = self.layout - - view = context.space_data + def draw(self, context): + layout = self.layout - col = layout.column() + view = context.space_data - col.itemR(view, "transform_orientation") - col.itemO("tfm.create_orientation", text="Create") - - orientation = view.current_orientation - - if orientation: - col.itemR(orientation, "name") - col.itemO("tfm.delete_orientation", text="Delete") + col = layout.column() + + col.itemR(view, "transform_orientation") + col.itemO("tfm.create_orientation", text="Create") + + orientation = view.current_orientation + + if orientation: + col.itemR(orientation, "name") + col.itemO("tfm.delete_orientation", text="Delete") class VIEW3D_PT_etch_a_ton(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'UI' - bl_label = "Skeleton Sketching" - bl_default_closed = True + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Skeleton Sketching" + bl_default_closed = True - def poll(self, context): - scene = context.space_data - ob = context.active_object - return scene and ob and ob.type == 'ARMATURE' and ob.mode == 'EDIT' + def poll(self, context): + scene = context.space_data + ob = context.active_object + return scene and ob and ob.type == 'ARMATURE' and ob.mode == 'EDIT' - def draw_header(self, context): - layout = self.layout - toolsettings = context.scene.tool_settings + def draw_header(self, context): + layout = self.layout + toolsettings = context.scene.tool_settings - layout.itemR(toolsettings, "bone_sketching", text="") + layout.itemR(toolsettings, "bone_sketching", text="") - def draw(self, context): - layout = self.layout - toolsettings = context.scene.tool_settings + def draw(self, context): + layout = self.layout + toolsettings = context.scene.tool_settings - col = layout.column() + col = layout.column() - col.itemR(toolsettings, "etch_quick") - col.itemR(toolsettings, "etch_overdraw") + col.itemR(toolsettings, "etch_quick") + col.itemR(toolsettings, "etch_overdraw") - col.itemR(toolsettings, "etch_convert_mode") - - if toolsettings.etch_convert_mode == "LENGTH": - col.itemR(toolsettings, "etch_length_limit") - elif toolsettings.etch_convert_mode == "ADAPTIVE": - col.itemR(toolsettings, "etch_adaptive_limit") - elif toolsettings.etch_convert_mode == "FIXED": - col.itemR(toolsettings, "etch_subdivision_number") - elif toolsettings.etch_convert_mode == "RETARGET": - col.itemR(toolsettings, "etch_template") - col.itemR(toolsettings, "etch_roll_mode") - col.itemR(toolsettings, "etch_autoname") - col.itemR(toolsettings, "etch_number") - col.itemR(toolsettings, "etch_side") - + col.itemR(toolsettings, "etch_convert_mode") -# Operators + if toolsettings.etch_convert_mode == "LENGTH": + col.itemR(toolsettings, "etch_length_limit") + elif toolsettings.etch_convert_mode == "ADAPTIVE": + col.itemR(toolsettings, "etch_adaptive_limit") + elif toolsettings.etch_convert_mode == "FIXED": + col.itemR(toolsettings, "etch_subdivision_number") + elif toolsettings.etch_convert_mode == "RETARGET": + col.itemR(toolsettings, "etch_template") + col.itemR(toolsettings, "etch_roll_mode") + col.itemR(toolsettings, "etch_autoname") + col.itemR(toolsettings, "etch_number") + col.itemR(toolsettings, "etch_side") + + +# Operators from bpy.props import * class OBJECT_OT_select_pattern(bpy.types.Operator): - '''Select object matching a naming pattern.''' - bl_idname = "object.select_pattern" - bl_label = "Select Pattern" - bl_register = True - bl_undo = True - - pattern = StringProperty(name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*") - case_sensitive = BoolProperty(name="Case Sensitive", description="Do a case sensitive compare", default= False) - extend = BoolProperty(name="Extend", description="Extend the existing selection", default= True) - - - def execute(self, context): - - import fnmatch - if self.case_sensitive: pattern_match = fnmatch.fnmatchcase - else: pattern_match = lambda a, b: fnmatch.fnmatchcase(a.upper(), b.upper()) + '''Select object matching a naming pattern.''' + bl_idname = "object.select_pattern" + bl_label = "Select Pattern" + bl_register = True + bl_undo = True - for ob in context.visible_objects: - if pattern_match(ob.name, self.pattern): - ob.selected = True - elif not self.extend: - ob.selected = False + pattern = StringProperty(name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*") + case_sensitive = BoolProperty(name="Case Sensitive", description="Do a case sensitive compare", default= False) + extend = BoolProperty(name="Extend", description="Extend the existing selection", default= True) - return ('FINISHED',) - - # TODO - python cant do popups yet - ''' - def invoke(self, context, event): - wm = context.manager - wm.add_fileselect(self.__operator__) - return ('RUNNING_MODAL',) - ''' + + def execute(self, context): + + import fnmatch + if self.case_sensitive: pattern_match = fnmatch.fnmatchcase + else: pattern_match = lambda a, b: fnmatch.fnmatchcase(a.upper(), b.upper()) + + for ob in context.visible_objects: + if pattern_match(ob.name, self.pattern): + ob.selected = True + elif not self.extend: + ob.selected = False + + return ('FINISHED',) + + # TODO - python cant do popups yet + ''' + def invoke(self, context, event): + wm = context.manager + wm.add_fileselect(self.__operator__) + return ('RUNNING_MODAL',) + ''' bpy.types.register(VIEW3D_HT_header) # Header diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index df4cf6dcbaf..ed58b6d486a 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -2,685 +2,685 @@ import bpy class View3DPanel(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'TOOLS' + bl_space_type = 'VIEW_3D' + bl_region_type = 'TOOLS' # ********** default tools for objectmode **************** class VIEW3D_PT_tools_objectmode(View3DPanel): - bl_context = "objectmode" - bl_label = "Object Tools" + bl_context = "objectmode" + bl_label = "Object Tools" - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Object:") - col.itemO("object.duplicate_move") - col.itemO("object.delete") - - active_object= context.active_object - if active_object and active_object.type == 'MESH': - - col = layout.column(align=True) - col.itemL(text="Shading:") - col.itemO("object.shade_smooth", text="Smooth") - col.itemO("object.shade_flat", text="Flat") - - col = layout.column(align=True) - col.itemL(text="Keyframes:") - col.itemO("anim.insert_keyframe_menu", text="Insert") - col.itemO("anim.delete_keyframe_v3d", text="Remove") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Object:") + col.itemO("object.duplicate_move") + col.itemO("object.delete") + + active_object= context.active_object + if active_object and active_object.type == 'MESH': + + col = layout.column(align=True) + col.itemL(text="Shading:") + col.itemO("object.shade_smooth", text="Smooth") + col.itemO("object.shade_flat", text="Flat") + + col = layout.column(align=True) + col.itemL(text="Keyframes:") + col.itemO("anim.insert_keyframe_menu", text="Insert") + col.itemO("anim.delete_keyframe_v3d", text="Remove") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for editmode_mesh **************** class VIEW3D_PT_tools_meshedit(View3DPanel): - bl_context = "mesh_edit" - bl_label = "Mesh Tools" + bl_context = "mesh_edit" + bl_label = "Mesh Tools" + + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Mesh:") + col.itemO("mesh.duplicate_move") + col.itemO("mesh.delete") + + col = layout.column(align=True) + col.itemL(text="Modeling:") + col.itemO("mesh.extrude_move") + col.itemO("mesh.subdivide") + col.itemO("mesh.loopcut") + col.itemO("mesh.spin") + col.itemO("mesh.screw") + col.itemO("mesh.merge") + col.itemO("mesh.rip_move") + + col = layout.column(align=True) + col.itemL(text="Shading:") + col.itemO("mesh.faces_shade_smooth", text="Smooth") + col.itemO("mesh.faces_shade_flat", text="Flat") + + col = layout.column(align=True) + col.itemL(text="UV Mapping:") + col.itemO("uv.mapping_menu", text="Unwrap") + col.itemO("mesh.uvs_rotate") + col.itemO("mesh.uvs_mirror") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Mesh:") - col.itemO("mesh.duplicate_move") - col.itemO("mesh.delete") - - col = layout.column(align=True) - col.itemL(text="Modeling:") - col.itemO("mesh.extrude_move") - col.itemO("mesh.subdivide") - col.itemO("mesh.loopcut") - col.itemO("mesh.spin") - col.itemO("mesh.screw") - col.itemO("mesh.merge") - col.itemO("mesh.rip_move") - - col = layout.column(align=True) - col.itemL(text="Shading:") - col.itemO("mesh.faces_shade_smooth", text="Smooth") - col.itemO("mesh.faces_shade_flat", text="Flat") - - col = layout.column(align=True) - col.itemL(text="UV Mapping:") - col.itemO("uv.mapping_menu", text="Unwrap") - col.itemO("mesh.uvs_rotate") - col.itemO("mesh.uvs_mirror") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") - class VIEW3D_PT_tools_meshedit_options(View3DPanel): - bl_context = "mesh_edit" - bl_label = "Mesh Options" + bl_context = "mesh_edit" + bl_label = "Mesh Options" - def draw(self, context): - layout = self.layout - - mesh = context.active_object.data - - col = layout.column(align=True) - col.itemR(mesh, "use_mirror_x") + def draw(self, context): + layout = self.layout + + mesh = context.active_object.data + + col = layout.column(align=True) + col.itemR(mesh, "use_mirror_x") # ********** default tools for editmode_curve **************** class VIEW3D_PT_tools_curveedit(View3DPanel): - bl_context = "curve_edit" - bl_label = "Curve Tools" + bl_context = "curve_edit" + bl_label = "Curve Tools" - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") + def draw(self, context): + layout = self.layout - col = layout.column(align=True) - col.itemL(text="Curve:") - col.itemO("curve.duplicate") - col.itemO("curve.delete") - col.itemO("curve.cyclic_toggle") - col.itemO("curve.switch_direction") - col.itemO("curve.spline_type_set") - - col = layout.column(align=True) - col.itemL(text="Handles:") - col.item_enumO("curve.handle_type_set", "type", 'AUTOMATIC') - col.item_enumO("curve.handle_type_set", "type", 'VECTOR') - col.item_enumO("curve.handle_type_set", "type", 'ALIGN') - col.item_enumO("curve.handle_type_set", "type", 'FREE_ALIGN') - - col = layout.column(align=True) - col.itemL(text="Modeling:") - col.itemO("curve.extrude") - col.itemO("curve.subdivide") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Curve:") + col.itemO("curve.duplicate") + col.itemO("curve.delete") + col.itemO("curve.cyclic_toggle") + col.itemO("curve.switch_direction") + col.itemO("curve.spline_type_set") + + col = layout.column(align=True) + col.itemL(text="Handles:") + col.item_enumO("curve.handle_type_set", "type", 'AUTOMATIC') + col.item_enumO("curve.handle_type_set", "type", 'VECTOR') + col.item_enumO("curve.handle_type_set", "type", 'ALIGN') + col.item_enumO("curve.handle_type_set", "type", 'FREE_ALIGN') + + col = layout.column(align=True) + col.itemL(text="Modeling:") + col.itemO("curve.extrude") + col.itemO("curve.subdivide") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for editmode_surface **************** class VIEW3D_PT_tools_surfaceedit(View3DPanel): - bl_context = "surface_edit" - bl_label = "Surface Tools" + bl_context = "surface_edit" + bl_label = "Surface Tools" - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Curve:") - col.itemO("curve.duplicate") - col.itemO("curve.delete") - col.itemO("curve.cyclic_toggle") - col.itemO("curve.switch_direction") - - col = layout.column(align=True) - col.itemL(text="Modeling:") - col.itemO("curve.extrude") - col.itemO("curve.subdivide") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Curve:") + col.itemO("curve.duplicate") + col.itemO("curve.delete") + col.itemO("curve.cyclic_toggle") + col.itemO("curve.switch_direction") + + col = layout.column(align=True) + col.itemL(text="Modeling:") + col.itemO("curve.extrude") + col.itemO("curve.subdivide") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for editmode_text **************** class VIEW3D_PT_tools_textedit(View3DPanel): - bl_context = "text_edit" - bl_label = "Text Tools" + bl_context = "text_edit" + bl_label = "Text Tools" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - col = layout.column(align=True) - col.itemL(text="Text Edit:") - col.itemO("font.text_copy", text="Copy") - col.itemO("font.text_cut", text="Cut") - col.itemO("font.text_paste", text="Paste") - - col = layout.column(align=True) - col.itemL(text="Style:") - col.itemO("font.case_set") - col.itemO("font.style_toggle") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + col = layout.column(align=True) + col.itemL(text="Text Edit:") + col.itemO("font.text_copy", text="Copy") + col.itemO("font.text_cut", text="Cut") + col.itemO("font.text_paste", text="Paste") + + col = layout.column(align=True) + col.itemL(text="Style:") + col.itemO("font.case_set") + col.itemO("font.style_toggle") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for editmode_armature **************** class VIEW3D_PT_tools_armatureedit(View3DPanel): - bl_context = "armature_edit" - bl_label = "Armature Tools" + bl_context = "armature_edit" + bl_label = "Armature Tools" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Bones:") + col.itemO("armature.bone_primitive_add", text="Add") + col.itemO("armature.duplicate_move", text="Duplicate") + col.itemO("armature.delete", text="Delete") + + col = layout.column(align=True) + col.itemL(text="Modeling:") + col.itemO("armature.extrude_move") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") - col = layout.column(align=True) - col.itemL(text="Bones:") - col.itemO("armature.bone_primitive_add", text="Add") - col.itemO("armature.duplicate_move", text="Duplicate") - col.itemO("armature.delete", text="Delete") - - col = layout.column(align=True) - col.itemL(text="Modeling:") - col.itemO("armature.extrude_move") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") - class VIEW3D_PT_tools_armatureedit_options(View3DPanel): - bl_context = "armature_edit" - bl_label = "Armature Options" + bl_context = "armature_edit" + bl_label = "Armature Options" - def draw(self, context): - layout = self.layout - - arm = context.active_object.data + def draw(self, context): + layout = self.layout - col = layout.column(align=True) - col.itemR(arm, "x_axis_mirror") + arm = context.active_object.data + + col = layout.column(align=True) + col.itemR(arm, "x_axis_mirror") # ********** default tools for editmode_mball **************** class VIEW3D_PT_tools_mballedit(View3DPanel): - bl_context = "mball_edit" - bl_label = "Meta Tools" + bl_context = "mball_edit" + bl_label = "Meta Tools" - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for editmode_lattice **************** class VIEW3D_PT_tools_latticeedit(View3DPanel): - bl_context = "lattice_edit" - bl_label = "Lattice Tools" + bl_context = "lattice_edit" + bl_label = "Lattice Tools" - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") # ********** default tools for posemode **************** class VIEW3D_PT_tools_posemode(View3DPanel): - bl_context = "posemode" - bl_label = "Pose Tools" + bl_context = "posemode" + bl_label = "Pose Tools" + + def draw(self, context): + layout = self.layout + + col = layout.column(align=True) + col.itemL(text="Transform:") + col.itemO("tfm.translate") + col.itemO("tfm.rotate") + col.itemO("tfm.resize", text="Scale") + + col = layout.column(align=True) + col.itemL(text="Bones:") + col.itemO("pose.hide", text="Hide") + col.itemO("pose.reveal", text="Reveal") + + col = layout.column(align=True) + col.itemL(text="Keyframes:") + col.itemO("anim.insert_keyframe_menu", text="Insert") + col.itemO("anim.delete_keyframe_v3d", text="Remove") + + col = layout.column(align=True) + col.itemL(text="Pose:") + col.itemO("pose.copy", text="Copy") + col.itemO("pose.paste", text="Paste") + col.itemO("poselib.pose_add", text="Add To Library") + col.itemO("poselib.browse_interactive", text="Browse Library") + + col = layout.column(align=True) + col.itemL(text="In-Between:") + col.itemO("pose.relax", text="Relax") + col.itemO("pose.push", text="Push") + col.itemO("pose.breakdown", text="Breakdowner") + + col = layout.column(align=True) + col.itemL(text="Grease Pencil:") + col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") + col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") + col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") + + col = layout.column(align=True) + col.itemL(text="Repeat:") + col.itemO("screen.repeat_last") + col.itemO("screen.repeat_history", text="History...") + col.itemO("screen.redo_last", text="Tweak...") - def draw(self, context): - layout = self.layout - - col = layout.column(align=True) - col.itemL(text="Transform:") - col.itemO("tfm.translate") - col.itemO("tfm.rotate") - col.itemO("tfm.resize", text="Scale") - - col = layout.column(align=True) - col.itemL(text="Bones:") - col.itemO("pose.hide", text="Hide") - col.itemO("pose.reveal", text="Reveal") - - col = layout.column(align=True) - col.itemL(text="Keyframes:") - col.itemO("anim.insert_keyframe_menu", text="Insert") - col.itemO("anim.delete_keyframe_v3d", text="Remove") - - col = layout.column(align=True) - col.itemL(text="Pose:") - col.itemO("pose.copy", text="Copy") - col.itemO("pose.paste", text="Paste") - col.itemO("poselib.pose_add", text="Add To Library") - col.itemO("poselib.browse_interactive", text="Browse Library") - - col = layout.column(align=True) - col.itemL(text="In-Between:") - col.itemO("pose.relax", text="Relax") - col.itemO("pose.push", text="Push") - col.itemO("pose.breakdown", text="Breakdowner") - - col = layout.column(align=True) - col.itemL(text="Grease Pencil:") - col.item_enumO("gpencil.draw", "mode", 'DRAW', text="Draw Freehand") - col.item_enumO("gpencil.draw", "mode", 'DRAW_STRAIGHT', text="Straight Line") - col.item_enumO("gpencil.draw", "mode", 'ERASER', text="Eraser") - - col = layout.column(align=True) - col.itemL(text="Repeat:") - col.itemO("screen.repeat_last") - col.itemO("screen.repeat_history", text="History...") - col.itemO("screen.redo_last", text="Tweak...") - class VIEW3D_PT_tools_posemode_options(View3DPanel): - bl_context = "posemode" - bl_label = "Pose Options" + bl_context = "posemode" + bl_label = "Pose Options" - def draw(self, context): - layout = self.layout - - arm = context.active_object.data + def draw(self, context): + layout = self.layout - col = layout.column(align=True) - col.itemR(arm, "x_axis_mirror") - col.itemR(arm, "auto_ik") + arm = context.active_object.data + + col = layout.column(align=True) + col.itemR(arm, "x_axis_mirror") + col.itemR(arm, "auto_ik") # ********** default tools for paint modes **************** class PaintPanel(bpy.types.Panel): - bl_space_type = 'VIEW_3D' - bl_region_type = 'TOOLS' + bl_space_type = 'VIEW_3D' + bl_region_type = 'TOOLS' - def paint_settings(self, context): - ts = context.tool_settings + def paint_settings(self, context): + ts = context.tool_settings - if context.sculpt_object: - return ts.sculpt - elif context.vertex_paint_object: - return ts.vertex_paint - elif context.weight_paint_object: - return ts.weight_paint - elif context.texture_paint_object: - return ts.image_paint - elif context.particle_edit_object: - return ts.particle_edit + if context.sculpt_object: + return ts.sculpt + elif context.vertex_paint_object: + return ts.vertex_paint + elif context.weight_paint_object: + return ts.weight_paint + elif context.texture_paint_object: + return ts.image_paint + elif context.particle_edit_object: + return ts.particle_edit - return False + return False class VIEW3D_PT_tools_brush(PaintPanel): - bl_label = "Brush" + bl_label = "Brush" - def poll(self, context): - return self.paint_settings(context) + def poll(self, context): + return self.paint_settings(context) - def draw(self, context): - layout = self.layout - - settings = self.paint_settings(context) - brush = settings.brush + def draw(self, context): + layout = self.layout - if not context.particle_edit_object: - col = layout.split().column() - row = col.row() - row.template_list(settings, "brushes", settings, "active_brush_index", rows=2) - - col.template_ID(settings, "brush", new="brush.add") - - # Particle Mode # + settings = self.paint_settings(context) + brush = settings.brush - # XXX This needs a check if psys is editable. - if context.particle_edit_object: - # XXX Select Particle System - layout.column().itemR(settings, "tool", expand=True) - - if settings.tool != 'NONE': - col = layout.column() - col.itemR(brush, "size", slider=True) - col.itemR(brush, "strength", slider=True) - - if settings.tool == 'ADD': - col = layout.column() - col.itemR(settings, "add_interpolate") - sub = col.column(align=True) - sub.active = settings.add_interpolate - sub.itemR(brush, "steps", slider=True) - sub.itemR(settings, "add_keys", slider=True) - elif settings.tool == 'LENGTH': - layout.itemR(brush, "length_mode", expand=True) - elif settings.tool == 'PUFF': - layout.itemR(brush, "puff_mode", expand=True) + if not context.particle_edit_object: + col = layout.split().column() + row = col.row() + row.template_list(settings, "brushes", settings, "active_brush_index", rows=2) - # Sculpt Mode # + col.template_ID(settings, "brush", new="brush.add") - elif context.sculpt_object and brush: - col = layout.column() - col.itemS() - col.itemR(brush, "sculpt_tool", expand=True) - col.itemS() - - row = col.row(align=True) - row.itemR(brush, "size", slider=True) - row.itemR(brush, "use_size_pressure", toggle=True, text="") - - if brush.sculpt_tool != 'GRAB': - row = col.row(align=True) - row.itemR(brush, "strength", slider=True) - row.itemR(brush, "use_strength_pressure", text="") - - ''' # XXX - TODO - row = col.row(align=True) - row.itemR(brush, "jitter", slider=True) - row.itemR(brush, "use_jitter_pressure", toggle=True, text="") - ''' - col = layout.column() + # Particle Mode # - if brush.sculpt_tool in ('DRAW', 'PINCH', 'INFLATE', 'LAYER', 'CLAY'): - col.row().itemR(brush, "direction", expand=True) + # XXX This needs a check if psys is editable. + if context.particle_edit_object: + # XXX Select Particle System + layout.column().itemR(settings, "tool", expand=True) - if brush.sculpt_tool == 'LAYER': - col.itemR(brush, "persistent") - col.itemO("sculpt.set_persistent_base") + if settings.tool != 'NONE': + col = layout.column() + col.itemR(brush, "size", slider=True) + col.itemR(brush, "strength", slider=True) - # Texture Paint Mode # - - elif context.texture_paint_object and brush: - col = layout.column(align=True) - col.item_enumR(settings, "tool", 'DRAW') - col.item_enumR(settings, "tool", 'SOFTEN') - col.item_enumR(settings, "tool", 'CLONE') - col.item_enumR(settings, "tool", 'SMEAR') - - col = layout.column() - col.itemR(brush, "color", text="") + if settings.tool == 'ADD': + col = layout.column() + col.itemR(settings, "add_interpolate") + sub = col.column(align=True) + sub.active = settings.add_interpolate + sub.itemR(brush, "steps", slider=True) + sub.itemR(settings, "add_keys", slider=True) + elif settings.tool == 'LENGTH': + layout.itemR(brush, "length_mode", expand=True) + elif settings.tool == 'PUFF': + layout.itemR(brush, "puff_mode", expand=True) - row = col.row(align=True) - row.itemR(brush, "size", slider=True) - row.itemR(brush, "use_size_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "strength", slider=True) - row.itemR(brush, "use_strength_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "jitter", slider=True) - row.itemR(brush, "use_jitter_pressure", toggle=True, text="") - - col.itemR(brush, "blend", text="Blend") - - # Weight Paint Mode # - - elif context.weight_paint_object and brush: - layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight", slider=True) - layout.itemR(context.tool_settings, "auto_normalize", text="Auto Normalize") - - col = layout.column() - row = col.row(align=True) - row.itemR(brush, "size", slider=True) - row.itemR(brush, "use_size_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "strength", slider=True) - row.itemR(brush, "use_strength_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "jitter", slider=True) - row.itemR(brush, "use_jitter_pressure", toggle=True, text="") - - # Vertex Paint Mode # - - elif context.vertex_paint_object and brush: - col = layout.column() - col.itemR(brush, "color", text="") - - row = col.row(align=True) - row.itemR(brush, "size", slider=True) - row.itemR(brush, "use_size_pressure", toggle=True, text="") - - row = col.row(align=True) - row.itemR(brush, "strength", slider=True) - row.itemR(brush, "use_strength_pressure", toggle=True, text="") - - ''' # XXX - TODO - row = col.row(align=True) - row.itemR(brush, "jitter", slider=True) - row.itemR(brush, "use_jitter_pressure", toggle=True, text="") - ''' + # Sculpt Mode # + + elif context.sculpt_object and brush: + col = layout.column() + col.itemS() + col.itemR(brush, "sculpt_tool", expand=True) + col.itemS() + + row = col.row(align=True) + row.itemR(brush, "size", slider=True) + row.itemR(brush, "use_size_pressure", toggle=True, text="") + + if brush.sculpt_tool != 'GRAB': + row = col.row(align=True) + row.itemR(brush, "strength", slider=True) + row.itemR(brush, "use_strength_pressure", text="") + + ''' # XXX - TODO + row = col.row(align=True) + row.itemR(brush, "jitter", slider=True) + row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + ''' + col = layout.column() + + if brush.sculpt_tool in ('DRAW', 'PINCH', 'INFLATE', 'LAYER', 'CLAY'): + col.row().itemR(brush, "direction", expand=True) + + if brush.sculpt_tool == 'LAYER': + col.itemR(brush, "persistent") + col.itemO("sculpt.set_persistent_base") + + # Texture Paint Mode # + + elif context.texture_paint_object and brush: + col = layout.column(align=True) + col.item_enumR(settings, "tool", 'DRAW') + col.item_enumR(settings, "tool", 'SOFTEN') + col.item_enumR(settings, "tool", 'CLONE') + col.item_enumR(settings, "tool", 'SMEAR') + + col = layout.column() + col.itemR(brush, "color", text="") + + row = col.row(align=True) + row.itemR(brush, "size", slider=True) + row.itemR(brush, "use_size_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "strength", slider=True) + row.itemR(brush, "use_strength_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "jitter", slider=True) + row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + + col.itemR(brush, "blend", text="Blend") + + # Weight Paint Mode # + + elif context.weight_paint_object and brush: + layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight", slider=True) + layout.itemR(context.tool_settings, "auto_normalize", text="Auto Normalize") + + col = layout.column() + row = col.row(align=True) + row.itemR(brush, "size", slider=True) + row.itemR(brush, "use_size_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "strength", slider=True) + row.itemR(brush, "use_strength_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "jitter", slider=True) + row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + + # Vertex Paint Mode # + + elif context.vertex_paint_object and brush: + col = layout.column() + col.itemR(brush, "color", text="") + + row = col.row(align=True) + row.itemR(brush, "size", slider=True) + row.itemR(brush, "use_size_pressure", toggle=True, text="") + + row = col.row(align=True) + row.itemR(brush, "strength", slider=True) + row.itemR(brush, "use_strength_pressure", toggle=True, text="") + + ''' # XXX - TODO + row = col.row(align=True) + row.itemR(brush, "jitter", slider=True) + row.itemR(brush, "use_jitter_pressure", toggle=True, text="") + ''' class VIEW3D_PT_tools_brush_stroke(PaintPanel): - bl_label = "Stroke" - bl_default_closed = True + bl_label = "Stroke" + bl_default_closed = True - def poll(self, context): - settings = self.paint_settings(context) - return (settings and settings.brush and (context.sculpt_object or - context.vertex_paint_object or - context.weight_paint_object or - context.texture_paint_object)) + def poll(self, context): + settings = self.paint_settings(context) + return (settings and settings.brush and (context.sculpt_object or + context.vertex_paint_object or + context.weight_paint_object or + context.texture_paint_object)) - def draw(self, context): - layout = self.layout - - settings = self.paint_settings(context) - brush = settings.brush - texture_paint = context.texture_paint_object + def draw(self, context): + layout = self.layout - if context.sculpt_object: - if brush.sculpt_tool != 'LAYER': - layout.itemR(brush, "use_anchor") - layout.itemR(brush, "use_rake") + settings = self.paint_settings(context) + brush = settings.brush + texture_paint = context.texture_paint_object - layout.itemR(brush, "use_airbrush") - col = layout.column() - col.active = brush.use_airbrush - col.itemR(brush, "rate", slider=True) + if context.sculpt_object: + if brush.sculpt_tool != 'LAYER': + layout.itemR(brush, "use_anchor") + layout.itemR(brush, "use_rake") - if not texture_paint: - layout.itemR(brush, "use_smooth_stroke") - col = layout.column() - col.active = brush.use_smooth_stroke - col.itemR(brush, "smooth_stroke_radius", text="Radius", slider=True) - col.itemR(brush, "smooth_stroke_factor", text="Factor", slider=True) + layout.itemR(brush, "use_airbrush") + col = layout.column() + col.active = brush.use_airbrush + col.itemR(brush, "rate", slider=True) - layout.itemR(brush, "use_space") - row = layout.row(align=True) - row.active = brush.use_space - row.itemR(brush, "spacing", text="Distance", slider=True) - if texture_paint: - row.itemR(brush, "use_spacing_pressure", toggle=True, text="") + if not texture_paint: + layout.itemR(brush, "use_smooth_stroke") + col = layout.column() + col.active = brush.use_smooth_stroke + col.itemR(brush, "smooth_stroke_radius", text="Radius", slider=True) + col.itemR(brush, "smooth_stroke_factor", text="Factor", slider=True) + + layout.itemR(brush, "use_space") + row = layout.row(align=True) + row.active = brush.use_space + row.itemR(brush, "spacing", text="Distance", slider=True) + if texture_paint: + row.itemR(brush, "use_spacing_pressure", toggle=True, text="") class VIEW3D_PT_tools_brush_curve(PaintPanel): - bl_label = "Curve" - bl_default_closed = True + bl_label = "Curve" + bl_default_closed = True - def poll(self, context): - settings = self.paint_settings(context) - return (settings and settings.brush and settings.brush.curve) + def poll(self, context): + settings = self.paint_settings(context) + return (settings and settings.brush and settings.brush.curve) - def draw(self, context): - layout = self.layout - - settings = self.paint_settings(context) - brush = settings.brush + def draw(self, context): + layout = self.layout + + settings = self.paint_settings(context) + brush = settings.brush + + layout.template_curve_mapping(brush, "curve") + layout.item_menu_enumO("brush.curve_preset", property="shape") - layout.template_curve_mapping(brush, "curve") - layout.item_menu_enumO("brush.curve_preset", property="shape") - class VIEW3D_PT_sculpt_options(PaintPanel): - bl_label = "Options" + bl_label = "Options" - def poll(self, context): - return context.sculpt_object + def poll(self, context): + return context.sculpt_object - def draw(self, context): - layout = self.layout - - sculpt = context.tool_settings.sculpt + def draw(self, context): + layout = self.layout - col = layout.column() - col.itemR(sculpt, "partial_redraw", text="Partial Refresh") - col.itemR(sculpt, "show_brush") + sculpt = context.tool_settings.sculpt - split = self.layout.split() - - col = split.column() - col.itemL(text="Symmetry:") - col.itemR(sculpt, "symmetry_x", text="X") - col.itemR(sculpt, "symmetry_y", text="Y") - col.itemR(sculpt, "symmetry_z", text="Z") - - col = split.column() - col.itemL(text="Lock:") - col.itemR(sculpt, "lock_x", text="X") - col.itemR(sculpt, "lock_y", text="Y") - col.itemR(sculpt, "lock_z", text="Z") + col = layout.column() + col.itemR(sculpt, "partial_redraw", text="Partial Refresh") + col.itemR(sculpt, "show_brush") + + split = self.layout.split() + + col = split.column() + col.itemL(text="Symmetry:") + col.itemR(sculpt, "symmetry_x", text="X") + col.itemR(sculpt, "symmetry_y", text="Y") + col.itemR(sculpt, "symmetry_z", text="Z") + + col = split.column() + col.itemL(text="Lock:") + col.itemR(sculpt, "lock_x", text="X") + col.itemR(sculpt, "lock_y", text="Y") + col.itemR(sculpt, "lock_z", text="Z") # ********** default tools for weightpaint **************** class VIEW3D_PT_tools_weightpaint(View3DPanel): - bl_context = "weightpaint" - bl_label = "Weight Tools" + bl_context = "weightpaint" + bl_label = "Weight Tools" - def draw(self, context): - layout = self.layout - - wpaint = context.tool_settings.weight_paint + def draw(self, context): + layout = self.layout - col = layout.column() - # col.itemL(text="Blend:") - col.itemO("object.vertex_group_normalize_all", text="Normalize All") - col.itemO("object.vertex_group_normalize", text="Normalize") - col.itemO("object.vertex_group_invert", text="Invert") - col.itemO("object.vertex_group_clean", text="Clean") + wpaint = context.tool_settings.weight_paint + + col = layout.column() + # col.itemL(text="Blend:") + col.itemO("object.vertex_group_normalize_all", text="Normalize All") + col.itemO("object.vertex_group_normalize", text="Normalize") + col.itemO("object.vertex_group_invert", text="Invert") + col.itemO("object.vertex_group_clean", text="Clean") class VIEW3D_PT_tools_weightpaint_options(View3DPanel): - bl_context = "weightpaint" - bl_label = "Options" + bl_context = "weightpaint" + bl_label = "Options" - def draw(self, context): - layout = self.layout - - wpaint = context.tool_settings.weight_paint + def draw(self, context): + layout = self.layout - col = layout.column() - col.itemL(text="Blend:") - col.itemR(wpaint, "mode", text="") - col.itemR(wpaint, "all_faces") - col.itemR(wpaint, "normals") - col.itemR(wpaint, "spray") - col.itemR(wpaint, "vertex_dist", text="Distance") - - - data = context.weight_paint_object.data - if type(data) == bpy.types.Mesh: - col.itemR(data, "use_mirror_x") + wpaint = context.tool_settings.weight_paint + + col = layout.column() + col.itemL(text="Blend:") + col.itemR(wpaint, "mode", text="") + col.itemR(wpaint, "all_faces") + col.itemR(wpaint, "normals") + col.itemR(wpaint, "spray") + col.itemR(wpaint, "vertex_dist", text="Distance") + + + data = context.weight_paint_object.data + if type(data) == bpy.types.Mesh: + col.itemR(data, "use_mirror_x") # Commented out because the Apply button isn't an operator yet, making these settings useless # col.itemL(text="Gamma:") @@ -694,21 +694,21 @@ class VIEW3D_PT_tools_weightpaint_options(View3DPanel): # ********** default tools for vertexpaint **************** class VIEW3D_PT_tools_vertexpaint(View3DPanel): - bl_context = "vertexpaint" - bl_label = "Options" + bl_context = "vertexpaint" + bl_label = "Options" - def draw(self, context): - layout = self.layout - - vpaint = context.tool_settings.vertex_paint + def draw(self, context): + layout = self.layout - col = layout.column() - col.itemL(text="Blend:") - col.itemR(vpaint, "mode", text="") - col.itemR(vpaint, "all_faces") - col.itemR(vpaint, "normals") - col.itemR(vpaint, "spray") - col.itemR(vpaint, "vertex_dist", text="Distance") + vpaint = context.tool_settings.vertex_paint + + col = layout.column() + col.itemL(text="Blend:") + col.itemR(vpaint, "mode", text="") + col.itemR(vpaint, "all_faces") + col.itemR(vpaint, "normals") + col.itemR(vpaint, "spray") + col.itemR(vpaint, "vertex_dist", text="Distance") # Commented out because the Apply button isn't an operator yet, making these settings useless # col.itemL(text="Gamma:") # col.itemR(vpaint, "gamma", text="") @@ -719,118 +719,118 @@ class VIEW3D_PT_tools_vertexpaint(View3DPanel): # ********** default tools for texturepaint **************** class VIEW3D_PT_tools_projectpaint(View3DPanel): - bl_context = "texturepaint" - bl_label = "Project Paint" + bl_context = "texturepaint" + bl_label = "Project Paint" - def poll(self, context): - return context.tool_settings.image_paint.tool != 'SMEAR' + def poll(self, context): + return context.tool_settings.image_paint.tool != 'SMEAR' - def draw_header(self, context): - ipaint = context.tool_settings.image_paint - - self.layout.itemR(ipaint, "use_projection", text="") + def draw_header(self, context): + ipaint = context.tool_settings.image_paint - def draw(self, context): - layout = self.layout - - ipaint = context.tool_settings.image_paint - settings = context.tool_settings.image_paint - use_projection= ipaint.use_projection - - col = layout.column() - sub = col.column() - sub.active = use_projection - sub.itemR(ipaint, "use_occlude") - sub.itemR(ipaint, "use_backface_cull") - - split = layout.split() - - col = split.column() - col.active = (use_projection) - col.itemR(ipaint, "use_normal_falloff") - - col = split.column() - col.active = (ipaint.use_normal_falloff and use_projection) - col.itemR(ipaint, "normal_angle", text="") + self.layout.itemR(ipaint, "use_projection", text="") - split = layout.split(percentage=0.7) - - col = split.column(align=False) - col.active = (use_projection) - col.itemR(ipaint, "use_stencil_layer") - - col = split.column(align=False) - col.active = (use_projection and ipaint.use_stencil_layer) - col.itemR(ipaint, "invert_stencil", text="Inv") + def draw(self, context): + layout = self.layout + + ipaint = context.tool_settings.image_paint + settings = context.tool_settings.image_paint + use_projection= ipaint.use_projection + + col = layout.column() + sub = col.column() + sub.active = use_projection + sub.itemR(ipaint, "use_occlude") + sub.itemR(ipaint, "use_backface_cull") + + split = layout.split() + + col = split.column() + col.active = (use_projection) + col.itemR(ipaint, "use_normal_falloff") + + col = split.column() + col.active = (ipaint.use_normal_falloff and use_projection) + col.itemR(ipaint, "normal_angle", text="") + + split = layout.split(percentage=0.7) + + col = split.column(align=False) + col.active = (use_projection) + col.itemR(ipaint, "use_stencil_layer") + + col = split.column(align=False) + col.active = (use_projection and ipaint.use_stencil_layer) + col.itemR(ipaint, "invert_stencil", text="Inv") + + col = layout.column() + sub = col.column() + sub.active = (settings.tool == 'CLONE') + sub.itemR(ipaint, "use_clone_layer") + + sub = col.column() + sub.itemR(ipaint, "seam_bleed") - col = layout.column() - sub = col.column() - sub.active = (settings.tool == 'CLONE') - sub.itemR(ipaint, "use_clone_layer") - - sub = col.column() - sub.itemR(ipaint, "seam_bleed") - # ********** default tools for particle mode **************** class VIEW3D_PT_tools_particlemode(View3DPanel): - bl_context = "particlemode" - bl_label = "Options" + bl_context = "particlemode" + bl_label = "Options" - def draw(self, context): - layout = self.layout + def draw(self, context): + layout = self.layout - pe = context.tool_settings.particle_edit - ob = pe.object + pe = context.tool_settings.particle_edit + ob = pe.object - layout.itemR(pe, "type", text="") - - if pe.type == 'PARTICLES': - if ob.particle_systems: - if len(ob.particle_systems) > 1: - layout.template_list(ob, "particle_systems", ob, "active_particle_system_index", type='ICONS') - - ptcache = ob.particle_systems[ob.active_particle_system_index].point_cache - else: - for md in ob.modifiers: - if md.type==pe.type: - ptcache = md.point_cache - - if ptcache and len(ptcache.point_cache_list) > 1: - layout.template_list(ptcache, "point_cache_list", ptcache, "active_point_cache_index", type='ICONS') - - - if not pe.editable: - layout.itemL(text="Point cache must be baked") - layout.itemL(text="to enable editing!") - - col = layout.column(align=True) - if pe.hair: - col.active = pe.editable - col.itemR(pe, "emitter_deflect", text="Deflect emitter") - sub = col.row() - sub.active = pe.emitter_deflect - sub.itemR(pe, "emitter_distance", text="Distance") - - col = layout.column(align=True) - col.active = pe.editable - col.itemL(text="Keep:") - col.itemR(pe, "keep_lengths", text="Lenghts") - col.itemR(pe, "keep_root", text="Root") - if not pe.hair: - col.itemL(text="Correct:") - col.itemR(pe, "auto_velocity", text="Velocity") - - col = layout.column(align=True) - col.active = pe.editable - col.itemL(text="Draw:") - col.itemR(pe, "draw_step", text="Path Steps") - if pe.type == 'PARTICLES': - col.itemR(pe, "draw_particles", text="Particles") - col.itemR(pe, "fade_time") - sub = col.row() - sub.active = pe.fade_time - sub.itemR(pe, "fade_frames", slider=True) + layout.itemR(pe, "type", text="") + + if pe.type == 'PARTICLES': + if ob.particle_systems: + if len(ob.particle_systems) > 1: + layout.template_list(ob, "particle_systems", ob, "active_particle_system_index", type='ICONS') + + ptcache = ob.particle_systems[ob.active_particle_system_index].point_cache + else: + for md in ob.modifiers: + if md.type==pe.type: + ptcache = md.point_cache + + if ptcache and len(ptcache.point_cache_list) > 1: + layout.template_list(ptcache, "point_cache_list", ptcache, "active_point_cache_index", type='ICONS') + + + if not pe.editable: + layout.itemL(text="Point cache must be baked") + layout.itemL(text="to enable editing!") + + col = layout.column(align=True) + if pe.hair: + col.active = pe.editable + col.itemR(pe, "emitter_deflect", text="Deflect emitter") + sub = col.row() + sub.active = pe.emitter_deflect + sub.itemR(pe, "emitter_distance", text="Distance") + + col = layout.column(align=True) + col.active = pe.editable + col.itemL(text="Keep:") + col.itemR(pe, "keep_lengths", text="Lenghts") + col.itemR(pe, "keep_root", text="Root") + if not pe.hair: + col.itemL(text="Correct:") + col.itemR(pe, "auto_velocity", text="Velocity") + + col = layout.column(align=True) + col.active = pe.editable + col.itemL(text="Draw:") + col.itemR(pe, "draw_step", text="Path Steps") + if pe.type == 'PARTICLES': + col.itemR(pe, "draw_particles", text="Particles") + col.itemR(pe, "fade_time") + sub = col.row() + sub.active = pe.fade_time + sub.itemR(pe, "fade_frames", slider=True) bpy.types.register(VIEW3D_PT_tools_weightpaint) bpy.types.register(VIEW3D_PT_tools_objectmode) diff --git a/source/blender/python/epy_doc_gen.py b/source/blender/python/epy_doc_gen.py index 851eaa3b6f3..202a1df3502 100644 --- a/source/blender/python/epy_doc_gen.py +++ b/source/blender/python/epy_doc_gen.py @@ -21,17 +21,17 @@ script_help_msg = ''' Usage, run this script from blenders root path once you have compiled blender - ./blender.bin -P source/blender/python/epy_doc_gen.py + ./blender.bin -P source/blender/python/epy_doc_gen.py This will generate rna.py and bpyoperator.py in "./source/blender/python/doc/" Generate html docs by running... - epydoc source/blender/python/doc/*.py -v \\ - -o source/blender/python/doc/html \\ - --inheritance=included \\ - --no-sourcecode \\ - --graph=classtree \\ - --graph-font-size=8 + epydoc source/blender/python/doc/*.py -v \\ + -o source/blender/python/doc/html \\ + --inheritance=included \\ + --no-sourcecode \\ + --graph=classtree \\ + --graph-font-size=8 ''' @@ -47,689 +47,689 @@ INIT_SUBMODULES = {} # store initialized files INIT_SUBMODULES_IMPORTS = {} # dont import the same module twice def append_package(package_path, mod_name): - - init_path = os.path.join(os.path.dirname(package_path), "__init__.py") - - # avoid double ups - if mod_name: - imports = INIT_SUBMODULES_IMPORTS.setdefault(init_path, []) - if mod_name in imports: - return - imports.append(mod_name) - - try: - os.makedirs(os.path.dirname(init_path)) # make the dirs if they are not there - except: - pass - - # Open the new file for the first time, otherwise keep it open. - f = INIT_SUBMODULES.get(init_path) - if f == None: - f = INIT_SUBMODULES[init_path] = open(init_path, 'w') - - if mod_name: - f.write("import %s\n" % mod_name) - - return f + + init_path = os.path.join(os.path.dirname(package_path), "__init__.py") + + # avoid double ups + if mod_name: + imports = INIT_SUBMODULES_IMPORTS.setdefault(init_path, []) + if mod_name in imports: + return + imports.append(mod_name) + + try: + os.makedirs(os.path.dirname(init_path)) # make the dirs if they are not there + except: + pass + + # Open the new file for the first time, otherwise keep it open. + f = INIT_SUBMODULES.get(init_path) + if f == None: + f = INIT_SUBMODULES[init_path] = open(init_path, 'w') + + if mod_name: + f.write("import %s\n" % mod_name) + + return f def append_package_recursive(package_path, BASEPATH): - ''' - assume the last item of package_path will be a file (not a dir thats created) - ''' - - package_path = os.path.splitext(package_path)[0] # incase of .py - - try: - os.makedirs(os.path.join(BASEPATH, os.path.dirname(package_path))) # make the dirs if they are not there - except: - pass - - new_path = BASEPATH - - for mod_name in package_path.split(os.sep): - init_path = os.path.join(new_path, "__init__.py") - new_path = os.path.join(new_path, mod_name) - append_package(init_path, mod_name) + ''' + assume the last item of package_path will be a file (not a dir thats created) + ''' + + package_path = os.path.splitext(package_path)[0] # incase of .py + + try: + os.makedirs(os.path.join(BASEPATH, os.path.dirname(package_path))) # make the dirs if they are not there + except: + pass + + new_path = BASEPATH + + for mod_name in package_path.split(os.sep): + init_path = os.path.join(new_path, "__init__.py") + new_path = os.path.join(new_path, mod_name) + append_package(init_path, mod_name) def open_submodule(subpath, BASEPATH): - ''' - This is a utility function that lets us quickly add submodules - ''' - - # create all the package paths leading up to this module - append_package_recursive(subpath, BASEPATH) - - module_name = os.path.basename( os.path.splitext(subpath)[0] ) - mod_path = os.path.join(BASEPATH, subpath) - - # Open the new file for the first time, otherwise keep it open. - f = SUBMODULES.get(mod_path) - if f == None: - f = SUBMODULES[mod_path] = open(mod_path, 'w') + ''' + This is a utility function that lets us quickly add submodules + ''' - f = open(mod_path, 'w') - return f + # create all the package paths leading up to this module + append_package_recursive(subpath, BASEPATH) + + module_name = os.path.basename( os.path.splitext(subpath)[0] ) + mod_path = os.path.join(BASEPATH, subpath) + + # Open the new file for the first time, otherwise keep it open. + f = SUBMODULES.get(mod_path) + if f == None: + f = SUBMODULES[mod_path] = open(mod_path, 'w') + + f = open(mod_path, 'w') + return f def close_all(): - for files in (INIT_SUBMODULES.values(), SUBMODULES.values()): - for f in files: - if f.name.endswith('.py'): - f_name = f.name - f.close() - - f = open(f_name, 'a') - f.write("\ndel __package__\n") # annoying, no need do show this - - - f.close() + for files in (INIT_SUBMODULES.values(), SUBMODULES.values()): + for f in files: + if f.name.endswith('.py'): + f_name = f.name + f.close() + + f = open(f_name, 'a') + f.write("\ndel __package__\n") # annoying, no need do show this + + + f.close() def range_str(val): - if val < -10000000: return '-inf' - if val > 10000000: return 'inf' - if type(val)==float: - return '%g' % val - else: - return str(val) + if val < -10000000: return '-inf' + if val > 10000000: return 'inf' + if type(val)==float: + return '%g' % val + else: + return str(val) def get_array_str(length): - if length > 0: return ' array of %d items' % length - else: return '' + if length > 0: return ' array of %d items' % length + else: return '' def full_rna_struct_path(rna_struct): - ''' - Needed when referencing one struct from another - ''' - nested = rna_struct.nested - if nested: - return "%s.%s" % (full_rna_struct_path(nested), rna_struct.identifier) - else: - return rna_struct.identifier + ''' + Needed when referencing one struct from another + ''' + nested = rna_struct.nested + if nested: + return "%s.%s" % (full_rna_struct_path(nested), rna_struct.identifier) + else: + return rna_struct.identifier def rna_id_ignore(rna_id): - if rna_id == "rna_type": - return True - - if "_OT_" in rna_id: - return True - if "_MT_" in rna_id: - return True - if "_PT_" in rna_id: - return True - - return False + if rna_id == "rna_type": + return True + + if "_OT_" in rna_id: + return True + if "_MT_" in rna_id: + return True + if "_PT_" in rna_id: + return True + + return False def write_func(rna, ident, out, func_type): - # Keyword attributes - kw_args = [] # "foo = 1", "bar=0.5", "spam='ENUM'" - kw_arg_attrs = [] # "@type mode: int" - - rna_struct= rna.rna_type - - # Operators and functions work differently - if func_type=='OPERATOR': - rna_func_name = rna_struct.identifier.split("_OT_")[-1] - rna_func_desc = rna_struct.description.strip() - items = rna_struct.properties.items() - else: - rna_func_name = rna.identifier - rna_func_desc = rna.description.strip() - items = rna.parameters.items() - - - for rna_prop_identifier, rna_prop in items: - if rna_id_ignore(rna_prop_identifier): - continue - - # clear vars - val = val_error = val_str = rna_prop_type = None - - # ['rna_type', 'name', 'array_length', 'description', 'hard_max', 'hard_min', 'identifier', 'precision', 'readonly', 'soft_max', 'soft_min', 'step', 'subtype', 'type'] - #rna_prop= op_rna.rna_type.properties[attr] - rna_prop_type = rna_prop.type.lower() # enum, float, int, boolean - - - # only for rna functions, operators should not get pointers as args - if rna_prop_type=='pointer': - rna_prop_type_refine = "L{%s}" % rna_prop.fixed_type.identifier - else: - rna_prop_type_refine = rna_prop_type - - - try: length = rna_prop.array_length - except: length = 0 - - array_str = get_array_str(length) - - if rna_prop.use_return: - kw_type_str= "@rtype: %s%s" % (rna_prop_type_refine, array_str) - kw_param_str= "@return: %s" % (rna_prop.description.strip()) - else: - kw_type_str= "@type %s: %s%s" % (rna_prop_identifier, rna_prop_type_refine, array_str) - kw_param_str= "@param %s: %s" % (rna_prop_identifier, rna_prop.description.strip()) - - kw_param_set = False - - if func_type=='OPERATOR': - try: - val = getattr(rna, rna_prop_identifier) - val_error = False - except: - val = "''" - val_error = True - - - if val_error: - val_str = val - elif rna_prop_type=='float': - if length==0: - val_str= '%g' % val - if '.' not in val_str and '-' not in val_str: # value could be 1e-05 - val_str += '.0' - else: - # array - val_str = str(tuple(val)) - - kw_param_str += (' in (%s, %s)' % (range_str(rna_prop.hard_min), range_str(rna_prop.hard_max))) - kw_param_set= True - - elif rna_prop_type=='int': - if length==0: - val_str='%d' % val - else: - val_str = str(tuple(val)) - - # print(dir(rna_prop)) - kw_param_str += (' in (%s, %s)' % (range_str(rna_prop.hard_min), range_str(rna_prop.hard_max))) - # These strings dont have a max length??? - #kw_param_str += ' (maximum length of %s)' % (rna_prop.max_length) - kw_param_set= True - - elif rna_prop_type=='boolean': - if length==0: - if val: val_str='True' - else: val_str='False' - else: - val_str = str(tuple(val)) - - elif rna_prop_type=='enum': - # no array here? - val_str="'%s'" % val - # Too cramped - kw_param_str += (' in (%s)' % ', '.join(rna_prop.items.keys())) - - kw_param_set= True - - elif rna_prop_type=='string': - # no array here? - val_str='"%s"' % val - - # todo - collection - array - # print (rna_prop.type) - - kw_args.append('%s = %s' % (rna_prop_identifier, val_str)) - - # stora - else: - # currently functions dont have a default value - if not rna_prop.use_return: - kw_args.append('%s' % (rna_prop_identifier)) - else: - kw_param_set = True + # Keyword attributes + kw_args = [] # "foo = 1", "bar=0.5", "spam='ENUM'" + kw_arg_attrs = [] # "@type mode: int" + + rna_struct= rna.rna_type + + # Operators and functions work differently + if func_type=='OPERATOR': + rna_func_name = rna_struct.identifier.split("_OT_")[-1] + rna_func_desc = rna_struct.description.strip() + items = rna_struct.properties.items() + else: + rna_func_name = rna.identifier + rna_func_desc = rna.description.strip() + items = rna.parameters.items() + + + for rna_prop_identifier, rna_prop in items: + if rna_id_ignore(rna_prop_identifier): + continue + + # clear vars + val = val_error = val_str = rna_prop_type = None + + # ['rna_type', 'name', 'array_length', 'description', 'hard_max', 'hard_min', 'identifier', 'precision', 'readonly', 'soft_max', 'soft_min', 'step', 'subtype', 'type'] + #rna_prop= op_rna.rna_type.properties[attr] + rna_prop_type = rna_prop.type.lower() # enum, float, int, boolean + + + # only for rna functions, operators should not get pointers as args + if rna_prop_type=='pointer': + rna_prop_type_refine = "L{%s}" % rna_prop.fixed_type.identifier + else: + rna_prop_type_refine = rna_prop_type + + + try: length = rna_prop.array_length + except: length = 0 + + array_str = get_array_str(length) + + if rna_prop.use_return: + kw_type_str= "@rtype: %s%s" % (rna_prop_type_refine, array_str) + kw_param_str= "@return: %s" % (rna_prop.description.strip()) + else: + kw_type_str= "@type %s: %s%s" % (rna_prop_identifier, rna_prop_type_refine, array_str) + kw_param_str= "@param %s: %s" % (rna_prop_identifier, rna_prop.description.strip()) + + kw_param_set = False + + if func_type=='OPERATOR': + try: + val = getattr(rna, rna_prop_identifier) + val_error = False + except: + val = "''" + val_error = True + + + if val_error: + val_str = val + elif rna_prop_type=='float': + if length==0: + val_str= '%g' % val + if '.' not in val_str and '-' not in val_str: # value could be 1e-05 + val_str += '.0' + else: + # array + val_str = str(tuple(val)) + + kw_param_str += (' in (%s, %s)' % (range_str(rna_prop.hard_min), range_str(rna_prop.hard_max))) + kw_param_set= True + + elif rna_prop_type=='int': + if length==0: + val_str='%d' % val + else: + val_str = str(tuple(val)) + + # print(dir(rna_prop)) + kw_param_str += (' in (%s, %s)' % (range_str(rna_prop.hard_min), range_str(rna_prop.hard_max))) + # These strings dont have a max length??? + #kw_param_str += ' (maximum length of %s)' % (rna_prop.max_length) + kw_param_set= True + + elif rna_prop_type=='boolean': + if length==0: + if val: val_str='True' + else: val_str='False' + else: + val_str = str(tuple(val)) + + elif rna_prop_type=='enum': + # no array here? + val_str="'%s'" % val + # Too cramped + kw_param_str += (' in (%s)' % ', '.join(rna_prop.items.keys())) + + kw_param_set= True + + elif rna_prop_type=='string': + # no array here? + val_str='"%s"' % val + + # todo - collection - array + # print (rna_prop.type) + + kw_args.append('%s = %s' % (rna_prop_identifier, val_str)) + + # stora + else: + # currently functions dont have a default value + if not rna_prop.use_return: + kw_args.append('%s' % (rna_prop_identifier)) + else: + kw_param_set = True + + + # Same for operators and functions + kw_arg_attrs.append(kw_type_str) + if kw_param_set: + kw_arg_attrs.append(kw_param_str) + + + + out.write(ident+'def %s(%s):\n' % (rna_func_name, ', '.join(kw_args))) + out.write(ident+'\t"""\n') + out.write(ident+'\t%s\n' % rna_func_desc) + for desc in kw_arg_attrs: + out.write(ident+'\t%s\n' % desc) + + # out.write(ident+'\t@rtype: None\n') # implicit + out.write(ident+'\t"""\n') - - # Same for operators and functions - kw_arg_attrs.append(kw_type_str) - if kw_param_set: - kw_arg_attrs.append(kw_param_str) - - - - out.write(ident+'def %s(%s):\n' % (rna_func_name, ', '.join(kw_args))) - out.write(ident+'\t"""\n') - out.write(ident+'\t%s\n' % rna_func_desc) - for desc in kw_arg_attrs: - out.write(ident+'\t%s\n' % desc) - - # out.write(ident+'\t@rtype: None\n') # implicit - out.write(ident+'\t"""\n') - def rna2epy(BASEPATH): - - # Use for faster lookups - # use rna_struct.identifier as the key for each dict - rna_struct_dict = {} # store identifier:rna lookups - rna_full_path_dict = {} # store the result of full_rna_struct_path(rna_struct) - rna_children_dict = {} # store all rna_structs nested from here - rna_references_dict = {} # store a list of rna path strings that reference this type - rna_functions_dict = {} # store all functions directly in this type (not inherited) - rna_words = set() - - # def write_func(rna_func, ident): - - - def write_struct(rna_struct, ident): - identifier = rna_struct.identifier - - rna_base = rna_struct.base - - if rna_base: - out.write(ident+ 'class %s(%s):\n' % (identifier, rna_base.identifier)) - rna_base_prop_keys = rna_base.properties.keys() # could be cached - rna_base_func_keys = [f.identifier for f in rna_base.functions] - else: - out.write(ident+ 'class %s:\n' % identifier) - rna_base_prop_keys = [] - rna_base_func_keys = [] - - out.write(ident+ '\t"""\n') - - title = 'The %s Object' % rna_struct.name - description = rna_struct.description.strip() - out.write(ident+ '\t%s\n' % title) - out.write(ident+ '\t%s\n' % ('=' * len(title))) - out.write(ident+ '\t\t%s\n' % description) - rna_words.update(description.split()) - - - # For convenience, give a list of all places were used. - rna_refs= rna_references_dict[identifier] - - if rna_refs: - out.write(ident+ '\t\t\n') - out.write(ident+ '\t\tReferences\n') - out.write(ident+ '\t\t==========\n') - - for rna_ref_string in rna_refs: - out.write(ident+ '\t\t\t- L{%s}\n' % rna_ref_string) - - out.write(ident+ '\t\t\n') - - else: - out.write(ident+ '\t\t\n') - out.write(ident+ '\t\t(no references to this struct found)\n') - out.write(ident+ '\t\t\n') - - for rna_prop_identifier, rna_prop in rna_struct.properties.items(): - - if rna_prop_identifier=='RNA': continue - if rna_id_ignore(rna_prop_identifier): continue - if rna_prop_identifier in rna_base_prop_keys: continue # does this prop exist in our parent class, if so skip - - rna_desc = rna_prop.description.strip() - - if rna_desc: rna_words.update(rna_desc.split()) - if not rna_desc: rna_desc = rna_prop.name - if not rna_desc: rna_desc = 'Note - No documentation for this property!' - - rna_prop_type = rna_prop.type.lower() - - if rna_prop_type=='collection': collection_str = 'Collection of ' - else: collection_str = '' - - try: rna_prop_ptr = rna_prop.fixed_type - except: rna_prop_ptr = None - - try: length = rna_prop.array_length - except: length = 0 - - array_str = get_array_str(length) - - if rna_prop.editable: readonly_str = '' - else: readonly_str = ' (readonly)' - - if rna_prop_ptr: # Use the pointer type - out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) - out.write(ident+ '\t@type %s: %sL{%s}%s%s\n' % (rna_prop_identifier, collection_str, rna_prop_ptr.identifier, array_str, readonly_str)) - else: - if rna_prop_type == 'enum': - if 0: - out.write(ident+ '\t@ivar %s: %s in (%s)\n' % (rna_prop_identifier, rna_desc, ', '.join(rna_prop.items.keys()))) - else: - out.write(ident+ '\t@ivar %s: %s in...\n' % (rna_prop_identifier, rna_desc)) - for e, e_rna_prop in rna_prop.items.items(): - #out.write(ident+ '\t\t- %s: %s\n' % (e, e_rna_prop.description)) # XXX - segfaults, FIXME - out.write(ident+ '\t\t- %s\n' % e) - - out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) - elif rna_prop_type == 'int' or rna_prop_type == 'float': - out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) - out.write(ident+ '\t@type %s: %s%s%s in [%s, %s]\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str, range_str(rna_prop.hard_min), range_str(rna_prop.hard_max) )) - elif rna_prop_type == 'string': - out.write(ident+ '\t@ivar %s: %s (maximum length of %s)\n' % (rna_prop_identifier, rna_desc, rna_prop.max_length)) - out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) - else: - out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) - out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) - - - out.write(ident+ '\t"""\n\n') - - - # Write functions - # for rna_func in rna_struct.functions: # Better ignore inherited (line below) - for rna_func in rna_functions_dict[identifier]: - if rna_func not in rna_base_func_keys: - write_func(rna_func, ident+'\t', out, 'FUNCTION') - - out.write('\n') - - # Now write children recursively - for child in rna_children_dict[identifier]: - write_struct(child, ident + '\t') - - - - # out = open(target_path, 'w') - out = open_submodule("types.py", BASEPATH) # bpy.types - def base_id(rna_struct): - try: return rna_struct.base.identifier - except: return '' # invalid id + # Use for faster lookups + # use rna_struct.identifier as the key for each dict + rna_struct_dict = {} # store identifier:rna lookups + rna_full_path_dict = {} # store the result of full_rna_struct_path(rna_struct) + rna_children_dict = {} # store all rna_structs nested from here + rna_references_dict = {} # store a list of rna path strings that reference this type + rna_functions_dict = {} # store all functions directly in this type (not inherited) + rna_words = set() + + # def write_func(rna_func, ident): + + + def write_struct(rna_struct, ident): + identifier = rna_struct.identifier + + rna_base = rna_struct.base + + if rna_base: + out.write(ident+ 'class %s(%s):\n' % (identifier, rna_base.identifier)) + rna_base_prop_keys = rna_base.properties.keys() # could be cached + rna_base_func_keys = [f.identifier for f in rna_base.functions] + else: + out.write(ident+ 'class %s:\n' % identifier) + rna_base_prop_keys = [] + rna_base_func_keys = [] + + out.write(ident+ '\t"""\n') + + title = 'The %s Object' % rna_struct.name + description = rna_struct.description.strip() + out.write(ident+ '\t%s\n' % title) + out.write(ident+ '\t%s\n' % ('=' * len(title))) + out.write(ident+ '\t\t%s\n' % description) + rna_words.update(description.split()) + + + # For convenience, give a list of all places were used. + rna_refs= rna_references_dict[identifier] + + if rna_refs: + out.write(ident+ '\t\t\n') + out.write(ident+ '\t\tReferences\n') + out.write(ident+ '\t\t==========\n') + + for rna_ref_string in rna_refs: + out.write(ident+ '\t\t\t- L{%s}\n' % rna_ref_string) + + out.write(ident+ '\t\t\n') + + else: + out.write(ident+ '\t\t\n') + out.write(ident+ '\t\t(no references to this struct found)\n') + out.write(ident+ '\t\t\n') + + for rna_prop_identifier, rna_prop in rna_struct.properties.items(): + + if rna_prop_identifier=='RNA': continue + if rna_id_ignore(rna_prop_identifier): continue + if rna_prop_identifier in rna_base_prop_keys: continue # does this prop exist in our parent class, if so skip + + rna_desc = rna_prop.description.strip() + + if rna_desc: rna_words.update(rna_desc.split()) + if not rna_desc: rna_desc = rna_prop.name + if not rna_desc: rna_desc = 'Note - No documentation for this property!' + + rna_prop_type = rna_prop.type.lower() + + if rna_prop_type=='collection': collection_str = 'Collection of ' + else: collection_str = '' + + try: rna_prop_ptr = rna_prop.fixed_type + except: rna_prop_ptr = None + + try: length = rna_prop.array_length + except: length = 0 + + array_str = get_array_str(length) + + if rna_prop.editable: readonly_str = '' + else: readonly_str = ' (readonly)' + + if rna_prop_ptr: # Use the pointer type + out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) + out.write(ident+ '\t@type %s: %sL{%s}%s%s\n' % (rna_prop_identifier, collection_str, rna_prop_ptr.identifier, array_str, readonly_str)) + else: + if rna_prop_type == 'enum': + if 0: + out.write(ident+ '\t@ivar %s: %s in (%s)\n' % (rna_prop_identifier, rna_desc, ', '.join(rna_prop.items.keys()))) + else: + out.write(ident+ '\t@ivar %s: %s in...\n' % (rna_prop_identifier, rna_desc)) + for e, e_rna_prop in rna_prop.items.items(): + #out.write(ident+ '\t\t- %s: %s\n' % (e, e_rna_prop.description)) # XXX - segfaults, FIXME + out.write(ident+ '\t\t- %s\n' % e) + + out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) + elif rna_prop_type == 'int' or rna_prop_type == 'float': + out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) + out.write(ident+ '\t@type %s: %s%s%s in [%s, %s]\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str, range_str(rna_prop.hard_min), range_str(rna_prop.hard_max) )) + elif rna_prop_type == 'string': + out.write(ident+ '\t@ivar %s: %s (maximum length of %s)\n' % (rna_prop_identifier, rna_desc, rna_prop.max_length)) + out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) + else: + out.write(ident+ '\t@ivar %s: %s\n' % (rna_prop_identifier, rna_desc)) + out.write(ident+ '\t@type %s: %s%s%s\n' % (rna_prop_identifier, rna_prop_type, array_str, readonly_str)) + + + out.write(ident+ '\t"""\n\n') + + + # Write functions + # for rna_func in rna_struct.functions: # Better ignore inherited (line below) + for rna_func in rna_functions_dict[identifier]: + if rna_func not in rna_base_func_keys: + write_func(rna_func, ident+'\t', out, 'FUNCTION') + + out.write('\n') + + # Now write children recursively + for child in rna_children_dict[identifier]: + write_struct(child, ident + '\t') + + + + # out = open(target_path, 'w') + out = open_submodule("types.py", BASEPATH) # bpy.types + + def base_id(rna_struct): + try: return rna_struct.base.identifier + except: return '' # invalid id + + #structs = [(base_id(rna_struct), rna_struct.identifier, rna_struct) for rna_struct in bpy.doc.structs.values()] + ''' + structs = [] + for rna_struct in bpy.doc.structs.values(): + structs.append( (base_id(rna_struct), rna_struct.identifier, rna_struct) ) + ''' + structs = [] + for rna_type_name in dir(bpy.types): + rna_type = getattr(bpy.types, rna_type_name) + + try: rna_struct = rna_type.bl_rna + except: rna_struct = None + + if rna_struct: + #if not rna_type_name.startswith('__'): + + identifier = rna_struct.identifier + + if not rna_id_ignore(identifier): + structs.append( (base_id(rna_struct), identifier, rna_struct) ) + + # Simple lookup + rna_struct_dict[identifier] = rna_struct + + # Store full rna path 'GameObjectSettings' -> 'Object.GameObjectSettings' + rna_full_path_dict[identifier] = full_rna_struct_path(rna_struct) + + # Store a list of functions, remove inherited later + rna_functions_dict[identifier]= list(rna_struct.functions) + + + # fill in these later + rna_children_dict[identifier]= [] + rna_references_dict[identifier]= [] + + + else: + print("Ignoring", rna_type_name) + + + # Sucks but we need to copy this so we can check original parent functions + rna_functions_dict__copy = {} + for key, val in rna_functions_dict.items(): + rna_functions_dict__copy[key] = val[:] + + + structs.sort() # not needed but speeds up sort below, setting items without an inheritance first + + # Arrange so classes are always defined in the correct order + deps_ok = False + while deps_ok == False: + deps_ok = True + rna_done = set() + + for i, (rna_base, identifier, rna_struct) in enumerate(structs): + + rna_done.add(identifier) + + if rna_base and rna_base not in rna_done: + deps_ok = False + data = structs.pop(i) + ok = False + while i < len(structs): + if structs[i][1]==rna_base: + structs.insert(i+1, data) # insert after the item we depend on. + ok = True + break + i+=1 + + if not ok: + print('Dependancy "%s" could not be found for "%s"' % (identifier, rna_base)) + + break + + # Done ordering structs + + + # precalc vars to avoid a lot of looping + for (rna_base, identifier, rna_struct) in structs: + + if rna_base: + rna_base_prop_keys = rna_struct_dict[rna_base].properties.keys() # could cache + rna_base_func_keys = [f.identifier for f in rna_struct_dict[rna_base].functions] + else: + rna_base_prop_keys = [] + rna_base_func_keys= [] + + # rna_struct_path = full_rna_struct_path(rna_struct) + rna_struct_path = rna_full_path_dict[identifier] + + for rna_prop_identifier, rna_prop in rna_struct.properties.items(): + + if rna_prop_identifier=='RNA': continue + if rna_id_ignore(rna_prop_identifier): continue + if rna_prop_identifier in rna_base_prop_keys: continue + + try: rna_prop_ptr = rna_prop.fixed_type + except: rna_prop_ptr = None + + # Does this property point to me? + if rna_prop_ptr: + rna_references_dict[rna_prop_ptr.identifier].append( "%s.%s" % (rna_struct_path, rna_prop_identifier) ) + + for rna_func in rna_struct.functions: + for rna_prop_identifier, rna_prop in rna_func.parameters.items(): + + if rna_prop_identifier=='RNA': continue + if rna_id_ignore(rna_prop_identifier): continue + if rna_prop_identifier in rna_base_func_keys: continue + + + try: rna_prop_ptr = rna_prop.fixed_type + except: rna_prop_ptr = None + + # Does this property point to me? + if rna_prop_ptr: + rna_references_dict[rna_prop_ptr.identifier].append( "%s.%s" % (rna_struct_path, rna_func.identifier) ) + + + # Store nested children + nested = rna_struct.nested + if nested: + rna_children_dict[nested.identifier].append(rna_struct) + + + if rna_base: + rna_funcs = rna_functions_dict[identifier] + if rna_funcs: + # Remove inherited functions if we have any + rna_base_funcs = rna_functions_dict__copy[rna_base] + rna_funcs[:] = [f for f in rna_funcs if f not in rna_base_funcs] + + rna_functions_dict__copy.clear() + del rna_functions_dict__copy + + # Sort the refs, just reads nicer + for rna_refs in rna_references_dict.values(): + rna_refs.sort() + + for (rna_base, identifier, rna_struct) in structs: + if rna_struct.nested: + continue + + write_struct(rna_struct, '') + + + out.write('\n') + out.close() + + # # We could also just run.... + # os.system('epydoc source/blender/python/doc/rna.py -o ./source/blender/python/doc/html -v') + + target_path = os.path.join(BASEPATH, "dump.py") # XXX - used for other funcs + + # Write graphviz + out= open(target_path.replace('.py', '.dot'), 'w') + out.write('digraph "rna data api" {\n') + out.write('\tnode [style=filled, shape = "box"];\n') + out.write('\toverlap=false;\n') + out.write('\trankdir = LR;\n') + out.write('\tsplines=true;\n') + out.write('\tratio=auto;\n') + + + + out.write('\tsize="10,10"\n') + #out.write('\tpage="8.5,11"\n') + #out.write('\tcenter=""\n') + + def isop(rna_struct): + return '_OT_' in rna_struct.identifier + + + for (rna_base, identifier, rna_struct) in structs: + if isop(rna_struct): + continue + + base = rna_struct.base + + + out.write('\t"%s";\n' % identifier) + + for (rna_base, identifier, rna_struct) in structs: + + if isop(rna_struct): + continue + + base = rna_struct.base + + if base and not isop(base): + out.write('\t"%s" -> "%s" [label="(base)" weight=1.0];\n' % (base.identifier, identifier)) + + nested = rna_struct.nested + if nested and not isop(nested): + out.write('\t"%s" -> "%s" [label="(nested)" weight=1.0];\n' % (nested.identifier, identifier)) + + + + rna_refs= rna_references_dict[identifier] + + for rna_ref_string in rna_refs: + + if '_OT_' in rna_ref_string: + continue + + ref = rna_ref_string.split('.')[-2] + out.write('\t"%s" -> "%s" [label="%s" weight=0.01];\n' % (ref, identifier, rna_ref_string)) + + + out.write('}\n') + out.close() + + # # We could also just run.... + # os.system('dot source/blender/python/doc/rna.dot -Tsvg -o ./source/blender/python/doc/rna.svg') + + + out= open(target_path.replace('.py', '.words'), 'w') + rna_words = list(rna_words) + rna_words.sort() + for w in rna_words: + out.write('%s\n' % w) - #structs = [(base_id(rna_struct), rna_struct.identifier, rna_struct) for rna_struct in bpy.doc.structs.values()] - ''' - structs = [] - for rna_struct in bpy.doc.structs.values(): - structs.append( (base_id(rna_struct), rna_struct.identifier, rna_struct) ) - ''' - structs = [] - for rna_type_name in dir(bpy.types): - rna_type = getattr(bpy.types, rna_type_name) - - try: rna_struct = rna_type.bl_rna - except: rna_struct = None - - if rna_struct: - #if not rna_type_name.startswith('__'): - - identifier = rna_struct.identifier - - if not rna_id_ignore(identifier): - structs.append( (base_id(rna_struct), identifier, rna_struct) ) - - # Simple lookup - rna_struct_dict[identifier] = rna_struct - - # Store full rna path 'GameObjectSettings' -> 'Object.GameObjectSettings' - rna_full_path_dict[identifier] = full_rna_struct_path(rna_struct) - - # Store a list of functions, remove inherited later - rna_functions_dict[identifier]= list(rna_struct.functions) - - - # fill in these later - rna_children_dict[identifier]= [] - rna_references_dict[identifier]= [] - - - else: - print("Ignoring", rna_type_name) - - - # Sucks but we need to copy this so we can check original parent functions - rna_functions_dict__copy = {} - for key, val in rna_functions_dict.items(): - rna_functions_dict__copy[key] = val[:] - - - structs.sort() # not needed but speeds up sort below, setting items without an inheritance first - - # Arrange so classes are always defined in the correct order - deps_ok = False - while deps_ok == False: - deps_ok = True - rna_done = set() - - for i, (rna_base, identifier, rna_struct) in enumerate(structs): - - rna_done.add(identifier) - - if rna_base and rna_base not in rna_done: - deps_ok = False - data = structs.pop(i) - ok = False - while i < len(structs): - if structs[i][1]==rna_base: - structs.insert(i+1, data) # insert after the item we depend on. - ok = True - break - i+=1 - - if not ok: - print('Dependancy "%s" could not be found for "%s"' % (identifier, rna_base)) - - break - - # Done ordering structs - - - # precalc vars to avoid a lot of looping - for (rna_base, identifier, rna_struct) in structs: - - if rna_base: - rna_base_prop_keys = rna_struct_dict[rna_base].properties.keys() # could cache - rna_base_func_keys = [f.identifier for f in rna_struct_dict[rna_base].functions] - else: - rna_base_prop_keys = [] - rna_base_func_keys= [] - - # rna_struct_path = full_rna_struct_path(rna_struct) - rna_struct_path = rna_full_path_dict[identifier] - - for rna_prop_identifier, rna_prop in rna_struct.properties.items(): - - if rna_prop_identifier=='RNA': continue - if rna_id_ignore(rna_prop_identifier): continue - if rna_prop_identifier in rna_base_prop_keys: continue - - try: rna_prop_ptr = rna_prop.fixed_type - except: rna_prop_ptr = None - - # Does this property point to me? - if rna_prop_ptr: - rna_references_dict[rna_prop_ptr.identifier].append( "%s.%s" % (rna_struct_path, rna_prop_identifier) ) - - for rna_func in rna_struct.functions: - for rna_prop_identifier, rna_prop in rna_func.parameters.items(): - - if rna_prop_identifier=='RNA': continue - if rna_id_ignore(rna_prop_identifier): continue - if rna_prop_identifier in rna_base_func_keys: continue - - - try: rna_prop_ptr = rna_prop.fixed_type - except: rna_prop_ptr = None - - # Does this property point to me? - if rna_prop_ptr: - rna_references_dict[rna_prop_ptr.identifier].append( "%s.%s" % (rna_struct_path, rna_func.identifier) ) - - - # Store nested children - nested = rna_struct.nested - if nested: - rna_children_dict[nested.identifier].append(rna_struct) - - - if rna_base: - rna_funcs = rna_functions_dict[identifier] - if rna_funcs: - # Remove inherited functions if we have any - rna_base_funcs = rna_functions_dict__copy[rna_base] - rna_funcs[:] = [f for f in rna_funcs if f not in rna_base_funcs] - - rna_functions_dict__copy.clear() - del rna_functions_dict__copy - - # Sort the refs, just reads nicer - for rna_refs in rna_references_dict.values(): - rna_refs.sort() - - for (rna_base, identifier, rna_struct) in structs: - if rna_struct.nested: - continue - - write_struct(rna_struct, '') - - - out.write('\n') - out.close() - - # # We could also just run.... - # os.system('epydoc source/blender/python/doc/rna.py -o ./source/blender/python/doc/html -v') - - target_path = os.path.join(BASEPATH, "dump.py") # XXX - used for other funcs - - # Write graphviz - out= open(target_path.replace('.py', '.dot'), 'w') - out.write('digraph "rna data api" {\n') - out.write('\tnode [style=filled, shape = "box"];\n') - out.write('\toverlap=false;\n') - out.write('\trankdir = LR;\n') - out.write('\tsplines=true;\n') - out.write('\tratio=auto;\n') - - - - out.write('\tsize="10,10"\n') - #out.write('\tpage="8.5,11"\n') - #out.write('\tcenter=""\n') - - def isop(rna_struct): - return '_OT_' in rna_struct.identifier - - - for (rna_base, identifier, rna_struct) in structs: - if isop(rna_struct): - continue - - base = rna_struct.base - - - out.write('\t"%s";\n' % identifier) - - for (rna_base, identifier, rna_struct) in structs: - - if isop(rna_struct): - continue - - base = rna_struct.base - - if base and not isop(base): - out.write('\t"%s" -> "%s" [label="(base)" weight=1.0];\n' % (base.identifier, identifier)) - - nested = rna_struct.nested - if nested and not isop(nested): - out.write('\t"%s" -> "%s" [label="(nested)" weight=1.0];\n' % (nested.identifier, identifier)) - - - - rna_refs= rna_references_dict[identifier] - - for rna_ref_string in rna_refs: - - if '_OT_' in rna_ref_string: - continue - - ref = rna_ref_string.split('.')[-2] - out.write('\t"%s" -> "%s" [label="%s" weight=0.01];\n' % (ref, identifier, rna_ref_string)) - - - out.write('}\n') - out.close() - - # # We could also just run.... - # os.system('dot source/blender/python/doc/rna.dot -Tsvg -o ./source/blender/python/doc/rna.svg') - - - out= open(target_path.replace('.py', '.words'), 'w') - rna_words = list(rna_words) - rna_words.sort() - for w in rna_words: - out.write('%s\n' % w) - def op2epy(BASEPATH): - # out = open(target_path, 'w') - - op_mods = dir(bpy.ops) - op_mods.remove('add') - op_mods.remove('remove') - - for op_mod_name in sorted(op_mods): - if op_mod_name.startswith('__'): - continue - - # open the submodule - mod_path = os.path.join("ops", op_mod_name + ".py") - out = open_submodule(mod_path, BASEPATH) + # out = open(target_path, 'w') + + op_mods = dir(bpy.ops) + op_mods.remove('add') + op_mods.remove('remove') + + for op_mod_name in sorted(op_mods): + if op_mod_name.startswith('__'): + continue + + # open the submodule + mod_path = os.path.join("ops", op_mod_name + ".py") + out = open_submodule(mod_path, BASEPATH) - op_mod = getattr(bpy.ops, op_mod_name) - operators = dir(op_mod) - for op in sorted(operators): - # rna = getattr(bpy.types, op).bl_rna - rna = getattr(op_mod, op).get_rna() - write_func(rna, '', out, 'OPERATOR') - - out.write('\n') - out.close() + op_mod = getattr(bpy.ops, op_mod_name) + operators = dir(op_mod) + for op in sorted(operators): + # rna = getattr(bpy.types, op).bl_rna + rna = getattr(op_mod, op).get_rna() + write_func(rna, '', out, 'OPERATOR') + + out.write('\n') + out.close() def misc2epy(BASEPATH): - ''' - Hard coded modules, try to avoid adding stuff here - ''' - - f = append_package(os.path.join(BASEPATH, ""), ""); # add a slash on the end of the base path - f.write(''' + ''' + Hard coded modules, try to avoid adding stuff here + ''' + + f = append_package(os.path.join(BASEPATH, ""), ""); # add a slash on the end of the base path + f.write(''' """ @type data: L{bpy.types.Main} @var data: blender data is accessed from here """ ''') - f = open_submodule("props.py", BASEPATH) - f.write(''' + f = open_submodule("props.py", BASEPATH) + f.write(''' MAX_INT= 2**31 MAX_FLOAT= 1e+37 def BoolProperty(attr, name="", description="", default=False): - """ - return a new bool property - """ + """ + return a new bool property + """ def IntProperty(attr, name="", description="", min=-MAX_INT, max=MAX_INT, soft_min=-MAX_INT, soft_max=MAX_INT, default=0): - """ - return a new int property - """ + """ + return a new int property + """ def FloatProperty(attr, name="", description="", min=-MAX_FLOAT, max=MAX_FLOAT, soft_min=-MAX_FLOAT, soft_max=MAX_FLOAT, default=0.0): - """ - return a new float property - """ + """ + return a new float property + """ def StringProperty(attr, name="", description="", maxlen=0, default=""): - """ - return a new string property - """ + """ + return a new string property + """ def EnumProperty(attr, items, name="", description="", default=""): - """ - return a new enum property - """ + """ + return a new enum property + """ ''') if __name__ == '__main__': - if 'bpy' not in dir(): - print("\nError, this script must run from inside blender2.5") - print(script_help_msg) - else: - misc2epy('source/blender/python/doc/bpy') # first to write in info in some of the modules. - rna2epy('source/blender/python/doc/bpy') - op2epy('source/blender/python/doc/bpy') - - - close_all() - - import sys - sys.exit() + if 'bpy' not in dir(): + print("\nError, this script must run from inside blender2.5") + print(script_help_msg) + else: + misc2epy('source/blender/python/doc/bpy') # first to write in info in some of the modules. + rna2epy('source/blender/python/doc/bpy') + op2epy('source/blender/python/doc/bpy') + + + close_all() + + import sys + sys.exit() diff --git a/source/blender/python/rna_dump.py b/source/blender/python/rna_dump.py index 7dde4007f66..7c53a6cc235 100644 --- a/source/blender/python/rna_dump.py +++ b/source/blender/python/rna_dump.py @@ -19,114 +19,114 @@ # #**** END GPL LICENSE BLOCK #**** if 1: - # Print once every 1000 - GEN_PATH = True - PRINT_DATA = False - PRINT_DATA_INT = 1000 - VERBOSE = False - VERBOSE_TYPE = False - MAX_RECURSIVE = 8 + # Print once every 1000 + GEN_PATH = True + PRINT_DATA = False + PRINT_DATA_INT = 1000 + VERBOSE = False + VERBOSE_TYPE = False + MAX_RECURSIVE = 8 else: - # Print everything - GEN_PATH = True - PRINT_DATA = True - PRINT_DATA_INT = 0 - VERBOSE = False - VERBOSE_TYPE = False - MAX_RECURSIVE = 8 + # Print everything + GEN_PATH = True + PRINT_DATA = True + PRINT_DATA_INT = 0 + VERBOSE = False + VERBOSE_TYPE = False + MAX_RECURSIVE = 8 seek_count = [0] def seek(r, txt, recurs): - - seek_count[0] += 1 - - if PRINT_DATA_INT: - if not (seek_count[0] % PRINT_DATA_INT): - print(seek_count[0], txt) - - if PRINT_DATA: - print(txt) - - newtxt = '' - - if recurs > MAX_RECURSIVE: - #print ("Recursion is over max") - #print (txt) - return - - type_r = type(r) - - # print(type_r) - # print(dir(r)) - - # basic types - if type_r in (float, int, bool, type(None)): - if PRINT_DATA: - print(txt + ' -> ' + str(r)) - return - - if type_r == str: - if PRINT_DATA: - print(txt + ' -> "' + str(r) + '"') - return - - try: keys = r.keys() - except: keys = None - - if keys != None: - if PRINT_DATA: - print(txt + '.keys() - ' + str(r.keys())) - - try: __members__ = dir(r) - except: __members__ = [] - - for item in __members__: - if item.startswith('__'): - continue - - if GEN_PATH: newtxt = txt + '.' + item - - if item == 'rna_type' and VERBOSE_TYPE==False: # just avoid because it spits out loads of data - continue - - try: value = getattr(r, item) - except: value = None - - seek( value, newtxt, recurs + 1) - - - if keys: - for k in keys: - if GEN_PATH: newtxt = txt + '["' + k + '"]' - seek(r.__getitem__(k), newtxt, recurs+1) - - else: - try: length = len( r ) - except: length = 0 - - if VERBOSE==False and length >= 4: - for i in (0, length-1): - if i>0: - if PRINT_DATA: - print((' '*len(txt)) + ' ... skipping '+str(length-2)+' items ...') - - if GEN_PATH: newtxt = txt + '[' + str(i) + ']' - seek(r[i], newtxt, recurs+1) - else: - for i in range(length): - if GEN_PATH: newtxt = txt + '[' + str(i) + ']' - seek(r[i], newtxt, recurs+1) + + seek_count[0] += 1 + + if PRINT_DATA_INT: + if not (seek_count[0] % PRINT_DATA_INT): + print(seek_count[0], txt) + + if PRINT_DATA: + print(txt) + + newtxt = '' + + if recurs > MAX_RECURSIVE: + #print ("Recursion is over max") + #print (txt) + return + + type_r = type(r) + + # print(type_r) + # print(dir(r)) + + # basic types + if type_r in (float, int, bool, type(None)): + if PRINT_DATA: + print(txt + ' -> ' + str(r)) + return + + if type_r == str: + if PRINT_DATA: + print(txt + ' -> "' + str(r) + '"') + return + + try: keys = r.keys() + except: keys = None + + if keys != None: + if PRINT_DATA: + print(txt + '.keys() - ' + str(r.keys())) + + try: __members__ = dir(r) + except: __members__ = [] + + for item in __members__: + if item.startswith('__'): + continue + + if GEN_PATH: newtxt = txt + '.' + item + + if item == 'rna_type' and VERBOSE_TYPE==False: # just avoid because it spits out loads of data + continue + + try: value = getattr(r, item) + except: value = None + + seek( value, newtxt, recurs + 1) + + + if keys: + for k in keys: + if GEN_PATH: newtxt = txt + '["' + k + '"]' + seek(r.__getitem__(k), newtxt, recurs+1) + + else: + try: length = len( r ) + except: length = 0 + + if VERBOSE==False and length >= 4: + for i in (0, length-1): + if i>0: + if PRINT_DATA: + print((' '*len(txt)) + ' ... skipping '+str(length-2)+' items ...') + + if GEN_PATH: newtxt = txt + '[' + str(i) + ']' + seek(r[i], newtxt, recurs+1) + else: + for i in range(length): + if GEN_PATH: newtxt = txt + '[' + str(i) + ']' + seek(r[i], newtxt, recurs+1) seek(bpy.data, 'bpy.data', 0) # seek(bpy.types, 'bpy.types', 0) ''' for d in dir(bpy.types): - t = getattr(bpy.types, d) - try: r = t.bl_rna - except: r = None - if r: - seek(r, 'bpy.types.' + d + '.bl_rna', 0) + t = getattr(bpy.types, d) + try: r = t.bl_rna + except: r = None + if r: + seek(r, 'bpy.types.' + d + '.bl_rna', 0) ''' #print dir(bpy) diff --git a/source/blender/python/simple_enum_gen.py b/source/blender/python/simple_enum_gen.py index 59f048c2842..615d48b77d0 100644 --- a/source/blender/python/simple_enum_gen.py +++ b/source/blender/python/simple_enum_gen.py @@ -19,47 +19,47 @@ # #**** END GPL LICENSE BLOCK #**** defs = """ - SPACE_EMPTY, - SPACE_VIEW3D, - SPACE_IPO, - SPACE_OUTLINER, - SPACE_BUTS, - SPACE_FILE, - SPACE_IMAGE, - SPACE_INFO, - SPACE_SEQ, - SPACE_TEXT, - SPACE_IMASEL, - SPACE_SOUND, - SPACE_ACTION, - SPACE_NLA, - SPACE_SCRIPT, - SPACE_TIME, - SPACE_NODE, - SPACEICONMAX + SPACE_EMPTY, + SPACE_VIEW3D, + SPACE_IPO, + SPACE_OUTLINER, + SPACE_BUTS, + SPACE_FILE, + SPACE_IMAGE, + SPACE_INFO, + SPACE_SEQ, + SPACE_TEXT, + SPACE_IMASEL, + SPACE_SOUND, + SPACE_ACTION, + SPACE_NLA, + SPACE_SCRIPT, + SPACE_TIME, + SPACE_NODE, + SPACEICONMAX """ print '\tmod = PyModule_New("dummy");' print '\tPyModule_AddObject( submodule, "key", mod );' for d in defs.split('\n'): - - d = d.replace(',', ' ') - w = d.split() - - if not w: - continue - - try: w.remove("#define") - except: pass - - # print w - - val = w[0] - py_val = w[0] - - print '\tPyModule_AddObject( mod, "%s", PyLong_FromSize_t(%s) );' % (val, py_val) - + + d = d.replace(',', ' ') + w = d.split() + + if not w: + continue + + try: w.remove("#define") + except: pass + + # print w + + val = w[0] + py_val = w[0] + + print '\tPyModule_AddObject( mod, "%s", PyLong_FromSize_t(%s) );' % (val, py_val) + From 944a8d33feb3741eea563b6ac64f60b5f959bf63 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 19:57:59 +0000 Subject: [PATCH 279/412] renamed buttons ui files to properties to match UI name change, needed to update some imports too --- release/scripts/io/engine_render_pov.py | 32 +++++++++---------- ...rmature.py => properties_data_armature.py} | 0 ...s_data_bone.py => properties_data_bone.py} | 0 ...ta_camera.py => properties_data_camera.py} | 0 ...data_curve.py => properties_data_curve.py} | 0 ...data_empty.py => properties_data_empty.py} | 0 ...s_data_lamp.py => properties_data_lamp.py} | 0 ..._lattice.py => properties_data_lattice.py} | 0 ...s_data_mesh.py => properties_data_mesh.py} | 0 ...etaball.py => properties_data_metaball.py} | 0 ...odifier.py => properties_data_modifier.py} | 0 ...s_data_text.py => properties_data_text.py} | 0 .../{buttons_game.py => properties_game.py} | 0 ...ons_material.py => properties_material.py} | 0 ...buttons_object.py => properties_object.py} | 0 ...int.py => properties_object_constraint.py} | 0 ...ons_particle.py => properties_particle.py} | 8 ++--- ...s_cloth.py => properties_physics_cloth.py} | 4 +-- ...common.py => properties_physics_common.py} | 0 ...s_field.py => properties_physics_field.py} | 4 +-- ...s_fluid.py => properties_physics_fluid.py} | 0 ...s_smoke.py => properties_physics_smoke.py} | 4 +-- ...body.py => properties_physics_softbody.py} | 4 +-- ...buttons_render.py => properties_render.py} | 0 .../{buttons_scene.py => properties_scene.py} | 0 ...ttons_texture.py => properties_texture.py} | 0 .../{buttons_world.py => properties_world.py} | 0 27 files changed, 28 insertions(+), 28 deletions(-) rename release/scripts/ui/{buttons_data_armature.py => properties_data_armature.py} (100%) rename release/scripts/ui/{buttons_data_bone.py => properties_data_bone.py} (100%) rename release/scripts/ui/{buttons_data_camera.py => properties_data_camera.py} (100%) rename release/scripts/ui/{buttons_data_curve.py => properties_data_curve.py} (100%) rename release/scripts/ui/{buttons_data_empty.py => properties_data_empty.py} (100%) rename release/scripts/ui/{buttons_data_lamp.py => properties_data_lamp.py} (100%) rename release/scripts/ui/{buttons_data_lattice.py => properties_data_lattice.py} (100%) rename release/scripts/ui/{buttons_data_mesh.py => properties_data_mesh.py} (100%) rename release/scripts/ui/{buttons_data_metaball.py => properties_data_metaball.py} (100%) rename release/scripts/ui/{buttons_data_modifier.py => properties_data_modifier.py} (100%) rename release/scripts/ui/{buttons_data_text.py => properties_data_text.py} (100%) rename release/scripts/ui/{buttons_game.py => properties_game.py} (100%) rename release/scripts/ui/{buttons_material.py => properties_material.py} (100%) rename release/scripts/ui/{buttons_object.py => properties_object.py} (100%) rename release/scripts/ui/{buttons_object_constraint.py => properties_object_constraint.py} (100%) rename release/scripts/ui/{buttons_particle.py => properties_particle.py} (99%) rename release/scripts/ui/{buttons_physics_cloth.py => properties_physics_cloth.py} (98%) rename release/scripts/ui/{buttons_physics_common.py => properties_physics_common.py} (100%) rename release/scripts/ui/{buttons_physics_field.py => properties_physics_field.py} (98%) rename release/scripts/ui/{buttons_physics_fluid.py => properties_physics_fluid.py} (100%) rename release/scripts/ui/{buttons_physics_smoke.py => properties_physics_smoke.py} (98%) rename release/scripts/ui/{buttons_physics_softbody.py => properties_physics_softbody.py} (98%) rename release/scripts/ui/{buttons_render.py => properties_render.py} (100%) rename release/scripts/ui/{buttons_scene.py => properties_scene.py} (100%) rename release/scripts/ui/{buttons_texture.py => properties_texture.py} (100%) rename release/scripts/ui/{buttons_world.py => properties_world.py} (100%) diff --git a/release/scripts/io/engine_render_pov.py b/release/scripts/io/engine_render_pov.py index 6e5edfb5e05..604d9053848 100644 --- a/release/scripts/io/engine_render_pov.py +++ b/release/scripts/io/engine_render_pov.py @@ -826,28 +826,28 @@ class PovrayRender(bpy.types.RenderEngine): bpy.types.register(PovrayRender) # Use some of the existing buttons. -import buttons_render -buttons_render.RENDER_PT_render.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_render.RENDER_PT_dimensions.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_render.RENDER_PT_antialiasing.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_render.RENDER_PT_output.COMPAT_ENGINES.add('POVRAY_RENDER') -del buttons_render +import properties_render +properties_render.RENDER_PT_render.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_render.RENDER_PT_dimensions.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_render.RENDER_PT_antialiasing.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_render.RENDER_PT_output.COMPAT_ENGINES.add('POVRAY_RENDER') +del properties_render # Use only a subset of the world panels -import buttons_world -buttons_world.WORLD_PT_preview.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_world.WORLD_PT_context_world.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_world.WORLD_PT_world.COMPAT_ENGINES.add('POVRAY_RENDER') -buttons_world.WORLD_PT_mist.COMPAT_ENGINES.add('POVRAY_RENDER') -del buttons_world +import properties_world +properties_world.WORLD_PT_preview.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_world.WORLD_PT_context_world.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_world.WORLD_PT_world.COMPAT_ENGINES.add('POVRAY_RENDER') +properties_world.WORLD_PT_mist.COMPAT_ENGINES.add('POVRAY_RENDER') +del properties_world # Example of wrapping every class 'as is' -import buttons_material -for member in dir(buttons_material): - subclass = getattr(buttons_material, member) +import properties_material +for member in dir(properties_material): + subclass = getattr(properties_material, member) try: subclass.COMPAT_ENGINES.add('POVRAY_RENDER') except: pass -del buttons_material +del properties_material class RenderButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' diff --git a/release/scripts/ui/buttons_data_armature.py b/release/scripts/ui/properties_data_armature.py similarity index 100% rename from release/scripts/ui/buttons_data_armature.py rename to release/scripts/ui/properties_data_armature.py diff --git a/release/scripts/ui/buttons_data_bone.py b/release/scripts/ui/properties_data_bone.py similarity index 100% rename from release/scripts/ui/buttons_data_bone.py rename to release/scripts/ui/properties_data_bone.py diff --git a/release/scripts/ui/buttons_data_camera.py b/release/scripts/ui/properties_data_camera.py similarity index 100% rename from release/scripts/ui/buttons_data_camera.py rename to release/scripts/ui/properties_data_camera.py diff --git a/release/scripts/ui/buttons_data_curve.py b/release/scripts/ui/properties_data_curve.py similarity index 100% rename from release/scripts/ui/buttons_data_curve.py rename to release/scripts/ui/properties_data_curve.py diff --git a/release/scripts/ui/buttons_data_empty.py b/release/scripts/ui/properties_data_empty.py similarity index 100% rename from release/scripts/ui/buttons_data_empty.py rename to release/scripts/ui/properties_data_empty.py diff --git a/release/scripts/ui/buttons_data_lamp.py b/release/scripts/ui/properties_data_lamp.py similarity index 100% rename from release/scripts/ui/buttons_data_lamp.py rename to release/scripts/ui/properties_data_lamp.py diff --git a/release/scripts/ui/buttons_data_lattice.py b/release/scripts/ui/properties_data_lattice.py similarity index 100% rename from release/scripts/ui/buttons_data_lattice.py rename to release/scripts/ui/properties_data_lattice.py diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/properties_data_mesh.py similarity index 100% rename from release/scripts/ui/buttons_data_mesh.py rename to release/scripts/ui/properties_data_mesh.py diff --git a/release/scripts/ui/buttons_data_metaball.py b/release/scripts/ui/properties_data_metaball.py similarity index 100% rename from release/scripts/ui/buttons_data_metaball.py rename to release/scripts/ui/properties_data_metaball.py diff --git a/release/scripts/ui/buttons_data_modifier.py b/release/scripts/ui/properties_data_modifier.py similarity index 100% rename from release/scripts/ui/buttons_data_modifier.py rename to release/scripts/ui/properties_data_modifier.py diff --git a/release/scripts/ui/buttons_data_text.py b/release/scripts/ui/properties_data_text.py similarity index 100% rename from release/scripts/ui/buttons_data_text.py rename to release/scripts/ui/properties_data_text.py diff --git a/release/scripts/ui/buttons_game.py b/release/scripts/ui/properties_game.py similarity index 100% rename from release/scripts/ui/buttons_game.py rename to release/scripts/ui/properties_game.py diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/properties_material.py similarity index 100% rename from release/scripts/ui/buttons_material.py rename to release/scripts/ui/properties_material.py diff --git a/release/scripts/ui/buttons_object.py b/release/scripts/ui/properties_object.py similarity index 100% rename from release/scripts/ui/buttons_object.py rename to release/scripts/ui/properties_object.py diff --git a/release/scripts/ui/buttons_object_constraint.py b/release/scripts/ui/properties_object_constraint.py similarity index 100% rename from release/scripts/ui/buttons_object_constraint.py rename to release/scripts/ui/properties_object_constraint.py diff --git a/release/scripts/ui/buttons_particle.py b/release/scripts/ui/properties_particle.py similarity index 99% rename from release/scripts/ui/buttons_particle.py rename to release/scripts/ui/properties_particle.py index 7633787b69b..e23c8ddd70c 100644 --- a/release/scripts/ui/buttons_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -1,10 +1,10 @@ import bpy -from buttons_physics_common import point_cache_ui -from buttons_physics_common import effector_weights_ui -from buttons_physics_common import basic_force_field_settings_ui -from buttons_physics_common import basic_force_field_falloff_ui +from properties_physics_common import point_cache_ui +from properties_physics_common import effector_weights_ui +from properties_physics_common import basic_force_field_settings_ui +from properties_physics_common import basic_force_field_falloff_ui def particle_panel_enabled(context, psys): return psys.point_cache.baked==False and psys.edited==False and (not context.particle_system_editable) diff --git a/release/scripts/ui/buttons_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py similarity index 98% rename from release/scripts/ui/buttons_physics_cloth.py rename to release/scripts/ui/properties_physics_cloth.py index 208f2ed75e3..f2d8842d103 100644 --- a/release/scripts/ui/buttons_physics_cloth.py +++ b/release/scripts/ui/properties_physics_cloth.py @@ -1,8 +1,8 @@ import bpy -from buttons_physics_common import point_cache_ui -from buttons_physics_common import effector_weights_ui +from properties_physics_common import point_cache_ui +from properties_physics_common import effector_weights_ui def cloth_panel_enabled(md): return md.point_cache.baked==False diff --git a/release/scripts/ui/buttons_physics_common.py b/release/scripts/ui/properties_physics_common.py similarity index 100% rename from release/scripts/ui/buttons_physics_common.py rename to release/scripts/ui/properties_physics_common.py diff --git a/release/scripts/ui/buttons_physics_field.py b/release/scripts/ui/properties_physics_field.py similarity index 98% rename from release/scripts/ui/buttons_physics_field.py rename to release/scripts/ui/properties_physics_field.py index 1f0518620d9..fd2dc43b09c 100644 --- a/release/scripts/ui/buttons_physics_field.py +++ b/release/scripts/ui/properties_physics_field.py @@ -1,8 +1,8 @@ import bpy -from buttons_physics_common import basic_force_field_settings_ui -from buttons_physics_common import basic_force_field_falloff_ui +from properties_physics_common import basic_force_field_settings_ui +from properties_physics_common import basic_force_field_falloff_ui class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' diff --git a/release/scripts/ui/buttons_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py similarity index 100% rename from release/scripts/ui/buttons_physics_fluid.py rename to release/scripts/ui/properties_physics_fluid.py diff --git a/release/scripts/ui/buttons_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py similarity index 98% rename from release/scripts/ui/buttons_physics_smoke.py rename to release/scripts/ui/properties_physics_smoke.py index eaf32ccb0f3..77c1250fbb2 100644 --- a/release/scripts/ui/buttons_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -1,8 +1,8 @@ import bpy -from buttons_physics_common import point_cache_ui -from buttons_physics_common import effector_weights_ui +from properties_physics_common import point_cache_ui +from properties_physics_common import effector_weights_ui class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' diff --git a/release/scripts/ui/buttons_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py similarity index 98% rename from release/scripts/ui/buttons_physics_softbody.py rename to release/scripts/ui/properties_physics_softbody.py index a11c33b95b2..24183611d95 100644 --- a/release/scripts/ui/buttons_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -1,8 +1,8 @@ import bpy -from buttons_physics_common import point_cache_ui -from buttons_physics_common import effector_weights_ui +from properties_physics_common import point_cache_ui +from properties_physics_common import effector_weights_ui def softbody_panel_enabled(md): return md.point_cache.baked==False diff --git a/release/scripts/ui/buttons_render.py b/release/scripts/ui/properties_render.py similarity index 100% rename from release/scripts/ui/buttons_render.py rename to release/scripts/ui/properties_render.py diff --git a/release/scripts/ui/buttons_scene.py b/release/scripts/ui/properties_scene.py similarity index 100% rename from release/scripts/ui/buttons_scene.py rename to release/scripts/ui/properties_scene.py diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/properties_texture.py similarity index 100% rename from release/scripts/ui/buttons_texture.py rename to release/scripts/ui/properties_texture.py diff --git a/release/scripts/ui/buttons_world.py b/release/scripts/ui/properties_world.py similarity index 100% rename from release/scripts/ui/buttons_world.py rename to release/scripts/ui/properties_world.py From 41c0236aaa1f4b07650f55905ad1cfa886336268 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 20:16:59 +0000 Subject: [PATCH 280/412] GPL2 header from firebird (without disclaimer), notice theres no copyright attributed and only the GPLv2 (without the v2 or later clause). Contributors list isnt used much in our C code so probably its easier if people just use svn blame for this. Can change if this isnt acceptable but I guessed people didnt care so much since most scripts had no header. --- release/scripts/modules/bpy_ext/Object.py | 5 +++++ release/scripts/modules/bpy_ext/__init__.py | 5 +++++ release/scripts/modules/bpy_ops.py | 5 +++++ release/scripts/modules/bpy_sys.py | 5 +++++ release/scripts/modules/dynamic_menu.py | 5 +++++ release/scripts/ui/properties_data_armature.py | 5 +++++ release/scripts/ui/properties_data_bone.py | 5 +++++ release/scripts/ui/properties_data_camera.py | 5 +++++ release/scripts/ui/properties_data_curve.py | 5 +++++ release/scripts/ui/properties_data_empty.py | 5 +++++ release/scripts/ui/properties_data_lamp.py | 5 +++++ release/scripts/ui/properties_data_lattice.py | 5 +++++ release/scripts/ui/properties_data_mesh.py | 5 +++++ release/scripts/ui/properties_data_metaball.py | 5 +++++ release/scripts/ui/properties_data_modifier.py | 5 +++++ release/scripts/ui/properties_data_text.py | 5 +++++ release/scripts/ui/properties_game.py | 5 +++++ release/scripts/ui/properties_material.py | 5 +++++ release/scripts/ui/properties_object.py | 5 +++++ release/scripts/ui/properties_object_constraint.py | 5 +++++ release/scripts/ui/properties_particle.py | 5 +++++ release/scripts/ui/properties_physics_cloth.py | 5 +++++ release/scripts/ui/properties_physics_common.py | 5 +++++ release/scripts/ui/properties_physics_field.py | 5 +++++ release/scripts/ui/properties_physics_fluid.py | 5 +++++ release/scripts/ui/properties_physics_smoke.py | 5 +++++ release/scripts/ui/properties_physics_softbody.py | 5 +++++ release/scripts/ui/properties_render.py | 5 +++++ release/scripts/ui/properties_scene.py | 5 +++++ release/scripts/ui/properties_texture.py | 5 +++++ release/scripts/ui/properties_world.py | 5 +++++ release/scripts/ui/space_buttons.py | 5 +++++ release/scripts/ui/space_console.py | 5 +++++ release/scripts/ui/space_filebrowser.py | 5 +++++ release/scripts/ui/space_image.py | 5 +++++ release/scripts/ui/space_info.py | 5 +++++ release/scripts/ui/space_logic.py | 5 +++++ release/scripts/ui/space_node.py | 5 +++++ release/scripts/ui/space_outliner.py | 5 +++++ release/scripts/ui/space_sequencer.py | 5 +++++ release/scripts/ui/space_text.py | 5 +++++ release/scripts/ui/space_time.py | 5 +++++ release/scripts/ui/space_userpref.py | 5 +++++ release/scripts/ui/space_view3d.py | 5 +++++ release/scripts/ui/space_view3d_toolbar.py | 5 +++++ 45 files changed, 225 insertions(+) diff --git a/release/scripts/modules/bpy_ext/Object.py b/release/scripts/modules/bpy_ext/Object.py index 6419e1f1017..d1916b23150 100644 --- a/release/scripts/modules/bpy_ext/Object.py +++ b/release/scripts/modules/bpy_ext/Object.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy class_obj = bpy.types.Object diff --git a/release/scripts/modules/bpy_ext/__init__.py b/release/scripts/modules/bpy_ext/__init__.py index a20a5ff8b8c..ab0bd31edca 100644 --- a/release/scripts/modules/bpy_ext/__init__.py +++ b/release/scripts/modules/bpy_ext/__init__.py @@ -1 +1,6 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy_ext.Object diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index ce6e85da4e7..a9fa16f313f 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + # for slightly faster access from bpy.__ops__ import add as op_add from bpy.__ops__ import remove as op_remove diff --git a/release/scripts/modules/bpy_sys.py b/release/scripts/modules/bpy_sys.py index a56d2dc62f1..01c4dfda910 100644 --- a/release/scripts/modules/bpy_sys.py +++ b/release/scripts/modules/bpy_sys.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy import os diff --git a/release/scripts/modules/dynamic_menu.py b/release/scripts/modules/dynamic_menu.py index 664271ab33f..61778ec9223 100644 --- a/release/scripts/modules/dynamic_menu.py +++ b/release/scripts/modules/dynamic_menu.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy def collect_baseclasses(_class, bases): diff --git a/release/scripts/ui/properties_data_armature.py b/release/scripts/ui/properties_data_armature.py index b4abce01e4d..45ad29c0a6b 100644 --- a/release/scripts/ui/properties_data_armature.py +++ b/release/scripts/ui/properties_data_armature.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_bone.py b/release/scripts/ui/properties_data_bone.py index 962cb871377..641fdfa4aaa 100644 --- a/release/scripts/ui/properties_data_bone.py +++ b/release/scripts/ui/properties_data_bone.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_camera.py b/release/scripts/ui/properties_data_camera.py index f0c39dc2593..d28097712d7 100644 --- a/release/scripts/ui/properties_data_camera.py +++ b/release/scripts/ui/properties_data_camera.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py index fdb24cab2b1..7863e064522 100644 --- a/release/scripts/ui/properties_data_curve.py +++ b/release/scripts/ui/properties_data_curve.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_empty.py b/release/scripts/ui/properties_data_empty.py index 5fe864ee7a2..6fecf80d204 100644 --- a/release/scripts/ui/properties_data_empty.py +++ b/release/scripts/ui/properties_data_empty.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_lamp.py b/release/scripts/ui/properties_data_lamp.py index c7c25bfd090..391ffa758ba 100644 --- a/release/scripts/ui/properties_data_lamp.py +++ b/release/scripts/ui/properties_data_lamp.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_lattice.py b/release/scripts/ui/properties_data_lattice.py index fa3451ce5e6..7d3bbdde38e 100644 --- a/release/scripts/ui/properties_data_lattice.py +++ b/release/scripts/ui/properties_data_lattice.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index c9141a59bf4..f17cba3b3a3 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_metaball.py b/release/scripts/ui/properties_data_metaball.py index 8176041e1cc..d0310617afa 100644 --- a/release/scripts/ui/properties_data_metaball.py +++ b/release/scripts/ui/properties_data_metaball.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy class DataButtonsPanel(bpy.types.Panel): diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py index a256d20a314..a5f8b20d8a2 100644 --- a/release/scripts/ui/properties_data_modifier.py +++ b/release/scripts/ui/properties_data_modifier.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_data_text.py b/release/scripts/ui/properties_data_text.py index 873da4ad17d..94e61c44e0a 100644 --- a/release/scripts/ui/properties_data_text.py +++ b/release/scripts/ui/properties_data_text.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_game.py b/release/scripts/ui/properties_game.py index af67512dd3e..357d096f28d 100644 --- a/release/scripts/ui/properties_game.py +++ b/release/scripts/ui/properties_game.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py index 9131b5284f7..ac4d26ecb4f 100644 --- a/release/scripts/ui/properties_material.py +++ b/release/scripts/ui/properties_material.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py index a5705277a6e..e197586cf42 100644 --- a/release/scripts/ui/properties_object.py +++ b/release/scripts/ui/properties_object.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index de3db7cbe40..a8c7201c45f 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index e23c8ddd70c..256c580f48d 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py index f2d8842d103..4fcaed30ec0 100644 --- a/release/scripts/ui/properties_physics_cloth.py +++ b/release/scripts/ui/properties_physics_cloth.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_physics_common.py b/release/scripts/ui/properties_physics_common.py index bc2b9662d1e..4839f061963 100644 --- a/release/scripts/ui/properties_physics_common.py +++ b/release/scripts/ui/properties_physics_common.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy def point_cache_ui(self, cache, enabled, particles, smoke): diff --git a/release/scripts/ui/properties_physics_field.py b/release/scripts/ui/properties_physics_field.py index fd2dc43b09c..c6a5d373d95 100644 --- a/release/scripts/ui/properties_physics_field.py +++ b/release/scripts/ui/properties_physics_field.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py index cdef3f88185..f0801a15459 100644 --- a/release/scripts/ui/properties_physics_fluid.py +++ b/release/scripts/ui/properties_physics_fluid.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py index 77c1250fbb2..cd5bbecc9d6 100644 --- a/release/scripts/ui/properties_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py index 24183611d95..32b0a6459b5 100644 --- a/release/scripts/ui/properties_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_render.py b/release/scripts/ui/properties_render.py index 2e437b671e5..65410e7d64e 100644 --- a/release/scripts/ui/properties_render.py +++ b/release/scripts/ui/properties_render.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_scene.py b/release/scripts/ui/properties_scene.py index 9a2d7af4495..e87807ddfab 100644 --- a/release/scripts/ui/properties_scene.py +++ b/release/scripts/ui/properties_scene.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index 29f11789ba6..d5f475bcdc8 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy def active_node_mat(mat): diff --git a/release/scripts/ui/properties_world.py b/release/scripts/ui/properties_world.py index 7078a48b72e..b36307d10b6 100644 --- a/release/scripts/ui/properties_world.py +++ b/release/scripts/ui/properties_world.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index 42cdac9ce24..a500862e93d 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 9bcd98be49e..6e2c06ad7c8 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import sys import bpy diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index b73d5b6486e..fddea323895 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index 4466a5d236f..3a12c35930a 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index b127d6288dc..435a6ad54b4 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index cd2f2262ef6..9e9f9bd3394 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy class LOGIC_PT_properties(bpy.types.Panel): diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index 2a8d4de2c4b..e6bac031c56 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 384e49a1276..e2aeb92f19d 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 75bd9edc8d0..10a3f1da3cb 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index 75bfd21bf88..e2d5e69cb8c 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index 1322d774ebe..7408868f10a 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 2c129e50463..4588fb42088 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 5eefc1b5950..f5c7c6c9e24 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index ed58b6d486a..11e5abc061c 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -1,3 +1,8 @@ +# This software is distributable under the terms of the GNU +# General Public License (GPL) v2, the text of which can be found at +# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise +# using this module constitutes acceptance of the terms of this License. + import bpy From d96480884666247beba7085cf709c615a80ddc67 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Oct 2009 23:35:56 +0000 Subject: [PATCH 281/412] made scripts pass the pep8 test (though not fully pep8 yet) added comment in header to know if a script has been converted or not. --- release/scripts/modules/bpy_ops.py | 2 + .../scripts/ui/properties_data_armature.py | 15 +- release/scripts/ui/properties_data_bone.py | 9 +- release/scripts/ui/properties_data_camera.py | 6 +- release/scripts/ui/properties_data_curve.py | 26 ++-- release/scripts/ui/properties_data_empty.py | 4 +- release/scripts/ui/properties_data_lamp.py | 17 ++- release/scripts/ui/properties_data_lattice.py | 5 +- release/scripts/ui/properties_data_mesh.py | 17 ++- .../scripts/ui/properties_data_metaball.py | 5 + .../scripts/ui/properties_data_modifier.py | 8 +- release/scripts/ui/properties_data_text.py | 9 +- release/scripts/ui/properties_game.py | 28 +++- release/scripts/ui/properties_material.py | 39 ++++- release/scripts/ui/properties_object.py | 11 +- .../ui/properties_object_constraint.py | 17 ++- release/scripts/ui/properties_particle.py | 143 +++++++++++------- .../scripts/ui/properties_physics_cloth.py | 13 +- .../scripts/ui/properties_physics_common.py | 8 +- .../scripts/ui/properties_physics_field.py | 10 +- .../scripts/ui/properties_physics_fluid.py | 7 +- .../scripts/ui/properties_physics_smoke.py | 14 +- .../scripts/ui/properties_physics_softbody.py | 14 +- release/scripts/ui/properties_render.py | 17 ++- release/scripts/ui/properties_scene.py | 8 +- release/scripts/ui/properties_texture.py | 64 ++++++-- release/scripts/ui/properties_world.py | 9 +- release/scripts/ui/space_buttons.py | 6 +- release/scripts/ui/space_console.py | 1 + release/scripts/ui/space_filebrowser.py | 19 +-- release/scripts/ui/space_image.py | 30 ++-- release/scripts/ui/space_info.py | 24 ++- release/scripts/ui/space_logic.py | 2 + release/scripts/ui/space_node.py | 6 +- release/scripts/ui/space_outliner.py | 5 +- release/scripts/ui/space_sequencer.py | 37 +++-- release/scripts/ui/space_text.py | 19 ++- release/scripts/ui/space_time.py | 7 +- release/scripts/ui/space_userpref.py | 17 ++- release/scripts/ui/space_view3d.py | 92 ++++++++--- release/scripts/ui/space_view3d_toolbar.py | 35 ++++- 41 files changed, 612 insertions(+), 213 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index a9fa16f313f..579fe0192ee 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -3,6 +3,8 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# + # for slightly faster access from bpy.__ops__ import add as op_add from bpy.__ops__ import remove as op_remove diff --git a/release/scripts/ui/properties_data_armature.py b/release/scripts/ui/properties_data_armature.py index 45ad29c0a6b..f35da79cd1e 100644 --- a/release/scripts/ui/properties_data_armature.py +++ b/release/scripts/ui/properties_data_armature.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.armature + class DATA_PT_context_arm(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -34,6 +36,7 @@ class DATA_PT_context_arm(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_skeleton(DataButtonsPanel): bl_label = "Skeleton" @@ -61,6 +64,7 @@ class DATA_PT_skeleton(DataButtonsPanel): col.itemR(arm, "deform_quaternion", text="Quaternion") col.itemR(arm, "deform_bbone_rest", text="B-Bones Rest") + class DATA_PT_display(DataButtonsPanel): bl_label = "Display" @@ -78,11 +82,12 @@ class DATA_PT_display(DataButtonsPanel): flow.itemR(arm, "draw_group_colors", text="Colors") flow.itemR(arm, "delay_deform", text="Delay Refresh") + class DATA_PT_bone_groups(DataButtonsPanel): bl_label = "Bone Groups" def poll(self, context): - return (context.object and context.object.type=='ARMATURE' and context.object.pose) + return (context.object and context.object.type == 'ARMATURE' and context.object.pose) def draw(self, context): layout = self.layout @@ -101,11 +106,11 @@ class DATA_PT_bone_groups(DataButtonsPanel): group = pose.active_bone_group if group: col = layout.column() - col.active= (ob.proxy == None) + col.active = (ob.proxy == None) col.itemR(group, "name") split = layout.split(0.5) - split.active= (ob.proxy == None) + split.active = (ob.proxy == None) split.itemR(group, "color_set") if group.color_set: split.template_triColorSet(group, "colors") @@ -118,6 +123,7 @@ class DATA_PT_bone_groups(DataButtonsPanel): #row.itemO("object.bone_group_select", text="Select") #row.itemO("object.bone_group_deselect", text="Deselect") + class DATA_PT_paths(DataButtonsPanel): bl_label = "Paths" @@ -154,6 +160,7 @@ class DATA_PT_paths(DataButtonsPanel): row.itemO("pose.paths_calculate", text="Calculate Paths") row.itemO("pose.paths_clear", text="Clear Paths") + class DATA_PT_ghost(DataButtonsPanel): bl_label = "Ghost" diff --git a/release/scripts/ui/properties_data_bone.py b/release/scripts/ui/properties_data_bone.py index 641fdfa4aaa..afb73510196 100644 --- a/release/scripts/ui/properties_data_bone.py +++ b/release/scripts/ui/properties_data_bone.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class BoneButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class BoneButtonsPanel(bpy.types.Panel): def poll(self, context): return (context.bone or context.edit_bone) + class BONE_PT_context_bone(BoneButtonsPanel): bl_label = "" bl_show_header = False @@ -29,6 +31,7 @@ class BONE_PT_context_bone(BoneButtonsPanel): row.itemL(text="", icon='ICON_BONE_DATA') row.itemR(bone, "name", text="") + class BONE_PT_transform(BoneButtonsPanel): bl_label = "Transform" @@ -74,6 +77,7 @@ class BONE_PT_transform(BoneButtonsPanel): layout.itemR(pchan, "rotation_mode") + class BONE_PT_transform_locks(BoneButtonsPanel): bl_label = "Transform Locks" bl_default_closed = True @@ -104,6 +108,7 @@ class BONE_PT_transform_locks(BoneButtonsPanel): row.column().itemR(pchan, "lock_scale") + class BONE_PT_relations(BoneButtonsPanel): bl_label = "Relations" @@ -145,6 +150,7 @@ class BONE_PT_relations(BoneButtonsPanel): sub.itemR(bone, "hinge", text="Inherit Rotation") sub.itemR(bone, "inherit_scale", text="Inherit Scale") + class BONE_PT_display(BoneButtonsPanel): bl_label = "Display" @@ -178,6 +184,7 @@ class BONE_PT_display(BoneButtonsPanel): col.itemL(text="Custom Shape:") col.itemR(pchan, "custom_shape", text="") + class BONE_PT_deform(BoneButtonsPanel): bl_label = "Deform" bl_default_closed = True diff --git a/release/scripts/ui/properties_data_camera.py b/release/scripts/ui/properties_data_camera.py index d28097712d7..3017d659ca1 100644 --- a/release/scripts/ui/properties_data_camera.py +++ b/release/scripts/ui/properties_data_camera.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.camera + class DATA_PT_context_camera(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -34,6 +36,7 @@ class DATA_PT_context_camera(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_camera(DataButtonsPanel): bl_label = "Lens" @@ -75,6 +78,7 @@ class DATA_PT_camera(DataButtonsPanel): row.itemR(cam, "dof_object", text="") row.itemR(cam, "dof_distance", text="Distance") + class DATA_PT_camera_display(DataButtonsPanel): bl_label = "Display" diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py index 7863e064522..c5156b1461b 100644 --- a/release/scripts/ui/properties_data_curve.py +++ b/release/scripts/ui/properties_data_curve.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,21 +15,22 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return (context.object and context.object.type in ('CURVE', 'SURFACE') and context.curve) + class DataButtonsPanelCurve(DataButtonsPanel): - ''' - Same as above but for curves only - ''' + '''Same as above but for curves only''' + def poll(self, context): return (context.object and context.object.type == 'CURVE' and context.curve) + class DataButtonsPanelActive(DataButtonsPanel): - ''' - Same as above but for curves only - ''' + '''Same as above but for curves only''' + def poll(self, context): curve = context.curve return (curve and curve.active_spline) + class DATA_PT_context_curve(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -49,6 +51,7 @@ class DATA_PT_context_curve(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_shape_curve(DataButtonsPanel): bl_label = "Shape" @@ -70,7 +73,7 @@ class DATA_PT_shape_curve(DataButtonsPanel): if not is_surf: sub = col.column() - sub.active = (curve.dimensions=='2D') + sub.active = (curve.dimensions == '2D') sub.itemL(text="Caps:") row = sub.row() row.itemR(curve, "front") @@ -92,7 +95,7 @@ class DATA_PT_shape_curve(DataButtonsPanel): sub.itemR(curve, "render_resolution_v", text="Render V") # XXX - put somewhere nicer. - row= layout.row() + row = layout.row() row.itemR(curve, "twist_mode") row.itemR(curve, "twist_smooth") # XXX - may not be kept @@ -101,6 +104,7 @@ class DATA_PT_shape_curve(DataButtonsPanel): # col.itemL(text="NORMALS") # col.itemR(curve, "vertex_normal_flip") + class DATA_PT_geometry_curve(DataButtonsPanel): bl_label = "Geometry" @@ -125,6 +129,7 @@ class DATA_PT_geometry_curve(DataButtonsPanel): col.itemL(text="Bevel Object:") col.itemR(curve, "bevel_object", text="") + class DATA_PT_pathanim(DataButtonsPanelCurve): bl_label = "Path Animation" @@ -151,6 +156,7 @@ class DATA_PT_pathanim(DataButtonsPanelCurve): col.itemR(curve, "use_radius") col.itemR(curve, "use_time_offset", text="Offset Children") + class DATA_PT_active_spline(DataButtonsPanelActive): bl_label = "Active Spline" @@ -214,7 +220,7 @@ class DATA_PT_active_spline(DataButtonsPanelActive): if not is_surf: split = layout.split() col = split.column() - col.active = (curve.dimensions=='3D') + col.active = (curve.dimensions == '3D') col.itemL(text="Interpolation:") col.itemR(act_spline, "tilt_interpolation", text="Tilt") diff --git a/release/scripts/ui/properties_data_empty.py b/release/scripts/ui/properties_data_empty.py index 6fecf80d204..b6273afe508 100644 --- a/release/scripts/ui/properties_data_empty.py +++ b/release/scripts/ui/properties_data_empty.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return (context.object and context.object.type == 'EMPTY') + class DATA_PT_empty(DataButtonsPanel): bl_label = "Empty" diff --git a/release/scripts/ui/properties_data_lamp.py b/release/scripts/ui/properties_data_lamp.py index 391ffa758ba..50299ae2c4e 100644 --- a/release/scripts/ui/properties_data_lamp.py +++ b/release/scripts/ui/properties_data_lamp.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,12 +15,14 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.lamp + class DATA_PT_preview(DataButtonsPanel): bl_label = "Preview" def draw(self, context): self.layout.template_preview(context.lamp) + class DATA_PT_context_lamp(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -40,6 +43,7 @@ class DATA_PT_context_lamp(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_lamp(DataButtonsPanel): bl_label = "Lamp" @@ -80,6 +84,7 @@ class DATA_PT_lamp(DataButtonsPanel): col.itemR(lamp, "specular") col.itemR(lamp, "diffuse") + class DATA_PT_sunsky(DataButtonsPanel): bl_label = "Sky & Atmosphere" @@ -123,7 +128,7 @@ class DATA_PT_sunsky(DataButtonsPanel): sub = col.column() sub.itemR(lamp, "sun_brightness", text="Brightness") sub.itemR(lamp, "sun_size", text="Size") - sub.itemR(lamp, "backscattered_light", slider=True,text="Back Light") + sub.itemR(lamp, "backscattered_light", slider=True, text="Back Light") layout.itemS() @@ -142,14 +147,15 @@ class DATA_PT_sunsky(DataButtonsPanel): col.itemL(text="Scattering:") sub = col.column(align=True) sub.itemR(lamp, "atmosphere_inscattering", slider=True, text="Inscattering") - sub.itemR(lamp, "atmosphere_extinction", slider=True ,text="Extinction") + sub.itemR(lamp, "atmosphere_extinction", slider=True, text="Extinction") + class DATA_PT_shadow(DataButtonsPanel): bl_label = "Shadow" def poll(self, context): lamp = context.lamp - return (lamp and lamp.type in ('POINT','SUN', 'SPOT', 'AREA')) + return (lamp and lamp.type in ('POINT', 'SUN', 'SPOT', 'AREA')) def draw(self, context): layout = self.layout @@ -242,6 +248,7 @@ class DATA_PT_shadow(DataButtonsPanel): sub.active = not lamp.auto_clip_end sub.itemR(lamp, "shadow_buffer_clip_end", text=" Clip End") + class DATA_PT_area(DataButtonsPanel): bl_label = "Area Shape" @@ -266,6 +273,7 @@ class DATA_PT_area(DataButtonsPanel): sub.itemR(lamp, "size", text="Size X") sub.itemR(lamp, "size_y", text="Size Y") + class DATA_PT_spot(DataButtonsPanel): bl_label = "Spot Shape" @@ -294,6 +302,7 @@ class DATA_PT_spot(DataButtonsPanel): if lamp.shadow_method == 'BUFFER_SHADOW': sub.itemR(lamp, "halo_step", text="Step") + class DATA_PT_falloff_curve(DataButtonsPanel): bl_label = "Falloff Curve" bl_default_closed = True diff --git a/release/scripts/ui/properties_data_lattice.py b/release/scripts/ui/properties_data_lattice.py index 7d3bbdde38e..d8aff96a693 100644 --- a/release/scripts/ui/properties_data_lattice.py +++ b/release/scripts/ui/properties_data_lattice.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.lattice + class DATA_PT_context_lattice(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -34,6 +36,7 @@ class DATA_PT_context_lattice(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_lattice(DataButtonsPanel): bl_label = "Lattice" diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index f17cba3b3a3..f68fcbdd538 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.mesh + class DATA_PT_context_mesh(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -34,6 +36,7 @@ class DATA_PT_context_mesh(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_normals(DataButtonsPanel): bl_label = "Normals" @@ -54,6 +57,7 @@ class DATA_PT_normals(DataButtonsPanel): col.itemR(mesh, "vertex_normal_flip") col.itemR(mesh, "double_sided") + class DATA_PT_settings(DataButtonsPanel): bl_label = "Settings" @@ -67,6 +71,7 @@ class DATA_PT_settings(DataButtonsPanel): col = split.column() col.itemR(mesh, "texture_mesh") + class DATA_PT_vertex_groups(DataButtonsPanel): bl_label = "Vertex Groups" @@ -81,7 +86,7 @@ class DATA_PT_vertex_groups(DataButtonsPanel): rows = 2 if group: - rows= 5 + rows = 5 row = layout.row() row.template_list(ob, "vertex_groups", ob, "active_vertex_group_index", rows=rows) @@ -111,6 +116,7 @@ class DATA_PT_vertex_groups(DataButtonsPanel): layout.itemR(context.tool_settings, "vertex_group_weight", text="Weight") + class DATA_PT_shape_keys(DataButtonsPanel): bl_label = "Shape Keys" @@ -135,7 +141,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): rows = 2 if kb: - rows= 5 + rows = 5 row.template_list(key, "keys", ob, "active_shape_key_index", rows=rows) col = row.column() @@ -160,7 +166,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): sub.alignment = 'RIGHT' subrow = sub.row(align=True) - subrow.active= enable_edit_value + subrow.active = enable_edit_value subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") @@ -196,6 +202,7 @@ class DATA_PT_shape_keys(DataButtonsPanel): row.active = enable_edit_value row.itemR(key, "slurph") + class DATA_PT_uv_texture(DataButtonsPanel): bl_label = "UV Texture" @@ -217,6 +224,7 @@ class DATA_PT_uv_texture(DataButtonsPanel): if lay: layout.itemR(lay, "name") + class DATA_PT_vertex_colors(DataButtonsPanel): bl_label = "Vertex Colors" @@ -245,4 +253,3 @@ bpy.types.register(DATA_PT_vertex_groups) bpy.types.register(DATA_PT_shape_keys) bpy.types.register(DATA_PT_uv_texture) bpy.types.register(DATA_PT_vertex_colors) - diff --git a/release/scripts/ui/properties_data_metaball.py b/release/scripts/ui/properties_data_metaball.py index d0310617afa..60d6e08c4d3 100644 --- a/release/scripts/ui/properties_data_metaball.py +++ b/release/scripts/ui/properties_data_metaball.py @@ -3,8 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -13,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return context.meta_ball + class DATA_PT_context_metaball(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -33,6 +36,7 @@ class DATA_PT_context_metaball(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_metaball(DataButtonsPanel): bl_label = "Metaball" @@ -56,6 +60,7 @@ class DATA_PT_metaball(DataButtonsPanel): layout.itemL(text="Update:") layout.itemR(mball, "flag", expand=True) + class DATA_PT_metaball_element(DataButtonsPanel): bl_label = "Active Element" diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py index a5f8b20d8a2..35eab9621e8 100644 --- a/release/scripts/ui/properties_data_modifier.py +++ b/release/scripts/ui/properties_data_modifier.py @@ -3,14 +3,16 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' bl_context = "modifier" + class DATA_PT_modifiers(DataButtonsPanel): bl_label = "Modifiers" @@ -200,7 +202,7 @@ class DATA_PT_modifiers(DataButtonsPanel): flow.itemR(md, "alive") flow.itemR(md, "dead") - layout.itemO("object.explode_refresh", text="Refresh"); + layout.itemO("object.explode_refresh", text="Refresh") def FLUID_SIMULATION(self, layout, ob, md): layout.itemL(text="See Fluid panel.") @@ -305,7 +307,7 @@ class DATA_PT_modifiers(DataButtonsPanel): if md.path: row = layout.row() row.itemR(md, "position", slider=True) - row.itemR(md, "random_position", text = "Random", slider=True) + row.itemR(md, "random_position", text="Random", slider=True) def PARTICLE_SYSTEM(self, layout, ob, md): layout.itemL(text="See Particle panel.") diff --git a/release/scripts/ui/properties_data_text.py b/release/scripts/ui/properties_data_text.py index 94e61c44e0a..baaf94553c2 100644 --- a/release/scripts/ui/properties_data_text.py +++ b/release/scripts/ui/properties_data_text.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class DataButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): return (context.object and context.object.type == 'TEXT' and context.curve) + class DATA_PT_context_text(DataButtonsPanel): bl_label = "" bl_show_header = False @@ -34,6 +36,7 @@ class DATA_PT_context_text(DataButtonsPanel): split.template_ID(space, "pin_id") split.itemS() + class DATA_PT_shape_text(DataButtonsPanel): bl_label = "Shape Text" @@ -68,6 +71,7 @@ class DATA_PT_shape_text(DataButtonsPanel): col.itemL(text="Display:") col.itemR(curve, "fast", text="Fast Editing") + class DATA_PT_geometry_text(DataButtonsPanel): bl_label = "Geometry" @@ -92,6 +96,7 @@ class DATA_PT_geometry_text(DataButtonsPanel): col.itemL(text="Bevel Object:") col.itemR(curve, "bevel_object", text="") + class DATA_PT_font(DataButtonsPanel): bl_label = "Font" @@ -132,6 +137,7 @@ class DATA_PT_font(DataButtonsPanel): col.itemR(text, "ul_position", text="Position") col.itemR(text, "ul_height", text="Thickness") + class DATA_PT_paragraph(DataButtonsPanel): bl_label = "Paragraph" @@ -156,6 +162,7 @@ class DATA_PT_paragraph(DataButtonsPanel): col.itemR(text, "offset_x", text="X") col.itemR(text, "offset_y", text="Y") + class DATA_PT_textboxes(DataButtonsPanel): bl_label = "Text Boxes" diff --git a/release/scripts/ui/properties_game.py b/release/scripts/ui/properties_game.py index 357d096f28d..11565210a8f 100644 --- a/release/scripts/ui/properties_game.py +++ b/release/scripts/ui/properties_game.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class PhysicsButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -16,6 +17,7 @@ class PhysicsButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return ob and ob.game and (rd.engine == 'BLENDER_GAME') + class PHYSICS_PT_game_physics(PhysicsButtonsPanel): bl_label = "Physics" @@ -122,7 +124,7 @@ class PHYSICS_PT_game_physics(PhysicsButtonsPanel): col.itemL(text="Cluster Collision:") col.itemR(soft, "cluster_rigid_to_softbody") col.itemR(soft, "cluster_soft_to_softbody") - sub = col.column() + sub = col.column() sub.active = (soft.cluster_rigid_to_softbody or soft.cluster_soft_to_softbody) sub.itemR(soft, "cluster_iterations", text="Iterations") @@ -135,6 +137,7 @@ class PHYSICS_PT_game_physics(PhysicsButtonsPanel): elif game.physics_type in ('SENSOR', 'INVISIBLE', 'NO_COLLISION', 'OCCLUDE'): layout.itemR(ob, "restrict_render", text="Invisible") + class PHYSICS_PT_game_collision_bounds(PhysicsButtonsPanel): bl_label = "Collision Bounds" @@ -163,6 +166,7 @@ class PHYSICS_PT_game_collision_bounds(PhysicsButtonsPanel): bpy.types.register(PHYSICS_PT_game_physics) bpy.types.register(PHYSICS_PT_game_collision_bounds) + class RenderButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -172,6 +176,7 @@ class RenderButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (rd.engine == 'BLENDER_GAME') + class RENDER_PT_game(RenderButtonsPanel): bl_label = "Game" @@ -182,6 +187,7 @@ class RENDER_PT_game(RenderButtonsPanel): row.itemO("view3d.game_start", text="Start") row.itemL() + class RENDER_PT_game_player(RenderButtonsPanel): bl_label = "Standalone Player" @@ -213,6 +219,7 @@ class RENDER_PT_game_player(RenderButtonsPanel): if gs.framing_type == 'LETTERBOX': col.itemR(gs, "framing_color", text="") + class RENDER_PT_game_stereo(RenderButtonsPanel): bl_label = "Stereo" @@ -237,31 +244,32 @@ class RENDER_PT_game_stereo(RenderButtonsPanel): dome_type = gs.dome_mode - split=layout.split() + split = layout.split() if dome_type == 'FISHEYE' or \ dome_type == 'TRUNCATED_REAR' or \ dome_type == 'TRUNCATED_FRONT': - col=split.column() + col = split.column() col.itemR(gs, "dome_angle", slider=True) col.itemR(gs, "dome_tilt") - col=split.column() + col = split.column() col.itemR(gs, "dome_tesselation", text="Tesselation") col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) elif dome_type == 'PANORAM_SPH': - col=split.column() + col = split.column() col.itemR(gs, "dome_tesselation", text="Tesselation") col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) else: # cube map - col=split.column() + col = split.column() col.itemR(gs, "dome_buffer_resolution", text="Resolution", slider=True) layout.itemR(gs, "dome_text") + class RENDER_PT_game_shading(RenderButtonsPanel): bl_label = "Shading" @@ -284,6 +292,7 @@ class RENDER_PT_game_shading(RenderButtonsPanel): col.itemR(gs, "glsl_nodes", text="Nodes") col.itemR(gs, "glsl_extra_textures", text="Extra Textures") + class RENDER_PT_game_performance(RenderButtonsPanel): bl_label = "Performance" @@ -306,6 +315,7 @@ class RENDER_PT_game_performance(RenderButtonsPanel): col.itemR(gs, "all_frames") col.itemR(gs, "display_lists") + class RENDER_PT_game_sound(RenderButtonsPanel): bl_label = "Sound" @@ -325,6 +335,7 @@ bpy.types.register(RENDER_PT_game_shading) bpy.types.register(RENDER_PT_game_performance) bpy.types.register(RENDER_PT_game_sound) + class WorldButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -334,6 +345,7 @@ class WorldButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (rd.engine == 'BLENDER_GAME') + class WORLD_PT_game_context_world(WorldButtonsPanel): bl_label = "" bl_show_header = False @@ -356,6 +368,7 @@ class WORLD_PT_game_context_world(WorldButtonsPanel): elif world: split.template_ID(space, "pin_id") + class WORLD_PT_game_world(WorldButtonsPanel): bl_label = "World" @@ -375,6 +388,7 @@ class WORLD_PT_game_world(WorldButtonsPanel): row.itemR(world.mist, "start") row.itemR(world.mist, "depth") + class WORLD_PT_game_physics(WorldButtonsPanel): bl_label = "Physics" diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py index ac4d26ecb4f..e0ff3959117 100644 --- a/release/scripts/ui/properties_material.py +++ b/release/scripts/ui/properties_material.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + def active_node_mat(mat): # TODO, 2.4x has a pipeline section, for 2.5 we need to communicate # which settings from node-materials are used @@ -18,6 +19,7 @@ def active_node_mat(mat): return None + class MaterialButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -29,6 +31,7 @@ class MaterialButtonsPanel(bpy.types.Panel): engine = context.scene.render_data.engine return mat and (engine in self.COMPAT_ENGINES) + class MATERIAL_PT_preview(MaterialButtonsPanel): bl_label = "Preview" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) @@ -36,6 +39,7 @@ class MATERIAL_PT_preview(MaterialButtonsPanel): def draw(self, context): self.layout.template_preview(context.material) + class MATERIAL_PT_context_material(MaterialButtonsPanel): bl_label = "" bl_show_header = False @@ -88,6 +92,7 @@ class MATERIAL_PT_context_material(MaterialButtonsPanel): if mat: layout.itemR(mat, "type", expand=True) + class MATERIAL_PT_shading(MaterialButtonsPanel): bl_label = "Shading" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) @@ -123,6 +128,7 @@ class MATERIAL_PT_shading(MaterialButtonsPanel): elif mat.type == 'HALO': layout.itemR(mat, "alpha") + class MATERIAL_PT_strand(MaterialButtonsPanel): bl_label = "Strand" bl_default_closed = True @@ -156,8 +162,10 @@ class MATERIAL_PT_strand(MaterialButtonsPanel): col.itemL(text="Shading:") col.itemR(tan, "width_fade") ob = context.object - if ob and ob.type == 'MESH': col.item_pointerR(tan, "uv_layer", ob.data, "uv_textures", text="") - else: col.itemR(tan, "uv_layer", text="") + if ob and ob.type == 'MESH': + col.item_pointerR(tan, "uv_layer", ob.data, "uv_textures", text="") + else: + col.itemR(tan, "uv_layer", text="") col.itemS() sub = col.column() sub.active = (not mat.shadeless) @@ -166,6 +174,7 @@ class MATERIAL_PT_strand(MaterialButtonsPanel): sub.active = tan.surface_diffuse sub.itemR(tan, "blend_distance", text="Distance") + class MATERIAL_PT_physics(MaterialButtonsPanel): bl_label = "Physics" COMPAT_ENGINES = set(['BLENDER_GAME']) @@ -187,6 +196,7 @@ class MATERIAL_PT_physics(MaterialButtonsPanel): col.itemR(phys, "elasticity", slider=True) col.itemR(phys, "damp", slider=True) + class MATERIAL_PT_options(MaterialButtonsPanel): bl_label = "Options" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) @@ -229,6 +239,7 @@ class MATERIAL_PT_options(MaterialButtonsPanel): col.itemR(mat, "vertex_color_light") col.itemR(mat, "object_color") + class MATERIAL_PT_shadow(MaterialButtonsPanel): bl_label = "Shadow" bl_default_closed = True @@ -263,6 +274,7 @@ class MATERIAL_PT_shadow(MaterialButtonsPanel): sub.active = (not mat.ray_shadow_bias) sub.itemR(mat, "shadow_ray_bias", text="Ray Bias") + class MATERIAL_PT_diffuse(MaterialButtonsPanel): bl_label = "Diffuse" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) @@ -319,6 +331,7 @@ class MATERIAL_PT_diffuse(MaterialButtonsPanel): row = layout.row() row.itemR(mat, "diffuse_ramp_factor", text="Factor") + class MATERIAL_PT_specular(MaterialButtonsPanel): bl_label = "Specular" COMPAT_ENGINES = set(['BLENDER_RENDER', 'BLENDER_GAME']) @@ -373,6 +386,7 @@ class MATERIAL_PT_specular(MaterialButtonsPanel): row = layout.row() row.itemR(mat, "specular_ramp_factor", text="Factor") + class MATERIAL_PT_sss(MaterialButtonsPanel): bl_label = "Subsurface Scattering" bl_default_closed = True @@ -418,6 +432,7 @@ class MATERIAL_PT_sss(MaterialButtonsPanel): col.itemS() col.itemR(sss, "error_tolerance", text="Error") + class MATERIAL_PT_mirror(MaterialButtonsPanel): bl_label = "Mirror" bl_default_closed = True @@ -473,8 +488,9 @@ class MATERIAL_PT_mirror(MaterialButtonsPanel): sub.itemR(raym, "gloss_samples", text="Samples") sub.itemR(raym, "gloss_anisotropic", text="Anisotropic") + class MATERIAL_PT_transp(MaterialButtonsPanel): - bl_label= "Transparency" + bl_label = "Transparency" bl_default_closed = True COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -533,8 +549,9 @@ class MATERIAL_PT_transp(MaterialButtonsPanel): sub.itemR(rayt, "gloss_threshold", text="Threshold") sub.itemR(rayt, "gloss_samples", text="Samples") + class MATERIAL_PT_halo(MaterialButtonsPanel): - bl_label= "Halo" + bl_label = "Halo" COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -580,8 +597,9 @@ class MATERIAL_PT_halo(MaterialButtonsPanel): sub.active = halo.star sub.itemR(halo, "star_tips") + class MATERIAL_PT_flare(MaterialButtonsPanel): - bl_label= "Flare" + bl_label = "Flare" COMPAT_ENGINES = set(['BLENDER_RENDER']) def poll(self, context): @@ -627,7 +645,7 @@ bpy.types.register(MATERIAL_PT_strand) bpy.types.register(MATERIAL_PT_options) bpy.types.register(MATERIAL_PT_shadow) -# Volumetrics + class VolumeButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -638,6 +656,7 @@ class VolumeButtonsPanel(bpy.types.Panel): engine = context.scene.render_data.engine return mat and (mat.type == 'VOLUME') and (engine in self.COMPAT_ENGINES) + class MATERIAL_PT_volume_density(VolumeButtonsPanel): bl_label = "Density" bl_default_closed = False @@ -653,6 +672,7 @@ class MATERIAL_PT_volume_density(VolumeButtonsPanel): row.itemR(vol, "density") row.itemR(vol, "density_scale") + class MATERIAL_PT_volume_shading(VolumeButtonsPanel): bl_label = "Shading" bl_default_closed = False @@ -678,6 +698,7 @@ class MATERIAL_PT_volume_shading(VolumeButtonsPanel): sub.itemR(vol, "reflection") sub.itemR(vol, "reflection_color", text="") + class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): bl_label = "Lighting" bl_default_closed = False @@ -713,8 +734,9 @@ class MATERIAL_PT_volume_lighting(VolumeButtonsPanel): sub.itemR(vol, "ms_spread") sub.itemR(vol, "ms_intensity") + class MATERIAL_PT_volume_transp(VolumeButtonsPanel): - bl_label= "Transparency" + bl_label = "Transparency" COMPAT_ENGINES = set(['BLENDER_RENDER']) def draw(self, context): @@ -724,6 +746,7 @@ class MATERIAL_PT_volume_transp(VolumeButtonsPanel): layout.itemR(mat, "transparency_method", expand=True) + class MATERIAL_PT_volume_integration(VolumeButtonsPanel): bl_label = "Integration" bl_default_closed = False diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py index e197586cf42..bd547bcc1aa 100644 --- a/release/scripts/ui/properties_object.py +++ b/release/scripts/ui/properties_object.py @@ -3,14 +3,16 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class ObjectButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' bl_context = "object" + class OBJECT_PT_context_object(ObjectButtonsPanel): bl_label = "" bl_show_header = False @@ -24,6 +26,7 @@ class OBJECT_PT_context_object(ObjectButtonsPanel): row.itemL(text="", icon='ICON_OBJECT_DATA') row.itemR(ob, "name", text="") + class OBJECT_PT_transform(ObjectButtonsPanel): bl_label = "Transform" @@ -49,6 +52,7 @@ class OBJECT_PT_transform(ObjectButtonsPanel): layout.itemR(ob, "rotation_mode") + class OBJECT_PT_transform_locks(ObjectButtonsPanel): bl_label = "Transform Locks" bl_default_closed = True @@ -74,6 +78,7 @@ class OBJECT_PT_transform_locks(ObjectButtonsPanel): row.column().itemR(ob, "lock_scale") + class OBJECT_PT_relations(ObjectButtonsPanel): bl_label = "Relations" @@ -102,6 +107,7 @@ class OBJECT_PT_relations(ObjectButtonsPanel): sub.item_pointerR(ob, "parent_bone", parent.data, "bones", text="") sub.active = parent != None + class OBJECT_PT_groups(ObjectButtonsPanel): bl_label = "Groups" @@ -128,6 +134,7 @@ class OBJECT_PT_groups(ObjectButtonsPanel): split.column().itemR(group, "layer", text="Dupli") split.column().itemR(group, "dupli_offset", text="") + class OBJECT_PT_display(ObjectButtonsPanel): bl_label = "Display" @@ -154,6 +161,7 @@ class OBJECT_PT_display(ObjectButtonsPanel): flow.itemR(ob, "x_ray", text="X-Ray") flow.itemR(ob, "draw_transparent", text="Transparency") + class OBJECT_PT_duplication(ObjectButtonsPanel): bl_label = "Duplication" @@ -188,6 +196,7 @@ class OBJECT_PT_duplication(ObjectButtonsPanel): elif ob.dupli_type == 'GROUP': layout.itemR(ob, "dupli_group", text="Group") + class OBJECT_PT_animation(ObjectButtonsPanel): bl_label = "Animation" diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index a8c7201c45f..29df85abf6a 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class ConstraintButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -119,7 +120,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): def IK(self, context, layout, con): if context.object.pose.ik_solver == "ITASC": layout.itemR(con, "ik_type") - getattr(self, "IK_"+con.ik_type)(context, layout, con) + getattr(self, "IK_" + con.ik_type)(context, layout, con) else: # Legacy IK constraint self.target_template(layout, con) @@ -440,7 +441,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): def LIMIT_DISTANCE(self, context, layout, con): self.target_template(layout, con) - col = layout.column(align=True); + col = layout.column(align=True) col.itemR(con, "distance") col.itemO("constraint.limitdistance_reset") @@ -562,7 +563,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): self.space_template(layout, con) - def SHRINKWRAP (self, context, layout, con): + def SHRINKWRAP(self, context, layout, con): self.target_template(layout, con) layout.itemR(con, "distance") @@ -581,6 +582,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row.itemL(text="To:") row.itemR(con, "track", expand=True) + class OBJECT_PT_constraints(ConstraintButtonsPanel): bl_label = "Constraints" bl_context = "constraint" @@ -594,11 +596,12 @@ class OBJECT_PT_constraints(ConstraintButtonsPanel): row = layout.row() row.item_menu_enumO("object.constraint_add", "type") - row.itemL(); + row.itemL() for con in ob.constraints: self.draw_constraint(context, con) + class BONE_PT_inverse_kinematics(ConstraintButtonsPanel): bl_label = "Inverse Kinematics" bl_default_closed = True @@ -681,6 +684,7 @@ class BONE_PT_inverse_kinematics(ConstraintButtonsPanel): #row.itemR(pchan, "ik_lin_control", text="Joint Size") #row.itemR(pchan, "ik_lin_weight", text="Weight", slider=True) + class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): bl_label = "iTaSC parameters" bl_default_closed = True @@ -731,6 +735,7 @@ class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): row.itemR(itasc, "dampmax", text="Damp", slider=True) row.itemR(itasc, "dampeps", text="Eps", slider=True) + class BONE_PT_constraints(ConstraintButtonsPanel): bl_label = "Constraints" bl_context = "bone_constraint" @@ -747,7 +752,7 @@ class BONE_PT_constraints(ConstraintButtonsPanel): row = layout.row() row.item_menu_enumO("pose.constraint_add", "type") - row.itemL(); + row.itemL() for con in pchan.constraints: self.draw_constraint(context, con) diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index 256c580f48d..4527cbf7c92 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -3,7 +3,7 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy from properties_physics_common import point_cache_ui @@ -11,15 +11,20 @@ from properties_physics_common import effector_weights_ui from properties_physics_common import basic_force_field_settings_ui from properties_physics_common import basic_force_field_falloff_ui + def particle_panel_enabled(context, psys): - return psys.point_cache.baked==False and psys.edited==False and (not context.particle_system_editable) + return psys.point_cache.baked == False and psys.edited == False and (not context.particle_system_editable) + def particle_panel_poll(context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False + if psys == None: + return False + if psys.settings == None: + return False return psys.settings.type in ('EMITTER', 'REACTOR', 'HAIR') + class ParticleButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -28,6 +33,7 @@ class ParticleButtonsPanel(bpy.types.Panel): def poll(self, context): return particle_panel_poll(context) + class PARTICLE_PT_particles(ParticleButtonsPanel): bl_label = "" bl_show_header = False @@ -84,32 +90,33 @@ class PARTICLE_PT_particles(ParticleButtonsPanel): layout.itemL(text="No settings for fluid particles") return - row=col.row() + row = col.row() row.enabled = particle_panel_enabled(context, psys) row.itemR(part, "type", text="") row.itemR(psys, "seed") split = layout.split(percentage=0.65) - if part.type=='HAIR': - if psys.edited==True: + if part.type == 'HAIR': + if psys.edited == True: split.itemO("particle.edited_clear", text="Free Edit") else: split.itemL(text="") row = split.row() row.enabled = particle_panel_enabled(context, psys) row.itemR(part, "hair_step") - if psys.edited==True: + if psys.edited == True: if psys.global_hair: layout.itemO("particle.connect_hair") layout.itemL(text="Hair is disconnected.") else: layout.itemO("particle.disconnect_hair") layout.itemL(text="") - elif part.type=='REACTOR': + elif part.type == 'REACTOR': split.enabled = particle_panel_enabled(context, psys) split.itemR(psys, "reactor_target_object") split.itemR(psys, "reactor_target_particle_system", text="Particle System") + class PARTICLE_PT_emission(ParticleButtonsPanel): bl_label = "Emission" @@ -148,29 +155,32 @@ class PARTICLE_PT_emission(ParticleButtonsPanel): row.itemR(part, "emit_from", expand=True) row = layout.row() row.itemR(part, "trand") - if part.distribution!='GRID': + if part.distribution != 'GRID': row.itemR(part, "even_distribution") - if part.emit_from=='FACE' or part.emit_from=='VOLUME': + if part.emit_from == 'FACE' or part.emit_from == 'VOLUME': row = layout.row() row.itemR(part, "distribution", expand=True) row = layout.row() - if part.distribution=='JIT': + if part.distribution == 'JIT': row.itemR(part, "userjit", text="Particles/Face") row.itemR(part, "jitter_factor", text="Jittering Amount", slider=True) - elif part.distribution=='GRID': + elif part.distribution == 'GRID': row.itemR(part, "grid_resolution") + class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel): bl_label = "Hair dynamics" bl_default_closed = True def poll(self, context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False + if psys == None: + return False + if psys.settings == None: + return False return psys.settings.type == 'HAIR' def draw_header(self, context): @@ -208,7 +218,8 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel): sub.itemR(cloth, "air_damping", text="Air") col.itemL(text="Quality:") - col.itemR(cloth, "quality", text="Steps",slider=True) + col.itemR(cloth, "quality", text="Steps", slider=True) + class PARTICLE_PT_cache(ParticleButtonsPanel): bl_label = "Cache" @@ -216,8 +227,10 @@ class PARTICLE_PT_cache(ParticleButtonsPanel): def poll(self, context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False + if psys == None: + return False + if psys.settings == None: + return False phystype = psys.settings.physics_type if phystype == 'NO' or phystype == 'KEYED': return False @@ -230,6 +243,7 @@ class PARTICLE_PT_cache(ParticleButtonsPanel): point_cache_ui(self, psys.point_cache, particle_panel_enabled(context, psys), not psys.hair_dynamics, 0) + class PARTICLE_PT_velocity(ParticleButtonsPanel): bl_label = "Velocity" @@ -264,7 +278,7 @@ class PARTICLE_PT_velocity(ParticleButtonsPanel): layout.row().itemL(text="Other:") split = layout.split() sub = split.column() - if part.emit_from=='PARTICLE': + if part.emit_from == 'PARTICLE': sub.itemR(part, "particle_factor") else: sub.itemR(part, "object_factor", slider=True) @@ -275,6 +289,7 @@ class PARTICLE_PT_velocity(ParticleButtonsPanel): # sub.itemR(part, "reactor_factor") # sub.itemR(part, "reaction_shape", slider=True) + class PARTICLE_PT_rotation(ParticleButtonsPanel): bl_label = "Rotation" @@ -314,6 +329,7 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel): sub.itemR(part, "angular_velocity_factor", text="") + class PARTICLE_PT_physics(ParticleButtonsPanel): bl_label = "Physics" @@ -367,7 +383,7 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): row.itemR(psys, "keyed_timing", text="Use Timing") layout.itemL(text="Keys:") - elif part.physics_type=='BOIDS': + elif part.physics_type == 'BOIDS': boids = part.boids @@ -415,8 +431,8 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): col.itemR(boids, "banking", slider=True) col.itemR(boids, "height", slider=True) - if part.physics_type=='KEYED' or part.physics_type=='BOIDS': - if part.physics_type=='BOIDS': + if part.physics_type == 'KEYED' or part.physics_type == 'BOIDS': + if part.physics_type == 'BOIDS': layout.itemL(text="Relations:") row = layout.row() @@ -435,13 +451,13 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): key = psys.active_particle_target if key: row = layout.row() - if part.physics_type=='KEYED': + if part.physics_type == 'KEYED': col = row.column() #doesn't work yet #col.red_alert = key.valid col.itemR(key, "object", text="") col.itemR(key, "system", text="System") - col = row.column(); + col = row.column() col.active = psys.keyed_timing col.itemR(key, "time") col.itemR(key, "duration") @@ -454,15 +470,19 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): layout.itemR(key, "mode", expand=True) + class PARTICLE_PT_boidbrain(ParticleButtonsPanel): bl_label = "Boid Brain" def poll(self, context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - if psys.point_cache.external: return False - return psys.settings.physics_type=='BOIDS' + if psys == None: + return False + if psys.settings == None: + return False + if psys.point_cache.external: + return False + return psys.settings.physics_type == 'BOIDS' def draw(self, context): layout = self.layout @@ -488,7 +508,7 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): row = layout.row() row.itemR(state, "ruleset_type") - if state.ruleset_type=='FUZZY': + if state.ruleset_type == 'FUZZY': row.itemR(state, "rule_fuzziness", slider=True) else: row.itemL(text="") @@ -548,14 +568,17 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): row.itemR(rule, "distance") row.itemR(rule, "flee_distance") + class PARTICLE_PT_render(ParticleButtonsPanel): bl_label = "Render" def poll(self, context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return True; + if psys == None: + return False + if psys.settings == None: + return False + return True def draw(self, context): layout = self.layout @@ -565,16 +588,16 @@ class PARTICLE_PT_render(ParticleButtonsPanel): row = layout.row() row.itemR(part, "material") - row.itemR(psys, "parent"); + row.itemR(psys, "parent") split = layout.split() sub = split.column() - sub.itemR(part, "emitter"); - sub.itemR(part, "parent"); + sub.itemR(part, "emitter") + sub.itemR(part, "parent") sub = split.column() - sub.itemR(part, "unborn"); - sub.itemR(part, "died"); + sub.itemR(part, "unborn") + sub.itemR(part, "died") row = layout.row() row.itemR(part, "ren_as", expand=True) @@ -590,7 +613,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel): sub.itemR(part, "velocity_length") elif part.ren_as == 'PATH': - if (part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False): + if part.type != 'HAIR' and part.physics_type != 'KEYED' and psys.point_cache.baked == False: box = layout.box() box.itemL(text="Baked or keyed particles needed for correct rendering.") return @@ -611,16 +634,16 @@ class PARTICLE_PT_render(ParticleButtonsPanel): sub.itemL(text="Timing:") sub.itemR(part, "abs_path_time") - sub.itemR(part, "path_start", text="Start", slider= not part.abs_path_time) - sub.itemR(part, "path_end", text="End", slider= not part.abs_path_time) + sub.itemR(part, "path_start", text="Start", slider=not part.abs_path_time) + sub.itemR(part, "path_end", text="End", slider=not part.abs_path_time) sub.itemR(part, "random_length", text="Random", slider=True) row = layout.row() col = row.column() - if part.type=='HAIR' and part.render_strand==True and part.child_type=='FACES': + if part.type == 'HAIR' and part.render_strand == True and part.child_type == 'FACES': layout.itemR(part, "enable_simplify") - if part.enable_simplify==True: + if part.enable_simplify == True: row = layout.row() row.itemR(part, "simplify_refsize") row.itemR(part, "simplify_rate") @@ -628,7 +651,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel): row = layout.row() row.itemR(part, "viewport") subrow = row.row() - subrow.active = part.viewport==True + subrow.active = part.viewport == True subrow.itemR(part, "simplify_viewport") elif part.ren_as == 'OBJECT': @@ -698,7 +721,8 @@ class PARTICLE_PT_render(ParticleButtonsPanel): row.itemR(part, "billboard_animation", expand=True) row.itemL(text="Offset:") row.itemR(part, "billboard_split_offset", expand=True) - if part.ren_as == 'HALO' or part.ren_as == 'LINE' or part.ren_as=='BILLBOARD': + + if part.ren_as == 'HALO' or part.ren_as == 'LINE' or part.ren_as == 'BILLBOARD': row = layout.row() col = row.column() col.itemR(part, "trail_count") @@ -711,15 +735,18 @@ class PARTICLE_PT_render(ParticleButtonsPanel): col = row.column() col.itemL(text="") + class PARTICLE_PT_draw(ParticleButtonsPanel): bl_label = "Display" bl_default_closed = True def poll(self, context): psys = context.particle_system - if psys==None: return False - if psys.settings==None: return False - return True; + if psys == None: + return False + if psys.settings == None: + return False + return True def draw(self, context): layout = self.layout @@ -730,19 +757,19 @@ class PARTICLE_PT_draw(ParticleButtonsPanel): row = layout.row() row.itemR(part, "draw_as", expand=True) - if part.draw_as=='NONE' or (part.ren_as=='NONE' and part.draw_as=='RENDER'): + if part.draw_as == 'NONE' or (part.ren_as == 'NONE' and part.draw_as == 'RENDER'): return - path = (part.ren_as=='PATH' and part.draw_as=='RENDER') or part.draw_as=='PATH' + path = (part.ren_as == 'PATH' and part.draw_as == 'RENDER') or part.draw_as == 'PATH' - if path and part.type!='HAIR' and part.physics_type!='KEYED' and psys.point_cache.baked==False: + if path and part.type != 'HAIR' and part.physics_type != 'KEYED' and psys.point_cache.baked == False: box = layout.box() box.itemL(text="Baked or keyed particles needed for correct drawing.") return row = layout.row() row.itemR(part, "display", slider=True) - if part.draw_as!='RENDER' or part.ren_as=='HALO': + if part.draw_as != 'RENDER' or part.ren_as == 'HALO': row.itemR(part, "draw_size") else: row.itemL(text="") @@ -762,10 +789,11 @@ class PARTICLE_PT_draw(ParticleButtonsPanel): col.itemR(part, "draw_step") else: subcol = col.column() - subcol.active = part.material_color==False + subcol.active = part.material_color == False #subcol.itemL(text="color") #subcol.itemL(text="Override material color") + class PARTICLE_PT_children(ParticleButtonsPanel): bl_label = "Children" bl_default_closed = True @@ -778,7 +806,7 @@ class PARTICLE_PT_children(ParticleButtonsPanel): layout.row().itemR(part, "child_type", expand=True) - if part.child_type=='NONE': + if part.child_type == 'NONE': return row = layout.row() @@ -789,7 +817,7 @@ class PARTICLE_PT_children(ParticleButtonsPanel): col = row.column(align=True) - if part.child_type=='FACES': + if part.child_type == 'FACES': col.itemR(part, "virtual_parents", slider=True) else: col.itemR(part, "child_radius", text="Radius") @@ -842,6 +870,7 @@ class PARTICLE_PT_children(ParticleButtonsPanel): sub = split.column() sub.itemR(part, "kink_shape", slider=True) + class PARTICLE_PT_field_weights(ParticleButtonsPanel): bl_label = "Field Weights" bl_default_closed = True @@ -853,6 +882,7 @@ class PARTICLE_PT_field_weights(ParticleButtonsPanel): if part.type == 'HAIR': self.layout.itemR(part.effector_weights, "do_growing_hair") + class PARTICLE_PT_force_fields(ParticleButtonsPanel): bl_label = "Force Field Settings" bl_default_closed = True @@ -866,7 +896,7 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel): split = layout.split(percentage=0.2) split.itemL(text="Type 1:") - split.itemR(part.force_field_1, "type",text="") + split.itemR(part.force_field_1, "type", text="") basic_force_field_settings_ui(self, part.force_field_1) basic_force_field_falloff_ui(self, part.force_field_1) @@ -875,10 +905,11 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel): split = layout.split(percentage=0.2) split.itemL(text="Type 2:") - split.itemR(part.force_field_2, "type",text="") + split.itemR(part.force_field_2, "type", text="") basic_force_field_settings_ui(self, part.force_field_2) basic_force_field_falloff_ui(self, part.force_field_2) + class PARTICLE_PT_vertexgroups(ParticleButtonsPanel): bl_label = "Vertexgroups" bl_default_closed = True diff --git a/release/scripts/ui/properties_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py index 4fcaed30ec0..104a9002df4 100644 --- a/release/scripts/ui/properties_physics_cloth.py +++ b/release/scripts/ui/properties_physics_cloth.py @@ -3,14 +3,16 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy from properties_physics_common import point_cache_ui from properties_physics_common import effector_weights_ui + def cloth_panel_enabled(md): - return md.point_cache.baked==False + return md.point_cache.baked == False + class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' @@ -22,6 +24,7 @@ class PhysicButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (ob and ob.type == 'MESH') and (not rd.use_game_engine) + class PHYSICS_PT_cloth(PhysicButtonsPanel): bl_label = "Cloth" @@ -57,7 +60,7 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel): col = split.column() col.itemL(text="Quality:") - col.itemR(cloth, "quality", text="Steps",slider=True) + col.itemR(cloth, "quality", text="Steps", slider=True) col.itemL(text="Material:") sub = col.column(align=True) @@ -92,6 +95,7 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel): col.itemR(cloth, "goal_friction", text="Friction") """ + class PHYSICS_PT_cloth_cache(PhysicButtonsPanel): bl_label = "Cloth Cache" bl_default_closed = True @@ -103,6 +107,7 @@ class PHYSICS_PT_cloth_cache(PhysicButtonsPanel): md = context.cloth point_cache_ui(self, md.point_cache, cloth_panel_enabled(md), 0, 0) + class PHYSICS_PT_cloth_collision(PhysicButtonsPanel): bl_label = "Cloth Collision" bl_default_closed = True @@ -138,6 +143,7 @@ class PHYSICS_PT_cloth_collision(PhysicButtonsPanel): sub.itemR(cloth, "self_collision_quality", slider=True, text="Quality") sub.itemR(cloth, "self_min_distance", slider=True, text="Distance") + class PHYSICS_PT_cloth_stiffness(PhysicButtonsPanel): bl_label = "Cloth Stiffness Scaling" bl_default_closed = True @@ -174,6 +180,7 @@ class PHYSICS_PT_cloth_stiffness(PhysicButtonsPanel): sub.itemR(cloth, "bending_stiffness_max", text="Max") sub.item_pointerR(cloth, "bending_vertex_group", ob, "vertex_groups", text="") + class PHYSICS_PT_cloth_field_weights(PhysicButtonsPanel): bl_label = "Cloth Field Weights" bl_default_closed = True diff --git a/release/scripts/ui/properties_physics_common.py b/release/scripts/ui/properties_physics_common.py index 4839f061963..3d2643c75cc 100644 --- a/release/scripts/ui/properties_physics_common.py +++ b/release/scripts/ui/properties_physics_common.py @@ -3,14 +3,16 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# import bpy + def point_cache_ui(self, cache, enabled, particles, smoke): layout = self.layout layout.set_context_pointer("PointCache", cache) row = layout.row() - row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2 ) + row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2) col = row.column(align=True) col.itemO("ptcache.add_new", icon='ICON_ZOOMIN', text="") col.itemO("ptcache.remove", icon='ICON_ZOOMOUT', text="") @@ -53,7 +55,7 @@ def point_cache_ui(self, cache, enabled, particles, smoke): row.enabled = enabled row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake") if not smoke: - row.itemR(cache, "step"); + row.itemR(cache, "step") if not smoke: row = layout.row() @@ -71,6 +73,7 @@ def point_cache_ui(self, cache, enabled, particles, smoke): row.itemO("ptcache.free_bake_all", text="Free All Bakes") layout.itemO("ptcache.bake_all", "bake", False, text="Update All Dynamics to current frame") + def effector_weights_ui(self, weights): layout = self.layout @@ -96,6 +99,7 @@ def effector_weights_ui(self, weights): flow.itemR(weights, "drag", slider=True) flow.itemR(weights, "boid", slider=True) + def basic_force_field_settings_ui(self, field): layout = self.layout split = layout.split() diff --git a/release/scripts/ui/properties_physics_field.py b/release/scripts/ui/properties_physics_field.py index c6a5d373d95..eeb1ebce9ad 100644 --- a/release/scripts/ui/properties_physics_field.py +++ b/release/scripts/ui/properties_physics_field.py @@ -3,12 +3,13 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy from properties_physics_common import basic_force_field_settings_ui from properties_physics_common import basic_force_field_falloff_ui + class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -18,6 +19,7 @@ class PhysicButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (context.object) and (not rd.use_game_engine) + class PHYSICS_PT_field(PhysicButtonsPanel): bl_label = "Force Fields" @@ -29,7 +31,7 @@ class PHYSICS_PT_field(PhysicButtonsPanel): split = layout.split(percentage=0.2) split.itemL(text="Type:") - split.itemR(field, "type",text="") + split.itemR(field, "type", text="") if field.type not in ('NONE', 'GUIDE', 'TEXTURE'): split = layout.split(percentage=0.2) @@ -81,8 +83,7 @@ class PHYSICS_PT_field(PhysicButtonsPanel): col.itemR(field, "use_coordinates") col.itemR(field, "root_coordinates") col.itemR(field, "force_2d") - - else : + else: basic_force_field_settings_ui(self, field) if field.type not in ('NONE', 'GUIDE'): @@ -134,6 +135,7 @@ class PHYSICS_PT_field(PhysicButtonsPanel): sub.active = field.use_radial_max sub.itemR(field, "radial_maximum", text="Distance") + class PHYSICS_PT_collision(PhysicButtonsPanel): bl_label = "Collision" #bl_default_closed = True diff --git a/release/scripts/ui/properties_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py index f0801a15459..a2690ffa93c 100644 --- a/release/scripts/ui/properties_physics_fluid.py +++ b/release/scripts/ui/properties_physics_fluid.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -16,6 +17,7 @@ class PhysicButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (ob and ob.type == 'MESH') and (not rd.use_game_engine) + class PHYSICS_PT_fluid(PhysicButtonsPanel): bl_label = "Fluid" @@ -173,6 +175,7 @@ class PHYSICS_PT_fluid(PhysicButtonsPanel): sub.itemR(fluid, "velocity_strength", text="Strength") sub.itemR(fluid, "velocity_radius", text="Radius") + class PHYSICS_PT_domain_gravity(PhysicButtonsPanel): bl_label = "Domain World" bl_default_closed = True @@ -211,6 +214,7 @@ class PHYSICS_PT_domain_gravity(PhysicButtonsPanel): sub.itemR(fluid, "grid_levels", slider=True) sub.itemR(fluid, "compressibility", slider=True) + class PHYSICS_PT_domain_boundary(PhysicButtonsPanel): bl_label = "Domain Boundary" bl_default_closed = True @@ -239,6 +243,7 @@ class PHYSICS_PT_domain_boundary(PhysicButtonsPanel): sub.itemR(fluid, "surface_smoothing", text="Smoothing") sub.itemR(fluid, "surface_subdivisions", text="Subdivisions") + class PHYSICS_PT_domain_particles(PhysicButtonsPanel): bl_label = "Domain Particles" bl_default_closed = True diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py index cd5bbecc9d6..64c9561881d 100644 --- a/release/scripts/ui/properties_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -3,12 +3,14 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + from properties_physics_common import point_cache_ui from properties_physics_common import effector_weights_ui + class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -19,6 +21,7 @@ class PhysicButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (ob and ob.type == 'MESH') and (not rd.use_game_engine) + class PHYSICS_PT_smoke(PhysicButtonsPanel): bl_label = "Smoke" @@ -90,6 +93,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel): #elif md.smoke_type == 'TYPE_COLL': # layout.itemS() + class PHYSICS_PT_smoke_groups(PhysicButtonsPanel): bl_label = "Smoke Groups" bl_default_closed = True @@ -116,6 +120,7 @@ class PHYSICS_PT_smoke_groups(PhysicButtonsPanel): col.itemL(text="Collision Group:") col.itemR(group, "coll_group", text="") + class PHYSICS_PT_smoke_cache(PhysicButtonsPanel): bl_label = "Smoke Cache" bl_default_closed = True @@ -130,7 +135,8 @@ class PHYSICS_PT_smoke_cache(PhysicButtonsPanel): md = context.smoke.domain_settings cache = md.point_cache_low - point_cache_ui(self, cache, cache.baked==False, 0, 1) + point_cache_ui(self, cache, cache.baked == False, 0, 1) + class PHYSICS_PT_smoke_highres(PhysicButtonsPanel): bl_label = "Smoke High Resolution" @@ -162,6 +168,7 @@ class PHYSICS_PT_smoke_highres(PhysicButtonsPanel): col.itemR(md, "strength") col.itemR(md, "viewhighres") + class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel): bl_label = "Smoke High Resolution Cache" bl_default_closed = True @@ -176,7 +183,8 @@ class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel): md = context.smoke.domain_settings cache = md.point_cache_high - point_cache_ui(self, cache, cache.baked==False, 0, 1) + point_cache_ui(self, cache, cache.baked == False, 0, 1) + class PHYSICS_PT_smoke_field_weights(PhysicButtonsPanel): bl_label = "Smoke Field Weights" diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py index 32b0a6459b5..52ecc7b56b9 100644 --- a/release/scripts/ui/properties_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -3,14 +3,17 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + from properties_physics_common import point_cache_ui from properties_physics_common import effector_weights_ui + def softbody_panel_enabled(md): - return md.point_cache.baked==False + return md.point_cache.baked == False + class PhysicButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' @@ -22,6 +25,7 @@ class PhysicButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (ob and ob.type == 'MESH') and (not rd.use_game_engine) + class PHYSICS_PT_softbody(PhysicButtonsPanel): bl_label = "Soft Body" @@ -63,6 +67,7 @@ class PHYSICS_PT_softbody(PhysicButtonsPanel): col.itemL(text="Simulation:") col.itemR(softbody, "speed") + class PHYSICS_PT_softbody_cache(PhysicButtonsPanel): bl_label = "Soft Body Cache" bl_default_closed = True @@ -74,6 +79,7 @@ class PHYSICS_PT_softbody_cache(PhysicButtonsPanel): md = context.soft_body point_cache_ui(self, md.point_cache, softbody_panel_enabled(md), 0, 0) + class PHYSICS_PT_softbody_goal(PhysicButtonsPanel): bl_label = "Soft Body Goal" bl_default_closed = True @@ -115,6 +121,7 @@ class PHYSICS_PT_softbody_goal(PhysicButtonsPanel): layout.item_pointerR(softbody, "goal_vertex_group", ob, "vertex_groups", text="Vertex Group") + class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): bl_label = "Soft Body Edges" bl_default_closed = True @@ -163,6 +170,7 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): col.itemR(softbody, "edge_collision", text="Edge") col.itemR(softbody, "face_collision", text="Face") + class PHYSICS_PT_softbody_collision(PhysicButtonsPanel): bl_label = "Soft Body Collision" bl_default_closed = True @@ -194,6 +202,7 @@ class PHYSICS_PT_softbody_collision(PhysicButtonsPanel): col.itemR(softbody, "ball_stiff", text="Stiffness") col.itemR(softbody, "ball_damp", text="Dampening") + class PHYSICS_PT_softbody_solver(PhysicButtonsPanel): bl_label = "Soft Body Solver" bl_default_closed = True @@ -228,6 +237,7 @@ class PHYSICS_PT_softbody_solver(PhysicButtonsPanel): layout.itemL(text="Diagnostics:") layout.itemR(softbody, "diagnose") + class PHYSICS_PT_softbody_field_weights(PhysicButtonsPanel): bl_label = "Soft Body Field Weights" bl_default_closed = True diff --git a/release/scripts/ui/properties_render.py b/release/scripts/ui/properties_render.py index 65410e7d64e..7fbf83dbc59 100644 --- a/release/scripts/ui/properties_render.py +++ b/release/scripts/ui/properties_render.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class RenderButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,7 +15,8 @@ class RenderButtonsPanel(bpy.types.Panel): def poll(self, context): rd = context.scene.render_data - return (context.scene and rd.use_game_engine==False) and (rd.engine in self.COMPAT_ENGINES) + return (context.scene and rd.use_game_engine == False) and (rd.engine in self.COMPAT_ENGINES) + class RENDER_PT_render(RenderButtonsPanel): bl_label = "Render" @@ -31,6 +33,7 @@ class RENDER_PT_render(RenderButtonsPanel): layout.itemR(rd, "display_mode", text="Display") + class RENDER_PT_layers(RenderButtonsPanel): bl_label = "Layers" bl_default_closed = True @@ -125,6 +128,7 @@ class RENDER_PT_layers(RenderButtonsPanel): row.itemR(rl, "pass_refraction") row.itemR(rl, "pass_refraction_exclude", text="", icon='ICON_X') + class RENDER_PT_shading(RenderButtonsPanel): bl_label = "Shading" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -147,6 +151,7 @@ class RENDER_PT_shading(RenderButtonsPanel): col.itemR(rd, "color_management") col.itemR(rd, "alpha_mode", text="Alpha") + class RENDER_PT_performance(RenderButtonsPanel): bl_label = "Performance" bl_default_closed = True @@ -187,6 +192,7 @@ class RENDER_PT_performance(RenderButtonsPanel): sub.itemR(rd, "use_instances", text="Instances") sub.itemR(rd, "use_local_coords", text="Local Coordinates") + class RENDER_PT_post_processing(RenderButtonsPanel): bl_label = "Post Processing" bl_default_closed = True @@ -224,6 +230,7 @@ class RENDER_PT_post_processing(RenderButtonsPanel): sub.itemR(rd, "edge_threshold", text="Threshold", slider=True) sub.itemR(rd, "edge_color", text="") + class RENDER_PT_output(RenderButtonsPanel): bl_label = "Output" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -288,6 +295,7 @@ class RENDER_PT_output(RenderButtonsPanel): split = layout.split() split.itemR(rd, "tiff_bit") + class RENDER_PT_encoding(RenderButtonsPanel): bl_label = "Encoding" bl_default_closed = True @@ -340,6 +348,7 @@ class RENDER_PT_encoding(RenderButtonsPanel): col.itemR(rd, "ffmpeg_multiplex_audio") col.itemR(rd, "ffmpeg_audio_volume") + class RENDER_PT_antialiasing(RenderButtonsPanel): bl_label = "Anti-Aliasing" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -366,6 +375,7 @@ class RENDER_PT_antialiasing(RenderButtonsPanel): col.itemR(rd, "pixel_filter", text="") col.itemR(rd, "filter_size", text="Size", slider=True) + class RENDER_PT_dimensions(RenderButtonsPanel): bl_label = "Dimensions" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -403,7 +413,8 @@ class RENDER_PT_dimensions(RenderButtonsPanel): col.itemL(text="Frame Rate:") col.itemR(rd, "fps") - col.itemR(rd, "fps_base",text="/") + col.itemR(rd, "fps_base", text="/") + class RENDER_PT_stamp(RenderButtonsPanel): bl_label = "Stamp" diff --git a/release/scripts/ui/properties_scene.py b/release/scripts/ui/properties_scene.py index e87807ddfab..005e0b449cd 100644 --- a/release/scripts/ui/properties_scene.py +++ b/release/scripts/ui/properties_scene.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class SceneButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -14,6 +15,7 @@ class SceneButtonsPanel(bpy.types.Panel): def poll(self, context): return context.scene + class SCENE_PT_scene(SceneButtonsPanel): bl_label = "Scene" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -26,6 +28,7 @@ class SCENE_PT_scene(SceneButtonsPanel): layout.itemR(scene, "camera") layout.itemR(scene, "set", text="Background") + class SCENE_PT_unit(SceneButtonsPanel): bl_label = "Units" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -43,6 +46,7 @@ class SCENE_PT_unit(SceneButtonsPanel): row.itemR(unit, "scale_length", text="Scale") row.itemR(unit, "use_separate") + class SCENE_PT_keying_sets(SceneButtonsPanel): bl_label = "Keying Sets" @@ -73,6 +77,7 @@ class SCENE_PT_keying_sets(SceneButtonsPanel): col.itemR(ks, "insertkey_needed", text="Needed") col.itemR(ks, "insertkey_visual", text="Visual") + class SCENE_PT_keying_set_paths(SceneButtonsPanel): bl_label = "Active Keying Set" @@ -119,6 +124,7 @@ class SCENE_PT_keying_set_paths(SceneButtonsPanel): if ksp.grouping == 'NAMED': col.itemR(ksp, "group") + class SCENE_PT_physics(SceneButtonsPanel): bl_label = "Gravity" COMPAT_ENGINES = set(['BLENDER_RENDER']) diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index d5f475bcdc8..cea10be9f59 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -3,8 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# import bpy + def active_node_mat(mat): if mat: mat_node = mat.active_node_material @@ -15,20 +17,25 @@ def active_node_mat(mat): return None + def context_tex_datablock(context): idblock = active_node_mat(context.material) - if idblock: return idblock + if idblock: + return idblock - idblock = context.lamp - if idblock: return idblock + idblock = context.lamp + if idblock: + return idblock - idblock = context.world - if idblock: return idblock + idblock = context.world + if idblock: + return idblock - idblock = context.brush + idblock = context.brush return idblock + class TextureButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -38,6 +45,7 @@ class TextureButtonsPanel(bpy.types.Panel): tex = context.texture return (tex and (tex.type != 'NONE' or tex.use_nodes)) + class TEXTURE_PT_preview(TextureButtonsPanel): bl_label = "Preview" @@ -54,6 +62,7 @@ class TEXTURE_PT_preview(TextureButtonsPanel): else: layout.template_preview(tex, slot=slot) + class TEXTURE_PT_context_texture(TextureButtonsPanel): bl_label = "" bl_show_header = False @@ -91,8 +100,8 @@ class TEXTURE_PT_context_texture(TextureButtonsPanel): context.sculpt_object or context.vertex_paint_object or context.weight_paint_object or - context.texture_paint_object - ): + context.texture_paint_object): + split.itemR(space, "brush_texture", text="Brush", toggle=True) if tex: @@ -111,6 +120,7 @@ class TEXTURE_PT_context_texture(TextureButtonsPanel): split.itemL(text="Type:") split.itemR(tex, "type", text="") + class TEXTURE_PT_colors(TextureButtonsPanel): bl_label = "Colors" bl_default_closed = True @@ -140,12 +150,13 @@ class TEXTURE_PT_colors(TextureButtonsPanel): # Texture Slot Panels # + class TextureSlotPanel(TextureButtonsPanel): + def poll(self, context): - return ( - context.texture_slot and - TextureButtonsPanel.poll(self, context) - ) + return (context.texture_slot and + TextureButtonsPanel.poll(self, context)) + class TEXTURE_PT_mapping(TextureSlotPanel): bl_label = "Mapping" @@ -177,8 +188,11 @@ class TEXTURE_PT_mapping(TextureSlotPanel): split = layout.split(percentage=0.3) split.itemL(text="Layer:") ob = context.object - if ob and ob.type == 'MESH': split.item_pointerR(tex, "uv_layer", ob.data, "uv_textures", text="") - else: split.itemR(tex, "uv_layer", text="") + if ob and ob.type == 'MESH': + split.item_pointerR(tex, "uv_layer", ob.data, "uv_textures", text="") + else: + split.itemR(tex, "uv_layer", text="") + elif tex.texture_coordinates == 'OBJECT': split = layout.split(percentage=0.3) split.itemL(text="Object:") @@ -224,10 +238,10 @@ class TEXTURE_PT_mapping(TextureSlotPanel): class TEXTURE_PT_influence(TextureSlotPanel): bl_label = "Influence" + def poll(self, context): return context.texture_slot - def draw(self, context): layout = self.layout @@ -326,11 +340,14 @@ class TEXTURE_PT_influence(TextureSlotPanel): # Texture Type Panels # + class TextureTypePanel(TextureButtonsPanel): + def poll(self, context): tex = context.texture return (tex and tex.type == self.tex_type and not tex.use_nodes) + class TEXTURE_PT_clouds(TextureTypePanel): bl_label = "Clouds" tex_type = 'CLOUDS' @@ -350,6 +367,7 @@ class TEXTURE_PT_clouds(TextureTypePanel): flow.itemR(tex, "noise_depth", text="Depth") flow.itemR(tex, "nabla", text="Nabla") + class TEXTURE_PT_wood(TextureTypePanel): bl_label = "Wood" tex_type = 'WOOD' @@ -374,6 +392,7 @@ class TEXTURE_PT_wood(TextureTypePanel): flow.itemR(tex, "turbulence") flow.itemR(tex, "nabla") + class TEXTURE_PT_marble(TextureTypePanel): bl_label = "Marble" tex_type = 'MARBLE' @@ -395,6 +414,7 @@ class TEXTURE_PT_marble(TextureTypePanel): flow.itemR(tex, "turbulence") flow.itemR(tex, "nabla") + class TEXTURE_PT_magic(TextureTypePanel): bl_label = "Magic" tex_type = 'MAGIC' @@ -408,6 +428,7 @@ class TEXTURE_PT_magic(TextureTypePanel): row.itemR(tex, "noise_depth", text="Depth") row.itemR(tex, "turbulence") + class TEXTURE_PT_blend(TextureTypePanel): bl_label = "Blend" tex_type = 'BLEND' @@ -423,6 +444,7 @@ class TEXTURE_PT_blend(TextureTypePanel): sub.active = (tex.progression in ('LINEAR', 'QUADRATIC', 'EASING', 'RADIAL')) sub.itemR(tex, "flip_axis", expand=True) + class TEXTURE_PT_stucci(TextureTypePanel): bl_label = "Stucci" tex_type = 'STUCCI' @@ -441,6 +463,7 @@ class TEXTURE_PT_stucci(TextureTypePanel): row.itemR(tex, "noise_size", text="Size") row.itemR(tex, "turbulence") + class TEXTURE_PT_image(TextureTypePanel): bl_label = "Image" tex_type = 'IMAGE' @@ -452,6 +475,7 @@ class TEXTURE_PT_image(TextureTypePanel): layout.template_image(tex, "image", tex.image_user) + class TEXTURE_PT_image_sampling(TextureTypePanel): bl_label = "Image Sampling" bl_default_closed = True @@ -495,6 +519,7 @@ class TEXTURE_PT_image_sampling(TextureTypePanel): else: col.itemR(tex, "filter_eccentricity", text="Eccentricity") + class TEXTURE_PT_image_mapping(TextureTypePanel): bl_label = "Image Mapping" bl_default_closed = True @@ -543,6 +568,7 @@ class TEXTURE_PT_image_mapping(TextureTypePanel): col.itemR(tex, "crop_max_x", text="X") col.itemR(tex, "crop_max_y", text="Y") + class TEXTURE_PT_plugin(TextureTypePanel): bl_label = "Plugin" tex_type = 'PLUGIN' @@ -554,6 +580,7 @@ class TEXTURE_PT_plugin(TextureTypePanel): layout.itemL(text="Nothing yet") + class TEXTURE_PT_envmap(TextureTypePanel): bl_label = "Environment Map" tex_type = 'ENVIRONMENT_MAP' @@ -565,6 +592,7 @@ class TEXTURE_PT_envmap(TextureTypePanel): layout.itemL(text="Nothing yet") + class TEXTURE_PT_musgrave(TextureTypePanel): bl_label = "Musgrave" tex_type = 'MUSGRAVE' @@ -598,6 +626,7 @@ class TEXTURE_PT_musgrave(TextureTypePanel): row.itemR(tex, "noise_size", text="Size") row.itemR(tex, "nabla") + class TEXTURE_PT_voronoi(TextureTypePanel): bl_label = "Voronoi" tex_type = 'VORONOI' @@ -632,6 +661,7 @@ class TEXTURE_PT_voronoi(TextureTypePanel): row.itemR(tex, "noise_size", text="Size") row.itemR(tex, "nabla") + class TEXTURE_PT_distortednoise(TextureTypePanel): bl_label = "Distorted Noise" tex_type = 'DISTORTED_NOISE' @@ -649,6 +679,7 @@ class TEXTURE_PT_distortednoise(TextureTypePanel): flow.itemR(tex, "noise_size", text="Size") flow.itemR(tex, "nabla") + class TEXTURE_PT_voxeldata(TextureButtonsPanel): bl_label = "Voxel Data" @@ -679,6 +710,7 @@ class TEXTURE_PT_voxeldata(TextureButtonsPanel): layout.itemR(vd, "extension") layout.itemR(vd, "intensity") + class TEXTURE_PT_pointdensity(TextureButtonsPanel): bl_label = "Point Density" @@ -731,6 +763,7 @@ class TEXTURE_PT_pointdensity(TextureButtonsPanel): if pd.falloff == 'SOFT': col.itemR(pd, "falloff_softness") + class TEXTURE_PT_pointdensity_turbulence(TextureButtonsPanel): bl_label = "Turbulence" @@ -791,4 +824,3 @@ bpy.types.register(TEXTURE_PT_pointdensity_turbulence) bpy.types.register(TEXTURE_PT_colors) bpy.types.register(TEXTURE_PT_mapping) bpy.types.register(TEXTURE_PT_influence) - diff --git a/release/scripts/ui/properties_world.py b/release/scripts/ui/properties_world.py index b36307d10b6..fe4d446b962 100644 --- a/release/scripts/ui/properties_world.py +++ b/release/scripts/ui/properties_world.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class WorldButtonsPanel(bpy.types.Panel): bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' @@ -16,6 +17,7 @@ class WorldButtonsPanel(bpy.types.Panel): rd = context.scene.render_data return (context.world) and (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES) + class WORLD_PT_preview(WorldButtonsPanel): bl_label = "Preview" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -23,6 +25,7 @@ class WORLD_PT_preview(WorldButtonsPanel): def draw(self, context): self.layout.template_preview(context.world) + class WORLD_PT_context_world(WorldButtonsPanel): bl_label = "" bl_show_header = False @@ -46,6 +49,7 @@ class WORLD_PT_context_world(WorldButtonsPanel): elif world: split.template_ID(space, "pin_id") + class WORLD_PT_world(WorldButtonsPanel): bl_label = "World" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -67,6 +71,7 @@ class WORLD_PT_world(WorldButtonsPanel): col.active = world.blend_sky row.column().itemR(world, "ambient_color") + class WORLD_PT_mist(WorldButtonsPanel): bl_label = "Mist" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -91,6 +96,7 @@ class WORLD_PT_mist(WorldButtonsPanel): layout.itemR(world.mist, "falloff") + class WORLD_PT_stars(WorldButtonsPanel): bl_label = "Stars" COMPAT_ENGINES = set(['BLENDER_RENDER']) @@ -113,6 +119,7 @@ class WORLD_PT_stars(WorldButtonsPanel): flow.itemR(world.stars, "min_distance", text="Min. Dist") flow.itemR(world.stars, "average_separation", text="Separation") + class WORLD_PT_ambient_occlusion(WorldButtonsPanel): bl_label = "Ambient Occlusion" COMPAT_ENGINES = set(['BLENDER_RENDER']) diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index a500862e93d..e77c4c58145 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class Buttons_HT_header(bpy.types.Header): bl_space_type = 'PROPERTIES' @@ -15,7 +16,7 @@ class Buttons_HT_header(bpy.types.Header): so = context.space_data scene = context.scene - row= layout.row(align=True) + row = layout.row(align=True) row.template_header() if context.area.show_menus: @@ -26,6 +27,7 @@ class Buttons_HT_header(bpy.types.Header): row.itemR(so, "buttons_context", expand=True, text="") row.itemR(scene, "current_frame") + class Buttons_MT_view(bpy.types.Menu): bl_label = "View" diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 6e2c06ad7c8..50cee7be380 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -3,6 +3,7 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# import sys import bpy diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index fddea323895..981534fafa8 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class FILEBROWSER_HT_header(bpy.types.Header): bl_space_type = 'FILE_BROWSER' @@ -41,13 +42,13 @@ class FILEBROWSER_HT_header(bpy.types.Header): row = layout.row(align=True) row.active = params.do_filter - row.itemR(params, "filter_folder", text=""); - row.itemR(params, "filter_blender", text=""); - row.itemR(params, "filter_image", text=""); - row.itemR(params, "filter_movie", text=""); - row.itemR(params, "filter_script", text=""); - row.itemR(params, "filter_font", text=""); - row.itemR(params, "filter_sound", text=""); - row.itemR(params, "filter_text", text=""); + row.itemR(params, "filter_folder", text="") + row.itemR(params, "filter_blender", text="") + row.itemR(params, "filter_image", text="") + row.itemR(params, "filter_movie", text="") + row.itemR(params, "filter_script", text="") + row.itemR(params, "filter_font", text="") + row.itemR(params, "filter_sound", text="") + row.itemR(params, "filter_text", text="") bpy.types.register(FILEBROWSER_HT_header) diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index 3a12c35930a..4c1c31e2abb 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class IMAGE_MT_view(bpy.types.Menu): bl_label = "View" @@ -33,11 +34,11 @@ class IMAGE_MT_view(bpy.types.Menu): layout.itemS() - ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]]; + ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]] for a, b in ratios: text = "Zoom %d:%d" % (a, b) - layout.item_floatO("image.view_zoom_ratio", "ratio", a/b, text=text) + layout.item_floatO("image.view_zoom_ratio", "ratio", a / b, text=text) layout.itemS() @@ -47,6 +48,7 @@ class IMAGE_MT_view(bpy.types.Menu): layout.itemO("image.view_all") layout.itemO("screen.screen_full_area") + class IMAGE_MT_select(bpy.types.Menu): bl_label = "Select" @@ -67,6 +69,7 @@ class IMAGE_MT_select(bpy.types.Menu): layout.itemO("uv.select_pinned") layout.itemO("uv.select_linked") + class IMAGE_MT_image(bpy.types.Menu): bl_label = "Image" @@ -110,6 +113,7 @@ class IMAGE_MT_image(bpy.types.Menu): layout.itemR(sima, "image_painting") + class IMAGE_MT_uvs_showhide(bpy.types.Menu): bl_label = "Show/Hide Faces" @@ -120,6 +124,7 @@ class IMAGE_MT_uvs_showhide(bpy.types.Menu): layout.itemO("uv.hide") layout.item_booleanO("uv.hide", "unselected", True) + class IMAGE_MT_uvs_transform(bpy.types.Menu): bl_label = "Transform" @@ -130,6 +135,7 @@ class IMAGE_MT_uvs_transform(bpy.types.Menu): layout.itemO("tfm.rotate") layout.itemO("tfm.resize") + class IMAGE_MT_uvs_mirror(bpy.types.Menu): bl_label = "Mirror" @@ -137,11 +143,12 @@ class IMAGE_MT_uvs_mirror(bpy.types.Menu): layout = self.layout layout.operator_context = "EXEC_REGION_WIN" - props= layout.itemO("tfm.mirror", text="X Axis", properties=True) - props.constraint_axis[0]= True + props = layout.itemO("tfm.mirror", text="X Axis", properties=True) + props.constraint_axis[0] = True + + props = layout.itemO("tfm.mirror", text="Y Axis", properties=True) + props.constraint_axis[1] = True - props= layout.itemO("tfm.mirror", text="Y Axis", properties=True) - props.constraint_axis[1]= True class IMAGE_MT_uvs_weldalign(bpy.types.Menu): bl_label = "Weld/Align" @@ -152,6 +159,7 @@ class IMAGE_MT_uvs_weldalign(bpy.types.Menu): layout.itemO("uv.weld") # W, 1 layout.items_enumO("uv.align", "axis") # W, 2/3/4 + class IMAGE_MT_uvs(bpy.types.Menu): bl_label = "UVs" @@ -194,6 +202,7 @@ class IMAGE_MT_uvs(bpy.types.Menu): layout.itemM("IMAGE_MT_uvs_showhide") + class IMAGE_HT_header(bpy.types.Header): bl_space_type = 'IMAGE_EDITOR' @@ -274,6 +283,7 @@ class IMAGE_HT_header(bpy.types.Header): if show_uvedit or sima.image_painting: layout.itemR(sima, "update_automatically", text="") + class IMAGE_PT_image_properties(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -292,6 +302,7 @@ class IMAGE_PT_image_properties(bpy.types.Panel): layout.template_image(sima, "image", iuser, compact=True) + class IMAGE_PT_game_properties(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -335,7 +346,6 @@ class IMAGE_PT_game_properties(bpy.types.Panel): col.itemR(ima, "mapping", expand=True) - class IMAGE_PT_view_properties(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -389,6 +399,7 @@ class IMAGE_PT_view_properties(bpy.types.Panel): #col.itemR(uvedit, "draw_edges") #col.itemR(uvedit, "draw_faces") + class IMAGE_PT_paint(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -434,6 +445,7 @@ class IMAGE_PT_paint(bpy.types.Panel): col.itemR(brush, "blend", text="Blend") + class IMAGE_PT_paint_stroke(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -462,6 +474,7 @@ class IMAGE_PT_paint_stroke(bpy.types.Panel): row.itemR(brush, "spacing", text="Distance", slider=True) row.itemR(brush, "use_spacing_pressure", toggle=True, text="") + class IMAGE_PT_paint_curve(bpy.types.Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' @@ -497,4 +510,3 @@ bpy.types.register(IMAGE_PT_paint_stroke) bpy.types.register(IMAGE_PT_paint_curve) bpy.types.register(IMAGE_PT_game_properties) bpy.types.register(IMAGE_PT_view_properties) - diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 435a6ad54b4..a104dda89c2 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -3,12 +3,13 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy import dynamic_menu # reload(dynamic_menu) + class INFO_HT_header(bpy.types.Header): bl_space_type = 'INFO' @@ -47,6 +48,7 @@ class INFO_HT_header(bpy.types.Header): layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") + class INFO_MT_file(bpy.types.Menu): bl_label = "File" @@ -100,6 +102,7 @@ class INFO_MT_file_more(INFO_MT_file): dynamic_menu.setup(INFO_MT_file_more) ''' + class INFO_MT_file_import(dynamic_menu.DynMenu): bl_idname = "INFO_MT_file_import" bl_label = "Import" @@ -107,6 +110,7 @@ class INFO_MT_file_import(dynamic_menu.DynMenu): def draw(self, context): self.layout.itemO("WM_OT_collada_import", text="COLLADA (.dae)...") + class INFO_MT_file_export(dynamic_menu.DynMenu): bl_idname = "INFO_MT_file_export" bl_label = "Export" @@ -114,6 +118,7 @@ class INFO_MT_file_export(dynamic_menu.DynMenu): def draw(self, context): self.layout.itemO("WM_OT_collada_export", text="COLLADA (.dae)...") + class INFO_MT_file_external_data(bpy.types.Menu): bl_label = "External Data" @@ -130,9 +135,11 @@ class INFO_MT_file_external_data(bpy.types.Menu): layout.itemO("file.report_missing_files") layout.itemO("file.find_missing_files") + class INFO_MT_mesh_add(dynamic_menu.DynMenu): bl_idname = "INFO_MT_mesh_add" bl_label = "Mesh" + def draw(self, context): layout = self.layout layout.operator_context = 'INVOKE_REGION_WIN' @@ -147,6 +154,7 @@ class INFO_MT_mesh_add(dynamic_menu.DynMenu): layout.itemO("mesh.primitive_grid_add", icon='ICON_MESH_GRID', text="Grid") layout.itemO("mesh.primitive_monkey_add", icon='ICON_MESH_MONKEY', text="Monkey") + class INFO_MT_add(bpy.types.Menu): bl_label = "Add" @@ -182,6 +190,7 @@ class INFO_MT_add(bpy.types.Menu): layout.item_menu_enumO("object.group_instance_add", "type", text="Group Instance", icon='ICON_OUTLINER_OB_EMPTY') + class INFO_MT_game(bpy.types.Menu): bl_label = "Game" @@ -199,6 +208,7 @@ class INFO_MT_game(bpy.types.Menu): layout.itemR(gs, "show_physics_visualization") layout.itemR(gs, "deprecation_warnings") + class INFO_MT_render(bpy.types.Menu): bl_label = "Render" @@ -219,6 +229,7 @@ class INFO_MT_render(bpy.types.Menu): layout.itemO("screen.render_view_show") + class INFO_MT_help(bpy.types.Menu): bl_label = "Help" @@ -252,57 +263,68 @@ bpy.types.register(INFO_MT_help) # Help operators + class HelpOperator(bpy.types.Operator): + def execute(self, context): import webbrowser webbrowser.open(self._url) return ('FINISHED',) + class HELP_OT_manual(HelpOperator): '''The Blender Wiki manual''' bl_idname = "help.manual" bl_label = "Manual" _url = 'http://wiki.blender.org/index.php/Manual' + class HELP_OT_release_logs(HelpOperator): '''Information about the changes in this version of Blender''' bl_idname = "help.release_logs" bl_label = "Release Logs" _url = 'http://www.blender.org/development/release-logs/' + class HELP_OT_blender_website(HelpOperator): '''The official Blender website''' bl_idname = "help.blender_website" bl_label = "Blender Website" _url = 'http://www.blender.org/' + class HELP_OT_blender_eshop(HelpOperator): '''Buy official Blender resources and merchandise online''' bl_idname = "help.blender_eshop" bl_label = "Blender e-Shop" _url = 'http://www.blender3d.org/e-shop' + class HELP_OT_developer_community(HelpOperator): '''Get involved with Blender development''' bl_idname = "help.developer_community" bl_label = "Developer Community" _url = 'http://www.blender.org/community/get-involved/' + class HELP_OT_user_community(HelpOperator): '''Get involved with other Blender users''' bl_idname = "help.user_community" bl_label = "User Community" _url = 'http://www.blender.org/community/user-community/' + class HELP_OT_report_bug(HelpOperator): '''Report a bug in the Blender bug tracker''' bl_idname = "help.report_bug" bl_label = "Report a Bug" _url = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse' + class HELP_OT_operator_cheat_sheet(bpy.types.Operator): bl_idname = "help.operator_cheat_sheet" bl_label = "Operator Cheat Sheet (new textblock)" + def execute(self, context): op_strings = [] tot = 0 diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index 9e9f9bd3394..9dccaacae2c 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -3,8 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. +# import bpy + class LOGIC_PT_properties(bpy.types.Panel): bl_space_type = 'LOGIC_EDITOR' bl_region_type = 'UI' diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index e6bac031c56..15b07063d23 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class NODE_HT_header(bpy.types.Header): bl_space_type = 'NODE_EDITOR' @@ -52,6 +53,7 @@ class NODE_HT_header(bpy.types.Header): layout.itemR(id.render_data, "free_unused_nodes", text="Free Unused") layout.itemR(snode, "backdrop") + class NODE_MT_view(bpy.types.Menu): bl_label = "View" @@ -69,6 +71,7 @@ class NODE_MT_view(bpy.types.Menu): layout.itemO("node.view_all") layout.itemO("screen.screen_full_area") + class NODE_MT_select(bpy.types.Menu): bl_label = "Select" @@ -82,6 +85,7 @@ class NODE_MT_select(bpy.types.Menu): layout.itemO("node.select_linked_from") layout.itemO("node.select_linked_to") + class NODE_MT_node(bpy.types.Menu): bl_label = "Node" diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index e2aeb92f19d..582db6eb76b 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class OUTLINER_HT_header(bpy.types.Header): bl_space_type = 'OUTLINER' @@ -45,6 +46,7 @@ class OUTLINER_HT_header(bpy.types.Header): row = layout.row(align=False) row.itemL(text="No Keying Set active") + class OUTLINER_MT_view(bpy.types.Menu): bl_label = "View" @@ -62,6 +64,7 @@ class OUTLINER_MT_view(bpy.types.Menu): col.itemO("outliner.show_one_level") col.itemO("outliner.show_hierarchy") + class OUTLINER_MT_edit_datablocks(bpy.types.Menu): bl_label = "Edit" diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 10a3f1da3cb..237c624510e 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -3,14 +3,17 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy -def act_strip(context): - try: return context.scene.sequence_editor.active_strip - except: return None -# Header +def act_strip(context): + try: + return context.scene.sequence_editor.active_strip + except: + return None + + class SEQUENCER_HT_header(bpy.types.Header): bl_space_type = 'SEQUENCE_EDITOR' @@ -42,6 +45,7 @@ class SEQUENCER_HT_header(bpy.types.Header): else: layout.itemR(st, "display_channel", text="Channel") + class SEQUENCER_MT_view(bpy.types.Menu): bl_label = "View" @@ -109,6 +113,7 @@ class SEQUENCER_MT_view(bpy.types.Menu): """ + class SEQUENCER_MT_select(bpy.types.Menu): bl_label = "Select" @@ -129,6 +134,7 @@ class SEQUENCER_MT_select(bpy.types.Menu): layout.itemO("sequencer.select_all_toggle") layout.itemO("sequencer.select_inverse") + class SEQUENCER_MT_marker(bpy.types.Menu): bl_label = "Marker (TODO)" @@ -147,6 +153,7 @@ class SEQUENCER_MT_marker(bpy.types.Menu): #layout.itemO("sequencer.sound_strip_add", text="Transform Markers") # toggle, will be rna - (sseq->flag & SEQ_MARKER_TRANS) + class SEQUENCER_MT_add(bpy.types.Menu): bl_label = "Add" @@ -164,6 +171,7 @@ class SEQUENCER_MT_add(bpy.types.Menu): layout.itemM("SEQUENCER_MT_add_effect") + class SEQUENCER_MT_add_effect(bpy.types.Menu): bl_label = "Effect Strip..." @@ -187,6 +195,7 @@ class SEQUENCER_MT_add_effect(bpy.types.Menu): layout.item_enumO("sequencer.effect_strip_add", 'type', 'COLOR') layout.item_enumO("sequencer.effect_strip_add", 'type', 'SPEED') + class SEQUENCER_MT_strip(bpy.types.Menu): bl_label = "Strip" @@ -216,17 +225,17 @@ class SEQUENCER_MT_strip(bpy.types.Menu): if strip: stype = strip.type - if stype=='EFFECT': + if stype == 'EFFECT': layout.itemS() layout.itemO("sequencer.effect_change") layout.itemO("sequencer.effect_reassign_inputs") - elif stype=='IMAGE': + elif stype == 'IMAGE': layout.itemS() layout.itemO("sequencer.image_change") - elif stype=='SCENE': + elif stype == 'SCENE': layout.itemS() layout.itemO("sequencer.scene_change", text="Change Scene") - elif stype=='MOVIE': + elif stype == 'MOVIE': layout.itemS() layout.itemO("sequencer.movie_change") @@ -255,7 +264,7 @@ class SEQUENCER_MT_strip(bpy.types.Menu): layout.itemO("sequencer.swap_right") layout.itemO("sequencer.swap_left") -# Panels + class SequencerButtonsPanel(bpy.types.Panel): bl_space_type = 'SEQUENCE_EDITOR' bl_region_type = 'UI' @@ -263,6 +272,7 @@ class SequencerButtonsPanel(bpy.types.Panel): def poll(self, context): return context.space_data.display_mode == 'SEQUENCER' and act_strip(context) != None + class SequencerButtonsPanel_Output(bpy.types.Panel): bl_space_type = 'SEQUENCE_EDITOR' bl_region_type = 'UI' @@ -270,6 +280,7 @@ class SequencerButtonsPanel_Output(bpy.types.Panel): def poll(self, context): return context.space_data.display_mode != 'SEQUENCER' + class SEQUENCER_PT_edit(SequencerButtonsPanel): bl_label = "Edit Strip" @@ -321,6 +332,7 @@ class SEQUENCER_PT_edit(SequencerButtonsPanel): col.itemR(strip, "start_still", text="Start") col.itemR(strip, "end_still", text="End") + class SEQUENCER_PT_effect(SequencerButtonsPanel): bl_label = "Effect Strip" @@ -408,6 +420,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel): col.itemR(strip, "rotation_start", text="Start") col.itemR(strip, "rotation_end", text="End") + class SEQUENCER_PT_input(SequencerButtonsPanel): bl_label = "Strip Input" @@ -463,6 +476,7 @@ class SEQUENCER_PT_input(SequencerButtonsPanel): col.itemR(strip, "animation_start_offset", text="Start") col.itemR(strip, "animation_end_offset", text="End") + class SEQUENCER_PT_sound(SequencerButtonsPanel): bl_label = "Sound" @@ -494,6 +508,7 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel): row.itemR(strip.sound, "caching") + class SEQUENCER_PT_filter(SequencerButtonsPanel): bl_label = "Filter" @@ -543,6 +558,7 @@ class SEQUENCER_PT_filter(SequencerButtonsPanel): col.itemR(strip.color_balance, "gain") col.itemR(strip.color_balance, "inverse_gain", text="Inverse") + class SEQUENCER_PT_proxy(SequencerButtonsPanel): bl_label = "Proxy" @@ -572,6 +588,7 @@ class SEQUENCER_PT_proxy(SequencerButtonsPanel): flow.itemR(strip.proxy, "directory") flow.itemR(strip.proxy, "file") + class SEQUENCER_PT_view(SequencerButtonsPanel_Output): bl_label = "View Settings" diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index e2d5e69cb8c..99303a0d702 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class TEXT_HT_header(bpy.types.Header): bl_space_type = 'TEXT_EDITOR' @@ -43,7 +44,7 @@ class TEXT_HT_header(bpy.types.Header): if text.dirty: row.itemL(text="File: *%s (unsaved)" % text.filename) else: - row.itemL(text="File: %s" % text.filename ) + row.itemL(text="File: %s" % text.filename) else: if text.library: row.itemL(text="Text: External") @@ -53,6 +54,7 @@ class TEXT_HT_header(bpy.types.Header): row = layout.row() row.itemO("text.run_script") + class TEXT_PT_properties(bpy.types.Panel): bl_space_type = 'TEXT_EDITOR' bl_region_type = 'UI' @@ -73,6 +75,7 @@ class TEXT_PT_properties(bpy.types.Panel): flow.itemR(st, "font_size") flow.itemR(st, "tab_width") + class TEXT_PT_find(bpy.types.Panel): bl_space_type = 'TEXT_EDITOR' bl_region_type = 'UI' @@ -105,6 +108,7 @@ class TEXT_PT_find(bpy.types.Panel): row.itemR(st, "find_wrap", text="Wrap") row.itemR(st, "find_all", text="All") + class TEXT_MT_text(bpy.types.Menu): bl_label = "Text" @@ -151,7 +155,6 @@ class TEXT_MT_text(bpy.types.Menu): layout.itemM("TEXT_MT_templates") - class TEXT_MT_templates(bpy.types.Menu): ''' Creates the menu items by scanning scripts/templates @@ -178,7 +181,6 @@ class TEXT_MT_templates(bpy.types.Menu): layout.item_stringO("text.open", "path", path, text=path_to_name(f)) - class TEXT_MT_edit_view(bpy.types.Menu): bl_label = "View" @@ -188,6 +190,7 @@ class TEXT_MT_edit_view(bpy.types.Menu): layout.item_enumO("text.move", "type", 'FILE_TOP', text="Top of File") layout.item_enumO("text.move", "type", 'FILE_BOTTOM', text="Bottom of File") + class TEXT_MT_edit_select(bpy.types.Menu): bl_label = "Select" @@ -197,6 +200,7 @@ class TEXT_MT_edit_select(bpy.types.Menu): layout.itemO("text.select_all") layout.itemO("text.select_line") + class TEXT_MT_edit_markers(bpy.types.Menu): bl_label = "Markers" @@ -207,6 +211,7 @@ class TEXT_MT_edit_markers(bpy.types.Menu): layout.itemO("text.next_marker") layout.itemO("text.previous_marker") + class TEXT_MT_format(bpy.types.Menu): bl_label = "Format" @@ -225,14 +230,16 @@ class TEXT_MT_format(bpy.types.Menu): layout.item_menu_enumO("text.convert_whitespace", "type") + class TEXT_MT_edit_to3d(bpy.types.Menu): bl_label = "Text To 3D Object" def draw(self, context): layout = self.layout - layout.item_booleanO("text.to_3d_object", "split_lines", False, text="One Object"); - layout.item_booleanO("text.to_3d_object", "split_lines", True, text="One Object Per Line"); + layout.item_booleanO("text.to_3d_object", "split_lines", False, text="One Object") + layout.item_booleanO("text.to_3d_object", "split_lines", True, text="One Object Per Line") + class TEXT_MT_edit(bpy.types.Menu): bl_label = "Edit" diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index 7408868f10a..a448fc969c5 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class TIME_HT_header(bpy.types.Header): bl_space_type = 'TIMELINE' @@ -68,6 +69,7 @@ class TIME_HT_header(bpy.types.Header): row.itemO("anim.insert_keyframe", text="", icon='ICON_KEY_HLT') row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT') + class TIME_MT_view(bpy.types.Menu): bl_label = "View" @@ -82,6 +84,7 @@ class TIME_MT_view(bpy.types.Menu): layout.itemR(st, "only_selected") + class TIME_MT_frame(bpy.types.Menu): bl_label = "Frame" @@ -106,6 +109,7 @@ class TIME_MT_frame(bpy.types.Menu): #sub.active = tools.enable_auto_key sub.itemM("TIME_MT_autokey") + class TIME_MT_playback(bpy.types.Menu): bl_label = "Playback" @@ -133,6 +137,7 @@ class TIME_MT_playback(bpy.types.Menu): layout.itemR(scene, "mute_audio") layout.itemR(scene, "scrub_audio") + class TIME_MT_autokey(bpy.types.Menu): bl_label = "Auto-Keyframing Mode" diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 4588fb42088..2378055c3d7 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -3,9 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class USERPREF_HT_header(bpy.types.Header): bl_space_type = 'USER_PREFERENCES' @@ -22,12 +23,14 @@ class USERPREF_HT_header(bpy.types.Header): layout.operator_context = "INVOKE_DEFAULT" layout.itemO("wm.keyconfig_export", "Export Key Configuration...") + class USERPREF_MT_view(bpy.types.Menu): bl_label = "View" def draw(self, context): layout = self.layout + class USERPREF_PT_tabs(bpy.types.Panel): bl_label = "" bl_space_type = 'USER_PREFERENCES' @@ -41,6 +44,7 @@ class USERPREF_PT_tabs(bpy.types.Panel): layout.itemR(userpref, "active_section", expand=True) + class USERPREF_PT_interface(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Interface" @@ -126,6 +130,7 @@ class USERPREF_PT_interface(bpy.types.Panel): sub1.itemR(view, "open_toplevel_delay", text="Top Level") sub1.itemR(view, "open_sublevel_delay", text="Sub Level") + class USERPREF_PT_edit(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Edit" @@ -230,6 +235,7 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.itemR(edit, "duplicate_action", text="Action") sub1.itemR(edit, "duplicate_particle", text="Particle") + class USERPREF_PT_system(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "System" @@ -322,6 +328,7 @@ class USERPREF_PT_system(bpy.types.Panel): sub1.itemR(system, "prefetch_frames") sub1.itemR(system, "memory_cache_limit") + class USERPREF_PT_file(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Files" @@ -389,6 +396,7 @@ class USERPREF_PT_file(bpy.types.Panel): sub3.enabled = paths.auto_save_temporary_files sub3.itemR(paths, "auto_save_time", text="Timer (mins)") + class USERPREF_PT_input(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Input" @@ -616,7 +624,7 @@ class WM_OT_keyconfig_export(bpy.types.Operator): f.write('# Configuration %s\n' % kc.name) - f.write("wm = bpy.data.windowmanagers[0]\n"); + f.write("wm = bpy.data.windowmanagers[0]\n") f.write("kc = wm.add_keyconfig(\'%s\')\n\n" % kc.name) for km in kc.keymaps: @@ -657,6 +665,7 @@ class WM_OT_keyconfig_export(bpy.types.Operator): wm.add_fileselect(self.__operator__) return ('RUNNING_MODAL',) + class WM_OT_keymap_edit(bpy.types.Operator): "Edit key map." bl_idname = "wm.keymap_edit" @@ -668,6 +677,7 @@ class WM_OT_keymap_edit(bpy.types.Operator): km.copy_to_user() return ('FINISHED',) + class WM_OT_keymap_restore(bpy.types.Operator): "Restore key map" bl_idname = "wm.keymap_restore" @@ -687,6 +697,7 @@ class WM_OT_keymap_restore(bpy.types.Operator): return ('FINISHED',) + class WM_OT_keyitem_add(bpy.types.Operator): "Add key map item." bl_idname = "wm.keyitem_add" @@ -698,6 +709,7 @@ class WM_OT_keyitem_add(bpy.types.Operator): kmi = km.add_item("", "A", "PRESS") return ('FINISHED',) + class WM_OT_keyitem_remove(bpy.types.Operator): "Remove key map item." bl_idname = "wm.keyitem_remove" @@ -715,4 +727,3 @@ bpy.ops.add(WM_OT_keymap_edit) bpy.ops.add(WM_OT_keymap_restore) bpy.ops.add(WM_OT_keyitem_add) bpy.ops.add(WM_OT_keyitem_remove) - diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index f5c7c6c9e24..5de33fc89c7 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -3,12 +3,10 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy - import dynamic_menu -# ********** Header ********** class VIEW3D_HT_header(bpy.types.Header): bl_space_type = 'VIEW_3D' @@ -50,6 +48,7 @@ class VIEW3D_HT_header(bpy.types.Header): # ********** Utilities ********** + class VIEW3D_MT_showhide(bpy.types.Menu): bl_label = "Show/Hide" _operator_name = "" @@ -61,6 +60,7 @@ class VIEW3D_MT_showhide(bpy.types.Menu): layout.itemO("%s.hide" % self._operator_name, text="Hide Selected") layout.item_booleanO("%s.hide" % self._operator_name, "unselected", True, text="Hide Unselected") + class VIEW3D_MT_snap(bpy.types.Menu): bl_label = "Snap" @@ -79,6 +79,7 @@ class VIEW3D_MT_snap(bpy.types.Menu): # ********** View menus ********** + class VIEW3D_MT_view(bpy.types.Menu): bl_label = "View" @@ -131,6 +132,8 @@ class VIEW3D_MT_view(bpy.types.Menu): layout.itemS() layout.itemO("screen.animation_play", text="Playback Animation", icon='ICON_PLAY') + + class VIEW3D_MT_view_navigation(bpy.types.Menu): bl_label = "Navigation" @@ -152,6 +155,7 @@ class VIEW3D_MT_view_navigation(bpy.types.Menu): layout.itemO("view3d.fly") + class VIEW3D_MT_view_align(bpy.types.Menu): bl_label = "Align View" @@ -162,6 +166,7 @@ class VIEW3D_MT_view_align(bpy.types.Menu): layout.itemO("view3d.camera_to_view", text="Align Active Camera to View") layout.itemO("view3d.view_center") + class VIEW3D_MT_view_cameras(bpy.types.Menu): bl_label = "Cameras" @@ -173,6 +178,7 @@ class VIEW3D_MT_view_cameras(bpy.types.Menu): # ********** Select menus, suffix from context.mode ********** + class VIEW3D_MT_select_object(bpy.types.Menu): bl_label = "Select" @@ -192,6 +198,7 @@ class VIEW3D_MT_select_object(bpy.types.Menu): layout.item_menu_enumO("object.select_grouped", "type", text="Select Grouped...") layout.itemO("object.select_pattern", text="Select Pattern...") + class VIEW3D_MT_select_pose(bpy.types.Menu): bl_label = "Select" @@ -222,6 +229,7 @@ class VIEW3D_MT_select_pose(bpy.types.Menu): props.extend = True props.direction = 'CHILD' + class VIEW3D_MT_select_particle(bpy.types.Menu): bl_label = "Select" @@ -240,6 +248,7 @@ class VIEW3D_MT_select_particle(bpy.types.Menu): layout.itemO("particle.select_more") layout.itemO("particle.select_less") + class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): bl_label = "Select" @@ -285,6 +294,7 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): layout.itemO("mesh.loop_to_region") layout.itemO("mesh.region_to_loop") + class VIEW3D_MT_select_edit_curve(bpy.types.Menu): bl_label = "Select" @@ -313,6 +323,7 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu): layout.itemO("curve.select_more") layout.itemO("curve.select_less") + class VIEW3D_MT_select_edit_surface(bpy.types.Menu): bl_label = "Select" @@ -338,6 +349,7 @@ class VIEW3D_MT_select_edit_surface(bpy.types.Menu): layout.itemO("curve.select_more") layout.itemO("curve.select_less") + class VIEW3D_MT_select_edit_metaball(bpy.types.Menu): bl_label = "Select" @@ -355,6 +367,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu): layout.itemO("mball.select_random_metaelems") + class VIEW3D_MT_select_edit_lattice(bpy.types.Menu): bl_label = "Select" @@ -367,6 +380,7 @@ class VIEW3D_MT_select_edit_lattice(bpy.types.Menu): layout.itemO("lattice.select_all_toggle", text="Select/Deselect All") + class VIEW3D_MT_select_edit_armature(bpy.types.Menu): bl_label = "Select" @@ -395,6 +409,7 @@ class VIEW3D_MT_select_edit_armature(bpy.types.Menu): props.extend = True props.direction = 'CHILD' + class VIEW3D_MT_select_face(bpy.types.Menu):# XXX no matching enum bl_label = "Select" @@ -405,6 +420,7 @@ class VIEW3D_MT_select_face(bpy.types.Menu):# XXX no matching enum # ********** Object menu ********** + class VIEW3D_MT_object(bpy.types.Menu): bl_context = "objectmode" bl_label = "Object" @@ -448,6 +464,7 @@ class VIEW3D_MT_object(bpy.types.Menu): layout.item_menu_enumO("object.convert", "target") + class VIEW3D_MT_object_clear(bpy.types.Menu): bl_label = "Clear" @@ -459,6 +476,7 @@ class VIEW3D_MT_object_clear(bpy.types.Menu): layout.itemO("object.scale_clear", text="Scale") layout.itemO("object.origin_clear", text="Origin") + class VIEW3D_MT_object_apply(bpy.types.Menu): bl_label = "Apply" @@ -482,6 +500,7 @@ class VIEW3D_MT_object_parent(bpy.types.Menu): layout.itemO("object.parent_set", text="Set") layout.itemO("object.parent_clear", text="Clear") + class VIEW3D_MT_object_track(bpy.types.Menu): bl_label = "Track" @@ -491,6 +510,7 @@ class VIEW3D_MT_object_track(bpy.types.Menu): layout.itemO("object.track_set", text="Set") layout.itemO("object.track_clear", text="Clear") + class VIEW3D_MT_object_group(bpy.types.Menu): bl_label = "Group" @@ -505,6 +525,7 @@ class VIEW3D_MT_object_group(bpy.types.Menu): layout.itemO("group.objects_add_active") layout.itemO("group.objects_remove_active") + class VIEW3D_MT_object_constraints(bpy.types.Menu): bl_label = "Constraints" @@ -514,6 +535,7 @@ class VIEW3D_MT_object_constraints(bpy.types.Menu): layout.itemO("object.constraint_add_with_targets") layout.itemO("object.constraints_clear") + class VIEW3D_MT_object_showhide(bpy.types.Menu): bl_label = "Show/Hide" @@ -524,6 +546,7 @@ class VIEW3D_MT_object_showhide(bpy.types.Menu): layout.itemO("object.restrictview_set", text="Hide Selected") layout.item_booleanO("object.restrictview_set", "unselected", True, text="Hide Unselected") + class VIEW3D_MT_make_single_user(bpy.types.Menu): bl_label = "Make Single User" @@ -547,6 +570,7 @@ class VIEW3D_MT_make_single_user(bpy.types.Menu): # ********** Vertex paint menu ********** + class VIEW3D_MT_paint_vertex(bpy.types.Menu): bl_label = "Paint" @@ -561,6 +585,7 @@ class VIEW3D_MT_paint_vertex(bpy.types.Menu): # ********** Sculpt menu ********** + class VIEW3D_MT_sculpt(bpy.types.Menu): bl_label = "Sculpt" @@ -596,6 +621,7 @@ class VIEW3D_MT_sculpt(bpy.types.Menu): # ********** Particle menu ********** + class VIEW3D_MT_particle(bpy.types.Menu): bl_label = "Particle" @@ -620,11 +646,13 @@ class VIEW3D_MT_particle(bpy.types.Menu): layout.itemM("VIEW3D_MT_particle_showhide") + class VIEW3D_MT_particle_showhide(VIEW3D_MT_showhide): _operator_name = "particle" # ********** Pose Menu ********** + class VIEW3D_MT_pose(bpy.types.Menu): bl_label = "Pose" @@ -684,6 +712,7 @@ class VIEW3D_MT_pose(bpy.types.Menu): layout.itemM("VIEW3D_MT_pose_showhide") layout.item_menu_enumO("pose.flags_set", 'mode', text="Bone Settings") + class VIEW3D_MT_pose_transform(bpy.types.Menu): bl_label = "Clear Transform" @@ -698,6 +727,7 @@ class VIEW3D_MT_pose_transform(bpy.types.Menu): layout.itemL(text="Origin") + class VIEW3D_MT_pose_pose(bpy.types.Menu): bl_label = "Pose Library" @@ -712,6 +742,7 @@ class VIEW3D_MT_pose_pose(bpy.types.Menu): layout.itemO("poselib.pose_rename", text="Rename Pose...") layout.itemO("poselib.pose_remove", text="Remove Pose...") + class VIEW3D_MT_pose_motion(bpy.types.Menu): bl_label = "Motion Paths" @@ -721,6 +752,7 @@ class VIEW3D_MT_pose_motion(bpy.types.Menu): layout.itemO("pose.paths_calculate", text="Calculate") layout.itemO("pose.paths_clear", text="Clear") + class VIEW3D_MT_pose_group(bpy.types.Menu): bl_label = "Bone Groups" @@ -744,6 +776,7 @@ class VIEW3D_MT_pose_ik(bpy.types.Menu): layout.itemO("pose.ik_add") layout.itemO("pose.ik_clear") + class VIEW3D_MT_pose_constraints(bpy.types.Menu): bl_label = "Constraints" @@ -753,12 +786,13 @@ class VIEW3D_MT_pose_constraints(bpy.types.Menu): layout.itemO("pose.constraint_add_with_targets", text="Add (With Targets)...") layout.itemO("pose.constraints_clear") + class VIEW3D_MT_pose_showhide(VIEW3D_MT_showhide): _operator_name = "pose" # ********** Edit Menus, suffix from ob.type ********** -# Edit MESH + class VIEW3D_MT_edit_mesh(bpy.types.Menu): bl_label = "Mesh" @@ -801,7 +835,7 @@ class VIEW3D_MT_edit_mesh(bpy.types.Menu): layout.itemM("VIEW3D_MT_edit_mesh_showhide") -# Only used by the menu + class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): bl_label = "Specials" @@ -826,6 +860,7 @@ class VIEW3D_MT_edit_mesh_specials(bpy.types.Menu): layout.itemO("mesh.shape_propagate_to_all") layout.itemO("mesh.select_vertex_path") + class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): bl_label = "Vertices" @@ -850,6 +885,7 @@ class VIEW3D_MT_edit_mesh_vertices(bpy.types.Menu): layout.itemO("object.vertex_group_blend") layout.itemO("mesh.shape_propagate_to_all") + class VIEW3D_MT_edit_mesh_edges(bpy.types.Menu): bl_label = "Edges" @@ -943,12 +979,14 @@ class VIEW3D_MT_edit_mesh_normals(bpy.types.Menu): layout.itemO("mesh.flip_normals") + class VIEW3D_MT_edit_mesh_showhide(VIEW3D_MT_showhide): _operator_name = "mesh" # Edit Curve - # draw_curve is used by VIEW3D_MT_edit_curve and VIEW3D_MT_edit_surface + + def draw_curve(self, context): layout = self.layout @@ -979,11 +1017,13 @@ def draw_curve(self, context): layout.itemM("VIEW3D_MT_edit_curve_showhide") + class VIEW3D_MT_edit_curve(bpy.types.Menu): bl_label = "Curve" draw = draw_curve + class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu): bl_label = "Control Points" @@ -1001,6 +1041,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu): layout.item_menu_enumO("curve.handle_type_set", "type") + class VIEW3D_MT_edit_curve_segments(bpy.types.Menu): bl_label = "Segments" @@ -1010,16 +1051,17 @@ class VIEW3D_MT_edit_curve_segments(bpy.types.Menu): layout.itemO("curve.subdivide") layout.itemO("curve.switch_direction") + class VIEW3D_MT_edit_curve_showhide(VIEW3D_MT_showhide): _operator_name = "curve" -# Edit SURFACE + class VIEW3D_MT_edit_surface(bpy.types.Menu): bl_label = "Surface" draw = draw_curve -# Edit TEXT + class VIEW3D_MT_edit_text(bpy.types.Menu): bl_label = "Text" @@ -1032,6 +1074,7 @@ class VIEW3D_MT_edit_text(bpy.types.Menu): layout.itemm("view3d_mt_edit_text_chars") + class VIEW3D_MT_edit_text_chars(bpy.types.Menu): bl_label = "Special Characters" @@ -1065,7 +1108,7 @@ class VIEW3D_MT_edit_text_chars(bpy.types.Menu): layout.item_stringO("font.text_insert", "text", b'\xC2\xBF'.decode(), text="Spanish Question Mark|Alt ?") layout.item_stringO("font.text_insert", "text", b'\xC2\xA1'.decode(), text="Spanish Exclamation Mark|Alt !") -# Edit META + class VIEW3D_MT_edit_meta(bpy.types.Menu): bl_label = "Metaball" @@ -1095,6 +1138,7 @@ class VIEW3D_MT_edit_meta(bpy.types.Menu): layout.itemM("VIEW3D_MT_edit_meta_showhide") + class VIEW3D_MT_edit_meta_showhide(bpy.types.Menu): bl_label = "Show/Hide" @@ -1105,7 +1149,7 @@ class VIEW3D_MT_edit_meta_showhide(bpy.types.Menu): layout.itemO("mball.hide_metaelems", text="Hide Selected") layout.item_booleanO("mball.hide_metaelems", "unselected", True, text="Hide Unselected") -# Edit LATTICE + class VIEW3D_MT_edit_lattice(bpy.types.Menu): bl_label = "Lattice" @@ -1125,7 +1169,7 @@ class VIEW3D_MT_edit_lattice(bpy.types.Menu): layout.itemR(settings, "proportional_editing") layout.item_menu_enumR(settings, "proportional_editing_falloff") -# Edit ARMATURE + class VIEW3D_MT_edit_armature(bpy.types.Menu): bl_label = "Armature" @@ -1183,6 +1227,7 @@ class VIEW3D_MT_edit_armature(bpy.types.Menu): layout.item_menu_enumO("armature.flags_set", "mode", text="Bone Settings") + class VIEW3D_MT_edit_armature_parent(bpy.types.Menu): bl_label = "Parent" @@ -1192,6 +1237,7 @@ class VIEW3D_MT_edit_armature_parent(bpy.types.Menu): layout.itemO("armature.parent_set", text="Make") layout.itemO("armature.parent_clear", text="Clear") + class VIEW3D_MT_edit_armature_roll(bpy.types.Menu): bl_label = "Bone Roll" @@ -1207,6 +1253,7 @@ class VIEW3D_MT_edit_armature_roll(bpy.types.Menu): # ********** Panel ********** + class VIEW3D_PT_3dview_properties(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1240,6 +1287,7 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel): layout.column().itemR(scene, "cursor_location", text="3D Cursor:") + class VIEW3D_PT_3dview_display(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1265,7 +1313,7 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): col.itemR(view, "outline_selected") col.itemR(view, "all_object_centers") col.itemR(view, "relationship_lines") - if ob and ob.type =='MESH': + if ob and ob.type == 'MESH': mesh = context.active_object.data col.itemR(mesh, "all_edges") @@ -1283,6 +1331,7 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): # col.itemR(view, "box_preview") # col.itemR(view, "box_clip") + class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1318,6 +1367,7 @@ class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): col.itemR(mesh, "draw_edge_angle") col.itemR(mesh, "draw_face_area") + class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1338,6 +1388,7 @@ class VIEW3D_PT_3dview_curvedisplay(bpy.types.Panel): col.itemR(curve, "draw_normals", text="Normals") col.itemR(context.scene.tool_settings, "normal_size", text="Normal Size") + class VIEW3D_PT_background_image(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1376,6 +1427,7 @@ class VIEW3D_PT_background_image(bpy.types.Panel): col.itemR(bg, "offset_x", text="X") col.itemR(bg, "offset_y", text="Y") + class VIEW3D_PT_transform_orientations(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1402,6 +1454,7 @@ class VIEW3D_PT_transform_orientations(bpy.types.Panel): col.itemR(orientation, "name") col.itemO("tfm.delete_orientation", text="Delete") + class VIEW3D_PT_etch_a_ton(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'UI' @@ -1455,16 +1508,18 @@ class OBJECT_OT_select_pattern(bpy.types.Operator): bl_register = True bl_undo = True - pattern = StringProperty(name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen= 32, default= "*") - case_sensitive = BoolProperty(name="Case Sensitive", description="Do a case sensitive compare", default= False) - extend = BoolProperty(name="Extend", description="Extend the existing selection", default= True) - + pattern = StringProperty(name="Pattern", description="Name filter using '*' and '?' wildcard chars", maxlen=32, default="*") + case_sensitive = BoolProperty(name="Case Sensitive", description="Do a case sensitive compare", default=False) + extend = BoolProperty(name="Extend", description="Extend the existing selection", default=True) def execute(self, context): import fnmatch - if self.case_sensitive: pattern_match = fnmatch.fnmatchcase - else: pattern_match = lambda a, b: fnmatch.fnmatchcase(a.upper(), b.upper()) + + if self.case_sensitive: + pattern_match = fnmatch.fnmatchcase + else: + pattern_match = lambda a, b: fnmatch.fnmatchcase(a.upper(), b.upper()) for ob in context.visible_objects: if pattern_match(ob.name, self.pattern): @@ -1565,4 +1620,3 @@ bpy.types.register(VIEW3D_PT_transform_orientations) bpy.types.register(VIEW3D_PT_etch_a_ton) bpy.ops.add(OBJECT_OT_select_pattern) - diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 11e5abc061c..202d97064c9 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -3,15 +3,18 @@ # http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise # using this module constitutes acceptance of the terms of this License. - +# import bpy + class View3DPanel(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'TOOLS' + # ********** default tools for objectmode **************** + class VIEW3D_PT_tools_objectmode(View3DPanel): bl_context = "objectmode" bl_label = "Object Tools" @@ -30,7 +33,7 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): col.itemO("object.duplicate_move") col.itemO("object.delete") - active_object= context.active_object + active_object = context.active_object if active_object and active_object.type == 'MESH': col = layout.column(align=True) @@ -57,6 +60,7 @@ class VIEW3D_PT_tools_objectmode(View3DPanel): # ********** default tools for editmode_mesh **************** + class VIEW3D_PT_tools_meshedit(View3DPanel): bl_context = "mesh_edit" bl_label = "Mesh Tools" @@ -108,6 +112,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + class VIEW3D_PT_tools_meshedit_options(View3DPanel): bl_context = "mesh_edit" bl_label = "Mesh Options" @@ -122,6 +127,7 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel): # ********** default tools for editmode_curve **************** + class VIEW3D_PT_tools_curveedit(View3DPanel): bl_context = "curve_edit" bl_label = "Curve Tools" @@ -169,6 +175,7 @@ class VIEW3D_PT_tools_curveedit(View3DPanel): # ********** default tools for editmode_surface **************** + class VIEW3D_PT_tools_surfaceedit(View3DPanel): bl_context = "surface_edit" bl_label = "Surface Tools" @@ -208,6 +215,7 @@ class VIEW3D_PT_tools_surfaceedit(View3DPanel): # ********** default tools for editmode_text **************** + class VIEW3D_PT_tools_textedit(View3DPanel): bl_context = "text_edit" bl_label = "Text Tools" @@ -234,6 +242,7 @@ class VIEW3D_PT_tools_textedit(View3DPanel): # ********** default tools for editmode_armature **************** + class VIEW3D_PT_tools_armatureedit(View3DPanel): bl_context = "armature_edit" bl_label = "Armature Tools" @@ -269,6 +278,7 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + class VIEW3D_PT_tools_armatureedit_options(View3DPanel): bl_context = "armature_edit" bl_label = "Armature Options" @@ -283,6 +293,7 @@ class VIEW3D_PT_tools_armatureedit_options(View3DPanel): # ********** default tools for editmode_mball **************** + class VIEW3D_PT_tools_mballedit(View3DPanel): bl_context = "mball_edit" bl_label = "Meta Tools" @@ -310,6 +321,7 @@ class VIEW3D_PT_tools_mballedit(View3DPanel): # ********** default tools for editmode_lattice **************** + class VIEW3D_PT_tools_latticeedit(View3DPanel): bl_context = "lattice_edit" bl_label = "Lattice Tools" @@ -337,6 +349,7 @@ class VIEW3D_PT_tools_latticeedit(View3DPanel): # ********** default tools for posemode **************** + class VIEW3D_PT_tools_posemode(View3DPanel): bl_context = "posemode" bl_label = "Pose Tools" @@ -385,6 +398,7 @@ class VIEW3D_PT_tools_posemode(View3DPanel): col.itemO("screen.repeat_history", text="History...") col.itemO("screen.redo_last", text="Tweak...") + class VIEW3D_PT_tools_posemode_options(View3DPanel): bl_context = "posemode" bl_label = "Pose Options" @@ -400,6 +414,7 @@ class VIEW3D_PT_tools_posemode_options(View3DPanel): # ********** default tools for paint modes **************** + class PaintPanel(bpy.types.Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'TOOLS' @@ -420,6 +435,7 @@ class PaintPanel(bpy.types.Panel): return False + class VIEW3D_PT_tools_brush(PaintPanel): bl_label = "Brush" @@ -559,6 +575,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): row.itemR(brush, "use_jitter_pressure", toggle=True, text="") ''' + class VIEW3D_PT_tools_brush_stroke(PaintPanel): bl_label = "Stroke" bl_default_closed = True @@ -601,6 +618,7 @@ class VIEW3D_PT_tools_brush_stroke(PaintPanel): if texture_paint: row.itemR(brush, "use_spacing_pressure", toggle=True, text="") + class VIEW3D_PT_tools_brush_curve(PaintPanel): bl_label = "Curve" bl_default_closed = True @@ -618,6 +636,7 @@ class VIEW3D_PT_tools_brush_curve(PaintPanel): layout.template_curve_mapping(brush, "curve") layout.item_menu_enumO("brush.curve_preset", property="shape") + class VIEW3D_PT_sculpt_options(PaintPanel): bl_label = "Options" @@ -649,6 +668,7 @@ class VIEW3D_PT_sculpt_options(PaintPanel): # ********** default tools for weightpaint **************** + class VIEW3D_PT_tools_weightpaint(View3DPanel): bl_context = "weightpaint" bl_label = "Weight Tools" @@ -665,6 +685,7 @@ class VIEW3D_PT_tools_weightpaint(View3DPanel): col.itemO("object.vertex_group_invert", text="Invert") col.itemO("object.vertex_group_clean", text="Clean") + class VIEW3D_PT_tools_weightpaint_options(View3DPanel): bl_context = "weightpaint" bl_label = "Options" @@ -698,6 +719,7 @@ class VIEW3D_PT_tools_weightpaint_options(View3DPanel): # ********** default tools for vertexpaint **************** + class VIEW3D_PT_tools_vertexpaint(View3DPanel): bl_context = "vertexpaint" bl_label = "Options" @@ -720,9 +742,9 @@ class VIEW3D_PT_tools_vertexpaint(View3DPanel): # col.itemL(text="Multiply:") # col.itemR(vpaint, "mul", text="") - # ********** default tools for texturepaint **************** + class VIEW3D_PT_tools_projectpaint(View3DPanel): bl_context = "texturepaint" bl_label = "Project Paint" @@ -740,7 +762,7 @@ class VIEW3D_PT_tools_projectpaint(View3DPanel): ipaint = context.tool_settings.image_paint settings = context.tool_settings.image_paint - use_projection= ipaint.use_projection + use_projection = ipaint.use_projection col = layout.column() sub = col.column() @@ -776,9 +798,9 @@ class VIEW3D_PT_tools_projectpaint(View3DPanel): sub = col.column() sub.itemR(ipaint, "seam_bleed") -# ********** default tools for particle mode **************** class VIEW3D_PT_tools_particlemode(View3DPanel): + '''default tools for particle mode''' bl_context = "particlemode" bl_label = "Options" @@ -798,7 +820,7 @@ class VIEW3D_PT_tools_particlemode(View3DPanel): ptcache = ob.particle_systems[ob.active_particle_system_index].point_cache else: for md in ob.modifiers: - if md.type==pe.type: + if md.type == pe.type: ptcache = md.point_cache if ptcache and len(ptcache.point_cache_list) > 1: @@ -837,6 +859,7 @@ class VIEW3D_PT_tools_particlemode(View3DPanel): sub.active = pe.fade_time sub.itemR(pe, "fade_frames", slider=True) + bpy.types.register(VIEW3D_PT_tools_weightpaint) bpy.types.register(VIEW3D_PT_tools_objectmode) bpy.types.register(VIEW3D_PT_tools_meshedit) From 69feedf139d2c0e0e8eee5d89afdd13fd85aa689 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 02:52:38 +0000 Subject: [PATCH 282/412] Object PET works with autokey. Reordering some function calls in transform cleanup to make it simpler (that means other fixes are possible too, sequencer probably don't need it's own freeing function anymore). --- source/blender/editors/transform/transform.c | 9 ++- .../editors/transform/transform_conversions.c | 78 ++++++++++--------- .../editors/transform/transform_generics.c | 32 +++++--- 3 files changed, 67 insertions(+), 52 deletions(-) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index f582fd03ba8..2a2753436c2 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -1012,11 +1012,12 @@ int calculateTransformCenter(bContext *C, wmEvent *event, int centerMode, float VECCOPY(vec, t->con.center); } - postTrans(t); /* aftertrans does insert ipos and action channels, and clears base flags, doesnt read transdata */ special_aftertrans_update(t); + postTrans(t); + MEM_freeN(t); return success; @@ -1573,12 +1574,12 @@ int transformEnd(bContext *C, TransInfo *t) exit_code = OPERATOR_FINISHED; } - /* free data */ - postTrans(t); - /* aftertrans does insert keyframes, and clears base flags, doesnt read transdata */ special_aftertrans_update(t); + /* free data */ + postTrans(t); + /* send events out for redraws */ viewRedrawPost(t); diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 449994f2cec..5d6d6948a4b 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4703,10 +4703,11 @@ void autokeyframe_pose_cb_func(Scene *scene, View3D *v3d, Object *ob, int tmode, } -/* inserting keys, refresh ipo-keys, pointcache, redraw events... (ton) */ -/* note: transdata has been freed already! */ -/* note: this runs even when createTransData exits early because (t->total==0), is this correct?... (campbell) */ -/* note: sequencer freeing has its own function now because of a conflict with transform's order of freeing (campbell)*/ +/* inserting keys, refresh ipo-keys, pointcache, redraw events... */ +/* + * note: sequencer freeing has its own function now because of a conflict with transform's order of freeing (campbell) + * Order changed, the sequencer stuff should go back in here + * */ void special_aftertrans_update(TransInfo *t) { Object *ob; @@ -4714,6 +4715,10 @@ void special_aftertrans_update(TransInfo *t) int cancelled= (t->state == TRANS_CANCEL); short duplicate= (t->undostr && strstr(t->undostr, "Duplicate")) ? 1 : 0; + /* early out when nothing happened */ + if (t->total == 0 || t->mode != TFM_DUMMY) + return; + if (t->spacetype==SPACE_VIEW3D) { if (t->obedit) { if (cancelled==0) { @@ -4988,43 +4993,42 @@ void special_aftertrans_update(TransInfo *t) else if(t->scene->basact && (ob = t->scene->basact->object) && (ob->mode & OB_MODE_PARTICLE_EDIT) && PE_get_current(t->scene, ob)) { ; } - else { - /* Objects */ - // XXX ideally, this would go through context iterators, but we don't have context iterator access here, - // so we make do with old data + access styles... - Scene *scene= t->scene; - Base *base; + else { /* Objects */ + int i; - for (base= FIRSTBASE; base; base= base->next) { - ob= base->object; + for (i = 0; i < t->total; i++) { + TransData *td = t->data + i; + Object *ob = td->ob; + ListBase pidlist; + PTCacheID *pid; + + if (td->flag & TD_NOACTION) + break; + + if (td->flag & TD_SKIP) + continue; - if (base->flag & SELECT && (t->mode != TFM_DUMMY)) { - ListBase pidlist; - PTCacheID *pid; - - /* flag object caches as outdated */ - BKE_ptcache_ids_from_object(&pidlist, ob); - for(pid=pidlist.first; pid; pid=pid->next) { - if(pid->type != PTCACHE_TYPE_PARTICLES) /* particles don't need reset on geometry change */ - pid->cache->flag |= PTCACHE_OUTDATED; - } - BLI_freelistN(&pidlist); - - /* pointcache refresh */ - if (BKE_ptcache_object_reset(scene, ob, PTCACHE_RESET_OUTDATED)) - ob->recalc |= OB_RECALC_DATA; - - /* Needed for proper updating of "quick cached" dynamics. */ - /* Creates troubles for moving animated objects without */ - /* autokey though, probably needed is an anim sys override? */ - /* Please remove if some other solution is found. -jahka */ - DAG_id_flush_update(&ob->id, OB_RECALC_OB); - - /* Set autokey if necessary */ - if (!cancelled) - autokeyframe_ob_cb_func(t->scene, (View3D *)t->view, ob, t->mode); + /* flag object caches as outdated */ + BKE_ptcache_ids_from_object(&pidlist, ob); + for(pid=pidlist.first; pid; pid=pid->next) { + if(pid->type != PTCACHE_TYPE_PARTICLES) /* particles don't need reset on geometry change */ + pid->cache->flag |= PTCACHE_OUTDATED; } + BLI_freelistN(&pidlist); + /* pointcache refresh */ + if (BKE_ptcache_object_reset(t->scene, ob, PTCACHE_RESET_OUTDATED)) + ob->recalc |= OB_RECALC_DATA; + + /* Needed for proper updating of "quick cached" dynamics. */ + /* Creates troubles for moving animated objects without */ + /* autokey though, probably needed is an anim sys override? */ + /* Please remove if some other solution is found. -jahka */ + DAG_id_flush_update(&ob->id, OB_RECALC_OB); + + /* Set autokey if necessary */ + if (!cancelled) + autokeyframe_ob_cb_func(t->scene, (View3D *)t->view, ob, t->mode); } } diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index fc3661c1102..17818713b1e 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -776,6 +776,8 @@ void recalcData(TransInfo *t) flushTransParticles(t); } else { + int i; + for(base= FIRSTBASE; base; base= base->next) { Object *ob= base->object; @@ -784,18 +786,26 @@ void recalcData(TransInfo *t) ob->recalc |= OB_RECALC_OB; if(base->flag & BA_HAS_RECALC_DATA) ob->recalc |= OB_RECALC_DATA; + } + + for (i = 0; i < t->total; i++) { + TransData *td = t->data + i; + Object *ob = td->ob; - /* if object/base is selected */ - if ((base->flag & SELECT) || (ob->flag & SELECT)) { - /* if animtimer is running, and the object already has animation data, - * check if the auto-record feature means that we should record 'samples' - * (i.e. uneditable animation values) - */ - // TODO: autokeyframe calls need some setting to specify to add samples (FPoints) instead of keyframes? - if ((t->animtimer) && IS_AUTOKEY_ON(t->scene)) { - animrecord_check_state(t->scene, &ob->id, t->animtimer); - autokeyframe_ob_cb_func(t->scene, (View3D *)t->view, ob, t->mode); - } + if (td->flag & TD_NOACTION) + break; + + if (td->flag & TD_SKIP) + continue; + + /* if animtimer is running, and the object already has animation data, + * check if the auto-record feature means that we should record 'samples' + * (i.e. uneditable animation values) + */ + // TODO: autokeyframe calls need some setting to specify to add samples (FPoints) instead of keyframes? + if ((t->animtimer) && IS_AUTOKEY_ON(t->scene)) { + animrecord_check_state(t->scene, &ob->id, t->animtimer); + autokeyframe_ob_cb_func(t->scene, (View3D *)t->view, ob, t->mode); } /* proxy exception */ From 95fbca7dc97b4bcce3350ed71ea1634a30e43fdb Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Sun, 1 Nov 2009 08:23:53 +0000 Subject: [PATCH 283/412] Mac / COCOA : - fix imbuf Cocoa resolution handling issue --- source/blender/imbuf/intern/imbuf_cocoa.m | 31 +++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/source/blender/imbuf/intern/imbuf_cocoa.m b/source/blender/imbuf/intern/imbuf_cocoa.m index 5ede7ee3e00..77449d1d8ce 100644 --- a/source/blender/imbuf/intern/imbuf_cocoa.m +++ b/source/blender/imbuf/intern/imbuf_cocoa.m @@ -66,7 +66,7 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) { struct ImBuf *ibuf = NULL; - uint32_t width, height; + NSSize bitmapSize; uchar *rasterRGB = NULL; uchar *rasterRGBA = NULL; uchar *toIBuf = NULL; @@ -87,11 +87,14 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) return NULL; } - width = [bitmapImage pixelsWide]; - height = [bitmapImage pixelsHigh]; + bitmapSize.width = [bitmapImage pixelsWide]; + bitmapSize.height = [bitmapImage pixelsHigh]; + + /* Tell cocoa image resolution is same as current system one */ + [bitmapImage setSize:bitmapSize]; /* allocate the image buffer */ - ibuf = IMB_allocImBuf(width, height, 32/*RGBA*/, 0, 0); + ibuf = IMB_allocImBuf(bitmapSize.width, bitmapSize.height, 32/*RGBA*/, 0, 0); if (!ibuf) { fprintf(stderr, "imb_cocoaLoadImage: could not allocate memory for the " \ @@ -113,12 +116,12 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) /* First get RGB values w/o Alpha to avoid pre-multiplication, 32bit but last byte is unused */ blBitmapFormatImageRGB = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL - pixelsWide:width - pixelsHigh:height + pixelsWide:bitmapSize.width + pixelsHigh:bitmapSize.height bitsPerSample:8 samplesPerPixel:3 hasAlpha:NO isPlanar:NO colorSpaceName:NSCalibratedRGBColorSpace bitmapFormat:0 - bytesPerRow:4*width + bytesPerRow:4*bitmapSize.width bitsPerPixel:32/*RGB format padded to 32bits*/]; [NSGraphicsContext saveGraphicsState]; @@ -136,12 +139,12 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) /* Then get Alpha values by getting the RGBA image (that is premultiplied btw) */ blBitmapFormatImageRGBA = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:NULL - pixelsWide:width - pixelsHigh:height + pixelsWide:bitmapSize.width + pixelsHigh:bitmapSize.height bitsPerSample:8 samplesPerPixel:4 hasAlpha:YES isPlanar:NO colorSpaceName:NSCalibratedRGBColorSpace bitmapFormat:0 - bytesPerRow:4*width + bytesPerRow:4*bitmapSize.width bitsPerPixel:32/* RGBA */]; [NSGraphicsContext saveGraphicsState]; @@ -160,10 +163,10 @@ struct ImBuf *imb_cocoaLoadImage(unsigned char *mem, int size, int flags) /*Copy the image to ibuf, flipping it vertically*/ toIBuf = (uchar*)ibuf->rect; - for (x = 0; x < width; x++) { - for (y = 0; y < height; y++) { - to_i = (height-y-1)*width + x; - from_i = y*width + x; + for (x = 0; x < bitmapSize.width; x++) { + for (y = 0; y < bitmapSize.height; y++) { + to_i = (bitmapSize.height-y-1)*bitmapSize.width + x; + from_i = y*bitmapSize.width + x; toIBuf[4*to_i] = rasterRGB[4*from_i]; /* R */ toIBuf[4*to_i+1] = rasterRGB[4*from_i+1]; /* G */ From cb45db0336aa7a090c5edc0f8b6f62d334c72baa Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 1 Nov 2009 10:45:42 +0000 Subject: [PATCH 284/412] * Some guideline work for the particle py file. * Minor layout tweaks in Node RNA to match most other RNA enums. --- release/scripts/ui/properties_particle.py | 108 +++++++++--------- source/blender/makesrna/intern/rna_nodetree.c | 51 +++------ 2 files changed, 71 insertions(+), 88 deletions(-) diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index 4527cbf7c92..71901e65130 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -439,14 +439,14 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): row.template_list(psys, "targets", psys, "active_particle_target_index") col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.new_target", icon='ICON_ZOOMIN', text="") - subcol.itemO("particle.remove_target", icon='ICON_ZOOMOUT', text="") - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.target_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("particle.target_move_down", icon='VICON_MOVE_DOWN', text="") + sub = col.row() + subsub = sub.column(align=True) + subsub.itemO("particle.new_target", icon='ICON_ZOOMIN', text="") + subsub.itemO("particle.remove_target", icon='ICON_ZOOMOUT', text="") + sub = col.row() + subsub = sub.column(align=True) + subsub.itemO("particle.target_move_up", icon='VICON_MOVE_UP', text="") + subsub.itemO("particle.target_move_down", icon='VICON_MOVE_DOWN', text="") key = psys.active_particle_target if key: @@ -462,11 +462,11 @@ class PARTICLE_PT_physics(ParticleButtonsPanel): col.itemR(key, "time") col.itemR(key, "duration") else: - subrow = row.row() + sub = row.row() #doesn't work yet #subrow.red_alert = key.valid - subrow.itemR(key, "object", text="") - subrow.itemR(key, "system", text="System") + sub.itemR(key, "object", text="") + sub.itemR(key, "system", text="System") layout.itemR(key, "mode", expand=True) @@ -517,14 +517,14 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel): row.template_list(state, "rules", state, "active_boid_rule_index") col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.item_menu_enumO("boid.rule_add", "type", icon='ICON_ZOOMIN', text="") - subcol.itemO("boid.rule_del", icon='ICON_ZOOMOUT', text="") - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("boid.rule_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("boid.rule_move_down", icon='VICON_MOVE_DOWN', text="") + sub = col.row() + subsub = sub.column(align=True) + subsub.item_menu_enumO("boid.rule_add", "type", icon='ICON_ZOOMIN', text="") + subsub.itemO("boid.rule_del", icon='ICON_ZOOMOUT', text="") + sub = col.row() + subcol = sub.column(align=True) + subsub.itemO("boid.rule_move_up", icon='VICON_MOVE_UP', text="") + subsub.itemO("boid.rule_move_down", icon='VICON_MOVE_DOWN', text="") rule = state.active_boid_rule @@ -619,19 +619,19 @@ class PARTICLE_PT_render(ParticleButtonsPanel): return sub.itemR(part, "render_strand") - colsub = sub.column() - colsub.active = part.render_strand == False - colsub.itemR(part, "render_adaptive") - colsub = sub.column() - colsub.active = part.render_adaptive or part.render_strand == True - colsub.itemR(part, "adaptive_angle") - colsub = sub.column() - colsub.active = part.render_adaptive == True and part.render_strand == False - colsub.itemR(part, "adaptive_pix") + subsub = sub.column() + subsub.active = part.render_strand == False + subsub.itemR(part, "render_adaptive") + subsub = sub.column() + subsub.active = part.render_adaptive or part.render_strand == True + subsub.itemR(part, "adaptive_angle") + subsub = sub.column() + subsub.active = part.render_adaptive == True and part.render_strand == False + subsub.itemR(part, "adaptive_pix") sub.itemR(part, "hair_bspline") sub.itemR(part, "render_step", text="Steps") + sub = split.column() - sub.itemL(text="Timing:") sub.itemR(part, "abs_path_time") sub.itemR(part, "path_start", text="Start", slider=not part.abs_path_time) @@ -650,9 +650,9 @@ class PARTICLE_PT_render(ParticleButtonsPanel): row.itemR(part, "simplify_transition") row = layout.row() row.itemR(part, "viewport") - subrow = row.row() - subrow.active = part.viewport == True - subrow.itemR(part, "simplify_viewport") + sub = row.row() + sub.active = part.viewport == True + sub.itemR(part, "simplify_viewport") elif part.ren_as == 'OBJECT': sub.itemR(part, "dupli_object") @@ -662,27 +662,27 @@ class PARTICLE_PT_render(ParticleButtonsPanel): split = layout.split() sub = split.column() sub.itemR(part, "whole_group") - colsub = sub.column() - colsub.active = part.whole_group == False - colsub.itemR(part, "use_group_count") + subsub = sub.column() + subsub.active = part.whole_group == False + subsub.itemR(part, "use_group_count") sub = split.column() - colsub = sub.column() - colsub.active = part.whole_group == False - colsub.itemR(part, "use_global_dupli") - colsub.itemR(part, "rand_group") + subsub = sub.column() + subsub.active = part.whole_group == False + subsub.itemR(part, "use_global_dupli") + subsub.itemR(part, "rand_group") if part.use_group_count and not part.whole_group: row = layout.row() row.template_list(part, "dupliweights", part, "active_dupliweight_index") col = row.column() - subrow = col.row() - subcol = subrow.column(align=True) - subcol.itemO("particle.dupliob_copy", icon='ICON_ZOOMIN', text="") - subcol.itemO("particle.dupliob_remove", icon='ICON_ZOOMOUT', text="") - subcol.itemO("particle.dupliob_move_up", icon='VICON_MOVE_UP', text="") - subcol.itemO("particle.dupliob_move_down", icon='VICON_MOVE_DOWN', text="") + sub = col.row() + subsub = sub.column(align=True) + subsub.itemO("particle.dupliob_copy", icon='ICON_ZOOMIN', text="") + subsub.itemO("particle.dupliob_remove", icon='ICON_ZOOMOUT', text="") + subsub.itemO("particle.dupliob_move_up", icon='VICON_MOVE_UP', text="") + subsub.itemO("particle.dupliob_move_down", icon='VICON_MOVE_DOWN', text="") weight = part.active_dupliweight if weight: @@ -788,10 +788,10 @@ class PARTICLE_PT_draw(ParticleButtonsPanel): if (path): col.itemR(part, "draw_step") else: - subcol = col.column() - subcol.active = part.material_color == False - #subcol.itemL(text="color") - #subcol.itemL(text="Override material color") + sub = col.column() + sub.active = part.material_color == False + #sub.itemL(text="color") + #sub.itemL(text="Override material color") class PARTICLE_PT_children(ParticleButtonsPanel): @@ -864,11 +864,11 @@ class PARTICLE_PT_children(ParticleButtonsPanel): split = layout.split() - sub = split.column() - sub.itemR(part, "kink_amplitude") - sub.itemR(part, "kink_frequency") - sub = split.column() - sub.itemR(part, "kink_shape", slider=True) + col = split.column() + col.itemR(part, "kink_amplitude") + col.itemR(part, "kink_frequency") + col = split.column() + col.itemR(part, "kink_shape", slider=True) class PARTICLE_PT_field_weights(ParticleButtonsPanel): diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c index 068aa4d72d1..2c8243a4f16 100644 --- a/source/blender/makesrna/intern/rna_nodetree.c +++ b/source/blender/makesrna/intern/rna_nodetree.c @@ -59,15 +59,13 @@ static EnumPropertyItem node_blend_type_items[] = { {12, "HUE", 0, "Hue", ""}, {16, "SOFT_LIGHT", 0, "Soft Light", ""}, {17, "LINEAR_LIGHT", 0, "Linear Light",""}, - {0, NULL, 0, NULL, NULL} -}; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem node_flip_items[] = { {0, "X", 0, "Flip X", ""}, {1, "Y", 0, "Flip Y", ""}, {2, "XY", 0, "Flip X & Y", ""}, - {0, NULL, 0, NULL, NULL} -}; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem node_math_items[] = { { 0, "ADD", 0, "Add", ""}, @@ -87,8 +85,7 @@ static EnumPropertyItem node_math_items[] = { {14, "ROUND", 0, "Round", ""}, {15, "LESS_THAN", 0, "Less Than", ""}, {16, "GREATER_THAN", 0, "Greater Than", ""}, - {0, NULL, 0, NULL, NULL} -}; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem node_vec_math_items[] = { {0, "ADD", 0, "Add", ""}, @@ -97,8 +94,7 @@ static EnumPropertyItem node_vec_math_items[] = { {3, "DOT_PRODUCT", 0, "Dot Product", ""}, {4, "CROSS_PRODUCT", 0, "Cross Product", ""}, {5, "NORMALIZE", 0, "Normalize", ""}, - {0, NULL, 0, NULL, NULL} -}; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem node_filter_items[] = { {0, "SOFTEN", 0, "Soften", ""}, @@ -108,8 +104,7 @@ static EnumPropertyItem node_filter_items[] = { {4, "PREWITT", 0, "Prewitt", ""}, {5, "KIRSCH", 0, "Kirsch", ""}, {6, "SHADOW", 0, "Shadow", ""}, - {0, NULL, 0, NULL, NULL} -}; + {0, NULL, 0, NULL, NULL}}; #ifdef RNA_RUNTIME @@ -583,8 +578,7 @@ static void def_cmp_blur(StructRNA *srna) {R_FILTER_FAST_GAUSS, "FAST_GAUSS", 0, "Fast Gaussian", ""}, {R_FILTER_CATROM, "CATROM", 0, "Catrom", ""}, {R_FILTER_MITCH, "MITCH", 0, "Mitch", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; RNA_def_struct_sdna_from(srna, "NodeBlurData", "storage"); @@ -766,8 +760,7 @@ static void def_cmp_levels(StructRNA *srna) {3, "GREEN", 0, "G", "Green Channel"}, {4, "BLUE", 0, "B", "Blue Channel"}, {5, "LUMINANCE", 0, "L", "Luminance Channel"}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "color_space", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom1"); @@ -785,8 +778,7 @@ static void def_cmp_image(StructRNA *srna) {IMA_SRC_MOVIE, "MOVIE", "Movie", ""}, {IMA_SRC_SEQUENCE, "SEQUENCE", "Sequence", ""}, {IMA_SRC_GENERATED, "GENERATED", "Generated", ""}, - {0, NULL, 0, NULL, NULL} - };*/ + {0, NULL, 0, NULL, NULL}};*/ prop = RNA_def_property(srna, "image", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "id"); @@ -949,8 +941,7 @@ static void def_cmp_scale(StructRNA *srna) {0, "RELATIVE", 0, "Relative", ""}, {1, "ABSOLUTE", 0, "Absolute", ""}, {2, "SCENE_SIZE", 0, "Scene Size", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "space", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom1"); @@ -1034,8 +1025,7 @@ static void def_cmp_color_spill(StructRNA *srna) {1, "R", 0, "R", "Red Spill Suppression"}, {2, "G", 0, "G", "Green Spill Suppression"}, {3, "B", 0, "B", "Blue Spill Suppression"}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "channel", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom1"); @@ -1121,8 +1111,7 @@ static void def_cmp_channel_matte(StructRNA *srna) {2, "HSV", 0, "HSV", "HSV Color Space"}, {3, "YUV", 0, "YUV", "YUV Color Space"}, {4, "YCC", 0, "YCbCr", "YCbCr Color Space"}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "color_space", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom1"); @@ -1171,8 +1160,7 @@ static void def_cmp_splitviewer(StructRNA *srna) static EnumPropertyItem axis_items[] = { {0, "X", 0, "X", ""}, {1, "Y", 0, "Y", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "axis", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom2"); @@ -1221,8 +1209,7 @@ static void def_cmp_defocus(StructRNA *srna) {4, "SQUARE", 0, "Square", "4 sides"}, {3, "TRIANGLE", 0, "Triangular", "3 sides"}, {0, "CIRCLE", 0, "Circular", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; RNA_def_struct_sdna_from(srna, "NodeDefocus", "storage"); @@ -1423,8 +1410,7 @@ static void def_cmp_premul_key(StructRNA *srna) static EnumPropertyItem type_items[] = { {0, "KEY_TO_PREMUL", 0, "Key to Premul", ""}, {1, "PREMUL_TO_KEY", 0, "Premul to Key", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; prop = RNA_def_property(srna, "mapping", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "custom1"); @@ -1443,15 +1429,13 @@ static void def_cmp_glare(StructRNA *srna) {2, "STREAKS", 0, "Streaks", ""}, {1, "FOG_GLOW", 0, "Fog Glow", ""}, {0, "SIMPLE_STAR", 0, "Simple Star", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem quality_items[] = { {0, "HIGH", 0, "High", ""}, {1, "MEDIUM", 0, "Medium", ""}, {2, "LOW", 0, "Low", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; RNA_def_struct_sdna_from(srna, "NodeGlare", "storage"); @@ -1530,8 +1514,7 @@ static void def_cmp_tonemap(StructRNA *srna) static EnumPropertyItem type_items[] = { {1, "RD_PHOTORECEPTOR", 0, "R/D Photoreceptor", ""}, {0, "RH_SIMPLE", 0, "Rh Simple", ""}, - {0, NULL, 0, NULL, NULL} - }; + {0, NULL, 0, NULL, NULL}}; RNA_def_struct_sdna_from(srna, "NodeTonemap", "storage"); From 2068eaf1b7f7729198ad865f69fa3bd11d7a9edc Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 1 Nov 2009 11:29:40 +0000 Subject: [PATCH 285/412] Rigging Goodies: Spline IK Constraint At last, this commit introduces the Spline IK Constraint to Blender. Spline IK is a constraint that makes n bones follow the shape of a specified curve. Simply add a chain of bones, add a curve, add a Spline IK Constraint to the tip bone and set the number of bones in the chain to make it work. Or, try the following test file: http://download.blender.org/ftp/incoming/250_splineik_spine01.blend Screenshots of this in action (as proof): http://download.blender.org/ftp/incoming/b250_splineik_001_before.png http://download.blender.org/ftp/incoming/b250_splineik_001_after.png I've implemented this in a similar way to how standard IK solvers are done. However, this code is currently not an IK plugin, since I imagine that it would be useful to be able to combine the 2 types of IK. This can be easily changed though :) Finally, a few notes on what to expect still: * Constraint blending currently doesn't affect this. Getting that to work correctly will take a bit more work still. * Options for not affecting the root joint (to make it easier to attach the chain to a stump or whatever), and non-uniform scaling options have yet to be added. I've marked the places where they can be added though * Control over the twisting of the chain still needs investigation. Have fun! --- .../ui/properties_object_constraint.py | 7 + source/blender/blenkernel/BKE_armature.h | 7 +- source/blender/blenkernel/intern/action.c | 4 +- source/blender/blenkernel/intern/armature.c | 277 +++++++++++++++++- source/blender/blenkernel/intern/constraint.c | 93 +++++- source/blender/blenkernel/intern/depsgraph.c | 4 +- source/blender/blenloader/intern/readfile.c | 5 + source/blender/blenloader/intern/writefile.c | 10 +- .../editors/object/object_constraint.c | 32 +- .../editors/space_view3d/drawarmature.c | 100 +++++-- .../blender/ikplugin/intern/iksolver_plugin.c | 8 +- source/blender/makesdna/DNA_action_types.h | 43 ++- source/blender/makesdna/DNA_armature_types.h | 1 + .../blender/makesdna/DNA_constraint_types.h | 40 ++- source/blender/makesrna/RNA_access.h | 1 + .../blender/makesrna/intern/rna_constraint.c | 30 +- 16 files changed, 590 insertions(+), 72 deletions(-) diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 29df85abf6a..d33b18b1b09 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -581,6 +581,13 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemL(text="To:") row.itemR(con, "track", expand=True) + + def SPLINE_IK(self, context, layout, con): + self.target_template(layout, con) + + row = layout.row() + row.itemR(con, "chain_length") + # TODO: add the various options this constraint has... class OBJECT_PT_constraints(ConstraintButtonsPanel): diff --git a/source/blender/blenkernel/BKE_armature.h b/source/blender/blenkernel/BKE_armature.h index 19c2662054b..03f23f07c8c 100644 --- a/source/blender/blenkernel/BKE_armature.h +++ b/source/blender/blenkernel/BKE_armature.h @@ -55,11 +55,14 @@ typedef struct PoseTarget typedef struct PoseTree { struct PoseTree *next, *prev; - + + int type; /* type of IK that this serves (CONSTRAINT_TYPE_KINEMATIC or ..._SPLINEIK) */ + int totchannel; /* number of pose channels */ + struct ListBase targets; /* list of targets of the tree */ struct bPoseChannel **pchan; /* array of pose channels */ int *parent; /* and their parents */ - int totchannel; /* number of pose channels */ + float (*basis_change)[3][3]; /* basis change result from solver */ int iterations; /* iterations from the constraint */ int stretch; /* disable stretching */ diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c index 25f539a1992..2dec76d1b6b 100644 --- a/source/blender/blenkernel/intern/action.c +++ b/source/blender/blenkernel/intern/action.c @@ -622,7 +622,7 @@ static void copy_pose_channel_data(bPoseChannel *pchan, const bPoseChannel *chan } } -/* checks for IK constraint, and also for Follow-Path constraint. +/* checks for IK constraint, Spline IK, and also for Follow-Path constraint. * can do more constraints flags later */ /* pose should be entirely OK */ @@ -675,6 +675,8 @@ void update_pose_constraint_flags(bPose *pose) if ((data->tar) && (data->tar->type==OB_CURVE)) pose->flag |= POSE_CONSTRAINTS_TIMEDEPEND; } + else if (con->type == CONSTRAINT_TYPE_SPLINEIK) + pchan->constflag |= PCHAN_HAS_SPLINEIK; else pchan->constflag |= PCHAN_HAS_CONST; } diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 139ff9d6b19..0bb0041cece 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -52,6 +52,7 @@ #include "BKE_armature.h" #include "BKE_action.h" +#include "BKE_anim.h" #include "BKE_blender.h" #include "BKE_constraint.h" #include "BKE_curve.h" @@ -1604,6 +1605,260 @@ void armature_rebuild_pose(Object *ob, bArmature *arm) } +/* ********************** SPLINE IK SOLVER ******************* */ + +/* Temporary evaluation tree data used for Spline IK */ +typedef struct tSplineIK_Tree { + struct tSplineIK_Tree *next, *prev; + + int type; /* type of IK that this serves (CONSTRAINT_TYPE_KINEMATIC or ..._SPLINEIK) */ + + int chainlen; /* number of bones in the chain */ + bPoseChannel **chain; /* chain of bones to affect using Spline IK (ordered from the tip) */ + + bPoseChannel *root; /* bone that is the root node of the chain */ + + bConstraint *con; /* constraint for this chain */ + bSplineIKConstraint *ikData; /* constraint settings for this chain */ +} tSplineIK_Tree; + +/* ----------- */ + +/* Tag the bones in the chain formed by the given bone for IK */ +static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) +{ + bPoseChannel *pchan, *pchanRoot=NULL; + bPoseChannel *pchanChain[255]; + bConstraint *con = NULL; + bSplineIKConstraint *ikData = NULL; + float boneLengths[255]; + float totLength = 0.0f; + int segcount = 0; + + /* find the SplineIK constraint */ + for (con= pchan_tip->constraints.first; con; con= con->next) { + if (con->type == CONSTRAINT_TYPE_SPLINEIK) { + ikData= con->data; + + /* target can only be curve */ + if ((ikData->tar == NULL) || (ikData->tar->type != OB_CURVE)) + continue; + /* skip if disabled */ + if ( (con->enforce == 0.0f) || (con->flag & (CONSTRAINT_DISABLE|CONSTRAINT_OFF)) ) + continue; + + /* otherwise, constraint is ok... */ + break; + } + } + if (con == NULL) + return; + + /* find the root bone and the chain of bones from the root to the tip + * NOTE: this assumes that the bones are connected, but that may not be true... + */ + for (pchan= pchan_tip; pchan; pchan= pchan->parent) { + /* store this segment in the chain */ + pchanChain[segcount]= pchan; + + /* if performing rebinding, calculate the length of the bone */ + if ((ikData->flag & CONSTRAINT_SPLINEIK_BOUND) == 0) { + boneLengths[segcount]= pchan->bone->length; + totLength += boneLengths[segcount]; + } + + /* check if we've gotten the number of bones required yet (after incrementing the count first) + * NOTE: the 255 limit here is rather ugly, but the standard IK does this too! + */ + segcount++; + if ((segcount == ikData->chainlen) || (segcount > 255)) + break; + } + + if (segcount == 0) + return; + else + pchanRoot= pchanChain[segcount-1]; + + /* perform binding step if required */ + if ((ikData->flag & CONSTRAINT_SPLINEIK_BOUND) == 0) { + int i; + + /* setup new empty array for the points list */ + if (ikData->points) + MEM_freeN(ikData->points); + ikData->numpoints= (ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT)? ikData->chainlen : ikData->chainlen+1; + ikData->points= MEM_callocN(sizeof(float)*ikData->numpoints, "Spline IK Binding"); + + /* perform binding of the joints to parametric positions along the curve based + * proportion of the total length that each bone occupies + */ + for (i = 0; i < segcount; i++) { + if (i != 0) { + /* 'head' joints + * - 2 methods; the one chosen depends on whether we've got usable lengths + */ + if (totLength == 0.0f) { + /* 1) equi-spaced joints */ + // TODO: maybe this should become an option too, in case we want this option by default + ikData->points[i]= (1.0f / (float)segcount); // TODO: optimize by puttig this outside the loop! + } + else { + /* 2) to find this point on the curve, we take a step from the previous joint + * a distance given by the proportion that this bone takes + */ + ikData->points[i]= ikData->points[i-1] - (boneLengths[i] / totLength); + } + } + else { + /* 'tip' of chain, special exception for the first joint */ + ikData->points[0]= 1.0f; + } + } + + /* spline has now been bound */ + ikData->flag |= CONSTRAINT_SPLINEIK_BOUND; + } + + /* make a new Spline-IK chain, and store it in the IK chains */ + // TODO: we should check if there is already an IK chain on this, since that would take presidence... + { + /* make new tree */ + tSplineIK_Tree *tree= MEM_callocN(sizeof(tSplineIK_Tree), "SplineIK Tree"); + tree->type= CONSTRAINT_TYPE_SPLINEIK; + + tree->chainlen= segcount; + + /* copy over the array of links to bones in the chain (from tip to root) */ + tree->chain= MEM_callocN(sizeof(bPoseChannel*)*segcount, "SplineIK Chain"); + memcpy(tree->chain, pchanChain, sizeof(bPoseChannel*)*segcount); + + tree->root= pchanRoot; + tree->con= con; + tree->ikData= ikData; + + /* AND! link the tree to the root */ + BLI_addtail(&pchanRoot->iktree, tree); + } + + /* mark root channel having an IK tree */ + pchanRoot->flag |= POSE_IKSPLINE; +} + +/* Tag which bones are members of Spline IK chains */ +static void splineik_init_tree(Scene *scene, Object *ob, float ctime) +{ + bPoseChannel *pchan; + + /* find the tips of Spline IK chains, which are simply the bones which have been tagged as such */ + for (pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { + if (pchan->constflag & PCHAN_HAS_SPLINEIK) + splineik_init_tree_from_pchan(ob, pchan); + } +} + +/* ----------- */ + +/* Evaluate spline IK for a given bone */ +// TODO: this method doesn't allow for non-strechiness... +// TODO: include code for dealing with constraint blending +static void splineik_evaluate_bone(tSplineIK_Tree *tree, Object *ob, bPoseChannel *pchan, int index) +{ + bSplineIKConstraint *ikData= tree->ikData; + float dirX[3]={1,0,0}, dirZ[3]={0,0,1}; + float axis1[3], axis2[3], tmpVec[3]; + float splineVec[3], scaleFac; + float vec[4], dir[3]; + + /* step 1: get xyz positions for the endpoints of the bone */ + /* tail */ + if ( where_on_path(ikData->tar, ikData->points[index], vec, dir, NULL, NULL) ) { + /* convert the position to pose-space, then store it */ + Mat4MulVecfl(ob->imat, vec); + VECCOPY(pchan->pose_tail, vec); + } + /* head */ // TODO: only calculate here when we're + if ( where_on_path(ikData->tar, ikData->points[index+1], vec, dir, NULL, NULL) ) { + /* store the position, and convert it to pose space */ + Mat4MulVecfl(ob->imat, vec); + VECCOPY(pchan->pose_head, vec); + } + + + /* step 2a: determine the implied transform from these endpoints + * - splineVec: the vector direction that the spline applies on the bone + * - scaleFac: the factor that the bone length is scaled by to get the desired amount + */ + VecSubf(splineVec, pchan->pose_tail, pchan->pose_head); + scaleFac= VecLength(splineVec) / pchan->bone->length; // TODO: this will need to be modified by blending factor + + /* step 2b: the spline vector now becomes the y-axis of the bone + * - we need to normalise the splineVec first, so that it's just a unit direction vector + */ + Mat4One(pchan->pose_mat); + + Normalize(splineVec); + VECCOPY(pchan->pose_mat[1], splineVec); + + + /* step 3: determine two vectors which will both be at right angles to the bone vector + * based on the method described at + * http://ltcconline.net/greenl/courses/203/Vectors/orthonormalBases.htm + * and normalise them to make sure they they don't act strangely + */ + /* x-axis = dirX - projection(dirX onto splineVec) */ + Projf(axis1, dirX, splineVec); /* project dirX onto splineVec */ + VecSubf(pchan->pose_mat[0], dirX, axis1); + + Normalize(pchan->pose_mat[0]); + + /* z-axis = dirZ - projection(dirZ onto splineVec) - projection(dirZ onto dirX) */ + Projf(axis1, dirZ, splineVec); /* project dirZ onto Y-Axis */ + Projf(axis2, dirZ, pchan->pose_mat[0]); /* project dirZ onto X-Axis */ + + VecSubf(tmpVec, dirZ, axis1); /* dirZ - proj(dirZ->YAxis) */ + VecSubf(pchan->pose_mat[2], tmpVec, axis2); /* (dirZ - proj(dirZ->YAxis)) - proj(dirZ->XAxis) */ + + Normalize(pchan->pose_mat[2]); + + + /* step 4a: multiply all the axes of the bone by the scaling factor to get uniform scaling */ + // TODO: maybe this can be extended to give non-uniform scaling? + //VecMulf(pchan->pose_mat[0], scaleFac); + VecMulf(pchan->pose_mat[1], scaleFac); + //VecMulf(pchan->pose_mat[2], scaleFac); + + /* step 5: set the location of the bone in the matrix */ + VECCOPY(pchan->pose_mat[3], pchan->pose_head); + + /* done! */ + pchan->flag |= POSE_DONE; +} + +/* Evaluate the chain starting from the nominated bone */ +static void splineik_execute_tree(Scene *scene, Object *ob, bPoseChannel *pchan_root, float ctime) +{ + tSplineIK_Tree *tree; + + /* for each pose-tree, execute it if it is spline, otherwise just free it */ + for (tree= pchan_root->iktree.first; tree; tree= pchan_root->iktree.first) { + /* only evaluate if tagged for Spline IK */ + if (tree->type == CONSTRAINT_TYPE_SPLINEIK) { + int i; + + /* walk over each bone in the chain, calculating the effects of spline IK */ + for (i= 0; i < tree->chainlen; i++) { + bPoseChannel *pchan= tree->chain[i]; + splineik_evaluate_bone(tree, ob, pchan, i); + } + } + + /* free the tree info now */ + if (tree->chain) MEM_freeN(tree->chain); + BLI_freelinkN(&pchan_root->iktree, tree); + } +} + /* ********************** THE POSE SOLVER ******************* */ @@ -1629,7 +1884,7 @@ void chan_calc_mat(bPoseChannel *chan) } else { /* quats are normalised before use to eliminate scaling issues */ - NormalQuat(chan->quat); + NormalQuat(chan->quat); // TODO: do this with local vars only! QuatToMat3(chan->quat, rmat); } @@ -1908,21 +2163,31 @@ void where_is_pose (Scene *scene, Object *ob) } else { Mat4Invert(ob->imat, ob->obmat); // imat is needed - + /* 1. clear flags */ for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { pchan->flag &= ~(POSE_DONE|POSE_CHAIN|POSE_IKTREE); } - /* 2. construct the IK tree */ + + /* 2a. construct the IK tree (standard IK) */ BIK_initialize_tree(scene, ob, ctime); - + + /* 2b. construct the Spline IK trees + * - this is not integrated as an IK plugin, since it should be able + * to function in conjunction with standard IK + */ + splineik_init_tree(scene, ob, ctime); + /* 3. the main loop, channels are already hierarchical sorted from root to children */ for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { - - /* 4. if we find an IK root, we handle it separated */ + /* 4a. if we find an IK root, we handle it separated */ if(pchan->flag & POSE_IKTREE) { BIK_execute_tree(scene, ob, pchan, ctime); } + /* 4b. if we find a Spline IK root, we handle it separated too */ + else if(pchan->flag & POSE_IKSPLINE) { + splineik_execute_tree(scene, ob, pchan, ctime); + } /* 5. otherwise just call the normal solver */ else if(!(pchan->flag & POSE_DONE)) { where_is_pose_bone(scene, ob, pchan, ctime); diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c index 93a4ba80d7c..a319838a56f 100644 --- a/source/blender/blenkernel/intern/constraint.c +++ b/source/blender/blenkernel/intern/constraint.c @@ -1224,14 +1224,14 @@ static void followpath_get_tarmat (bConstraint *con, bConstraintOb *cob, bConstr QuatToMat4(quat, totmat); } - + if (data->followflag & FOLLOWPATH_RADIUS) { float tmat[4][4], rmat[4][4]; Mat4Scale(tmat, radius); Mat4MulMat4(rmat, totmat, tmat); Mat4CpyMat4(totmat, rmat); } - + VECCOPY(totmat[3], vec); Mat4MulSerie(ct->matrix, ct->tar->obmat, totmat, NULL, NULL, NULL, NULL, NULL, NULL); @@ -1265,7 +1265,7 @@ static void followpath_evaluate (bConstraint *con, bConstraintOb *cob, ListBase /* un-apply scaling caused by path */ if ((data->followflag & FOLLOWPATH_RADIUS)==0) { /* XXX - assume that scale correction means that radius will have some scale error in it - Campbell */ float obsize[3]; - + Mat4ToSize(cob->matrix, obsize); if (obsize[0]) VecMulf(cob->matrix[0], size[0] / obsize[0]); @@ -3446,13 +3446,95 @@ static bConstraintTypeInfo CTI_DAMPTRACK = { damptrack_evaluate /* evaluate */ }; +/* ----------- Spline IK ------------ */ + +static void splineik_free (bConstraint *con) +{ + bSplineIKConstraint *data= con->data; + + /* binding array */ + if (data->points) + MEM_freeN(data->points); +} + +static void splineik_copy (bConstraint *con, bConstraint *srccon) +{ + bSplineIKConstraint *src= srccon->data; + bSplineIKConstraint *dst= con->data; + + /* copy the binding array */ + dst->points= MEM_dupallocN(src->points); +} + +static int splineik_get_tars (bConstraint *con, ListBase *list) +{ + if (con && list) { + bSplineIKConstraint *data= con->data; + bConstraintTarget *ct; + + /* standard target-getting macro for single-target constraints without subtargets */ + SINGLETARGETNS_GET_TARS(con, data->tar, ct, list) + + return 1; + } + + return 0; +} + +static void splineik_flush_tars (bConstraint *con, ListBase *list, short nocopy) +{ + if (con && list) { + bSplineIKConstraint *data= con->data; + bConstraintTarget *ct= list->first; + + /* the following macro is used for all standard single-target constraints */ + SINGLETARGETNS_FLUSH_TARS(con, data->tar, ct, list, nocopy) + } +} + +static void splineik_get_tarmat (bConstraint *con, bConstraintOb *cob, bConstraintTarget *ct, float ctime) +{ + if (VALID_CONS_TARGET(ct)) { + Curve *cu= ct->tar->data; + + /* note: when creating constraints that follow path, the curve gets the CU_PATH set now, + * currently for paths to work it needs to go through the bevlist/displist system (ton) + */ + + /* only happens on reload file, but violates depsgraph still... fix! */ + if (cu->path==NULL || cu->path->data==NULL) + makeDispListCurveTypes(cob->scene, ct->tar, 0); + } + + /* technically, this isn't really needed for evaluation, but we don't know what else + * might end up calling this... + */ + if (ct) + Mat4One(ct->matrix); +} + +static bConstraintTypeInfo CTI_SPLINEIK = { + CONSTRAINT_TYPE_SPLINEIK, /* type */ + sizeof(bSplineIKConstraint), /* size */ + "Spline IK", /* name */ + "bSplineIKConstraint", /* struct name */ + splineik_free, /* free data */ + NULL, /* relink data */ + splineik_copy, /* copy data */ + NULL, /* new data */ + splineik_get_tars, /* get constraint targets */ + splineik_flush_tars, /* flush constraint targets */ + splineik_get_tarmat, /* get target matrix */ + NULL /* evaluate - solved as separate loop */ +}; + /* ************************* Constraints Type-Info *************************** */ /* All of the constraints api functions use bConstraintTypeInfo structs to carry out * and operations that involve constraint specific code. */ /* These globals only ever get directly accessed in this file */ -static bConstraintTypeInfo *constraintsTypeInfo[NUM_CONSTRAINT_TYPES+1]; +static bConstraintTypeInfo *constraintsTypeInfo[NUM_CONSTRAINT_TYPES]; static short CTI_INIT= 1; /* when non-zero, the list needs to be updated */ /* This function only gets called when CTI_INIT is non-zero */ @@ -3479,6 +3561,7 @@ static void constraints_init_typeinfo () { constraintsTypeInfo[19]= &CTI_TRANSFORM; /* Transformation Constraint */ constraintsTypeInfo[20]= &CTI_SHRINKWRAP; /* Shrinkwrap Constraint */ constraintsTypeInfo[21]= &CTI_DAMPTRACK; /* Damped TrackTo Constraint */ + constraintsTypeInfo[22]= &CTI_SPLINEIK; /* Spline IK Constraint */ } /* This function should be used for getting the appropriate type-info when only @@ -3494,7 +3577,7 @@ bConstraintTypeInfo *get_constraint_typeinfo (int type) /* only return for valid types */ if ( (type >= CONSTRAINT_TYPE_NULL) && - (type <= NUM_CONSTRAINT_TYPES ) ) + (type < NUM_CONSTRAINT_TYPES ) ) { /* there shouldn't be any segfaults here... */ return constraintsTypeInfo[type]; diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c index d60a26e8feb..36568ee5667 100644 --- a/source/blender/blenkernel/intern/depsgraph.c +++ b/source/blender/blenkernel/intern/depsgraph.c @@ -399,7 +399,7 @@ static void build_dag_object(DagForest *dag, DagNode *scenenode, Scene *scene, O if (ct->subtarget[0]) dag_add_relation(dag,node3,node, DAG_RL_OB_DATA|DAG_RL_DATA_DATA, cti->name); - else if(ELEM(con->type, CONSTRAINT_TYPE_FOLLOWPATH, CONSTRAINT_TYPE_CLAMPTO)) + else if(ELEM3(con->type, CONSTRAINT_TYPE_FOLLOWPATH, CONSTRAINT_TYPE_CLAMPTO, CONSTRAINT_TYPE_SPLINEIK)) dag_add_relation(dag,node3,node, DAG_RL_DATA_DATA|DAG_RL_OB_DATA, cti->name); else dag_add_relation(dag,node3,node, DAG_RL_OB_DATA, cti->name); @@ -2407,7 +2407,7 @@ void DAG_pose_sort(Object *ob) bPoseChannel *target= get_pose_channel(ob->pose, ct->subtarget); if (target) { node2= dag_get_node(dag, target); - dag_add_relation(dag, node2, node, 0, "IK Constraint"); + dag_add_relation(dag, node2, node, 0, "Pose Constraint"); if (con->type==CONSTRAINT_TYPE_KINEMATIC) { bKinematicConstraint *data = (bKinematicConstraint *)con->data; diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 5d6338af409..5fc5fd8fb7d 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -2288,6 +2288,11 @@ static void direct_link_constraints(FileData *fd, ListBase *lb) if (data->prop) IDP_DirectLinkProperty(data->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd); } + else if (cons->type == CONSTRAINT_TYPE_SPLINEIK) { + bSplineIKConstraint *data= cons->data; + + data->points= newdataadr(fd, data->points); + } } } diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index ee84ae59974..8ec12496e59 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -1077,7 +1077,15 @@ static void write_constraints(WriteData *wd, ListBase *conlist) of library blocks that implement this.*/ IDP_WriteProperty(data->prop, wd); } - break; + break; + case CONSTRAINT_TYPE_SPLINEIK: + { + bSplineIKConstraint *data= (bSplineIKConstraint*)con->data; + + /* write points array */ + writedata(wd, DATA, sizeof(float)*(data->numpoints), data->points); + } + break; } } diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index 8c0da354938..15ec8d6116d 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -327,7 +327,7 @@ static void test_constraints (Object *owner, const char substring[]) /* clear disabled-flag first */ curcon->flag &= ~CONSTRAINT_DISABLE; - + if (curcon->type == CONSTRAINT_TYPE_KINEMATIC) { bKinematicConstraint *data = curcon->data; @@ -395,6 +395,26 @@ static void test_constraints (Object *owner, const char substring[]) if (data->lockflag+3==data->trackflag) curcon->flag |= CONSTRAINT_DISABLE; } + else if (curcon->type == CONSTRAINT_TYPE_SPLINEIK) { + bSplineIKConstraint *data = curcon->data; + + /* if the number of points does not match the amount required by the chain length, + * free the points array and request a rebind... + */ + if ( (data->points == NULL) || + (!(data->flag & CONSTRAINT_SPLINEIK_NO_ROOT) && (data->numpoints != data->chainlen+1)) || + ( (data->flag & CONSTRAINT_SPLINEIK_NO_ROOT) && (data->numpoints != data->chainlen)) ) + { + /* free the points array */ + if (data->points) { + MEM_freeN(data->points); + data->points = NULL; + } + + /* clear the bound flag, forcing a rebind next time this is evaluated */ + data->flag &= ~CONSTRAINT_SPLINEIK_BOUND; + } + } /* Check targets for constraints */ if (cti && cti->get_constraint_targets) { @@ -414,7 +434,7 @@ static void test_constraints (Object *owner, const char substring[]) } /* target checks for specific constraints */ - if (ELEM(curcon->type, CONSTRAINT_TYPE_FOLLOWPATH, CONSTRAINT_TYPE_CLAMPTO)) { + if (ELEM3(curcon->type, CONSTRAINT_TYPE_FOLLOWPATH, CONSTRAINT_TYPE_CLAMPTO, CONSTRAINT_TYPE_SPLINEIK)) { if (ct->tar) { if (ct->tar->type != OB_CURVE) { ct->tar= NULL; @@ -855,7 +875,7 @@ static int pose_constraints_clear_exec(bContext *C, wmOperator *op) CTX_DATA_BEGIN(C, bPoseChannel*, pchan, selected_pchans) { free_constraints(&pchan->constraints); - pchan->constflag &= ~(PCHAN_HAS_IK|PCHAN_HAS_CONST); + pchan->constflag &= ~(PCHAN_HAS_IK|PCHAN_HAS_SPLINEIK|PCHAN_HAS_CONST); } CTX_DATA_END; @@ -947,6 +967,7 @@ static short get_new_constraint_target(bContext *C, int con_type, Object **tar_o /* curve-based constraints - set the only_curve and only_ob flags */ case CONSTRAINT_TYPE_CLAMPTO: case CONSTRAINT_TYPE_FOLLOWPATH: + case CONSTRAINT_TYPE_SPLINEIK: only_curve= 1; only_ob= 1; add= 0; @@ -1070,6 +1091,10 @@ static int constraint_add_exec(bContext *C, wmOperator *op, Object *ob, ListBase BKE_report(op->reports, RPT_ERROR, "IK Constraint can only be added to Bones."); return OPERATOR_CANCELLED; } + if ( (type == CONSTRAINT_TYPE_SPLINEIK) && ((!pchan) || (list != &pchan->constraints)) ) { + BKE_report(op->reports, RPT_ERROR, "Spline IK Constraint can only be added to Bones."); + return OPERATOR_CANCELLED; + } /* create a new constraint of the type requried, and add it to the active/given constraints list */ con = add_new_constraint(type); @@ -1119,6 +1144,7 @@ static int constraint_add_exec(bContext *C, wmOperator *op, Object *ob, ListBase } /* do type-specific tweaking to the constraint settings */ + // TODO: does action constraint need anything here - i.e. spaceonce? switch (type) { case CONSTRAINT_TYPE_CHILDOF: { diff --git a/source/blender/editors/space_view3d/drawarmature.c b/source/blender/editors/space_view3d/drawarmature.c index 26135cd8d31..656d7061d48 100644 --- a/source/blender/editors/space_view3d/drawarmature.c +++ b/source/blender/editors/space_view3d/drawarmature.c @@ -209,6 +209,7 @@ static short set_pchan_glColor (short colCode, int armflag, int boneflag, int co if (constflag & PCHAN_HAS_STRIDE) glColor4ub(0, 0, 200, 80); else if (constflag & PCHAN_HAS_TARGET) glColor4ub(255, 150, 0, 80); else if (constflag & PCHAN_HAS_IK) glColor4ub(255, 255, 0, 80); + else if (constflag & PCHAN_HAS_SPLINEIK) glColor4ub(200, 255, 0, 80); else if (constflag & PCHAN_HAS_CONST) glColor4ub(0, 255, 120, 80); else if (constflag) UI_ThemeColor4(TH_BONE_POSE); // PCHAN_HAS_ACTION @@ -280,6 +281,7 @@ static short set_pchan_glColor (short colCode, int armflag, int boneflag, int co if (constflag & PCHAN_HAS_STRIDE) glColor3ub(0, 0, 200); else if (constflag & PCHAN_HAS_TARGET) glColor3ub(255, 150, 0); else if (constflag & PCHAN_HAS_IK) glColor3ub(255, 255, 0); + else if (constflag & PCHAN_HAS_SPLINEIK) glColor3ub(200, 255, 0); else if (constflag & PCHAN_HAS_CONST) glColor3ub(0, 255, 120); else if (constflag) UI_ThemeColor(TH_BONE_POSE); /* PCHAN_HAS_ACTION */ } @@ -1296,36 +1298,68 @@ static void pchan_draw_IK_root_lines(bPoseChannel *pchan, short only_temp) bPoseChannel *parchan; for (con= pchan->constraints.first; con; con= con->next) { - if (con->type == CONSTRAINT_TYPE_KINEMATIC && (con->enforce!=0.0)) { - bKinematicConstraint *data = (bKinematicConstraint*)con->data; - int segcount= 0; - - /* if only_temp, only draw if it is a temporary ik-chain */ - if ((only_temp) && !(data->flag & CONSTRAINT_IK_TEMP)) - continue; - - setlinestyle(3); - glBegin(GL_LINES); - - /* exclude tip from chain? */ - if ((data->flag & CONSTRAINT_IK_TIP)==0) - parchan= pchan->parent; - else - parchan= pchan; - - glVertex3fv(parchan->pose_tail); - - /* Find the chain's root */ - while (parchan->parent) { - segcount++; - if(segcount==data->rootbone || segcount>255) break; // 255 is weak - parchan= parchan->parent; + if (con->enforce == 0.0f) + continue; + + switch (con->type) { + case CONSTRAINT_TYPE_KINEMATIC: + { + bKinematicConstraint *data = (bKinematicConstraint*)con->data; + int segcount= 0; + + /* if only_temp, only draw if it is a temporary ik-chain */ + if ((only_temp) && !(data->flag & CONSTRAINT_IK_TEMP)) + continue; + + setlinestyle(3); + glBegin(GL_LINES); + + /* exclude tip from chain? */ + if ((data->flag & CONSTRAINT_IK_TIP)==0) + parchan= pchan->parent; + else + parchan= pchan; + + glVertex3fv(parchan->pose_tail); + + /* Find the chain's root */ + while (parchan->parent) { + segcount++; + if(segcount==data->rootbone || segcount>255) break; // 255 is weak + parchan= parchan->parent; + } + if (parchan) + glVertex3fv(parchan->pose_head); + + glEnd(); + setlinestyle(0); } - if (parchan) - glVertex3fv(parchan->pose_head); - - glEnd(); - setlinestyle(0); + break; + case CONSTRAINT_TYPE_SPLINEIK: + { + bSplineIKConstraint *data = (bSplineIKConstraint*)con->data; + int segcount= 0; + + setlinestyle(3); + glBegin(GL_LINES); + + parchan= pchan; + glVertex3fv(parchan->pose_tail); + + /* Find the chain's root */ + while (parchan->parent) { + segcount++; + // FIXME: revise the breaking conditions + if(segcount==data->chainlen || segcount>255) break; // 255 is weak + parchan= parchan->parent; + } + if (parchan) // XXX revise the breaking conditions to only stop at the tail? + glVertex3fv(parchan->pose_head); + + glEnd(); + setlinestyle(0); + } + break; } } } @@ -1743,6 +1777,14 @@ static void draw_pose_channels(Scene *scene, View3D *v3d, ARegion *ar, Base *bas pchan_draw_IK_root_lines(pchan, !(do_dashed & 2)); } } + else if (pchan->constflag & PCHAN_HAS_SPLINEIK) { + if (bone->flag & BONE_SELECTED) { + glColor3ub(150, 200, 50); // add theme! + + glLoadName(index & 0xFFFF); + pchan_draw_IK_root_lines(pchan, !(do_dashed & 2)); + } + } } } diff --git a/source/blender/ikplugin/intern/iksolver_plugin.c b/source/blender/ikplugin/intern/iksolver_plugin.c index b160e7346bd..6eb1ef56094 100644 --- a/source/blender/ikplugin/intern/iksolver_plugin.c +++ b/source/blender/ikplugin/intern/iksolver_plugin.c @@ -109,7 +109,9 @@ static void initialize_posetree(struct Object *ob, bPoseChannel *pchan_tip) if(tree==NULL) { /* make new tree */ tree= MEM_callocN(sizeof(PoseTree), "posetree"); - + + tree->type= CONSTRAINT_TYPE_KINEMATIC; + tree->iterations= data->iterations; tree->totchannel= segcount; tree->stretch = (data->flag & CONSTRAINT_IK_STRETCH); @@ -503,6 +505,10 @@ void iksolver_execute_tree(struct Scene *scene, struct Object *ob, struct bPose PoseTree *tree= pchan->iktree.first; int a; + /* stop on the first tree that isn't a standard IK chain */ + if (tree->type != CONSTRAINT_TYPE_KINEMATIC) + return; + /* 4. walk over the tree for regular solving */ for(a=0; atotchannel; a++) { if(!(tree->pchan[a]->flag & POSE_DONE)) // successive trees can set the flag diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h index 8d590692794..7067c967da3 100644 --- a/source/blender/makesdna/DNA_action_types.h +++ b/source/blender/makesdna/DNA_action_types.h @@ -159,20 +159,30 @@ typedef struct bPoseChannel { /* PoseChannel (transform) flags */ typedef enum ePchan_Flag { - POSE_LOC = 0x0001, - POSE_ROT = 0x0002, - POSE_SIZE = 0x0004, - POSE_IK_MAT = 0x0008, - POSE_UNUSED2 = 0x0010, - POSE_UNUSED3 = 0x0020, - POSE_UNUSED4 = 0x0040, - POSE_UNUSED5 = 0x0080, - POSE_HAS_IK = 0x0100, - POSE_CHAIN = 0x0200, - POSE_DONE = 0x0400, - POSE_KEY = 0x1000, - POSE_STRIDE = 0x2000, - POSE_IKTREE = 0x4000, + /* has transforms */ + POSE_LOC = (1<<0), + POSE_ROT = (1<<1), + POSE_SIZE = (1<<2), + /* old IK/cache stuff... */ + POSE_IK_MAT = (1<<3), + POSE_UNUSED2 = (1<<4), + POSE_UNUSED3 = (1<<5), + POSE_UNUSED4 = (1<<6), + POSE_UNUSED5 = (1<<7), + /* has Standard IK */ + POSE_HAS_IK = (1<<8), + /* IK/Pose solving*/ + POSE_CHAIN = (1<<9), + POSE_DONE = (1<<10), + /* visualisation */ + POSE_KEY = (1<<11), + POSE_STRIDE = (1<<12), + /* standard IK solving */ + POSE_IKTREE = (1<<13), + /* has Spline IK */ + POSE_HAS_IKS = (1<<14), + /* spline IK solving */ + POSE_IKSPLINE = (1<<15), } ePchan_Flag; /* PoseChannel constflag (constraint detection) */ @@ -183,7 +193,9 @@ typedef enum ePchan_ConstFlag { PCHAN_HAS_ACTION = (1<<2), PCHAN_HAS_TARGET = (1<<3), /* only for drawing Posemode too */ - PCHAN_HAS_STRIDE = (1<<4) + PCHAN_HAS_STRIDE = (1<<4), + /* spline IK */ + PCHAN_HAS_SPLINEIK = (1<<5), } ePchan_ConstFlag; /* PoseChannel->ikflag */ @@ -202,7 +214,6 @@ typedef enum ePchan_IkFlag { BONE_IK_NO_XDOF_TEMP = (1<<10), BONE_IK_NO_YDOF_TEMP = (1<<11), BONE_IK_NO_ZDOF_TEMP = (1<<12), - } ePchan_IkFlag; /* PoseChannel->rotmode and Object->rotmode */ diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h index 0f80fb4821f..d3e611178fe 100644 --- a/source/blender/makesdna/DNA_armature_types.h +++ b/source/blender/makesdna/DNA_armature_types.h @@ -73,6 +73,7 @@ typedef struct Bone { typedef struct bArmature { ID id; struct AnimData *adt; + ListBase bonebase; ListBase chainbase; ListBase *edbo; /* editbone listbase, we use pointer so we can check state */ diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h index 7b0b1c3d814..bf8139ce6a0 100644 --- a/source/blender/makesdna/DNA_constraint_types.h +++ b/source/blender/makesdna/DNA_constraint_types.h @@ -32,7 +32,6 @@ #define DNA_CONSTRAINT_TYPES_H #include "DNA_ID.h" -#include "DNA_ipo_types.h" #include "DNA_listBase.h" #include "DNA_object_types.h" @@ -41,9 +40,10 @@ struct Text; struct Ipo; /* channels reside in Object or Action (ListBase) constraintChannels */ +// XXX depreceated... old AnimSys typedef struct bConstraintChannel { struct bConstraintChannel *next, *prev; - Ipo *ipo; + struct Ipo *ipo; short flag; char name[30]; } bConstraintChannel; @@ -66,6 +66,7 @@ typedef struct bConstraint { int pad; struct Ipo *ipo; /* local influence ipo or driver */ // XXX depreceated for 2.5... old animation system hack + /* below are readonly fields that are set at runtime by the solver for use in the GE (only IK atm) */ float lin_error; /* residual error on constraint expressed in blender unit*/ float rot_error; /* residual error on constraint expressed in radiant */ @@ -122,7 +123,7 @@ typedef struct bPythonConstraint { } bPythonConstraint; -/* inverse-Kinematics (IK) constraint +/* Inverse-Kinematics (IK) constraint This constraint supports a variety of mode determine by the type field according to B_CONSTRAINT_IK_TYPE. Some fields are used by all types, some are specific to some types @@ -151,6 +152,27 @@ typedef enum B_CONSTRAINT_IK_TYPE { CONSTRAINT_IK_DISTANCE /* maintain distance with target */ } B_CONSTRAINT_IK_TYPE; + +/* Spline IK Constraint + * Aligns 'n' bones to the curvature defined by the curve, + * with the chain ending on the bone that owns this constraint, + * and starting on the nth parent. + */ +typedef struct bSplineIKConstraint { + /* target(s) */ + Object *tar; /* curve object (with follow path enabled) which drives the bone chain */ + + /* binding details */ + float *points; /* array of numpoints items, denoting parametric positions along curve that joints should follow */ + short numpoints; /* number of points to bound in points array */ + short chainlen; /* number of bones ('n') that are in the chain */ + + /* settings */ + short flag; /* general settings for constraint */ + short upflag; /* axis of bone that points up */ +} bSplineIKConstraint; + + /* Single-target subobject constraints --------------------- */ /* Track To Constraint */ typedef struct bTrackToConstraint { @@ -378,9 +400,10 @@ typedef enum B_CONSTAINT_TYPES { CONSTRAINT_TYPE_TRANSFORM, /* transformation (loc/rot/size -> loc/rot/size) constraint */ CONSTRAINT_TYPE_SHRINKWRAP, /* shrinkwrap (loc/rot) constraint */ CONSTRAINT_TYPE_DAMPTRACK, /* New Tracking constraint that minimises twisting */ + CONSTRAINT_TYPE_SPLINEIK, /* Spline-IK - Align 'n' bones to a curve */ - /* NOTE: everytime a new constraint is added, update this */ - NUM_CONSTRAINT_TYPES= CONSTRAINT_TYPE_DAMPTRACK + /* NOTE: no constraints are allowed to be added after this */ + NUM_CONSTRAINT_TYPES } B_CONSTRAINT_TYPES; /* bConstraint->flag */ @@ -521,6 +544,13 @@ typedef enum B_CONSTRAINTCHANNEL_FLAG { /* axis relative to target */ #define CONSTRAINT_IK_TARGETAXIS 16384 +/* bSplineIKConstraint->flag */ + /* chain has been attached to spline */ +#define CONSTRAINT_SPLINEIK_BOUND (1<<0) + /* roll on chains is not determined by the constraint */ +#define CONSTRAINT_SPLINEIK_NO_TWIST (1<<1) + /* root of chain is not influence by the constraint */ +#define CONSTRAINT_SPLINEIK_NO_ROOT (1<<2) /* MinMax (floor) flags */ #define MINMAX_STICKY 0x01 diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 1d4aa100fce..44b36e65aa3 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -413,6 +413,7 @@ extern StructRNA RNA_SoftBodyModifier; extern StructRNA RNA_SoftBodySettings; extern StructRNA RNA_Sound; extern StructRNA RNA_SoundSequence; +extern StructRNA RNA_SplineIKConstraint; extern StructRNA RNA_Space; extern StructRNA RNA_Space3DView; extern StructRNA RNA_SpaceConsole; diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 7a9a07939b1..63b1538354f 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -55,6 +55,7 @@ EnumPropertyItem constraint_type_items[] ={ {CONSTRAINT_TYPE_CLAMPTO, "CLAMP_TO", ICON_CONSTRAINT_DATA, "Clamp To", ""}, {CONSTRAINT_TYPE_STRETCHTO, "STRETCH_TO",ICON_CONSTRAINT_DATA, "Stretch To", ""}, {CONSTRAINT_TYPE_KINEMATIC, "IK", ICON_CONSTRAINT_DATA, "Inverse Kinematics", ""}, + {CONSTRAINT_TYPE_SPLINEIK, "SPLINE_IK", ICON_CONSTRAINT_DATA, "Spline IK", ""}, {0, "", 0, "Relationship", ""}, {CONSTRAINT_TYPE_CHILDOF, "CHILD_OF", ICON_CONSTRAINT_DATA, "Child Of", ""}, {CONSTRAINT_TYPE_MINMAX, "FLOOR", ICON_CONSTRAINT_DATA, "Floor", ""}, @@ -147,6 +148,8 @@ static StructRNA *rna_ConstraintType_refine(struct PointerRNA *ptr) return &RNA_ShrinkwrapConstraint; case CONSTRAINT_TYPE_DAMPTRACK: return &RNA_DampedTrackConstraint; + case CONSTRAINT_TYPE_SPLINEIK: + return &RNA_SplineIKConstraint; default: return &RNA_UnknownType; } @@ -1169,7 +1172,7 @@ static void rna_def_constraint_clamp_to(BlenderRNA *brna) RNA_def_struct_sdna_from(srna, "bClampToConstraint", "data"); prop= RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE); - RNA_def_property_pointer_sdna(prop, NULL, "tar"); + RNA_def_property_pointer_sdna(prop, NULL, "tar"); // TODO: curve only! RNA_def_property_ui_text(prop, "Target", "Target Object"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); @@ -1672,6 +1675,30 @@ static void rna_def_constraint_damped_track(BlenderRNA *brna) RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); } +static void rna_def_constraint_spline_ik(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + srna= RNA_def_struct(brna, "SplineIKConstraint", "Constraint"); + RNA_def_struct_ui_text(srna, "Spline IK Constraint", "Align 'n' bones along a curve."); + RNA_def_struct_sdna_from(srna, "bSplineIKConstraint", "data"); + + prop= RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE); + RNA_def_property_pointer_sdna(prop, NULL, "tar"); // TODO: curve only + RNA_def_property_ui_text(prop, "Target", "Target Object"); + RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); + + prop= RNA_def_property(srna, "chain_length", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "chainlen"); + RNA_def_property_range(prop, 1, 255); // TODO: this should really check the max length of the chain the constraint is attached to + RNA_def_property_ui_text(prop, "Chain Length", "How many bones are included in the chain"); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); + + // TODO: add access to the positions array to allow more flexible aligning? +} + /* base struct for constraints */ void RNA_def_constraint(BlenderRNA *brna) { @@ -1773,6 +1800,7 @@ void RNA_def_constraint(BlenderRNA *brna) rna_def_constraint_transform(brna); rna_def_constraint_shrinkwrap(brna); rna_def_constraint_damped_track(brna); + rna_def_constraint_spline_ik(brna); } #endif From 3111ebde6599d01c5ac68a64b026a525adaee580 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 1 Nov 2009 11:33:41 +0000 Subject: [PATCH 286/412] Quick tweak to version patching code for Camera IPO's to fix one of the issues in bugreport 19761. For now, this just assumes that the 'lens' parameter was animated (assuming a perspective lens was used). Unfortunately, this may not always be correct, but at least there's a path now that can lead to further tweaking. --- source/blender/blenkernel/intern/ipo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/ipo.c b/source/blender/blenkernel/intern/ipo.c index 6717f5560be..5dc26143533 100644 --- a/source/blender/blenkernel/intern/ipo.c +++ b/source/blender/blenkernel/intern/ipo.c @@ -601,8 +601,9 @@ static char *camera_adrcodes_to_paths (int adrcode, int *array_index) return "ortho_scale"; else return "lens"; +#else // XXX lazy hack for now... + return "lens"; #endif // XXX this cannot be resolved easily - break; case CAM_STA: return "clip_start"; From 4f4b637a35f371aa4b16cb1adc9b7a67ee4b7c23 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 1 Nov 2009 14:04:37 +0000 Subject: [PATCH 287/412] * OpenGL Render is now available again from the View3D Header. --- source/blender/editors/space_view3d/view3d_header.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 6e8c1b60278..8630f6f4b35 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -2006,6 +2006,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) Object *ob= OBACT; Object *obedit = CTX_data_edit_object(C); uiBlock *block; + uiLayout *row; int a, xco=0, maxco=0, yco= 0; block= uiLayoutAbsoluteBlock(layout); @@ -2246,7 +2247,11 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) header_xco_step(ar, &xco, &yco, &maxco, XIC); } - uiDefIconBut(block, BUT, B_VIEWRENDER, ICON_SCENE, xco,yco,XIC,YIC, NULL, 0, 1.0, 0, 0, "Render this window (Ctrl Click for anim)"); + /* OpenGL Render */ + row= uiLayoutRow(layout, 1); + uiItemO(row, "", ICON_RENDER_STILL, "SCREEN_OT_opengl_render", 0); + uiItemBooleanO(row, "", ICON_RENDER_ANIMATION, "SCREEN_OT_opengl_render", "animation", 1); + if (ob && (ob->mode & OB_MODE_POSE)) { PointerRNA *but_ptr; From 9cf155d0120a69969c3e473f381226b990a91a4f Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 14:19:35 +0000 Subject: [PATCH 288/412] Compile fix for too many arguments to uiItemO --- source/blender/editors/space_view3d/view3d_header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 8630f6f4b35..9b1b239be70 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -2249,7 +2249,7 @@ void uiTemplateHeader3D(uiLayout *layout, struct bContext *C) /* OpenGL Render */ row= uiLayoutRow(layout, 1); - uiItemO(row, "", ICON_RENDER_STILL, "SCREEN_OT_opengl_render", 0); + uiItemO(row, "", ICON_RENDER_STILL, "SCREEN_OT_opengl_render"); uiItemBooleanO(row, "", ICON_RENDER_ANIMATION, "SCREEN_OT_opengl_render", "animation", 1); From 9ea292290b884d0ec570f1b4753398efb535f80b Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 15:21:20 +0000 Subject: [PATCH 289/412] Correct GPL license header for all python scripts --- release/scripts/io/add_mesh_torus.py | 17 +++++++++++++++ release/scripts/io/engine_render_pov.py | 18 ++++++++++++++++ release/scripts/io/export_3ds.py | 18 ++++++++++++++++ release/scripts/io/export_fbx.py | 18 ++++++++++++++++ release/scripts/io/export_mdd.py | 17 +++++++++++++++ release/scripts/io/export_obj.py | 18 +++++++++++++++- release/scripts/io/export_ply.py | 18 ++++++++++++++++ release/scripts/io/export_x3d.py | 17 +++++++++++++++ release/scripts/io/import_3ds.py | 17 +++++++++++++++ release/scripts/io/import_obj.py | 17 +++++++++++++++ release/scripts/io/mesh_skin.py | 18 ++++++++++++++++ release/scripts/io/netrender/__init__.py | 18 ++++++++++++++++ release/scripts/io/netrender/balancing.py | 18 ++++++++++++++++ release/scripts/io/netrender/client.py | 18 ++++++++++++++++ release/scripts/io/netrender/master.py | 18 ++++++++++++++++ release/scripts/io/netrender/master_html.py | 18 ++++++++++++++++ release/scripts/io/netrender/model.py | 18 ++++++++++++++++ release/scripts/io/netrender/operators.py | 18 ++++++++++++++++ release/scripts/io/netrender/slave.py | 18 ++++++++++++++++ release/scripts/io/netrender/ui.py | 18 ++++++++++++++++ release/scripts/io/netrender/utils.py | 18 ++++++++++++++++ release/scripts/modules/bpy_ext/Object.py | 21 +++++++++++++++---- release/scripts/modules/bpy_ext/__init__.py | 21 +++++++++++++++---- release/scripts/modules/bpy_ops.py | 21 +++++++++++++++---- release/scripts/modules/bpy_sys.py | 21 +++++++++++++++---- release/scripts/modules/dynamic_menu.py | 21 +++++++++++++++---- release/scripts/templates/gamelogic.py | 18 ++++++++++++++++ release/scripts/templates/gamelogic_basic.py | 17 +++++++++++++++ release/scripts/templates/gamelogic_module.py | 18 ++++++++++++++++ release/scripts/templates/operator.py | 18 ++++++++++++++++ release/scripts/templates/operator_simple.py | 18 ++++++++++++++++ .../scripts/ui/properties_data_armature.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_bone.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_camera.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_curve.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_empty.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_lamp.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_lattice.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_mesh.py | 21 +++++++++++++++---- .../scripts/ui/properties_data_metaball.py | 21 +++++++++++++++---- .../scripts/ui/properties_data_modifier.py | 21 +++++++++++++++---- release/scripts/ui/properties_data_text.py | 21 +++++++++++++++---- release/scripts/ui/properties_game.py | 21 +++++++++++++++---- release/scripts/ui/properties_material.py | 21 +++++++++++++++---- release/scripts/ui/properties_object.py | 21 +++++++++++++++---- .../ui/properties_object_constraint.py | 21 +++++++++++++++---- release/scripts/ui/properties_particle.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_cloth.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_common.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_field.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_fluid.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_smoke.py | 21 +++++++++++++++---- .../scripts/ui/properties_physics_softbody.py | 21 +++++++++++++++---- release/scripts/ui/properties_render.py | 21 +++++++++++++++---- release/scripts/ui/properties_scene.py | 21 +++++++++++++++---- release/scripts/ui/properties_texture.py | 21 +++++++++++++++---- release/scripts/ui/properties_world.py | 21 +++++++++++++++---- release/scripts/ui/space_buttons.py | 21 +++++++++++++++---- release/scripts/ui/space_console.py | 21 +++++++++++++++---- release/scripts/ui/space_filebrowser.py | 21 +++++++++++++++---- release/scripts/ui/space_image.py | 21 +++++++++++++++---- release/scripts/ui/space_info.py | 21 +++++++++++++++---- release/scripts/ui/space_logic.py | 21 +++++++++++++++---- release/scripts/ui/space_node.py | 21 +++++++++++++++---- release/scripts/ui/space_outliner.py | 21 +++++++++++++++---- release/scripts/ui/space_sequencer.py | 21 +++++++++++++++---- release/scripts/ui/space_text.py | 21 +++++++++++++++---- release/scripts/ui/space_time.py | 21 +++++++++++++++---- release/scripts/ui/space_userpref.py | 21 +++++++++++++++---- release/scripts/ui/space_view3d.py | 21 +++++++++++++++---- release/scripts/ui/space_view3d_toolbar.py | 21 +++++++++++++++---- release/test/rna_array.py | 18 ++++++++++++++++ 72 files changed, 1244 insertions(+), 181 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index b16d372b319..c651e7edca8 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### import bpy, Mathutils from math import cos, sin, pi, radians diff --git a/release/scripts/io/engine_render_pov.py b/release/scripts/io/engine_render_pov.py index 604d9053848..510d921d64b 100644 --- a/release/scripts/io/engine_render_pov.py +++ b/release/scripts/io/engine_render_pov.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy from math import atan, pi, degrees diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index 35ea1b5adeb..d3221d4c81c 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1,4 +1,22 @@ # coding: utf-8 +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + __author__ = ["Campbell Barton", "Bob Holcomb", "Richard Lärkäng", "Damien McGinnes", "Mark Stijnman"] __url__ = ("blenderartists.org", "www.blender.org", "www.gametutorials.com", "lib3ds.sourceforge.net/") __version__ = "0.90a" diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index 47374e5fd67..92a7286d4af 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + __author__ = "Campbell Barton" __url__ = ['www.blender.org', 'blenderartists.org'] __version__ = "1.2" diff --git a/release/scripts/io/export_mdd.py b/release/scripts/io/export_mdd.py index ebf5b32fa88..28e6a325cbe 100644 --- a/release/scripts/io/export_mdd.py +++ b/release/scripts/io/export_mdd.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### __author__ = "Bill L.Nieuwendorp" __bpydoc__ = """\ diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 7a0031229f7..92e6841016a 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -1,4 +1,20 @@ -#!BPY +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### """ Name: 'Wavefront (.obj)...' diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index fedf50d6a4e..61f3484f97d 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy __author__ = "Bruce Merry" diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py index a360e2cd17f..4b215ccdd9f 100644 --- a/release/scripts/io/export_x3d.py +++ b/release/scripts/io/export_x3d.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### __author__ = ("Bart", "Campbell Barton") __email__ = ["Bart, bart:neeneenee*de"] diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_3ds.py index 581192bcfbf..ebb4ed59c36 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_3ds.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### __author__= ['Bob Holcomb', 'Richard L?rk?ng', 'Damien McGinnes', 'Campbell Barton', 'Mario Lapin'] __url__ = ("blenderartists.org", "www.blender.org", "www.gametutorials.com", "lib3ds.sourceforge.net/") diff --git a/release/scripts/io/import_obj.py b/release/scripts/io/import_obj.py index 2e3473edb25..4fb7ada5d81 100644 --- a/release/scripts/io/import_obj.py +++ b/release/scripts/io/import_obj.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### __author__= "Campbell Barton", "Jiri Hnidek", "Paolo Ciccone" __url__= ['http://wiki.blender.org/index.php/Scripts/Manual/Import/wavefront_obj', 'blender.org', 'blenderartists.org'] diff --git a/release/scripts/io/mesh_skin.py b/release/scripts/io/mesh_skin.py index 9db66e16444..04543cbef3a 100644 --- a/release/scripts/io/mesh_skin.py +++ b/release/scripts/io/mesh_skin.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + # import Blender import time, functools import bpy diff --git a/release/scripts/io/netrender/__init__.py b/release/scripts/io/netrender/__init__.py index 4a1dd2238e3..18da5e2a934 100644 --- a/release/scripts/io/netrender/__init__.py +++ b/release/scripts/io/netrender/__init__.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + # This directory is a Python package. import model diff --git a/release/scripts/io/netrender/balancing.py b/release/scripts/io/netrender/balancing.py index 637dd5ff92e..f093815d8a8 100644 --- a/release/scripts/io/netrender/balancing.py +++ b/release/scripts/io/netrender/balancing.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import time from netrender.utils import * diff --git a/release/scripts/io/netrender/client.py b/release/scripts/io/netrender/client.py index f08e292ab2a..8694d7782ae 100644 --- a/release/scripts/io/netrender/client.py +++ b/release/scripts/io/netrender/client.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy import sys, os, re import http, http.client, http.server, urllib diff --git a/release/scripts/io/netrender/master.py b/release/scripts/io/netrender/master.py index 1c83e758ce5..7abca023e50 100644 --- a/release/scripts/io/netrender/master.py +++ b/release/scripts/io/netrender/master.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import sys, os import http, http.client, http.server, urllib, socket import subprocess, shutil, time, hashlib diff --git a/release/scripts/io/netrender/master_html.py b/release/scripts/io/netrender/master_html.py index 545659e8dc4..2fc6cd66f93 100644 --- a/release/scripts/io/netrender/master_html.py +++ b/release/scripts/io/netrender/master_html.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import re from netrender.utils import * diff --git a/release/scripts/io/netrender/model.py b/release/scripts/io/netrender/model.py index bef6f0e68af..cf13fe1e1fa 100644 --- a/release/scripts/io/netrender/model.py +++ b/release/scripts/io/netrender/model.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import sys, os import http, http.client, http.server, urllib import subprocess, shutil, time, hashlib diff --git a/release/scripts/io/netrender/operators.py b/release/scripts/io/netrender/operators.py index e14b4a36fc7..0caa393eda1 100644 --- a/release/scripts/io/netrender/operators.py +++ b/release/scripts/io/netrender/operators.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy import sys, os import http, http.client, http.server, urllib, socket diff --git a/release/scripts/io/netrender/slave.py b/release/scripts/io/netrender/slave.py index 15ca6faf297..882af76202b 100644 --- a/release/scripts/io/netrender/slave.py +++ b/release/scripts/io/netrender/slave.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import sys, os, platform import http, http.client, http.server, urllib import subprocess, time diff --git a/release/scripts/io/netrender/ui.py b/release/scripts/io/netrender/ui.py index b0ae5815915..343442b32f1 100644 --- a/release/scripts/io/netrender/ui.py +++ b/release/scripts/io/netrender/ui.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy import sys, os import http, http.client, http.server, urllib diff --git a/release/scripts/io/netrender/utils.py b/release/scripts/io/netrender/utils.py index b10648b8d62..a16043dd3cb 100644 --- a/release/scripts/io/netrender/utils.py +++ b/release/scripts/io/netrender/utils.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy import sys, os import re diff --git a/release/scripts/modules/bpy_ext/Object.py b/release/scripts/modules/bpy_ext/Object.py index d1916b23150..203e50bdef7 100644 --- a/release/scripts/modules/bpy_ext/Object.py +++ b/release/scripts/modules/bpy_ext/Object.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### import bpy class_obj = bpy.types.Object diff --git a/release/scripts/modules/bpy_ext/__init__.py b/release/scripts/modules/bpy_ext/__init__.py index ab0bd31edca..4198205e542 100644 --- a/release/scripts/modules/bpy_ext/__init__.py +++ b/release/scripts/modules/bpy_ext/__init__.py @@ -1,6 +1,19 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### import bpy_ext.Object diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 579fe0192ee..233c072867e 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # diff --git a/release/scripts/modules/bpy_sys.py b/release/scripts/modules/bpy_sys.py index 01c4dfda910..86f9c9d63a2 100644 --- a/release/scripts/modules/bpy_sys.py +++ b/release/scripts/modules/bpy_sys.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### import bpy import os diff --git a/release/scripts/modules/dynamic_menu.py b/release/scripts/modules/dynamic_menu.py index 61778ec9223..8d124f222a1 100644 --- a/release/scripts/modules/dynamic_menu.py +++ b/release/scripts/modules/dynamic_menu.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### import bpy diff --git a/release/scripts/templates/gamelogic.py b/release/scripts/templates/gamelogic.py index 8bfe799bacf..203a693de5a 100644 --- a/release/scripts/templates/gamelogic.py +++ b/release/scripts/templates/gamelogic.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + # This script must be assigned to a python controller # where it can access the object that owns it and the sensors/actuators that it connects to. diff --git a/release/scripts/templates/gamelogic_basic.py b/release/scripts/templates/gamelogic_basic.py index 5e7d19672fe..b3fe0a4a6ca 100644 --- a/release/scripts/templates/gamelogic_basic.py +++ b/release/scripts/templates/gamelogic_basic.py @@ -1,3 +1,20 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### def main(): diff --git a/release/scripts/templates/gamelogic_module.py b/release/scripts/templates/gamelogic_module.py index 5a61a3592dc..c19ec7d9116 100644 --- a/release/scripts/templates/gamelogic_module.py +++ b/release/scripts/templates/gamelogic_module.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + # This module can be accessed by a python controller with # its execution method set to 'Module' # * Set the module string to "gamelogic_module.main" (without quotes) diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index 3e9e65f13f8..b0c03045216 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import bpy def write_some_data(context, path, use_some_setting): diff --git a/release/scripts/templates/operator_simple.py b/release/scripts/templates/operator_simple.py index b19ce981833..6e166a3e970 100644 --- a/release/scripts/templates/operator_simple.py +++ b/release/scripts/templates/operator_simple.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + def main(context): for ob in context.scene.objects: print(ob) diff --git a/release/scripts/ui/properties_data_armature.py b/release/scripts/ui/properties_data_armature.py index f35da79cd1e..0f597c5891a 100644 --- a/release/scripts/ui/properties_data_armature.py +++ b/release/scripts/ui/properties_data_armature.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_bone.py b/release/scripts/ui/properties_data_bone.py index afb73510196..b45ad1f8317 100644 --- a/release/scripts/ui/properties_data_bone.py +++ b/release/scripts/ui/properties_data_bone.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_camera.py b/release/scripts/ui/properties_data_camera.py index 3017d659ca1..c860998d779 100644 --- a/release/scripts/ui/properties_data_camera.py +++ b/release/scripts/ui/properties_data_camera.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py index c5156b1461b..5fa2f05839a 100644 --- a/release/scripts/ui/properties_data_curve.py +++ b/release/scripts/ui/properties_data_curve.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_empty.py b/release/scripts/ui/properties_data_empty.py index b6273afe508..aa90c1e7068 100644 --- a/release/scripts/ui/properties_data_empty.py +++ b/release/scripts/ui/properties_data_empty.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_lamp.py b/release/scripts/ui/properties_data_lamp.py index 50299ae2c4e..12c4c8e6fb4 100644 --- a/release/scripts/ui/properties_data_lamp.py +++ b/release/scripts/ui/properties_data_lamp.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_lattice.py b/release/scripts/ui/properties_data_lattice.py index d8aff96a693..b9fba1f6808 100644 --- a/release/scripts/ui/properties_data_lattice.py +++ b/release/scripts/ui/properties_data_lattice.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index f68fcbdd538..48f0c39a4f3 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_metaball.py b/release/scripts/ui/properties_data_metaball.py index 60d6e08c4d3..39bcc7bc8e3 100644 --- a/release/scripts/ui/properties_data_metaball.py +++ b/release/scripts/ui/properties_data_metaball.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py index 35eab9621e8..23ab422b7b0 100644 --- a/release/scripts/ui/properties_data_modifier.py +++ b/release/scripts/ui/properties_data_modifier.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_data_text.py b/release/scripts/ui/properties_data_text.py index baaf94553c2..d48f4046ba3 100644 --- a/release/scripts/ui/properties_data_text.py +++ b/release/scripts/ui/properties_data_text.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_game.py b/release/scripts/ui/properties_game.py index 11565210a8f..a348c6f2f52 100644 --- a/release/scripts/ui/properties_game.py +++ b/release/scripts/ui/properties_game.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py index e0ff3959117..8c62f75eed2 100644 --- a/release/scripts/ui/properties_material.py +++ b/release/scripts/ui/properties_material.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py index bd547bcc1aa..aaf8fa9614c 100644 --- a/release/scripts/ui/properties_object.py +++ b/release/scripts/ui/properties_object.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index d33b18b1b09..1cc0073fbca 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index 71901e65130..bfa67dd7292 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py index 104a9002df4..19b1c7a3c61 100644 --- a/release/scripts/ui/properties_physics_cloth.py +++ b/release/scripts/ui/properties_physics_cloth.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_common.py b/release/scripts/ui/properties_physics_common.py index 3d2643c75cc..73531f4cd28 100644 --- a/release/scripts/ui/properties_physics_common.py +++ b/release/scripts/ui/properties_physics_common.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_field.py b/release/scripts/ui/properties_physics_field.py index eeb1ebce9ad..7499b03e731 100644 --- a/release/scripts/ui/properties_physics_field.py +++ b/release/scripts/ui/properties_physics_field.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py index a2690ffa93c..46b1a5364d0 100644 --- a/release/scripts/ui/properties_physics_fluid.py +++ b/release/scripts/ui/properties_physics_fluid.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py index 64c9561881d..c5d0409af6e 100644 --- a/release/scripts/ui/properties_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py index 52ecc7b56b9..ec290b38e4a 100644 --- a/release/scripts/ui/properties_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_render.py b/release/scripts/ui/properties_render.py index 7fbf83dbc59..0524b00f011 100644 --- a/release/scripts/ui/properties_render.py +++ b/release/scripts/ui/properties_render.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_scene.py b/release/scripts/ui/properties_scene.py index 005e0b449cd..2061b6580f3 100644 --- a/release/scripts/ui/properties_scene.py +++ b/release/scripts/ui/properties_scene.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index cea10be9f59..38c4682c7a8 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/properties_world.py b/release/scripts/ui/properties_world.py index fe4d446b962..39ca477b2d8 100644 --- a/release/scripts/ui/properties_world.py +++ b/release/scripts/ui/properties_world.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index e77c4c58145..adb127d5ff6 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 50cee7be380..88b806ecf23 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import sys diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index 981534fafa8..1a89639c4c2 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index 4c1c31e2abb..c56bfb00af6 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index a104dda89c2..e0bd1a4764b 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index 9dccaacae2c..cec739773b3 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index 15b07063d23..daf2d32a0bb 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 582db6eb76b..89c38b16965 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index 237c624510e..fa91320202d 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index 99303a0d702..bd1514dbf77 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index a448fc969c5..164a69f2826 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 2378055c3d7..69f16ebd08c 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 5de33fc89c7..b2d043029f2 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 202d97064c9..3c99a656524 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -1,7 +1,20 @@ -# This software is distributable under the terms of the GNU -# General Public License (GPL) v2, the text of which can be found at -# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise -# using this module constitutes acceptance of the terms of this License. +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### # import bpy diff --git a/release/test/rna_array.py b/release/test/rna_array.py index 9b7c65ff017..08aea1c7967 100644 --- a/release/test/rna_array.py +++ b/release/test/rna_array.py @@ -1,3 +1,21 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + import unittest import random From e4617d8a5ffe136962665d5e49c251b5db654807 Mon Sep 17 00:00:00 2001 From: Benoit Bolsee Date: Sun, 1 Nov 2009 17:12:09 +0000 Subject: [PATCH 290/412] MSVC project files update for collada. It won't compile yet, waiting for lib/windows/collada to be updated. --- projectfiles_vc9/blender/blender.sln | 24 ++ projectfiles_vc9/blender/blender.vcproj | 8 +- .../blender/collada/BF_collada.vcproj | 214 ++++++++++++++++++ .../windowmanager/windowmanager.vcproj | 8 +- 4 files changed, 246 insertions(+), 8 deletions(-) create mode 100644 projectfiles_vc9/blender/collada/BF_collada.vcproj diff --git a/projectfiles_vc9/blender/blender.sln b/projectfiles_vc9/blender/blender.sln index 936e444ed12..deb9d216bf6 100644 --- a/projectfiles_vc9/blender/blender.sln +++ b/projectfiles_vc9/blender/blender.sln @@ -7,6 +7,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "blender", "blender.vcproj", {6E24BF09-9653-4166-A871-F65CC9E98A9B} = {6E24BF09-9653-4166-A871-F65CC9E98A9B} {A90C4918-4B21-4277-93BD-AF65F30951D9} = {A90C4918-4B21-4277-93BD-AF65F30951D9} {FB88301F-F725-401B-ACD7-D2ABBF333B71} = {FB88301F-F725-401B-ACD7-D2ABBF333B71} + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2} = {76D3102B-7DD2-8BA1-034A-8B19FE2897C2} {BAAE3F2B-BCF8-4E84-B8BA-CFB2D64945FE} = {BAAE3F2B-BCF8-4E84-B8BA-CFB2D64945FE} {C66F722C-46BE-40C9-ABAE-2EAC7A697EB8} = {C66F722C-46BE-40C9-ABAE-2EAC7A697EB8} {D1A9312F-4557-4982-A0F4-4D08508235F4} = {D1A9312F-4557-4982-A0F4-4D08508235F4} @@ -294,6 +295,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INT_build_install_all", ".. EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WM_windowmanager", "windowmanager\windowmanager.vcproj", "{884D8731-654C-4C7F-9A75-8F37A305BE1E}" ProjectSection(ProjectDependencies) = postProject + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2} = {76D3102B-7DD2-8BA1-034A-8B19FE2897C2} {DFE7F3E3-E62A-4677-B666-DF0DDF70C359} = {DFE7F3E3-E62A-4677-B666-DF0DDF70C359} EndProjectSection EndProject @@ -332,6 +334,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_lzo", "..\..\extern\lzo EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BRE_raytrace", "render\BRE_raytrace.vcproj", "{37DB6A34-2E91-4ADB-BC1A-02F6D0A5E2F1}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BF_collada", "collada\BF_collada.vcproj", "{76D3102B-7DD2-8BA1-034A-8B19FE2897C2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution 3D Plugin Debug|Win32 = 3D Plugin Debug|Win32 @@ -1569,6 +1573,26 @@ Global {37DB6A34-2E91-4ADB-BC1A-02F6D0A5E2F1}.Debug|Win32.Build.0 = Blender Debug|Win32 {37DB6A34-2E91-4ADB-BC1A-02F6D0A5E2F1}.Release|Win32.ActiveCfg = Blender Release|Win32 {37DB6A34-2E91-4ADB-BC1A-02F6D0A5E2F1}.Release|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3D Plugin Debug|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3D Plugin Debug|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3D Plugin Release|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3D Plugin Release|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3DPlugin Debug|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3DPlugin Debug|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3DPlugin Release|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.3DPlugin Release|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Blender Debug|Win32.ActiveCfg = Blender Debug|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Blender Debug|Win32.Build.0 = Blender Debug|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Blender Release|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Blender Release|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.BlenderPlayer Debug|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.BlenderPlayer Debug|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.BlenderPlayer Release|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.BlenderPlayer Release|Win32.Build.0 = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Debug|Win32.ActiveCfg = Blender Debug|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Debug|Win32.Build.0 = Blender Debug|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Release|Win32.ActiveCfg = Blender Release|Win32 + {76D3102B-7DD2-8BA1-034A-8B19FE2897C2}.Release|Win32.Build.0 = Blender Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/projectfiles_vc9/blender/blender.vcproj b/projectfiles_vc9/blender/blender.vcproj index d6f29788f9d..538afaf950c 100644 --- a/projectfiles_vc9/blender/blender.vcproj +++ b/projectfiles_vc9/blender/blender.vcproj @@ -74,12 +74,12 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/projectfiles_vc9/blender/windowmanager/windowmanager.vcproj b/projectfiles_vc9/blender/windowmanager/windowmanager.vcproj index 805ad1f1cf3..ad52b9f1fae 100644 --- a/projectfiles_vc9/blender/windowmanager/windowmanager.vcproj +++ b/projectfiles_vc9/blender/windowmanager/windowmanager.vcproj @@ -43,8 +43,8 @@ Date: Sun, 1 Nov 2009 18:05:01 +0000 Subject: [PATCH 291/412] Added proper icon for full screen mode. Would be nice to have this button eventually be right-aligned. --- release/datafiles/blenderbuttons | Bin 195438 -> 194590 bytes release/scripts/ui/space_info.py | 4 +- .../editors/datafiles/blenderbuttons.c | 12193 ++++++++-------- source/blender/editors/include/UI_icons.h | 4 +- 4 files changed, 6088 insertions(+), 6113 deletions(-) diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons index f9a4b93496947d4132f4fa2f6b10e3f96cb16368..8d47bde6e6e571a1eab8be9b9d32fdedf069d4c0 100644 GIT binary patch literal 194590 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

q}q3!8hVX4|lR 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

MMKfN!5oM=?I)P((EQk}S?=z~>PLN8t6ubBT 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

GXMA)jOU7jgl0bY1^u&a-q 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%0D5u=ti!pZ8UNRi z->%=>#ITly;#_DB<3YI}+*gjWS2*;Yrw8jtf51NoyT%_RIF+Y*li0A};^El@TquDb zV4G>cQFs^jh;JU#o|bgtc(Yf!>VxS!m$2d4!$O zV#vqOi{-6Y6RRo@IYrEUmEiOD`d~|l0DOjuwl;RMImB>q2AAFf|M{NABps}m#<^s z8M7J{ph2U5xHg|Fc6zpI?`PxnhRzz-sepU@@V#vrJy2-_@dIMdJOPgiBq51@g6hR|iT8 zB^DYDu2$s-{HMB2)V8IITykV+Xy7z9`L3uuGMDJnh$zpTAt@uf8KS431) zRbJv@QM5ZB3FMrBRKWxsSWZq(0VxwVsU;ini{h50vDtaFL*gC)=p=~;FSxQ22q*HO zis~5Gd;|Bb5Bd3~0A~n;4ayE^%A#i0dVi*-)Zt*t3(dGB1mGIZL_|gXvobU7hq$NL zzC{wECYu*SufSyX@1|~zLA<}_^6LOX)pu|6)DQtc%x~564xkWu$!zic9SWcX!4Hpu zfb1g#;J*R9kBYc^>uHPc0JJ!yL8S#X1}-k{Hq_U2Yojb1Q&()XQ%zAnq$HcqcNJhk zKx_mr=s8S!6n?D0hDAPJX0%lU3;7&Mtil|~z!+!KEOENnY}z^nDq}N@?^DUS4B06j zn1*Sn1Lhn)4^xV%;U1N_^&=beN>VB3~~A&%#o;CJb8`SOniglanmd+hD1Pxp+!{ zQS!U5>333uiaa@-N!Yiyw^e9G-4*{p2h)kVpp2pc9Ghn|uvEo?Z+(b~NWd)ST#K|z z4RoyOPT_*{xuHR$S6bDla}(B0AB_j(bT<;oQ192t4qtShIYwv9b9;<@)fcVF@JRVb~dinVZ`sDzeoofJ>izUZ^gr3UUI~^zbcq*-zBi8 z#T|FNKO__Np0nv$#z(L7uQ4<=5-9=}(K@<8bfXkCm3%H32-c+DR+x6aI$bRQ9?VKn zMlq;tOh91+Cy_3Q5QfOdz?>X9aJT;5HtAEKy%>IOv9{asoLgKpOd zDVyfQ9kDikaq&NOlh>D;BOpG}+P%mWABt*Q2j$P^?y-Nzi}+fC2I4Zz0xQ^l27;r-KSe)l&K4{S^Y zZR`Xi^qWkhzZjNxanjL6hTg2)5B!@|P zC6vX{Tl{`K1c9aLoq=d1#adcRJr9=7B0%u@*c95;t!iUMMkrCd81V{i|m#*$DQ z^X(~bwNPU5)gHdRYJB;EOPHweYG)1?q0Tx+hR}m?cohc+2be3)KOe;snvR#~@bVU_ zM}klGXH#S2Js!L&PI2*;4*9(N?(x3gd_RRvq`GDWG>`1b^im_LJt&#dbchk5B46j( zdKe?Sd3Dy^|4e??H4{eEV6%srJCZMv@3XOv&krwZhrF@E%?y+xy!}z(C4vnT&3NIX zhjawC=PwFl9Rcu@UkJ8O0kYvRUC=R0xxqh4tHFN^EaG&?>U}0pN}69)PT&4UrQbO7 z7#FkB(!HSv@mo4_cM!3GLe7_df3;Ti!J54_Jp&?It}J$%lTMxw;> zPaYcwxS{--1ZkgQbUc5Mwe%w&6^hZx%6kgvjx7rei}ADPkSGph1coA`EEAcREQ z^s0SeVv;dT#JF#JV__!hak2AOr&S5>{Ua_Ei|j$#G7U=_aJu5!UL@fOo8{|JuHJoi-@;-T0h zg4+OCieK6M=ukNMSEILl()2W)|G`mgYJoUWj;8SCi?13QaQ|mX>U|VMry{@lIdUNxB7Q+fSFBUdZm+O^{<1;jlf~uH$PrJp05zCb2!@Bx9Yv5_C!I$A_#ugC1rb; zuH<$|5?#3l6`$iTT$1+wbuFQmp;tu$t!<1`LHAxaVE9(vRL|i*Ha@|FQxZi$&%q9} zVK(*Ba6@!K5yAMr^1Zofw~GEyJtGAfk-sUB!9`}#ra=^$no>1!+>~P&xVXA%z0O{D zd^zv@;?vtL!$-RN8v3n?@7mU9|L(v4oZ*a5sFgJ08B_XZRxP-lr_Kcxaa_HEcrM>* z7hn@<*b-e|Bo+FxDC>uW$!B!C$y$7a#+QL*WsZvpF0y%MV|h=x)Wo$(A;V{TclR?K zDTs)P(b(A7LPA4x>+9=PwNuj;2KLTJ;GM(-c|}I#Lk3l_oj@bTZmPb5kC%5(U$zVA zIny)K(|+gSM2tV7W}+7rr5YdC^pXiDLBR2IAKE;}v%v%aE&pi(B=CPQd;DBgS$T8( zo6ZA{dQ0VB8>97ZI6v0=(0hR}sFKyE83B6n_K;o@@HGH}iSp_Y;ya-aWATgRgB&`@ zmVk)z>qDiYuEXqYDykd)j!(X1NZ>rV@xaj4HIS#C4UF+u#Y1c|-BJiN1T`{|mLUWW zgHUyc7N3u7Q7DE7PZq#B_(06~GCgewL0W*NV+|dL&@UniiU>HF{G6QR1sermV(w`q z?uuOniOZh&QL&d!qoLON)-=aQo7kVzoXrijyr!%vYCpdUu15`k0}ltHR=wH7#f7r7 za>EDSqI775Oo|8#$3u7IHaVxhc6+6r1ihJ(fltj(zGgm~$`?5#&PAW^a#dueJ83DD zDJo@-h#5_dMpWaq&sy%Jd~m4)eNdu3i*Ud4Ap1Z~uk zSf9h4cY66(@Ws?ULvKHD;Y%!y2|qh{c=J9smH*bxIai>niEMV@iw(0SbL$U5?emgX zStwyTub~Zq2c(xf@s$JkZW7zK80@e&M24R+u+8V9#(p|mPCPSK>ioumg{J2vdD+Z) zr^KJZhE)3vCI4HU$eqBJ2D9<5JWOG6g~r#_$CC&|=Cc>y6~(S}eHRwL*=gj_RF|@_ zeyY8^f4r7KD)@VCs5mUVI86wp*(umuhm4k%R=d_tr$s`WpW6HDE+OI*LS4y)-~rO5 zT;LfTxFH4*pPK7kY?_M%hV;i~XRT&{+OQQ|r+LC5 z%o)li$^yM&XH`gR>)m<{!GQq1-(E~H`aCjCcCz!pX>}Z}rK>fzyqvq7{f4)@v)dBe65J&~2TQD?FyWqC@+YHpnKzu3zMW3yf zqq{+L+i*&Ki~ulJXp8fF*fv1xVPldiRObPr>B4BCnhcEF_~lo{)M8uStClmQ8srVV zyIWf1Dqyo&SG`QtFQ!i65to{UZl9I8GZoQ?e@n~%aAt*TN&kGd1I;7z85V5%Fmr(X zX+5$6)xscVWZD{4y2wD-?YQwSop(`2ej+}3Ek4`sK8f*asr7O=6|pMS*p(}U?*^z1 zzL4x8lZ4-o39}%*Af=@vmvIozQ+lmVLk#+@WWiIY{OG+hbm)7_Tp>|;;*mVGiEDUa z9o4#h8Et1XnS>U@h1nh@FR(-2Zk+Md3iZromUp}drz<@J11jVjr`r;1X$Z5J-}{;| z(-eaUy0_e__`%O^XY*qR04%wwBb$T7pV0c(omqM<#ERv&p~01^$?yfU#%hChDj%5| zK0(JJf#b=fo6(q}->$OsI^~av&SnTY3k!jvww8)Y@`0xQRC%p3UZ)s&%c*#LanU>^ z?Ij6z;nHh4cb0bVc;ZBb2?Hu}9RA5kocmp43t_tM8No9|Eol#4d~^LLU36Jut>X(V z2^N&?7Ma{*b08C6L8_SAwq>^OV`e0mx2do+At5PgD2&Ge7dQw-Z?lp41p%xDax8qx zYSsr2;@?C?1+&OJgFMQK336~0I%(w4}v2$=_ughBZ&P15JTV`M+ErZb7 zKy#hzQXR(2Nkk>549_rw=^y2)Faw2AU$_+d#u;Lsw=xa4qRH+kLf8`~ly+#4z{zgV zNCFr3tk7oJ&GaMqooX?Z{A)Te9S52Iusc+c$zZMUAtNTvyBpGs0$Y#gkiOe;bo zyf;rgI$!*lr9~Qhb&RL{prb6s?_aa=A^T28_lukil!<}t*ZQAFj`a$v+%PZbPL*Aq zvErPqFKA`DO}xF&nqJI!4^GVZ--T(e(`-A+x#fkI9|yP34f?wKD!R+!l4mwdgPBKN zF$cCI7Gm&C<^ETG8`@3dW?BA}HrWhjayw-NZ^tHR?-tXmu&NZjxcwpdHl70U9b`-5 z?T_ym^moTTq|iDkWstsKHt(&pMIGF;hDGP=aOdE{fsb-T@dHE?oyZssV=fzLrM0-Zt9x9l+tb)_x1i5)qrtEdEkN45Ef>s!@GXq-l369-hf8l^a? z6^{{1oGc`8m{$BGMidg(i49f(eCiX$;2t~TGdJFSvZxx+gHd-mvxsCm$oS5m2UkEJ zA2aR_Ir-6J&jnTv0fEDPaJ`a9T^!=@=jwAC+zml@1g*nn2oA9b)Dsccw{#=FlhD}6 z$VP~RN)}YtCXyKi4Jty#dS8!9D5iMNy1zrA)@1*+gN0s7wt6wozE-r&Mf07&pJCC< z*v`K6B zcc}Z9xC9FoLD{9M%Tc$Mav`TboG7L*^Ad;GL*nvzE&4xN9ZnT37iO>#~eHT`YQk5## z>mjQW*O=t_`f8YBp>h9FYLR%52sERC(H(x0Ho=J^)>qQ6*4EZo6Zgie%P3Qx&pwqs zOaNFdc6$n!u;K?Kk|r3ZKSSxyO$30yFSqYCg$(b*{&rq>bPwBBMc0-e6Um1u)g}2d z&L6-lA>c;J>-ekE+#MQD_BB2yyU4|@EsYW^g#2m% zY`C>0m94j>TE2DrGZ#tZUJY>}S`3|A=X}1NMDCF;vkhovlnMDS7yGB06<%1{w`u7d zYQ>PZN$RYU8vgx1Uu^+J&x=!Zt}KHPD;guXzXMn?W#ryayX8t;UjMw&|9wKq*eZ!l zU5S}&!dp*SXjCQ#T?WYg$|_4bGN1U7Uw+@deRd$j@yo)ma_r9TR_p#}55jpqxLLItm%eHa<^L2$O zTrI|fL5GE4@h{`LN<~X#s?$2VXgKg^vLVvO(oX9A{QPe3(Y&X(j;L3dee!;g3BAH~OAf3fFe_57HJt{}p+E0J0TA^ybLnMQW2vDWe)75Q^P(6MB z_qQZ<2%#$?_#wkk6EuftK+z`w(KV~B23RTB?Ra{6liYfGdf9-nd;-_m8KMMSV0ydf zUrFjFnnGXd5xOzh^t^WiwWsz~VY+Pgv;o;;nuf|(o0ucN88s-V(A1aWahbj4FSZ0+ zOVC2%o*|ZU?YD~eRU`G%O68`<1&~4W$<5iBqHM@Y9*4fV$cVAa*&1Y){<=)({zU%v7_)Z* zC^0m>L`ojL_i3}#dBDiSllK}eAl7Ykzef` z16@$m5w{s)7GKR%L_Dh#;o>TkzCbO0-@xdcD|H*&D|n6sM5S!kz(|{6g?y=#d+oxjj_rk2 zwLT12$$#)aTcIj>H!4;8`zKCcB_o8lArO~~QS*>Sa(8ggTd5_!slHy{Sf}>6>|y_& zk32x&R4(*dv1Pism6Zp#n%w`{41vj04yg+3+X*v31Vb}4uCl!Rwu!a%FYQm7_W>pb zp=;F>utkVLm0_BcnW?0mtO4!bOIrw+rVokBI`}h%o3MiVOYgEH^yxAgVnxeWynx?3 zrIHqnZ{MAjQiVYo+vJPsjtJ2FALxG4yb*9q<|F9+vO)9oOH}+fS!;cRmjF-8#s4 zox%9u32vo5Yb%Y~-L&IvpG=@~|to`f29P;MF((UzucRCw1{JS*ibyz1+E&BRW zg?JH9*9N+tW!d^WU2VoL;IHb-?4vuly4FV_kAehpH~pH7|uB(_r@8b8msY z4;Qj^Kt#iI9nPQw{vGCkgM(-ycysq$-Q32sj8allS!jf||ApaI1dWu9tQ+KK3OP@; zF>@I;+4ql6KIV1(PrZMqy*-|eGtoyTbn6h6A{Tg15}(G1qq26 zQnj#suX$b>LI~HufrP+xlt6#|y(ubJb zwlDyj=0|{aYQyl`;v8+tKbgH(N$y&#enN>5L3Gw#&`d0rqI)_9)@ zLy@5))v4g+9Gt;B!Q$|EFpa;Dy!|fX27JIxr~$#j!6fa%GTlERFUe2Ha)7$|WGVdy z4!u!}qIxXhXAu#RR$-@Esd0$?1Ove1yo#r?o<+{RcW?C!!rQ(f?y?{U$#~d7#{Rnt zJ%e!eCsxE>)k^4Q2x&e8*6B^p?uKv2}n_Y?^k6i_y+>sr8qD+wO@L6Nq#$jgQcP{ z_I`5zSpap6*ie4yU_}3v6D*l-v3wcJh3)k}T|zYsz~h;4lz17Ig+Ry`wv0}lQ;826 zg+=x8-@QK}?7^ya?B?O}{Gr42d5x!3f(5tJ;}4PwSoA#1e?D;^{_&eDHTXl_c5K?m zmHf;vSi$AiI{&HN(nCKyhj~#Svnx6sV<`nWv!$f<-?g@{YybUz;5z!XrEI2t?5w@V z$gMx4yY)-W&K4yu7?bqz6qF_*s)(DMo%Qu&u8gZ24cE;lpht z2`18QX)?Q9GL+Ky)`cy`SaT019jj_NIiuV6?#>S}zUE(_@aXeC{?YtpT7t_ck3~sQ zF(fsWf+*tQzv4X=`6?Xxng0k|0~IZj0UrEiaW+vj1aaGYs{xZ`?pbyo8st4DB)NP(pw$ ztIyOs=LsVBb(J#kI<0_1{{YO4Vvy$iLPm}U0aG5`iikwQxe3rPxPj0_R#o*D9Jou{ zHWFEoiARTrepY;xlg`vw5C#NErs=;XCoQYk(;;~7v6?)ulGq(pgdsz`RVNha-iN@y z1&0V2m#!nwuOoJ^(ZcHxAhCqdR!4g@2&de@J07aH)_a zxp1dEc$KCR?H#Mmwf(~enQZE++$|!80nv?U1O_H#$rq}T$9x?7Oea66dWTCOGxgE^ zXVmHLr~AJM{Ez=)3G{!vcQZ89-e#`4&e4>ql5ghd&r;}8qHoBT#9MqC?g4q9uqxG= z>Zv_Qa0nRw&aZ_QCY+^l=rr1vWoE`&`d!Yy|NTuT#-ol}89n6)+sEP7@mw^yK%A)O zdwUNLAy2;e7D2b2Cd71cM1pEsf91x#FnXw+2?+`RbK!A4bVjT|4#%A;_IX(r4EpaL zLG6|kUvxSf2JVIUFedd{paeukt>=M$V)gY+8ZgOg%E57HuMpm^4{&xbvB~z1;Y}n| zKDwuL>f?68LrV4L?$+tS`=IZNoW=Fpjgs_#`**VaSRq279oa4SI^*pv-JB6?nEEq! zIZxQmeMlV809DTQ?wAhi_#aH18W6KfOSO1XHxSCj?43*f-XlQgzW8#Dan66dE_9eY z@a!2`Q(efDNxf9w7o1)~Hb1ZKNKa;_JASf7ne6pOK`PKBn ztE_7kO_rD^v|v#IH#6@nBi1Y~w*58ZS80O9U<6%Ab+H$5v2{lCP=L)@Va2-Cm>4c` zY>P-1RJ2l@DU5VYxF3Ny~-3b&e(;7$|uC|{fgFbzDWTcFuA|8-z^E8W1 zfQJRM=FYyp8*tVDkhL?+=VEG{A7_T^s=j;aAWbGb?Ewq-mHz^E{f{T)_GxiUzSC>F z6z1ZX+PXEBd-$(z+$y9_u;6%Xxoj0?XBgJWfc7A7HMb%F9o z)Gp`p^74;U1&|)1S)5d7H8jVFn6Q~6K{q*tWzht>Y zfbIk5fQt!#869Rt@qI6u%ku197Yx+M~N=ZI__UEQM)O z5NsLP^xTwha%xtr)xQ1uL`76M{15Z@&)>cfkwr?jj8Ytf-%OZY}jW7&wQ2I%YX&fbq-q5E&USbPN@0@e===ygQYD5+=i0l_5=3fBtoEYYybAIOkmgUT*1U-}3DH<%8RD=*-tXPPbM$BOXvL=j%j;;FB_@CYJKd&%@>Lw4R z+=_d*11P>WLm8?zYodW1~jVpgYx_>vBR~h>>KvzAn%j*S)wR?i*A1`V#t2 zbx76Kp&vhf2wq2L--Fqq5dDW6NWRk2!Jft4d!#|YxW|OPHl(CTLBzGgRK0YPJd-el z5hThpsk4&8>H?8T<-V8ir;)kEk${W*BUf?vtMM3PkKN;M+Y| z*U88ptRThE;w1{DYq@V7NJ z$ZH*EXo>GBwtLL@zJ_8|Y+{QCMph$Me3#l(^vLP}!eNi?*^W9+!)B`%Q2aYlYt3JW zFCT+akX%)sSWyB+1JxvEPzobwsab3gZZ-W81lY_Lk`CE<{GtzRtn`0)*o^hXsI z{m4#7*QF{Vspn89JQ~appKo|lQLY>*cbm(&F`{PPuTH*nf*>pYI?It3$ovXmJU9dq zZ`axaZv?+w$(RlQs11Lc*}bQllJ}ufrAIuLk<@znwCs5|@yen3ds4`LczeN%80WK} z^Kp=pYIRar?RYPQbyY+kMEFH70$L2oJH#zNe^ToglgT}Mk|t5xZ1dxwqO>$25E*-X z@o(EJxv}627dX6D%oqyjLmWTUFh*M$K5}J4jjs%YmT-O z#K?v`LVe$U0z#u!@L@w4(4s43M7UN z&0ct=6%7xT&?zNJf(_9z5A~K^?9@KvzZq_VSl&f*u+qpHVGrY(%)Ok0+FK z)V1Fkw)rGb>^1}XHFGfcegLZiE^)>1Z(=F8$(oMlhI6(0%3TIS@M5{6=!_4)zY|yR za@kg4%>|Q!sP+je0lf%H!5!Iu3p(#rwpj5ssx|1`1f1qNOy-rew*L3HWXhN!%>hx`q4>99xWg1 z1_K&I99WW*kiaCJ>mCIz+}Y`~egMlv8T%e49AeS=lw}YOCutP3R2$P8x2 z)VT-pG*2xc?dK7<;kVIZAXGwX#CPb4e|%EE4G38Tt?2Yw-FD-75MlXK4l?dryw8yy z>77v0IHQajJO(BnSbPRRCG{aCMK_fylS9_*9Jq}gpe`katcoX6$kV9C=hCZJOnkN$ z6B<1|dGdG6LV=yoV;gEz8mf}-&E>=t^M>YO-$yy z^QJlH2Q+O?a<^fi_uBu;`{p;S(=5jk2_Ih1w~;D?{Saq;vN1s86Gcu=+E*ODPnsTz zMA+y=NPD`w|3O1Av<(dm*r5&X&%QclNUWpZTH^onH#}=(htMjiix=Zz8ZEgBb;mS+ zQFKa5c;q%$xdD>)L2<1(V9&x&mJpv>8mVe#v2(0-B5CPCW1+!@ z9e&uwO|C0UfE!w(g{ESU$bZn&h$N+>IjFZBAuJ4pNYsM^1DDbw!VslX{hMtN zT9wb~FK1^$LwJL0?8%F3eLRP%H)og{ypHb3MFlqRTdl1tLRt6hR-=6enl0buL+9a- z_vah-Rd)HSrbp5D~B7S^|GG~^~A1TfdH1*kbR$msS^sF^V6LJ1kqQz`V>HWY0 zRL?RQ+{v~jBdd-4F$42Jc>?yN$H@)@6mr1Q4H_n1*~iJ`?n4{0poA_3QU#QIh9v`@%+1k29XXZ^zC@Dm!Ci-(EMno{t?5I;#~9 zJDxqVA=lNGVDA~Gp{AxM4x=Xv2mLVu0iqj-sd7~z8b=3-r&M#=y2^r$co(<7)*M~NDZi?@z=gcHJ>WjuHVOp*h2{6ErVTIfEY+QJM9U~KhTwW zvkmDO#VGZnW^HfiLUC`s1_sU|bfmM0JE%VpdU8FK?A%2~&4KYx?!5qGLa#dW-b8o! zJmNA)VV|)aOxGsiUw{$!31qt7hec@AwqFmlkS5SLj_P2%w6M1J+!)SPGz19l?R9KC zkl7$xj2(vHkziVNEk1$ZM!IE)f0_H{YFnd{_VAis3nAe@wNlKbeG8t;<-{OXzFPEC zW)x`V{{}G`1QD<@Z|SEf{}7 zE6~z0jm@sZ<+-0j(BYBUH}D(djMqYH3X~y35Fz?XIRq2#(P&lhV>QlTuO?dGBWonu>WHd`gnbVIxBS zMcCt$x^_sHET&}b_E&(}9nYG?YI73X^XF!>@wSCZx|mX}-{B=+vCz|Zg%i5gK)s`;^N|(yay}B8SYlUV*M&7 zS7+z%aDbVf3|ja!xOHVwK2=Ot2_Rof05Rrf8Ei@O;IC#BnDA?~ z!y$t8+n%dTFQmT4WmoCvS6@0JB4UWnLW6S)@{{8=AmtO9B2eEkl;sk*y)cfl9CSj2 zj3(<#Q}BBAHDNCP&b@iERmZ7Tq-gU~s!;N(D-r+v?gKi6s~?|uj#-K+RN z&x3F&P>ZW8dC5^&!%bEXF$EubFTj()(GgjvOGRfNEyu!aT}NVNx7ZWuK;eRkj>#1y z=@3w{hei=8p2fP%foPu25+2sjXfBJ@KV1t{+cPsMU|bwNT9Uw zB1cF`OFJH}X^Z&%J8|&yYkVvueJEL=bp)oc238Qn1kd`7^yShIdqO%KdH==15h7|a zFs@aAPTF_D)H?pt*z2Z@jAZQB+6~XO)vC-0`L&32IBbzDpxTK0>*T5MMSt`8OH1Py z%n5tJ7{S4g$7To2b0l{O>7ezDj){2%9_S8C?Ix~XJl`}9HvT>AlQhLdF>68IW0!M$ zQf27l`;iot?u0W|7Ri=ER#_ROWv5+R^3P+9=93chOchXcblu(EIgIKlz<@& z&Np%^l~45=pg3^5DK*ST*}t=v`pZ_oRa;Lg8CphFsVhoNT6>24!ohXC|c2Pm9W^s2Jt_SfGt16r^I1@ zHetuy2N_x@3%~swHLQ_VK%57u zB0DZ&f*uFGM$;`(FFx@8ivIB74Lni~gztfuFDv|nbmn}N=M&F|)S`aFo}S{f9!7^L z8Vs=@U$)Q{OkrzasI&>U;R*y@apb9_y#*VA-!Kycfy$$Iw4xDU2*5XGu<1{V%8ejg z*ktGoyFKH$zIFTOH!7Th&m6UeIc%~i&3P-6C1||7BfA+pn`Q1UrTY)1*n(x+zRwS0 z)V0>o@2%Vly0UaPS4ok-BeyOpAj!K=W*6nP(jntcwT+-XX+)-8irMb0PE12x*1{MmsPA!1A(O7 zKUS;q1W6qGB!m`k#SP#iVi*xmkL+L3W&N3QUhn_Bp`6b6`43@`Gz`?e_5nMnfmx*Y zGXyaF&tRgJkoX9T5?!Oe0R)K+3G#QaX+Sej1O&we_$;_Xm!+Y{S9IMi)37c%o4RjM zTT|0D&~tZjawx~>Is_KryRQEJV4b4&v^w{K59T9ps`#C+j$Vc&DA;o3mtv@{7chR- z8#nRzI?ext&prE{P7xm1%>R}FD&VSF%1=W4G!=4BD2OE?*EyC+ZXQKf59w8WktC$!#9Oe%CffjTp*4+_eZm&?odVRFsD(ag~Y%>n+DoF|_># z4eZubfhLQZ!WW?PLY8kqi%9@?7heR5-{~e+v#gVUD|% znwokC&ZVNtNUPaz{6L&^4I)HCz@0?l|8Muv5QwXp_;>knUWko^R;=4t%yrF7e<6k4 zia>Y~P~c?brL$_tdfW1=Vkyd;x*d<_cP1SZP-yOPtf2&K9!8R~?&GYF6_H;Hqw>+x z($e5ovgKGV#UW+RHujOE;6NP*pa|uY&lxudhm3*(wuVMe_Qc;C?aZQvH>LV~eSPO` zA%zom-&+Wd{|Ir=t)i@~NI(joAsO~ri)W=vF~xd8f4mq6R7eH^0W#2z^eKZRsuGaf zT{yDL;Gv@-kPyZJJ7D&%f5XJl&?kO42#$takY*Se(Smy=;Ab!&3IRRbhLhvrkG5Y^ zSQr>nq8>X4FdTwDFhiAXj9AL=1K=4V!BVCpb?)}yxU_^(MseQDN0R zFMa09T&*XEPn@iN0KXV5CCgRfcB&x6GW~FtCsa^;ySw<#V0Y&i+M71B$?3Y$UN$7^ zf$R-dp6A)R$8Ia+!+7EwlQ;ub%_m=SqCx*mBV4^Ww0H+TTTt-w6f@7&I;QEiQV%LW zWiRpc$jFG}{*p2bx6px~^uwWkXLeN)l_8ez)o^cokqfC`OyKfJkzn664DKJhKEx9o z(EF<(i$Il^2`EY-(9ndLR#9Z3?F-^Gx6NPD=Pa&U#D6ABm&pYWMx_3blSi`-fdl0#A6H_u8kNyK|et>RW_-HYS=Xed(@E-$mZKDU7nDi6>DE*R^ zb;$H8$pB&Eq?iazs0R4Pq0#vs4DAWK+npntL774aaix7=VJA@g8sB4}Ar0Dk@JlbYdJ!F5k{X5-(lAHmAh?XmhQ}>CnrH-{xuE z9?ssrbD6nqP?JW%Msi}J+Z+jP`tq^g)y47sht;spzJy|##b!v{-HCRf)(gbP%@2Nr zz%czBounO9dPM!^ucx2AZ+-u~4;2hwC6O(K6KM2RvC?L2osYybib=F%!k4A)zR!8w zd4~6sEjJfx`UlU<%%-u>(XUDT9%lz^pnr06s}_LCwI~bAGFyN&q8g+py^g8-U`T|J zKt;f8;}rz|UfUT!y9jtmkJ$OfeMB?(*R_-0=-_8q()ri(+ALXhtOje@u?EdM=wtSA zz&%0IQ?!9}K|JrF5tcFzu{^Kry9(^Pvm5hnA}LRt%=Z7ha{F9VROUaB*ZSIP07Wmc zxUZ#9-pc;d*TT25;h!WV-sETzrzIy(8x&|U!k8AWMwlr{+SuGph8_?uB}vAZ(Q}?B zQR*NcsTp2BypHj~GHHfu)E-b_qfwZJ7C`_*6lz&9%J<4jNWg@n48$`;@SP0Va(9EG z`{66+NeBsl@BxMPm45N%8x2ZBx+iXKN0WfUZ<3?8fcnrV5&ozK`KB0j#psf6vhZyA z6Wrmj{Rh|MOae=#zbx`J)_m%3R#uh(+z+jgUJ6GOL?K4sq@p_K3`lS#H9;V95AFp_ z1x4$C$PVAx-JQ<$Zx5-{?r+)8`c-cYzB**F3JOx(x9Ic0HSsw;_BBH5xM;%9X~_(Q z9HvnWwywtws5tE8K?fdqxs;+&)M9T|KGcE95H>l%1Gn=fu{DtdgN z2xNKp+my$ug%_71QSx?1;#Zf`w?>2ey0(kx0rmAC&1zfi+hW`I8T0%9{q&jqu}$bJ zj&C!75s%7+pJ+AfK{kBfscbnkGWT^0&$mJ>9pzMrBh6~hD;AHKA!}UUPs&hI!^Ne+ zvo@lRxK*<-(n$BFkL;0Zdi!aL;}oi@xbC0d^M{T)vZkiLA~!ZTGVYdait#2rNqbx| zCiIv;)FaXSAprkh+s4MUp`s0k1&afTDJ&G3r57)U*1WZ*G>~QY9QeE6e2% zOGdmDb4tD0SfP;6>8YI-;lgwKjB2y3pXSn`1cOcPtFfmE8GgL)oqiUdb(}uRQGfrnaNvp9Dc!e)ia|d^o|lEaRHEJtf468T_M9Xl zsM}JPFKHN=O7EOg{eW9)?Mw~ zo8Q1y8}g6T)Sdjd=S0D+sa$7Zx58`~h2y$G{XJ2a6o*nU(Q%3mc&j{XN$c%3^>CPOoQXM>Radr4mM@RB1Dogl4Z_L*z%C8?)Y5#3y++;Be1LUrTiz9$Y0xD3zr9@w5He{{V`MG-*_t%bu$ zeqG393VArXig@;&&Pp92b@Lnb2B@UZmxoE`2PVJ%?M$j*c~^srzZUsnM0~;I&m3{F zN|RKpnRdim0oFBignse3o~SEipeO%4s1&#kMF!P5FAM?Fmjt)eqzj2AGz$rs{v5o{ z%xuI_N#*gjALqDOai2RSd67u*ZBBX=#fmR_@T6@YR1@3s4fv| z0ue|313yYWZALv^`#aeTkZ_Y3p9iLL%IQt?W-{`sSBO$MUY2dS=(?};4_L6?+x>jN zHAh8cz*VBO7fghnRo+v)96v?RffJAO>a7C(_EDOo4C9VgfJ%PRgBxHVC5ODl3qt(+ z(10n)%ge7{<0&OhE;&P=&=E26TF*^Q87S{t-~t8=NQ^qPf52Fpg$c%Ugb56wsPCD{ zG)%m^#$883*(PSf(?duLvKuyKRWn?$3CBz4GV(6Wk~fLRM)t#!m{cvUzr2s^FB8(kCBV3M2`GllQ1#upAakoom9R0=ZBWcl-{b;4=e=N zmuHBXf}y+Dl34u}m}+?!B8MV$3$PoPZ|$`QV%2g#eD)w<#Benbn$KS=LpeT@enUDG zN$rlR`|F#Zcd-WpKg6mT7(M=4(wCRTQJ9dCAr7gg*}mud8AV!OKYlx%Dl;Vpa}0Kh z$g~&5pS?6Bt*)+hC~$6Yp<}ov>Khouk#VBF#lgYeKm?%rxDKp=xP-&3y}@ISP)}g| zEJZXWyN!zdO`Lo)V@UKp)Ld}~+(wUhWm{72JO`bmxgsk(P0MG?`sqvT`N&%#v%j{s z#JGXv(K#Bf2cn^3CrqU@n-??r1eV*sz(M7drN%C%D3l<)lveD8#pvq5X8u78TdJL% zU2hb%keQR+n1Ou*scy`B?Fqr6?8ndkhIPzs`BHknSC$s{ihcD6@+X)@6>thR@4Gq@ z?-^8BYS^_)C|eypO&bCA0L+aFt706K7d*wl3Ms#QQ%iJ_dUbQNK?M5z*UP8Yd0RQO z0|Okrw0}J>YlS3Yhvp+cOPLY@Qeni#DjfeT&7V$}j zv9?H~fNcCuiOnKJd;syJKmR&v`9Y`SV&RLXa_E%k#C^|P0*9JkMC@3QHYqnU%q*|5Vh`G`Q%gMp4t z@{t^EIQ$Nw6i&316mr%4eBks_-fikmU5fIX?d78Vx{_Kq%cVY1OA9y4bk70j^tcL} zvAau)@5JSll$1CX3T780bev`zz{*A77A~eZ=xhK&5Q^96o$Y;LMJ%O<7=i1EH`i|V zn-P?NY(OzkM43#BD~$ER#G@A6Y2EwVD+_t@($G7C8ai(VS~FyBfix5@^a z3&Xs0`JW^jPGmvxb6rP0E}eK+T;QccPIb(L zD)E$b`>A=d#d;t*Y6~B@pG5(L{vJSMCxeaz(d4mTSBfL^6QUn9G|M;IYql*7tF;>y zlH>0?XziS)wJi%g;#k1@+*2@aGC0;^ML%_ilM_P%J7Ct|Gq^BJv_o6_Qg zXh1o8v9x*ogTzaPEqIRKt@!S#J{#@)VvWedG>});w$bXx_1|wYEV{xUuNSC}U^lR; znkKlxFk(gOMR)11=H;U;P_i-Fh}mrOZ(BU=#QTXZiq>%SiYbI5fN6eOs7Vquyi^BhS~}+q-@^Iyzc}uuxZE z@0YsPl&VW*IRv$sSTPbJi4VOl-hmo=rce_LKt{@mKUW%}a)8B<`tHp&!K2}rv! zxT@)0vpo{K;&K-2TaJqxO2MS32~ z4z4X`450ryAPiUv@^9oNlXwcQzAu1%e_L3!=*BCFvJ)6niN$NwA5Ghaqr5063=t)i zx|8-AO_lD%GqjRN7_DL6Yx$9sJbLbd<-U{cJiU?3o213}FUSGm@A_4t()CnFT(F1+nw;&rTA2Q4uqBp+5IxsjeU(@Q#I(bCZGN-t`!? z0j4S`H>Lg+L@q4IMN(dnT-sbQqlMxojJdggk2_F$ZzwGA&UWUTVC=kji6Y@=G)H(l$Uq*HrMY z09)ClQQ$$ELu;G}glZ|qm=EJZ4IcBa)B)_t= z*u}vJJx=&LLMhsn!?Sfb_Sra*)#qF6KC4a-`1@dN>syRrfU;TewYiE22@0?Jc@(P75S)|h`!#Q9&8K*OeyXK zjIeY4ihNh66)QBHCuWL)+VTLr#eDt2fQ(66GnWmU^|yzZ_y+5 zt@~_!@iKdWP`M`<|(d_sW0lb_W3DZ@?yh56GFX7$WY~Usd@ON$i$M4Aq01n?wAegukab@0{#T4DF`{ z3cG%97!juzu0wd%2E#Sh+SPOue<-5rqN}{hImBOzA_N`(L-2!!eKE$MpQ!Z2;q4vS zQc`cSf%es#+%SzdKR|P%$C0F&*SkR%enY62i~)Zg{{klSUp;miX~Ev+#!Y4`W|h<~ zfPRw!FMY|&@SGs`;OXgRu+**{c{Nei&co%Ry!34D#I+&6zC z5u~`E-wS1kT)(-E&<0=yC?Rxv`g0D1Ir_vOJ=S|ymo)AiA9U=IdFRoxIbsZ7xg0Yq zKASJA?B18MZh5O;k}GLS*uHLzxK9X7SU(BY6UBUERJE2+`2A8w$uLMbY5cy`vGrpY zE;D4BUVy8EHbJx&|! zc(F@TkCj$tZqe{^gi6jfc#~iAkikh4>YUdweh|rt_j)n{L}T|p;7-)}ACBpMfi=A; zRq*!<=EaQ|EP;c@@_TD>%zt){vw#0NcZgKi5%dd|k{lT}O0DBgK9|_~jb2;vtYhVw zu5x3GC)u|DHVh z_OkOC-l>8sox&=c;*9c|LUNkQzM#XOWA;W!wWN4pN1ZO_i><&W7f>zjxO87Op! z?j7`-JwB=`L)$%yJeEUR&%(I*86f9Jg_`;J|Jf6(X0*=CP_d|{%ec54j6-il@TA`3 ziwksEs<1BfOMUvD!jEiEC+Ic4`=>D{%udBg&}-~B@BCejApJ z{k`d`|J{G&dKIz?tI|jzJsScm#GC#lNu&@G@pl=z9GY9Cq^`Y!_8cJCO4R`{K@o-r zZs{-}L4m|XwVGP9ow(Q>gml?&$o;B=t`EXpc!_hLaK^d{1VkVlC6E??(O`4G{@kj-^+6vL?3HvMDUTT$$;XM@_*24Tct!|u@Lyhkg>XOu# zRqyD^{f02+r@Gg|`Cz^$PDw`m-R;iTRhdI@(mNuSG!>lTg{}vuiw$rMya_V3XE1t5 zI*UbPiXRR}5K6tNYz$o=;?GcVY+cQ0qu4K?;pYqwH*T88jHDHJJdF2ay{l$+zPm2y zwAqq^xGW=`s9qxQ${^h9x%S=_0iDby+%r<869%aQc0b?Tv@G?N*`!u_Pnc~5w_O-O zI-W3tg>>6Rn3(ZO&kRg-A09N0Sj%p@Ty%bdEnQHlx4a7T}Ey3zUaBYteBquF6Uj=ZMxfkeo!2i|gg zZqdRbF+zfE-PC`VFvlTChjFNyj!XqR+VW11wyp}JVY_u2XD^3{&q-On8tZ`o1uj5J z9RTW=*^CuNz>y8qtCCs%BJL3*=DDhuL-8H0lN1GKEz03?DV!qHxE`DRWzF*)k*VRA z_VsUvOfL`A^{cU)9c?I=-i{o*yQvupuGX$N!n>)3%m%geUla9ka$ z@vWA(VR+HW!P!~Z3EVCTu&}VM$Npds4ZHb+pkp@BGrep9#5%;{51@<7Bouz6eKtGqoUXoxjuuAqa$f^V#DXssCd8o zJG^P4q*Nn!TCMKdKc5Or+RaTB^>(|%@W-SeRPjcp+09u+Mvh_!Tn6;`VTvLqA+*YO z0}|&exX&5reocHT|1L2lB>zqJjPs$N0w|elUQC(2?L|cdX6^mLDS9i4Nv04=c$dHI zu2yzT+dYf#ozf3$sou&ai{meZC6D-f8XNd9z2}OoWc=#CCipQ`6b0*1XZ-PCTatIN z8HxycfSks1TwNaC`da_%v47Q6);1~)TVL$<@8WoMSX2R+kqxub<-v^3Yp0|qb6@Wk zZ*QkqM6Rqn-H9K2D)fqvKi|%-^YIRn;zzJ~*S%Kcb9uU3nL1NL-Zhc1KU%yM#L~m0AV>YfLy_gT%W2t&Gd=e zG8h2rvyot@3Ob^~YXduJLMfRqEb`48dho1a9vnN}U#>7|2fHok555DLabp;o%gab# z13?zDKjO|V(LDnlsTQS%wPnow{9}9{Y^L@-hqwO!OY)4S?gde^#bk8aOjveywjJ!Q zgk6U*zOkM_^Df1bvIwUmD!oJzO~6mQl9Y5hntyMM_RZCxh20EE5z&=XCG&cu#cDuG zpkvMBlBCepppQEvRIW>Y)!|ApTcRz`IbO6hKU7GJy^^v^_BvlV*^B0*)05afb)&hj zUbu*;xqhsdG-R}7li6%JSJp!5BBC&3rY=xL>(2h*XZ5Y##2NsfgO~h?G2T@aM`A| zEJu)VdhO=1eibX(t&Eu%9Kc)TAe%&*I5mRIxt5YchFrHA?|03p~4<>QB2dL?t5Qdj%k@d<`lhZekINJ+aaeNlF!!CbN# z0f_g*oV|@z`z%$J=-T;GyTF?PuU%!h9ldho!AkMG@k%55_ z>9DgPx#IH8I}xNPXpkQx{0y4PuRf=|AlvNqC;<&@C`g;#e!$6e_wZ>#j&x4m=A_Vm z4b14b}~-eR8DrTzv)@Wwu|5i!?KesKRYM}M4?5w~*f;RBn( z%caS`EyP|`A!3Vp*6HkCIu;G11&M~rK@UZP)&)}bOdf+f-$$U{=p<2L0+4o%6m@sE zgy2yjGRsXY8}>6}R(M|EmW+}Hu2nLtj(>BX=O<+h0u%OU8@lEMGm1gcozMY85@P0( zvRGWt-)&4RzG6|=*7NK~gQJ3Dt}0vU++vPOSy4CRtV&)kV$1ui&(QUFmuSrJ+wsb=RN3#N?6@_k_iOk}Ft zlq72ZyC7~qEqH!u|HvG3yrFctaru0%Eh(CR1@&;#cLDpp5-mqT4wcQ=v9w(bWu2-K z8X}w)%NA(JK&(X0%kXVy-R+9)L40BwD7^S>mk*e|R-fZf6-4OWm?uAAlEi;4&6u>G z^k%L1sP0n;F{O{|20wN}m_LGa&lOvRd=s z)UyvY&+#TWPO9oxXwGr=sMnh`QWJObX+piw%p;5VnmP`>gDP!>o#*On2WkdrJM$GM z)aRSiJr(^gnXYQ3zw0L4s^OkVv(!^*rPYua&L^wfYwbKdZeyv^)|Qy*f6W6_g!~fz}D27 z0K5NB(0QyF_&&^0EZx0FslAo-=!U^F3NIDPQGrbT<+%Uw3*(65m`rIDQ)l-GTkTNa zZ=2!WmGrwJ+D1mI`^UZ#{ssccv}ay-Y3B1uU#>n*7jWC}# zIYv^c>b!!GskWW4yZVTq$>%4WyF0TA|3ZkNFIW|*{N-1Ce~Op{E%Zk~uK617e`INx zD;EGa3Pyk@R98WjPyjy+Ez^w$zIR7__WK{KYbdCf8i`JrG+C%VQ>D$ctS-(=VaEGN zGjk$(Y&Ufg(w8r5V6Z&!bYy168$Y-5LGEa%2DY)Wd#4*`O75(nV?g?aDc&rfHT@>Z zLWcGPw}|B0RC%Ciaw2p1;mg^*THT5PfBmA;T8l+|`>WXGL`e{+$bieN3=mWmYc39O zis$|0O*aKD>L#aaL=Vvyh9UjO3&y!;XX~Y!2(Gaq^s+0U9UQbSht#!Eg%CPCe#{p4r`UK5@z#S&0O$?s*8aD4k zIk~vDJc}&w@<(I8+-Je3TZlQOr!A-{MMI3*tIf3x*B{B4%}O_nZ7jDXtUd(fbwG+}unCAlwmDJ<4m;V2S`p^3dJ0?3APHif#oLbzPePI&A6G|cjCKT zWLWB?rr;VBO#~*O+qZB-T;nxn6|JlhK2pdjDsu9gbx4k0{e-fJ-E927ACg~-oj^yK zQrG{{?=4a6Gj8Or^jlXXyKvD+vuEOUq2HqzP&z&Li3sF5nlTGl5C=;HAn_B{uk;=V*i@~TqFKh zBK`h&{^sPe|K7Ra{k`5pasRiKu5|Y^1n%*_EQ1vbZ_qNzD`0t)j(gFjUuhRo2g)L? zG2>klN>A559Np{g?6iC#ArU~=Tdo9oaIJ7baIzYgc(V^_qXd4lFhG?79x*OSfu$V@ z)|IyFA5Tvt1K#ri+9qN-dV!THo|Q_35pGJG+y zG&05CQoZ$=iCQd3tp?X?2$z99HO1|vdyoI(hf5n^8r=3s+QcHDec>1|2+14NE)EV> zHZSX-LO%dn%g+0$<9Qk>d3S^{nw7SlHfjJ{{BRt1-8;Y$jG6_>K42j9O{_7?E{`eK zGSzQ-czLB0VFx!tZ7&OhYGv4LH~%`-J}sS?2l4!q<3cMUDdtRJ^*sFF#yDHIKg>Ti7D$)@uHUoL&tyUhTT!Q;ii@5Q_voJQ@ zXUoOVo_e42v~Yw9m+Y8<1c@6gd$(wn9YRC~@8gb4`p~ZrpBenK6Dyrq*90;gJHOZs z1`W9`6^5Wqj1XIVLP8#Qp}-}<{E3q6_-R`3%y&b}@KPS|6M67$tAFOkn^Zn(W1j{L z=e+t*Z7MgDo=MZ4WA3X|_V8D+!TWg;NaK1N@AF#CkY4iA={dix(O*&Fy7mO=!mdG! zV3UV?IXFr*03Vq^rO-_Cin21wM|w5Ftog16a>B-1VoJF%jHOdgv9ovG%mwO zx`1HTu&apd_${v+oR6~9PQK`I;6vJ~9|A;Tc12@r6b(jAz#`C-?M_fl7uj`paRH+Q zemq=mLZm(6_G zGWVzMWGWc5DdJ{JB!r~_%!zc6aUei2`gdvnNMkKQUydyS1@WDy=pks$rI15tnbe*4 zf}%~SJ8vlVa^DVmkr!WBRC${=y@^f7J~=2_8X*N}7&jFpZGbr9*ZMjR#FHU_c(Qi} zzP$5dVDmQv3>gH2%#8&Cg@Sf*=Rv<&WG&9un z=|@A4=zc+GcC9uCoiH~>u1OUmgLlBzir@b6yqKjDRi8(j^BzEYrkAyY}>H7|s? zFjmg)hoBn-_Xc2_M}wLOxSA-eVaAJs_|V9wi@0s*Axub7Ub7TkE(wD`L4#7D$PU=zQfwji?Aq?{Ou+d z7Nj%S-*k5^{pWd;MKz-(O!FQhASYk(4@HODIzK~O|Lg-1lRfW?zZw2j>b$27m#yR( z^N*REjuRbr-)`TDoA*{cm>TAPd4s_&ewf?Tp$axrMNr326yL3V`OHI)GBtZB0c#G_Vxe>F#QOJ2L zQ`6DBYjHp$%^#P|h4(})zLqb(JTw#Obc_J58lVahyQF`=teh6&N+Hoq66)%_JHdaH z2*C(lFdEEz;4~n8jP!(=Px(E_^A%C3mvPHIVF_|^cXOKq=BHQp|bb}C%2BZ)m*nX7hO5W zc_&~X`-LvNh_dF-LnHY()O6w@i;+|mF&W(dvfEO$3tqMJC zWtlSn#|2O@9vmD5rhNbyx1hf+AM^%X;s88;0BY-mrj>|}?t1lGaod`G&p(zGohSbO zD1Xss;Nr;gAaC%<1M$I5=S3fwF3IcYkX=in<%)Hh9<%k=^sQaW9J?x5@K-B@qBR${R=qX_NM5#-IZ4 zt)6G9i$3#4#gowsn73%RR7em>!tPv%5410E$hj)>(@kU;pLeu~LdfOD(@~yM?KD;#;9BiLk#=7!Y}-nt7~-N6AY=TyJ7j5fs$8 zv>brfAg*==02YWqyCnic-J@ zk;7&p&pdA1okr5?c%YTDE{gH9H~FvQx+r>%$`ps*lH17jIqgdG2_hG4yO9GQoef4r z+-ExHTH6DgZvH*e@;t2O#oa}e=I18b7(fAgz{%NPQSOxBc|$=|SNG6M6dZQt;BF}> zDzd%0y?*<+VVs|b3ISdj>g;!I9$#gYEJ=Gh;+^hJP}sGlWa;{cMIk9cZRe`^4Lm{A z!E?fT_4pxiSP;LlDpLLA>`Z4zV`j+Z>l)Zy#X;)O5cInH;AZEN*!x$|=?@Zg1O+f$#{u;ixb1kX7uSG4h>Ifu zgzwZIFg0({D&I|bD<>z{+R}moiyojHcz1|@{W(R$_-H8P=~U+4U8O1%Li`|)Sjabz&S z0&fNGn&(fGY}0FVaWE0VQuh`^Zxc|<9ogxpf+euIwyM-A)eZ=rH)+}5Eeb-v>k{$7 zHt`twS+A<2ik=%S!*>@A6ykSUz~u!!^%_DXuoH4h|I^!rjxm3na?CNmD1`) zH^ns{T|iS|J@?dV5G_&zP0XMYNu|TxIsCUMCgVL$%qIbaMCpTOwXMm!)WW$9SNES$ zKRKKow3_Xs!ivgxx;b|EDhOfoiL$l=cOWx8i`5+ zA0s1?pFN}ZMMW=M7r|mH`OZ(+1i@b(*H#upL#fi(VId7}7FGI@uqTt}>N#lYQc?_9 zzyb&eD>N{uDj}t%jRLQzK*HBdiiw2&{{BPo>RdZln?gJ}DF-S}lPXK?)5cQ(!!<%o z)gV_RYVk*vtu92a06!o2-nEl;?%YS)^W0z&Fs+2#y>H)G;~4o#AvYVaEO^%_Ac1!{ z%!BWmY`ncwC83{UJ63Hw;x4Y=>Law>po#D+kg34cH(4#*ZZZ~S~ za|A{|sx}uTUvYSb`&MUW)&={E+a%Zw#9vHg83o4*S3K^Pc9(zFm6Cd0Cx3_6^AC8v zcGP?BivWve(dA^v6qb?LQ}CM$2Z{crQqkBq_toLtVXx$312|-6+(3clZ4Y}=*Rt=! zZqn%)=y^FGx~!-LqM%{EIEON6BKf86;_N@q{-&lpeuIxB+)`bV6^Fi&`!G0+iU5mn zS)`Cv<4?U3t@F&>)8Uu4{Ym%pLA87k3zCL37*F`WN#-q!z%ui5SW;7nfjtH(ZeSQ@ z0z|Z2|K~(OQVc;-S!_lvlq~qE7nIEtFdokSic?20IK4B(-Xc14qa-bY3U|R7Q3~Xh zZvu!Hv)>Md0={#5JB+>3_;wDOIZZGHRJzBy)F0&4KnqWFhaPEyLNIK}Rkqx^msY>G ziZ#Ewue)@+QDY74n4N>C;0Jf#_7e@&$L0=+145j~PwYG~az0bze)r?^7`+4J^4;|U z@oTMTk|($9>)4t_gX59R9h=|>p^^J@H81-gAsWkyhAk>_aa-aGGzHQNA*Udkam#@oOs;G)pyls@bm>X{fWk@Yda;Nv!Vc5`_F67)Xrm&xSBT0$u z4heRtxuvBuoYD|7^%eL}I8mS9{j`J$vdW*vn!r@7e`V+N=2UJ>GIxgjdHhA$&CK1* zKRpm2pR0B5)OXH0y*KsZH_)?gZ7wgnF9DINL>Acs$1#B1N}6V7j1(a)5N}io&DplD z&I2gS4zGi-h{D@hSy_25?4hy(QvP+0h8a{wFe(g@%4!DdG@6{8oP1Qh=bc%dHhjq@ zFuwz@6bd{}grJ+EO9iO=lwmD4h??PFP7D3(mvAS@AdIKfJK94`?x>Ys4X&Rbd8W_Q zysHCC$AaP3)f#bQWM$x~eP7+fD>g$)8k%dRB?Q(FJwv|fYkpm>LpcTv zE+~Grxl6LLvme+_a06b8lCm?itc(c8K3SuM+MzAtXg2b2IyOl^;X)pG&f6g#qRhdb zQ{|kH+`CYJz`upyW7ToK;?JHQ8^ShjduPh~U`1CMBpT{%GLA7R9zh~sZJ#)k2d5 zIH5YH_@nNQ`@1%S1q$`ea}AL5(lRqc1*WqM1iz;1zp&T#LZ}%~0%0P6O5Y4@LQjLQ zP8eI$O@Gutb~*^p$3o#8B^;VIc~MQ*jJQDXygHT>lSh(xPyt;kIzvl&qT2LT7f<7$ zzSaU`;l@@_2LG&Z2yHi;z)&j38UU2qnHcB4FLomQ1hUzyc|T0N+Q)~|m#xrlxDMC; z6IC?F*B5LW4$IMoP{W}kDsib$5;z`|y^Yfwd8r1mv4u0|%T-=cxVkUUtmh1e}qNkkHAbNmpVH_DjT8vGUT9k!q7>Ov9ikRojQYxfX)A{7%Lkk z-?BV@5gjA+`<3KkmBM1R-`T~_2OR!XdECB1z@p3Vil`)~dQU~l^z*k=ryp}^r$mLW zsXR-BtUn)n$AzvLTr>ipJPClSy0mfT;cj8=$C{yqm$L<`C65l8Zh z4^ddBcz1L>-A8mQkW(r7FIbNs6?)G%gX__;5fmS}K`}HaMLBU-FEmtS-W_HzG#o;v z4%kQnyUZ=O8{zeN#>&5}qcGc;sL2BysGSo2-0Jjn8WaQ+QD9f>(Bnzk1cF1}VTbn0 zW&p>{9RxyrOLvGz1-s>4@H@!lbF-ASNZKcl#H8$Oe0p{>%@^}{f{xG9fUGKlx(Mh` z`f#P*X)xuIBD z_2H3%z#|qDZbX%sjp=ZIsqI$s9|D85=`xgHYqSgDBboIrQUoJ4{R90W-rl#;bIdGV zvnCjT)rg5r`%^z}LizpJE>P^g*@N2W2xa59a&B_Izv@m%i@hioKK9i=V!{1pxc9Y- zz7?jnh4H)xCWZ}eYPz#FmRGt-+Stsemt`4a+k=8~-wr%Fe)Gs`Wt>#PcGgr+!fx#L8)+GoURz4X?Zo9o)B zA@LE-K;+ovLd!e=%px^x$$A^@$-8D%dZ`vlop345gV0`L{dbduhPbAm`@=NHp*5EY zSjx+#d+pr_UAc~gU;QkQ7fI&(_J&zmE{`B(b~okZi1xvd=FrI!_D^mcMIUE{t(;2`enzXa$So zS+Pzzl7R?&x0|h$_aDRrzDHz0A%mN-MEwxfhaPaZe?(;2;=JuxK!<3DIS`s(UrI578kXI}MQb;a!l*j98F)s#c8wScw)3*f==;s?5@ok_Z69!_N8RJo9u# z9sW9!>OJ)*ItGUJrTq2b+~}@AM&dBVGqYQ(ngt?Sgyaptb~_z2K((9YY3rtbW#7ps=r`T=1n zH!^aB9I$DnGgTvQhXwEOzA%)yO<8l;Uh2zU=6VlKJ67}z-VGU@<=G&>Z1%=n(_z42 z;|8q#>%XZEhX`Q#Hz5i5n$-ln9CJP;Dczkn-hGnC4kxn&w$pp5qonlk=OCIZo+o{_ zY-y>!^}yMqZ*N1JE7WEC3isptcX-OBAq8_^UwAvd#LP3o7|SGSu&JM$3N|M%mUaD= zup)P_vVOurrW!;96F=q96K^#y8?;XLRO}HH5c2!rgA?=;#>1CzhmG zJr5i6;!o-D1J8sZqdpBn^gT{n1&eW@`!lt@ zA1ca-txm^45%~VIOqg^lALzKnAdeZ#ula-DXj#r@cnls zQ82pxS}pRXjN4Vb!Kv>QT6E}3q70X>(dPgroUm42f@incowsp(Cr+UKC_Zf4w-uT<4Zk ze5tt-XNv8gddg^Qt6|L>CQVoQa%QRki%mpCUw0A>g}G6doC-HQPL*Ul!e0g(XLG7* zV-IHF^`0IcbQ~PT|NG!jPS5{7=BmLb%G^7?cY zfC~ZGty0iRs^bzm3gS6q6WQv8>ss7rY3*I85mrufp=pZy<7cw^KWh0m?UV<{l z?V%2lXm#Qz)f@T3Qpabe{*sd4`*fxn%umFNcYZY--g`)Yl)`BE&;@Fx>*qSa{TvqB zaiI4`1Cqp>$jA<`?K^6$|4r<0) zr<|oz4Fd!GOx3(}2t6ka$%FxG5Lo0>0r3V8oAub(*ezgYX~-_h|9IO?`i!#k4%CF^ z?6eFCL}tAq@PJ)7l`|b}&WaO9{~1ffPi9qiuKsn*+zD9l`p`vipRNcO3W?m{4^92DXcn-Ue=XK;Ci3*~syY zf1+eWzC(ZO!I3#i;=fq1TKr&~A;`~^RFo)u{`5kK)3D&@d()c-0;~JU2uT*rn@HIr zJ<-LvPm>CUo-QxLRhp)7i(fq?ML|mnl2HxiB$AA@&wjo_vbq|Pu^iHypYfuQF&Gsy zsx9ncwR5~)-8N<*3Nn-EWaqcG-ntkwQ5^4c9(?n?;`&X#g*R{Fvy9Mutww_RoFXA( z{rUEE&A`kDNSop(2_lNUV{TCTl=T{lvlyd#r-)MjAAR;J>%)h!a2d6=wD^ZbMrs0n z#UOa=9l2sMMC_DT{e2uSuPFzE`fj_z-J_#M{crg{)x{3>_c^`yyY4@NmDqQn`c{Ck zHRT(4|1%};-2=!04@ljMb^%!HJlW(c0jmkN2wao-6J1GcvS~OVis1@&gjbXC@eyav znfPLf2a{BE2pfeaWT8*sH#>O4srAMAhZJLpkPu7o0n)!&^79^a<;6yrv{ioJXZgL{ z73zC7!;Ikma}**Xz$G^EWo3Any(g_)Ye0Pk7NN`2kXHT!d{OUGQzHSfFb}(oYts!- z(O|89O+E&E8BE`qQF^O#SQ5g2ehMzXzk|0E|03+~Heg zz>I4bj<)ws_@c&`imxx(Z~Wri=4v=^ginEGMj2b^q6Lda8bA*|Wo8|?tzXzl*mWdiXkqS{l~}#t5szAQxcKV`JXbHE_&{#s z*nx@v)fa2a!#_JUmvkf*=y&@sA{r>Cjf4{Jm<}g2>LuKnDX%mt9Q_Qzp+g&dfsfj` z6*1bn$l;wDbEHhPCR687+4+Z&BhUAddf zsyX@_N-Z~>Ebn~&z=rrE@}i363KwxE;}x*0Tr9ci$QN(MO)3bZbHH;n8reV4geEFn zF-M(+B?p=&enY9-d3!b%+@u#kXuW3rz*6rg1eQOC1bfNPCPN=hmi6a|p-)d{b?2c6Iw*cJ7Gu6{wCGop3Cham~L zT1ZTN@%}Lb3}P_k-<~wdKV7HQ;56nw7Ql_kWeFQd7gPEQIYp4}_{=dc1!j3~HCZ+F zL0w8qYXMv@?`!AktU?0&BS3)dUYt7rSayQ--8JAE+>-ndt5J$p_D0>hV)B8&LmJn{ z^~60Fb@@j}e*GqXj}$U#h2KaEmlXvo)-H3Ce-IKEcXK*qmY0h!TbB`m4PKQdR|aJ} zv18J+M@Vd)a#Fen`k8Y0J5>v(xn}n4GMs*nK{3V9Lt(Mx&>_5Gdu{w|6%-8Pw{bft zOY2?^mPT*BC9$Ju&JdXUl_{}z`TkNQ{gY@|#;ZyyN6OcA3J!Rf&%RcHB~UxnCtO{AliW`0clRCher=I5mzCS>Mwj&BsXVBGp-nw%trw;{j-c13 zha!sR5)i;2h3Qr0dw%_dYwrD`V3B@J6q-YOg3+XnbY8I=vuCLq7)CrnB&Lse%$#%L z?Bpc=DK0t0ft8)zs}v3*edZiu7AETh`)BY(kY!RO-a>={qQ^Fe*;OGbv|W%|F1 z)mB((I8*Ri?Rr49_!tPO4gh~jj*mZj==a#uL)n=!vC>v|^gBt>rlpVo(fI$@0u+vl zi^1k*Yjz+F$Hvhhi8?Al*Z>x=Sk_fj&xmDRjR-xwE^t(*J`O()TYVcaRr_ym_agS5 z?-PM%*|n*h(!t2RsHdDs6B%DsB=r_5{suHG(7;JHt|8C%t9fg*NIq-u-<^}Se_1Qx zqB@wW)`(?h=H+I`koW$1ELhguM9AIHI>7;Jrk(vGhM?Nf5<}0MIh8e%_e^?IjaPmv zh-u65JbWm@vGd~6STr3}UgcJY)6?OgsBZ}=7y;==3hc5;Zdn63jWIVTr_nk;jW4({ zS$5}s)nbTNNq%E@BR1PG%mp$5BU6p`lhTjP&o)*0H3P`60*Q$6O^nu_rK`!8PG#$A z==`PWvK}vKOfvl-k41-dZP5U98@1gPok@u<42KJmnPuu6jYjEbaEBI#9Q|AH1xX&u z!0)URS=i{RAd2LSw9#ymrrfXUZ(HX6V;s*M(fK0mb|7&l+uy?U>x-0@@#+NB_X8z=QnZ@b0n8 zFUV0(Co*$u z)MD9Fvap3bE!yXUHEz?Aj1Q>R8Vg??7vw#0wH|H1!lqR=GBToQXl$hMba!WjL&J_K zsCFcX|N4uI_QnS95HarDYXnG*KI{iu^I08yGwvaIC}GT<=r-~ycFhITPTsoi-^D=o z@rd=$XYQ}me|<05{y>BTP=p9^*e5PTcIGSnVl5h|_9O-EV6pClY8X`ZE`B=f*K5$vXga2)vc-Bzsg=ZQPcwCXgjf{xrgI?RKQDWQEfl3ahps;Jz?cEaYir+^MonI9m3 zrN}Tph(A9*!D4*O9N2Zay|dDPE_%?*a^CPf^9td`3{;KPFwDAq zPvk__{6zl6g|X0GL@mNxzs3%7CP(rqkB&BUYRo(JnBx&; zRJKL2(owjzfZmKda4WKSz%au0)#hBk?-Rod%)1s1wd!}G6`5?FV4r^bl=YC-LI(J$ zEAdns-%6=+ZX0k4&`U`8Ish~Ask<^7-uBg{%$aF_(10NHR&nTfmM+Jb=*eI9xfpv>$!cJ>i&B{UPu;~Vy6Bd?=O%6c~{I(IV|60UHXuiHQTq3*RoKe@rALF0P(*l_*3N`X5mTwsn(3tjq zknj{%vtS#Ux9abX$veOnmBcQQf|qKEZvIl&MWqL0SIAPAz)E{mCTbYRlMe z+0cXVSrXSOSW)Ce21p=^A?>ym%MYBE21)7ZP58||@-GU6uoU3h5vu!|K3nOYQ=1vh zb%;qn`zhDIry?--K23JWtHmmN4(AJ>y|IVH_nWSQ_wU|iT?CEcv^UtuD1}|H5xWZ= zcu*e77gW#+3s2R9R-*|u&v<5HKX@}3Neg(s@aASoxGl5j{hAoc5R%@P!k?mP(8fzf z|LP#$XvZ?SZl{S=jPLbM>J%9@qV4U;MDf|%+k5ddq?{bCZDshQNz^N0zffTDHpSd( z1@moRfp#f16v?F2w{I_514bT(3C(?defqh>jlzx#K`=29zV7@G8f^6I6WNQD^PMPL zaGjv!M^aQ%3BFlv+Ig8f+S#wmKWP3T8CTBZOm84>x-wAeGDAFXn4w#(ZPrcfb-;;J z$>R#otAff+2}9?S9#Nm%tRA-iqn{Qk{L3kfe#Yx9M_{aMRw(Ug@nCk3e=&-HX~=Bnq%dAPf0zS_$A zX2ITbZ3cxjv64jZ->$sGvda_^q~erdHynB^=uSzR>vc+|-HV1!oK%vLkugG%H@>m= zXOJF5Rt0VIZK0)_uCcw1=^iE>b*UobH~MH+xKV}8~n(tz$D_*?3X(XNgMSEEyNpd1ik9oUKJ0X^u`bUX` zLw%Qh70rmFJbFjpRAYiP-o?yM=kU^`WpUP06l*?v2QX_yb zV+eNQY|y=LsA`!cf|K)h_pj+2X=3R-uS_~OUT14;BF`AvsA&cYmmU&_VFYBaMsLNE z8_6Mwf8G?$=hBg4efl-{N3<{2)@K6jRBp1|D4KVee6}7Rh!zxBIJPvN1~w^Gn9f%^ z=n4L_cOp5^%9BCxqRgo`q(o+okjf!+nXRXnQ6;e?RaZXjZ&-FF7<1L97&dGgTwEa} zm6b|!rh?3nq&b5Y#JDLbmDyOX1mE1&=IO%%Ichv}nW(lUBAeR$9uT#Dh#zm6cfc$) ztgp_Dj3j_(AOsxJCiYy*&Jz={?7k77c`;JwGGr=+M*UsN-bOi(N~gr18!vF1q2S{@ zGTJAJKp*`Jvu*@s%$e9(iT3IiVha#)5pD~cW_Ay zKH6wHCKGb%b3oJ=WTrVoU$5fj?JWj|mp794puP-&ACDQ3&z><6-@3Kd9nYqrb{koA zyTi0OO~a!u)${6n`xSM{c(g>)1pivsOx{I!(~O?&$Q$+B_FPIQ)+Eb<^V7i-WlrL0 zzw6T$)%CxsDOT3&xtu?I-Wi4W_0|d@PZZT@*bGbJwE2Kjn5fvsiRR-7b-WD$>Xp^L zKXml;9WcoVmDPwFYoB*010Z-TT-4l~MUW5)2*x_FQg|H>%EiJB$H=lq+xbN%cu_%A zTfyg-^ZZA5ic*8WM_4C}4`p9d3h$k><$W5UPc&sp5w332w6OQn8KX+Z=S#D{L}ksv z>`P!rzvtKAY|_(-*5d5YdGR27=DGbOKXvnzwKzQp!vODe*XZWI_S|gvA?mL2y7Fw%4;(@^t5M3;9oD@LqQE^5yxRUHzHw*T{|lb zV$h6!$swj}=zZoek~a%Z?ib^iuJX@PRH(E&|2&VjQ)C);byjA&joStu5D0kb3yzP! zv*aWMUS6OmXLe~we$4fgeTV05#JNB-D@RXbZ|X?w70TESsF=308Z+P2 zErw`le0KJVlh%Up`u4{GPSXHSlHzrukliQsHB%7v3RBzMSJo-~X~M+0hcgut;g_z> z#qcceU3{tBXJquVEnnnJOmNi+!F*I^;F-zQ#VK6(Mg32U)6>(dK{Yl7(qStQjf0&eL-k@%pyscSuOXG1 zJILjFuLlIMH``ZaAWrp`ew+dt+C=`#vvF{MrU~tw{0k zGBueqy81BmKim+9{mej6U_AC;^AOYcJZ5$seg@_*<^DgXF!7_cP5+h=_cH;JTH-bp z)l3#>#lmrDtK)_QuHobWAue=vbZh~o1Of2_LRqR!VrE6P()7l)AX=$c%sl$4Ws zyXrw3kaOPH&|n?jvEYLI@e29aO4EQTqdZoF+hs}+fuI#7qC>8}EVmlorai_2JBmgks;rE= zAFMiFHlqbqU+Xr~nmD)mulQEQm&rDzWESdCg zccol$w&VH*F0XjDx3A1s4|pCrxkpl9<|lHTB^cKjUEVp!jdoVje0zI_DK$J?(6`BC zB9AK~-B(D>dHce?Q;|udt@{~KvLaK1=LsR`N2QQRR5*veeE9-40%LNm%5Lqn$+CkH z^DrIT(X34SEl;%vNyOz7-8Dvb5=auQzm%rB)tNu!@%==AuY-5qABO-56I@O*|D%b}qJ$=X8GegRT|= z0c#+LFSY@h&#t>@nKhq|EA7bFNs~jpUC?&1Jy@@;&ngKo)J-X+<4RzvOeDZ7v86`% zOXK=i-To)+eFxFJdf@*xyl|NzNYKO0Ed}~331iO0MOc+bv*fr35!oOQI-4W|JxWN$y-2~*w>S4_^t6qh;#S+{@m$GTm*hRypVcWo z^G2GB3esAdP5knb*t%3CBwGJuOli}=o3asrf$#&yR$SEJn#%_s%eVKKm{tzJf#;)) ztt-V+EEtx8`n>;FOReLBn4a+cvK!QYrJ|X>jV)%+%DjVZvq+JyMrt)HYR{Jmuw=c^ zAwtv|y!^myJs~*{NK~{ODhURtY6m|2zf5tO&6M&5W4&FcUf=RJon*}R3qJw>6Q}v z9#@P-rh&*IG7ToW<)!cfdCfBR@XAVF*e!sVgr2RCx%YZLoST%#2kZFtC5r~3YAV-I z0;!6Q@aE)N)k2-37c&@N-L0*Z(6^QJ7Q-vR;6XB>o{dXIqGQq`fxQy(aFG zIj?eflUu;E`PkNdG8=AIVBuPapJxVX;rXGD*8y9~$UrJ*1ON6^}+QQnXW0#Rfj@qK!UfhcND zw<;t7CFeGnR9pOSjn8S_M|5#561`p~ekmlB@zR6{= zBwN-kCd zS|qM2-3Ou%p80UdCu}%rIKS|J`Xm0VmS|1;H-}GZLIU?4mes;kp%*+!Ad*o{t^jt{ zb+T1lT-*>*rk>fsV7nSk=G9lOiC4<{S-N49^HQ?U)3I^f!4EyC752Pt&wbeoIEE#$g=PSZ zV(c%`pvc&Rs6-UVPrggMqsD03*4?iWRrCG&gxeD*9x97E?>kG{H8+0~eWJ>4jY`|3DJE928_KiJ*RiTt`5m0cZ{n-ghu(!OxKI z0W-Y7bl^!q%6TM zCU>82e}^p=G1UWq>|I5WbFg$haijQ$s%|NqVq26U@8NJ}L}obv$92QNb1hhq6(X{qI>Z zadB#J(60bOmFT*t#|Li^fO)Fw_J4W>hFtyjAlnjo)9$)4Daap?X#X4`SyMK+TVPDl zU3CA5cm30q*UOU2*rWUh3$rcRyh+-|sNA^@T$)XyAKvv+y!!LE%h}vB_-LL?C;LGy z;lTE8`NO1q`}gCtr(R(hMf-O#dcG8?=LbpCJ#ulWtcF!DGQ@Nj{4eVM%bU!2w!`cb zzFpCtoR5Q$rqNMKXl6#=+!a`!6hvr0=e{^T99&dZ-aZn-(cWpzG~}|X!XFX7RVmy2 zW4?`}5@XW~RT4$C*0U#rkCc@|$?SS+eV`Uh@-FeFv=HJwywM4o-|HE$c1a~4?+Lnp zU0h;LCYUI~kEUe4qi31uy8PYi=Z&WSPDJpzI4^!z@~*yg!j4lHjn)hP)hpO*=+W6Z zJY3NR64}xuXPyMh8{1HpS%))4Qj8xQwl98?-etiP?+F;RX|Z(O#edd9#4i%`{`Z_x zf(PTRDC1Mv2e^E)x2=U@gm|Ul=!!{54txHZ>$XExf#&G%QT2~4-1xB2!nc2I(@^V3 z5Tzv=R9oNLsH6`Hji)^=i_L#0pQp!bIl;x{xd2b-U!N6|0*rl5F~GNXrm^4(axjo1 z9R(v+w59B!pTEx5fFwzWwIN0r43WW#rWr0V2gtOMmXYx%LItM~>09ZFOdg&_>QG;u za`Q1DS5orALX%SLj7>J$8qtdV=nav#_)9;TaGDI6@F)kDrTI?2`=Er_OtZE}En9*} zz-_pnaDxNnbJX9b8uCh2(cMS@KAooQ;o-@I=3B311-z`YRnlzoSKIFbUYcg_POqiD zX>h>dd8tmvaJu@1xFT)`*INLKm#ocQ-_7*k)3;+v0fFIpGKp0d*2T{qzGXrWJXNT( z{|wh@hM%=m&7gnPO*;G$<~(@To}H`8US!3`sV~2l1)9}fHltZS=y)GMH}zUxMTM)c zrMtH~%y#CSjbHy=?)2W`YqSo!Oq2e7Ds2MFU&RsQRy=l;yzblMTMmne^jKz{od6M`wEekP7ban@1@92HXqD+jyt&XSB zo;hnGc&3yOtm5tlpG)eJG@}5U+{8KE5%W(u>oLih{*jS=sohcZK`tEi%5W*gTQ{eC zJs6TPW2@X5!YEPhFIzZhevsTuD|-9K*6uelYy>Dzws0}A_e0yO z!m_2zGNYbU%Q}!0dn;Wfa;l|g#XEb9l!{1v;U0q`ZbT8zZNGX&KYqiz^cv&jSOUJK zJZpSXJ!8$R15a3T!11uSUv&Nm**|{X#y$r$H?dhi)EHQB;5FDNs5?p zdscDFzwXGmpQo#S`G>7PnQ7kTnNeSsrepj*jTCfp6k^dD2q5Sr<5%5j= z42kCz?(Q-&)?mL>n_~2SN<%FcZovoaI78BO?*s`=o zL+HgMJ#bztNXL!vAgFMf`OaH)F=HF2SX|WZshOaWqi&~GIJymb0mJOUUXWK=OSrB- z73%qtLp{{{{Qh?P?8MiR$w8xEb-Jp7eELxaO3Gam+F(w5Kk!&1W6W#FzPSu3Q$kYw zEeR#|F)jxlDKnOAYsWC7&AkL&bKixX0@1*$*e`r#1z(SEgai+_zL>vg>N-_HyPM}@ z{V6n5?);l~U6%O-rK2PBiP2G^G53b=V6`pLwpyUV0lZh8VP zNa)2-6P=Ha_?UL~7IRG3RDe4D(mulyoBi5dt|_wgcP~gKS-fBL^Pzo^a9ohisMS

bK8$LgzSJrmoDcZ?<0#{{B+(1lio!9xPKbQWeqNB3bLq_-9<^fDctgNg!kWLLe73mU`V$U}3>3=)3ee=BfhDLok zL{PGp3-4$$HgI9nZo$du?yr7kwEgIrma;`*S=iIeAD(e!&RJ7>R&hh;K{1>y1Qaxv zrfW`#QN}9E-)f!im=L%*Z?WoR_E)YP+mpF_c>7xCFT8{;;V^fuVw>-+0uEkW1Pp~6 zR~EP2_d3FlXKXx$Q4qw$!*J*|TD^2DV}C27HQbonPe_6rZ2GD8Hrl1%vjN%cJv*qp zSts=!^O+JX*__z4ELJs0S<{xg3GE4`1-@MoU2td!XEgxAI zf{?5YAm{VsWM(E6f#6*ZQR-6ux6a-2&%Dandj>a-=n^c25ZGT zSWDzsYO8eZ?msZ&xo&N3)!#y5s>@#ju%rr*G+%Gsy!lQWO1@~1lWipn9x^y?Bw?Ex zjrgF%QY@Z!8Y+ep6cbav$nVV>YqzGvf|PuO9hmFx{<(tnPJO8kb8^q~_Vcug4rs_k zPJwdX@{|C5uU_S=d*>rpIkvNxVLJ=m{z?R0weL24Xi zzV;!em}uCqNLbfJaQ1bOR`-#xpiqHbx(b@xIqm16tZJldxBY^%{F;0*IV-Cs7=`p|*8uKiRa zr%@P^()ljgI<>Ln*H92xSIYfnC{=lXj~->jiDUd+uz$GTX3HEF&sAir2nY9XnA0jS zpUK%{-Rm^rP8nZwAq$H6Y%^BGlK-^ngZkMn+7>s;gz?3h{v(!|9mwSAXlZGY%O1oA zg=tgK@!jwaO^?a$*8b$p1!rff&7!V!^tfI$xzXT30t;$EYffXZ`XV9K!6?LZT}|E) zVXeTj6gR}qnfQ_X)-7|b=-z)c%p|IXZ;hd8hRe?F14o%WEO5hpgEsmDny^N3wqTpd z;Wyn;y5A{|uBvozQz9DBSl@lI20rYheMbHJ`2_|?;%ezY7uK#_t~lSK7dQ-f5EaO8 z|Ggl|#XqUOv+vih{lDMqsB&QY;XX(GN$%2p6*GxGx~DJ5kwT)3m;1k?bJg)`Aj2YI zrfCr)qwv2EU9Xq^`;66pQ-$A!bpH2+-UeS@d(r3gbe|eAMb@fx{fu7ytBr!ePWkE^ zl!8Au$qL}}TK8Q>*b7X!H(Jh+= z?iylZbu-pQ_8Z7I&9k#Ubm;>-1;cBiWFhW_qt;ycPYVbt4O&|MF#sNydkISSSFm{= zecNG{tyjDPRCA+=isvdFFbNg63dw|He-&n`o<|^M2MI41rKlTslV+jT#q~T|SxG6f z2Lk!WEP@>icNs4VR2JzdPsDg+vn-dXdD7%<3h&e&O;*kjJ<2$?Fs2O+tViuI5 zQBr{NAr@Q0ql|pa43Q}`mxd{#)Lgd_5IOVv`>FO8Lr?^S0~jOx^onO?S&FOehSSR! z{ZJ+6-U=cldtYC1zZP3@C3t>I+lezG@^Y^0VNi?_==BWi;D9-e8@ff)t#QY|(8f-u z@nzw;z%2>ms4PN4O}aNRFHs3|qoXYC+YzBC4wgKVME;ULjdF*-I)452S~zvv!^mhB z1%wz>c)hZe<>Q5O@`}EPrrG$FUTmM*(pR)xnM2!jm*?mAa*&zKCZr+n=@2r8L-N+Y zZ^m}TCCA1dJgTV1p`}CMsg4ZWQRQe(KMhO$U0Yv&qRkr5N*F5DGa-inp}QGR5)Ygi zp}ub-p+0;ah}STFo=cx|m|XL^xY_>_lbuT7mFT@9x#$&umd`Z0EAX%gD@fzeUd0U!YyoFA^WIl8*asH?x9 zDQ&u%n#)c1A(zG`Qx3P@8^I2Wc~!#mxxVUy%Omk{FEq~FLdSRN9@(D_7(u0P43`K= zUou}dL`mSmj*Wpah^R`h5syZv6>>UlHwUvrOG``bkzQV2rSM%(rFvi%R3lC2j?-Kk z;vxcnF)1+P!n4#D<>!)=Z2@k_jq+?*-c&%~h8;+(4<9QiT=V>AS6~uJa}#-%#P$W7 z_87shkfUC>Hk@m`1H_^%pfHQM?*|D$1PB)n?L6Z9=n}0#>l&oz3iw`Kh+kl)p-8!=%^|U8QO*;kfcb{&Jx>Y3uuR-S(=+G;}a80#Y4cdxep%oKCJnnm=}YELnhoyHoVE1u&VcE zHKC}bBmCVz&9^k|F0)Y|UZY(@7{Pm9PxD9fFd~V2Yt>X{M`l{!&d0jJ@Sn+V_>hl( zgE^lI!VP|nfC*#`+)=K|PoA9m6RB?i9+%1;&Rk2UuNQB=dW}A6zKe?^b&o`M^25Wl zPHxkh^W#gi>4Vis-?!lhtS-(r4_*v0Bm(<`8%7VUaEDSJZ_iKwinIDED5jJp$6kD* zR?y5iPg1IwFp?$Mu(+bv!23xlddh@EBaOJ^V2~3)rb1u#8;y2$TqCYbS163wf}Sc*;pjzk&R4_LpNtWFTQe$rurr zXK83?xC#g(xyV&B3ct8-cPgT)#)WJx`^>-iJ?eg7s8{k8>wHyM&ngxb7Z!;ql6zelKqsExF{8yq7`6 zu=bAfewDdVLwB}moO;FEi0kri>@}F}B&NUsc0W@U8^~P1VNLIa2ZH>DM3O1j^=(?c zDMCwgh<{L7Qxn?QD28zJ%2PrRQB(InQC7Zcwcx>so7vvn{N-mk`Afk5Jw=}Dncv>6 z=NzP>WrZ_vW-5t!9R4%{)uRI9W1nc>3Jf4SVDqna&O=*nQ{u|%QwPW`To`bQAMohJGG7_Ore>|+M z6LyAS)Ki!#50~ncx3VjTNq;#9&;74k_ur=Qzux|33X;*{?kF{zN)zlDum+66)NckM z%C<-Wd5InbC1~`OY`qkNN02tm|u*Ay)Y4%a+xcSnLcPUX+B6T<5$t6a+bW1+}o3My{gA&MEF&K?f{5-~f z9cRj#W}jiAq?<4KicU&%zPuNFWmJoU@Vc|)HK&3Kn!YS}Mg+ok>g5dtxN7|6bC3W} zg;hz*;vPW5F3ukUrzke%%(esf~u`zy|Z_{^3CeJ{#t zYSIO5#@Mxujg3hozYpOq$!6cYw(rX4z`CWjB0hdp+L<$eNPT=@T4;TJl0)fp#0KMD z#Tmi-xKdiNeJ=D*shtr%91M2_`t3FsIm79KMvB*zhOBr6U{=-%^p-w!gm#HRW_fwJ z`M>T`<=8ItU?fUxS38Rlm-|1}?xu*{T?c47yCX@XO1eyJ z!6GE>?U$C9Y3b-tA)Kil`+)eqGDm*x)#Y*(4D;(Y0jGV!-bTC1EBA$RE0g`%G6FZ}6 zUUTTy)YSN@sKy&(N|EUjO{&#!byeaq{C;Zsdn{dT#FXe}H8ai7OHj7KR=2+gs1Kapx>rNvW3o^IJPRP2S)Z#Ye!TH0kg8 zxjkc$oAxV3*A(#oLFK>+XWY^p*z{jO_y8f}v_xD5DIs99Ce6zKB4|IgV%b=xz~0^% z{?GB>)piu2ZSyAZ4hXvK-g^oCEC^xO;#f3nRgCLAug3b$?`!uZt^90Kkh4D*{W{dv zmd*Co=}T{U#kjVyx9gsoZNS6O&Q&}&gYwvHLn`h2=V#P}|A(pX4(IZ3`~M)avUgG_ z*<^2$T}HCW%Ff<e8KG>FP4@3}-_LVAzvJ*n-)}Om>pjl%b-u>& zQ31`>?QQB_;zmxH5Dpcm2`se1kd^^NYrZ z!4e9?$zo05`~{Dg5ha+LGJwpmOs%HuVPql4pctDnV`=}dQZpU5LER?z0bqAjz#QM> z4Ew&w#VY(^xWf23uuZbyFTu`%^d^li83ac=2j@F2!LDv@1BDR|pj{z^IW+Cq*qHXp z^71XHT|WF>Xt~~^eir1&K;BM)eLj>T6guyPmhn_+cQv~5n5Q^2Mp-T$N!z8_e5$O?BYg3=C&ZAoCSnjU89UQy2Nz$ z;R;8C@4xrcHvJv^cq=zU_Fv=W_}QY(j;9rIVh_Z?Vhp&Sw!5uJ$MBs(yOu^W1zog! zt~y8qfML6^a32BziF`QBWO4~3UCQfY2*l^)ey;&Y*9mihfAd!m;Y9Ku^WN{(SxbG? zo}=Hq(~fnW$+;|eBW;U~7B!Ht@8j8pN|3bs9iMbl=B`k$_&PI2I<3_Ppzs;}mA7|s zNxw@@zQJYOOH`=B*aM4d9b(T?A!UM{v=!aKtrwKzR-hGV@_+)q)A;*){2IhCeAWl3 z;5zPqQ%4p_A96eXlV}MYKsp>h-1K~WKU6c79s>Cer+9G5gd-6d9QM#~^49sg*s(z= z4<8_8uqPxSc;WQ=`@3%+T-=UzJgDp(oXQ=Xwh~fPy>NX?66u0&XnTs*qV63LcSj1E ziPL{+hDlO>@s&o;DW1=GTWxm|chB3~+mC%r@&!7E)pW(miu4zo-F5Q|?Z=66?b4~U zT=dfm`EGrRec0*=?cg%;40@Df9@;#-L5|szfU2f!2XzE}f8VS|ks6B+>nCkZ&VJG9 zX$UTHY3X{{J|RoTG=HJ1pg7s!lI-Q>bvdwCwdp8ulQ6vpYyXX%5?*tOHtCInCIp|* z=Rkn~tC7!f9S=zI$f*h^c|KpoWO3A1*6dtdS|ESp*ydDHGfmJ|lG3nnJr_faw>D_EZ`VSN$_cc_ClIxLv(sz@t>^e|SV?8zT$odMfD1ra8#H38 zHyW_+=O`HvA1O9cX(tV=Pv@Q=?XwH>$NR@t!Um&UZQt$MO%ea9#77O4%)MkIjSFZ@6#2v$`)H+Oe$Hz;ODcS8OB!8`bAH2UxT zRs;U8RhsVtjEFngvVU;JWTXjVKD(OVpm0S+5%pUCIb|_AXaBmFI|MGzUWIitlq7Aa^?cT?bCIJ9iby& zl1e7(-M9d2@Epl!^-(|uxaka=aV_q-mVf!;r(m-jhkwkf||A!!fUdI z+oNg!9N!ZhG~-H=Mf|(#edSgeoM)P6&>l<(w>YeLEQNHDZM^j8msZ)o_gh${A}B+^ z(FPd-(ML=ON!G(q@4(pLagrwY0Pbqp=nJE48!P(!yEb0x$`7nDrCI~uqr}YXdnQg_ z8(j4HirFbRH}+h}FSrq3Y*tjGjdrT;(# zCLtx&TkpK>4&iTzUC2sMX43@yF^|>EEu3H!pzdgBYd?EPkO`Ic28`rz`P>il<)Ra1 zzn{8k{a$?V&SN`L>i9lhc-C})31AQ!7#Rbm8ZaYilPV=nSCsH%4WJ`7o!ozqt;f>-e^YHicTPl5o9B53rtDF=}@5CM~Vz~uw_8uRQe}hVV!X2YeoSEbx2U$&f z+8ZAQY~kYUgKp!yyBeCyl#TObkGuyp^U@Tdy6y44l~I%1JJ}`a_NggSQdXV(kPshn zEiJ7;nxfueL%VrZRfD#ZuWQq4f=uvuYJn3&c+>oxuV+Wzf|^YV##6H|v!##_@C-uX zW!2mR+d&*EA#m45w*tX@9-+80LyjraZ!Q2Tz$|H{$qL*up~Oe?ZyPYo3r9TTW9+_C7bnft-ox$yUoWcoJ+ICwn@F^$14whX5#tWhnJuK&1jwkyN*gEg%p~m- z6T~{Kq>*V0!PVc;oO?cKixhgeKf&T!dKN6e>sPZ%`O%QmYn72p}G7kyhJcz|?X`}6Qi%jKEm}~KP zY+DzhL_`slYUA6KO*EDl5XQ=VWL9H**&GuPWl~k#H~j8;jJ{0rYWAghB3fqKuvmi| zCnnqLcZm+-$YDT;p`V(7jeYIeT-}@OurU9VvAo6U>BOU9hA=>##0pes z!0`yN3!n>x5obMA&z!+p%q}T%5dOUM=!K3{(zw`!a^V++0~u$A{x?E+C%J(VsU>e^ z`2@@=RCdi?-Pf_5o&4VU@vF$Ez5zEdRO*6bJ`cfnHQ_3nb4ctfd*7ZpxIOV27<+3l zX*d22Ee6AGa4Vzcs(oEX?6=8D5+SOg6{wOT5-|8ne|;QLZ5kvT=ix{o(|$0pwOSPI;djZKYqC;_K3$ z3?A8kzUzAeF|9MiG&r|)kQr+}^0k2f0!oxQ4t37q2y7|0w7;x#7vkaK-?%Y!MZezP znkaTdAk3)dMCdH>j4lOUSucU(qY(}ei9Ayh61q=zcNd#HPc72@!>b$mJ920d>-Ni2 zAzCq=OM612qhl*l*-r*^1oawS+fE!^ex(UG9ILB`#3iR{m@yfONsPxnW~UhIP$M{* z>gmyp9j%Sqv*eJcL_<&xR&5*CE;PCks#7%wu>_+IDZOvN4`yF1>Y2D=>F`{`HB+ZV zKcqPA5|9)3wMJYq2lPgqKd{80zk@{NK+96H8N3B$Eh*@bY8?rrEiIXWYmSZ3fZ-n8 zOn#8icH`Xvd`3Xri0t_&e*ya;9ywo0Kdu8{#hcqJlpuEr$?ScTPh0;=!##(J$|wd! zAEUpZGH17+sVZg>xOcqJ5d4cEWTI5PY`8%Zi|fxEe_x8}Ye`*7;6d!3dfK}FUBnb` z-90s%W4%?BE2l#1ZYWHxgpT_Dw|3^Y9;^U7vT&(gS0PG)7A(a-$4IBGCHc(>Lhd}x z+UJih;(HCYZX3;`{#7)1;TDqnM2mm$rCcS`Z=$dcq#GCFz(7~P1n zWDFV!{fw*{XjK^*2&wFm`L3?D4mEo zKq?Lt4N?$k1Y9ks<?O4ATI1C*a);tbx5eL36I)a=sHaM9 zxlT?zqp=ck-PK3x|Cgun?ewS1!UQhRtg0%b>FcnSPnnaG&UcS(5UnnbYVeu5DbGxK z)}Z$G2NgIaSrGjP_sisu_aw3h7ttjH@j_?3u1?n)DeTd>EXKRr<|n1v-pFvIbLYNi zI9Jmj?h71bMU9e~1z|yeHo0lYNnxYu`@R(#Zf@ejs>h3YozxP&io$EG|H}n<_FP?B z=HbUppW+YUkI3#mH`IMaaFFz|V#_!m}9vU3HA!HPfbG79{n)``XMEg%=(( z;B{0CRju*y`p7dE@KMDR$0H{Xf#&4Kawt}Lu1R}2#p`e#AFi9iw_vrq2~0D_qpaAD z^^t7w83dPXU$9k55%Hn`rOv-j~M$>ZH`sM1Z%Gd=!@tKHv_7ZV@KB$AF>+KNFb`wX4Zy|vc~ zQ7VA}oMy_(_}`7+apL055MnTT|K}-EdgYBnUFjD!Ev9uq_|I`)+BW47xyD=U?2gzM z##=#CHF71C!Hk6Jh>QsfZsxvscu>o;(N}Iw!hK?Qx^Ikd)vS2J%lnA~8zn>n89^LW zjsy_wsAqYROPQeOnJih|kcBz+50&zLGfW)t=8nkH8V9A#vh{JKADm_o z;b2{H=F5QIF#9{IL$#-2;!Ao@lN5F&=f{fgPWB&3g_9Y)F*dGF!y6628=v(_os z_p4s2Ft!C>a@jn^_SPlge|WSo>G(QFW16Ip=PyBn)K}q4PE9lUUa)}N4ljfCMF#3x z-1g2L*@Puet&NrQ!l<2w?t+|yGXbj|VghTwR)v7&WukKSp9LXaKr1K%KieCDJd|FC zU<4ISY}0a$^hq02T!sm>aP4VnX(5o#5sX1yVqyD_4Q>WRa69CGV*#ff7d%@5IRL)# zv%Ili06x23UGT&10;lDS2{j4^`asZeRabKpO(%ZzPgXm*^8Te`H(#`{$HRg`rUX2-p30EE^OUO83?lchznW^kMoBxTd>FT^kfli^(` zy_31XoGm0-4<-6X`>Vl|{1^u7ah31mdsIMUn(=@RBr5r)q0$U803;Wv7`AY9Vw3OU z>!eyOPGukoL|kG5v%yd70mRhkldZCmR&hzAs|NReS9h9=9j$~h!=(XW%H076Yr*7Bk)g+6nOD3BLg$Rncno%LE70%GXCr~PYGdUbV8;a;(ByvP{=IRdm zdFNfzuf!O{z$Y>l$sE7-|k?yG|1pIXy-%_-z+`qYcP_ zXOB(J^Fg!DQ1bj~iS~V}y^8}6ocjXfLaeMfvC5DG0E3nIO~;%%SZT-Q*DtU21#3c; zL%)3!FKS~1Lu}A_wZ9JN2;_4$+o==kZSpGX8tCXeC2v~VcT-SmO;l2nd->Uakt;jm zF2P8bYu?+r>VTrh_D(5-1=F~inwl}d^+~^rhbIOzOEBh5faS9SJ8{TSs*A+NX6G7k zLN`+j3yT)8aUEXpxo*+}&s!IF4-a*I+sPm+xXKtw!aB?#3MVu)6fAEGUl;nXxq&mg zrC#N7AU~%_+=?!L2v!%4z76PzXD-+jWOGI-wrv8+vSee#R^m>A@4PrS`Yo{nUz^3l z<`3UPBKa#(<{G${}7ObZAeK}#ybEwK?PMO~*lA zq!7ggEJzoZgJUb|!+q=2gy@ZtEaSdp_=E}mB7WeRodUoh32`Ku@C&EWBo>D&ZOlJm zc`W@C9%?cSR97sr+`!=O<`y;s3&Xs*zPz~ZzP$F-L+l}wf#d~O@XwN0H9yunj^wv< zaCjaW5zz@j)9f(Q0LechL^fod&+*nKHhG|)V(L>ZEegn-`~aH|l0xssZ3y_&(iK(w zZ4YwljxOxfRL%Pd6~vQx6>PwoMQa>4MxEggw-F$g#)SIVn%B5D_6-1)PXTL(ft{|E z$diaAeV*i-xnaV93D_zw!AW%EPE4Ppj6g@nwx%Wt+nYMAe3Xt8IjfSIi#qFYZ|Gpy zqI#Xz-BCfV$vvse-d=A0@Gv&`XH$_H1@=?baQE`dPN3pTn`3#E{Q{l3O^6tjf6f&AIr~{Pb4(M~n=yUGBf|xu! znrIm{NK?UvwhxXI6yImZw^)|sSk6l)@N65&x`uW-t`=M#JmJ3UQt9a1dawRB5!v%s z2Hm2O;!SgDDPeh(+HCv9Z`elY^W}JKyY}P$UV@J|%r3UciHL5Aqr0DMJQH~QkUr4Q zZ#OjLi^-6%>mmZC$J&isdH4N;nod`rm&+gPAc?=v0H6NJA$di`U9!DmaTI_-xbJ;=H1!V3zH;)qnVaz181Bs_VsVI&g9NLq#i;S6Fz30n&(C z=IXiM;Z@XEyf1$g`YN@~o+b;s?*|>ExV&&PrCKdXd6&%h&b_&{}7S~i6iA#0r-a%or z5MUh8oa&5RzS>y$nn~G(MV4tuPB`L?w2yexx?R+1%Ppr%es=s=X{d8x;RkWdY$&SpPXptCsxFg7(>Sn z28Qd>(Nwi~d@%+VR!+cGj7K2ez8Do#w9GhMW>=Fj3ikFKU~LSZ39f0u)0Sv`6}B!e z@CWY)%gQfflr4U9bzDw%w!~BAbB{(-8KC3$6pPCF5V!S>h`VA{tY=CN2{eCiq8@hHV}l} z{;%6>lERVavfg<%9(y&LHFI2d-j^BbZvFdO@R~V?D^B@LILDEG=s?~z%|@Kzo>ro{ zo!Xcg7ta%l@JN-hY3G^#2j78|WDUtOAA0-yJv%A@+?j zjF|KQ>qAthsp1&EC0jWt*2ci$k?MWTTps^Ere^c{whgpCy2fXIn^jCToPvTLU4YRg zPXLX>69$|AHjB#2fx#<`CqZ@ShUUM_GT%_!b+F>tq5Wo1QHEbr|&6LY7^ZNmb>~M(_ZOTk- za{woiP5z66my4s0FNsfb%*%xczBy2K(H1Kta4_u6S0JIB;qHvk>QX@lot0yCahM^L zBw*BkUk+ePJ$n3#w{Is(SGw$k&CpO+MJ?`@DpogF|`Pr#~U3gPc6U z>(FfPduMoZNrQJ2>K}<8EW96%Y1HF?5f2)URB>AXvo_)Q%JXw>E)3RhI17efzEb3z zXU1MhqLVwq)a(u*f~2)jEdkvFLXW89k14RxbiUdmK{1+j!~PCadzq28^tHIVTjqH( z1NFmNCB?Z~?)MIN1?&a+osVygeh@mOqcU(x%6@gy@y~c@K}TzJr7w51kvndq-t{bh zT{6w-&lQJTJpa{1VH}(F&&G~)WAbb5TAOsQI-8bpm>=d#{{8y};o6@6@^Sc?@<5sB zH6;NF3B_yOKZ*Oy4vmGl;}+E&kb1&$x*Ve@V{gCj0)Q*Z$)D+^NjL*Wf&S*bv$L~M z1RjySP@Hao#{h@4OMtRF=nxkB$0f_sG|Tth(0|knVHTvIvM9R)^UjMzwoDd{MG*gN|i?0Q=d8W9KvpIbYgB`Md97yEspHnTO` zfe=9#5FFfY#6iu$K>)_WV0%8ibp&%SG++yfWZ)3tgQN)pkltGie+9OSfN*I$NnjL4 z%kh?g(aP%X>{V|+^Ar1@)<(p7g@zFT1?gbs z_fZIh2w;5_QrUa(x}@-|Y{wLmym%4VMHa~{VL_MZi_)f!VWFXpu-(U?{z!xRYG?1{ z#OEeVZ683QO*Y*|S9*5#@@FuC{^^`9lB#9DHCfgI)QIxU`OgOy!|w6k5f(cC!82JFfY7n%ae(@Pm-TRfI3MlAm<_4=*+mNh(? zayxh4U)kN&it+yEEv+p_9#5eB=hv^g1L)LGjN3|!)R=;sxGf+23W>r?Thd(pw>{gV zD)k;H#oeIgVU6osdBsIBkPfhekEFEpP*$ur%x}&rl?#M^0-uNZoPZga((6DprSJVK(0WL`g2BZ5>SPI!kM&#Pb-xGl(&1_M%_^% zaE%abI@Zq)t}DqM0U;R$4O;`k;2PMmpSh;x@oYV1K<%~_|RzpPo)s6{QFDZ}nrN!z-_uIq{=e(%YI;p$-#RW@UEI(b`(&oP(n50D%z8E7< zBbG;y4KSaR6vb=aZq%;7!_@3Ou0bPjOV?-bCJKmuBUX=aLW{KF;x~u6trtJef4l9Jv?FSTM)V>V} z1!cJtfozv_XLD-`>W8bnr`g%1dLq|_#x)Q6LfPy)Ki;`HCRiO-euuoNLx@J8im89f zeLj}6G3sbu&-FTqb>P}2tmyD7I2OZ+^y^y(Z4jbdkkD7)B|`&UB}U<%ucHDCmM-Ndcnn;GF_BM8OOR-*AosYYb8PC9kgkQY-?Rbw0v7%rA9#YA} z`0s*e*xaC zdV^IHmOTE-7FMQ^X>i|7@cI*VKqIX31|Z*j-#j{N1cp({FFtF=9Ihq&jRuqi#%P(} zn=qN#f}oZjQ2TKCCdQ6Z_x%eWU!5#`%^-55p zFOK{8@%Ps1v0~vP5Uu$5_=s?GPt+Px8^BP0ad9z^;Zx77MRon+eABX7>O9{;iHm6B zp;pV9uwn{dTg$)SVP^pU)FSc4QpVx^RzRO-ha_ln<+|Rj-H^VsJA%$RJYm?h_dR!! z&gVULE`hIgARiD#W=f+emt$WhL4yH#1n_v$q_W*IJ3Y?dQwMON*aAA8qI{N@y;VrV z%S#H!D=sr&2#q^}XYXg&@>Po_hYnT;uzF<_yVk-;Ymv*5#h9e8M3|Vi{G2Dtu3hcb zF3ZHx6Zyci#I3CPj1hiaSUQW)6W*0iGj#g6_7KE(!wzy_?hB+RDm6ZmgP{i1V*+5d1d)MC28SR9@cLzyL3EKd~D&sWwgYc)ZL*;WUrGbx*(n zq?Ci!J9+i$SzA;hvw;S}jO1b&LPP za-5>y0ONzi7eT-)@H3u1FZ?>|p$k8?g=jwk5*X`02E-0%XCH5$i!jJ=Jw{ip5xHN=B$+<^~)pQ-xsiuDn&1%CYd>u0maJw0R_Cb z?XW&l0vRFUfiRQ936+r1`rlM>=LotTOxTkD zPEUnxOCVMjuy`6DpX)MUGO=82<>g z5fIin!!?Ek8?bE+5u~20Iua(-r^1gGw&wPh`ej&jMM8S$kl*df>ru@A7)};VXbr>x zdHht87|hX-UPml3N7N|Gd*F#nq3}sCG_7<$EuWaXQt+~jdO>C+>o)(!b9xC4@t7c( zO?&>!n_-W1)>Pf3@qSW4Cz0GZvq zynp}x9Rx(Jt|X`A#b&{T3C1(%=;(Zk==d|vq-x_;5-(XyEa1(SB@dWvolHmAAu%S9 zN}mWrTPEterWqgjG>?<{V#miy{o3GdDdSjGRooI^8$>Gx#xGzas1c|L8#xBDAh!&< z5J5vC=fzAphj`SVpBotbYWt+;O%8=#lR=k0|JiGr014;y;a^)|mCxt` zPXrJ|B4XlSki2x53aA{uxXk0QoH_m$CaQRGUlrZY?i}qyb|EgD!v>X_y@5Q7_)r)}H+M@Zm#4gasNJ znmhQUu)!6(xTdZanQB0G3l$ZNO{pQMAXa&KZS5KBCt7y)-LPm{>AyF2%%!j8snVN- zYg4~wkzDvFh%b}HJ9q} zRuo4E5KHXA*CBmX9cGjK3lA;h@8Dhy2`)u-aL(2yaaK<2B(~YR=fSy`v@fI=j91b7 zGDbBTB4k9_)0X^kMPzz(-qblV8nN36d3_paLJs$4IVxd-z8{*fzTB z&6l)4d46D0jeercedqZ2(B)IePcmg@?qp@iTMek(t{KNY*xmINd*I4QqYdsUq2#lz6KcOnC3his72X(5za{!XfKmEGQkR?{ z#OMO55mo4mAHtO?G^DKgC6l79s!LdIAM9RXov+{%~L9aIenD`9%PszOrShABbDlk`tnZyRl2NOtN^Zf%ZeP%ON43Gj66&;NP32lJl0*QL= z1k$5%J>Ngu%kLo#kpKZa6az@A_i(y~9DTVb5AFz;J(|i~Q-6FBXW$>t%E1=GT zaT|U+JD4#1gh0O>QeD@~JwR__C`Z7w>n^0Z4Ff|CfrpRp2VGUx*RKg|FkuT0zU=^< z(%ATT8lZqcs|BVpJjkviY4dvy8+u6pdiQ6*{GQOae_x9+j)tBd9h~#PX7CSOt!LJ= zH6^&zM(jC<+II_XH+ENkKpEZ1+h^8iTJ`OCAq`YZLLjR9tlI)vJQiWQ?0z)c zrD}!yyJEK6|EQbJb;YJF#ii>sRa71p-DT!w{}3@Aj~j8n#F*t9@MxWm0k zrLNJF24k2_L9B1gb>sj&8ffZS$wf*z^_wUvd-2G!? z4(U+W8IYj`;FUAKO^wob8?0bPr>19Mu#<^VK6_04+0E0lal&YOy7D$$!O{@^119N4 zZ%ZjRsjBXcD=>h;>Ngm_{oSgsVV27o#g}c!pV)i@y0)$d!#1J+B71 zN04hUP#H6OFI}Ex!EScpQ+7G?EDIf75S$GfAF_|6-WzK&>ox0;+`TI($r$JTkRSw8 zo^FgJRe?8HdGk65 z37&EV{B(3u!4+W*?Zi=_w&C5LZxZBt`0!?GZBj`N6d<5C0BpjZ4CD3pt*}I$ZYGhX zTGfotizb@Y!vFjL#vVN!e@0N#Lf{t<933|yHot!xg2Pp-85dk+!~RQr&%$xP(@H_b zMiULGlPkdi0ls)N@^W&8vY(PM#X#aoG)ut*r5*T0DFQB&-mY+1$YB=fmo(AjJ&GqD z|6YP7M60A`UUpxI4QAN>Wo0`Y2w}>R%vhdRFkw0HaCGGQ7!%{eOi%Ah%fy6*-EL__ zmaAANvcJEt1aZhFaU0d)7-Xp8CHTcbN8=|GRgi@P3fh}6Ip~y{?3U2Th26QHkYO+2 zi9=t!6IzvUWx8Jf5|=M#a-C5krL@{|bJ;HuyEOV8WCPQ+Np=!z8wfV#NAY&~!k< zKQSnAytjAS-qj_22+d6rEEdVDtE)s3sIIAJn!Oqd%FC6OK^P93)Vtc9pP#?%4wcZq zb*R%CHRC(rI|Js01(_R=-ir_CA80azfiBlr2lxhqR>@>^?45hyBP+gtZ~%$cez4AO zW}Id}%BkT#fnx)J8wkA$1-(*d^wPht2AY!;#uZN_>*1Gjq!8f7wIcS+muIXPY zgy1~Kxyyt_*%i{;Dv~ZZi zPNs`kYSyl^f3&l-#Q7&qUDseJRqzDI_k>0H+Tl%k@4Y2_L@KkO>8zxN>T;p@t)gBw z>b{Co5HA9e&%kR4${Kd|s5Q4Vl?%$}f)=4l^eWyEm39i(t}6--4$;C*5nb-qbhGgF zym%a@KVg{^*=(Ppy^Ux6&4;sgGlB)1Da<)yy5;3JxV`)O{6=W9nye*G0A%w|L8rR3 zRdbc0(BO6c`7`_D*Q#vd4=^z|UVR=50r~Jc%3@q$6XRUVPQA=ADRab7WonB0)6HK0m5F3UDD$_ctSfW zm@h6a7I$_cp@)|vA|aWq?7aOOzg)lVojXKbX*NJOxNuq1@k|X=O*l?2F4yOmOlCpU7QfGy`qwmLSe7ojGO_FXJKV#w$!#R^mewbMFD6k5aeb4)0R?z zP~Bv=VN>$q0ewo!z<`=nulWN=mOMfwvKWW%U8AkM)`(-}ZnNYm`mAi838|#ooqCTR zKIFUCRH3w&TUtM*ND!u3@*d2+TUuJ$1qea{GzP=rPJunD1LaQj-D^-8>X@0)cU3Sm zk%T=(_tRl5I}A|d7dXiAOV={R=MWFHn0su@dk#M3pgfZh7k_8|>sz2XR6k1ybYN%m zx_%45D29s5DWzB#K%zHwXOx+-ANP?~j1@xgz^sB@HIBS=A6+d@UFZ4KD4@?JQmq_e zQOak&r8)Pwp&c#aV`Wu{OG#<0qw}$OqJChisJ;dSp4ci!vx*mM5tpg|Xni4tyNH6a zt(&Ru-h|~MZKO3p{>9!YmGIj;WP2h9a5mN66>_z0dkgO^Ejd~H^N3mhxxrNFXAu7f z*irI+t=K3g0gnAofb6v*OW;{p!1Ui62F0KOb9V;QhiYvI=w2_SwSu9r3rKvKwn?fa z9;A-k`kT&@kenO_F2zqD;AMc72Oo&iU{v9VAPjWNk# zq9m-}3)~Kv)3?nykq}^Aa|l!Ve=tb}TkpNqWSgu;4?F~=oYzxya~%-8`vYQg3>OFR zXW)a3$C3uVTt9zJ=350c*7Lk9`$ z2FN$6>ds9#t`k5j%NNlOwV)D2q9(kcW3Zzc`jNc~O~==xrAX1gAjkLK15jm42K|@l z*?RUVV_a{hQAu31x>CSf-W{zwN*x_t+S^t0;j=xHEo*$*!Z^AXil)gL;KLCLJ{e1U zmnRD`FrfGa{F32~dc2oxDat>y>?a!a{_8ynFR^QnjKM_*l2I0@m>A&8YT9)b?) zJWB%rDQaw_4KdQedt(I5f>0|#J;o>jhoP|(sM3Kpn2 z?WzhXL;uiPdE=)b)@cJ4eFgN{=4%7V>b-U;RIR^YDDjr67z{9wAw3jg&Cn~N-CF_3 z_(4bE_2A6#iEu;$vvd|-03MX$^Q3pa^wU(CmiMwPb8pfx^Qu=s+=yo_u&I_Ju2Q$j zidC;uj}kj{Uh_F4MD|MtoocibE=nsaV}rZk=4|(GL)h4K-2uI~8u&AMLqgw9BlLYX>*ED6|DYOr z$QXwSw7bE-g@FN3Cx`Xla9Z21!&?-4T1Xh$!f$rwsn~mm5 zW|*I*f?wwg#Gk=KhghhtWRrNT3O~u^{I;)D%U+*YS~M`FQwwZqx#k0^V(E>syopJ! z3^PeKtk6z?RwynnFYhJUq96!DmP2J8ZYntww%w3pGh!9Y0O0tMl|=)C3W!;ZJ2DXf z0*8CkRcQ7ZbKfBLoja*C1R<;N`bDGWAq*a(xz!*X7&=$4KqtkCueHH#&e$YhYTraS z;tB|$h2bH?bAXCq+r7e*l;w>FBSmo%6xl4_J34wms##+WuEUQlvc4=e*r3dve$+D0 zb6J`R6y04~xk$k{AZa-nW%B2+s@-b&!&nnptjjj4KEl^MwAHY;klOo2Nx7A;-PHyFLmj%_@wq-<0_KQW_~3*RVXHrWF_7oP^LVKr zRU#-&r3yy)X((BSgzdm=K=GEox%~J0 z-0|pR_kAw*WIn{P0KK5|=Z7IiuuxIB$7%B7S)5$;XOQ}*g2g-;q;CfRJpKhVgH2oc z5lZxwg-Z0+i327zLiRWa_}Yd+24EFnawiD{-QN}#(i>nKD@h+!R#f~=Ry7NbhIda4 zj{IN(aAGl$RB|nJ=bm+S6~&zDIhy3ieu(=P)zE6JbG<=JOXlwT z<*c>HhXel`#w!ZROxp5t8+%Zs1>ul$NRZ>>+a=@CP{Qqb9}llJMZgI&R=Mi!6b^u+ zi*8ilWBnacE4pDQAnBGSYNj|QuB<%T4FEy$=!WAvAd*B!lonYp09C@96ZGk{jEWtt zD14{vNh>1_`N1PqN>AQZ14$6Z4q8`K(2VDsnG}r`leGbob=NgbdK_C z{{ERKjPu%nYa=Nqhe^Vw>&YuB+5){!vk`dANZ)`fqCmm?Lsc;awwq~q998hL@7~-7 zc`#+JhW)Vx{ZH~GJ$%9)`ytT3LuW9yUQj!3Q@f3O9hdA18A;4K5ugsWI zj$G9qU)~%|Q-d%8%*zn><}{skTkTK$3`pQ0v`NXVadOeAuhmjo3Cx+V?^cYm!D8&t1&&MFk@Jfp0l5^I#ml0RXQD&ic8)rbAf*Vp$TpIv*nf)yMV0rawtk!wKb5uI z_H&>rA{ji#hKW|y*bJZPKE=0wlpFsEZK>7He8t@u<)^u>Y&8X#i2VHc=(#&Pb~`Li zxfbX*mjC?uqZ>Qw0m$}76})+QoX*v^14|YT zo7|Q^*yoHmCXC7GD8=}4xKi*4aK!E)0J$w39#(n^@C+cv!4Uqg4|nu}lH7?V*B>{K z5XjMLfML*2Py*V4Zis!c4J+PiiVCqSlpdRyXwHj~Sh5Q3Ic_=gU6YU(a7;D9$h84n zy_o{UGry~ST03ok9e8cQ(iG}eUVpTndQhHZO_Te#T2Gyplj*khkm)ip`B#Oh$}l#O z;!z%lsAnUWko1iXOYCRv8HhpCWmN@C3i~?D2iSlZnXNLOchOR+5oFJ z8#+f7jznOcH+So^>omYSd;2Q)McvZ-N#L4lB52aqahsL<})w5F;gtk*aX|3A>us<`(OeGSY7D-c~ebB#{-y!78;xZ3t@tRnPWCi^9!x0E< zj}XpvZ_ecK1!cK0%HeXsB_>QWykFGknnQM39+E-8@*)@!MzGZWiW^Cfs!{&p+VZ2l z-P-x-GjH#LL48*P!5o}VzwQ3}ozozD?#2{|I>SSTws!k zh9h(w7^6yyy7r+9CCR+?mb2xDDA6hc)A?gw+r`eeGSHo3C@6h&%*yYNH=1scV1aeDFEsR0 zt`>+7^4YN@sx_(bz}kSnSOb=YB|I$Q)0UmUVe>S6^Ty}4lDWyYbmqnfsB+5H!^(U8 z+Yem5ex}s=kM7K4Q}DYu72Wg#$j*iTCV3VbRI26Bg|%J0OM(JR{9IKI;uB ziify;%%)ItaN5ndIgGKI8XvGHK6rGCL;L~iB3*RGrOSfBVCn1qp1nQRm?P03uPN!_*-bfJIfs`czn+C9$SVwc3qMg-+KH9Cs@( zH}|Y}#om@uJ*_Fdc3y1O*;Yvo>d{T`6)BbjHX7?tZ||msc13Yv#K-aR@lu%6=-{+k zi(5f4Nxsu`GXE8TY82n<)c7tS1^{ci^Nd_*XbDcXojdmgh!FE-h6~RCxa{eUR$Ze= z67dp%{w@N@%LJK98pbP!(m5OX@Puva!=f@T{!Txi#7^h`d{6Vld+Pnm=eTK>Wb|9M z{3TpvXQ<&CNGV$4>*^Dq@Svd{!<<(b3TOcNSwE zhAJ+D@ck3&(jI_^kHD2Hctz}!qr9OF_DWifK&^0t)Vmwp*p3ngcz~mH!j zU&4Iw!~C*h-{IM(M;BWBYzcos*A8vv10qanBFtz=eg)3_*4t{82>M&Gy(&NR@5wCl4AmFwmx|N7nG6Z#G!cfNk* z3&I<{uS&-J{IeMt0s&P->uhj;uELfw7;HteFML#2nniI2Oz$Z-$HdMs5GpS$Y;Rkq zYO}=3N^s0uBAfEO<0OCZfKu0t!gtbXxqFhxaJi5(u%O`VYgnCR90fe}jM4U!vNE2l z<)-UpRh@cUsD^r-UQr=Fhnb)*>UNj{15A56`n74yiAbQ+gAQH@t6 z-u91JnJV%(NfAtJ3%^_$8h9M`;l#MVh8OK^xrFlmN>5BhaWS){_X_d%*mxRgdI^-6 z9*c^7q-D%oyS&MnuL>4HLbphUM%duO_S1}ANaJ-40hIX_n(-^}P6dUr=!)ia?okK4 z2L{l%;!_VY1SjBdB7b0p1gJv&L|nWv0UEW068uLyARf4SK!ln?mi>=Z zZ(GPFo1^4p&yvg&85zeqc1eV?l@+pS*sF~2iI6R_R|pB&dt@Y(?3MAmeXrjizkhx% z{NZvr&UL-suh;#$pO5GBwv-}8DZ(Rsumu*|X|NT;RHqOux)pklq0ouu;Eo}MX^ik4 z;`2JxG&JnhuGFvk3$4OvuI?8M{41bH-_96Wg~#`k(~Kju7ff^=9oJZUk_9lNbkx)( zYe0oX`oR5>5b7GZxxmYcX(mf7Yk7Mg!uaZe=LF|a-3zW>EtNBVH)`RIaSM@xKr6Q& zpNR}0H*U@Ea5-n`Q3mrneZF^)b@OHbZnmI8%|&s_3sw0Y*YHV5Z0}~N#jzE2sgaJI z&CH7g{@v$5EiJK8n>jRdF$(O#$r;c%Q9);GDL0$Tuw@nG7C+Y|gTxyHtB`gVDafn`oQMD#g)k5uWFrzNOF@pr#SKBn7E_2@b=2f-+c z5DLZF%p~aL5|9$Mh9d~`h?*$j%jCo;N|lWn5OOR?*8c% z&iyrU`CST{t}@W#z;@iFp{>35EHya+id=?Ag!xBGL!Iu{`njhIMDvGTP0Wg#+5V-3 zA`hEc)fJS)n)JyypA%2qQpuB>_W7qyz-e%l@cVQ9u3R`x_?=bx1=-^G0!-EeMt|#* zPM7hzRccZrVw>Frq7O`o%8I2N2PPK}&ok$ocyA1jAU?RENC|vymg?#qyGeAgV*TUj z^)v+W-sX|$+Ol5#dttASk$LG3zN3Ej#ohJjD=CsK_`<^5Xu&qY03=9)9@|xlIkzP)SC7gYObud6+%Yb2+5|u<)lV8shn@p)V=)ga z4m+UZe|#1Ix2=-3oP$Mwf>7Hiw_VCllV;s_ASgE%C~eO=u(fT2TE>A0^iik7&40xF zNNSs6AxmMS0Ky+H78MM7t&#M|4FG9vzByMd;} z!^4{dgTmy8aa-tZ9Uu?sFe~57@JEGCh|t*&Fsg2tjsu|VP=M^iqY0_bM+cibXf(PB zE|GniH%T%In*Px-zie}1gWE0u!6h&=q<- zCF6|aWcZah-kW*)_z0+B5?)>apEw#MVdQRY?CXuO6goyhT~*^Bqtlw$iJOESgVayPm2jlL4!!ZmBsS3V5MRZ1k25RaTw?(g}r!`)f`_&mH_`n74>fq%Xw0tDBn zoT!TiYXrMWs7vr|U#QcV8kFnWCFq$r^YmB;(3E$s#=wf zTSuFFuJo^Kq#j!c(C~j`Zj53L6UsN7r$&;NG)Pv!yf{V?~j22SDz zS<6;ZD&%ZyeZHcRsKmVt)Cy(9t^2ag>X(2|hr+J5_68_%(7#T;=A_kX>2gD5yg;At zDQG|{&PV$$R#sL`Fj2D%D+^k!CcS*9w71`t96v8Hxy88bQSo3y}Nnl-uDia$HvPv@~J3uoRdI9aeOV|YU z5GWs|htl9VfZlvm6t6}}GCu+%=-2nQf|4q)InFeg7dC(G>Pq?Kwxp#m+2IQ<pWc&1+6u+?*8cnKyU33Qo6hTJ594EK25jLPlwJ#U}=%pEU)$g-19 z$#wWmKd=QoxtQP4L1~0sM zlaF&FdfS|M`{n;JX8Rn^W+)szS>+}aATO=GHaX-s+f7Vw#WUAI)dkYyuoFp(2yE%U z&a-hpBnezPP`4366bLdjdFB6BeaA{Fw)n_k@p9h~(%3m>Rip@9EzT(EW|&oaLUPNb zh!#;OcVySXv#qH4ZSusom9(nRltlU9DlG`4LU!_bN8}1hD{JcoWi~V?|8lEQ{S)|q#JQvzkZPUuUqiv3Y76EIKpkG>#BPp ztvpTCIDI@hA6Une^G!+Ax_ueZn@=?DHE?+TL<#3ox_?rKU;?0YIveH-)BWhyDJY;C z3=0jNgMA*H&3LHRkr-d#H#VSYaHdAa#+@=3fn(9?`upj~U!!wNOG}0(CNJQ(Aw2~T zfhpPuECKk7fZ*gv;(4~Ww;LvND`)F6gO<%ImAAape_J>ku$IGsq8jKa*A?LMsXh#? zsPamBnTi7gwZ zu@IMxrT#3j?q+(!>2VTDSYq>*ojZ4yx)XI2R=}i=HEC@DA7S*}Be~l98?R$9+_g8L zQTICu2sL;-GTGE6*2kszc;t!J8J$|~v3BneSW17JiryL0uuXT2Ym;LTlbxjTcJuOw zk7saVb1_t&q@0sYdW5uJkM2G-#F$&D z^WVOAaFgK&aObw8Mk$@?N$r}3?;84(l z%`nQD1rtcrybp@WJl&u!04e!Fs|_-3enRnE<$opcZq4gq@HlPoAv6 zL{Bt58GHhvp^+wSU}|nYWw1KB2Fs)ZKp8u`D{Rd4RFV~utYo%@GlK0D(thJ0~P9o!H*Dp4>g4&tN%Kz z#Mq>q5%|YIqJ&Uc*g*i(gd{o3()DMwPnzRvKYhYI`Z%Tw9QBLw@yOSnKutOyJ|bi# z{}S@`tGXcS(jrv!Xkp=YsE(c2XBC0_WJ4^(-qg_g^nNKT=#`gUqO+-sPIaCv$IO*a z{BgfyR^3?hvIrSD%5IwSSh6Aaq9z4LXdqBtm`qYnf`+77K_fUtZb5b{aT zTXGl}jYU(_(G6G!w3!wGz&j+*!$SmlnoypDQmf$YE#320HeX#$?fQzD^@6Z=7+lm? z5Rk?)0;pYq@Qa|{w23N@pmyy)Hhb5%UoGz#*ZH_CD=QdUB_#snz#Zfb-dlZOJiPdt z9MNhY5O0p3vJg4i0T7}Dob|J%?Hnxt=!iTVM1%9!5{l0EiHV7g#4YoYFm0|8*53?t zqXPlqfe1}5V7FjV!Hll7ywXxpD=nlFSe)NmoVu6e+PK4qsyM2APma9YArC1`mP%%$ zl`f2dEQD4e*Uxv*Twm=Ht>GM?6l)_E%_bDHPZ4V*kyvW)?PuQ#3v+XJXkwq?ny_Qf zfknsvqDIh6DaVha09~>e)nIs#z>YNwx^^qTs}`k3X87TI)f8=kJd7_haryV)2gCeG z)yaGmXk+fR?3d%NWDwoX(=P(sM0>t;T9K23gTsGM`yW<3H!v`G4vK+ho$o()OVCT_ zpfB*R0nol;KtP6?7vijqvvP9gfk|`8-kW~fn{akfe#Nc`)n(RV!^>xR*+tvgFRFAm zI2jM;e`hJz+>l9|#6zg|Vu}w20!7{Y_QGkyBJV0pFI_7-c@W9x;Ory#yMkxGWvgXl zt$`e2(+l2Bw)}o5_Wd>e3Rg`z~jt z)|0bHOWvCeLf|sIBqX$Ej?5op7X{6#uoPSqcAeh#(DYqGXFJuTE0K1du}6<9^I9E{ ztA}0p_4EeP-CSLN!j1hyCBSPaLI}H|lH1Q1*j#b;%#NR{7`ZbrG&o4e@IJG?-q#Qu zJD!ki4b+F3i;s^C2t8-S18_(qe_+vKeY0UpcmUjlzJ2?aE~!BvTmn22{8$talI_1UGm<@1X_Gf;m~r_GpzABwb`q8v{Z0;C zkfQw1ss#N6V(Vs0rU&Ct(!YU(VT&)Xm|?_HRIi&&cX9~iWi!F3%?F9Xch|0I5d1ac z(11|+$6VxZv8ih&S+y;u89EgDol9Dt(Jh&D7ot6W4GXbmlTex!oLVm1HXSW*sixOV zhzgQ6-O;1i%K50UQ15bBL>h7H;|P0UA#Uq!(9_C=SCh$kD=E3b4Sm08jW3YP6CfJK zRg7$_uccoZsG{gT?x#~-TmJU*YH|HnA0k~<9)kM!dD;(9qrQP8vT9>rbuSP!%vE3;Af{o!y=^biqoY4IsUy>z4 z1#UZvhB%$;t3TQp_;Gbrutj!Kv|KVN#HBS`NP&I2mfmy~+#eNZ@{*3J=|5*UtKVTV z;r@FW2m9qM6%`1yCT^n2bY^5=Fo2|hLYNmK3*dr7&i(uMqv$X|EJh}ETFv975<1J$ zYlYtXy*A9JeVPxD-rbi}!@eXouR~wP>jHWQOFra+Au|&F=8ad(1!LINpky6Y#&pP1 z4a_<=&xPoNwq>3^6_-MV!ZD9$2&H z)+-wZON{&VvJ$U66t~ptY`lTAaspl4*T+_saQ}Cm<;OiWj&SKN*s)1E#ZI|rC`}|2 z`1_d%obs8sX{GLeXD`2C71$~rSk(8EFWOdeZS)^%Z+++?f4Jc(BaF;4;(NB$!k)7A zk+J?gT4>RDtU=gd*)#bN8QkW0T%*>9*Ak0ooo-Z5BqF{9Q`05$?)AZz9cEB zi2r!A(^7y@Aurgmm!o{#z9aocWkt8W-&Ymcry*^YG*Rp~a3U^kEu9RpoQ5K)!O<>s zmo?B?@#^@e+-1&m#yNQaiKp!y9jDnqKZZGH z1wN~Vm9%F8`>m}?;E4kB*geSqJ$(QEedWsP>ekI~AJ0?X*6bMOlTUR=IHlsaJeRYR z8u%eH8>Ea=G~-LopqAbo7KnR92YUh!b(fEye*j1Yr>r<}$|iHi*Nm>XSUJq$9O8L zeg)L45;z74Uns1Z6)uguYBBxbxnXrRMaRsH0z+zlHRX{>G*zEPg~@S|T;-VkRlqT| zK?^knXkLWv!a#wE>$X#7TPZxfgs? zdsFC=X5(i3b5zI3cfz(* z)~)dUVwpULUHRs(^%*TD*{98Ozka&2e(mDNn(7gSiu{@oX3ona;Cg9UlEc-wI9EMy zb6)dMt)c4e^Ow?En|bakM*S<-~9y_6V`Ss84pn`gKF^mG52;#uAb0^B$P(@(mbFj6i@XCiP=}v%F&Z>LN zB!vD?|5C3CQ*Ew}Ee@a(TiKN*QD`%*sA;+Z-bz6mrU&%d5&`#Kd)H2#XliP9PsI1@ zqBddDn4&ayHA!-D5#Bl{LJ{A;8E#WRlGdb6_qpq#;v~3h&D*UF41@hfcdkL(b0W6)FQ`N+UaC}e;^#)$4+{B zaU+GU;19S8*1tw+n28Wd#sA}Nu3G>@I#7@9f2SRQavXRjDIu|+%B`WUUSn=-{N`Jj z#(Kh}s6~_ihs{mb^yb?ao5!YT%A4@n_`~~Y-{t68un_#ihDM|L+a$3*JWD2(j0XJ~ z?>kyu54uEO>>KFa@#MMJlrcm7WX6xnBBQY3QW7;0PV(!nos=J7U)_Vm+t;?e_9Qb zcVl(OSHj$|z~wQfbnhy0rSqs?F-klhwh*cN-8ICen@AJf3C}ED!xy{LQ&92e|qyN&x1Ffk#*zuQ)cx@c7 zb>>7nTtf3oKla4dWjYg2KYh$$=C(Z5mCLLq7Q4^}vTD>Q96i&IR z&D(iG3*r`yjd!JjYzK;d4)A)E_;#vHED<065k?(EEUZ0O_1e|5@$}(s&Ppoqx>-+0l z;agQVMTAm*^~$O(n$&(BT~0lBJ!E12`tyr{e|&q--J3v)=fo0aq=;B=zg^@BULfndGHA3J+gmd6|NN?6 z_*2y^&sqXZnT0Z03^hhUMdo~_lNIJgfvWL%aM_&a57{eRX%@qmIeL!HZ7NN$_lYNZ zf1zFbSh`RMJdoQtRDSRR#RYhmkda|c^+>?$1Q%XP?=KE_t>VqFmI?FkJDQ7xp?X7P zyEdy|cykRjY?aXI^EEfeXaam_F|HT&ch_`tWbfzM2%N)5wa2QY(_bpa?72CmV$537 oZsy9dESHgAPvq{~ogzA=YSCJI_&hhy1Az}UWi6#5j78x80X-&Ql>h($ diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index e0bd1a4764b..9328aad964c 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -49,6 +49,8 @@ class INFO_HT_header(bpy.types.Header): layout.template_ID(context.window, "screen", new="screen.new", unlink="screen.delete") layout.template_ID(context.screen, "scene", new="scene.new", unlink="scene.delete") + layout.itemS() + if rd.multiple_engines: layout.itemR(rd, "engine", text="") @@ -59,7 +61,7 @@ class INFO_HT_header(bpy.types.Header): layout.itemL(text=scene.statistics()) - layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") + layout.itemO("wm.window_fullscreen_toggle", icon='ICON_FULLSCREEN_ENTER', text="") class INFO_MT_file(bpy.types.Menu): diff --git a/source/blender/editors/datafiles/blenderbuttons.c b/source/blender/editors/datafiles/blenderbuttons.c index 8b8c349e851..aef50e4fd94 100644 --- a/source/blender/editors/datafiles/blenderbuttons.c +++ b/source/blender/editors/datafiles/blenderbuttons.c @@ -1,6114 +1,6087 @@ -/* DataToC output of file */ +/* DataToC output of file */ -int datatoc_blenderbuttons_size= 195438; +int datatoc_blenderbuttons_size= 194590; char datatoc_blenderbuttons[]= { -137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, - 68, 82, 0, 0, 2, 88, 0, 0, 2,128, 8, 6, 0, 0, 0, 64, 11, 6,158, 0, 0, 0, 4,115, 66, 73, 84, 8, 8, 8, 8,124, - 8,100,136, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 0, 25,116, 69, 88,116, - 83,111,102,116,119, 97,114,101, 0,119,119,119, 46,105,110,107,115, 99, 97,112,101, 46,111,114,103,155,238, 60, 26, 0, 0, 32, - 0, 73, 68, 65, 84,120,156,236,157,119,120, 84,197,254,198,223, 57,101,119,179, 37,155, 70, 18, 82, 40, 9, 16, 90, 0,105,210, - 69,138,160,136,130, 8, 40, 94,189, 42,122, 17, 5, 11, 54, 34,162, 72,141,247,122, 69,192,159,136,122, 85, 64,233, 42,136, 94, - 17,174, 20,233, 2, 22, 64,122, 79, 66,122,207,246,221, 51,191, 63,178,103,221,221,108, 11,108, 20,113, 62,207,115,158,221,211, -222, 51,115,234,123,190, 51,103,134, 80, 74,193, 96, 48, 24, 12, 6,131,193, 8, 31,220, 31,157, 0, 6,131,193, 96, 48, 24,140, -235,141,122, 27, 44, 66, 72,200, 33, 47, 66,200,224, 80, 53,157, 67,255,107, 93, 51,148,229,234,171, 41, 15, 97,212,236,239,212, -156, 17, 70,205,134, 76,103,255,107, 85, 83,206,111,168,186,245,209,244,254, 31,166,116,134,116,222, 95, 11,154,193,150,189,138, -116, 6,212,190,194,227, 62,227, 79,146,206,254,215,154,166,247,249, 19,138,110,125, 53,221,211, 29,198,116, 6, 61,239,175, 21, -205, 64,203, 95,101, 58,253,106,135,122, 46,249, 57,246, 51,130,173,123, 61, 32,212,103,225,250, 24,140,250, 64, 41, 37,110,250, -228, 90,213,148, 33,132, 80, 89, 63, 28,132, 83,203,201,182,112,107,122,237,207,112, 49,131, 82, 74, 8, 33,219, 1,244, 15,147, -230, 54,167,230, 85, 31,119,175,188,134, 69,183,190,230,170,190,154,225, 58,239, 27, 90,211,125,218,213,156,171,222,154,225, 56, -239,125, 29,247,112,106,134,235, 90,242, 90, 63, 44,215, 82, 67,156,243, 62,206,159,171,214,245,214, 12,199,181,228,173, 25,142, -243,254,247,208,148,167, 95,205,181,228, 75, 51, 28,231,189,191, 99,127,181,186,127, 22,234, 21,193,106,200, 29,227, 60, 0, 55, -135, 91, 51,220,105,110, 8,147, 25,202, 91,226,181,162,137,240, 30,163, 25, 78,205, 25, 97,212,188, 57, 92,199,168, 33,206,119, -119,205,112,233,123,235,132,227, 56,249,210,188,218,244,250, 73,231, 85,225, 75,243,106,207,251,223, 75, 19,225, 61, 70, 97,185, -150,188, 52,195,118, 45,121,231, 55, 28, 17, 12,119,205,112, 93, 75, 62,210,121,213,199,201,151,230,213,166,215, 79, 58,175, 10, - 95,154,225,120,134, 52,148,238,159,129,122, 69,176, 26,138,134, 48, 66, 64,237, 69, 23, 78,237,134,136,226, 52, 84,164, 45, 92, - 81, 28, 31,186,219,195, 40, 23,182,104,147,140, 51,125, 97,121,163,253, 51,194,174, 37,118, 45,225, 26,187,150,124,157, 55,148, -210, 25,132,144, 87,195,169,121,181,120,107,134,203, 8,249,200,251, 85, 93, 75,222,235,134,227, 90, 10,162,121, 85, 17,102,127, -249,191, 26,221, 63, 11,215, 76, 37,247, 96,229,189, 87,161, 23,214,168, 88,184,105,160,116,222,252,103,200, 59, 26, 32,157,132, -144, 25, 13,148,247, 63,203, 62,101,215, 18,187,150,194, 66, 56,175, 37,175,115, 50, 44,105, 13,247,121,238, 75, 51, 28,219,112, -215, 8,215, 57,218,208,121, 15,231,181,212, 16,199,254,207, 66,189, 35, 88, 13, 93,108,114, 45,107, 54,132,118, 3,229,125, 59, - 26,224,237,160, 1,234,117,109, 71,248,163, 2, 51, 16,198, 34, 71, 57,207,225, 76,107, 67, 22, 19, 54,196,185,217,144,231,123, - 56,235,121, 52, 80,222,183,227,207,113,220,183, 35,204,233, 12,215,181,228,227,152,111,199, 85,166,213,215,254, 11,119, 17,118, - 56,207,205,134,212, 12,135,118, 67,164,211,143,238,118,252, 5, 34, 87, 50,215, 76, 4,139,193, 96, 48, 24, 12, 6,227,122,129, - 80,214,208, 40,131,193, 96, 48, 24, 12, 70, 88,241, 91, 68,152,146,146,178, 81,163,209,180,244, 55,191,166,166,230,114, 94, 94, -222,128,134, 73, 22,131,193,184,158, 32,132,112,248, 45, 98, 46, 1,160,148,189,221, 49, 24,140,235, 24,191, 6, 75,165, 82,165, - 31, 59,118, 44, 67,146, 36, 56, 28, 14,216,237,118,215,175,197, 98,193, 77, 55,221, 84,239,250, 91,141, 27, 55,222,193,243,124, -243,250,172,227,112, 56, 46,230,231,231,247,245, 55,159, 16,178, 27, 64, 58, 33,196,125, 90,192, 95, 0,121, 86,171,181, 75, 32, - 77, 66, 72,186,183,158, 31, 45,249,127, 64,205,232,232,232, 3,130, 32,164,250,210,242,247, 95,146,164,179,133,133,133,189,253, -105, 50,194, 75,227,198,141,119, 8,130, 80,239,243,243,242,229,203,126,207,207,228,228,228, 31, 57,142, 75,174,135, 36, 47, 73, -210,137,203,151, 47,247,245,103, 64,228,115, 62,144,136,247,249, 68, 8,201,177,219,237,221, 2, 44,239, 87, 51,192, 57, 31, 80, -211,109, 89, 78, 16,132,236,132,132,132,137, 6,131,193, 4,128,242, 60, 79,227,226,226,228,180, 1, 0,236,118,123, 81, 89, 89, - 89,135, 96,122, 12, 6,131,241,103,192,175, 73,146, 36,137, 51,155,205, 56,121,242, 36,252,220,231, 29, 87,176,189,140,131,255, -219,156, 16,153,144, 8,187,213, 10,109,163,120,151,118,193,175, 71, 96,183, 89, 97,183, 88,208,180,123,207,218, 13, 56, 28,104, -223,190, 61, 31, 68, 51,245,245,215, 95, 79,136,140,140,132,201,100,130,201,100,130,217,108,134,201,100,130,197, 98,129,197, 98, -129,213,106,133,213,106,133,221,110,135,217,108,198,150, 45, 91,130,165, 61,117,206,156, 57, 9,122,189,222,165, 39, 15,178,166, -172,107,179,217, 96, 50,153,240,221,119,223, 5,212, 20, 4, 33, 53, 47, 47, 47, 65,161, 80,128, 82, 10, 73,146, 64, 41,245, 24, -188,105,209,162,133, 53, 72, 58, 25,225, 37, 99,206,138,175, 18,162,212, 42,216, 37, 9,195, 59,181,112,205, 56,251,193, 26, 80, -187, 3,146,221,142, 86,147,238, 7, 0, 80, 74,209,174, 93,187,128,231, 39,165,180,217,156, 21, 95, 69,135,170, 89, 92, 92,108, -108,219,182,109, 30,106, 43,130,250,139,240,164, 26,141,198, 4, 57, 13, 50,178, 81,225, 56,206, 99,216,180,105, 19,134, 15, 31, - 30, 44,239,169,207, 60,243, 76,130,205,102,131,197, 98,129,217,108,134,205,102,131,221,110,119, 13, 14,135,195, 53, 88, 44, 22, -236,219,183, 47,152,166, 28,185,122,253,150, 91,110,121,248,171,175,190,210,126,241,197, 23,218,230,205,155, 67,161, 80,128,231, -121,240, 60, 15,142,227, 32, 8, 2,122,244,232,241,151,169,252,202, 96, 48,174,127,252, 26, 44,179,217,124,174,115,231,206,212, -249, 63, 69,165, 82, 41,220,231, 19, 66,146, 51, 50, 50, 78,120,175, 23,172,232, 48, 50, 33, 17, 89, 77, 98, 1, 0,175, 92, 40, -145,181,240,207,222, 55,184,150,153,153, 91, 1, 0, 80,171,213, 32,238,175,205,126,208,106,181,184,229,150, 91,160, 84, 42,209, -173, 91, 55,136,162,232,115, 80, 40, 20, 16, 69, 49,152, 28, 8, 33,208,233,116,120,237,181,215, 0, 0,130, 32, 64, 27,161,194, -228,222,221, 16, 1,138,247,142,156,130, 69,162, 16, 4,193, 53,132,162,169, 80, 40,112,248,240, 97, 8,130, 0,158,231, 93,191, -242,255, 13, 27, 54, 96,244,232,209, 16, 4, 1,106,181, 26,248, 11,125,109,113,173, 16,165, 86,225,239,139, 63, 7, 0, 92,154, - 63, 9, 64,237,177,219,247,248, 43,174,101,154,253, 99, 44, 8, 33, 16, 69, 17, 28, 23,252, 59,145, 80, 53, 75, 75, 75,141,247, -222,123,239,206,200,200,200, 77,149,149,149, 1, 53, 41,165,184,116,233, 18, 4, 65,240,123,190,115, 28,135, 55,223,124, 19,167, - 79,159, 14, 41,239, 38,147, 9,239,191,255, 62, 28, 14,135,135,174,252,223,123, 90, 48,156,230,106,246,144, 33, 67,238,255,234, -171,175, 98, 8, 33,120,251,237,183, 33,138, 34,110,191,253,118,196,197,197,225,219,111,191,133, 66,161,192, 11, 47,188, 16, 82, - 26, 25, 12,198, 95, 22, 17,192, 13, 0,226, 81, 27,224,169, 2, 16,237, 54,191,200,249, 27,239, 54,254,131, 15,157,238,206,101, -228,249,242,184, 5,128,210,199,244, 18, 0,106,231, 96, 6,176, 27, 64,166,219,118,228,245,220,211,241, 3,224, 52, 88,164,182, - 85,213,109, 0,110,150, 27,191,187,124,249,242,109,242,210, 45, 90,180, 56,118,226,196,137, 54,178,215,113, 22, 21, 42,236,118, -123,134, 92,108, 40, 71,135, 6, 15, 30, 28,240,141,222,110,245, 12,202,184, 23, 17,120, 79,119,255,245, 7, 33, 4, 86,171, 21, - 99,199,142, 5, 0,191, 15, 27,247, 33, 4,207, 6,139,197, 2, 65, 16,208,186, 73, 60,166, 15,237,140, 27,169, 13, 53,213, 4, -246,138, 26,140,208,217,112,172, 93, 23, 44,185, 88,132, 11,149,213, 16, 4, 33, 36, 77, 73,146,252,154, 43,158,231,177,120,241, - 98,220,123,239,189,224,121, 62, 36, 61, 70,248,177, 75,146,199,184,191,115, 51,212,243, 51, 84,205,210,210, 82,227,240,225,195, -247,170, 84,170,165,137,137,137,121, 57, 57, 57, 1, 53, 41,165,117, 76,143,247,203,196,191,255,253,111, 44, 92,184, 16, 3, 6, - 12, 8, 41,157,102,179, 25,132, 16, 44, 89,178,164,206,188, 89,179,102,213,217, 94, 32, 77,231,139, 17,151,156,156,252,248, 55, -223,124,163,151,151,109,212,168, 17, 68, 81, 68,135, 14, 29, 16, 25, 25,137,157, 59,119,194,225,112,132,124, 93, 50, 24,140,235, - 23, 95, 94,196,141,155,178,178,178,186,101,103,103,207,237,213,171,215,202,221,187,119,175, 32,132,108,148,103, 82, 74,135, 59, - 53, 54,186,141,119,135,167,201, 18, 1,196, 19, 66, 54,202,203,187,143,187, 77, 31, 12, 64, 41,143,103,101,101,101,102,103,103, -207,157, 58,117,234, 75,243,230,205, 83,100,101,101,117,204,206,206,158, 43,111,199, 87, 58,128,223, 34, 88, 1, 91, 1,150,139, - 11,143, 31, 63,238,175,184,208, 69,176,246, 51,180,141,226, 93,145,171,153,205,226, 92,211, 95,203, 41,119, 61,184, 22,117,109, - 9,173, 86,139,161, 51,255, 21,112, 91, 64,237,195,202, 98,177,160,176,176,208, 21, 85, 8, 54,132,170,169, 81, 71, 96,203, 51, - 29,112,169, 68,137, 25,123, 74,241,213, 79,167, 33,138, 34,110,109,215, 1,183, 41, 34,241,114, 51, 37,158, 57,117, 30,182, 16, -235,234, 82, 74,125, 26, 43,249,191, 92, 84,194, 12,214, 31,199,240, 78, 45, 92, 81,166,125,145,131, 92,211, 71,215, 28,118, 29, -147,103, 23,255, 19, 0, 48,160, 75,143,160,215, 67, 40,154, 37, 37, 37,198,190,131,110,222,238, 48, 90, 62,190,255,254,251,207, -109,221,186, 85, 29, 74, 90,125, 25, 44, 57, 74, 43,155, 43, 65, 16, 96,177, 88, 66,202,187,197, 98,241,123,125, 40, 20,138,122, - 71,176, 0,160,166,166,198,178,126,253,122, 44, 90,180, 8,113,113,113, 24, 50,100, 8,146,146,146,176,102,205, 26, 80, 74, 49, -105,210, 36,168,213,106, 57, 90, 29,146, 38,131,193,184,110, 9,228, 69, 84,217,217,217,115,221, 13, 12,224,105,104,220,141,147, -151,137,146,185, 41, 43, 43, 43, 51, 80, 2,220,205,150, 60, 77,222, 46, 33,100,227,188,121,243,134, 7, 73,135, 28, 73,251,173, -136, 48, 80,171,176,102,179,249, 92,167, 78,157, 66,114, 17, 6,131, 33, 63,208,124,249,129,228,125, 51,117,143, 10,232,116, 58, -104,245, 58,112, 33,222,111,109, 54,155,203,160,108,222,188, 25,106,181, 26,195,134, 13,187,170, 8,150,213,106,133, 82, 33,130, -107,148,136,191,207,223,138,146, 42,163,235,193,178,237,236, 57, 28, 42, 40,196, 51,189, 6, 65,171, 46, 68,181,197, 18, 82,164, - 77,146,164, 58,230, 74, 16, 4,140, 29, 59,214, 21, 61,112,175,151, 2, 86, 68,248,135,225,235,252,244,158, 46,121, 69,166,174, - 68,179,164,164,196, 56,124,248,240,189, 14,163,229,227,220,220,220,189, 0, 34,110,188,241,198,122, 27, 44,217, 88,137,162,136, - 55,223,124, 19, 11, 23, 46,116,205, 15,213, 96,217,237,118, 15,227,116,234,212, 41,143,109,121, 27,186, 64,197,163,180,246, 46, - 41, 1,144,210,211,211, 93,235, 52,110,220, 24,209,209,209,144, 36, 9,146, 36, 33, 34, 34, 2,106,181, 26, 10,133,194,175, 22, -131,193,248,235, 16,192,139, 24,167, 78,157,250, 18, 33,100,163, 51,146,116,196,185,188, 47, 35,229,139,238,240, 52,105, 69,190, - 22,114,143,100,185,155, 44,247,255, 50, 89, 89, 89,153, 62,210,225,138,152,185,238,166,110,174,177, 14,238,197,133,225,192, 87, -177,160,251, 3, 76, 23,173,135, 90,171, 5,207,115, 65,251, 87,146,139, 8,229, 27,254,196,137, 19, 3,214, 75, 9,181,190,148, -213,106, 5, 39,240,184,220, 56, 13, 14,238,123,215,186,242,192, 9, 34, 46, 52,110, 3,254,248,143, 16, 67,124,208,122, 71,176, - 38, 77,154,132,247,223,127, 31, 28,199,185,246,137, 32, 8,104,213,170, 21,206,157, 59, 23,146, 38, 35,252,248, 51,203,222,211, - 29, 14, 41,228,168,139,175,229, 74, 74, 74,140, 99,198,140,217, 94, 81, 81,241,113,251,246,237, 79,161,182, 25,131,144, 26,255, -149,207, 21,119, 99, 37,155,171, 5, 11, 22,120,152, 33,155,205, 22,210, 11,128,205,102,171, 99,116,222,120,227, 13,143, 95, 0, -232,221,187,119, 72,145, 96, 0,148,227, 56,170, 80, 40,112,203, 45,183,160, 99,199,142,248,226,139, 47, 32, 73, 18,158,120,226, - 9,168,213,106,188,245,214, 91,176,219,237,120,253,245,215, 89, 4,139,193, 96, 4,242, 34,230,121,243,230, 29,153, 55,111,158, - 43,146,228, 92, 62,152,185,186, 29,181,102, 42, 94, 54,103,168,173, 75,229,171,126,150,156,134, 58,154,222,134, 11,168,141,108, -249, 72,135,171, 88,242,119,239,236, 57,255,232, 97,252,171, 79,103, 0,158,197,130,139,123,180,129, 86,167,133, 54, 82,135, 49, - 27,190, 7, 0,231,205,126,106, 80, 77,155,205,230, 50, 88, 37, 37, 37, 1,205, 85,125, 34, 88,156, 82,192,218,212, 50, 80,165, - 8,193, 98,243, 48, 88,188, 32,226, 82, 92, 26, 56, 81, 1,193, 97, 15, 73,147, 82, 90,167, 72,240,193, 7, 31, 4, 33,196,245, -197, 87,167, 78,157,220,181,216, 19,231,119, 38,255,192, 7, 56,182,238,113, 0, 64,223,154, 26,215,177,152,211,233,183,239, 54, -230, 31,222,238,138, 54,206,196,115, 87,164, 89, 82, 82, 98,188,177,109,230, 94, 69,108,212,199, 23, 47, 94,220, 11,128,187,231, -158,123,162, 59,117,234, 20,210, 53, 41,127, 52,225,109,174,220, 35, 87,242,175,205,102, 11, 41,239,114, 93,168, 96,200,197,133, -193,206,121, 74, 41,141,141,141, 5,199,113,208,235,245,208,233,116,174, 47,104, 35, 34, 34,160,209,104, 92,245, 55, 67, 52,108, - 12, 6,227,175, 75,140,108,112,156, 38, 9,128,103,157, 43,119, 19,228,175,168,208, 25,113,218, 17,100, 91, 95,161,214,152,249, - 68,142,164,185, 79,243,222, 46,224, 52, 88,222,125,121, 37, 37, 37,253, 87,167,211,165, 5,205,174,147,250, 52, 58,234,176,253, - 86,201, 93, 54, 87,132, 16,232, 34,117, 80,235,180, 80, 71,234, 60,230,133,130, 92, 68,200,243,188,235, 97,179,116,233, 82,232, -116, 58, 60,244,208, 67,245,174,131, 5, 56, 13,150,130,195,183,170,239,192, 43, 5, 15,115, 37, 8, 2,120, 81, 68,190, 46, 9, -156, 40, 66,176,135, 22, 21,171,168,168,128, 32, 8,152, 62,125,186,235,141,221,221, 92,213, 39,207,140,134,129, 58,126, 51, 35, -254, 42,178,215,247, 24,121,107,202,145, 43, 69,108,212,199,109,218,180,113, 69,174, 52, 26,141,252,245,104, 80, 56,142,243,105, -174,188,191,248, 19, 4,161,246, 92, 14,242,181,163,123, 4,107,222,188,121, 46, 93,247,200,149, 76,125,174, 35, 57,173,219,183, -111,199,161, 67,135, 48,113,226, 68,168,213,106, 44, 92,184, 16,118,187, 29,179,102,205,130, 90,173,134, 82,169, 12, 46,196, 96, - 48,174,107,130,244, 43, 90,228, 85,207,137,120, 69,154,138,156,235,122, 24, 43,247,226, 64,183,255,238,111,157,178,174,197,171, -232,208,123,186,252, 91, 50,111,222,188,173,114,228,202,109,186, 71, 58, 0, 63, 17, 44,149, 74,149,118,242,228, 73, 87, 35,163, -129,126, 45, 22, 11, 6, 12, 24, 16,114, 36, 76,254,138, 80, 16,120, 15, 67,161,137,212, 65,163,143,132, 90,167,243, 54, 26, 1, -159,102, 28,199,185,222,128,221, 13,214,171,175,190, 10, 65, 16,240,254,251,239, 3, 0,158,123,238,185,144,235, 96,201,154,112, - 16,228,208, 51,232, 60,127, 52, 44,159,216, 80,176,235,103, 8,130,128,132,158,183, 65,186,113, 52, 12,106, 29, 4,135, 61,228, -175, 8, 75, 75, 75,113,238,220, 57,240, 60,143, 41, 83,166,120,180, 85,228,253,101,218,230,205,155,131,230,157, 17,126,168,100, -247, 24, 15,161,184, 48,232, 49,114,215,148,235, 92, 85, 84, 84,124,124,241,226,197,125, 0,184,251,239,191, 63, 90,163,209,224, - 63,255,249,143, 1,128,114,205,154, 53, 1, 93,150,187, 41, 15,102,174, 68, 81,172, 61,151, 67, 64, 46,194,150,135, 96, 21,222, - 67, 57,231,229,180, 18, 66,224,112, 56,160, 86,171, 61, 34, 87, 17, 17, 17, 80,169, 84, 33,165,143,193, 96,252,165,241, 91,164, -231,131,238,110,102, 41,216,122,254,230,215,103,123, 62,241,105,140, 56,142,131,217,108,198,175,191,254, 26,170, 78,200,141,142, - 54,233,214, 3, 51,115, 43, 64, 8,193,123,189,219, 67,171,215, 65,163,213,226,238, 47,182,187,110,216,135,231, 62, 7,149, 86, -135,228,126, 67,130,234,201,111,222,222, 6,171,188,188, 28,162, 40, 98,246,236,217,224, 56, 14,175,191,254, 58, 82, 82, 82,112, -249,242,101,172, 89,179, 38,168,174,213,106, 5,239,224,145,244, 64, 91,104, 30,140,130,254,129,155, 16,115,203,171,200,181, 8, -216,109,210,224, 38,211, 81, 40,191, 93, 0,139,228, 8,249,139, 42,187,221,142,237,219,183,123, 87,100, 7,165,212,213, 74,190, -205,102,131,213,106,197,235,175,191, 30,210, 23,106,140,240,146,212,115, 18,226,187, 61, 6, 0,216, 48,111,188,107,250,244,195, -191,157,159,111,126, 82,219, 96,127,155,230,193,207, 79,119,205,146,146, 18,227,173, 3,122,239, 48, 73,226, 71, 29, 58,116,240, -136, 92, 69, 68, 68, 16,231,120, 72,166,154,227, 56,240, 60, 95,167, 88,208,159,201, 10,165, 14,150,221,110,119, 53, 0, 26,168, -190,226,149, 68,176,198,143, 31,143,164,164, 36, 87,228,106,230,204,153, 80,171,213,200,202,202,130,205,102,195,130, 5, 11, 66, -214, 99, 48, 24,140, 32, 92,181, 57, 10, 7, 62,239,160, 38,147,233,124,199,142, 29,125,174, 96, 50,153, 82, 34, 34, 34, 60,238, -174,196,217,232,168,119, 81, 33, 33,100, 48,165,116,139,183,134, 28,173,137,212, 71, 34, 66,167,133,198, 43,106, 21, 17,169,135, - 74,167, 3,167,168,123, 19,247,165, 41,215, 29,113, 55, 88,242, 80, 81, 81, 1, 81, 20,177,104,209, 34,232,245,122,152,205,230, -160,154,242,195,134,231,121, 24, 46, 85,225,216,220, 45, 80, 70,236, 70,203, 33,247, 34, 73, 84, 67,177,243, 51, 24, 29,158,117, -178, 66,209,204,200,200,192, 43,175,188, 82,167,121, 6,127,164,164,164, 4,205,251,213,194, 52,125,107, 6,250,202, 85, 70,162, - 14, 95,203,249,212,148, 35, 87, 38, 73,252,232,220,185,115,114,228, 42, 74,163,209,224,221,119,223, 53, 0,224,102,205,154,165, -105,214,172, 89,157,118,228,124,157, 75, 60,207, 99,254,252,249, 62,235, 92,249, 50, 91,161,228, 93,190,142,220,215,237,223,191, -191,207,134, 70,125,153, 54, 95,154,114, 90,227,226,226, 92,145, 43,135,195,225,250,122, 80,110, 45,222,223,203,196,245,112, 46, - 49, 77,166,201, 52,255,154,248,124,186,231,229,229,221,234,111,133,150, 45, 91,158, 60,121,242,100, 43,185,203, 12,231, 13, 83, - 97, 50,153, 50,122,247,238, 29, 52,148, 35, 73, 18, 84, 42, 21, 40,165, 24,248, 74, 54, 8, 7,112,240,124,120, 37,244, 25, 4, -158, 23, 32,213,118,201, 17,244, 43, 66,163,209,232,241, 80,240, 53, 84, 87, 87,195,108, 54, 7,253,188, 92,198,100, 50,121, 52, -165, 64,168,132, 11,255, 91, 93,231,107, 66,121, 8,181, 94, 78, 68, 68,132, 71, 17, 79, 32,130,181, 41,198, 8, 63,242,135, 8, - 0,208,186,247, 48, 72,146, 3,212,225,240,232,206,168,109,218,173,144,168, 3, 86,155, 1,102,179, 57, 88,152,145, 20, 23, 23, - 27,199,140, 25,179, 29,192,135, 35, 70,140, 56,129,218, 47, 88,168, 78,167, 83,137,162, 40, 1, 40, 5, 64,203,202,202,162,114, -115,115, 37,147,201,212, 52, 88, 58,191,250,234, 43,252,250,235,175,232,215,175,159, 71,183, 77,114, 20,212,189, 53,246, 80,206, - 79,185, 88,220, 87, 11,238,254, 12, 92,168,240, 60,143,168,168, 40, 40, 20, 10,204,158, 61, 27, 10,133, 2, 26,141, 6, 0,176, - 96,193, 2, 87,163,169, 12, 6,131,113, 61,113, 37, 95, 17,242, 1,138, 15, 3, 22, 21,218,237,246,156,102,205,154,213,107, 99, - 14,135,163, 32,208,124, 73,146,114,214,172, 89,163, 0,234, 86, 74,246,247, 75, 41, 13,168, 73, 41,205,217,176, 97,131,235,123, -117,247,135,147,175,255,132,144,160,154, 14,135, 35,167,121,243,223,250, 17, 14,197,144,217,108,182,220,160, 11, 49,194,134,195, -225, 8,112,126, 78,243,183, 78,176,243,243, 84,235,214,173,115,163,163,163,191, 78, 76, 76, 44,217,181,107, 87, 92,247,238,221, -227,220,151,233,222,189,123,146,215,106, 22,248,239,135, 16,132,144,156, 17, 35, 70,248, 60,231, 1,184,140,187,215,249, 25,176, -105,120, 74,105,206,254,253,251, 21,238,235,251,211,119,187,142, 2, 55, 55, 95,187,204,133,206,157, 59,115,238, 58,254,206,125, -155,205,230,179, 93, 26, 6,131,193,248, 51, 82,111,131,101, 52, 26, 47,117,236,216,209,103,173, 89,163,209,120, 49,208,186,197, -197,197,221,234,187,189, 96, 88,173,214,222,127, 6,205,162,162,162,176,231,157, 17, 94, 26,226, 24, 21, 20, 20,220, 24,110, 77, -187,221, 30,246,243,211,102,179,133, 93, 19, 0, 74, 74, 74,122, 53,132, 46,131,193, 96, 92,235,212,219, 96,133,218, 28, 3,131, -193, 96, 48, 24, 12,198, 95,149,144, 90,141,102, 48, 24, 12, 6,131,193, 96,132, 14, 65,109,175,209,117,168,207,215, 1,132, 16, -159, 26,129, 8,166,207, 52,153, 38,211,100,154, 76,147,105, 50,205,235, 79, 51,152,246,117,243,117,162,252,117, 84, 67, 12, 0, - 6, 51, 77,166,201, 52,153, 38,211,100,154, 76,147,105,254,213, 6, 86, 68,200, 96, 48, 24, 12, 6,131, 17,102,126,247,206,158, - 25,181, 16, 66,120, 74,105,200, 45,224,135, 64, 12, 0,127, 29,186, 89, 0,148, 93,129, 38, 1,160,112, 14,114, 67, 69, 54, 0, - 86,231, 16, 66, 83,243,175,113,121,121, 49,153,212, 33,118,167,132,136,146,132,159,154, 54,109,242, 35,112,171, 5, 0,116,141, -219,181,211,105,213,131,205, 86, 75,154, 74, 84,254, 90, 94, 83,189,217, 84,112,226,252, 21,164,149,193, 96, 92, 37,132,144, 59, - 0,188,134,218,107,127, 30,165,116,245, 31,156, 36, 6,227, 79,139, 95,131, 21, 25, 25,121,128,227,184,212, 96,237,235,200, 56, -251, 26,203, 41, 45, 45, 13,233, 83,119, 66,136, 0, 96,140, 78,167, 27, 32,138, 98, 31, 0,176,217,108,187,170,171,171,183, 2, - 88, 67, 41, 13,173, 3,181,186,186,122, 0, 99, 1,220,231,156,244, 41,128,213,148,210,202, 43,212,235, 24, 21, 21,181, 78, 20, - 69, 90, 92, 92,220, 19, 0,226,226,226,246,218,108, 54, 82, 89, 89,121, 55,165,244,151,122,234,113, 10,133, 34,187, 95,191,126, -125, 9, 33,203, 40,165,139,175, 36, 93, 62, 80,113, 28,231,211,152, 72,146,212,220,215,244, 32, 40, 0, 68, 45, 90,180, 40,110, -249,242,229,157,115,114,114, 58, 0, 64,106,106,234,225,251,239,191,255,199,201,147, 39,151, 0,168, 64,173,209,242, 75, 94, 94, - 76,102, 97,254,217,137, 5,133,191,142, 5,128,198, 73, 29, 86,243, 60,167, 72, 73, 57,180, 71,211,232,190, 70,173,219,180,120, -108,229,127, 22, 41,154,167, 53,193,119,187, 15,221, 48,249,169,151, 50, 35, 18, 91,255,155,153,172,223, 15,189, 94,127,128,227, -184, 84,192,255, 53,238,235,154,119, 56, 28, 57, 37, 37, 37, 62,175,119,189, 94,127, 64, 16,132, 84,127,235,250,155, 38, 73,210, -217,162,162, 34,159, 77, 70, 68, 69, 69,237, 17, 4, 33, 45, 84, 45,249,215,110,183,231,248,107, 34, 38, 42, 42,234, 0,207,243, -169,129,242,233,107,158, 36, 73,103, 11, 11, 11,253,165,179, 78,222,195,145,206, 43,209, 12,148, 78,231, 50, 28,128, 5,113,113, -113, 61, 74, 74, 74,254, 6,224,165,202,202,202, 78, 60,207, 35, 54, 54,246, 37, 66,200,233,168,168,168, 15, 42, 42, 42,118, 3, -120,138, 82, 42,249,211, 98, 48, 24,158,248, 53, 88, 28,199,165,230,230,230, 38,104,181, 90, 0,191,245,151, 39,119,242, 44, 73, - 18, 40,165,174, 95,187,221,142,182,109,219,134,180, 81, 66, 72, 7,189, 94,191, 54, 43, 43,171,233,152, 49, 99,148,114,151, 48, -121,121,121, 25,235,214,173,251,219,236,217,179, 95, 37,132,140,166,148, 30, 14, 81,143, 3, 48, 8,192,131,157, 59,119, 30, 53, -115,230, 76,197,192,129, 3,225,112, 56,240,245,215, 95,247,155, 53,107,214, 34, 66,200,103, 0, 62, 6,240,191, 80,111, 18,132, -144,190,141, 27, 55, 94,177,115,231,206,164,115,231,206, 57,198,140, 25,179, 10, 0, 14, 28, 56,144,238,112, 56, 72,207,158, 61, -191, 34,132,140,163,148,238, 12, 41,227,181,140,152, 60,121,242,232, 73,147, 38,197, 63,244,208, 67, 15, 0, 88,236,220,150,220, -139,120,125, 59, 32,116, 69,174, 40,165,138, 0,203, 53, 70,232,145, 44,237,185,115,231, 98,122,247,238,253,120, 97, 97,225, 51, -238,186, 5, 5, 5, 56,120,240,160,117,238,220,185,243,119,239,222,253, 78, 90, 90, 90, 25,128, 26,127, 66,212, 33,118, 47, 40, -252,117,236, 77,189, 22, 69, 1,192,154, 13,143,223,187,255,199,162,200,141,223, 44,249,155, 50, 66, 97, 94,254,222,124, 69,171, -150,205,177,237,192, 41,236,251,181,148,116,232, 59, 92,168,216,184,236, 22, 0, 75, 66, 72, 39, 35, 12,240, 60,159,146,147,147, -147,160,209,104,124,118,232,238, 85,239, 66,110,184, 20, 25, 25, 25,126, 53, 5, 65, 72,205,205,205, 77,136,136,136,112,221, 59, -188,239, 25, 0,224,126,186, 83, 74,209,186,117,107,191,134,157,227,184,102, 23, 47, 94, 76,208,104, 52, 46, 29, 95,233,147,145, -141, 70,235,214,173, 3,229,221, 35,157,161,104, 82, 74,209,170, 85, 43,191,209,103, 57,239,114,143, 21,193,242, 45,107,166,165, -165,249,189,246,125,105,134,146,206, 22, 45, 90, 4,124, 1, 2,176,224,196,137, 19,147,154, 52,105,130, 86,173, 90,237,238,209, -163,135, 94,171,213,226,155,111,190, 65,187,118,237, 50,245,122,253,190, 53,107,214,136, 47,188,240,194, 13, 31,125,244, 17, 0, - 76, 14,162,199, 96, 48,156,248, 53, 88,132, 16,104,181, 90,172, 90,181,202,111,183, 25,238,255,155, 54, 13,218,187,135,172,219, - 45, 45, 45,109,251,206,157, 59,213, 73, 73,191, 53, 96,109,177, 88, 16, 19, 19,131, 39,158,120, 66,121,199, 29,119,180, 26, 50, -100,200, 94, 66, 72,127, 74,233,129, 32,122,163,226,227,227,223,158, 62,125,122,226, 61,247,220,131,184, 56,143, 70,178, 49,102, -204, 24,220,125,247,221,138, 19, 39, 78,220,187,116,233,210,123, 23, 47, 94,156, 79, 8,153, 76, 41,253, 44,144,174, 70,163, 25, -209,178,101,203,119,119,238,220,153,144,144,144,128,244,244,116,238,133, 23, 94,104,149,145,145,161, 78, 77, 77,229, 46, 95,190, -140, 47,190,248, 34,101,220,184,113,107,149, 74,229, 99, 22,139,101,125, 8,121, 87,198,198,198, 62, 63, 97,194,132,184,202,202, - 74,251,161, 67,135, 78,201,211, 85, 42,213, 43, 61,123,246,236, 66, 8, 89, 69, 41,253, 56,152,150, 27,174,200,149, 51, 74,231, -221,231,136, 77,158, 31, 98, 36, 75,249,211, 79, 63,197,246,234,213,235, 51,179,217,220,101,226,196,137, 23,231,206,157,171,214, -235,245,122, 0,164,178,178,178,236,181,215, 94,179,188,245,214, 91, 47,182,107,215,110,208,158, 61,123, 70,221,112,195, 13, 54, -212,154,183, 58, 80, 66, 92,233,185,148, 91,132,237,187, 37,229, 43, 89,207,165,254,115, 78,218,133, 31,142, 94,146, 4,181, 30, - 95,238, 56,130,130,146,106,252,119,207, 81, 52,142,139, 36, 10,149,152, 25,157,154,217,191, 34,247,232,142, 43, 48,156,140,122, - 66, 8,129, 70,163,193,151, 95,126, 89,167,139, 41, 95,221, 79, 9,130,128,232,232,232,160,189, 17, 68, 68, 68, 96,243,230,205, - 62,251, 70,244,213,245, 78, 84, 84, 20, 0,255,157, 93, 19, 66, 16, 17, 17,129, 93,187,118,129,227, 56,159, 93,248,120, 79,211, -106,181,224, 2,244, 73, 37,107,238,216,177, 35,168,150,252,171,211,233, 0,160, 78,159,145,238,168, 84, 42,236,220,185,211,111, -158,189,255,235,156,253,177, 6,211,220,181,107,151, 71, 23, 93,222, 93,119,185,143,107,181, 90,215,139,155, 63, 98, 98, 98,122, -166,166,166, 98,255,254,253, 88,179,102, 77,108,102,102, 38, 78,157, 58, 5, 66, 8,230,206,157, 75,218,183,111, 47,230,231,231, -163, 95,191,126,248,252,243,207, 27,164, 49, 90, 6, 35, 68, 68, 0, 55, 0,136, 71,109,175, 49, 85, 0,162, 81,251,236, 81, 2, - 40, 1,160,118, 14,102, 0,213, 0, 26, 57,215, 45, 70,237,189,197,221, 32, 20,193,179, 83,232,238, 78,109,185, 71,137,120,183, -121,242, 54,188,199,189,127, 61,180, 5, 0, 32,132,200, 15,177,155, 41,165,219, 61,114, 20,130,185,146,251, 17,243,190,150,105, -221,142, 95, 85, 90,173,118,221,222,189,123,213,241,241,191,165,221,108, 54,163,170,170, 10,213,213,213,168,170,170, 66,100,100, - 36,214,172, 89,163, 30, 52,104,208, 58, 66, 72, 6,165,212,236, 79, 19,192,252,203,151, 47, 39,218,237,118, 40,149,190,171, 32, -113, 28,135,182,109,219,226,165,151, 94,194,208,161, 67, 27, 15, 24, 48, 96, 62, 0,151,193,242,161, 9,141, 70,243,238,193,131, - 7, 19, 52, 26, 13, 78,158, 60,137,156,156, 28, 60,251,236,179, 77, 36, 73,194,165, 75,151,112,234,212, 41,228,230,230, 98,233, -210,165, 9, 35, 71,142,124, 23,128,135,193,242,165, 9,224,209, 41, 83,166,100,196,198,198,114,255,250,215,191, 42,170,171,171, -223,115, 78,207, 90,176, 96,193,184,155,110,186, 41,254,145, 71, 30, 1, 33,100, 37,165,180,142, 97,241,210,244, 21,185,114, 0, - 56,230,181, 90, 91,175,200, 86, 99,212,158,124,229, 62, 52, 9,128,168, 33, 67,134, 76, 49,155,205, 93,118,238,220,121,186, 79, -159, 62,205, 0, 92,134,243,164,139,138,138,210,206,159, 63, 63,113,248,240,225, 39, 6, 14, 28,216,101,200,144, 33, 83,138,138, -138,230, 58,231, 83,111, 77, 73,194, 79,141,147, 58,172,222,177,103,242,216,109,187, 44,138,231,158,122,245, 98,211, 38,205, 43, -126, 58, 89,234, 56,122,182, 8, 85, 70, 59,238, 26, 88,219,177,120,207, 14, 77,241,246,170,157,120,226,233,105,226,103,171,151, -221,125,154, 66, 11,224,171, 0,251,243,170, 96,154,181, 56,139,146, 32,138, 34,110,187,237, 54, 16, 66,234,244,181, 41,138, 34, -246,236,217,131,129, 3, 7, 66, 20, 69,140, 31, 63, 62, 36, 77, 65, 16, 48,100,200, 16, 87, 63,135,238,122,222,102,193,151, 23, -240,206, 59,165, 20,130, 32,128,227, 56,191, 29, 92,123,107, 6,187, 47,201,233, 12,164,229, 62, 47, 88, 58,229,232, 81,168,230, - 42, 84, 77, 57,157,130, 32,160,119,239,222,248,241,199, 31, 3,154, 45, 95,190,210, 59,239,101,101,101,127,207,200,200,216,177, -104,209,162, 88, 0, 40, 41, 41,113,117, 68,207,243, 60,142, 31, 63, 14,139,197,130, 25, 51,102, 88, 43, 43, 43, 31,169, 35,232, - 67, 51, 28, 48,205,191,166,102, 32, 47, 2,224,166,172,172,172,110,217,217,217,115,123,245,234,181,114,247,238,221, 43, 8, 33, - 27, 41,165,195,229,223,172,172,172,204,236,236,236,185, 83,167, 78,125,105,222,188,121, 71, 8, 33, 27, 1,192,123,220,153,254, -225,110,218, 34,128,120, 89,199,153, 22,143,101,125,141,123,255,122,107, 11,110, 19,136, 51,115,196,109, 90,200, 6, 43,216,219, - 23, 0, 8,130, 48,105,238,220,185,137,129,204, 85,117,117, 53,242,242,242,208,172, 89, 51,140, 31, 63, 62,113,209,162, 69,147, - 0,188, 17, 64, 86,193,243, 60,246,239,223,143,194,194, 66,116,236,216, 17,105,105,105, 30, 11,156, 57,115, 6, 95,127,253, 53, -202,203,203,209,181,107, 87,160,182,126,145, 79,110,184,225,134, 25,109,219,182, 29, 50,100,200, 16,187, 90,173,198, 79, 63,253, -132, 46, 93,186, 96,213,170, 85,104,218,180, 41, 52, 26, 13, 78,156, 56,129,142, 29, 59, 98,251,246,237,136,143,143, 71,231,206, -157,237, 93,187,118,253,190,180,180,116,235,249,243,231,103,248,210, 37,132, 40, 82, 82, 82, 94,154, 48, 97,130, 50, 47, 47, 79, - 90,186,116,233,110, 74,233,110, 66,200, 99,211,166, 77,123, 96,232,208,161,241,135, 14, 29,170,252,225,135, 31,126,240,101,174, -124,224, 43,114,229, 81,111,205, 89, 52, 99, 54, 26,141, 22,179,217,108,227, 56,238, 60, 33,196,226,112, 56,252,149,237, 68, 60, -248,224,131, 45,138,139,139,159,120,250,233,167,207, 57,205,213,113,212, 86,108, 7, 0,216,237,118,115,117,117,117,101,175, 94, -189,154,141, 27, 55,238,244,138, 21, 43,158,120,240,193, 7,215,124,252,241,199,213, 0,140,222,130, 77,155, 54,249,145,231, 57, - 69, 77, 85,236,217,181,107, 62,120,230,235, 13,147,154, 92,186,148,219, 42,174, 81,124,141, 66, 23,159,183,230,211,143, 14, 0, -176,228, 21, 85,226,151, 51,249, 16, 69, 30,191, 94,170,192, 77,183,142, 17, 79,159,156,211, 23, 78,131,197,104, 80,168,220, 57, -244,182,109,219, 2, 70,176,246,236,217, 3, 81, 20,161, 86,171,241,214, 91,111, 5, 20,149, 13,129, 28, 29, 10,102, 98, 56,142, - 11,120, 31,145, 77,134,220, 1,187,247,240,127,255,247,127,120,250,233,167, 61,182,225, 52, 25, 1,163, 98,238,198,197, 59,125, -205,154, 55, 71, 97, 65,129,199,180, 80, 58,139,119, 56, 28, 16, 69, 17,239,191,255, 62,134, 15, 31,142,141, 27, 55, 6,252,189, -237,182,219,192,113, 92,192,104,173,156,206,222,189,123,195,106,181,186,210,124,252,248,113,159,186,139, 23, 7,174,222, 41, 87, -104,239,210,165,139,126,192,128, 1,216,177, 99, 7,238,190,251,110,179,213,106, 61, 9, 0,183,223,126,123,235, 69,139, 22, 41, - 15, 30, 60,136,184,184, 56,241,226,197,139, 31, 18, 66, 88,197,119, 70,131,226,203,139, 56, 81,101,103,103,207,245, 50, 70, 30, -200,243, 9, 33, 27,231,205,155, 55,220,169, 87,103,220,185,184,123,223,167, 55,101,101,101,101,186,141, 23,185,155, 39,183,180, -249,221,182,215,242, 69,128,155,193,114,102,232,102,121,156,227, 56,200, 55,221, 96,230,202,223,155,162, 55, 81, 81, 81,195,238, -186,235, 46,151,185, 49,153, 76, 46, 99, 37,155, 43,121,252,196,137, 19,232,214,173,155, 34, 42, 42,106, 24, 2, 27, 44, 0,128, - 32, 8, 72, 78, 78, 70,113,113, 49, 14, 31, 62,140,102,205,154,193,102,179, 97,211,166, 77,168,168,168,128, 40,138, 80, 40, 20, -176, 90, 3, 87, 73,104,219,182,237,109,203,151, 47,239,182,108,217,178, 50,249, 13,238,211, 79, 63, 5,165, 20,241,241,241, 48, - 24, 12, 40, 40, 40,192,214,173, 91, 97,183,219,161,211,233,144,158,158,174, 28, 49, 98, 68,223,215, 94,123, 77, 4, 48,195,143, -116,143,187,239,190, 91,175,215,235,241,212, 83, 79, 81,171,213,250, 6, 33,164,231,168, 81,163, 94,154, 60,121,114,236,249,243, -231, 45,143, 62,250,232, 1,171,213, 58,223,121, 60, 68, 74,169,205,143, 22,128,192,145, 43,155,205, 38,239,211,115,213,213,213, -104,212,168, 81,179, 32,117,180, 0, 64,177,107,215,174,222, 0,248, 89,179,102, 69, 0, 40,128,155,185,178, 88, 44,168,174,174, - 70, 77, 77,141,173,162,162,162,240,249,231,159,183,175, 88,177,130,119,174,243, 43,124, 24, 44,224, 86, 75,251,246, 90, 37,165, -252,180, 37, 75,150,232,134, 14, 29,202,233,116, 58, 84, 85, 85,233,255,251,205, 55,186, 65, 3,250,166,207,205,254,231,183,250, -212,142, 5,187,126, 58,139,220,252, 10, 88,108, 54,164, 39, 69, 1,144, 88,133,218,223, 1,231, 7, 42,174, 8,150,187,153,216, -177, 99, 7,110,189,245, 86,215,181,174, 80, 40, 60, 34, 93,193, 52, 5, 65,192,173,183,222, 90, 39,162,179,109,219, 54,159,209, -166, 96,184,155, 33,111, 83,228,203,120,113, 28, 87,167,126,146, 47, 77,127, 69,151, 0,234,204, 11,197, 96,201,249,157, 60,121, - 50, 68, 81,196, 11, 47,188, 0, 65, 16,208,185,115,103, 8,130,128, 94,189,122, 65, 20, 69, 12, 28, 56,176,222,121,223,187,119, - 47,186,116,233,226, 74, 83,231,206,157,209,189,123,119, 8,130,128,126,253,250, 65, 20, 69, 12, 25, 50, 36, 20,205,151,170,170, -170, 58,233,116, 58,156, 56,113, 2, 60,207,131, 16,114,138, 82,218, 9, 0, 38, 76,152,112,218, 96, 48,180, 48,153, 76,152, 48, - 97, 2,177, 88, 44, 29, 95,120,225,133,105, 0,152,193, 98, 52, 24,222, 94,196, 13,227,212,169, 83, 95, 34,132,108,148, 35, 82, -206,229, 55,122,173,191,209,199,186, 30,243,157, 38, 72, 46, 30,236, 14, 79,243, 38, 23, 29,222, 30, 96, 93,139,151,161,242, 46, - 34,252, 1, 8, 18,193,146,111,186,161, 26,172, 96,152, 76,166, 27, 18, 18, 18,228,255,117,204,149,251,175,197, 98, 65, 90, 90, - 26, 76, 38,211, 13,250, 58,137,232, 0, 0, 32, 0, 73, 68, 65, 84, 65,133, 61,119, 0,146,146,146, 96,181, 90,241,193, 7, 31, - 64,161, 80, 64,161,248,205, 87, 88, 44,129,131, 67, 71,143, 30, 61,183,119,239,222, 46, 93,187,118,141,249,252,243,207,139,250, -247,239, 31, 63,116,232, 80,168,213,106, 24,141, 70,216,108, 54,244,236,217, 19,109,219,182, 69, 78, 78, 14,254,251,223,255, 22, -103,100,100, 52,218,183,111,159,148,159,159,127, 33,128,244,160, 65,131, 6,129, 16,130,255,254,247,191, 37,148,210,131,106,181, -250,243,185,115,231, 70, 91, 44, 22,233,129, 7, 30,184, 84, 90, 90,250, 60, 0,155, 74,165,122, 99,232,208,161, 61,120,158, 95, -229,112, 56,222,174, 79,254,129,186,251,182,166,166, 6, 17, 17, 17,161, 52, 9, 33,150,150,150,118, 0, 0,173, 86, 27, 11,224, -180, 60,195,104, 52,122,152, 96,139,197, 98,138,141,141,213, 2,128,115, 29,239,186, 95, 0, 0, 66, 72,188, 70,163, 89,123,225, -194,217, 72,247,250,113,209,209,209,184,111,220, 56,174, 79,239,222,202, 78, 55,220, 48,228,229,127, 47, 91,149, 28,167,183,164, - 39,199,193,230,176, 97,203,183,155, 36, 42,217,190,173,111,222, 25,245,199,189,136,208, 59,130, 37,138, 34,182,111,223, 94,103, -154, 66,161,192,123,239,189, 23, 80, 87, 54, 4,178,153,242, 87, 68,230, 85,164, 21,240, 70, 34, 71,213,121,158,199,251,239,191, - 15, 73,146,240,204, 51,207,120, 20, 27,186,235,135,130,187,249,107,251,170, 4,192,130,156, 55, 85,174,245,189,211,235, 92, 39, -164,168,216,162, 69,139, 66,138, 96,221,126,251,237, 65, 13,171,123,137,130,123,186,126,252,241, 71,159,186, 75,150, 44, 9,186, - 63, 29, 14, 7,190,250,234, 43,151, 57,149,153, 62,125,250,132,212,212,212,196,239,191,255, 30,249,249,249,168,169,169, 65,117, -117, 53,122,246,236,153, 62,120,240,224,159,242,243,243,207, 31, 61,122,244,174,144,118, 48,131, 81, 15, 2, 68,176,204,243,230, -205, 59, 50,111,222, 60,159, 17, 42,183,245,135, 7, 50, 89,110, 81,168,238,168, 53, 66,241,178,105, 67,109,245,153, 31, 66, 88, - 87,233, 93, 68,232,107,121,239, 8,214,107,110,227,174,155,110, 40,197,132, 33,134,205, 5, 66, 8, 76, 38,147, 79, 99,229,110, - 10,172, 86, 43, 74, 75, 75,225,112, 56,174,184,173, 46, 95,111,174,193, 12,214,225,195,135, 31,122,248,225,135,243,162,162,162, - 58, 21, 21, 21, 21, 74,146, 52,112,207,158, 61,241,130, 32, 64,175,215, 67,175,215,227,235,175,191,134, 70,163,193,228,201,147, - 11, 29, 14,199,142,200,200,200, 56,163,209,248,115,126,126,254,203,254,116, 69, 81, 28,116,211, 77, 55,225,224,193,131, 40, 47, - 47,255,142, 16,210,233,145, 71, 30,185,165, 73,147, 38,100,206,156, 57,166,211,167, 79,255, 31,128, 34,173, 86,251,193,242,229, -203,251,119,237,218, 85,119,255,253,247,131, 16,242, 31, 74,169, 41,212, 60,215,212,212,120, 24,171,202,202, 74, 84, 85, 85, 65, -171,213,134,212,236, 5,165, 84, 68,109, 93, 42,185, 62,149,235,216, 56,163, 87,242,241,161,130, 32,208,218, 69,168, 79,115, 5, - 0, 90,173,118,214,178,101,203,212,222, 31, 31, 56, 28, 14, 20, 20, 20, 64,175,215, 99,250,203, 47, 43,102, 62,251, 72, 23, 94, -151,184,135,227, 8, 44, 86, 90, 78, 37,203,166,154,130,123,190, 15, 53,223,140,171, 67, 54, 4,119,222,121,103,157, 98, 65,133, - 66,129,205,155, 55, 99,228,200,145,174, 23,150,174, 93,187, 6,125,169,146, 13,193, 29,119,220, 1,160, 54, 18,180,105,211, 38, -159,197,123,114, 4, 42, 16,238,198,133,231,121, 60,249,228,147, 16, 4, 1,111,191,253, 54,166, 76,153, 2,142,227,240,230,155, -111,130,227, 56,188,242,202, 43, 33,229,219,219,184,156,255,103,237,111,234,148, 74,148, 44, 78, 4, 0, 68,234,245,114,134, 66, -210,148,243, 46, 8,130, 43,114,117,195, 13, 55, 64, 20, 69,244,234,213, 11,130, 32,184, 34, 87,195,134, 13,115,223,143, 1, 55, - 32,107, 10,130,128,147, 39, 79,186,210,220,171, 87, 47,143,200,149, 32, 8,184,253,246, 58, 47,223,190,152, 27, 29, 29,253, 90, -219,182,109,219,205,159, 63, 95,228,121, 30,131, 6, 13,106,253,232,163,143, 94,136,139,139,139,155, 53,107,150,198,199, 58,106, - 0,157,218,181,107,167, 13,121,103, 48, 24,245,192,219,139,184, 17,227, 94,167,170, 30,122, 27,221,151,151, 53,188, 77,145, 51, - 34,182, 35,152,150,175,117,253, 33, 56, 23,246,121,167,172,143,193,114,134,151, 3,110, 76,163,209,252, 82, 88, 88,216, 75,173, - 86,123,152, 43, 95, 70,139,231,121,228,231,231, 67,163,209,212,171,157,169, 96, 4, 43, 34,116,154,153,103,229,113, 66,200,224, - 97,195,134,125,188,121,243,230,164, 45, 91,182, 96,223,190,125,136,143,143,199,162, 69,139, 46, 23, 20, 20, 60, 68, 41,221, 28, -202,118, 91,180,104,209, 94,171,213, 98,247,238,221, 0,240, 61,128, 7,159,120,226, 9, 98,183,219,241,206, 59,239, 24, 0,108, -142,138,138,250,108,221,186,117, 55,116,236,216, 81,185,101,203,150,170,125,251,246,109, 11,209, 92, 57, 36, 73,170, 99,172,220, -247,105,100,100,100, 40, 17, 44, 91, 84, 84,212,225,202,202,202, 49, 70,163,177, 82,165, 82, 69, 86, 86, 86,154,221,141,149,172, - 47, 8,130,120,242,228,201, 60, 0,233, 81, 81, 81,135,225, 86,148,232,142, 32, 8,131, 6, 13, 26,228, 97,146,173, 86, 43, 10, - 10, 10,144,159,159, 15,171,213,138,174, 93,187, 18,158,216,248,210,139, 63, 79, 8, 33,141,140, 48, 67, 8,161,242,181, 46,127, -245,231, 61, 8,130,128, 77,155, 54,185,198, 57,142,131,243,179,125,127,154, 46, 51,180,121,243,102,191, 81, 43, 31, 69,132, 65, - 67,225,242,242,239,188,243, 78,109,119, 20,206,200, 21,199,113,152, 58,117, 42, 84, 42, 21,230,204,153,131,169, 83,167, 66, 16, -132,160, 69,132,238,198,165,249, 11, 6,215,116,185,136,208,230,172,239, 68, 8,113, 55, 89, 1, 35, 88,238,166, 45, 80,244, 46, -148,200,191,187,166,188, 94, 68, 68,132,207, 98, 82, 31,154,126, 55, 64, 41,253,146, 16,114, 54, 41, 41,105, 87,175, 94,189,162, - 14, 28, 56,128, 55,223,124, 83, 97, 54,155,155,110,217,178,197,181, 93, 95,251,171,166,166, 70, 29, 82,194, 25,140,122, 16, 40, - 50, 12,103,189, 40,249, 63, 0,226, 94, 92, 23,224,215,123,121,184, 77,115,215, 45,130,231,115,204,125,186,183,169,242,222,134, -251, 50,174,186, 93, 1,155,105,168, 79, 37,247, 80, 34, 88, 6,131,225,127,223,124,243, 77,247,113,227,198, 9,129,138, 7,107, -106,106,144,152,152,136, 35, 71,142,216, 13, 6,195,255,130,233, 58, 28,161, 55,136, 30,204, 96,121, 67, 41,221,210,184,113, 99, -222,102,179,161, 85,171, 86, 72, 73, 73,129,201,100, 66,121,121, 57, 31,170,185, 34,132, 40,186,117,235,198, 3, 64, 89, 89, 25, - 80,251, 57,105, 70, 70, 70, 6, 14, 30, 60,136,178,178,178,245, 0, 6,207,156, 57,179,115,143, 30, 61, 20,171, 86,173, 50, 76, -156, 56,113,189,205,102,155, 19,138,190, 36, 73, 22,187,221,158,198,113,156,181,188,188, 60,215,125,127, 38, 38, 38,198,106,181, - 90, 82, 80, 80, 16,176, 62,151, 19, 91,167, 78,157,246, 95,188,120, 17,179,102,205, 42,154, 59,119,110, 70, 85, 85, 85, 89, 69, - 69,133,221,221,100,153, 76, 38,174, 81,163, 70,170,197,139, 23,171, 1,160, 83,167, 78,251,225,199, 96,213,212,212, 52,209,104, -126,123, 17, 54,155,205,200,207,207, 71,126,126, 62, 10, 10, 10, 80, 85, 85,133,244,244,116, 24, 12,134,102,161,228,149, 17,126, -188,191,122,115,191,190,221, 31,224,245,185,214,129,223,140,203,157,119,222,233,170,187, 37, 71,196,228, 97,237,218,181,238,197, -131, 64,136, 6,235,157,119,222,193,147, 79, 62,137,136,136, 8,204,159, 63,223,163,136,208,219, 20, 72,146, 20,212, 12, 9,130, -128,180, 23,141,200, 95, 24, 11, 81, 20, 17, 55,177,192,163, 40,206,135,209, 8, 41,157,115,231,206, 13, 75, 17,161,187,102,179, -102,205, 0, 0,239,191,255, 62,198,140, 25,131,239,191,255,254,138,139, 8, 51, 51, 51, 63,221,184,113, 99,212,209,163, 71, 81, - 89, 89,137,162,162, 34,152,205,102,228,228,228, 0,240, 93, 10, 0, 0, 6,131, 33, 34,104, 98, 25,140,240,226,183,232,174,129, -116,175,122,123, 1,139,223,220, 43,127, 6, 51, 88,161, 68,176,204,102,243,252,167,158,122,234,137,193,131, 7,199, 70, 70, 70, - 34, 47, 47,175,142,185,170,174,174,134, 78,167,131,209,104,196,134, 13, 27, 42,205,102,243,252, 32,121,176,217,108, 54, 36, 36, - 36,160,184,184, 24,146,159,122,209, 28,199, 65,173, 86,163,186,186, 26,240, 99, 6,252, 65, 41,133,213,106,133,205,102,131,205, -102,131,213,106, 13,250, 86,236,133, 90,110,176,181,166,166, 6, 0,106,146,147,147, 91, 68, 68, 68,224,220,185,115, 0,112, 18, -192,128,161, 67,135,138, 37, 37, 37,244,209, 71, 31,221, 67, 41,157, 76, 3,183,102,111,217,177, 99, 71, 26, 0,168,213,234, 19, - 0,144,147,147, 99, 43, 47, 47,247,136, 12,106, 52, 26, 58,114,228,200, 36, 74, 41,118,236,216,145,166, 80, 40, 40,252,180, 89, - 5,192,180,126,253,250,163, 81, 81, 81, 43,178,179,179,199, 13, 31, 62,252, 72,135, 14, 29,210,106,106,106, 10,141, 70,163,209, -100, 50, 81,158,231, 21, 49, 49, 49, 17,223,126,251,237,233, 61,123,246, 12,214,235,245, 43,214,175, 95,127, 20,128,207, 72,155, - 86,171,205, 49, 24, 12,205,229, 99,234,110,174,242,243,243, 65, 41,197,217,179,103,161,209,104, 46,214,103,135, 50,194,139,252, - 50,229, 29,105,241,158, 22,170,185,146, 17, 4, 1,223,126,251,173,223, 40, 78,125, 12,155,187, 25,154, 50,101, 10, 22, 46, 92, - 88, 39,130, 53,103, 78,237, 59,201,203, 47,191, 28,114, 29, 44,160, 54, 90,149,191, 48, 22,141,159, 44,245, 72, 59, 0, 16, 57, -125,245,108,146, 77, 16, 4,204,154, 53,171, 78,229,115,247, 34,188, 16,139,242, 60,210, 89, 88, 88, 8, 65, 16, 16, 27, 27,139, -251,238,187, 15, 67,134, 12,113, 21, 53,214, 87,247,216,177, 99,187, 94,124,241,197,142,153,153,153,152, 61,123,118,105,116,116, -116,228, 63,254,241, 15,161,188,188,188, 54,156,232, 39,130,197, 12, 22,131, 17,156,128, 17, 44, 0, 33,153, 43,127, 55, 94, 66, -200, 96,247,182, 50, 40,165, 21,132,144,251,110,185,229,150,207, 87,175, 94,173,110,209,162, 5,142, 29, 59,134,210,210, 82, 88, - 44, 22, 40, 20, 10, 36, 37, 37,161,188,188, 28, 31,125,244,145,209, 96, 48,220, 71, 41,173, 8,164, 9, 96, 90,183,110,221,222, -125,227,141, 55, 34, 58,119,238,140,210,210, 82, 84, 87, 87,123,180, 58,173,215,235,161, 86,171,177,127,255,126,108,218,180,201, - 8, 96, 90, 16,205, 58,200,198, 74, 54, 90,193, 12,150,151,166, 86,142,226, 24, 12, 6, 0,176, 55,109,218, 52, 17, 0,206,158, - 61, 11, 0, 23,210,211,211, 95,110,217,178, 37, 89,190,124, 57,165,148,110,241,101,174,188, 52, 75,251,245,235, 87, 6,160,177, -197, 98, 81, 0, 64, 69, 69,133,181, 81,163, 70, 9, 42,149, 74, 82,171,213, 82, 68, 68,132,148,151,151,103,183,219,237, 10, 0, -232,215,175,159, 5, 64, 62,220,234,122,120,105, 74, 0, 42,151, 44, 89,242,218,253,247,223,223,171,119,239,222,153,143, 63,254, -248,225, 71, 31,125,148, 75, 73, 73,137,169,170,170, 50,157, 58,117,170,236,223,255,254,119,213,222,189,123, 7,139,162,120, 97, -201,146, 37,175, 1,168,116,174, 91, 71,211,110,183,255,111,203,150, 45, 15, 13, 31, 62, 92,200,205,205, 69, 65, 65,129,203, 92, - 21, 20, 20,160,109,219,182,216,179,103,143,195,106,181, 6,220,255,161, 28,163,250,194, 52,107, 53,229,230, 1, 2, 25, 43,249, - 37, 42, 84, 77,119, 51, 52,102,204, 24,143,168,149, 66,161,192,186,117,235,124,222, 55,188,175, 43,239,188, 19,183, 54,186, 94, -124,241, 69, 15,179, 54,125,250,116,191, 73, 11,164, 41,231, 93, 20, 69, 84,188,159,226,249, 21,161,159,235, 60, 80, 58,229,123, -167, 40,138,152, 62,125,122,200, 17, 44,120,213,193,242,165, 41,231,189,127,255,254, 48, 24, 12, 46, 3,235, 47,130, 21,108,127, - 58, 28,142, 39, 23, 46, 92, 72,245,122,125,143,202,202,202,191, 93,188,120,113,169,193, 96,184,177,162,162,194,103, 62,101,204, -102,179, 42,208,254,188, 90,152,230, 95, 83,243,122, 35,224, 43,158,221,110, 71,147, 38, 77, 92, 23, 55, 33, 4, 28,199,121, 12, -245,169, 71, 0, 0,148,210,111, 9, 33,163,250,244,233,243,201,147, 79, 62, 25,217,185,115,103,177,121,243,230,168,169,169,193, -185,115,231,112,228,200, 17,251,250,245,235, 43, 13, 6,195,223, 40,165, 65,191, 34,163,148, 46, 35,132,108, 26, 58,116,232, 43, - 61,123,246,124,236,213, 87, 95,229, 91,183,110,141,138,138, 10,196,196,196, 32, 33, 33, 1,199,143, 31,199,134, 13, 27, 28,197, -197,197,239, 2,152, 73, 41, 45, 10,166,235,189, 25,171,213,138,123,239,189, 23,146, 36,225,173,183,222,114,111, 16, 45, 20,172, - 86,171,149, 2, 32,197,197,197, 0, 96,144, 13,215,169, 83,167, 0,224, 98,243,230,205,117, 0,176,101,203, 22, 2, 96,119,168, -233,130, 91, 36,171,109,219,182,231,128,186,221,143,200,243, 81, 27,185, 10,150,110,211,216,177, 99, 11, 13, 6,195,208, 41, 83, -166,188,242,206, 59,239,140,123,231,157,119,234, 44,164,215,235, 87,188,249,230,155, 51,199,142, 29, 91, 8, 63,209, 43, 0,168, -169,169,121,249,239,127,255,251,216, 95,126,249, 37, 50, 34, 34, 2, 53, 53, 53, 40, 41, 41,129,213,106, 69,122,122, 58, 10, 11, - 11,177,108,217,178, 42,163,209, 56, 35,196, 60, 51,194,140,187, 33,240, 23,197, 10,102,174,252, 33, 8, 2,190,252,242,203, 58, - 81,171, 80, 42,181,251, 75,167,175,186, 71,129,162, 96,129, 94,134,228,230,101,188,235,131,137, 98,104,109,251, 5,210, 21, 4, - 1,255,250,215,191, 32, 8,130,223,200, 85,125, 34, 88,178,102,108,108, 44, 0, 64,238,218,232,246,219,111,191, 98, 93, 90,219, -109,152,171,251, 27, 66,200,220,231,159,127,254,181,182,109,219,182, 6,160,114,223, 7,245,140,218, 51, 24,127,121,252, 26, 44, -135,195,145,211,166, 77, 27, 0,240, 48, 88, 50,190,166,217,108,182,156, 80, 54, 74, 41,221, 68, 8, 73,127,243,205, 55,159,210, -106,181,131, 13, 6, 67, 71,160,182, 18,124, 77, 77,205, 22,179,217,188,128,214,163,115,102,167, 97,154, 68, 8,121,107,232,208, -161,115, 6, 14, 28, 56,250,217,103,159, 37,148, 82, 44, 94,188,152,158, 57,115,102, 45,128,105,148,210, 51,161,106,186, 19, 27, - 27,123,244,163,143, 62, 74,252,252,243,207, 97,179,217,176, 96,193, 2, 68, 70, 70, 30,173, 79,250, 4, 65,248,164,119,239,222, -227,246,236,217,179,130, 82,122, 88,165, 82,125,218,175, 95,191,251,118,239,222,189,154, 82,250,171, 32, 8,159,246,234,213,235, -190,253,251,247,127, 70, 41,253,185, 30,201,115, 69,178,236,118,223, 37,138,190, 34, 87, 65,168,124,248,225,135,173, 15, 63,252, -240,179, 99,199,142,253,224,135, 31,126,184,177,188,188,188, 35, 0, 68, 71, 71,255,210,189,123,247,253,171, 87,175, 62,142,218, -200, 85,192, 74,248,148,210, 34, 66,200,200,142, 29, 59,126, 54,123,246,108,109,102,102,166,208,170, 85, 43,156, 63,127, 30,135, - 15, 31,182,127,248,225,135,213, 70,163,241, 78, 74,105, 40,125, 36, 50, 26, 0, 57,218, 20, 29, 29,237,241,242, 36,127,186, 95, -223, 98, 65, 25, 89,211,251,197,140,231,121,191,154, 65, 42,185, 2, 0,116, 58,157,171, 81,210, 80,170, 38, 72,254,234, 13,184, -165, 83,214,148,135, 16,204, 85,208, 47,254,156, 93,213,132,172, 25, 74, 51, 13, 90,173, 22, 54,155,205,165, 27,194,151,156,245, -114,137,148,210, 47, 1,124,217,170, 85,171, 83, 0, 90, 50, 83,197, 96, 92, 57,126, 13, 86,105,105,169,207, 94,221,195,133,211, - 64,205,116, 14,225,210, 60, 3, 96, 44, 33,228,141,239,190,251, 78, 46, 47,152, 69,131,244,103, 24,140, 99,199,142, 13, 23, 69, -241,189, 21, 43, 86,244,164,148, 34, 42, 42,106,239,249,243,231,255, 81, 31, 13,187,221,254, 24, 33,228, 25,249,171, 64,179,217, -252, 24, 33,228, 57, 74,105,141,219,124,215,120, 61,161, 0,204,148,210,100, 63,243,205, 8,221, 92,201,152, 0, 88, 86,175, 94, - 93, 13,224, 39,252,214,206,149,205, 57,152,224, 86, 44, 24, 48,113,148,110, 37,132,180,154, 62,125,250, 92,158,231, 7,213,212, -212,164,104,181,218, 75,118,187,253,127, 6,131, 97, 26,165,180,164,158,105, 99,132, 17,139,197,146,219,166, 77, 27,185,219, 44, -248,250,245, 69,160, 23, 42,135,195,145,147,145,145, 17,244,165,204,135,102,174,191,121,148,210, 11,233,233,233, 92,168, 90, 50, - 86,171,181, 48, 80, 58,211,211,211, 67, 78,159, 91, 58, 3,230, 61, 45, 45,205,103,222, 3, 33, 73,146,223,188,219,237,246, 43, -210, 12,180, 63, 3, 97, 52, 26,203,226,227,227,171, 77, 38,147,104, 54,155, 69,187,221,238, 17,110, 84,171,213,245, 45, 5, 96, - 48,254,114, 92,113, 27, 83,215, 50, 78, 67,117, 71, 24,245,204, 0, 30, 8,131,142,201,107,188, 38,208,120, 61,105,136, 8,144, - 4,192, 16,116,169, 16,160,148, 22, 3,120, 52, 28, 90,140,240, 82, 92, 92,220, 35,220,154, 37, 37, 37, 97,127, 65, 43, 42, 42, -234, 21,110,205,226,226,226,176,167,243,207,162, 25,136,220,220,220,176,159, 19, 12,198, 95,141, 43,139,253, 51, 24, 12, 6,131, -193, 96, 48,252, 66, 0, 12,246, 53,163, 62, 95, 7, 16, 66,124,106, 4, 34,152, 62,211,100,154, 76,147,105, 50, 77,166,201, 52, -175, 63,205, 96,218,215,205,215,137,148,210, 6, 27, 0, 12,102,154, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,171, 13,172, -136,144,193, 96, 48, 24, 12, 6, 35,204, 48,131,197, 96, 48, 24, 12, 6,131, 17,102,152,193, 98, 48, 24, 12, 63, 16, 66, 98,174, -101, 61, 6,131,113,237,194, 12, 22,131,193, 96,248,128, 16,210, 1,192,236, 48,203,206,118,234, 50, 24,215, 61,132,144, 14,132, -144,142,127,116, 58,254, 40,152,193, 98, 48, 24, 12, 47, 8, 33,195, 90,180,104, 49, 11,128, 46,204,210,186, 22, 45, 90,204, 34, -132, 12, 11,179, 46,131,113, 77, 64, 8, 81, 17, 66, 30,224, 56,110,127,135, 14, 29,126,201,204,204,252,153,227,184, 61,132,144, - 49,132,144,235,178,237, 77,127, 16,231,215, 0, 32,132,108, 7, 0, 74,105,255, 63, 48, 61, 12, 6,131,241,135,225,124, 0, 60, - 54,110,220,184, 59,178,179,179,149, 77,154, 52,185, 68, 41,189, 63,140,250,203, 47, 93,186,148,250,224,131, 15, 86,111,221,186, -245, 91, 0,239, 82, 31, 29,187, 51, 24,127, 54, 8, 33,205, 1, 60,166,211,233, 30,185,249,230,155, 99,238,188,243, 78,196,197, -197,193,110,183,227,210,165, 75,216,184,113, 35,118,239,222,157,103,177, 88, 22, 2,120,159, 82, 90,238, 71,103, 59,112,125,120, - 17, 66, 41,149, 59, 46,190, 25, 0, 40,165,219,255,216, 36, 49, 24, 12,198,239, 15, 33, 68, 15, 32,107,254,252,249, 61, 31,123, -236,177, 52,147,201,148, 19, 19, 19,115, 54,220, 6,203,106,181, 14, 46, 42, 42, 58, 48,103,206, 28, 44, 94,188,248, 87, 0,243, -104, 61,250, 94,101, 48,174, 53, 8, 33, 83, 71,141, 26, 53, 39, 49, 49,145,235,208,161, 3,146,146,146, 96, 54,155, 97, 52, 26, - 65, 41,133, 32, 8,160,148,162,162,162, 2, 59,118,236,192,214,173, 91,205,101,101,101, 31, 1, 88, 64, 41, 61,233,166,115, 93, -121, 17,151,193,162,245,236, 20,148,193, 96, 48,174, 23, 8, 33,105,106,181,122,250,134, 13, 27,218,247,237,219, 55,161,170,170, -234,172,205,102,171, 73, 78, 78,166,168,237,212,220, 23, 21,148,210,201, 62,180, 22, 1,136,242,179,142,222,106,181,118, 47, 46, - 46, 62, 0, 0,235,214,173, 67, 86, 86, 86,137,209,104,156, 69, 41, 61, 23,158,220, 48, 24,191, 47,132,144, 19,199,142, 29,203, -112, 56, 28, 40, 46, 46,134,217,108,134,193, 96,112, 25, 44,158,231, 65, 41,133,221, 94, 27,172,149, 36, 9, 7, 15, 30,196,150, - 45, 91,232,217,179,103, 95,165,148,206,114,234, 92, 87, 94,132, 25, 44, 6,131,241,151,134, 16,210,167,113,227,198,207,124,247, -221,119,205,155, 53,107,166,175,174,174, 62,109,183,219,109, 0, 16, 19, 19,147,201,243,188,202,123, 29,135,195, 97,142,136,136, -216,233, 43,186, 69, 8, 89,110, 50,153,250,250, 90,207,185,174,189,172,172,236, 39,121,252,231,159,127,198, 35,143, 60, 98,205, -207,207,159, 79, 41,221, 21,206,188, 49, 24,191, 7,132,144, 19, 63,253,244, 83,198,202,149, 43,209,165, 75, 23,180,107,215, 14, -213,213,213, 46,179,101,177, 88, 96,179,217,234,172, 87, 89, 89,137,103,158,121,230, 36,165,180,181, 83,231,186,242, 34,114,133, -179,215,174,167,114, 79, 6,131,193,168, 47,249,249,249,197,209,209,209,151, 37, 73,162,242,180,178,178,178, 35, 87,162,117,165, -235, 49, 24,127, 82,108, 22,139, 5,221,186,117,195,185,115,231,112,240,224, 65,151,209, 42, 46, 46, 70, 94, 94,158,199,194,251, -247,239,199,161, 67,135,112,211, 77, 55,121,235, 92, 87, 94,196,189,146,123,127,224,250, 40,247,100, 48, 24,140,250, 32, 23, 17, -206,155, 55, 47,238,238,187,239,118, 77,111,136, 34,194,188,188, 60,215, 27, 58, 43, 34,100, 92, 15, 16, 66, 70, 38, 39, 39,127, -248,196, 19, 79, 68,245,236,217, 19, 57, 57, 57,200,205,205, 69, 89, 89, 25, 58,119,238,140,204,204, 76,156, 57,115, 6,155, 54, -109,194,161, 67,135,160, 82,169,144,154,154, 10,221,138,149,120,143,224, 40,165, 52,211, 77,171, 63,112,125,120, 17,151,193, 98, - 48, 24,140,191, 50,114, 37,247,137, 19, 39,182,155, 54,109, 26, 8, 33, 72, 78, 78,174, 8,119, 37,247,188,188,188, 40, 74, 41, - 88, 37,119,198,245, 4, 33, 36, 18,192,243,233,233,233,207, 77,156, 56, 81,213,190,125,123,228,228,228,160,168,168, 8,101,101, -101,216,187,119, 47, 0, 32, 37, 37, 5, 41, 41, 41, 56,126,252, 56,118,237,218, 85, 89, 93, 93,253, 48,165,244,243, 63, 54,245, - 13, 3, 51, 88, 12, 6,131,225, 68,110,166, 97,192,128, 1, 67, 22, 47, 94,140,140,140,140,176, 27,172,147, 39, 79, 70, 77,156, - 56, 17,172,153, 6,198,245, 8, 33, 36, 1,192,203,237,219,183,127,236,145, 71, 30, 17,154, 53,107,134,220,220, 92,124,247,221, -119,104,217,178, 37, 46, 93,186,132,173, 91,183, 90,138,138,138,222, 2,144, 77, 41,173,248,163,211,220, 80, 52,104, 67,163,132, -144,193, 76,147,105, 50, 77,166,249,103,209,164,148,218, 41,165,111,111,221,186,245,221, 97,195,134, 73,225,208,244,102,216,176, - 97,210,214,173, 91,223,165,148,190, 29,200, 92, 93, 15,251,147,105,254,245, 52, 41,165,133,148,210,201, 71,143, 30,109,245,244, -211, 79,127, 50,123,246,108, 73,146, 36, 36, 36, 36, 96,205,154, 53,210,170, 85,171, 62, 44, 42, 42,106, 65, 41,157,122, 61,155, - 43,224,183, 74,238, 12, 6,131,193,112, 66, 41,253,154, 16,146, 3,224,177, 48, 75, 87,159, 57,115,230, 95,148,210,195, 97,214, -101, 48,174, 41, 40,165,231, 1,220, 79, 8,249,231,193,131, 7,167, 1,160, 0,102, 83, 74,127,253,131,147,246,187,193, 12, 22, -131,193, 96,248,128, 82,122,152, 16,242,114,152,101, 95,166,148,150,133, 89,147,193,184,102,161,148, 30, 1,112,207, 31,157,142, - 63, 2,214, 23, 33,131,193, 96,248, 33,220,102,136,153, 43, 6,227,175, 3, 51, 88, 12, 6,131,193, 96, 48, 24, 97,134, 25, 44, - 6,131,193, 96, 48, 24,140, 48, 67, 0,248,251, 18, 96, 75,200, 34, 87,240,133, 66, 48,125,166,201, 52,153, 38,211,100,154, 76, -147,105, 94,127,154,193,180,235,227, 63,174,105, 40,165, 65, 7, 56,219,203,170,239, 0, 96,240,149,172,199, 52,153, 38,211,100, -154, 76,243,207,171,137,218,151,119,130,218, 82, 18, 78, 30,191,214,210,233,157,230,107, 53,239,127, 21,205,235,109, 8,248, 21, - 33, 33,196,181,147, 8, 33, 18, 0,137, 58,247,226,213, 64, 8,145, 15, 64, 88,244, 24,225,199,121,140,228, 46, 61, 40, 59, 78, - 12, 6, 35, 20,220,238, 29, 60,126,123,200, 58, 0, 56, 8, 33,184,214,238, 37,225,124,206, 53, 68,222,255,202,154,127,118,124, - 26, 44,121, 71,241, 60,255,109,163, 70,141, 6, 20, 23, 23, 75,206,233, 80, 42,149,224, 56, 14,162, 40, 26,171,170,170,244,245, -221, 32, 33,228, 63,137,137,137, 15,150,148,148, 72, 28,199, 33, 34, 34, 2,132, 16,151,102,121,121,121,189, 53,195, 77,243,230, -205,203,140, 70,163,206,123,122, 68, 68,132,233,194,133, 11,145,127, 68,154,126, 79, 8, 33, 68,161, 80,140,138,141,141,141, 46, - 42, 42,162, 28,199, 65,161, 80,128,231,121, 56,255,219,203,203,203, 63, 14, 85, 47, 54, 54,118,127,108,108,108,180,188, 62, 33, - 4, 37, 37, 37,229, 5, 5, 5, 55, 2,128, 90,173,222,165,213,106,227, 4, 65, 0,207,243,224,121, 30, 6,131,161,164,184,184, -184, 79,131,101,146,209,160,172, 93,187,150, 31,154, 50,190,165, 64,141,157, 56,142, 70, 73, 18,169,176, 19,245,207,155,114,255, -115, 58,148,245, 71,143, 30,237,104,232, 52, 6,130, 16,210, 7, 0, 40,165,187,194,164,231,222, 63,161, 9, 64, 49,128,211, 0, -214, 80, 74,141,225,216,198,213,160, 82,169,222, 74, 76, 76,124,164,186,186,218, 64, 8,161,132, 16,212, 62, 6, 80,231,215,225, -112,228, 20, 23, 23,119,243,165,227,246,144, 21,149, 74,229,155,141, 27, 55,254,187,193, 96, 48, 56,245, 40, 33, 4, 73, 73, 73, - 30,122, 0, 96,179,217,114,138,138,138,124,106,122,147,144,144,176, 68,173, 86,255,205, 96, 48,212, 56, 13,145, 11,175,135,248, -153,162,162,162,126,254,116,228,180, 42,149,202, 5,137,137,137, 15, 57,243, 14, 66, 8,141,143,143,191,234,188, 39, 38, 38,254, -189,166,166,198, 35,239, 9, 9, 9, 62, 53,253,229,221,151,166,123, 58, 9, 33,136,143,143,191,234,116, 94,139,154,215, 3,254, - 34, 88, 28, 33,100,125,159, 62,125,110,222,190,125, 59,119,236,216, 49,174,109,219,182,112, 56, 28,144,164,218,243, 57, 53, 53, - 85, 83,223,141, 17, 66,150,246,235,215,239,222, 29, 59,118,112,235,215,175,231,186,119,239, 14, 66, 8, 28, 14, 7, 28, 14, 7, - 58,116,232,160,190,154,204, 16, 66,116,130, 32, 60,163, 84, 42,251,219,237,246,118, 0, 32,138,226,175,102,179,121,187,221,110, -159, 79, 41,173, 14, 69,199,106,181,106, 10, 11, 11,235,236,155,244,244,116,229,149,166, 77,175,215,239,230, 56, 46, 93, 30,151, -141,134, 51,221, 62,127, 41,165,103,139,138,138,122,251,211,140,137,137,113,105,250,211,240,158, 38, 73,210,217,194,194, 66,191, -154, 78,115,117,119,191,126,253,162,182,108,217, 66, 46, 93,186, 68,212,106, 53, 36, 73,130,195,225,128,205,102, 67,251,246,237, -235,213,126, 90,116,116,180,126,234,212,169, 45,111,187,237, 54,172, 91,183, 14, 15, 60,240, 0,250,246,237,123, 82,158,175,213, -106,227,142, 30, 61,154, 17, 27, 27, 11,131,193,128,138,138, 10,220,114,203, 45,245,217,196, 53, 73,207, 46, 77,102, 19,142,196, -202,227,212,238, 40,221,251, 83,238, 85,183,171, 20, 29, 29,125, 72,169, 84, 38,202,199,149,227,126,251, 86,197,223,241, 55,153, - 76, 5,197,197,197, 93, 2,233, 18, 66,154, 3,184,131,231,249, 86,130, 32,180, 1,208,220,110,183, 39, 2,128, 66,161, 40,224, -121,254,188,205,102, 59,110,177, 88, 78, 1,248,146,214, 54, 36,232,147,161, 41,227, 91, 18,187, 97,116,149, 89, 26,166,105,145, -221,218,112,102,234, 9,141,202,240,245,208,148,241,107, 67, 53, 89,127, 20,132,144,180,198,141, 27, 63,227,252,127,153,134,167, - 19,230, 40,147,201,212,151,231,121,149,221,110, 71, 65, 65, 65,241,187,239,190,123, 97,209,162, 69, 3, 8, 33,111,208, 32, 13, -143,246,234,214,244, 0,199,113,169,112,218, 7,137, 58,114,246, 28,184, 20,150, 7, 19,207,243, 11,238,186,235,174,135,214,174, - 93,171, 57,120,240,160,166, 93,187,118,174,251,147, 36, 73,240, 14, 60,164,165,165, 5,146, 35, 0, 4,142,227,222, 26, 61,122, -244,184,229,203,151,107, 46, 92,184,160, 73, 78, 78,118,105,186,155, 55,153,228,228,228,144,210, 26, 23, 23,247,159,219,110,187, -237,254,101,203,150,137, 27, 54,108, 80, 55,106,212, 8,113,113,113, 80, 40, 20,117,150,237,211,167, 79,176,150,248, 57,142,227, - 22,140, 24, 49,226,254, 85,171, 86,105,246,237,219,167,233,208,161, 3,120,158,191,234,188,143, 28, 57,114,220,202,149, 43, 53, -191,252,242,139,166, 85,171, 86,224, 56, 14, 28,199,213,209,227, 56, 14, 77,154, 52, 9, 73,243,206, 59,239, 28,183,122,245,106, -205,161, 67,135, 52,109,218,180,113,237, 79,183,226,185,122,167,243, 26,215,252,211, 83,231, 65,233, 12,151, 46,239,211,167,207, -208,237,219,183,243, 0,112,232,208, 33,148,150,150, 34, 37, 37, 5, 58,157, 14, 42,149, 10, 38,147,169, 94,225, 62, 66,200,127, -156,230, 74, 4,128,207,254, 54, 18,103, 69, 96,114,161, 5, 10,133, 2,103,206,156, 1,207,243, 87, 28, 66, 36,132,220,164,215, -235,151,125,254,249,231, 49, 93,186,116,225,138,138,138,144,158,158,142,210,210,210, 27,119,236,216,209,117,252,248,241,227, 9, - 33, 15, 80, 74,119,132,170,249,245,215, 95, 67,171,213, 66,163,209, 64,171,213,194, 98,177,144,224,107,249, 70, 16,132,212,243, -231,207, 39,232,116, 58, 72,146,228, 26,188,202,175, 93, 72,146,132,140,140, 12,107, 32, 77,158,231, 83, 47, 92,184,144,160, 86, -171, 65, 41,245,208,115, 56, 28, 80,169, 84,238,111, 10,112, 56, 28, 72, 79, 79,247,171, 41, 71,174,100,115, 5, 0, 43, 86,172, - 64,227,198,141,145,144,144, 0,173, 86, 11,181, 90,237,241, 64, 15, 5,158,231, 49,116,232, 80,204,152, 49, 3,217,217,217,120, -254,249,231, 61,110,176,162, 40, 34, 54, 54, 22,223,124,243, 13,244,122, 61,154, 53,107, 6, 81, 20,235,181,141,107, 17,194,145, -216, 61, 7, 46,186, 34,178,183, 14,108, 43,244,236,218,236,157,218, 49, 9, 28, 7, 72, 82,237, 35,147, 16, 80,187, 77, 42,251, -225,231,220, 87,130,233,242, 60,159,124,225,194,133, 4,149, 74, 21, 82, 58, 28, 14, 7, 82, 82, 82,248,128,105, 37,100, 88,102, -102,230,103,143, 63,254,184,162, 85,171, 86, 68,161, 80, 64, 16, 4, 8, 66,237, 45, 66,146,164,102,148,210,102,146, 36,221, 92, - 80, 80, 64, 23, 45, 90,244, 79, 66,200, 93,148,210,175,125,233, 9,212,216,169,202, 44, 13,251,254, 71,220, 56,122,240,139,248, -102,205,212, 27,251,117,150, 16,169, 49,158, 70,109,228,230,154,132, 16,162, 87,171,213,211,191,255,254,251,140,170,170,170,202, -190,125,251, 78, 39,132, 60, 77,195,208, 25,115, 89, 89,217, 17,249,191, 82,169,196, 83, 79, 61,133,219,110,187, 45,250,150, 91, -110,153, 66, 8,249, 7,165,212,239,181,201,113,124,234,174,253,231, 18,228,241, 59,135,118, 84,244,238,222,172, 0, 0,234, 22, -188, 80, 72, 14, 41,103,223,143, 57, 65, 13, 24, 33,228,159,163, 70,141,186,111,237,218,181, 58, 0, 88,188,120, 49, 70,141, 26, -133,216,216, 88,104, 52, 26, 40, 20, 10,136,162,232,241, 27, 64, 75, 46, 30,250,231, 61,247,220, 51,122,249,242,229,145, 0,176, -124,249,114,140, 28, 57, 18,113,113,113,136,140,140,132, 82,169, 4,207, 7, 60, 29,125, 18, 23, 23,247,159,190, 55,222,248,240, -178,101,203, 0, 0,211,158,126, 26,183,245,232, 1,157, 70, 13,141,186,246,221,151, 82, 64,201,139,184,117,242,147,193,242,205, - 1,120, 99,212,168, 81, 99, 87,173, 90, 21, 9, 0, 7, 15, 30, 68, 97, 97, 33, 18, 19, 19,161, 86,171,161, 84, 42, 93,121, 38, -132, 64,173,246,255,254,239,158,247, 81,163, 70,141, 94,185,114,101, 36, 0, 44, 93,186, 20, 67,135, 14,117,229, 93,165, 82, 65, -161, 80,120, 12,222,102,211,151,230, 93,119,221, 53,122,245,234,213,145, 0,240,241,199, 31, 99,240,224,193,136,137,137,113,237, - 79, 89,171, 62,199,232, 90,214,188, 94,240, 48, 88,206, 29,197, 37, 38, 38,142,253,254,251,239, 93, 79, 81, 65, 16,160, 82,169, -160, 82,169,160, 84, 42, 93,197,132,161, 66, 8, 33,137,137,137, 15,238,216,177,195,181,146,197,235,166,160, 82,169,234,253,224, -118,211, 31, 60, 96,192,128,149, 27, 55,110,140, 80, 40, 20, 48, 26,141, 56,114,228, 8,162,163,163,161, 84, 42, 49, 98,196, 8, -190, 79,159, 62,113, 55,223,124,243, 58, 66,200, 56, 26,194, 23, 10,148, 82,232,116, 58, 15,131,117,181, 69,200,106,181, 26, 27, - 54,108, 0,207,243, 62,111, 92,238,255, 19, 18, 18,130,234, 17, 66,160, 82,169,176,123,247,110,240, 60, 15, 81, 20, 33, 8, 2, - 68, 81,196, 87, 95,125,133,103,159,125, 22,197,197,197, 32,132, 64, 20, 69, 68, 70, 6, 45,221, 36,177,177,177,209,178,185, 2, -106,205,143, 90,173,134, 40,138, 68, 16, 4, 34, 23,225, 17, 66, 72,168,101,234, 28,199,225,147, 79, 62,193,235,175,191,142, 23, - 94,120, 1, 75,150, 44, 65,167, 78,157, 92,243, 5, 65, 64,101,101, 37, 98, 98, 98, 16, 19, 19,131,136,136,136, 43, 62, 23,174, - 37,188,247,206,155,243, 23,106, 32, 81,212, 86,242,144, 0, 9,160,160,144,168,132,130,220,211,120,117,198,191, 66,126,234,168, - 84, 42,236,218,181,203,101,130, 4, 65, 0, 33, 4,238,198, 72, 30, 26, 55,110, 28, 84, 79,161, 80,188,246,197, 23, 95, 40, 63, -249,228, 19,172, 90,181,202,117,110,105,181, 90, 68, 71, 71, 35, 46, 46,206, 53,164,166,166,146, 15, 63,252, 80,209,169, 83,167, -215, 0,248, 52, 88, 28, 71,163, 52, 45,178, 91,143, 30,252, 34, 0, 96,244,139, 20,101, 39,231,220,192,149,191, 18,229,107,249, -107, 1, 82,219,209,115,214,134, 13, 27,218, 39, 39, 39, 71,104,181,218, 11,243,230,205,139,123,234,169,167,178, 8, 33, 47,211, -171,235,148,185, 66,142,210, 68, 68, 68, 68,244,239,223, 95, 57,119,238, 92,180,108,217, 18,227,199,143,143, 93,188,120,241, 8, - 0,107,252,173,236,125,169, 45,122,251,157,104, 74,107,207, 31, 42, 81,143,223,210,194,243,120,122,202,171, 33, 37,170, 73,147, - 38,143,173, 91,183,206, 85, 29, 34, 57, 57,217,227,225,239,126,143,146, 7,127,134, 0,206,202,205, 77,155, 54,125,248,211, 79, - 63,117,105, 54,106,212,200,117, 95, 18, 4, 1, 28,199,225,251,239,191,199,188,215,178, 16, 19,159,140,133,111, 47, 14,154,206, -132,132,132, 37,195,134, 13,251,219,210,165, 75, 93,211, 58,182,104,129,219,251,244, 64, 66, 35, 61, 26,197,212,222,219,168, 68, -240,243,241,192, 1, 71,249, 57,215,164, 73,147,241,107,214,172,113,165,211,253,190, 12, 0, 6,131,193, 21,181,183, 88, 44,232, -214,173, 91, 72,121,119,215,148,163,107,178, 89,243,190,215,203, 47, 48,129, 52,155, 52,105,242,176,108,128, 1, 32, 54, 54,214, - 67, 67, 20, 69,172,249,102,153,119, 30,175, 90,179,190,199,221, 91,243,220,185,115,152, 59,119,174,199,113,151,163, 89, 41, 41, - 41, 88,180,104, 81, 32, 77, 95,116, 7, 16,239, 54,110, 1,160,116,251, 45, 2,240,131,143,229,228,233, 34,128, 27,156,243, 28, - 0,170, 0, 68,251,208,243,167, 83,140,218,238,126,226,189,150,247,222,142, 11, 1, 0, 8, 33,242,213, 59, 0,192,174,226,226, - 98,233,216,177, 99,220,193,131, 7, 33,138, 34, 18, 18, 18,208,189,123,119, 0,128,213,106,133, 40,138,208,106,181, 36, 58, 58, -186, 64,126,224,202, 59,207,189, 44,221,205,200,112,165,165,165,210,230,205,155,185,229,119, 13,129,133, 2,157,167,207,195,208, -225,195,177, 41, 69, 9, 30,192,141,199,138,161,209,104, 4, 81, 20,109,242, 65,144, 53,221,235,102,121,155, 35, 66, 72,164, 86, -171,253,240,203, 47,191,140,224, 56, 14, 85, 85, 85,144, 36, 9,125,251,246, 5,199,113, 56,124,248, 48,166, 77,155,134,207, 62, -251, 12, 95,124,241,133,186, 75,151, 46, 31, 18, 66,218, 81, 74,171,100, 13, 31,154, 0,128,200,200, 72,104, 52, 26,151,193,146, -243,236, 30,234,150,151,167,148,230, 22, 23, 23,119, 13,164,233,112, 56, 48,114,228, 72, 16, 66,192,243,188,199, 77,199,253, 87, -161, 80,224,240,225,195,117, 78, 62, 95,198, 80,206, 43, 0,104, 52, 26,232,116, 58,108,219,182,205, 53,191,115,231,206,176, 88, - 44,104,212,168, 17,126,253,181,110, 23, 80,222,154, 69, 69, 69, 52, 47, 47,143, 44, 95,190, 28,162, 40, 34, 46, 46, 14, 26,141, -134, 44, 91,182, 44, 75,161, 80,164,154, 76, 38,201, 98,177, 64,169, 84, 46,148,163, 89,130, 32,212, 84, 84, 84,196,249,211,228, -121, 30,143, 63,254, 56,158,123,238, 57, 44, 89,178, 4, 19, 38, 76,128,247,124,147,201,132, 70,141, 26,185, 76, 86, 40,121,191, - 90, 26, 92, 83,162, 56,114,104, 19,142,254,178, 5,146, 67,130, 67, 51,137,208,191, 0, 0, 32, 0, 73, 68, 65, 84,162,160,212, - 1,201, 14, 28,220,188, 55,227,242,217,188, 20, 10, 10, 56, 11, 50, 84, 21,213,246,155, 27,169,218, 0, 88,191,173,216,252,150, -191,116,202,251, 70, 16, 4,216,108, 54,124,249,229,151, 56,125,250, 52,190,253,246, 91, 24,141, 70,215,126,236,213,171, 23, 30, -126,248, 97,159, 6,203, 91,147, 82,186,244,210,165, 75,157,251,246,237, 75,202,203,203, 81, 94, 94, 14,163,209, 8,135,195, 1, -187,221, 14, 65, 16, 16, 17, 17, 1,181, 90,141,196,196, 68,152, 76, 38,106, 54,155,151,250,211,148, 36, 82, 97, 56, 51,245,196, - 55,107,166,222, 56,250, 69,138,181,175, 19,180,108,170, 50,252,239, 64,228,195,235,119, 62,127, 11, 0, 42, 57,239, 58, 28, 64, -109, 14,169,248,185,172,127, 79, 10,150,206,112, 16, 64,243,177,249,243,231,247,236,219,183,111, 66,101,101,229, 49, 73,146,232, -221,119,223,141, 19, 39, 78,180, 91,188,120,241, 99, 0,222,174,175, 38, 33,100,128,115,254,100,183,105,228,155,111,190,185, 11, -192,131, 31,124,240, 1, 70,141, 26,133,197,139, 23,103,194,203, 96,185,107, 82, 74,113,254,228,247, 56,127,106, 39, 36,137,186, - 69,193,125,255,247,247,230,227,157,206,154,154, 26,211,143, 63,254,168,251,224,131, 15,144,144,144,128,180,180, 52,104, 52, 26, - 68, 68, 68,120, 60, 92,221, 31,184,193,174, 77,163,209,104, 58,127,254,188,110,229,202,149,136,139,139, 67,243,230,205,161,209, -104,160, 84, 42, 93, 47, 2,203,151, 47,199,138, 25,247,225,252,241, 95, 48,242,246,186,213, 1,188, 53, 53, 26,205,223,150, 46, - 93,234, 17,242, 72,140,137,129, 32,114,224, 69,130,152, 65,119, 1, 0,202,190,251,220,111,235,142, 94,154,164,170,170,202,180, -111,223, 62,221,129, 3, 7, 32, 73, 18,154, 55,111, 14,131,193, 0,189, 94,239,202,255,230,205,155, 49, 98,196, 8,124,242,201, - 39,232,213,171, 87,208,188, 87, 87, 87,155,126,249,229, 23,221,167,159,126,138,216,216, 88, 52,105,210,196,149,119,121, 16, 69, - 17, 60,207, 35, 61, 61, 29, 21, 21, 21,208,233,116, 1, 53,107,106,106, 76, 7, 15, 30,212,125,250,233,167,136,137,137, 65,106, -106,170, 43,194, 38,155,162,215,223,153,225,161, 17, 65,146,174, 90,179,190,199,221, 91,243,174,187,238, 66,203,150, 45,161,215, -235,161,213,106, 93,218,129, 52,221,188,200,205,148,210,237,240, 36,158, 16,178,209,109,251,195, 9, 33, 27,221,127,253, 45,231, -252,123, 83, 86, 86, 86,183,236,236,236,185,189,122,245, 90,185,123,247,238, 21,254,244,252,233,100,101,101,101,102,103,103,207, -117, 95,222,199,118, 92, 8,110, 51,137, 51,115, 2, 0,180,109,219, 22,165,165,165, 80,169, 84,232,222,189, 59,138,139,139,161, -211,233,160, 80, 40, 64, 41,197,164, 73,147,248,231,159,127, 62,129,227, 56,216,237,181, 47,118,130, 32,248, 43, 75,151, 56,142, - 67,239,222,189,113,196, 89,242, 51,116,248,112,164,166,166, 66,174,196, 17, 17, 17,129, 73,147, 38,145,103,159,125, 86,144,163, - 23,148, 82, 24,141, 70, 36, 37, 37,249,141,205, 10,130,240,244,186,117,235,162,148, 74, 37,170,170,170, 92, 69,100, 60,207,227, -216,177, 99,120,227,141, 55,240,247,191,255, 29, 23, 47, 94, 68,114,114, 50,158,123,238, 57, 93,118,118,246,211, 0,102,250,211, -148,209,233,116, 46,115,165,209,104,240,244,211, 79, 11,125,250,244, 73,208,233,116,136,140,140,132, 92,220,231,112, 56,208,162, - 69,139,160, 86, 92,146, 36,108,218,180, 9,130, 32, 4,141, 96, 57, 79,188,144, 52,247,237,219,231, 50,103,238,111, 69,132, 16, - 28, 57,114,196,101,230, 66,208,164, 28,199, 65,171,213,162,113,227,198, 80,171,213,208,104, 52,100,229,202,149, 47,167,165,165, - 37, 61,251,236,179, 92,101,101, 37,215,187,119,111,140, 26, 53, 74,144, 36, 9, 86,171, 21,153,153,153, 1,211, 72, 8,193,246, -237,219,241,238,187,239, 98,194,132, 9, 62, 35, 88,114, 37, 72,189,254, 15,255,198, 33,108, 72, 0,172,118, 27, 12,213, 70, 87, - 17,174,195,225,192, 47,219,126,202, 56,251,211,201,204,141, 43, 63, 17, 1,192,180,237,115,247,213,146, 70,189,179,186,245,205, -177,138,125,219, 74,173,251, 2,233,115, 28,135, 39,159,124, 18,175,188,242, 10,238,185,231, 30,108,222,188, 25,211,166, 77,195, -248,241,227, 61, 34, 88,161, 96,179,217,222,123,224,129, 7, 38,172, 93,187,182,205,139, 47,190,200,201, 17, 44,141, 70, 35,215, -225,130,217,108,134,209,104,196,241,227,199,165, 71, 31,125,244,132,197, 98,121,207,159,158,157,168,127,214,168, 12, 95,183, 72, -229, 90,214,156,251, 87,100,223, 30,205,141, 68,221,181,226,174,214,131,233,176, 7,155,199,128, 82, 80, 9,144, 40, 96, 54,215, - 96,210,164,167,234, 95,102, 20, 70, 8, 33,195,198,141, 27,119,199, 99,143, 61,150, 86, 85, 85,117,198,110,183,219,228,121,211, -166, 77,195,201,147, 39,135, 16, 66,206,251, 43, 18,245,163,153,218,162, 69,139,167, 28, 14, 7, 37,132,156,166,148,230, 56,103, - 45, 4, 16,181,125,251,118, 0, 64,106,106, 42, 0,100, 18, 66,150, 3,168,112, 55, 99, 46, 40,133,205,102,135,209,104, 14,104, -172,228,113, 74,131, 85, 63,114,165,145,182,105,211, 6,119,220,113, 7, 68, 81,116,189,164,185, 23,143,121, 27,173, 0, 80, 0, - 18, 33, 4,201,201,201, 24, 54,108, 24, 20, 10,133,135,166,252, 64, 29, 54,108, 24,158,156, 57, 29,239, 61, 57, 16,239, 62,144, -129,193,179, 11, 2,166,211, 96, 48, 84,111,221,186, 85,253,220,132, 9,184,161, 85, 43, 52,210,235,209, 52, 49, 30,106,149, 18, - 10,247, 52,145,224, 65,117, 90,251,176,147,120,158, 71,135, 14, 29, 80, 80, 80,128,115,231,206,225,220,185,115,224, 56, 14,125, -251,246,117, 69,130, 79,157, 58,133,153, 51,103,194,108, 54,135,156,247, 86,173, 90, 97,224,192,129, 80, 42,149,208,104, 52, 30, - 69,131,242, 62,173,170,170, 66,203,150, 45,177,126,253,122,180,110,221, 58,168,102,219,182,109,209,191,127,127,143,253,169, 86, -171, 93,207, 13, 0,184,180,175,218,181,141,148,148,148,122,105,126,187,255, 34, 62,216,188, 21,102,139,132, 74,131,205, 99,133, -164, 70,122,236,252,244,197,144,242, 46,107,190,247,222,123,168,168,168,112, 61,123,228, 96,137, 28,156,104,210,164, 9,222,125, -247, 93,223, 98,191,121, 17,159,207, 42, 95, 70, 38,200,114,242,201,165,202,206,206,158,235,189,126, 48, 61,247,249, 94,235, 91, -188, 76, 89,157,147,216,215,221, 87,146, 47,130,148,148, 20,200,245, 60,228, 11, 68,198,110,183,227,179,207, 62, 67, 66, 66,130, -107,136,138,242, 29,253,167,148, 82,185,158,208,147, 69,181,213, 12,190, 73, 86,224, 60,128,219,139,106, 47, 8,185,142,208,186, -117,235,224,110, 96, 34, 35, 35, 3, 22, 23, 41,149,202,155,187,119,239,206,153,205,230, 58,230, 42, 59, 59, 27,227,198,141, 67, -235,214,173, 33, 73, 18,170,171,171, 49, 96,192, 0,113,225,194,133, 55,163, 30, 6, 75,163,169,173,207,111,177, 88,176,109,219, - 54,196,196,196, 32, 46, 46, 14,177,177,177,136,140,140,148,191,132, 12,120,101,203,149,252, 70,142, 28,233,122,240,185, 71,173, -188,205,214,238,221,187,131, 37,207, 85,105,178, 71,143, 30,208,106,181,208,233,116,208,233,116,216,180,105,147,107,153, 27,111, -188, 17,146, 36, 33, 33, 33, 1,123,246,236, 9, 88,204, 73, 41,165, 10,133,194,181,188, 40,138,100,217,178,101, 89,233,233,233, - 73, 83,166, 76,225,120,158,199,161, 67,135,112,244,232, 81, 52,111,222, 60,228, 58, 89,229,229,229,151,179,178,178, 28, 89, 89, - 89, 0,128,204,204, 76,148,151,151, 23,202,243, 43, 43, 43, 75,134, 12, 25,226, 81, 47,163,184,184,184, 36,232, 14,184,198,145, - 36, 9,118,171, 29, 6,147, 9,213, 85, 6, 87, 52,168, 48,175, 32,250,197,103,159, 17,223,152,244, 16, 0,224,217,183,222, 70, -213,146,223,110, 96,159, 63, 55, 46,225,174, 55, 86, 78, 5, 48, 34,144,190,193, 96,128,217,108, 70,179,102,205,176,127,255,126, - 84, 85, 85, 97,240,224,193, 30, 17, 82,121,159, 6, 11,197, 83, 74, 45,132,144, 62,195,135, 15,255, 97,254,252,249, 45,218,181, -107, 71,106,106,106, 96, 48, 24,224,254,251,203, 47,191,208, 21, 43, 86,156, 53, 24, 12,189, 41,165, 22,127,122,155,114,255,115, -122,104,202,248,181,255, 59,196, 15, 79,104,121, 66,159, 91,214,194, 94,146,171,170,169, 52, 30, 55, 57,232, 81, 80, 7,224,128, - 4,106,151,224,112, 22,111,253, 81, 16, 66, 58,180,104,209,226, 31, 11, 23, 46, 76, 52,153, 76,185, 54,155,173,198,107, 62, 22, - 47, 94,140, 97,195,134,253,131, 16,146, 19,172, 66,186,115, 29,101,116,116,244,180,109,219,182,101, 94,190,124, 57,191, 79,159, - 62, 83, 9, 33, 83, 40,165,150, 54,109,218, 68, 29, 56,112,160,175, 40,138,202,242,242,242,195,122,189, 30, 22,139,165,131,205, -102,179,116,235,214,109,167, 47, 61, 42, 1, 54,155, 13, 70,163, 25, 21, 21, 85,176, 88,109,206,123,166, 4,135,195,238,252,149, - 96,119,222, 71,149, 10, 33,178,107,199,164,106, 74, 41, 56, 66,202, 15,252,114,217,103, 77,106,249,188,240, 85,148, 21, 74,244, -202, 7, 14,226,252,106, 44, 46, 46, 14,162, 40,226,147, 79, 62,193,207,187, 54,253, 63,123,231, 29, 30, 69,213,182,241,251,204, -246,221,100,147, 13,105,164, 64,168, 74, 19, 41,130, 32, 69, 90,104, 2,138,210, 69,129, 15,145,142,162,148, 23, 17, 21,129,208, -139, 82, 21, 17, 65,145, 94,149, 34,210, 5, 68,233,189, 8, 4, 66,122,223,108,182,206,204,249,254,200, 78,220,108,182, 37, 4, - 17,156,223,117, 13,100,103,206,220,115,102,203,236,189,207,121,206, 51, 80, 72, 40, 56,214, 6,214,102, 5,103,179, 64, 38,145, -224,215, 51,119, 16, 91,211,251,196,108, 66, 8, 13, 9, 9,193, 43, 77,155,162, 75,211,166, 5,211,213,164, 82,248, 43,149,208, -200, 85, 5,145, 43, 0,148, 99,224, 54,124, 87, 20, 94,232,103,120,120, 56,254,252,243, 79,140, 30, 61, 26,179,102,205,130, 90, -173, 46,156,205,124,245,234, 85,108,216,176, 1,177,177,177, 37, 62,119, 33, 98, 55,113,226, 68, 36, 38, 38, 98,225,194,133,104, -216,176, 33,100, 50, 25,178,179,179,241,210, 75, 47, 33, 37,197,179,177, 20, 52,129,191,135,241, 20, 10, 69,145,104,147, 96,252, - 74,250, 26, 57,106, 14,124, 45, 2, 59,126, 91, 7, 2,130,147, 63,188, 95,228,187,104,217,250,163, 37,214,252,228,147, 79,138, -244,211,151,232,149,175, 56, 69,153,124,105,119,218,190,202, 56,113,226,196, 73,132,144, 93, 19, 39, 78,156, 20, 23, 23,119,201, - 23, 61, 55,219,127,178,255,255,138,195,186,211, 78,109,138, 27, 44, 74, 41, 85, 40, 20,224,121,190,136,169,114, 78,168, 21, 66, -126,142, 33, 69, 79, 48, 12, 3,158,231, 11,223, 12,206, 63, 87, 37, 18, 9, 78,156, 56,129, 19, 39, 78, 20, 89,191,114,229, 74, -143, 95,224, 44,203,214,210,106,181, 69,162, 87,114,185, 28, 19, 39, 78, 68,255,254,253, 11,205,149, 92, 46,199,234,213,171,241, -194, 11, 47,192, 98,177,212,242,212, 87,185, 92,158, 95,190,124,121, 6, 40,184, 0,249,249,249,145,209,163, 71, 75, 88,150, 45, -124, 78,132, 69,200, 77,243,246,102, 33,246, 89, 41,251,246,237,243, 41,130,229,107, 14, 18,165, 20,231,206,157, 43, 98,218,132, - 89, 48, 0,112,238,220,185,194,252, 44, 95, 52, 37, 18, 9, 56,142,131, 90,173, 38,114,185,156,200,229,242,104,193, 92, 73, 36, -146,194,215,219, 49, 39,207,219,185, 63,120,240,160,181,167,237,169,169,169, 79,109, 57, 6,171,205, 6, 99,190, 5,250, 60, 35, - 62,139,251,182, 96,229,103,248, 29,192,239,205,134,142,198,240, 14,177,109, 80,116,156,223, 43,142, 95,138,155, 55,111,134, 76, - 38,195,246,237,219, 17, 16, 16,128,110,221,186, 33, 32, 32, 0, 19, 38, 76, 64,239,222,189,125,142, 96, 1, 0,165, 52,135, 16, -210,236,189,247,222,251, 99,206,156, 57, 21, 43, 84,168, 0,139,197, 2,171,213, 10,139,197,130, 91,183,110, 97,221,186,117,247, -243,243,243,155, 81, 74,115,188,233,237,125,240,205,173, 45, 71, 62, 72,108,215,251,117,227,213,148, 61, 72, 78,206, 0,203, 62, - 0,207,177,176,178, 5, 51,146, 57,150, 5,203,114,144,203, 37, 1,115,166,191,255, 11, 15, 10,134, 33,150, 30, 61,122,116, 42, -201,115, 82, 90, 8, 33, 65, 0,134,254,245,215, 95,250,224,224,224, 11,246,213, 1,137,137,137, 4, 0, 34, 35, 35, 41, 0,199, - 4,247,161,246,124, 44,111, 55,109, 30,186,115,231,206,151,116, 58,157,133, 97,152,172,143, 62,250,168,194,167,159,126, 58, 20, -192,162,107,215,174,125,219,167, 79,159, 64,199, 95,240, 25, 25, 25,167,135, 14, 29,138,107,215,174,125,235, 74,140,194, 30,193, - 50,153,144,150,145,133,193, 67, 39,219,215,219,255,165, 69,219, 14, 27, 5, 21, 0,164,167,220,194,192,193,163, 61,206,134,224, -121,222,229, 23, 96, 9,114,112, 10,142, 91, 16,122, 0, 80,240, 30,245,247,247, 47, 24,102,219,190, 14, 63,205, 27, 10,112, 86, - 80,155, 17,176,230, 3,214, 60,240,150,124, 16,185, 26,176,121,175, 82, 65, 8,161,254,254,254,240, 87,171, 17,166,211, 21, 20, -113,148, 72, 32,147, 73,193,219, 0,194,217,103, 94,243, 0,239, 67,129, 15, 74, 41, 13, 9, 9, 1,207,243, 80,171,213,184,123, -247, 46,134, 15, 31, 14,171,213,138,215, 94,123, 13, 22,139, 5, 38,147, 9, 70,163, 17, 85,170, 84, 65,126,126,190, 79,231, 46, - 92,231,133,209,158,247,223,127, 31, 47,188,240, 2,166, 78,157,138,241,227,199,163, 74,149, 42, 24, 54,108, 24,214,173, 91,135, - 58,117,234,120,212,117,124, 62, 5, 77,225,117,113, 30,202, 3, 80,226,215,200, 89,179, 32,239, 31,197, 94,247, 49,111,181, 45, -177,102, 92, 92, 28,210,210,210,138, 69,174,132,191,163,162,162,176,108,153,247,220, 59, 55,199, 19,162, 69,225, 46, 54,191,226, -212, 14, 40,200,165,250, 3,128, 57, 46, 46,238, 82, 92, 92, 92, 23, 66,200,174,184,184,184, 46, 78,237,188,233, 56,111, 79,243, -214,215,194,171,175,221,125,182, 2,254,142,140, 8, 95,160,246,131, 8,237, 0, 20,228,251,108,217,178, 5,194,140, 14,199, 54, -174, 16, 12,214,207,161,246, 16,177, 61,114,229,248,184,107,215,174,168, 92,185,114,145,232,149, 90,173,246,248,166,225,121, 30, -241,241,241,184,120,241, 34,154, 54,109,138,156,156, 28,200, 24, 6, 31, 92,184,128,218,111,189, 5,139, 61, 34,163, 80, 40,240, -238,187,239,250,148,168,126,231,206,157, 32,199,199, 33, 33, 33, 9, 45, 90,180,136, 58,117,234, 84, 97,226,187,125,248,172,208, -104,248, 98, 94, 40,165,120,227,141, 55,138, 68,173, 28,205,149,227,178,103,207, 30,192,135, 33, 66, 74, 41, 90,180,104, 81, 24, -189,210,106,181,216,182,109, 27,128,130,215,170,101,203,150, 0,128,240,240,112,159, 52,133,243,176, 39,182,195,100, 50,241,122, -189,158, 57,125,250, 52, 20, 10, 69, 97,196, 78,173, 86, 67,165, 82, 65,169, 84,150,106, 70,208,127, 1, 74,121, 88,108, 54, 24, -141, 70,228,229, 21, 84, 8,185,117,113,115,145, 54, 86,115,233, 39,167, 9, 81, 42,189, 94,143, 95,127,253, 21, 91,183,110, 69, -195,134, 13,139, 37,185, 3,222, 35, 88,127,247,153,166, 17, 66,154,143, 27, 55,238,228,180,105,211, 34,203,149, 43, 7,171,213, -138,123,247,238, 97,213,170, 85,137,249,249,249,205, 41,165, 94, 47, 44,127, 11, 2, 54, 27, 11, 83,190, 25, 57,185,122,124, 58, -125,181,187,150, 12, 0,100,166, 94, 67,215,110, 61, 75, 93, 14,165,164,216,141,210,112,199,117,246,161, 58, 33, 28,159, 75, 41, -237, 95, 18, 77, 66, 72,235, 89,179,102,245,110,216,176,161, 54, 39, 39,231, 10, 0,188,243,206, 59, 56,115,230, 76, 91, 66,200, - 37, 74,233, 65, 66, 72,157, 6, 13, 26,180,125,231,157,119, 0, 0, 95,127,253, 53,118,237,218,245, 43,165,244,160,235,126,242, -133, 67,132,121,121, 70, 4,232, 34,240,224,206, 97,175,125,145, 75, 76,160,188,251,225, 66,193, 16,184,138, 90, 57, 94,159, 74, -240,254,161, 66,206,159,240, 69,221,233,141,183,208,105,248, 76,104,100,192,140,129,205, 80, 69, 7, 64, 93, 14,242,150, 19, 64, -116, 49, 5, 59, 14,223,233,147,254,248,229,203,113,230, 70, 65,133,151,232,208, 80,140,235,221, 27,212, 6, 28,191,124, 25,235, - 15, 30, 68,239,214,173,161, 81,169,124,210, 18,206, 93, 46,151,227,214,173, 91, 56,126,252, 56,106,214,172,137,155, 55,111, 22, - 41, 39, 65, 41,245,233,252, 41,165, 84,152,156,164, 84, 42, 33,147,201,144,156,156,140, 46, 93,186, 20,254,192, 63,124,248, 48, -198,141, 27,135, 65,131, 6,161, 85,171, 86, 46,243, 98,157, 53, 67, 67, 67, 11, 3, 7,206, 19, 16, 28,135,109, 75,242, 26,185, -210, 20, 40,237,235,238,168, 57,125,250,116,151, 19, 37,124,209,116,244, 34, 30, 56,141,162,209, 35, 8,249, 80,130, 33,114,126, - 12, 32, 72, 88, 55,113,226,196, 73,190,238,231,248, 88,136,128, 57,233,186, 69,106,111, 88,228,140,133, 47, 89, 33, 92,236, 10, - 63, 63, 63,140, 24, 49, 2, 83,166, 76, 65, 72, 72,136,215,220, 25,193,185,122, 98,231,206,226, 31,178,237,219,183,123, 27, 34, -188, 26, 24, 24,248, 66,155, 54,109,144,147,147,131,251,247,239,195,207,207, 15,181,231,205,195,133,225,195, 81,111,249,114, 48, -109,218,128,144,130, 34,169, 23, 46, 92,128, 90,173,190,234,177, 35, 78, 16, 66,160,213,106, 17, 20, 20, 84, 56,166, 46, 24, 45, -135, 8,150, 87,231, 70, 41,197,207, 63,255,236,242, 87, 98,105,114,176,132, 15,255,201,147, 39,139,228, 95, 57, 26,158,147, 39, - 79, 22, 70,176,132,221,188,245,211,254,171,142, 10,122, 26,141, 6,229,202,149,131, 82,169,132, 90,173, 46, 98,174,124,137,222, -121, 43, 36,170, 86,171, 79,249,249,249,233,132,237, 50,153, 12,122,189, 62, 59, 35, 35,163,177,183,190,254,155,225, 65,193, 90, - 89, 24,141, 38,228,233,203,190,150,164, 48,225,100,203,150, 45,120,241,197, 23,139,153, 43,225,185, 46, 41,148,210, 4, 66, 72, -171, 69,139, 22,253, 62,127,254,252,160,188,188, 60,124,251,237,183, 57,121,121,121,173, 28,242,136,124,211,226, 41,108, 86, 43, -242, 77,102, 24,242, 10,158,131,191, 46,109,246,178,215,147, 77,141, 26, 53, 6, 14, 27, 54, 44, 84,175,215,255,197,243,127,199, - 83,230,207,159,143,191,254,250,107, 32,128,131, 0,150, 79,159, 62,189,122,221,186,117, 43, 0,192,244,233,211,239, 3,112,157, -148,130,130,107,135,213, 62, 68,152,151, 87, 16,245, 48, 25,210,203,164,191,130,201,112,151,115, 85,154,161, 28, 98,159,185, 44, -145, 72, 48,114,228, 72, 92, 56,127, 30,109, 35,115, 81,165,188, 22, 52,247, 1,228,109, 62,193,185, 52, 53,230, 46,240, 57,165, -173,144, 13, 14,147,120,230,110,216,224,114,219, 95,175,122, 28, 93, 47, 68, 56,247,235,215,175, 67,173, 86,131,227,184, 98,223, - 55, 37, 61,127, 71,227,178, 96,193, 2,140, 27, 55, 14,171, 87,175,198,133, 11, 23, 80,175, 94, 61,180,107,215, 14,169,169,169, - 56,127,254, 60,204,102,179,207,253,116,204,139,187,126,251, 50,246, 31,223,141,248,132, 59, 72, 76,190, 95,162,254,185,211, 20, - 16, 94,247, 45,251,207,226,141, 88,143,165,243,220,106,126,242,201, 39, 72, 77, 77, 45, 18,185, 18, 12, 43, 0,183, 17, 44,103, - 47,226, 68,186, 83,174,147,240,216,226,100,118,156, 31, 59,183, 7,128, 84, 0, 18, 47,251, 57, 63, 78,143,139,139, 59, 36, 68, -190,236,186, 18,234, 38,255, 10,112, 83,104, 84,120, 50,132, 47,101,199,168,143,240,183,159,159, 31,180, 90, 45,180, 90, 45, 2, - 2, 2,188, 70,134, 4,131,213,226,182,190, 72, 46,151, 16,201, 2,128, 65,131, 6, 21,139, 96, 57, 22,228,116,133,217,108, 62, -124,248,240,225,250, 93,187,118,149, 92,189,122, 21, 18,137, 4, 60,207,195,210,180, 41,234, 45, 95,142,139,239,191,143,151,239, -222,133,201,106,133, 74,165,194,222,189,123,173,249,249,249,135, 61,118,182, 56,196,209, 96,249,249,249, 33, 48, 48,176,208, 96, -248,226,202,133, 15,173,167,252, 6, 97,113, 76,242,247,134,144,115, 38, 44,194, 23, 43, 33, 4, 70,163,177, 48, 89,211,177,189, - 39,132, 33, 66,199, 15, 30,195, 48,208,233,116,133, 23, 13, 33,130,229,107,244,206, 91, 33, 81,141, 70, 19,112,237,218,181,106, - 66, 25,137,244,244,116,180,105,211,230,134, 59,189, 39, 6, 30,176,178, 28,242,140, 38,228, 25, 61, 15, 49,148, 4,225,189,246, -253,247,223,227,214,173, 91,176, 90,173,136,139,139, 43,102,172, 74,146,228,238, 12,165,244, 86,131, 6, 13,248,142, 29, 59,226, -228,201,147, 80, 42,149, 54, 74,105,137,235, 87,241,148,135,149,101, 97, 50, 26,145,103, 48,120,223,225, 41,224,218,181,107, 57, - 90,173,246, 4, 0,255, 27, 55,110, 72,252,252,252, 80,181,106, 85,152, 76,166, 28, 0, 57, 64, 97,206,219,204,119,223,125,119, - 33, 0,216,108,182,153,158,114,218, 40,165,176,177,118,179, 94,134,207,163,240, 94,114,119, 77, 42, 77,185, 20,199, 47, 84,158, -231, 49,228,157,119,208, 46, 50, 23,221, 27,134,194,144,116, 3,154,192, 80, 16, 93, 37,204, 93,240, 51, 46,221,246, 57,213,146, - 2, 64,135,150,175,226,249,154,197,203,123, 53,111, 91,240, 91,236,216,175,167,144,146,158,232,115, 63,129,130,115, 55, 24, 12, -110, 35, 85,190, 70,176, 4, 77, 98, 47,151, 34,147,201, 80,191,126,125, 60,243,204, 51, 56,116,232, 16, 26, 52,104,128,155, 55, -111,226,230,205,155,184,123,247, 46, 46, 92,184,128,172, 44,111, 35,205,197, 95,163,109,251,214, 35, 75,159, 9,133, 92,129,204, -236,116,196, 63,184,131,240, 96,239,165, 88, 60,105, 58, 6, 82,106,188,242, 41, 0, 32, 50, 52,176, 68, 6,203, 81,115,206,156, - 57,197, 76,123, 25,148,222, 57,229,229,113, 73,247,127,228,184,188,250, 42, 20, 10, 99,185,114,229,212,142,227,167, 12,195, 32, - 48, 48,144,204,154, 53, 75,194, 48, 12,180, 90, 45, 2, 3, 3, 33,132, 5,189,161, 80, 40,140,149, 42, 85, 82, 11,111, 64,225, - 3, 24, 16, 16, 32,153, 53,107, 22, 89,185,114,165,203,253,118,238,220,233, 45, 7,107,126,255,254,253,255, 47, 33, 33, 33, 40, - 44, 44, 12, 73, 73, 73, 80, 40, 20, 5, 31,138,214,173,209,226,246,109, 88, 11,114,138,112,253,250,117,124,245,213, 87, 6,179, -217, 60,223,199,231,167, 16,127,127,127, 4, 7, 7, 23, 14, 13, 10, 17, 28, 7,179,232, 83,106,165,167, 80,188,240,139,175,164, - 56, 26, 44,225,139,117,232,208,161, 69,204,150,175,200,229,114, 86,168,212,206, 48, 12,172, 86, 43, 26, 52,104,128,212,212,212, -194, 15,139, 99,228,206, 23,131, 37,147,121, 46, 36, 42,149, 74, 97,177, 88,208,178,101, 75, 16, 66,176,120,241,226,167, 99,216, -145,231,137,191,127, 48, 34, 35,159, 69,104,152, 9,188, 47,201, 33, 62,194,178, 44,134, 13, 27, 86, 36, 98, 37,204, 84, 20,134, -248, 41,165,176,217,108,222,102, 63,185, 69,248, 92,251,242,249,118,171, 1, 20, 14,109, 25, 12,166, 82,235, 60, 46,162,163,163, - 3,236, 67,134,206,184,158,237,135,191, 75, 50, 16, 66,166, 37, 36, 36,212,173, 81,163, 6, 94,126,249,101,236,217,179,103, 59, -128,173, 14,237, 18, 8, 33, 75,132,191, 61,245,131,218,135, 90,141, 38, 51, 12,134,178,143,134,122,250,161, 87, 26,132,107,206, -148, 41, 31,163, 93, 68, 54, 94,171, 23,136,239,118,253,134,126,245,213,128,197,183, 2,185,142, 8,125, 9,142,170,140,202,207, - 53, 41,182, 93, 21, 88, 48, 52, 87,249,185, 38,144,220,191, 89, 34,109,231, 33, 54,231,235,101,105, 34,120,142,207,231,224,193, -131, 49, 97,194, 4,180,111,223, 30, 55,111,222,196,145, 35, 71,112,243,230, 77,140, 30, 61, 26,117,234,212, 65,189,122,245, 74, -164,185, 99,255, 38,228,230,229,128, 33, 12, 50,115, 50, 96, 50, 27, 49,126,152,215,250,196, 94,251, 41,112,103,127, 28, 0, 96, -243, 47,103, 74,173, 57,105,210, 36, 36, 39, 39, 23,137, 92, 61, 76,222,213,147,138, 75,131,149,145,145,225,114,188, 47, 52, 52, - 52, 37, 54, 54, 54, 44, 41, 41, 9,254,254,254, 94,205, 21, 33,164, 29,181,215,202, 72, 78, 78,118,169,169,213,106,173,177,177, -177,178,136,136,136, 34,179, 7,253,252,252, 10,219, 56,221, 10,164, 80, 19, 0, 40,165,122, 66,200,144,102,205,154,125,183,103, -207, 30,205, 51,207, 60,131,220,220, 92, 80, 74,177,122,245,106,140, 28, 57, 18, 42,149, 10,215,175, 95, 71,183,110,221,242,243, -243,243,135, 80,135, 26, 88,174, 52, 93,156, 7, 24,134, 41,172, 98,239,194, 92,121, 60,119, 65, 3, 0, 22, 45, 90,132, 25, 51, -102, 96,210,164, 73,110,247, 5,128, 21, 43, 86, 0, 78,195,121,174, 52, 41,165,152, 59,119,110,153,105,102,100,100,172,118,220, -238,231,231,183,184,123,247,238,210,251,247,239, 23, 49, 85,142,139,139, 11, 82, 17, 77,111,133, 68, 37, 18, 9,194,195,195, 49, -109,218, 52, 4, 7, 7,163,124,249,242,197, 34, 47,222, 94,163,210,240,168, 53, 57,202,159,158, 51,243,227,230,223,174,221, 33, - 83, 42,128, 19, 71, 54, 35, 55, 43,185, 72,123,179,245,239, 41,209,138, 6,109, 97, 57,243,171, 79,253, 52,155,205,152, 61,123, - 54, 62,253,244, 83,124,250,233,167, 30,251,100,127,221,189,106,122,194, 23,147,229, 82,147,167, 68,227, 23, 4,149, 95, 36,106, -215, 9, 2, 95,194, 90,157,143,233,117,231, 19, 19, 19, 17, 25, 25,137,155, 55,111, 62, 39,145, 72,138, 56, 2,142,227,204, 42, -149,170,200,108, 63, 55,154, 23,183,108,217, 82,119,242,228,201,152, 49, 99, 6, 0, 12, 56,124,248,112, 31, 66,136,224, 52,221, -154, 52,103, 77,158, 82,162,214,232,160,242,139, 64,237,231,116,224,249,210,213, 60,117,117, 13, 17, 70, 43, 28,163, 87, 37, 44, - 36,237,242, 90, 7, 0,127,252,186, 29, 83,222,127, 14,171,127,250, 29, 95,156, 2,158,215,165,162,118,104, 26,248,180,171,248, -176,223, 11,152,251,195,159, 0,128, 35,135, 61,107,162, 32,205,199,109, 31, 76, 70,143, 55,189,112,219, 79,231,145, 26,225,154, -234,216,198, 83, 4,203,149,166,240,227, 80,175,215, 35, 59, 59, 27,223,125,247, 29, 6, 14, 28,136,212,212, 84,220,189,123, 23, - 55,110,220,192,143, 63,254, 88, 56, 59,189, 36,253,148,201,100,248,224,157,143, 48,121,238, 88, 80, 80,212,168, 86, 27, 19,135, -127,138, 70,207, 55, 45,245,185, 59, 71,176, 4,188, 69,175, 60,105, 46, 90,180,168, 84,239,165,167,141, 18,141, 31, 8,145,172, -144,144,144,194, 55,135,227, 27,175, 52,191,116, 37, 18, 9, 88,150, 45,204,237, 17, 22, 0,232,218,181, 43,118,238,220,233,203, -204,136, 61,132,144, 55,107,213,170,181,234,179,207, 62,243,127,249,229,151,165,145,145,145,104,212,168, 17,174, 95,191,142,159, -126,250,201,182,116,233, 82, 67,126,126,254, 32, 74,233, 47, 37,238, 36, 64,132, 91,207, 56, 46, 69, 26,120,233,163,213,106,189, -127,243,230,205,136,185,115,231, 74, 24,134,193,194,133, 11, 11, 63,140, 66,161, 86, 71,142, 28, 57,194,242, 60,239,113, 72,198, -102,179,221,191,121,243,102,196,188,121,243, 36,132,144, 66, 77,134, 97, 10, 53, 29,251,229,139,102,177, 19,183, 95, 96,220,153, - 43, 87,125,119,198, 91, 33, 81,169, 84,138,235,215,175, 99,202,148, 41, 32,132, 96,243,230,167, 35, 71,231,194,213,244,149,245, -106,135, 5,117,237,212,188, 46, 8,129,213, 82,124, 4,200, 63,171, 32,249, 93,209,160, 45,186,207, 91,143,173, 31,244,246,170, - 75, 41,189,117,236,216,177,114,179,103,207,150, 74, 36, 18, 44, 88,176,160, 72,177, 95,231,215,253,232,209,163,108,105,134,247, -132,207,179,213,106,133,209, 88,186,168, 9,165,244,120,220,244,201,177,107,190,255, 89, 70,136, 5, 39, 14,111, 70, 78,182,235, -169,233, 10,153, 20, 43,191,219,194,202,101,146,210, 37,149,148, 29, 95,244,232,209, 99,242,166, 77,155,164, 0, 46,121,109,237, -158,237,223,124,243, 77,167,158, 61,123,150,171, 94,189, 58,190,253,246, 91,185, 78,167,107, 72, 8, 33,174, 76,154, 39, 40,165, -219,103, 78,159,252,246,119, 63,252,172, 96,136, 21, 39,142,108, 70,142,147, 89,119, 70, 46,151,225,155,213, 91,172,114,185,236, -154,167,118,194,205,220,203, 34,114,229, 76,183,254,195,209,125,209, 23,168,218,168, 3,102,206,106,135,111,166,247,196,252,142, -114, 88, 55,246,195,243, 61,214, 96,221,212,206, 0,128,200,111,124,211,147, 73,229,184,231, 34, 66,149,157, 83,144,216,174,215, -151, 44, 74, 42,156, 59,224,254, 26, 94,210, 8, 22,195, 48,168, 92,185, 50,170, 86,173,138,102,205,154,161, 65,131, 6,104,221, -186, 53,206,159, 63,143,243,231,207, 99,244,232,209,110,205,149,183,126,202,100, 50,180,122, 41, 22,191,183,240,248,146,150, 88, -179,180, 81,110,111,154,174,222, 75,195,134, 13, 3,128,255, 68, 52,171,196, 6,203,113,198,193,195, 12, 29, 56,106, 90, 44,150, -194,161, 55,199,186, 74, 66,210,187,143, 51,244,126, 33,132,212,249,248,227,143,223, 87,169, 84,173,243,243,243,159, 5, 0, 63, - 63,191,235,102,179,249,160,209,104, 92, 64, 41,205,126,152,190, 58,150,101,112,213, 5, 79,251,102,101,101,117,232,208,161,195, - 47, 82,169,180,178,227, 7,214, 49,241,207, 17,158,231,239,166,164,164,120,156,170,158,145,145,209,161,125,251,246, 46, 53, 29, -255, 47,137,166, 51,194,236, 79,119,230,202,213,113,156,241, 86, 72, 84, 42,149,194,207,207, 15,219,182,109, 67, 72, 72, 72, 73, -186,247,175,231,220,229,212,217,158,182,183, 10, 81, 30, 6, 16,218,125,222,250,123,135,210, 45, 49,173, 66, 20,241, 91, 63,236, - 83,209,211, 62,233,233,233,237, 7, 14, 28,184, 91, 42,149, 86, 6,138, 62,255,174, 94, 11,150,101,239, 36, 39, 39,151,184,236, - 1,165, 20,215,174, 93,227, 7, 15, 30,156,158,150,150,214,179,164,251, 3,192,196, 41, 95,204,159,241,217,200,224,142,177, 77, - 26,129, 1, 44,238,147,122, 41, 1,168, 84, 38,185, 63,110,210,194,119, 74,115,172,178,130, 82,122,134, 16, 50,173, 81,163, 70, -163,225,182, 46, 56,188,150,169,160,148, 90, 9, 33,243, 59,117,234,244,225,168, 81,163,116,237,219,183,183, 70, 69, 69,157,118, -140,206,251,202,185,203, 41,239,214,171, 21, 26,221,177,221,139, 29, 64, 8,181, 88, 60, 39, 71, 19, 2, 10, 74,169, 92, 46,187, -118,234, 92,226,243,238,219, 21,185, 99, 70,153, 15,205,143, 24, 49, 2, 35, 70,140, 0, 80,240,126, 90,188,184, 5, 54, 93, 60, -134, 30,207, 39,192,252, 85,115,144, 0,143,111,245, 34,253, 4,128,143, 62, 30, 92,102,125,115, 60,119,161,127,101,145,131, 37, -145, 72,144,158,158,142,235,215,175, 35, 37, 37, 5,249,249,249,184,114,229, 10,172, 86, 43,178,178,178,240,220,115,207,149,186, -159,101,245, 26, 61, 78,205,255,130,177, 18, 40,145,193, 98, 89, 54,193,219, 93,207,109, 54, 91,137,102, 25,201,100, 50,211, 51, -207, 60, 67, 92,205, 54, 16,254,246,243,243,243,233,231,179,221, 64, 77, 1, 48,133,216, 63, 17,153,153,153, 15,237, 2, 57,142, - 75,140,137,137,145,184, 51, 46, 0,192,178,172,199,138,113,148, 82, 3, 0,207,113,220, 18,242, 40, 52,157,145,201,100,134,154, - 53,107, 22,230,114, 57,215, 52, 33,132, 64,173, 86,123,204,186,245, 86, 72,212, 96, 48, 36,117,232,208,129,115,220,238, 88,136, -244,169,134,208,248,206,125,254, 47,230, 80,186, 37, 6, 0, 4,147, 5, 74,227,221,237, 66, 41, 53, 2,120,249, 81,119,237,246, -237,219,150, 23, 95,124,241,123,189, 94, 63,156, 82, 90,234, 44,253, 73,159, 44,246, 60,118,253, 47,132, 82,122, 6,192,219,101, -160,115,145, 16, 50,116,246,236,217, 61,103,207,158, 93, 13, 64, 8, 0,161,142,128, 87,147,230,200,185, 43,105,101, 94, 27,140, -101,217,132,170, 85,171, 2,240, 61, 82,227,237, 26,111,179,217, 60,126, 79, 92, 66, 32, 38,157, 4, 10,110,227,150,225,147,166, -201,100,202,108,218,180,105,137,194, 44, 44,203,122,188,134, 56,158,123, 68, 68, 4, 34, 35, 35, 11,255, 23,112, 94,239,173,159, - 44,203, 38, 68, 71, 71, 35, 36, 36,196,109,133,118,231,156, 43, 95, 52,203,250, 53,242,164, 25, 25,185,198,213, 46,143,165,159, - 79, 58, 37, 50, 88,194, 61, 6,203,146,148,148,148, 71,114,111, 20,143, 3,246, 37, 36, 35, 35,163, 81, 89,105, 61,105,100,100, -100, 4,123,111,229, 25,111,133, 68, 83, 82, 82, 60, 22, 34,125,154, 57,148,102, 25, 80,108,157,221,108, 61,110, 12, 6, 67, 69, - 74,105,169, 50,243,123,244,232, 81,118, 25,253, 79, 56,118, 67,188,250,113,247,195, 21,233,233,233,101,126, 77,127, 20,223, 19, -153,153,153,117,203, 90,243, 73, 57,247, 71,209,207, 39, 69,243, 73,231,191,155,125, 38, 34, 34,226,145,210,154, 43, 17, 17, 17, - 17,145,130, 25,101,237, 92,109, 40,201,204, 29, 66,136, 75, 13, 79,120,211, 23, 53, 69, 77, 81, 83,212, 20, 53, 69, 77, 81,243, -233,211,244,166, 93,214, 51,135, 31, 27, 66,189,156, 71,177, 0,104, 39,106,138,154,162,166,168, 41,106,138,154,162,166,168,249, - 95, 91,196, 33, 66, 17, 17, 17, 17, 17, 17, 17,145, 50, 70, 52, 88, 34, 34, 34, 34, 34, 34, 34, 34,101,140,104,176, 68, 68, 68, - 68, 68, 68, 68, 68,202, 24,209, 96,137,136,136,136,136,136,136,136,148, 49,162,193, 18, 17, 17, 17, 17, 17, 17, 17, 41, 99,136, -125, 54,128,136,136,136,136,136,136,136,136, 72, 25, 33, 5, 0, 66, 72,161,203,162,148,150,236,206,150, 34, 34, 34, 34, 34, 34, - 34, 34, 15,201,211,230, 69, 10,111,149,243, 52,156,140,136,136,136,136,136,136,200,147,203,211,228, 69, 10,115,176, 28,157,163, -136,136,136,136,136,136,136,200, 63,205,211,228, 69, 10, 13,214,211,228, 26, 69, 68, 68, 68, 68, 68, 68,158, 60,158, 38, 47, 82, - 36,130,245, 52, 57, 71, 17, 17, 17, 17, 17, 17,145, 39,139,167,201,139,136,179, 8, 69, 68, 68, 68, 68, 68, 68, 68,202, 24,177, - 14,150,136,136,136,136,136,136,136, 72, 25,243, 72, 13, 22, 33,164,157,168, 41,106,138,154,162,166,168, 41,106,138,154,162,230, -127, 13, 49,130, 37, 34, 34, 34, 34, 34, 34, 34, 82,198,136, 6, 75, 68, 68, 68, 68, 68, 68, 68,164,140, 17, 13,150,136,136,136, -136,136,136,136, 72, 25, 35, 26, 44, 17, 17, 17, 17, 17, 17, 17,145, 50, 70, 52, 88, 34, 34, 34, 34, 34, 34, 34, 34,101, 12, 1, -224,114, 38, 0,165,116,191,207, 34,165,152, 77,224, 77, 95,212, 20, 53, 69, 77, 81, 83,212, 20, 53, 69,205,167, 79,211,155,118, - 73,252,199,191, 26, 74,233, 35, 91, 0,180, 19, 53, 69, 77, 81, 83,212, 20, 53, 69, 77, 81, 83,212,252,175, 45,226, 16,161,136, - 71, 8, 33, 82, 66,136,180,180,219,255, 41, 77, 17, 17, 17, 17, 17,145,127, 19, 46,191,196, 8, 33,213, 1, 76, 2, 16,232,176, -250, 20,165, 52,206,169,221, 15, 0, 52, 14,171, 12, 0,166, 82, 74,111,250,112,108,185, 93, 95,105, 95,120, 0, 38, 0,102, 0, -122, 0, 54, 31,207, 65,228, 17, 65, 8,105, 10,160,139,253,239, 93,148,210, 19, 37,217,254, 79,105,254, 83, 68, 70, 70,170,131, -130,130,218,159, 57,115, 70,113,229,202, 21, 28, 61,122,148,174, 92,185,210,154,149,149,181, 47, 49, 49,209,248,184,251, 39,242, -240, 16, 66, 58, 0,152,104,127, 56,147, 82,186,247, 33,245,136, 70,163, 25,237,231,231,215, 89,169, 84, 70,178, 44, 75,242,243, -243, 19, 13, 6,195, 47, 44,203,206,163,148,242,165,208,108, 20, 18, 18, 50,180, 78,157, 58,207,220,190,125,251,254,189,123,247, -214, 2,216, 11,160, 67,197,138, 21,251, 87,169, 82,165,194,165, 75,151,110,164,167,167, 47,167,148,254,241,184,250, 41, 34,242, - 95,199, 93,148, 96, 10,165,180,159,227, 10, 66,138,223,224,186, 77,155, 54,221,246,237,219,167,225,121, 30,194,162, 86,171, 89, - 0, 3,188, 28, 55,248,248,241,227, 49,195,135, 15,239,158,152,152,248,130, 94,175,111, 12, 0, 26,141,230,247,176,176,176, 63, - 22, 45, 90,244, 99,251,246,237, 19, 80, 96,180,124,134, 16, 34,149,201,100, 3,131,130,130, 58,179, 44,219,128, 82, 10,153, 76, -118, 38, 43, 43,107,175,205,102,251,134, 82, 90, 98,211, 70, 8, 81, 72,165,210, 17, 74,165,178, 3,203,178,117, 1, 64, 42,149, - 94, 48,155,205,123, 89,150, 93, 66, 41,181,148, 66, 83,165, 80, 40, 70, 4, 4, 4,196, 90, 44,150,186, 0,160, 80, 40, 46,228, -230,230,254, 98,177, 88,150, 80, 74, 77, 37,213, 44,107,236, 17,164, 46,148, 82, 25, 0, 72, 36,146, 87,155, 54,109, 26, 67, 8, -225, 9, 33,148, 82, 74, 24,134,169,207,113, 28, 99,111,223,133, 16,242, 7,165,148, 45,137,230,139, 47,190, 88, 65,179,144, 17, - 60, 0, 0, 32, 0, 73, 68, 65, 84, 42,149, 82, 74, 41,161,148, 50, 12,195, 60, 95, 18,205,178, 34, 52, 52,116, 6,207,243,145, -158,218, 4, 6, 6,190,112,230,204,153, 26, 27, 54,108,224,190,250,234,171,236, 65,131, 6,249, 15, 31, 62, 92,186,120,241,226, - 37, 0,198, 56,183, 15, 9, 9,153,207, 48, 76,136, 47,199,231,121, 62, 61, 61, 61,125,108, 41,187, 47, 82,118, 76, 92,186, 95, -223,146, 82, 96, 68,172,150, 65,129,113, 41, 53, 81, 81, 81,223,189,253,246,219,125,234,214,173, 43,165,148,194,102,179,193,108, - 54,215, 56,113,226, 68,171,205,155, 55,191, 0,160,103, 73,244, 8, 33, 93, 38, 78,156,248,245,212,169, 83, 67,101, 50, 25,177, -217,108, 77, 54,108,216,208,113,232,208,161,231,150, 47, 95, 94,175, 87,175, 94, 90, 97,253, 39,159,124,210,137, 16,242, 62,165, -244,199,127,186,159, 34, 34, 34,238, 13,150, 31, 0, 16, 66, 82, 0,156,178,175, 59,229,220,232,192,129, 3, 59,164, 82,169, 16, -193,106,108, 48, 24,194, 81, 52,234,229,138, 74,253,251,247,111,186,105,211,166, 25,189,122,245, 74,214,104, 52,207,188,254,250, -235,122, 66,136,100,195,134, 13,245,171, 86,173,170,238,218,181,107,255, 54,109,218,124,176,123,247,238,163, 0,210,124, 57, 17, - 66, 72,237,114,229,202,109,153, 61,123,118, 76,135, 14, 29,228, 33, 33, 33,160,148, 34, 49, 49, 49,234,167,159,126,234,248,217, -103,159,125, 64, 8,121,141, 82,122,217, 23, 61,187,102, 35,181, 90,189,233,179,207, 62,139,232,216,177,163,180,124,249,242, 48, -153, 76,184,114,229, 74,187,189,123,247,182, 92,177, 98,197, 24, 66, 72, 15, 95,127, 37,218, 53, 27, 7, 6, 6,110,254,118,194, -132,240, 38, 3, 7, 74,203,149, 43, 7, 74, 41,210,210,210,218, 29, 91,179,166,213,176,217,179,199, 16, 66,222,160,148, 22,123, -190, 31, 39, 10,133,130, 89,187,118,109, 61,133, 66, 1, 0,176, 88, 44,168, 83,167, 78,113,215, 93, 2,100, 50, 25, 51,111,222, -188, 6, 82,169, 20, 86,171,149,215,235,245,244,245,215, 95,127, 44,195,214,132,144,232,196,196,196, 64,185, 92,238,114, 59,199, -113,104,217,178,101,101,185, 92,142,121,243,230,217,210,211,211,235,127,249,229,151,103,214,173, 91, 23,178,100,201,146, 30,112, - 97,176, 24,134, 9, 73, 72, 72,112,169,201,113, 28,172, 86, 43, 88,150,133,197, 98, 65,173, 90,181,202,252,156, 68, 74, 69, 12, - 0,252,124,222, 4, 0,229, 30, 86,204,207,207,175,102,223,190,125,165,105,105,105,144,201,100,176, 90,173, 72, 78, 78, 70,157, - 58,117, 36,223,127,255,253,179, 37,213,171, 81,163,198,208,184,184,184,176,159,127,254,217,250,253,247,223,155,219,181,107, 39, - 31, 52,104, 80, 64,203,150, 45, 91, 68, 71, 71, 51,171, 86,173, 50,239,223,191,223,250,230,155,111, 42,103,204,152, 17,182,123, -247,238, 62, 0,188, 26,172,178,238,167,136,136,136,123,131, 37,112,138, 82,250, 42, 0,200,229,242,250, 21, 42, 84,248,142,101, -217,242, 0, 32,149, 74,147,101, 50,217, 60,171,213,122, 22, 0, 8, 33,219,121,158,239,230, 69, 47,184,127,255,254, 77,119,239, -222, 61,247,196,137, 19, 57, 25, 25, 25,229,119,236,216, 97,250,224,131, 15,238, 2,192,237,219,183,171,116,237,218, 53,106,228, -200,145, 9,237,219,183, 95,212,186,117,235, 81, 7, 15, 30,252, 5, 5, 67,143,110, 33,132,212,174, 83,167,206,241, 35, 71,142, -104,117, 58, 93,145,109,149, 42, 85,194,168, 81,163,228,221,186,117,171,218,182,109,219,223, 8, 33, 45, 40,165, 23,189,244, 19, -132,144,198,213,171, 87,223,127,224,192, 1,255,160,160, 32,100,103,103, 35, 57, 57, 25,249,249,249, 8, 8, 8, 64,175, 94,189, -228, 47, 55,111, 86, 97,228,232, 49,251, 9, 33,237,124, 49, 89,132,144,198,205,106,215,222,191, 46, 46,206,223,118,239, 30,212, -106, 53,242,242,242, 0, 0, 90,173, 22, 47, 84,174, 44,253,115,205,154,168,126,227,199, 11,154,255,184,201, 34,132, 40, 1,128, - 82,106, 38,132,236,146, 72, 36,175, 42, 20, 10,230,213, 87, 95,197,254,253,251,137,201,100,146, 2,128, 74,165, 98, 95,125,245, - 85,168,213,106, 88, 44, 22, 30,192, 46,119,145, 38, 87,154, 50,153,140,105,221,186,117,254,169, 83,167, 50, 5, 77,141, 70, 99, -107,221,186,117,176, 66,161, 80,179, 44, 75, 61,105, 62, 10, 20, 10, 5,110,221,186, 85,100,157, 94,175, 71, 90, 90, 26, 50, 50, - 50, 96, 54,155,145,157,157, 13,158,231,137, 90,173, 78,227,121, 30, 12, 83, 16,108,115,167, 41,151,203,113,253,250,245, 34,235, - 88,150,133,193, 96,128,217,108,134,213,106,133, 94,175, 87,107,181,218,234,181,107,215, 78, 0,176, 61, 51, 51,115, 94,114,114, -114,124, 89,159,159,136, 79,220,219,117,214, 84, 17,128, 5,192,157, 50,208,227, 1,224,232,209,163, 72, 73, 73, 65,122,122, 58, -210,210,210, 16, 29, 29,141,210, 12,187, 93,187,118,109, 81,253,250,245,201,185,115,231,118, 2,248,122,253,250,245,221, 51, 51, - 51,151,141, 27, 55,174,220,156, 57,115, 50,199,143, 31, 63, 12,192,214,245,235,215, 15,172, 91,183,110,215, 11, 23, 46, 44,124, - 28,253, 20, 17,121, 4, 52, 2, 16,106,255, 59, 29, 5,215,221, 96,135,199,231, 81,240,185, 21,218, 89, 0, 40, 92,252, 47, 32, - 60, 78, 3,240,135,195,126,194,227,135, 70, 24,138,161,194,226,170, 81,120,120,248,232, 54,109,218,204, 61,125,250,116,173,164, -164,164,160,164,164,164,160,211,167, 79,215,106,211,166,205,220,240,240,240,209, 66, 59,251,204, 2, 56, 60,118,156,106, 41, 63, -126,252,120,204,150, 45, 91,102,238,223,191, 63,167,126,253,250,150, 3, 7, 14,176,237,219,183, 79, 5,192, 2, 96,219,183,111, -159,122,240,224, 65,174, 73,147, 38,234,221,187,119,223,255,237,183,223,230,111,218,180, 41, 28,128,196,141, 38, 8, 33, 50,157, - 78,183,237,240,225,195,197,204,149, 35, 21, 42, 84,192,174, 93,187, 2,116, 58,221,118, 66, 72,145,144,130, 11, 77,149, 74,165, -218,124,240,224, 65,127,173, 86,139,212,212, 84,200,100, 50,132,133,133, 33, 39, 39, 7,201, 73, 73,136,191,113, 3,140,197,130, - 5,211, 63,215,170,213,234, 77,132, 16,133, 55,205,192,192,192,205,235,102,204,240,207,216,191, 31,231,166, 77,131,213,106, 45, - 28, 90,181, 90,173,248,109,248,112,164,253,250, 43, 86, 77,153,226, 31, 24, 24,184,153, 16,162,242,164, 89, 22, 56,106, 18, 66, -134, 3,200, 4,144, 73, 8, 25, 78, 41, 61, 81,167, 78,157,211, 87,174, 92, 65,139, 22, 45,176,113,227,198,231,199,141, 27, 55, -124,220,184,113,195, 55,110,220,248,124,139, 22, 45,112,229,202, 21,212,169, 83,231,180, 99,174,148, 47,154,135, 15, 31, 70,155, - 54,109,178, 54,110,220, 88,101,202,148, 41, 51,166, 76,153, 50, 99,253,250,245, 85,219,180,105,147,181,112,225, 66,179, 39,205, - 71,113,238, 2, 28,199, 21, 89,120,254,239,239,150,200,200,200,212, 45, 91,182,160, 87,175, 94,140, 66,161, 72,234,221,187,183, -242,216,177, 99, 20,192,174,146,244,211,100, 50,193,104, 52,194, 96, 48,224,246,237,219,234,217,179,103, 55,255,244,211, 79,171, -237,223,191, 63,106,210,164, 73,195, 66, 67, 67,207,148, 47, 95, 62,166, 36,154, 37, 69,212,116, 75, 50, 0, 43, 10,126,212,197, - 63,140,102,219,182,109,159,171, 86,173, 90,248,134, 75, 65,200,146,215, 0, 47,215,129,151,235,192, 5, 55,194, 45, 69, 39, 84, -172, 88, 49, 92,171,213, 54, 45,137, 38,165,244,151,179,103,207,118,162,148, 46,167,148,114,148,210, 77,227,199,143, 31, 76, 8, -217, 60,126,252,248,119, 41,165,155,236,235, 87,158, 63,127,190, 43,165,244,224,227,232,231,195, 34,106,254, 55, 53,189,120,145, - 80, 66,200, 46, 66,200,174,255,253,239,127,173, 1, 4, 59, 61,126,201,177, 29, 0,133,171,255,133,197, 97,125, 40,128, 87, 28, -246, 11,117,113,236, 82, 81, 56, 28, 99,207,129, 17,126,137,159, 34,132,236, 0,112, 74, 46,151,215,175, 87,175,222,171,123,246, -236,209,134,134,254,125,220,208,208, 80,108,218,180, 73, 91,187,118,237, 87,229,114,121,125, 0,167, 2, 2, 2,118,192,197, 80, -162, 29,221,240,225,195,187,191,245,214, 91,185,245,235,215, 7,128,236,203,151, 47,107,154, 52,105, 98, 96, 89,150,176, 44, 75, -154, 52,105, 98,184,124,249,178,198,102,179,233, 27, 53,106,228,215,182,109,219,187, 99,199,142,237, 15, 64,229, 70, 19, 0,250, -206,154, 53, 43, 58, 40, 40,200,109, 3, 74, 41,244,122, 61,194,195,195, 49,124,248,240,242, 50,153,236,255, 60, 61, 41, 82,169, -116,196,172, 89,179,194,116, 58, 29,178,178,178, 16, 29, 29, 13,139,197,130,235,215,175,195,100,200,131, 77,159, 11, 91,110, 54, -210,254,186, 9,157, 76,138,254,221,186,132, 75,165,210, 17,158, 52, 21, 10,197,136,111,198,143, 15,183,220,189,139,219, 27, 55, -130, 99,139, 7,102, 88,171, 21, 23,190,254, 26,166,132, 4,204, 28, 60, 56, 92,161, 80,120,212, 44, 75,236, 81,166, 57,148, 82, - 53,165, 84, 77, 8, 89,244,210, 75, 47,125,175, 86,171,135,199,197,197,117,216,183,111, 95,199, 35, 71,142,180, 98, 89, 86,198, -178,172,236,232,209,163, 45, 76, 38,147, 84,169, 84, 66, 42,149,186, 52,230,174, 52,155, 54,109,250,157, 90,173, 30,182,108,217, -178, 14, 7, 15, 30,236,255,231,159,127,142,224, 56, 78,193,113,156,226,207, 63,255,124,215,104, 52,202, 40,165,156, 59,205,127, - 26,153, 76, 6,185, 92, 14,181, 90,141,230,205,155,255,181,114,229, 74, 91,116,116,180,108,243,230,205, 65,145,145,145,126,139, - 23, 47,206,214,235,245,179,124,213,179, 90,173, 48,155,205, 48, 26,141, 48,153, 76, 56,112,224, 64,229,145, 35, 71, 74, 77, 38, - 19,215,181,107,215, 76,155,205,102, 30, 63,126,124, 64,185,114,229, 62,120,148,231, 37,226, 22, 22, 64, 30, 10, 12,150, 89, 88, - 73, 8, 81, 18, 66,234, 10,209, 88, 95,200,206,206, 94,241,205, 55,223, 68, 51, 74, 29,142, 89, 58,227, 71,254, 51,236, 11, 92, -140,212,152, 15, 17, 22, 93, 13,125,250,244, 9,163,148, 46,126,216, 14, 83, 74,183, 83, 74,123, 80, 74,183,148,102,255, 71,221, - 79, 66, 72,140,191,191,255,198,128,128,128, 99,254,254,254, 27, 9, 33, 49,165,213, 18,104, 95,157,180,123,181,150, 36,161,125, - 53, 66, 95,173, 37, 73,104, 95,189,228,181,154, 68,254,157, 56,121, 17, 71,210, 40,165, 93, 40,165, 93,102,206,156, 57,195,161, -189,240, 88,237,163,126, 23, 74,105, 23,199,117,118, 99, 85,230, 20, 14, 17, 10,137,203,246, 14, 20,206, 22,172, 80,161,194,119, -223,125,247,157,214,121,199,164,164, 36,228,230,230, 98,242,228,201,218,183,222,122,107,204,253,251,247,223,246,114, 44, 69,114, -114,114,131,126,253,250,169,172, 86,107, 22,207,243, 76,110,110,174, 52, 48, 48,144, 19, 26, 4, 6, 6,114, 57, 57, 57, 50,131, -193, 32,225, 56,206,252,214, 91,111, 41, 6, 15, 30,252, 2, 28, 34, 88,206,132,134,134,198,118,238,220, 89,225,110,187,205,102, -131,193, 96,128,193, 96,128,213,106, 69,243,230,205,149, 43, 87,174,108, 15, 96,153,187,125,148, 74,101,108,108,108,172, 44, 51, - 51, 19,129,129,129,136,143,143,199,157, 59,119, 96,206,203,131, 53, 47, 23,214, 60, 61, 88,125, 46,104,110, 14, 50,110, 94, 67, -147,154, 53,228, 63, 40,149, 29, 0,204,119,167, 25, 16, 16, 16,219,100,192, 0,169,159,159, 31, 90,245, 43,152, 63,176,187,102, - 77, 80,142, 3,207,113,224, 88, 22, 29,174, 95,135,205,102, 3,195, 48,104,148,153, 41, 13, 88,179, 38, 22,192, 92,143,207,234, - 35, 66,169, 84, 74,215,174, 93,219, 87,161, 80,128, 82, 74, 44, 22, 11,246,237,219,247,208,154,107,214,172,233, 47,104, 90,173, - 86,250,220,115,207, 21,251, 32,153,205,230,127,133,185, 2, 10,134, 13, 85, 42, 21,172, 86, 43, 42, 85,170,100,236,215,175,223, -241,233,211,167, 87,100, 24,198, 79, 46,151,239,201,200,200,152,145,152,152,120,219, 87, 61,155,205, 6,139,197, 2,139,197, 2, -163,209,136,191,254,250,171,124,229,202,149,201,240,225,195,185,252,252,252, 42, 95,124,241,197,173,125,251,246,105,102,205,154, -245, 58,128, 81,143,240,212, 68,156,176, 71,161, 3, 43, 6, 75, 13, 50, 9,242, 0,104,237,102,224,117, 66, 72,147, 90,181,106, - 5, 93,185,114, 37,139, 16,114, 18,192,143,148,210, 36, 79,122, 60,207, 19,158,231,241,110,227,108, 12,111, 42,129,205,150,131, -156,156, 28,196,199,199,227,242,229,203,248,253,119,159,211, 65,139,160, 82,169,254,207,223,223,191,189, 74,165,170,196,178, 44, -147,151,151, 23,159,159,159,191,159,231,249, 21,212,121, 24,193, 7, 30, 85, 63, 5,252,252,252,102, 79,154, 52,169, 89, 96, 96, - 32,206,158, 61, 91,101,253,250,245,179,241,144, 73,243, 42, 25,179,106,254,194,197, 81, 81, 97, 58,156, 63,178, 51,106,198,242, - 13,171, 0, 68, 63, 84, 71, 69,254, 21, 56,122, 17, 39,254, 0,240,138,125,118,121, 23, 23,219,125,213,127,168,253, 75, 66,161, -193,114,115, 66, 96, 89,182,188, 99,228,138, 82,138,164,164, 36, 60,120,240, 0,105,105,105, 8, 10, 10,130,213,106, 45,239,195, -177,148,122,189,190,113,112,112,112,190, 76, 38, 51, 27,141, 70,104, 52, 26, 94, 38,147, 81,251,113,136,125, 22, 34,103, 54,155, -137, 84, 42,181,105,181, 90,127,179,217, 92, 3, 30,114,197, 40,165,141,131,131,131, 93,110, 51,155,205,200,203,203,131,193, 96, - 64, 94, 94, 30,204,102, 51,194,195,195,193,178,108, 3, 79, 29,101, 89,182,110,104,104, 40, 18, 19, 19,161, 86,171,145,144,144, - 0, 75,158, 30, 86,189, 30,172, 33, 23, 92, 78, 14,248,220, 92,240,134, 92,216, 44,249,136,122,166, 38,132, 25,134,238,176, 88, - 44,117,131,131,131, 97, 48,252,157, 78, 70,237,198,138,101, 89,176,246,164,103, 97,216, 48, 36, 36, 4,194, 12,195,127, 2,123, -126,212, 56,134, 97, 22, 41,149, 74,233,176, 97,195,144,148,148, 84,228, 61, 49,108,216,176,194,156,171,150, 45, 91, 30, 85,169, - 84,108, 90, 90, 26,204,102,179,204, 23,205, 74,149, 42,197, 79,158, 60,249,148,197, 98,137,142,140,140,212,153,205,102,227,179, -207, 62, 27,169, 86,171,195, 45, 22, 11,247,194, 11, 47,172, 80,171,213,182,188,188, 60,202,178,236, 67, 37,208,151, 21,132, 16, - 16, 66, 10, 94, 35,150, 69, 72, 72,136, 33, 61, 61,253,247,172,172,172,190,165,209,179,217,108,194, 12, 45, 24,141, 70, 80, 74, -113,246,236, 89,168, 84, 42, 25,199,113,151, 88,150,213,200,100, 50, 48,246,228, 46,145,127, 6, 66, 72,171, 26, 58,197,252,184, - 38, 97,186,122, 93,253, 12, 26,133,196,192,199,215,171,244,237,156,203,235,223,234,255,127,218,169, 83,167,198,132,132,132,168, -110,221,186,101,250,252,243,207, 43,175, 93,187,150,192,203,143,159,251,247,239,111,158, 52,105, 82,185,206,157, 59, 87, 81, 42, -149, 36, 39, 39, 7,105,105,105, 72, 73, 73,193,157, 59,119,232,249,243,231,255, 50,155,205, 27, 75,210,207,200,200,200,149, 35, - 71,142,124,171, 97,195,134, 50,160, 32, 34,106, 48, 24,234, 31, 62,124,184,219,238,221,187, 91, 0, 40,241,251,242,254,253,251, - 27, 63,250,232, 35,191, 78,157, 58,213, 80, 42,149, 76, 89,244,211, 17,134, 97,194,253,253,253,177,127,255,126,232,116, 58, 48, - 12, 19, 94, 90, 45, 1,147,149,143,138, 44, 31, 12,211,111,243, 81, 35, 52, 6, 38, 43, 31,245,176,154, 34,255, 14,220,121, 17, - 20,228, 72,129, 82,218,197,139, 73, 50, 78,156, 56,113, 18, 33,100,215,196,137, 19, 39,185,208, 23,246,227, 28,219, 57,180, 55, - 59,239, 83, 90, 74, 84,204,145,231,121, 60,120,240, 0,137,137,137,120,240,224, 1, 50, 50, 50,192, 48,140,167, 39,196, 17, 74, - 8,225,127,249,229,151,160,227,199,143, 27, 26, 53,106,148, 45,228,183,176, 44, 75,108, 54, 27,177,231,189,144,248,248,120,249, -177, 99,199,116, 87,175, 94, 13, 71, 65, 34,154,199, 36, 75, 87, 63,218, 4, 99,229,184,152, 76, 38,168, 84,158, 70, 27,255, 70, -248, 2, 60,123,250,116,129,185,202,211,219,135, 6,115,192,229,230,128, 26,244, 80,112, 54, 40, 64, 65, 76,249, 62,105, 58,230, -243, 0, 40, 52, 87, 86,187,193,178, 88, 44,176,217,108,224,121, 30,172,139, 33,196, 71, 13,165,116,105,253,250,245, 27,108,221, -186,117,208,131, 7, 15,138,109,127,237,181,215, 48,106,212, 40,140, 28, 57,242,234, 43,175,188,114,126,231,206,157, 24, 49, 98, - 4,120,158,175, 71, 8,201,161,148,238,246,164, 57,113,226,196, 63,239,223,191,127,232,198,141, 27,195,194,194,194,148,117,235, -214,189, 89,183,110, 93,201,214,173, 91,195,223,121,231,157,211, 29, 59,118,188,251,235,175,191,150,219,191,127,191,138,231,249, -134,132,144, 7,143,187, 14,150,217,108, 46,140, 56,153, 76, 38, 88,173, 86,192, 67, 82,187, 51,206,239, 77,225,181,101, 89, 86, -208, 38, 91,183,110,193,209,163, 71,153,203,151, 47, 69, 15, 27, 54, 92, 72,164, 47,227, 51, 17,113, 5, 33,164,147,130, 33, 95, -141,171, 23,172,250,224,249, 96,131, 66, 74,242,174,127, 53, 41,239, 78,197, 0, 67,120, 5,141, 37,186,178, 46,114,198,140,233, - 17, 87,175, 94, 51, 79,158, 60,249, 74,239,222,189,195, 62,248,224,131, 90,155, 55,111,110, 65, 8,249,134, 82,154,237, 70, 87, - 62,104,208,160,223,195,194,194,170, 46, 95,190, 60,245,254,253,251, 65, 54,155, 77, 99,179,217,172, 6,131,225, 86,126,126,254, - 49,171,213,186,159, 82,122,186, 36,253,213,106,181,207, 15, 24, 48, 64,150,157,157, 13,251,236, 91,164,166,166,162, 89,179,102, -146, 29, 59,118,212, 46,205,115,144,153,153, 57,159, 16,114,104,221,186,117,237, 3, 2, 2, 26, 42,149,202,242, 0, 56,189, 94, -159, 98, 48, 24,206,149,166,159,142,112, 28,151,114,250,244,233,170, 1, 1, 1,184,119,239, 30, 56,142, 75, 41,173,150,128, 74, -206,220,191,112,100, 71,133,154, 33,149,113,236,248, 73,168,228,204,253,135,213, 20,249,215, 35,228, 72,193,209, 56,185, 48, 70, -199,227,226,226,212, 51,103,206, 68, 92, 92,220, 37,103, 17, 65,131, 82,218, 37, 46, 46,238,146,208,206,161,253,145,178,234,176, -212,126, 32,183, 95, 24, 82,169, 52, 57, 45, 45, 45, 72,167,211, 21, 26,171,196,196, 68, 36, 38, 38, 66,161, 80, 32, 62, 62, 30, - 10,133,194, 99,168,220,142, 73,173, 86,255, 89,191,126,253,103,111,223,190, 45,255,252,243,207, 43,156, 62,125, 58,160, 89,179, -102,207,169,213,106,142, 82, 10,147,201,196, 92,185,114,197,127,238,220,185, 81,141, 27, 55,182, 52,110,220,248,204,134, 13, 27, -140,240, 80,116,148, 16,114, 42, 41, 41,169, 74,165, 74,149, 0,252, 61, 67, 75, 88, 28,141, 22, 80, 48,180, 41,149, 74,207,120, -124, 82,164,210, 11,215,175, 95,111,167, 81, 41, 97,209,231,194,154,151, 11, 86,175, 7,167,207, 1,151,147, 3, 24,114,161, 96, - 89,200, 56, 27,212, 42, 21, 30, 36, 36, 64, 42,149, 94,240,164,169, 80, 40, 46,164,164,164,180,211,233,116,133, 95,158, 54,150, - 45, 88, 56, 14, 22,150, 45,140, 96,201,100, 50,220,191,127, 31, 10,133,194,163,230,163,128, 97, 24, 78, 40,197,224, 10,133, 66, -129,240,240,112,190, 73,147, 38, 24, 49, 98, 4, 56,142, 3, 10,234, 20,182, 34,132, 28,163,148,230,185,211,228,121,158,185,114, -229, 74,247, 91,183,110, 73,100, 50, 25,243,226,139, 47,214,105,222,188,185, 69,161, 80, 64, 46,151, 75,243,242,242,180,251,247, -239, 87,217,108, 54, 98,215,252,199,234, 96, 1,112,105,106,133,100,116,163,209,136,188,188, 60,100,101,101, 73,213,106,245,179, -207, 61,247,220, 73,139,197,178,145,101,217, 85,183,111,223,206,117,167,105, 55,100, 0, 10,204, 22,207,243,160,148,130,227, 56, -216,108, 54,200,229,114,254,240,225, 35,152,187, 96, 54,190, 91,181,150,118,235,214,141,236,216,177, 3, 60,207, 39, 60,154,179, - 20,113, 98, 94,246,143,211, 85, 96, 57,131,249,240,186,188,239,111,228, 26,166,126,191,240, 79,139, 66,146,251,194,203,225,117, -171, 84,126, 86,162,211, 5, 49,203, 86, 44,202,248, 97,237,166, 91,247,238,221,203, 93,178,100, 73,211,103,159,125, 54,240,220, -185,115, 81, 0, 92, 26, 44,127,127,255, 74, 3, 7, 14, 28,152,149,149, 37, 95,187,118,237,234, 7, 15, 30, 28,166,148,254,229, -216,134, 16,210,128, 16, 50, 7,128, 12, 64, 56, 10,242,191,126,161,148,174,241,208, 95,158, 16,130,131, 7, 15, 22,155,237,199, - 63,156, 43,207,170, 91,183,238,243, 55,110,220,216,158,156,156,252,189,243, 70,141, 70,211,173, 78,157, 58,125, 78,157, 58,245, - 49,165,244,150, 43, 1,119,228,231,231,143,223,180,105,211, 28,137, 68, 18,201,113, 92,162,209,104, 28,255, 16,253, 4, 0,152, -108,252,224,184,101,235,191, 54, 90,184,138,106,133,228,158,201,198,191,243,176,154, 34,143, 31, 47,193,154, 52,135,232, 83, 26, - 0,226,244,248,156,253,111,139, 67,219, 52,187,110, 23, 0, 22,167,168,151,171,109,105, 40,195, 34,231,238, 42,185,255, 15, 64, - 99, 0,167,100, 50,217,162,183,222,122,107,238, 15, 63,252,160,205,205,205, 69, 74, 74, 10, 82, 83, 83, 33,149, 74, 17, 16, 16, -128,165, 75,151, 26, 83, 82, 82, 22, 57,238, 67,157, 42,190,219, 49,133,132,132,252,185,118,237,218,242, 95,125,245,149,244,237, -183,223,142,127,229,149, 87,106, 44, 93,186,244,182, 92, 46,167, 28,199, 17,179,217, 76,222,125,247,221,170, 11, 22, 44,184, 43, -145, 72, 52,189,122,245, 34,126,126,126,167, 80,112,225,113, 73, 90, 90,218, 47,219,182,109,235, 62,118,236, 88,165,197, 98,113, - 25,185, 18,214,233,116, 58,252,246,219,111,150,172,172, 44,143,201, 68,102,179,249,151, 61, 63,255,212,242,205,222,189,229, 54, -125, 46,108,250, 92,176,185,185,224,244,217, 32,121,185,144,113, 44,212,114, 30,229,163, 85, 96,141,254,248,233,143,115, 54,179, -217,236,177, 32, 97,110,110,238, 47,199,190,251,174, 85,227,152, 24,233,111,163, 71,195,106,179,161,211,245,235,133,166,202,106, -181, 98,123,221,186,224, 8, 65,189, 33, 67,112,147,101,217,220,220,220, 95, 60,105, 62, 46,206,159, 63,159,218,175, 95,191,211, - 60,207, 55, 64, 9,162, 57, 2,254,254,254,250,188,188, 60,164,167,167,115, 25, 25, 25, 38, 0, 72, 77, 77,205,218,177, 99,199, - 21,158,231, 27,151, 70,179, 44,176,217,138,126,174, 4, 35,196,218,205,111,106,106,170,226,167,159,126,106,121,229,202, 21,249, -197,139, 23,113,244,232,209,122, 63,252,240,195,255, 98, 98, 98,234,198,199,199, 39,187,210,116, 52,109,174,138,245,194,158, 95, -184, 97,221, 70, 12, 29, 58,148, 36, 39, 39,227,199, 31,127,132,183,162,167, 34,101,134, 1, 44,167,182, 28, 94,151,247,202,207, -247,244, 39,146,140,159, 3,216, 75,141, 44,173, 80,161,194,249,134, 13,131, 66, 0,192,108,226,202, 87,175, 94,253,101,169, 84, -170, 0, 0,127,127,255,134,193,193,193, 75, 1, 52,119, 37,250,218,107,175,189, 20, 22, 22, 86,127,247,238,221,231, 30, 60,120, -112,196,217, 92, 1,192,179,207, 62,251,217,197,139, 23, 59,201,100,178,194, 55,134,125,246,148, 75,131,213,170, 85,171,103, 99, - 98, 98,130,127,190, 17,136, 92,121, 53, 80, 73, 14, 32, 85,129,211, 61,143,120,121, 45, 68, 71,159, 12,214,233,116,245,178,179, -179,207,185,218,223, 29,132,144,138,189,122,245,250,105,229,202,149, 53, 59,118,236,168, 0, 80,204, 96,213,172, 89,243,245, 95, -127,253,181,199,176, 97,195,158, 39,132,116,165,190,221,173, 3, 0, 64, 41,141, 7,208,163, 36,125,242,198,190,155,116, 63,236, - 53,203, 68,254, 51,148,164,116, 66,153,148, 89,120, 88,220, 13, 17, 54,230,121,190, 27,195, 48,176, 90,173,113,225,225,225,219, -123,245,234,245,218,255,254,247, 63,255,224,224,224,194,200,213,210,165, 75,141,119,238,220,217,108,181, 90,207, 18, 66,166, 36, - 38, 38,118,139,140,116,251,189,160,255,226,139, 47,214,119,237,218,245,237, 33, 67,134, 24,235,214,173, 27, 80,163, 70,141,252, -227,199,143,251,199,198,198,230, 74, 36, 18,250,219,111,191,105,171, 86,173,106, 34,132, 40,127,253,245,215,140,147, 39, 79, 86, -141,139,139,251, 6, 5,211,166,221,177,110,218,180,105,147,187,117,235, 86, 53, 56, 56, 24,185,185,185, 69, 76,150,240,183, 74, -165, 66,114,114, 50,182,108,217,146,100,179,217,190,241,244,164,176, 44,187,100,241,210,101, 99, 90, 55,121, 49, 42, 64,163, 70, -114, 66, 60,184,156, 44,192,144, 7, 5,107,131, 90, 65, 17, 85, 77, 3,169,196, 15,183,146,243,240,221,241, 63,146, 89,150, 93, -226, 73,211, 98,177, 44, 25,181, 96,193,152, 19,203,150, 69,197,244,236,137,203,107,214, 20, 14, 9, 10, 6,139, 35, 4, 21,219, -182, 5, 19, 24,136, 25,203,151,167, 88, 44, 22,143,154,143, 2,158,231, 37, 22,139,251,226,244, 22,139, 5, 60,207, 39, 92,190, -124,121, 61, 33, 68, 79, 8,105,101,223,116,200, 85,244,202, 81,147, 97, 24,190, 86,173, 90, 91,195,195,195,187, 3, 48,212,170, - 85,107,171, 82,169,108, 99,177, 88, 94,228,121, 62,225,236,217,179, 91, 8, 33,201,132, 16,225, 87,198, 63, 90, 7,203,102,179, - 97,202,148, 41,152, 57,115, 38, 38, 78, 44,184, 91,138,197, 98, 41, 28, 38,204,206,206,174,124,236,216, 49,249,225,195,135,233, -242,229,203, 51,222,126,251,109,221,144, 33, 67,116, 95,125,245,213,251, 0, 92,254, 42,183,217,108, 24, 63,126, 60,150, 47, 95, -142,161, 67,135, 22,219, 46,145, 72,248,132,132,251, 48,153, 76,244,139, 47,190, 72,148,201,100, 65,223,124,243,141,250,157,119, -222,249, 87,228,160,253, 7,248, 72,221,239,227,247, 80,112,141, 89, 68, 41, 61, 36,108, 8, 8, 8, 80,111,221,186, 77, 10, 0, -155, 55,109,145, 81, 74, 3,133,194,176,223,127,255,189,170, 89,179,102, 97,238, 68, 55,109,218,148,253,249,231,159, 7, 15, 30, - 60,184,227,161, 67,135, 52,132,144,159, 81,112,209, 79, 7,192, 1, 8, 1,240, 91,104,104,104,196,250,245,235,171,181,111,223, -222,207, 91, 71,245,122,253, 55,235,215,175,175,180,224, 88, 32,126, 54,116,199,125,190, 39,168,142,162, 92,152, 30,181,252,239, -161,111,223,190,145,139, 22, 45,250, 26, 64, 67, 95, 79,158, 16, 82,251,141, 55,222,216,182,114,229,202,202, 67,134, 12, 73,248, -237,183,223,238, 19, 66, 62,115,209, 52, 99,192,128, 1,241,171, 87,175,174,198,243,252, 94, 66, 72, 71, 74,233, 13, 95,143, 35, - 34,242, 95,132,184,202, 95, 34,132,108,103, 89,182,155, 84, 42,221, 65, 29, 10,141,134,135,135,143,177, 88, 44, 17,132, 16, 42, -151,203,147, 83, 82, 82, 22, 57, 22, 26, 77, 72, 72,232, 22, 29, 29, 93,184,143,189, 88,166, 99,173,140,128, 78,157, 58,181, 59, -113,226,196,151,187,118,237, 74,213,235,245,254,155, 54,109, 82,207,156, 57, 51,158,231,121, 58, 97,194,132,152, 14, 29, 58,228, -115, 28,151, 52,100,200,144,170,149, 43, 87, 30,114,245,234,213,253,112, 48, 88, 46, 52, 65, 8,169, 93,173, 90,181,223, 54,111, -222, 28,160,211,233,144,154,154,138,204,204, 76, 24, 12, 6,112, 28, 7,153, 76,134,180,180, 52,124,254,249,231,185,137,137,137, -197, 10,141,186,209,108, 92, 41, 42,234,151, 69,159, 77,209,234,164, 12, 50,174, 93, 1,155,149, 1, 25,107, 67,133,218,129,144, - 43,212,184,121, 93,143,247,215,109,209,223,203,204, 46, 86,104,212,157,230, 11,213,171,239, 95, 62,110,156,191,233,254,125, 68, - 12, 28,136,252,252,124, 88,173, 86, 48, 12,131,191, 22, 45,130, 60, 52, 20,147, 55,108, 48, 92,186,119,175, 45,117, 42, 52,234, - 74,243, 97,113,212, 36,132, 12, 39,132, 20, 38,185,191,246,218,107, 69,218,110,219,182, 13,203,150, 45,131,217,108,102, 41,165, - 99, 40,165, 75, 9, 33,254, 0,224,104,174,220,105, 86,170, 84,233, 94,157, 58,117,254,224, 56, 78, 10, 0, 18,137,132, 94,190, -124,185,225,157, 59,119, 42, 56,105, 10, 67,215,172, 43,205, 71,113,238,193,193,193,139,118,239,222, 93, 41, 44, 44,140, 56, 86, - 88, 7,254,206,157, 27, 49, 98, 68,219,147, 39, 79, 42,235,215,175,111, 78, 79, 79,111, 20, 26, 26,122, 96,237,218,181, 33,189, -122,245, 74,188,116,233, 82,148,179,102, 72, 72,200,220,205,155, 55, 87,171, 86,173, 26, 35, 68,193,156,135, 33, 7, 13, 26,212, -110,237,218,181,138,238,221,187,155, 13, 6, 67,184, 86,171,189,181,121,243,230,144, 87, 95,125, 53,249,210,165, 75, 17,255,196, -185,139,154,174,169, 83,167,206,205, 75,151, 46, 85, 19, 30, 27,141, 70,164,165,165, 33, 61, 61, 29, 58,157, 14,177,177,177,127, -221,185,115,167,154, 43, 77,123, 84,104,225,138, 21, 43, 58,250,249,249,201,143, 28, 57, 98,216,191,127,191, 41, 62, 62,158,181, -217,108, 52, 34, 34, 66,218,188,121,115, 85,231,206,157,253,148, 74, 37,243,241,199, 31,167, 79,159, 62, 61,132, 16,178,144, 82, -250,190, 43,205, 6, 13, 26,252,190,103,207,158,198,132, 16, 72, 36, 18, 88, 44, 86,100,103,103,227,193,131, 4, 92,190,124, 25, - 39, 78,156,192,190,125,251,206,229,229,229,213,247,245,220, 9, 33, 7,204,102,115, 43,133, 66,225,179,161,231, 56, 14, 82,169, -244, 32,128,118,148, 82,254,105,123,221, 69,205,199,167,249,180,225,105,118, 30, 0, 52, 38,132,108,183,175, 58,229, 92,138,129, - 16,242, 63, 66,200, 20,251,195,198, 62,164, 0,228,238,222,189,251,104,187,118,237, 70,180,109,219,118, 65,251,246,237,147,146, -146,146,170,204,159, 63, 63,154,101, 89,235,229,203,151,153, 91,183,110,197,255,249,231,159,213,158,121,230,153, 33, 87,175, 94, - 61, 12,207,209, 43,161,175,151, 9, 33,205, 90,183,110,189,101,200,144, 33, 21,155, 52,105,162,208,233,116,144, 74,165,184,125, -251, 54,206,157, 59,103,217,176, 97, 67, 66,118,118,182,207,183,202,161,148,158, 34,132,196,246, 26, 57,102,243,144,215,186,134, -188, 88,227, 89, 69, 68, 68, 4, 96, 52,226,218,189,100,156,188,118,206,186,242,232,201, 52,179,217,252,134,179,185,242,162,217, -174,205,184,113,155,167,190,249,102, 56,146,146,164, 17, 17, 17, 80, 40, 20,184,115,231, 14,110,241, 60, 59,107,197,138,148,220, -220,220,127,252, 86, 57, 66,205, 42,158,231,165, 0,160, 86,171, 49,106,212, 40, 56,222, 26,103,217,178,101, 48, 26,141, 0, 32, - 37,132,204, 33,132,172,114, 23,181,114,163, 89,241,231,159,127,174,232,168, 89,179,102, 77, 87,154,101, 54,139,195, 87, 50, 51, - 51, 39,119,234,212, 41, 78, 42,149,186,173, 86, 27, 20, 20, 4,189, 94, 15,150,101,185, 7, 15, 30, 92, 11, 10, 10,130, 76, 38, - 3,165,212,229,231, 40, 35, 35, 99,242, 27,111,188, 49,141, 97, 24,183,145,142,128,128,128,248, 3, 7, 14, 84,127,231,157,119, -152,111,191,253,246,246,224,193,131,149, 7, 14, 28,224, 74, 91,211, 72,228,209,225,248, 99,212,254,227,205,109, 73, 4, 74,233, - 61, 66,200,248,211,167, 79,171,134, 14, 29,218,240,205, 55,223, 12,104,221,186,181,191, 99, 27,163,209,200,239,220,185,211,176, -124,249,242,140, 35, 71,142,252, 49,104,208,160,238, 40,200, 31,113,201,189,123,247,126,154, 49, 99, 70, 96,231,206,157,159, 1, - 80,152,127,149,150,150,134,248,248,120, 92,188,120, 49,222,106,181,238, 40,225,105,141,232,215,175,223,207,171, 87,175,142, 25, - 50,100, 72,194,143, 63,254,184, 3, 64,142,139,118,254,175,191,254,122,183,213,171, 87,199,188,251,238,187,247, 0,140,166, 98, -133,119, 17, 17,143,184, 51, 88, 57, 60,207,195,100, 50,133,243, 60,223,141,231,121,248,251,251,187,106,215, 56, 49, 49,177,155, -227,205,158,225,229,182, 54, 0,210,246,239,223,255,203,186,117,235,218, 78,152, 48,225,205,236,236,236,198,231,207,159,111, 2, - 0, 50,153,236,132,159,159,223,239,113,113,113, 3,199,143, 31,159, 6, 31,204,149,128,221,100,213,154, 59,119,110,153,221,236, -217,110,136,170, 47,217,184,101,196, 55, 74,101,172,211,205,158,127,177,223,236,185, 68, 55,102, 22, 52,199,125,253,245,136,128, -141, 27,255,181, 55,123, 54,155,205,108,247,238,221,191, 97, 24,134, 7, 0,142,227,164,102,179,121, 32, 74, 56,243,212, 89,243, -181,215, 94,251, 86, 34,145,176, 0,192,243, 60, 99, 54,155,255,239, 97, 52,203, 10,187, 81, 28,233,169,205,115,207, 61,183,118, -199,142, 29,253,186,117,235,198, 89,173,214,212,174, 93,187, 74,127,255,253,119,202, 48,140,203, 95,113,118,163,248,161, 39,205, -242,229,203,199, 44, 94,188,248,204,232,209,163, 3,214,173, 91, 87,238,216,177, 99,220, 23, 95,124,145,155,153,153, 57,175,244, -103, 35,242, 40,144,201,100,208,104, 52,176, 88, 44, 72, 75, 75,115, 57,123,217, 17, 74,233, 45, 66,200, 43,227,198,141,107, 49, -110,220,184, 87,162,163,163,107, 87,172, 88,177, 34,195, 48, 76, 82, 82, 82,218,253,251,247,239, 90,173,214, 95, 1,252, 4, 64, - 94,181,106,213,179, 0,214,186,211,203,200,200,152, 70, 8, 57,184,102,205,154, 87,252,252,252,106,169, 84,170,114, 54,155,141, -209,235,245,153, 70,163,241,138,201,100,218, 69, 41, 61, 94,146,115,162,148, 94, 39,132,180,150, 74,165, 63,173, 92,185,178,102, - 82, 82, 82,165,195,135, 15,119,117,110,215,176, 97,195,213,171, 87,175,142, 25, 54,108,216,173,117,235,214,149, 40, 7, 75, 68, -228,191,138,187, 47,182, 25, 10,133, 66, 10,251, 77,159,237,184,138,168,156,114,202,185,202, 1, 48,195, 69, 59,103, 12,125,251, -246,189,211,183,111,223, 57,246, 62, 72, 80, 80,138,129, 69, 65, 6,191, 21, 94, 74, 51,184,194, 62,164,244,181,125, 41, 19,236, -102,103, 46,202,176,224,231,163,208,124, 88,132,154, 85,246, 89, 77, 0, 48,238,236,217,179, 75, 29,219, 16, 66,206, 59,110,247, - 22,105,114,165,121,238,220, 57,103,205,139, 37,209,124,156,100,103,103,143, 89,188,120,241,169,137, 19, 39, 42, 7, 12, 24,128, -139, 23, 47, 98,230,204,153,230,236,236,236,117,165,213, 76, 78, 78,142, 47, 95,190,124,131,133, 11, 23,126,176, 96,193,130, 87, - 9, 33,226,189, 8,255, 37, 24,141,198,191,158,127,254,121,144,130,217, 9,148,101,217,194,217,159,246,138,252,197, 18,215,157, -177, 95,147, 14,218, 23,111,204,241,214,192, 94,182,164, 76, 75,151,216,163,109,175,220,189,123,119,198,245,235,215,247,184,106, -115,233,210,165,109,237,219,183,215,156, 56,113, 98, 82, 73,103, 17,138,136,252, 87,113,105,176,236,191, 78,222,244,182,179,155, -217,130,190,194,193,123,180, 75,228, 31,196,158,255,180,202,254,119, 49,163,227,109,251, 63,165,249,184, 72, 72, 72,200, 2, 80, -120,203,144, 42, 85,170, 20,203, 83, 43, 13,118, 51, 53, 10, 98,229,246,127, 21,183,111,223,238,244,184,251,240, 79, 65, 41,189, - 7,160,159,187,237, 22,139,101, 7,128,146, 14, 63,138,136,252,167,121,236, 67, 51, 34,255, 46,124,137, 74,253, 27, 52, 69, 68, - 68, 68, 68, 68,254,205, 16, 0, 46,111,146, 89,146,217, 1,132,148,252, 70,155,222,244, 69, 77, 81, 83,212, 20, 53, 69, 77, 81, - 83,212,124,250, 52, 29,180, 23,184,217,116,205, 73,239,171,146,246,225, 95, 1,165,244,145, 45, 40,152,198, 43,106,138,154,162, -166,168, 41,106,138,154,162,166,168, 89,154,227, 12,249, 39,142,243, 40, 22,241,134,178, 34, 34, 34, 34, 34, 34, 34, 34,101,140, -203, 28,172, 77,155, 54, 73,132,191,251,244,233, 51,136,227,184,194,233,235, 18,137,100,241,143, 63,254,184,202,147,104,143, 30, - 61, 56, 79,154,174,240,118, 28, 87,154,117,158, 13, 28, 22, 28,168, 25,147,157,147,191,240,118, 34,119,212,100, 50,213, 18,182, -169, 84,170, 43,171, 86,173,242, 88,105,184, 52,253, 28, 52,104,208, 51,206,199,169, 20, 45,107, 85, 78,171, 26,149,153,157, 55, -255,226, 13,253,147, 25,202,124,130,232,217,179,167,199,215,200,153, 59,119,116,204, 25, 68,204, 11,240,147,119,205, 51,216,230, -113,167,167,124,249,168,250,246, 79, 18, 17, 17, 81, 35, 32, 32,160, 63,128,218,249,249,249, 97, 26,141, 38, 21,192,229,220,220, -220,181, 73, 73, 73,215,188,237, 47,208,170, 50,137, 7, 80,209,254,240,222,161, 59, 52,198,151,109,222,232, 80,141,152, 40,160, - 36, 4,214,189, 55,105,225, 13, 46, 59, 86, 39, 38,158, 22, 95,223,161, 58,177, 80, 10, 57, 1,204,123,111, 81,223,238,202,254, - 4, 64, 8, 9, 0, 16, 11,160, 14,128,243, 0,246, 81, 74,125,187, 67,188,136,136,200, 19,139, 75,131, 53,104,208,160,150, 10, - 41,253, 18, 60,213,129,210, 96,179,217, 44, 83, 40, 20,176, 88, 44,208,168,213, 75,134,254,223,128,207, 64,144,109,229,153, 81, -171, 86,173, 42,245,157,167, 75,114, 39,169, 54,227, 0, 0, 32, 0, 73, 68, 65, 84,156, 30, 61,122, 20,155,230, 28, 20,160,158, -118,104,231,132,160,150,175,196,205,180,220,201, 28,175,215,235, 25,165, 82, 9,179,217,140,192,192,192,102, 35,135, 12,110, 72, - 25, 98,145,171,252,142, 47, 88,176,192,229,189,226,124,225,253,247,223, 47,207, 90, 13, 47, 81, 27, 85, 88, 44, 22,165,243,113, -116, 26,191, 89,135,118, 78,208,188,220,101,230,103, 0, 68,131,245, 47,162,192, 92,149,255,234,189,190, 47, 14,152, 61,186, 29, -116,173,102,141, 7,240, 68, 27, 44, 66,136,164, 74,149, 42, 35, 98, 98, 98,122,175, 88,177, 66, 94,165, 74, 21,168, 84, 42, 24, -141,198,136,191,254,250, 43, 98,216,176, 97, 47, 87,173, 90,117,253,237,219,183,151, 80, 74,139,253,136,112, 65,197, 67,171, 63, - 6, 0, 52,235,255,121, 69, 66,200,135, 0,242, 1,224,229, 74,127,111,107, 53,224,243,138,132,144,113, 40, 58,251, 55,137, 82, -234,114,118, 25, 5, 20,187,214,204, 69,183,183, 62,148, 18, 66,134, 9,235, 59, 63, 3,236,249,126, 17, 58,246, 25, 83,100,125, -135,170,144,238, 92, 51, 23, 93,222,250,208,237,221,198, 59, 62,195,216,120,222,117, 97, 87, 0, 96, 24,194,238,189, 73, 93,221, -248, 55,133, 82, 90,236,126,161,132,144, 14, 40,184,209,178,203,246, 93,106, 74, 83,172, 54,206,101,161, 88,185, 76,146,186,235, - 42, 91,108,223, 1, 13,136,205,198, 21, 92, 91,229, 82,112,129,129,129,135, 62,250,232, 35,105,151, 46, 93,176,114,229,202,230, - 95,125,245,213, 16, 66,200,175, 0,118, 80,177,228,129,136,200, 83,139,203, 11,149,130,161,203,247,174, 91, 86, 45, 57, 45, 19, -189,135,253, 15,235,214,173, 67, 86, 86, 22,130,130,130,160, 80,200,101, 75,103,140, 47,175,211,106,202,247, 26, 57,101, 57,128, - 26,165, 61,120, 9,143, 83,221,121,127, 98, 47, 68, 42,149, 72,101, 10,133,140, 89,191,126, 61,178,179,179,161,211,233,160, 80, -200,152, 69,159,143, 85,235, 2,252,212,111,142,153,218, 28,192,198,210,246,147, 53,230, 53,223,249,253,226,128,148,180, 12,244, - 27, 53, 25,206,199,145,201,229, 28, 80,240,133, 82,218, 99,136, 60, 60,233,233,233, 4, 0, 66, 66, 66, 40,224,104,174,154, 12, - 88, 48,182, 61,222,159,191, 15,249, 38, 75,177, 27,217, 62,105, 84,169, 82,101, 68,207,158, 61,123, 79,155, 54, 77,206, 48, 5, -163,252, 6,131, 1, 70,163, 17, 81, 81, 81, 56,116,232,144,124,242,228,201,189,183,109,219, 6, 0, 95,148, 84,255,210,165, 75, -149, 42, 86,172,104, 2,128,174,117,181,206,219, 98,132,109, 0,160,213,106,225,141, 96,157,159,249,210,165,147,181,133,253, 70, -180,141,226,220,172, 55, 1,208,120,210,226,121, 42,221,247,229, 48,183,219,223,153,246, 3,123,126,227,209, 26, 85,170, 84, 49, - 58,174,119, 83, 40, 25, 0,194,243,242,242, 42, 58,175, 20,218, 91,109, 92,152,187,227,181, 31,181,204,165,241,178,113,144,254, -240,195, 15, 0,128,121, 31,246,147,124,253,123,186, 84, 42, 45,184,212,206,153, 51, 7, 83,167, 78, 85,236,221,187,183,243,154, - 53,107, 58,219,111,141, 35,150, 63, 16, 17,121, 10,113,105,176, 8,129, 54, 64,235,135,110,111,143,194,238, 61,123,209,178,101, -203,194,109,149, 43, 87, 70,159,215,187, 98,219,138, 56, 48, 32,222,175,174, 30,120,216,227,100,229, 24, 62,233,212,251,139,207, -239, 37,231,157,216,181,235,103,180,104,209,162,200,254,111,246,234,142,205, 75,167,131, 80, 42,127,152,126,242, 12,149, 7, 4, -248,225,141,193, 99,224,234, 56, 67, 7,116,219,213,177,199,162,118, 41, 25, 6,119, 51, 34, 68, 30, 17, 87,175, 94,149,152,205, -230, 62, 1, 1, 1, 77,100, 50, 89,184, 82, 87,145, 79,148, 54,206, 72, 35, 85,110,167,134,229,183, 28,219, 46,188,227,188,247, - 90,227,253,249,251,176,112,221,201,213, 13,144, 60,197,187,234,191,151,136,136,136, 26, 49, 49, 49, 69,204,149, 94,175, 71, 94, - 94, 30,114,115,115,161,215,235,193, 48, 12,198,143, 31, 47, 63,124,248,112,239,136,136,136,253, 62, 12, 23,222,107,214,255,243, - 2,147, 33,145,229, 77,153, 50,197, 28, 22, 22,102,214,104, 52, 84, 42, 87,234, 91, 13,248, 92, 11, 0,140, 84,174, 95,184,112, -161, 37, 42, 42,202, 36,149, 74, 21, 99,198,140,241, 41,135,211,108, 54, 83, 71, 77,139,197, 92,184,126,214,172, 89,150,240,240, -112,179, 70,163,161, 86,171,251,155,140, 59,115,225, 78, 38,148,114, 9,148,114, 9, 84, 10, 25,180,149, 26, 65,153,117, 17, 44, -203, 98,246,236,217,214,242,229,203, 91, 52, 26, 13, 85, 40, 20,242,209,163, 71,123,237,231,160, 65,131,168, 78,167,179,106, 52, - 26,249,212,169, 83,139,221,151,239,192,249, 7, 80, 43,100,208, 40,165,168, 94, 57, 26, 74,106,116, 37,227, 18,137,164,232,136, -182, 82,169, 68,243,230,205, 81,187,118,109,108,223,190,189, 21,196,250, 82, 34, 34, 79, 37, 82, 0, 32,132,188, 12,224, 16, 0, - 80, 74, 9, 0, 48,160,248,116,112, 71, 12,121,171, 39, 56,142, 47,200,138, 7, 32, 33, 4, 31,246,110, 9,158, 99,193,195,235, -173, 34,188, 78,213, 44,233,113, 28, 53, 41, 97, 36, 0, 80,163, 98, 48, 29, 58,176, 47,120,174, 96, 52,132, 3, 32, 3,240, 65, -207,230,224, 56, 27,120, 47, 69,225,125,235, 39,143,143, 7,181,135,171,227,212,168, 26,206,152, 57, 22,196,225,102,140,190,104, -150, 20, 81,179, 40,199,143, 31,143,208,104, 52,243,251,245,235, 23, 57,122,244,104, 5, 39,213, 73, 55,157,200, 8,156,176,244, - 68,100,190,217, 42,233,219,186, 18,198,190, 89, 23, 99, 23, 30, 16,204,213,144,202,149,179,159,232,215, 40, 32, 32,160,255,138, - 21, 43,138,153,171,148,148, 20, 38, 47, 47, 15, 86,171,149,215,235,245,224, 56, 14, 19, 39, 78,148, 77,158, 60,185, 63, 33,100, -170, 93,199,236, 74,243,208, 29, 26, 67, 8, 25,119,233,210,165,152,143, 62,250,200,218,166, 77,155,123,149, 43, 87, 54, 72, 36, - 18, 68, 68, 68, 44,138,141,141, 45, 55,109,218, 52,107,231,206,157,239, 74, 36, 18, 84,175, 94,221,112,241,226,197, 24, 0,106, - 95,207,221, 81,115,213,129,197, 20, 0, 8, 33,136,141,141,141,175, 94,189,186, 65, 34,145,224,198,206, 89,197, 46, 40,238, 52, -101, 82, 6,207, 68, 5, 22, 60, 32, 4, 80,251, 3, 89, 5, 15, 99, 99, 99, 19,106,212,168,145,199, 48, 12, 46, 92,184, 16, 13, -160, 72, 62,151, 43, 77,181, 90,109,235,219,183,239,189,107,215,174, 21,107, 15, 0, 82, 9,131, 38, 53,236, 1,171,168, 6, 64, -194, 49,183,253,148, 73,192, 78, 30,209, 79,170, 83, 1, 74,109,136, 57, 55, 55, 23, 1, 1, 1, 0, 0,171,213,138,179,103,207, -162,105,211,166, 47,111,220,184,241,176,155,167,203,227,185, 63, 12,162,166,168,249,111,214,116,229, 69,158,100,132, 8,214, 33, -231,147,225, 57, 22,213,162,130,177,244,195, 55,192,178, 28, 56,142,183, 47, 28, 88,150,135,205,106,129, 23,127,229, 19, 15,115, -156,160, 0,245,180,221,235, 71, 7,181,125,117, 78,219, 47, 63,120,253, 23,222,102, 3,199, 3, 44,199,131,179,113,224,121, 30, - 54, 75,217,212,176,228,109, 28,170, 69, 6,227,203, 15, 94,135,243,113, 22,255,180,175,235,129, 29,227, 53, 45,187,204,252, 0, -192,236, 50, 57,160,136, 71,174, 94,189, 42,209,104, 52,243,215,174, 93, 27,211,168, 81, 35, 6, 0,142, 94,103,149, 19,150,158, -136,220, 27,215,140, 52,171, 29,140,212,108, 51,198, 44, 57,135,221, 39, 82,247, 56,155,171, 39,152,218, 85,170, 84, 1,240,183, -185,154, 59,119,110,200,210,165, 75,163, 0,224,141, 55,222,120,208,182,109,219,244,235,215,175, 35, 34, 34,130,164,167,167,191, - 2, 96, 12, 0, 16, 66,198, 81, 74,151,186,209, 53, 84,172, 88,209, 20, 26, 26,106, 22,140, 16,195, 48,144, 74,165,168, 88,177, -162, 41, 44, 44,204, 92,189,122,117,131, 92, 46, 7,195, 48, 16, 12,158, 47, 16, 66, 32,145, 72, 32,104, 58, 34,145, 72, 32,104, -150, 4,153,212,161,189,211,245, 65, 56,142,171,227,185, 67,165, 82, 81, 0,110,219, 75, 24,135,203,163,212,115, 38,192,234, 51, - 84, 70, 8, 57, 68, 41,197,153, 51,103,112,251,246,109,200,229,114,148, 47, 95, 30, 83,167, 78,133,217, 92,112, 77,234,217,179, -231,203, 0, 46,248,212, 65, 17,145,255, 6,197,188,200,147, 76,145, 33, 66, 66,200,203,148,210,195, 0,192,177, 54,112, 28,239, -210,244, 88,109, 44,108, 86,159,239,195,236, 17, 79,199,225, 56,206,227,113,132, 28, 44,158, 82,169, 75,115,197, 23,220, 55,172, - 76,250,201,219, 96,227, 80,204, 92,241, 60, 15, 66,152,130,144, 22,197, 67, 13, 69,138,248,142,217,108,238,219,175, 95,191, 72, -193, 92, 1, 64,186,222, 38,205, 55,219, 36,205,106, 7,163, 97,235,158, 56,125,112, 35, 54, 28,121,128,170,161,154, 35,149,253, -158, 10,115,133,252,252,252, 48,149, 74, 5,131,193, 80, 24,185, 90,186,116,105,148,197, 98, 97, 0, 64, 42,149, 69,167,241, 81, - 42,142, 7, 2, 3,146,144,149,149, 19, 44, 92,176, 8, 33,115, 8, 33,171,168,135,202,249,114,185,188,208,152, 56, 26, 31,165, - 82, 89, 42,227, 34, 32,152, 50,185, 92,238,114,189,243, 48,154, 55,228,142, 6, 11,180, 32,138,229,128, 96,232,132,220, 39,111, - 40, 20,138,194,115,119,133, 84,226,112, 60, 73,201, 83, 45,173, 86, 43,242,242,242,144,157,157, 13,149,170, 32, 64, 70, 41, 5, - 33,100, 12,128,247, 74, 44, 40, 34,242, 20,227,232, 69,158,100,156,175, 62,135, 80, 80,221, 29,172,205,234,210,244,172,217,119, - 26,183, 50,108,136, 10,186, 12,161,173,175,244,238,221,123,117, 68, 68, 68, 19,225,177, 92,163, 13,238,255,225, 44,112, 86, 11, -116, 74,138,247,122,180, 40, 98,174, 56,142,135,213,234, 62, 2,149,149, 99,248,164, 99,207, 69,159, 7,251,105, 79, 56,155,158, -201,155,174,245,200,200,177, 68, 19,233, 85,100,147, 40,174,231,187,159, 14, 18,246, 99, 24,230,252,250,101, 83,198,250,218,111, - 74, 24, 89,215,209, 95, 13,225,228,218, 90, 1, 52,235,200,212, 62,181,182, 58,154,184, 48,127,255, 93, 29,222, 88,208, 46, 37, - 83,204,193,250,167, 80, 40, 20,237, 70,143, 30, 93,228,155, 46, 68, 43, 99, 53, 74, 25,247,219,229,116,114,250,224, 70,230,232, -165,116, 94, 37,151,208, 80,122,187,202,227,234,103, 89,163,209,104, 82,243,243,243, 35,140, 70, 35,114,115,115,145,155,155, 91, -100,187, 84, 38, 35, 67,134,142, 12,145,201, 21,176, 89, 45,216,189,118,186, 87,205, 86,149, 73,252,203,149, 80,177,107, 93, 45, - 36, 50,133,254,114,149, 42,139,164, 82, 41, 24,134,193,206, 37, 19,198,108,153, 63, 74, 11, 0,231,119, 45,201,237, 51,126,241, - 23, 12,195,192,108, 54, 43, 75,210,239,251,247,239, 71,155,205,102,147,221,152, 9,134, 15,119,238,220,169, 96, 54,155,141,142, -235,125, 65,173,209, 2,186,202,128,166,104,158, 57, 33, 4,119,239,222,141,180,217,108,249, 82,169, 20, 22,139,197, 39, 55,196, - 48,140,252,194,133, 11,209, 60,207,187,108, 95,187,106, 36, 80,190, 46,160, 8,244,181,139, 66,145, 68,175,109, 8, 33,244,105, -250,213, 46, 34, 82, 6, 20,122,145, 39, 25,193, 96,181, 34,132, 20, 94, 13, 40, 5, 88,171,181,208, 88, 21, 68,152, 10,254,190, -147,195,227,218,141,155, 88,184,112, 33, 14,255,249, 65,224,180,105,211,148,147, 39, 79, 54,247,238,221,123, 62,207,243,207, 51, - 12,115,190, 71,143, 30, 99, 92, 29,140,231,249, 10,167, 79,159, 46,252,178,179,217,108,208,106,181,208,106,181,168, 83,165,124, - 49,115,197,218, 35, 88,238, 46, 83,148, 48, 18, 80, 0, 20,148,229,108,224,108, 40, 52, 61, 25, 57,150,232,109, 7,207, 85,115, -104,254,172,240, 71,243, 70,181,138,139,217,233, 61,108,106,225,121,172, 95, 54,101,236,180,149, 43,149, 89, 92,248,232, 62,189, - 6,215,233,217,167, 63,250,189,222,241,101,147,201,182, 93,202,128,183,241, 28, 56, 27, 15,158, 82,134, 2, 69,114,176, 68, 30, - 29,233,233,233,196,104, 52, 86,210,233,116,133,235, 40,165,136,240, 51,152,199,247,122, 38, 49,118,194,177, 72,147,149,131, 82, -198,208, 49,175,198, 36,254,190,109, 67,112,186, 57,157, 8,179, 11,159,112, 46,223,186,117, 43,162, 66,133, 10,200,205,205, 5, -203,178,252, 27,111,188,241, 64, 42,149, 69, 75,101, 50,210,165,207, 72, 62, 57, 57,209,198, 48, 18, 80,202,161, 83,207,225, 68, -169, 82,203,173, 22, 11, 11, 96,156,155,232,149, 99, 41, 6,109,108,108,108, 57, 97,102,223,150,249,163,180, 14,219, 2, 26, 54, -108, 88,206,113, 22,161, 47, 40, 20, 10,210,187,119,111,117,197,138, 21, 9, 0,252,177,246, 35, 0,128, 92, 46, 39, 93,187,118, - 85, 85,172, 88,144, 95,255,235, 18,223,239,117, 29,162,161, 64,206, 29, 32,231,110,145,245, 18,137, 4, 93,187,118, 85, 86,169, - 82,165, 68,159, 69,123, 98,187,219,218, 91,126, 82, 22, 72, 62,227,147,214,128, 6,196,246, 81, 75, 72,231,119, 98,160,240, 15, - 54, 55,153,176,247,119, 79,237, 69,147, 37, 34, 82, 72, 17, 47,242,164, 35, 5, 0,123, 40,174,200,135,155,181, 89,139,153, 43, -142,227,161,226, 12, 88,184,112, 33,222,123,239, 61, 0,144,143, 29, 59,118,235,180,105,211,186,243, 60,255, 60,165,180, 5, 33, -238,175, 17, 12,195, 28,138,136,136, 72,161,148,202, 24,134,105,177,100,201,146,114,157, 58,117,130, 86,171, 5,229,105, 49,115, -197,113, 60,108,102, 75,129,227,115, 65, 80,128,122,218,158, 77, 99,130,218,188, 58,187, 45,103,195, 47,130,185,226,108,127,167, -197,103,164, 36, 96,223,158,237, 88,190,108, 69, 22, 8,189, 10, 10,158, 97,152,243,238,250,200,243,252,243,199,254,184,210,162, -121,163, 90,152,182,114,165,242,210,233,164,173, 35,223,255,168, 78,207, 62,253,177,241,199,181,144, 88,179,206, 72,153,240,191, -205, 21,199, 33, 77,159,219,245,192,206, 9, 98, 14,214, 99,194,102,179, 33, 43, 43, 11,182,188, 44,246,133, 8, 67,206,167, 61, -195,204, 41, 89, 38,169,140,207,103,107, 6,164,154, 15,102,222,149,104, 52, 30,103,255, 63, 49,228,230,230,174, 29, 54,108,216, -203, 71,142, 28,145, 51, 12,131,220,220, 92,180,110,221, 58, 61,141,143, 82, 13, 25, 58, 50, 36, 49,241, 1, 27,160,150,154,229, -114, 25, 82, 83, 83,249,151, 59,247, 53,246, 25, 52, 38,242,189, 73, 51,190, 74, 60,190,204, 93,254, 85, 17, 28,103,246, 57,111, -251,250,235,175, 45, 81, 81, 81, 38,165, 82,169, 24, 48, 96,128, 79,227,132, 22,139,133,206,154, 53,203,236, 60, 91,208, 98,177, -208,133, 11, 23, 90,162,163,163,205,106,181,154,218,108,222,211, 14, 24,134,176,239, 76,251,129,101, 89,182,112,157,112,205,145, - 72, 36,176,241, 36,239,203, 47,191,180, 70, 71, 71, 91, 52, 26, 13, 85, 42,149,114, 95,250, 57,114,228, 72, 26, 20, 20,100,245, -243,243,147,143, 31, 63,254,161,102, 17,218, 56, 72,167, 45, 41, 44,211,160,212,106,181,208,235,245,133,125,141,136,136, 40,182, -143,104,178, 68, 68, 92,123,145, 39, 25,151, 9, 10, 60,229,243, 82, 82,211,195,116,145,213, 96,179,177,224, 88, 27, 88, 27, 11, - 27,107,195,184,129,175, 33,110, 89,193, 72,152,221,100,197,142, 29, 59,118, 43,224,253,182, 59,235,215,175,255,124,236,216,177, - 1, 41, 41, 41,123, 87,175, 94, 93,174, 95,191,126, 24, 55,110, 28,230,204,153, 3,169, 66,133,192,242, 49,133,199, 97,109, 44, - 56, 27,139,212,140, 44, 80, 74,243, 92,233, 9, 57, 88,148, 66, 26, 80,190, 50, 56, 78,216,215, 6, 70, 82, 48, 51,125,223,158, -237,232, 55,112, 20,100,202,192,160,197, 11,103, 27,235,188, 16,209,125,242,224,193,222, 51,223, 9,152, 75,167,147,182,142,124, -111,124,172, 96,174,182,172, 89,114,117,201,152,216,117, 26,133,180,240, 56,156,205, 6,134,145,136, 57, 88,255, 32, 33, 33, 33, - 52, 45, 45,237,110,118,118,246,179,126,126,126,200,200,200, 64,102,102, 38,178,179,179, 97,206,205, 98,131,185,108, 3, 97, 51, -241,255,236,157,119, 92, 83,215,251,199, 63,207,205, 14,123, 41, 67, 4, 7, 14, 20,172,171,110, 28,173, 90,107, 29,109,197,189, -103,181,213, 86, 91,235,172, 3,247,104,221, 86,171,214, 90, 90, 7,126, 29,173,213,186,234,172,171,162, 56,192,133, 3,217,130, -140, 64, 8,153,247,252,254,128,208,128, 1, 18,196,174, 95,222,175, 87, 94, 33,247,158,251, 57,231, 50,146, 15,207, 57,207,115, -132, 66, 33,158,197,235, 97, 48, 24, 82,254, 35,209, 43, 36, 39, 39,223,173, 93,187,246,238,153, 51,103, 14,152, 62,125,186,136, -231,121,220,187,119, 15, 12, 96, 34,177, 4, 28,199, 65, 36, 18, 34, 59, 91,193,219, 57,184, 36,107,153,192, 78, 36,150,128, 19, -136,203, 42, 56,250,180,227,240,130, 50, 13,156, 80,156, 99,204,236, 19,139,197,184, 20,177, 82,209,113,248, 2, 39, 0, 16, 75, -229,153, 93,187,118,141,107,208,160,129,242,234,213,171,254, 40,145, 69, 88, 18, 2,244,239, 14,255, 92, 96, 39,151, 41,187,116, -233,242,212,168,249,228,248,122,197,144, 9,179,136, 4, 18,101,143, 30, 61,226,130,130,130,148, 2,129, 0, 49, 7,151, 43,222, - 29,254,185,140, 10, 18,116,205,114,244, 1, 27,115, 35,226, 92,253, 69,139, 22,233,186,119,239, 30,111, 92, 15,246,228,201, 19, -159,119,222,121, 71,186,106,213, 42,221, 59,239,188,147, 16, 28, 28,156,203,113, 28, 34, 35, 35,205,102, 5,150, 68, 46,151,235, - 70,141, 26,245,244,214,173, 91, 21,202, 34, 44,143,234,213,171,131,231,121,116,234,212, 9,249,249,230, 3,128, 54,147,101,195, -198,127, 11,179, 6, 75,203,243, 31, 13,157,182,114, 61,129, 28,120,176, 98, 89, 58, 12, 0, 24,163,207, 62,251,212, 30,128,220, -104,178, 38, 79,158,156, 89, 94,103, 38,230,170,249,160, 65,131, 48, 99,198, 12,124,249,229,151,134, 21, 43, 86, 8, 98, 30,198, -107, 67,167,172,200, 42,209, 15, 24, 99,185, 6, 3, 62, 50,167,151,153,173,156, 27,242,206,210,249,137,169,121,231,251,126,186, -164,216,187, 86, 22, 21, 20, 51,220,244,245, 38,165, 72,234,108,223,119,192, 16, 0,232,178,126,245,242,253, 11,177,181,124,147, -197, 40,240,163,201,159,187, 26,205,213,134, 85,139,110,185, 82,234,186,209, 95, 68,191,176,106,222,217, 1,251, 67,222, 89,250, -214,179, 12,229,154,242,190, 7, 54, 42, 7,141, 70,115, 98,237,218,181, 53,102,207,158, 45,201,200,200, 64,122,122, 58, 50, 51, - 51,139, 30,185,185,185,240,242,242,194,175,191,254,170, 85, 40, 20,151,254,238,241, 86, 38,143, 30, 61,218,240,211, 79, 63,225, -204,153, 51,253,167, 79,159, 46,242,242,242, 34,103,231, 20,210,105, 53, 0, 24, 75, 75, 75,227,237, 28, 92,146, 61, 60,125,159, - 38,165, 60, 11,212,105, 53,224, 13,218, 82, 87,145, 23,150,105,248,236,246,237,219, 53, 86,174, 92,169, 49,205,236, 27,240,249, -250,181,205,154, 53,115, 91,183,110,157,166, 71,143, 30,113,198, 69,233,150, 44,114, 63,246, 16, 31,223,190,125,179, 97, 73,205, -142, 99, 87,110, 51,106,154,102, 23,246,252,116,243,182, 58,117,234,184, 5, 5, 5,197,149,165, 91,171, 86, 45,149,183,183,183, -166,126,253,250,185, 34,145,168, 32,114,165,211,229,213,170, 85,139,247,244,244,212, 52,104,208, 32,215,218,197,248,114,185,156, - 1, 47,214,172, 50, 98, 77, 22,161, 72, 0,253,160, 65,131,138, 42,185,127, 86,167, 78,242,144, 33, 67,188,167, 76,153,130,109, -219,182,225,247,223,127,207, 40,121, 77,135, 14, 29,112,246,236,217,249, 0,230, 90, 52, 96, 27, 54,108,252,227, 49,107,176,182, -111, 15, 63, 9,147, 53, 75,230, 88,184,112,161,180, 48,114,213,229,147, 79, 62,129, 74,165,114, 45,217,134,136, 58, 27,107,101, -152, 51, 87,203,151, 47,223,201, 24,243, 5,208, 78,111,224, 47,127,243,237,142, 78,229, 13,216, 84,147, 17, 39,224, 56,202,149, -136,216,245,175,191,217, 94,172, 66,119,225,162,246,122, 32,220, 88,191,122,185, 10, 64,151,146, 38, 43, 52, 52, 52,175,164,166, -145, 15,198,143, 43, 50, 87,235, 87, 47, 63, 30,212,220,239,189,217,163, 23,152, 53,101, 11,230,142,179,231, 56,106, 99,186, 6, -203,156,230,203, 98,211,252, 83, 83, 42,149,238,220,181,107, 87,247,144,144, 16,255,215, 94,123,141,203,200,200, 64,110,110, 46, -114,115, 11,130,157, 30, 30, 30,136,137,137,225,227,226,226, 18,165, 82,233,174,191,107,156,175, 66,179,112,251,155,181,222,222, -222, 39,230,204,153, 51, 36, 61, 61,253,157,204,204, 44,247, 95,190, 91,136,110,125,199, 83,135,238, 3,149, 26, 38,148, 37, 36, -167,214, 63,125,248, 71,183, 35,187, 55, 64,171,209,140, 37,218, 20, 99, 44,211, 96,102,156,121,198,114, 12,245,235,215, 87,154, - 26, 20, 63, 63,191,124, 31, 31, 31,117, 80, 80, 80,209,113,115,217,121,230,238,221, 90,205,194,245, 93,202,178, 52, 1, 20,153, -181,146,229, 31,236,236,236, 96, 52, 93,214,140,211, 52,123,210, 28,229,101, 17,154,106,126,119,141,137, 76,207,125, 71, 36, 8, - 15, 15,239, 28, 30, 30,222, 28,192,117, 0,199, 0,232, 10,175, 43, 90, 12,207, 24,155, 7, 96, 94,121,247,254, 50,216, 52,109, -154,255,100,205,255, 26,150,229, 48,151,192,184,160, 29, 0, 55,121,242,228, 76,149, 74,229, 58,100,200,144, 50,175, 73, 73, 73, -217,182, 99,199,142, 98,230,234,253,247,223, 31,177,119,239,222, 19,207,158, 61,171,200, 48,224,234, 36, 95,120,230,231,105,174, - 29,122, 44,253, 4,192, 10,179,141, 24,248,160,230,222,239,173, 95,189,124, 63,138,155,172,239, 1,188,111,230, 10, 2,128,174, -221,122,227,199,237,235,140,107,183,228,183,174, 38, 30,233,127, 45,204,108,246,161,139,131, 52,172,112, 28, 83, 96, 91,131,245, -151, 16, 24, 24,104,184,112,225,194,148,241,227,199,127,245,230,155,111, 86,235,221,187,183,184,122,245,234,144, 74,165,120,248, -240, 33,206,157, 59,167,125,244,232, 81, 98, 94, 94,222,148,215, 94,123,205,146,253,248,254,117, 36, 39, 39,223, 45, 44, 34,250, -177,113, 90, 73, 42,147,139, 7,142,252,196,183, 40,139,112,247, 6,168,243, 85, 0, 32,180,164, 76,131, 80, 40, 20, 71, 69, 69, -249, 27,163, 84, 90,173, 86,106, 60,126,245,234, 85,127, 99,109,172,252,252,124,139,179, 8, 95,149,230,205,155, 55,125,141,217, -142,198,108, 65,161, 80, 40,142,140,140,244, 53,106,170,213,106,139,178, 8, 37, 18,137, 56, 42, 42,202,215, 96, 48, 84, 90, 22, -161,145, 66, 67,124,180,240, 1,160,192, 88, 21,154, 43, 42,156, 22,180, 77, 15,218,176,241, 31,163, 66, 6,203,184,160,221,210, -246, 68, 36,172, 81,163, 70,215, 1, 3, 6, 20, 51, 87,161,161,161,134,125,251,246,157,246,246,246, 78,229, 56,174,188,237, 60, - 94,212, 53,174,193, 42, 40,168, 94, 12,142,227,110,180,123,189, 1, 56,142,187, 49,123,244,104,245, 66,108, 45,102,178, 14,238, -223,243, 86, 41,178, 12, 0,220, 61,125, 49,104,196, 68, 12, 26, 49,209, 21, 64, 91,160,244,236,195,178,198, 97,227,213,209,166, - 77,155,228, 59,119,238, 12, 58,126,252,248,192,179,103,207,118,206,203,203,171, 65, 68,144,203,229, 79, 52, 26,205, 9,169, 84, -186,243,191,106,174, 74, 67,171,213,234,167,207, 95,185, 67, 32, 16, 25,120, 94, 75, 90,173,118, 4,172,248, 59,159, 62,125, 58, - 7, 51,107,171, 38, 78,156,104,246,248,223,165, 57,115,230, 76,179, 89,127, 19, 39, 78, 44, 51, 27,176, 52, 62,253,244,211, 74, -203, 34,180, 4,155,145,178, 97,227,191, 79,133, 12, 22,199,113, 55,204,100, 11, 18, 0,102, 46, 67,143, 49,166, 23, 8, 4,243, - 93, 92, 92,198, 41,149,202, 95,223,127,255,253,201,161,161,161, 6,160, 96,225,123, 69,198, 0, 20,172,193,234,216,115,217,148, -172, 92,245,186,146,231, 74, 70,154,140, 38,107,195,154,229, 27,247,239,221, 21,154,146,148, 96, 54,163,202,104,204, 74, 59,103, -238,120,182, 66, 53,191, 99,207,101,159,100, 42, 84,182, 53, 88,127, 49,129,129,129, 6, 0,225, 0,194, 75,110,246,252,255, 1, -198,152,154,136,166, 18,145, 49,130, 59,245,209,169, 53, 69,191,219, 68,235,110,152,158, 43, 35,122,149,108,201,198,205,230,174, - 43,235,220, 43,208, 76, 45, 99,227,230,178, 72,181, 82, 47, 21, 0,196, 34,193,179,210, 54,117, 22,139, 4, 21, 11,189,151,192, - 24,197, 2, 48,191, 50,244,108,216,176,241,207,192,172,193, 50,154,159,210, 40,173,206, 85, 89, 24, 12,134,101, 0,150, 89,123, - 93, 89,220,186,159,243, 13,128,111, 44,109, 95,184,230,106, 88,225,195, 44,134,231,183,173,190,183,208,208,208, 77, 0, 54, 89, -123,157,141,138, 17, 17, 17,241,255, 42, 42, 85, 30,140,177,141, 68,244,109,225,215,106, 75,207,149,104, 87,233, 27, 14,191, 34, -205,163,229,183,170, 60,189, 67,119,244,158,149,217, 95, 25,227,176, 69,180,108,216,248,143, 81,161, 8,150, 13, 27, 54,254, 89, -148, 99,158, 42,103, 67, 78, 27, 54,108,216,176, 97, 49, 4,160,179,185, 19,214,100, 7, 16,145, 89,141,178, 40, 79,223,166,105, -211,180,105,218, 52,109,154, 54, 77,155,230,127, 79,179, 60,109,211,235,137,104, 44, 99,204,226,153,170,127, 20,172,160,214,212, - 43,121, 0,232,108,211,180,105,218, 52,109,154, 54, 77,155,166, 77,211,166, 89,193,126,198,254, 21,253,188,138,135,101, 85,248, -108,216,176, 97,195,134, 13, 27, 54,108, 88,140,109, 13,150,133, 80,245,119,191, 0,216,140,130, 23,180,156, 61, 61, 48,239,239, - 29,209,191, 23, 34,242, 0,208,195, 81, 38,238,213,208, 69,220,250,214,243,252, 11, 74,173,225,103, 0, 7, 25, 99,229,238, 8, - 96,195,134,141,151,135, 92, 27, 86, 7,209, 72,128,253,153, 70,201,179,104,150, 21,179,189, 88, 59,151, 6, 35,192, 81, 67,147, - 67, 42, 48,108, 97,153,209,241,102,117,255, 76, 49,119,137,141,141,245, 15, 8, 8,136, 3,144, 85,162,217, 11,231, 88, 97,184, -162, 52, 77,143, 90, 77,135,218,201,236, 38,104, 52,154,154, 14,142,142,207, 50,158,167,109,202,120,122,115,131, 73, 51,167,203, -151, 47,123,183,108,217, 50, 9, 64, 78,121,154, 54,108,188,106, 94,218, 96, 81,221, 62, 53,161,231,134,129, 97, 48, 8, 81,236, - 81, 68,159, 10,233, 4,188, 95, 13,188,176, 5,128,166, 0,107,106, 47,151, 53, 81,105,180,207,120,198,134,178,216,221,215,173, -214,171,213,247, 23, 0,221, 75, 57, 59,159, 61,218, 51,207, 58, 69, 54,243,143,179,251,164, 46,118,132,128,102,239,125, 14,147, -138,203,255, 36,136, 72, 14, 96, 56, 17,189,105,103,103, 87, 55, 47, 47,239, 9, 99,236, 38,128,141,140,177,164, 10,106,114, 0, - 70, 57,216,219,119,243,119,148, 52,125,154,158,157,152,163, 51,156, 3,176,194, 90, 67, 68, 68, 18,127, 87,251, 51,171, 7,116, - 12,108,221,176, 14,248,232,179,200,215,104,123,157, 78,200,237, 53,247, 98,210, 20, 34,106,202, 24,211, 88,168,229, 13, 64,200, - 24,139, 47,124,109, 15, 32, 8, 64, 45, 0,143, 0,220,102,140, 41,203,144,176,164,143,127,133,166,175,175,175, 15,207,243,163, - 61, 61, 61,223, 73, 77, 77,253,133,227,184,173, 9, 9, 9, 21,250,121, 87, 34,155,141,235, 39, 44,125, 6, 48,206,154, 14,228, -114,121,106,126,126,126, 85, 0,144,201,100,207, 84, 42,213, 43,203,250,251, 43,251,250, 75, 32,140, 57,118,254,118, 55,211, 67, - 93,219, 53,124,177, 29, 71, 13,143,157,143,110, 95,188, 93,144, 1,102,222, 3, 11,171,166, 98,254,252,249, 20, 22, 22, 54,162, -118,237,218,117, 56,142,187, 55,103,206,156, 98, 37,108, 74,158,155, 59,119,238,159, 21, 87,205,104,250,214,107,115,176,255,128, -190, 29, 63, 28, 59,220,161, 90, 21, 7, 36,167, 43,221,191,222, 22,190, 50, 60,252,199, 30,163,251,119,233, 6, 0, 11, 22, 44, -120,183,122,245,234, 53, 4, 2,193,227, 47,190,248,226,251,178, 52,109,216,248, 43,168,144,193,162,134,125,237,145,207, 66, 1, - 26,222,161,117,179,118,227,134,246, 36, 38,144, 97,224,152,105,250,242,175, 46,161, 85, 99,132, 20, 2,213,194, 70, 65, 13, 39, -247,237,217,153,107, 30, 84, 3,222, 85,156, 1, 78,132,205,135,159,184,175, 91,254,197, 70, 0, 45, 43, 48,204,238, 15, 47,238, - 68,114,150, 1, 68, 0, 17,192, 17,144,155,207,163,235,187,195,230,194,106,131, 68,156,139, 29, 97,242,206,124, 0, 84,234,190, -110,127, 39, 68,212,180, 74,149, 42, 27, 38, 77,154,228,218,168, 81, 35,111,153, 76,102,167, 82,169,234,196,198,198,214,156, 61, -123,118, 23, 34, 90,202, 24,219,103,165,166, 95,128,175,207,158,117,147, 71,181,120,173,150, 63, 68,154, 92,240,106,101,245,251, -177, 15, 90,127,176, 49, 98, 12, 17, 13, 96,214,109,151, 48,107,243,196,161,129,193,142,128,246,246,239, 16, 9, 4,176,115,118, - 69, 23,161, 0, 2, 66,131, 97, 71,159,204,132, 5,251,177, 21, 86, 48,159, 89,240, 37,253, 40, 16, 8,142,119,238,220,185,230, -232,209,163,169, 89,179,102,136,140,140,172,181,115,231,206,206, 66,161,240,177,193, 96,184, 9,224, 30, 99,236,133,125, 36, 75, -209, 22, 1,168, 39, 16, 8, 26,253,147, 53,125,124,124,228, 26,141,102,152,175,175,239,216, 94,189,122, 53,234,217,179, 39,213, -171, 87, 15,119,239,222,109,118,228,200,145,185,141, 27, 55,190,153,144,144,240,141, 68, 34,217,145,148,148,164,178, 68,179,127, - 48,221,221,125,139,213,175,232,249, 18,247, 60, 22,128, 79, 97, 64, 99,190, 5,207, 73, 0,230, 51,198,202,170,131, 85,140,252, -252,252,170,198,207, 79, 34, 50, 91,175,170,178,176,166, 47, 34,138, 33, 34,183,194,175, 81,214, 51,199,113,208,235,245, 74,189, - 94, 95,187, 28,205,122,128, 85,203, 58, 24, 99,172,172, 2,206,114, 0,232,218,182, 97, 6, 8,209, 0, 0,158, 69,191,208,138, -103,209, 69,198,139,161,225,177,223,163,221,138, 69,189, 74, 48,127,254,124,154, 59,119, 46,230,205,155,215, 19, 64, 8,207,243, -231, 2, 3, 3,215, 22,147,228,249,162,115,115,231,206, 93, 51,127,254,124, 66,177, 93,111,255,196,173, 70,227, 33,239,189,215, -187,227,162, 89, 19, 29, 18,159,107, 17,245, 88, 5, 55, 7, 49,230, 78, 29, 47, 81,171,117,173, 55,126, 31, 62,118,253,210,105, - 91, 12, 6,195, 27, 0,154, 27, 12,134,171, 0,190, 47, 75,211,134,141,191, 2,139, 13, 22, 17, 17,106,247,105, 15, 3,134,251, - 87,247, 12,157, 52,186,159, 60, 40, 48, 0,249,112,192,147,116, 3, 14, 31, 58, 2, 0,187,173,233,156,106,245,111, 46, 20, 99, -199,242,121, 83,235,135,180, 8,194,173, 68, 29,174, 38, 26,144,247, 88, 7, 1,167,131,129,103, 0,131,249,173,231, 45, 32, 33, - 83,143,243,247, 52,224, 8, 16,112, 0,199, 17, 4, 21, 93,117,102,208,220, 95,176, 61, 50, 40, 61,149, 7, 12,154,251, 21, 29, -211,171,130,136,222,168, 91,183,238,234,176,176, 48,175,212,212, 84,183,171, 87,175, 66, 42,149,194,213,213, 85,232,227,227, 83, -127,245,234,213,217, 19, 39, 78,156, 74, 68,215, 25, 99, 79, 44,212, 12,236,222,188,209,133,111,150, 47,112,214, 93, 62,130,172, - 93,255,131,128, 99, 16,219, 59,160,166, 92,142, 35,239, 5,184,133, 30,122,188,143,136, 2, 25, 99,137,150,104, 6,120,185,119, -109, 20, 24,136,204,253,235, 17,149,153,143, 35, 73, 42,140,236,210, 10,193,110,114,132,232, 13,240,178, 23,189,129,114, 12, 22, - 17,185, 2,152,166,209,104, 56,177, 88, 76, 50,153,108,200,162, 69,139,180, 3, 7, 14, 76, 48,182, 9, 9, 9, 65, 72, 72, 8, -229,228,228,212, 58,117,234, 84,173,240,240,112, 61, 17,197, 48,198, 14,150,166, 43,151,219, 61,205,207, 87, 85,151,201,229,121, - 95,111,220,248,101,251,246,237,121,169,244,207,221, 91, 42,162, 9, 0, 46, 46, 46, 91,234,214,173, 75, 51,102,204, 72,170, 44, -205,154, 53,107, 30, 11, 9, 9,233,212,181,107, 87, 97,219,182,109,225,227,227, 83,116,206,195,195, 3, 33, 33, 33, 20, 31, 31, -255,218,185,115,231, 54, 30, 59,118,108,109,205,154, 53, 79, 61,126,252,184,107, 89,154, 0,192,202,217,131,180,188,243,197,218, - 22, 68,166, 96,133, 97,250,198, 76, 1,227,127, 37, 68,228,176,121,243,230,170,198, 61, 19,117, 58, 29, 12, 6, 67,209,179,241, -193,243, 60, 12, 6, 3, 22, 45, 90,100, 81,109,183,194, 72,167,209, 56, 24, 31,188,185,103,137, 68,226, 97,217, 96, 17,237, 45, -205,106, 96,111,111,239, 15,160,123,221,186,117,167,153,158,174, 83,165,224, 89,169, 84,198, 37,171, 93,162, 1,180,127, 65,227, - 79, 92,194,194,194,134,205,155, 55,175, 55,254,220, 83,178, 81,223,190,125, 79,149,104,215,168,240, 89, 73, 68,167, 57,142,251, - 25,192,118, 0, 47, 68,196,237,236, 28,198, 77,154, 48,218, 33, 33, 93,139,133,251,210,177,253,172, 2,195, 66, 28, 49,249,109, -103, 12, 26,216,223, 62,226,127,123,199, 1,216, 98,114,201,221,192,192, 64,186,115,231,142,205, 92,253,183,120, 29, 64, 21,147, -215, 26, 0,198,173,173,210, 81,240,119,225, 94,226,184,105, 59,227,115, 90,225,241, 42,133,215, 49, 19,221, 52, 0,127, 84,214, -128,133, 0,138,246,192, 42,115, 47,172,154,161,135, 71, 13,236,213,237,157, 55,219,128,147,185,226,254, 51,224,226, 83, 6, 33, -167, 3, 7,134,203,191,159, 98, 16,242, 59, 76, 47, 41, 43,178, 65, 53, 67, 63,109, 20, 28,180,108,235,242,143, 5, 49,207,132, -216,126, 46, 15,218,252, 92,164,165, 60,197,179,164, 56, 36, 39, 60, 66,226,211, 71, 55, 1,154,107,169,102, 73, 24, 3, 12, 60, - 10,254,231,227,129,130,239,227,139,183,103,145,166, 78,121,167,118,253,224,160, 76,137, 1,208, 41,239,148,223,119,229,111,130, - 89,154, 38, 17,117, 9, 8, 8, 88, 49,107,214, 44,223,219,183,111, 59, 41,149, 74,229,145, 35, 71,206,196,197,197,121,122,121, -121,197,143, 31, 63,190, 77,181,106,213,170,190,251,238,187,118,123,246,236,153, 5, 96,180, 5,154, 65,189, 90, 53,185,184,109, -237, 42,251,231, 17,235,160,137,189,129,195,201, 74,252,158,154,199,106, 57, 75,233,163,215,170,192, 65, 42,196,130,182, 62, 14, -221,247,199, 46, 3, 48,200,146,123,111, 88,221,187,182, 78,149,135,124,149, 14, 59,238,102,168,142, 39, 42,171,146,203,147,180, -181,161,173,100,130,180, 36,248, 59, 74,234, 88,115,239, 70,100, 50,243,187,156,184,186,186,162, 67,135, 14, 8, 12, 12, 20,182, -111,223,190, 17,128, 34,227, 82, 82, 83,171,213,120,243, 60,131,163,163,163,220,221,221,221,213,209,209,241,185, 86,171,125, 41, - 77, 0,112,115,115,235,211,161, 67, 7,225,206,157, 59,211, 31, 63,126,124,121,224,192,129,143,156,156,156,138, 69,123,237,237, -237, 81,167, 78, 29,124,241,197, 23,194,110,221,186,149,171,233,233,233,217, 37, 60, 60, 28, 68, 84,244, 97, 93, 18,127,127,127, -120,121,121,161,123,247,238,194, 62,125,250,116, 49, 61, 87, 82,179,127, 48,221, 53,154,167,126,193, 84,230, 7, 83,191, 96, 98, - 4,220, 43, 25,201, 42,169, 89, 24,193, 42, 86,157,188,172,105, 54,115,237, 45,248,185, 63, 51, 70,147,100, 50,153, 69,149,213, -203,209, 44,117, 90, 83, 42,149, 22, 69,157, 74,246,101, 78,147,227, 56,204,158, 61, 27, 68, 4,145, 72, 4,177, 88,108,246,185, - 99,199,142,214,142, 51,158,136, 56,177, 88, 60, 77, 40, 20,142, 86,171,213,190, 50,153, 44,201, 96, 48,124,167, 86,171, 23, 21, - 70, 64, 93,204,253,238,150,166,105,111,111,239,127,255,254,253,186,165,125, 83,212,106, 53, 26, 53,106, 4,168, 17, 83,150,102, -108,108,172,127,237,218,181,235, 1, 48,110,165,118,150, 49,214,222,228,181, 41,103, 25, 99,111, 23,126,125,239,225,195,135,254, - 40, 52, 88,166,154, 58,173,182,166,111, 85, 39, 68, 61, 81, 97,251, 89, 5, 78,206,242,193,155,139,146,240,126, 83, 33, 2,253, - 28,160,215,234,234,245,237,219,119, 7, 10,126,127,255, 0,240,110,223,190,125,235, 11, 4,130,223, 0, 28, 0,144, 93,214,189, -191, 12, 54,205,202,165, 28, 47, 82,133,136, 14,153,244,223,195,248,122,250,244,233, 51,151, 44, 89,114,155,136, 14,153, 30, 55, -109,103,250, 92,216,215, 33,198, 88,143, 25, 51,102, 4, 45, 93,186,116,177,177,109,101,222,143, 53, 83,132, 78,105,249,246, 56, -247,212, 9, 66,129, 1, 66,142, 32, 20, 0, 96,132,184, 39,177,200, 81,100,157,103,143,254,247,216, 18, 33,170,213,183,109,227, - 38,141,150,255,184,250,115,238,219,115,121,200, 82,230,227,206,245,211,248,227,244,129, 20,131,222,112, 0,196,174, 2, 92, 36, - 30,241,119, 25,171,120,213,238, 2,131, 85,104,170,138,153,172,255, 14, 68,244,118,253,250,245,151,204,158, 61,219,255,250,245, -235,142, 10,133, 34,237,135, 31,126,184,171, 86,171,175, 3, 88,243,244,233,211, 14,247,162,136,169, 0, 0, 32, 0, 73, 68, 65, - 84,107,214,172,177, 91,185,114,101,215, 70,141, 26,213,139,136,136,200,179, 64,243,181,169,195, 7, 93, 28, 61,233, 19, 89,204, -158, 13,144,196, 68, 98,246,141,116,195,201,228,188, 89, 0, 86, 35, 62,183,109, 90,190,254,248,170, 14,213,185, 26,142, 98, 4, -184, 72,204,127, 66,152, 65, 38,145, 10,153, 80, 6,141, 70,143, 28, 13,175, 97,140, 41, 67, 91, 4,106,153,189,135, 12, 0,132, - 28,149,251, 59,201, 24,203, 36,162,101, 18,137,100, 54, 17,177,215, 95,127, 61, 42, 56, 56, 56,215,213,213, 21, 42,149, 10,106, -181, 26, 98,177, 24, 42,149, 10,113,113,113,184,124,249, 50, 92, 93, 93, 45, 29, 34, 0, 32, 55, 55, 23,142,142,142,224,121,254, -165, 53, 13, 6, 3,109,218,180,201,254,246,237,219,246,123,247,238,245,156, 60,121,242,243, 6, 13, 26, 92,237,223,191,255,131, -170, 85,171,170,111,220,184,129, 11, 23, 46, 32, 51, 51, 19,173, 90,181,178, 72, 83,163,209, 64, 40, 20, 66,165, 82, 65, 42,149, - 66, 40, 20, 66,175,215,131,231,249, 34,211,149,155,155,139,140,140, 12,136,197, 98,104, 52,101, 47,107, 51,154,165,126,193,196, -246,252,122,225, 25, 12, 60,160, 85,232,160,206, 46,120,104,178,117,200,207,210,245,155,242,229,107,123,110, 89, 86,117,220, 24, -193, 50,165,172,105, 54,115,237,203,163,178,215, 65,149, 53,173,153,149,149, 37,119,113,113,153,102, 73, 68,142,136, 32, 16, 8, - 32, 22,139, 65, 68,104,223,190, 61, 70,141, 26,133,166, 77,155, 34, 54, 54, 22,187,118,237,194, 31,127,252, 1,145, 72, 84,212, -222, 82, 58,118,236, 40,144,201,100, 23,122,245,234, 21, 52,107,214, 44, 89,141, 26, 53, 16, 19, 19,227,183,116,233,210,105, 39, - 78,156,232, 77, 68,205, 25, 99,124,185, 66,198,169,191,130,105,193,238,106,181, 26, 49, 49, 47,248,167,178,174,121,129,128,128, -128, 56,142,227, 30,240, 60,127, 14, 64, 35,198, 88,123, 34, 58, 2,192,190, 68, 83, 37, 99,236,109, 34, 82, 0,184,201,113,220, - 61,158,231,227,204, 45,151,114,116,116, 76, 75,120,166,240,116,119,144, 97,104, 59, 7,188,185, 40, 9,161,205,165,144,138, 9, -119, 31,167, 32,160,118, 13,138, 58,127,176, 57, 10,204,213,235,201,201,201, 0,208, 28,192,227,248,248,120,111, 20, 26, 44, 27, -255, 13, 74,154, 32,163,113, 90,178,100, 73,143,146,199,204, 25,166,146,199,151, 46, 93,186,216,228,117,165, 38, 89, 21,125,152, - 17,149,253, 95, 43,120,188,127,104,223,206, 75,111,106,201, 63,168, 89, 59,252, 25, 13, 98,136,188,124, 1, 0,251,206,146, 14, -201,167,167,156,179,179,255,110,211,226,137,220,230,211,121,136, 79,122,134, 11,135,191, 67, 90,242,147,237, 0,155,204, 30, 69, - 40, 42,126, 59,133,125,212,234, 27, 84,213,195, 29,249, 90, 6,158, 1,120,193,100,253, 55, 32,162,158,245,234,213, 11,187,120, -241,162,127,126,126,190,227,239,191,255,158, 21, 30, 30,254, 64,163,209,108,101,140,253, 80,216,230,167,244,244,244, 5,140, 49, - 56, 58, 58, 10, 69, 34,145,188,172,133,159, 68,212,116,234,232, 97,231,151,109,218, 38,123,112, 43, 10,107,246, 30, 70, 86, 94, -158,225,244, 51,213,187,140, 49,227,127, 5,191, 5,184, 72, 19, 25, 88,117, 17, 71,240,182, 23,121, 17,145,140, 49, 86,238,116, -174,119,117,127, 78,231, 87, 19,231,244,249,168,230, 46,149, 0, 64,173,122, 13, 5,215, 85, 58,252,126, 35, 6, 30, 14, 78, 98, - 75,238,157, 49, 54,135,136, 60,119,236,216,193,233,116,186,220,216,216, 88,120,121,121,193,211,211, 19,206,206,206,184,115,231, - 14, 78,158, 60,137,187,119,239,130,231,121, 52,110,220,216,194,239,106, 1,207,159, 63,199,141, 27, 55,208,189,251, 59,147,211, -210,158, 57,185,186,185, 43,207,159, 59,187,178, 34,154, 60,207, 19, 0, 4, 5, 5, 33, 40, 40, 72,150,152,152,232,123,232,208, -161,170, 11, 23, 46,124,234,239,239,255,163, 74,245,231,242, 40,181,218,178,162,235, 70,195,148,159,159, 95,100,254,100, 50, 25, -196, 98, 49, 20, 10, 5, 82, 83, 83,145,147,147, 3, 0,112,113,113, 41,215, 96, 21,195,192, 3,225,237,174,190,112, 60,120,184, - 85,107,156,204, 69,164, 42,179,253,171,160,172,105, 77, 34, 26, 12, 96,154,153,203, 94,128,136,160,215,235, 33, 22,139,209,178, -101, 75,172, 91,183, 14,127,252,241, 7, 14, 28, 56, 0, 63, 63, 63, 12, 31, 62, 28, 28,199,225,246,237,219,214, 14,145,191,120, -241,226,180,119,223,125, 55,104,199,142, 29,178,184,184, 56,220,189,123, 23, 46, 46, 46, 88,183,110,157,116,236,216,177, 1,167, - 78,157,154, 3, 96, 69,121, 66,166,217,130, 62, 62, 62,253, 26, 53,106,244, 66, 27, 47, 47, 47,231,163, 71,143, 86, 53, 26,175, -146, 25,134,102,200,154, 51,103,206,170,192,192,192,213,133,211,130, 33, 0,236, 25, 99, 29,247,238,221, 75, 0, 16, 26, 26,202, -136,232,116, 97,251,155, 17, 17, 17,157,238,220,185,195,230,205,155,103,246, 61, 41,237, 89,242,166, 85,235, 54,175, 90, 54,127, -170,100, 74,119,103,132, 54, 23, 65, 38, 38, 56,217,137,176,104,237, 22,221,181,203,103,111,120,123,123, 31, 2,240,110,114,114, - 50,188,189,189,115, 1,220, 19, 8, 4,143, 13, 6, 67,146,109,141,251,191, 11,115, 94,164, 48,138,156, 92,248,181, 89,227,100, - 41, 37, 35, 92, 70,102,204,152, 17,180,100,201,146, 43, 21,213, 53, 71,209,138,164, 82,167, 6,141, 8, 57,111, 47, 79, 15,183, -233,195,219,130,231, 1,189, 1,208, 27, 24,148,121, 42,196,220,250, 35, 15, 50,218,107, 81,143, 82,201,242,133,179, 62,169, 21, -149,192, 33, 41, 83,139, 51, 7, 55,179,180,228, 39,125,216,163, 61, 35, 43,203, 92,121, 85,245, 56,189,115,243, 2,252,241, 72, - 3, 3, 95,224,175,120,158, 21,125,253, 95,128,136,234,120,120,120,172,188,116,233, 82, 13,169, 84,234,120,255,254,125, 67, 68, - 68, 68,146, 70,163,217,104, 52, 87,133, 12,110,214,172,153,206,222,222, 30,185,185,185,106,173, 86,155, 91,134,185,242,237,216, -244,181,179,203, 54,109,147,229,107, 52,200, 86,169, 33,112,175, 90,210, 92,129,136,218,116,170, 91,173, 26,201, 28,193, 0, 60, - 81,104,147, 44, 49, 87, 0,224,224,236,194,249, 54,239,136,230, 31,175,131,130, 28, 25, 0,184,123, 87,227, 58, 77, 88,132,110, -107,206, 64,201, 57, 90, 99,129,147, 6, 13, 26,148,208,176, 97,195,236,192,192,192,236,231,207,159, 35, 58, 58, 26,153,153,153, - 88,179,102, 13, 98, 98, 98,192,243, 5,114,230,166, 75,202,131,231,121,100,102,102, 56, 48,198,144,153,241,220,126,214,172, 89, -206, 21,209, 52, 24, 12,197,254,182,170, 85,171,134,241,227,199,139,243,242,242, 92,158, 62,125,234,100,122,206, 82, 77,141, 70, - 99, 44,194, 7,198, 24, 52, 26, 13,178,179,179,161,209,104,240,224,193,131, 34,115, 85,216,191,117, 6, 75,171, 48,191,200, 94, -245,220,162,197,247, 70,152, 73,245,101,185, 92,158,106,124,227,148,201,100, 32, 34,115,211,108,149, 82,173,217,216, 23, 17, 49, -185, 92, 94,218, 38,207,102, 41, 52,121,102,177,118,124, 6,131, 1, 98,177, 24,163, 70,141,194,149, 43, 87, 16, 27, 27, 11,129, - 64, 0,165, 82,137,188,188, 60,116,233,210, 5, 18,137,196,216,175,165,178, 76, 44, 22, 15,158, 57,115,166,236,241,227,199, 72, - 79, 79, 55, 46,146,135,193, 96,192,228,201,147,229, 82,169,116, 48,172, 12,213, 39, 37, 37,189,117,255,254,253,122, 37, 31, 41, - 41, 41,217,166,107, 6, 43,202,222,189,123, 41, 52, 52,148,133,134,134, 50,163,209,178,148,172,132,232, 77, 7,126, 58,116,252, -211, 47,150,231,230, 41,115, 80,219, 71,142,220,156,108, 44, 90,178, 76,119,241,226,185,211,211, 38,127,208, 58, 34, 34, 98, 41, -128,123,133,151,220,139,136,136, 24,246,197, 23, 95,124,143,194,114, 13, 54,254, 61,152,243, 34,166,127,123,149, 49,141,103, 78, -163,112,154, 80,254,178,218,166, 88, 52, 69, 72, 1,253,155,120,122,184,159,218,177,126,190,195,161, 91, 64, 66,252, 19,164, 37, -199,161,121,235,142,136,185, 21, 5, 94,103,216,199,238, 71,148,155,102, 78, 53,251,214, 13,108,208,112, 66,135,214,193, 88,126, - 40, 23,247, 35,143, 34, 43, 45,121, 61,123,188,199,170,204,182, 82,245,107,245, 13,242,172,226,113,250,251, 13, 97,110, 71,162, - 57,196,199, 63,193,193,239, 87, 67,167,125,225,179,255,176,181,218,114, 94, 35,201,205, 74,133, 38,199, 0, 25,151,103,126,193, -207, 95, 8, 99,236, 65,149, 42, 85,118,172, 90,181,234,131,214,173, 91,219, 13, 28, 56,240,126,102,102,230, 66,198,216, 30, 99, - 27, 34,122,163, 94,189,122,159,173, 95,191, 62, 32, 62, 62, 30, 39, 79,158,188, 15,224,197,200,196,159,154, 9, 2,129, 96,227, -201,239,183, 76,149,215,170,143, 53, 51, 63,213,239,253, 35,186, 23, 99,236,136,137,102, 96,231, 70,117, 15, 45,252,236, 67,142, -191,246, 43,110,196,165,226, 81,182,250,164,165,227,142,205, 82,234, 68, 82, 57, 28,188,106,224,126,174, 65, 44, 20, 10,175,140, - 30, 61, 74,204, 9,132,224,132, 98, 68,103,230, 91,243, 33,238,112,229,202, 21, 78, 32, 16, 20, 51,230,166, 17, 33, 35,150, 70, -134,172,193, 82,205,146, 6,203,136, 94,175,127,225,184,165,154,106,181, 26,230,124,178,185,181, 88, 60,207, 91,119,255,154,108, -243, 46, 47,223, 58,131,101, 26,145, 50,157, 26, 52,174,151,203,207,207,175, 42,151,203, 83,141,211,124,149, 21,193,122,153,204, -194,178,166, 41,173, 25, 31,199,113,224,121, 30, 98,177, 24,141, 27, 55,198,161, 67,135,224,230,230, 6, 39, 39, 39, 56, 57, 57, - 65, 46,151,195,221,221,189,200, 96,113,156,197,217, 55, 76,173, 86,251,249,249,249,225,193,131, 7,144,201,100, 69, 15,169, 84, -138,160,160, 32, 40,149,202,106,248, 79,197,234,129, 49,253, 59,247,222, 16,190,127,232,161, 67,191, 76,208,170,243,131,235,215, -175,199,174, 94, 60,117, 99,218,228, 15,186,149,127,181,141,255, 18,198,232,147,233, 90,170,233,211,167,207,172,168,222,244,233, -211,103,154,139,104, 85, 6, 66,224, 79,199,104,206, 57, 26,205,213,246,117,243,156,246, 95, 7, 18, 18, 30,227,248,158,181, 57, - 58,173, 38,147,231,117,254,143,238, 70, 1, 28,190,179,168, 55,142,181,232,221,189, 19, 29,191,173,129, 34, 43, 13,247,174, 30, -125, 2,149,100, 70,101,220,136,209, 92,237,216, 48,223,237,231, 91,132,248,248, 39, 56,178,107,117,182, 78,175,125,131, 61,138, -176,186,142,150, 41, 67, 36,146,222,253, 27,184,244, 24,213, 46, 9,134, 16, 3, 6,199,220,121,219, 39,132,122, 39,157, 43, 59, -211,235, 85,147,150,150,182,200,193,193,129, 91,177, 98,197,200,252,252,252,121,140,177,162, 40, 34, 17,117,169, 93,187,246,242, - 77,155, 54,249, 62,125,250, 84,114,254,252,249,140,211,167, 79, 51, 0, 75,202,210, 52, 24, 12,159, 19,145,160,105,141,106, 19, -175, 61, 73,236,197, 24,251,213, 68, 51,168, 71,179,134,191,111, 91, 50,199, 81,247,251, 94,228, 38,199, 99,198,239, 9, 10, 0, - 22,253, 12,137,200,205,195,195,131,134, 12, 25,194,231,228,228, 64, 44,145,240, 58,157, 78,208,166, 77, 27,195, 39,159,124,194, -165,164,164, 64,145,147, 43, 36, 34, 55,198, 88, 70, 57, 90, 97, 0, 38,183,105,211,134, 90,182,108,121,121,245,234,213,199,140, -231,204,153,137,138, 68,176,202,195, 82, 77,158,231,205,126,122,234,116,186, 23,254,222, 42, 18,193, 50,197,156,193,178, 58,130, -165, 46, 45,130,149,102,117, 4,203,156, 89, 49, 53,135,166, 6,168, 34,107,176, 42,155,178, 76,148, 53,227, 51,174,131, 19,139, -197,136,138,138, 66,245,234,213,161,213,106,225,232,232, 8, 71, 71, 71, 56, 56, 56, 32, 39, 39, 7, 34,145,200,170,245, 87, 0, -120,153, 76,246, 52, 58, 58,186, 94,149, 42, 85, 96, 48, 24,138,153,172,251,247,239,195,222,222, 62, 17, 86, 70,176,124,124,124, -142, 22,102, 17, 22,195,203,203,203,217, 26,157,210, 48,141, 92,133,134,134, 86,104, 30, 97,195,146,169,225, 0,194,251,246,237, -187,227,230,197, 95,154,123,123,123,255, 18, 24, 24, 72, 0, 96,203, 24,252,111, 80,150, 23, 1,144, 86, 34,242,164, 49,121,157, - 6,128, 10, 95,167, 21,106,148,252, 90, 99,230,216,243, 37, 75,150,156, 50, 89,191,149,134, 74,164,204, 8, 22, 5,244,111, 82, -213,221,237,212,214, 53,243,156,246, 68, 2,137,241,143,113,102,223,186,108,189, 65,251, 6,120,150,124,241,196,190,189, 32,228, -225,209,222, 51,192,158,178,164, 10,224,209,180,105, 3,127, 28,184,173, 67, 90,194,125, 48,198,111,103,169,223,151,187,232,186, - 60,140,230,106,251,186,121,110,251,163, 8, 9,241,143,113,124,207,218,108,189, 65,251, 70, 69,138,148, 26, 25, 77,228,202, 57, -218,125, 61,244,173, 22,125,253,107, 85, 3,207,116,224,197, 12,239,127,238, 33,188,119, 45,239,128, 95, 87,193, 30, 62,151,159, -144,112,241,239,171, 62,158,155,155,187,128,136,246, 51,198,138, 86,167, 18,209,219, 1, 1, 1,139,191,254,250,235, 26,137,137, -137,142,215,174, 93, 83,124,243,205, 55,143,121,158, 15, 99,140,149,155,105,197, 24,251,148,136,182, 50,147, 26, 58, 68,244,218, -212,145,131, 46, 14, 26, 49, 90,246,248, 68, 56, 92, 31,199,224,179,223,147, 12,247, 50, 53, 3, 25, 99, 41,229,105, 18,145,155, - 84, 42,221,123,248,240,225, 7, 77,155, 54, 37,165, 82, 9,157, 78,135,244,244,116,236,223,191, 63,154, 49, 6, 87, 87, 87, 28, - 62,124,152, 31, 52,104,208, 94, 34, 10, 45,205,100,153,148,105,160,194, 50, 13,173,126,253,245,215, 59,221,186,117, 75, 0, 94, - 52, 41, 82,169, 20,249,249,214, 85,251, 40, 45, 43,177, 34,154,165, 69,176, 74, 30,183, 70,211, 56, 77,105, 92,220, 94,242,184, - 17,129, 64, 0,158,231, 95, 56, 94, 38,234, 44,243, 70, 74,249,172,194, 17, 44,211,108, 63, 75,218,151, 69,121, 5, 63, 43,146, - 89,104,164,178, 34, 88, 0,138, 34, 88, 63,253,244, 19, 70,140, 24, 1,131,193, 0, 59, 59, 59, 56, 56, 56,192,222,222, 30,251, -246,237,131,177,140,131, 53, 67,212,233,116, 63, 44, 89,178,100,230,166, 77,155,228,140, 49, 72, 36,146, 34,131, 53,111,222, 60, -149, 86,171,253, 1, 22, 24,172,162, 10,237, 60,139,174, 83,165,236, 44, 66,115,215,148,178, 30,203, 37, 44, 44,108, 24,207,243, -189, 81,162, 20, 67,137,118,197, 74, 56,148, 85,166, 1,128,107, 88, 88,216, 24,158,231,141, 85, 80,139,101, 11,154,180, 51,126, -150,212,235,219,183,239,142,146, 89,132, 54,254,245, 84, 90,249,132,191,138, 82, 13, 22, 5,244, 13,172,234,238,113,106,203,234, -121, 78, 63, 94, 1,146,226, 31,225,194, 79,235,179, 13,188,206,212,180,180,179,170, 55,162,166, 62, 85, 93,144,113, 73, 5, 69, -250, 83,128,225,218,203, 12, 30, 0,168, 86,255, 58, 85, 61,220, 79,111, 91, 59,207, 45,226, 58,135,196,167,143,113,186,208, 4, -190,140,185, 26, 34,145,244, 14,170,235,187,109,192,219,237, 92,157, 73, 7,125,220, 29,108, 29,222, 15,145, 61,181,104,219,223, - 25, 45,186, 59, 34,160,137,172,223,225, 45, 25,111,250,132,208,232,191, 51,154, 85,194, 92,245,172, 81,163,198,252,203,151, 47, -251,243, 60,239,120,230,204,153,156, 77,155, 54, 61,202,207,207, 95,203, 24,251,197, 10, 77, 83,115,213,116,250,216,225,231, 23, -127,189, 85, 22, 29,249, 7,150,255,240, 51, 84, 58,141,225,104, 66,110, 95,211,233,195,178,144, 72, 36, 11,126,251,237, 55,251, - 70,141, 26,209,243,231,207,139, 34, 45, 90,173, 22,217,217,217,200,201,201,129, 90,173, 70,179,102,205,184,181,107,215,218, 79, -156, 56,113, 1,128, 9,150,142,215,209,209, 17, 98,177, 24, 90,173,182, 40,130, 37,149, 74,225,236,236,140,231,207,159, 99,247, -238,221, 0, 80,102, 84, 76, 44,150, 36,115, 28, 85,151,219,217,169,101, 50, 25,239,237,237,253, 66, 27,107, 53, 11, 73,120,251, -237,183,125,195,194,194,100,205,154, 53, 43, 58,104,140, 96, 85, 68,147, 49,150,215,181,107, 87,187,181,107,215,194,223,223, 31, - 26,141,166,152,145,226, 56, 14, 98,177, 24,241,241,241, 88,184,112, 33, 24, 99,150,255, 35,147,159,169, 67,163, 97, 85,160,122, -174, 43,120,164,235,144,247, 76, 7,109,158, 85, 25,189,166,102,197,212, 4, 21,174,145,122,193, 0, 89, 26, 33, 42,111, 10,208, -218,204, 66, 83,195, 38,149, 74,145,149,149, 37, 39,162,193,230, 74, 53, 88, 19,193, 50, 26,172,152,152, 24,236,216,177, 3,221, -187,119,135,171,171, 43, 50, 51, 51,177,103,207, 30,220,185,115, 7, 18,137, 4, 68,100, 77, 20,139,111,217,178,229,178,115,231, -206,245, 28, 56,112, 96,195,207, 62,251, 76, 30, 28, 28,140,123,247,238, 33, 44, 44, 44, 63, 50, 50, 50, 86,165, 82,133,193,146, -130,164,133, 21,218,141, 69, 68, 45,202, 34, 44,113, 77, 73, 74, 41,211,240,182,217,198,197, 75, 56, 20, 43,211, 96,202,133, 11, - 23,106,214,168, 81, 35, 16, 5,153,129,192,139,217,130,166,252,145,156,156,252, 58,108, 89,132, 54,254, 1,148, 30,193, 98, 52, -121,224,240,177, 78, 63, 92, 33,196,199,197,226,234,225,141, 37,205, 85,185, 16, 81,103,211, 90, 25, 50,185,125, 48, 79, 5,105, -201,138,244,120,128, 9,172, 54, 88, 37, 53,193,248, 79, 7, 14, 27,235,182,243, 42, 33, 41,254, 33,126, 63,184,193,106,115,101, -170, 57, 84, 34,153, 35, 18,114,179,222,105,223, 84, 28,210,164, 30,236,158, 61, 70, 74, 66, 18,118,199,164,101,196,102,170, 71, -255, 78, 90,196, 61, 84,111,237, 62,198,205,205,213, 75,132, 30, 31,184,187, 93,250, 89,113,160,218, 27,156,150,105,217,146,164, -243,108,158,217,113, 86, 2,229,105, 18, 81, 29, 39, 39,167, 21,145,145,145, 85,100, 50,153,211,213,171, 87, 13,155, 55,111,142, -207,207,207, 95,201, 24,219, 85, 65, 77,223,215,235,214, 62,179,120,195, 22, 89,174, 50, 15, 74,141, 22, 82, 79,111,195,254,139, -183,250,176, 82,138, 97,150,212, 36,162, 78, 35, 71,142,124,173,101,203,150,156,169,185,210,104, 52, 80, 40, 20,200,201,201,129, - 66,161,128, 66,161, 64, 98, 98, 34, 58,116,232,192,189,246,218,107,193, 68,212,137, 49,118,170,164,166, 73,153,134,153, 0, 56, - 34,250, 35, 42, 42, 42,183, 91,183,110,144,203,229, 80, 42,149,240,243,243,131, 94,175,199,225,195,135, 17, 25, 25,169,228,121, -254, 12,128,168,178,198,169, 82,229,249, 17, 17,167,202,203,107, 60,108,216,176, 14, 83,166, 76, 41,150, 90, 94,181,106, 85,184, -185,185, 89,165, 9, 0, 25, 25, 25, 13,126,253,245,215, 79,162,162,162, 62,237,222,189,187,243,204,153, 51,165, 53,107,214,132, -193, 96,224, 42,170,153,153,153,233,124,237,218,181,149,237,218,181,251,176, 91,183,110,194,197,139, 23,195,217,217, 25, 6,131, - 1,114,185, 28, 10,133, 2, 97, 97, 97, 56,127,254,188,158, 49,182, 33, 59, 59,251,179,178, 52,139,213,193,154,242, 85,153,233, -145,165,213,193, 50,243,115, 55, 27,241, 41,205, 0,153,107,255, 87,252, 29,149, 48,108,112,113,113,153, 6, 96,154,185, 82, 13, -150,106, 2,127, 70,176, 4, 2, 1,158, 60,121,130,205,155, 55,191, 80, 7,203, 88,198,193,156,118, 41,247,206, 78,159, 62,109, - 32,162,214, 87,175, 94,157, 54,116,232,208,209, 74,165,210,215,222,222, 62, 73,167,211,125,167, 82,169,140,117,176,204,102,227, -150,246,253, 84, 42,149,113,230,178, 8, 75,182, 1, 92,202,212, 44, 81,166,161, 88, 41,134, 18,151, 21, 43,225, 80,178, 76,131, -169,102,155, 54,109, 30,115, 28,119,183,112,170,253, 46, 74,100, 11,154,104,214, 75, 78, 78,126,221,219,219,251, 12, 0,187,146, - 89,132,127,199,123,178, 77,243,255, 55,101, 24, 44,200, 78, 92,126, 2,137, 60, 3, 55, 78,110,183,218, 92,153, 67,157,159, 23, - 59,103,231,211, 38, 26,117, 62,148,217,169,247,216,227, 93, 86,133,239,205, 66,176, 63,241, 71, 28,100,246, 89,184,126,226,219, - 44,131, 33,255, 13, 22,251,191,168,242, 47, 44, 77, 14,211, 55, 30,142, 16,147,179, 27,110,124, 50, 2, 73, 89, 74, 28,121,148, -185,135,229,169, 39,132, 23,238,187,231,219,154,206,109,155,149,178, 49,228,125,231,126, 30,213, 68,248,106,234,119,144, 77,119, - 23,183,120,179,253,223,186, 71,161,113,225,251,154, 53,107,198,135,132,132, 56,244,235,215,239,126, 70, 70, 70,177,133,239, 21, -208, 76, 32,162,175,127,217,244,229, 84,247, 70,173,176,254,139,207, 13, 59, 47,222, 42,150, 85, 88, 30, 98,177,184,227,244,233, -211,197, 74,165,242, 5,115, 85,210, 96, 41, 20, 10,220,184,113, 3,195,135, 15,151, 70, 69, 69,117, 4, 80,178, 2,180,113, 92, -115,136,104, 19, 10,246, 34, 76, 9, 15, 15,111,125,240,224,193,214,147, 39, 79, 22,119,239,222, 29,151, 46, 93,194,241,227,199, -181, 90,173,246, 34,128,139,204,194,237,103, 88, 65,253,160,107, 68,116,107,249,242,229,173, 5, 2,193, 28,227,185,232,232,104, -108,223,190,189, 34,154,122, 0, 43,137,232,235,240,240,240, 57, 39, 78,156, 24, 57,108,216, 48, 39,157, 78,135,152,152, 24,124, -251,237,183, 21,213,252,164, 74,149, 42,179, 15, 31, 62,252,221,177, 99,199,222, 29, 50,100, 8, 55,105,210, 36,172, 91,183, 14, -255,251,223,255,120,131,193,112, 80, 36, 18, 13, 75, 75, 75, 43, 55, 1,165, 88, 29,172, 50,234, 92,149,119,190,196, 24,191,161, -130,237,111, 44,222,139,208,146, 72,206,203, 76, 1, 90, 56,110,139,183,234, 41, 13,227,125,116,236,216,177, 40,170,200, 24, 43, -182,110,206,104,172,172,157, 34, 4,224, 82,248,123,186, 1,192, 58, 20,175,226, 46,192,159,149,222, 45, 85,108,152,172,118,137, -134, 26, 49,101,111,246,236, 2, 48,152, 15, 93,253, 73,214,156, 57,115, 86,205,157, 59,119, 85,201, 82, 12,166,141, 74,150,112, -152, 63,127, 62, 74, 43,211, 0, 32,115,206,156, 57,203, 0, 32, 48, 48,144, 10,167, 5,155,163, 48, 91,208, 68,115, 71,225,113, -187,121,243,230, 13, 5, 80,150,166, 13, 27,175,156, 50,214, 96,177,153,209,231,118,234, 0,184,131,184, 25,236,225,110,179,133, -229,172,129,241,108,250,111, 63,206, 91, 7,134, 76,102,208, 91, 84, 79,166, 92,120,193,172,232,115, 63,242, 0,185,128,184,233, -236,225,255, 94,122,156,228,236,134,156,176,241,248,223,237, 36,150,162,212,189, 23,174,209, 20,139,212, 20,174,185,234,239, 19, - 66,187, 93,125, 68,251, 63,121,195,157,126,201, 24,250,178,221, 86, 10,105,105,105,139, 29, 28, 28, 4, 43, 87,174, 28,169, 82, -169,138, 45,124,175, 40,140,177,207,137, 72,208,162,142,255,196, 43, 15,226,122, 91, 58, 45,104,132,136, 36, 62, 62, 62,183,242, -243,243, 65, 68, 80,171,213, 69,198, 42, 39, 39, 7,217,217,217, 69,175,181, 90, 45,210,210,210,224,231,231, 7, 34, 42,179, 38, - 86,137, 15,194,179, 68, 20, 25, 22, 22,214, 62, 44, 44,172, 49, 10,162, 64,103,173,154, 26, 43,174,173, 3,112, 86, 46,183, 75, - 34, 34, 95,177, 68,170,188,112,225,194,137,151,212,204, 67, 65,100,228,171,175,190,250,106,145,189,189,253,235,209,209,209, 39, - 95, 70,179,208, 60,245,113,119,119,247,217,177, 99, 71,196,182,109,219, 90, 9,133,194, 75, 68,212, 55, 43, 43,203,234,205,158, -169,120, 68,192,234,243, 37, 24, 7,203,246, 32, 52,125, 46,151,202, 46, 46,250, 42, 12,155,193, 96,200,157, 61,123,118,145,150, -241,222, 74, 70,171,140,175,181,218, 23, 83,157,205, 81,222, 58,182, 18,148, 99, 46, 40, 23, 0, 10,246, 22, 44,216,254,198,210, -205,158, 1,148,186,183,229,220,185,115,217,252,249,243,137,227,184,131, 0,238,113, 28,247,160,228, 34,116,211,115,243,231,207, -199,220,185,115,217,188,121,243, 74, 29,169, 81,243,206,157, 59, 76, 32, 16,156, 4,240, 88, 32, 16, 60, 49,213, 53, 61,110,188, -166, 44, 77, 27, 54, 94, 53,165, 26, 44,246, 40, 34, 30,192,136,202,236,140, 61,142, 56, 1, 43,246, 50,179, 72,243,201,174, 56, - 0, 67, 42, 77, 15, 88, 49,166, 69,199,169, 40,248, 47,240,171,146,230,202,148,164,115,236,160,119, 91, 90,210,226,205,246,147, - 81,112,193,226,202, 26,199,203, 96,110,225,251,203, 98,110,225,187,165, 24, 12,134, 99,114,185,156,148, 74, 37, 84, 42, 85,177, -104,149, 66,161, 64, 94, 94, 30,114,115,115,139, 22,167,231,230,230, 26,167,187,172,250,239,179,208,164, 28, 33,162, 99,140,177, - 10,239, 0, 96,138, 74,149, 87, 29, 0,136, 72, 80, 89,154,133,137, 6,163, 43, 83,243,249,243,231, 73, 0,218, 4, 4, 4, 72, - 98, 99, 99,173, 72, 25, 44, 78,121, 27, 57, 91,186,209,179,145,202,136, 6,189,106, 42,219,176, 1,128, 86,171,109, 80,217,154, -140, 49,107,204,173, 37,130,223,118,109,215, 80, 0,211,218, 63,229,109,246, 12, 0,160, 92, 48,124, 91,202, 24, 25, 21, 56, 72, - 6, 96,199,195,135, 15,253,121,158,143, 51, 19, 73, 42,118,110,222,188,121, 96,230,210, 98, 95,212, 4,128, 3,241,241,241, 62, - 6,131, 33,185,132,110,177,227,101,105,218,176,241, 87, 96,205, 86, 57,255, 47,248, 94,163,153,139,114, 54, 27, 54, 37,249,119, - 54, 11,192,172, 87, 55,162,138, 81,153,230,202, 68,211,106,115, 5, 0, 58,157,238, 55, 0,168, 82,165, 10,170, 84,169, 82, 94, -115,211,235, 42,210, 29, 42,203,180,252, 27, 53, 95,198, 92,217,248,255, 5,203,140,142, 7,240, 69,185,237,202,175,222, 94,188, -253,159,166, 38, 19, 64,102, 41, 30,167,172,115,101,105, 2,128, 2,128,194,204,181,165, 29,183, 97,227,111,193,170,201,127, 27, - 54,108,216,176, 97,195,134, 13, 27,229, 67, 0, 58,155, 59, 97, 77,118, 0, 17,153,213, 40,139,242,244,109,154, 54, 77,155,166, - 77,211,166,105,211,180,105,254,247, 52,203,211, 46,153,141,204, 42,105, 27,173,191, 28, 99,102,203,171,120, 0,232,108,211,180, -105,218, 52,109,154, 54, 77,155,166, 77,211,166, 89,193,126,198,254, 21,253,188,138,135,109,138,208,134, 13, 27, 54,108,216,176, - 97,163,146,177, 45,114,255,151, 66, 68,117, 0,204, 4, 96,186, 87,216, 21,198,216,146, 18,237,126, 4, 96,103,114, 72, 9, 32, -140, 49,246,192,154,254, 4, 2,193,146,246,237,219, 79, 56,127,254,252,151, 58,157, 46,172, 2,227,245,247,246,246, 94, 70, 68, -205, 0,136,136,232, 97,106,106,234, 18,157, 78, 87,225, 66,117, 68, 84,203,203,203,107, 41,128, 38, 28,199,137,136, 40, 54, 53, - 53,117,161, 78,167, 43,185, 45,135, 53,154,142,158,158,158,109, 25, 99, 94, 0, 4, 34,145,232,121, 98, 98,226,101, 86,193,108, -184,190,243,239,136, 21, 74,189, 8, 0,156,236,133,186,136,185,129, 90, 75,143, 85,244, 30,108,216,176, 97,195,198,223, 79,153, - 6,107, 64, 61,242, 54, 8, 33,140,136,102,241, 64,193,135, 15,128,198, 0,234, 0,120, 0, 32,138, 49,150,243, 50, 3,248,183, -104,254, 3,153,195, 24, 27,100,122,192, 92, 29,161, 55,222,120,163,215,177, 99,199,236,140,219,168,240, 60, 15,185, 92,174, 7, - 48,220,210,142,136,168,234,192,129, 3,167,111,221,186, 21,253,250,245,155, 77, 68,171, 24, 99,185,150, 94,239,230,230, 22, 90, -171, 86,173,117, 91,182,108,169,210,170, 85,107,146, 72, 36,120,248, 48,214,119,220,184,113,193,158,158,158, 7, 83, 83, 83, 71, - 91,170,101,196,221,221,125,112,237,218,181,191,218,188,121,179, 71,187,118,237, 64, 68,136,140,140,244,253,228,147, 79, 26,123, -121,121,237, 74, 73, 73,249,208, 90, 77, 15, 15,143,186,181,107,215,238,180,126,253,122,121,219,182,109, 33,147,201, 16, 21, 21, -229,240,193, 7, 31,120,121,121,121,197,164,164,164,156,177, 70,175,239,252, 59,226,155,145, 63,191,171,215,170,151, 3,128, 80, - 44,253,188,245, 42,197,207, 25,145,103,123,150,119,172,239,124, 28,176,153, 44, 27, 54,108,216,248,247, 82,170,193, 10,109, 72, - 97, 16, 98, 38, 0,122,187, 14,237, 58,254, 88,112,174, 75,151, 46, 1,163, 70,141,162,166, 77,155, 34, 50, 50,178,238,174, 93, -187,222, 17, 10,133,177, 6,131, 33, 18,192,109,102, 97, 21,106, 34, 18, 1, 8, 18, 8, 4,205,254,201,154,255,112,236, 1,128, -136, 82, 1, 92, 41, 60,118,165,100,163,223,126,251,237, 39,161, 80,104,140, 96,181, 80, 42,149,158, 40, 30,245,178,132, 26, 58, -157, 14,119,239,222, 5,199,113, 34, 0, 53,241,226,214, 23,102, 33, 34, 95, 95, 95,223,141, 23,175, 68,186,147, 80,142,204,124, - 0,249, 90, 72, 28, 60,177,117,123,184,219,148,143, 63,236,227,228,228,116, 78,161, 80,124,111,233, 96,136,168,166,159,159,223, -170, 27, 55,110,184,219,217,217,129,231,121,228,228,228,192,203,203, 11, 91,182,108,113,153, 50,101,202, 32,185, 92,126, 90,165, - 82,253,207, 10, 77,199,218,181,107,119,186,117,235,150,220,184,209,179, 70,163,129,175,175, 47,126,252,241, 71,233,164, 73,147, - 26, 72,165,210, 4,181, 90,253,200, 82, 77,133, 82, 47,210,107,213,203,119,108,152, 87, 29, 0,134,125, 56,111,185, 36,199,233, -176, 37,199, 20, 74,253, 47, 0,108, 6,203,198, 95, 10, 17, 53,243,240,240,216,155,158,158,126, 6,192,104, 86, 9,165, 68,136, -200, 71, 40, 20,214,100,140,185, 20,190,206,210,235,245,143, 25, 99, 86, 23,194, 53,226, 17,208,169, 39,164,118, 35,192,248,198, - 28, 0,226,184, 40,131, 54,111,123,250,189, 83, 63,191,148,166, 68, 62, 18, 96,141, 57,128, 39,142,187,193,235,243,182,164,221, - 57,101, 85, 97,101, 27, 54,140,152, 53, 88,125, 27,146, 43,128,105,187,214,205,228,132, 2, 1, 13,252,120,201,160,109, 27, 86, -114, 93,122,246, 45,154, 38, 9, 9, 9, 65, 72, 72, 8, 45, 95,190,188,206,201,147, 39,235,252,248,227,143,122, 34,186,193, 24, -219, 93, 90,103,221, 2, 72,197, 3,178,119,234, 11,149, 3,191,248,126,115,203,150, 45, 33,149, 74,241, 50,154, 0,208,181,142, -224, 81,247,150, 1, 55, 6, 78,156, 19,215,170, 85, 27, 86, 25,154,255, 34,174, 48,198,122, 3, 0, 17,185,250,249,249,181,213, -235,245, 50, 0, 16, 10,133,249, 0, 38,178,194, 45,126,136,232, 32,207,243,189, 44, 21, 38, 34, 14,192,220, 94,189,122,205,254, -232,163,143,224,231,231,135, 73,147, 38, 65,167,211, 69, 18,209, 28, 0, 75, 89,225, 42,196,210,168, 90,181,234,156,141, 27, 55, -186, 9, 37,246,104, 58,237, 49,146,179,244, 0, 0, 7, 41,240,211,120,134, 73,147, 38, 57, 93,189,122,117, 33, 0,139, 13, 86, -213,170, 85,195,182,108,217,226,102,103,103, 7,198, 24,114,115,115,145,147,147,131,220,220, 92,228,230,230,226,195, 15, 63,116, -138,137,137, 89, 6,192, 98,131,229,233,233,217,118,253,250,245,114,153, 76,134,220,220, 92,177, 86,171,165,156,156, 28,228,229, -229, 49,141, 70,163,157, 56,113,162,244,246,237,219, 29, 1, 88,108,176,108,188, 90,136, 72, 0,224, 61,145, 72,244,126, 64, 64, - 64,243, 7, 15, 30, 92,215,235,245,251, 0,236,123,217,127,162,136,232, 77, 31, 31,159, 69, 73, 73, 73,235, 25, 99,225,149, 51, -226,127, 62,158,158,158,251, 46, 92,184, 80,125,227,198,141,195,191,252,242,203,195,176,226,111,168, 36,133,255,244,182,110,209, -162,133,199,251,239,191, 47,242,242,242, 66, 94, 94, 30, 98, 99, 99,237, 78,156, 56, 81, 69, 38,147, 61, 87,171,213, 22,111, 15, - 5, 0, 30,245,218, 58, 64,232,180,171,117,167,206,237,250,245,121,207,209,211,221, 25, 42,141, 1, 15,226,146,253,126, 61,252, - 83, 7,159,224,119, 46,104,181,217, 3,210,239,253,110,113,132,221,168,217,169, 91,143,118,157,223,124,211,209,217,197, 25,217, - 74, 45, 30, 62, 73,244, 63,117,252,231, 16,239,224,119,206,242,164, 27,146,122,243, 88,133,118, 91,176,241,255, 23,139, 23,185, -219,217,217,153, 61,238,236,236,140, 78,157, 58, 97,201,146, 37, 66, 0,205, 76,207,177,146,155,159, 2,210, 67,155,102,192,217, - 94,202,249,249,249, 57, 58, 57, 57,189,180,102,193, 65,190,102, 27, 63,246,246, 31,223,207, 28,126,226,199,175,130,148, 57, 89, -162,146, 77, 28, 28, 28, 80,175, 94, 61,204,158, 61,219, 50,205,151,228,175,214,244,246,246,174, 31, 18, 18,210,236,183, 51,103, - 92,146,146,146,164, 73, 73, 73,210, 99,191,253,230,210,186,117,235,102,222,222,222,245, 77, 52,172, 25,231,130, 13, 27, 54,204, - 57,120,240, 32, 23, 18, 18, 2, 87, 87, 87,116,234,212, 9,135, 15, 31, 22,126,249,229,151,139, 1,204, 46,111,156, 28,199,181, - 11, 9, 9, 33, 48,134,148,108, 61, 46, 47,169,143,168,149,129,200,201,103,200,200, 86, 64,165,202,135,157,157,157,172,112, 90, -215,210,123,111,211,186,117,107, 2, 80,100,170,114,114, 10, 30,185,185, 74,104, 52, 90, 72,165, 82, 71, 34,146, 89,170,201, 24, -243,106,219,182, 45, 0, 64,171,213, 22,205,181,102,101,101, 81,118,118, 54, 52, 26, 13, 68, 34,145,152,136,202,156, 86, 55,213, -116,178, 23,234,132, 98,233,231,195, 62,156, 23, 63,236,195,121,241, 66,177,244,115,141,163,194, 96,201, 49, 39,123,161,206,156, -102,101, 81,158, 38, 17, 85, 17, 8, 4,223, 6, 4, 4,196, 8, 4,130, 29, 68,228,245, 50,154, 68,244, 58, 17, 45,182,179,179, - 59,209,160, 65,131,120,123,123,251,223,136,104, 41, 17,181,174,136, 38, 17, 73,236,236,236,126, 91,188,120,113,196,245,235,215, -251,157, 60,121,178,230,205,155, 55,251, 44, 95,190,124,151,131,131,195, 57, 34, 50,255,134, 85,206, 56,141,212,172, 89,115,219, -229,203,151, 95,111,211,166,205, 86, 34,146,150,215,222, 18, 77, 34, 18, 16, 81, 19,178,112, 79,160,191,250,231, 78, 68, 62, 77, -155, 54,173, 46,147,201,208,185,115,103, 0,232,248,146,154,173, 63,248,224, 3,175, 41, 83,166,136,162,162,162,176,117,235, 86, - 28, 60,120, 16,207,158, 61, 67,143, 30, 61,196,111,188,241,134,151, 84, 42, 53,251,243, 47, 85, 83,232,180,235,227, 79, 38,119, -155, 58,105,140,227,141,167, 90,108, 63,241, 20, 7, 46, 38,227, 89,158, 4, 61,251, 12,115,126,171,119,255,183, 36, 82,103,179, - 27,219,151,165, 57,125,218,180,110, 99, 71, 14,114,140, 78,230,241,211,165, 20, 92,186,155, 13,189,200, 5,221,251,140,118,109, -220,182,219, 59, 66,136,190,179,242,222, 43,204,255,103,205,255, 26, 69, 31, 22, 68,196, 24, 43,216,196, 53, 34,154,101,134, 54, -164,101,253, 63, 90, 60,155, 56, 98, 53,130,218, 68, 87,171,221, 80,233,238,238,142,188,188, 60,168,213,106,136,197, 98,228,231, -231,227,233,211,167,184,116,233, 18, 92, 93, 93,173,234, 88,161, 80,192,193,193, 1, 14, 14, 14,149,162, 57, 99,120,103,233,195, -248, 52,233,209, 75,167, 59,172,153,240,191, 86,181,155,116,188,249,102,255, 73,183,156,170,248,228,223,188,121, 19, 23, 46, 92, - 64,102,102, 38, 90,182,108,105,213, 56,255,193, 92, 41,124,159,190, 66, 68,174, 33, 33, 33,190, 71, 79,156,117,205,205,231,157, -158,164,234, 68, 60,207,195,206,206, 91,191,123,239, 79,217,253,250,244, 36, 34,122, 6,224, 74,161,169,125, 97, 42,209,148, 66, - 99, 82, 63, 52, 52,116,250,132, 9, 19, 16, 27, 27,139, 49, 99,198,168,174, 92,185,242,188, 77,155, 54,238, 91,182,108,145, 79, -153, 50, 5,103,206,156,153, 75, 68,251, 1, 60,102,140,153,221, 75,141, 49, 38, 22,139,197,208, 23,218, 5,173,129,135,209,215, - 43, 20, 10, 48, 85, 38,196, 98,177, 0, 64, 21, 0, 22,173,147,227,121, 94, 44, 18,137,138,204,213,211, 84, 5,158, 62,203,131, - 34, 87, 3,149, 74, 15,141,138, 65, 96,231, 46, 4,158,120, 2,120, 98,137, 38, 0,129, 76, 38,131, 94,175, 71, 78, 78,193, 48, -140,145, 49,141, 70,131,236,236,108, 8, 4, 2, 7, 0, 78, 0, 50, 44, 17, 44, 88,188,142, 3,133,211,125,248,227,135, 94, 30, - 15,126,153,161, 13,157, 23, 83,116,204,201, 94,168,219, 59,165,129,192,221,183,241,249, 38,253,190, 11, 52, 30,251, 59,215, 95, - 17,145,180, 74,149, 42,167, 34, 34, 34, 26,212,169, 83, 7,143, 31, 63, 14,236,219,183,111, 75, 34,106,194,172,220, 51,145,136, -236, 56,142, 91, 54, 98,196,136, 9, 3, 7, 14,164,186,117,235, 66, 40, 20, 66,175,215,251,198,198,198,118,218,179,103,207, 52, -161, 80,184,197, 96, 48,124,106,233,186, 62, 34,226, 36, 18,201,238,205,155, 55,183,111,217,178, 37,118,236,216,129, 43, 87,174, -240,175,191,254, 58, 55,116,232, 80,248,251,251,183, 28, 58,116,232, 1, 34,234, 94,145, 72, 22, 17,249, 15, 30, 60,184,186, 64, - 32, 64,155, 54,109,196, 23, 46, 92,104, 10,224,130,181, 58, 37, 52, 29,124,125,125,207,116,236,216,177,201,137, 19, 39,174, 17, - 81, 71,107,214, 49, 18, 81,111, 31, 31,159,229,206,206,206, 22,191, 41, 42, 20,138,188,196,196,196,207,152,229,251,145,182,106, -214,200, 78, 9,201, 0, 0, 32, 0, 73, 68, 65, 84,172, 25,226,226,226, 80,191,126,125,136,197,226,214, 68, 52, 14, 64, 55, 0, -179,152, 21,187, 67, 16,145, 79,235,214,173, 61, 58,118,236, 72, 75,151, 46, 5, 0,136, 68, 34, 24, 12, 6,112, 28, 7,145, 72, -132,192,192, 64,122,244,232,145, 27, 17,249, 88, 50, 93,232, 17,208,169,103,155, 55,187,181,107,223,242, 53,238,203,189, 15, 96, -224, 13, 16,144, 30, 66,226,193,235,164,144,138, 5,168, 27,212, 92,112,247,246,141,150, 30,245,186,244, 76,191,119,188,220,233, - 66,143,128, 78, 61,187,245,236, 21,210,160,126, 93,110,205,129,135,200, 74,140, 49, 36,222, 57,155,206, 9, 56, 52,104,246,134, - 71,221,134, 77, 4, 77, 90,118, 20, 37, 61,190,221,201,173, 78,135,206, 25, 15,206,216, 76,197, 43,198,212,139,252,219, 41,245, -191,241,189,209,108,142,147,132,106,238,217,179,147, 75,203,209, 42, 99, 99, 99,225,225,225, 1,111,111,111, 56, 59, 59, 35, 58, - 58, 26,191,253,246, 27,238,221,187, 7,158,231,209,184,113, 99,171, 58, 78, 79, 79,199,141, 27, 55,224,234,234, 90,105,154,181, -171, 87,193, 71,213,171,136, 83,159, 43,196, 39,174,220,107,249,205,140, 62, 13,185,192, 62,219,242,243,255,252,236,215,104,254, - 27, 59,137,152,102, 11,250,249,249,181,221,190,125,187, 88,173,135, 99,221,113, 23, 87, 40,243, 13,246, 0, 96, 47, 19, 40, 35, -151,215,251,116,193,130, 5,202,145, 35, 71, 6, 62,125,250,116, 73,233,138, 5, 72, 36,146, 69,111,191,253,246, 84,198,152,232, -227,143, 63, 6, 0, 12, 27, 54, 76,113,233,210,165,186,140,177,103, 68,228, 51,106,212,168,251,167, 78,157,178,155, 60,121,178, - 64,175,215, 71, 11,133, 66, 70, 68, 97,140,177,121, 37,245, 56,142,187,122,237,218,181, 26, 62,254,245,224,239,206, 33,100,118, -193,118,106,238,118, 60, 18,158, 60,196,157,155, 87,224,229,229,229,236,237,237, 29, 83,191,126,125,109, 98, 98,226,180,220,220, -220,141,101,141, 81, 44, 22, 71, 69, 70, 70,122,251,251,251, 35, 55, 55, 23, 9,105,121,152,180,207, 14, 10, 85, 65,208, 66, 4, - 21,154, 84,175,231, 40,231, 52, 87, 60, 61, 61,181, 26,141,230,139,172,172,172, 50,183,251, 16,137, 68,207,111,222,188,233,224, -231,231,135,252,252,124,150,145,145, 65, 74,165, 18, 57, 57, 57,244,203, 47,191,188,155,156,156,252,122,205,154, 53,201,215,215, - 55,172, 78,157, 58,170,196,196,196, 49,150,172,241,138,152, 27,168, 37, 34,131, 80, 40,252,114,236,216,177,253,246,239,223,127, -117,239,188, 6,189, 25, 99, 90, 0, 32, 34,231,160,160,160,163,175,189,214,208, 39,124,101,163,181,140,177, 21,229,105,254, 5, -140,152, 57,115,102, 3, 55, 55, 55,124,240,193, 7,152, 63,127, 62,230,204,153, 83,231,131, 15, 62, 24, 11, 96,149,165, 34, 68, - 36,247,242,242,250, 99,205,154, 53,129,109,219,182,197,225,195,135,177,115,231, 78, 60,122,244, 72, 95,179,102, 77, 97,203,150, - 45, 49,119,238, 92,188,245,214, 91, 99, 38, 78,156,216,129,136,154, 90,104, 58, 70,206,157, 59,183,119,187,118,237, 48,124,248, -112,245,233,211,167,251, 1, 56,118,252,248,241, 55,206,156, 57,179,247,135, 31,126,144, 47, 94,188,184,243,148, 41, 83, 62, 0, -176,174, 2,247,255,110,251,246, 5,123, 27,183,107,215, 14,203,151, 47,127, 11, 47, 97,176,136, 72,226,238,238,254,203,142, 29, - 59,154,212,171, 87, 15, 67,134, 12,105,218,175, 95,191, 95,136,168, 11, 99,204,162, 55,164,106,213,170, 45, 59,120,240, 96, 64, -105, 51, 9,230, 80,171,213,110,239,189,247,222, 82, 0, 86, 25,172, 31,127,252, 17,159,125,246, 25, 26, 55,110,252, 90,171, 86, -173, 54,141, 27, 55, 14,161,161,161,111, 18,145, 39, 99, 76,105,137,144, 80, 40,172,217,163, 71, 15,209,190,125,251, 0, 0,237, -219,183, 71,231,206,157,113,235,214, 45,156, 63,127, 30, 2,129, 0,246,246,246,104,219,182,173, 36, 41, 41,169, 38,128,114, 13, - 22, 39,181, 27,209,187, 71,119,199,159, 46, 37,195,192,235,209, 60,192, 9, 45, 3,171,226,110,130, 2,145, 49, 9, 48,104,196, -112,114,115, 71,235, 14, 93,221, 82, 18, 31,141, 0, 80,254,122, 44,169,221,136,247,123,191,227,240,211,197, 36,100, 37,221, 97, - 15,174,236,255, 77,151,175, 28, 3, 0, 87, 79,238,218,228,229, 46,239, 82,183, 89,115, 65,199, 46,189, 92,247,237, 76, 25, 1, -192,102,176,108, 88, 76,153,211, 29, 57, 90,164,190,249, 78, 31, 92,187,118, 13, 0,240,252,249,115, 60,127,254, 28, 1, 1, 1, - 88,183,174,248,251, 86, 69,140, 11,207,243,149,174, 9, 0,158,238, 78, 24,210,189,133,240,252,141,157, 50,101, 90,154,204,193, -193,161,200, 97,253, 87, 12,150, 41,122,189, 94, 86,179,102, 77, 40, 84,160,236, 60,157, 67,250,174,130,200,190,199,128,211, 14, - 26,141,134,115,112,112,128, 90,173, 46,115,186, 12, 40, 88, 51,209,187,119,239,169,187,119,239, 22,221,185,115, 7,181,107,215, -134, 86,171,197,165, 75,151, 18, 88,193, 6,197, 96,140, 37, 9, 4,130, 36,158,231,235, 52,110,220, 24, 75,150, 44, 65, 96, 96, - 32,117,239,222,125, 90,161,201,226, 77, 53,147,147,147,151,141, 27, 55,238,141, 61,123,247,187,109,238,175,130, 34, 91,129,220, -220, 92, 68, 93,191,138,140,212,124,124,243,205, 55,144,201,228, 4, 64,252,236, 89,170,120,242,228,201,107,125,125,125,187, 37, - 36, 36,244, 40,109,156, 73, 73, 73,139, 62,252,240,195,214,187,118,237,114,201,201,201,129, 74,149,143, 12,165, 29, 98, 86, 23, -236,175,219,224,147, 24,108, 88,191,145,107, 84,195,222, 35, 47, 47, 15, 19, 38, 76,248,202,199,199,167,109, 82, 82,210,168,210, - 52, 19, 19, 19, 47,127,244,209, 71,158, 63,252,240,131, 76,163,209,104, 13, 6, 3, 84, 42, 21,183,107,215,174,105, 53,106,212, -112,221,178,101, 11,201,100,242,194,182, 9,226,241,227,199,239,246,242,242,250, 33, 37, 37,101,120, 57,223, 83,129, 64, 32, 88, - 29, 30, 30, 62,180,127,255,254,142,201,201,201, 13, 15, 30, 60, 40, 5,160, 42,108,226,221,165, 75,151, 26, 43, 87,174,172, 18, - 20, 20, 52,141,136, 68,140,177,191,117,211,112, 15, 15,143,137,189,123,247,198,210,165, 75,241,243,207, 63, 79,113,115,115,251, -106,254,252,249,240,241,241,249,136,136, 86,151,183,238,206,132, 21,171, 86,173, 10, 12, 12, 12,196,176, 97,195, 52, 39, 78,156, -152, 9,224, 0,128,184,115,231,206,249,125,247,221,119, 61,119,239,222,189,116,205,154, 53,178,117,235,214, 5,244,233,211,103, - 53,128, 82,127, 70, 70, 60, 61, 61, 39, 15, 28, 56, 16, 43, 87,174,196,233,211,167,251, 48,198, 14, 23,158, 58, 66, 68, 61, 23, - 47, 94,124,114,246,236,217, 88,181,106,213,199,176,210, 96, 17,145, 67,131, 6, 13,190,232,214,173, 27,206,157, 59,135,144,144, - 16,180,110,221,122, 10, 17,173,101,140,165, 91,163, 85,168,199, 57, 56, 56,236,222,190,125,123, 72,141, 26, 53,176,112,225, 66, - 76,157, 58, 21,219,182,109, 11, 25, 50,100,200,110, 34,122,191,228,223,140, 57,156,157,157, 29,236,236,236, 48,109,218, 52,246, -232,209,163,204,242,218, 87,175, 94,221,245,171,175,190, 34, 87, 87, 87,139, 18, 90,136, 72, 46,147,201,218, 4, 7, 7, 99,238, -220,185, 56,126,252, 56,102,207,158,141,224,224, 96,196,197,197, 97,192,128, 1,118,179,102,205, 10, 5, 96,209,190,132,140, 49, -103,119,119,119, 60,123,246, 12, 34,145, 8,109,219,182,197,129, 3, 7,160, 86,171, 81,181,106, 85,100,101,101,161, 69,139, 22, - 0, 0,161, 80,104, 97,210, 13, 11,246,112,115,198,179,219,137, 16, 66,143,102,117, 61,112,234,214,115,104,117, 60,170,186,187, - 32,229, 89, 42, 90, 5,251, 66,163,241, 3, 99,124,176, 37,138, 18, 1,215, 76, 42,147, 35, 35, 39, 29,137, 49,167,159,107, 13, -234,113, 89,143,206,199, 3,128, 91,237,246,227,174,158, 63,126,181,239, 59,237,171,230, 42,171,131, 24,223,194,178,113,218,176, - 81, 64,185,107,176,204,189,151,230,229,189, 56, 75,240,178,198,229, 85,104,154,227,191,104,176,140, 24, 55, 71,214,232,120,104, -116, 5,239,217,106,181, 26, 42,149,170,172,203,138, 96,140,233,142, 30, 61,186, 99,210,164, 73,248,234,171,175,112,255,254,125, -136,197, 98, 4, 7, 7,123, 19,145, 3, 80, 16,113,105,214,172, 89, 85,142,227,112,247,238, 93,124,249,229,151, 24, 57,114, 36, -187,112,225,194, 54,115, 31, 20,140,177,235, 25, 25, 25,235,199,141, 25,153,149,153,250, 20, 58, 85, 38,158, 37, 62,132, 90,153, -133,133, 75,150, 33, 79, 39, 68, 74,182, 22, 41,217, 90,112, 82, 55,108,218,178, 93,208,160, 65,131,110, 66,161,176, 84,131,197, - 24,187,148,154,154,186,101,252,248,241, 89, 41, 41, 41, 69,247,167,209, 49,104,116,197,127, 95,237,236,236,176,122,245,106,231, -186,117,235,246, 22,137, 68,157,202,208, 76,142,143,143,191, 51,126,252,120, 77,106,106, 42,178,179,179,241,211, 79, 63,245,172, - 81,163,134,235,210, 21, 95,145, 82, 43, 68, 74,150, 22, 41, 89, 90, 72, 28,170, 98,247,222,253,130,122,245,234, 13, 18,137, 68, -165,174, 33, 50,154,171, 31,126,248, 97,104,255,254,253, 29, 87,172, 88,145,113,240,224,193, 13,140, 49,211, 31,200,221,213,171, - 87,239,217,189,123,119,206,212,169, 83,221,150, 47, 95, 62,133,136,102,150,250, 67,122,197, 16, 81,167,254,253,251,215,231,121, - 30, 17, 17, 17, 55, 25, 99,171,246,239,223,255,135, 90,173,198,128, 1, 3,106,162, 96,186,200, 18,157,215, 7, 13, 26, 52, 33, - 36, 36, 4,159,124,242,137,246,196,137, 19,205, 24, 99, 95, 49,198,158,176, 2,226, 24, 99,107,207,156, 57,211,120,226,196,137, -234, 22, 45, 90, 96,248,240,225, 35,137, 40,164, 28,221, 54, 3, 7, 14, 12,228,121, 30,187,118,237,186, 97, 98,174, 0, 0,140, -177,223,246,238,221,123, 73,163,209, 96,240,224,193,181,136,232, 13, 43,238, 93, 44,149, 74, 35, 22, 44, 88,224,146,152,152,136, -161, 67,135,170,239,222,189,139,121,243,230,201,157,157,157, 15, 27,255, 6,172, 65, 42,149,126,243,245,215, 95,247,110,212,168, - 17,198,143, 31,175,217,184,113,227,164, 9, 19, 38,104,154, 53,107,134, 13, 27, 54,244,150, 72, 36, 86,109, 1,146,148,148,148, - 21, 29, 29,237, 94,222, 35, 33, 33, 33,213,194,123,182,115,116,116,188, 24, 20, 20,164, 8, 14, 14,110,174,215,235, 17, 29, 29, -253,112,199,142, 29,124,112,112, 48,214,175, 95,143,229,203,151,163, 71,143, 30, 16, 8, 4,161,214,140, 85,169, 84, 66, 38,147, - 65, 44, 22, 35, 50, 50, 18,106,181, 26,118,118,118,144,201,100, 16, 8, 4,112,113,113,129,163,163, 35, 0, 88,100,216,137,192, - 20,121, 58,136, 68, 28,132, 28,143, 59,113,217,208,234,120,200,196, 2,136,132, 4, 48, 30, 46,246, 34,200, 36, 2,112, 68,229, -154,214, 66, 77,100, 43,181,144,136, 57,136,196, 18,226,244, 6,185,241, 28, 39, 52,200,229,114, 9,121, 56, 73, 33, 19,219,106, -114,219,176,158,114, 11,141,242,252,139,191,167,230, 76,138, 90,173,126,169,129,188, 10, 77,115,230,240,101, 53,255,137, 8,133, -194,252,123,247,238, 73,156,220,125,120,119, 71, 81,102,141,145,231,157, 1,192,205, 65,152,173, 53,232,248,164,164, 36, 72,165, - 82,179,107,164, 74,146,159,159, 63,134,136, 22, 2,104, 40, 20, 10, 15,109,223,190,157,194,195,195, 93, 7, 14, 28, 24, 75, 68, -137, 65, 65, 65,254,219,183,111,119, 2,128,181,107,215,178,221,187,119,191,133,130,210, 23, 41,165,105,166,164,164,204, 19,137, - 68, 23, 62,252,240,195,117, 18,137,196,213,222,222,222,253,220,185,115,148,175,101,120,125,102, 92, 81,102,161,147,156,195,217, - 25, 78, 24, 59,118,172, 32, 38, 38,102, 9,128, 67,101,104, 78,147, 74,165,231,238,223,191,255,149,179,111,147, 42,246,254, 51, -157, 91,206,184, 11, 0,240,247, 16,129, 43,124, 63,204,202,202, 66, 90, 90, 26, 38, 76,152,224, 26, 27, 27, 59, 13,192,169,210, - 52, 19, 18, 18,206, 72,165,210,132,219,183,111,119, 20,137, 68, 18,123,123,251,215, 47, 94,188, 72,249, 26, 30,175, 77,139, 67, - 70,110,193, 56,221, 28,132,184,186,192, 19, 31,125,244,145,240,193,131, 7,203, 0,180, 51,167,199,113,220,114, 83,115,245,249, -231,159, 71, 1,168, 69, 68,197,166, 64, 13, 6, 3, 13, 30, 60,248, 22,128,224,169, 83,167,186, 49,198,166, 16, 81, 6, 99,108, -115,105, 99,125, 85, 56, 57, 57, 45, 29, 55,110, 28,118,239,222,141,204,204,204,213, 0,160, 80, 40, 86,253,248,227,143,187,198, -140, 25,131,239,191,255,126, 41, 17,253,106, 65, 20,235,237, 1, 3, 6,224,200,145, 35, 56,121,242,228, 23,140,177,104,115,141, - 24, 99,247,137,104,218,193,131, 7,215, 12, 28, 56, 16,223,126,251,109, 55, 0,231,202,208,237,242,214, 91,111,225,240,225,195, -120,254,252,249, 6,115, 13,178,178,178, 54,254,244,211, 79,173,222,122,235, 45, 44, 89,178,164, 11,128,223,202,187,111, 34, 10, -116,118,118,222,190,102,205,154,215, 27, 53,106,132, 65,131, 6,229,107,181,218,110, 83,167, 78,253,121,231,206,157,142, 59,118, -236,104, 62,118,236,216,203, 68, 52,154, 49,118,169, 60, 61, 0, 16, 8, 4,139,215,173, 91, 55,170, 99,199,142,152, 50,101,138, -254,232,209,163,189, 24, 99,199,136, 40,246,243,207, 63,255,229,203, 47,191, 20,172, 92,185,114,148, 64, 32, 72, 51, 24, 12,127, -151,169, 94,176,118,237,218, 86, 93,187,118,197,195,135, 15,113,233,210, 37,104,181,218,239, 47, 94,188,120,182, 78,157, 58, 11, - 52, 26,205,207,246,246,246,195, 28, 29, 29,131,154, 52,105,242, 6, 17,217, 89,178, 14,143,136,178, 98, 99, 99,237,171, 86,173, - 10,145, 72,132, 27, 55,110,160,106,213,170, 0,128,103,207,158, 33, 56, 56, 24, 2,129, 0, 89, 89, 89, 0,144,109,201, 64,137, -184,155,177, 79,146,106,185, 57,218, 3, 6, 25,174,223, 77, 64, 21, 15, 87, 24,136, 67, 74, 74, 50,154,212,247, 5, 17, 33,235, -121, 10,136,232,150, 37,154, 6,198, 71, 62, 77,122, 86,205,221, 81,138, 70,173,186,186, 95,252, 53, 45,220,185,118,187,177, 66, - 1, 9,164, 50,167,205,163,134, 15,247,224,121,134,172,231,169, 16,114, 92,153,107, 87,109,216, 40, 73,145, 45, 47,109, 81, 89, -193, 98,233,226,243,254, 37, 77,138, 76, 38, 43,138,158, 88,138,105, 41,133,202,210, 44,143, 87,161,249,119, 65, 68, 51,136,232, - 32, 17,205,136,143,143,191, 51,106,212, 40,173, 94,171,206,185,176,176,214,244,107, 75,106,140,191, 56,207,123,252,129, 73,206, -211,243,178, 51,114,214,174, 93,171,139,143,143,191, 99,122, 77, 89,218,140,177,167,140,177,195,223,125,247,221,198,136,136, 8, - 4, 7, 7, 35, 58, 58,186,170, 82,169,108,122,235,214, 45,183,192,192, 64,132,135,135, 99,247,238,221, 95, 49,198,142,151,101, -174,140,232,116,186, 19,201,201,201,245,226,226,226, 2, 92, 92, 92,116, 46, 46, 46, 40,153, 89,168, 80,241,120,158,149, 13, 55, - 55,119, 56, 57, 57,213, 44, 79, 83,173, 86, 31, 78, 78, 78,174,203,187,214,111, 95, 55,125,117,118,228,226,234,136, 92, 92, 29, -135,167,249,192,219, 69,130,204,204, 76,164,165,165, 33, 45, 45, 13, 68, 4,157, 78,215,192, 2,205, 71, 73, 73, 73, 91,159, 62, -125,122,208,211,211, 19,142,142,142, 96, 0, 82,178,116,136, 90, 25,136,168,149,129, 72,201,210, 65,145,147,131, 26, 53,106,192, -209,209,209,236, 84, 4, 17,113,213,170, 85,235,222,191,127,127, 71, 0, 40, 52, 78,111, 50,198,198,155,121,124,160,215,235,219, - 26,219,126,246,217,103,110, 0,222, 42,111,172,149, 73, 97,134,219,135, 99,198,140,105, 46,147,201,176,126,253,250, 71, 0,126, - 40, 60, 29,177,113,227,198,187, 0, 48,105,210,164, 32, 0, 83, 10, 75, 36,148,138, 88, 44,110,214,160, 65, 3, 92,188,120, 17, - 0,246,151,211,253,222, 11, 23, 46,160, 78,157, 58,144,201,100,175,151,211,182,102,245,234,213,113,247,238, 93, 0,184, 94, 74, -155,235,119,239,222, 69,245,234,213, 65, 68,229,254, 30, 17, 81,239,174, 93,187,222, 60,117,234,212,235,109,218,180,193,168, 81, -163, 52,151, 47, 95,238,206, 24, 59,123,253,250,245, 78,131, 7, 15, 86,214,173, 91, 23,103,206,156, 9, 28, 60,120,240, 5,129, - 64,176,208, 2,205,145, 97, 97, 97, 51,222,125,247, 93,132,133,133,177, 61,123,246, 12, 98,140, 29, 3, 0,198,216,209, 93,187, -118, 13, 93,180,104, 17,123,255,253,247, 49,127,254,252, 25, 68, 52,190, 44, 61,165, 82,153,109, 48, 24,160, 84, 42, 45, 10,193, - 91,218,222,195,195,227,237,174, 93,187, 98,246,236,217,168, 86,173, 26,126,254,249,103, 6,224, 16, 99,236,156, 90,173,110,207, - 24,251, 82,169, 84, 30,184,120,241, 34,186,116,233, 34, 6,240,142, 37,253,235,245,250, 39,167, 78,157,210,186,187,187,195,215, -215, 23,126,126,126, 80, 42,149,200,202,202, 66,112,112, 48, 90,181,106, 5,165, 82,137, 67,135, 14,105,179,178,178, 44, 74, 68, -209,107,148, 59,142,255,178, 47,219,221, 81, 10,223,170,206,168, 81,205, 13,185, 89,233, 72, 75, 73, 66,179, 6,126,232,208,172, - 6,210,179, 53, 56,122,104, 95,102, 78, 78,222, 14, 75, 52,117,234,188,237, 39,126,253, 57,219,213, 81,140,122,245,131, 48,120, -212,164, 38, 77,154,182, 60,222,162, 69,219,163, 43,150, 46,126,237,205,214, 13, 40, 33, 61, 31, 71, 14,237,207,204, 86, 40, 44, -154, 30,181,241,114,252, 87, 22,184, 3,229, 79, 17,166, 79,153, 50, 5, 82,169, 20,222,222,222, 69,166,200,104, 82, 36, 18, 9, -188,189,189,161,215,235,177,107,215, 46, 0, 40,115,141, 2, 7,168,123,141, 95,194,171,117, 44, 79, 36, 18, 85,138, 38, 0,112, - 28,167,238,243,249,183,252,175, 23,204, 39,185, 84, 68,243, 95, 64,139,194,154, 86, 45, 24, 99,153, 79,158, 60, 73,232,215,167, - 87,118, 92,236,237, 20,101, 86, 82,178,226,121,124,114,252,163, 91, 41, 51,167, 77,201, 78, 72, 72,136, 47,172,133,213, 34, 41, - 41,169, 23, 0, 75,215, 18, 76,233,215,175,223,215, 99,198,140, 97, 81, 81, 81, 0,128,200,200, 72, 12, 31, 62,156, 13, 29, 58, -116, 53,128,233, 21, 24,183, 82,165, 82, 21,139,126,104, 13,124,209,212,158, 66,161, 64, 82, 82, 18, 52, 26,141,197, 78,248,254, -209,149,247, 50,158, 92,213, 5,249,219, 35,200,223, 30,129,213,237, 64,250,220, 34,115,149,150,150,134,212,212, 84, 0,176, 40, -138, 87,136, 66,173, 86, 23, 27,167,233, 20,164, 66,161, 64, 74, 74, 10, 12, 6,131,217, 15, 48,198, 24,159,152,152,120,116,247, -238,221, 57, 0,176, 98,197,138, 12, 34, 58, 73, 68, 95,155,121,108, 18, 10,133,191, 27,219,174, 92,185, 50, 3,192, 97,115,186, -175, 2, 34,122,183, 81,163, 70,153, 51,102,204, 88,255,241,199, 31, 99,211,166, 77, 72, 78, 78,158,206, 24,211, 27,239, 37, 61, - 61,253,243, 13, 27, 54, 96,196,136, 17,152, 51,103,206,202,166, 77,155, 42,136,104,112,105,154, 85,170, 84,241, 21, 10,133,184, -118,237,154,130, 49,246,176,172,254, 25, 99, 41,215,174, 93, 75, 37, 34,120,123,123,215, 46,171,173,155,155, 91,128,163,163, 35, - 18, 19, 19, 1,224,113, 41,205,158, 36, 37, 37, 49,137, 68, 2, 31, 31,159, 58,229,220, 62, 92, 93, 93, 63,223,186,117,171,240, -246,237,219,120,243,205, 55, 19,206,156, 57,211,133, 49,118,186,112,108,215, 34, 35, 35, 67, 58,117,234,116,239,248,241,227, 88, -182,108, 25, 53,110,220,184, 76, 51, 4, 0,254,254,254, 31,140, 28, 57, 18,235,214,173,195,230,205,155,199, 51,198, 34, 74,220, -243,206, 13, 27, 54, 76,218,188,121, 51, 70,141, 26,133,154, 53,107,150,250,189, 4,128,184,184,184,105, 29, 59,118,140,188,127, -255,190, 69, 59, 20, 88,210,158,136, 58,181,108,217, 50, 64,165, 82, 97,251,246,237, 15, 3, 2, 2,254,136,136,136,152,194, 24, -187, 81,162,233,129,125,251,246, 97,200,144, 33,104,220,184,241,118, 34, 26, 88, 94,255,140,177,164,184,184,184,244, 27, 55,110, -240, 2,129, 0,190,190,190,232,222,189, 59, 6, 12, 24,128,198,141, 27,227,217,179,103, 56,123,246, 44, 31, 27, 27,155,110, 73, - 6, 33, 0,164,223, 59,245,243,227,199,247,126,191,118,249,172, 78, 40,224,224,231,237,134,247, 58, 55,193,232,208,182,104, 22, - 88, 13,113,207, 84,248,237,183,227,186,199,143, 31, 94,180, 36,131,208,168,121, 39,250,198,133,219,215,206,235, 69, 66, 66, 96, -253,186,152, 61,243,115,215, 69,115,167,185,212,173,237,135, 27,143,178,113,252,216, 17, 93, 82, 66,252, 41, 91, 6,161, 13,107, - 41,111,138,112,197,166, 77,155, 90,108,221,186,181,203,148, 41, 83, 28,134, 13, 27, 6,153, 76,134,188,188, 60,248,250,250,194, - 96,248, 63,246,206, 59, 60,138,226,225,227,223,185,222, 47,245,238,210, 8,132,146, 78,239,189, 24,122, 19, 4, 4,193,242,162, - 20, 5, 81, 65, 4, 69, 84, 4, 65,154, 20, 17, 65, 81,148,166, 96, 9, 29, 84, 4, 4,169,161, 37, 49, 4,210,123,114,233,229, -146, 92,219,121,255, 72,194, 47,196,148, 75, 65, 16,231,243, 60,243,220,221,236,238,103,103,246, 46,119,223,108,153,181,226,248, -241,227,184,122,245,106, 33,199,113,191,160,202,229,255,132,144,160,202, 99,101, 28,143,162,178,178,193, 43, 13,221,130, 39, 78, -108, 18, 39, 0, 40,239,114,234,172, 22,198, 93,155,246,159, 27,191,231,196, 53,242,218,148,254,188,206,190,205, 0, 0, 58,157, - 14,106,181,186,222,206,198,242, 79, 56, 43, 31,190, 77, 77, 77,189, 77, 8,201,120,233,165,151,252, 42, 78,104,151, 72, 36, 37, -137,137,137, 17,229,225,234,111,203,212,213,206,242, 43,221, 94, 38,132, 28,204,203,203, 59,241,230,155,111, 98,197,138, 21, 56, -116,232, 80, 95, 74,233,121, 91,219, 89,197,105,245,242,242,202,189,124,249,178,174,141,127, 39,180,212, 10,209,239,221, 59,160, -148,194, 73, 78, 81,144,155,141,235,215,175,161,160,160,224, 82,125,218,233,230,230,150,155,145,145,225,172,213,106,145,157,157, -141,204,204,204,123,225, 42, 39, 39, 7,217,217,217,148, 16,242, 71, 61,156, 69,173, 91,183, 54, 68, 68, 68,136,117,205,218,160, -149, 86,132,238,111,223, 6, 40,133,167, 35, 15, 5,249,185,184,112,225, 2,242,242,242, 78,215,228,228, 56,110,254,212,169, 83, -249, 0,158,125,243,205, 55, 29, 1,116, 88,184,112,225, 47, 85,175, 20, 20, 10,133,159,236,218,181,171,109,197,161,196,183,222, -122,107, 61,165,244, 75, 91,218,217, 80, 42, 59,157,156,156,230, 31, 57,114, 68,101, 50,153,176,105,211, 38,172, 95,191,126, 7, -165,244,190, 43, 36, 41,165, 71,248,124,254, 22, 30,143,247,202,156, 57,115, 48,115,230, 76,121,151, 46, 93,222,192,255,246,114, -221,231, 76, 78, 78, 94,210,185,115,231,165, 25, 25, 25, 54,157,176,127,231,206,157, 25,157, 59,119, 94,146,145,145,177,186,166, -118, 2,128, 66,161, 80, 88,173, 86,196,198,198,230, 80, 74,171, 61,180, 68, 41, 45,241,246,246, 78,182, 90,173, 30,114,185,220, -177,182,190, 3, 64, 78, 78,206, 71, 93,186,116,121, 63, 61, 61,253, 36,128,229, 85,135, 28,161,148,222, 32,132, 4,206,155, 55, -111,238,170, 85,171,198,167,165,165,253,109,156,165,170,206,248,248,248,143, 6, 14, 28,248,110,100,100,228,206,154, 14,245, 82, - 74, 63, 37,132,152,118,237,218, 53, 59, 54, 54,246,111, 87,248, 86,118, 82, 74, 15,163,150, 67,230,213,184,171,157,191,178,147, -207,231, 47, 92,181,106, 21,239,243,207, 63, 7,165,116,173,197, 98,169,169,157, 55,249,124,254, 55,189,123,247,126,110,255,254, -253,210,192,192,192,153, 0,246,214,212,247, 10, 74, 75, 75, 47,254,249,231,159, 61,226,226,226,156, 7, 14, 28, 40, 2,202,254, - 49,201,205,205,197,225,195,135, 77, 81, 81, 81,153, 69, 69, 69,213, 30,110,173,201,105, 49,230, 79,249,243, 84,240,222,184, 59, -161, 61, 7, 12, 27,235, 96, 52,121, 64,146,197, 71,110, 86, 26,142, 31,254, 49, 39, 54, 54,250,130,193,144, 91,109, 0,172,201, -105, 42,205,155,124,225,247,131,251,146, 98, 35,122,244, 27, 56,194,161,196,216, 28, 18, 17, 15, 89,233,201, 56,126, 36, 56, 59, - 54, 54,230,143, 18,115,233,243,245,113, 54,134,255,178,243,177,131, 82, 90,103, 1, 32, 2, 16,164, 84, 42, 87, 44, 93,186,116, -237,165, 75,151,214,142, 26, 53,106,173, 68, 34, 89, 1, 32, 8,128,168,134,229,130,254, 73,103, 87, 55, 56, 14,108, 69,206, 14, -105, 77,184, 89,125, 29,172,207,119, 87, 24, 7, 13, 26,180,165, 49,206,134,150, 7,237, 4, 16,108, 54,155, 41,128, 52, 0,193, -229,101,113, 53,203, 44,174, 52, 61, 45, 33, 33,129, 2, 8,174, 79, 59, 1, 56, 63,253,244,211, 92, 65, 65, 1,157, 52,105, 18, - 5, 96,215,152,190, 75, 36,146,129,253,250,245, 51,167,235,179,233,237,152,100,122, 49, 36,156,158, 56,245, 39,221,247,227, 17, -186,121,203, 54,218,190,125,123, 35,128,230,245,113, 10, 4,130, 65, 3, 7, 14,204, 74, 79, 79,167, 17, 17, 17,244,236,217,179, -244,192,129, 3,116,219,182,109,116,235,214,173,180, 89,179,102,233, 0,116,245,113,202,100,178,177,195,135, 15, 55,231,230, 27, -104,108,114, 22,189, 21, 17, 75,207, 95,190, 69,143,159, 58, 79,119,239,221, 79, 3, 2, 2, 74,234,114, 2,224,243,249,252,205, -251,246,237,203,167,148,210,177, 99,199, 38, 1,144, 86,154,222,114,254,252,249, 25,148, 82,186,122,245,234, 44, 0,111, 63,132, -207,210, 48,119,119,247,219, 34,145,232, 8,128,103,235, 88,110,178, 64, 32, 56,228,226,226,114, 5,192,184,127,178,157,229,175, - 71,105,181,218,139, 0,198,212,177, 92,197,124, 79,254,211,219,243,223,226, 4, 48, 72, 32, 16,156, 69,217, 24, 87,117, 45, 39, - 2,240, 33,159,207, 63, 10,224,137,250,180, 19,128,155, 82,169,236,163, 84, 42, 71, 43,149,202,209,246,246,246,125, 0,184, 53, -166,239, 78,222, 65,163, 61, 59,141,249,185, 89,135,145,241,158, 29, 71,197,123,117, 30,251,179,147,119,208,232,198, 58,155,119, - 30, 27,236,217,113, 84,130,103,199,209,113, 45,187,142,253,217,217, 55,104,248,227,246,190, 63,202,206, 26,214, 51,227,159, 88, -207, 3,105,123, 61, 59,170, 0, 48, 14,192,202,242, 71, 69, 99,223,128, 7,225,236,225, 10,159,160,214, 36, 98,132,175, 32, 27, -192,132,166,112, 54,224, 67,241,160,191, 28,119, 26,141, 70, 90, 82, 82, 66, 13, 6, 3, 45, 44, 44,188, 47, 56, 85,154, 47, 56, - 37, 37,133, 38, 37, 37,209,132,132, 4, 26, 23, 23, 71, 1,236,174,111, 59,213,106,245,151, 19, 39, 78,180, 10,133,194,205, 77, -209,119, 71, 71,199,149,221,187,119, 55,109,220,184,145,254,252,243,207,244,139, 47,190,160,115,230,204,161,109,219,182, 45,181, -183,183,159,210, 16,167,139,139,203, 18, 95, 95,223,172, 29, 59,118,208,221,187,119,211, 13, 27, 54,208,119,222,121,199,234,225, -225,145,166, 82,169,134, 54,196,169,213,106,183,247,233,211,199,180,125,251,118,250,203, 47,191,208, 61,123,246,208,249,243,231, - 83, 63, 63,191, 82,133, 66,241,148, 45, 78, 0,124,129, 64,176,110,214,172, 89,105,110,110,110, 71,170, 76,147, 7, 4, 4, 92, -153, 58,117,106, 10,128,183, 30,151,207, 39,115, 50, 39,115, 50,103, 19,173,231, 95, 27,176,234,188,138,176, 50,180,108,144,185, -159, 8, 33,135,104,249,249, 25,141,229, 65, 56, 47,164,208, 72, 0,126,132, 16, 65, 83, 57, 31, 65, 62, 18,139,197, 2,148,223, -244,185,156,234,174,114,185,236,230,230, 86,249,117, 30,128,122,143,179,148,151,151,247, 34, 33,228, 85,122,255, 16, 3, 13, 38, - 43, 43,107, 49, 33,228,187,152,152,152,149,246,246,246,157,205,102,179, 57, 63, 63,255,108, 78, 78,206, 91,148,210,164,134, 56, - 83, 83, 83,151, 19, 66, 14, 46, 89,178,228, 77, 74,105, 55, 30,143, 87, 98, 54,155, 79,103,102,102,174,164,148,234, 27,226, 76, - 79, 79,159, 33, 18,137,190,138,138,138, 90, 41,147,201,218,115, 28,103, 52, 24, 12,167, 51, 51, 51, 95,167,148,218,116, 41, 60, - 45,187, 97,238,124, 66,200, 58, 0, 25, 85,166, 25, 8, 33,189,195,195,195,157, 40,165,169,213, 27, 24, 12, 6,131,241,111,163, - 94, 1,171,130, 7, 17, 90,254, 45,206, 71, 5, 74,233, 93, 0,181,158, 24, 91, 62, 95,157,163,183,215, 99,157, 77, 18,174, 42, -249,110, 1, 24,222,196,206, 48, 0,207, 54,165,211,100, 50, 93,130,141,247,101,171,141,154, 2, 20, 45, 59,215,141,133, 43, 6, -131,193,120,140, 96,163,167, 49, 24, 12, 6,131,193, 96, 52, 49, 4,101, 39,127,255, 13, 90,143,171, 3, 8, 33,213, 58,106,163, - 46, 63,115, 50, 39,115, 50, 39,115, 50, 39,115, 62,126,206, 74,238,154,238,109,122,187,138,175, 94,119, 60,120,100,120,192, 39, -167,253, 43, 78,172, 99, 78,230,100, 78,230,100, 78,230,100,206,135,235,124,220, 10, 59, 68,200, 96, 48, 24, 12, 6,131,209,196, -176,128,197, 96, 48, 24, 12, 6,131,209,196,176,128,197, 96, 48, 24, 12, 6,131,209,196,176,128,197, 96, 48, 24, 12, 6,131,209, -196,176,128,197, 96, 48, 24, 12, 6,131,209,196,144,242,171, 1,202, 94, 16, 66, 41,165,228, 33,182,135,193, 96, 48, 24, 12,198, -127,152,199, 37,139,176, 61, 88, 12, 6,131,193, 96, 48, 24, 77, 12, 11, 88, 12, 6,131,193, 96, 48, 24, 77, 12, 15, 40,219, 29, -247,176, 27,194, 96, 48, 24, 12, 6,227,191,203,227,150, 69, 42,246, 96, 13, 40,239, 88,163,111,104,203, 96, 48, 24, 12, 6,131, -209, 0, 30,171, 44,114,223, 73,238, 12, 6,131,193, 96, 48, 24,140,198,195,206,193, 98, 48, 24, 12, 6,131,193,104, 98, 88,192, - 98, 48, 24, 12, 6,131,193,104, 98, 30,104,192, 34,132, 4, 49, 39,115, 50, 39,115, 50, 39,115, 50, 39,115,254,215, 96,123,176, - 24, 12, 6,131,193, 96, 48,154, 24, 22,176, 24, 12, 6,131,193, 96, 48,154, 24, 22,176, 24, 12, 6,131,193, 96, 48,154, 24, 22, -176, 24, 12, 6,131,193, 96, 48,154, 24, 22,176, 24, 12, 6,131,193, 96, 48,154, 24, 2,160,218, 43, 1, 40,165,191,218, 44,105, -192,213, 4,117,249,153,147, 57,153,147, 57,153,147, 57,153,243,241,115,214,229,174, 79,254,120,164,161,148, 62,176, 2, 32,136, - 57,153,147, 57,153,147, 57,153,147, 57,153,243,191, 86, 4, 77, 29,216, 24, 12,198, 63,204, 1,194, 71,142,175, 23, 40,117, 3, - 95,156,138,212, 91,209,120,143,114,141,118,166, 7, 52,135,204,172,131, 69,170, 71,250,205,152, 70, 59, 25, 12, 6,227, 63, 4, - 11, 88, 12,198,191, 29,189,159, 15, 4, 88, 9, 30, 92, 65, 77, 81,208, 4,172, 4, 16,218,104,167,136, 91, 14, 43,207, 3,212, - 20, 9,173,239, 42, 0,225, 77,210, 94, 6,131,193,248, 15,240, 80, 78,114,151, 74,165, 33, 98,177,248, 67, 66,136,228, 97,172, -159,241,223,128, 16, 34, 17,139,197, 31,202,100,178,144,135,221,150, 7,198,174,118,114,240,172,195,141,102,206,253,248,173, 92, -173,161,212,234, 3,158,101, 4,190,242, 81, 54,202, 41, 32, 67, 74, 76,156,231,238,203, 6, 93,145,209,226, 15,138,198, 57,203, - 33,132,216,139,197,226,227,132, 16,231,198,186, 24,143, 38, 1,132,116,233, 42, 20, 46,240, 39,100, 16, 33,132, 60,236,246, 48, - 24, 15,139,135, 18,176, 74, 75, 75, 59,117,234,212,233, 13,177, 88, 28, 79, 8, 25,243, 48,218,240,176, 80,169, 84,127,218,217, -217,165,219,219,219,167,219,217,217, 93,171,171,254,113,132, 16,226,163,213,106,227,157,156,156, 34, 43,215,107, 59,140,239,229, -221,231,185,247,156, 3,159,236,223, 4,235, 24, 35,145, 72,226,187,119,239,254,122, 73, 73, 73,167,198,250, 30, 89, 74, 56, 29, -120,252,129, 97,169, 6,121,106,190, 89, 23, 18,103, 80, 1,252, 1, 48,194,181,193,206, 60, 78, 7,208, 65, 55,146,138, 21,127, -102,107,116,127, 68,151,170,193,227, 13, 68, 9,113,105,108,115,121, 60,222,108,142,227, 6,139, 68,162,215, 26,235, 98, 60,154, -136,121,188,222,127,142, 25,179,252,173,246,237,231,250, 1,163,171, 11, 89,164,140, 87,253,253,253,143, 17, 66, 38, 55,213,186, - 9, 33, 31,251,249,249, 37, 19, 66,230, 53,149,147,193,104, 40, 54, 7,172,137, 45, 73,239,103, 90,145, 51, 79,183, 36, 5,147, - 91,145,194,103, 91,145,115, 19, 90,146, 65, 13, 93,241,217,179,103,101, 17, 17, 17,218,254,253,251,239,147,201,100,231, 8, 33, -222, 13,241, 72,165,210,227, 2,129, 96, 98,229, 58,185, 92,126, 92, 32, 16, 60, 93,165, 46, 76, 46,151,231,201,100,178,104, 27, -189,119,197, 98,113,145, 84, 42,189, 91,185, 94, 32, 16, 60,173, 80, 40,142, 87,169,155, 88,181,174, 38,132, 66,161, 71, 98, 98, -162, 54, 41, 41, 73, 43, 22,139,117,149,235, 19, 18, 18,180,137,137,137,247,213,215, 23,161, 80, 56, 72,169, 84, 30,168, 90,167, - 82,169, 14,212,180, 76, 85,148, 74,229, 15, 66,161,240,190,247, 86,165, 82,253,173,174, 33, 16, 66,124,134, 12, 25,114, 46, 53, - 53,213,211,222,222,222,190,242, 52, 71, 59,251,161,223,238,216,242,198,216, 17, 67,102,107, 3,198,181,107,160,223, 91, 46,151, -159,235,214,173,219,190, 83,167, 78,105,119,239,222, 45,111,108,155, 31, 89, 14, 4,136, 64,184,126, 28,165,154,191,146, 75, 52, - 35,199, 76, 20, 92, 79, 44,214,152,173, 86, 71,128, 63, 0, 59, 91,212,127, 15,241,129, 0, 17, 4,230,190, 28,165,186,223,226, -132,154,129,147,230,242, 79,197, 9, 52,102,171,213, 9, 60,244,111,144,179, 28, 66,136,144,207,231,191,177,110,221, 58, 30,128, - 57,132, 16,113, 67, 93,255, 70,186,187, 19,247, 39,218, 8, 46,119,118, 35,189,155,202, 73, 8, 9, 84, 40, 20, 87, 9, 33, 62, - 77,229,108, 44, 70,142,187,189, 47, 38,230,196,180,214,173, 71,189,213,190,253, 11, 85, 67, 86,249,243,183, 86,173, 90,245,108, - 88, 88,152,166,101,203,150, 51, 9, 33,141,254,103,159, 16,178, 97,213,170, 85, 11,195,194,194,220,188,188,188, 62,104, 10, 39, -227,145, 66, 12, 96, 32,128,145, 0,158, 0,208,173,252,121,215,242, 50, 18,101,163, 34, 84,126,236, 90,190,108,197,244,238, 53, - 56, 70, 86,179, 92,215, 74,245,149, 95, 87,125, 94, 51,229, 87, 3,208,202,143, 85,203,211, 94,120,127,110, 47,119,195, 95,135, -246,208,194,196, 24,154, 19,113,157, 94,223,254, 17,157,219, 85, 99,120,166, 37, 62,110,192,213, 7,148, 82, 74, 67, 66, 66,104, -113,113, 49, 61,122,244, 40,167,211,233, 74,196, 98,241, 6, 0,138,250,184,196, 98,113,161, 70,163, 41,144,201,100, 95, 3, 16, - 83, 74, 33,145, 72, 10, 93, 92, 92, 10,164, 82,233, 46, 0, 18, 74, 41,134, 14, 29, 90, 76, 41,165, 18,137,164,200, 22,239,240, -225,195,139, 40,165, 84, 44, 22, 23,149,183, 89, 34,149, 74,191,237,210,165, 75,190, 68, 34, 41, 44,175, 19,203,229,242,175,187, -118,237,154, 47,149, 74, 11,109,241, 58, 58, 58, 38, 90,173, 86,122,232,208, 33,170,213,106, 83, 42,234, 29, 28, 28, 18,173, 86, - 43, 13, 14, 14,166, 26,141, 38,197, 22, 87,149,109,202, 83, 42,149,107,186,117,235,150,171, 84, 42,179, 42,213,173,237,209,163, - 71, 94, 69,157, 45, 69,161, 80,100,121,122,122,230, 40,149,202,181, 0,120,148, 82, 40,149,202,172, 22, 45, 90,100,171,213,234, - 53, 21,117,182, 20, 55, 55,183,153, 90,173, 54, 69,171,213,166,216,219,219,175,112,117,117, 77,211,235,245,148, 82, 74, 91,181, -106,149, 65, 41,133,166,253,184, 94,109,122, 63,251,158, 54,112,204,235,159,239,191,112,233,108,104,150,190,253,224,217,107,236, -218,143,181,171, 71,255, 21, 98,177,120,131,139,139, 75, 73,112,112,176, 53, 61, 61,157,222,188,121,147,166,166,166,210,154, 62, -215,255,250,178, 37,192,131,110,243,221, 23,190,212, 51,226,236,170, 97,102, 26,119,138,238,121, 65, 99, 62,243,186,123, 20,221, -234,247, 3,221,230,223,172, 65,206,173,254,123,110,190,227,121,123,243, 7,175,154,227,227,227,233,130,231,134, 89, 78,206,117, -143,166,159,251,237,111,144,243,127,239,209,148,113,227,198, 21, 38, 36, 36,208,128,128,128, 34, 62,159, 63,253,161,111,195,127, -168,116,115,131,123,144,143, 56,249,230,238, 5,220,232, 64,121, 86, 39, 87,244,110,172, 19, 64,160, 86,171,205,220,185,115, 39, - 85,169, 84, 25, 0,124, 30,118, 63,203,219, 69,252,128, 49,223,180,111, 31,204, 77,152, 96,253,166,125,251, 96, 63, 96, 12,202, -134, 5, 34, 0, 22,173, 94,189, 58,196,108, 54,135,124,253,245,215, 33, 99,198,140, 9, 1,176,160,145,235,220,248,241,199, 31, - 83,179,217, 76,191,254,250,107, 58,102,204, 24, 10, 96,147,173,203, 43,149,202, 54,237,218,181,219, 21, 16, 16,144,208,161, 67, - 7,163,191,191,127,137,143,143, 79, 92, 96, 96,224,209,123,187,187, 0, 0, 32, 0, 73, 68, 65, 84, 78,137, 68,226,245,176,183, -233,127,165,212,145, 69,186, 45, 90,180,104, 49, 0,186,104,209,162,197,148,210,145,229,243,141,172,252,188,234, 35,165, 52,168, -242,235,234, 28, 21,165, 58,103,117,235,168,242,188,230,254, 84,116, 6, 64,127, 0,103,170,206, 48,177, 37,122,205,237,229, 94, - 92,172, 79,165,161, 31,189, 70,127, 31,232, 65,207, 15,112,161,145,111,140,163,169,187, 55,208,151, 59, 58, 24, 38,180,196,192, - 6,108, 68, 26, 28, 28, 76, 79,158, 60, 73,163,163,163,105,122,122, 58,125,247,221,119,141, 10,133, 34,135,207,231, 79,181,213, - 37,147,201,242,146,147,147,233,187,239,190, 91, 90,190,183,169,165, 92, 46,207, 75, 75, 75,163, 31,125,244,145, 81, 38,147,197, - 0,240,150, 72, 36,133,209,209,209, 84, 42,149,218, 20,176,228,114,121, 94,104,104, 40,149, 72, 36, 69, 0,188, 53, 26, 77,204, -111,191,253,102,230, 56,142,122,120,120,228, 3,104,169,209,104,238,158, 58,117,234, 94,157, 45, 94, 71, 71,199,196,226,226, 98, -122,242,228, 73,170,211,233, 82,170,214, 31, 59,118,236,190,224,101,227,246,212,185,186,186, 94,175,104,159,151,151,151, 30,128, -206,205,205,237,198,153, 51,103,204,148, 82,218,170, 85, 43,189,173, 62, 23, 23,151,140,140,140, 12,186,105,211,166, 82,149, 74, -117, 13,128,206,197,197, 37, 67,175,215,211, 79, 63,253,180, 84,173, 86,135, 0,208,217,226,114,118,118, 78, 49, 26,141, 52, 55, - 55,151,118,239,222,189,240,252,249,243, 52, 63, 63,159, 82, 74,105,139, 22, 45, 50, 40,165,240,237, 63,253,195, 75,119, 10,243, -255,111,225,150,239,189,186, 61,243,209,137,203,201, 73, 95,254,124, 53,196, 57,112,236, 48, 91,214,193,231,243,167, 42, 20,138, -156, 79, 62,249,196,148,147,147, 67, 99, 98, 98,232,197,139, 23,233,197,139, 23,105,122,122,250,227, 25,176,246,131, 79,183,249, -142,165,219,124, 67,118, 78,115,206, 44,184,182,151,210, 95,230,209,232, 15, 91,210,165,195, 84, 5,220, 54,223, 16,186,205,111, - 2,125,191,191,160, 94,206,237,254,163,233, 54,223,144,143, 39, 54,207,186, 30,114,133,158, 57,115,134,126,182, 97, 53,157, 27, -228, 94,196,109,243, 13,161, 91,253,199,215,203, 89,169, 72, 36,146, 59,231,206,157,163,103,207,158,165, 31,124,240, 1,149,203, -229, 9,141,223, 14,254, 34,186,213,167, 57,221,226, 61,128,238,240,118,165,167, 27,214,182, 7, 89,186,185,193,125,176,143, 56, - 41,243,250,207,148,102,223,165,105,107, 3,232, 48, 95, 97,163, 66, 86,121,184,210,199,197,197,209,180,180, 52,186,126,253,122, -170, 86,171, 31,233,144,229, 11,140, 5,176,120,205,154, 53,247,194,213,150, 45, 91, 66,110,221,186, 21,226,233,233,121,180, 17, -235,218,180,102,205,154,123,225,106,203,150, 45,244,214,173, 91,180,121,243,230,137,117, 45, 59,109,218, 52,121,175, 94,189, 66, -166, 78,157,106,216,185,115, 39,141,139,139,163,183,110,221,162,107,214,172,161,239,189,247, 30,253,234,171,175,232,248,241,227, -139,186,119,239,126,105,194,132, 9,210,122,182, 77, 64, 41, 21,151, 23, 33,165,180, 34, 96, 10, 0, 8, 1,240, 31,246,251,244, -168,149,218,178, 8,173, 33, 68,213, 20,172,170, 78,171, 37,128,213, 26,212,234, 90, 95,109,253,169,188, 11,245, 52,165,180, 63, -170, 32,160, 88, 54, 99,254,135,210,216,157,235,145,254,221,167,224,231,166, 67, 88,144,133,210,115, 71, 96, 62,119, 16,207,246, -236, 41,147, 17,178,188,234,114,182, 32,147,201, 32, 16, 8,144,146,146,130,148,148, 20,204,156, 57, 83,116,238,220, 57,251,190, -125,251,110, 87, 42,149, 55, 8, 33,237,235,114, 16, 66,224,230,230,134,185,115,231,138,191,249,230,155, 86, 42,149,234,154,213, -106, 21,234,116, 58,204,158, 61, 91,180,127,255,254, 22,246,246,246, 87,172, 86,171, 72, 44, 22,195,214,115, 46, 9, 33, 16,137, - 68,176, 88, 44,194,110,221,186, 93, 13, 15, 15,247,234,223,191,191, 32, 34, 34, 2,153,153,153,130,174, 93,187,222, 8, 15, 15, -111,221,175, 95, 63, 65, 76, 76, 12,242,242,242,168,173, 94,163,209, 8,137, 68, 2, 30,143,119, 95,125,105,105, 41,234,211, 70, -160,236,240, 95,239,222,189,195,110,222,188,217,161,127,255,254,130,208,208, 80,100,102,102, 10,187,119,239, 30,118,227,198,141, -246,125,250,244, 17, 68, 70, 70, 34, 47, 47,207,230, 75,236,165, 82, 41, 52, 26, 13,158,125,246, 89,241,254,253,251, 59,104, 52, -154,155, 2,129, 64,236,236,236,140,169, 83,167,138,247,239,223,223, 81,167,211,221,176,241,144, 33, 31, 0,204,102, 51,102,206, -156,169, 80,171,213, 72, 76, 76, 4,199,113,176, 90,173, 0,128,172,156,172, 91, 55,110,133, 70, 60, 59,101, 98,255, 98, 83,105, -233,133,203, 87,255,106,213,162,185, 7, 33,180, 69,109, 98, 66, 72,123,185, 92,126, 99,242,228,201, 95, 36, 36, 36,216, 79,157, - 58, 85, 24, 23, 23,135,172,172, 44, 8,133, 66, 72,165,210,251,182,241, 99, 69,126,128, 19, 56, 12,142,215, 27, 37, 18,123, 15, -149,210,213, 7, 72, 56,139,150, 26, 9,248, 60,190,244, 74,140, 65, 1,208,193,240,204,116,170,159,147, 27, 28,147, 97,148,152, - 29,219, 42,221, 60, 60,145,149,149,133,102,173,252, 80, 34,214,136,255,188, 91,164, 4,169,167,179, 28, 66, 72, 95,111,111,111, -151, 54,109,218, 32, 51, 51, 19,157, 58,117,130,131,131,131, 3, 33,100,112,125, 93,247,216,217, 66,130,124,244, 6, 33,235,192, -231,125, 0,179, 96, 37,238,234, 59, 97,123,103, 97,131,157, 77, 76,119,119,226,174, 86,138, 47,238,221,247,157,187,147,167, 63, -112,228,255,160,179,151, 96,199,236, 78,142, 26, 59, 73,112, 67, 14, 23, 18, 66, 2,117, 58,221,169, 75,151, 46, 57, 75,165, 82, - 92,187,118, 13, 1, 1, 1, 88,191,126,189,198,193,193,225,236,163,112,184,144, 82, 74, 35,128, 67, 31,223,188,249,245,174,168, -168,195,211, 90,183, 30, 53,213,199,103,197,172,201,147,167,191,250,234,171, 88,189,122, 53,130,131,131,209,187,119,111,204,152, - 49,195,156,144,144,240, 77, 67,214, 67, 8,249,116,237,218,181,115,231,205,155, 87,213,105,138,143,143,255,184,182,101, 3, 3, - 3, 61,238,220,185,147,252,198, 27,111,116,218,181,107,151, 76, 46,151, 35, 55, 55, 23,219,183,111,199,226,197,139, 65, 8, 1, -165, 20, 95,125,245,149,252,133, 23, 94,232, 22, 21, 21,149,220,162, 69, 11, 91, 78,223, 32, 0,164, 0,228,229, 69, 1, 64,190, -119,239, 94,187,177, 99,199,170,203,235,100, 0,100,236, 66,175,106,169, 54,139, 84, 64, 8, 57, 92,249, 53,165,116, 84,213,186, -170,211, 40,165,163,106,115,212,135,218,214, 87,149,202,191, 62, 3, 8, 33,103,254, 38, 3,218,187,120,249, 34,239,151,253,144, - 9, 8,100,252,242, 34, 32,224, 69,223, 66, 51,169, 16,102, 74, 3, 27,210, 80,169, 84, 10,153, 76, 6,153, 76, 6, 66, 8,114, -114,114,160, 86,171,241,221,119,223, 73, 55,109,218,212, 78, 46,151, 95,176,179,179, 91, 89,155,163, 34,140, 68, 70, 70,162, 99, -199,142,228,240,225,195,234, 89,179,102, 9, 0, 32, 62, 62, 30,237,218,181, 35,191,255,254,187,234,205, 55,223, 36, 18, 73,253, - 62,203, 34,145, 8, 11, 23, 46, 36,231,207,159, 87,202,229,114,132,134,134,162,176,176, 16,111,190,249,166,224,207, 63,255, 84, - 42, 20, 10, 68, 69, 69,161,164,164,164, 94,193,205,104, 52, 66, 36, 18,221,183, 12, 33, 4, 38,147, 9, 98,177,216,230, 80,224, -236,236,252, 94,151, 46, 93, 14,156, 62,125,218, 73, 38,147,225,214,173, 91, 48, 24, 12, 88,190,124,185,252,220,185,115, 78, 42, -149, 10,183,111,223,134,193, 96,168, 87,104,171, 88,255,221,187,119,225,237,237, 77,142, 28, 57,162,157, 49, 99,134, 20, 40,219, -166, 62, 62, 62,228,232,209,163, 58, 63, 63,191,253, 90,173,118,105,109, 46,142,227,144,154,154,138,176,176, 48, 68, 71, 71, 67, -175,215, 35, 51, 51, 19, 5, 5, 5,176, 88, 44, 0, 0,121, 65,254,145,189,223, 31,186, 33,147,201,228, 1, 62,222,158,183, 66, -195, 51,100, 50,153,188,185,167,167, 15, 33, 31, 84,187, 49, 84, 42,213, 74,153, 76,118,225,224,193,131,237,191,248,226, 11, 73, -102,102, 38,226,227,227, 65, 8,129, 84, 42,189, 87,248,124,190,205,253,254,215, 64, 8, 1, 49,122,131,144, 78, 23,163,139, 28, -251,142,154, 34, 66,204,113,128, 51, 3, 60, 1, 6,180,247, 16, 4,223, 42,210,129,162, 61, 74,225, 7,216,240,230, 19, 66, 0, - 83, 27,128,116, 57,121,199,226,212,123,220,108, 81,114,114, 50, 68, 34, 17, 36, 18, 9, 58, 13,122, 74,176,247,134,217, 5, 4, - 29, 96,130,175, 77,206, 74,200,100,178,119,223,123,239, 61, 69,101,231,244,233,211, 21,118,118,118,239, 53,104, 27,236,108, 33, - 65,145,188, 39,172,244,181,176,228,226,230, 43,142,164,249, 69,103, 20,251,129, 98, 62, 96,238,216,216,144, 69, 8, 25, 32,149, - 74, 99, 8, 33,125, 26,234,232,238, 78,220,213, 42,241,133,125,251,190,115,119,108, 86, 22,174, 96, 41, 1,132, 50,184,104,236, -177,227,245,129,142, 26,123, 89,189, 66, 86,121,184,250,237,226,197,139,206, 82,169, 20, 33, 33, 33, 16,137, 68,144, 74,165,104, -215,174, 29,182,109,219,166,113,116,116,124,164, 66,214,170,155, 55,119,174, 12, 11,139, 92, 20, 24,232,247,164, 66,225,248,202, -212,169,118,239,188,243,206,225,131, 7, 15,126, 61,114,228,200,204,203,151, 47,127, 66, 41,221, 95, 31,119,249, 73,242, 91,214, -173, 91,247, 74, 69, 96,123,231,157,119,190, 58,120,240,224,202,145, 35, 71,166, 94,190,124,249, 13, 74,233,150,218, 28,133,133, -133, 7,151, 44, 89, 98, 55,110,220,184,138,215, 56,119,238, 28,190,249,230, 27, 40, 20,138,251,230, 29, 51,102, 12, 94,122,233, - 37, 7,163,209,248, 67,109, 78,173, 86, 27,116,241,226,197, 0, 0, 34, 0, 18,148, 7,172,208,208, 80,251,252,252,124,123,165, - 82,105,239,234,234,170, 42,175,151,141, 27, 55,206, 94, 40, 20,246,173, 79,223,255, 3, 84,155, 69, 42,168, 26,150,106,170,107, -232,252,182, 96,235,242,247,126,188, 40,165,103, 0,244,171,110, 38, 83,118, 58, 36,176, 66,198, 39,144,243, 43,133, 44,112, 16, -228,101,212,243,171,246,127, 84,254, 33,148,201,100,144, 74,165,247,246,228,228,229,229,129, 16, 82,103,216,168, 8, 14, 74,165, - 18,197,197,197, 48,153, 76,144, 74,165,247,234, 44, 22, 11, 44, 22, 11,100, 50, 25, 36, 18, 73,189,247, 96,153,205,102,132,133, -133, 33, 42, 42, 10, 60, 30, 15, 10,133, 2,102,179, 25,127,253,245, 23,146,147,147, 33, 16, 8, 32,151,203,235, 21, 96,172, 86, - 43,196,226,191,159,223,107, 54,155,235,181, 7,139,199,227,193, 96, 48,208, 59,119,238, 32, 46, 46, 14, 34,145, 8,106,181, 26, - 98,177, 24,122,189, 30, 73, 73, 73,247,234,234,211,190,138,121,101, 50, 25,138,138,138, 64, 41,189,215, 94,153, 76,134,210,210, - 82, 16, 66,192,231,243,235,124,127,172, 86, 43, 82, 82, 82,160,215,235,145,152,152,136,204,204,204,123, 33,139,227, 26, 63,110, -229,213,171, 87,105,120,120, 56, 74, 75, 75, 33,145, 72, 32,149, 74,239,123, 20, 8, 30,195,161,222, 62, 11,180,131, 89, 56, 36, -179,208, 44,209,155, 68,118,186,192, 32, 32,230, 24,192, 19, 0, 82, 7,244,104,219, 18,241, 57, 86,197,237,116,163, 20, 4, 67, -177,197,199,193, 38,167, 85, 56, 88, 95, 96,150,196,153, 52,106,255,246,157,145,158,158, 14,137, 68, 2,137, 68,130, 46,189,131, - 16,147,101,149,135, 39, 23,203, 65, 49,196, 38,103, 57,132,144, 86, 74,165,178,103,159, 62,125, 72,101,231,136, 17, 35, 64, 8, -105, 71, 8,241,171, 87,255, 55,183, 22,195, 36,239, 1, 33,125, 45, 60,213,224, 22, 28, 90,226, 51,250,201,167, 28, 55,252,154, -225, 23,145, 90,226, 5,206,178, 0,212,212,185,161, 33,139, 16,210, 95,165, 82, 29,222,188,121,179,151, 84, 42, 61, 70, 8,105, -208, 15,160, 82,198,255,252,221, 87,166,184, 59, 84,132, 43,179, 1, 16,200, 0,161, 12, 16,200,224,162,117,198,242,151, 6, 59, -202,165,194, 31,109,117,202,100,178,189, 91,182,108,209, 84, 13, 87, 21,165, 83,167, 78, 88,186,116,169,198,209,209,113, 79, 67, -218,220, 84, 16, 66,134,216,219,219,239, 10, 10, 10,186,152,162, 82,189,148,218,185,179,248, 55, 59,187,188, 39,242,242,236,154, -135,134,154,124,129, 91, 0, 62, 75, 76, 76, 28,102,107,184, 34,132, 76,182,179,179, 11, 9, 10, 10, 50,169, 84,170,132,245,235, -215,191, 60,103,206, 28,172, 94,189, 26, 75,150, 44,249, 2,192,139,148,210,183, 19, 19, 19,221,234, 10, 87, 0,144,150,150,246, -204, 91,111,189,149,153,153,153, 9, 0,104,215,174, 29,114,115,115,177, 96,193, 2,188,246, 90,217, 69,174, 29, 59,118, 4,165, - 20,233,233,233, 88,187,118,109,122, 90, 90,218,243,181, 57, 57,142, 75,220,191,127,127, 55,147,201,228,129,178,195,128,146,220, -220, 92,117,118,118,182,202,100, 50, 41, 56,142, 83,216,219,219, 43, 1,200,159,125,246, 89, 65, 88, 88, 88,128,197, 98, 73,182, -165,255,255, 21,106,203, 34, 13,228, 72, 3,219, 49,138, 16,114,184,186, 61, 96,182,194, 43, 23,145,202,143,149,225, 19,220, 76, -184,122, 22,142,129,157,239,219,123, 37,231, 19,200,212,118,136, 73,140,135, 8, 36,172, 33, 43,175,252,197, 80, 17,178,194,195, -195,241,196, 19, 79, 24,222,127,255,253, 91, 69, 69, 69, 61,115,114,114, 22,215,230,168, 8, 3,118,118,118, 56,127,254, 60, 29, - 63,126,124,254,198,141, 27, 45, 21,117, 23, 47, 94,164,131, 7, 15, 46, 88,182,108, 25,173,122, 88,174, 46,175, 72, 36,194,198, -141, 27,233,192,129, 3,243, 46, 93,186, 68, 21, 10, 5,228,114, 57, 54,110,220,104,233,215,175, 95,222,239,191,255, 78, 21, 10, -197,223,254,219,169, 13, 30,143,119, 47, 96, 85, 14, 61, 60, 30, 15, 28,199,213, 43, 96,101,100,100,124, 16, 17, 17, 49,113,208, -160, 65,233, 97, 97, 97, 84,173, 86,195,206,206, 14,139, 22, 45, 50,116,236,216, 49,227,230,205,155,247,234,234,115,168,172, 98, -253, 42,149, 10, 97, 97, 97,116,212,168, 81, 25,159,125,246, 89, 73, 69, 93,104,104, 40, 29, 62,124,120,122, 88, 88,216,196,180, -180,180,101,181,185, 56,142, 67,116,116,244,189, 61, 86, 37, 37, 37,200,204,204, 68, 98, 98,226,189, 67,132,197, 10,245,176, 41, -147, 70,119, 40, 46, 46, 54,132, 71,222, 73,104,215, 54, 64, 91, 92, 92,108,136, 79, 72,136,164,244,189,106, 83, 88, 65, 65,193, -226,226,226,226,158, 43, 86,172,184, 53,113,226, 68,195,237,219,183,255, 22,174,164, 82,233,227, 25,176,120,156, 11, 8,237,243, -199,157, 66,251,193,163,159, 22,147,180,203,128,169, 16,144, 56, 0, 18, 7, 8, 20, 78, 24,222,183, 35,127,231,197,124, 23, 80, -174, 23, 68, 18,143, 58,157, 66,170, 3,184,190,191, 68,150, 56,244,153, 48, 87,156,157,157, 13, 62,159,127, 47, 12,201, 21, 10, - 60,241,228,179,188,175, 46,151,186, 0,180, 55, 8,191,110,103, 57, 98,177,120,225,187,239,190, 43,202,201,201, 1,143,199,251, -159, 83, 46,199,172, 89,179, 36,106,181,122,137,205,125, 63, 16, 32,130, 80,210, 3, 28,125,237,118, 90,177,219,193,155,197, 62, -243, 87,238,144, 5,118,236,134,153, 3,180,178,149, 71, 51, 2,110, 36, 27,188, 0,235, 27,176, 24,187,212, 55,100, 17, 66,250, -170, 84,170, 35, 87,175, 94,149,143, 24, 49, 2,107,215,174, 85,200,100,178, 99,132,144,122,127,225, 23, 21, 90,231, 44,219,244, -109,250,205, 79,134, 2,166,162,178, 96, 85,169,100, 20,114, 88,186,227, 84,158,217, 76,167,216,234, 44, 46, 46,126,238,197, 23, - 95,204,250,241,199, 31,255, 22,174,164, 82, 41, 98, 99, 99,177, 98,197,138,236,236,236,236,231,235,219,222,166,130, 16, 50,100, -206,156, 57, 43,146,146,146,124,127,249,229, 23,129, 94,175,215,174,251,242,203,188, 3,121,121,217, 43, 67, 67,111,191,221,182, -173,247,162,246,237,159,175,105, 8,135, 26,156,147, 95,121,229,149,189, 73, 73, 73,157,126,253,245, 87,161, 94,175,247,120,229, -149, 87,176,102,205, 26, 44, 89,178,100, 27,128,153,180,252, 36, 30, 91, 49, 26,141,183,115,114,114, 70, 13, 29, 58, 52, 55, 39, - 39, 7,237,219,183,199,232,209,163,225,226,226, 2, 55, 55, 55,140, 29, 59, 22, 62, 62, 62,200,202,202,194,148, 41, 83,178,245, -122,253, 80, 74,105,173, 87,161,103,101,101,221,221,179,103,207,157, 57,115,230,116, 78, 74, 74,242, 7,224, 84, 80, 80,160, 40, - 40, 40,144, 24,141, 70,153,131,131,131, 67,199,142, 29,157,103,204,152,161,188,118,237, 90, 64,114,114,114, 1,128,184,250,180, -251,113,166,182, 44, 2, 64, 95, 30,116,140, 85, 30,245,117, 76,179,117,217,106,159,219, 48, 95,141,212,249,171,107, 2,150,126, -179,127,103,137,216,179, 13,236,124, 59, 64, 46,149, 66, 38, 22, 67,230,224,132, 82,142,195,151,177,105,134, 34, 74,109,255,130, - 44,135, 82,122,239,240,160, 84, 42, 69, 97, 97, 33,230,206,157, 91, 50,105,210,164,220,216,216,216, 89,249,249,249, 29, 40,165, - 55,235,242, 16, 66, 80, 84, 84,132,247,223,127,191,120,209,162, 69,209, 5, 5, 5,157, 68, 34,145,217,100, 50,225,221,119,223, - 45,153, 61,123,118, 92,110,110,110, 87,145, 72,100,170,239,143,173, 80, 40,132, 64, 32, 48,231,229,229,117,122,235,173,183,162, - 86,172, 88, 81, 44, 18,137, 32, 18,137,204,249,249,249,237, 22, 47, 94,124,123,241,226,197,197, 66,161,176, 94,123,198, 42,246, - 8, 85, 61, 68, 88,121, 79,145,173,152,205,230, 83, 25, 25, 25, 29,230,205,155,119,125,227,198,141, 6,165, 82, 9,137, 68, 98, -204,200,200,104,255,242,203, 47,223, 88,187,118,173, 65,169, 84,214,107, 15,150,201,100, 2,199,113,216,188,121,179, 97,222,188, -121, 55,244,122,125,123,148,125, 32,177,113,227, 70,195,203, 47,191,124, 61, 61, 61,189,131,217,108, 62, 85,151,203,106,181, 90, -243,243,243, 33, 16, 8, 16, 26, 26, 90, 42, 18,137,192,227,241,112,247,238,221,123, 1,203,209,209, 49,160, 67,187,182,126,223, -238,221,127, 70, 38,146, 72,122,118,235,226, 31, 29, 23,159, 68, 41,169,245,139,135, 82,122,179,168,168,168, 67, 98, 98,226,172, -233,211,167,231,206,159, 63,191,164,176,176,240,190, 31, 28,161,240,145, 57, 29,167,233,224, 65, 14, 2,217,157,140, 82,149,148, -103, 33,136,252,185, 44, 92, 73,237, 1,169, 3, 32,117,128,187,187, 7, 46,199, 26, 84,224, 65, 12,171, 89, 91,167,147, 82, 5, - 8,228,161,233, 80, 9,197, 50,146,150,150,118, 47, 8, 85, 20,175, 54,254,184, 22, 95,168, 4,161, 18,240, 81,159,161, 68, 70, - 57, 57, 57, 9, 82, 83, 83,255,230, 12, 8, 8,224,155,205,230,161, 54,155, 82,172,174, 0, 55, 39, 50,163,196,237,167, 27, 6, -159,215, 87,126, 37,147, 89,115,129,171,155, 16,216,202, 13,175, 79,232, 40,126, 39, 88, 31,120, 37,206,208, 10, 2, 58, 11, 92, -161,198, 86, 53, 33,164,143, 74,165, 58,118,229,202, 21,185, 74,165, 66,116,116, 52,186,117,235,134,237,219,183,203,229,114,249, - 81, 66,200,128,122,244, 25, 23,211,104,124, 97,129,181,231,194,253, 9,105, 55, 83, 45,247,133, 43,125, 17,197,139, 31, 31,204, -205,201, 47,121,234, 66, 66,221,127, 71, 21, 80, 74,175,231,230,230, 14, 89,178,100, 73,150, 94,175,191,239,179, 30, 31, 31, 95, - 17, 4, 6, 80, 74, 27,244, 79,111, 83, 96,103,103, 55,117,229,202,149,184,114,229, 10, 70,140, 24,129,179,103,207, 34, 59, 59, - 27,251,142, 29,187,179,231,206,157,183, 43,206,201,170,110, 8,135,154, 80,171,213,243, 87,174, 92,137,171, 87,175,222,115,102, -101,101, 97,229,202,149, 73, 0,102,215, 55, 92, 85,144,158,158,126,249,246,237,219, 67,219,183,111,255,215,230,205,155,147, 92, - 93, 93,185, 25, 51,102,224,197, 23, 95,132, 70,163,177,110,216,176, 33,161,111,223,190,161, 81, 81, 81, 65, 69, 69, 69,183,234, -242, 81, 74,105,102,102,230,249, 47,190,248,226,194,160, 65,131, 20,211,166, 77,211, 6, 7, 7, 59, 25, 12, 6, 55,145, 72,164, - 51, 26,141,226,240,240,112,193,129, 3, 7, 92,255,250,235,175,216,226,226,226,203, 13,109,251,127,144, 43, 40,219, 27,245,107, -149,199, 43,117, 76,179,117,217,154,158,215, 53, 95,205,216,114,102,255,212, 86,120,127, 86, 91,149,225,207,105, 61,104,218,140, - 62, 52,253,105,127,122,174,191, 35,157,222,154, 20, 61,215,192, 97, 26,172, 86, 43, 77, 79, 79,167,233,233,233,116,249,242,229, - 22,153, 76, 86, 44,151,203,235, 61, 76,131, 82,169, 44,244,246,246, 46,176,179,179,187, 55, 76,131, 74,165, 42,244,245,245, 45, -176,183,183,191, 55, 76,131, 66,161, 40,164,148, 82,165, 82,105,211, 85,132,106,181, 58,175,176,176,144,202,229,242,138, 97, 26, - 68,118,118,118, 95,120,123,123, 23, 40,149,202,138, 97, 26,132, 14, 14, 14,159,251,248,248, 20,168, 84, 42,155,134,105,112,113, -113, 73, 76, 74, 74,162, 73, 73, 73,180, 89,179,102, 41,149,235,227,227,227,105,124,124, 60,245,240,240,104,208, 48, 13, 26,141, -102, 77,215,174, 93,179, 53, 26, 77, 86,165,186,181, 93,187,118,205,169,168,179,165, 56, 59, 59,103,117,233,210, 37, 71,163,209, -220, 27,166, 65,163,209,100,149,187,235, 53, 76,131, 76, 38,155, 41,149, 74, 83,164, 82,105,138, 68, 34, 89,209,162, 69,139,140, -239,191,255,158,110,216,176,129,170, 84,170,178, 97, 26, 2,198,244,108,211,235,249,183, 53, 1, 99,231, 55,102,152, 6,185, 92, -190, 65, 38,147, 21,127,244,209, 71,150,162,162, 34,106, 54,155,105,249,151, 23,173,239,246,124,164,203,118,159, 54,116,171,223, -193,168,101, 94,225,243,250,201, 75,110, 45,239, 64,233, 15,227, 40, 61,250, 34,165,167, 22,210,203,219,102,208, 94, 94, 18,235, -249, 5,205, 34,233,231,190, 63,217, 52,180,194,246,118,109,232, 86,191,163,119, 62,240, 10,127,174,175, 91,201,151,159,109,160, -151, 46, 93,162,161,161,161, 52, 58, 58,154, 30,253,249,123,218,171,149,188,204,185,213,239, 96,125,134,107, 0,208, 91, 34,145, - 20,174, 95,191,158, 94,188,120,241,158,243,224,193,131, 84, 46,151, 27, 0, 27,175, 66, 6, 8,221, 18, 48,206,242,153,239,185, - 37,131,149,133, 89,135, 23, 82,122,107, 39,165,219, 3, 41,253,186, 59,165,223,143,164,244,208,243,244,226,134, 9,180,183,151, -200, 76, 63,247,253,131,238, 8, 24,108,107, 59,133, 66, 97,254,143, 63,254, 72, 83, 82, 82,232,217,179,103,233,213,171, 87,105, - 68, 68, 4, 77, 72, 72,160, 71,142, 28,161, 66,161,176, 4, 64,189,175, 82,236,174, 67,243, 32,111, 81,234,141, 85,189, 41, 13, -158, 66,245,123,166,210, 81,109, 85,217, 61,154, 9, 6, 53,244, 51, 0,160,163,147,147, 83,230,145, 35, 71,104,108,108, 44, 61, -115,230, 12,213,106,181,153, 0, 2, 31,246,231, 51, 40, 40,232, 18,165, 52,100,196,136, 17, 33, 0,142, 7, 5, 5,133,196,196, -196,132,116,235,214,237, 34,106, 25,194,161, 54,231, 19, 79, 60, 97,162,148,210, 17, 35, 70, 80, 0, 41, 65, 65, 65, 52, 38, 38, -134,118,235,214,205,216, 20,109, 70,217,197, 56,207, 11,133,194, 47, 29, 29, 29,127,119,112,112, 56,197,231,243,183, 3,152, 86, -159,239,187,106,156,238, 0, 2, 80, 54, 94, 82,151,242,231,110, 96, 87, 16,254, 39,138,205, 51, 78,240, 66,239, 23, 90,145, 51, -207,180, 68,193,148,150, 40,252,191,214,228,220, 83, 94,168,245, 11, 2, 53,220,109,187, 34, 96, 29, 58,116,136, 54,107,214,172, - 72,165, 82,157, 3,224,109, 83,131,171, 56, 29, 28, 28,142,243,249,252,137,213,212, 61, 93,185,206,206,206, 46,204,222,222, 62, - 79,173, 86, 71,219,210, 78,181, 90, 29, 33,151,203,139,212,106,117, 68,229,122, 62,159, 63,214,201,201,233, 72,149,186, 49, 85, -235,106,234,187,139,139, 75, 98, 74, 74, 10,213,235,245,212,211,211,243,190,128,149,148,148, 68,211,210,210,238, 11, 94,182, 56, - 43, 23,129, 64, 48, 72,163,209, 28,168,171,174, 54,167, 78,167,251, 65, 32,184,255,203,191,186,186,250,190,239,229,211,124,220, -221,221, 51,214,173, 91, 71,149, 74,101, 70,229,105,190,253,254,239,221, 75,119, 10,243, 95,124,107,235,247, 26,255, 39,219,213, -183,239,229,243,121,171, 84,170,115,205,155, 55, 47,250,237,183,223, 40, 45,171,164, 13,221,158,245, 45,255,136,115,191,191,136, -110,243,239, 77, 63,247, 63, 18,241, 94,243,191,158,239,174, 40, 13, 89, 55,130,210, 83, 11,233,197,173, 47,210,158, 94,226,178, - 32,180,205,239, 24,253,202,167, 31,221,212, 74,108,147,243,203,214,125,233, 54,191, 99,225, 75,155,255, 53,174,179,198,184,119, -231, 54,122,247,238, 93,122,240,192, 30,218,163,101,121,184,250,220,255, 36,221,234, 63,208, 38,231,253,211,122, 75, 36,146,194, - 29, 59,118,208,187,119,239,210,159,126,250,201,166,112,117,159, 19, 32,116,107,192,147,150,207,124,207, 45, 14, 82,230,190,216, - 93, 90, 58,165,163,216, 56, 54, 80,100, 26,210, 70,100,233,213, 92, 96,237,224,202,227,252, 53,160, 67,124,101,165,244,115,223, - 63,232,231,254, 67,109,109,167, 88, 44, 78, 64,165, 49,113,170, 22,137, 68,162,175, 41, 96,213,245,190,119,215,161,121,144,143, - 36,245,183,101,131,232,232,246,170, 44, 91,194, 85, 93, 78, 0, 29,157,157,157, 51,191,254,250,107,170,211,233,244,182,132,171, -127,226,243,105,103,103,183,171,176,176, 48,228,196,137, 19, 33, 65, 65, 65, 33,187,118,237, 10, 57,119,238, 92,136, 92, 46,223, - 85, 62,255,223, 66,150, 63, 48,180, 54,167, 90,173, 14, 41, 40, 40,160, 39, 78,156,160, 65, 65, 65,116,215,174, 93,244,220,185, -115, 84, 46,151,135, 52,248,239,232, 1,244,157, 57, 89,185,111, 27, 61, 80,121, 45, 1,107,218,180,105, 6,185, 92,158, 14, 96, -204,195,126, 83,255, 73,167,179,179,243,159, 58,157, 46, 93,167,211,165,107, 52,154,107,213,213, 59, 59, 59, 95,123,216,237,124, -144, 78, 0, 62, 34,145, 40, 94, 40, 20, 70, 86,174,215, 4,140,233,217,186,247,115, 75,116,129, 99,134, 55,182,157, 0,198,200, -229,242,244,241,227,199, 23, 61,118, 1,139, 82,208, 77,173,196, 21, 33,235,214,146,230, 17,163,219,202, 77,219,223, 24, 66,123, -182,168, 18,174,190,110, 46,169,151,179, 60,100, 93,127,199, 51, 98,160,143,210,178,114,201,235,180, 71, 75,217,253,225,170, 62, -206,251,167,247,150,203,229, 5,239,189,247,158,205,123,174,254,230,252,210,215,147,110,245,219, 93, 22,158,234, 42,254, 95,210, - 79,125, 61, 31,149,247,189,187, 14,205,159,240,145,132,217,186,231,202, 22, 39,128,142, 14, 14, 14,127,217, 18,174,254,169,190, - 3, 24, 50,107,214,172,144,152,152,152,144,232,232,232,144,115,231,206,133, 60,249,228,147, 33, 0,134, 84,154,231, 94,200, 50, -141, 31, 95,218,145,199,123,189, 14,231,228, 89,179,102,209,152,152, 24, 26, 29, 29, 77,207,157, 59, 71,159,124,242, 73, 10, 96, -114, 83,190, 71, 15,226,125,103,206,255,110,121, 40,103, 0,171, 84,170,107, 63,254,248,227,241,226,226,226, 21,148,210,210,135, -209,134,135,133, 94,175,239, 85,159,250,199, 17, 74,105, 36,128,230, 85,235, 51,194,130, 47, 0,184,208, 68,235, 56, 72, 8, 57, -121,252,248,241,119, 84, 42,213,176,166,112, 62, 82,204,141, 50, 98,115,235,171, 16,139, 87,181,117,151, 47,122,119, 4, 37, 43, - 79,252,217,124,245,120,109, 66,175,214,138, 88, 8,185,143, 65, 74, 47,227,249, 56,219,255,190,202,156,151, 33, 51,175,234,208, - 76,190,232,163,177, 32, 31, 31,219,217,124,205,147, 78, 9,189, 90, 41, 19, 64,241, 49, 36,134, 11,245,114, 86,130, 82,122,158, - 16, 50,124,221,186,117,223, 24, 12,134,151, 40,165,191,215, 91,162,226,165,161,200,188, 20,102,126, 91, 80,212,124,194, 34,165, - 6,240, 16,138, 44, 94,122, 67,218,250, 32,184,152, 70,227, 1, 52,104, 72,155,154,160,148, 94, 7,224,223,148,206,198, 66, 41, - 61, 73, 8,193,158, 61,123,166,250,249,249,181, 10, 15, 15,143, 54, 24, 12,187, 41,165, 39, 43,205, 67, 9, 33,135, 62,190,121, -179,232,211,240,240,243, 70,142, 59, 95,135,115, 95,185,115,190,159,159, 95, 96,120,120,120,152,193, 96, 88, 71, 41,221,247,224, -123,196, 96, 52,140,135, 18,176,242,243,243, 59, 63,140,245, 50,254, 91,148,135,247,119,203,203,227, 71,165,144,213,217, 83, 54, -247,199, 89, 50, 3, 40, 73,130,144,219, 80,239,112,117,191,243, 50,100,230, 85,221,154,203, 94,251,105,166,204, 0,138, 52, 80, -124,210,152,112, 85, 1,165,244, 60,128,150, 13, 22, 76, 8, 55, 1,136, 5, 33,113,120, 31, 53,159, 28,253, 62,238,253,155,205, -248,231, 41, 15, 83, 39,235,152,135, 2, 56, 85, 94,108,113,238, 3,192, 2, 21,227, 95,195, 99,120, 13, 59,131,241, 31, 98,110, -148, 17, 7, 2,174, 32,147,191, 0, 60,180, 4, 44,241, 40,178,164, 97,110,156,177,145,206, 75,200, 36,243,192,135, 15,196,150, - 40, 20, 26,211, 48,171, 17,206,166,166,236,199,185,230, 0,213,176,225, 75, 25, 12, 6,163,201, 96, 1,139,193,248,183, 83,182, - 87, 39,169,188, 60,186, 78, 6,131,193,248, 15, 65, 0, 4, 85, 55,129, 82,250,171,205, 18, 66,170,117,212, 70, 93,126,230,100, - 78,230,100, 78,230,100, 78,230,124,252,156,117,185,235,147, 63, 30,105, 30,228, 25,244,248,151, 92,185,192,156,204,201,156,204, -201,156,204,201,156, 15,215,249,184, 21,219,239,159,194, 96, 48, 24, 12, 6,131,193,176,137,135,122, 14,150,220,217,199, 21, 2, - 94,123,194, 81, 63, 0,160, 60, 18, 1, 11,119,211,144, 25,153,218, 88,183,202,221,215,145, 66,188,159,192, 56,177, 32,249,118, -118, 99,125,237,124,237,198,235,156, 85, 83,211,178,242,190, 9,141, 40, 8,174,207,178,246,246, 45,236,164,142, 14, 19, 74, 77, -230,182, 98,145, 40,193,148,155,191, 61, 59, 59,170,160,177,109, 98, 48, 24, 12, 6,131,241,104, 82, 99,192,106, 17,216,247,138, - 84, 42,243, 2, 0,142, 82,112, 20, 40,202,207, 13, 73,141,186, 50, 20, 0, 52, 94,157, 79, 8,165,234,206, 28, 45,155,110,229, - 0,139,169, 36, 54, 47,238, 98, 87, 91, 86,172,212,250,142, 11, 26, 18, 52,126,212,168,145,190,237,218,182,107, 13, 0,183, 66, -111, 69, 29, 62,124,228,182, 82,235,251, 99, 97,198,237,159, 26,211, 49, 10,233,135, 93,186,116,236,115,245,234,181,101, 0, 94, -105,140, 11, 0,156,156,148,115, 79,254,176,160,223, 19,227,215, 42, 0,212, 43, 96, 73, 29, 29, 38,140, 29, 61,172,227,155,175, -206,226,189,184,224, 35,175, 43,231, 79,175, 86,185,181,205,165,156,249,100, 81,250,211,127,212,116, 67, 99, 6,131,193, 96, 48, - 24,255, 78,106, 12, 88, 82,169,204,235,226,233,195,142, 63,157, 75, 4, 0, 4,117,114,193,219,203, 55, 15, 33,132,220, 6,128, - 49, 47,190,239,179,108,241,171,248, 51, 44, 3,148, 82,116,108,227,132,225, 99, 39,218,180, 82,153, 75, 64,215,167, 39, 77,122, -102,193,130,249, 99,238,222,189, 27,183,119,239,222, 63, 0,160,111,191,126,109, 62,250,232,163, 73,107, 29, 28, 37, 50,151,128, -228,226,180,240,218,111,164, 88,147,223,189,181,123,128,119,251,169,223,125,181,153, 55, 96,232, 83, 83,100,238,173, 87, 22, 39, - 71, 37,219,178,172, 70,163,153, 39, 20, 10,237, 0,128,227,254,151,123, 90, 53,227,187, 0,128,197,202,169, 28,221,253, 10,248, - 34,169, 85, 34, 17,133, 23, 20, 22,126,147,151, 20,254,101,109,206, 82,179, 57,240,181,217, 47,240,174, 71,103,193, 43,176, 47, -127,195,202,119,192, 89,205, 14,175, 47, 94, 62,225,234,165,239, 0,188,119,166, 33,253,100, 48, 24, 12, 6,131,241,104, 82,235, - 33, 66,165, 76,128,219, 49,105, 0, 0,123, 25, 48,119,230,115,200,202,212,251, 24, 45, 28,254,239,185,105,184, 22,145,138,219, -177,122, 80, 74,225,227, 33,183,121,165,124,112, 93,254,111,250,255,245, 63,113,242,228,229,119,151,188,251, 45, 33,101,163,119, -111,219,254, 69,207,165,239, 45,125,105,218,115,211, 6, 31, 56,112, 32, 12,117,221,169,186,166, 78, 17,213,230, 53,171, 86,136, -147, 50, 75, 74,230, 45, 88,196,205,127, 99,222, 6, 0, 79,217,178,172, 80, 40,180, 75, 74, 74, 82,242,120,247,159,158,246,241, -138, 69,103, 7,143, 95,123, 39, 46, 33,247,250,137,131, 7,187, 6, 4, 4, 32, 41, 57,173,247,234,141,159,119,112,109,221,245, -133,130,252,226,241, 69,250,240,106, 71,141,150, 8,133, 97, 31,172,222,218,145,179,111,195,123,251,165, 17, 8,108,237,134,228, -140, 92,244, 27, 58, 70, 16,114,229,202, 16, 0,103, 26,210, 79, 6,131,193, 96, 48, 24,143, 38, 60, 0, 32,132, 84, 59, 96,159, -213, 74,113, 59, 54, 21,183, 99, 83,113, 57, 66, 15, 19, 21, 98,195,234, 15,176,110,229,123,200, 46,230,225,167, 63, 19, 17, 25, -155,134,200,216, 52,100,230, 20,254,109,121, 90,229, 82,203,117,171,228,157, 54,108,176, 91, 51,164,159, 98,128,163,131,131,195, -157,176,111,139,150,190,145,238,255,193,107,137, 34,161, 81,146,164, 80, 42,122,237,223,255,125,128, 78,163, 85, 40,149,170,133, - 10,143,142, 59,236,237, 59,216,213,230,172,138, 92,231, 63,102,204,200, 97,131, 92, 92,116,220,172, 13, 33, 17,109,253,253,204, -222,109,188,123,203,117, 62, 99,106, 90,166,178,147,227, 56,240,120, 60,164,167,167, 35, 37, 37, 5, 49, 49, 49,136,140,140, 68, - 98, 98, 92, 58, 71,169,208, 10,142,231,234,234, 1,129, 64, 12,175, 22,205,177,117,195, 74,249,242,247,223,238, 38, 85,136,131, - 9, 33,164, 58,103, 73,118,206,129,163,199, 79, 38, 31,219,187,213, 10, 0, 25, 57,133, 56,117,229, 46,174,133, 39,214,214,149, - 90,219,217, 84, 48, 39,115, 50, 39,115, 50, 39,115, 62, 10,206,154,178,200,191,149, 90,175, 34,140, 74,204,198,237,152, 52,116, -246,115, 71,235, 22,174,184, 28,153,131,221,167, 18,177,227, 68, 60, 78,221,208,131, 19,168,144,150, 15,220,137, 75,199,157,248, -204,218,198, 85, 6, 0,240, 37,194,167, 95,123, 45,111, 65,187,128,252, 30,167,143,205,133,187,230, 78,192, 91,111,229,206,229, - 75,132, 79, 59, 52, 83,237, 93,180,224,245,169, 42,185, 92,108, 44, 53,162, 85,203,230,210, 87,231,204,125,129, 56, 72,246,218, -218, 25,181, 71,128,131, 68, 38,251,114,249,251, 11, 37,159,252,116, 39,161,200,136,162, 31, 47,164, 71,207, 95,180, 52, 91, 32, -148,110, 85,123, 4, 56,216,234, 50,155,205, 40, 45, 45,133,209,104,132,201,100, 66,114,226, 95, 99,126,251,233,205,161, 45,155, - 57, 14,149, 72,165,160, 0,242,139, 45,136, 73, 53, 96,224, 19,131,249,157, 59,117, 10, 84,186,250, 79,175,206,149,155, 27,151, -199, 81,190,234,240,207,123,248,223,255,114, 29,223, 30,190,130,224,223,175,227,242,153, 99, 22,202,153,239,221, 78, 66,229,230, -237,163,114,107, 31,175,114,239,144,126,175,120,180,187,106,107,155, 25, 12, 6,131,193, 96, 60, 26,212,120,136,176,164,164, 56, -246,169,167,167,193, 85,235,162, 28, 59,224,121, 81, 72, 84, 46,244,169,241,184, 27, 25, 10, 67,137, 25, 34,135,150,128,212, 5, - 45,188,154,227,230,237, 96,211,166, 53, 71, 10, 57, 75,105,108, 77,190,177, 99,221, 60, 92, 53, 10,222,154,213,158, 23, 35,111, -231,116,222,179,228,107, 60,243,140,210,121,205,106,207,139,113,209, 10,158, 92, 74,123,189,240,220, 20,194, 35, 20,111,189,181, - 0, 99, 71, 13,195,255,189,240, 44,249,230,155,157, 61,108,237, 12, 7,225,167,139,223,249, 64,156,158,107, 49, 94,142, 44, 44, -149, 43,100,178,243,119, 10,139, 2,189, 60,101, 35,198, 63,159,114,100,255,151,159, 0,120,206, 22, 87, 69,176, 50,155,205, 48, -153, 76, 0, 96, 5, 0, 30,175,236, 49,171,192,136,140,220, 82,164,231,150,194, 98,229, 48,254,233,231,100, 87,174,222,120, 14, - 64, 13,231, 99,113,156,217, 98,198,143,191, 92, 67,242,149, 3, 28,225,241,243, 42, 78,114, 7,202,194,149,139,139,231,217, 81, -227,159,213,136,165,101,135, 91, 11,138, 74,241,205,231,171,109,237, 62,131,193, 96, 48, 24,140, 71,132, 26, 3, 86, 92,216, 31, - 93, 1,192,183,235,208, 44,165, 84,224, 40,224, 17,164, 39, 69,225,155,181,243,192,113, 20, 35, 94, 90, 3,149,151, 11,100, 34, - 62, 74, 11,179, 10,179,238,158,118,170,109, 69,132,152, 7,111,217,150,236,245,242,236, 86,234, 61,123, 10,133, 0,176,103, 79, -161,112,246,172,102,234,207,182,197,122,117,239,211, 25,212,106,197,168,177, 79,225,233,201, 79, 35, 46,205,128, 31,206, 38,160, -168,216,104,211,253,207,228, 26,255, 14, 90, 55,247, 97,175, 61, 63, 76, 33,224, 19,226,221,220,142, 41,233,120, 44, 0, 0, 32, - 0, 73, 68, 65, 84,159,168, 55, 91,248,124,161,245,208,149,188,148,241,227, 39, 59,159, 58,250,253, 32,185,198,191,131, 65,255, -215,141,186,124,165,165,165,176, 90,173, 40, 45, 45,133,217,108,134,163,115,203,163,131,159, 90,155,148,154, 86,112, 36, 45,167, -164,123,145,217,130,244,220, 82,100,228,150, 34,183,200, 4, 23,149, 3, 44,102, 99,187,154,124,148,210,111,159,124,106,218,179, - 0,120,132,103,249,186, 32,229,175,200,138,105, 21,225,106,216,216,103, 52,103, 67,162,112,247,234,177, 28,202, 89,204,101, 27, -142, 99,183, 42, 97, 48, 24, 12, 6,227, 95,198,189, 67,132,132, 16, 90,211,241,207,228,244,108, 56, 41, 5,208,184,121, 97,234, -188,117, 0, 0,171,213, 12, 74, 1,139,213,182, 17, 6, 40, 21,254,242,202,108,175,216, 22, 94, 36,111,234, 51,242, 98, 0,152, -250,140,188,184,133, 23,201,123,101,182, 87,108, 65,137,210,100,177, 90,113, 62, 44, 3,107,190,251, 11, 75,119,222,194,241,171, -182, 15,135,197, 23,139,102,175, 94,181, 82, 36,224, 19, 18, 22, 95, 88,152,148,101, 41,228, 11,133, 38,185, 92, 76,141, 84, 80, - 26,151, 73,179,158,120,242,133,187, 60, 62,169,246, 48, 94, 5, 21, 87, 14, 86, 28, 34,172,216,131, 69, 41,165, 4,224, 56, 98, -181, 38,101,150, 32, 81, 95,140,196,140,255,149,244,156,210, 26,143,144,170,220,188,125,236,212,202,227, 14,246,234, 23,236,237, -212,207, 41,100, 14, 39, 84,110,222, 62, 21,211, 42,194,213,197,176, 20, 68, 93,255, 53,221,106, 50, 76, 42, 72,190,161, 43, 72, -190,161, 43, 72,186,213,197,230,141,192, 96, 48, 24, 12,198,191,152,218,178,200,191, 13, 30, 0, 80, 74, 73, 69,169, 58, 3,165, -192,157,248, 76,136, 5, 28, 60, 90,180, 6,173, 20, 35, 40, 0,139,213,182,237, 16, 28,156,146,212,170, 77, 17,183,112, 97, 66, -207,182,237,156,110,206,158,213, 44,162,109, 59,167,155, 11, 23, 38,244,108,213,166,136, 51, 91,132, 86, 90, 62,222, 86,197,216, - 90,229,195,241,219,218,149,110, 29, 2, 90,242, 63,216,115, 39,225,229,207, 34,111,139, 68, 34,179,135,179,156, 52,215,201,249, -158, 26,153,184,212,204, 43,245, 9,236,100, 4,143,116,170,205, 82, 17,176,140, 70,227,125, 37, 75, 31, 53,230,228, 15, 11,198, -186,235, 28,158, 79,214, 23, 35, 33,195,128, 68,189, 1, 9,122, 3, 12,165, 22,220,250, 43, 26,224,139, 66,171,115,170, 85,142, - 39,246,238,254,214,179,131,127, 43,109,128, 79, 11,237,151, 59,191,245,148, 74,237, 79,168,220,188,125, 60,189,124, 67, 46,253, -250,189,230, 98, 88, 10,226,111, 95, 77,179,148,230,239, 45, 74,143,248,173, 30, 29,103, 48, 24, 12, 6,227, 95, 79,109, 89,228, -223,136, 77, 35,185, 55,247,208,225, 82,104, 44,218,249,181,132,157, 90,133,136,168, 36,240,121, 66,240, 8, 96,182,216, 30,130, -168,201,252,221,250,245,118,136,143, 85,240, 62,219, 26,235,245,202,108,175,216,245,235,237, 46, 80,147,249, 59, 0,211, 40, 45, -187, 55, 98,197,192,166, 54,238, 28, 43,115,115,230,102, 58, 71, 57,255,106,116, 81, 22,143,199, 47,117,178,147,114, 78,118, 18, -158,147, 74, 44, 20, 9,249,156,133,242, 76, 30, 90,175, 18,202,113, 29,108,241, 85, 62, 68,104,181, 90, 65, 8,207, 10, 0, 28, -199, 41, 18,179,138,145, 87,194, 71,122,110, 41,114, 10, 76,240,118, 87,224,215, 83, 7, 12, 86,115,241,158,234, 92,124,161,200, -174,181,151, 7,222,254,112, 61,138, 75,173,184,147, 92, 8,145, 68,226,162,115, 9,188, 49,237,229, 69,146, 87,183, 71, 97,250, - 32, 39,188,241, 71, 84,178, 33, 93,186,200,246, 94, 51, 24, 12, 6,131,193,120, 20,177, 41, 96, 41,229, 82, 80,190, 20,127,132, - 68,193, 55,160, 61,118, 30,188,140, 54,237,122, 32,181,192, 2, 10, 94,157, 87, 15, 86, 48,127,145,225, 26,128,107, 99,199,186, -121,140, 27,231, 62,152, 82,225, 47,159,125,158,151, 4, 0, 91,247,245, 7, 5,192,113, 20,148, 2,148, 43, 11, 90, 54, 67, 4, -241,177,169,249, 45,188, 92, 20, 8, 79, 50,149, 42, 36, 34,158,131, 66,204,215,216,137, 69, 34,129, 0, 86, 74, 74, 83, 83,163, - 74, 9, 16,103,139,174,226,208, 96,197,163, 92,233,122,244,137, 39,215,232,227, 18,242,174,122,103, 27, 58,228,153,196,160, 20, -240,118, 87, 32,244,226, 17,107,122,242,221, 59,197,233,183, 63,175,206,197,113,224,155, 44, 28,110, 68,231, 33,183,200,140,220, - 66, 19,122, 15, 28, 45,234, 29, 52, 6,127,132,102,130,179,152,177,250,139, 35, 5, 86,106,126,154,210,112,179,237,157,102, 48, - 24, 12, 6,131,241, 40, 98,211,205,158,173, 28,133,179,147, 35,164, 10, 53, 98,211, 77, 40, 32, 90,228, 24, 40,172,214,178, 61, - 88, 53,237,104, 34,132, 4, 85, 87, 31, 28,156,146,244,243,207,250, 29,193,193, 41,149, 78,224,254,223,158,171,123,143,220,223, - 3, 86, 77, 78, 66,173,191, 30, 60,118, 58,111, 76,119,141, 3,143,207, 47, 22, 9,121,165, 2, 17,223, 36, 18,240,204, 34, 1, -207,168, 83, 11,249,167, 15,237, 19, 83,130,211,117, 57, 75, 74, 74, 16, 20, 20,132, 17, 35, 70, 96,236,216,177,152, 56,113, 34, -124,124,252,181, 60, 62, 49, 82,194,113, 26,113, 1, 90,107, 8, 4, 37,137,248,109,223,199,134,208,243, 63,223,176,150,150,140, -166,149,142,105,222,231,164,148,203,206, 43, 69,137,201,138,156, 66, 19,114,138, 76,176,104,122,226,231, 63, 83, 80,108,180, 34, - 62,228, 64,177, 62, 45,105, 94, 73,250,157, 26,175,194,172,173,239,141,129, 57,153,147, 57,153,147, 57,153,243, 81,112, 62,110, -216,176, 7,139,162,149,171, 2,109,220, 21, 40, 49,105, 81, 98,180,162,168,196,138,124,131, 9,249, 6, 51, 98,211, 12, 8, 61, -216,248,134,148,237,181, 2, 72,249,115,144,178, 96,103,235, 62, 44,177,201,248,225,186,213, 31, 77,218,215,169,163,241,213,145, -174,205,110,198, 26, 83, 8,225, 21,243,248, 2,179,163, 74, 32,140,136,184,169,191,112,246,104, 63,169,197,250,108,109, 30,139, -197,146,231,238,238, 14,224,254, 91,229,248,183,150,141, 61,127,228,173,150,253,199,172,214,124,178, 98,129,129,199, 23,113, 68, - 32, 10,181,154,139,247, 22,167,223,222, 74,107, 57, 97,140, 39,146,254,117,233,122,120, 15,123,199,102,184,155, 92,132,162, 18, - 11, 76, 22, 14, 14, 74, 17,146,110,157, 48,197, 70, 92,253,190, 32,249,198, 78, 27,187,202, 96, 48, 24, 12, 6,227, 17,167,206, -128, 85, 82, 82, 18,219, 39,104, 52, 56,142,194, 74, 1,206, 90,190,167,137,251,223,222, 38,171,185,164,214, 61, 47,182,192,113, -214,203,159,110,223, 49,162, 83,183,254,252, 0, 79, 37,242,179,210,112,241,252,239, 22,112,244,130, 45,203,103,102, 70, 22,202, - 93,188,159,154, 52, 97,220,254,231,254,111, 86,110,191,129, 3, 21, 90,173, 75,105, 82,114,146,225,171, 93,187,205, 39,142, 6, -247,227, 96,153,156,153,121,231,239, 67,206, 87, 34, 55, 55,119, 99,117,245, 79,244,105,214, 27, 64, 75,190,128, 24, 13, 25,145, -138,250,244, 45, 51, 57,113,252, 71, 31,190, 31,247,204, 75,175,139, 91,185,183, 70, 70, 30, 31,177, 73,105,136, 56, 27, 92,154, - 28,121,229,167,252,164,107,181, 94,217,200, 96, 48, 24, 12, 6,227,223, 69,157, 1, 43, 33,188,108, 60,172, 7, 77, 65, 90,198, -180,157, 59,191, 93,254,237,174,125,189, 75,140, 70,119, 10, 81,162,213, 98, 60, 83,104,197, 82, 91, 29,134,180, 59, 87,157,157, -125,218,126,245,197,167,239,124,181,227,179,254,224,172,126, 4,136,163, 4,167,165,102,235,115,117,133,171,218,200,204, 44,216, - 54,248,169,181,197, 89, 89,133,223,214,119, 89, 67,102, 68,154, 82,215,170,217,182, 13, 31,174,225,241,248, 67,172, 86, 78,200, - 89,205,119,173,166,146,143,139,245,183, 15,214,182,247,139,193, 96, 48, 24, 12,198,191, 15,155, 78,114,255, 39,200,206,142, 42, - 0,240,106, 99, 61,153,153,145,133, 0,154,252, 74,188, 91,145,121, 63, 0,248,161,161,203, 23,166, 71,235, 97,227, 40,242, 12, - 6,131,193, 96, 48,254,221,216,116,146, 59,131,193, 96, 48, 24, 12, 6,195,118, 8,128,106,175, 4,168,207,157,178, 27,114, 53, - 65, 93,126,230,100, 78,230,100, 78,230,100, 78,230,124,252,156,117,185,235,147, 63, 30,105,104,249,136,233, 15,162, 0, 8, 98, - 78,230,100, 78,230,100, 78,230,100, 78,230,252,175, 21,118,136,144,193, 96, 48, 24,255, 57,156,157,125,148,206,206, 62, 74, 91, -231, 87,104, 2,116, 10, 77,128,238, 65,182,137,241,120,193, 2, 86, 35, 33,132, 16, 95, 47,229,220, 33,253, 91,254,236,215, 74, - 62,246, 97, 57,149,186, 86, 26,149,103,215,243,106,143,182,195,155,162, 13, 85,218, 35, 9, 12, 12,236, 25, 24, 24,216,147, 16, - 34,105, 10,167, 66,231, 59,165,153,119,207,179,186,214,157,126, 87,186,248, 76,104, 10,103,101, 84,110,222, 78, 42,207, 46, 63, -168,220, 59,228,168,220, 58,228,171,154,117, 57,163,214, 4,180,170,107, 57,207,177, 43,253,150,237, 11,219,235, 57,118,165, 95, -117,211, 29,135,111, 86,189,255,221,221, 21,206, 99, 86,219,252,197,204,184, 31,207, 62,207,216,187, 13, 88,224, 84,223,229, 60, -124,123,134,121,181,237,151,225,238,211,163,218,123,126, 86, 71, 51,191, 94,215, 90, 4,246, 73,111,230,219,235,106,125,215,247, - 95, 69,166,109,213, 83,230,216,252,136,212,177,249, 81,169, 83,171,129,141,245,185,185,185,201,252,253,253,135,245,236,217,115, -102, 80, 80,208,107,157, 58,117,154,209,162, 69,139, 33,132,144,135,118,145,149, 66,231,187,184, 84, 72, 50, 75,133, 36, 83,161, -243, 93, 92,215,252, 74,157,223,114,194,179,166, 16,158, 53, 69,169,243, 91,254, 79,180,209, 22,164, 46,190,205, 21, 58,223,245, -106,215,192,203,114,157,207,232,250, 46,239,232,232, 56, 68,171,213, 62, 89, 81, 28, 29, 29,135, 60,136,118,254, 87,169,247, 7, -156,144,206, 66,165,171,249, 53,177, 84,246, 60,143, 7,117,198,221,139,238, 15,162, 97, 77,133,166, 85,247,171,124, 30,223,163, -114,157,149,179, 38,233,163, 47,117,105, 10,191,111, 11,217,244,119, 22, 78,123, 99,202,164,160,230, 65,163,230, 17, 0,193,213, -205,167,242,236,250, 39, 33,188,150, 60, 2,240,120, 4, 60, 2, 0, 52, 37, 51,250,210,223,110, 62,109,171,179, 2, 59,109,235, -150, 98,165,230,108,159,177,175,184,132,252,186,123,167, 66, 19, 48,184, 72, 31,126,179,177,125, 35,132,104, 90,183,110,221,213, -199,199,199,105,238,220,185, 34, 0,248,228,147, 79,218,180,105,211, 38, 43, 42, 42,234, 10,165, 84,223, 16,175, 66,235, 55,109, -227,218,101,223, 14, 31, 62, 2, 41,153, 69, 88,189,126,203, 0,165,139,207,196,194,180,200, 3,141,109, 51, 0, 56, 56,180, 84, - 11,212, 14,183,230, 45, 92,166, 29, 54,160, 43,191,176,196,130,227,103,175,247,221,189,101,217,101,181, 38,160, 91,190, 62, 60, -186,166,101, 57, 67,222, 18,157,146, 14,227, 12,121, 0, 48,165,234,116,119,165, 57, 72, 35,179, 14,115,149, 8,174, 3,248,177, -206,182,120,245, 57, 33,148, 72,154,243,120, 60, 84,188,247,124, 82,246,254,155, 77,197,241, 73,127,157, 29,218,168,206, 54, 17, -234,230,221,211,192, 23, 56,241,200,255,218, 71,202, 63,167,132,210,252,212,200, 63,234, 29,136,170, 66, 8,177,107,219,198, 62, -112,100,239, 62, 95,157,137,201, 86,120,246,127,253, 8,161,188,207,226,207,174,187, 97,203,242, 82,169,212,225,208,161, 67,154, - 97,195,134,217,233,218, 62,121,198,150,101,148, 98,105,192,225,195, 7, 69,195,134,217,190,153, 21, 90,223,193,224,241,118, 17, - 64,200,113,244, 19, 62, 71,191, 47,204,138,140,162,229,199, 69,108, 69,174,243,155,206, 3,181,249,123,134, 3,185,106, 72,143, -216, 81,159,117, 84, 64, 8,225,203,180,190,207,203,164,210, 5,222,190,254, 62,177, 49, 81,145,249,249,121,235,139, 51, 34,119, - 80, 74,235,113, 87, 87, 0,102,203,155,191,254, 17, 50, 92, 32, 20,146, 97, 79,116,231, 3,248,189, 33,109,170, 64,167,211, 61, -185,121,243,230, 86, 61,123,246, 4, 0, 88, 44, 22,245,254,253,251, 93, 62,252,240, 67, 5,108,248, 27,170, 14, 66,136,187, 70, -163,241, 20,139,197,238, 0, 96, 52, 26,147,245,122,125, 2,165, 52,185,174,101,149, 46,173,157, 9, 4,203,254, 56,123, 86, 0, - 0,125,251,246, 91,222,188,239, 92, 7,190, 72, 89, 92,221,252,102, 99,129, 2,192,235, 23, 47, 93, 32, 0,208,163,123,207, 69, - 10, 77,192,167, 69,250,240,244,134,180,189, 41,144,233,252,186,243,128, 55,122,247, 27, 60,254,233,201,211,120,129,222,158, 24, - 50,120,208, 91, 0, 14,213,199, 35, 16, 8,100,151, 47, 95,110,205,227,241,248, 22,139,165,164, 71,143, 30, 9,141,105,151,187, -111,175, 63, 9,120,205, 76, 22,227, 23,250,232,171,203,171,126,246, 8, 33,124,187,102,157,222, 1, 95,240, 18,199,113,137,249, -241, 87,122, 53,102,125,143, 58,245, 10, 88,132, 16,190,218,163,227,185, 73, 79, 79,109,251,225,194, 25,210, 77,187,126,129, 99, -203,110,225,217, 49,151, 3, 30, 84, 3, 27, 11,159,199,247, 56,121,242,132, 86, 38,225, 3, 0, 10,139,173, 24,110,195,151,173, -189, 87,247,211, 60, 66,124, 43,110,233,109,181,152,164, 2,161,184,132, 0, 0, 41,187, 58,192,217,173,197, 41, 87, 87, 71,249, -148, 73, 65,205,119,237,251, 37, 41, 33, 41,235, 76, 77, 62, 30,143,239, 17,124,240,144,214,221, 73, 10, 1,159,160,176,216,130, - 97, 35, 70, 91,171,155,215,213,213,113,228,148, 73, 65,205,247,124,247,107, 66,106,106,246,145,218,218, 41,119,245,233,172,176, -211, 29, 31, 63,243, 67,167, 18,158, 35,150,174,216,232,124,246,216,158, 51,253, 71, 78,227,226,227, 19, 75, 40, 33,225, 57,217, -169,175, 21,166,222,189, 93,103,167, 81,246, 30, 43,149,202, 86, 74,165,178,195,240,225,195,165, 11, 22, 44, 16, 14, 24, 48,224, -222,244, 25, 51,102,136, 78,159, 62,237,186,118,237,218, 17,110,110,110, 37,133,133,133, 55, 10, 11, 11,163, 41,165,213,246,165, - 58, 92, 92, 52,115,158, 26, 55, 26,131,198,191, 2, 43, 71, 48,227,229,215,113,226,216,143,179, 0, 52, 73,192, 50,203,213, 31, -190, 52,115,129,166, 71,215,142,252,101,123,110, 67, 38, 22, 96,104, 23, 95,242,194,220, 37,246, 59, 54, 45,251, 18, 64,255,170, -203,120,142, 93,233,199, 25,242,150,180,117, 54, 78, 30,211,179, 37, 14,238, 53, 78,246, 8,122, 11, 60,185,221,242,132,224,197, - 17, 0,208,122,248,171, 42, 7,153,108,179,155, 61, 95, 43,177,234, 55,183, 30,254,234,175, 81,199, 54, 21,212,214, 22,161, 68, -210,124,223,222, 61,222, 14, 74, 17,248,124, 2, 1,143, 7, 62,159,160,212,100,197,132,137,147,155,162,187,229, 63,174,222, 35, -120,192, 11, 0,192, 1, 95, 23,103,220, 57, 90,159,247,132,240, 69, 78,135, 15,254, 36,208,218, 73,192,231, 19,240,121, 0,159, - 71, 16,151, 94,140,233,211, 95,176,107,100,251, 52,195,123,107,187,158,254,180,255,208, 30,109, 29,219,127,119,129,216,245, 24, -254,180, 83,102,137,252,249,125,193,191, 79,246,236,247,198, 37, 74,185, 53,137,127,108, 56, 89,155,167,180,180, 52,125,232,176, -225,106, 34, 80,200,127,253,121,103, 63, 1,143,192,108,165,176, 88, 41,172,229,247, 46, 45,251,123, 37,224,241, 8, 40, 71,241, -210, 75,211, 49,116,216,112, 3,103,225,146,106,115,223, 7,143,183,235,248,175,231, 53,165,102, 14,107, 55,239, 88, 86,148,167, - 95, 22, 19,225, 20, 39,215,249,188,110, 72,143,180,249,190, 21, 60,208, 46,137,209,161, 51,247, 28,190,136,182, 1,254,176,114, -101,237,244,245, 80, 96,207,145,139,240,243,245, 43,107, 55, 71,225,211, 76,137,174, 93,186, 2, 64,189, 3, 22, 33, 3, 4, 10, -157,223,222, 49, 19,158,155, 48,126,194, 20, 56, 58,168, 97, 52,149,250,252,118,226,232,246,173,155, 87,247, 38,132, 60, 95,175, -112, 72,173,247,126, 23, 40,199, 53,122, 47,147,155,155,155,166,107,215,255, 13,167,104,177, 88,224,229,229,133,228,228,100,223, -250,186, 8, 33,114, 87, 87,215,145,219,182,109,211,142, 24, 49, 66,232,226,226, 2, 0, 72, 75, 75,115, 63,126,252,120, 39, 55, - 55,183,140,212,212,212, 35,148, 82, 67, 77, 14,171,153, 39,226, 9,192,151, 74,229, 0, 0, 10,194, 91, 48,231,217,246, 58, 87, -183,210,234,230,215,235,211,196, 11, 95,249,157, 8, 4,162,242,249,193,163,148, 35,213,205, 11, 0,142,142,142, 65, 66,161, 80, - 86,221, 52, 19, 95,221,131, 10,237, 94,228,241,121,101, 31, 86,139, 89,159, 29, 31,226,111,107,255, 21, 58,223, 64,161, 88,180, -245,153,231,102,246,154, 48,126, 44, 92, 53,118,248,245,220, 77,204,154,243,134,217, 98, 50,175,183,213, 83, 25, 62,159, 47,200, -200,200,136,115,112,112,112,105,200,242,247,185,120,164,229, 47, 39,142,105,127,253,237,212,162,117, 27, 54,205,118,243,233,107, -230, 40,189,119,159, 97,207,182,131,132,131, 71, 77, 82,107, 91,247,144,110,122,239, 69, 97, 99,215,247,168, 83,175, 63, 30,165, - 91,192,107, 19, 39, 77,106,251,202,172, 25,210,215, 54,159,195,111,123, 63,201,108,170,112,165,210,250,246, 36,124,193, 76,194, -231, 43, 8,143,136, 57, 43,151,104, 49, 26,151, 27, 50, 35, 83, 27,235,182,114,192, 15,231, 51,234,181, 12,161,104,179,235,251, -159,181, 58,123, 9, 74,140, 22, 60, 61,101, 26,118,237,250, 86,229,172, 22,163,196,104,193,154,117,235, 10, 10,227,142,104,227, - 18,115,146,131, 70,191,113, 50, 58, 54, 35, 52, 33,181,228,251, 26,125,132, 7,173,157, 4, 43,246, 69, 66, 45, 19,194, 65, 37, - 2,143, 71, 42, 77, 39,196,167,133, 98, 78,179,102,154,129, 41,169, 57,121,149,156,187,107,114, 42, 92,219, 13,181,115,112,219, - 59,110,230, 10,251, 59, 25, 2, 80,152, 16,165,150, 98,210,243,175,170, 91,185,200,160,144,242,237, 99,226,147, 93, 23,188,249, -230, 57, 59,109,235,110,121, 25, 81, 49,117,245,187, 69,139, 22,227, 71,141, 26, 37,159, 63,127,190,176, 89,179,102,248,122,207, -254,230,125,135, 78, 28,157,146,154,222,140, 82, 10,157, 86,155,248,210, 11, 19, 15, 29, 61,122, 52, 62, 49, 49, 81,184,122,245, -234,238, 63,253,244, 83, 0,234,241,159,168,149, 82,148,148, 90, 97, 45,255, 97,212,231, 85,251,189, 86, 35,132, 16,226,238,238, - 46, 73, 78, 78, 46,173,248,225, 32,132,220,219,152, 74,247,142, 67,159,232,223, 93,176,237, 88, 44, 10, 75,172, 80, 72,133,136, - 77, 55,160, 75,199,118,228, 11,171,165, 67,117,206,233,147, 70, 46,209, 41,233,176, 49, 61, 91, 66,235, 32,199, 87,159,174,192, -193, 11, 49,195,210, 11, 9,156,199,172,158,233, 42, 17, 12,214,200, 69,155, 7,116,105,237, 50,168,115,115, 92,233,210,218,229, -108,200,237,200,118,147,214,207, 77, 46, 20,254,154,125,108,110,181, 65,139,207,227,193, 81, 37,198,151,199,227, 32,151, 10,160, -144, 10,160,144,148, 61, 86,126,255, 27,130,204, 45,160, 25,159,179, 78, 87,187, 5, 76,159, 60,105,162,219, 51,147, 39, 82,240, -121,216,255,195,161,177,187,119,239, 74, 85,186,248,126,105,229,241,119, 20,167,132, 39,214,229, 34, 60, 64,107, 39,198,155, 95, -134, 66, 45, 19, 66, 37, 23, 66, 45, 23, 98, 80,123, 13,248, 13, 60,145,128, 16,226, 48,107,108,171, 17, 55,191, 13, 26,232,235, -169,244,190, 17,149, 23, 62,125,249,213, 13,167,115, 7,190,246,233, 39, 1, 78,133,185, 70,193,210, 5, 47, 9,146, 82, 82, 6, -238, 63,116,102,144, 91,183,233,183, 45,166,162,183, 51,110,124, 95,237, 30,219,196,136, 63, 59,121,244,156, 40, 53, 21,154,111, -221,184,157,212, 58,167, 84,130,176,184,124, 40,164, 2, 40, 43,182,173, 84, 0,133, 84, 8,165, 84,128,148,164, 88,100, 23,241, -207, 37, 59,241, 6,210,211,127, 90,234,211,246, 18,147, 21,215, 99, 10,209,194,183, 35, 92, 93,221, 96, 28, 49,181,197,165, 83, - 63, 4, 43, 92,253, 87, 22,165,254,245,182,173,158, 61,135, 47, 98,209,235, 51, 67, 8,112, 13, 0, 40,208,105,233,170, 45,157, -151, 45,122,229,190,186, 5, 31,108,234, 92,159,246, 85, 64, 8,225,203,117,190,187,251,143,156, 54,161, 93,143, 33,136,142,141, -197,177, 67, 87,241,196,224,225, 24, 49,122, 60,140,198,210,103,119,108,219,116, 5,192,150,170,203,170, 92,253,251,180,107,235, -191,219,221,205,173, 25,199,149,221,149,131, 82,160, 79,255, 65, 88,248,218, 75,224, 40, 69,135, 78,221, 6,141,152, 60,151, 82, - 90, 22, 4, 51,179, 50,139,110, 71,132, 7, 21,167, 71, 92,178,181,141, 37, 37, 37,102,189, 94,143,235,215,175, 35, 50, 50, 18, - 97, 97, 97,200,202,202,130,157,157, 93,189, 6,126, 38,132,168,219,183,111,255,204,169, 83,167,164, 14, 14, 14,247,234,141, 70, - 35, 84, 42, 21,158,121,230, 25,225,144, 33, 67,220, 71,142, 28,249, 28, 33,100, 15,165, 52,191, 58, 79,113,214,157, 20,181,139, -223,231,253, 7,244,159, 13, 0, 50,181,107,204,230,175, 15,133,213,182,110,153,157, 91,243, 94,189,122,183, 6,165, 32,160, 27, -139, 50,111,167,213, 52,175, 64, 32, 80, 92,188,120,177, 21,159,207,191,247,251,202,113, 28, 62,251,234, 59,191, 95,254,184, 53, -126,213,154,181, 82,181, 66, 2,125,158, 17, 47, 78, 29,103,243,111,176,220,197,111, 68,239,222,253,131,151,125,240,174, 64,169, - 80,224,228,165,104,204,125,237,205,146,212,184,208,181,148, 19,110, 41,202,184, 93,191, 31,185,191,211, 36, 3, 94,123,123, 40, -161, 26, 51, 84, 58,235,217, 49, 82,163,217,138,220, 34, 51, 74, 77, 86, 88, 57,138,188, 34, 51,194, 19, 10,224,172, 22, 55, 68, -221, 21,128, 6,128, 30,192,149, 42,175, 81,254, 28,213,188,206, 68,217, 62, 17, 39, 0, 70, 0,149, 87, 94,241,186,166,250,138, -229,195, 1,248,151, 59,173, 0, 46, 3,200,169,171,193, 2, 66, 8,165,148,222,251,166,175,250,186, 50, 34,177,114,210,162,185, -211,164, 31,238, 9,193,111,123, 63,202,212, 71, 93,168,232, 0,180,173,187, 95,203,136,186,255,112, 23,181,225, 82, 75,153, 91, - 64, 51, 1,225,175,239, 63,160,223,144,217, 47,191, 12,223, 86, 30, 34,171,213, 74, 67, 35, 99,204, 59,119,124,245,188, 93,179, -118, 27,242,147, 66,151, 84,236,106,180,197, 89, 25, 43,103, 77,170,186,199,202,202, 89,239,251,111,182, 58, 39, 33,128,189, 66, -132,207,143,198,128, 82,128,128, 66, 45, 23, 98,223,233, 36,196,132,252,152, 63,170, 67,126,209, 51,171,222, 31, 52,112,196,171, -167,194,163, 74,190,207,200, 40, 57, 65, 41, 77,171,201,201, 35,128,128, 79,160,150, 11, 97, 39, 23,193, 94, 33, 2,169,244,195, - 85,249,176,224,128, 17,175,254,114,234,124,252,219, 0,244,148,210,210,234,156, 50, 23,239,174,106,123,143,239,199,207, 94,173, -186,149,100,129,128, 15,180,116,145,193, 81, 37,130,209, 66, 16,167, 55,149, 45, 3,123,204, 93,240,129,227,162, 55,102, 31, 37, - 36,160, 45,165,225,166,218,250,110, 48, 24,196,211,166, 77, 19,154,205,102,211, 51, 47,206, 27,146,150,166, 31,251,217,198,143, - 37, 90,173, 14,134, 18, 11, 66,194,238,250, 47, 91,246, 65,203, 67,199, 79,255,252,254,155,179,130,135, 13, 27,102,247,221,119, -223,113,181, 57,171,162, 79,207,252,244,171,221, 7,190,253,100,237, 71,184, 29,159,131, 29,219,182,128, 90, 45,159,215,182, 76, -101, 39,165,148,190,253,246,219,178,159,127,254,217, 67,161, 80,228, 27, 12,134,202,135, 42,121, 60, 30, 17,164,103, 27,224,172, - 18, 67, 36,224, 65,231, 32,133,214, 78, 2, 33, 31,224, 17, 98,173,206,185,227,251, 35,203, 57, 67, 30, 14,238, 53, 78,254,234, -211, 21,248,191, 57,239, 32, 52, 83,124,156, 39,183, 91,254,202,228,241,139, 52, 50,235, 48, 55,123,158,118, 80,231, 22, 80, 72, - 69, 88,252,234, 52,116, 11,137,211, 38,231,114,239,232,139,249, 29, 1,188, 83, 93,223,121, 60, 2, 1,159, 64, 37, 23,226,248, -238, 53, 25, 69,121,250,188,138, 67,111,198,210,146,248,218,250, 92,219,246, 84,232,124, 23,117,238,216,126,197,236, 25,211,121, -189,123,118,163, 60,158, 16,153, 5, 70, 66, 41,240,218,220, 89,120,101,214, 75, 46,137, 41, 25, 75,183,108,249,124,137, 82,235, -255, 97, 97,198, 95,239,215,230,228,145,178,189, 62, 74,169, 0, 74, 89, 89, 96, 81, 74, 5, 40, 49, 90, 65,254,159,189,251,142, -111,170,220,255, 0,254,121, 78,102, 51,186,119,161, 45,179,236,189, 55,200, 18, 5, 5, 68, 65,112,224, 0, 68,175,202, 21, 21, -113, 32, 23, 5, 68,134,160,168, 12,153,138,202, 18, 68,150,236, 97,101, 21,202,106, 11,165, 3, 74,119,155,166,217,243, 60,191, - 63,218, 98,129,142, 20,235,239, 94,241,251,126,189,242,162, 73, 79, 62,121, 78, 72,210,111,158,113, 14,131,196, 63,186,131,158, -149,244,220,102, 22,164, 85,252,141,251,206,204,128,168,150,251,127, 77,241,110,166,251, 81, 23,155,154,121,241,163, 51,241, 57, - 39, 57,231,133, 81,125,254,253,140,195,197, 97,180,186,144,154, 99,134,203,193,217,115, 67,162, 81,127, 20,107, 58,123, 85,220, - 58,198,152, 79, 89,225,124,103,102, 70,236, 70,107, 80,235,145,163, 23, 45, 89,118,106,254,199,239, 74,242,245,118,136,156,195, - 75, 33,129, 74, 33, 45,189, 72, 96, 49,233,177,244,171, 21,217, 46,176,145,252,208, 33, 87, 85,237,188,139,200,199,141,120,168, -247,247, 12, 80, 48, 65,158, 17, 17, 93, 47,186,255,176,103,189,250, 63,242, 20,220, 46,251, 52, 77,104,179,131,166,156,132,253, -158,100,182,106,209, 28, 12,136, 51,230, 36, 78, 2, 0,109,104,211,175,155, 53,109,214,225,206,219, 26, 55,110,122, 87,129, 85, - 89, 38, 99, 76, 80, 5,199, 76,104,220,172,245, 91, 47,189,191,172, 94,106,150, 25, 1,145, 49,184,120,254, 44,118,253,240, 69, -156,197,160,155,191,107,251,150,183,102,125,178,184,237,176,225, 79, 96,219,214, 31,222, 96,140,125,201, 75,252,241, 62, 18,197, -113,107, 86, 46,143,148, 41,148,112,186, 68, 56,221,188,228, 95,151, 27,133,133, 58, 56, 93, 34,188,212,222,112,137, 12, 78,183, - 8,167, 75,132,205,238,210, 76,122,234,225,201, 0, 78, 84,212,206,186,205,251,238,145, 43,149,209, 28, 37,231,150,229,156, 67, -226,178, 11,225,225,225,223, 1,128, 82,169,132, 82,169,132, 40,138, 56,147,152,247, 74,112,179, 1, 47,161,180,176,115, 59,236, -233,186,212, 99,131, 43,219,247,176,176,176, 97,119, 22, 87, 86,171, 21, 70,163, 17, 71, 99, 79,249,174, 92,183,233,193,212,244, -140,134, 34,247,181,121,135, 52, 28, 12,224,182, 57, 73,229, 51,139,179, 19, 38, 71,118,155, 32,188,241,242, 51,141,151,172,217, -113,242,202,238, 89, 85,206,195,106, 48, 96,154,253,141,137,143,117,156,187,248,155, 43,133,199,190,154, 82,221,255,145, 84, 42, -149,229,229,229,165,151, 93,255,124,197,134,142,113,137, 55,135,127,182,232, 51,175, 51,215, 12, 56,159,154,137,103, 6, 68,225, -182, 63, 2, 85,100,106,195, 26, 5, 53,106,212,236,187,165,139,231, 74,175,100, 90,241,197,150,147, 56,176,237,235,163,217,185, - 39, 30,228,217,153, 21, 14,109, 86,151, 89,209,102, 30,108,227, 81,230,193,248,124, 24,173, 46,216,236, 46, 56, 69,142, 98,179, - 19,185, 69,118, 20,155, 29, 48, 90, 92,120,102, 96, 84,133,247,171,166, 30, 9,102,140,237,224,156, 15, 69,201,225,165, 20,229, -174,131, 49,182,163,180, 93,183, 93,159, 54,109,218,244, 57,115,230, 92, 44,219,182,236,246,178,109,171,186,189,220,253, 3,223, -121,231,157, 86,115,231,206,157,221,173, 91,183,239,127,251,237,183, 20,120, 82, 96,149,223, 9,198, 88,149, 79,176, 82, 46,141, - 80,123,251,151, 20, 28,127,116, 24,160, 94,171,190, 5,159,205,251, 79, 64,120, 76,215,244,172, 43,191, 71, 87,247,160,101,188, - 67,154,116, 87,169,212,191, 44, 88,176, 0, 99,134,245, 82, 93,207,119, 26,227,175, 91,114, 76,118,184, 66,130,155, 40, 62,154, - 61, 87, 59,119,222,167, 47,239,216, 46, 22, 1,248,180,162, 12,191,250,157, 78, 75, 88,185, 57, 86,140,129,139,238,140,194,212, -147, 29, 1,224,207,204,181, 50, 89, 93,144,148,206,157, 97, 12, 48,219,220,144, 72, 88,110, 81,226,143,151,198,206,250,232,129, -245,223,255,154,201, 5, 63,131,201,148,170,230,156, 87, 57, 4,193, 4,134, 98,179, 19,190,106, 25,252,180, 50,248,106,228,144, -148,123,115,149, 13, 11,174,223,176,247,102,122,122,193, 41,148, 20, 87,149,102, 74, 37, 66, 10,119, 59,173,156,187,189,135,118, - 10, 70,136,159, 2,225,254, 74, 40, 21, 82, 56, 93,128,197, 46,194,106,119, 35, 45,215, 2,131, 69,133,214,125, 30,111, 16, 24, -126,218, 22, 24,221,233,167,130,244, 83, 35,171,106,171,219,237,198,154,239, 54, 53,206,204,204,121,116,231, 79,223, 42,243,138, -157,136, 79, 51, 33,183,200, 6, 72,130, 49, 99,246, 23,202,183,167, 76, 24,190,102,195,230,244,254,189,186,164,215,240,105,133, - 41, 55, 97,125,235,238, 15,127, 61,116,232,112,213,197, 19, 59,113,229,236,254,143,141, 57,158,207,191, 98,140, 9, 27, 55,110, -116, 77,152, 48,193, 48,123,246,236,200,237,219,183,215,207,203,203, 59, 11,192,233,231,231,215,172, 73,227,232,115,123,119,239, -170,243,240,240,199,101, 25,249, 22,248,170,229,136, 14, 81, 35,246,232, 30,167, 66, 33,171,112, 62, 73,233, 48,224,147,117, 7, -188,141,237,177, 41, 15, 94, 44,240, 58,244,226,243,207,164,239, 61,146, 88,240,249,186,189,159,212,209, 58,207,122,137,121,159, -159,238,216, 40,108,218,191,158,194,156, 37,235,113,248, 76, 98,174, 73, 8,255, 56,203,230,250,245,195,209,111, 85,216, 86,137, - 80, 82, 88,123,171,100, 48, 21,231,233,175,158,217,213,164,166,207, 87, 37,158,217,251,211,122,161,208,224,196,141,124, 43,203, - 44, 52,192, 45,114,248,169,229,112,137, 28, 69,133,249,236,219,245,235,112,234, 84,172, 0,137,240, 2,128, 15,171, 10, 19, 88, -201,144,160,214, 75, 86,210, 3,164, 42,249,215,233, 22,209,180,113, 35, 44,255,124,161, 79, 80, 72, 40,122,246,246,124,206,179, -119, 96,116,219,239, 87,127,142, 67,191,197,245, 61,252,217, 23,157,180, 17,193, 75,124,234,182,152,239, 91,127,160,213,230,112, - 67, 95,164,131,194,126, 3,157,235,228, 33, 64,237, 70, 90,113, 56, 46,100, 95,209, 86, 55,156,149,127,126,203,217,224, 86, 35, -222,219,244,243,129, 57,131, 7,246,197,133,180, 98,168, 20, 82,120, 41, 36,240, 82, 72, 32, 99,110, 44,252,234,107,167, 78,111, - 24,154,127,225,167,124,143, 27, 92,202,148,155,176, 15, 37,223,118, 1,148, 44, 32, 89,191,228,189,181, 47,190, 53,111,240,131, - 35,158,101, 23, 78, 29,156, 14, 96,127,229, 9,127,112,139,119,239, 74, 69,183,137, 21,220, 86, 17,198,152, 16,210,168,227,119, -171,215,108, 24,221, 34, 38, 18, 57, 69, 78,100,234, 28, 56, 26,151,140,181, 43,223, 43,210,229, 92, 27, 7,135,209, 40, 50,151, -126,207,238,159,119,191,242,218, 91,104,217,170,109,189,226,140, 98, 31, 0,250,219, 30, 83,194,150, 61,253,252,196,209,161,161, -161,222,127,244, 96,113, 52,105,218, 2, 15, 61,242, 24,246,108,219,138, 75, 23,227, 33,242,146, 66, 73, 20, 57,138,116, 5,217, - 46,167,125, 77,101,237, 83,120,121, 69,175, 90,189, 46, 70, 16, 24, 28, 78, 17,118,151,136, 41,147,199,219, 39,189, 62,189,231, - 67,131,250, 92, 84, 72, 80,156,118, 61,203, 47, 54,238,114,107, 81,166,141,124,126,234, 66,185,213,230,134,222,236,196,206,111, - 42,175,113, 84, 1,209,221,218,118, 31,254,252,164,247,151, 43,149, 18,193,209,178, 73,100, 74,159,174, 45,111, 68, 69, 4, 25, -254, 51,247,139,206,199, 78,196, 61,244,196,216,231,189,158,105,214,129, 69, 4,170,188,199,143, 29,209, 70, 19, 24,245,180,169, -224,122,165,167, 54,147,169,253,139,162,234, 55,190, 53,148,168, 14,107,186,133,113, 52, 40,191, 13,103, 72, 49,103, 39,142, 4, -128,240,136, 40,171, 76,233, 83,229,148,128,219,238, 91,250, 58, 94,178, 98, 67,199,115, 73,153, 47, 46, 90,244,153,250,204, 53, - 3,206, 94,211, 67, 41, 23,224,112,138, 96, 30,118, 98,139, 92, 50,241,221,119,166,249,232, 76,110, 28,138,207,195,197,211, 7, -185,221,104, 29,171,118,249,140,212,132, 54,125, 26, 64, 35, 0,201,140,241,101,166,156,176,109,156, 31,170, 81,143, 45, 80,210, -203, 6,148,204,233,117, 75,149, 15,201, 20,154,110,140,241,150,140,195, 31,224, 55, 11, 74,255,166, 86,185,207,229,126, 54,229, - 36, 97,222,236, 15,176,120,229, 86,100, 22, 88,225,235,190,129,109,223,124,132, 55,230,124, 7,139,173,242,217, 11,213,213, 35, - 21, 21, 68,119, 22, 90,101, 63,151,109, 55,103,206,156,161,183,181,179,244,247,119,181,255,142,219,203,223,127,238,220,185,179, -203,253,190,210, 33,232,242,164,165, 33,172,186,157,242, 9,110,209, 80,238,163, 85,250,168,100,168, 31, 21,142, 49, 47,125, 24, - 20, 22,211, 35, 87,169,144, 74,126,218,176, 60, 32,223,162, 4, 19, 4,147, 39, 15, 10,148, 76,210,243,246,246,222,185,101,243, - 86, 52,140, 10,145,127,123,180, 48, 53, 46,197,114,171, 75,183, 56, 47, 93, 81,223,199, 44, 29, 57, 98,132,122,255,129,131,175, -163,146, 2, 75,194, 36,117, 87,172,219, 28,226,173,146,129, 49,192, 96,113,225,197,167, 31,243,180, 25,149,227,162,228,185,103, -159, 6, 43, 45,174,138, 11,178, 49,253,173,151,172, 26,231,149, 75,215,211,174,223, 28, 48,236,141,253,197, 70,102, 29,253,212, -228, 83,151,146,230, 84, 91,201, 66,116,102, 60,244,240, 67,242,146,158, 2, 64,194, 24, 68, 46,230, 52,173,175,253,215, 93,195, -130,217,182, 21,213, 21,108,134,155,137,133,222,225,173, 71,173, 95,240,202,138,136,208,144, 64,173, 70,197,181,106, 37,107,217, - 44, 70,222,181,107,119, 69,253,166,109,228, 71, 47, 91,112, 61,207,130,148, 76, 61,148,161,237,164, 99, 30, 24,130,245,159, 77, -237,203, 24, 19,170,155,248,250,235,161,223,135,173,252,106,145, 50,167,200,129,132,235, 70,100,235,172,200,210,217,144, 93,104, -133, 86, 37, 67,239, 71, 38, 40,127,217,182,108, 88,255, 94, 93,150,212,240,153, 5, 0,164,164,164,254,146,118, 51,235,241, 54, -237, 59, 99,253,218,213,189,252,253, 27,248,232,116, 41, 21,118,233, 87,128,127,244,209, 71,138,185,115,231, 74, 63,255,252,243, -226,174, 93,187,134,189,243,206, 59,131,115,115,115, 79,214,171, 87,175,233,158, 45,107, 14,180,235,253,104, 39,136,142,224, 94, -125,250,201,149,162, 20,123,119,236,112,252,248,195,183, 5, 22,139, 97, 82, 85,193,130,218,247,163, 28, 35, 67,112,157, 58, 23, -181, 10,247, 64,169, 80,148, 84,184,235, 95,235, 0,108,105, 52,228,213,125, 7, 79, 39, 38,117, 60,147, 22,114,224,204,213,220, - 66,179,163, 73,242,174,127, 87,249,129, 43, 97, 12, 82,137, 0,111,149, 20, 66,233,167,169,119,157,182, 87,193, 88, 48, 80,242, -218, 98, 96,165,255, 2,140, 33,179, 48, 61,206,131, 57, 25,140,139, 28, 72,204, 48,193,104, 45,233,130,175, 27,164, 70, 94, 78, - 6,190, 92,178, 6,113,167, 79, 97,208,144, 71,176,116,197,183,120,241,233,199,173,213,165, 9, 66,105, 15, 86,185,222, 43,173, - 74, 10,128,161,200,228,196,230, 99, 55,208,168,129,224,241, 31, 4, 0,240,214,170,161, 55, 88, 32,200,189,145,124,102,167,122, -215,193, 19,239,188, 55,107,209,155,186,172,248,235, 87,207, 31, 69,211, 32, 61, 26,212,113,224, 98,182, 15, 78, 23,212, 71,211, -198, 13, 33,200, 79,121,148,157,127,177,245,188,109,194,230,161, 29,219,181,232, 22, 29,226, 7,139,221, 93,218,139, 37,193,234, - 85,235,144,150,154,241,124,254,197,159,226, 60,111,109,229,140, 57,215,242,188, 66, 99, 94, 62,127, 98,127,202,136,177, 47, 35, -188, 78, 84,133,195,204, 21,169,168,112,170,232,182,138,138,174, 59, 49,198,132,128,122,237,214,174, 93,191,113,116,131,168, 48, -252,122, 34, 21, 39,147, 10, 16, 20, 20, 8,137, 58, 12, 49,125,198,251,157,223,189,248, 49, 75,190,113,173, 76,174,126,161, 75, -215, 30,224,156, 35,241,242,197, 66,189,222,247,174,207,102,115,102,194, 89, 0, 62,229,111, 83, 7, 55,111,171,245, 13, 56,107, -115,184,113,243,102, 6,142,255,118,168,125,233,118, 30, 83,202, 37,216, 27,151, 11,135, 83,132,195, 37,162,119,159,129,118,185, - 96,235,245,241,162, 85, 93,179, 50,179, 4,141, 79,144, 24, 80,167,185, 60, 92,233,176,157,187,166,151, 59,156, 34, 26, 70,104, -170,204, 12,142,104, 60,123,234,212, 41,205, 37,114, 21, 12, 38,155, 61, 43,243,102,216,242, 13, 7,141,151, 19,206,215,169, 27, -226,235,243,201,103,160,118,160, 3, 0, 0, 32, 0, 73, 68, 65, 84,203,228,197, 86,134, 92,189, 13,133,134, 98, 54,118,226, 91, - 17, 43,191,152, 51, 14,128,199,231,142,101, 28, 13,126,217,123,180,153,191,183,156, 25,173, 46,177,160,216,225, 30, 59,252,207, - 45,162, 44, 45,174, 38, 44, 90,248,153, 58,238,154, 1,231,174,233,225, 37,151, 64, 33, 23, 96,119,138,240,228,237,196, 24, 19, - 26,180,234, 51,169,123,199,214,216,115, 54, 31, 18,137, 0,139, 65,103,150,162, 32,169, 99,223, 65,234, 14,157,187,162, 95,223, - 62,184,154,148, 24,181, 99,251,230,254,177,199, 15,103,107, 67,154,190, 98,204, 77,220, 90,147,182, 26,205,102,137, 83, 17, 54, - 62,188, 78,189, 30, 35,199,140,247,141,142,170,195, 66,130, 2,225,226, 82, 76,120,250, 49,143,223,249, 37, 5, 57, 48,119,214, - 59,176,217,236, 8,246, 83,128,115, 96,213,146, 15, 97,183,219, 17, 17,168,132,222,228,172,244,254,213,213, 35,149,245, 58,213, - 68,249, 34,172,170,219, 25, 99, 59,166, 77,155, 54, 29, 0,159, 54,109,218,244,178,235,115,230,204,177, 0,200,172,238,113,254, -152,204, 88,201,176, 32, 0,120, 71,196, 52,241, 15,137, 56,246,227,218, 47,252,117, 70, 7,188,228, 18,212,141,140,198,219,255, - 89, 28, 60,164, 99, 16,242,172,106,108,220,180,186,208,110, 53,255,224,201,206,169,195, 98, 58,122,107,124,246,172, 93,255,131, - 24, 20, 24, 40,124,185, 55,239, 90,129,193,117,107,232, 42,233,196,118,241,244,158,229,225, 28,108,183,151,151, 87, 99,187,221, -238, 95, 85,158,200,129, 85,123,211, 75, 39,231,254,185,121, 45,101,152, 68,226,254,246,219,245, 8,244, 81,192,230, 20, 49,237, -205,215, 44,207, 12,210, 22,141,125, 98,204, 3,253, 30,122,245,128, 76, 19,179,191,123,251, 24,222,174, 93,187, 34,137, 68, 82, -109, 94, 65,202,201,187, 86, 75, 52,171,175,126,225,221,183,158,121,183,130, 97, 65,143, 38,228, 26,178,206, 31, 3,112, 91,143, - 8,107,212, 72,241,221,198,109,175,141,122, 98,244,123,117,218, 14,215,166,102,233, 33,103, 14,116,106, 30,142,131,187,183,242, -140,180,164, 41,158,172, 42,202,205, 43,140, 12, 14, 14, 69, 92,138, 17, 55, 11, 44,200, 46, 45,174,178,116, 54, 24, 44, 6,180, -137,142, 64,145, 94, 31,233, 73, 59, 43,194,128,173,123,246,236,121,252,161, 71, 71,227,213, 55,103,246,252,230,171,249,241,218, -176, 38,207, 25,179,147, 14, 85,119,223,210,119, 94,225,219,111,191,221,104,197,138, 21,194,184,113,227, 44,173, 91,183,246,122, -234,169,167,122,174, 91,183,206, 75,173,246,178,156, 59,186,253,189, 23,254, 53,237,209,229,139, 63,106,171,211,233,152,203,233, -220,229,208,233,166, 25,170, 41,226,174,111,123, 39,129,181,152,249,236,192, 94,193,219, 3,212, 66, 75, 37,183,143, 97, 45,102, -254,192, 47,205,112, 36,239, 90, 98,104,253,196,194,127,101, 22,137,239, 90,133,144,143,171, 43,174, 0, 64,144, 48,216,157, 34, -188, 85, 50, 8, 66,105,143, 37, 23,195, 87,255,176, 75, 29,236,171,128, 76, 34, 64, 42, 41,233,221,204, 47,118,224,229,241,158, - 30,233,131,139, 46, 55,135,197,238,130,185,244,219,160,161, 56, 31,239,188,249,111, 12, 25, 54, 2, 47, 76,250, 55,116, 22,224, -116,138, 1, 14,167,179,218, 55,133,192, 4,152,109, 46, 60, 55, 40, 26,133, 70, 7, 76, 22, 23,236, 46, 17,106,133, 20, 50,169, - 0,141,151, 20, 62,106, 25,192,185,156, 49, 54, 1, 0,100, 50,153,213,225,112,172,175,180,133,156,163,126,100, 40, 44, 78, 1, -157, 71,207,199,128,110, 77,112,241,216,102,233,225,223,207, 55,120,253,205,119,241,218,139,195,176, 41,161, 17, 2, 66,162,161, -213,168,224,228, 2, 0,238,209,132, 60,206,103,136,225,205, 70, 62,249,245,138, 85,137,255,249, 96,154, 87,145,137, 65, 41,151, -224,192,254,125,136, 61,113,122,113,222,197,159, 42,109,215,189,144,113, 33,212,199,199, 7, 94, 10, 9,236, 14,155,221,211,251, -185, 69, 14, 14,180,215,134, 54,253, 26, 40,153,111,229, 22, 81,193,109, 85, 23, 88,140, 49,230, 27,209,106,245,215, 43,191, 29, - 23, 17, 22,130,173,251,227,177,122,197,231,104,208,110, 40,142,253,178, 26,190,245,187, 66, 19,213, 19, 10,239,141, 19, 4,137, -180,245, 43,175, 79, 31,217,161, 83, 55, 28, 63,122, 0,185,217, 89, 95,115,158,224, 81,143,134, 68,198, 94,125, 96,224, 48, 88, -237,110,244,234, 63, 20,187,127,222,250, 47,148, 46,158,240,212,157, 69,184, 8,193,245,239, 41,175,202,114,245,118, 89,190,222, -142, 27,249, 22,164,101,155,240,211,247,223,120, 60, 36,197, 96,239,212,187, 77, 93,217,132,121, 7,110, 68,214, 13,183,201,108, - 22, 85, 82,242,181,102, 47,140,127, 70,214,160,113, 51, 33, 87,111, 67,158,222,134,124,189, 13, 70,171, 11,141,235,198, 8, 78, - 23,235, 86,147,118, 3, 64,144,175, 66,182,244,231, 20,248,104,100,232,222,236,222, 23,206,138,162,248, 71,113,181,168,164,184, -138, 79,209, 67, 41,151, 64, 41, 23,160,148, 75,224,114,115,143,190,176,168, 66,154, 60,244,242, 43,147, 35,236, 46,160, 64,111, -135, 84,194, 16, 18,228,175,233,212,246, 73,172,154,255, 47, 0,192,139,111,127,137, 23,158,123, 10,205, 91,182, 70,145, 78, 23, -246,228,168,135, 22, 1,240,168,192, 18, 69, 17, 59,247, 30,138,218,123, 36,238,237,151,167,206,208, 62, 49,172,159,228,236, 53, - 61,178, 10,109, 72, 78, 50,212,168,167, 13, 0, 92,110, 17, 28, 28,107,126,216, 1,149, 66,138, 60,189, 3,156,115,124,244,249, -143,240, 86,201,144,165, 43, 25,214,175, 74, 85,245, 72,233,239, 43,236,129,242, 84,233,253,243,240,199, 60,173, 10,115,203,247, - 96,205,153, 51,231,226,156, 57,115, 42,236, 17,171, 76,181, 19,236,188, 35, 98,154,248,249,135, 31,223,254,195,138,128,173,113, -118,252,190,241, 52, 30,238, 18, 14,185, 84,128,218, 55, 24,231, 82, 76,216,179,123, 67,209,206,237,155,110, 22,202,204, 21,246, - 50,149,167, 14,111,218, 94,163,242,217,183,116,249, 90, 87, 80, 72, 8,214, 31, 45,204,208,153, 92,183,202, 89,183,219,201, 78, -239, 89,222,192, 37, 58, 31,180,100, 95,169,246,235,172,200, 33,159,243,213, 54, 0, 28,162, 40,130,139, 34,100, 94, 90, 77,112, -163,110, 57, 0,224, 22,185,151, 84, 96, 37,223,224, 75, 95, 37, 92,116,101,228, 93,171,186,187,147, 1,240, 81,203,240,195,225, -155, 0,144, 35, 49,156,185, 60,246,137,146, 97, 65,171,221,171,184,101,163, 70,188, 83,167, 78, 69, 42, 85,133,139, 69, 60, 82, -211, 97, 65, 79,240,228,100, 59,128,121, 17, 77,123,141, 24,172,109,211, 89, 33,200,209,161,105, 56, 14,238,249,137,255,190,123, -213,139,230,156,196,181, 30,229,112, 14,163,213,137,204, 2, 43,110, 22, 88,145,173,179, 34,187,208,134,108,157, 21,140, 49, 88, -237, 53,238,129,190,141, 41, 55,113,227,250,181, 43, 31,177, 57, 48,166,247,160, 17,248,247,140,165,209,235,191,158,187, 79, 21, -218,172,135, 39, 19,104, 57,231,110,198, 88,218,248,241,227,219,110,216,176, 65,210,170, 85, 43,203,229,203,151,213, 0, 68, 0, - 14,173, 86,173,250,230,139, 57,123, 58,119,238,252,253,205,164,132, 3, 0,116,158,172,164,170,215,119,188,178,153, 79,225,132, - 40, 77,247,193, 13,195,212,136,210, 24, 6, 55,211,158,251, 52,164,255,235,179,115,247,127,150,155,101,115,253,154,103,145,180, -187,105,148,121, 52, 23,208,105,179,166,143, 28, 53, 26, 18, 38,192, 97, 53,167, 3, 0, 88,201,132,242, 15,191, 77,128,214, 75, - 6,111,149, 20, 90,149, 12, 61, 91, 4,120,244,141,182,236, 41,112,186, 69,152,109,110, 88,108, 46, 88,237, 46, 4, 69,250, 99, -197,250,141,184,158,107,193,182, 83,249, 72, 76, 55, 32,166,174, 6,156, 87,255,241, 40,186,157,166, 97,143,141,243,150, 8, 12, - 18,129, 9, 45,154, 53, 65,161,209, 1,185, 84,128,220, 75, 5,141, 82, 10, 31,149, 12,114,185, 12,185,185,185,176,217,108,136, -138,138,242,170,178,129, 34,135,183, 86,133,152, 6, 17,112, 56, 93,216,121,228, 18, 62,158, 50, 18, 3,123,119, 4,147,105,145, - 96,107, 15,239, 0,111,136,130, 0,135, 75,132,221,225, 6, 32, 84,218,219, 22, 21, 21,245,128, 70,163,209,152,205,102, 67,122, -122,250,161,172,132, 45,215, 67, 90, 14,159,176,123,239,129,245, 67,135, 12, 68, 92,252, 69,108,218,186,253,104,126,160,126,106, -217,125, 90,181,106,213, 53, 40, 40, 72, 91, 80, 80, 80,124,254,252,249,147,158, 63,189,127, 96,140, 49, 77,104,179,215,187,245, -236, 11, 99, 81, 46,114,110,164,122,252,173,185,121,180, 55,222,159,179,180, 67,211, 38, 77, 59,184,121, 73,193,213, 34,202, 27, -111,204, 88,210,161, 81, 76,147, 14,101, 11, 61,154, 71, 85,125, 88, 53, 77,104,211,201, 31, 47,252,234,233,168,200, 72,236, 58, -158,128, 57,239, 78,138,211,168,189,235,215, 13,245,247,147,183,236,136,179,103,127, 67, 8, 20,240, 9,141,169, 59,230,145,137, -117, 7, 15,121, 4,231,207,157,198,103,243,102,197,154, 36,170,217,158,180, 85, 27,218, 48,184, 93,167,222, 99,189, 3, 66, 81, -164, 55,192,219, 63, 4,205,219,116, 26,171, 13,109,248,118,233,201,234,239,137,200, 57,108, 14, 14,157,193,129,235,121, 37,197, - 85,106,142, 25,162, 88,131, 57, 63,110,145,105,189,164,210, 0,231,213,168,243,251, 14,240,232,200, 80, 54,111,214,155, 18, 7, -188,144, 87, 84, 82, 92,229, 21,219,145,167,183,195,104,117, 34, 64, 35,133,232,174,124,165, 95,101,116, 70, 7,188, 75,231,201, -122,210,171, 88,153,175, 86,255,208,244, 92, 82,230,240,133, 11, 63, 83,159, 77, 41, 87, 92,201, 74,122,175,148,114, 9,220,162, - 8,120,240,142,151, 73,101,175, 62,250,208, 0,220,200,183,148,174, 68,102,136,105,221, 25, 65, 42, 17,253, 71, 79, 3, 0, 12, -123,168,100,158,113, 74,150, 9, 63,255,158, 7,220, 62, 97,187, 74, 38,139, 69,178,252,219, 95, 94,223,248,227,247,190, 86,183, - 20,203,118,165,193,108,115,193, 75, 46,129, 82, 46,129, 74, 46,185,109, 74, 80,117, 92,238,146, 57,117,215,243,157, 48, 91,173, - 40,182, 56,193, 1,156,188,106,132,197,238,130,222,228, 68,215,102, 85,246,153,120,226, 23, 0, 15,151, 93, 41,223,155, 85, 73, - 15, 84, 69, 78,149,207, 40,219,254,206,140, 59,127, 87,154,231,209, 23, 65,233,157,149, 98,249,235,222, 17, 49, 77,252,252,194, -143,111,255,126, 69,192,150, 56, 27, 14,158, 43,192,168, 94,117, 97,214,103, 99,238,156,183, 10, 25,184, 93,144, 8, 69, 54,171, -101, 75,129,218,241, 49,191,148,236,184,251, 33,254,160, 9,110,209, 70,165, 86, 31,248,228,179,101,142,144,208, 58,226,150,223, -139,114,245,102,247,109,125,133,110,155, 77,224, 34,151,123, 82, 92, 1,128, 32, 48,199,140,127,141,128,200, 57, 62,252,108, 35, -102, 79, 29, 13,173,106,156,154, 49,166, 54, 89, 93,152, 50,115, 37, 22,188,255,188,183, 90, 41, 5, 99,128,213,238,198,211, 99, - 70,120, 18, 13,147,213,133,228, 19, 27,140,134,148, 29,151,203, 15, 11,118,233, 57,228,116,151, 46, 93,138,252,253,253,161, 82, -169,254,232,153,240, 64,101,171, 5,115,139,144,225,237,237,221,199,199,199,167,124,158,169,168,168,232, 39,143,195,203, 49, 20, -229, 31,200, 78, 59,223,185, 71,191, 97, 56,180,231, 39,254,251,174,111, 94,172,201, 49,118,252, 3,252,111,156, 57,159,220,156, -177,128,146, 30,172,210,226,202,238, 20, 17, 29,170,198,141,180,100,248,249,250, 86,187, 58,173,140, 58,164,217,163, 76,224,147, - 24,248, 42, 99,118,210,198,210, 98,231, 73, 77, 88,179,248,139, 23,206,126, 60,116,236,171,210, 65,163, 38, 75,190,158,243,202, -116,220, 49, 57,181, 10,142,196,196,196, 75,207, 63,255,124,247,216,216, 88, 55, 0, 51, 99,204, 41,145, 72,212,118,187, 93,222, -175, 95, 63,125, 66, 66,194, 97,120, 48, 25,177,215,115,155,130,152,210, 48,164, 81, 76,167, 39,163,189, 13, 3,251,245,234,134, -110, 45, 35,113,163, 87, 55, 0,120, 53,221,168,109,218,243,165,111,126,104, 16, 92,119,231,215,171,127,158,253,226,232, 1, 83, - 34,134,205, 92,152,249,243,140, 42, 39,152, 94,191,116,168,130, 99,130,148, 13, 27,202,160, 85, 73,225,173,146,193,219, 75, 6, -167,203,179,111,180,165,184,211, 37,150,244, 96,217, 93, 48, 90, 92, 56,112, 54, 7,217,122, 59,138, 12, 14, 88, 28,110,112,240, -146,111,159, 30,124,138,231, 94, 57,230, 87,246,179,127,116, 7,253,242,207,231,251,108, 62,150,113,107,133,158,175, 90, 1,111, -117,201,170,234, 35, 71,142, 32, 48,176,250,111,247,162, 40, 98,211,238,147, 88,184,230, 0,118,175,122, 11, 94,114, 9,218, 60, - 58, 19,207, 14,239, 2,145,139, 72, 78,188,152, 19,211,162,109,168, 32,168, 32, 48, 6,155, 83, 4,192, 43,125, 62,237,118,123, -224,245,235,215,139, 27, 55,110, 28, 86,167, 78,157, 81, 18,137,132, 43, 1,219, 79,223, 23,154,247,239,248, 78,109,178,216,220, -106,151,126, 85,227, 44,203,195, 49, 49, 49, 96,140,241,160,160, 32,249,129, 3, 7,140,173, 91,183, 14,174, 44,183, 42,140, 49, - 65, 21,210,100,241, 11, 47,189, 62,170, 81,195,134,216,248,221, 42,112,206, 54,123,122,255,111,127,142,197,172,119,110, 95, 49, -248,198,140, 37, 29, 22,204,124,245,182,219, 94,122,103, 97,165,171, 8, 25, 99,172,110,171, 7,222,106,214,172, 5, 98, 47,102, - 96,222,123, 47,197, 89,115, 83,158,180,107, 3, 39, 58,140, 89,255,110,215,190, 35,194, 2,125,144, 89,104,195, 35,227,134,163, - 71,207, 94, 56,127,238, 52,102,189,255,102, 44,204,246, 65, 60,239, 82,181,147,160, 1, 64,228,178, 73,253, 6, 15,151, 89,108, - 14, 44,153,247, 1, 38, 78,253, 24, 93, 31, 24, 38,187,112,246,247, 73, 0,254,227,233, 62,219, 28,110,244,107, 29, 84, 82, 52, - 59, 69,108, 79,145, 72, 43,122, 5, 74, 37, 76,104,215,208, 15, 22,187, 11,197,230,202,135,140, 0, 64, 42,151,101, 23,233,139, -235,125, 49,251,117,137,201,234, 66,158,222,142, 92,189, 13,249, 69,127, 20, 86,249,122, 27,242,244,118,200,164, 12, 73,215,210, - 33,200,164, 53,158,127,167, 51, 58,209,185,137, 63,128,146, 66,230, 94, 56,165, 62, 93,118, 31, 62, 55,114,225,194, 69, 94,231, - 82, 13,136, 79, 41, 46,237,185,146, 64, 41, 19,160, 40,253,217, 45, 2,213, 61,132,111, 72,163, 6,207, 60,255, 98,127, 31,173, - 10,153, 87,114, 33,149, 48, 72, 36, 12,190, 33,145,240, 85, 90,241,202, 75, 19, 16, 20,232,135,235,249, 54, 44,222,154,132,248, - 75, 87, 33, 90,106,182,219, 75,150,125,255,224, 11, 47,191,225, 39,200, 20, 88,183, 39,181,164,157, 18, 55, 18,126,255,217,154, -153,124,222,100, 44, 46,224,224,110, 15,191,248, 51,238,114,151, 20,166,179, 63,156,134,239,215,124,137, 61,103,114,111, 77,206, - 58,182,121, 1, 94,127,231, 35,228, 23,219,129, 10, 38,213, 87, 85,143,160,164, 3,162,172,231,233,174,235,229,138,162,138,174, -179,210,235,246, 74, 50,236,119, 20, 85,246, 59,110,183,223,145,231,209,177,251, 42,237,193,242,142,136,105,226,235, 31,118,124, -219, 15,203, 3,182,156,177,227, 80,124, 73,113,229,178, 21,225,171,121,239,100,153,139,138,123, 87,117,192,198, 59,105, 66,154, -180, 82,106, 52,135,223,251,104,177, 45,180, 78, 61,215,206,179,197, 5, 6,171,251,174,110, 16,185, 90,227,214,248, 6, 91,253, -162,219, 47,148, 89,236, 31,228,229, 93,170,114, 94, 23, 67,201, 55,164, 29, 39,178,193,121,201, 87,162, 31,143,220, 68,233, 55, -113,184,197,146,225,147, 95,207,230, 66, 90, 58,207,196, 19,140, 1, 95, 45,251,178,248,225,214,122,211,216,217, 31,222, 26, 22, -236,218,182,164,231,202,199,199, 7,126,126,126,208,106,181,240,100,136,176, 76,101,171, 5,189,189,189,251,156, 61,123,214,203, -199,199, 7, 18,137, 4, 54,155, 13, 45, 91,182,244, 56,183, 60,109, 88,179,151, 59, 63, 48, 98,122,207, 7,134,225,192,238, 45, -252,247,221,171, 39,212,244, 0,134, 15, 15,232,254,243,172, 89, 31, 54,120,239,227, 47,148,222, 94, 82, 92, 54,218, 33, 48,134, -232, 80, 53, 2, 53, 2, 14,253,180,206, 58,122, 88,119,143, 15,106, 23, 25, 89,103,253,130,207,151,107, 22,204,157,217,207,187, - 78,211, 3,134,155,137,133, 0, 96,202, 78,152,167, 14,107,118,169,238,111,123,119,182,237, 51, 2,161, 17, 13, 7,122,154, 89, - 58, 84,104,190,118,237, 90,202,123,239,189,215,116,238,220,185, 92, 34,145,136, 0,148,159,125,246,153,249,202,149, 43,103, 81, -178,196, 22,213,245, 94,245, 31,216,114,138, 86,225,238, 26,160, 22, 90, 54, 12, 83,163, 91,203,146,209,207,209, 15,247, 68,100, - 84, 20,174,101,155,219, 21,154, 69,153,209, 46,105,184,116, 89,252,169,250, 65,146, 23, 93, 22,251, 37, 84,115, 16,216,138, 48, -252, 49,241,189,172,247,202, 91, 37,131, 8,212,228,155, 34,119,186, 68,216, 28,110, 88,108,110, 88,236, 46,152,236,110,152,237, -110,136,188,228, 61,193, 24,131,195, 37,150, 61,164,231,237, 99,128, 79, 64, 16, 26,214, 47, 89,245,234,173, 42, 57,100,131,143, - 90, 86,178,214, 57, 48, 16, 33, 33, 33,213, 55,144,115,216, 29, 37,111,113,187, 83,188, 53,124,111,119,184,192, 57, 71, 82, 82, -226, 91,105, 41, 41,143, 54,142,105,220,187, 69,155,182, 1,106,165, 0, 0,149, 22, 3,102,179,217,237,237,237, 29, 18, 16, 16, - 32,220,188,121,243, 86,209,220,184, 93, 63,215,214, 45,155, 49,114,228, 8,227,229,147,231,110, 45, 85,183, 88, 44,172, 71,143, - 30, 62,145,145,145,130,205,102,243,116,126, 95,233,115,192,152, 38,184,201,240,200,102,221, 63,126,122,252,196, 38,253, 6, 60, -136,131,251,247, 98,219,150, 13,107, 77,185,137, 85, 30,175,171,188,166, 77,155,221,181,138,176, 81, 76,147,187, 86, 17,214,107, - 16, 83,105,129,229,235,219,198,167, 77,167,190,145,105,249, 14,236,218,181, 19, 38,125,246,251,118,187,209, 12, 25, 95,185, 99, -195,210,231, 95,120,125,166, 79,223, 62,189,224,239,163,134, 84, 42,193,153, 83,177,152,251,159,233,177, 48,219, 7, 85,247,249, -121,107,127, 91,180,144, 55,142,170,247, 90, 84,163, 86, 56,243,251, 81, 36, 39, 93,184,120,238, 84,108,203,198,173,187, 34, 56, - 34,250, 53,214,162,197, 92,126,233, 82,149, 95,160, 1,192,110,181,166, 63,251,204, 83, 40,191,138,176, 91,251,166,129,183,189, - 0, 75,175,152, 13,185,142,111,230, 79,185, 82,182,138, 80,116,216,211, 43,203,213,235,242, 54, 29, 58,126, 98,234,163, 15, 63, - 40,228, 23,219, 75,122,172,244,246,210,139, 13,249,101, 63, 23,219, 16, 19,161, 69,226,197, 51,162, 85,159,239,113, 33, 92,218, - 44,235,179,143, 15,190, 4,252, 49,169,159, 1,213,206, 95,188, 19,151,249, 76,152,247,233, 66,175,115, 41, 70,196,167, 22,151, - 12, 9,202, 36, 37,133,149, 76,184, 85,108,149,172, 78,175,154,139, 73,102, 63,247,204, 24,228, 23, 59, 32,138,128, 84, 34,148, - 94,228,184,110, 96,184, 97, 48, 35, 95,151,135,148,180,116, 20,101, 39, 67, 16, 4, 4, 69, 52,129,167,221,141,110,174, 8, 55, -219,121,235, 81, 15,247,150,110,249, 45, 11,106,165, 20, 54, 67, 14,118,253, 48, 63,207,102, 44,254,216, 98, 54,110,177, 20, 92, -169,118,174, 81, 25,129,177,188, 98,163, 53, 84, 41,147, 96,227,154, 47,240,248,179, 47,149, 62, 41, 37,255,188,245,238, 44, 64, - 96, 40,212, 25,192, 24,171,105,175,232,157,157, 46,158, 77,216,172, 89,102,173,170,180,192, 82,171, 3,247,109,251,126,121,192, -111, 41, 2, 78, 38,234, 48,170, 87, 93, 56,173, 58, 44,254,232,223,217,197,197,185, 15, 24,242,174,120, 92, 92, 1, 0, 4, 97, -240,232,231,166, 94,108,216,164,133,237,224, 5, 99,106,145,201, 89,233, 60,134,110,163,222,187,120,250,151,207, 31,210, 59,175, - 77,214, 70,180,116,139, 46,215, 60,115,110,226,204,138,182, 21, 57, 20, 51, 23,111,188, 53, 60,248,246,220,117, 37, 63,187,221, -112,115, 17, 92, 4, 94,121,255, 43,184, 68, 55, 68,183, 27,162,155,195,233,230,234,234,154, 27, 18, 81,111,139, 46,225,199,102, - 99,255,115,247,176,160,159,159, 31, 2, 3, 3, 17, 24, 24,136,178,130,200, 83,149, 13, 11,250,248,248, 64,171,213,226,232,209, -163, 80,169, 84,208,104, 52, 53,202, 45,163, 13,107, 54,185, 83,223, 71,191,120,224,145,231,241,235,150,101,252,212,145,159, 39, -154,115, 18, 87,122,122,127,183,219,205,156, 78, 39, 30, 30,212, 55, 61,238,226,213,221,239, 78,157,244, 96,247,161, 19,149,221, -154,214,129,213,238, 70, 70, 90, 50, 14,253,180,218,218,164, 65,248,158,254,189,186,164, 59,157, 78,184,221,238,106,255,128, 91, -237,142,124,137, 76,165, 25, 51,102,172,236,212,201,147,155,181, 33, 77, 54,186,153,112,142,113,177, 13, 99,108,100,155, 54,205, -225,112,138, 48,155,139,171, 95, 48,112, 7,131,193,144,178,106,213,170, 6,207, 60,243,140,186, 69,139, 22,178,228,228,100, 44, - 88,176,160,192, 96, 48, 84,123,220,175, 50,123,143, 36,126, 38,101,186, 43, 10,209,241,100,180,183, 97,224,245,158,221, 48,102, -104, 79,124,255,203, 49, 28, 58, 26,139,116,163,246,172,209, 37,253,233, 70,122,166,173,101, 64,241,230, 71,186,213,147,108, 92, -163,219, 28,210,239,157, 39, 56, 87,238,205, 59, 52,195,227, 5, 30, 37,139, 49,156,240, 81,151, 28,175,169,172, 39, 75,194,152, -199,149, 16, 3, 82,142,198,158,105,213, 49,166, 5,226, 82,244,200, 45,178,193, 98,115, 65, 20, 57, 68,112, 4,122, 43,224, 37, - 23,112, 61, 45, 5, 34,119,164,122,218,182, 18, 60,175, 79,239, 62, 82,128,129, 49, 46,149, 73,165,224, 40, 57, 46,162, 74,165, - 50,134,132,132,120,212,131,229,112,185, 48,242,193, 46,232,218,169, 13, 30,157, 56, 31, 0,176,127,237, 52,248,107,101,248,126, -253, 74, 92, 63,188,104,125,195,238, 47,237,189,112,254,226, 99, 23,227,126, 27, 59,164,131,170, 93,152, 52, 83, 94, 89,158,209, -104,220,204, 24, 83,200,229,242, 7,123,247,238, 29,176,121,243,230,162,160,160, 32, 81, 33,151,231, 61, 50,108,168, 40,147,203, - 11,203,182, 61,126,252,184,108,226,196,137,222, 58,157,238,122, 78, 78, 78, 44,231,188,202, 46, 18, 77, 72,179, 1, 16,176, 1, -140,121,105, 85,234,244,110, 3,198, 68,116,234,218,197,119,248,200,199,161, 84, 40,241,235,222,221, 88,178,104,238,143,198,172, -203,207,121,252, 52,162,118, 86, 17,234,245,190,166, 43,151,206,233, 82,115,237,254, 50,191, 24,200,148,222, 19,153,111,196, 98, -137, 82, 59, 35,184,237,112,159, 77,219,119,226,252,133, 11, 8, 80, 57,113, 45,249,138,249,194,217,184, 47,205, 76, 54,147,231, - 93,242,104,165, 19, 0,168, 11,220,143,117,123,234, 65,127,155,195,141, 35, 7,126,177,138, 46,241,193,216,195, 59,147,235, 54, -233,228,213,170, 83,127,255,252,109, 43, 71, 2,248,190,186,156,140,203,119,247,216, 70, 53,237,156,186,255,192, 62,223,208,232, -150, 18, 6, 6,135,205,138,188,107,167, 92,230,156,132, 98,125,198,121,143, 86,213, 22,220,192,251,239,204,248,100,114,167,142, - 29, 53, 28, 94,183,245, 88,149, 21, 86,249,197,118, 4,121, 43, 96, 41,206,195,149, 83,187,173,230, 60, 73,149,199, 43,115,217, - 77,234,252,220,156, 91, 67,105,198,156,196,174, 85,109,159,159,155,163,112,217, 77,213,254,237, 16, 4, 9,124, 52, 10,156, 79, -189,121,107, 66,187, 82, 86, 50,247, 74, 33,147,220,154,135, 5,220, 61, 95,173, 2,125,229, 94,126,184, 89, 96, 5, 3,135,232, -118,193,229,180,195, 80, 92,140,155,153,217,200,201,206,129,193, 80, 4,181,214, 31,173,218,117,134,183,198, 11,231, 14,253, 8, -206,185, 71,199, 37,116, 50, 89,211, 78, 93,123, 41, 47,164,149,204,181,242,146,113,252,188, 97,110,129,177, 56,183,151, 33, 51, -233,138, 39, 25,229,185,220,238,125,241,151,174,180,172, 27, 94,159,157, 77,214, 99,253,138,207, 97, 47,237,201,116, 58,221,184, -112,221,132,172, 66, 51,174, 95,187,204, 69,183,187, 70,135, 92,250, 59,170,180,192,146, 43,100, 42,159,128, 8,204,122,114, 28, -190,252,242, 43,164,222,184,137, 37,179,166,100, 23, 27,242,250, 25, 50,175, 36,121, 18,206, 24, 27, 80,118,172, 12, 83,118,194, -188,231,190, 76,205,216, 30, 87, 40, 88,236,188,202, 9, 60, 94,193,209,232,245,220,130, 61, 22, 67,161,194,109, 51, 75,127, 94, -255,220,134,138, 50, 1, 64, 96,176,127,252,198,104,104, 85, 82, 48,198, 80, 54, 44,184,116,214, 4,168,149, 37, 99,199, 22,155, - 11,227,166, 44,196,250,133,255, 6, 7,240,228,227,199,110,251,224, 41,159, 89,110, 8,175,110,122, 90,238,205, 1,195,222,216, -111,117, 40,109, 67, 71, 60,115,186, 99,199,142, 69, 42,149, 10, 42,149, 10, 62, 62, 62,240,247,247,135,159,159, 31, 42, 82, 73, -102,165,171, 5, 5, 65,128, 32, 8,208,104, 52,208,106,181,208,104,238, 94, 85,115,231,190,223, 73, 27,214,108,114,167, 62,143, - 44,237,255,232, 11,248,117,203,114,126,234,200,207,147,204, 57,137, 43,170,122,174,239,204, 20, 69,241,220,200,145, 35, 91, 79, -156, 56, 81, 62, 99,234,196, 61,191,236, 61,148,180,113,199,242, 97, 58, 93, 81, 36,231, 28,126,190,190, 55, 70, 15,235,254,115, -191, 30,157,210,247,239,223, 47,110,216,176,193,198, 24, 59, 95, 93, 59,243,115,115,215,238,223,119,224,195, 94,125,250, 98,229, -154, 13,125, 46, 94,186,220, 39, 57,249, 10, 34,163, 27,162,126,131, 24,152,153, 63, 14, 28, 62, 10, 99, 81,110,133,115,196, 42, -219,247,178,165, 38, 58,157,238,183,209,163, 71, 15, 58,118,236,152, 48,122,244,104,115,126,126,254,113,148,126,111,170,172,247, -170,124,230,111, 95, 13,207, 3,176,182, 94,223,241, 63,222,116, 20,189, 6, 96,110, 84,116, 20, 14, 29,141, 69,236,177, 19, 95, -229,171,163,102, 62, 55,110,252,132,122,143, 72, 94,120,164, 91, 61, 73,136,191, 26,223, 45, 95, 32,217, 30,155,182, 48,173,192, -189, 18,192,172,170,218,121,167, 2,131, 3, 61,154, 7,192,233,230, 16,121,201, 7,173,183,151,172,194, 15,220,138, 50,165,118, -229,115,147, 38, 78, 76,110,213,166,221,235,227,198, 79,146,183,107, 24,137,147, 87,139, 0,198, 16, 16,166, 65, 86, 86, 22,142, -108, 90,238,210,221, 76,248, 74, 34, 17,239, 26,222,169,170,157,133,105,113,141,203,109, 55, 33, 63, 63, 31,135, 14, 29, 66, 89, - 97, 21, 28, 28, 92, 97,129,117,103,102, 65, 78,230,241, 89,159, 46,235,241,226,211, 35, 48,180,111, 75, 28, 62,149, 12,123,233, -241,150,202,150,132,167,196,126,173,120,109,116, 67,251,228,145, 77,138, 45, 78, 69,218,251,169,250, 35,229, 87,185,222,153,201, - 57,183, 51,198,182, 39, 38, 38,246,108,219,182,109,189,157, 59,119, 22, 94, 60,177,231,213,242,237,120,227,141, 55,180, 95,126, -249,165,154,115,126,220,102,179,221,245, 69,176,194,125, 23,240,221,153,211,167, 3, 29, 78, 17, 71, 79,156,107,222,191, 71, 59, -136, 28, 56,117,234, 20, 86,126,179,210,122, 62,254,236,124, 83, 78,216,127, 42, 91, 32, 82,217,243,233,105, 49, 85,209,118,101, -153,156, 31,114,105, 67,155,125,117,252,232,225,119,149, 17, 29,209,236,161,233,143,220, 60,183,253,145,176, 22,131, 17,212,176, - 59, 50,227,183,227,248,158,111,119,138, 46,215, 52, 47, 81, 72, 55,229, 37, 84, 90,236, 87,214, 78,165, 74,253,175, 22, 29,250, -224,122,122, 26, 82,175, 92, 88,107, 41,184,146,169, 13,107,182, 54, 51, 35,125, 82,131,150, 61,112,108,207,247,175,162,146, 2, -171,186,215,124,100,176,106,249,206, 29,219,199,100,100,124, 29,102,178, 88,149,156,115,171, 82, 33,205,214, 10,134, 74, 23, 69, -221,253,255,126,201,161, 9,168, 63,242,241,113,147,126, 89,178,100,145, 44,212, 79,141,108,157, 21,197, 22, 7, 12,102, 7, 4, -198,208, 56, 66, 3,179,161, 16,135, 55,125,234,180, 27,117,163, 57,191,234,168, 44,179,228,124,130,252,149, 55, 94, 58, 8,133, -111,100, 68,131,254,211,171,236,157, 51,100,198, 15,123,227,165,159,155,114,206,251,107, 67,155, 25,140, 57, 9,239, 85,182,239, -140,149,188,191,199,246,139,132,195, 85,114,252, 48,151, 8,184, 69,177,180, 87, 15,224,183,198,237,239,126,195,223,158,201,196, - 31,126, 57,142,204,156, 34, 88,236, 78,216,236, 46, 56,156,110, 8, 18, 9,252,252,253, 16, 83,191, 61,124,253,124,144,147,157, -137,216,253,219,145, 20,127,248, 56,227,152,105,206, 77,218, 95,121,230, 31,228, 42,191,166,225, 17, 97, 66, 86,177, 29, 42,133, - 4,103, 15,239,116, 56,237,182,249,158, 20, 87, 21,101, 22, 21, 20, 46,124,125,234,155, 79,174, 94,181, 38,172,117, 3, 31,100, -228, 91,144,145,103,133,193, 90,242,253,198,229, 22, 97, 51,230, 35,254,192,154,108,183,213,112, 79, 71,158,255, 59,169,180,192, - 18, 93,110,123,226,213,107,152, 54,243, 83, 92, 75, 75,199,146, 57,111,230, 24,107, 80, 92, 85,100,213,228,250,213,126, 3,186, - 93,233, 33, 73,254,147, 86,229, 86,119, 13, 11,114, 17, 34,231,248,249, 68,246,173, 97, 65,177,116, 70,101, 92,114, 81,149, 89, -119, 14,225,197, 39, 26,190,181, 88,114,124, 19,174,206,215, 1,128, 68, 34,185,117, 41,155, 43,101,181, 90,171, 92, 85, 84,197, - 65, 68,111, 27,215, 22, 69, 17, 62, 62, 62, 80,169, 84, 53, 30,122,212,132, 54, 29,211,169,239,163, 95,244, 31,254, 34,246,109, - 93,193, 79, 29,222,254,146, 57, 55,113,185,199, 1,165,116, 58,221, 69,198,216,149,249,243,231,183, 91,185,114,101,131,169, 83, -167, 94, 91,247,197,135, 75, 0,160,160,160, 0, 0, 16, 23, 23,199, 95,122,233, 37,155,213,106, 77,209,233,116,103, 56,231,213, - 14, 29, 88,242,212,179, 87, 46,157,219,234,198,205,172, 17, 13, 91,117, 70,112,131,206, 8,107,220, 5, 58,131, 3, 39,175,102, -226,218,229,253,184,124,116,211, 78,179,214,245, 97, 77,219,220,182,109,219, 72, 65, 16,234, 27,141,198,176, 22, 45, 90,180,213, -104, 52,113,109,219,182,109, 47,149, 74, 51, 78,159, 62, 93,245,139,231, 14,105,135, 86,219,234,245, 29,191, 56,221,224,221,239, - 90,182,185,125,186,193, 59,206,172,244,253,119,238,254,207,108,161,131,230, 47,228,142,252,139, 27,215, 20,111,254,110,249, 2, -201,184, 9,111,184, 47,232,253, 95,147,170, 20,191,206,121,182,181,199,143,193,152,144, 53,249,153, 71,255, 56, 76, 67,105,207, - 85,233,207, 30,117,199, 23, 21,157,211, 3,120, 91, 21,209,242,139, 11,175, 77,156,213,166, 83,143,167,122, 15, 25, 45,184,228, - 90,236,217,250, 53, 79,137, 63,176, 81,202,221,239,154, 61, 56,122,127,117,236,118,123,181,197, 85, 69,244, 55, 52,125, 55,110, -248,230,217,205, 91,183,204, 25,254,200,163,129, 75,223,127, 2,159, 46,251, 9, 26,149, 18, 92, 20, 49,250,129,168, 81,151, 55, - 12, 30, 22, 25,234, 85,103,243,193,140, 35,175, 44,186,240,182,217,236, 72,170,110,149,107,105,193,124,212,219,219, 59,175,103, -207,158, 93,149, 74, 37,203,207,207,151,134,132,132,184,124,125,125,237, 25, 25, 25,102,155,205,182,153,115,238,113,175, 34, 0, - 56,156, 34, 82,115,172,216,182,101, 51,206,157,216,143,203,151, 19, 13,151, 47, 93,254,156, 73,249, 34, 99,118, 82, 97,245, 9, -119, 19, 43, 92, 69, 88,241,109, 85, 49, 73, 84,179,227,118,124,218, 55,230,129, 87,187, 5, 54,234, 1,255,232,146, 53, 58,250, -140, 11,184,113,106,227, 54, 67,166,252,113,206, 47, 84, 61,145,169, 10, 17,117, 27,196,112,137, 2,191, 29,250, 5, 92, 20,191, - 2, 0, 46,138, 95,197, 29,219, 57,169,203, 67, 47, 32, 32,164, 94,219,178,181,243, 53,205,150, 75, 5,211,174,205,171,183,166, -166,166, 34, 33, 33, 1, 87,175, 94, 69, 97, 97, 33,190,251, 46,181, 70,255, 63,166,194,212, 95,181,129, 13, 7, 63,246,196,216, -159, 71,141,121,218,171, 65, 76,107,161,105, 93,127, 4,106,165, 72,188,154,134,164,211,241, 98,226,201,157, 86, 71,113,238,112, -115, 97,106,165, 5,159, 38,184, 69, 40, 19,248,180,178,115, 11,118,235,214,163,233,155, 31,207,233, 26, 24, 28, 82,225,231,120, - 65, 94,174,226,173, 87,182, 55,141,253,253, 55,143,206, 69, 40,186,221, 5, 19,158, 29, 45, 74, 74, 78,228,137, 91,253,210, 12, - 0, 47,235,181, 42,185,157,139,174,106,123,236,199,143,232, 5,151, 40,194,100,113,160,216,100,131,222, 96, 69, 86,110, 1,206, -197,199,227,240,207,219,145,156,120, 46,197,105,183,239, 21, 4,182,201,156,157,120,184,186,188,219, 8,210, 6,129, 1, 1, 72, - 41, 52,194, 75, 33, 69, 90,210,105,155,169, 88, 95,233,217, 67,170, 99,206, 79,202,210,132, 54, 29, 52,122,244,152,221, 15, 12, -126,196,183, 83,247, 1,234, 32, 31, 63,200,165, 28, 87, 82, 51,113,230,248,110,211,181,115, 71,138,157,118,227,131,181,113,150, -150,255,117,149, 22, 88,197,134,188,126,207, 63, 55,113,143, 32,149, 40,193, 69,171,217,172,123,240,207, 20, 87,127, 21,206,221, - 25,207, 62, 89, 50,105,189,236,187,128, 75,228,170, 39, 31,223, 99, 41,255,221,192,233,230,234, 39, 31, 63,110, 6, 0, 46, 86, - 62, 97,239,214, 16,222,247,191,102,164,167, 23,156, 42, 44,180, 29,252,179, 43,251,202,159, 91,176,138,213,130,166,102,205,154, -221, 42,170, 36, 18, 9,220,110,183,199, 31, 64,114,165,234,197, 7, 30,121,158,237,251,105, 5, 63,121,232,167,201,230,220,164, -101,247,218,222,210,130,233, 4, 99,236,194,187,239,190,219, 41, 52, 52, 52,244,131, 15, 62,240, 42, 46, 46,150, 45, 93,186,212, -154,159,159,159, 93, 92, 92, 28,203,121,229, 19,146,239,206, 60,227, 4, 48, 82, 27,218,164, 31,223,188, 98,160, 95, 80,157, 65, -190,193,117, 27, 21,229,221, 76,209,231,101,238, 5,176,175,244, 0,143, 53,210,190,125,251,134,130, 32,140, 6,208, 74,163,209, - 52,214,106,181, 74,206,121, 51,198,216, 69, 81, 20,227, 91,180,104,177, 3, 64,141,254,255,210, 14,173,182,245,158,252,205,134, - 66,179, 40,183, 11,242, 13,105,135, 86,219, 0, 32,103,239, 84, 51,128,109,161,253,166,141,220, 30,155,182,228,162,206,247,213, -220,131,179, 61, 62, 55, 93,153,162, 27,103, 27, 87,191,149,103, 44,153, 23, 51, 0, 60,171, 9,109,186,224,124, 92,236, 12,198, - 33,115,195,245,145, 57,231,202,233,218,200,151,201,100,214, 58,117,234, 84,184, 90, 80,169, 84, 86, 57, 63,165,244, 96,135, 43, - 25,235,187,102,203,143,107,158,253,105,251,182, 57,189,251, 15, 15,244,170, 91, 23,245, 67, 24,214, 76,235,240,234,254,184,188, -147,143,188,121,228,203,107,153,214,120,206,121,141,230,187, 24, 12,134, 36,198,152,206,104, 52, 62,202, 57,191,193, 24,139,212, -233,116,103,157, 78,231,249, 26, 23, 2, 34,198,118,235,214,249, 59,198,152,148,187,196,121,177, 50,201, 6,107,214,229,140,123, - 41, 40,202,107, 93,223, 7, 83, 62, 88,220,161, 81,227, 38, 29,202,206, 69,216,178,158, 55, 38,190,189,160, 67,189, 6, 49, 29, -254, 56, 63, 97,213,171, 8,121,230, 25, 11, 11,109, 61, 48,113,239,252,247, 3,147,143, 79, 86, 5,212,213,154,242,211, 10,117, -105,167,231,155,115, 67,231,223,203,129, 37,203, 75,189,122,113,209,202,249,111, 79,205,186,153,178,210,148,155,116, 1, 0, 76, -185, 73, 23,212,161, 77,222,207,207,206,152, 90,144,123,109,254,189, 62, 23, 38,147, 41,243,219,111,191,245,235,209,163,135, 16, - 26, 26,138,188,188, 60, 28, 60,120, 80, 20, 69,177,218, 19, 51,223,201, 88,112,237, 32, 99,141, 2,214, 46,251, 98,158, 92,227, -253,144,203,229,138,224, 28,144, 74,165, 89,118,115,241,110,131,160,121,147, 23,166, 86,243,186, 20, 25, 0,161,236,220,130,162, - 40,178,121, 75,214,164,201,188,188, 43, 28, 82,117, 90, 13,106, 81, 20, 61, 62, 23,161, 46,253,116,163,154,238, 87,101, 24,231, - 51,219,118,236, 58,221,233,116, 88, 81, 50, 31,204, 10,192,202, 57, 10, 4,129, 29,150,136,206, 61,158,156, 2,173,210,124, 6, - 31,206,164,240, 86, 73,193,192, 96,212, 23,242,154,204,185,170,136, 41, 39,241, 34, 99,125,163,119,217,127,124,230,192,175, 59, - 31,119,187,221,245, 75, 95, 57,169, 54,139,105,163, 49,203,127, 45,231,167,254,220, 50,244,191,137, 74, 11,172,210, 98, 42,250, -255,175, 41,247,166, 32,165,250,163,203,214, 68, 86, 78,225,154,193,195,167,242,212,180,220,147,215,179,109,107,121,185,211,223, -252,217,204, 27, 55,242, 14,150, 14, 11,222,181,196,243, 94, 87, 11,150,113, 88, 45,159,124,246,238, 24, 88, 45,166,117,230,220, -164, 53,127, 38,171, 76,105, 1,117,152, 49,230, 59,121,242,228,246, 74, 16,255,138, 0, 0, 32, 0, 73, 68, 65, 84, 90,173, 86, -150,159,159,127,130,115,174,175,246,206,149, 48,230, 36, 29, 4,112, 16,192,180,218,104, 99, 92, 92,220,181,118,237,218,173, 23, - 4,161, 62,231, 60,148,115,238,139,146, 2, 54, 95, 42,149,222,188,116,233, 82,141, 63,196, 1,128,219,188,119, 25,237,146, 24, - 23,247,223,125,231,239,100,129, 33,191,166, 23,186, 87, 72, 52, 94,255, 51,115, 8, 76, 57,137, 23, 1,212,194, 17,118,111, 87, -213,113,174, 60, 85,190,208, 58,244,203,234,103, 5,133,239, 71,253,155, 90,205,131, 94,191, 57,235,232,249,188, 19,156,115,143, -143,142,125,119, 54,207, 83, 40, 20, 22,198, 88,164, 92, 46,183,216,237,246,248,123,201, 41, 45,238,239,105,165, 97,101, 68,176, -211, 29, 58,120,254,241, 36,130, 85, 89, 20,243,156,243,102, 0,211, 88,139, 22, 31,168,147, 79,249,155,243,131, 10, 56, 79,172, -149, 63, 84,198,236,132, 89, 40, 29,230, 46,207,156,147,244, 17,128,143,254, 76,246,169, 83,167,126,158, 63,127,190,126,201,146, - 37, 81,110,183, 91,109,183,219,205, 22,139, 37, 53, 35, 35,227,183,123,201,227, 60,217, 14,224,181,210, 75,141,153,243, 19,178, -181,161, 77, 22,119,239,214,253, 53, 0, 96,224,139, 83, 15, 47,158, 82,213,125,180,161, 77, 44,229,183,175,234, 92,132,181,201, -152,155,244, 21,128,175,254,178, 7,224, 98,222,216, 81,143, 2,165, 7,212, 22, 93,174,123, 62, 28,199,109,177, 37,239,249,111, -112, 15, 39, 47,191,175,240,210,211, 35,252, 21, 23, 0, 3, 40,147, 50, 41,147, 50, 43,216, 86,248, 59,180,147, 50,239,223, 76, -175,240,230,145, 94,225,205, 35, 61,189,127, 69,219,255, 93,247,253,127, 53,243,126,187,120,124, 38,111, 66, 8,169, 45,220,131, -179, 9, 16,242, 87,178,100, 94,242,248, 56,126,247,178, 61, 33, 12, 37,103,165,190, 11,247,236,236,219, 37, 33,140, 85,152, 81, -149,234,242, 41,147, 50, 41,147, 50, 41,147, 50, 41,243,254,203,172, 46,187, 38,245,199,255,180,191,178,123, 12,127,147,110, 73, -202,164, 76,202,164, 76,202,164, 76,202,252,239,102,222,111, 23,207,207,241, 66, 8, 33,132, 16, 66, 60, 66, 5, 22, 33,132, 16, - 66, 72, 45,163, 2,139, 16, 66, 8, 33,164,150, 81,129, 69, 8, 33,132, 16, 82,203,168,192, 34,132, 16, 66, 8,169,101,140,115, -142,210, 83, 76, 49, 0,183,253, 76, 8, 33,132, 16,242,255,225,126,171, 69,110,245, 96, 49,198,254,212, 57,183, 8, 33,132, 16, - 66,254,140,251,169, 22,185, 85, 96,113,206,217,253,180, 99,132, 16, 66, 8,249,123,185,159,106,145,219,230, 96,253,221,187,227, - 8, 33,132, 16,242,247,118,191,212, 34, 52,201,157, 16, 66, 8, 33,164,150,177,210, 67,222, 19, 66, 8, 33,132,144, 90, 66, 61, - 88,132, 16, 66, 8, 33,181,140, 10, 44, 66, 8, 33,132,144, 90,246,151, 22, 88,140,177, 1,148, 73,153,148, 73,153,148, 73,153, -148, 73,153,255, 52,212,131, 69, 8, 33,132, 16, 82,203,168,192, 34,132, 16, 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50, - 42,176, 8, 33,132, 16, 66,106, 25, 21, 88,132, 16, 66, 8, 33,181,140, 1,168,112, 37, 0,231,124,159,199, 33,247,176,154,160, -186,124,202,164, 76,202,164, 76,202,164, 76,202,188,255, 50,171,203,174, 73,253,241, 63,141,115,254,151, 93, 0, 12,160, 76,202, -164, 76,202,164, 76,202,164, 76,202,252,167, 93,104,136,144, 16, 66, 8, 33,164,150, 81,129, 69, 8, 33,132, 16, 82,203,168,192, - 34,132, 16, 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50, 42,176, 8, 33,132, 16, 66,106, 25, 43, 93, 13, 0,198, 24,231, -156,179,255,114,123, 8, 33,132, 16,242, 15,117, 63,213, 34, 2,240,199, 14, 49,198,248,127,187, 65,132, 16, 66, 8,249,231,185, -223,106, 17, 26, 34, 36,132, 16, 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50,154,131, 69, 8, 33,132,144,255, 9,247, 83, - 45,114,171,192, 34,132, 16, 66, 8, 33,181,131,134, 8, 9, 33,132, 16, 66,106, 25, 21, 88,132, 16, 66, 8, 33,181,236, 47, 45, -176, 24, 99, 3, 40,147, 50, 41,147, 50, 41,147, 50, 41,147, 50,255,105,168, 7,139, 16, 66, 8, 33,164,150, 81,129, 69, 8, 33, -132, 16, 82,203,168,192, 34,132, 16, 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50, 42,176, 8, 33,132, 16, 66,106, 25, 3, - 80,225, 74, 0,206,249, 62,143, 67,238, 97, 53, 65,117,249,148, 73,153,148, 73,153,148, 73,153,148,121,255,101, 86,151, 93,147, -250,227,127, 26,231,252, 47,187, 0, 24, 64,153,148, 73,153,148, 73,153,148, 73,153,148,249, 79,187,208, 16, 33, 33,132, 16, 66, - 72, 45,163, 2,139, 16, 66, 8, 33,164,150, 81,129, 69, 8, 33,132, 16, 82,203,168,192, 34,132, 16, 66, 8,169,101, 84, 96, 17, - 66, 8, 33,132,212, 50,198, 57, 7, 99,140,151, 94,239,203, 57, 63,252,223,108, 16, 33,132, 16, 66,254,121,238,183, 90, 68, 90, -246, 3,231,156,149,238, 28,251, 47,182,135, 16, 66, 8, 33,255, 80,247, 83, 45,114,107,136,176,116,135,250,254, 23,219, 66, 8, - 33,132,144,127,176,251,169, 22,185,173, 7,235,191,217, 16, 66, 8, 33,132,252,179,221, 79,181, 8, 77,114, 39,132, 16, 66, 8, -169,101,172,244,144,247,132, 16, 66, 8, 33,164,150, 80, 15, 22, 33,132, 16, 66, 72, 45,163, 2,139, 16, 66, 8, 33,164,150,253, -165, 5, 22, 99,108, 0,101, 82, 38,101, 82, 38,101, 82, 38,101, 82,230, 63, 13,245, 96, 17, 66, 8, 33,132,212, 50, 42,176, 8, - 33,132, 16, 66,106, 25, 21, 88,132, 16, 66, 8, 33,181,140, 10, 44, 66, 8, 33,132,144, 90, 70, 5, 22, 33,132, 16, 66, 72, 45, - 99, 0, 42, 92, 9,192, 57,223,231,113,200, 61,172, 38,168, 46,159, 50, 41,147, 50, 41,147, 50, 41,147, 50,239,191,204,234,178, -107, 82,127,252, 79,227,156,255,101, 23, 0, 3, 40,147, 50, 41,147, 50, 41,147, 50, 41,147, 50,255,105, 23, 26, 34, 36,132, 16, - 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50, 42,176, 8, 33,132, 16, 66,106, 25, 21, 88,132, 16, 66, 8, 33,181,140, 10, - 44, 66, 8, 33,132,144, 90,198, 74, 87, 3,128, 49,198, 57,231,236,191,220, 30, 66, 8, 33,132,252, 67,221, 79,181,136, 0,252, -177, 67,140, 49,254,223,110, 16, 33,132, 16, 66,254,121,238,183, 90,132,134, 8, 9, 33,132, 16, 66,106, 25, 21, 88,132, 16, 66, - 8, 33,181,140,230, 96, 17, 66, 8, 33,228,127,194,253, 84,139,220,234,193,186,159,198, 61, 9, 33,132, 16,242,247,115, 63,213, - 34,183,122,176, 8, 33,132, 16, 66, 72,237,160, 57, 88,132, 16, 66, 8, 33,181,236, 47, 45,176, 24, 99, 3, 40,147, 50, 41,147, - 50, 41,147, 50, 41,147, 50,255,105,168, 7,139, 16, 66, 8, 33,164,150, 81,129, 69, 8, 33,132, 16, 82,203,168,192, 34,132, 16, - 66, 8,169,101, 84, 96, 17, 66, 8, 33,132,212, 50, 42,176, 8, 33,132, 16, 66,106, 25, 3, 80,225, 74, 0,206,249, 62,143, 67, -238, 97, 53, 65,117,249,148, 73,153,148, 73,153,148, 73,153,148,121,255,101, 86,151, 93,147,250,227,127, 26,231,252, 47,187, 0, - 24, 64,153,148, 73,153,148, 73,153,148, 73,153,148,249, 79,187,208, 16, 33, 33,132, 16, 66, 72, 45,147, 86,116,163,172,203,199, - 57, 46,151, 43, 4, 0,164, 82,105,174,243,228,123,225, 85,133,200,128,254, 46, 96, 69,105,224,139, 78,206,127,173, 32,243, 87, -151,203,229, 95,154,169,115,158,124,111,112,149,153,157, 63,218,115,219,246, 39,222, 29,120,215, 70,140, 73,100,157, 63,202,188, -163,173, 17, 85,229,222,134,115,247,255, 71, 59,255, 46,153,255,100,242,174, 31,231, 56,157, 37,175, 35,153, 76,154,235, 56, 81, -245,235, 72,222,229,163,204,219,182,255,253,221,208,170, 50,213, 42,101, 65,163, 58,193, 11,171,202,188,150,153,255,111,147,217, - 26, 88, 85,102, 77,223,155,145,225,225,253,221,165,239, 77, 9,240,226,141,204,204,255,159,247,166,135, 24, 99, 29, 1,188, 7, -192,167,220,205,241,156,243,215,239, 53,147, 16, 66,254, 23, 84, 88, 96,185, 92,174,144, 51, 91,103,192,100, 3,250, 63,253, 81, - 72,195,225,203,190,187,107, 27,171, 78, 81,116,241,135,214, 18,103,177,127,176,212,225,147,153,153,201, 0,128, 49,182, 2, 64, - 84, 5,153,254,103,182,206,128,217, 14,244, 30, 51,211, 63, 10,240,201,147,203,223, 80,105, 52,253, 44, 22, 75, 75, 0, 80,169, - 84, 23, 45, 38,211,193, 96,135, 99,193,157,219, 87,182, 3,229,219,250,192, 83, 31,133, 52, 27,190,236, 85,183, 40, 42,110,158, -250,186,183, 53,255,138, 84,230,178, 45,157, 14,236,154, 1,220, 85, 76, 85,146,247,199,227, 62,254, 78,160, 12,120, 64,225,229, -213,214,207,223,191,151,200,121,115, 81, 20,153,219,229,186, 84,172,215, 31, 21, 93,174,115, 46,187, 41,240,204,246, 57, 98, 85, -237,188,115, 95, 30, 7,164, 91,129, 81, 26,173,182,159, 68, 38,235, 14, 0,110,167,243, 55,147,209,120,112, 4,176,201,147,125, -247,244,249,185,215,237,255,105,156, 78, 87, 72,202,158, 25,176, 57,129,246,143,205, 9,105, 51,118,237,119, 0, 96,207, 61, 23, -106,188,178,189, 11, 0,104, 26, 13, 61,161, 12,107,159, 3, 0,210,244,172,144,164, 29,239,194,230, 4,154, 15,157, 25, 82, 93, -230,248, 15,126, 12,124,107,194, 72, 37, 0,236,221,252, 69,147, 3, 91,190, 26, 2, 0, 15,140,124,105,215,160,199, 94, 73, 2, -128,121,203,183, 4,126, 63,231,137, 42, 51, 61,123,111,234,229,250, 43, 59, 26,219,139,179,252, 34, 53,210,176, 43, 87,174, 8, - 0, 16, 17, 17,225,209,123,179, 46,224,155, 5,188, 44, 72, 36,189, 26, 53,110,220, 30, 0,191,150,156, 28,231,118,185,142,133, - 3, 75,107,249,181,244, 42,231,124, 88,249, 27, 24, 99,127, 50,146, 16, 66,254,251, 42, 44,176, 0,192,100, 3, 14, 95, 5,250, -116,109,131, 9, 99, 31,210,150,255,221,166,101, 51,163,174,156,218,214,236,155,181, 11,132, 54,109,218, 32, 37, 37,197,163, 7, - 51,219,129, 67, 87, 0, 20, 93,246,214,105, 52,201,139, 62,253,212,103,224,192,129,210,136,136, 8, 48,198,144,157,157,221,117, -223,190,125, 29,167, 76,153, 50, 9, 69,151,117,102, 59, 12,135,174, 84,159, 91,214,214,150, 77,234,225,189, 87,158,240, 5,128, -233, 79, 47,237,120, 42, 49, 39, 32, 57, 57,185,255,219,111,191, 93, 32, 57,120,240,171, 32, 96,117, 14,112,195,147,118,174,251, -249,132,151,111,214,134,134,227, 94,121,101,115,227,198,141,181,209,209,209,204,219,219, 27, 18,137, 4, 58,157, 46,234,194,133, - 11, 67, 78,158, 60,105,218,119,120,133,226,244,201, 71,174,229,122,117,177,122,180,239,150, 76,175,189,222,222, 23,159, 26, 49, -162,238, 19, 79, 60,225,213,168, 81, 35, 0, 64,114,114,114,204,166, 77,155,198,108,222,188,249, 3, 88, 50, 93,102, 59,172,213, -237,251,173, 76, 0, 94, 64,119,191,144,144,113, 18,153,172,165,203,229,170, 3, 0, 82,169,244,166,219,233,188, 88,148,155,251, -237,157,219,147,187,217,156,192,229, 44, 96, 64,175,246,120,106,228, 0, 13, 0,188, 61,250,227,174,233,169, 87,229,118,187, 29, - 77,154, 54,239, 49,107,206,194, 61, 16, 4,172,223,178,239,214,246,158,100,198, 95, 78,193,140, 89,139,144,121,126, 83, 87,183, -254,106, 63, 67,177, 94, 2, 0, 62,190,190, 35, 55,253,176,225, 96, 68,235, 81,191, 95,205,119,120,148, 89,213,123,115,247, 15, -159,135,103, 92, 56,216,226,203,189,171,100, 81, 81, 81, 56,127,254,188, 71,251,126,235,181,161, 79,244, 22,195,195, 47, 45,120, -243,205,176,222,189,123, 67,171,213, 66, 42,149,194,229,114, 13, 56,118,236,216,128, 25, 51,102,188, 4,125,162,201,211,247,166, - 7, 22, 48,198,250,141,159,240,106,248, 67,143,142,194,200, 7,123,212, 74, 40, 33,132,252,183, 85, 88, 96, 73,165,210,220,129, -207,204, 14,233,213,165, 21, 78,157, 75,210,167, 93,207, 50,150,253,174,240,226,166, 38,143,246,168,211,226,200,145,195,176,217, -108,248,237,183,223,112,238,220, 57,164,166,166, 98,226,196,137, 54, 41,240, 98, 37,153,186,222, 99,102,250, 67,127, 69, 27,163, - 72,172,191, 47, 33, 65, 98,181, 90,113,228,200, 17,232,116, 58, 40, 20, 10,212,173, 91, 23,131, 6, 13,146, 38, 36, 36, 4,244, - 31,248,160,111,239, 7,159, 76,129,111,140, 81, 42,149,234, 42,221, 1,169, 52,183,255,211, 31,133,180,136,169,135,228,180, 76, -253,123,115,190, 49,138, 34,151, 94, 75, 77,119, 28, 62,124, 24,237,219,183,199,175,191,254, 26, 88, 88, 88,248,254,210,165, 75, -223,147,125,242,229, 98,167,189, 96,106, 21,121,186,222, 99,102,250, 7,230,110,140, 62,176,251, 39,249,197,139, 23,229, 95,127, -253, 53, 10, 10, 10,160, 80, 40,224,231,231,135,176,176, 48, 52,105,210,132, 77,159, 62, 93, 59,116,232, 69,252,235,197, 81,209, -142,134, 47, 36, 86,214,206, 91,251,110, 76, 87, 7, 21,239,109,180,229,151, 95,132,158, 61,123,222,246, 53,189, 65,131, 6, 24, - 60,120,176,215,184,113,227, 26, 61, 49,102,172,216,251,225,241,201,208, 70,155,171,205, 52,221, 80, 5,154, 99, 35, 6,140, 25, -179,125,230,204,153,126, 97, 97, 97,208,104, 52, 0, 0,189, 94, 95, 55, 45, 45,173,235, 7, 31,124,240,216,137,248, 31,164,189, -135,222,200,132, 38,210, 82,213,243,249, 79, 37,147, 73,115,203,122,141,188, 53, 42,221,141,140, 28, 19, 0,216,237,118,216,237, -118,216,108, 54, 76,126,105,162,228,197,199, 58, 55,142,238,245,234,217,212,155, 57,133,205,247,253, 30, 80,118,223,234, 50,165, -230,212,162,162,235,251, 95,156,241,230,155, 97,161,161,127,140,252,173, 95,183, 78, 82, 88, 88, 56, 96,198,140, 25, 45,184,186, -111, 81,243,161, 51,253,170,202,172,234,189, 89,148,244, 75,253, 89,175, 12,110,187,108,206, 14,184,221,110,196,198,198,226,200, -145, 35, 88,184,112, 33,223,181,107,151,222, 71,163,169,230,189,153,232,221, 51, 60,187,225, 39,159,108,102, 74,165, 18,219,182, -109, 67, 66, 66, 2, 4, 65, 64,155, 54,109,240,212, 83, 79, 97,192,128, 1, 97, 19, 38, 76,228,189, 31, 28,125, 13,190, 77, 13, -127,230,181,196, 24, 19, 0,188,250,206,140, 79,194,159,126,225,101,204,155, 53,157, 10, 44, 66,200,253,163,116, 53, 0, 47,189, -244,225,156,131, 3, 66,131,225,203,190,223,120, 90,252,165,193,240,101,223,115, 64,224,128,224, 3,212,107,215,174,157,179,168, -168,136,159, 60,121,146, 79,158, 60,217,180,120,241,226,131,191,252,242,203, 38,151,195,177, 50, 34, 60,124, 62, 7,132, 10,103, -212, 3, 66, 52,224,171, 86,171,243,174, 95,191,206,119,238,220,201, 63,252,240, 67,254,237,183,223,242, 93,187,118,241,125,251, -246,241, 93,187,118,241,239,191,255,158,199,199,199,243,164,164, 36,174,209,104,242,162, 1,223, 42, 50, 37, 28,144, 52, 25,254, -245,212,205,167,156, 51,155, 14, 95, 54,133, 3, 18,127,160, 89,187,118,237,220,155, 54,109,226,235,215,175,231,107,215,174,229, -241,241,241, 60, 63, 63,159, 75,149,154,188,178,251, 85,214, 78, 14, 8,117,234,212,201, 43, 42, 42,226,145,145,145, 92,161, 80, -240,208,208, 80,222,164, 73, 19,222,181,107, 87, 62,100,200, 16, 62,118,236, 88,254,254,251,239,243,162,162, 34,238,229,229,149, - 83,118,191,202, 50,219, 3, 42,141, 70,115,253,204,153, 51,188, 50, 22,139,133,231,231,231,243, 61,123,246,112,141, 70,115,189, - 61,160,170, 42, 83, 5,116,104,221,186,117, 94,126,126, 62,119, 56, 28,252,250,245,235,252,194,133, 11, 60, 33, 33,129, 95,191, -126,157, 91, 44,150, 91,217, 73, 73, 73,188, 97,195,134,121, 42,160, 67,165,153,255,228, 75,217,107,226,142, 75, 84,104,232,144, -176,176, 48,203,230,205,155,249,205,155, 55,249,154, 53,107,184, 0,124,124,215,182, 85,100, 42,128, 65, 61,123,246,116,199,198, -198,242,179,103,207,242,105,211,166,241,193,131, 7,243, 7, 31,124,144,207,152, 49,131,103,100,100,240,140,140, 12, 62,100,200, - 16,183, 2, 24, 84,221,235,179,162,247,166, 47, 16, 53,116,232, 80,139,195,225,224,215,174, 93,227, 45, 91,182,204,144, 0,227, - 52, 64,139, 62,128,178,186,215,103, 29,192, 63, 60, 60, 60, 43, 54, 54,150,111,217,178,133, 71, 71, 71,231, 73,128,241, 62, 64, - 3, 31,160,129, 4, 24,223,160, 65,131,188,216,216, 88, 94, 80, 80,192,163,162,162,178,234, 0,254,247,250, 90, 66,201, 49,248, - 86,189, 51,227, 19,158,152, 97,226,239,204,248,132, 3,184,206, 75,126,249,235,127,253,245, 64, 23,186,208,229,255,253,114, 87, - 45,242, 55,191, 72,203, 21, 90,140, 49,198, 81,114,108,172, 10, 89, 36,146,217,243,230,205,147, 90,173, 86,124,243,205, 55,134, - 39, 71,143,222,226,231,231,231,146,201,100, 96, 66,245, 11, 18,243,148,202,215, 62,157, 55,207,207,110,183,227,244,233,211,232, -216,177, 35,148, 74, 37,228,114, 57,100, 50, 25,100, 50, 25,194,195,195,145,155,155,139,150, 45, 91,226,173,183,222,242,157, 59, -123,246,107,176,217,102, 85,149, 43,138, 92, 10, 0,110, 81, 84,200,129, 9,109, 59,117,154, 63,125,250,116,193,199,199, 7, 86, -171, 21, 54,155, 13, 9, 9, 9, 8, 12, 12,132, 90,165,150,194,102,170,182,173,130, 32, 8, 90,173, 22, 7, 14, 28,192,242,229, -203,145,154,154,138,172,172, 44,120,123,123,163,101,203,150,104,222,188, 57,250,244,233,131,107,215,174,129,121, 48,105,228,146, - 84,250,242,228, 23, 95, 12,105,223,190,125,133,191,183, 90,173, 40, 42, 42,130, 94,175, 71,221,186,117, 49,106,212,168,144, 13, -235,215,191, 12,151,107, 65, 69,219, 7, 2, 97,117, 99, 98,182,159, 60,121, 50,136,115,142,245,235,215,195,104, 52,194,110,183, - 67, 16, 4,120,121,121,193,223,223, 31, 15, 60,240, 0,130,131,131, 17, 19, 19,131, 31,127,252, 49,104,200,144, 33, 59, 2,115, -115, 59, 20, 0,153,213, 62, 9, 4,233, 57, 57,123, 7, 1, 65,227,198,142,221,117, 46, 62,190,215,184,113,227,144,147,147, 51, - 93, 54,109, 90,145, 19, 88, 84,221,253,155, 2,190, 1,225,225,171, 63,249,228, 19, 33, 59, 59, 27,111,188,241, 70,126,102,122, -250, 52, 95,224, 40, 0,236,223,189,187,215,183,223,126, 59,119,253,250,245, 65,235,214,173, 19,218,183,111,191,186,233,245,235, - 45, 19, 1,125, 77,218,105, 0, 94,253,236,179,207,188,172, 86, 43, 6, 14, 28,120,205, 43, 53,181,173, 11,176,120,122,255, 44, -224,229,133,111,189, 21,166, 84, 42,241,198, 27,111,228,155,211,211, 91,185,128,188,114,155,164, 5,167,164,236,126,250,233,167, - 47,196,199,199, 7, 45, 90,180, 40,236,177, 17, 35, 94, 6,240,177,167,143,113,199,132,246,152,241, 19, 94, 13,109,223,185, 27, -214,173, 92,138, 57, 51,223, 94, 13, 96, 25, 99,236, 21, 0,159,122,154, 73, 8,185,191,120, 82,139,252, 93,220, 42,176, 74,119, -168,111, 85, 27,251, 7, 6,118,108,213,170, 21,142, 28, 57,130,214,173, 91,159,244,243,243,115,201,149, 74,200,100, 50,112, 81, -172,246,193, 84, 26, 77,255, 1, 3, 6, 72,127,255,253,119, 52,108,216, 16, 42,149,234, 86, 97, 85,118,145,203,229, 8, 15, 15, - 71,113,113, 49,250,247,239, 47, 91,178,100, 73,255,234, 10, 44, 0, 72,191,114, 65,155,247,251, 39, 99, 87,172, 89,221,160,119, -239,222,208,235,139, 33,138, 34,212,106, 53,236,118, 59,164, 82,105,201, 80,143,147, 23,123,242,196,184,221,110,183, 68, 34, 65, -195,134, 13, 49,123,246,108, 88,173, 86,200,229,114, 0, 64,113,113, 49,138,138,138,112,225,194, 5,164,165,165,129,151,150,222, - 85,241,246,245,125,232,137, 39,158, 80, 84,244, 59,155,205, 6,189, 94, 15,189, 94,143,162,162, 34, 88,173, 86,116,235,214, 77, -241,203,142, 29, 15,161,160,160,194, 2,203,230,229,245,216,186,117,235, 66, 20, 10, 5, 44, 22, 11, 12, 6, 3,110,220,184,129, -244,244,116,107,110,110,174,203,219,219, 91,136,142,142, 22,148, 74,165,114,248,240,225,172,184,184, 24,140, 49, 12, 29, 58, 52, -240,187,245,235,159, 0, 80,229,138, 54,242,135,189,128,173,131,221, 62,172, 75,231,206, 7, 78,158, 58,213,254,181,215, 94, 67, -124,124,252, 39,234, 31,126, 56,108, 6,206, 85,117,223,107,192,203,243,203, 21, 46, 60, 61,189,181,227,142,194, 37,186,164,112, - 57, 95, 86,184, 60, 94,195,194, 5, 0,188,125,125, 59,133,135,135, 99,215,174, 93,184,158,154,250,118, 77,138, 43, 0, 16, 36, -146,158,189,123,247,198,182,109,219,144,145,158,254,246, 29,197, 21, 0, 32, 15,200,147, 94,187,246,246,234,213,171, 87, 61,247, -220,115,144, 72,165, 61,225,114,213,228, 97,238,154,208,254,220,196,215,176,122,249,146,213, 0, 94,224,156,139, 0, 78,214, 36, -144, 16,114,127,241,164, 22,249,187,184,213,237,196, 57,103, 0, 14, 85,181,113, 72, 72, 72, 29,173, 86,139,204,204, 76, 52,111, -214, 44, 87,169, 84, 66, 33,147,193, 75, 81, 97,221,112, 23,179,217,220, 58, 34, 34, 2,122,189, 30, 65, 65, 65,144,203,229,183, - 46, 10,133,226,214,207,222,222,222, 16, 4, 1, 81, 81, 81, 48,155,205,173,171,205,205,185, 16,242,195,146,151, 38,199, 30,222, -213, 96,196,136,145,240,247, 15, 64,100,100, 93,132,132,132, 64,165, 82, 33, 50, 50, 18,141, 26, 53,226, 11, 22, 44,128, 58,164, -141, 71, 31,224,229,139, 38,169, 84, 10,183,219,141,156,156, 28, 36, 38, 38, 34, 62, 62, 30,177,177,177, 56,123,246, 44, 12, 6, - 3, 60,168,175, 96,182, 88,218, 74,165,119, 79,121,179,217,108, 40, 42, 42,186,213,123, 85, 84, 84,132,188,188, 60,164,165,165, -193,104, 50,181,171, 44,207, 63, 48,112,100,171, 86,173, 36, 0,160, 82,169,208,174, 93, 59, 44, 91,182,204,245,243, 79, 63,141, -110, 17, 27, 27, 16,185,103,143,223,138,175,191, 30, 61,106,212, 40,247,239,191,255,142,226,226, 98, 92,190,124, 25,193,193,193, - 82,133,151,215, 19,158, 60, 7,228, 15,103, 0, 83,144,193,240, 96,247,238,221, 83,244,122, 61, 62,253,244, 83, 65,230,237,189, -124, 38, 32,169,242,142, 18, 73,143,222,189,123, 99,251,246,237,200, 76, 79,159,150, 94, 65,225,146, 14,228, 93,191,118,109,218, -234,213,171, 49,104,208, 32, 48,169,180,198, 19,145,186,118,237,218, 74, 20, 69,156, 63,127, 30,126,192,137,154,222,191, 81,227, -198,237,181, 90, 45, 18, 18, 18,160, 41,237, 93,171,136, 6, 56, 26, 23, 23, 7,149, 74,133,230, 45, 90,116,168,225,195, 44, 96, -140,101, 61, 55,241, 53,108,217,125, 28, 0,176,122,249,146, 28,252, 81, 92, 17, 66,254,225, 60,169, 69,254, 46,106,116,160,209, -178, 66, 66, 38,147, 65,161, 84, 66,161, 80,148, 20, 70, 74,165,199, 25,140, 49,120,121,121,221, 42,168,202, 23, 86,229,127, 86, -171,213, 30, 21, 46, 0,160,187,186,187,215, 11,207, 63,167, 80, 42,149,176,219,109,224,156, 67,169,244,130,159,159, 31, 26, 54, -108,136,226,226, 98,116,239,209,199,118,163, 72,190, 35,176,249,240,248,154,236,115, 25,151,203, 5,147,201, 4,157, 78,135,194, -194, 66, 20, 23, 23,195, 98,177,120,188,164, 92, 20, 69,201,141, 27, 55,176, 97,195, 6, 20, 20, 20, 0, 40,153, 64, 93, 86, 84, -149,253,155,146,146,130,245,235,215, 35, 53, 53, 21,168,193,255, 79,175, 94,189,176, 99,199, 14, 73,223,254,253, 87,254, 26, 29, -157,249,107,116,116,102,223,254,253, 87,110,223,190, 93, 82,167, 78, 29,164,165,165,225,244,233,211,208,233,116,101, 47, 96, 82, - 67,201,128,206, 92, 88,248,220,244,233,211,185, 86,171,197,167,243,231,183,253, 24,120,178,170,251,148, 47, 92,124,171, 40, 92, -124,255, 92,225, 2,206, 57, 68, 81,132,219,237,209,209, 72,238,194, 24, 99, 50,153,172,166,135, 72,240,120,227,242, 19,218,223, -122,127, 54,118,110,219, 84,246,171, 43, 84, 92, 17, 66,238, 71, 82,224, 86,197, 88,237, 31,222,156,156,156,155, 38,147,169, 65, -116,116, 52, 50, 50, 50, 66,162,162,162,210, 21, 50, 25,228, 10,133, 71,115,176,212,106,245,249,204,204,204, 30,117,234,212,129, -203,229,186, 85, 76,221, 57, 68, 8,148,244,202,156, 61,123, 22,106,181,250, 60,172, 85, 30, 1, 1,110,187,174, 94,135, 14, 29, -110,245, 4,249,249,249,193,207,207, 23, 74,165, 23,222,125,247, 93,113,209,130, 5, 75,163, 30,152,169,127,118,202,116, 62,253, -227,149, 30, 62, 53,158,241,244, 15,146, 90,173, 62, 31, 25, 25,217,205,215,215, 23, 91,182,108, 65, 90, 90, 26,116, 58, 29,204, -102, 51,108, 54, 27,204,102, 51,236,118, 59,188,188,188,208,162, 69, 11,248,248,248, 96,223,190,125,231, 97,179, 85,152,167, 43, - 40,216,114,254,252,249,110,157, 59,119,190,213,131,210,175, 95, 63,214,175, 95,191,160,178,235,102,179, 25,249,249,249, 56,121, -242, 36,246,237,219, 7,198, 24,174, 92,185,226,182, 89, 44,223,255,217,253,254,167,178, 2,191, 73, 86,175, 94, 53,105,210,164, -231,123,244,232, 1, 55, 48, 4,192,250,202,182,255,171, 11,151, 50,177,177,177, 23,220,110,119,143, 38, 77,154,160, 8,232, 2, - 96, 91, 77,238,159,124,245,106,156,203,229,234,223,182,109, 91,108,217,184,177, 23,128,180,138,182, 51, 1,189,218,183,111, 15, -139,197,130,203,151, 46,157,241, 36,187,180,184, 90,249,206,140, 79,198, 63,253,194,203, 88,183,114, 41, 86, 47, 95,114, 99,213, -178,197,145, 0, 28, 53,105, 39, 33,228,254,229,105, 45,242,119, 81,163, 30, 44,189, 78,119, 38, 46, 46, 14, 29, 58,116, 64,114, -114,114,103, 46,138, 82,185, 66, 1,133, 92, 14,193,131, 63, 32, 22,147,105,255,254,253,251, 93,237,218,181,131,209,104,132, 84, - 42,189,173,247, 74,161, 80, 64, 38,147, 65, 42,149, 66,173, 86, 99,235,214,173, 14,139,201,180,191,186, 92,209, 45,186, 5, 65, -184,245, 71,172,168,168, 8,102,179, 5,179,103,207,198,231, 11, 22,140,117, 3, 83,100,154,224, 26,205, 73,169,109, 86,179,249, -192,206,157, 59,157, 13, 26, 52,192,248,241,227, 49,101,202, 20, 76,153, 50, 5,147, 38, 77,194,248,241,227,241,212, 83, 79, 97, -196,136, 17,232,210,165, 11,130,131,131,145,152,152,232,180,154,205, 7, 42,203, 83, 90,173,155,159,121,230,153,220,178,194,204, -100, 50,193, 96, 48, 64,175,215, 35, 47, 47, 15,199,143, 31,199,186,117,235,176, 96,193, 2,108,221,186, 21, 54,155, 13, 14,135, - 3,103,207,158,213,105,156,206,141,255,159,251,126,191,145, 1, 91,142, 29, 59,134,128,128, 0, 68,212,173,219,167,170,109, 75, - 11, 23,180,109,219, 22,122,160, 87,101,219,233,239,161,112, 41,207,100, 48,156, 74, 73, 73, 65,223,190,125, 17, 94,183,238, 39, - 45, 0, 85, 77,238,239,118,185,142, 30, 59,118, 12, 79, 63,253, 52,162, 27, 52,248, 36, 24, 8,190,115,155, 96, 32,184,126,163, - 70,159,140, 31, 63, 30,123,247,238,133,219,229,170,180, 71,142, 49,214,145, 49,182,157, 49,118, 24, 64,218,248, 9,175,142,191, - 99, 66,251,227,140,177,111, 1, 84,122,200, 20, 66, 8,249, 59,171, 81,129,165,114,187,223,153, 58,117,170, 83, 16, 4,140, 28, - 57,210,123,219,246,237,163,206,158, 59,215, 48, 55, 55,215,207,237,118, 87,155, 21,108,179, 45,158, 58,117,106,145,221,110, 71, -211,166, 77, 81, 88, 88, 8,183,219, 13,169, 84, 10,169, 84, 10,198, 24, 4, 65,128, 86,171, 69, 92, 92, 28, 86,173, 90, 85, 28, -108,179, 45,174, 46,215,237,118,159, 95,191,126, 61, 36, 18, 9,247,242,242, 2, 99, 12, 82,169, 20,139, 22, 45,202,253, 28,216, - 2, 0, 18, 65,176, 3,128, 32, 48, 79,103,229, 86, 59, 62,169, 80, 40, 32,150, 76,238,175,118, 91,127,155,237,179,121,243,230, - 25, 46, 95,190, 12,147,201,116,171,183,205,104, 52,222,154, 52, 95, 84, 84, 4,198, 24, 76, 38, 19,182,111,223,110,240,183,217, - 62,171, 44,175, 0,200,206,184,114,229,145,206,157, 59, 23,164,164,164, 64,175,215,227,252,249,243,216,183,111, 31,126,252,241, - 71,236,221,251,127,236, 93,119, 84, 84,215,215,221,119, 58, 83,232,189,139, 20, 65, 4, 21,177,119, 81,177,119,141, 70, 99, 18, - 99, 52,137,137,177, 36,209,104,108,137,198,152,166,166,153,104, 18,107,130, 93, 36,118, 69,137, 26, 43,168,128, 10,138, 32, 34, - 48, 67,155,222,203,253,254,128,225,135, 74, 25, 82,190,196,100,246, 90,179, 24,102,238,219,239,220,247,238,188,183,223,185,231, -158,115, 12,119,238,220,129,201,100,130,191,191, 63, 40,165,216,191,127,191,204,164, 80, 12,174, 0, 74,109, 60, 6,255, 73,180, -240,241, 73,240,246,242, 42,244,244,240, 40,106,225,227,147,240,248,247,206, 64, 78, 78, 78, 14, 76, 38, 19, 66, 67, 67,221, 26, -139,195,162, 38,211, 89,171,112, 9,108,217,114,117,112, 61,194, 37, 24,240, 12, 14, 11, 91,109, 21, 46,212,100, 58,219, 92,155, - 29,129,245,111,189,245,150,134,195,225, 32, 41, 41, 41,212, 24, 30,126,139, 5, 76, 18, 1, 81,125, 0, 78, 83,219,251, 2, 95, -189,247,222,123,165,132, 16,108,223,190,221,195, 57, 44, 44,147, 5, 76,117, 6, 90, 56, 3, 45, 88,192, 84,231,176,176,204,164, -164, 36, 15,147,201,132, 57,115,230,148,250, 2, 95, 53, 66,249, 6,165,116, 56,165,180, 23,165, 52,240,135,111,215,225,208,129, -221, 86,113,245, 18,165,244, 18,165,116, 10,165, 52,179,185,125,181,195, 14, 59,236,120, 26, 64,234,139,115, 98,119, 94, 41, 6, -168, 87,239, 46,109,113,249,218,109,153,135,171,211, 81,235,119,149, 89,187, 91,245,139,117,106,251,245,215, 95,131,205,102,227, -193,131, 7,200,206,206,134,147,147, 19,158,125,246, 89,157, 70,161, 24, 97,173, 69, 72, 8,233, 79, 41, 61, 81,195, 89, 93,239, - 76,150, 43, 10, 99, 93,111,121,228, 80, 10,211,217,217, 25, 74,165,178, 54,173,128, 64, 32, 0,159,207,199,149, 43, 87, 48,116, -248, 72,115,153,160, 87,109,162, 81,107,189,179,186,156, 32,132, 9, 0,157, 1, 65, 58, 48,207,203,207,111,254,226,197,139,249, -137,137,137,224,112, 56, 8,104, 17, 81, 26, 58,232,227,245, 12, 6, 49, 21, 85,200, 23,133,181,240,115,206,206, 45, 0, 64,170, -107, 22,214,212, 34,172,207,206, 32,253,153,208,125, 91, 62,117,106,223,190, 58,206, 92, 42,149, 66, 44, 22, 67, 34,145, 64, 42, -149, 66,165,170, 78,245,144,146,146,130, 67,105,183,228,154,128,113,121, 13,217,249,191,190,223,118,244, 51, 92, 12,217,177,109, - 11,211,211,211, 19, 98,177, 24,101,101,101,144, 74,165,208,104, 52, 48,155,205,168,172,172,196,247, 63,110, 49, 87,136,122,229, - 91, 19, 57, 54,202,169,122,192,119, 83,158,243,143,139, 14,166,211,166, 77,115,116,114,114,130,197, 98, 65, 85, 85, 21, 10, 11, - 11,113,239,222, 61,164,165,165,169, 36, 82, 61, 84, 30, 3,138,172,137, 70,235, 61,158,127,214,160,122, 26, 57,107,198, 18, 0, -248,249,250, 22,223,191,127,223,203,108, 54,195,223,223,223, 36,173,172, 92,205, 5,142, 57, 2, 37, 0,104, 57,176,120,237,250, -245, 47,142, 28, 57, 18, 29, 59,118,124, 80, 42, 22,135,212, 55,150, 64, 8, 51, 18,112, 86, 7, 4,100, 93,186,116,201,167,176, -176, 16,207, 61,247, 92,249,253,187,119,107,211, 52,200,128,158,193, 97, 97,171,147,146,146, 60, 90,182,108,137,216,216,216, 82, - 7,107,154,134,250,199,103,131,191, 77,105,206, 47, 33,175,140,142,233,248,234,171,175,194,100, 50, 33, 45, 45, 13, 23, 47, 94, -196,253,251,247,113,238,220, 57,169,147, 80,248,140,181, 22, 97, 67,227,115,112,132, 42,116,251,246,109,132,195,225,224,199, 31, -127, 68,122,122, 58, 0, 32, 46, 46, 14, 47,188,240, 2, 76, 38, 19, 38, 79,158, 66,127,185,205,207,107,108,124, 18, 66, 98, 0, -124,130,106,113,215,145, 82,234, 64, 8, 41, 6, 16,216,156,152,171,167,114, 44,217, 57,237,156,118, 78, 59, 96, 67, 45,194, 15, -190,129,243,163,229, 56,166, 23,239,254,118, 57,171, 71,207, 94, 81,203,151, 45,101,116,234,212, 9,129,129,129,136,139,139, 67, - 97, 97, 33,207,197,197,165,169,122,103,202, 94,131, 38,221,107,219,182,173,203,130, 5, 11,156, 7, 14, 28,200, 14, 12, 12, 4, -165, 20,233,233,233,216,187,119,175, 97,211,166, 77,114,181,247,112,233,213,212,159,148,182,212, 59,187, 8,168, 1,172, 8, 40, - 46,254,238,181, 87, 94, 89,218,190, 67,135,105,203,150, 45, 99,136, 4,124,246,170, 69, 47, 57, 0,192, 7, 95,238,116, 30, 57, -238, 89,172, 13, 7,122, 79,170,191,206, 91, 93, 59, 11,139,166,223, 31, 50, 58, 33,124,222,172, 23,205, 19, 38, 76, 16, 58, 57, - 57, 33, 48, 48, 16,174,174,174,200,203,203, 67, 81, 81, 17, 61,120,240,160,242,183,140, 28,246,254, 99,151,239, 59, 56,251,218, - 82, 55, 80,209, 43,113,124,254,144, 33, 67, 92,167, 78,157,234, 24, 31, 31,207,230,241,120,224,241,120, 16,139,197,184,115,231, -142,225,224,193,131, 74,181,215,224,170,171,169, 73, 10, 27,107, 17,106,122, 77, 92,126,231,215,227,203,230,100,221,184, 49,197, - 2,180, 51, 24, 12,254,102,179,153, 48, 24,140, 18,139,197,114,195,160, 80,252,160,139, 91,246,185,189, 22,161,109, 48,155,205, - 28,179,217, 12,169, 84,138,227,199,143,179,238,222,189,187,248,218,181,107,139,139,139,139, 97, 52, 26, 49,118,236, 88,196,197, -197, 33, 53, 53, 21,101, 98,241,193,198,184,110, 3, 50, 94, 81,209, 11,211,167, 79, 63,188,109,219, 54,198,181,107,215, 60,126, -252,241,199,239,235, 19, 46, 83,166, 76,177,136, 11, 11, 95,208, 53,146, 3,171,137,223,102,249,145,164, 47,174,141, 26, 51, 46, -122,217,146,197,236,110,221,186,193,195,195, 3, 61,123,246,132,193, 96,112,105,221,186,117, 83,191, 77, 69,175, 65,207,228,181, -107,215, 78,248,249,231,159,251,188,248,226,139,152, 53,107, 22, 0, 64,163,209,224,216,177, 99,152, 51,103, 78,105, 33,171,179, -170,169,241, 89,227,153,178, 10,175, 51, 0,122, 1,200,179, 7,180,219, 97,135, 29,255, 21, 52, 89,139,240,215,139,153,168, 91, -142,163, 26,190,217,166,160,169,119,103,204, 95, 29,203, 52,202, 93,217, 68,235,148,155,147, 67,154,170, 73, 88, 91,239,204, 57, - 66,233,126,239,231, 78,171, 62,248, 96,246,218,181,107, 19,172,169, 24, 4, 2,193, 13,141, 74,117,210, 83,167, 91,167,118,142, - 56,217,220,218,121, 69,128, 24,192, 43,174, 87,175,174, 31, 54,114,236, 26, 7,183, 80,246,187, 43, 55,105,153, 12,134,254, 78, -113, 25,214,134, 3, 66, 27, 22, 60,170,245, 64,150,212,215, 36,118, 31,119,251,189,183,222,154,247,193,138, 21,157, 68, 34, 81, -111,131,201, 20, 97,177, 88, 0,139, 37, 87,173, 82,157,161, 6,195, 37, 93,220,146, 79, 29,156,125,169,205,117, 3, 93, 90, 43, -220,242,119,119,218,252,195, 15,111,236,218,181,235,137,190,187,235,116,235,213, 46,173, 79,216,210,247,186,109,180,192,121, 72, - 36,231, 27,106, 75, 96,175, 69,104, 43, 88, 22,203,203,174,174,174, 91, 19, 18, 18, 28,250,247,239,143,161, 67,135,162, 91,183, -110,176, 88, 44,160,148, 66,161, 80, 96,231,206,157, 88,179,102, 77,110, 8,176,162, 41, 62, 29,112,146,119,232,208,224,118,237, -218,253,216,152,112,169, 17, 87, 77,198, 28, 54,254,219,228,229,154,156, 71, 20, 76,124,109, 85,184, 94, 94,226,226, 46, 48,249, -100,101,222, 96,216,254,219,140, 84,152,211,119,118, 30, 59,122,244,107, 76, 22,171,103,205,138, 70,122, 51, 59,251,170,181,216, - 51,226, 94, 56,222,204,177,100,205, 61,103, 15,104,183,195, 14, 59,254, 51,104,176, 22,161,213,203,195, 98,177, 36,121,251,103, - 60,219, 24, 9, 27, 72,168,241, 92,161,201, 90,132, 53,239, 11, 0, 5,116,186,247, 31, 73, 34, 90,103,181, 32,251,177,246,205, -233, 84, 21,112, 27, 38,221, 48, 72,178,129,228, 87,170,249, 58,125,240, 78,221, 62, 53,180,237,163,118,114, 42,181,192,175, 80, - 42,127,133, 82, 89,111,118,105, 54,139, 83,217,148,157,143,247,189, 16,144,255,209,190, 63,206,217,224,193,248,157,237,255,203, -120, 88, 94,190, 31,128, 40, 32, 37,197,251, 72, 74,202,132,121,115,231,142,245,245,243, 11,243,240,240,112,117,116,116,100, 92, -184,112,225,158, 73,171, 93,223, 30,216, 92,227, 61,109, 18, 58,224,100,100, 97, 97,155,241,163, 71,191, 70, 88,172, 30,117,133, - 11, 53,153,206,133, 2, 95, 53,230,185,178,162,185,191,205, 64,158,111, 66,141,231, 10, 76, 27,127,155, 69,213,118,172,132,201, -180, 18,215,159,204,106,242, 59,126,155, 31, 16, 66, 20,176,103,104,183,195, 14, 59,254, 75,248, 43,235,240, 0,232,111,231,180, -115,254, 91, 56, 81, 29,204,238,244, 79,183,211,206,105,231,180,115,218, 57,159, 70,206,127,219,171,193, 41, 66, 59,236,176,227, - 81,208,234,160,115,155, 74, 45,217, 97,135, 29,118,216,241,223, 6, 1,208,191,190, 47,104, 51, 86, 7, 16, 66,234,179,190,216, -255, 0, 0, 32, 0, 73, 68, 65, 84,229,104, 12, 77,241,219, 57,237,156,118, 78, 59,167,157,211,206,105,231,252,247,113, 54,197, -221, 28,253,241,143,198, 95,233, 30,195, 83,226,150,180,115,218, 57,237,156,118, 78, 59,167,157,211,206,249,247,114,254,219, 94, -205, 74, 52,106,135, 29,118,216,241,111,197,242,229,132, 1, 16, 2, 44,103, 0,187,153,192,120,102,245,255,191, 31,227,199,147, -122,147,208,190,241, 6,113,252, 35,188,118,216, 97,199, 63, 31,246, 24,172,191, 17,132,144, 32, 31, 31,159,111, 1,144,210,210, -210,151, 41,165,133,127,183, 77,118, 60, 9,119,119,247, 4,147,201, 4,153, 76,214,100, 10,133,167, 17,109,194,201,104,202, 64, -235,218, 15, 40, 10,179,115,233,214,250,218, 70, 71,144,231, 64,254,151, 75,139, 88,112, 51,235, 14,221,103,235,190, 8, 33,140, - 81,131, 61, 63, 1,128,253,135,203,230,211,191, 32, 47, 22, 33,164,149,167,167,231, 81, 22,139,197, 50,155,205,175,136,197,226, -148,134,218,142, 31, 63,158, 9, 0,158,252,189, 11, 93,220, 60, 22,188, 55,143,176,245,186,143,165, 58,173, 86,198, 96,177,242, -185, 28,193, 89, 19, 67,120,184, 72, 60, 56,187,190,237,119,237,218,213, 96,117,237,152, 8, 50, 56, 42, 58,122,120,135, 88,126, -222, 39,235, 58,173,237, 29,234,193,190,247, 32, 67,244,205,214,194,111, 61, 93,253,135,207,126,137,149,194,163,230, 41, 31,125, - 79,149, 13,113,216,241, 36, 62, 36,196,205, 0,196,178,121,188, 64,179,201,228, 77, 0,202,100,177,196, 70,157,238, 1, 7,184, -190,128, 82,233,191,157,147,195,227, 5,152, 77, 38,111, 0,248, 39,218,105, 71, 53, 26, 20, 88,142,142,142, 87, 24, 12, 70, 64, -221, 34,181,140,154,130,206,214,207,234,126, 71, 8,129,217,108, 46,170,172,172,140,183,117,231,132, 16, 39, 0, 19, 0, 88,151, -154,239, 0,176,147, 82,250,187, 2,137, 9, 33, 78, 28, 14,103,190, 80, 40,236,167,209,104,218, 0, 0,159,207,207, 82,169, 84, -167, 12, 6,195, 39,191,135,151, 16,194, 2, 48, 94, 36, 18,245,101, 48, 24,125, 41,165,132, 82,154,170, 84, 42, 79, 1,216, 69, - 41,181,181,244, 78, 93, 78,190,151,151,215,202,168,168,168, 73, 11, 23, 46,172,112,119,119,143,156, 51,103,206,101, 79, 79,207, -159,202,203,203, 23, 81, 74,255,214,186,137, 86, 16, 66,194,124,124,124,118,176,217,108,230,131, 7, 15,250, 2, 64, 96, 96, 96, -170, 94,175, 55, 75, 36,146,103, 41,165,119,155,201, 39, 4,208, 69, 36, 18,197,139, 68,162, 94,102,179,185,181,197, 98,129,197, - 98,185,169, 84, 42,211, 12, 6,195, 21, 0, 23, 40,165,170,191,162, 63,191, 7,132, 16, 71, 47, 47,175,109,132, 16, 16, 66, 34, - 40,165,138,191,219,166, 63, 27,148,129,214,217, 89,183, 34,173,255, 71,183,137,106,184, 49, 65, 80, 61,109,109, 22, 88, 67, 18, - 92, 6, 13, 31,222,142, 1, 0, 6,195,229, 65, 0, 14,253, 14,147, 27, 54,143,144, 86, 99,198,140, 57,191,109,219, 54, 87,157, - 78,135,151, 95,126,121,135,179,179,243, 87, 50,153,108, 97, 99,219, 57, 58, 58,206, 89,241,254,151,130,154,107,154,151,197, 98, -241, 42, 41,121, 16,113,251,214,141, 65,183,111,103,174, 50,168,246, 93, 48, 80,230, 12,169,122,196, 45, 91,236,136, 14, 35,195, - 70,142, 31, 61,116,197,138,101,152,244,204,164, 22, 89, 89, 90,190,191, 83, 30, 87,110, 16,134,123,120, 4,140,120,231,221,143, -200,133,223, 78,143,216,181,115,211,169,119,166,145,126,118,145,213, 52, 8, 33,228, 3, 22,171,139,107, 84, 84,175,103,246,239, -135, 40, 48,144,197,226,241, 24, 0, 96,210,233, 2,149, 15, 30,248, 38,141, 24,209,121, 57, 33,167,151, 82,122,209,206,249,255, -207,105,199,163,104, 80, 96, 49, 24,140,128,135, 15, 31,122, 9,133, 66, 0,213,177, 90,102,179, 25,102,179, 25, 53, 55, 69, 80, - 74,107,255,154, 76, 38, 68, 69, 53,114, 97,174, 1, 33,132, 1,160, 31,128,231,251,244,233, 51,238,147, 79, 62, 97,199,198,198, - 90, 75,123,244,124,247,221,119,191, 36,132,236, 1,176, 25,192, 73, 91,159,112, 9, 33,137, 66,161,112,251,199, 31,127,236, 52, - 96,192, 0,150,159,159, 31, 8, 33, 40, 45, 45,237,114,226,196,137,248, 57,115,230,188, 66, 8,153, 76, 41, 61,218, 52, 91, 45, -103,140,163,163,227,238,209,163, 71, 7,244,238,221,219, 33, 58, 58, 26,102,179, 25, 25, 25, 25, 47, 94,185,114,101,226,158, 61, -123,150, 18, 66,198, 81, 27,235,169, 17, 66,136, 72, 36,154,234,239,239,191,114,201,146, 37,110,147, 39, 79,230,102,102,102, 86, -133,134,134,146,179,103,207,122,238,220,185,243,149,213,171, 87,143,119,116,116, 92,164, 84, 42,183,208,154,137,238,198,224,228, -228,116,133,193, 96, 4, 0, 77, 11, 96, 0, 54,139, 96, 66, 72,251,144,144,144,157,191,254,250,107, 72, 65, 65,129,121,212,168, - 81, 91, 1,224,212,169, 83,177, 70,163,145, 12, 28, 56,240, 48, 33,100, 2,165, 52,195,198,190,183,117,115,115, 59, 48,105,210, - 36,183,176,176, 48, 65, 72, 72, 8, 17, 10,133, 96, 50,153,144,201,100,126,153,153,153,253, 47, 94,188,168, 57,113,226, 68, 37, - 33,100, 4,165,244,201, 4, 76, 13,115,119,243,242,242,154,194,102,179, 99, 76, 38,147, 63, 0,176, 88,172,135, 70,163, 49, 83, - 34,145,108,163,148, 54,152,128,181, 41,120,123,123,127,177,114,229, 74, 15,137, 68, 66, 87,175, 94,253, 5,128,169,191,151,235, -159,142, 29, 63,237,194,149,203, 23, 1,128, 67, 8, 33,143,143, 63, 66, 8,105, 29, 1,206,155,111,206, 69,124,199,206,120,118, -210,248, 38, 57, 71, 13,245, 88,193,101,178,220,213,122,221,197,114, 25,227, 64,144, 23,119,244,228,241,241,121, 0,112,228,240, -141,209,157, 59,187,157,245,112,182,140, 20,112,121,157,245,102, 83,197,254, 95,202,151,216,106, 47, 33,164,149,191,191,255, 81, - 87, 87, 87, 65,101,101,101,105, 89, 89,217, 55, 99,198,140,249, 96,243,230,205,174,247,238,221,195,131, 7, 15, 48,123,246,108, - 81, 81, 81,209,107, 60, 30,239, 55,157, 78,215,160, 39, 75,161, 80,172, 91,249,254,220, 37,142, 78,174, 76, 1, 95, 8,145,163, - 19, 66, 66, 34,208,177, 83, 79,244, 31, 48, 2,121,121,183,187,236,252,121, 83, 58,179,100,247,135,102,110,220, 7, 82,105, 72, -131,215,165, 54,145,164,183, 85, 92, 45, 89,178, 12, 57,183,110, 41, 10,242, 25,175,255,178,159, 37, 24,156, 16,197,211, 27,148, - 5, 23,126, 59, 29,210,165,107, 31, 0,136,223,181,115,211,169,229,147, 73,194,210,237,255, 62,241,254,103,129, 16, 66, 86,176, -217, 83, 19, 63,255,220, 43,238,149, 87, 56,202,252,124, 67,222,134, 13,106,113, 90,154,153,197,227,209,192, 65,131,136,103,223, -190, 14,175,220,188,201, 57,183,122,117,175, 85, 92,110,232,187,122,253,118, 59,231,255, 31,167, 29, 79,162, 65,129, 69, 8,129, - 80, 40, 68, 82, 82, 18,216,108, 54, 88, 44, 22,216,108,118,131,239,131,130,158,168,192, 81, 31,231, 24, 31, 31,159, 47,191,250, -234, 43,239,196,196, 68, 56, 56, 56,212,126,199,100, 50, 49, 96,192, 0,244,239,223,159, 93, 92, 92, 60, 49, 41, 41,105,226,170, - 85,171,196,132,144, 89,148,210,189, 77,240,246,141,140,140,220,123,236,216, 49,190, 86,171, 69, 90, 90, 26,170,170,170,192,229, -114, 17, 16, 16,128,129, 3, 7,178,110,221,186,229, 54, 96,192,128,189,132,144, 97,148,210, 84, 27,108,141,247,242,242, 58,179, -107,215, 46,135,118,237,218,145, 59,119,238, 32, 46, 46, 14, 0, 32,147,201, 48,106,212, 40,135,201,147, 39,135, 77,156, 56,241, - 2, 33,164, 55,165,244, 74, 19,124, 29,124,124,124,182,140, 30, 61,218,111,213,170, 85, 78,142,142,142, 40, 40, 40, 40,241,241, -241,137,176, 30,239,137, 19, 39,114,135, 15, 31,238,187,102,205,154,117,187,119,239,126,139, 16, 50,149, 82,122,181, 49, 94,171, - 16, 22, 8, 4, 16,139,197,216,177, 99, 7, 94,123,237, 53, 48,153, 76, 72, 36, 18,236,220,185, 19,175,191,254,186, 85,200,216, - 36,130,133, 66, 97,255,118,237,218,125,127,234,212,169, 0, 23, 23, 23,248,249,249, 49,222,123,239,189,152,208,208, 80,126,139, - 22, 45,152, 37, 37, 37,216,187,119,111,232,148, 41, 83, 14, 56, 56, 56,188,168,213,106,155,156, 58,243,246,246,254,225,151, 95, -126, 9,202,202,202,194,134, 13, 27, 80, 89, 89, 9, 46,151, 11, 23, 23, 23,248,248,248, 32, 34, 34,130, 44, 88,176, 64, 48,124, -248,112,193,172, 89,179,126, 0,208,190, 41, 78, 66, 72, 59, 47, 47,175,111, 39, 78,156, 24,186,124,249,114, 23, 31, 31, 31, 88, - 31, 8,100, 50, 89, 64, 65, 65, 65,151, 37, 75,150,140,243,246,246,190, 39,145, 72,102, 80, 74,175, 53,217,249, 71,249,219, 39, - 36, 36, 12, 27, 53,106, 20,179,164,164, 4,219,182,109, 27, 70, 8,105,111,171,168,124,218,112,229,242, 69,188,252,234,108,165, - 95, 96, 32,231, 96,242,207, 35,149,202,239,206,138, 24, 46, 44, 0, 80, 90,164,166,238, 93, 68, 61,134,143,152,200, 25, 50,116, -148,242,187,175,215,137,108, 17, 88, 92, 38,203, 61,105,251,204, 7,105,231,114, 91, 31, 61, 81,208,127,212,136,254, 12, 22, 39, - 50, 12, 0,230,205,157,206,221,159,124,226,171,196,254, 45, 74,122,117,143,120,240,204,228, 13,129,182,218, 74, 8,105,213,170, - 85,171,211,233,233,233,222, 60, 30, 15,149,149,149,238,223,125,247,221,103, 61,122,244, 96,228,229,229,225,214,173, 91,200,207, -207,135, 76, 38,195,128, 1, 3, 68, 87,175, 94,253, 6, 64,131, 2,171, 76, 51,102,101,168, 87,249,122,127,119,215, 16,173, 65, -230,101, 54, 85, 68,159, 58,113,173,237,158, 93,234, 56, 47,159,128,136,137, 19, 95,198, 59, 11, 63, 98,239,219,179,101,201,153, -180, 99, 0, 66, 26,206,224, 79,209,237,221, 69, 11, 33, 87,232, 48,121,210,116, 76,153, 52,221,157, 66,239, 75,205, 90,161, 94, - 83,229,226,204,201, 74,217,242,243,174,209, 0, 2,234,136,172,147,118,145,213, 48, 86,176, 88,157,135,125,249,165,103,204, 75, - 47,241,174, 45, 95,174, 42, 79, 75,211,132, 15, 25, 82, 21, 55,115,166, 14, 0, 20,249,249,156,156,165, 75, 5,158,189,122,241, -187,206,159,239,106,214,235,125,222, 39,164,211,123,148, 94,106, 46,103,208,132, 9,230, 37, 63,254,216, 49,109,238,220, 62,196, -104,100, 14,234,218, 53, 99,245,182,109, 15,255, 8,231,159,105,103,241,153, 51,186,202,208, 80,196,141, 26, 85, 17,228,229,165, -251, 51,251,254, 71,236,180,227, 73, 16, 74, 41, 8, 33,189, 1,156, 6,176,156, 82,186, 12, 0, 92, 92, 92,196, 82,169,212,107, -239,222,189, 77,138, 43, 54,155, 13, 95, 95, 95, 68, 68, 68, 72,196, 98,177,119,131, 59, 35,228,129,197, 98, 9,160,148,214,122, - 91, 26,130, 78,167, 67,110,110, 46,218,182,109, 91, 68, 41,109,240,194, 75, 8,113, 20, 8, 4,121,183,110,221,242,200,206,206, -198,149, 43, 87, 16, 26, 26, 10, 87, 87, 87,176,217,108, 24,141, 70,200,229,114, 68, 70, 70,130,199,227,161, 67,135, 14,229, 42, -149, 42,180,177,169, 30, 66, 8, 79, 40, 20,230,158, 57,115, 38, 48, 46, 46, 14,151, 46, 93, 66, 96, 96, 32,124,124,124, 0, 0, -249,249,249, 56,123,246, 44,134, 12, 25,130,244,244,116,140, 29, 59,246,129, 74,165,138,160,148,234, 26,226,116,119,119, 47, 57, -117,234, 84, 81,108,108,172, 86,165, 82, 49,196, 98, 49, 59, 45, 45,205,164, 80, 40, 68, 50,153,140, 45,149, 74,217,114,185,156, -165, 82,169,216, 12, 6,131,163,209,104,216, 39, 79,158,100,234,245,122,167,198,142,147,245, 60, 37, 39, 39, 35, 54, 54, 22,123, -247,238,197,188,121,243,112,238,220, 57, 4, 6, 6, 98,215,174, 93,152, 63,127, 62,110,223,190, 13, 15, 15, 15, 68, 71, 71, 55, -122,142, 0, 32, 60, 60,252,206,141, 27, 55,194, 56, 28,142,181,238,162,181,158, 29,202,202,202,112,247,238, 93, 60,124,248, 16, -225,225,225,152, 52,105,210,221,162,162,162,240,198,248, 0, 32, 32, 32,160, 44, 43, 43,203,163,109,219,182, 16,139,197,112,113, -113,129,179,179, 51, 92, 92, 92,106,223,135,134,134, 98,238,220,185,240,241,241,145,104, 52,154, 70,109, 36,132,180,143,141,141, - 61,122,242,228, 73, 15, 39, 39, 39,148,150,150, 66, 46,151,131,197, 98, 65, 32, 16,192,195,195,163, 86,192,231,230,230, 98,232, -208,161,229,121,121,121,137,205,240,184, 49,188,189,189,111, 93,191,126, 61,130, 82,138,194,194, 66,220,190,125, 27,175,190,250, -106,174, 86,171,141,250, 43, 98,135,254, 46,212,137,171,226, 76,125,225,101,206,168, 17, 35,213, 25, 87,142, 88,248, 56,131, 78, -237,249, 82, 0,184,148,161,113,209,160, 55,218,199, 15, 98,236, 79, 62, 32,216,178,249, 59, 54, 44,240, 6,193,237,236, 28,250, -126, 67,220,195, 18, 93,158,155, 63,123, 80,235, 94,221,123,177,228,114,234,243,253,214,141,157,238,223,203,243, 6,128,224,150, -161,226,105,207, 77,191,228,228, 68, 74,211,206,165,153, 62, 89,119,228,102,202, 81,105,189,177, 95,117, 65, 8, 9,141,136,136, -248, 45, 57, 57,217,195,203,203, 11,206,206,206, 80,169, 84, 48, 24, 12,200,206,206,214, 38, 37, 37, 25,157,156,156, 28, 75, 75, - 75, 33,149, 74, 65, 8, 65,114,114,114, 33,165, 52,248,113, 46,107, 12, 22, 0,188, 58,184, 53, 59,186, 95,132, 43,135,103,226, -243,217, 57,190, 32,102, 30,161, 34,239, 83,167,126,107,155,122,230,215,103,135, 12,123,198,179,107,215,190,248,104,213, 59,198, -194, 82,113,156, 84, 61,226, 86,125, 49, 88,173, 35, 72,191, 81, 99, 71,143, 95,177, 98, 25,150, 45, 89,142,148,228,253, 50,145, -144,161,115,114, 97, 59,247,234,210, 93, 59,247,181,145, 15,212,202,162,192,207,190,218, 56,105, 64,226,248,128, 46, 93,251,224, -194,111,167,177,107,231,166, 43, 28,179,209, 62, 93,248, 24,150, 19,226,234, 18, 26, 58,227,141,220, 92,206,181,101,203,148,166, -226,226,170,248, 57,115,202,235,107, 91,116,252,184,144,235,231,231,228, 58, 98,132,219,186,224, 96,106,148, 72,190,173, 47,134, -168, 62,206, 19, 34,145,203,207,135, 15, 39, 80, 54,187,247,219,239,188,195, 31, 54,108, 24,228,114, 57,246,236,217,131,111, 55, -108,208,249,250,250,222,240,203,204, 76,143,145,203, 23,219,202, 25, 63,103, 78,185,217,108, 38,227,231,207, 31,144,149,159,223, -175, 84, 34,105, 1, 0,190,110,110, 15,226, 67, 67,175,252,144,146,114,251,139,144, 16,139,173,118,110, 60,114,196,123,119, 65, -193, 75,110,110,110,124,177, 68,194,226,113,185, 21, 93,162,163,119,125,189,104,209,105,211,245,235, 28,135,128, 0, 39,231, 97, -195,154,221,247,248, 57,115,202, 43, 21, 10,214, 27, 31,124,208,253,190, 88,220, 66,169,211,133, 75, 21, 10, 31,179,209,200,112, - 18, 8, 42, 90, 70, 70, 74, 52,105,105, 37, 45,213,234,217, 27, 41,109,176, 18,202, 31, 69,125, 90,228,105,134,213,131,117,154, - 82,250,196,106, 25, 74,169, 77,222, 43, 54,155,253,200,116, 84, 35,224, 16, 66,112,245,234, 85,184,187,187,195,199,199, 7, 60, -222,163,197, 1,203,202,202,112,238,220, 57,220,188,121, 19,237,218,181, 3, 0, 78, 99,132, 60, 30,239,205, 53,107,214,184,232, -245,122, 92,185,114, 5,241,241,241,224,241,120,224,112, 56,143,136, 63,137, 68,130, 54,109,218,224,237,183,223,118, 94,181,106, -213,155,104,164,134, 28,139,197,154, 53,125,250,116, 47,171,199,234,193,131, 7,232,208,161, 67,237,247,158,158,158,200,200,200, - 64,124,124, 60, 2, 2, 2, 48,110,220, 56,175,109,219,182,205, 2,240, 73, 67,156, 92, 46,151, 17, 27, 27,219, 17, 0,132, 66, - 33, 24, 12, 70,142,147,147,147,167,183,183,183,208,201,201,233,137, 62,254,248,227,143, 82, 6,131, 97,108,172,239, 64,245,180, - 96,105,105, 41, 98, 98, 98, 32,147, 85, 87, 90, 81,169, 84, 8, 15, 15,135, 92, 94, 29,114,166,211,233,224,231,231, 7,141,166, -241,208,174,118,237,218, 45,139,138,138, 26,216,167, 79, 31, 30,155,205,198,181,107,215, 16, 23, 23,135,164,164, 36, 4, 5, 5, - 65, 32, 16, 32, 55, 55, 23,177,177,177, 56,115,230, 12, 60, 61, 61,209,166, 77, 27, 94,135, 14, 29,126,173,172,172, 76, 45, 40, - 40, 88,214,136,157, 12,145, 72,132, 51,103,206,224,135, 31,126, 64,126,126, 62,138,139,139,225,232,232,136,246,237,219, 35, 58, - 58, 26,221,186,117, 67,110,110, 46, 72, 19,131,137, 16,226, 19, 17, 17,145,114,233,210, 37, 15, 74, 41,182,109,219, 6,165, 82, - 9,189, 94, 15, 6,131, 1, 7, 7, 7,184,186,186,162, 95,191,126,240,244,244, 68, 68, 68, 4,118,238,220,233, 49,120,240,224, - 67, 53, 30,168,210,166,142,171,171,171,235,236,165, 75,151, 6,122,121,121,161,160,160, 0, 50,153, 12,222,222,222,232,211,167, -143,255,137, 19, 39,102, 3,248,188, 41,142,167, 5,214,128,118, 66, 8, 57,152,252,243,200, 32, 95,110,235, 78,113,138,224, 27, - 87, 89, 97,135, 78,220,105, 11, 0,174,174,193,215, 59,117, 80,220,189,116,229,200,253,131,201, 63, 95,188,153,131, 3,182, 76, - 97,151,203, 24, 7,142,158, 40,232,223,182, 77, 79,230,250,175,150,142,124,121, 90, 34,207,205,181, 39,145, 75,118,226,220,197, - 27,193,239, 45, 91,224,245,254,178,213, 7,143,158, 40, 48,151,203, 24, 43,109,177,183, 77,107,223, 47, 78,239,247,242, 80, 26, -190, 70,198, 69,103,128,221, 21, 45, 67, 91, 65, 46,151,195,193,193,193, 97,210,164, 73,230,133, 11, 23,170,157,156,156, 4,132, - 16,164,166,166, 74, 0, 36, 54,197,171,245,114,165,102,131,209, 68,185, 76, 11, 37,142, 26, 98,174,228,102,102,223, 67,239,222, -131,197, 29,227,227, 86,173,254,248,243,119, 67, 67, 35, 61, 39, 77,158,193,254,228,147,197, 27, 0,244,172,143,231,102, 46, 61, - 21, 29, 70,248, 0,134,174,120,127, 25,242,242,114, 93, 95,126, 94,186,156,197,227,251, 69, 5,119,119,220,240, 67,234,160,240, -240,144, 22, 47,191,240,226, 47,223,253,248,195, 80,212,241,100,253,252,211,119, 7, 8, 33, 9,182, 28,219,255, 16,218, 78, 73, - 73,129,178,176,208, 88,249,235,175,218,132, 47,191, 44, 15, 76, 76,252, 92,111, 48,120, 88, 47, 21, 12, 66, 64,172, 33, 18, 22, - 11, 97,189,253, 54,131,178, 88, 48,186,186, 62,191, 0,104,213, 20,231,188,146,146, 49,207,190,244,210,208, 3, 71,142, 32, 36, - 36,164,246,126,230,226,226,130,249,243,231, 99,206,156, 57,188,140,140,140, 78,187,119,239,238,244,201,199, 31,123, 47, 0,198, -216, 98,231,177, 11, 23, 92,103,174, 88,177,168, 93,124,124,208,214, 29, 59,120, 97, 97, 97, 0,128,187,119,239, 70,124,180,122, -117,112, 76,108,172,120,213,155,111,110,206, 90,184,176, 13,128, 95, 27,227, 44, 77, 75,211,239, 46, 40,120,233, 84,106,170, 75, - 76, 76, 12, 0,224,246,237,219, 94,235,214,173,155,222,102,220,184,201, 43, 94,121,101,241, 48,173, 86,234, 84, 86,198, 27,246, -197, 23,172,159,199,143,111,146,211,106, 39, 0,244,121,241,197, 55,123,246,237, 27, 61,230,165,151,220,130,130,130,136, 72, 36, -130,193, 96, 64,113,113,177,107, 86, 86, 86, 88,138, 66, 33,223,119,225,194,182,141, 53, 69,220,255, 34,212,171, 69,158, 86, 88, - 5, 86, 31, 66, 8, 5,208,135, 82,122, 6,168,190,113,155,205,102,155,196, 21,139,197, 66, 77, 16,176, 77, 59,165,148,162,188, -188, 28,229,229,229,181, 83, 68, 18,137, 4,167, 78,157, 66,110,110, 46,216,108, 54, 56, 28, 14, 12,134,166,107,195, 10,133,194, -254,253,251,247,103, 93,184,112, 1,161,161,161,224,243,249,181,118, 89, 95, 28, 14, 7,190,190,190,144,203,229, 72, 72, 72, 96, -175, 95,191,190, 63, 26, 17, 88,206,206,206, 67, 38, 76,152,192,181,254,175, 84, 42,193,100, 86, 63,232,234,116, 58, 40,149, 74, - 84, 86, 86, 66, 42,149, 66,171,213,162,107,215,174,220,148,148,148, 33,104, 68, 96,213,133, 90,173, 86, 74, 36, 18,151,158, 61, -123,186,110,222,188,249,118,215,174, 93, 35,235,126,127,250,244,105,173, 86,171,101, 51, 24, 12,155,234,220,109,223,190,189,246, -216, 63,124,248, 16, 27, 54,108,168,253, 46, 55, 55, 23,235,215,175,175,205,203,209,216, 57,138,138,138, 26,188,109,219,182,248, -173, 91,183, 86, 49,153, 76,220,190,125, 27, 59,118,236, 0,165, 20,158,158,158, 80,171,213, 16,139,197, 72, 77, 77,133,201,100, -130, 72, 36,130,191,191,191,195,172, 89,179,122, 44, 95,190,156, 13, 96, 89, 67,220,102,179,217,204,100, 50, 17, 28, 28,140, 37, - 75,150, 64,171,213,130,195,169,214,149,114,185, 28, 82,169, 20,233,233,233, 40, 40, 40, 64, 83, 55, 23, 7, 7,135,113, 91,183, -110,245,226,114,185,208,104, 52, 80, 40, 20,120,240,224, 1,238,223,191,175,149, 72, 36, 38, 71, 71, 71, 70,112,112, 48,131,199, -227,241, 70,141, 26, 69,172, 66,115,216,176, 97,238,219,182,109,123, 6, 77,136, 35, 66,136,103,235,214,173,223,157, 62,125,122, -237, 28, 54,165, 20,165,165,165, 24, 51,102,140,224,252,249,243, 11, 9, 33, 59, 40,165,101,141,241, 60,109,160,148, 82,165,242, -187,179,105, 7,190,108,125,227, 42, 43, 76,175,175,234, 58, 96,200,108, 22, 0,156, 63,243, 99,215, 27, 87, 51,193, 39,166,251, -135,143,125,114, 86, 36,122,185,209,115, 68, 8, 97, 12, 73,112, 25, 20,228,197, 29, 61,106, 68,127,198,247, 91, 55,118,122,121, - 90, 34,207,171,229, 70, 2, 0,174,156, 0,116, 51,207, 99,104,117, 42,135,239,183,110,236, 52,106,196,144,139,249,247,238,127, - 62,180,191,235,190, 67, 39,165, 71, 26,243, 16,250,250,176,253,221,156, 42,224,230, 24,135,224, 80, 71,164,103, 92,199,129,189, -191, 34, 34,170, 7,116, 58, 29, 76, 38,147,112,248,240,225,234,164,164, 36,109, 78, 78,142, 66,163,209,244,166,148,230, 52,213, -255,162,162,108, 75,164, 79, 23, 3,135,207, 51, 41,100, 28,245,130,197,187,199,119,232, 60, 48,222,213,215,159,237, 41,180, 28, -236,219,187,231,142,159,182,127, 59,103,222, 91,239,163,125,251,174, 93,111,222, 57, 28, 13,224, 70,125, 92,217,119,105, 74, 76, - 4, 49,229,221,185, 51,244,126, 65, 65, 81, 43,111, 31,253, 93, 41, 53,206, 94,176,113, 64,207,222,227,218,134,181,238,197,205, -202, 62, 67,230,190, 54,253,167,207,190,218, 56, 9, 53, 34, 43, 45,237,104,239,101,203, 10,184, 0, 26,244,134,255,215,192,225, -241, 2, 68,193,193,172,252,205,155, 53,161,195,135, 87, 1,128,222, 96,240,200, 47, 40,112, 22, 8, 4,160,148,194,104, 52, 62, - 18, 35,108,141, 11,142,137,140,172,215, 19,254, 56,103,254,123,239,181,125,251,237,183, 81, 90, 90, 10,147,201, 4, 54,155,253, - 72,123,181, 90, 13,149, 74,133,231,159,127, 30, 95,124,252,113, 23, 91, 56,205,102, 51,153,185, 98,197,162,119, 22, 45, 10,155, - 49, 99, 6,163,238,181,215,205,205, 13,187,247,236,225,126,245,213, 87, 1,239,126,241,197,243,207,242,120,121, 77,113,150,135, -135,195, 77, 44,230, 91,197, 21, 0, 68, 70, 70, 98,195,134, 13,188,105,211,166,113,135, 15, 31,254,105, 70,187,118,235, 62,239, -209,227,142,123,171, 86, 78, 92, 30, 47,192,214,227, 9, 0, 10,173, 54,230,243,117,235, 92, 47, 94,188, 8,177, 88,140,210,210, -234,231, 80, 66, 8, 58,118,236, 72,166, 76,153,226,220, 50, 48,176, 83,253,103,233, 79,195, 19, 90,228,105, 6, 11, 0,106, 58, - 66,106, 58, 86, 59, 10,204,102,243, 35, 66,165, 41,129,245,123, 32,149, 74, 33,149, 74,177,105,211, 38,112, 56,156,218,155, 46, - 0,232,245,250, 38,183, 87,171,213,177,126,126,126,144,201,100,104,213,170,213, 35,158, 43, 14,135, 3, 22,139, 5, 14,135, 3, - 30,143, 7,157, 78,135,160,160, 32,168,213,234,216,198, 56, 53, 26, 77,123, 55, 55, 55,212, 28, 27,232,116,213,215, 58,157, 78, - 87,107,175, 94,175, 71, 85, 85, 21,148, 74, 37, 20, 10, 5, 84, 42, 85,156, 45,253,181, 88, 44,200,204,204,188, 27, 25, 25,217, -158,201,100, 66, 36, 18, 9, 85, 42, 85,109,236, 80,101,101, 37,182,108,217,162,122,238,185,231, 60,146,147,147,155, 20, 88,132, - 16,188,254,250,235,224,241,120, 80,171,213,248,230,155,111,240,198, 27,111,128,195,225, 64,161, 80, 96,195,134, 13,152, 59,119, - 46, 88, 44, 22,244,122, 61,214,173, 91,215, 32, 87,118,118,118,254,133, 11, 23,226, 58,116,232,224,186,111,223,190,178, 1, 3, - 6,120, 38, 38, 38,130,207,231, 67,163,209,192,104, 52,162, 75,151, 46,136,138,138,130, 68, 34,193,225,195,135,203, 35, 34, 34, - 60, 46, 94,188,104, 41, 45, 45,189,223,152,157,117, 69, 19,139,197,130,217,108,134, 88, 44,134, 84, 42, 69, 89, 89, 25,138,139, -139, 81, 84, 84, 4, 22,139,133,166, 30,222,221,221,221,199,198,196,196, 48, 1,128,207,231,163,125,251,246, 88,180,104,145, 73, -163,209, 76, 0,112,184,166,217,224,141, 27, 55,238, 59,123,246, 44,203,207,207, 15,183,110,221,130,167,167, 39,203,193,193,161, - 73,129,229,227,227,243,227,193,131, 7,221,172,162,218,122,156,213,234,234,211, 49,102,204, 24,183,173, 91,183,254, 8, 96, 72, -163,134, 62,133, 16, 49, 92, 88,157,218,243,165,135, 78,220,105, 59, 96,200,108,150,111,216, 82, 0, 64, 55,128,117,252,208,186, -182, 67,250,135,239,178,198,101, 53,134, 81,131, 61, 63, 25, 62,188, 29, 99,242,248,248, 60, 22, 39, 50,108,251,214,117,222,110, -174, 61,255,119,145, 96,186, 65,200, 7,162,194,204,140,223,126,206,243,158, 59, 59, 82,191, 99,243, 75,121,219,119, 93,233,207, -225, 92,235, 7, 96,110, 67,220,215,179,116,201, 85, 10,255,214,174,156,211, 4, 14, 35, 16,215, 62, 2,158,158, 82,124,243,221, - 86,248, 7,117,135, 78,167,131,147,147,147,192,108, 54, 27,152, 76,230,118, 91,196, 21, 0,156, 60, 41,181,180,105, 35,213, 51, - 21, 22,211,107,111,124, 50,122,192,224, 17,209,253,250,245,183, 28, 59,126,204,208, 61,206, 80,210,175, 95, 87,113,234,233,180, -220,210,210,135, 17, 81, 81,109,145,115, 59, 99, 16, 64, 50,129,250, 7,108,102, 46, 61, 18, 22, 70, 82,147,146, 94,182,104, 44, -233,252, 15, 86,222, 24, 60,116,232,212,152, 94, 61,123, 89,142,159, 56,165,231,162,252,166,168, 71,183,135, 83, 39, 78,216,151, -180,119,223,192,212, 83, 41,225, 50,185, 56,229,227,175, 26, 14, 53,248, 47,194,108, 50,121,179,120, 60, 70, 89,106,170, 41,118, -218, 52, 29, 80,253,123, 20, 8, 4, 56,112,224, 0,184, 92,110,237,139,195,225,212,190,247,246,246,182, 46,170,178,137, 19, 0, - 74, 74, 74, 80, 90, 90, 10,103,103,103,120,122,122,162,180,180, 20,231,207,159, 71, 78, 78, 14,216,108, 54, 6, 13, 26, 4, 70, - 3,177,203,143,115,142,159, 63,127, 64,235,216,216,160,199,197, 21, 0, 24, 12, 6, 84, 86, 86, 98,228,200,145,140,195,135, 15, -251, 28, 41, 44, 28,241, 30,240, 68, 16,121, 93,206,184,161, 67, 43,196,187,119,215,187,239, 14, 29, 58,144,115,231,206,241, 6, - 37, 38,206,153,183,114,229, 87, 95,108,221,250,192,108, 50,249, 52,167,239, 12, 6,131, 65, 8, 65, 96, 96, 32, 42, 43, 43,161, - 84, 86,207, 84,139, 68, 34,184,186,186,194,104, 52,194, 66, 41,187, 62,206, 63, 11, 13,105,145,167, 21, 44, 0,168,233, 12, 0, -244,177,126, 65, 8,129,197, 98,177, 73, 92,177,217,236, 38, 99,170,154, 66,125, 55, 85, 91, 4,150,213, 86, 7, 7,135,218, 31, - 88, 93, 97,101,181,147,193, 96,128,201,100, 54,121,243, 6, 0,139,197,194, 84, 40, 20,216,179,103, 15,122,247,238, 93, 59,253, - 36,147,201, 32,149, 74, 33,147,201,160,213,106,145,159,159,143,147, 39, 79, 34, 60, 60, 28,128,109, 73, 91,243,242,242,174,132, -132,132,196, 91,111,222,125,251,246, 13,216,188,121,115,241,144, 33, 67,252, 40,165, 88,188,120,113,121,151, 46, 93, 60,234,222, -220,155, 2,147,201,196,249,243,231, 17, 30, 30, 14, 74, 41, 56, 28, 14,110,223,190, 13, 47, 47, 47, 88, 44, 22,176, 88, 44,148, -149,149,193,209,177,241,220,134,153,153,153, 47,188,248,226,139,197,206,206,206,109, 43, 42, 42, 74,120, 60, 94,207,180,180,180, - 64,131,193, 0, 39, 39, 39, 56, 57, 57,225,208,161, 67,112,113,113,193,155,111,190, 89,168,209,104,206, 11,133, 66,111,141, 70, -115,189,180,180,116,177,205, 6, 3, 48,153, 76, 80,169, 84,168,170,170, 66,101,101, 37,228,114, 57,180, 90,109,147, 54,214,135, -158, 61,123, 34, 37, 37,133,249,225,135, 31,126,159,151, 87,253, 32, 24, 26, 26,138, 55,223,124,147,233,239,239,143,252,252,124, - 92,185,114, 5, 6,131, 1, 77,185,159,217,108,118,223,121,243,230,245, 8, 10, 10, 34, 6,131, 1, 22,139, 5, 58,157, 14,214, -247,133,133,133,104,221,186, 53, 35, 56, 56,184, 43, 33,164,175, 45, 11, 38,236,168,134, 92,178, 19,174,156, 0,128,233, 6,139, -252, 43,168,126,103, 50, 18,137, 68,178,114,210, 12,230,180, 67, 59,148,222,183,239, 56, 34, 48,116, 10, 2, 90,142,196,244, 23, -205, 88,246, 65, 10,252, 3,163,113,255,254,125,244,237,219,151, 83, 92, 92,252, 34,128,249,182,114, 31, 63,126,193,124,236,208, -225,113,227,159,153, 26,223,191,255, 16,211,209,163,135,144,121,253,104,214,139,207,140,149, 80,139,146,184,184, 8,210,239,220, -185, 25, 17, 19,211, 1, 6,163,177, 39,176,108, 13,128, 6, 47, 42,119,239, 82,253,242,229,203, 25,191,236,255,113,202,164,201, -207,183, 75, 72, 24,104, 60,122,252, 32,174,252,118,252,218,167,107,166,159,249,112,221,206,190, 3, 6,141,109,227,224,116,225, - 80, 76, 27,205, 75,129, 78, 65,205, 74,125,242, 95, 2,203,193,193,130,154,235, 34,131, 16, 80, 74, 31, 17, 87,143, 11, 44, 6, -131,209,228,131,127, 93, 78, 43, 40,165,181, 15,210,223,126,251, 45,120, 60, 30,184, 92, 46,216,108,118,147, 97, 22,117, 57,179, -242,243,251,109,217,190,157, 87,159,184,170,168,168, 64, 69, 69, 5,148, 74, 37, 38, 78,156,200, 89,126,249,114,135, 6,232,106, - 57,131,124,125,117, 66, 62, 95,156,157,157,237, 23, 29, 29,253,136,189,114,185, 28,124, 62, 31,219,119,236,224, 12, 27, 58,244, -213,132, 67,135, 62, 5,208,104,254,170,250,250, 78, 8,129,151,151, 23, 92, 93, 93, 65, 8,129,201,100, 66,105,105, 41,178,178, -178,112,249,242,101, 48, 9,105,118, 90,162,230,160, 62, 45,242, 52,195,234,193,170,119, 20, 54, 71, 96, 49,153,204,223,237,197, -106, 8,182, 76, 17, 10, 4,130, 27,197,197,197,221,253,253,253, 97, 50,153,106, 5,214,227, 83,132, 64,181,183, 35, 35, 35, 3, - 2,129,160, 94,183,126, 93, 78, 74,105,215, 78,157, 58, 97,239,222,189, 72, 77, 77,197,189,123,247,160, 86,171,161,211,233,160, -209,104,144,149,149, 5,139,197,130,152,152, 24, 8,133,194, 38, 57, 1, 64,165, 82,149,176,217,236, 72, 62,159, 95,251,153,175, -175, 47, 42, 42, 42, 44, 70,163, 17, 91,182,108,145,251,248,248, 8,249,124,190,205,130,149, 16, 2,137, 68,130,128,128,128,218, - 24, 44,133, 66, 1, 47, 47, 47,171,160,128, 78,167,131,163,163, 99,147, 83,132,148, 82, 45,128,121,117,184, 59,142, 31, 63,254, -167,164,164,164,150, 39, 78,156,192,197,139, 23,225,233,233,137, 85,171, 86,221, 43, 40, 40,152, 68, 41,189,108,147,145,205,128, - 45, 99,168,162,162, 98,207,141, 27, 55,186,118,234,212,169,246,234,208,183,111, 95,210,183,111, 95, 15,235,255,106,181, 26,101, -101,101,184,116,233, 18, 78,156, 56, 1, 66, 8,114,115,115,205, 26,141,230,167, 70,246,205, 9, 14, 14,222,188,104,209, 34,145, -201,100,170, 29,219,124, 62, 31, 14, 14, 14,224,112, 56, 96, 50,153, 40, 40, 40,192,200,145, 35,157,191,252,242,203, 31, 9, 33, - 97,148,210,166, 7,234, 83, 2,165, 69,106,186,148,161,113,113,117, 13,190,126,254,204,143, 93,187,213, 92, 35,206,159,249,209, -228,234, 26,124,253, 82,134,198,165, 87,160,212, 36,106,130,103,255,225,178,249, 6,195,229, 65, 71, 14,223, 24, 61,111,238,116, -110,112,203, 80,241,185,139, 55,130,187,153,231, 49,132,124, 64,165, 1, 42,165,192,173,187, 76, 75,112,203, 80,241,229,171,183, -185,159,126,182, 41, 84,173,209,239, 59,116, 82,122,164, 49,110, 74,169,150, 16, 50,234,245,119,217,103,166,190,224,197,229, 58, - 4, 66, 81,117, 21, 45,130,221, 49, 97,108, 36,190,250,238, 42,156,156,220,224,237,237, 13, 6,131, 33,180,181,239,229,229,229, -100,207,207,191, 78,123,238,249,233, 93, 18, 7, 14, 53, 29, 57,250, 11, 43,245, 88,242,249, 31,191,123,119, 31,101,170, 4,132, - 42,248,129, 65, 1,215,243,239,229, 76,234,213,107, 32,248, 92, 65, 56, 16, 85,239,128,173, 93, 56, 64, 81,200, 96,192,225,185, -231, 95,238,150,152, 56,194,116,244,232,126, 28, 61,180,245,194,210,165, 45, 14,221,123,184,131,243,219,229, 34,135, 81,227, 94, -169, 74, 57,124, 83, 63,118,120, 72,142,159,176,253, 63, 34, 7,222, 63, 9, 76, 22, 75,108,210,233, 2, 3, 18, 19,153,234,251, -247,217, 34,111,111, 19, 0, 24,141,198, 38, 5, 22,128,122,167,154, 31,231,180,213, 22,181, 90, 13, 11, 80,175,200,120,156,179, - 84, 34,105, 81,243,240, 93, 11,163,209, 88, 43,174, 42, 42, 42, 32,149, 74, 33, 20, 10, 81,166,211,213, 59,149,249, 56,231,192, -206,157,183, 44, 95,182,108,254,238, 61,123, 56,192,255,196,149,245,197,102,179,241,209,154, 53,156, 55,222,122,235,149, 87, 89, -172,217,205, 57,158, 64,245,195, 58,147,201, 4,139,197,194,253,251,247, 81, 88, 88,136,251,247,239,227,254,253,251,224,243,249, -160, 13, 28,207, 63, 11,255,166,248, 43,160,137, 52, 13,205, 9,114,183, 85, 16,152,205, 13, 38, 62,126, 2,182, 8, 44,149, 74, -117,226,228,201,147,157, 71,141, 26,197,186,112,225, 2,124,124,124,106, 5,150,245,175,117,218, 73, 32, 16, 96,223,190,125, 6, -149, 74,213,104, 33, 73,181, 90,125,242,208,161, 67,241, 75,150, 44, 97,191,240,194, 11,200,206,206,198,140, 25, 51, 32,149, 74, - 33,151,203, 81, 81, 81, 1,181, 90,141,206,157, 59,195,193,193, 1,215,175, 95, 55,170,213,234, 70, 83, 21, 80, 74,169, 68, 34, - 81,122,122,122,250, 62,254,221,184,113,227,188,191,254,250,107,245,173, 91,183,140,221,187,119,119, 2,108, 19, 26, 86,252,252, -243,207,181,158,185,156,156, 28,124,253,245,215,181, 49, 87, 87,175, 94,197, 39,159,124, 82,155,187,172, 57,160,148, 94,110,211, -166,141,201,104, 52, 34, 60, 60, 28,254,254,254,208,106,181, 88,187,118,173,233,175, 16, 87,182, 66,171,213,238,158, 58,117,234, - 59,233,233,233,190, 44, 22,171,218,117, 93,211, 63,131,193,128, 59,119,238, 32, 43, 43, 11,183,110,221, 66,101,101,101,237, 3, - 64, 70, 70, 70,149,209,104,220,217, 16,175,167,167,231,226, 31,126,248,193, 71, 32, 16, 60, 50,158,173,222, 79,171, 87,180,172, -172, 12, 46, 46, 46, 72, 72, 72,240, 58,121,242,228, 98, 0, 54,231,110,250, 39,131, 16, 66,186,119, 17,245,120,253,149,231,209, -169,131,226,238,141,171,153, 56,126,104, 93,109,144,123,108,135,152,187,151,210, 29, 49,120,224,252, 30,231, 46,204,104, 52,200, -189, 38,134,234, 80,231,206,110,103,247, 39,159,248,106,193,220,233,151,222, 91,182,192, 75,171, 83, 57, 68,133,153, 25, 64,181, -184,250, 45, 93,168,125,127,217,244, 75,171, 63,219, 98, 41,148, 24,230, 92,188, 88,213,224,234,222,186,162,165, 77, 43, 56,248, - 4, 15, 45, 14,110,217, 55,228,250,213, 77,240,112,174,130, 99,120,119, 12, 78,236,140, 19, 39,111,224,254, 67, 45, 74, 74, 74, -160,211,233, 26, 77,123,112,235,250,190, 41,148,208, 32, 66, 73, 33, 97, 80,135, 41, 83, 95,234, 57,116,232, 8,154,146,146,108, -218,191,111,251,217,157,219,214,239,102,112,216, 44,141,222, 89, 79,136, 86,102, 97, 56,102,171, 84, 21, 0, 0, 22,135,211,176, -187,181, 38, 33,107,116,155, 40,159, 41, 83,103, 56, 15, 25, 60,146, 30, 58,180,223,178, 51,105, 75,234,206, 77,177,219, 45, 12, - 57,167,228,129,154, 39,147, 27,101,148,112, 93,148,114,139, 90,156, 23,166,245, 27, 58,238, 95, 35,214,255, 44, 24,116,186, 34, -229,131, 7,190,110,189,123,243,238, 44, 91, 38,240,238,220, 89, 75,106, 98,132, 27, 19, 88, 76, 38, 19, 96, 48,234,189,232, 61, -206,105,171, 45, 26,141, 6, 22,160,222,197, 71, 77,113,154, 76,166, 71,196,149, 85, 96,213,192, 38, 59,191, 91,186,244, 66, 80, - 98, 98,229,233,211,167,189,251,244,233, 67, 20, 10, 5, 20, 10,197, 35, 34,203,207,207,143, 68,199,196, 8,126, 78, 77, 13,173, -239,194, 84,223,241,180,165,239, 12, 6,227, 47, 23, 88,255, 54, 52, 26, 75, 97,245, 96,217, 34,176,108,244, 96, 25,141, 70, 35, -188,188,188, 80, 94, 94,222,224, 13,185,212,196,113, 0, 0, 32, 0, 73, 68, 65, 84,159,193, 96,128,207,231, 91,231,128, 27, 93, - 73,167,211,233,214,206,159, 63,127,214,224,193,131, 61, 34, 35, 35, 81, 86, 86, 6,111,111,111, 56, 56, 56,212,198,134, 89,249, -174, 94,189,138, 31,126,248, 65,174,211,233,214, 54,193,249,249,154, 53,107, 94, 27, 51,102,140,155,143,143, 15, 92, 93, 93,113, -253,250,117,184,186,186, 66, 46,151,227,246,237,219,112,116,116,172,141,203, 73, 78, 78, 86,232,116,186, 70,227,122,212,106, 53, - 77, 75, 75, 51, 56, 58, 58, 94, 47, 43, 43, 99, 86, 86, 86,178,170,170,170, 88,114,185,156, 45,147,201,216, 71,142, 28,241,112, -118,118, 86,159, 58,117,170, 44, 40, 40,136,121,239,222, 61,166,209,104,108, 82,181, 18, 66, 48,123,246,108,112, 56, 28,232,116, - 58,172, 93,187, 22,243,231,207,175,141,185, 90,179,102, 13, 22, 45, 90, 84, 43,152, 55,110,220,216, 20,229, 35,160,148,194, 96, - 48,192,104, 52,194,104, 52,218, 36,122,255, 8,108, 17,234,148,210, 82, 66,200,176, 78,157, 58, 29,219,181,107,151,123, 77, 78, - 49,136,197, 98,136,197, 98,148,149,149, 65,169, 84,194,100, 50,193,223,223, 31, 98,177, 24,251,247,239,151, 41, 20,138,196,198, - 86, 16, 50,153,204,169, 61,123,246,100, 61,110,131,245,169,206, 42,218,121, 60, 30,138,139,139,209,183,111, 95,238,233,211,167, -167,226, 41, 23, 88, 86,225,210, 58, 2,156,225, 35, 38,114,218,199, 15, 82, 95,186,114,228, 62,159,152,238, 15,233, 31,190, 11, -168, 78,211,112, 41,221, 17,237,227, 7, 49,134,151,232, 59, 75,171,190,107, 31,221,138, 24, 26, 43,171, 3, 0, 30,206,150,145, -137,253, 91,148, 56, 57, 17,214,251,203, 86, 31,252,126,235,198, 78,191,253,252,191, 52, 13,239, 47,171, 78,211,144,216,191,133, - 41,251, 86,206, 72, 0, 13,167,105,120, 76,180, 12, 27, 54, 60,253,187, 77,219, 80,148,151,236,247,213,106, 23, 46,180, 85, 0, - 59, 18, 61,187, 56,225,226, 23,133,184,118,237, 90,169, 94,175,239,219, 88,223, 41,161, 65, 89,217,153,173, 98,219, 68,251, 76, -153,250,178,211,176, 97, 35,145,146,114, 0,219,182,108, 74, 27, 59,113,204,247, 15,171,228, 76, 47,182,128, 35,160, 22, 46,147, -227,204,114, 16, 8, 36,134,226, 98, 0, 0,139,197,118, 2,198, 91, 26,153, 33,196,204,151, 39, 59,247,235, 63, 18,191, 28, 58, -128,109, 91,190, 59,243, 94,155,113,155, 66,226, 90,147,206, 29, 62,126, 37,164,101, 72,176, 74, 41,150, 51, 8,215,160,213, 90, - 28, 63,222, 82,240, 89,222,162,169,121,233,153,227, 63,181,175, 34,124, 4,215,183, 13, 25,210,233,141,187,119, 57,158, 61,122, -240,139, 83, 83, 5,164,186,114, 72,163, 2,139,197, 98,129, 54, 60,165,245, 8, 39,217,186,149, 1,160,209,197, 85, 28, 14, 7, -106,181, 26, 70,160,161,139,224, 35,156,190, 71,143, 62,184,123,247,110,132,155,155,219, 35,226,170,178,178,178,246,189, 86,171, -133, 90,173, 6,159,207,207,178,133, 83,156,150,166, 93, 61,123,246,146, 73, 19, 39,174, 63,113,242,164,131,187,187, 59,100, 50, -217, 35, 2, 75,175,215,163, 95, 66, 2,103, 77,122,250, 20, 0, 75,109, 57,158,222,125,251, 54, 25,239,203,100, 50, 97,249,139, -167, 8,255,109,104,240,110,102, 21, 75,182,174, 34,172,239,198, 72, 8,233,255,216, 71,139,226,227,227,181, 57, 57, 57, 8, 10, - 10,170, 21, 41,117,247,233,228,228, 4, 23, 23, 23, 92,189,122, 21, 43, 87,174,212, 0, 88,212, 24, 39,165, 84,161, 86,171,159, - 25, 48, 96,128,134,197, 98, 33, 42, 42,170, 54,255,149,197, 98, 1,151,203,133, 80, 40, 68,122,122, 58,134, 15, 31,174, 86,171, -213,207, 60,158, 3,171, 30, 78,153, 90,173,126,118,224,192,129,234,236,236,108,244,236,217, 19,215,174, 93,131, 82,169,132, 82, -169, 68,126,126, 62,162,163,163,161, 86,171,241,245,215, 95,107,212,106,245,179,148, 82, 89, 99,156, 10,133, 98,248,252,249,243, -153, 63,253,244, 83,136,191,191,127,155,142, 29, 59, 70, 38, 36, 36,132,141, 30, 61, 58,120,200,144, 33,190, 17, 17, 17,218,196, -196, 68,207,193,131, 7,123,170,213,106,246,185,115,231, 74,140, 70,227,224, 38,142, 39,128,106, 81,146,147,147, 83, 59, 37,200, - 98,177, 80, 94, 94, 94,155,105,223,122, 49,170, 79, 0, 55,196,105,133,197, 98,169, 21, 86, 86,161,213,212,181,191, 1,206, 38, -111, 24, 92, 46,215,234,225,124,162,109, 61,231, 40,227,230,205,155, 3,122,247,238,157, 49,109,218, 52, 69,105,105, 41, 28, 29, - 29, 17, 26, 26,138, 86,173, 90,193,195,195, 3, 6,131, 1,251,246,237, 83,237,223,191,255,134, 76, 38,235,251,120, 14,172,199, - 57, 25, 12, 70,126,125, 23, 87,171,247,202, 42,176, 28, 28, 28,224,239,239,111, 61,182,249, 54,244,253, 15,225, 47,231,172, 17, - 46, 9,253, 18, 91, 14, 25, 58,202,121,127,242, 1,193, 23,223,108,190,217,107,228,172, 13, 30,193,243,246,122, 4,207,219,219, -107,228,172, 13, 95,124,179,249,230,254,228, 3,130, 33, 67, 71, 57, 39,244, 75,108,153,157,117, 43,242,145,186,132,245,216, 41, -224,242, 58,247,234, 30, 33, 77, 59,151,102, 90,253,217, 22,115,247,110, 67, 46,174, 95,191, 97,231,250,245, 27,118,118,239, 54, -228,226,234,207,182,152,211,206,165,153,122,117,143,144, 10,184,188,206,182,244,125,230,203,147,157,135, 14, 25,137,148,148,125, -166,221, 63,127,189,102,227,182,226,222,125, 71, 23,137,243,243, 46, 83,168, 55,195,195,241, 58,110,222,188, 41,211,235,245,125, -235, 11,112,175,143,115,198,244,201,117,197,213,175,238, 62, 61, 55,222,188, 9,243,241,227, 7,141, 39, 79,166,107,126,205,144, -200,174,100,151, 87, 86,200,181,247, 84, 10,185,222, 98,177,128, 90,204,204,229,203,171, 3,113, 27, 58, 71,221,187,247,193,169, - 19, 59,176,101,243,183, 50,139, 5,218,113,187,118,153,199,143, 95, 70,131, 91,180, 8,222,254,243, 14, 50,108,196, 40,103, 10, - 88,134,143, 25,233,242, 83,210, 79,164,101,120,203, 22,161,161,213,169,105,158,202,177,244, 23,112, 46,165,180, 74,126,255,254, -153,171, 95,126,169,243,126,230, 25, 55,174,183,183, 19,204,102, 98,189,190, 55,244, 98,177, 88,143,120, 92, 26,227,244,247,240, -120,152,156,156,140, 86,173, 90,193,223,223, 31,117, 99, 96,173,137,180,221,221,221,177,103,207, 30, 80,224,138, 45,156,113, 33, - 33, 87, 63, 90,189, 90,111,177, 88, 80, 85, 85,245,132,247,170,170,170, 10, 22,139, 5,135,126,249, 69, 47, 87, 42,183,216,218, -247,190, 76,166,114, 82,175, 94, 31, 14, 29, 58,212,112,247,238, 93, 88, 44, 22,212,245,100, 73, 36, 18,136, 68, 34,104,117,186, - 64, 66,136,192, 22, 78,201,145, 35,194, 6,214,106,212,226,113, 15,214, 95,113,222,255,109,104,212,131,101, 50,153, 16, 24, 24, -248, 72,233, 21, 6,131,241,200,171, 57, 43, 8, 41,165, 91, 9, 33, 71, 19, 19, 19,151,116,233,210,101,230,146, 37, 75,152,145, -145,145,144,201,100,112,117,117,133,151,151, 23,110,223,190,141,228,228,100,115,121,121,249, 6, 0, 43,108, 89, 10, 79, 41, 77, - 37,132, 12,107,219,182,109,210,130, 5, 11,156, 7, 14, 28,200, 14, 12, 12, 4,165, 20,233,233,233,216,187,119,175, 97,211,166, - 77,242, 26,113,101, 83, 80, 50,165,244, 24, 33,100,236,224,193,131,183, 79,157, 58,213,209,108, 54,179,243,243,243,161,211,233, - 96, 52, 26, 81, 88, 88,104, 72, 73, 73, 81,170,213,234,201,148,210, 99, 54,240, 93, 37,132, 68, 31, 63,126,124,234,185,115,231, - 86, 78,155, 54,205, 61, 33, 33,129, 99, 50,153,112,246,236,217,178,184,184, 56, 47,137, 68, 98,216,179,103, 79,133, 86,171, 93, -100, 54,155,109, 42,149, 67, 8,129, 92, 46,135,135,135, 7,116, 58, 29, 44, 22, 11,244,122, 61, 68, 34, 81,109,121, 35, 74, 41, -154, 19, 52, 95, 23, 38,147,137,105, 48, 24, 48,113,226, 68, 88, 44, 22,172, 93,187, 22, 38,147,169,217,100,206,206,206, 87, 50, - 50, 50,134,181,111, 95,157,160,157,201,100,214,142, 33, 30,143, 7, 15, 15, 15,184,187,187, 35, 37, 37, 5,108, 54,187,209,172, -248, 86,212,100,102,143, 35,132,116,187,113,227,198,115, 0,218, 27, 12, 6,127,179,217, 76, 24, 12, 70, 9,165,244,186, 92, 46, -255,222,214, 82, 57, 18,137,100,229,243,207, 63, 31,183, 99,199, 14, 17,139,245,191,159, 6,139,197, 2,143,199,131, 53,169, 37, -165, 20,122,189, 30,139, 23, 47,150,171, 84, 42,155,114, 55, 61, 13,136,239,216, 25,223,125,189, 78,116,242,212,209,178,155,185, - 56, 80, 55, 21,131, 8,192,185, 11, 51, 14, 72,171,190,107, 95,252,224,129, 40,190,227, 19, 90,168, 94,232,205,166,138,103, 38, -111, 8,172, 41,149,179, 50,255,222,253,207,119,108,126, 41, 15, 0, 62,253,108, 83,104,161,196, 48, 39,251, 86,206,200,111, 54, -156,238,172, 55,155, 42,108,225,252,159,104,217, 46, 3,133,150, 82,122,145, 16, 18, 18,217, 77,187, 40, 38,138, 51,162, 88,108, -124,168, 84,234, 95,167,148,214,187,244,189, 62,244,232,222, 27,167,142,253,132,109, 91,182,203,169,133,169,245,240,240,160, 0, -112,243,166, 7,189,121, 83, 74,255, 23, 47,236,162,242, 20,148,173, 88,180,112,230, 92,133, 66,241,249, 87, 31, 55,158,112,182, -109,187, 46,104,219,174, 11,102,189,254,174,115,116,155,168, 32, 0,216,181,139,154, 99, 34,200,193, 37,239, 45, 27,177, 98,197, - 50,200, 21, 58, 88,203,234,220,206,204,254,229,238, 93,106,219,234,158,255, 16,150,152, 76, 23, 49,119,110,132,186,178,210,179, -199, 59,239,120,176,222,122,139,209, 88,144,123,221,223,175, 45,156,151,175, 95,255,101,198, 75, 47, 61, 92,186,100, 73,226,134, -111,191,229,199,198,198,162,180,180, 20, 81, 81, 81,240,247,247,199,241,227,199,177,103,231, 78,149, 84,161, 88, 4,224, 27, 91, - 56,183, 30, 58,116, 59,178, 77,155,242,111,191,253,214,111,232,208,161, 68,165, 82, 65, 38,147, 65, 38,147, 65,167,211,161, 38, -145, 51,205,201,205,189,105, 52, 26, 55,216,194,217,227,157,119, 60,204,101,101, 14, 43, 58,119, 46,226, 88, 44, 31,141, 29, 51, -102,254,138,247,223,231,181,108,217,146,232,116,186, 90, 47,150,193, 96,128, 72, 36, 50,232,245,122,119, 0, 79,120,167,234,227, -228,109,218,100, 42, 43, 43,131,167,167,103,109,218,165,186,121, 5, 21, 10, 5, 40,181, 39,193,109, 14, 72, 67,247,112, 55, 55, -183, 43, 44, 22, 43, 0,104,188,182, 93,221,207,140, 70, 99, 81, 89, 89, 89,124,157, 54,253, 41,165,245,198, 59, 17, 66, 66, 1, -172,234,215,175,223,216,121,243,230,145,211,167, 79, 99,255,254,253, 52, 47, 47,111, 55,128, 69, 13, 93, 28,155,224,116,228,241, -120,111, 10,133,194,254,214, 84, 12, 2,129,224,134, 74,165, 58,161,211,233,214, 54,148,189,189, 9, 78, 39, 30,143, 55, 91, 40, - 20, 14, 80, 40, 20,237, 1,192,209,209, 49, 67,165, 82, 29,215,233,116,235,104, 3, 5,164,155,224,228, 59, 59, 59,175,244,240, -240,120,246,173,183,222,114, 79, 75, 75, 43, 57,117,234, 20, 71, 42,149,238,208,235,245, 13, 22,123,174,143,211,221,221,253, 10, -147,201, 12,248, 43,206, 17, 0,180,107,215, 46,101,248,240,225, 67, 39, 79,158, 12,163,209,136,111,190,249, 6,199,143, 31,255, - 37, 55, 55,119, 88, 67,219,212,199, 73, 8,241, 8, 8, 8, 56, 61,115,230,204,224,137, 19, 39, 10, 92, 93, 93,193, 98,177,160, - 82,169,112,231,206, 29,164,167,167,211, 3, 7, 14, 40,175, 94,189, 90,164, 86,171,251, 80, 74,203,155,226,252,163,168,143,147, -205,102,247, 14, 12, 12,252,121,233,210,165,142, 3, 6, 12,224,187,187,187,131,201,100,194,104, 52,162,164,164, 4,153,153,153, - 56,122,244,168,106,247,238,221,170,138,138,138,137,143,231,106,249,255,178,243,207,228,140,110, 69,222,123,172,128,115,131,217, -217, 27,107,107,139,157, 67,251,187, 14, 25, 59,182, 99,127, 0,216,179,231,242,137, 95, 78, 84, 53, 90,236,185, 49, 59,155,178, -213, 22,206,214, 17,204,165, 89,217,153,143, 36,162,108, 19, 29,147,211, 58,118,204, 7,182,112, 89, 51,185, 63,222,247, 58,217, -241,255,135,199,166, 83,173, 5,161,223, 93,180, 16,171, 86,126,136, 3,187,246,253,146,125,151,214,150,243,121, 26,199,210, 95, -201, 73, 72,117,113, 98,129,175,111,175,181, 22,203,194,107,153,153,162,186, 15,106, 86, 79,115,221,135, 73, 63, 63, 63, 73,113, -113,177,183, 45,156,195,190,248,194,160, 22, 10,121, 11, 63,250,168,183, 82,171,237,189, 98,197, 10,214,229,203,151,241,245,151, - 95,154,180, 69, 69,219,203,128,217,245,205,126, 52,198, 25, 60,123,182,195,219, 95,127,253, 66,104,120,184,215,115,207, 61,199, -102,179,217, 80,169, 84,120,240,224, 1,142, 29, 61,170,207,190,121, 51, 91, 46,151,143,160,148, 22,219,202, 57,236,139, 47, 12, - 46,161,161, 16,120,122,210,147,169,169,206, 51,222,124,115,102,139,144, 16,231,196, 65,131,216, 78, 78, 78,168,170,170, 66,126, -126, 62,246,237,219, 39, 81, 42,149,126,148, 82,179, 45,156,219,207,157,107,123,232,204,153,113, 31,124,240, 1, 55, 38, 38, 6, -206,206,206, 80, 40, 20,200,204,204,196,153, 51,103,116, 27, 54,108,144,201,100,178,153, 38,147, 41,185, 33, 59,237,120, 20, 13, - 10,172, 63,133,220,134, 19, 64, 8,137, 7,240, 94,205,191,239,211,166,107,250, 61,181, 23,136,122,218, 4,185,185,185,125,167, -213,106,169, 70,163,153, 65, 41, 45,252,167,217, 73, 8, 97,197,199,199,127, 45,145, 72,186, 81, 74,225,236,236,124, 62, 43, 43, -235, 85, 74,105,131,115,241, 13,113, 18, 66,152, 0,186,137, 68,162,206,142,142,142,189,117, 58, 93,235,154,105,182,155, 42,149, -234,140,193, 96,184, 8,224, 60,165,244,137,149, 16,255,159,125,175,177,115,128,159,159,223, 75, 22,139, 37,156, 16,226, 98, 54, -155, 97, 52, 26,165, 22,139,229,142, 76, 38,219, 4,224,248,223,109,231,159,197,217, 38,156,140,166, 12,180,174,253,178,145,184, -170,199,133, 3,177,224,102,214, 29,186,207, 86, 59, 9, 33,140, 81,131, 61, 63, 1,170, 87, 26,210, 38, 74, 14, 61, 34,176,108, - 16, 45,182,224, 17,206,112,214,243,148,208, 71, 56, 9, 37,133, 81,109, 71,111,179,133,171, 33,129,101, 43,218, 68,146,222,160, -232,102,161,184,120, 51,151,158,106,200,206, 63, 11,255, 6,206, 15, 9,113,251,210,213,245, 60,131,197,242, 1,192,168,241,182, - 88, 44,132,152, 41, 33,166,186,211, 88,117, 31, 40,155,226, 52, 0,177,108, 30, 47,208,108, 50,121,151, 2,162, 67,102,115, 7, - 45,165,202, 0,224,189,116, 74,111,255, 30, 59, 13, 64, 44,147,199, 11, 58, 68,233,200, 50,161,176,173, 68,163,241, 4, 64, 69, - 66,225, 77,185, 74,181, 69,171,213,126,245,248, 76,133, 45,156, 28, 30, 47,192,108, 50,121, 3, 0,131,197,146, 36,233,116,129, - 69, 78, 78,207,105,117,186, 96,145, 72,100,212,235,245,114,173, 86, 59,217,104, 52,158,108, 78,223,239,152, 76,209,231, 24,140, -158, 6,161,208,221, 64,136, 80,111, 50, 25,244, 6,195, 3,173, 86,123, 3,192,103,148,210,218, 52, 34,118,129,101, 3,172,171, -205,254,138, 23,128,254,118, 78, 59,167,157,211,206,105,231,180,115,218, 57,255,122, 78, 0, 2, 0, 65, 0,152,255,100, 59,255, - 43,175,166, 39,170,237,176,195, 14, 59,236,176,195,142,127, 60, 40,165,106,212, 19,115,101,199,223, 3, 2,160,222,149, 0,180, - 25,174,191,223,179,154,160, 41,126, 59,167,157,211,206,105,231,180,115,218, 57,237,156,255, 62,206,166,184,155,163, 63,254,209, -248, 43,221, 99,120, 74,220,146,118, 78, 59,167,157,211,206,105,231,180,115,218, 57,255, 94,206,127,219,235,143, 21, 16,252, 23, -131, 16,226, 77, 8,169,183,124,193, 31,105,107,199,211,135, 63,114,126, 9, 33,254,132, 16,255,102,182,127, 34,219,191, 29,118, -216, 97,135, 29, 79, 23,254,223, 5,150,173, 55,171, 63,120, 83,251, 67,130,135, 16,242, 33, 33, 40,174,126,145, 15,255,172,182, - 54,236,215,207,211,211,243,141, 54,109,218,108,247,241,241,153, 69, 8,241,106,230,246, 17, 66,161,112,157, 72, 36, 58, 45, 18, -137, 78, 11,133,194,117,132,144,136, 63, 98, 83, 29,110, 66, 8,153,225,224,224,144,234,231,231,247,144,199,227,165, 18, 66,102, - 18,210,140,154, 62,143,242,133, 17, 66,230, 18, 66,230, 17, 66, 34,155,222,226,127,240,142, 25,181,211, 43,102,212,117,175,152, - 81,153, 30,177, 35, 34,188, 98, 70,101,122,197,140,186,238, 29, 51,170,193, 50, 56,191, 23,127,228,252,214,108, 91, 88,253,106, -122, 91, 66,200,103, 4,120, 64, 8,138,254,232, 88,178,195, 14, 59,236,176,227,239, 69,179,130,220, 3, 2, 2, 6, 91, 44,150, - 73, 0,192, 96, 48,126, 42, 42, 42, 58,220,156,237,107,110, 56,111,215,188, 95, 67, 41, 93,248, 71,218,217,176,237,231,148,210, -249,205,180,209,155, 16,188,109,177, 80, 6, 0, 48, 24,228, 29,111,111,111, 1,147,201,124, 34,112,208,108, 54, 11, 8,193, 44, -139,165,186, 64, 37,131, 65,222, 38,132,172,163,148,138,155,179, 79,235,126,167, 76,153,242,249,186,117,235, 28, 4, 2, 1,238, -223,191, 63,112,230,204,153,221, 9, 33,115, 41,165, 37, 77,109,207,231,243, 39,117,234,220,109,238, 71, 31,127, 42,242,246,242, - 18,154,204, 22, 67,126, 65,129,112,241,194,249,157,249,124,254,186,198,138, 28, 63,102, 7, 1,240, 50,139,197,154,224,224,224, - 16,166,213,106,239,154, 76,166,221, 76, 38, 51,113,229,202,149, 49, 67,134, 12,113,144,203,229, 92,147,201, 20,190,109,219,182, -185, 63,252,240,195, 96, 66,200, 72,218,200,114,123,171, 7,135, 82,250,176,206,199,131, 11, 11, 11, 99,217,108, 54,194,194,194, - 8,128,219, 77,180,175, 5, 5, 34,178,206,238,138, 5,128, 54, 61,198,231,100,157,221,133,154,247,182,116,209,102,212, 55, 22, -248,124,254, 55, 26,141,230,129,245,251, 26, 59,159, 56,223,245,109, 75, 8, 89, 79,171,203,252,196, 0, 24, 83,211,116, 47,165, - 52,147, 16,226,227,192,227,189,169,209,106, 9, 0,242, 71,198,146, 29,118,216, 97,135, 29,127, 63,154, 37,176, 40,165,207,221, -185,115, 71, 96,177, 88, 16, 25, 25, 57, 5,128,205, 2,171,190, 27, 78, 66, 66, 66, 28,159,207,127, 36,107,177, 70,163,225, 18, -130,132,223, 35, 90,172,251,208,235,117, 12, 54,155, 11, 6,131,204,109,219,182,109,139,242,242,242, 52, 6,131,177,189,168,168, -168,170, 57,253,173,225,196,198,141, 27, 91,249,250,250, 62,145, 93,185,164,164,132, 59,114,228,136,102,241,189, 64, 8, 79,199, -227,117,230, 16,226,107, 54,153, 92, 0,128,197, 98, 85, 69, 58, 59,199,175,250,224, 3, 1, 33,196, 82, 81, 81, 1,141, 70,131, - 57,115,230,240,179,179,179, 71, 1,248,170, 9, 27, 91,117,233,218,125,206,209,163, 71, 90,203, 43,171,180, 27, 63,255, 46, 93, -195, 98,171, 90, 70,183,230,126,253,221, 22,151,151, 95,152,252, 58, 33, 36,131,214, 83, 54,228, 49, 30, 6,128,125,111,190,249, -102,155, 97,195,134,113, 21, 10,133,131, 70,163,105,177,125,251,246,197,241,241,241,162,246,237,219,115,127,254,249,103, 34,147, -201, 64, 41, 21, 68, 69, 69,209, 9, 19, 38,104,147,146,146,102, 1, 88,223, 0,231, 35,130,215,215,215,119, 9, 0, 48, 24,140, -186, 99,143,237,231,231,199, 7,128,146,146,146, 21,132, 96, 78, 77,251,122,197, 53, 1,114,219,244, 24, 15, 16,132,103,157,221, -229,208,166,231,120, 45, 40,238, 16, 32, 23, 0,252,253,253, 87, 0,117,242, 58, 61,138,155, 15, 31, 62,252, 93,181, 3,135, 13, - 27, 14, 74,233, 55,254,254,254, 41, 98,177, 56,134, 16,204,104,204,206, 71,108, 38, 4,238,238,238, 99, 1,124, 1,224,153, 91, -183,110,181, 1,128,168,168, 40, 54,128, 76, 23, 23,151, 14,186,106,113,101,135, 29,118,216, 97,199,191, 0,205, 21, 88, 28, 0, - 72, 75, 75, 3,165,148,251, 59,246, 87,123, 3, 33, 53, 69,138,125,125, 31, 13, 55, 41, 41, 41,193,233,211, 54, 85,179,177,105, - 31,239,191,255,190, 72, 42,149,246,255,254,251,239,123,249,251,251,127,242,240,225,195, 11,141,109, 76, 41, 21, 19, 66,214,212, -120, 28,192,227, 57,228,204,156, 57, 51,189,230,235, 22, 7, 15, 30, 20, 12, 31, 62, 92, 13,160, 0, 0,120, 60, 7,127, 38,147, -209,170, 58,168, 13,107, 26, 19,130,227, 9, 9,229,114,185,253,102,124,241,133,169,195,240,225, 44,161,167, 39, 1,128,130, 91, -183,220,215,124,252,113,247,170,188, 60,174,198,221,189,162, 66,165,210,228,228,228,128,199,227, 17, 38,147,217,161,169, 14, 11, -133,194, 55, 62, 88,181, 70, 40,175,148,106,116,114,165,158,105, 54,234, 28,249,124,115,105,169,184, 92, 36, 16,168, 23,190,183, -156,243,202,244,231,222, 0,240,106, 19, 84,179,230,206,157,219,186, 83,167, 78,254, 59,119,238, 36, 50,153, 12, 44, 22, 75,212, -190,125,123,196,199,199,155, 79,157, 58, 69, 66, 66, 66, 16, 19, 19,131,179,103,207,226,252,249,243, 36, 46, 46, 78,176,119,239, -222, 41,168, 71, 96,213, 35,170,231,118,237,218, 53, 80, 36, 18,105,229,114, 57,166, 77,155, 6, 0, 24, 48, 96, 64, 43,161, 80, -248,141, 82,169,116, 72, 78, 62, 48,182, 41,113, 45,206,220, 63, 1, 0,188, 98, 70, 93, 7, 16, 11,138, 59,146,204,253,109,235, - 52,105,125,251,246,237, 46, 85, 85, 85,181,193,134,214,194,226,189,122,245,106,234,112,214,194, 58, 22, 70,140, 24,254, 14, 64, -208,167, 79, 31,241,236,217,179,105,102,102,230,232,241,227,199, 37,228,230,222,105,208,206,199,199,209,164, 73,207,222,115,115, -115, 27,224,231,231,151, 11,128,197,102,179,173, 77,153,254,254,254,110, 49, 49, 49, 19, 69, 34, 81, 62,147,193, 8,161,160,180, -169,177,100,135, 29,118,216, 97,199, 63, 27, 44, 0, 32,132,212,102,146,165,148, 54,248, 20, 77, 8, 41,207,200,200,240,213,106, -181, 32,132,148, 55,212,174, 14,215,137, 58,239,197, 76, 38,243,107, 6,131,188, 74, 8, 65, 76, 76,236,189,181,107,215,214, 87, -115, 75, 31, 19, 19,123,143,201,100,180,164,148,130, 16,198, 55, 22,139, 89, 92, 31,103, 61,251, 19, 19, 66,214,112,185,188,183, - 1,192,199,199, 55,239,240,225,195,250,113,227,198,225,227,143, 63,230, 44, 88,176, 96,126,112,112,240,172,251,247,239,151, 54, -100,103,205,255, 11,189,189,189, 5, 27, 55,110,108, 53,115,230,204,244,226,226,226,133, 0,224,231,231,247, 33,128,104, 0, 5, -117, 62,195,134, 13, 73, 15,167, 79,159,158, 35, 22,139, 23, 54,196, 57,150,144,176,224,168,168,126, 43,210,210, 40, 67,167, 35, -229,191,254, 42, 47, 19,139,141,119,203,202, 4,155,175, 92, 25,182,248,195, 15,217,129, 65, 65, 56,157,156,236, 81,174, 86,151, -201,116, 58,173, 88, 44,166, 38,147,233,124, 67,156,117,208,198,203,211, 83,240,237,103,223, 92,118,100, 51, 45,222,254,254,132, -229,230,194,102, 8,156,185, 12, 22, 75,219, 50, 56,156, 3,160, 77, 3,199,172,150,147,195,225, 76, 25, 56,112,160, 32, 41, 41, -137,196,196,196,192,197,197, 5,191,254,250, 43, 50, 50, 50, 96, 52, 26, 25, 85, 85, 85,232,216,177, 35, 62,250,232, 35, 4, 5, - 5, 65, 42,149,162,176,176,208,131,203,229,122, 54,114, 60, 31, 17,188,243,231,207, 71, 96, 96, 32, 76, 38, 19, 42, 43, 43, 97, - 50,153, 32, 20, 10, 1, 0, 5, 5, 5, 56,120, 48,185,222, 14, 54,118,222, 27,104,143,174, 93,187, 42, 8, 33, 55, 31,251,234, -102,157, 54, 77,114,250,250,250,110,145, 72,202,226,250,246,237, 11,153, 76,166, 95,186,116, 41,218,182,109,139, 86,173,234, 15, - 27,123,108,204, 47,228,241,120,155,130,130,130,222,123,235,173,183,220,220,220,220,160,211,233, 94, 47, 41, 41,193,204,153, 51, - 1, 0, 67,135, 14,141, 98,177, 88,155,167, 77,155,134, 22, 45, 90,220, 82, 40, 20,183, 51, 50, 50, 22, 40,149,202,236,223,219, -119, 91, 96,231,180,115,218, 57,237,156,255, 52, 78, 91,181,200,211, 2, 22, 80,221, 17, 66, 8,109,170, 67,148,210, 42,127,127, -127, 95, 62,159, 15, 74,105,179,167,219,204,102,243, 44, 15, 15, 15,201,194,133, 11,123,180,106,213, 74, 63,107,214,172,204,252, -252,252, 69,117,219,132,132,132,172,252,242,203, 47,145,147,147, 83,240,225,135, 31,158, 45, 47, 47,111, 86,157, 49, 74,233, 2, - 66,200, 90, 0, 40, 41, 41, 41, 79, 78, 78,110,155,150,150,246,234,231,159,127,238,249,218,107,175,113,222,120,227,141,201, 0, - 62,110,138,135,201,100,170,235,155, 22,172, 15,190,190,190,250,250, 98,180,172, 24, 78, 8,223,137,203,237,187, 34, 45,141,234, - 11, 10,212, 63,124,250,169,227,183,151, 46, 45, 53, 82,234,237,229,229,133,158,221,187, 43, 29,152,204,114, 73,105,169,197, 43, - 44,140,153,127,248,176,135,134,203, 45, 78, 74, 74,146, 85, 84, 84,236,111,106,255,132, 16,185,217, 98, 49, 56,250, 7,154,198, -141, 30,216,230,242,197,140, 91,142,158, 30,140,248,184,152,216,236,156,130,171,212,108, 54, 18, 66,234,173,153, 88, 23,206,206, -206,173, 42, 42, 42, 32,151,203,225,233,233,137,181,107,215,194,199,199, 7,106,181, 26,191,253,246, 27, 13, 8, 8, 32,105,105, -105, 8, 8, 8, 64, 89, 89, 25,244,122, 61, 20, 10,133, 68,167,211,213, 91, 59,145, 82, 42,102,177, 88,155, 24, 12,242, 18, 0, -180,104, 17,114,243,155,111,190,209, 2, 64,235,214,173, 49,122,244,104,236,217,179, 7,217,217,217,176, 88, 44,160,148,106, 3, - 2, 2,111, 50, 24,164,117,245,230,191,223,139, 99, 45,193,243,240,225,195, 49, 77,183,126, 18,132, 16,226,227,227, 51, 58, 42, - 42,106,242,164, 73,147,244,108, 54, 27,106,181, 26,106,181, 26, 55,111,222,212, 15, 28, 56, 80, 60, 98,196,112,239,148,148,148, - 70,237,212,233,116,247,252,252,252,230,207,157, 59,119,237,134, 13, 27,156, 22, 47, 94, 12,179,217, 12,139,197, 82,251,215,250, -126,255,254,253,200,203,203, 91, 87, 87, 92,217, 97,135, 29,118,252, 87, 96,171, 22,121, 90,240,255,158,201,157,201,100,126,123, -236,216,177,246,189,122,245, 98, 37, 36, 36,196, 4, 4, 4,196, 20, 21, 21,101, 2, 64, 64, 64, 64,204,160, 65,131, 98,188,188, -188,176,110,221, 58, 53,147,201,252,246,247,236,227,177,155, 93,186,175,175,239, 39,123,247,238, 93, 51, 99,198, 12,248,248,248, - 68,255, 41, 29,105, 6,156,120,188,184,105,107,215,154,216, 70, 35,227,139, 79, 62,113,250, 52, 53,117,205,206, 93,187, 88, 93, -187,118, 37,148, 82,220,184,126,157,255,209,250,245,130,137,163, 70, 21,220,206,203, 51, 29, 56,122,212, 40,126,248,176,242, 97, - 89,217, 18, 74,105,101, 83,252, 70,163,241,183,220, 59,185,254, 61,250,118,243,251,245, 82, 86,198,152, 81, 67,250,177, 89, 12, -114,167,224,225, 21, 95, 31, 15,231,211,169,199,181, 70,163,241,183,166,120, 84, 42, 85,190,201,100,114,163,148,122,158, 62,125, - 26,158,158,158,168,170,170,130,209,104,132, 94,175,215,171,213,106,135,138,138, 10,104,181, 90,232,116, 58, 56, 57, 57,225,198, -141, 27, 98,147,201,116,170, 33, 78,147,201,244,178,131,131,195, 42, 74, 41, 91,167,211, 21,159, 56,113, 2, 28, 14, 39,208,217, -217,121,161,209,104, 68,113,113, 49,206,157, 59,247,161,193, 96,120, 96,221,134,203,229,121,234,116, 58, 83, 67, 65,238,182,128, -210,223, 95, 99, 51, 32, 32,192, 47, 36, 36,100,238,130, 5,111,135,183,109,219, 30,229,229,229,176, 88, 44, 16,137, 68, 80,171, -213,112,114,114, 66,183,110,221,210, 87,174, 92, 89, 73, 41, 22, 52, 37, 2,139,139,139, 43,130,130,130,150,204,156, 57,115,110, -120,120,120, 16, 0, 68, 68, 68, 96,224,192,129, 56,124,248, 48,114,114,114,160, 84, 42,205,151, 47, 95, 62, 88, 92, 92,252,239, - 72,176,103,135, 29,118,216,241, 31,199,255,187,192, 18,139,197,101, 1, 1, 1, 71,174, 94,189, 58,108,194,132, 9, 56,125,250, -244,243, 0,230, 2, 0,143,199,123,126,194,132, 9,184,122,245, 42,110,221,186,117, 68, 44, 22,151,253, 25,251,228,114,185, 90, -189,190,218, 25,229,224,224,224,208,204,205, 91,212, 76, 13, 2, 64,139, 70, 62,107, 16, 12, 22,203, 55,118,208, 32, 86, 85, 70, -134,124,227,197,139,239,111,223,190,157,213,163, 71, 15, 98, 52, 24, 96,182, 88, 16, 26, 26, 74, 18,250,247, 23,254,184,125,187, -155, 89,165, 74,251,224,157,119,126,253,110,218, 52,101, 14,165, 5,182, 24,168,211,233,214,191,254,234,203, 3, 78,166,166,249, - 69, 69,133,186, 31, 57,158,154,238,238,230, 44,104, 21, 17, 33,172,172,170, 50, 47, 90,240, 54, 75,167,211,125,209, 20,143, 70, -163,217,119,226,196,137, 81,129,129,129,158,153,153,153,208,235,245, 48,155,205, 72, 72, 72, 0,165,148, 7,192,194, 98,177,112, -235,214, 45, 24, 12, 6, 73,110,110,110,241,157, 59,119,120, 0, 86, 55,198,171,213,106,239,215,253, 63, 40, 40,168,199,208,161, - 67, 97, 50,153, 48,104,208, 32, 36, 39, 39,247, 40, 46, 46,222, 88,167,201, 35,237,127, 15,106, 98,175, 90,251,251,251,239,173, -249,200,166,224,118, 95, 95,223,200,136,136,136,149, 31,126,248, 33, 59, 48, 48, 16, 22,139, 5,110,110, 46, 80,169, 52,168,168, -168, 64,116,116, 52, 2, 3, 3,241,209, 71, 31, 1,213, 43, 0,109,242,176, 21, 22, 22,230, 3,152, 21, 29, 29,205, 81, 40, 20, - 49, 26,141,102,105, 66, 66, 2,210,211,211,241,219,111,191,189,174, 82,169, 42,133, 66,161,209,207,207,111, 18,131,193, 16, 26, - 12,134,100,137, 68, 34,249,253, 71,192, 14, 59,236,176,195,142,191, 19, 54, 11, 44,111,111,111,129,131,131,195,179, 47,189,244, -146,139,197, 98, 1,135,195,137,245,240,240, 88, 85, 94, 94,174,108,238, 78,213,106,245,206,237,219,183, 15,252,236,179,207, 56, - 67,134, 12, 9, 11, 8, 8,232, 4, 0, 99,198,140, 9,115,116,116,196,246,237,219, 13,106,181,250, 79,203,105,100, 52, 26,123, -117,236,216, 17,149,149,149, 40, 40, 40,200,108,206,182, 7, 15, 30, 20,160, 58,238,170,209,207, 26,131, 73,175,119,117,241,247, -103, 60, 76, 77, 53, 84,202,229,190,189,122,247, 38, 70,131, 1, 12, 6, 3, 21, 21, 21, 40, 44, 44,132,179,139, 11,185,149,155, - 43,218,244,246,219, 7, 91,180,107,199, 53,235,245,238,182,242, 83, 74, 85,132,144,231, 95,159,245,218,190, 29, 59,126,242,144, - 74,229,121, 14,124,190,158,199,101,123,191, 49,235, 53,115,101,101,229, 84, 74,169, 45,231,105,245,142, 29, 59, 6, 13, 26, 52, -232,122, 80, 80,144, 87, 89, 89,153,143, 84, 42, 53, 87, 86, 86, 50, 81, 29, 75, 69, 0, 32, 53, 53, 21,114,185,220,100, 54,155, -211, 0,172,160,148,218, 52,149, 10, 0,110,110,110,142,125,251,246,237,226,237,237, 13,185, 92, 14, 15, 15, 15,196,197,197,117, -113,115,115,219, 89, 89, 89,169,176,149,199, 22, 28, 63,126,220,145, 82,218,133, 82,138, 65,131, 6,217,180, 13, 33,100,220,208, -161, 67,217, 12, 6, 3, 26,141, 26, 60,158, 3, 68, 34, 39, 56, 58, 58,163, 85,171, 86, 40, 46, 46, 70, 98, 98,162, 33, 55, 55, -119, 91, 73, 73,201, 47,205,181, 73, 38,147, 13,232,218,181,235, 75,175,190,250, 42,204,102, 51, 70,142, 28,137, 7, 15, 30,188, -151,159,159,127,208,195,195, 99,212,139, 47,190,232,230,238,238,142,121,243,230,241, 1,172,109, 46,191, 29,118,216, 97,135, 29, -255, 12,212, 10,172,198,230, 60, 3,254,143,189,243, 14,143,162,248,255,248,123,118,175,230, 82, 46,189, 23, 66, 75, 66, 8, 1, -164,215,128,244, 34, 16,154, 8, 42, 22, 64, 44,136, 34, 32,126, 5,197, 66, 81, 1, 11, 29,145,222,130, 32, 2, 2, 65, 36,244, - 22, 33,144, 0,129, 4, 8,185,244,222,175,237,238,252,254, 72, 49,196, 36,119, 23,162, 63,197,125, 61,207, 61,119,187, 55,243, -222,217,107,251,190,207,124,102,198,219,187,163,179,179,243,155,182,182,182,246, 39, 78,156,176, 6,128, 30, 61,122, 64, 16,132, -181,158,158,158,171, 82, 83, 83,207, 90,114,208,188,188,188, 66, 15, 15,143,159,206,159, 63, 63, 54, 60, 60, 28,145,145,145, 47, - 0, 64,120,120, 56,206,159, 63,143,123,247,238,253,148,151,151,103, 50,103,200, 28,188,189,189, 7,135,133,133,133,119,236,216, - 17, 7, 15, 30, 4,207,243,231, 76,215,250,131,234, 35, 6, 81,203, 40,194,202,125,102,137,177, 44, 8, 33,224, 56, 14, 0,144, -157,149,133,248,219,183,145,155,151, 7,157, 86,139,146,210, 82, 62,192,223,191,172, 64,175,151, 18,192,162, 62, 46, 74,105,146, -141,141,205,195,210,210, 18, 87, 71,103,135, 50,107,165, 18,249,133, 5,178, 43,151, 47, 20, 81, 74, 19,204,212,208, 19, 66,122, -255,242,203, 47,243, 89,150, 29,103, 99, 99,131,233,211,167,179, 97, 97, 97,144,201,100,208,233,116,200,207,207,199,182,109,219, -178, 56,142,107, 10, 0,132, 16, 27,107,107,235,205, 44,203,106, 10, 11, 11,255,103,234, 24, 10,133, 34,236,153,103,158, 97,117, - 58, 29, 22, 46, 92,136,249,243,231, 99,208,160, 65,236,165, 75,151,194, 0,212,158,225,222, 0, 4, 65, 64,255,254,253,171, 39, -185,215, 76,118,175, 21,169, 84, 26,208,162, 69, 11,100,101,101, 33, 43, 43, 11, 46, 46, 46,240,244,244,132,155,155, 27,150, 47, - 95, 78, 87,172, 88, 17,197,243,252,214,244,244,116,147,131, 60,106,226,237,237, 61,225,197, 23, 95,124,118,236,216,177, 40, 41, - 41,193,137, 19, 39,208,189,123,119, 44, 89,178,196,229,244,233,211,175,116,236,216, 17, 82,169, 20, 81, 81, 81, 48, 24, 12,169, -150,234,139,136,136,136,252,219,121, 82,242,175, 0, 19, 17, 44, 7, 7, 7, 59,165, 82, 57,117,216,176, 97, 61, 70,142, 28,137, -207, 63,255,172,234, 57,134, 97,176,101,203, 22,155,125,251,246,205,241,241,241,233, 45, 8,194,234,148,148, 20,147,249, 66,149, - 8,130,176,111,251,246,237, 67,186,118,237,170,234,211,167, 79, 51, 0, 80, 40, 20,250,237,219,183,151, 10,130,176,207,210, 19, -169, 57,233,163,151,151, 87,168, 68, 34, 9, 31, 54,108, 88,232,228,201,147, 17, 27, 27,139,109,219,182,221, 13, 8, 8, 56, 99, -161,244, 3, 19,163, 8, 43,247,213, 9, 43,151,231,228,167,167,219,219,248,250, 74, 29,108,109,211, 14, 30, 60,232,211,175, 95, - 63,146,156,156,140,188,188, 60,104,181, 90, 92,190,124, 89,144, 0, 73, 18, 7, 7,146,116,254, 60, 97,229,242, 28, 75, 95, 3, - 31, 15,135,150, 31,206,157,214, 68,171,213,182, 46, 40, 40,224,164, 82,169,212,219,221, 62,217,116,205, 63,160,148,234,172,173, -173, 59, 0,144, 8,130, 80,234,232,232,168, 58,118,236, 24,228,114, 57, 8, 33,104,211,166, 13,148, 74,165,204,218,218,250, 33, - 0,184,187,187,203,215,174, 93,171,158, 56,113,226,105, 83,218, 97, 97, 97, 18, 63, 63,191, 1, 1, 1, 1, 56,119,238, 28,110, -222,188,153,114,225,194, 5,175, 14, 29, 58,192,203,203,107, 64, 88, 88,216,225,147, 39, 79,114,150,158,119, 29,231,209,160, 36, -119,158,231, 41, 33, 4, 12,195, 64, 16, 4,100,101,101,161,105,211,166, 88,185,114, 37,150, 47, 95,254,109, 67,115,164,130,131, -131,101,237,218,181, 11, 31, 59,118, 44, 18, 18, 18,176,104,209,162,188,204,204,204,115,199,142, 29, 27, 60,125,250,116,182,123, -247,238,200,201,201,193,198,141, 27,185,223,127,255, 61, 34, 35, 35,195,226,239,128,136,136,136,136,200, 63,135, 58, 13,150,151, -151,215, 80, 71, 71,199, 87,198,143, 31,207, 6, 6, 6, 34, 35, 35, 3, 69, 69,197,218,208,208, 16, 1, 96,168, 92, 46, 51, 88, - 91, 91, 99,202,148, 41,104,211,166, 77,167, 57,115,230,116,116,119,119,223,146,158,158,190,215,156, 3,103,100,100,148,122,120, -120, 68, 76,159, 62,125,241,213,171,191, 55, 5,128, 75,151, 46,221, 75, 77, 77,157,155,145,145, 81,231,136,188,218,168, 54,153, - 37,177,178,178,186,216,178,101,203,251,131, 7, 15,182, 27, 57,114, 36, 92, 92, 92, 16, 29, 29,141, 37, 75,150,220,209,235,245, -243, 27,235, 2,110, 9,156, 78,151,126,101,255,126,219,176,231,158,179,155, 49,116,232,151,175, 79,159,190,236,195, 15, 63,148, - 4, 6, 6,146,210,210, 82, 92,188,120,145,238,221,187,215,248,195, 39,159,172,128,181,181,244,252,222,189,114,189, 94,159,100, -201, 49,188,189,189,123, 15, 25,212, 59,240,203,101,223, 64, 91, 86,140,139,231, 14, 33, 47, 47, 11,107,215,253, 24,232,237,237, -221, 91,163,209, 68,153,171, 69, 8, 9,136,140,140,116,165,148, 66, 46,151, 99,225,194,133,240,244,244,132,157,157, 29,138,138, -138,240,206, 59,239,168,223,126,251,109, 53, 0,196,198,198,194,198,198,198, 44,221,219,183,111, 63, 53,109,218, 52, 21,207,243, - 56,114,228,136,129,101,217, 47, 35, 35, 35,151,182,109,219, 86, 22, 22, 22,166,250,232,240, 3, 78, 0, 0, 32, 0, 73, 68, 65, - 84,225,135, 31, 58, 0,168,119,158, 50,115,105,104,146, 59,207,243, 15,142, 29, 59,214,102,220,184,113, 84, 34,145,144,252,252, -124,168,213,106,172, 92,185,178, 52, 45, 45,173,193, 19,180,229,228,228, 72, 91,183,110, 45, 19, 4, 1, 17, 17, 17, 72, 73, 73, -121, 47, 35, 35, 35,203,211,211,243,200,172, 89,179,166, 6, 6, 6,122,223,186,117, 43,165,172,172,108, 77,106,106,170,166,161, -199, 17, 17, 17, 17, 17,249,103, 80, 95, 4,235,185, 35, 71,142,176,130, 32, 96,221,186,117,136,142,142,166,217,217,217,243, 9, - 33,155,237,236,236,248,236,236,236,231, 94,125,245,213,145,243,231,207, 39, 61,123,246,196,249,243,231, 73,211,166, 77,195, 1, - 84, 25, 44, 66, 72,191,250,230,202, 40, 40, 40,184,156,145,145,222,180,218,196,146, 77, 21, 10,229,229,250, 26, 92, 83,179,230, -100,150, 44,203,116, 94,184,112, 97,137,135,135,135,254,198,141, 27, 88,179,102,141,112,229,202,149,223,228,114,249,218,212,212, - 84,157, 57,154,141, 65,117, 77, 57,199, 69,111,157, 53,171,213, 83, 35, 70, 8,175,188,251,110,177,204,202,234,173, 47,191,249, -102,118,126, 81,145, 39, 8,161, 78,106,117,210,186,133, 11, 23, 13,122,230,153,226,216,168, 40,229,213,200, 72,169,139,209,120, -205,146,118,106, 52,154,168,150,205,125,177,105,253, 50, 24, 12, 58,164,165, 36, 1, 0,178,115, 10, 80,159,185,170, 77,147,227, -184,130,209,163, 71,203, 0, 88, 77,154, 52, 73,158,153,153,137,230,205,155, 3, 0, 10, 11, 11,113,232,208, 33, 4, 5, 5, 1, - 0,174, 95,191, 94,245,216, 84, 59,109,109,109,251,245,234,213, 11, 73, 73, 73,136,139,139, 59,151,146,146,146,239,229,229,117, -238,225,195,135, 97, 29, 59,118,196,222,189,123,159, 70, 29, 6,203,210,247,200, 28,131, 85,199,185, 47,222,183,111,223,216,243, -231,207, 15,123,247,221,119, 37,125,251,246, 5, 0,148,148,148,104, 41,165,124, 67, 52,171, 99, 52, 26, 43, 39, 61, 45, 5,128, - 10, 51, 85,111,215,234, 95,253,249, 20, 53, 69, 77, 81, 83,212,252, 39,104, 62,105,212,103,176, 56, 65, 16,112,242,228, 73,252, -248,227,143,188, 94,175,127, 63, 45, 45,237,118,181,231,127,240,241,241, 57, 29, 30, 30,254, 85,124,124, 60, 27, 23, 23, 7,115, - 46, 64,213,209,106,181,198,154, 75, 5,107,181, 90,163, 37, 26,181,177,105,211, 38,164,167,167, 27,146,147,147,143,115, 28,183, -239, 49, 71, 35, 62,246, 40,194, 31, 40,213, 61, 71,200,241, 5, 61,122,244,159, 31, 25,169,120,101,222, 60,221,139,147, 39,191, -199,235,245, 70, 86, 38, 19,228,214,214, 12,175, 80, 72, 99,163,162,148, 95,191,246,154, 99,153, 78,119,100,171, 5,137,227, 64, - 85, 4, 11, 47,190, 50, 19,101,213, 34, 88,231, 47,199,195,210, 8,150, 86,171,109, 13, 0, 86, 86, 86, 15, 1,184, 63,255,252, -243, 16, 4, 1,101,101,101, 40, 42, 42, 66,106,106,106,193,228,201,147,121, 0,176,182,182,150,132,135,135,219,153,163,219,164, - 73, 19,119,150,101,113,248,240, 97, 40, 20,138, 19, 0,160, 80, 40, 78, 68, 70, 70,134, 77,152, 48, 1, 62, 62, 62,190,149,147, -160,212,167,227, 22, 50,114, 55, 5, 90,130,160, 5, 0,128,160,133,107,200,200, 24, 2,220,169,152,229,253,102,251,246,237, 1, - 51,243,174,170,147,149,149, 85, 2, 96,163,155,155,219,161,247,222,123,239,249, 46, 93,186,244,156, 63,127, 62,161,148, 62,246, -194,232,148, 82,240,188, 69, 95, 17, 17, 17, 17, 17,145,127, 41,117, 26, 44, 66,200,206, 62,125,250, 60, 75, 41,101, 25,134,217, - 86,195, 92, 1, 0,146,147,147,239,121,123,123,175,243,247,247,175, 90, 0,218,146,131, 87,204,188,190,132, 97,200,236,242,109, -203, 39,150,172,182, 36,201,108, 0,132, 97,216,205,191,255,254,251,188,135, 15, 31,102, 89,106,248,106,163, 49, 70, 17, 2,192, -118, 74,239, 63, 75,200,209,119, 67, 66,250, 13,122,237, 53,132, 14, 26,100,231,233,231,199,151, 25, 12,194,245, 51,103,200,185, -136, 8,217,213,200, 72,105,153, 78,119,228, 71, 74, 31, 90,218, 78,141, 70, 19,213,188,153,247,177, 49,225, 67, 6, 52,243,247, - 4, 0, 36,222, 79, 69,118,110,193, 49, 75,204, 85,117,180, 90,237,136,149, 43, 87, 30,144,201,100,146,234, 75,206, 24, 12,134, -220, 74, 19, 70, 8,241, 92,183,110,221, 78,134, 97,146, 76,233,221,190,125,251,216,130, 5, 11, 6,221,187,119,239, 84,114,114, -178, 6, 0, 18, 19, 19, 53,158,158,158, 63,166,166,166, 14,126,248,240,225, 47,166,204, 21,240,167,197,158, 17,123,102,143, 18, - 64,155,202,197,158, 27,186,214, 96,117, 42, 76,249,151,222,222,222, 63, 13, 30, 60,248, 89, 66, 72,186,201, 74,245, 96, 99, 99, -195,149,149,149,113,130, 32, 72, 12, 6, 3,181,177,177,249,219,187,170, 69, 68, 68, 68,254,229,116, 4, 80,185,114, 72,101,224, -196,165,198, 99, 61,128,234, 75,249, 85,110,103, 1,184, 92, 77,163,250,126, 83,117, 1, 32, 27, 64, 76,197, 62,179,168,211, 96, -105, 52,154, 95, 96,198, 98,206,230,150,171, 11, 74,233,251,132,144,175, 43, 30, 55,104,214,238,234, 26, 28,199, 53,202,250,109, - 12,195,220, 31, 62,124,184, 69,229, 77,149,217, 73,105,210, 91,132,108, 57,248,237,183,237,142,172, 89,227,197,115,156, 19, 1, - 40, 43,151,231,232,245,250, 7, 46, 70,227, 53, 75, 35, 87,213, 73, 72,212, 12, 4,128,128,128, 0,122,231,206,157,199, 30,141, - 65, 41,189, 6,192,199, 68,153, 84, 0, 61,205,209, 75, 78, 78, 62,128, 90, 70, 10,166,166,166,254, 12,224,103,115,219, 85,181, -216, 51,192, 8, 68, 24,211,186,199,216, 8, 0, 66,229, 98,207,141,137, 70,163, 73, 4, 96,209,106, 2,181,145,144,144,160,247, -247,247,223,191,120,241,226,145, 49, 49, 49, 7,147,147,147, 27,252, 62,139,136,136,136,252, 7,233, 8,192,133, 16,114, 16, 0, - 40,165,195, 0,128, 16,114,176,230,227,202, 50,149,229,170,151,169,212,168,185,191,190,186, 0, 48,119,238,220,121,139, 22, 45, - 82, 1, 48, 59, 23,247,111,159,104,180, 54, 26,106,172, 26, 91,163, 58, 26,141,102,189,233, 82,150,243, 77,185,129,106,148, 68, -238,186,136,143,143,127, 98,134,185,214, 70,229, 98,207,213, 8,249,127,105,136,133,220,191,127,127, 75, 88, 88,216,142,228,228, -100, 49,122, 37, 34, 34, 34, 98, 25, 46,181, 25,162,218, 10,214, 98,170,234,164,182,114,181,109, 19, 66, 14, 46, 90,180,200,164, - 94,117, 30, 59,175, 68, 68, 68,196,124,254, 63, 70,177,138,136,136,136,136,212, 78,205,168, 21, 80,110,186,106,110,207,157, 59, -119, 30, 44,232, 30, 4,202,103,230,238, 87,199, 65,205, 30, 29, 64, 8,169, 85,163, 62, 76,233,139,154,162,166,168, 41,106,138, -154,162,166,168,249,228,105,154,210,174,163,254,208,186,186,244,234,235, 46,172,249,216, 84, 93, 51,202,154,191,130, 71,101,242, -242, 95,113, 3,208, 79,212, 20, 53, 69, 77, 81, 83,212, 20, 53, 69, 77, 81,243, 49,111, 29, 41,165, 67, 81,190,202, 9,165,148, - 14,165,148, 14,154, 59,119,238,251,149,251,230,206,157,251, 62,165,244,233,202,114, 21,101,170,234, 84,238,171,121, 95,115,159, -137,178,102,183,249, 31,145,131, 37, 34, 34, 34, 34, 34, 34, 34, 82, 15,151, 1,116,164,127, 68,151,178, 0, 92, 95,180,104, 81, - 94,181,220,168, 44, 0,215, 0,180,173, 40,151, 5,252, 41,167, 74, 95,177,173,175,165,140,222,156,178,230, 34, 26,172, 58,104, -231,193,126,226,235,237,218, 1,168,136,242,149, 79, 14, 9,161,220,185,131, 86, 88,120, 8, 2, 40,165, 72,205,204,143,142,201, -160, 31, 54,244,120,129, 94,196,209, 85,169, 92, 33, 80,218,163, 98, 87, 84, 65,142,110,230,141, 2,154,111,174, 70, 43,119,210, - 74,201,224, 61,129, 34, 20, 0, 24,130, 24,173,128, 47,110,166, 83,139,231,131,170, 9, 33,132,180,118,193, 20,185,149,106,188, -218,222,161, 69, 94, 94,246, 29,131, 86,183, 39, 46, 11,107,171, 94, 11, 11,104,238, 72,186, 8, 20,243, 0, 48, 82, 6, 95,197, -231,208, 6,207,146, 46, 34, 34, 34, 98, 33,236, 99,214,175,109, 10,160,199, 29, 92,212,176,229, 39,254, 91,212, 54, 17,249, 37, - 51,203,253,237, 88,100,176, 90,187,146,215, 64,240, 17, 0, 10,138,143, 99, 51,233,106,139,234,123,146,126, 74,150,221, 0,128, -213, 26,248,119,169,128, 83,181,149, 35, 12,122, 41,101,236, 87, 0, 4, 45,207,191, 28,155,106,126, 62, 88,136, 55, 25, 36, 17, -152,173, 2,165, 82, 94,160,155, 65,113,208, 70,134,179,231, 53, 84,107, 73, 91,125,189, 93, 59,236,191,148, 54,224,183,213, 51, -208, 57,180, 57, 40,207, 1,130, 17,170,158,239,225,215,229,207,163,115, 43, 95, 80,193, 8, 8, 28,108, 6,127,137,193, 33,234, - 6,127, 57, 2,189,136,163,159,179,235,141,245,235, 55,184,123, 54, 11, 38, 2,103,192,237, 75,199, 38,190, 61,123,126,223, 16, - 53, 9, 49,199,100,181,245, 36,175, 52,111, 26,248,222,204,143,150,177,158,158, 62,214, 60,167,227,210,239,221,108,255,205,210, -249,123,219,122,146,175,174,165,210, 13,230,180,133, 16, 66,130, 93, 48, 85,162,144,143,181, 82, 90,183, 40, 45, 45,186,203, 27, -140,123, 66, 60, 37,131,190,248,114, 69,187,176,254, 67,108,248,162,116,198, 40, 32,120,247,174,157,126,223,174, 92, 53,132, 16, -242, 12,165, 84,176,228,156, 5,138,217,241, 91,166, 12,145, 74, 88,210,234,165,245, 44, 44, 24,250, 90,157, 96, 55, 50,129, 80, -211,211, 68, 80,130,211,113, 25,212,162,121,218, 42,105,229, 70,190, 39, 20, 1, 32,136, 32, 20, 59, 99, 51,105,102, 67,116, 68, - 68, 68,254,185, 48, 12,243,155, 32, 8,125, 26, 83,147, 16,210,133, 82,250,151,142, 26, 23,249,231, 98, 89, 4,139,224,211,216, -132,100, 7,240, 6,180, 14,104,246, 9, 0,139, 12,150,146,101, 55, 95,190,147,225, 14,206,128,245,159, 77,223,165, 55, 2,156, -209, 0,158, 51,130,231,140,224, 56, 3,120,163, 17,212,168,195,252,141,191, 1,250, 34,116, 8,105,185, 25,128,135,185,199,144, - 82,102,107,244,153, 99,142, 68, 95,128, 29,171, 23,189,153,156, 85,252,230,241,152,212,236,214,110,228,253,184, 76,252, 96,137, - 17,248,109,205, 12,108,219,119, 72,243,245,247, 37,183, 4, 74,225,104,103, 21, 56,113, 88,172,207,150,159,126, 75, 94,177, 89, -123, 11, 0,212,214,242,192, 23, 98,238,248, 90,242, 58,212,196, 85,169, 92,177,118,213,183,238, 30, 78, 86,132, 59,183, 24, 28, -207,195,199,111, 40,251,254, 27, 19, 61, 62, 93,190, 97, 57,128, 23,235,171, 31,228, 70,130, 3,154,183,122,119,243,161,115,190, -165, 69,153,250, 99,219,230, 37, 80, 29,140,238, 94,173,164,159, 44, 90,198,126, 48,103,198, 59, 65,110,228,226,173, 12, 26, 87, -159, 14, 33,132,105,229,138,159, 22, 45,254, 50,180,239,224, 97, 54, 66,113, 22,171, 45, 41, 14, 88,191,113,195, 71, 65,161,157, - 84, 61, 67,188,101,153,123,166,145,178,162, 92, 24, 24,165,162,111,235,126,118,101,147,158, 53,174,223,180,237, 13, 0,223, 88, -114,206,124,181,238,105, 65,104,248,191, 73, 66,209,243,234,133,223,166,242,169,151, 65,121, 35,192, 27,170,238,193, 27, 65,133, -242,251,206,211, 54, 2, 64,131, 12, 22, 67, 49,224,248,153,203, 30, 25,233,105, 29,151,127,249,249,251,193,174,228, 23,240,216, -122, 51, 23, 81,150, 26, 75, 17, 17,145,127, 46,132, 16,142, 82,218,168, 61, 59,132,144, 33,148,210,195,143,169,241, 30,128, 87, - 42, 54, 55, 80, 74,191,104,132,118,121, 3,112,175,216, 76,167,148,138,107,160, 54, 50,150,126,144,148,160, 2, 16, 49, 18, 0, -172, 44, 61, 24, 5,148, 32, 44, 96, 44,193,136,193,253,225,236,234, 14, 24, 75, 1, 67, 41, 96, 44, 3,140, 37,128,177, 12,217, -105, 73,128,161, 4, 72,252, 5, 28,165, 10, 75,143, 3, 93, 1, 16,191, 7, 79,183,247,133,139, 90,137, 25, 35,130,157,215, 29, -137,223,176,225,216,237,126, 0,198,155,213, 86, 74,209,185, 77, 11,124,189,161,228,214,129,232,204,129, 0, 48,180,157,243,145, -206,193,126, 62, 43, 54,107,111, 29,138,201, 29, 4, 0,131, 67,212,191,116, 10,244,240, 21, 30, 35,186, 43, 80,218,211,179, 73, - 11,194, 95, 93, 11,161, 80,131,194,194, 50,104,238,111,129,131,215, 83, 12, 47,160,183,169,250, 86, 44,230,190,245,191, 37,210, -210,194, 12, 61,111,200,226,157,153, 60,137, 68, 33, 16,164, 70,233, 74,132,124,254,237, 87, 39,241,179,230,127, 62, 23,192,196, -250,116,130, 93,241,198, 87, 95,173,104,211,189, 67,144,107,250,222, 25,164, 56, 47, 3, 28,171, 82,140,232,218, 29,246, 45,131, -133,140,147, 95, 17,121,179,126,176,119,106,134,148,115,219,241,224,194,143,164, 71,251,112,197, 15, 59,100,147, 80,135,193,106, -233, 66,122, 12,236,213,105, 87, 51, 95, 79, 15, 74, 5, 8, 2, 5, 21,120,188, 52,102, 0,222,223,157, 8,158,231, 49,122, 96, -143,167,151, 76,237, 75, 5, 65, 0,165, 2,146,211,115, 74, 79, 92,188,245,116, 66, 46,189,104,234,220, 41,193,233,182, 93,250, -244,136,137,190, 16,100,140,255, 25, 29, 38, 46,186, 69,128, 51, 85,207, 3, 61,126, 63,250, 67, 16,176,209,148, 84,173, 16, 66, - 72, 43, 87,240, 15,142, 44,134,111,175, 41,236,218, 29, 71, 92, 10,178, 82, 94,216,187,101,213,152,213,107,215,110, 3, 48,173, - 65,194, 34, 34, 34,255, 56, 40,165,141,110,178, 18, 18, 18,210, 30,199,100,121,123,123,247, 2,176,180, 50, 19,131, 16,178,212, -223,223,191,106,181,138,138,181, 77, 43, 41,224,121,126,162, 70,163,169,181,119,168,146, 97,195,134,121, 2,240,175,166,233, 79, - 8,241,175,173,172,189,189, 61,223,173, 91,183, 7, 7, 15, 30, 76,109, 72,251,255,203, 88,250, 33,186,245,112,207,140,246,186, -180, 98, 0,184,101,170, 48,173, 49,212, 82,107,228, 23,111,250,232,249,197,173,155, 56,162,168, 68,143, 99, 87, 30,128,231,141, -224, 57,174, 34,146,197,129,231,140, 24,216,214, 25,221,180,211,240,205,193,219,224,120, 97, 81,125,154, 53, 49, 80, 97, 66,187, -126,227,118, 11, 2,149, 43,164, 76, 65,128,143,147,235,187,163,219, 50, 51, 70,180, 70,153,129, 27, 23,236, 70, 78,196,101,208, - 71, 38, 17,173, 83, 83,248,243,148, 69,180,182,125,124, 45,251,204, 28,166, 26,228, 70, 58, 63, 59,172,191, 29,213, 21,192,152, -157,136,162, 82, 35, 18,115,140, 72,215,230, 67, 65,210,204,210, 20, 40, 66,189, 60, 60,172,207,238,154,115,223, 73, 82, 40,113, -149,112, 82, 57,229,164,188, 64, 89,228,199,233,156,130,250, 75, 42,243,178,234,107,167,149,202,246,249, 94, 3,134,170, 31,110, -159, 66,172, 2, 6,194,181,189, 15,238,159,218,132,204, 43, 7, 81, 92, 92, 72, 20, 5,249,112,115,106,142,193, 19,199,227,139, -241, 29, 81, 84, 88, 4, 54, 45, 65, 45,151, 42,236,235,210,164, 60, 38,126,181,228, 51, 15, 9,203,148,191,158,149, 55,222,136, - 50,157, 14,224, 57, 40, 37, 2, 8,173,124,206, 8,222,104, 80,133,134,207,153, 14,224, 98,109,154,213,137,203,160, 59, 90,187, -146,158, 16,140, 65,212, 88, 6, 2,156,137,205,164, 85,166, 39,216,141, 76,120,106,224,228,158,148,224,116,125,231, 94, 23, 33, - 78, 24,214,193,223,198,218,186,240, 22, 52, 17,111, 34, 1, 74,234,214,253, 21, 76,120,233, 13,213,186,117,235,134, 19, 66, 94, -171,158,131,102,238,251,110, 9,162,166,168,249,111,213, 84,171,213, 77,155, 52,105, 50,223,104, 52,246,146,201,100,110, 6,131, - 1,130, 32,164,203,229,242,211, 15, 30, 60, 88, 88, 80, 80,112,239,159,208,206,234,196,196,196,152,109,178,204,209,148, 74,165, -184,125,251,246, 93,115, 77, 86, 77, 77,169, 84,186,245,204,153, 51,216,189,123, 55, 0, 32, 62, 62, 30, 45, 91,182,180,174,173, -238,253,251,247,173,195,194,194,182,162,198, 10, 28, 53, 53,175, 95,191,222,244,231,159,127, 70, 68, 68, 4, 0,224,246,237,219, - 8, 8, 8,168,181, 61,103,206,156, 97,159,123,238,185,166, 0, 30, 49, 88,127,197,123,244,164, 33, 1,128,138,245,117, 73,205, -199,181,144,232,235, 32,111, 15, 45, 15, 0,137,150, 30, 44, 46,157, 46,105,235, 33, 29,244,107,196,202, 94, 74, 25,131, 5,235, -223, 77,206,202, 45,234, 34, 33, 16, 0,128,163, 96, 28,108,228,231, 23,189,208,214, 55,175, 88,139, 3,151, 82, 78,197,102, 88, - 22, 10,141, 77,165,145, 0,170, 46,248, 33, 78, 36,224,133, 47, 34,119,238,156, 59, 40,116,230,136, 80,252,116,238,193, 76, 0, - 38,103,105,167,130, 0, 42,112, 85, 73,237, 0, 0, 65, 0, 4, 14,213,174,167, 16, 64,203,247, 9,150, 69,176,194, 8,145,228, -185, 98,176,163, 74,254,221,212,169,175,218, 25,179,238, 32, 87, 47, 67,114,158, 22,233,101, 82, 20, 75, 92,145,114,235, 58,207, - 16, 68,154,210, 34, 4,133,224,181,246,142,114, 27, 38,164,255,116,175,194,163,243,242,228,148, 99,237, 70,126,106,159,253,235, -178, 7, 92, 89, 86, 9, 33, 48,185,136,182, 90,109,223, 82,155,243,128, 45,200,203,134,189,123,107, 12, 26, 55, 12, 31, 15, 13, - 70, 81, 97, 9,178,206, 29,162, 45, 60,236, 72,210,233,109,248, 96,112, 43,228,100,164, 65,103, 4, 72,137, 46, 87,171,215, 22, -215,165, 73, 25,172,125,123,214,236, 9,126, 30, 46,214,149,131, 5,168,192,163,109,171,102,232,223,171, 51, 34,207,156,197,229, -235,241, 16, 42, 6, 11, 80, 65,128, 38, 51, 47, 67,107,224, 55, 89,244,130,242, 28,168,241,207,105,118, 21,121, 87, 22,119, 13, -182,113, 35, 42, 30,248,176, 75, 11,219,151,231, 14,243,179,181, 86, 16,104,141, 60,180,122, 35,138,206,126, 7,167, 38,109,160, - 82, 42, 73,123,148, 73, 0,211,175,173,136,200,127,137,177, 99,199, 42, 51, 50, 50, 78, 14, 29, 58, 52,184,127,255,254,170,158, - 61,123,162,164,164, 4,199,142, 29, 67, 73, 73,137,159,143,143,143,223,177, 99,199,194,187,116,233, 18,231,237,237, 29,182,103, -207, 30, 75,114,100, 37,248, 35, 73, 93, 0,192, 17, 66, 80,177,143, 0, 16,232, 99,172, 67, 43,151,203,145,148,148,212,104,145, - 44,153, 76, 6,173, 86,139,148,148, 20,179, 77, 86,117,138,139,139,101, 94, 94, 94,112,113,113, 1,207,243, 40, 41, 41,193,254, -253,251, 81, 80, 80, 0, 65, 16, 96,101,101,133, 79,191, 90,143, 91,191,159,196,197,139, 23, 81, 80, 80, 32, 51,165,169,209,104, - 72,219,182,109,161,211,233,192,113, 28,180, 90, 45,142, 31, 63, 94,181, 45,145, 72, 48,251,147,229,136,191,114, 18, 87,175, 94, -133, 70,163,249, 91, 86, 7,177,192,139,252, 43,248,219, 71, 17,242, 60,247,254,186,205, 59,207,191, 63,109, 60,222,120,182,159, -207,194,149, 63,246,139,203,162,155, 1, 32,216,133,188, 48,169, 79, 11, 95,123,149, 20, 31,111,191, 2, 80,250,254,227, 30,239, - 70, 14,141,111,237, 78,102,238,187,152,116,114,222,248,246,104,230, 97,215,178,121,115, 34, 79, 72, 48, 99,205, 63,129,131,131, -141, 34,112,104, 59,231, 35, 16, 4,216,219, 42,130,192,115,176,183, 81, 4, 14, 14, 81,255, 2, 0,246, 42, 89, 80,109,145,174, -186,232,232, 43,155,162, 82, 72,166, 88, 63,229,225,251,226,240,254, 86, 67,134,135, 91,217, 72, 57,228, 92, 60,134, 66,169, 55, -140,142,126,208, 25,115,161,185,151,192,255,122,225,102, 74,118,145,238, 93,147,205,164, 56,149,114,239,182, 75,211,208,254, 14, -217, 7, 63,200,108, 58,121,187, 63, 3,129, 41,218, 54, 42,195,218,181,147,213,165,187,247,138, 5,250,231, 8, 78, 77, 10, 11, - 10, 30, 24,121,120,148,241, 18,219,132,223,126,192,220,193,109,144,151,155, 9,173,129, 67, 65, 25,103,112,183, 87, 42,116,247, -110, 64,103,224,160, 55, 10,144,218,123,225,216,249,235,217,130,209, 88,231, 90,148, 9,217,244, 42, 0,155,234,251,154,187,144, -182,115,236,172,174,194, 88,134, 36, 77, 42, 54, 31, 58,223,190,162, 92,131,161, 2, 87,222,205, 92, 65,101,242,123, 67,146,219, - 91,185,145, 78, 86, 74,217,183, 75,103, 62, 23,220, 53,192, 81, 33,104,206,131, 8, 6, 88,243, 18,148,201,121,168,125,154, 65, -208, 23,209, 82,173, 54, 63, 22, 16,103,102, 23, 17,169, 70, 80, 80,144,187, 90,173,142,157, 53,107,150,227,168, 81,163,176,111, -223, 62, 20, 22, 22, 98,211,166, 77, 88,177, 98, 5, 62,250,232, 35, 24,141, 70,172, 91,183, 78,181,119,239,222, 78,171, 86,173, -210,248,249,249,181, 78, 74, 74, 50,181,160, 58, 1,160, 0, 32, 69,249,181,139, 0, 16, 14, 31, 62,140, 33, 67,134,224,240,225, -195, 66,197, 62,158, 16, 98,164,148,234, 26,210,126,185, 92, 14,185, 92,142,130,130,130, 70, 51, 89, 54, 54, 54,144,203,229, 40, - 42, 42,178,216,100,113, 28,199,106, 52, 26, 20, 20, 20,160,255,240,225, 88,190,104, 17,250,244,233,131,254,253,251,131, 82,138, -227,199,143,163, 95,247, 16,140,127, 38, 12, 55,111,222, 4,199,113,102,181, 55, 61, 61, 29, 25, 25, 25, 24, 52,124, 56,214,175, - 90,133,206,157, 59, 35, 48, 48, 16, 28,199,225,228,201,147, 24, 51,176, 59,148, 35,251, 33, 62, 62,190,225, 39,254, 31,231,111, - 55, 88, 55, 50,233,133, 96, 23,114,240,217,129,157,134, 13,239, 17,140,245,187,126,253, 44, 56,152,236, 4, 0, 39, 91,197,167, -207,247,105,134,184,135,121,248,245,106,234,193,184,172,198, 25,125, 33,240,112,118,178, 83, 1,172, 28,101, 6,129,179, 75,132, -201,196,100,129, 82,168,122,205,193,164,225,113, 62,157,131,125,124, 42, 71, 17,218, 12, 89,134, 23,174,223,245,237, 24,232,238, - 11,222, 8,240, 70,216,141,223, 14,124, 82,107,196,246, 17,122, 52, 85, 68,206,121,119,102,183,193, 35,199, 89,201, 85,106,240, -133,201, 48,166, 95, 71,206,157, 83, 40, 81,181, 68,122, 82, 34,118, 31,189, 88,112, 71,147, 83,200, 48, 56,150, 81,160,123, 47, - 33,151,214, 25, 29,170, 68,107,196,162,249, 31,188, 59,116,247,206, 93,182,138,102, 61, 72,194,119, 67, 10,228, 18, 78,225,210, -244, 41,166, 84,233, 76, 63,223,180,203,174, 68,143,197,166,116, 74, 75, 10,127, 60,126,236,200,248, 22, 77,123,216,222,191,124, - 8,101, 90, 29,116, 70,160,117,167, 48,240, 60,149, 19,134, 8,118, 44, 75, 50,115,242, 64,140,124,198,233,107,247,211,206, 92, - 75,100,117,182,166,181,171, 35, 33,236, 91,195,195,218, 1,198, 50, 60,211,171, 13,150,111,251,245, 77, 0,147, 45,209,248, 19, - 66,121, 4,139, 2, 61, 90,187,146, 53, 0,122, 92,217,191, 34,168,195,200,183, 1, 11, 34, 88, 33, 46,100,112, 72,115,207, 31, -150,127, 58,199,209,201,187, 37, 75, 4, 35,168,123, 40, 80,168,161, 68,115, 30,106,175,206,224, 61,187, 99,221, 55, 95, 22, 11, - 2,221,217,144, 41, 42, 68, 68,158,100,180, 90,237,143, 75,150, 44,113, 28, 54,172,124, 58,161,226,226, 98,156, 63,127, 30, 27, - 54,108,128,181,245,163,191,147, 67,134, 12, 1,165,212,113,193,130, 5, 63, 2,232, 90,151,102,151, 46, 93,134,175, 92,185, 50, -181, 93,187,118,137, 40, 55, 89, 50, 0,204,141, 27, 55,152,228,228,100,226,224,224, 64, 61, 61, 61,141,169,169,169, 2, 0,254, -165,151, 94, 98,109,108,108, 90, 20, 23, 23, 71, 89,218,254, 74,131, 37,151,203, 27, 37, 39, 75, 42,149, 86,233,202,100, 50, 80, - 74, 45, 50, 89, 60,207, 75, 14, 31, 62,140, 43, 87,174,224,163,118,237, 48,211,203, 11,142,142,142, 56,121,242, 36, 40,165,176, -182,182, 70,110,110, 46,118,238,220,137,190,125,251,130,227, 56,147, 17, 44, 0,136,136,136, 64,116,116, 52, 62,233,208, 1, 51, -213,106,216,216,216,224,248,241,242, 94, 63,133, 66,129,164,164, 36, 28, 63,126, 28, 97, 97, 97, 13, 61,245,255, 60,102,127,104, -194, 8,145, 16, 55,184, 27,244,101,160, 28, 5, 8, 60,131,131,137, 44, 46,142, 26, 44, 61, 40,195,224,131,111, 54, 31, 28,186, -236,237,225,100,202,136,246,158, 11,127,248,237, 53, 0,120,121,116,128,151, 74, 33,193,215, 63,197, 81,134,193, 7,150,234,214, - 70,112, 48,145, 49, 12, 94,235,223, 57, 16,169,249,122, 36,164,230,159,136,163,212,172, 46,157, 95,151, 77,194,150, 3, 39,147, - 87,108,209,222,162,148,194,222, 70, 17,248, 66, 76,130,239, 15,135,163, 31,126,181, 91,123,139, 10, 20,246, 42,105,208,228,155, -221, 77,142, 34,236,232, 43,155,242,254,156,247,186,143,152, 60, 75,201,221,218, 3,125,194, 81, 8,134, 50, 20, 26,100,200,103, -221,161,121,248, 16,159,175, 59,152, 92, 88,162, 31,127, 35,211, 50, 99, 25,159, 77,139,131, 93,200,168,207, 63,158, 23,185,232, -211, 5, 54,165,137, 39,139, 89,194,149,177,126,189, 37,159,126,180,140, 20,233,244,227, 18,114,105,145, 41, 29,157, 45, 22, 47, -249,234,155,161,175, 78, 12,191, 21,208,178,183, 19,159,122,207, 73, 91, 88,152,185,253, 72,180, 59,202,255, 25, 18, 0, 72,208, -228, 32,171,160,132,227, 57, 99,148,173, 20, 11, 99,205,137, 6, 86,208,204,141,184,140,234, 25,250,156,139,173, 12,101,197,249, -112,181,149, 98, 96,231,230,207, 53,115, 35,115, 18, 51,168, 69,147,184, 61,130, 96, 4, 53,150,225,194,226,190, 65,148, 55, 6, -129, 55,194, 16,179,213, 98, 25, 74, 48,243,141, 94, 54,118, 14,250,251, 12, 74,172, 1, 43,103, 16, 59, 63, 64,237, 79,164,173, -198, 33, 53, 49,150,123,243,185,137, 57,247, 30,104,190,119,182,194, 99,143,228, 17, 17,121,210, 72, 74, 74,122,254,253,247,223, - 63,211,185,115,103, 55,103,103,103,180,105,211, 6, 7, 14, 28,192,172, 89,179,170,202,180,107,215, 14,148, 82,228,230,230, 98, -201,146, 37,233,169,169,169,207,215,167,121,235,214,173,219, 91,182,108,233, 25, 28, 28,108,144,201,100,249, 0, 20,249,249,249, -202,220,220, 92,162,213,106, 33, 8,130,160, 86,171,249,212,212, 84,227,248,241,227,117,231,206,157,107, 94, 82, 82,242,176, 33, -237,175, 52, 87, 62, 62, 62, 55,114,114,114, 10, 8, 33,143, 53,133,131, 84, 42, 5,195, 48,144,201,100,112,118,118,118, 41, 46, - 46, 22, 0,228, 53,100, 10, 7,142,227,208,161, 67, 7, 28, 61,245, 59, 14,255,122, 14,133,169,183,241,218,171,207,163, 77,155, - 54, 56,122,244,104, 67,154, 7, 0,104,219,182, 45,142, 28, 63,131, 51, 87,174, 33, 41, 62, 6,111,190,246, 42, 90,183,110,141, - 35, 71,142, 52, 88, 83,228, 15,131, 21, 70, 8,169,252, 39,254, 39,187,218,202,133,180,245,108, 33,223,186, 96,112,243, 86,210, -254, 11, 64,164, 86,216,211,242, 72,247, 15, 62,255,238, 86, 27, 55, 50,241,122,134,233,209, 94,213,185,145, 65, 99, 91,187,146, - 29,215,110, 6, 61,247, 76,103, 31,172, 63,160,250, 16, 0,198,245,108,138, 75,119,178,112, 49, 62,115, 71,108, 38,141,125,188, - 83, 43,207,163, 1,197,142, 37,111,141, 8,243,243,118,199,134,125,103, 64, 8,126, 52,167, 46,165,148,118, 14,246,195,138, 45, - 53, 71, 12,186,251,126,181, 91,123,235,232,141,194,193, 0, 48,160,149,245, 47, 29,155, 59,248,154,138,100, 88,201, 37, 83, 7, -135, 79, 82,114,241, 7,128, 7,199, 65, 56, 29,202, 12, 2,210,178,139, 80,170,246,193,201,243,215,202, 10,180,250,183, 99, 45, - 52, 87,149,196,101,209,196,118, 30,228, 97, 73, 73,153,135,202,165,185, 86, 66, 4, 90,172, 21,112, 41,238, 65, 65,108, 26,189, -109,142, 70, 66, 2,213,119,245, 38, 61,215,108,222, 61, 95, 42,147,143, 99, 9,136,171,189,181,203,154,101,159,192,214,214, 6, -130,190, 24, 40,201,194,168,215, 63,207,186,158, 98,104, 10, 0, 1,206,196,166, 87, 51,217,102, 9, 67, 52, 39,238,234,255,103, -234, 24,196,136,105, 19, 7,182,147, 10,250, 18,188,181,100, 23,214,206, 25,129, 73, 79,183,146, 30, 58, 27, 63, 13,192,194,134, -156, 59, 80, 62,208,128, 26,203,208,117,222,169, 91, 4, 56, 67,129, 30, 87,118,127, 26, 4,252,110,182,198, 83,132, 72, 37, 30, -164, 85,168,175,181, 76,208,156,133,160, 57, 75, 89,159,238, 32,190,189, 8,113,239, 64,191, 93,250, 81,201,250,245, 27,142, 9, - 12, 62, 54, 53,229,133,136,200,127, 21, 74,105,162,189,189,253,160, 33, 67,134,252,122,244,232, 81,199,144,144, 16, 0,192,149, - 43, 87, 0, 0, 29, 58,116, 64, 64, 64, 0, 50, 50, 50,240,236,179,207,102,167,165,165, 13,162,148,214,155,211, 91, 84, 84,148, - 24, 17, 17,225, 90, 92, 92,220,254,195, 15, 63,204,240,243,243, 43,212,106,181, 36, 63, 63, 95,224, 56, 14, 14, 14, 14,242,118, -237,218,161, 91,183,110,197,231,206,157,243, 79, 78, 78, 46, 4,112,191, 33,237, 31, 49, 98, 4, 78,157, 42, 31,132,215, 24,243, - 98, 73,165, 82,132,132,132,120, 37, 38, 38,166, 0, 64, 67,230,197,170,126,121,185,118,237, 26,162,126,215, 64,162, 47,131, 60, - 43, 21, 23,246, 69, 96,248,212,233,224,184,134,103, 43, 92,187,118, 13,251,143, 95,128,181, 66,130,219,183, 99, 17, 17, 17,129, -215, 94,123,237,177, 52, 27, 72,189, 94,228,223,134, 4, 0, 40,165, 81,168,101, 22,218,230,205,137, 92, 81,140, 5, 3, 59,120, -205, 30,215,163, 57,107, 44, 76,133,192, 11, 96,165,128,171,179, 29,182,110,221,209,116,199,174, 93,231,219,122, 73,191, 17, 56, -238,131,235, 25,180,212,130, 99, 47, 88,182,235,204,184,173,239,134, 73, 94, 27, 28,228, 8, 0, 50, 9,131,175, 15,196,114, 0, - 22, 60,206, 73,117,245, 38,202, 98, 35,166,184, 59,169, 63,124,255,149,161,142, 97, 29, 2, 16,117,241, 6,190,137, 56,127, 74, -158,137, 45,230,234, 80,193,136,154,190,169,182, 81,132, 16, 76,231, 83,242, 60,117,151, 89, 59,192,240,224, 55,192,160,133, 86, -103, 64,114, 14,143,228, 92, 45, 36, 42, 25,174,196,107,202,156,210,113,208,164, 80, 29, 16, 66, 72,143,102, 74,207, 15, 63,251, -202, 91, 91, 86,204, 21,230,101,115, 50,249, 5,169,202, 74,145,102,186,246, 31,156,215, 80,109,239,166,178,167, 0,129,149, 43, -105,233,188,119, 94,180, 78,137, 59,138, 22, 76, 42, 8,165,176,106, 53, 20,182, 86,172,172,167,191,236, 33, 0,248,187,171,229, - 75, 62,158,165,126,123,206,199, 38,115,188,130, 9,145,181,233,232,254,118,136,159, 3, 78, 69,223,194,169,235, 73,177,167,174, -220,110,221,167,141, 39, 2,188,237,103, 4, 19,178, 56,142, 90, 30, 17, 5, 0, 80, 14, 48,106,171, 70, 17, 6,187,145, 9, 29, -199,253,175,214,209,131,117,225, 15, 8,241, 60, 5, 97, 89,128, 48,229, 35, 26,147,207, 66, 98,223,140,238,216,189,191,116,195, -134, 45,159,196,101, 61,254,252, 51, 34, 34, 79, 58,249,249,249, 49, 42,149,106, 96,104,104,232,166,183,222,122,203,118,226,196, -137,158,175,190,250, 42, 3, 0, 25, 25, 25,194,138, 21, 43, 82,191,253,246,219,130,236,236,236,201, 6,131,225,186, 41, 61, 74, - 41, 37,132,156,219,184,113, 99, 86, 84, 84, 84,235, 46, 93,186, 40, 59,116,232,192, 59, 56, 56, 72, 20, 10, 5,175,215,235,181, -241,241,241, 66, 98, 98,162,103,126,126,254, 29, 0, 9, 13,233,190,175,136, 86, 45,100, 89,118, 62,165, 52,164, 49,114,176, 84, - 42,149, 7,128,187,132,144, 22,150,118, 15,214, 68, 34,145, 32, 47, 47, 15,165,233,177, 80,106,238, 32,212,154, 65,176,131, 13, -236,236,236, 30,203, 12, 21, 20, 20, 0, 37, 41, 56,115,230, 26,192,113, 80,171,213, 80,171,213,127,187,193,170,203,139,252, 91, -169,243,131,211,218,149,188,230, 32,199,138,169, 67,155,203,252,125,189,161,211, 92,193,181,228, 98,124,208,165, 83, 28,171,176, -213, 78,125,126, 68,135,240, 49, 77, 16,214,173, 35,241,247, 80,207, 88,188,108,245,235,173,221,200,172,216, 12,250,181, 57, 7, -142,205,164,247, 90,185,146, 13,191,197,104,166,121,171,202, 32, 8, 20,191, 93, 79,195,245, 7,121, 27,110,102,210, 90,135,238, -214,217, 86, 79,210, 79, 2,102, 23,165, 84,169,182,182, 46,106,215, 54,200,185, 95,215,182,204,160,222, 29, 32, 99,129, 51,151, -174, 97,230,178, 31, 47, 8, 2, 29, 26,109,102,247, 96,249,136,193, 71,141, 83,249,136, 65,227, 35, 35, 6, 41,165,180,124, 20, - 97,253,105, 93, 44, 75,210, 75,147, 46,187, 75,157, 90,162, 44,225, 55, 60,200, 19,144,148, 89,132, 66,137, 59,116, 41, 41, 0, - 21, 30,158,164,180,193,159,102,103,103,103,215,166,193, 1,205,191,219, 28, 1, 67,105, 1,238,157,220,132,226,188, 52,124,186, -230, 64,115,111,111,239,222, 26,141, 38,202, 92, 45, 66, 72,192,175, 7,119,184,130, 2,172, 84,129, 67,171,118, 35,219,201, 10, -206, 42, 25,132,178, 44, 76,125,123,162,122,112,255,137,106, 0, 72,186,125, 21,126,170, 50, 83,146, 0, 0,131, 19,194,199,245, - 9,180,135,177, 12,155,143, 92,213, 50,192,160, 45,199, 98, 19,250, 4,217, 43,199,245,240,115, 88,152,154, 63, 26, 13,156, 12, -180, 50,130, 85, 73, 67, 70, 15,238,161,148,111,229, 66, 18,118,157,203,180, 30,211,255, 41,149, 76, 66, 8, 45, 78, 1,181,114, -198,234,205,123,138,229, 70,172,107, 72,219, 68, 68,254,139,148,150,150, 70, 19, 66,218,188,247,222,123, 19,230,205,155,215,203, -218,218,186, 41, 0,148,148,148,220, 51, 26,141,167, 0,236,176,100,180, 95,133, 97,186, 75, 8,185,119,255,254,125,247,237,219, -183,171,241,199,124,140,101, 0, 10, 80, 62, 97,102,131, 71, 16, 86,154, 41, 66,200,124, 83,101, 45,208, 60, 92,161,217,162, 33, -245, 25,134,225, 9, 33, 32,132, 64,161, 80,224,244,233,211, 24, 59,180, 63,110, 30,202, 71,136,189, 13, 58, 77,158,138, 93,145, -145, 96, 89, 22,132, 16,176, 44,107,209,117, 68, 34,145,224,204,153, 51,152,244,236, 24, 40, 36,128, 90,173,198,123,239,189,135, -159,126,250, 9, 18,137,184,154,222,227, 80,247,171, 71,176, 48,114,211,231, 50,240, 70,252,188,233, 75, 28,188, 81,172,191,157, -133, 15, 2,179,176, 34, 2, 69, 66,214,178, 45,211, 34,207,220,248,226,165,241,195, 84,125,251,244, 71,223,176, 62,146,214, 29, -123,127, 8,160,202, 96, 17, 66,250,213, 55, 87, 6, 47,224,147,117, 71,110, 77,221,117, 50,158,192, 80,132,241, 3, 58, 82, 94, -192, 39,245, 53,184, 54, 77,181,149,205,174, 51,231,207, 59,192, 80,140, 7, 87, 79, 40,155, 52,109, 14,240, 6,220,189,123, 7, -223,110,222, 39,156,188,116,123,171,158,195, 91, 9,185,180,196, 92, 77, 0,128,192, 65,109, 45, 15, 28, 28,162,254, 69, 0,133, -189, 74, 22, 68, 5, 30,246, 42,105,208,128, 86,214,191, 80, 74,169,173,149, 52,136,242,127,246,108, 53, 53,203,244,220,218,205, - 27, 55,124,245,242,203, 47, 91,103,107,210,145, 90,120, 3,197,114, 47, 24, 85, 62, 72,184,122,170,172, 84,199,153,188,120,215, -247,122,102,103,103,103, 70, 95,204,197,174, 53,139, 96,212,235,144,169, 41,247,168,169,217,133,176,115,246, 58,111,137,166,129, - 19, 10,194, 39, 78,145, 89,217,194,106, 82,248, 48,121, 66,142, 14,237, 61,109, 1, 0,180, 56, 11, 55,143,159, 65, 88, 73, 20, - 0, 32, 49,153,129, 95, 91, 79,179,218,105,171,148,189, 53,248, 41, 47,220,123,152,134,211,177, 41,155, 19,115,104,106, 51, 39, -178, 57, 33, 53,127,218,136, 46,190, 88,254, 83,220,155,168,195, 20,213,165, 25,236, 70, 38, 0,232, 81,158,228, 94, 6, 10,244, - 8,118, 35, 19,204, 25, 57, 88,155,166, 68,134,231,190,250, 37,233,127,123, 46,103,143,152,253, 92, 79,187,110,221,134,200,193, -233, 81, 84,166, 51,198,229,209,194,134,104, 62, 46,162,166,168,249,111,213,172, 48, 59, 91, 43,110,141,169,153, 82,113,107, 20, - 77,224,209,238, 64, 74,169,164, 34,122, 85,111,146,187, 41,205,234,221,129,148,210,195, 21,209,171,122,163, 88, 53, 53, 5, 65, - 72,237,208,161,131,227,240,225,195,193,243, 60,238,220,185,131,164,228,100,244,155,246, 38,236,237,237,113, 42, 38, 6,183,111, -223,198,252,249,243, 97, 52, 26,177,127,255,254, 63,205,200, 94, 83, 83, 34,145, 24,154, 55,111, 46, 27, 57,114, 36, 56,142, 67, - 98, 98, 34, 82, 82, 82, 48,115,230, 76,168,213,106, 68, 71, 71, 87,105,102,103,103, 67, 34,145,252,169,103,225,175,248, 44, 61, -105,212,103, 79,121,240, 70, 20, 68, 46,192,215,167, 97, 48, 24, 17, 20,155, 73,171,247,105,175, 14,117, 34, 63,199,220,184,117, - 47,250,108, 95, 57, 50,175,151,215,177,128,248,108,154,214,209, 71, 82, 4, 67,145, 29, 18,127,193,253,140,162,226,248,108,106, - 81,151, 22, 0, 80,129, 39, 48,148, 2,105, 87,112,238, 84, 20, 78, 94,184,134,203,215,111,241,231,162,227,119, 49, 2, 62,137, -203,166,119, 44,214,164, 20, 54, 67,151,227,197,235,119,125, 59, 6,184,249,130,231, 64, 5, 35,212,227,119, 96,114, 92, 55,223, -142,205,236,125,203, 35, 87, 70, 56,188,114, 2,248, 74, 89,175,222,229,135,134,117, 61,154, 42, 70, 23,229,231,116,121,186,119, - 87, 72, 90,177,166, 0, 0, 32, 0, 73, 68, 65, 84,107,117,171,193,200,190, 27,143, 59,215,206,148, 69,223, 72, 56,119,249,161, -225,177,162, 35, 94, 94, 94,189,158,238, 29,136,241, 83,223,135,161,180, 0,137, 39, 55,162, 56, 55, 29,167,207,219,224, 86, 97, - 97, 87, 0, 81,230,106,157, 75, 50,182, 6,128, 30,254,178,135,182,208,185, 63, 63,108, 56, 20, 68, 11, 65, 87, 8, 82,154,141, -132, 20,125,193,232, 53,201, 60, 0,168, 20, 68, 98, 77, 11,236,204,209, 13,246,115,106,169, 98,141,216, 18, 25, 11, 65, 40, 95, -102, 73, 16,176,122,203,137,132,105,159, 76,106,143, 96, 95,135,182,164, 98,242, 19,115,219, 74, 40,122, 94,222,245,113,144,246, -215, 15, 1,193,128, 51, 51, 28,131,122,126,157,219, 19, 13,140,132, 93, 79,161, 41, 0,166,181,242, 36,107,103,124,125,228,195, - 14,145,113, 61,222,125,101,132, 29,168,184, 48,186,136,136,200,223, 79,113,113,241,212,201,147, 39,175,149, 74,165, 46, 0,136, - 32, 8, 16, 4, 65,242,197, 23, 95, 72,121,158,103, 24,134,225, 89,150,229, 14, 31, 62,108,228,121, 62, 75,171,213, 78, 53,165, -201,113, 92,194,244,233,211,155,155, 26,113,184,115,231, 78, 72, 36, 18, 3,199,113, 9,141,118, 66,255, 33,234,190,104, 80,124, -220,125,210,130, 5, 0, 8, 40, 62,170, 97,174, 0, 0, 49, 57, 52,181,181, 43,153,217,186, 99,239, 5,149,117, 44,109,128,150, -231,199,116,108, 19,176, 19, 0,116,148,159,100,105,125, 0, 40,212,149,141,107,215,177,235, 46,129, 82, 9, 71,233, 6, 70,192, - 94, 45,135,155,230,140,156,171,139,212,204,252,232,202, 5,156, 5,208, 63,186, 5, 43,166, 99,160,148,210,170,110,193, 47,149, -200, 46,208,153,156,199,233,204, 61, 93,255,142,190,178, 41,199,206, 94,157,202,243,212,157,101, 73,122,153,158, 91,251,184,230, - 10, 0, 52, 26, 77, 84,176, 43, 57, 22,211,214,109,128,179,170,124, 95,118, 41,144, 93,138, 99,154,204,162,168,134,104,230,149, - 24, 71,204, 91,241,211, 1,185,148,149,128,210,242,137, 64, 41,133,214,192,231, 86,154,176, 80, 39,226,249,222,126,110, 39,203, -146, 36, 83,122, 23,111,167, 45, 31,191,248,248,172,216, 7,121, 27,238,231,209, 27, 0,112, 63,143,222,104,225, 68, 62, 76, 72, - 47,154,117, 35, 41,239, 75, 75,243, 38, 40,193,233,142,227, 23,252,105,159, 37, 26,181,113, 51,149, 94, 3, 48,170,181, 43,233, - 63,254,221,111,223, 37, 4,226, 50, 17, 34, 34,255, 33, 42,163, 88, 12,195, 52,120,240, 77, 45,154,135, 9, 33, 67, 0,220,181, -160,206, 69, 0,109, 26,171, 13, 21,154, 57, 0,114, 26, 83, 83,228,207,212,105,176, 98, 51,233,106,152,177,152,179,185,229,234, -172,159, 74,143, 3,112,106,104,253,106, 26,142,143,163, 81,147,152, 12,250, 97, 99,234, 85, 82, 97,166,254,146, 92,158,184, 76, - 58, 16, 0, 2, 2, 2,232,157, 59,119,240,184,179,224,222,204,162,215, 80, 99,201,133,154,196,228,208, 84, 0, 61,205,209,139, -207,166,159, 0,127,238, 2,190,155, 67, 63, 5,240,105, 67,218,216,208,153,218,205, 37, 54,147, 70, 2,166,103,211, 23, 17, 17, -121,242,104,140, 73, 70,107,209,124,172,133,159, 69,254, 61,136,221, 30, 79, 32,241,241,241, 79,204, 40, 12, 17, 17, 17,145,191, -128, 6, 39,194,215,131, 56,233,176,200, 35, 48,255,223, 13, 16, 17, 17, 17, 17, 17, 17, 17,121,210, 32, 0,250,213,246,132, 37, -163, 3, 8, 33,181,106,212,135, 41,125, 81, 83,212, 20, 53, 69, 77, 81, 83,212, 20, 53,159, 60, 77, 83,218, 79,204,232, 68, 90, - 45,121,185,177,111, 0,250,137,154,162,166,168, 41,106,138,154,162,166,168, 41,106,254,215,110, 98, 23,161,136,136,136,136,136, -136,136, 72, 35, 35, 26, 44, 17, 17, 17, 17, 17, 17, 17,145, 70, 70, 52, 88, 34, 34, 34, 34, 34, 34, 34, 34,141,140,104,176, 68, - 68, 68, 68, 68, 68, 68, 68, 26, 25,209, 96,137,136,136,136,136,136,136,136, 52, 50,164, 98, 52,128,136,136,136,136,136,136,136, -136, 72, 35,193, 0, 0, 33,132, 86,191, 23, 17, 17, 17, 17, 17, 17, 17,249, 59,121,210,188,136,216, 69, 40, 34, 34, 34, 34, 34, - 34, 34,210,200,136, 6, 75, 68, 68, 68, 68, 68, 68, 68,164,145,169, 52, 88, 97, 21, 33,185,176,255,207,198,136,136,136,136,136, -136,136,252,103,121,162,188, 72, 85,146, 59, 33,132, 82, 74,201,255,115,123, 68, 68, 68, 68, 68, 68, 68,254,163, 60, 73, 94, 68, - 28, 69, 40, 34, 34, 34, 34, 34, 34, 34,210,200,136, 57, 88, 34, 34, 34, 34, 34, 34, 34, 34,141,204, 95,106,176, 8, 33,253, 68, - 77, 81, 83,212, 20, 53, 69, 77, 81, 83,212, 20, 53,255,107,136, 17, 44, 17, 17, 17, 17, 17, 17, 17,145, 70, 70, 52, 88, 34, 34, - 34, 34, 34, 34, 34, 34,141,140,104,176, 68, 68, 68, 68, 68, 68, 68, 68, 26, 25,209, 96,137,136,136,136,136,136,136,136, 52, 50, -162,193, 18, 17, 17, 17, 17, 17, 17, 17,105,100, 8,128, 90, 71, 2, 80, 74,143,155, 45,210,128,209, 4,166,244, 69, 77, 81, 83, -212, 20, 53, 69, 77, 81, 83,212,124,242, 52, 77,105, 91,226, 63,254,209, 80, 74,255,178, 27,128,126,162,166,168, 41,106,138,154, -162,166,168, 41,106,138,154,255,181,155,216, 69, 40, 98, 22,132, 16, 55, 66,136,219,255,119, 59, 68, 68, 68, 68, 68, 68,254, 13, - 72, 26, 83,172, 21, 33,125,167,135,186,237,121,253, 90,186,163,169,178,174,174,174,107, 85, 42,213,196,210,210,210, 18, 66,136, - 80,185,191,194, 25, 87, 95,191, 39, 49, 51, 51,179,167, 41, 61,133, 66,177,194,205,205,237,149,226,226,226, 82, 66, 8, 37,132, -128,144,242,229,140,106,222,243, 60,175,201,206,206,238, 96,201,185,253,211, 32, 0,235,236,230,118, 73,202,178, 94,150,214,229, - 5,225,126, 70,122,122, 87,179,143, 69,200, 34, 66, 48,187,226,241, 82, 74,233,251,150, 30,243, 31, 15, 33,172, 57,197, 66, 0, -219,120, 96, 60,207, 48,111, 74,129,149, 58, 65, 88, 3, 0,160,148,111,232,161,245,151, 72,115, 66,209,150, 16,168, 41, 69, 1, - 37,184, 38,239, 68, 19, 26,170,247, 56, 16, 66,186, 72,165,210,113, 14, 14, 14,182,153,153,153,191, 2, 56, 0,224, 25, 87, 87, -215,167,243,242,242,138,140, 70,227,110, 74,233,133,134,104,247,106, 71,230,200,101,210,151,180, 6,227,146, 51, 87,233,198,176, -167,136, 19, 39, 96,177, 82, 38,233,169,211,115, 75, 79, 95,163, 27, 44,108,235, 35,235,149,209,138, 31, 15, 75,136, 48,243,125, - 7,128,253, 14, 14, 1, 10, 23,187, 95,165,114,246,126,126, 70,241,196, 49,153,153,201, 99, 30,227,125,255, 39,226,226,226,242, - 34,195, 48,159, 81, 74,193,243,252, 7, 57, 57, 57,155, 26, 67,151, 16, 50, 1,128,117,197,102, 9,165,116,135, 5,117,147, 0, -248, 86,108, 62,164,148,250,213,183, 95,196, 50, 8, 33,171,247,237,219, 55,173, 79,159, 62, 88,190,124, 57, 86,175, 94,253, 32, - 43, 43,107, 49,128,205,148, 82,253,223,173,243, 36,209,104, 6, 43,152,144, 54, 47, 15,234,122,104,234,216, 65,114, 83,101, 93, - 92, 92,190, 31, 52,104,208,164,205,155, 55, 75,227,227,227,173,252,253,253,193, 48, 76,149, 1,170,254, 59,217,164, 73, 19,161, - 46,157, 74, 88,150,253,122,212,168, 81,147, 35, 34, 34, 84,209,209,209,170, 86,173, 90, 85,233, 9,130,128,154,191,187,254,254, -254,245,234,169,213,234, 43, 44,203,122, 3,127, 54,103,117, 61,230,121, 94,147,147,147, 99,210,180, 17, 66, 6, 2,152,107,170, - 28,128,197,148,210,163,245, 21,144,178,172, 87,106,106,170,171, 25, 90,143,224,227,227, 99, 48,183,108,121,228, 10,179, 5,129, - 50, 0,192, 48,100,142,149,149,213,234,178,178,178,228,202,231, 1,128, 82,154, 97, 73, 27,188,189,189, 7, 11,130, 48,161, 92, -147,217,161,209,104,126,177,164,190,157,157,221, 21,185, 92,238, 45,145, 72,170,222,140, 26,215,219, 71,182,121,158,167, 6,131, - 65,147,155,155,107,177,177,142, 2,200, 32,160, 23,199,178,111, 59, 57, 59,247,140, 62,118,204, 58, 36, 36,132, 97, 89,246,125, - 0,107, 44,213,171,142,254, 18,105,206, 27, 49,182,204,168, 24,166,240,251, 40, 64,151,244, 81,188,149, 84,119, 80,127,137,236, -249,187, 77, 22, 33,100,208, 11, 47,188,240,249,146, 37, 75,156,229,114, 57,179,123,247,238,174, 51,103,206,124,105,249,242,229, - 94,227,198,141,179,213,235,245,194,156, 57,115,122, 17, 66, 62,166,148,254,100,137,118,183,118,164, 75,160,191,199,252, 55, 38, -246,197,172, 69, 59,223,232,209,134,100, 91, 89,203, 86,143,238,217,220,190,117, 83, 7,124,188,246,220, 91, 0,204, 54, 88,132, - 16, 34,149, 74,219,185,187,187,251,235,116, 58, 30, 0, 92, 93, 93,171,190,232, 44, 91,238,155,116, 58,157, 33, 47, 47,239,176, - 37,109,173,141, 89, 74,101,231,206,246, 54,145, 11, 38,188, 96, 85,152,151,235,246,245,161, 3, 49, 17,112, 13, 29, 3, 60,120, - 92,237,127, 18, 12,195,124,150,146,146,226, 65, 41,133,135,135,199,103, 0, 54, 53,146,180,117,229,239, 48, 33,196,218, 68,217, -154,248, 86,171,235,107,198,126,139, 33,132, 40, 37, 12, 51, 93, 46,149, 14,224,121,190, 13, 0,176, 44,123, 93,111, 52, 70,114, -130,176,146, 82,170,125, 28,253,127, 56,179,167, 77,155,214,127,222,188,121,254,179,103,207,198,236,217,179,155,172, 95,191,126, -237,231,159,127, 62,135, 16, 18, 74, 41, 45,254,155,117,158, 24, 26,197, 96, 5, 19,226, 51,176, 93,192,201, 55, 95, 24, 43, 19, - 34, 86, 16,188,248,191, 58,203,186,184,184,124,223,181, 67,135,151, 54,111,222, 12, 0,152, 56, 98, 4, 6,116,234, 4, 91, 27, -107,200,229,229,205, 33,148, 64, 38,149, 97,228,204,119, 76, 30,155, 16,178, 52, 60, 60,252,185,136,136, 8, 27, 0, 88,189,122, - 53,194,195,195,225,232,232, 8,149, 74, 5,153, 76, 6,169, 84,250,200,189, 41, 88,150,245, 78, 73, 73,113, 85, 42,149, 0,202, - 13,159, 32, 8,143,220,170,245, 67,131,227, 56,180,108,217,210,164,110, 5,115, 11, 10, 10,122,149,148,148,212,219,119,219,180, -105, 83, 0,168,215, 96, 85,242,217,167,159, 64,224, 74, 32,145, 0, 28, 7,232, 12, 12,132, 90,254,203,123,122,122, 98,250,244, -233,127, 50,156,150, 48,108,216,112, 80, 74, 87,123,121,121, 29,204,200,200, 8, 33, 4, 83, 1,203, 35, 91,148,210,231,239,222, -189,171, 18, 4, 1,129,129,129,147, 0, 88,100,176, 36, 18,137,119, 76, 76,140,171, 66,161,168, 51, 82, 89,205,252,194, 96, 48, -160,125,251,246,156, 37,199,112, 3,124,115, 25,230,213,118, 79, 61, 53,101,254,136, 17, 86, 87,174, 92, 81, 48, 12, 3,142,227, -240,197, 23, 95,112,148, 82,251, 96,192, 46, 14, 40,172, 75,131, 16, 50, 15,192,139, 40,143,202,110,160,148,126,241,200,243, 20, -109,203,140,138, 97,137,197, 35, 59,117,110, 50, 7,113,177,215, 59, 53,179,217, 15, 91,137, 46, 1,192,223,106,176,212,106,245, -152,229,203,151,187,108,216,176,161,240,246,237,219,134, 53,107,214,184, 76,157, 58, 53,200, 96, 48, 96,218,180,105, 89,129,129, -129,178,229,203,151,187,236,219,183,111, 32, 0,139, 12,150,132,224,147,103, 71, 12,128,214,200,192,104,228, 92, 60, 92,108,183, -206,120, 33, 76, 74,169, 30, 91,126,138,134,145, 19, 54,154,171, 85, 17,185,106, 55,122,244,104,191, 29, 59,118, 72,110,222,188, - 41,105,213,170, 21,120,158,175,186, 9,130, 0,158,231, 17, 16, 16, 96,233,203,240, 39, 94, 2, 2,156,221, 28, 35,187, 14, 25, -108,229,161, 84,192, 49, 47, 11, 47,203, 36,182,155, 84,186,109, 0,186, 61,246, 1,254, 65, 80, 74, 33,145, 72,144,156,156, 12, - 87, 87, 87, 43, 71, 71,199, 52, 0, 31,229,230,230,174,251, 43,142,247, 56,145,173, 70,108, 67, 39,185, 68,178,119,203,198,175, -221, 59,119,235,198,186,121,184, 34,254,206, 67, 72, 8,223, 47,230,114,116,216, 75,175,189, 59,131, 16, 50,154, 82,122,233,239, -110,219, 95,141, 71,247,215, 71,121,244,120,115, 53,161, 2, 62,254,238, 64,209,162,165, 43, 84,211, 94,125,129,157, 57,115, 38, -124,124,124,252, 71,141, 26,181, 20,192,107, 38,117,186,188, 62,202,189,219, 27,171, 65, 41, 22,124,123,160,232,243,165, 43, 84, -175, 53, 64,231, 73,227,177, 13, 86, 8, 33,246,161,126,110, 81,159,206,158,106, 67,127,249,129, 41,205,201, 68, 93, 22,198,213, -213,117,237,224,193,131, 39,110,218,180,169,106, 95,215,144, 16,140,234,219, 3,174, 78,106,168,172,229,229,151, 33,129,224,218, -237,251,102, 25, 1, 31, 31,159,105,123,247,238,181,169,220,246,244,244,132, 76, 38,171,186, 85, 55, 87,149,183,154,145,142,218, - 80, 42,149, 56,126,252, 56, 36, 18, 9, 88,150,133, 68, 34,169,186, 85,223,102, 89, 22,110,110, 22,165, 38, 45, 86,171,213,161, - 69, 69, 69,118,249,249,249,240,245,245, 45, 4, 16, 83,237,249,208,172,172, 44, 59, 75, 4, 5,174, 4, 51, 95,110, 5,169,254, - 2,244,210, 78, 40,147,116,199,185,203, 55,113,240,104, 20, 82, 82,211,209,163, 75, 59, 60, 63, 97, 12, 34, 35, 35,193,243,150, -245,104, 80, 74, 51, 8, 33, 75,159,121,102,248, 28,128, 32, 44, 44, 44, 99,198,140, 25,244,198,141, 27,163,198,142, 29,243,244, -157, 59,119, 9, 0, 48, 12,153, 77, 8,249,218,220, 72, 22,165, 84, 6, 0,167, 78,157, 2,165,212,100,212,179, 54, 20, 10, 5, -206,159, 63,143,202,238, 96,134, 97,192, 48, 12, 88,150,197,207,119,157, 81,162,103, 80,154,113, 3,111, 14,243, 69,211,166, 77, -193, 48,166, 83, 14,195, 0,229, 57, 96, 20,145, 74,103,122,120,122,250,247,110,214, 76,117,252,248,113, 22, 0,252,252,252,104, - 90, 90, 90,254,254,253,251,139, 36,192,106, 63, 74, 55,215,103,174,124,125,125,187, 51, 12,243, 89,229,107, 78, 8, 89,234,239, -239, 63,191,242,121, 65, 16, 48,161,191,163,116,198,140,183,101,157,195,202,255,148,116, 30,190, 3,133,137,139, 90,145,220,121, -234,134,188, 38,143, 67, 65, 65,193,214,128,128, 0, 54, 43, 43,235, 4,128,123, 70,163,241,187,173, 91,183,186,190,252,242,203, -153,219,182,109,123, 3,128,207, 23, 95,124, 49,176,184,184,120,151, 37,186, 61,219,146, 33, 29,218,133,116,241,245,241, 65,212, -185, 75,144,201,165,246,211, 95, 28, 6, 27, 27, 9,190,220,112, 72, 72,210,228,190,113,250, 26,221,108,142, 86,133,185, 10, 29, - 51,102,140,207,142, 29, 59,100, 0,112,227,198, 13,100,102,102,194,201,201, 9, 74,165,178,234, 59, 95, 25,197,122, 28, 94, 2, - 2,212, 62, 78, 23,247,239,255,201,202,209,209, 30,223,189, 51, 3,207,167,106, 96,199, 50, 48, 26, 81,127, 40,252, 95, 6, 33, - 36, 96,244,232,209, 74,158,231, 81, 82, 82,130,147, 39, 79,170,173,172,172,212,222,222,222, 11, 0,152,109,176,172,172,172, 50, -180, 90,173, 43, 0, 40,149,202,204,178,178, 50, 55, 0,165, 74,165,210,170,162, 72, 89,181,226,230, 68,182, 30, 86,139, 80, 61, - 52, 99,191,217, 16, 66, 58,118,234, 24,122,252,199,136,237, 54, 5, 69,233,176,119,200, 4,131, 2,172, 91,183, 18, 86, 86,118, - 88,176, 96,158,228,126,191,190, 94, 3,135,140, 62, 78, 8,233,247,196,153, 44, 74,214,245, 27, 62,209,209, 74,101, 11, 0, 16, - 56, 35, 54,173,159, 1,134, 97, 48,127,254,124,180,110,221,122, 10, 33,228,127,148,210,220,250,101,176,174, 77,175,113,142,114, -101,249,165, 88,224,141, 88,179,115, 86,185,206,251, 83,241,236,240,166, 83,174,109, 35, 71, 90, 55, 67, 17, 0, 80,138, 50, 41, -131,135,232, 68, 51, 43, 53, 8, 33,189, 41,165, 81,117,109,255, 27,145, 16, 66, 40,165,180,122, 55,203, 35,219,245,209,132, 16, - 69, 75, 7,155,163,171, 62,154,225,201,158, 63, 36, 41,123,120, 23,169, 90, 30,246, 21,207,211, 26, 67, 45, 85, 42,213,196, 77, -155, 54, 61,226,191,124,221, 92, 33,147, 73, 33,149, 17,216,247, 28, 6, 0,200, 63,125, 16,132,212,110,174,106,106,150,148,148, -104,175, 94,189,106,179, 97,195, 6,184,186,186,194,223,223, 31, 42,149,170,234,135,182,250,173,210,104,213, 52, 88, 53, 53, 43, -159,151, 72, 36, 96, 24, 6,145,145,145,224, 56, 14, 99,198,140,249,147,185,146, 72, 36,181, 26,182,154,154,213,246, 31, 37,132, -196, 80, 74,123, 85, 92,120, 99, 40,165,189,171, 29,123,160,139,139,203, 92, 0,139,205,213,100, 89, 10, 86,123, 14,130,247, 10, - 72,146,103, 64, 47,109,139,223,206, 68, 99,211,218,229, 0, 0,255,160,142, 24, 59,106, 88, 85,244,205, 28,205,234,120,120,120, -108,206,204,204,106,223,167, 79, 31, 20, 20, 20,232, 23, 44, 88,128,208,208, 80, 4, 4, 4,214, 90,222, 28, 77, 66, 72,246,181, -107,215, 60,180, 90, 45, 8, 33,217,166,202,215,166, 73, 8,193,214,173, 91,161,213,254, 57,122,239,208,251,115,204, 10,247,195, -228, 55, 55, 99,233,237,221, 88,181,106, 85,189,231,174, 2, 66,181,234, 22, 95,203, 89, 46,116,201, 7,111, 40, 38, 77,154,196, - 78,158, 60, 25, 15, 31, 62,196,203, 47,191,172,141,140,140,212,167,167,165,253, 36, 23,132,239, 12,143, 26,226, 58, 53, 21, 10, -197,150,163, 71,143, 98,247,238,221, 0,128,248,248,120,180,108,217,242,145,139,136,144,187, 7, 69, 73,223,225,226,207,183,208, -121,248, 14, 92,252,121, 2,248,252, 67,210, 14, 45, 81, 80,223,185, 63, 46,181,105, 82, 74, 79, 2, 56, 89,185, 77, 8,249,223, -182,109,219,198, 2,248,145, 82,122, 14,192, 57, 0, 59, 45,209, 44, 23,194,228,113,225, 35, 33,145,217,226,214, 93, 13,122,119, -109, 15, 55, 87, 87,196,220, 76, 64, 82, 74,110, 6, 33,120,113, 80,119,197,226,178, 50,253,255, 78, 93,165,223,155,210,244,241, -241,105,186,103,207, 30,105,229, 54,203,178, 96, 89,246,145, 63, 84,149,251, 44,106,103, 13, 94, 2, 2,108,189,109, 46,126,178, -178,187,245,197,235,219,208,210,111, 8,236, 6, 14,193,178,157, 59,160,201, 46,208,114,165,220,211,150,106, 90,194,223,169, 73, - 8, 9, 8, 15, 15, 63,183,125,251,118,251,228,228,100,156, 58,117, 10,254,254,254, 40, 45, 45, 53,249, 71,183,166,166, 86,171, -117,173,102,154, 42, 83, 24,118,234,116,186,202, 31, 74,147,255,156,171,107,214,149, 91,101,105,206, 85, 45,191,243,114,165, 76, -182,103,255,143, 59,109,226,110,157, 66,187,182, 93, 96,163, 14,134,192,167, 35, 39,183, 24,121,119, 83,241,233,167, 75,177,224, -163, 15,112, 96, 95,132, 77, 96,171,182,123, 9, 33, 45,170,119, 23,254,219,223,119, 16, 58,229,248,207,219, 86, 19, 42,160, 44, -227,150, 66, 90,114, 79, 53,113,194,104,118,252,248,241, 56,112,224, 0, 98, 99, 99, 87,215,101,174,170,107, 18,138, 41, 55, 78, -237, 94, 13, 74, 81,150,121, 75, 33, 43,187,167,122,225,185,177,236,243,207, 14,192,133, 19, 95, 99, 64,187,123, 55, 60, 93, 49, - 42,175,162,147, 80,194, 34, 71,161,196, 89,171, 75,228, 66, 53,147,117, 18,229,255,161, 42,141,213, 73,148, 79, 37,245,175,165, - 42,130,101,137,177,170, 40,207, 62, 37,151,252,184,113,193,235, 33,202, 7, 55,100,186, 27,231,145,170, 19,232,134,135, 92,222, -138, 58,234,148,150,150,150, 36, 36, 36, 88,189, 56,106, 20,186,133,132,192,195,201, 9, 45,188,189, 97,165,144, 67, 46,147,254, -161,109,193, 9, 16, 66,104, 96, 96, 32,134, 15, 31, 14,169, 84, 10,149, 74, 5, 27, 27, 27,200,229,242, 90,163, 87, 82,169,212, -180, 40,202, 67,229, 44,203,226,198,141, 27, 72, 74, 74,130,189,189, 61,206,158, 61,139,167,159,126,250, 79, 81,172,138,118, 88, -208,234, 63,186, 29,107,217,127, 20,102,118, 13, 86,194,243, 4,197,180, 45,148, 15,222, 64, 41,105, 15,157,142,131, 78,167,195, -247,103, 12,184,148, 80, 2,131, 65, 15,157, 78, 87,231, 49,235,130, 16, 66,220,221,221, 71, 5, 5, 5, 77,156, 48, 97,130, 94, - 42,149,162,180,180, 20,165,165,165,184,121,243,166,126,192,128, 1, 25,207, 60, 51,220,237,224,193,131,148, 82, 44,181, 36, 15, -139, 82,154,231,233,233,233,161, 84, 42, 65, 41,205,179,228,124,171,181,175,202,188,212,228,197,101,113,144,176,229,239,201,234, -213,171,193,243, 60,234,251,124,107, 9,249,245,163,207,191, 82, 47, 89,177, 17,106, 71, 55, 68, 69, 69,241, 71,142, 28, 41, 34, - 64,252,157,216,216,101,207, 0,135,247, 0,102,231,174, 1, 64, 94, 94,158,149,191,191, 63,188,189,189, 33, 8, 2,140, 70, 35, - 98, 98, 98,144,158,158,142,156,156, 28,148,149,149,193,209, 58, 31,205,157,188,193, 21,157, 68,218,141,143,225, 97,115, 11,155, -143,234,141, 79, 5,224,154, 37,199,250, 43,160,148, 30, 6,240,216,249, 75,160,240,114,117,247, 1, 67,141, 72,205,204,193,200, -161, 3,192,202,108,112, 63, 57, 27,109,131,155,121, 60,247, 76,119, 15,150,112,152,189,120,199,116, 0,223,155,146, 43, 45, 45, -229,111,222,188, 41,189,118,237, 26, 88,150,133,157,157, 93, 85, 58, 64,117,115,101, 78, 58, 64, 93, 84,154,171,207, 87, 63,109, -205, 72, 75, 80,200, 31,199,154, 31, 46,160,165,239,211,216,116,235,142, 86,146, 95,220,239, 75,173, 54,190,193, 7,248, 7,224, -225,225, 49, 85, 16,132, 5,148,210,252,240,240,112,183, 29, 59,118, 56,164,164,164, 32, 58, 58, 26,243,231,207,207,226,121,158, -163,148, 18, 74,233,199,143,123, 44, 74,169, 80, 61,178,101,101,101, 85, 25,217, 42,169, 22,185, 42,177, 84,151, 16, 34, 85, 41, -241,166,179, 29, 25, 33, 97,236,252,185,194,226,251,217,122,250, 83, 41, 39,124, 75, 41, 53,214, 87,151, 97,152, 87, 34,118,173, -246,116,118, 17, 16,230,210, 23,105, 25, 6,124,254,206, 11,200,201, 41,194,247,235, 23, 1,144,195,192,177,232, 21, 54, 26,174, -174, 94,152,242,234, 20,247,213,107,215,188, 14,224, 75, 75,219,249, 79, 37,237,236,202,125,132,144,227, 46, 46, 46,177,175, 79, -153,226,226,239, 63, 9, 74,165, 18, 59,119,238,196,142,239,190,227, 87, 0, 99,215, 18,242,219, 84, 74,247,213,171,115,225, 15, -157, 25,211,166,185,180,106, 53, 13, 10,133, 2, 39,142,252, 0,109,250,214,162,161,221, 96, 40,213, 98,104,147,225,212,241,193, -207, 36, 87, 42,197, 93, 0,144, 42,145, 38, 5, 50,107,200,253,235,141, 85, 37, 13,238, 34,108, 38, 83,157, 91,255,206,184,246, - 46, 66,153, 68,127,230,103,164,232, 4,238,139,187, 6,195,149,124, 58,177,174, 58, 12,195, 8,190,190,190,232,219,161, 3, 70, -245,236, 9,137, 68, 2,165, 92, 6, 91,165, 21, 40, 95, 30,185,170,236, 34, 52,215,235, 85, 26, 27, 39, 39, 39,200,100,178, 42, - 99,101,110,244,170, 46, 77, 65, 16, 32,145, 72, 16, 19, 19,131, 30, 61,122,192,199,199, 7,187,119,239,198,192,129, 3,255,212, -101,104,169,185, 2,202, 13, 86,245,238,186,106,201,239, 38,147,219,107,162,213, 19,100,235,219,130,144, 16,112, 28,192, 83, 64, -167,213,130, 82,128, 82,192,104,208, 67,171,213, 86, 29,211,156,174, 87,111,111,111, 79,127,127,255,119,230,206,157,221, 34, 52, -180, 29,178,179,179, 33, 8, 2,108,108,108, 80, 90, 90, 10, 59, 59, 59,116,235,214,237,247,207, 62,251, 44,151, 82,204,181, 52, -201,253,113,169,124,205,143, 29, 59,246, 72,247, 96,229,173, 36, 77,131,201,111,109,131, 92, 2,196,196,196, 32, 40, 40,200,148, -185,100,250,244,234,142,115,191,199,115, 47,191,183, 66, 39,205,137, 94,236, 46, 8,155, 52, 64,131,207,139, 82,138,236,236,108, -100,100,100, 96,196,200,145,216,177,125, 59, 30, 60,120,128,224,224, 96,244,233,211, 7,174,174,174,120,240,224, 1, 46,157,214, - 65,151,151,139, 92,125, 52, 84,182,157,177, 63, 42, 65,247,225, 42,253,255,203, 40, 66,160,188,219, 4,192,203,106,181,186, 73, -105,105,105,186,209,104,220,141,114,211, 63, 80, 42,149,142, 83,169, 84,238, 5, 5, 5, 15, 0,124, 79, 41,189,108, 74,207, 74, -169,116, 82, 40,237, 32,112, 58, 72, 36, 18,248,248,248,131,242,122,228, 21,150,225,197,241,195,241,123,204, 77, 28,249,237, 2, -103, 52, 10,223,152,219,198,128,128, 0,228,228,228,128,101, 89,168, 84, 42, 88, 91, 91, 35, 48, 48, 16,201,201,201, 85,230,170, -161, 93,132, 47, 1, 1,118,190, 54, 23, 62, 91, 89,110,174,210, 83,211,144,242,128, 66, 33,151, 99,237,186,213, 37,165,233,121, -157, 55, 2,255,106,115, 5, 0,130, 32,124,156,146,146,226, 42,145, 72,220, 57,142, 67,114,114, 50,174, 92,185,130, 55,222,120, - 35, 35, 39, 39, 39,140, 82,218,160,115, 84, 42,149,153,149,145, 43,165, 82, 89,117,241,172, 45,178,245, 56, 57, 87,132,144,102, -254,222,182,145,235,151,207,244,237,216,185, 27,163,146,216,229, 21,223, 77,239,113,230, 84, 84,183, 55,150,127,255, 58, 33,100, - 0,165, 52,177,174,250, 10,169,116,112,151,238,221, 37,160, 25,144,200,123, 96,233,146,241,200,202, 46, 68, 94,110, 17,100, 50, -107,232,141, 44,120,129,160, 91,143,158,248, 97,243, 46,180,126,245,101, 86, 46,149,246,199, 19,100,176, 42, 88,244,237,183,223, -250, 6, 6, 6, 98,211,166, 77,248,109,203, 22, 60, 95, 80,128, 40,134, 97,141, 82,169,243, 97,163,113, 29,128,122, 13, 86,117, -157,214,173, 91, 99,227,198,141,216,186,117,235,195,137, 79,103,238,157, 57, 17,174, 6, 3, 6, 69,223,134, 99,147,225, 64,244, -109, 56, 62, 21,136, 22,156, 4,119, 9,129, 85,117, 1, 66, 72,239,234,247,255,118, 36, 0,194, 72,121,127, 92,213,189,169, 74, -214,110,129, 19,182, 79,234,223, 33,184,169, 55, 99,220,253, 53, 82, 74, 57,237,252,219, 6,225,118, 17, 29, 29, 87,143, 57, 96, - 24,134,178, 44, 11, 91, 43, 43,184,216,219,151,255,211,100, 24, 64, 0, 4, 35, 64,248,242, 47, 31, 21, 8, 44, 25,252, 44, 8, - 2,228,114,121,173, 9,237,150,230, 94, 85,215, 44, 42, 42,194,253,251,247, 49,101,202, 20,168, 84, 42, 0, 64,122,122, 58,252, -252,252, 32,145, 72,144,146,146,130, 19, 39, 78,160,105,211,166, 80, 40, 20, 22,185,172,106,209,164, 80, 66, 72, 20,128,208,180, -180, 52, 59, 15, 15, 15,192,210, 8,150, 64, 81,170, 35,208,235,121,220,185,115, 7,169,169,169,184,127,239, 46, 58,150, 20,130, -130, 5,165,212,162, 8,150,135,135, 71, 96,203,150, 45, 63, 91,180,104,145,212,199,199, 7,130, 32,192,209,209, 30, 37, 37,101, -200,201,201, 65,112,112, 48,124,124,124,176,116,233, 82,160,188,251,232,111, 53, 87,213,169, 28, 45, 90,253,158, 97, 24,188,245, -140, 47,114,115,109,192,178,127,140, 38, 53,145,131, 37, 3,128,176, 1,225,146,200, 35,135,173, 57, 96, 97, 58,203, 46, 52,245, - 15,132, 82,106,228, 5, 65, 85,215,243,201,201,201,144, 74,165,136,216,179, 7,185, 25, 25,104,219,182, 45, 58,117,234,132,187, -119,239,226,247,223,127,135,147,147, 19, 92,188,187, 34,234,158, 1,113,169,101, 80,171,213, 72,208, 48,255,111, 67,255, 9, 33, -195,250,245,235,247,221,178,101,203,220,221,221,221,165, 89, 89, 89,220,202,149, 43, 7,174, 92,185, 50,238,245,215, 95, 15,126, -253,245,215, 29, 92, 92, 92, 36,233,233,233,198,119,222,121,103, 32, 33,100, 46,165,180,206,110, 67, 0,176,182,182,117,100,101, -214, 32, 68, 2,123,181, 3, 36,114,107, 8,156, 4,188, 0,216,169, 93,112,238,247, 8,156,189, 94, 52, 53, 51, 7,123, 76,181, -143, 82, 74,157,156,156, 40,203,178,112,114,114,122,164,107, 16, 0,220,220,220, 80, 88, 88, 8,150,101, 33,149, 74, 45, 54, 89, -149,230,234,243,149, 79,219,144,106,230,170, 56,219, 9,191, 29,189,153, 95,154,158,215,227, 73, 48, 87, 0,170, 6,235,220,187, -119, 15,165,165,165, 56,125,250, 52, 62,254,248,227,172,154,230,202,205,205,237, 85, 59, 59,187,143,138,139,139,151,166,165,165, -125,109, 74,183, 34, 50,213,104,212, 54, 29, 3, 33, 68,234,227,161, 60,250,251,233,109,126,106,122,141, 32,105, 10,112,167, 48, -214,246,162,107,175, 33, 29,135, 50,237, 87,125,210,164,211,212,247,143, 18, 66, 2,235,138,100, 9, 60,223,222,218,198, 22, 64, - 38,162,175,156,172, 50, 87, 57,185, 5,208, 25, 88,232,244, 4, 90, 3,131,190,253, 6,225,187, 53, 91,145,146,153,139,202, 17, -134, 79, 10,132, 16,199,144,144,144,105, 99,199,142,197,194,133, 11,113,124,217, 50,253,107,132, 20, 74, 0,122,136,231, 33, 80, - 74, 24, 51,146,211,107,234,124,249,229,151,251, 0, 60,187,248, 13,116,205, 43,198,139,158,195,169, 99,147,225,229,101,199,204, -161, 0,224,152,117,252, 79,169, 58,164,178, 39,205,210, 30,181,127, 42, 18, 74,105, 20, 33, 4,213,239,235,171, 96,239, 30,216, -251,127,115,102,172,232, 62,162, 31,147,254, 90, 15,228, 23,234,244,115,110, 26, 25, 77, 41, 29, 85,159,185,170,206,123, 43, 87, -226,247,248,242,239,175,183,171, 43,102, 63,247, 28, 40, 7,156,141,141,195,174,227,199, 49,190, 95, 63, 88, 87,140,224, 51, 69, -229,197,179,182,168, 85,245,232,149,165, 81,166,252,252,124,236,217,179, 7,157, 58,117,130, 74,165,130, 68, 34, 65,104,104, 40, -110,222,188,137,102,205,154,129, 16,130,253,251,247, 99,212,168, 81, 72, 76, 76, 68,215,174, 93,109, 76,171,254, 65,165,217,137, -139,139,179,163,148,246,170,140,118, 52, 20,157, 78,135, 91,183,110, 97,248,240,225,112,112,112,128,151,215, 14, 28, 63,186, 13, -170,144,231, 65, 8, 44, 50, 88,132,144, 49, 67,135, 14,149, 50, 12,131,178,178, 82, 40, 20, 74,216,216,216,193,214, 86,141,128, -128, 0,164,166,166, 98,224,192,129,134, 59,119,238,108, 77, 75, 75, 59,100,105, 91,221,220,220, 84, 69, 69, 69, 51,252,253,253, -149, 0,160, 84, 42,251, 58, 59, 59,127,158,157,157,109,209, 48,222,234,198,138, 16, 2,150,101,171, 12,150,132, 97,224,225,238, - 90,181, 93,145,127, 86,231,135,128, 16, 82,152,146,163, 83, 0,128,175,175, 47,190, 91,123,128, 25, 58,116, 40,102,204,152, 1, -163,209,136, 85,171, 86, 1, 0, 38, 76,152, 0,131,193,128,189,123,247, 2, 0, 36, 18, 73,189,125,206, 87,174, 92, 65,116,116, - 52,140, 70, 35, 10, 10, 10,240,203, 47,191, 32,234,212, 41,236,220,255, 43, 30,220,187,139,208, 64, 63,188,252,242, 75,144, 74, -165,216,188,121, 51,122,244,232, 97,201, 75,208,232,200,100,178, 23,214,175, 95,239,181,105,211,166,252,159,126,250,169,160,115, -231,206,214, 43, 86,172,112,253,238,187,239,250,232,245,122,188,253,246,219,153, 23, 47, 94, 44, 25, 49, 98,132,122,221,186,117, - 94, 45, 90,180,120, 6,181,228,101, 85,116,251,140, 7, 48, 41,172,147, 90,146, 95, 84, 6,129,211,227,222,131,251, 40, 40,214, - 67,224, 13,120,168, 73, 69,177,150, 71, 78,110, 17, 66,219, 15,248,246,228,201,147, 31, 16, 66,230, 81, 74, 15,154,106, 39,207, -243,184,112,225, 2,206,158, 61,139, 83,167, 78, 33, 41, 41,169,234, 57, 59, 59, 59, 68, 70, 70,162, 79,159, 62, 22,157,123, 93, -230,170, 40,171,220, 92,229, 63,204,125, 98,204, 21, 0, 80, 74, 23,120,120,120, 44,240,240,240, 80, 30, 59,118, 76,221,164, 73, - 19,112, 28,167,175, 25,185, 10, 11, 11,251,223,250,245,235, 61,154, 53,107,246, 6, 0,147, 6,171, 46,234,138,108,153,129,111, -181,200,151, 47, 0, 48, 12, 94, 93,186,122,154,179,173,252, 97, 42,238,124, 85, 49, 23, 32, 11,148, 22, 2, 39,183, 67,210,253, -195,251,111,140,156,227, 48,119,211,194, 87, 1,172,170, 75, 56, 33, 49, 25,171, 87,127,135,153,111,191,136, 31,190, 95, 10, 65, -144, 64,103,100,225,235,223, 5, 58,131, 0,194, 72,208,182,125, 7,252,118,242, 52,164, 12,176,103,211,234, 6,158,253, 63, 19, - 74,105, 46, 33,100,213,254,253,251,223,156, 49, 99, 6, 4, 65,144,127,180,122,117, 89, 86, 86,214, 34, 88, 48,127, 85, 45, 58, -163, 86,175, 94, 29, 63,247,187,172,125, 51, 39,130,125,240, 51,201,141,190, 13,199, 49,115, 40, 34,150, 16, 60, 21,136, 92, 85, -237,151,248, 83, 53,238,255,213, 72, 0, 84,229,166,212,231, 24,159, 10,104,246,137,218,209,225,165,110, 29, 91, 57,189,243,198, -171,210,196,116, 45,142,118,120,167,224,192,242, 15,109, 30, 10,214,111, 39,209, 66,139,162, 46,187, 78,156,168,122,252,197,142, - 29,181, 62,151, 54,102,140, 89, 90,130, 32,212, 25,181,178, 52,114, 5, 0, 42,149,202,190,127,255,254,120,250,233,167, 49,122, -244,232,170,156,171,118,237,218, 97,231,206,157, 8, 15, 15,199,213,171, 87,225,225,225,129,160,160, 32, 4, 5, 5,225,240, 97, -203, 82, 85, 42,187,235, 66, 66, 66, 42, 71, 17,134,106, 52, 26,139, 70, 15, 86, 71,167,211, 33, 39, 39, 7,142,142,142,144,203, -229,232,220,185, 19,222,124,171, 51,156, 61, 54, 34,164, 85, 32, 74, 74, 74,170,134,174,155, 66, 42,149, 6,180,104,209, 2, 89, - 89, 89,200,202,202,130,139,139, 11, 60, 61, 61,225,230,230,134,229,203,151,211, 21, 43, 86, 68,241, 60,191, 53, 61, 61,221, 98, - 71,232,237,237,221,209,217,217,249,205,204,204, 76,101,181, 31, 77,101,219,182,109,215,122,122,122,174, 74, 77, 77, 61,107,174, - 22, 33, 4, 6,131, 1,132, 16, 28,186,231,137, 18, 61, 65,161,230,255,216,187,238,176, 40,206,245,123,190,153,109,148,165,151, -165, 44, 32,168,160, 40, 24,187, 81,136, 93, 52,154,168,216, 80,115, 19, 75,162, 73,140, 53,118,141,137, 49,106, 98, 55,106,108, - 55,137, 92,187, 98,140,196, 94,176,199, 46, 32, 32,138,133, 14,178,244,133,173, 51,243,253,254,160, 4,145,178,152,114,111,242, -243, 60,207, 62,176, 51,179,103,190, 25,150,153, 51,239,247,190,231,189,133, 41,111,123, 61, 39,184,196, 98,177, 41,137,186, 37, - 97, 97, 97,206, 30, 30, 74,164, 38,221,195,129, 3, 20,171, 87,175,198,133, 11,101,255,231,137,229, 15, 4, 21,239,187,119,239, - 14,111,111,239, 6,153, 91, 10,130,128,232,232,104,236, 62,124, 30,174, 94,254, 72,121,144,128,219, 71,143,160,145,147, 61, 90, -182,105, 7,163,209,248,187, 44, 52,254, 8, 24, 12,134,173,190,190,190,208,235,245,103, 0,108,139,142,142, 30,156,153,153,185, -230,231,159,127,118, 27, 54,108, 88,198,145, 35, 71,166, 1, 56, 20, 29, 29, 61,230,171,175,190,234,105, 44,155, 62,120, 1, 44, -203,254, 48,125,250,244,110,195,134, 13, 35, 18,198,168, 63,121, 98,135,136,227,140,100,230,188,237,124,212,165,243, 12,199, 25, -201,144,176,233,194,209,179, 49,204,132,201, 43,248,214,157,250, 35, 54, 54,214,101,192,128, 1, 75, 0,212, 41,176, 88,150, 5, -207,243, 16,139,197,149, 2,186,166,109, 26, 18,189, 26, 7, 52,182,246,146,255,186,116, 99, 47, 57, 17,169,255,241,226, 10, 0, - 84, 42,213, 22, 0, 91,236,237,237,179, 45, 45, 45, 81, 92, 92,252,194,247,143, 16, 98,214,172, 89, 51, 51,169, 84,138, 62,125, -250,216,187,186,186, 38, 50, 12,179, 46, 61, 61,189,193, 74,163,166,200,214,203,218, 52,216, 57, 97, 64,199,224, 54, 86,247,109, - 22, 91,153,137,180,119, 26, 37,154, 89, 19, 0,133, 58,197,227, 43,201, 35,138,200, 51, 89,235,118,221,219,194, 90,100, 57, 0, -181, 8, 44,134,101,111, 23,230, 23,244, 43, 42,214,227,210,229, 88,132,141,104, 10,157,129, 64, 16, 24,168, 75,116, 0, 43, 6, - 3, 96,228,168,119, 65,137, 8,121,217, 25, 96, 89, 54,166,161,199,253, 55,192,220,137, 19, 39,246,155, 55,111,158, 79,185,127, -149, 87,185,127,213, 44, 66, 72, 32,165,180,244, 37,121, 26, 29,217,179,112,198,225,139,155, 11,251,119,214, 60,104, 91, 86, 19, -101,223,182, 25,242,196, 98, 60, 20,177,200,165,244,185,138, 82, 84, 20,124, 85, 45,252,250, 59,195,164, 28, 44,223,198,202,190, - 93,219,183,155, 60,127,222,124,171, 7,215, 47, 96,254,146,111,133,166,237, 66, 10, 87, 29, 58, 94, 92,104,221,168, 71,105, 70, -194, 29, 19,247, 71, 1, 32,164,123, 40, 90,181,232,240,194,202,160,238,101, 30,144,151,206,221, 68,118, 78,186, 73,132, 21,226, -169,182,156, 43, 83, 74,243,171, 67,163,209, 20,196,198,198, 58,167,165,165, 61,151,208,238,237,237, 13, 66, 8,174, 93,187,134, - 95,127,253, 21, 97, 97, 97, 16,137, 68, 16,139,197, 56,127,254,124,113, 67,246, 81, 37,154, 20, 77, 41,237, 74, 8, 9, 81, 42, -149, 53, 86, 15,154,194,165,209,104, 80, 88, 88,136, 19, 39, 78,160,105,211,166, 88,186,116, 41,220, 92, 21,152, 63,127, 6, 4, - 65, 64, 81, 81, 81,165, 63, 80,125,224,121,158, 86, 68,135, 4, 65, 64, 78, 78, 14,124,124,124,176,113,227, 70,172, 89,179,230, -219,140,140,140, 6, 87,185,216,217,217, 89,155,153,153, 77, 24, 48, 96, 64,208,160, 65,131, 16, 18, 18,242,220,250,157, 59,119, -202, 15, 29, 58, 52,219,195,195,163,171, 32, 8,223,165,167,167,215, 89, 22, 92,129,239,191, 47,179, 79,178,232,180, 8,115,134, - 53,194, 59, 31,237,192,170, 85, 17,144,201,100,149,122,237,222, 71, 0, 0, 32, 0, 73, 68, 65, 84,219,176, 44,139,197,139, 23, -215, 41, 94, 4, 74,125, 37,170, 43, 25, 51,102,175,116, 94,182,236, 52, 78,159,126, 6,134, 97,224,234,234, 10,134, 97,240,228, -201, 19, 48, 12, 3, 47, 47, 47, 48, 12,131,244,244,244,138,156,191,124,212, 80,197, 88, 19, 24,134,129, 86,171, 69,106,202, 83, -164, 37, 37, 66, 94,148, 5, 39,107, 11,228,223,139, 70,171,113,239,195,104,172, 51, 39,247, 47, 1,165,244, 20,128, 83, 85, 22, - 29, 32,132, 24, 9, 33,163, 0,236,165,148, 70,148, 47,223,142, 58,140, 65, 59,117,234,212,122,222,188,121,226, 10,219, 12, 55, -207,175, 56,131,193, 32, 0, 64,179, 86,111, 60,167,242, 31, 62,124,136, 85,171, 86,161,164,164, 4,146, 6,100,166,247,234,213, -171, 50, 39, 82, 34,145,192,209,209, 17, 6,131, 1, 28,199, 53,120,106,208,193, 75,249,237,181, 91,231,249,187, 73,155, 53, 49, -247,143,153,167, 61, 17,160, 86, 57,254, 99,197, 85, 85, 80, 74, 23, 41,149,202, 69,130, 32, 80, 74,233,194,138,229,132, 16,153, -167,167,231,197,147, 39, 79, 58,112, 28,135,245,235,215,219,102,101,101,217,190,241,198, 27,115, 0,212, 42,176,106,177,105,168, - 13, 47,101,211,192,243,240,179,182,178, 69, 62,210,160,115, 52,182, 46,112,224,242, 78,101,190,127,199, 45,185, 77, 11, 75,222, -232,195, 20,233,225,110, 97, 11,129,210, 90,141,208,116, 70,227,177, 59,183,110,247,241,244,104,202,254, 28,121, 1, 3, 7, 15, -131, 78,199, 64,107, 36, 32,172, 24,132,149, 32,176, 85, 27, 52,111,217, 10, 20,192,205,235, 87, 56,189,209,120,170, 54,190,191, - 35,220,130, 38,135,185, 5,125,178, 14, 84,160, 53,248, 96,249, 12, 30, 60,120, 25,128,201,245,241, 40, 94,159, 28,230,210,185, -140,167,170, 15,214,244, 79, 38,226,222,117,177,205,133, 91, 95, 75, 66, 58,225,151,156,211, 4, 22,102,191, 85, 17,138,153,151, -179,215,248,187,160, 94,129,229,233,233,105,235, 44,183,248,254,227,113, 99,173,146,239, 94, 69, 90,244, 85, 92,190,148,152,191, -235,224,225,244,162,194,156,113, 13, 16, 87,149,211,121,142,174,141,224, 83,131,192, 50,183,114, 2, 0,248,180,232, 0, 81, 74, -195,108,128,106,138, 94,189,140,184,170, 64,133,168,170,158,208, 62, 97,194, 4,108,219,182, 13, 93,186,116,129,175,175,111,229, -147,114, 67,163,100,213,163, 73, 47, 83, 61, 88, 21,197,197,197,240,242,242,194,214,173, 91, 17, 19, 19, 3, 43, 43, 43,132,133, -133,161,184,184,184, 82, 88,153,154,228,206,243,252,211,147, 39, 79, 6, 14, 31, 62,156,138, 68, 34, 82, 80, 80, 0, 27, 27, 27, -108,220,184,177, 52, 51, 51,243, 92, 67,199,230,238,238,222,223,222,222,126,252,136, 17, 35,216,102,205,154, 33, 59, 59, 27,214, -214, 86,122, 66,136, 20, 0,108,108,108,244,150,150,150,248,224,131, 15, 16, 24, 24,216, 97,246,236,217,237, 93, 92, 92,194,179, -178,178, 14,214,198, 89, 49, 45,184,103, 79,217,236,212,184,117, 9,208,235,203, 4,202,166, 77,155, 80,158,203, 86,137,164,164, - 36,192,132,202, 20,185, 92, 14, 95, 95,223, 26,255,246,193,193,193,184,121,243,102,217, 20,164, 72, 4,103,103,103, 92,190,124, -217,164,178, 76, 90,110,224, 24, 27, 27, 11,127,111, 71,196,156, 62, 9, 71, 11, 49, 94,115,115,129, 50,184, 43, 18, 19, 19,255, -171,209, 43, 66,200, 64, 0, 3, 0, 28,165,148, 30, 34,132, 12, 5, 16, 82,241, 30, 13, 52, 22,229, 56,142, 50, 12, 67, 82, 83, - 83, 13, 22, 22, 22,196,222,222, 94, 36,147,201,160,211,233, 42,133,214,195,135, 15, 17, 25, 25,137,180,180, 52,216,219,219, 51, - 54, 54, 54, 48, 24, 12, 38, 85,148,242, 60,255,130, 61, 67,249,126, 27, 44,174,222, 3, 2,182,125,181,188,145,140, 97,109,252, - 29,251,226,209,189,135, 26,181,170,192,252,255,131,184, 2,128,252,252,252, 45, 0,182, 84,188,119,114,114, 26,195,178,236,124, - 27, 27, 27,155,243,231,207,219, 58, 57, 57,145, 29, 59,118, 24, 23, 46, 92, 88,192,178,108, 62, 33,100, 77, 93,124,181,216, 52, -188, 52,106,178, 99,160, 20,113,170,194, 36, 47,177,157,155,112, 87, 75,175, 76, 77,157,211, 60, 95,220,212,137,180, 12,192,224, -103,241,151,198,112, 73,157,179, 51,179, 24, 10, 33,174, 54, 94, 65, 16,182,207,153,183,120,102, 98,194,109, 79, 51,107, 51, 76, -152, 56, 15,191, 28, 63, 7,194,136,113,241,202, 53,232, 13, 60, 84,121,133, 24, 49,114, 52,148,174,142,136,251,245, 68, 14, 39, - 8, 27,127,239,241,252, 47,129, 82, 97, 67,159,129, 99,236,100,230,101,105,164,130,192,227, 63,255,158, 1,134, 89,135,207, 62, -251, 12, 1, 1, 1, 31,145,178,206, 13,117, 62,240, 18, 34,108, 8,236, 58,210, 78, 34, 43,227,161, 2,143,173,251,231,148,251, - 96, 77,195,198, 45, 7, 3, 91,122, 63,254,188, 46, 31,172,127, 34,106, 21, 88,141, 26, 53,146, 89,138,241,129,189,185,100,214, -199,163, 6, 57, 61, 75,186,135,180,248,219, 0, 0,157, 78, 99,204, 76, 60,255, 90,125,228,229,198,108, 85,163, 29,180,174, 41, - 42,173,182,254, 39,248,234,156, 21, 55,218,234,209,171,134,136,171,154, 56, 1,188,112,131,101, 89, 22, 30, 30, 30, 88,182,108, - 89,189, 62, 88, 53, 28,123,197,242, 16, 0,173, 0, 84, 77,114, 15, 49,165,114,176, 54, 78, 39, 39, 39,228,230,230, 2, 0,186, -117,235,134,110,221,126,171, 83, 48, 24, 12,149, 81, 43, 43, 43,171, 23, 34, 88, 53,113,114, 28,183,252,208,161, 67,195,174, 94, -189, 58, 96,198,140, 25,162, 30, 61,122, 0, 40,243, 28,163, 38,244, 94,171,129,115,212,241,227,199, 89, 65, 16,176,117,235, 86, -220,186,117,139, 90, 90,202,167,202,229, 86, 59,172,173,173,249,130,130,130, 81,239,191,255,254,160,207, 63,255,156, 4, 7, 7, -227,234,213,171,196,199,199, 39, 20,192,193, 58, 56, 1, 0,215,174, 93, 3,195, 48,224,242, 82,240,209,156,189,176, 52, 23, 33, - 33, 33, 1,121,121,121, 47,152,143,154,114, 62, 5, 65,168,188,113, 87,188,130,131,131, 43,167, 27, 59,118,236, 8,150,101,113, -231,206,157, 26,167, 91,171,113, 82, 7, 7,135,202,239,135, 68, 34,193,185,115,231,240,229,151, 95,194,211,222, 22,249,241, 49, -112,233,214, 3,189,199,190,143,176,176, 48,176, 44, 11,123,123,123,160,154, 79, 80,109,199,254,123, 80,149,147, 16,242,150,191, -191,255,220,184,184, 56,101, 96, 96, 96, 11, 66, 72,183,128,128,128,246, 49, 49, 49, 21,239,197,148,210,154,253, 48,106,225,188, -113,227,198,129, 13, 27, 54, 76,124,239,189,247, 36,130, 32,240,201,201,201, 70, 0,196,197,197,133,189,113,227,134,240,243,207, - 63, 67,163,209, 64,169, 84, 50,238,238,238,228,212,169, 83, 66,124,124,252, 53, 74,233, 60, 83,143,189,162, 82,176, 34,153, 93, -163,209,152, 36,174,170,115, 54,106,238,183,180,231, 27,205, 60, 84, 25,119,144,153,158, 4,109,158,157,241,220,137,203, 13, 18, - 87,127,246,223,232, 47,230, 92,252,224,193, 3,119,157, 78, 7,169, 84,138, 77,155, 54, 25,150, 45, 91, 22,167, 82,169,130, 40, -165,154,234, 27,155, 58,206,134, 24,144,214,199, 89,152,139, 95,126, 58,124,163,189,124,240,118,124,148,145, 83,153,184, 72, 9, -177,143, 80,180, 8,178,232, 16,152,206, 28, 93,196, 20,243,165,149, 57,162,213, 57, 41,165,122, 66,200,176,193,161, 35,207,236, -217,179, 91,190,112,209, 34, 92,190, 22,131,220, 2, 53, 4,202, 66, 32, 4,243,231, 47,132,139,163, 61,138, 50, 30,148,234, 12, -134,193,180, 90,203,156,191,251,223,157, 16,102,210,169,159,119,172, 99, 8,132,146,236,251, 50,182, 56,201,226,157,176,193,162, - 97,195,134, 33, 34, 34, 2,177,177,177,155,107, 19, 87, 85, 57, 41,101, 38,197,156,223,187,142, 0,130, 38,231,190, 76,164,126, -108,241,238,168,193,162,176,176, 48, 28,138,188,130, 61, 71, 30,127,183,251,103,122,228,143, 60,166,191, 3,106, 21, 88, 86, 34, -196, 6,181,104,236, 30,220,166,165,153,136,215, 32, 45, 62, 9,121, 37, 90,156,186,151, 92,192, 80,230,135,151,221, 97, 89,238, -132, 4, 41, 41, 15, 94, 88, 87, 80, 80,150,245, 86, 92,220,176,182, 79, 12,195, 60, 23,189,250, 61,145,171,170,227, 84, 40, 20, -149, 55,199, 10, 33, 87,113,195,174,200,241,121, 9,139,134, 57, 41, 41, 41,214, 41, 41, 41,160,148,226,218,181,107,214, 29, 59, -118,156,131,223, 17,189,154, 49, 99,198,115,237, 65,170,254,172,105, 89,125,200,201,201, 41, 1,240,189, 66,161,248,101,230,204, -153,255,234,212,169, 83,240,103,159,125, 70, 40,165, 47,123, 98, 57, 65, 16, 16, 21, 21,133,136,136, 8, 94,175,215,207,205,204, -204,188, 95,101,253, 15, 30, 30, 30, 23, 7, 13, 26,180, 42, 49, 49,145,141,139,139,131, 41, 66, 78,163,209,192,215,215, 23, 28, -199,225,235,143, 60, 80, 92, 28, 8,142,227,192,243, 60, 44, 45, 45,159,235, 67,105,202,223,137, 97,152,231, 34, 35, 21,175,107, -215,174,129,101, 89, 4, 5, 5,225,246,237,219,149, 17,172,250, 34, 78, 6,131, 33, 69,161, 80, 40, 22, 47, 94, 92, 57,174,156, -156, 28,156, 60,121, 18,157, 94,239,140, 22, 31, 76, 64, 70, 70, 6,214,172, 89, 3, 55, 55, 55, 44, 93,186, 20,121,121,121,224, - 56,238,175, 14,155,247,141,139,139, 83,142, 26, 53,234, 89, 76, 76,140, 50, 50, 50,210,118,192,128, 1,150, 35, 71,142,124, 22, - 19, 19,163, 36,132,188, 1,160, 94,129, 85, 21, 60,207,207, 37,132, 28, 95,186,116,233,156,201,147, 39,119,124,239,189,247,196, - 98,177, 88, 72, 79, 79,231,118,239,222, 77,124,125,125, 25,137, 68, 66, 78,156, 56, 33, 92,191,126,253, 87,142,227,190,166,148, - 94,108,200, 62,170,138,171,134,230, 92, 85, 96,170,179,236, 93, 43, 38, 39,104,195,166,101, 76, 51,111,165, 33,124,247,201,212, -139, 87, 31, 60, 98,117,220,212,239,129, 90, 75,252,255,201, 96, 89,118,159,191,191,255,152, 73,147, 38,153,135,132,132,200, 62, -255,252,243,194,226,226,226, 26,197, 85, 77,104,136, 77, 3, 26,104, 64, 90, 5,255,158,251,105,228,212,233,129, 99, 26,143,119, -105,132,211, 37,207,144, 47, 98, 25,107, 91, 6,109,188, 88, 20,171, 30, 58, 29, 57,243,227, 19,212,227,171, 70, 41,189, 65, 8, -233,213, 50,176,245,193,175,151,126,237,188, 96,246, 44,241,193,200, 99,160,156, 1,215,206,159,135, 92,194,211,248, 91,167,179, -117, 6,253, 32,250, 79,115,113, 7,144,113,105,253, 30, 66,200, 97,123,123,251,187, 99,223,123,207,215,223,127, 36, 44, 44, 44, -112,224,192, 1,252,103,253,122,126, 45, 48,124, 11, 33,183, 39, 80, 90,231, 61, 63,251,106, 37,207,157,247,199,142,245,107,211, -102, 60, 44, 44, 44,176,127,255,126,236, 88,187,214,100,158,127, 26,106,159, 34,100, 72,241,175, 15,146,213,215, 30, 36,171, 33, - 80, 42, 80,170, 99, 24,164,150, 24, 12, 75, 19, 31,165,189,148, 24,168,152, 34, 92,242,213,164,151, 30,112, 77,156, 21,162,231, -101,202,178,107, 2,207,243,105, 77,155, 54,125,110, 31,245,253,110, 52, 26,211, 76,164, 95,238,233,249, 66, 95,210, 6,231, 93, - 85,160, 98,218,207, 84,113,101,170, 15, 22, 0,100,103,103,231, 0, 88,169, 84, 42, 15,247,235,215, 47,140, 16,146,245, 50, 99, - 36,132,236,233,222,189,123, 24,165,148,101, 24,102,103, 53,113, 5, 0, 72, 77, 77,125,172, 84, 42,183,122,123,123, 87, 54,128, -174,139, 83, 16,132,199,129,129,129,149,198,159,213, 5, 84, 77,239, 5, 65,168,247,111, 84, 80, 80,128, 14, 29, 58,188,208,115, -146, 82,138,228,228,228,138, 8, 19,128,178,115, 95,151,112, 83,171,213, 19, 62,249,228,147, 45, 98,177,216, 19, 0,169, 16,183, - 60,207,179,223,126,251,173, 25,207,243, 44, 0,194, 48, 12, 39, 22,139,181, 17, 17, 17, 28,199,113, 41, 58,157,110, 66,125,227, -252,131,177,151, 16, 34, 6,144, 31, 23, 23,247, 70,121,228, 42, 45, 54, 54,246,244,158, 61,123, 20, 64,253,246, 9, 53,161, 92, - 48, 93, 36,132, 4,111,218,180,105,238,132, 9, 19, 58,132,133,133,137,186,117,235,134, 95,126,249,133,143,138,138,186,166,209, -104,150, 55, 84, 88, 17, 66,212, 94, 94, 94, 0, 80,105,244, 91, 27, 56,142,171,243,105,205,193, 75,182, 97,244,135,110,102, 91, -151,159, 84,171, 50,244, 87,140,106,253,188, 31,129,216,134,140,231,159,134,172,172,172, 79, 9, 33, 11,215,172, 89,147,241,218, -107,175,201, 36, 18,137,222, 84,113, 5, 52,204,166,129, 82,106,186,243,241,243,159,227, 8, 33,111,174,238, 61,244,112,215,249, -159,120,247,238, 30,100,225,209,200,217, 61, 62, 41, 27, 15,175,254, 82,114,247,200, 87, 79,169, 46,127, 32,165,180,222,254,163, -148,210,235,132,144,166, 51,102,205,168,104,246,220,170,231,169,159,232,255,163,102,207, 75, 86,172, 88,225,235,239,239,143, 3, - 7, 14,224,212,206,157, 24,161, 82,225, 28,203,178,140, 68,226,112,196, 96, 88, 9,192, 20, 97,180,100,213,170, 85,126, 1, 1, - 1,216,183,111, 31, 78,236,216,129,225, 47,199, 83, 27,218, 3,112, 42,255, 93, 5,224, 62,128,182, 0,204, 1,232, 0,168, 1, - 56, 86,217, 62,183,124, 93,197,250, 11, 0,254,210, 68,215, 90,175, 78, 49, 15,158,180,253,163,119,166,209,104,242,124,125,125, - 77,179, 82, 47,135,209,104,172,115,142,150,227,184,180,198,141, 27, 3, 48,221, 77,189, 62, 49,148,155,155,219,206,212,241, 53, - 20,191, 55,215,170, 42,120, 65,120,234,234,234, 42,148,243,214,180,175, 26,151, 81,224, 73, 67,246,147,150,150,246, 8,192,151, - 47, 57, 76,164,165,165, 29,131, 9,205,156, 77,221, 14, 0,242,242,242,254,240, 38,187,132,210,244,207, 63,255,252,183,247, 38, - 8,107, 80, 90,107, 53, 6,165, 52, 6, 64,199, 63,116,144,127, 2, 40,165, 23, 80, 94, 22, 77, 8, 25, 76, 8,121, 19,192, 9, - 74,233,129, 63,136,191, 82,104,109,221,186,117, 42,165, 20, 69, 69, 69,107, 27, 42,172, 42,144,157,157,125,182,254,173, 76, 67, - 94,182,254,236,238,205,105, 61, 52, 5,134,169,219,212,122,147,250, 33,254,127, 0,165, 84,235,236,236,252,195, 59,239,188,211, - 9,192,143,127, 4,231,239,176,105,168, 17,148,210, 39,132,144,215,206,205,248,114,236, 57, 91,171,254,224, 69,205,160,103,142, - 64,159,251, 11,128,239, 77,137,130, 87,225,210, 2, 88, 85,254,250,127,131,114,255,170,169, 99,198,140,193,194,133, 11,113, 98, -229, 74,195,135,132, 20,138, 1,122,188,236, 1,147, 33,192,108, 83,121,222,125,247, 93, 44, 92,184, 16, 71,191,254,250,165,120, -234,129, 19, 33, 36, 18, 0,230,204,153, 51,111,217,178,101,118,115,231,206,109,181,124,249,242,165,229,239,239, 85,172, 7, 0, - 74,233,128,185,115,231,182,172,178,190, 24, 64,189,198,200,127, 40,170, 62,161,255,209, 47, 0,189, 94,113,190,226,124,197,249, -138,243, 21,231, 43,206, 87,156,175, 56,127,231,171,127,153,100,169,253,103,109,191, 87, 89,246, 87,142, 23,191, 63, 89,233, 21, - 94,225, 21, 94,225, 21, 94,225, 21, 94,225,191,128,170, 81,171,151, 89,255,103,130, 0,232, 85,211, 10,218,128, 42, 6, 66, 72, -141, 28,117,161, 62,254, 87,156,175, 56, 95,113,190,226,124,197,249,138,243, 21,231, 63,143,179, 62,238, 90, 62,223,159, 16, 18, - 73, 41, 29, 80,219,207,114,206, 23,126,175,178,172,193,157, 71,126, 23,254,204,240, 24,254, 38, 97,201, 87,156,175, 56, 95,113, -190,226,124,197,249,138,243, 21,231,127,151,179,158, 87,127,148, 85,154,210, 57,115,230,204,165,127,131, 41,194, 58, 74,112, 14, -176,233,233,176,150, 74, 45, 36, 0,160,215,151, 26,220,221, 81, 4, 12,253,175, 53,162,125,133,191, 39, 8, 33, 10, 0,160, 38, - 52,133,110,200,182,175,240, 10,175,240, 10,175,240,255, 6, 57,180, 60, 50, 5, 32, 7, 0, 41,127,175, 47,255,153, 3,148, 37, -183, 87,251,253,185,245,127, 37,106, 17, 88, 7, 88,149,202,194, 81, 36,202,247,227,121,109,115, 0, 16,137,152, 4,149,202, 46, -209,209,241,128,234,101, 68,150,147, 66,113, 75,204,178,238,166,108,107,228,249,116, 85,118,246,115, 86,239, 20,248,219, 11, 59, - 83,197,195,239, 17, 25,127,133, 64,113,114,114, 82, 40, 20,138,183,173,173,173, 95, 47, 40, 40,184,158,147,147,115, 40, 39, 39, -167,198,253, 17, 66,150, 17,130, 89,229,191,127, 67, 41,157, 91, 27,111, 67,182,173,225,179,190, 22, 22, 22, 31, 17, 66, 2, 0, -128, 82, 26, 91, 90, 90,186,137, 82,250,162,225,218, 63, 28,132, 16,115, 0,131, 68, 34,209,187,142,142,142, 29,178,178,178, 62, -167,148,214,233,190, 93, 7,151, 8,192, 12, 91, 91,219, 48, 91, 91, 91,159,188,188,188, 71, 69, 69, 69,251, 0,172,162,148,214, - 91,242,252,197, 20,183,215,187,133,116, 91, 16,117, 34,106,201,162,117, 25, 87, 95, 88,255,169,155, 67,159,222, 93, 22, 70, 29, -185,178,120,238, 6,211,218, 35, 85, 25, 27, 3, 84,230,145, 10, 40,123, 74,253,239, 54,115,172, 3,132,144, 78, 0,230,161,108, -204,171, 40,165, 13,238,138,240, 87,130, 16, 98,169, 80, 40,190, 6,240,150, 72, 36,138, 75, 79, 79,255,128, 82,106,170, 29, 77, -125,220, 98, 0,246, 0,242, 76,249, 30, 85,249,156, 8,101,229,250, 1, 40,179,211,184, 65, 77,176, 98,248,167, 65, 38,147,173, -117,113,113, 25,175,209,104, 74, 9, 33,180,170, 95, 35,199,113,105, 57, 57, 57,127, 90, 37,252,127, 17,127,109, 5,224, 31,128, - 26, 5, 86,122, 58,172, 69,162,124,191,103, 89, 49, 35, 50, 50,163,135, 3,128,155,107,171,125,206, 46,129,123,211,211,165,134, -246,189, 67,229, 98, 11,209, 38,150, 21,183,214,234,117,142, 98,145, 88,101,224,140,119, 24, 61,253, 40, 51, 33,162, 70,147, 68, - 49,203,186, 63, 77, 60,231,204, 25,242, 32, 54,115,131,216,252, 5, 47,168, 74,184,185,185,189,212,193,216,219, 55,177, 50,200, -204,166,138,197,108,111,129,114, 1, 84, 0, 24, 34,142,229,120,227, 25,137, 78,183, 58, 47, 47,169, 65,253, 2,171,162,185, 35, -113,161, 64, 24, 8,122,131,226, 20, 1,246, 36,168,168,201,190, 80,166,138,135,223, 41, 50,170,126,118, 13,165,244, 83, 83, 63, -107, 42,148, 74,165,221,144, 33, 67,214,126,249,229,151,230,114,185,156,164,164,164,132,204,158, 61,251, 13,165, 82, 57, 61, 45, - 45, 45,163,218,120, 20,132, 96,150, 32,148, 25,148, 50, 12,153,173, 80, 40, 44, 88,150,125,161,121, 40,207,243, 22,132, 96,146, - 32,148, 53, 28,103, 24, 50,139, 16,178,206, 20,161,104,110,110, 62,178, 67,199,206,211,191, 94,177, 74,174,112,118,182,228,120, -193,240,228,233, 83,203, 5,115, 63,237,104,110,110,190, 78,163,209,152,212, 64,182,218,216, 9,203,178, 35,100, 50,217, 0, 0, -254,229,139,227,117, 58, 93, 36,207,243,123, 77,189,145,187,184,184, 92, 96, 89,182, 81, 67,246,205,243,124, 74, 86, 86, 86, 80, -253, 91,190, 8, 66,200, 48, 79, 79,207,239,187,118,237,106,209,161, 67, 7, 72,165, 82, 44, 92,184,112, 6,128, 58, 5, 86,133, -144,178,176,176, 24, 97,105,105,217, 88,173, 86, 39,105, 52,154,131, 82,169,180,215,186,117,235, 60,186,116,233, 98,149,157,157, - 77, 88,150, 85, 68, 70, 70,254,107,253,250,245, 33,132,144,158,245,221,220, 10,147,232, 2,217, 91,254,193,133, 73,231, 22, 0, -232, 87,125, 61,167, 53,123,151,178, 30, 3, 52,244,118, 42, 26, 80, 34, 79, 8, 97,196, 98,241, 58, 23, 23,151, 49, 90,173, 86, - 11,128, 18, 66,168, 66,161,168, 88, 15, 0,208,235,245,249,249,249,249,205,234,226,106,222,188,249, 77,150,101,149,181,173,231, -121, 62, 45, 33, 33,225,143,184, 97,205,202,202,202,122, 83, 44, 22, 19, 15, 15, 15, 22,128,201, 2,139, 16,226, 7, 96, 62,202, -110, 50,155, 40,165, 60, 33,164, 59, 80,246,255, 14,224,155, 10,193,198,178,236,166,102,205,154,189, 29, 31, 31,255, 29,165,116, -201,203, 14,214,197,197,101,203,198,141, 27,135, 15, 28, 56,144,205,201,201,113,127,237,181,215,118, 1, 8,126, 89,190,242,227, -144, 2,152,235,226,226,242,113, 80, 80,144,195,237,219,183,243, 8, 33, 27, 1, 44,167,117,120, 77, 17, 66,148, 0,122,217,218, -218,246,156, 63,127,190,124,192,128, 1,216,186,117,235,155,219,182,109, 83, 19, 66,206, 0, 56,253, 71,137,191,255,117,176, 44, -187,110,196,136, 17, 99,118,237,218,101,241,244,233, 83, 11,119,119,247, 74,211,107, 66,200, 75,223, 63, 95,225,143, 71,141, 2, - 75, 42,181,144,240,188,182,121, 70,102,244,240, 55,186,126,107, 3, 0, 23,206,127, 50,220,217,165,101,172, 84,106,145, 40,179, - 54,139, 8,125,171, 87,235,161, 3,186, 18,165,171, 51,210, 50,159, 41,254,189,231, 68,223,200, 19,231, 34, 80,102,252, 85, 35, - 56, 67, 30,204, 13,167,113,255,210,122, 56,118,203,192,134,163,105,184,122,247, 9, 74, 11, 85,104,228, 98,142, 21, 83,251,192, -197,206,226,165, 14, 68,174,240,235,206,152, 89,236, 29, 53,242, 29,155,183, 7,249,139,189, 92, 92, 64,169, 12,137, 73,234,206, -199, 78,158,107,127,112,255,238,143,228, 10,191, 17,234,236, 68,147, 47,106,109,221,136,121,137, 1,131, 68, 44,249, 87,112,199, -150, 61, 71,190, 25,204,180,240,111,138,184,123,241,125, 14,159,189,182,162,133,130, 57,195,241, 52,220, 82,130,159,110,101,212, -110,196, 87,147,208,232,217,179,103, 27,115,115,115,125,213,237, 52, 26,141,148, 16,244,124, 25,145, 81,177, 15,189, 94,199,136, -197, 82, 48, 12,153,222,170, 85,171, 70, 42,149,234, 2,195, 48, 59,211,210,210, 76,234,241, 86,129,201,132, 72,243, 69,162,182, -140, 76,230,202,235,245, 14, 0, 64,164,210,124,165,157, 93,224,252,121,243,228, 44,203, 10,185,185,185, 40, 45, 45, 37,239,191, -255,190, 89, 82, 82, 82, 40,128,245,245,140, 17,219,182,109,243,115,117,117,213, 87, 95,151,153,153, 41, 29, 56,240,237,134, 12, -177,130,211,175,211,235, 93,166,157, 56,113,220,191, 40, 47, 95,187,109,205,214,219, 70, 51,115,173,119,115, 63,201,166,173, 59, -172, 63, 24, 51,250, 19, 66,200, 29, 74,169,201,253,228, 8, 33,158,230,230,230, 17, 43, 87,174, 12,232,222,189,187,216,217,217, - 25,217,217,217,136,143,143, 15, 56,123,246,236,160, 29, 59,118,204, 32,132,132, 82, 74, 77,113, 92,247, 61, 19,254,189,179,165, -189, 3,120,163, 17,110,173,218, 84,228, 47,224,225,217,147,224, 12, 6, 8, 70, 35,252, 7, 12, 2, 80,214,170,167, 69,139, 22, - 47,229,150, 75, 8,113,107,217,178,229,127,150, 46, 93, 42,209,233,116,184,118,237, 26,206,157, 59, 39,100,102,102,214,105,100, - 75, 8, 17, 17, 66, 78, 46, 90,180, 72, 25, 20, 20,100,165, 82,169,192,243,188,227, 79, 63,253,244, 81,155, 54,109,172, 61, 60, - 60,164,225,225,225, 80,171,213,224, 56,206,190,113,227,198,246, 35, 71,142,212,135,135,135,207, 0,240,117, 77,156, 95, 76,113, -123,189, 40,137, 46,200, 34,141,251, 54,107,251, 46,178,200,241,190,211,251,185, 30,179,110, 66, 42, 35, 89,253,154, 52,177,106, -220,220,114,182,220, 58,208,190, 40,253,244,236,126, 77,154,108, 59,150, 84,255, 67, 16, 33,132, 97, 24,102, 93,104,104,232,168, - 61,123,246, 88,196,199,199, 91,248,251,251, 67, 16,132, 74,199,252, 10,163, 88, 95, 95,223,122,207, 27,203,178,202, 51,103,206, - 56,155,155,155,191, 96,202, 91, 82, 82,130,129, 3, 7,214,203, 97, 34,170, 94,111, 27,250, 55,254,226,241,227,199,195, 34, 34, - 34, 70,207,154, 53,203, 23,192, 36, 0, 11,115,115,115,187, 2,128,131,131,131, 20,192, 57, 66,200,216,153, 51,103,126, 56,103, -206, 28,188,249,230,155, 11, 9, 33, 95,189, 76, 84,143, 16,194, 58, 58, 58,190, 57,112,224, 64,214,104, 52,194,210,210, 18, 70, -163,177, 73, 67,121,170,113,202, 36, 18,201,207, 43, 87,174,236, 61,114,228, 72,136, 68, 34, 8,130, 96,127,242,228,201,207,198, -140, 25, 19, 76, 8,233, 87,147,200, 34,132,188,251,225,135, 31, 14,121,231,157,119,208,174, 93,187, 74,115,217,149, 43, 87, 98, -241,226,197,242,147, 39, 79, 14, 10, 15, 15, 31, 68, 8, 57, 72, 41,253, 71,123,153, 17, 66,190, 25, 49, 98,196,168, 93,187,118, -201, 1, 96,197,138, 21,152, 54,109, 26, 20, 10, 5,228,114,249,127,123,120,175, 80, 13,245, 54,123,174, 9,165,165,165,109,230, - 78,254, 23, 24,166,236, 41,177,169,143, 39,150,205,251,128, 28,142, 60,209,166,174,207,137,205,220,112,255,210,122,200, 60,166, - 66,103,228,240,235,221,199, 56,181, 34, 4, 0,224,215,111, 62,116,134,158, 0, 0, 74,169,189,212,220,252, 27, 61,207, 95,134, -139,203, 53, 36, 39,215, 57,119, 42, 87,248,117,119,114, 81, 68,110,222,252,181,121, 64,147,102, 48,112, 70,164, 63, 75, 7, 33, - 50, 40,221,173, 48,246,221,126,226,174, 93,221, 28,191,248, 98,203, 47,150, 78,126,131, 75,114, 18,235, 53,250,108,230, 68,126, - 12,110,227, 59,124,100,255, 32, 89, 96, 64, 75, 72,100,230,149,235,218,182,107,135,182,237,218, 49,115,212,197,189,175,223,184, -213,251,192,201, 95,117,205,156,200,190,251, 57,244,189, 58, 40, 43,221, 41, 9, 33,152, 50,101,202, 11, 13,137, 51, 51, 51, 17, - 21,245,187,102, 13,158,219,199,151, 95,126, 41, 47, 40, 40,232,245,239,127,255,251, 13,119,119,247,149,233,233,233,191,154, 66, -242, 47, 66, 26, 65, 38,235, 57,102,213, 42,161,245,219,111,179,182, 46, 46,140,192,243, 36,227,209, 35,135, 53,235,215,119,203, -123,248,208,188,196,222, 62, 47, 95,163, 41, 77, 76, 76,132,153,153, 25, 17,137, 68,237,171,243, 80, 74,179, 9, 33,223, 48, 12, -153, 77, 8,129, 76,102,150, 56,113,226,196,219,229,171, 27, 29, 57,114,196,226,173,183,222, 42, 5,240, 20, 0,100, 50, 51,119, -150,101,252,202, 18, 4,241,141, 41,194,210,210,210,114,242,146,165,223, 88, 22,229, 21,104, 12, 37, 37, 70,103,107, 57,129, 92, -206, 22, 23,169,139, 50,178,114,180,243, 63, 95, 44,154, 48,246,157,201, 0, 62, 50,233, 4, 18,226,249,218,107,175, 93,143,136, -136,112,118,112,112, 64, 65, 65, 1,114,115,115,113,253,250,117, 8,130,128,208,208, 80, 89,231,142, 29,218,204,155,191,224, 42, - 33,228,117, 83, 68,150,165,189, 35, 86, 4,181, 6, 0,124,246, 52,183, 98, 63,216, 58,108, 64,229, 54,139,211, 10, 1, 0,102, -102,102,191,167,213,211,235, 61,123,246,148, 0,192,184,113,227,138,138,139,139,151, 1,216, 69,235, 48, 67, 45,199,140, 5, 11, - 22,184,251,248,248,120,237,218,181, 11,106,181, 26, 0,156,125,124,124,208,172, 89, 51, 62, 42, 42, 10,126,126,126,176,178,178, -194,133, 11, 23,240,235,175,191,162,109,219,182, 86, 18,137,100, 56,106, 17, 88,221, 66,186, 45,144,189,229, 31,220,172,237,187, -144, 91,187, 98,219,238,189,184,127,107, 71,176,206, 16,191, 96,217, 36,247,119, 52, 84,246,158,210,215,106, 78,163,118, 93, 29, -154,182,124, 27, 94,109,111, 59,106,249,139,143, 23,126,220,120,185,200, 76,187, 99,209,202,140,220,154,120,203,167, 5, 87,132, -134,134, 14,219,179,103,143, 45, 0,196,196,196, 32, 59, 59, 27, 78, 78, 78, 48, 51, 51,131, 88, 44,174,236, 31,106, 42,204,205, -205,145,153,153, 9,131,161,172, 57, 0,207,243, 40, 46, 46,134,139,139, 11, 0,224,139, 47, 8,179,104,145,105,174,227,132,144, -160,142, 29, 59,238,244,242,242,242,168,186,188,127,255,254, 8, 11, 11, 3, 0,116,237,218,181,231,208,161, 67,105,133, 16,204, -204,204, 84,223,184,113,163, 55,165,244, 90, 77,156, 12,195,104,210,211,211, 49,115,230, 76, 60,121,242,228, 99, 66, 72, 50, 0, - 51,169, 84, 90,177,137,148, 16,226,215,178,101,203,117,211,166, 77, 67, 82, 82, 18,226,226,226,174,191,236,148, 41,165,148,247, -246,246,126,104, 52, 26,219,113, 28, 7,141, 70,131,193,131, 7,155,217,219,219,103,179, 44,155,160, 82,169, 70, 83, 74, 51, 77, - 60, 31, 82, 0, 94, 34,145,104,195,204,153, 51,123,246,234,213, 11,209,209,209,136,136,136,192,200,145, 35,209,183,111, 95,172, - 92,185,178,235,164, 73,147,230, 0, 88, 84, 3, 69,207, 77,155, 54,129,231,249, 23,254, 55,204,204,204, 16, 20, 20,132, 22, 45, - 90,224,240,225,195, 61, 1,252,163, 5,150,151,151,215,196, 61,123,246, 84, 42, 41, 55, 55, 55,200,100, 50, 84,249, 30,188,194, -255, 16,106,188, 2,233,245,165, 6,145,136, 73,112,115,109,181,239,194,249, 79, 42,167, 8, 1, 38, 65,175, 47, 53, 0, 0, 47, - 80, 20,149,114, 48,151, 49,120,154, 85,140,123,143, 84, 47,240,208,106,165,150, 98,115, 79,200, 58, 60, 5,165, 20,122, 3, 15, - 93, 97, 22,150,253, 82,138,248, 52, 45,244, 37,249,208, 27,202,210,172, 28, 29, 29, 69, 39, 78, 28,155,118,250,244,217, 15,127, -248,225, 7, 54,205,198, 38, 14,133,133,109,106,226,180,183,111, 98, 37,178, 52,223,247,221,230,133,230,148,125,132,196,148, 18, - 52, 85,118,128,163,173, 7,178, 84, 37,184, 28,119, 20, 9, 15, 34,225,227,234,133,169,147,251,154, 45, 89,186,107,175,157,157, -143,103,126,254,227,162,218,198, 89,142,119,183, 28, 79, 4,151,247, 8,124,110, 18,248,226,140, 23, 54,144, 59,121,162,109,119, -119, 56,121, 52,145,189, 55,117,241,187, 0,222,171,137,147, 82,154,205,178,236, 38,134, 33, 31, 17, 66, 16, 16, 16,248,120,237, -218,181, 47, 68,113, 0,232, 3, 2, 2, 31,179, 44,227, 67, 41, 5, 33,204,119,130,192,103,215,196, 89,195,185,206, 38,132,124, - 35,149,202,102, 1,128,139,139,235,163, 99,199,142,233,135, 14, 29,138, 21, 43, 86, 72,230,204,153,243,169,151,151,215,164,228, -228,228,172,106,159,123,142, 51,148, 16, 79,247, 38, 77,250,124,117,249, 50, 21, 27,141, 36,239,250,245,162,130,204, 76, 46,171, -184, 88,186, 63, 33,225,205,241,159,126, 42,245,240,240,192,165,200, 72,135,156,146, 18, 90,160,211,105, 10, 10, 10, 40,199,113, -215,107,226,164,148,206, 85, 40, 20, 22,219,182,109,243,155, 56,113,226,237,140,140,140,185, 0,224,230,230,182, 12, 64, 11, 0, - 79,171, 44,195,230,205,123,211,223,127,255,253,196,236,236,236,231,166, 70,235, 56,246,150,206, 78, 78, 22,187,183,132, 71,219, - 91,153, 51,142, 74, 87, 70,108, 99, 35,230,100, 22, 18, 74,161,245,241,105, 98, 1,160,101, 45,231,236, 57, 78, 66, 8, 49, 55, - 55,143,248,249,231,159,157,197, 98, 49,120,158,135,147,147, 19,158, 60,121,130,130,130, 2, 20, 23, 23,227,113, 66, 60,188, 61, - 60,240,197,156,217,174,147,102,207,137, 32,132,180,171,122, 19,171,105,156,188,209,128,106,251,169,177,235, 64,213, 60, 10, 19, -143,189, 58,158,164,164,164, 64, 46,151, 35, 32, 32, 64,126,249,242,229,139,181,137,171,170,156,102,102,102,195,187,116,233, 98, -181,123,247,110,180,109,219, 22, 54, 54, 54,136,138,138, 66, 76, 76, 12, 12, 6, 3,163, 86,171, 97,101,101,133,229,203,151,195, -203,203, 11, 69, 69, 69, 72, 73, 73,113, 16,139,197,142,181,113, 70,157,136, 90, 82,152,116,110, 65, 22, 57,222,119,219,238,189, -120,127,228, 8,184,208, 71, 23,109,154,144, 37,125,222,234,242, 25,101, 61, 6, 88, 90,181,178,243, 13,120, 11, 18,169, 28,147, -102, 45, 70, 98,236, 17,187,210,226,232,143, 9,159,234, 1, 96, 74,117, 78, 82,118, 98, 24, 15, 15,143,241,251,247,239,183,170, - 88, 94,209,147,176,170,176,170,120,213,116,158,107,252, 27,241, 60, 12, 6, 3, 12, 6, 3,120,158,135, 74,165, 66,113,113, 49, -108,109,109,203, 54, 88, 4, 16, 16, 66, 81,179, 96,169,198, 57,250,244,233,211, 30,150,150,150,213,183,129, 74,165, 2,199,113, -176,176,176,168,220,167,209,104,132, 86,171,149,183,104,209,226, 35, 0,215,106,226, 20, 4, 97,250,240,225,195,187, 92,187,118, -173,241,250,245,235,161,215,235, 87,100,101,101, 97,200,144, 33, 16, 4, 1, 61,123,246,236, 68, 41,189, 63,127,254,124, 0,192, -180,105,211,140, 37, 37, 37, 19, 77, 57,246,154, 64, 8,105, 49,116,232,208,198,103,206,156, 65,112,112, 48,116, 58, 29, 86,174, - 92,105,189,121,243,102,235,240,240,112,167, 89,179,102,125, 15, 32,164, 46,206,114, 97, 53,175,111,223,190,211, 7, 14, 28,104, -153,158,158, 14, 91, 91, 91,236,221,187, 23,203,151, 47,191,160,215,235,231,133,135,135, 47,139,136,136, 8, 30, 57,114, 36, 86, -174, 92,249, 49, 33,100, 9,165,212, 88, 19,231,227,199,143,225,228,228, 4,107,107,107, 0,101,141,236,239,220,185,131, 83,167, - 78,161,121,243,230,245, 30, 83, 3,254,143, 76,198, 95,205,169,209,104,180, 41, 41, 41,242,175,191,254, 26,174,174,174,240,242, -242,130,153,153, 25, 8, 33, 48, 26,141,160,181,232,105, 83,198,217,173, 27, 17,169,210,237, 6,218,216,218,125, 76, 41, 21, 21, - 22,230,111, 49,160,224, 64, 82, 18,173,233, 94,245,167, 28,251, 63, 13, 34, 0, 32,132, 80, 74, 41,169,248,233,238,142, 34,149, -202, 46,209,217, 37,112,175,179, 75,203,242,190, 92, 76, 2,203,218, 37, 42, 20,165, 69, 0, 96,224, 40,174, 36, 20, 32,250, 97, - 22, 98, 30,102,193, 82,102, 90,155, 26,157,129, 43,171,179,164, 20, 90,245,111, 15,169,134,210,124,232, 12,101,233, 28,122, 93, - 41, 10,115,226,200,176,193,189,205, 62,252,112, 2, 92, 93,221,157,106,161,131, 65,102, 54,117,210,180, 55,109,237,109,197,136, -188,124, 28,157,154, 15,134,153, 76,140,220, 66, 45, 64,128, 7,143, 78, 1,130, 21, 98, 19, 83,208,177,165, 5, 66,250,248,203, - 15, 29,184,255, 41,128,133,166,140,151, 75,187, 14,137,111, 63,136,121, 35,140,170,251, 16, 10,146, 1, 75, 23,104,136, 28,185, -153,201, 72,184,120,208,164, 22,165, 60,207, 79,114,116,116,124, 54,119,238,220, 32, 63, 63, 63,253,164, 73,147, 98,159, 60,121, - 50,191,234, 54,222,222,222, 95,109,216,176, 1,137,137,137, 79,151, 45, 91,118, 73,165, 82, 53,168, 61, 13,165,116, 14, 33,100, - 45, 0,100,102,102,170,126,254,249,231, 86, 23, 46, 92,248,104,205,154, 53, 78, 31,127,252,177,100,242,228,201,163, 1,172,168, -237,243,147, 9,145, 90,202,100,189,190,186,112,129,114,105,105,186,255,124,251,173,116,227,149, 43,243, 13,130,224,230,232,236, - 76, 58,119,236, 88, 98,193, 48,170,220,236,108,206,169,113, 99,246,201,169, 83, 14,212,220, 60,227,216,177, 99, 69,106,181,250, - 96,109,188, 44,203,150,214, 52, 45, 88, 19, 92, 93, 93,245, 53,229,104,213, 6, 66, 72,145, 64,169,193,206,199, 27,125,122,118, -110,250,240,254,163, 71, 50, 27, 91,214,215,183, 81,179,184,132,167,215, 4,142,211, 17, 66,138,234,103, 2, 88,150, 29,177,118, -237,218, 64,107,107,107, 8,130, 0, 27, 27, 27,228,228,228, 64,175,215,163,168,168, 8,250,226, 66,232, 11, 11, 17,147,252, 4, - 93,186,117,195,176,190,125,252,195,127,250,121, 4,128, 61,117,241,186,181,106, 83, 25,185, 90,220,200,161,114,249, 23,169, 5, -149, 98,235,235, 54,190,144,200,229,232, 61,125,142,169,135,254, 2, 40,165,183,165, 82,233,209,208,208,208, 55, 63,253,244, 83, - 38, 51, 51,243, 56, 33,164, 11,165, 52,174,174,207,201,229,242, 38, 21,130,194,198,198, 6,107,215,174,133, 66,161, 64,105,105, - 41,110,220,184, 65,149, 74, 37, 57,119,238, 28,148, 74, 37, 84, 42, 21, 12, 6, 3, 74, 74, 74,178,244,122,125,173,211,226,229, -211,128,253,166,247,115, 61,118,255,214,142, 96,119,242,248,198,240, 25, 93, 31,222,143, 73, 72, 57,121,234,242,151,156,214, 44, -181, 32,237,244,108,159,246,183, 29, 63,158,249, 5, 54,172, 88,132,251,215, 46,228, 41, 60,139, 54,154, 19,221,143, 29,123,215, - 62,222,146,146, 18,109,124,124,188, 85,116,116, 52, 8, 33,176,177,177,129,133,133, 69,141, 34,203, 84,240, 60, 95,249, 83,165, - 82, 33, 39, 39, 7,137,137,137,216,177, 99, 7, 50, 50, 50, 28,215,216, 88,103, 57, 74, 37,209,146, 2, 50,207, 96,160,183,235, -161,219,210,187,119,239, 17,158,158,158, 86, 85, 23,182,111,223, 30, 19, 38, 76,192,119,223,125,135, 43, 87,174, 60,215,239, 50, - 43, 43, 43,211,104, 52,254, 88, 27, 33,165,180,128, 16,210,119,240,224,193,183, 46, 94,188,104,189,125,251,118,112, 28, 87,227, -107,219,182,109,248,245,215, 95, 23, 82, 74, 19, 76, 62, 1, 85, 64, 8,105, 62,100,200,144, 11, 59,119,238,180,205,201,201,129, - 74,165,130, 90,173, 70, 73, 73, 9,120,158, 71,179,102,205, 8,199,113,117,230,181, 17, 66,100, 78, 78, 78, 71,207,159, 63,223, -189, 89,179,178, 77,141, 70, 35, 46, 95,190,140,183,223,126,187, 72,175,215, 15,161,148,230, 18, 66,230, 30, 56,112,224, 74,199, -142, 29,209,190,125,123,251,228,228,100,123, 0, 53, 70,174,213,106, 53,212,106, 53,196, 98, 49, 92, 83, 65, 51,158, 0, 0, 32, - 0, 73, 68, 65, 84, 92, 92,176,100,201, 18,232,245,101,151, 21, 63, 63,191,138,253, 50, 0,214, 52,111,222,124,112, 66, 66,194, -114, 74,233,198,151, 57, 7,255,171, 32,132, 16,177, 88,140,113,227,198, 65, 36, 18,193,220,220, 28, 90,173, 22, 70, 99, 89,157, - 64,185,192,106,208,244,179,175,175,149,131, 8,146,247,253,252,222,152, 58,108,202, 0, 39, 87, 55,119,216, 90,203, 16, 31, 31, -215,229,236,153, 83,223,182,104,230,180, 89,208, 27, 55, 39, 60, 41,248,211,155,208, 87,215, 34,127,246,254,254,108,212,114, 5, - 26,202, 59, 58, 30, 80,165,167, 75, 13, 82,169, 69, 34, 80, 22,213, 42, 19, 87, 67,121, 96, 55, 56,131,177,252, 2, 65,203, 95, - 38, 10, 44, 35,143,135,247, 99,113,241,228,207,112, 44, 77,135,234,113,107, 64, 18, 8,189,166, 16, 90,125,217,147,190, 32,240, -184,123,235, 12,138, 10,243, 16,208,110, 0,192, 48,181, 78,109,217, 56,144, 1,157,219,182, 98, 31,166,196,162,189,223, 80, 52, - 86, 6, 35, 57,179, 8, 5,106, 29,242,139,180,104, 29, 48, 7, 57,249, 26, 20,149,106, 17,247, 48, 28,238,110,141, 25, 34,122, -212, 19, 38, 10, 44, 93, 92, 4,116, 9,135, 33,241,234, 2,105,179,183,193,122, 5, 33, 37,250, 28,238, 30, 91,131,180,123,151, - 64, 5, 30,174,126, 29,234, 39, 2,192,178,236,150,147, 39, 79,182,126,227,141, 55, 68, 61,123,246, 12, 80, 42,149, 1,105,105, -105,177, 0,160, 84, 42, 3,250,246,237, 27,224,236,236,140,117,235,214,149,178, 44,187,197, 36,210,106,168, 54,173,118,219,213, -213,117,101, 68, 68,196, 55, 19, 38, 76,128,139,139, 75,139,186, 62,155, 35, 22,191,246,222,210,165, 84,204,178,116,207,134, 13, -146, 47,142, 31, 95,245,195,143, 63, 74,122,116,239, 78, 40,165,184,115,231,142,197,215, 27, 54, 88,140, 26, 56,240,105,242,179, -103,220,249, 43, 87, 12,153,105,105,197,207, 74, 74,190,200,200,200,120,169, 70,208,191, 23, 70,163,241,234,147,199,143,148,109, - 58,180,118,186, 29,247, 56, 46,164,103,231,215, 25,134, 97, 18, 30, 37, 95,117,114,178,182, 56,115,242,180,193,104, 52,190, 80, -189, 86, 19,100, 50,217,128, 30, 61,122,136,242,243,243,225,230,230,134,156,156, 28,164,167,167,151, 69, 24, 10,243, 97, 40, 44, -132,177,168, 0,124,137, 26,143,111, 92, 71,235,198, 62,178,253,101, 73,240,117, 10,172,138,167,202,234,209,148,170,145, 44,169, -149, 21,164,114, 57, 72, 3,167, 7, 9, 33, 3,109,109,109,103, 23, 20, 20, 28,165,148, 46, 49, 24, 12,147,102,207,158,221,126, -253,250,245,142, 95,125,245,149,245, 7, 31,124,176,159, 16,210,154, 82,170,171,141, 67,173, 86, 39,113, 28,231, 8,192,249,204, -153, 51,112,118,118, 70, 97, 97, 97, 69,100, 69, 95, 90, 90,106,150,155,155, 11,157, 78, 7,189, 94, 15,107,107,107,220,188,121, - 51,159,227,184,159,235, 27,159,117, 19,178, 68,103,136, 95,224,224,111,153, 97,224,236,186, 62,203, 19,242, 23,173,204, 88, 12, - 96, 85,191, 38, 77,182, 25,132, 11,143, 31,196, 30,177,123,114, 35, 42, 47,227, 65, 73,227,109,191, 60,170, 53, 7,171,252,202, - 43, 16, 66,104,179,102,205,160, 82,169,192,178, 44, 44, 44, 44, 32,151,203,209,188,121,115,164,166,166,190,180,192,226, 56,174, - 82, 92, 69, 70, 70, 34, 51, 51, 19,187,119,239,134,135,135, 7, 3,192, 41, 53, 53,181,247,176, 97,195, 58, 58, 56,216, 45,203, -205,205,175, 53,175,141, 82,122, 7,128,117,213,101,132,144,238,142,142,142,103,117, 58, 29, 30, 61,122,132,159,126,250,169, 27, -165,244,188,201, 3, 44,227,125, 68, 8,233, 27, 20, 20,180,163,109,219,182, 77, 40,165, 8, 12, 12, 68, 88, 88, 24,194,195,195, -113,247,238, 93, 20, 22, 22, 10,167, 78,157,250, 1,192,202,134,112,147,223,238,108,205,134, 12, 25,114,105,215,174, 93,118,185, -185,185,208,104, 52, 40, 41, 41,193,254,253,251,209,165, 75, 23, 56, 58, 58, 98,231,206,157, 28,165,244, 72, 29, 92,102,182,182, -182, 71, 47, 93,186,212,173,105,211,166,136,139,139,195,153, 51,103,208,168, 81, 35, 72,165, 82,140, 30, 61,218,250,187,239,190, -251,132, 16,178, 92, 44, 22, 47, 25, 50,100, 8,120,158,199,229,203,151,115, 1,212, 91, 73,106, 52, 26, 81, 80, 80,128,130,130, - 2,152,155,155, 87,156, 27,160, 44, 69, 98,251,154, 53,107,198, 76,157, 58, 21, 77,154, 52, 89, 66, 8,249,142,190,100, 67,233, -255, 37, 52,107,102,215, 82,202,202,166, 72, 36, 98,135,252,252,252,202,107,135, 94,175,135, 78,167,123, 46,114, 37,145,136, 29, - 58,180,241,250, 69, 83, 90, 60,239, 94, 98,126,173,141,203, 91, 52,181,109,101, 97,105, 51,181,127,223, 97,163,251,244, 29,196, -114, 70, 35, 78,156, 56,130,127,255,123, 19,186, 7,249,161,113,211, 64,124, 50,121,138,141, 78,207,205, 57,117,234,248,236,206, - 29,124,142, 23, 23, 21,204,173,139,243, 21,158,135, 8, 0,106, 86,140, 67,121,119,119,228, 3, 0, 33,196,209,206,206,110, 3, -207,243,221,129,247, 33,150,187, 32,238,230, 53,228,229,139,161,211,240, 16,104,153,200, 50, 5, 58,157, 30, 23, 78, 28,198,218, - 53,171,144,155,155,139,160, 55,186, 65, 45,242,128,167,135, 39,180,154,178,192, 5,165,128, 65,111,132,147,194, 11,183,111,223, - 53, 22,149,148,156,175,141, 79, 98,102,240,247, 84,248, 65,103,120, 29,102, 82, 41, 10,139,245,200, 47, 23, 87, 59, 15, 12,135, -174, 84, 3, 78,111, 0,167, 55,194,201,115, 8,154, 43,122, 64,224,143,212, 56,101, 84, 43, 4, 30,134, 39, 23, 96,120,114, 1, -230,175, 79,198,207,203, 70, 62,183,218,212,255,223,236,236,236, 28,165, 82,121,252,214,173, 91, 3,134, 15, 31,142,168,168,168, -247, 0, 76, 7, 0,153, 76,246,222,240,225,195,113,235,214, 45, 36, 36, 36, 28,207,206,206,254, 67, 60, 59,164, 82,169,182,226, - 41,207,204,204,204,172,158,109,221,219,135,134, 50,133,183,111, 23,173,185,124,121,209,182,237,219, 37,189,122,246, 36, 70,142, -131,192,243,104,234,235, 75,250,244,233, 99, 25,190,111,159, 3,107, 52,254, 58,115,210,164, 51,223,189,243, 78,241, 53,181,218, -212, 4,242, 70,229, 83,131, 0,208,168,142,101, 38, 67,167,211,173,159, 56, 97,124,239,115, 81,231, 61, 26,121,185, 91,157, 60, -115,225,174, 84, 38, 97, 26,123, 55,102, 11, 10, 10, 68,159, 47,154,107,174,211,233,190, 53,145,206,223,209,209, 17, 89, 89, 89, -120,248,240, 33,116, 58, 29,140, 70, 35,132,210, 18,232,243, 11,160, 47,204, 3,209,106, 32,227,121,104, 85,217,104,212,216, 7, -248,173,194,176, 78,212, 52, 45, 88,117, 74,208,204,218, 26, 18, 75, 57, 24,177,184,198,105,173, 90, 56,219,118,232,208, 97,223, -193,131, 7, 37, 99,199,142,237, 72, 8,217, 64, 41, 77, 38,132,244, 92,184,112,225,245, 13, 27, 54,200, 38, 76,152,208,108,229, -202,149,239, 2,168, 85,176,107,181,218,125,191,252,242,203, 40, 47, 47, 47,231,152,152, 24,104,181, 90, 8,130,128,126,253,250, - 1, 64,229,119,230,254,253,251, 26,173, 86,251, 44, 54, 54,182, 40, 57, 57, 89, 15, 19,170,254, 22,173,203,184, 58,125,152, 50, - 84,225,226,254,171,153,121, 35,111,170,190, 61,120,250, 48,229,138,213,251,211,180,199,146,146,138, 23,126,220,120,121, 73,113, -244,199,182, 74,245,198, 99, 71,106, 23, 87, 85, 64, 43,202,210, 29, 28, 28, 32, 18,137, 32, 22,139, 33,145, 72, 0, 0, 10,133, - 2,133,133,133,117, 78, 17,214, 4,158,231, 81, 84, 84,132,194,194, 66, 36, 36, 36, 32, 51, 51, 19, 87,175, 94, 5,207,243, 40, - 43, 82, 4,148, 74, 37,174, 95,191,110,213,190,125,251,121, 68, 66,206, 81, 3, 53,185,108,156,101,217,169,239,188,243, 14,244, -122, 61,194,194,194,176,109,219,182,169, 0,206,155,250,249,202,131,167,244, 87, 66,136,239,221,187,119,173, 1,188, 61, 98,196, -136, 31,135, 12, 25,130,243,231,207,227,200,145, 35,221, 0, 36, 2,208, 0, 88, 70,202, 26, 43, 47,171,171,192,131,148, 89, 49, -108,114,114,114,122,187,101,203,150,119,135, 12, 25, 18,176,107,215, 46,219,103,207,158, 85, 20, 53,224,201,147, 39,248,254,251, -239, 51,183,111,223, 94,196,243,188, 3,195, 48,191, 20, 20, 20,212, 86, 5,109,102,105,105,121,236,210,165, 75, 93,155, 54,109, -138,211,167, 79, 99,222,188,121,232,218,181, 43,118,239,222,141,230,205,155, 35, 48, 48, 16,206,206,206, 31,231,229,229,117,222, -186,117,107,183, 78,157, 58, 97,231,206,157,200,204,204,220, 84,155,101, 67,125,169,100, 70,163,145, 0,232,184,102,205, 26,159, -169, 83,167,226,224,193,131,104,211,166,141,205,163, 71,143, 86,162,252, 26,251,119, 69,115, 95,135,229, 29,218,119,157,237,234, -222, 20, 59,119,237, 70, 94, 94,153, 6,165,191, 25,126,130, 82,138,226,226, 98,100,101,101,193,198,218, 10, 43, 86, 46,121,243, -163, 15,198,120,160,204,206,226, 5,248, 55,177, 95, 57, 52,108,252,140,176, 81, 99, 16,115,247, 22,194,127,220,130,216,152, 59, -149,124,156,209,128,196,248,155, 72,140,191, 9,133,139, 23,250,244,234, 70, 70,142, 28,217,239,157, 81, 35,156, 0,252,105, 22, - 16,255,164,232, 21, 80,203, 20, 97,213, 13,202,197,213,189,189,123,247, 58, 4, 5, 5,177, 28,199,225,248,137, 19,248,248,195, -127,225,221,119,230,192, 0, 59,112,122, 9, 4, 73,157,247,238, 74,104, 52,165,160,160, 40, 41, 41,193,149, 43, 87, 64, 5, 14, -225, 91, 87,129, 82,161, 82, 96, 1, 20,122,131, 1,238,158,205,176,105,219, 87, 28,196,226, 90, 47,100, 69,185, 44,111,228, 40, -210,159,165, 32, 37, 51, 22, 54, 86,158, 16,137, 61,145, 91, 80, 10, 17,227, 2,163,246, 62,248,242,240,105,105, 73, 26, 52,134, -223,247,119,227, 11, 95,140,146, 82,193,244, 7,164,210,210,210,125, 59,119,238,236,179,122,245,106,201,155,111,190,217, 68,169, - 84,118, 0,128,208,208,208, 38, 86, 86, 86,216,185,115,167,161,180,180,116,223,239, 26,100, 21, 24,141,198, 55,218,183,111,143, -188,188, 60, 60,125,250,180,206, 39, 15, 94,175,119,144, 59, 59,179,207,206,157, 51,230,228,231,123,244,232,209,131, 24, 57, 14, - 12, 33,200, 43, 44, 68,242,211,167,176,181,181, 37,247,238,223,151,127,251,201, 39,135,252, 2, 2, 68, 21, 21,134,166,224,200, -145, 35, 22, 40,203,187,170,115, 89, 67, 64, 41, 45, 33,132,188,247,201, 39,159, 28,250,207,127,118,218,100,101,103, 63,144, 73, -101,156, 92,110,238,250,206,232, 17,162,130,130,130, 81,148, 82,181,169,124,249,249,249,120,252,248, 49,204,205,205, 33, 17,139, - 33,104, 74,193,151,168,161,205,203, 1,107,208, 67,202,243,176,183,144,193, 67,161,128,167,147, 99,253,132, 40,171, 22,172, 72, -104,175, 58, 45,184,162,131, 63,164,150,114, 72,173,228,248, 40, 50, 10, 0,202,132,194,194,250,103,134, 9, 33,142,238,238,238, - 63,239,218,181, 75,146,147,147,131, 59,119,238,220,165,148, 22, 18, 66,172, 0, 8,241,241,241,167, 99, 99, 99, 7,148, 87,209, -213, 87,253,181, 42, 34, 34,162,119, 80, 80, 16,231,237,237,109,153,157,157,237,153,155,155, 75, 50, 51,159,207, 97, 62,122,244, -168,153, 70,163, 41, 17, 4,225, 16,202,124,156,234,245, 31,154, 62, 76,105,118,229, 54, 38,119, 13,105, 20,104,237,216, 10,121, -220,237,192, 95,239,102, 78,158, 62, 76,185,126,245,254, 52,173, 57,209,253, 72,248, 84, 15,145,153,214,164,228,100, 74, 41,117, -116,116, 4,165, 20,215,175, 95,199,165, 75,151,112,225,194, 5, 36, 39, 39, 87,110, 99, 99, 99,131, 83,167, 78,161,123,247,238, -166, 80, 2, 0, 74, 75, 75,225,234,234, 10, 59, 59, 59,132,135,135, 99,247,238,221,149,137,238, 21, 80,169, 84,176,176,176,192, -234,213,171,229, 67,135, 14,253, 18, 64, 31, 83,184, 9, 33, 62,189,123,247,238,239,234,234,138,220,220, 92,184,184,184, 32, 40, - 40,232, 45, 66,136, 55,165,244,137,201,131,124, 30, 31,133,132,132, 44,249,226,139, 47, 96, 52, 26, 49,110,220, 56, 60,120,240, - 96,223,131, 7, 15,214,122,122,122, 78,158, 53,107,150, 66,161, 80, 96,248,240,225,150, 0, 66,107, 35,177,183,183, 95,182,101, -203,150, 81,253,251,247,103, 12, 6,195, 27,103,207,158,197,211,167, 79,161,215,235,193,113, 28,146,146,146, 48,105,210,164,204, -220,220,220,174,148,210, 36, 19,198, 53,231,228,201,147, 93,253,253,253, 17, 25, 25,137,208,208,208,115,182,182,182,126,173, 90, -181,114,117,115,115,195,254,253,251, 97,109,109, 13, 79, 79, 79,251,175,190,250,170,199,160, 65,131, 16, 25, 25,137,105,211,166, - 69, 1,168,179,218,181, 54, 8,130, 64,214,172, 89, 19,176,102,205, 26,101,133,184, 98, 24, 6,123,247,238,197,221,187,119, 7, -226,111, 46,176, 88,134,188,183,116,241, 76,220,184,125, 31, 17, 17, 18,220,184,113, 3, 10,133, 2, 50,153, 12,148, 82,232,116, - 58,228,228,228,192,104,208, 33,176,165, 15,118,108, 95,142,103,207,114, 0,134,212,154, 90, 67, 24, 50,122,204,191, 6,227,226, -165, 19,248,238,187, 45, 80,171, 75,106,220, 78, 42, 53, 67, 83, 63,127,184,187, 57, 35, 53, 45, 21,132,129,105, 23,189,151,196, -255,147, 41,194,223, 96,107,107,187,118,207,158, 61, 14,221,187,119,103, 75, 74, 74, 32, 8, 2,130,131,130, 48,121,234, 84, 28, -217,181, 11,190, 29,195, 64,244,114,112, 22,166, 85, 49,104, 53,165,104,209,166, 51,134, 13, 31,129,148,228,100,132, 12, 24, 2, -173,182,180, 50, 23, 1, 40,139, 96,233,245, 6, 56, 58,123,224,228,201,147, 44,198,141,187, 87, 27, 31,111,144, 70, 39, 38,105, -187, 20,104,110,227,202,141,112, 24,116, 6, 4, 6, 46,132, 65,112,128,179,242, 3, 24,141, 63,161, 40,231, 44, 0,192,218,161, - 59,210, 82, 82,192,176,146, 90,249,234,131, 80,242, 98, 96,169, 33,133, 58,249,249,249, 69,174,174,174,135,175, 94,189, 58, 44, - 52, 52, 20,167, 78,157,122, 23, 0, 66, 67, 67,113,245,234, 85, 60,126,252,248,112,126,126,190, 73, 57, 67,245, 65,169, 84,246, -235,214,173, 91,104,251,246,237, 17, 25, 25, 9,158,231,175,152,242, 57, 86, 44,166, 12,195, 64, 16, 4, 16, 0,185, 5, 5,120, -240,224, 1,114, 85, 42, 24,141, 70,148,168,213,130,191,159,159,154, 10,130, 85,189,100, 85, 80,181, 98, 16, 53, 84, 17, 86, 44, -107, 8, 39, 0, 80, 74,147,229,114,121, 74,177, 90,237,100,109,103, 95,108, 38,149,242,133, 5,133,133,113,247, 98,244, 38,222, - 20, 42, 16, 31, 27, 27, 27,144,145,145,129,148,148, 20,112, 37,197, 96,117,122, 48,186, 82,244,236,252, 58,204, 65, 97, 6, 1, - 98,193, 8, 49, 43, 70,113, 89,181, 93,124,125,164, 21, 2, 31,248, 45,146, 69, 8, 41,155, 22,180,180,132, 84,110, 85,185,174, -252,120,234, 29,168, 76, 38,219,181,127,255,126, 87,119,119,119, 44, 94,188, 24, 74,165,178,121, 96, 96, 96,105,112,112,176,185, - 66,161, 64,139, 22, 45,208,185,115,103, 28, 59,118, 12, 0,234, 60, 7,148, 82,142, 16,210,231,226,197,139, 51, 46, 95,190, 60, -140, 16, 66,230,204,153,131,190,125,251,194,204,204, 12,165,165,165,200,207,207,199,214,173, 91, 9,165,180, 77,249, 88,189,204, -204,204,118, 19, 66,210, 52, 26,205,240,234,156,225,107, 90,185, 61,203, 19,198, 41, 92,220, 7,119, 13,105, 20,216, 35,164, 23, -124,124,123,160, 71, 72, 10, 0, 44,183, 23, 61, 13, 91,177, 32,224,144,163,135,253,247, 39,143,159, 90, 20,212,181,199,252, 57, - 19,236,150, 44,223, 82,255,119,159, 16, 2,158,231, 33, 18,137,192, 48, 76,141, 81, 42,145, 72, 4,150, 53, 45, 21,133,231,249, -180, 65,131, 6, 85,190,207,200,200,112,244,240,240, 96, 42, 34, 87, 0, 80, 88, 88,136,212,212, 84, 24,141, 70, 56, 56, 56,192, - 96, 48,180, 50,137,188, 12,147,199,142, 29, 75, 52, 26, 13,198,143, 31,143,109,219,182, 33, 44, 44,140,156, 63,127,126, 50,128, -169, 13,224, 1, 0, 48, 12,179, 98,214,172, 89, 51, 38, 77,154,132,188,188, 60, 28, 61,122, 20,253,250,245,195,222,189,123,157, -142, 30, 61,186,180,123,247,238, 96, 89, 22,145,145,145,224, 56,238,126, 93, 92, 18,137,228,237,254,253,251, 51,169,169,169,144, - 72, 36,104,215,174, 29,210,210,210, 80, 90, 90,138,244,244,116, 76,153, 50, 37, 43, 55, 55,183,155, 41,255, 71,132, 16,113,211, -166, 77, 39, 53,111,222, 28,167, 78,157,194,208,161, 67,207, 27,141,198,254, 57, 57, 57,147,242,243,243,191, 25, 61,122, 52, 2, - 2, 2,144,152,152,136,222,189,123,163, 75,151, 46, 56,122,244, 40,198,143, 31, 31,101, 52, 26,251,215,100,209, 80,142,226,103, -207,158,217, 52,105,210, 4,217,217,217, 80,171,213,184,122,245,170,117, 84, 84,148,183,155,155,155,237,163, 71,143,232,130, 5, - 11, 44,166, 78,157,138,181,107,215,226,206,157, 59, 8, 15, 15, 71,143, 30, 61,140, 15, 31, 62, 52,217, 91,237,127, 21, 2, 47, - 0, 16,224,237, 33,199,137, 35,219,113,235,238, 35,220,186, 27, 11,169,172, 44,185, 93,163, 41, 69,155,192,166,232,216,174, 3, - 50, 50,211,241,159,240,237,176,119,116,175,243, 58, 66, 41,133, 68,196,195,223,207, 5,187,194,183, 32,242,232, 25,132,255,103, -119,101, 78,155, 72, 36, 70,235, 54, 29,209,174, 93, 16, 30, 61, 78,194,246,237,223,193,201,217,163, 86,190, 87,168, 25,149, 83, -132, 85,127, 86,133, 32, 8, 61,130,130,130, 88,181, 90, 13,173, 86,139,172,172, 44, 60,125,250, 20,182,118,182,120,148,241, 4, -221, 44, 12,200, 18,138, 16,127,247, 30, 79, 88,241,157,250,118,216,191,107,107,160,107,107,124, 60, 54,172,214,109, 40, 40, 44, -173, 29,161,211,233, 96, 48, 26, 31, 98,253,250, 90,159,148, 57,222,120,250,196,169,179, 29,198,190,251,182,248,228,217,109, 48, -234, 5,104,140, 54, 40,209,234, 81, 98, 16,131,177,233, 7,168,206,131, 21,201,208,233,181,166, 56, 20,113,204, 64, 57,227, 25, -147,206, 14, 0,145, 34, 0, 92,246,111,129, 31,161,228,217,115,235,205,172,236, 77,158, 34,172,228, 16,132, 67,187,118,237,122, -243,245,215, 95,183,232,222,189,123, 99, 0,144,201,100,250, 93,187,118,149,150, 71, 7, 26, 4, 82,205,189,221,221,221,189,149, - 72, 36, 10, 29, 48, 96, 64,171, 49, 99,198,224,222,189,123,216,185,115,231, 67, 63, 63,191, 75,117,241,176, 82,105,174,250,217, - 51, 91,185,183,183,200,206,202, 42,227,216,209,163, 94,189,122,247, 38, 41, 41, 41,200,205,205,133, 86,171,197,157,187,119,169, -152,101,211,136,181, 53,115,255,246,109,134,149, 74,107, 44,167,175, 5, 79,235,169, 34,172, 88,214, 96,120,184,218, 53, 89, 52, -119,162,143, 86,171, 13, 40, 42, 42,226, 68, 98,177, 88,233, 98,155,220, 16, 14,157, 78, 23,121,250,244,233, 65,189,122,245,146, - 37, 70,223, 1, 87, 88, 8,125, 97, 62, 36, 2, 15,251, 54,175,129, 53,232, 0,189, 17,238,254, 20,218, 2, 11,156,191,118,223, -168,211,233,234,237,212, 94, 33,176,152, 42,102,128, 0, 32,149,203, 33,179,178,134, 76, 46,175, 62,133, 88,231,147, 27, 33,196, -226,237,183,223,238,217,169, 83, 39, 80, 74,177,117,235, 86, 24, 12, 6,169,193, 96,128, 94,175,135,193, 96, 64, 81, 81, 17,194, -195,195,177,105,211,166,203, 0,126,168,111,140,148, 82, 78, 44, 22, 79,226, 56,206, 89, 38,147, 25,156,156,156, 36,251,246,237, -171,180,141,104,221,186, 53, 44, 45, 45,117,132, 16, 3, 0,184,184,184, 24,127,252,241, 71,209,192,129, 3, 37, 53,241, 53, 11, -108, 62,211,135,179,235,106,102,222,200,219,218,177, 21,124,124,123, 0, 0,122, 15, 24, 11,159,166,158, 40, 82, 69,123,107, 53, - 79, 7, 75, 68,249,118,247,214,167,199,153,247, 15, 24, 83,242, 44,234, 1,128,237,245,141, 21, 40,243, 11,235,213,171, 23, 66, - 66, 66, 42,167, 3,157,157,157,161,215,235,107, 44,231,175, 11, 21, 38,162, 95,124, 65, 24, 44, 2,214,216, 88,103, 1,168,124, -250, 47, 44, 44, 68, 74, 74, 10, 82, 82,202,162,215,229, 9,197, 38, 61, 93, 19, 66,204,125,125,125,223,107,211,166, 13,142, 30, - 61,138, 27, 55,110,164,159, 56,113,194, 61, 40, 40, 8,222,222,222, 99, 8, 33,243, 40,173,221, 67,175, 6, 62,203, 55,222,120, -227,147, 73,147, 38, 33, 54, 54, 22, 19, 39, 78,204, 77, 77, 77, 61,180,111,223,190,241,139, 22, 45, 98, 66, 66, 66,144,153,153, -137, 21, 43, 86,240,151, 46, 93, 90, 9, 96,113, 93,124,148,210,132,212,212, 84,165, 86,171, 69, 94, 94, 30, 56,142, 67,105,105, - 41,142, 29, 59,134,240,240,240,236,114,113,245,208,196,225,217, 7, 5, 5,217, 61,120,240, 0,219,183,111,135, 94,175,159, 79, - 41,213, 18, 66,126,152, 61,123,246, 60,133, 66, 97,211,187,119,111,180,105, 83,230, 5,183,119,239, 94, 76,153, 50, 37, 74,175, -215,247,175,231, 28,172,118,113,113,249, 96,226,196,137,205,167, 79,159,142,228,228,100,235,163, 71,143,118,185,114,229, 10,241, -240,240, 64,110,110, 46, 28, 28, 28,176,118,237, 90, 76,155, 54,237, 7, 0,217,215,174, 93,123, 47, 41, 41,233, 75, 74,233,119, -166,158,219,255,101, 80,202,163, 52, 63, 22,188,206, 14,173, 3,155,161,117, 64, 35,156, 56,123, 11, 0,208,115, 72, 16, 74, 75, -138,241,227,143, 91,241,240,225, 3,136,196, 98,216,218,187,212,203, 41, 8, 2,244, 69, 9, 40, 48,100,162, 87,247,118,232, 23, -210, 13, 63,236,216, 11,206,104,192,248,177,163,144, 95, 80,128, 29, 59,182,227,209,227, 36,136,196, 98, 56, 56,254,249, 6,166, -117,105,145,191, 35, 76,202, 2, 53, 26,203, 18,218,211,211,211,113,243,230, 77, 60,121,242, 4, 22, 22, 22,208,112,188,240,221, -233, 75, 2, 33,146, 52,129,210,203,148,171,116, 21,126,145,131,231,211,171, 56,204,218,216,217,217, 73,117, 58, 13, 56,206, 88, -229, 74, 69, 0, 2, 72, 68,128,171,155, 15, 82, 83, 82,169, 70,171,141,170,107,108, 18,157,118,237,225, 67,251, 39,117,238, 18, -228,216,175,231, 23, 56,244,211, 66,228, 23, 21, 65,107, 16,163, 68,107, 64,169, 22,176,181,247, 67,251,192, 86,200,200,200, 69, -244,141,243,106,145,174,212,148, 4,208, 7,223,206, 31,235, 59,246,227,153, 48,247,234, 2, 93,252, 33, 8,234,236,202, 8,150, -153,220, 14,246,158,254, 40, 40,209, 97,255,153, 91, 0, 96,114, 75,150,236,236,236, 82, 87, 87,215, 3, 31,125,244,209,242, 59, -119,110,251, 0,192,245,235,215, 31,103,100,100,204,201,206,206, 54,185,130, 14,120,206,189,157,152,155,155, 95,243,245,245,125, -210,175, 95, 63,235, 65,131, 6,193,201,201, 9,183,110,221,194,215, 95,127,253, 64,175,215,127, 22, 21, 21, 85,231,148,142, 94, -175, 79,191,245,211, 79,214,221,254,245, 47,219,153,111,189,181, 98,210,164, 73,107, 23, 47, 94, 44,246,245,245, 37, 70,131, 1, - 49, 49, 49,116,215,206,157,198, 77,115,231,174,145, 90, 90,138,174, 31, 62, 44,230,116,186,250, 60,150,254,116, 40,149,202,174, -111,246,237,234,191,114,245,122,104, 53,106, 92,187,242, 11,242,243,115,176,101,107,132,191, 82,169,236,154,150,150,118,222, 20, - 30,158,231,247,126,255,253,247, 51, 58,182,105,211,166,177,135, 7, 98,146,159, 64, 42,240,144,112, 28, 88,131, 14, 12,167,133, - 71, 0, 5, 97,172,144,153, 85,132,175,246, 28,136,229,121,126,111,125,188,205,223,124, 27,139,211, 10, 65, 8,193,170,215, 3, - 32,181,146, 67, 98, 41,199, 71, 63,159,173, 20, 85,145,139,231, 66, 42,151,163, 73,199,250, 13,220, 41,165,165, 86, 86, 86, 55, - 99, 98, 98,218, 7, 4, 4, 96,198,140, 25,120,250,244, 41, 4, 65, 64,118,118,182, 54, 51, 51, 51, 61, 39, 39,231, 41,128, 67, - 0,182,153,154,228,203,113,156,243,173, 91,183, 0, 64, 2, 0,103,206,156,129,155,155, 27,108,108,108, 80, 84, 84,132,153, 51, -103,202, 62,251,236, 51, 0,192,205,155, 55,197, 21, 9,198, 53, 33,230, 86,252,202,130, 98,154, 79,213,183, 7,231,113,183, 3, -123,132,164,162,247,128, 49, 56, 21,249, 3,206,158, 56, 13,123,209,211, 39,176, 44, 62,166,122,162, 42, 74, 43,241,221,236,223, -118, 60,155, 89,114, 98,243,228,129,118,172,171,171,176,127,206,166,194,130,122,206, 1, 88,150,173,204,193,170, 72,104,111,168, -184,170,138, 69,139,168, 64, 64,136,163, 84, 18,157,154,154,218, 91,169, 84, 34, 59, 59, 27,169,169,169, 72, 73, 73, 65,106,106, - 42,154, 54,109,138, 71,143, 30, 65, 34,145,212,251, 48, 89,142, 81,195,135, 15,183,210,235,245,216,189,123, 55, 7, 96,192,254, -253,251,111,182,111,223, 94,212,183,111, 95,171,141, 27, 55,142, 2,176,173, 1,195,180,180,182,182,150, 24, 12, 6,108,220,184, - 17,169,169,169, 93, 41,165,241,132,144,205,195,135, 15,223, 20, 16, 16,208, 52, 54, 54,246,129, 90,173,254,136, 82, 26, 93, 31, - 89,118,118,246,216,118,237,218,237, 23, 4,193,171, 87,175, 94,150,171, 87,175,182,190,127,255, 62,148, 74, 37, 4, 65,136,161, - 13,107, 53,149,119,250,244,233,252,206,157, 59,219,149, 39,180,127, 69, 8,249,146,101,217,229,161,161,161, 54,187,118,237,194, -209,163, 71,161,215,235,145,144,144,144, 19, 27, 27,251, 45,128,149,117, 21, 96, 0, 0,165,244, 49,128,217,132,144, 86,155, 55, -111, 14,115,119,119, 31,117,229,202, 21,114,241,226, 69,172, 90,181,138, 91,184,112,161, 40, 56, 56, 24, 51,102,204,120, 12, 96, -124,249,247,125, 94, 3,198,253,191, 14,163,193,160,135,181,189, 15,212, 5, 41,200, 73,189, 2, 11, 43, 23,132,244,120, 13,165, - 26, 61,142, 28, 62,136,232,152,187, 96, 24, 6, 10, 23, 15,216,218, 57, 34, 49,241, 1, 0,212, 85, 61,108, 52, 24, 12,176,178, -107, 4,117, 97, 42,244,207,110,193, 92,238,140, 49,255, 26,140, 82,141, 1, 17,135, 14, 34, 54, 54, 26, 44,203,194,197,213, 3, - 54,182,101,156,132,214,201,249, 10,213, 80,175,192, 98, 89,246,220,241,227,199,135,118,236,216, 81,244,240,225, 67, 60,124, 88, -246, 48,147,159,159,207, 17,240, 7,178,163,127, 26, 89,219,103, 9, 33,189, 42,188, 50,170,246, 22,148, 91, 89,165,223, 79,136, - 87,228,231,101,227,238,237, 75,120,152, 24,131, 39,143,226, 97, 48,104,193, 50, 12, 24,150, 65, 35,159,150,184,116,249,138, 94, -207,243, 87,107,227, 4,128,188,188,164, 98,185,194,111,196,146,197,243, 34,167,205,252,220,124,216,208,239, 16,125, 63, 14,106, -206, 5,148, 2, 46, 14,150,104,221,120, 22,210, 51,114,176,231,135,141,165,130,193, 48,186,170, 7, 86, 77,156, 0,160, 80,161, -197,166,173, 63,140,219, 22,190,235,243,153,159, 76, 80, 12, 12, 29, 13,105, 94, 28,140, 25,183,224,211,190, 31,136,204, 22, 71, - 79,158,197,249,155,113,217, 2, 79, 63, 87,228,226,223,245,113, 86, 69, 97, 97,225,141,236,236, 44,159, 42,174,237, 62, 50,153, - 89,157, 73,179,213, 57, 73, 53,135,120,150,101, 58, 46, 94,188,184,196,213,213, 85, 31, 27, 27,139,205,155, 55, 11, 55,111,222, - 60, 39,149, 74,183,100,100,100,212,120, 17,171,202,233,100, 52,222,221, 53,103, 78,139, 14,161,161,116,228, 39,159,148, 66, 38, -155,188, 98,213,170, 57, 57,249,249,110, 84, 16,224,100,111,159,182, 98,238,220,101, 67,135, 15,207,191,119,233,146,249,149,159, -126, 50,151,114,220,173,250,198,249, 71,160, 46,206,180,180,180,243,190, 77, 60,241,227,182,213, 48, 24,116,200, 76, 79, 6, 0, -168,114, 11, 81,151,184,170,206, 89, 62,249, 31,186,224,179,207,126, 93, 48,109,170,203, 27, 61,123, 33,229,238, 29, 24,242,114, - 64,140, 28,196, 68,132,146,103, 22,120,150,173,198,236,255,236,123,166, 46, 45, 13,165,213,226,240,181,141,179, 34, 66, 37,179, -182,130,196, 82, 14,169,220,234,185,168,149,153,181, 53,164,150,114,136,164,210,154,146,225, 95,224, 84,171,213, 67,134, 14, 29, - 26,125,253,250,117,187,241,227,199,163,115,231,206,183, 53, 26, 77,119, 74,169, 73,237,160,106,226, 20,137, 68,207,218,182,109, -235, 44, 22,139,185,113,227,198,137, 84, 42, 85,165, 19,186, 90,173,198,177, 99,199, 80, 81,114,127,239,222, 61,180,108,217,178, - 86,206,241,179, 98,210, 1, 44,158, 62, 76,185,226,215,187,153,147, 1, 44,247,105,234,129,179, 39, 78,227,226,217, 43,115, 58, - 5, 8,235,223, 28,221,254, 75,139,238,195,103,250,183, 29,207,202,173, 93,177, 35,226, 32, 27,127,107,251, 87,165,165, 49, 77, - 0,124, 90,219, 56, 9, 33,160,148,190, 96,201,160,209,104, 76, 18, 87,117,125,151, 40, 40,149, 20,144,121,195,134, 13,235,120, -237,218, 53, 43,185, 92, 14,131,193, 0, 74, 41,154, 52,105, 2,145, 72,132,111,191,253,182, 68,165, 82, 45, 52,133,211,210,210, -114, 82, 72, 72, 8, 18, 18, 18,112,227,198,141,131,148,210,104, 66,200,193,135, 15, 31,142, 8, 14, 14,198, 15, 63,252, 48, 9, -181, 8,172,218, 56, 5, 65,168,234,121,148, 7, 0,148,210,187, 0, 58, 53,244,216,105,153, 89,104, 23, 0,112,112,112, 72, 85, - 40, 20,214,119,239,222,133,167,167, 39, 12, 6, 67,199,250,248,170,114, 82, 74,141,132,144, 13, 81, 81, 81,159,117,233,210, 5, -147, 38, 77,234, 26, 21, 21,213,181, 75,151, 46,240,247,247,199,217,179,103,177,115,231,206, 3, 60,207,127, 4,160,128, 82, 90, -107,127,217,154,142,189, 92, 48, 70, 7, 6, 6,142,242,240,240,192,170, 85,171, 12,209,209,209, 83,150, 44, 89,178,230,206,157, - 59,178,150, 45, 91, 50,209,209,209,181, 62, 76,252,213,215,165, 63,138,147, 18, 50,127,252,251,147, 55,191, 63,126,148, 89,187, -182,173, 81, 90,148, 6,141, 58, 27,165,197, 89,248,118,219, 73, 16,194,192,201,201, 21,206, 46, 74, 36, 39,167,224,242, 47, 71, -245, 37,165,154,181, 82,163,176,188,110,206, 79,202, 56,219,148,113,150,150, 60,131, 70,253,172,146,211,217,217,173,156, 51, 25, -151,174, 28,213,106, 74, 74, 86,235, 41,249,230,207, 60,246,127, 26,234, 21, 88,249,249,249, 83, 38, 76,152,208,125,246,236,217, - 14, 28,199,177,246,246,246, 72, 78, 78,230, 14, 28, 56,144,167, 86,171,167,188,212, 78,197,226,104, 95,191,102,221, 7, 14, 28, -200,189,253,246, 91,146,119,198,246, 21, 57, 57, 59,163,176, 32, 23,137, 9,119,112, 63,238, 22,124,155,189,134, 69,139,215, 0, -182,182,245, 86,234,168,179, 19,207,201, 21,126, 3,190, 88,240,233,222, 46, 93,251, 88, 55,107,249,154,164,117, 19, 27, 24,140, - 28,210,210,210,112,248,167,187,134,216,155, 23,139, 4, 78, 63,162, 36,199,180, 86, 57, 81,101, 9,188, 91, 2, 21,100,231,210, - 21,223,206,216,184,229,199,153,179, 39,143,183, 12, 14,234,141,152,211, 63,224, 96,228,222, 18,173, 78,191, 66,194, 98, 85,140, -138, 54, 40,234, 4, 0, 90,173,214, 88, 61,117, 68,171,213,154,220,244,180, 54,252,248,227,143,200,202,202, 50,164,166,166,158, -230, 56,238, 80, 67,170, 17,215, 83,170, 15, 37,228,244,130,160,160,190, 11, 78,156, 48,123,111,214, 44,253,232,119,222,249, 20, - 58,157, 1, 82, 41, 21, 89, 90, 50,144,201,196,247, 46, 93, 50, 95,247,225,135,246, 68,175, 63,245, 67, 61, 79,159,213,240,135, - 87, 17, 2,149, 17, 44,188, 55,126, 26, 52, 85, 34, 88, 87,111, 36,162, 33, 17, 44, 0,160,148,166, 16, 66, 58, 77,158,191, 32, - 98, 68, 72, 79,255, 0,175, 70, 50, 39,239, 70,144,187,184, 32, 55, 39, 7,151,110,220, 55, 46,222, 27, 17, 91, 46,174, 76,242, -133, 17, 4,161,178,202,173,231,148,217, 32, 44, 11,148, 11,129,138, 74, 32,239,246,157, 65, 68, 34,240, 84,128, 78,167,171, 55, - 9,139, 82,154, 70, 8, 25, 50,122,244,232, 51,145,145,145, 76, 72, 72, 72,235, 67,135, 14,253,174,114,116,163,209,168, 4, 0, -145, 72, 84,100, 97, 97, 33, 26, 51,102, 12,140, 70, 35, 74, 75, 75, 81, 88, 88,136,248,248,120,221,176, 97,195,100, 0, 96,105, -105,105, 28, 49, 98, 68,189,215,143,213,251,211,180,211,135, 41,215,219,139,158,134, 21,169,162,189,237, 69, 79,159,116, 10, 16, -214,175,222,159,166,253, 98,154,237, 18,213,211,243,137,153, 37, 39, 54,239,136, 56,200,190, 59,120, 8,175,148, 63,152, 99,230, - 76, 15,244,120,171,110, 94, 66,200, 11,166,162,191,195, 1,255, 57, 24, 12,244,182,131,131,221,178, 14, 29, 58,204, 91,189,122, -181,220,201,201, 9, 28,199,225,241,227,199,216,176, 97, 67, 73,126,126,254, 87,148,210,155,166,112,249,249,249,121,139, 68, 34, -236,217,179, 7, 0, 54,148, 47,222,112,232,208,161, 17,227,199,143, 71,163, 70,141, 90, 16, 66,100,245, 69,113,170,130, 82, 90, - 57,171,240, 71,130, 16,242,104,221,186,117,238, 46, 46, 46,228,216,177, 99, 28,203,178,181, 90, 49,212,129,101, 59,119,238,124, - 93, 16,132,158,193,193,193,104,218,180, 41, 0,224,230,205,155,248,233,167,159,246,242, 60, 63,186, 46, 97,101, 10,226,227,227, - 47,166,166,166,134,205,152, 49, 67,178,122,245,234, 53,211,167, 79,151,165,166,166, 34, 46, 46,174, 70, 23,252,191, 59, 18, 30, -228,134, 7, 54, 86,156, 88,188,100,245,103, 77, 26,123, 79, 28, 55,102, 56,235,231,219, 18, 37,133,105,112,112, 84, 64,233,225, -131,156,103, 42, 28, 63,126,140, 87,169, 10,190,231, 25,242,197,131, 7,185, 47, 58, 99, 55,128,211, 93,233,131,103,207,158,225, -232,209,163,124, 65,126,209, 86, 24,153,197,113, 79,243,235,237,172,241, 10,207,131,152,146, 80, 91, 94, 73,184,174,204,166,161, - 44,170,149,159,159, 63,133, 82,250,162,125,251,243,159,171, 84,184,164,186,249,217,176, 97, 18,252,242, 75, 43, 24,141,157,108, -173,172,122, 82, 65,104,255,218,107,175,201,135, 15, 31, 46, 4, 5,117,150, 90, 91, 91,147, 22, 45, 2,138, 11, 11, 10,236, 0, -128, 2,124,117,206,234,168,104,246, 44, 98,197,189,120,222, 16, 88, 54,214,250,155, 61,155,162,196, 27, 43,136,147, 72,192, 34, -134,144, 49, 2,165, 63,112, 12,190,120,148, 77,107, 21, 47,166,112, 86,153,222,171,104, 13, 83,103, 99,231, 90,158,230, 43,167, - 8, 25,134,221,225,238,238, 62, 47, 37, 37, 37,199,212,139, 88, 77,156, 21,173,114, 6, 76,157,106,108,219,167, 15,103,239,225, - 33, 80, 74,249, 39,183,110,145,171,135, 15,139,175, 30, 62,108,102,212,233,206,237,167,244,145, 41,156,110,110,110,203,142, 28, - 57, 98,114,110,213, 91,111,189, 21, 87,145,151, 85,215, 56,171,162, 73, 99,229,137,198,222,238,125, 26,123,151, 77, 67, 63,122, -146,129, 71, 79,210, 79, 38, 61, 74, 11,169,237, 51,117,113, 18,242, 91,179,103, 82,110,197, 64, 77,104,246, 92,157,211,209,209, -241,166, 72, 36,170,181,145,112, 77,224,121, 62, 35, 39, 39,167,178,237, 84, 61,227, 28,233,237,237,189, 60, 57, 57, 57,130,231, -249,105,166,238,163, 30,206,206, 44,203, 30,229,121,254,185, 57, 64,145, 72,244,172, 66,132, 17, 66,188,100, 50,217,115, 73,238, -117,113,174, 88, 16,240,217,235,193,193,131,175, 94,188,120,104,230,146,216,231,242,130, 38, 15,182, 31, 59,242,227, 41,223,236, -222,184,110,214,250, 67,121,223,215, 55, 78,133, 66, 17, 5,192,183,124,125,157,199, 89,126, 46,159, 43, 43, 55,245,201,155, 72, - 72,123, 71, 27,199, 47, 13, 6,195,107, 0,168, 68, 34,185,171, 82,169, 22,214, 36,174,106,227,100, 89,118,121,243,230,205,167, -220,191,127,127, 55,199,113,227,170,108,191,178, 73,147, 38, 31, 63,125,250,116,131,209,104,156, 89,227,254,107,254,127,183, 14, - 14, 14,254, 63,246,206, 59, 60,138,170,109,227,247,153,221,157, 45,217, 84, 66,218,210, 91,128, 4, 72, 32,161,132,150, 4, 65, - 81, 64,169, 74,143,162, 32, 77,144, 38,132, 23, 41, 10,137,160, 52, 17, 1, 1, 1, 5, 4, 4, 20,164, 23, 3,210,139, 36, 16, - 66, 11,144, 66, 66, 8,233,101,251,206,249,254, 72,118,217, 36,187,155, 77,136,239,231,171,243,187,174,185,118,103,230,204, 61, -103,102,118,103,158,121,206,115,158,147,179,106,213, 42,230,227,143, 63, 70, 76, 76, 76, 45, 74,169,221,227,140, 86,114,221,189, -221,220,220, 54, 25, 12, 6, 63, 74,233,129,130,130,130, 57,148, 82,203,221,203,108,104, 18, 66, 88, 0,211,154, 52,105, 50,165, -110,221,186, 94,169,169,169, 41,137,137,137, 75, 1,216,157,147,170,146,122, 6, 13, 28, 56,240,194,242,229,203, 69,245,234,213, - 67, 74, 74, 10,166, 77,155,166,219,187,119,111, 8,165,180,130, 71,221, 30,205,234,242,223,214,244,111,226,209,132, 10, 12,139, - 3, 91,251, 13, 30, 53, 98, 0,185,112,229, 30, 46, 94, 56,143,212,180,180,125, 28,195, 68,222,189,251,220, 98,147,110, 85, 52, -207, 95,185,139,139,231,207,211,244,180,244,221,160,130,255,196, 39,102,218,117,159,231,169,136, 93, 6, 86,181,197,109, 25, 88, -150, 80, 40, 20,200,180,134, 88,153, 0, 0, 32, 0, 73, 68, 65, 84,202,234, 40, 21, 10,187, 74, 36,146,112,134, 97,206,100, 63, -127, 62, 25,176,207,192,170,137,122, 86, 70,211,166, 68,108,109,232,128,234,104,150, 15, 80,175,142,102, 85, 52,236,213,180, 54, -216, 51,167, 86,167,185,235,245, 87, 87, 83,235,231,160,188,102,221,186,117, 63,224, 56,174,145,189,117, 98, 24,230, 81,106,106, -106,153,102, 19,123,207,103,243,230,205,233,189,123,247,236, 10,146,252,255,254, 45,253,155, 52,183,173, 8, 80,180,104,211,114, -102,220,181,219, 95,150, 54, 31,154, 88,248, 81, 45,167,174, 61,194,230,253,113,234,247,207,230,175,206, 46,243, 18,244, 79, 56, -118, 66, 8, 99,201,176, 32,164,164, 47,122, 85, 53, 89,150, 93,215,161, 67,135, 15, 46, 94,188,184, 73,175,215,143,173,169,122, - 86, 23, 27,247, 37, 2, 64, 92, 21,239, 92,101,154,102,235,131, 4, 2,193, 52,127,127,255,142,241,241,241,151, 12, 6,195,114, - 91,198,149, 61,154,213,225,255, 75,211,223,215, 61,152, 82, 83,178,236,197,183,239,103, 93,182, 85,190, 74,154,148, 51,112, 84, -240,249,157,196,231, 54, 71, 44,224, 13,172,202,169,214, 96,207,213,193,104, 32,217, 36, 45, 45, 5, 64, 10,128,221,127,121,133, -170,137, 61,198, 85, 85,168,142, 81,244, 87,104,148,167,212,128,178, 43,173, 67,101,148, 55,150,254, 74,238,222,189,251,143,232, -125,242, 79, 99,212,199,177,105, 0,166, 6, 91, 72, 77, 85,106, 84,205, 12,127,243,191, 93,171,255, 14,214,188, 54,182,140, 43, - 91,104,181,218, 15, 9, 33,211,104, 21,122, 31,254,127, 80,122,124, 85, 54,174,236,212,190, 6,192,106,252,239, 63,157,248,123, - 89, 87, 1, 84,210,144,254,255,175,249,111,167,102,130, 22,120,120,120,120,120,254,107,252,221,141, 43, 30, 30,158,146, 92, 46, - 61, 45,173,168,138,235,143, 16, 98, 81,195, 22,118,196, 39,241,154,188, 38,175,201,107,242,154,188, 38,175,249, 15,211,252,215, - 96,236,197,244, 87, 76, 0,122,242,154,188, 38,175,201,107,242,154,188, 38,175,201,107,254,219, 38,190,137,144,231, 47,231,235, -129,164,206,215, 3, 73,157,191,170, 60, 15, 15, 15, 15, 15,207,223,141,255, 90,144,187, 53, 8, 33, 10,148, 36,200,107, 10,224, - 14,128,179,180, 10,221,142, 45,232,213, 6,240, 54, 33,100, 8, 0, 80, 74,119, 3,216, 69, 43, 73, 41, 97, 68, 38,147,101,168, - 84, 42, 79, 0,144, 74,165,207, 84, 42,149,249,152, 3,196,108, 2, 0,106,156,104,169, 73,111,137,198,141, 27,103,168,213,106, - 79, 59,118,159, 71, 41,141,101, 24, 38,206,209,209,241,212,157, 59,119, 42, 29,134,197,156, 30, 61,122, 68, 8, 4,130,197, 0, - 96, 48, 24,230,158, 58,117,106, 75, 85,182,175, 10,132,144,142,245, 20,222,223,107,117, 90,125, 70,102,246, 60, 74,233, 47,150, -202,173,237, 71,162,132, 4, 51, 75,191, 47,155,112,192,118, 42,138,170,150,183, 81,191, 96,145, 72, 52,201,203,203,235,245,212, -212,212,171, 0,102, 81, 74, 43,205, 66, 92,191,126,253, 81, 66,161,112,132,193, 96,104, 34, 16, 8, 18,245,122,253,143,201,201, -201,219,170, 83, 7, 30, 30, 30, 30,158,127, 47, 85, 50,176, 90,214, 38,222, 20, 24, 10,130, 94,160, 56, 78,128,157, 9,207,233, - 83,123,183,239,211,146,232,116,250,146,125,178, 12, 12,135, 31, 48, 27,250,244,233, 83,119,242,228,201,232,220,185, 51, 46, 94, -188, 24,178,121,243,230,247, 4, 2, 65, 44,199,113,167, 1, 92,164, 54,210, 1, 24, 33,132,200, 1,188, 5, 96,248,235,175,191, -222,115,241,226,197,130, 86,173, 90, 65,169, 84,226,247,223,127,239,186,108,217,178,149,132,144, 19, 0,182, 3,248,133,218,200, -237,162, 82,169, 60,141,182, 18, 33,196,115,208,160, 65, 87,204,114,237, 16, 66, 8, 24,134, 1,165,244, 2,128, 11, 28,199, 93, -216,189,123,119, 74, 75, 66, 58,142,107,196,238,153,242, 80, 83, 33,231,145, 90,173,246,220,191,116, 9,132, 18, 9,212, 5,249, - 8,121,247, 69,207,234,227,159,206, 4,225,244, 16,128,230,132,127,190, 50, 22, 64, 92, 90, 90, 90,108,104,104,232, 35, 59, 79, -171, 9,129, 64,176,248,200,145, 35, 62,148, 82,188,246,218,107,139, 1,108,169,170,134, 61, 16, 66, 36,157,130, 3, 79, 31,248, -121,135,180, 48, 59, 3,189,223,122,231, 71, 66, 72, 4,165,244,103,243,114,107,223, 32, 94, 68,136,153,227,151,108, 23, 0,192, -218,200,225,179, 86,190, 70, 86, 79, 61, 74,159, 18, 66,194, 1,211,208, 74, 75, 41,165,167,215,190, 65,188, 32,192, 39,227,151, -108, 39, 0,240,109,228,240,153,107,223, 32,171, 38, 28,170, 90, 47, 73, 66,200,132,136,136,136,213,139, 23, 47, 22,248,248,248, -224,201,147, 39,189,253,253,253,155, 19, 66,252,169,141,224,224, 70,141, 26,253, 20,254,106,255, 38, 3,135, 12,149,213,118,119, -195,147,244, 76,151, 93, 59, 54,143,107,212,168,209,235,143, 30, 61,122,167,106,103,137,135,135,135,135,231,223, 76,165, 6, 86, -144,130,200,138,180,232, 47, 20,144, 81,221, 58,182,122,101,216, 27,221, 24,127,191,102,136,191,117,251,213, 95, 78, 93, 90,230, -239,197,156,212, 27,232, 54, 57,139,253,215,210,108,247,108,209,233, 33, 60,182,127, 59, 0, 96,194,123,195, 5,151, 47, 95,110, - 22, 20, 20,100, 26, 65,253,149, 87, 94,193, 43,175,188, 66,214,174, 93, 27,120,236,216,177,192,141, 27, 55,106, 9, 33,223, 83, - 74,127,179,166, 73, 8,153,212,180,105,211,101,171, 87,175,150,132,134,134, 66, 34,145,152,214, 57, 58, 58,162, 95,191,126,232, -215,175,159, 32, 45, 45,237,181, 3, 7, 14,188,182,116,233, 82, 13, 33,100, 6,165,116,141, 53, 77,115, 62,253,244,211, 32, 11, -139,143, 16, 66, 30,232,245,250,235, 1, 1, 1, 41, 45, 8,105,246,225, 27,157,143, 79,232,226, 43,183,166, 35, 20,139,177, 53, -162,228, 25,109,110, 96, 61, 58,117, 24,142,206, 78, 89, 14, 78, 78,177, 0,226, 0,196, 82, 74,227, 30, 60,120,112,219,143,144, -192, 78,110,204,247, 27,179, 13, 1,246,212, 21, 0, 4, 2, 1, 82, 82, 82,224,226,226, 34, 11, 11, 11, 75, 39,132, 44, 56,125, -250,244, 6,123,183,183,147,142, 11,102, 78, 96,115, 30,199,226,105,194, 5, 76, 27,210,213, 97,234,215,191,126, 6,224,103, 91, - 27, 17,194, 48, 75,207,115,179,167, 2, 83, 0,204,203,202,202, 10, 5, 0,119,119,119, 49,128,211, 43, 46,225,141,143,187, 84, -146, 57,210,166, 62, 97, 5, 2,193, 55, 91,183,110,125,127,212,168, 81, 37, 67, 60,252,241, 7, 28, 29, 29,177,104,209,162,134, -211,167, 79,143, 66,201,190, 43, 80,191,126,253, 81, 97,189,250, 55, 94,185,236, 51,191,130,236, 60,245,250,111,118, 93,169,211, -186,133,224,195, 73,211,157,214,232, 52,222,245,235,215, 31,197,123,178,120,120,120,120,120,236,197,166,129,213,194,131,108,233, -214,206,247,237, 97,125,186, 74,218,180,110, 5, 86,242, 34,177,115, 80,112, 48,130,130,131,153,217,133, 5,189, 46, 95,185,214, -107,207,177,139,234, 22, 30,100,215,157, 76, 26, 97,239,206,141,131,197, 46,126,203,171, 71, 81,238, 51, 41, 0,200, 93, 61, 85, -145,251,159,158,234,210,165, 11,234,214,173,203,158, 60,121,114, 12, 0,171, 6, 22,128,200, 59,119,238, 72, 4, 2,219,121, 76, - 21, 10, 5, 6, 15, 30,140, 22, 45, 90,136,195,194,194, 34,241, 98,216,138, 50, 72,165,210,103,132, 16, 79, 0,168, 85,171,150, - 97,193,130, 5, 55,104, 41, 0,192,113,220, 5,129, 64,112,129,227,184, 75,191,252,242, 75,106, 43, 66, 60,251, 6,181, 56, 59, - 97,228, 96, 7,186,103,165, 85,227, 64,149,159,111,113,185,131,163, 60, 83, 38,151,199, 74, 28,164,113, 0, 98, 1,196,213,169, - 83,231,118, 43, 66,234,118,106,209,232,216,218,143,135, 59,217, 60,176, 82,130,130,130,154,135,135,135, 75, 13, 6, 3,138,138, -138,240,237,183,223,186,200,100, 50,151,215, 95,127,125, 62, 0,147,129,229, 79, 72,155, 65, 10,193,216, 5, 79,244, 19,237,209, - 53,135, 16,226,218, 45, 36,248,241,215,209,243,157,131, 59,117,195,189,211, 63, 32, 59,187, 0,121,185,133,224, 56,174,194,200, -191, 19, 14,209,140,181,253,200,178,181,115,134,127, 66, 24,134, 4, 14,152,133, 55,189,243, 62, 34,132,220, 2, 32, 18,139,197, -198,162, 66, 66,136,162,117,235,214,203,154,189,218, 13,223,206, 29, 9,202,113, 20,192, 50,123,189, 87,132, 16, 79, 39, 39,167, - 95,142, 29, 59,214,177,125,251,246,184,120,241, 34, 30, 62,124,136, 9, 19, 38,104, 38, 78,156,200,142, 30, 61,154, 76,155, 54, -109, 50, 33,100, 15,165,244, 92,249,237,133, 66,225,136,183, 6,190, 35, 46,204,205, 87,105, 53, 90,141,187,187, 11, 85, 21,169, - 10,178,114,242,149,111, 15,125, 95, 27,119,237,226, 8, 0, 21, 12,172,151, 57,159, 60, 60, 60, 60, 60,118,211, 30,128, 7,128, - 76, 0, 87,202,205,163,244, 59, 44,204, 63, 71, 73, 88,143,187,153,214,115,148,132,247,120,160, 36, 71,231,101, 0,213, 14, 77, -178, 6,161,148,162, 52,161,176, 49,177,176,201, 72,104,225, 65,232,157, 76, 10,125,118, 34, 12, 89, 15, 96, 40,168, 56,188, 17, -145,186, 34, 79,105, 64, 74,226,109, 68, 76, 93,132, 59,153,214, 51,104,247,105, 73,116, 46, 98, 8,157, 88,128,117,112, 85, 15, -139, 62,122, 62, 56, 56, 88, 21, 25,202,244,137, 90, 91,226,217,154, 54,118, 56, 66, 62,222,115, 52, 49, 49, 81,175, 80, 40, 48, -106,212, 40, 80, 74,251, 90, 61, 0, 66, 50, 10,174,156,247, 76,232,219, 25, 29, 50, 44,135, 65,221,189,123, 23,103,206,156, 65, -114,114, 50,154, 52,105,130, 49, 99,198, 60,163,148,122, 89,211,236,221,187,119,204,210,165, 75,187,127,245,213, 87,177, 91,183, -110,237, 66,169,229,177, 6,253, 9,145, 7, 54,244,190,178, 49,234,147, 38,228,240,247,162,226,228,251,112,141, 81, 86, 56,126, -133, 66, 65,211,210, 94,156,187, 47,154,251, 64,238,226, 4,185,179, 99,198,232, 99, 87, 77,158,171,210,207, 59, 65,132, 56,215, -245,113,191,186,115,197,188, 58,204,169,159,164,236,250, 11, 54,189, 58, 65, 65, 65,205,195,194,194,206, 47, 94,188,216, 45, 45, - 45, 13, 39, 78,156, 64,195,134, 13, 81, 92, 92,140,229,203,151,167,159, 61,123, 86, 81, 90, 95,175, 14, 45, 26,196,126, 59,253, - 93, 23,118,204,167, 18, 91,154,150, 96,133,194, 53,231,143,252, 52,209, 69, 66,145,155,246, 16, 15,110,223,194,229,248, 71,186, -109,199, 99, 13,249, 74,117, 31, 74,233, 41, 75,219, 77,234, 74,154,157, 78,243, 56,112,228,247, 43,190, 62, 62, 62, 24, 55,110, - 28,158, 62,125, 10, 74, 41, 56,142, 51,245,184,136,140,140, 68,243,230,205, 17, 49,244,205, 98, 73,246,181,176, 3,241,246,141, -247, 70, 8,105,221,160, 65,131, 99,167, 79,159,246,170, 83,167, 14,206,158, 61,139,167, 79,159,194,219,219, 27, 39, 79,158, 68, -116,116,244,214,241,227,199, 15, 89,188,120,177,116,216,176, 97, 79,142, 30, 61, 90,175,124,204, 92,195,134, 13,111, 31, 56,122, -214,241,228,190,163,137,110, 78,114, 56,122,213,130,192,201, 77, 9, 10,165,151,135, 11,251, 78,255,158, 77, 31, 63,126,236,103, -190,205,203,158, 79, 30, 30, 30, 30,158, 23, 88,179, 69, 74,233, 67, 8, 57, 88,106, 15,104, 0,136,205,230, 65, 8, 57, 8, 0, -229,231,103,207,158, 29, 25, 21, 21,117,203, 56,111, 44, 51,103,206,156, 86,209,209,209, 75, 66, 66, 66,118,158, 63,127,126, 1, -128,251, 53,125, 60,118,197, 96,233, 83, 47,131,245,125, 29, 34,131, 14,186,231,119,192,229, 38, 1,114,111, 40,137, 35,178,210, -147,144,112,246,231, 18, 91,176, 18,126, 75,160, 34, 66,200,201,219,183,111, 35, 33, 33, 1, 41, 41, 41,112,112,112,168, 80,238, -143, 63,254,128, 76, 38,131,143,143,143, 93, 7, 65, 53,101,147, 5,199, 6, 53,128, 99, 72, 40,158, 15,251, 16, 39, 79,158,196, -179,103,207,192,178, 44,196, 98, 49,244,122,125,165,122, 12,195, 16,192,148,137,216, 98, 22,230, 48, 66,132,117,107, 57, 30, 88, - 59,127, 74, 35,230,194, 65,145, 50,249, 62,210, 84, 6,184,218, 81, 95,153,163, 28, 14,114,135,116,153,204,161,188,113,117, 47, -136, 16,145,220, 81,122,224,251,207,167,121, 11,174,159,148, 42,239,199,130,181,160,209,171, 87,175,113, 0,230, 83, 74,115,195, -194,194,188, 22, 47, 94,236,246,228,201, 19,196,199,199, 99,215,174, 93,153,250,146, 3, 37,148,210,133, 0, 16, 66,136,180,190, -135,235,209, 53,159, 78,113,194,233,159,196, 24,243,169, 29, 53, 45,139,139, 95,191,223, 6,141, 30, 63,113,245,148,126, 40, 42, - 80, 98,251,241,235, 56,114,237,193,155, 0,254,176, 21,215,182,230, 15,122,159, 16,242,202,192,129, 3,255, 60,115,230, 76,237, -141, 27, 55, 66,175,215, 91,156, 54,110,220,136, 19,103,175,125, 68,237, 28, 76,151, 16,162,104,212,168,209,137, 75,151, 46,121, - 56, 56, 56,224,248,241,227,200,205,205, 53,121,174, 34, 34, 34, 72,110,110,238,208,111,191,253,118,208,227,199,143,191, 60,123, -246,108, 22, 74,134,109, 42,243, 67, 16, 8, 4, 15,244,122,109, 75,133,159,175, 96, 72,191,110,221, 10,179, 98,225,232, 30,128, -139,127, 62, 56,152,151,155,173, 20, 8, 4, 15,204,203,215,196,249,228,225,225,225,225,169, 26, 70,163,202,220, 96, 42,111,104, - 25,191, 27,203, 69, 69, 69,153,230,141,219, 68, 71, 71, 47, 49,155,183,232, 68,121, 89,140, 6, 86, 24, 33,132, 2, 8,179, 84, - 72, 29,191, 23,234,132, 95,192, 54,232, 2,113,139, 55, 33,104,208, 21,201,177,167,113,227,240, 10,164,222,250, 3,148, 51,192, -167,121, 7,123,247,169,106,217,178, 37, 84,170,146,208, 43,181, 90, 13, 86,238,166,154, 54,118,184, 20, 0, 56,161,212,100, 45, -217,232,152, 87, 6,167, 46,225,232,144, 65,113,217,171,196,224, 53,122,178, 62,127,247, 93,176, 44, 11,150,101, 77,131,194,218, - 99, 96,149,142,161,101, 28,173,190, 66, 37, 8, 33, 36, 88, 34,218,190,115,254,164, 14,146,199,113, 98,245,205, 11, 72, 83,115, -244, 64,134,225, 55,123, 70, 52,118,144, 59, 60,145, 57, 56,196,201, 28,229,230, 6,214, 3, 0,160, 34,209,182, 31, 22, 78, 10, -144,103, 36,202, 85, 87, 78, 34, 93,197,105,157, 45,203, 44, 60,124,248,176,167, 80, 40,244, 54, 24, 12, 72, 78, 78,198,173, 91, -183,176,106,213,170,140,130,130,130,176,107,215,174,221, 53,171, 47,211, 94, 38,222,181,109,209,148,198,194,216, 24,169,250,193, - 77,139, 70,155, 45, 60,218, 12,120,237,205,176,192,223,198,141,156,139,254,111,188,138,209, 97,254,244, 81, 90,182, 10,192,113, -106,199,192,210,148,210, 39,132,144, 94,221,187,119,255,177,109,219,182,126,148, 82,180,105,211, 6, 67,135, 14,197,182,109,219, -112,227,198, 13,228,231,231,107,143, 29, 59,182,146, 82,186,185, 50,189,210,227,114,112,115,115, 59,114,234,212, 41, 15, 7, 7, - 7, 28, 59,118, 12, 74,165, 18, 62, 62, 62,152, 56,113,162, 56, 58, 58,122,107,126,126,254,144,168,168, 40,233,163, 71,143,214, - 28, 61,122,180, 33, 0,134, 82, 90,225, 71,160,209,104, 54,108,223,182,101,245,196, 73,147,235,156,186, 24,127, 82, 93, 84,224, - 82,175,126, 74, 65,237, 90,142,142, 43,150, 46,172,167,209,104,198,153,237,215,236,124,254, 94,173,243,201,195,195,195,195, 83, - 1,155,182, 8,240,194,104, 42,111,100,217,131,153,241,165,156, 61,123,118, 36, 33,228, 96,169,135, 75, 9,160, 98, 19,221, 75, - 34, 44,173,112, 12, 33, 4,148,210, 24,171, 37, 57, 3,180,143,206, 64,251,232, 12,100, 33, 31,225,215,168,178,195, 64,217, 57, - 72,186, 69,250, 45, 58,126, 74,173, 86, 11,183,108,217, 98,138,203, 2, 0,131,161,242,225, 11,171,138, 61, 6, 22, 74,135, 16, - 42, 53,176, 42, 84,162,145,196, 49,102,195,199, 67, 58,185, 27,138, 69,154, 63, 14,224,137,154,211,127,121, 95, 91,124, 37,151, - 46,141,180, 34,184,127,234, 56,164,156, 61, 1, 7, 71,199,148,247,207,196,153,123,173, 98, 1, 60, 4,128, 70, 82,231,147,187, -166, 13,235,234,205,130,213,252,182, 27,105,106, 78,189,238,177,110,243, 42, 11,122,198,102,181,135, 15, 31,162,184,184, 24,231, -207,159,199,207, 63,255,156, 89,222,184, 42,173,239,239,155,102,141,232,232, 92,240,148,213, 92, 57,129, 52, 53,167,110,110,199, - 73,240, 8, 24,208,133,101,200, 49,194, 8,100,111,116,243,199,212, 15, 6, 96,197,166, 95,245, 26,207,110,125, 87,255,114,232, -237, 66,181, 54,210, 30,227,202,172,206,177, 0,252, 9, 33, 18, 0,225, 67,135, 14, 61, 52,104,208, 32,196,196,196,224,192,129, - 3,190, 0,210, 1,128, 16,178, 8,128, 23, 74,122, 23, 90, 27,201,157, 97, 89,118,231,137, 19, 39, 90, 41, 20, 10,156, 56,113, - 2, 74,165, 18,227,199,143,215, 76,154, 52,137,141,136,136, 32,121,121,121, 38,207,213,249,243,231,179, 96,197,184, 2,128,212, -212,212,195, 13, 27, 54,236,210,189,123,247,254,141,125, 91, 56, 39, 22,228, 63,115,116,144,202,206,198,156,102,175, 93,185,176, - 38, 53, 53,213, 52,152,106,217,243,121,210,238,243,201,195,195,195,195, 99, 29,187,108, 17,192,102,216,144,157,219,137,162,162, -162,110, 69, 69, 69,149,241,112,213, 52,213,202,131,101,200, 75,174,176,140,114,246, 27, 88,150, 60, 83,110,110,110,122,153, 76, - 86,198,192,226,236,212,204,222,183, 3,137, 19,134,155, 60, 87, 70, 79, 22,122, 71, 84, 40, 91, 21, 15, 86,105, 48,116,153, 74, -200,189, 90, 12,219, 57,178, 87, 23,255,198,117, 24,221,174, 85, 72, 45,214,171,230,223,209,170, 18, 10,232,155,241, 22,130,167, - 77,154,122, 29,164,114, 89,146,204, 81, 94,222,184,122, 12, 0,142,222,205, 7,109, 29, 22, 30, 22,216,162, 41,163,255,105, 57, -158, 20,235, 10,103,223,214,106, 19,139,232, 94, 75,122,148,210,249,175,190,250,234,124,119,119,119,233,234,213,171, 93, 26, 52, -104, 0,189, 94,175, 41,111, 92,201,189, 90, 12,251, 41,162,119,151,230,222,110,140,110,207,215, 72, 81, 26,138, 87, 37,234,182, -174,171,228, 28,120, 4, 12,232, 82,219,197,241,232,186, 37, 19,100, 14, 18, 17, 84, 42, 21,162,215,238,193,177,115, 55,251,102, -198,237, 59, 10,224,104, 37, 18,182,120,191,111,223,190, 43, 22, 45, 90, 4,157, 78,135, 49, 99,198,224,193,131, 7,199,238,220, -185,179,170,126,253,250, 51,102,205,154,165,240,246,246,198,219,111,191,205, 2,136,176,162,241,197,246,237,219,251, 6, 6, 6, - 34, 38, 38, 6,185,185,185,240,241,241,193,164, 73,147,196, 81, 81, 81, 91,243,243,243,135, 44, 89,178, 68,250,240,225, 67,155, -158, 43,115,244,122,253,103,235, 87, 76,152,222,190, 83, 87,230,254,253,187,250,228, 14,161,204,233, 19, 7,206,184,185,185,109, - 53,150,145,123,181, 24,246,211,187,175, 87,249,124,242,240,240,240,240,212, 24,191, 1,232, 99,156, 49,247,102,153, 27, 95, 70, - 15,149,249,124,249,242,165,235,255,146, 65,201, 77, 6,150,133,128, 50,171,112, 69,153, 21,150,217,211,156,215,167, 37,209,141, -107, 15, 97,100, 40, 3, 86,238,166,234,183,232,184,197,160,104, 0,144,203,229,118,123,176, 56,181,202,230,122,179, 60, 86,118, - 25, 88, 2,129,128, 0, 56,194,113,220, 5,152, 25, 88,174,222, 45, 66,255,243,201,148,149, 93, 7,245,102, 50, 62, 8, 65,110, -161, 90, 61, 43, 94,207,165, 22,219, 54,174, 0, 0, 6,221, 35, 7,185, 99,156, 84, 94, 38,238, 42, 25, 0,100, 94,205, 58,204, -254,120,242,218, 30,195,250,145,204,241, 93,145,147,171, 84,207,184,165, 39, 79,148,116, 72, 60,165,167, 45,201,157, 60,121,114, - 61,128,245, 97, 97, 97, 25,114,185, 28,133,133,133, 21,174,129,177,190, 93, 6,245,102, 50,222,239,136,236, 34,173,122,214, 45, - 61,210,148,220, 78, 91, 85,245, 8, 24,208,197,195,213,233,232,186,197, 19, 28,210, 82, 31,131,101, 89, 56, 58, 58,226,248, 31, -113,200,188,185,255,101, 12, 43, 8, 4,130, 5,145,145,145,243, 39, 78,156,136,172,172, 44, 28, 56,112, 0,111,188,241, 6,118, -236,216,209,224,208,161, 67, 43,194,195,195, 33, 16, 8,112,240,224, 65,232,116,186,123,150, 52, 8, 33, 3,198,142, 29, 59, 99, -208,160, 65,184,124,249, 50,210,211,211,203,120,174,114,115,115,135,174, 93,187,118,208,163, 71,143, 42,245, 92,149,163, 67,163, -166,237,216, 57,243,190,130,186,248,153, 48,243,201,197,152,147,199,153, 11,217,217,217, 14, 0,242,170,123, 62,121,120,120,120, -120,236,195,134, 45,146, 89,106, 60,101, 90,154, 55, 51,172, 44,205,147,114, 94, 47, 77,185,245, 55,106,170,254,230,216,229,193, - 18,122,181,134, 62,227,166,105,158, 43,122, 86,102,189,212,169,150, 93, 77,132, 58, 61,132,235, 54,155,242, 96, 73,179,178,178, -164,181,107,215, 86,153, 27, 6, 14, 14, 14, 80, 40, 20,200,201,201,193,134, 13, 27, 0,160,178, 96,103,189,243,160,145,232, 48, -108, 12,174,212, 21,131,234,180, 38, 79,214,186,119,223, 53, 21, 34,132,128,101, 89, 99,236, 87,101, 15,219, 75,132,144,199, 28, -199, 93,160,148,210,160,230, 77, 62,147,202,229,239, 6, 7, 52,173, 61,117,194,251,162, 71,207,212, 56,213,117, 78,238,158, 47, - 62,113, 76,161,142, 19,147,104,174,109,227, 10, 72,124,235,219, 31,202,123,174, 82,219, 53,111, 50, 87,234, 32,253,160, 83,235, -230,222,179,167, 77, 16, 61,202, 80,147, 83, 29,102,229,255,188,116,150,195, 67, 56,205, 72,161, 57, 22,141,171,114,204,127,227, -141, 55,230, 83, 74, 41,199,113,243, 0,192,188,190,211, 38,125, 32, 74,124,170,194,201,174,115,115,126,254,226, 19,167, 20,216, -174,175, 71,192,128, 46, 94,110,206, 71,215, 45,153,232,144,254, 36, 9, 18,137, 4, 78, 78, 78, 72,201,200,131, 72, 40,176,153, -231,172, 50, 8, 33,146,208,208,208, 79, 38, 76,152,128,184,184, 56,140, 31, 63, 62, 61, 57, 57,121,239, 79, 63,253, 52,254,211, - 79, 63, 21,190,246,218,107, 72, 79, 79,199,178,101,203,116,127,252,241,199, 18, 0,203, 44,233, 8,133,194,247, 63,251,236, 51, -154,150,150, 70, 30, 62,124, 8, 31, 31, 31, 76,158, 60, 89,188,100,201, 18, 83,204, 85, 85, 60, 87, 70, 82, 83, 83, 99,124,155, -214,199,155,135, 87, 66,175, 83,199,228,102, 37,159, 73, 72,204,137,169, 37, 22, 79,239, 26, 20, 80,173,243,201,195,195,195,195, - 83, 35, 92,169,100,254,111, 71,101, 6,214,189,175,231,190,231,251,222,196,153,144, 53,232, 2,245,237,125,224, 10, 51, 76, 30, - 44,169,163, 27,106,213,247, 67,110,145, 26,187, 79, 94, 3, 0,139, 30, 7,107, 20, 20, 20, 32, 40, 40, 8,223, 68, 52,239,161, - 42,200,146,202, 0,168, 37,206,170,253,226,110,167, 14, 29, 58, 84,204,113,220, 78, 0,135, 42,145, 89,208,170, 85,171, 53, 95, -125,245,149,216,111,216,123, 40,188,120,182,204, 74,134, 97, 32,147,201, 32,145, 72, 16, 27, 27,139, 83,167, 78,105, 0, 44,176, - 37, 72, 8,185,164,215,235,111,236,222,189, 59,197,183, 73,221,222, 97,237, 59,124, 20, 57,103,182, 83,252,217, 99,152,183,100, - 13,215, 44,248,181,188,232, 29,251, 11,242, 28,235,191, 82,156,150,240,167, 29,135,122, 3,101,141,171, 52,191,198,245,123,132, -180,107, 59,115,222,188,185,206,183,206, 30,199,167, 75,215, 81,223,192,158,121, 75,127,254, 37,255,185, 67,195, 87,149, 25,183, - 47,219,150, 44,225,247,223,127, 95, 15, 96,189,113,190,124,125,103, 47, 90,197, 53,111,223, 59, 39,122,199,207, 69,249, 78,245, -123,218,170,175,167,255,192,206,245,124,106, 29,253,250,243, 15, 29,158, 62, 73,134, 68, 34,129,163,163, 35,146,211,115, 49,127, -229,174, 34, 45,199,245,182,167, 78, 54,144, 56, 57, 57, 73,180, 90, 45,190,249,230, 27, 36, 39, 39,135, 80, 74,147, 9, 33,235, -222,121,231,157,213,109,218,180,105,121,235,214,173,123,133,133,133, 19, 41,165, 9,214, 68, 92, 93, 93, 67, 60, 60, 60,200,133, - 11, 23,240,225,135, 31,106, 38, 79,158,204,142, 30, 61,154,228,228,228, 84,215,115, 5, 0,168, 91,183,110,232, 91,125, 58,163, - 75,175,241, 49, 26, 85,238,153, 71, 9, 91, 99, 24,122, 78, 26,212, 54,160, 90,231,147,135,135,135,135,231, 95,140,173,145,160, - 67, 1, 97,115,119,140,107, 85,135,125,186,237,139,201,180, 32,241, 60, 85, 94, 94, 79,243,247,125, 64,127, 91, 54,154, 30,250, -122, 42, 29,223,167, 21,109,233, 73,158, 54,119,199,184, 80, 64,104,190, 61,202,141,182,253, 70, 11,232,122, 53, 5,237,213, 20, -180, 79,115,232, 0, 68,182,107,215,110,255,164, 14,160, 52,126, 59,165,241,219,233,164, 14,160, 0, 62, 4,224,104,169, 78,229, - 53, 75,151,249, 0,216, 16, 20, 20,164, 63,125,250, 52,189, 51,164, 39,189,222,178, 54,157, 56,113, 34,253,244,211, 79,233,240, -225,195,169,135,135,135, 30, 37, 9, 55,125, 42,211,124,243,205, 55,235, 82, 74, 81,175, 94, 61,215, 96,191,102, 79, 99, 79, 30, -160,103,182,173,166,155, 38, 13,164, 29,219,248, 61,247,110,217,253,134,204,167, 69, 91, 91,231,206, 92,211,219,219,123, 14,165, -180, 55,165,212,135, 82, 10, 95, 95,119,199,118, 45,155,165,221, 56,113,128,158,253, 97, 13,221, 52,105, 32,237, 20,224,159, 85, -215, 47, 60, 65,234,217,178,131, 61,154,150, 38,139,245,109,221,242,185, 87,179,206,127, 90,171,175,185,102,227, 14,111,255,146, -154,150, 65, 47, 93,186, 68, 15, 29, 58, 68,207,158, 61, 75,183,253,244, 11,173,223,126, 72, 97,237, 54,253,187,216,218,183, 61, -245, 4,224,210,167, 79, 31,122,239,222, 61,250,250,235,175, 83, 0, 46,213,209, 4,176,255,209,163, 71,244,230,205,155, 52, 50, - 50,146, 2,216, 50, 97,194, 4,101, 94, 94, 30,237,217,179,103, 50, 74, 58, 41, 8,171, 83,207, 38,141,234, 68, 15,232,215,109, -193,164, 15, 7,133,190,236,249,172,169,137,215,228, 53,121, 77, 94,243,223,160,249, 79,155,108,122,176,126, 47,121,251, 95,223, -198,139,252,184,100,217,215,211,191, 89,191,101,230, 39, 31,189, 47,239,214,181, 23,226, 78,124,143,159, 15,254, 84,164, 82,107, -150,177, 2,124, 21,247,220,114, 50, 78,115,126, 75,160,162,242,203, 8, 33, 14,181,154,194,148, 67,233,126, 14, 64, 41,173, 82, -204, 48,165, 52, 29,192, 88, 66,200, 87,225,225,225,139, 63,232,210, 97,224,164,206, 61,160,211,233,176,109,219, 54, 36, 37, 37, -237, 5, 48,151, 82,106,151,135, 45, 46, 46,238,121,171,102, 13,167,212,146,177, 51, 39, 14, 31,224,145,249, 32, 30,169,183,175, - 3, 0,212,106,165, 46,253,110, 76, 96, 85,234, 39,147,201, 46,121,120,120,220,241,240,240,200, 49,168, 11,199, 74,133,206,243, -198, 15,125,203, 51,235, 81, 2, 82,110,149,180,128,170, 85,197,218,148,187,167, 90, 86, 69,215, 72,195,134, 13, 37,114, 17,198, - 89,172,175, 70,165,123,122,239,118, 91,123,116,138,213,154, 37, 11, 87,108,123,245,243,153,239, 74,156,157,157,113,237,230,125, -204, 91,190,163, 72,169,209,245,206,140,221, 87, 35,205, 96,148, 82,232,116, 58,187, 59, 48, 88,225,147,192,192,192, 22,139, 23, - 47,246,141,136,136,192,203,122,174,204,121,240, 48,117,118, 88, 88,152,255,253, 59,215,194,107,201,216, 31, 95,230,124,242,240, -240,240,240,252,123,177, 43, 6, 43, 46,131, 22, 3, 88,212,196,139,172,155,179,120,197,124,134,172,124,151,163,244,123, 61,131, -133,137,207,105,197,136,247, 42, 64, 41, 45,238,211,146,232, 95,237, 63, 92, 8, 0, 34, 97,165,241, 81,182,180,238, 1, 24, 68, - 8,105,255,221,185,203,255, 41, 93,252, 57,165,180, 74,109,181, 78, 66,220,236,234,223,164, 78,183,118,173,164, 2,131, 18,169, -183, 31, 32,187, 72,133,227,183,146,114, 25,202,124, 95,213,122, 37, 38, 38,254, 14, 0,173,155, 53,188,221,205,191,105,253,238, - 65,173, 28, 68, 68,131,212,248,107,200, 83,106,112,236, 86, 82, 30, 8,169,118,160,116, 77,213,247,105,236,254, 43, 30, 1, 3, -122, 18, 66, 78, 68, 78, 26, 38,153,191,124,103,141, 26, 87, 0,138,159, 60,121,146, 85, 92, 92,236,158,150,150,166, 65, 53,147, -187, 81, 74,239, 19, 66,218, 76,157, 58,117,209,140, 25, 51,102,126,241,197, 23,108,117, 98,174,172,145,243, 36,105, 95,247, 86, - 53,119,253,121,120,120,120,120,254,125, 84, 41, 77, 67, 98, 6,205, 4, 48,177,105, 83, 50,237,193, 3,170,169,169, 74, 88,242, -108,189, 12,165, 6, 85,191,106, 11, 48,164,224,226,189,164,194, 75,247,146, 10,193, 81,202, 81,170,102, 24,164, 20,105,181, 75, -238, 38,166, 86,191, 23, 29, 33,134, 43,247,147,149, 87, 31,164,168, 40,199, 81,142, 82, 13, 33,120,170,211,113, 75,110, 38, 62, -254,229,239, 80,223,204,216,125,231,188,253, 7,118, 59,119,233,230,180,162, 34,237,154,204,248,125,231,171, 93,175,114, 80, 74, -117,132,144, 17, 33, 33, 33,239, 25, 12,134,117,148, 82,221, 75,104,105, 0,124, 66, 8,217, 27, 23, 23,183,235,252,249,243,233, -168, 1,227, 10,192, 95,119,253,121,120,120,120,120,254, 53, 84, 43, 15, 86, 77, 26, 87,127, 71,226,238, 61, 10,250, 43,116,111, -222,123,212,250,175,208,173,233,250, 62,141,223,123, 21,192,208,154,212, 52, 66, 41, 61, 6,224, 88, 13,234, 93, 33,132, 52, 2, - 32,168, 17,227, 10,127,221,245,231,225,225,225,225,249,247, 80, 45, 3,139,135,231,239, 4, 45,137,184,172, 17,227,138,135,135, -135,135,135,167, 38, 32, 0,122, 90, 90, 65, 41, 61, 97,183, 8, 33, 22, 53,108, 81,153, 62,175,201,107,242,154,188, 38,175,201, -107,242,154,255, 60,205,127, 13,127,101, 23, 69,252,143,116, 13,229, 53,121, 77, 94,147,215,228, 53,121, 77, 94,243,255, 87,243, -159, 54, 49, 53,109,176,241,240,240,240,240,240, 24, 33,132, 72, 74, 7,120,175,214,122, 30,158,255, 85,170, 28,131, 69, 8,105, - 6,148,116,149,175,249,234,152,246, 49,201,199,199,103,108, 64, 64,128, 31,203,178, 76, 65, 65,193,194, 83,167, 78, 45, 40, 95, -174,123, 43,209, 85, 1,131,186,102, 91, 2, 68, 0, 48, 12, 12, 20,169,103,110, 20, 7,255, 85,117,228,121,121, 8, 33, 13,100, -206, 30,191, 18, 70, 32, 54,232,181, 48,232,180, 0, 94, 12,155,196,113,250, 36,189, 70,245,154,181,237,125,218, 14,172,175, 55, -208,104,128, 91, 75,192,140,167,224,190, 37,148, 25, 79, 25,172, 37, 28, 62,132, 80,183, 12,122,209, 12, 33, 43,156,155,118,109, -119,202,127,227,152,254,106,246,236,217, 35,120,153,237, 7, 15, 30,108,113,128,207, 58,117,234, 28,116,112,112,104,106,109,187, -162,162,162,244,180,180,180,240,151,217,247,223, 29, 66, 72,119, 0, 95, 3,104, 85,110, 85, 2,128, 41,148,210,147, 47,187,143, - 48, 66,132, 94,192, 56, 22,152, 5, 0, 90, 96,105, 6,176,254,247, 26,234,160, 81, 19,120,122,122,158, 17, 10,133,190, 69, 69, - 69, 69,249,249,249, 77,156,157,157, 19,229,114,185, 92,175,215,223,123,246,236, 89,247,170,104, 17, 66, 38,160,116,200, 43, 66, -200, 76, 74,233,218,170,172,231,225,249, 95,166, 82, 3,139, 16,210, 28, 64,104,233,212,189,125,251,246, 94, 69, 69, 69, 32,132, -100, 0, 56, 3, 32, 6, 64, 12,165,244,110, 77, 84, 72, 32, 16,124,185,106,213,170,233,147, 39, 79, 54, 13,210, 28, 27, 27,107, -185, 44,131,186,167, 15,158,244,188, 18,123, 7,237,123, 14, 70,137,129,197, 0,197, 79, 17,222,179,125,181,246, 79, 8,113,114, -115,115, 91, 72, 8, 25,194, 48, 76,165, 15, 51,142,227, 12,148,210,221, 57, 57, 57,243, 41,165, 5, 85,217,151,163, 92,170,211, - 27, 12, 22,247, 33, 20, 8, 12,133, 69, 42,171,233, 43,220,221,221,207, 51, 12,211,216,124, 32,235,210,250, 91,252,110, 62,175, -215,235, 83, 51, 51, 51, 43, 53, 62, 9, 33, 82, 70,200, 78, 33,132,237, 5,134,107, 14, 16, 16, 48,119, 57,131,230, 56,167,215, -174,162,148,218, 30,101,219,182,118, 3,159,122, 77,206,126, 60, 55,186,238,205,219, 9,136,156, 52, 28, 95,124,189, 5,115,166, -188,135, 85, 27,118, 96,202,216, 97,240,247, 47,255,156, 43,139,129,146,133,243,166,140, 8, 95,188,106,123,251,185, 83,134,203, - 23,175,218,222,126,238,212,225,142,139, 87,111, 15,158, 59,117,132,227,231,171,127, 12,254,207,212, 17,206,139, 87,111,215, 2, - 24, 83,157,122,142,104, 94,167, 8,122,189,229,183,107,161, 80,253,227,221, 39,242,234,232,190, 44, 17, 17, 17, 1, 74,165,242, -218,240, 94,237,162,219, 54,175,243,196, 82,153,172,167, 79,234, 36,222,185, 62, 91,196,202,130,222,154,189,197,242,159,168, 20, -137, 68,210, 56, 33, 33,193,151,227, 56, 24, 12, 6,232,245,122,211,167, 70,163, 65,247,238,221,107,164, 67, 12, 33,164, 31,128, -133, 40,137,255,140,162,148,238,122, 9, 45, 71,161, 80,248,177, 88, 44, 14,213,235,245,126, 0, 32, 18,137,110,171,213,234, 24, -189, 94,191,130, 82, 90, 88, 69,201,149, 79,158, 60,241,119,116,116,132, 86,171, 53, 13, 12, 47, 16, 8, 90,214,175, 95,255, 27, - 0,190,213,173,171, 17, 47, 96, 92,231,174, 93, 87,141,158, 62, 93,160, 60,115, 6,171, 54,111, 94,137,252,124, 0,248,166,178, -109, 37, 18,201, 81,134, 97, 26, 84,101,127, 28,199, 37,169,213,106,171, 47, 41,150, 16, 10,133,190,105,105,105,158, 10,133, 2, - 0, 32,151,203,229,230,243,246, 82,234,149, 90, 70, 41,149, 1, 0,195, 48,171, 58,119,238, 28, 66, 8,209, 3,160, 28,199, 49, -132,144, 97, 28,199, 9, 75,203, 47, 35,132,108,166,148,170,171,180, 35, 30,158,191, 41, 86,111,154,132,144, 67, 0, 66,219,183, -111, 47, 27, 58,116, 40, 66, 67, 67,225,235,235, 11,169, 84, 10, 0,200,202,202,242,250,243,207, 63,223, 62,115,230,204,219, 7, - 14, 28, 0, 33, 68, 9,224, 15, 74,169,197, 63,115,207,126,221, 38, 75, 29, 37,171, 1, 32, 51, 53, 43, 61,245,225,179,213,233, -233,233,203,168,217, 40,209,132,144, 38,163, 71,143,158,246,209, 71, 31,225,224,193,131,216,177, 99, 7,212,106, 53, 10, 10, 10, -112,234,212, 41,203, 21, 45,122,134,156, 83,209,128,252, 49,144,252, 59,224,224, 9,200,189,170,125, 66,220,220,220, 22, 78,153, - 50,101,170,191,191, 63, 40, 45,201, 58,174,211,233,160,215,235,161,211,233,144,147,147,131,105,211,166, 1, 40,137, 95,227, 56, - 14,135, 15, 31,158, 60,118,236, 88, 0,248,216,146,102, 72,112,253,171, 12, 97,234, 26,125, 51,212, 96, 72,189,112, 61, 37, 88, -111, 48, 8, 84, 42,173,197,145,195,165, 82,214,166,113, 39, 18,137,234,198,255,250,171, 39, 35, 22,131, 26, 12, 0,199,129,114, - 28, 0,179,137,150, 44,163, 6, 14, 84,103, 0,167,231,160, 87,170,209, 97,194,132, 74,207, 3, 33,164,179, 72, 44,219, 49,226, -131,233,222, 29, 59,117, 18, 53,172,167,128,222,192,225,193,163, 84,239,107, 87, 47,118,217,189,245,155,241,132,144, 97,148,210, -106,229,201, 18, 59, 56, 31, 91,243,237,119,117,175,252,121, 19, 39, 79,159,193,137, 83, 49, 0,128,163,167, 75,228, 24,198,118, -235, 53, 33,196,205,221, 55, 60, 96,242,123,253,229,159,127,181, 81, 50,249,189,254,194, 23,159,223, 73, 38,191,247,150,112,241, -138,239, 36,147,223,123, 75,244,217,210, 53,109, 9, 33,110,148,210, 28,107,122,214,174, 17,244,122,201,143,137, 25, 2, 0,200, - 92,183, 14,186,103,207,160,152, 63, 31, 0, 48,162,137,151,221,205, 26, 30, 30, 30, 87, 69, 34, 81,221,202,202,233,116,186, 74, -141,223,136,136,136, 64,165, 82,121, 85,175,215, 83,161, 80, 56,123,248,128, 87,247,247,238, 22,152,101, 94, 38, 54,246,134,251, -146, 37,191,246,223,117,173,128,190, 29,228,116,237,224,151, 17,193,125,103,108,177, 58, 98, 60,199,113,140, 90,173,198,189,123, -247,140,241, 21,229,177,232,249,170, 12, 66, 8, 3, 96,149,187,187,123,199,172,172,172, 17, 0, 34,243,243,243, 3, 4, 2, 1, -106,213,170, 21, 73, 8,121,224,226,226,178, 49, 47, 47,239, 60, 74,188, 68,118,165,248, 39,132,116,119,118,118,222,182,111,223, - 62,183,118,237,218, 49,153,153,153,104,220,184, 49,178,179,179, 59,156, 57,115, 38,104,204,152, 49, 99, 8, 33,163, 40,165,103, -170, 80,221, 22, 14, 14, 14,116,244,232,209,196, 96,120,113,184,155, 54,109,194,107,173,245, 77, 63,236, 45, 47, 86,105,104,222, -201,123, 46, 31,178, 44,251,199,227,199,143,243,170,116, 50, 0,176,192,172,209,211,167, 11, 28, 31, 63,134,227,141, 27, 24,145, -159, 47,252,162,196,155, 85,169,129,197, 48, 76,131,109, 59,191,247, 21,139,197,166,251,146,181,201, 96, 48, 64,171,209, 34,250, -115,139,227,165,219,133,131,131,131,131, 66,161,200,112,112,112,112,168,182,136, 25, 18,137, 68,184,117,235,214, 97, 98,177, 24, - 0,160,209,104,208,186,117,107,139,247, 63, 30,158,127, 2,182,222,221, 69, 37,160, 0, 0, 32, 0, 73, 68, 65, 84, 74, 95,207, -207,207,135,193, 96,128,147,147, 19, 4,130,178,207,123,119,119,119,244,234,213, 11,221,187,119,199,208,161, 67, 17, 31, 31, 47, - 27, 58,116,104, 47,107, 98,195,167,247, 69, 61,223, 18,195, 71,167,227,124,206,253,246,103,244,166,207,246,120, 0,152,110, 86, -108,204,184,113,227, 72, 86, 86, 22,134, 12, 25,114, 70,173, 86,191, 73, 41,205,183,166,105,224,144, 26, 62,116, 56, 56, 74,100, - 43, 46,109, 32, 26,149,146, 50, 12,163, 52, 54, 17,218,117, 6,202, 65, 8, 25,162, 80, 40,176,115,231, 78,104, 52, 21,211,125, - 57, 59, 59,227,214,173, 91,166,121,129, 64,128, 78,157, 58, 9, 8, 33, 67, 96,197,192, 34,132,169,123,238,202, 99, 79,227,124, -223, 94,173,216,144,224, 6, 25, 30,238, 78, 20, 0,153, 59,119, 46, 0,152, 30,108, 11, 23, 46,180,167,158, 96, 68, 34,100,198, -196,152,150, 49, 66, 6, 12, 75, 64, 68, 0, 35, 44,105, 45, 5, 5,168, 1,224,244, 0,167, 3,164, 62,245,236,209,238, 80,167, -190,239,193, 37,203,215,186,170,117, 20, 59,127, 57,137, 71,143, 30, 66,192, 48,104,210,212, 23,175,134,117, 19, 5,181, 15,169, -183,116,193,244, 3,132,144,215, 41,165,118, 13, 76, 93, 6,142, 74,155,214,175,141,141,155,174,193,195,205, 17, 67,250,191, 1, -153, 84,130, 47,190,254, 30,159,207,153, 4,223, 38, 13,176,126,229, 98,171,155,187,184,184, 44,106,215,166,101,147,239,119, 29, - 65,104,247,206,194, 45,187,142, 34,172,123, 23,225,247,187,142, 32, 44,180,155,112,203,174, 35, 8,235,222, 85,180,101,215, 17, -116, 10,110,211,244,124, 86,236, 34, 0,147,172, 31,115,185,107,244,106,201, 53,242, 21,178,166, 7,192,227,241,227, 1,192,100, - 96, 85, 5,145, 72, 84, 55, 45, 45,205,179,178,114,149,121, 9, 74, 61, 87, 87,245,122, 61,158, 61,123, 70,114,115,115,169,171, -171,107,255, 35,235, 35,247,189,214, 53, 48, 27, 0,110,220,184, 81, 43, 42,106, 73,255,159,174,230, 67,121,113, 13,249,241,215, - 24,110,196,155,161, 87,127,137,142, 8, 26, 60,120,240,117, 75,186,106,181,250, 81,219,182,109,105,233,247, 58, 18,137,132, 53, - 95, 79, 8, 81,248,250,250, 86,240, 82,219,209,116,184,234,194,133, 11,147,252,253,253,209,178,101,203,243, 29, 59,118,116,150, -203,229, 56,114,228, 8,252,252,252, 90, 57, 59, 59, 95,218,189,123,183,232,147, 79, 62, 9,220,188,121, 51, 0, 76,182,125,134, - 74,122, 53,133,135,135,239, 60,120,240,160,148,101, 89, 40,149, 74,220,186,117, 11,174,174,174, 16,139,197,120,235,173,183, 4, - 93,186,116,113, 15, 11, 11,251,185,244, 37,192,238, 30, 77, 42,149,138, 70, 70, 70,194,193,193, 1, 14, 14, 14,144,203,229,144, -203,229,112,148,130,172,155, 82, 95,246,209,134, 92,217,199,243,215, 69,111, 91,187,224,116,253,250,245, 63, 77, 78, 78,206,181, - 87,219,136,242,204, 25, 56,222,184, 1,152,253,119,237,197,197,161, 22,102,207,158,109,179,140, 80, 40, 4,203,178,232,220,185, -115,165,122,238,238,238,123,133, 66, 97,153, 55, 82, 74,169,116,246,236,217,134,187,119,239,202, 25,134,145,115, 28,135,217,179, -103, 27,244,122,189,212,203,203,235, 60,199,113, 25,153,153,153, 3, 43,211,166,148,170, 9, 33, 51, 25,134, 89, 37,145, 72,132, - 13, 27, 54, 76,154, 55,111,222, 5,148,120, 47, 65, 41,101, 26, 54,108,216, 65, 38,147, 53, 80,171,213,122, 0, 51,121,239, 21, -143, 13,130, 0,152,255, 86, 53, 0,196,165,223,179, 80, 18, 95, 82,187,220,114, 0,120,142,146, 23, 68, 47, 43,243, 89, 0,226, - 1,180, 0,224, 89,186,238, 10,128,236,151,173,176,209, 53,107,122,101,165,148,154, 30, 40, 78, 78, 78,184,114,229, 10, 8, 33, -112,114,114,130,179,179, 51, 92, 92, 92,144,159,159,143,248,248,120, 36, 36, 36,224,241,227,199, 32,132,160, 73,147, 38, 64,233, - 31,199, 76,203,116, 99,219,254,213, 65, 72, 29, 37, 32, 4,104,215, 35, 0, 1,221, 91,163,253,229,196, 41, 10,133, 98, 67, 90, - 90,218, 61, 66,136,176,117,235,214, 99, 58,117,234,132,229,203,151, 67,173, 86, 47,183,100, 92,153,107,158,185,165, 11, 6, 0, -133, 66, 49,227,135, 35, 15, 28, 70,246,110, 90,156,150,150,246,101, 85, 79, 66,249, 27,240,243,231,207,237, 30, 43,143,227, 56, -228,228, 84,116,140,152,107,150,247, 8,172, 88,181,198,181, 32, 47, 3,159,125,241, 3,116, 58, 29,166, 79,159, 14,142,227, 76, - 83,110,174,229,123,118,249,122, 82, 67, 57,167, 2, 83, 50, 17, 6, 32, 66,160,254, 59, 37,246, 68,242,206, 53, 32, 20, 32, 6, - 0,229,142,171,188, 38, 33, 68, 42, 96,101, 63, 45,248, 98,181,235,245,132, 84,252,114,242, 58,180,249, 79,144,126, 99, 31, 0, -160, 73,231, 97,216,165, 22,160, 99, 64, 83, 76,157,187,212,237, 63, 83, 71,253, 68, 8,105,105,222, 92,104,207, 3,141, 82, 3, - 62, 91,180, 8, 27, 86, 47,199,210,229,171,145,159,151, 11,145,168, 54, 0, 64,175, 55,192, 80,238,216, 42, 28, 59,165,189,255, - 51, 99, 28, 89,245,221,207,104,221,204, 27, 7,142,159, 71,112,171, 6, 56,124,234, 50, 58,181,105,132,163, 49,215,208, 41,160, - 49, 98, 46,222,194,244,137,163,201,185,195, 91,122,219, 58,159,229,175,209,202,149,107, 92, 11,242, 51,112,112,241, 86, 60,251, -230, 27, 36, 77,154,132, 14,165,101, 46, 19, 2,182,110, 93,128, 69, 5, 42, 59,246,219,183,111, 67,173,174,248, 12,145, 72, 36, -240,243,243,179,184,141,185,166, 82,169,188,166,215,235,105, 70, 70, 6,201,200,200,128, 92, 46, 39,183,110,221, 52,180,106,213, -122, 0, 77,216,243, 29, 0, 68, 69, 45, 25,176,235, 90, 62,138,207,175,134,242,194,215, 96, 27,197, 50, 27, 22,142,211,142,157, -191,254, 26, 94, 60,220,202,212, 51, 61, 61,253,117,227,247, 38, 77,154, 36,220,189,123,183,133,177, 73,185,180,169,144,213,235, -245,190,198,102, 67,189, 94, 15,181, 90,141,158, 61,123,154,222,188, 44, 29,187,155,155, 91, 39, 63, 63, 63, 92,191,126, 29,171, - 87,175,174, 21, 30, 30,142,251,247,239,131, 16,130, 37, 75,150, 16,127,127,127,209,243,231,207,241,218,107,175, 97,239,222,189, - 21, 44, 2, 11,191, 79, 39,185, 92,190,249,192,129, 3, 82,134, 97, 80, 80, 80, 0,142,227,208,181,107, 87, 48, 12,131,155, 55, -111, 98,238,220,185,216,187,119, 47,246,239,223, 47, 11, 10, 10,218, 76, 8,241, 51,111,190,183,113,141,168, 74,165,162, 18,137, - 4, 18,137, 4, 82,169, 20, 82,169, 20, 98,177, 24,133, 42, 96,236,138, 36,181, 64, 90,155,107,213,182,107,211,119, 63, 90,194, -124, 57,239,189, 83, 0,126,169, 68,179, 12, 90, 96,233,170,239,191, 95, 61, 34, 47,143, 1,128,141,132,112, 90, 74,151, 90,172, -140, 5,205, 2, 85, 46, 26, 52,173,139,159,119,238,199,160,161,253, 43,108, 35, 20, 10, 33, 18,177, 96, 69, 34, 56,213,170,232, -120, 42,175,201,178,172, 87, 66, 66,130,187, 72, 36, 50,121,228,117, 58, 93,198,188,121,243, 60,250,244,233,227,116,248,240, 97, -166, 79,159, 62, 92,237,218,181,139,174, 95,191,254, 76,171,213,186,119,233,210,165,210,122,154,173, 91,219,182,109,219,118,251, -246,237,123,111,246,236,217, 87,103,204,152,241,153,249,250,101,203,150, 45, 58,116,232, 80,131, 1, 3, 6,108,251,243,207, 63, -215,154,109, 87,227,221,252,121,205,191,191,166, 53, 91,164, 20, 47, 66,200, 65,179,245,125,141,243,179,103,207,142,140,138,138, -186, 69, 8, 57,104,190,220, 88,174, 84,251,160,165,249,210,109,107,205,153, 51,167,117,116,116,244,146,144,144,144,157,231,207, -159,127,136,154, 50,176,140, 7, 98,126,112,230, 80, 74,145,159,159,143,252,252,124,164,164,164, 96,221,186,117,165,127,100, 17, -132, 66, 33,132, 66,161, 41, 94,193, 26, 39, 14,156,253, 26,192,215, 65, 65, 65,162,184, 11,187, 15,207,218,240,209, 43,193, 61, -219, 9,174,157,140, 27, 12,224,115, 0,175,143, 30, 61,186, 54, 0,108,221,186,245, 57,128,195, 47,123,112,213,129, 82,186,251, -222,189,123, 83,125,124,124, 76, 49, 40,230,205,132,122,189, 30, 82,169, 20,198, 88, 21,149, 74,133,117,235,214,233, 41,165,187, -109,104,226,238,173, 83,184,119,235,116,201,118, 28, 7,206,240, 98,251, 5, 11, 22,152,119,125,197,248, 82, 79, 73,101,112,150, -206, 57, 45,247, 89,110,121, 5,163,172, 28, 12,195,126, 52,120,212, 36, 31,142, 8,241,235,169, 63, 33, 18,137,192,153,121, 47, - 69,130,146,183,227, 91,247,211,160,240,106,133, 55,135,141,243,222,183,109,205, 71, 0,190,176,171,210,102,180, 12, 12,193,148, -169, 83,241,221,134, 13,152, 59,127,145,201, 58,215, 27, 12,208, 87, 90, 79,134,233, 18,236,143,194,172, 84, 8, 4, 2,116,110, -219, 20, 2,129, 0,221,130,155, 67, 32, 16,160,107,251, 22, 16, 10,133, 8,235,228,143,102,205,154, 65, 40, 20,218,108,115, 44, -185, 70, 39,113,239,214,239,102,198,110,201, 53,209,166,167, 87, 40,175, 75, 79, 7,173,239, 94,165,227,165,148, 98,204,152, 49, -185, 41, 41, 41,218,242,235,234,213,171,199,158, 57,115,198,213, 74,243,156, 9,153, 76, 22, 36, 20, 10,175,101,103,103,115, 14, - 14, 14, 12,199, 25,184, 86,173, 90, 11,142,172,143,220,103, 44, 51,103, 78,228,190,183,131,156, 7,252,176,251, 32,101, 27,118, - 37, 68, 36,209,127, 48,127, 61, 43, 98,101,118,101,168, 55, 54, 23,222,185,115,199, 90,115,161,249, 49,217,108,226,201,201,201, - 25,237,231,231,119,230,235,175,191,174, 69, 8,193,217,179,103, 33, 16, 8, 76, 83, 98, 98, 34, 24,134,193,172, 89,179,180,249, -249,249,239, 87, 86, 55,161, 80, 56,245,231,159,127,118, 17,139,197, 40, 40, 40, 48,253,111, 4, 2, 1, 18, 18, 18,240,229,151, - 95, 98,244,232,209, 72, 78, 78,134, 66,161,192,244,233,211, 29,163,163,163,167, 2, 88,100,199,161,199,106, 52,154, 96, 7, 7, - 7, 72,165, 82, 24, 13, 45, 0, 56,118, 75,116,179,184,184,184, 77,237,218,181,189, 61, 98, 14,254,218, 57,252,205, 64,119, 15, -159, 16,148, 26, 88,246,242, 0,216,240, 80,175,255,207,235,251,246,121,158,219,183,143,187,240,235,175,169,210,194,194,245,118, - 11,232, 4, 72,122,144,138,160,160, 32, 92,187,118, 13, 65, 65, 47, 46, 41,203,178, 16,139,197, 96, 89, 22, 44,203,162,182,171, - 93,161, 18,148, 97, 24,156, 59, 87,118,184,209,110,221,186,101,159, 62,125,218, 17, 0,146,146,146,104,223,190,125,115,227,227, -227,225,235,107, 59, 12,205,219,219,251,140, 64, 32,104,104,190,140, 97, 24,183,129, 3, 7, 34, 39, 39,231,141,129, 3, 7,118, - 45, 93,246,100,207,158, 61, 35, 1, 64, 44, 22,131, 97,152,106, 53, 65,243,252,179,168,204, 22, 41, 45,211,183,252, 60, 33,228, - 96, 84, 84, 84,223,242,203,204,141, 41, 75,223,205,183,141,142,142, 94, 98,166,173,172,137,227, 49, 53, 17, 18, 66,104,101, 55, - 75, 91, 84,102, 96, 25,185,118,237,154,174, 78,157, 58,223,221,251,243,241, 43, 77, 3,154, 64, 38,151,188, 74, 8,249, 90, 34, -145, 76, 27, 53,106, 20, 46, 94,188,136,155, 55,111,110,162, 47,217,171,166, 77,155, 54, 71, 37, 18, 73, 3, 75,235,212,106,117, - 82, 92, 92,156,197, 88,177,156,156,156,249,165, 49,101, 86,131,220,205,227,193,204,131,220,173,213,133,114, 20, 58,173, 14, 69, -197,202, 23, 15,239, 82, 3,171,168,168, 8,239,188,243, 78, 25, 15,214,179,103,207, 42, 61, 62, 66, 8,190,252,229, 23, 28,223, -189, 27,111, 4, 6, 98,239,229,203,136, 30, 53, 28, 45, 27,212, 1, 53, 16, 80, 2, 36,239, 88,131,172,252, 66,108, 63,121, 14, -217, 5,197, 24,209,173, 27,124,157,107,219,214, 21,177,189, 58,116, 10, 97, 79,156,143,135, 72, 36, 4, 3, 14, 84, 87, 12,133, - 95, 24, 4, 12, 3, 23,175, 70, 96, 69, 34,136, 68, 66, 36,166, 60,135, 95,235,246,226,131, 98,105, 47, 84,195,192,170,223,160, - 49, 56,131, 1,163, 71,143,198,206,157, 59,225,238,221, 0, 46,245, 90,227,243,229, 27,240, 70,207,110,149, 30, 63, 0,147,129, - 47, 16, 8, 42,124, 26,191,219,227,141,164, 28,133,182,252, 53,226, 40, 40,128,186,139, 23,163,238,226,197,184, 92,186, 79,255, -162, 34, 40,149, 74,160,163,237, 32,252, 50,250,148, 66,163,209, 32, 37, 37, 69,155,158,158, 94,225,201,231,237,237,157,161,209, -104, 42, 53,104,182,108,217, 18, 27, 17, 17, 17, 92,171, 86,173,171,177, 55,110,232, 2, 2, 3, 69,135,215, 69,238, 55, 54, 15, - 2, 64, 96, 96, 96,118,100,100,228,254,145, 67,250,246, 95, 59,123,168, 97,194,162,109, 66,137, 76, 22,220,119,134,237, 64,119, - 35,106,181,250, 81, 64, 64,128,237,138,148, 82, 92, 92,252,212,218, 58, 99, 64,123,187,118,237,156,195,195,195,113,230,204, 25, - 12, 26, 52, 72,173,213,106,239, 1, 64,159, 62,125,154,111,223,190, 93, 28, 31, 31, 15, 15, 15, 15, 81, 82, 82,210,102, 66,136, -205,192,119,177, 88, 28,214,190,125,123, 70,173, 86, 87, 48,174,162,163,163, 49,108,216, 48, 52,111,222, 28, 28,199,161,176,176, - 16,225,225,225,162,213,171, 87,135,193, 62, 3,107, 74,203,150, 45,191, 68, 73, 47, 66,243,123,225,109, 0, 51, 1,224,249,243, -231, 79,251, 14, 26,125,171, 91,207,129,193, 13,155,181,246,169, 76,208,203,203,107, 14,195, 48,111,115, 28, 39,200,207,207, 79, -209, 16,210,204,191, 97, 67,175, 46,253,251, 35, 79, 36, 18,172, 58,121,146,201, 40, 44,116, 4, 96, 87, 83,163, 82, 87,136, 6, - 77, 75, 66,249, 6, 13,237,143,107,215,174, 97,240,176, 1, 96, 89, 22, 66,161,168,228,191,201,150,120,176, 92,107, 59,217, 35, - 9,157,174,236,144,160,198,243,234,236,236, 12,160,164, 37,195,184, 76,167,211,217,124,248, 1,240,221,181,104,158,167,204,217, - 5, 6,157, 14,173,250, 15, 54,253,166, 47,109, 92, 43, 3,199,201,114,147, 30, 97,242,238, 3, 53, 58,254, 44,207, 63,135,202, -108, 17,115, 3,169, 6,246,117,112,246,236,217,145, 0,232,236,217,179, 35,141,243, 81, 81, 81, 74, 0, 22, 59, 15, 85, 5, 83, - 19,225,203, 24, 87, 0, 42, 52,233,148,167, 71,143, 30,147,157,156,156, 86, 3, 64,112,112, 48, 82, 46, 62, 65,202,197, 39,240, -107,209,170, 75,187,192,224,188, 97,195,134,193,221,221, 29, 51,102,204,160, 0, 54, 85,117,255,137,119,111, 57, 2,160, 10,133, - 98, 6, 0, 40, 20,138,192,203,151, 47,123, 92,185,114, 5,237,219,191,232, 81,168,213,106,209,181,107, 87,171, 58,165, 77, 9, - 31,195, 74, 60, 85,117,160,148,131, 86,171, 69,113,177, 18, 26,141, 22,122, 29, 7,189, 94,143,160, 86, 78,216,182, 97,118,201, - 50,189,209, 91, 86,226, 37,171,235,237,132,160, 54,222, 58,134, 33,202, 43, 55,210,157, 45,233,106, 52, 26,196, 38, 37,225,198, -227,199, 0,128, 55,163, 44,182, 52,152,216,118,242, 12,252,253,253, 43,171,109,211,186, 10,111,164, 29,143, 45,185,105, 43, 83, -112,229,143, 93,112,114,114, 4, 0,180, 10, 29, 1,150, 45, 49,176,138,148, 90,212,110, 81, 15,132, 82,171,221,251,229,181,124, -142, 10, 89,105, 3,106,224, 64, 41, 7,202, 25, 64, 41, 7,137,147,187,195,164, 15,223, 5,199, 25,208,161, 67, 7, 16,129, 0, - 6,157, 26, 67,250,245, 66, 78, 94, 1,220, 93, 45, 30,114, 5, 88,150, 69,104,104,168,204,218,250,251,247,239, 43,129,138, 61, - 42, 43, 28, 53,229, 74, 12,172, 34, 37,212,106, 53,180, 26, 61,180, 58, 61,184,198, 44, 62,251,207,112,232,181,122, 20, 15, 13, - 41, 89, 54,117, 0,180, 26, 29,146, 29, 24, 38,208,223, 67,199,128, 40,175,199, 63,179, 89, 97, 74, 41,140, 70,129, 53, 44,197, -252, 89, 98,203,150, 45, 55, 34, 34, 34,130, 2, 2, 3,175,189,221, 51,240,171,184,155,183,210,226,110,222,170, 80,174, 65,243, -192, 71, 19,162,119, 78, 23,177,178, 32,123,141, 43,160,108,115,225, 75, 18, 89, 80, 80, 16,224,232,232,136,187,119,239, 66, 32, - 16,128, 16,114,159, 82, 26, 0, 0,227,198,141,123, 32, 20, 10,155, 8, 4, 2,124,243,205, 55, 68, 40, 20,182, 9, 9, 9,137, - 4, 96,213,192,210,235,245,126, 78, 78, 78,101,188, 87, 44,203, 98,246,236,217, 24, 57,114,164,201,184, 98, 89, 22, 91,182,108, - 65,112,112, 48, 52, 26,141,229,182,215,114,208,146, 65,226,109, 91,246, 0, 56,142, 43,105,102,229, 42,177,134, 75,234, 27,145, -245,246,219,205, 16, 19,131, 46, 77,154,248, 7, 5, 5, 65,171,125,225,192,108,220,184,113,189,130,130,130,167,132,144, 31, 1, -172,165,148,254,105, 83, 79, 69,145,244,160, 36,188,244,218,181,107,232,208,161,131,201, 99,101,238,189, 98, 89, 22, 50,214,177, -178,234, 1, 40,107, 96, 81, 74, 81, 84, 84,196, 28, 57,114,164,182,159,159, 31, 1, 0,127,127,127,114,241,226,197, 90, 50,153, -236,185, 66,161,168,244,197, 87,230,236,130, 45, 17,239, 0, 0, 62,237, 89,210, 50, 79, 8,193,145,133,145, 16,137, 68,120,101, - 70,100,153,242, 26,141, 6, 28,199,189, 84,250, 17,158,127, 6,246,216, 34, 53,101, 92, 25,181,140, 30,172,168,168,168, 91, 81, - 81, 81, 21,188, 97, 47, 67, 25, 15, 86,233, 14,171,101,104,149,127, 11, 42,207,242,229,203,209,166, 77, 27,171,235, 41,165, 88, -189,122, 53,126,248,225,135,229,148,210,196,170,238,191,239, 43,237, 90, 97,197,190, 91, 77,154,183, 34, 0,176,104,106, 63,166, -168,168, 8,231,206,157,131,139,139, 11,238,223,183, 47,109, 23, 33,196,201,197,197,101, 33,195, 48, 67, 4,229, 35,251, 45, 96, - 48, 24, 12, 28,199,237,206,203,203,179,154,166,129, 82, 64,171,211,163,168, 88, 5,141, 70,131,169,179,214, 84, 90,143, 40,128, -104, 53, 5,194,208,238, 33, 22,141, 7, 66, 8, 58,180, 14,197,196,145,242, 10, 15,109, 65, 73, 42, 48,180,237, 80, 50,182,244, -245, 75, 55, 65, 41, 96, 48, 0,181, 61,107, 97,211,206,175,108,237,154,232, 13, 92,233,219,176, 1,133,106, 3,252, 58,245, 69, -234,237, 24, 0, 37, 30, 35, 49, 91,210, 52,204,138, 68,224, 40, 41,201,222, 96, 5, 86, 44,107,144,147,158,232,187,225, 96, 28, -198,246,109,131, 61, 39, 98, 49,184,103, 0, 78, 95,138, 71,120, 71,127,220,186,247, 24,173,124, 27,226,155,205,187, 65, 41, 10, -190, 93,241,185,201, 35,194,113,250, 36,171,149, 52,243, 96, 93,188,120, 81, 89,222,107,101,254, 89,153, 87, 8, 40,249,253, 25, - 61, 88, 74,149, 26, 51,230,216,149,142,167,228, 26,117,235,100,213,192, 51,199,150,135,202, 30, 3,204,156, 45, 91,182,196,162, -146, 52, 43,141, 1, 4, 3,159,216, 37,248, 23, 97, 48, 24,240,219,111,191,153,174, 71,121, 8, 33,101, 60,142,149,193,113, 28, -146,146,146,112,243,230, 77,132,132,132, 32, 47, 47, 15, 34,134,193,244,184, 56,248,143, 26, 5, 13,203,130,227, 56,136,197, 98, -140, 27, 55,206,238,243, 89, 37, 74,239,145,148, 26,108,138, 19, 66,190,234,219,183,111,179,187, 69, 69,184,149,144,128,158, 11, - 22, 0, 0,126,251,237, 55, 83, 25,141, 70,131,105,211,166,137,227,227,227,199, 92,189,122,117, 12, 33,100, 57,165,116,186, 21, - 73,104,169,202, 20,131,245,246,136, 65,104,230,215, 24, 63,108,222, 97, 90, 63,109,214, 20,136, 68, 44, 68, 34, 17, 92, 93, 93, -237, 58, 26,243,123,119,113,113, 49,179,103,207,158,186, 97, 97, 97,236,216,177, 99, 9, 0,108,216,176,129,217,184,113,163,252, -216,177, 99,172,139,139, 75,197,246,242,114,232,181,101, 91,192, 9, 33, 32,132, 64, 36, 18,129, 21,179, 0,199,129, 16, 34, 95, -182,108,217,162, 91,183,110,181,111,217,178, 37,212,106,245, 40, 66,200,117,202,231,193,250,215, 83,153, 45, 98, 41,150,170,212, - 11,101,141, 76,243,184, 44,107, 6,154,121, 76, 22,128, 26,233,108, 81, 38, 6,203, 18, 2,129,160, 82,239, 20,195, 48,149, 54, - 17, 78,155, 54, 13, 78, 78,150, 93,214, 26,141,134,198,197,197,197,167,167,167,111,160,148, 86,110,125, 88,224,224,201,235,183, - 22,126, 60,160, 0,165,109,167,174,174,174,207,123,244,232, 81, 8, 64,187,107, 87,217, 23, 98,181, 90,157,100, 77,199,197,197, -101,225,198,141, 27, 63,234,223,191, 63, 83, 62, 85,128,121, 51,158,113,210,233,116,216,181,107,215, 71,159,124,242, 9, 96,197, -235,101,124,120, 23, 23, 41,161, 44, 13,112,126,112,115,143,125, 7,102,227, 1,225,232,166, 64,221, 38, 6,171, 15, 17,134, 45, -137, 17,242,110, 16,104, 90,230,228, 36,133,193,134, 38, 33, 76,226,227,228,180, 58,245,188,107,225, 65, 74, 38,188, 26,182, 65, -206,147, 23,231, 65, 40, 20, 64, 84,218, 68,232,234, 44, 71,230,179,103, 96, 24,129, 77,131,248,243,237,215,113,233,230, 99,252, -124,226, 79,104, 85, 69, 88,177,245, 8,180,234, 66,104, 85, 69,208,170, 74, 62,151,124,242, 1, 8,193, 83,173,170,176,185, 45, -173,242, 8,133, 66,116,236,216,209,170,129,243,228,201, 19, 59, 61, 88,212,228,193, 82,170,170,120,141,236,192,216, 68, 88,217, -250,234, 26, 4,198,212, 13, 50,153, 44,120,203, 22,235,233, 24, 44,225,227,227,115,216,209,209,177,145,189,229,171,144,116,116, -137,171,171,235,194,150, 45, 91,250,173, 88,177, 66, 36, 16, 8,240,202, 43,175, 52,255,224,131, 15,146, 0,160, 77,155, 54, 10, -160,228, 30, 51, 97,194, 4,122,241,226,197,155, 0,162,108, 9,138,197,226, 4, 23, 23,151,224, 30, 61,122, 32, 47, 47, 15, 41, - 41, 41,144,203,229,240,255,234, 43,196, 77,152,128,192,117,235,192,244,232, 1, 66, 8,196, 98, 49,226,226,226, 32,147,201, 18, -172,233, 17, 66, 58, 2, 88, 10,160, 11, 94, 52, 11, 82, 0,231, 0,204,162,148, 94, 42,191,141,241,198, 96,224,184,202, 46,214, -240, 25, 51,102, 32, 87, 36, 2,250,244, 1,155,152, 8,173, 86,139,144,144, 16, 4, 7,151,100,226, 8, 9, 9,129, 80, 40, 68, - 64, 64, 0, 20, 10, 5,190,249,230,155,225, 40,219,179,186, 12,234, 66, 29,146, 30,164, 34, 36, 36,196,228,169,234,211,167,143, -201,131, 37, 18,137, 76,158, 44, 98, 57,197, 94,249,227, 47, 99, 96,233,116, 58,194,178,172,240,195, 15, 63, 36,239,191,255, 62, -213,233,116, 28,203,178,204,119,223,125, 71, 46, 94,188, 40, 84, 42,149,149,190,128,183, 30, 48, 4,159,246, 42,113,130,126,222, -200, 3, 34, 86, 4, 49,203, 98, 70, 66,170,233,186, 56,111,217, 41,142,142,142, 30,220,178,101,203,146,230,118, 64,200,231,193, -226,169,196,193,147, 89,206, 56,210,152,205,103, 2, 32,165,243,153,165, 90,198,239, 87, 0,180, 47, 87,214,184, 94, 83,238,211, -184,190, 74,247, 80,107,216,122, 3,190,119,225,194, 5,223,160,160, 32, 36, 39, 39, 87,232,217,102,124, 96,201,229,114,200,100, - 50,156, 63,127, 30, 0,238, 89, 19, 59,117,234,212,215, 40,201,146, 12, 0, 80, 40, 20, 33,225,111,135,157,239,208,187, 61,182, - 71,237,200, 75, 79, 79, 15,160,165, 57,112, 8, 33, 68,161, 80,140, 20,137,133,239, 52,105, 93, 63, 20, 28,183,244,196,175,127, - 44,176,117, 32, 77,154,183, 42, 4,160, 52,235, 69, 88,229,222,132, 0,192, 48,204,144,254,253,251, 51,241,241,241,120,231,157, -119,240,195, 15, 63, 88, 45, 59,114,228, 72,236,220,185, 19,253,251,247,103,230,204,153, 99, 53, 77, 67, 89,239,136,125,205, 64, -246,112,247,222, 13,108,219,241,157,213, 24, 35, 79, 79, 15, 0,192,179,103,153,166,101,193,193,182, 19, 49,115,122,205,241,235, - 87, 47,135,116,238,254, 10,155,146,145, 11, 78,175,134,170,224,185,105,125,113,110, 6,168, 94, 5,214,161, 22,188,107,187,224, -218,133, 99, 26,173, 70,117,220,150,230, 71,253, 91, 97, 66, 63, 63,128,114, 24, 48,125, 19, 14,174,153,108,106,222,233, 58,104, - 10, 78,238, 90,101,119, 12, 95,121, 68, 34, 17,226,226,226,148,214,188, 87, 2,129,160,210,156, 90,128,209,203,168, 67,113,177, - 18,197,202,106,231, 79,173, 0, 33,196,195,203,203,235,219, 90,181,106, 73, 45, 25, 80,132, 16, 15, 15, 15,143,111,221,221,221, -165,246, 54, 17,150,167, 92, 94,172,171, 17, 17, 17, 85, 50,178, 36, 18, 73,163,123,247,238,153,146,140,218,250,212,104, 52, 8, - 15, 15,183, 43,233, 40,165,244, 0, 33,228,161,143,143,207, 57,127,127,127,151, 7, 15, 30, 96,199,142, 29,172, 72, 36,170,111, -188,127, 20, 20, 20, 64, 32, 16,224,217,179,103, 58, 0,239, 85,214, 68,166, 86,171, 99, 98, 98, 98,218,246,235,215, 79,144,144, -144, 0,129, 64, 80, 82,175,144, 16, 4,174, 91,135,155, 31,127,140,208,199,143,161,210,106, 33,149, 74,113,244,232, 81,109,113, -113,113,140, 53, 61,153, 76,182,225,209,163, 71,173,164, 82, 41,180, 90, 45, 56,142, 3,195, 48, 68, 40, 20,118,117,117,117, 93, - 13,160, 76,198, 98, 79, 79, 79,207,113,211,190,104, 97,208,235, 13,233,201, 15, 50,173,200,154,200,202,202,194,129, 3, 7,208, -169, 83, 39,132,134,134,226,201,147, 39, 72, 76, 76, 68,159, 62,125, 76,101,110,220,184,129,235,215,175,163,105, 83,171, 45,237, - 38, 56,129, 14, 77, 91, 54, 2, 43, 98, 33, 98, 69, 37,159, 34, 81,233, 84,242,221,184,204,152,179,176, 18,104,249,214, 7, 71, -199,146,166, 69,137, 68,194, 53,106,212, 40, 61, 61, 61,221, 7,128,192,152,128,213,158,151, 21,160,228, 25, 97, 52,174, 88, 49, -107,242,100, 1, 64,110,110,174,170,127,255,254, 63,170,213,234,119, 81,141, 17, 69,120,254,149, 92,249,127,218,182,218,216,250, - 97,191,209,185,115,231,117,195,134, 13,123,101,229,202,149,112,116,116, 68,122,122,186,233, 65, 40, 22,139, 81,175, 94, 61,100, -103,103, 99,253,250,245, 72, 77, 77, 61, 5, 96,156,189, 59, 78, 79, 79,191,120,255,207,123, 89,225,131, 59,187,183,234,220,194, - 53,229, 94,106, 39, 0,231, 75,141,171, 77,195,166,189,241,110,248,192, 14, 96,197, 34,164,220,183, 26, 71, 91,227, 8, 4, 2, - 1, 33, 4,239,188,243,142, 93,229,135, 14, 29,138,152,152, 24,216,106, 78,228,140, 30,172, 98, 21,138,148, 53,247,114, 54,241, -163,145,152,248,209, 72,147, 17, 97, 79, 19, 11, 0, 40, 20, 63, 89, 93,199,233,181, 43, 15,254,180,126,108,187, 14, 33, 13,130, - 91, 53,194,165,171,127, 98,251,186, 23, 78,133,205, 95, 47,194, 23,155, 79,161,158,151, 27,180,234, 34, 28,222,243,221, 83,173, -186,120,165,173,253, 85,230,148, 97, 8,129,157,249, 37, 95,108, 83,106, 52,137, 68, 34,180,110,221,218,170, 7, 43, 59, 59, 91, - 89,217, 3, 1, 40,189, 70, 26, 29, 10,139,148, 80, 22,215,140,129, 69, 8, 9,236,218,181,235,241,221,187,119,187,123,122,122, - 34, 45, 45,173,140,129, 69, 8, 9,236,210,165,203,241,221,187,119,187,123,121,121, 33, 37, 37,197,238,244, 32, 70,204,140, 43, -100,102,102,146,156,156, 28,206,205,205,173, 74, 70, 22,195, 48, 80,171,213,184,125,251,182,189,187,181,187,199,151,139,139,203, -150,157, 59,119,186, 60,127,254, 28, 2,129, 0,183,111,223, 46,211,139,208, 56,109,218,180,137, 29, 48, 96,192, 70, 0,109,109, -233,233,245,250,229, 35, 71,142, 28,243,228,201, 19, 55, 79, 79, 79,164,167,167, 67, 44, 22,131, 82, 10, 18, 30,142,110, 15, 31, - 66,107, 48, 64, 38,147,225,238,221,187,216,176, 97, 67,145, 90,173, 94,110, 73,139, 16, 34,118,112,112,240,101, 89, 22, 35, 70, -140, 40,179,110,235,214,173,120, 51, 88, 16, 60,182,151,164, 80, 15,169, 58, 67,246,250, 97,129, 64, 64,198,205, 88,218,188, 99, -247, 62,173,239,220,188,244, 32, 51, 35,245,156, 37, 93, 51,116, 26,141, 6, 45, 91,182,196,149, 43, 87,112,226,196, 9,244,232, -209, 3,161,161,161,136,141,141,197,177, 99,199,112,253,250,117, 16, 66,224,238,238,110, 12,179,176, 25,107,161, 41,210,227,217, -147,172, 10,222,170,242,243, 44,203, 66, 45,174,208, 89,213, 34, 9, 9, 9,184,114,165,228,249, 83, 92, 92, 12,161, 80,168,159, - 49, 99, 6, 24,134,161, 55,111,222,132,167,167, 39,157, 53,107,150, 65, 40, 20,234,147,147,147,237,210, 52, 26, 83, 70,227, 74, -200,138,202, 24,102, 28,199, 21,220,184,113, 99, 44, 33, 36,150, 16, 98,204,134,202,231,193,226,249, 71, 97,213,192,162,148, 62, - 4,208,147, 16, 50,124,255,254,253,203, 87,175, 94,237,209,183,111, 95,228,228,228,160, 65,131, 6,240,241,241,193,193,131, 7, -113,232,208,161,231, 6,131, 97, 58,165,180,130,171,135, 16,210,211, 90,174, 12, 74, 41, 85, 40, 20,187,213,133,133, 19,130, 66, -253,112,106,215,217, 40, 31, 31,159,113,117,234,212,153, 26, 17,249,214,187, 97,253,219,227,238,245, 71,184,120, 44, 14, 25,201, -207, 17,209,109,150, 77,205,242, 65,238,174,174,174, 99, 28, 28, 28,196, 0, 42,220,101,202,247, 34, 52,215, 52, 24, 12, 6,141, - 70,131,159,126,250,201, 46, 35,107,199,142, 29, 80,169, 84, 48,148,107, 71, 53,215,164, 28, 37, 66,145, 4,138,122, 45,161,213, - 22,129,227,170,231,173, 49,215, 36,132,128, 97, 24, 60, 16,139,225,249,252, 57, 46, 93,170,208,146, 97, 17,243, 55,231,242,154, - 0, 64, 41, 85, 17, 66, 70,172, 90, 60,227,224,164,217, 75, 93,123,116,110,139, 79,191,218, 10,173,118, 51, 24, 1, 3,153,132, - 69, 80,135, 46, 16, 64,141,111,163,103,230, 22,231,231,140,160,229,134,204,169,160,105,171, 37,133, 2, 6,142,195,137, 51,182, -115,149, 90,186,238, 6,131, 1, 66,161, 16,247,239,223, 87, 90,234, 61, 40, 16,148, 52,103, 50, 12, 99,241,173,187,236, 53,226, -136,136,149,162, 94, 3,127,104,212,133, 53,114,141, 60, 61, 61,103,238,219,183,207,221,152,242, 32, 54, 54, 22,132, 16,147, 21, - 99, 92,175, 84, 42,113,243,230, 77,227,144, 80, 21,172, 28, 91,255, 35,163,231, 42, 51, 51,147,164,167,167,195,193,193,129,137, -141,141, 85, 7, 4, 4, 92,133,237,145, 26, 76,154, 42,149,234,177,181,248, 72,149, 74, 85, 71, 42,149,138,202,109,171,240,245, -245,189, 91,190,169,208, 82, 61,243,242,242, 46,125,242,201, 39, 65,189,123,247,198,204,153, 51,179,221,220,220,156,190,253,246, - 91,161, 64, 32, 32,147, 38, 77, 50, 60,123,246,172,240,187,239,190,115,217,191,127, 63,114,115,115, 43,140, 10, 96,225,247, 89, - 64, 8, 25,219,185,115,231,173, 71,142, 28,113,240,245,245, 69,126,126, 62, 40,165,216,178,101, 11, 38, 77,154, 4,169, 84,138, -187,119,239,226,205, 55,223, 44, 46, 46, 46, 30, 91, 62, 54,210, 76,147, 16, 66, 40,199,113,152, 55,111,158, 41,169,168, 49,201, -168,147,140, 96,195,180,198,242, 41,223,229,201,135,127,250,221, 40, 0, 48,232,245,134, 59, 55, 47, 61,216,178,230,211,211, 44, -203,158,177, 86,207, 82,230, 78,153, 50,229,219, 62,125,250,200, 28, 29, 29,145,157,157,141,115,231,206,225,194,133, 11,184,120, -241, 34, 52, 26, 13,220,221,221,225,230,230,134,244,244,116, 36, 36, 36, 40, 1,204,181,165, 41,150,139,208,164,133,177, 39,239, - 11,239,149,105,158, 21, 65, 36,124,209,147,176,178,243, 9, 0,221,187,119, 71,199,142, 29, 1,148,244,138, 78, 74, 74, 74, 87, -171,213,196,204,216,127, 2,148, 24,226,245,235,215,215,111,218,180,137,218,210,188,184,225, 27, 28,249,108, 46,196, 44,139,233, -183, 83, 76,198,214,214, 30,237, 32, 18,179,240,235, 55,200,180, 45,165,116, 45, 33,100,115,233,119,181, 53,205,154,128,215,252, -251,107,254,211,168,212, 53, 75, 41,221, 78, 8, 57,252,193, 7, 31, 68, 7, 6, 6,126,176, 98,197, 10,194,178, 44, 22, 44, 88, - 64,211,210,210,190, 71,201, 91,135,213, 33, 72, 42,209,254,254,247,189,231,199,143,158,221,159, 76, 91, 25,209,245,234,201,155, - 9,109, 58,251,162, 77,103, 95, 92, 61, 21,143, 53,145, 59,126, 48,232, 12,243,210,211,211, 43,123,109, 82,247,236,210,162,124, -144,187,123,204,233,147,238, 85,237, 69,200,113,220,238, 29, 59,118,124, 52,112,224, 64,230,242,229,203, 21, 98,174,104,105, 50, - 62,142,227,112,252,248,113,104,181, 90,124,255,253,247, 28,199,113,214,243, 96,129,254,178,106,101,244,232,239,183,253, 34, 22, -179, 4, 23,206,252,140,188, 28,219, 94, 57,150, 21, 97,211,150,189, 90,150, 21,221,177,180, 94,171,213,166,156, 60,121,210,235, - 53,131, 65,196, 48, 76, 5,195,201, 26,187,119,239,214,113, 28,151,100,171, 12,165,244, 60, 33,162,126,159,207,124,111, 71,159, -183, 63,240,234,220,185,171,168,182,167, 23, 8, 33,120,150,241, 12,119,111, 94,214, 29,254,121, 99, 70, 81,113,129, 93, 67,229, -188,247,229,239,166,152, 43, 0,232, 59,105,181, 41,254, 10, 0,250, 69,124,130,240, 78,173, 64,236,113, 53,149, 98, 48, 24, 56, -189, 94, 15,185, 92, 14,189, 94,111, 49, 85,131,139,139,139, 76,165, 82, 41, 41,165, 48, 24, 12, 54, 93, 67, 20,168,241,107,100, - 48, 24,252,114,114,114, 80, 84, 84,132, 11, 23, 46,208,197,139, 23,103,102,102,102,154,130, 49,117, 58,157, 95,118,118, 54, 10, - 11, 11,113,254,252,121, 26, 29, 29,157,153,149,149,101, 43, 88,179, 2, 50,153, 44, 88, 40, 20, 94,205,201,201,225, 28, 28, 28, - 24,157, 78,167, 11, 8, 8,144,200,100, 50,187, 7, 58, 79, 75, 75,171,144,132,213, 72,211,166, 77,239,221,187,119,175,153,193, - 96, 48, 31,163,144, 85,169, 84,190,157, 59,119,182,167,105,103,202,230,205,155,177,119,239,222, 14,249,249,249, 35,147,146,146, -182, 2,232, 32, 20, 10,241,231,159,127,222, 86,169, 84,195, 6, 14, 28,184, 37, 39, 39,231, 18,128, 41,246,212,151, 82,122,132, - 16, 50,194,207,207,111,243,194,133, 11, 29, 67, 67, 67,133, 10,133, 2,237,219,183,199,221,187,119,241,219,111,191,233,214,174, - 93, 91, 84, 92, 92,252, 30,165,212, 86,243, 53, 5, 64,244,122, 61,196, 98,177,105,146, 72, 36, 96, 89, 22, 5, 74,138,247,191, - 74, 84,234, 33, 83, 46, 95, 48,246, 55, 10,144,167, 41,137,207,159, 61, 77,185, 68, 8, 57,147,150,150,102,113,168,156,166, 77, -155,138, 85, 42, 85, 91, 31, 31, 31, 33, 33,100,165, 86,171,125,119,242,228,201,222, 75,150, 44, 65,139, 22, 45,240,252,249,115, -200,229,114,248,250,250, 34, 51, 51, 19,151, 47, 95, 54, 20, 23, 23,175, 3,176,136, 82,106,179,217, 49, 55, 51, 31,117,189,234, -151,241,116, 82, 74, 65,245,128,206, 96,128, 65, 75,161, 33, 58,136, 68, 58,176,172,133, 76,184,229, 48, 26,152, 57, 62, 62,120, -114,244, 40, 74, 71,149,176,234, 69, 59,120,240,160,181, 85, 47,160, 28,196, 18,113,153,102, 65, 66, 8, 88,177, 24, 34, 49, 91, -161, 71, 12,239,181,226,249,167, 98,111, 44, 69, 46,128,113,132,144,173, 97, 97, 97, 7, 41,165, 34, 0,125, 40,165,103, 95,102, -231,233,233,233,215, 20, 10,197, 28,175,186,110,209,175,143,236,138, 22,109, 27,192,160, 55,224,220,161, 63,241,253,146,253, 59, -159,164, 60,137,160,118,180, 29,113, 28,119,186, 75,112, 11, 6,102,185,181, 21, 10, 5, 87,157, 94,132,121,121,121,243,167, 79, -159,142,153, 51,103, 86,185, 23,161,181, 50,177,183,159,141, 11,244,243,168,219,239,245,110,175,129, 48, 84,163,177,126, 63, 33, - 4,166,140,163, 44, 43,186,115,249, 70, 90,128,165,114,153,153,153,175,189,251,238,187,199,133, 66,161,221,193,201, 64,201,224, -175, 25, 25, 25,175, 84, 86,142, 82,221, 57, 66,136,239,129,157,235, 63, 62,178,119,243,107, 28,103,104, 74, 0, 8,132,236, 3, -157, 86,123, 84,173,204, 95, 81,222,115,101,141,101,227, 66, 48,101,213, 49,124, 51,179, 31, 38, 71,239,194,198,121,239, 99,206, - 87, 59,176,116,230, 20, 44, 94,253, 35, 62,157, 50, 2,131,135,191,203, 81,194,252, 97,239,113, 8, 4,130, 35,235,215,175, 31, -253,254,251,239,155, 58, 35, 80, 74,203,220,208,117, 58,157,146,227, 56,172, 91,183,142, 3,112,196,150, 94,217,107, 68,168,173, -120, 40,123,175, 81,126,126,254,123, 33, 33, 33, 91, 0, 72, 40,165,247,115,114,114, 62,164,148,154,134,112, 42, 44, 44,124,175, -115,231,206, 91, 40,165, 18, 66, 72,133,245,246, 80,154,178, 33,216,205,205,237,106,169,231, 74, 82,157, 64,119, 27, 8,108, 52, - 31, 86,218, 84, 88,250,255, 53, 13,127, 67, 8, 89,210,161, 67, 7,243,193,158,111, 3,176,219, 24, 52,211, 61, 78, 8,105, 53, -111,222,188,143,165, 82,105,120,113,113,113,115, 0,144,203,229,119,213,106,245,105,165, 82,185,162,244,190,101, 75, 67,227,224, -224,112, 87,175,215,183,246,240,240, 40,233, 33, 91,106,100, 1,192,175, 87, 13, 87, 41,213, 87,121,212,248, 67,135, 14, 53,116, -115,115,123,149, 16, 50,152, 82,218,178,160,160, 64,253,159,255,252,231,194,222,189,123,115, 27, 52,104,240,122,159, 62,125, 72, -173, 90,181,112,229,202, 21,154,149,149,245, 51,128, 72,123,122, 78,115, 28,151,180,108, 89,213,198, 22,172,236,101, 57, 55, 16, -215, 0, 0, 32, 0, 73, 68, 65, 84, 74,171,213, 62, 61,116,232, 80,237,222,207,158, 9,107,113, 92,153, 30,142,150, 58, 92,220, -185,115, 7,106,181,218,102, 18, 70,117, 94, 14,122,124,252, 9, 80,218,155,211, 72,137,231,138,130,218,184,255,241,240,252,147, - 32,127, 73, 55,102,163,184,157, 46, 68,133, 66,241,142, 84, 46,153,216,160,185, 79, 64, 90,226,179,248,130,188,226, 31,210,211, -211,215, 83, 74, 43,220,192,237,213,172, 74,162,209,255, 21,247,233,255,162,230,139, 60, 88, 6, 80,106, 0,229, 40, 40,229,192, -113,134,146,129,168, 41, 7,106, 48, 16, 66,240,135,186, 56,207,106, 38,239,242,245, 36,132,184,213,174, 93,123, 17,165,180,183, - 64, 32, 96,204,157, 95,230,223, 75, 61, 87, 71, 50, 51, 51, 63, 45,239,105,253, 95, 60,159,123,246,236,177,104,244,219,219,139, -112,240,224,193,134,170,212, 83,161, 80,156,150,203,229, 22, 19,106, 22, 21, 21, 37,167,165,165,189,106,169,158, 53,133,189,154, - 70,239, 39,181,227,134, 86,174,169,189,202,189, 8, 43,211,108,216,176,161, 68,171,213,182, 3,208, 28,128, 43,128,108,157, 78, -119, 36, 51, 51, 51,131, 16, 18, 12, 96, 94,233,102,159, 81, 74,175,218,163, 89, 83, 88,248, 31,201,106,215,174,189,153, 97,152, - 74, 7, 34, 7, 0,189, 94,175,201,206,206, 30,109,254, 34, 96,174, 89,187,118,237,171, 66,161,176, 82, 45,189, 94,159,250,252, -249,115,171,134,245,255,226,127,147,215,228, 41,207,223,162,247, 70, 90, 90,218, 79, 0,172, 71, 94, 87, 3,107,153,218,121,254, -187, 20,101,167,255, 37,215,161,212, 88,178, 58,120,243, 63, 21,163,129,100, 97,185,105,156,193,154,196,206,116, 12,255,239,216, - 99, 88, 89,217,238, 18,236, 72, 46, 90, 21, 30, 63,126,172, 6,112,190,116, 42,191,191,171, 0,250,213,228,254, 94, 6, 74,169, - 18,128,125, 61,122,236,192,150,209,196,195,243,111,163,242,254,235, 60, 60, 60, 60, 60, 60, 60, 60, 60, 85,130, 0,232,105,105, - 69, 85, 92,127,132, 16,139, 26,182,168, 76,159,215,228, 53,121, 77, 94,147,215,228, 53,121,205,127,158,230,191, 6, 90,154,240, -241,175,152, 0,244,228, 53,121, 77, 94,147,215,228, 53,121, 77, 94,147,215,252,183, 77,124, 19, 33, 15, 15, 15, 15, 15, 15, 15, - 79, 13, 99,183,129,229,232,237,231,231,209, 48,112, 75,173,122, 1,177,181,234, 5,196,122, 52, 12,220,226,232,237,103,215, 40, -245,255, 52, 8, 33, 50, 66,200,112,145, 72,116,220,199,199, 39,159, 16, 98,113,136,156,255,117, 8, 33,206,132,144,193,132,144, - 69,132,144, 1,132, 16,135,154,212, 15, 35, 68, 56,148,144,137,163, 9, 73, 30, 77, 72,242, 80, 66, 38,134, 17,242,183,232,120, - 81,147, 44,156,162, 8, 57,123,100,196,225,133, 83, 20, 33, 22,215,207, 80,184, 95, 58,254,246,170,168, 73,117,106,213,196,254, - 8, 33, 78, 94, 94, 94, 27,188,189,189, 31,123,121,121, 37,121,121,121,109, 38,132,184,212,132, 54, 15, 15, 15, 15,143,125, 8, - 1,128, 16, 18, 10,224,119, 0, 97,148,210,152,242,133,106, 53,104,243,190, 95,203, 22, 51, 63, 95, 48,151,120,212,118,147,233, -116, 6,109, 74,106,186,255,252,207,163,246,212,106,208,102,121,118, 82,220,198,170,238,152, 16, 66, 4, 2,193, 59, 18,137,164, - 47, 0,163,161,118, 91,173, 86, 31, 52, 24, 12, 63,209, 82, 31,100,101,120,123,123,159, 17, 8, 4, 13,171,178,111,131,193,144, -252,244,233, 83,235,217, 70,109, 64, 8, 25, 82,191,126,253,205,161,161,161, 14, 29, 58,116,128, 88, 44,198,188,121,243,166, 3, - 88, 97,175, 70,173, 90, 77,157,180, 18,233, 84,161, 88,220,139,254, 31,123,223, 29, 22,213,181,189,253,238, 51,125,152,161, 13, -189,216, 0, 65,154,130,189,247, 18,149,216, 34, 26, 99,143,137,122, 53, 38,150,196,222,141, 26, 91,212,104,172,177,107,108,216, -107, 20,123, 55, 88, 16,176,128, 32, 8, 2, 67, 25, 6,152, 62,103,246,247, 7, 37, 72, 40,131,201,253,238,239,230,206,251, 60, -243,204, 41,251,188,103,157, 51,195,225,157,181,214, 94,203,160, 11,166,160, 0, 35,140, 54, 25,181,151,249, 90,237,154,156,156, -248,252,234, 89, 0, 66,200, 44, 0, 35, 81, 52,173,124, 59,165,180,102, 69,114,202, 97,100, 99, 98, 48,176, 69,223, 9, 62, 23, -172,173,173,237,213,217,179,103,115,195,194,194,176,125,251,246,182, 91,183,110,253,146, 16,114, 25,192, 73, 74,105,252, 95, 57, - 23, 0,184, 0, 99, 91,183,109,187,110,196,212,169, 28,245,245,235, 88,183, 99,199, 90, 40,149, 0,176,177, 38, 60,132, 16,194, -231, 99,160,163, 35, 47,140, 82, 52, 38, 0, 33,192, 35,121,182,233,172, 94,207, 30,164, 53,237,195,243, 62,247,103,120,127, 90, -253,254,154,114,228,197,211, 57,194,143, 3,218,229,197, 95,153, 3,160,103,249,253, 70,141,104, 4,229,212, 10, 83,211,168, 20, - 0,171, 63,212,214, 98,123,173,156,156,156,158,156, 56,113,194,179,121,243,230, 92, 0,120,248,240,225,240,176,176,176,206,132, -144, 96, 74,169,242,175,240,255, 5,187, 68, 92,134,153, 32,224,241,186,177, 44,219, 16, 0, 56, 28,206, 83,157,193,240,155,209, -100,218, 72,205,172,169,102,129, 5, 22,252,115, 81,157, 22,249,111, 67,137,183,224, 42,165,148, 16, 66, 40,202, 77,245,150,186, -248, 7, 6, 5, 5, 76, 61,127,108,119,173,188, 28,133,230,167,213,123,162, 10, 56,252, 66,191, 0, 95,193, 79, 63,174,180,155, -240,245,148,111,164, 46,254,247, 10, 50,226, 98,204, 61, 41, 33,164,182, 88, 44,142, 88,181,106, 85,112,167, 78,157,120,206,206, -206,200,200,200, 64,108,108,108,112,100,100,100,191,221,187,119, 79, 37,132, 12,160,148,154,211,248,202,247,242,158, 29,206, 18, -153, 3, 88,131, 1,238,141, 26,151,196,135,241, 42,242, 34,140,122, 61, 76, 6, 3, 2,194,250, 1, 0, 76, 38, 19, 2, 3, 3, -205,107,218,247,103,187,221,131,130,130,246, 46, 93,186,148,175,213,106,113,239,222, 61, 92,185,114,197,244,238,221,187,229,230, -114, 72, 93,252, 58, 49, 98,201,193,193, 67,191,176,237, 27,230,197,171,237,226, 4,192, 10,207, 19,141,173,207, 93,140,108,118, -236,224,206,127, 73, 93,252, 6, 23,100,188,184, 82, 21,143, 76, 38,107, 73, 8,249,190,164,162, 51, 33,100, 69,189,122,245,230, -149, 29, 83,190,175, 29,165, 20, 92, 46, 55, 35, 63, 63,127,112, 86, 86, 86, 84,121, 78, 3, 11,238,254,253, 69,250, 97,206,132, -207, 56, 55,111,222,148, 4, 6, 6,106, 1, 96,229,202,149, 88,180,104,145,224,194,133, 11,189,246,236,217,211,139, 16,178,150, - 82,122,210,220,235,174, 8,124,224,187, 17, 83,167,114,164, 73, 73,144, 62,126,140,161, 74, 37,247, 7,224, 59,212, 64, 96, 17, - 66,188, 92, 93,121, 71,166, 78, 25, 21,224,237,211,146,207,231, 59,130, 82, 10,189, 46,203, 47, 57, 57,106,224,242, 31,182,206, - 32,132,124, 66, 41, 53,171,210, 44, 41,242,160, 45, 4, 32, 2, 48, 7,192, 92,185, 92,238,203,178, 44, 92, 93, 93,231, 18, 66, -142, 3, 88,226,228,228, 68,229,114,249,116, 74,105,165, 61,117, 22,126,237,222, 74, 25, 79,231,164, 19,239,143, 26, 52, 25,129, -116,114,254,163, 41, 61,221,206,217,248,144, 37,243,215,165,221, 1,128,158, 62, 62,214,222,254,146,233, 82,155,134, 50,101,234, -165,233, 61,125,124,182,157,139, 55, 79, 96,151,179,155, 0,128,187,187,251,202, 61,123,246,212,106,209,162, 69,233,119, 60, 52, - 52,148,179,114,229, 74,143,201,147, 39,175, 5, 48,202, 76, 62, 63, 39, 39,167, 11, 44,203,106,179,179,179,253, 74,182, 59,135, - 12,104,237, 96, 45,233, 34,207,205,191,158,245,236,248, 53, 51,185,154,139,248,252,163, 39,247,174,115, 11,109,209,138,145, 58, - 58, 67,147,154,134, 2,131,190,235,149, 91,119, 59,126, 57,225,187,175,139, 63,163,170,251, 37, 89, 96,129, 5,255,116, 84,170, - 69,254, 27, 81, 26,142, 41,190,160, 63, 65, 40, 20,204,152, 63,123, 58, 81,100, 43,212,218,252, 2,157, 81,163, 81, 51, 60,147, -230, 73,236,235, 76,134,203, 81, 76,153, 52,201,122,250,172,217, 51, 0, 12,173,232,248,242, 32,132,212, 14, 9, 9,185, 31, 17, - 17,225, 44,147,201,144,151,151,135,236,236,108,220,191,127, 31,148, 82, 12, 24, 48, 64,216,162, 89,179,198,115,230,206,189, 67, - 8,105,101,142,200,146,200, 28,177,178,109, 81,143,216,121, 73,217, 37,231,193,214,240,176,210, 49,139,222, 22,117,181, 16,137, - 68,165,141,130, 63, 0,173,186,116,233,194, 7,128,207, 63,255, 92,153,159,159,191, 12,192,126, 74,105,170, 57, 7, 75, 93,252, - 58, 57,186,185,159,222,180,121,165,184,161,143, 47,244, 6, 35,222,164,167,129,203,179,131,167, 39, 31,163,134,118,227,181,111, - 45,115,252,126,241,214, 51, 18, 39,191,254,133,242, 23, 23, 42,227,178,179,179,219,125,240,224, 65, 28, 58,116, 8, 0,240,226, -197, 11,248,250,250, 74,170,179, 33, 58, 58,218,187, 79,159, 62,191, 2,168, 95,221,216,242,133,236,133, 66, 33,218,182,109,139, -192,192, 64,156, 56,113,162, 35,128,191, 36,176, 0, 64,125,253, 58,164,143, 31, 3,215,174,213,248, 88, 66,136, 87,147, 38,117, -238,158, 61,179,215,241,204,217, 88,172, 94,189, 3,241,241, 69,142, 53,111,111,111,124, 54, 36,156,247,244,233,237,160,129, 3, - 63,187, 77, 8,105, 75, 41,125, 97, 6,237,194,109,219,182,205,170, 87,175, 30, 6, 14, 28, 24, 30, 20, 20,228,106, 99, 99,131, - 45, 91,182,192,205,205,205, 91,167,211,189, 58,113,226,132,123,122,122, 58, 38, 77,154, 4, 0, 83, 43, 35,234,216,163,227, 28, -225,199, 1,237, 26, 52, 25, 1,169,141, 27,182, 29, 56,136,231,191,239,110,167,213,199,206, 89, 54,209, 99,152,154, 10, 71,122, -250, 90,207,168,219,180,131, 67,253,160, 62,168,211, 36,202, 81,195,222,120, 61,119,130,247,114,174, 72,179,123,254,170,180,236, - 63, 93,115,248, 17, 78,176, 50, 78, 22,253, 27,178, 41,157,111, 42, 22, 86,165, 15, 34,150,162, 79,251,246,237, 75, 63,184,164, -164, 36,104,181, 90, 4, 4, 4, 48, 58,157,206,172,154, 86,132, 16,191,238,221,187,223, 60,123,246,172,131,159,159,223,123,173, - 91, 92, 29,236,122, 92,139, 88, 59,233,251,117,251,252,157, 3,251, 43, 50, 99,142, 61,173,134,171,121,155,150, 77, 46,157,139, -216, 43, 37, 5, 41, 16,216,101, 1,166,108, 36,252,250, 11,136,149, 12,131,199, 79,225,118,234,210,217,163, 91,207, 79, 46, 17, - 66,186, 80, 74,255, 35, 93,239, 45,176,192,130,255, 27,168, 76,139,252, 55,162, 84, 96,149, 81,141,239,193, 68, 77,141, 92,157, - 29,196,107, 87,237,122,192,209,235,116, 86,118, 54,122, 91, 27, 91, 10,107, 27,142,222,160, 47,168,237, 91,143,111,162,166, 10, - 91,133,208,114, 83, 53, 9, 33, 68, 44, 22, 71,156, 60,121,210,153,199,227,193,100, 50,193,201,201, 9,137,137,137, 80, 40, 20, -200,207,207, 71,124,108, 44,234,213,174,133, 5, 51,166,187, 77,154, 62, 35,130, 16,210,180,108,184,176, 60, 39, 0,176,134,247, -251, 57,151,180, 74, 41,143,146,109,229,247, 85,196, 89, 9, 18,147,147,147, 33,149, 74, 17, 28, 28, 44,189,117,235,214,141,202, -196, 85,121, 78,153,204,199,154, 43, 21, 31,250,121,211, 92,177,222, 16,141,152,132, 28, 52,168,215, 14, 46, 14,181,145,150,163, -195,221,251, 39, 17,253,100, 63,124, 60,106, 99,226,248,206,162,229, 43,143, 28,180,183,247,170,157,155,251, 90, 89, 17,167, 82, -169,148,122,121,121,161,118,237,162,190,100, 44,203, 34, 38, 38, 6, 44,203,150,174,151,125,223,117, 52, 18, 70,229, 27,140, 24, - 62, 28,217,217,217,210,138, 56,121, 28, 24,167,124,249, 25, 87,204, 3, 4, 18,153,174,160,160,160,212, 27,168,215,235,241,232, -209, 35,180,106,213,170,195,225,195,135,175, 85,117,147,204,189,159,122, 96,197,186,157, 59,215, 15,205,203, 99, 0, 96, 59, 33, - 38, 61,165, 43,204,225, 36,132, 16,103,103,222,209,243,231,246, 56,114,152, 56,200,108,127,192,253,251,111,160,215, 23,217,155, -157,157,137,175, 38, 40,193,231, 89,227,196,137,125, 14, 1, 1,109,143, 22,135,200, 76,149,113, 22, 67,116,238,220, 57,124,245, -213, 87,136,137,137,113,231,112, 56,184,119,239, 30,196, 98, 49, 86,173, 90,197, 9, 8, 8,112,151, 72, 36, 56,127,254, 60, 50, - 50, 50,254,244, 37, 43,203,121,245,194,213, 37,121,241, 87,230,164,147,243, 31,109, 59,112, 16, 95, 12, 25, 12, 87,154,112,195, -214,135, 44,233,254,113,155,121,148, 83, 43, 76, 98,221,200,222, 55,248, 99,240, 5, 82, 76,252,110, 17, 94, 68,159,178, 87,229, - 63,153, 64,216,148, 90, 40,238,205, 87,150,147, 30, 30,200,174, 63,112,187,201,111,181, 31,212,113,111, 50,246, 30,128, 39, 40, - 21, 88,222, 92,194,176,182,197,199,224,213,171, 87,136,143,143, 7,151,203,133, 90,173,134,209,104,172,208, 78, 15, 15,143,177, - 70,163,113, 30, 0,232,245,250, 93,110,110,110,163,247,238,221,235, 80, 86, 96,151,120,174,114, 20,202,220,219, 15,158, 61,159, - 50,118, 96,199,235,119,163, 83,236, 66,250, 37, 43, 30, 31,207,171,228, 51, 18,137, 5,130,163,231,143,237,147, 26, 94, 71, 66, - 18,208, 17, 60,169, 47, 88, 67, 42, 84,185,133,200,143,127, 7,237,166, 13, 8,157, 48, 25,167,142, 31,145, 6, 53,108,122,152, - 16,226, 75, 41, 45,237, 83, 84,131,191, 77,179, 97,225,180,112, 90, 56,255,111,114, 22,243, 86,168, 69, 0, 52, 1,224, 82,188, -156,141,162,212, 24, 71, 0, 89, 40,106,219,229, 2, 64, 7, 64, 80,230,152,242,235,101,199,150, 95, 47,187,156, 93,188,236, 92, -252,254, 0, 64, 78, 77,175,165,218,132, 98, 66, 24,165,209,100, 18, 10,156,156,180,163, 7,117, 13,190,120,233,225, 35,137,131, - 45,183,123,167, 38, 29,238, 63,141,191,195,128, 49, 16,194,152,149,215,193,225,112, 6,175, 93,187,182,161,141,141, 13, 76, 38, - 19,108,109,109, 33,151,203,161,211,233,144,151,151, 7,109,190, 18,250,124, 37, 30,167, 36,161, 77,135,142,248,228,163,238, 1, -251,142,159, 28, 12,224,215,170,120,221, 27, 53, 46,245, 92, 45,170,235, 80,186,125, 97,138,162, 84,108,253,208,216, 23,124,169, - 20,221,166,204, 48,199,212, 10, 65, 41,141, 18, 8, 4,231, 6, 12, 24,208,115,218,180,105,204,187,119,239,206, 19, 66,218, 80, - 74,171, 13,143,234,133,162,111,254,245, 77,152,189,189,148,226,240,111, 39,209,190,241, 16, 88, 9, 56,200, 86,234, 65, 8, 16, -251, 44, 2,132,200,240,228,197, 59,180, 11,181, 65,247, 30, 1,210,227, 71, 98,167,225,143,252,159,242, 32,185,185,185,200,204, -204,132,193, 96,128,193, 96,192,192,240,112,236,217,189, 27,133,133,133, 80,171,213,208,233,116, 96, 89, 22, 12,195,224,183,211, -135,145,242, 58, 22,173, 91,181, 2, 42,113,189,238,138,162, 60, 66,200,221,231,207,159, 35, 54, 54, 22,111,223,190,133, 72, 36, -130,171,171, 43, 22, 45, 90, 4,173,182,168,135, 88,120,120,120, 7, 0, 85,122, 46,204, 65, 60,176,245,181,209, 56,167,231,177, - 99,206,183,142, 29, 51,221, 57,121,242,173,168,160, 96,139, 57,199,242,249, 24,184,114,197,248, 6, 18,137, 4,111,147,215,194, -223,159,143,169,147, 29,176,236,135, 44, 0,192,164,175, 60,209,172,169, 35,148,138, 35,112,116,158,133,245,235,191,246, 25, 57, -114,205,112, 0,187,170,161,158,115,242,228,201, 79,124,125,125, 61,162,162,162,136, 64, 32,128, 88, 44,134, 88, 44,134, 72, 36, - 66,102,102, 38, 18, 19, 19,233,202,149, 43, 83, 81, 20, 66,172, 20,197, 97,192,158, 83,122,186,157,123,254,251,238,118, 30,156, -215,143, 63,153,216, 54,233,201,221,168,252,139,191,221, 90,108,212,136, 82, 20,111, 47, 77,247,106, 22,229, 56,225,219,133,216, -176,114, 62,158,223,187,158,227, 82, 91,185, 81, 76,180,187, 90,116,251, 51,103,199,142, 11,185, 19,230, 14, 50,142, 29,249,137, -221, 41,151,219, 99,207,114,137, 60, 61,235,247, 85, 72,140, 82, 11,235, 55, 30,230,231,205,232, 34, 35, 35,197,237,219,183,135, - 70, 83,148,214,196,225,112,176,119,239, 94,147,209,104,172, 48,236,172,215,235,231,165,166,166,186,169,213,106,124,244,209, 71, -147, 86,173, 90, 37, 41,233, 33,199,178, 69,133,227, 75, 60, 87, 75,126,220,115,225,155,121, 27,175, 92,248,245, 7,247, 37, 51, - 70,119, 28, 58,241,251, 43,168,164,207, 35,151, 97, 38,156, 58,182,195, 85,100,111,128, 88,214, 29,154, 12, 53,158,111,253, 2, - 42,165, 6,205,150, 44, 4, 32,128,206,192, 96,203,199, 3,193,115,112,199,252, 49,163,221,103,111,217, 54, 30,192,218,106, 62, - 35, 11, 44,176,224,127, 15, 46,132,144,211, 0, 48, 99,198,140, 89,203,150, 45,123, 70, 8, 57, 77, 41, 13, 3,128,146,229,146, - 49, 0, 80,209,122,201,216,242,235,229,151,103,206,156, 25,180,124,249,242,165,173, 90,181,250,245,246,237,219,175,241, 1, 2, -139, 41, 62, 9, 41,251, 94, 22, 38,147,233,250,171,132, 36, 85,143,110, 45, 61, 78, 93,125,250,112,212,168,222, 93, 6,245,105, -215,253,117, 74,102,156, 79, 29, 87,199,232,103,143,109, 76, 38,211,117,115, 78, 38, 20, 10,195, 58,119,238,204,205,205,205,133, -149,149, 21,228,114, 57, 82, 83, 83,161,215,235,161,201, 83, 64,155,167,128, 70,145, 11,125, 94, 46,226, 31,222, 71, 35, 31,111, - 97,113, 18,124,149, 40,241,178,148,247, 76,149,245,100, 9,172,173, 33,180,182, 6,169, 97,120,144, 16,210,215,222,222,254, 46, - 33,100, 14, 0,232,245,250, 9,211,167, 79,207, 50,153, 76,248,254,251,239,109,164, 82,233, 97, 66,136,176, 58, 30,107, 39, 78, - 88,171,208, 96, 38, 46,241, 9,218,134,140,128,159, 87, 47, 36,102,168,145,149,175, 71,166, 66,143,102,237,127, 66,221,144,133, -168, 21,186, 12,177,111,114,224,238,225,203,128, 43,172,178, 41,115, 70, 70,198,123,235,191, 30, 56, 0,149, 74, 5, 31, 31, 31, - 12, 25, 50, 4,211,167, 79,199,144, 33, 67,224,238,238,142,161,131,250, 96,254,252,249,200,204,204,172,206, 84,173,159,159,159, -182, 78,157, 58,218, 58,117,234,104,245,122, 61, 10, 10, 10,160, 80,252,209, 55,183,248,126,127, 93, 29, 81,121,184,184,184,204, -116,115,115,123,226,226,226,242, 76, 36, 18,157,125, 68, 72,156,182,110, 93,151, 54,253,250,145,192, 65,131, 56,201, 86, 86,228, - 26, 32,173,150, 8,128,163,140,215,187, 83,231,158, 2, 69,238, 14, 0, 69, 78,169,209,163,156,112,243, 90, 16,110,221,104,138, -175, 38,248,128, 48, 34, 16, 70, 0, 85, 97, 36, 90, 52,111,197,183,179, 35, 85,126,151,138, 19,218, 31,181,105,211,198,125,226, -196,137, 68, 40, 20, 98,210,164, 73,250, 49, 99,198,188, 28, 50,100,200,203,203,151, 47,179,117,234,212, 65,173, 90,181, 72,173, - 90,181,220, 0, 60, 42, 62,166, 74,216,248,144, 37, 90,125,236, 13, 59, 95,201,107, 22,142,173, 11, 12,194,129,243, 87,165,101, - 47,222,152,176, 58,241,185,202,251,249,189,235,217, 47,163, 79,153, 18, 31, 92,205, 74,123,153,239,189,120, 99,194,234,153, 27, - 82, 43,252, 99,190,118, 13,166,136,211,215,244,170, 66, 21,183,223,199,157, 84, 99, 63, 31,236, 39,147, 6,237,133, 71,247,144, -186,181, 61,135,206, 95,186, 94, 63,102,252, 55,250,237,191,236,160,249,249,249, 80, 42,149, 88,191,126,189,241,212,169, 83,169, - 44,203,126, 83,137,137, 28, 0, 48, 24, 12, 24, 59,118,172,196,198,198, 6, 41, 41, 41,165, 30, 80, 0,120, 39,207,126,122,235, - 65,116,220,148,113,225, 29, 10,181, 90,237,133,171, 15, 99, 3,125,235,120, 18, 66, 43,157, 96, 34,224,241,186, 53,109,209,130, - 67,169, 2,132, 91, 27,241,187, 87, 66,153,158, 3,101,102, 14, 56, 60, 9,140, 16,194, 96, 18,192,174, 81,115,188,120, 16, 5, - 15, 39, 23,174,144,199,179,180,184,178,192,130,255, 81, 84,165, 69,202,140, 9, 91,190,124,249,210,170,246,151,121,215,149, 91, - 47, 21, 80,229,197, 87,217,101, 0, 88,190,124,249, 82, 74,105,216,237,219,183, 15, 0,168,178,193,121,101,168, 86,109,112, 52, -186,101,211,166,207,129,173,141,216,182, 69, 99, 95,215,227,231,175,254,126,253,246,195,216,186,158,142, 78,212,160,179, 95,177, -102,131, 39, 81,169,205, 77,242, 14,112,116,116,132, 94,175,199,171, 87,175,240,246,237, 91,232,245,122, 24, 11, 11,161, 85, 40, -160,201,205, 5, 91,152, 15, 62,203, 66, 45,207,132,131,149, 8,248, 99,134, 97,149,168, 40, 44, 88, 54, 36, 40,178,177,129,208, -218, 6, 12,143, 87, 97,248,176, 18,206, 38,205,155, 55, 63, 20, 29, 29,221,162,107,215,174,139, 9, 33,182,148,210, 55,169,169, -169, 93,230,206,157,171,117,113,113,193,216,177, 99, 27, 0, 24, 81, 29,151, 80,160, 11,168,227,218, 0,126,222, 35, 80,183, 86, -103, 40, 10, 13,144, 43, 13,200, 84,232,177,229,167, 86, 56,186,189, 57,110, 30,109,135,232, 11,221,160, 48,184, 66,234,222, 23, -148,213, 5, 85,197,121,251,246,109,108,222,188, 25,155, 55,111,198,166, 77,155,176, 97,195, 6,228,230,230, 34, 56, 56, 24,201, -201,201, 56,119,238, 28,222,189,123, 7, 71, 71, 71, 60,122,244, 8, 91,182,108,193,253,251,213,231, 17,155, 51,129,147, 82, 90, -227, 88,185,209,104, 28,249,174, 95,191,134, 25, 50, 89, 96,227,198,141,123, 78,154, 52,201,187, 77,155, 54,165,251,189,188,188, -106,139,197,226,116, 66,200,118, 66, 72,104, 85, 92, 38,160,177,147, 83, 48,116,218, 56, 0, 0, 33, 60, 16, 34, 66,231,110,177, -104,211,238, 33,244, 6, 62, 24, 34, 4,195,136, 96, 52,102,195,222,222, 29,148,146,224,106, 76,156, 43,151,203,125, 47, 93,186, -196, 36, 38, 38, 66, 36, 18, 1, 64,210,130, 5, 11, 54,172, 94,189, 58,198,193,193,129, 61,125,250, 52,142, 31, 63,142,176,176, - 48,206,152, 49, 99,124,107,213,170,181,185,186,235,158,191, 46,237,206,254, 53,231, 62,229, 25,236, 67, 69,226,186,245, 80, 40, -237, 59,161,163,147, 4, 0,206,197,199,231, 59,215, 86, 46, 47,204,127,146,108,231, 89,240, 67,117, 9,238,148,206, 55,253,254, - 50,238,238,254, 99,231,243, 50, 51,114,121,141, 27, 6,169,151, 45,250,150, 95,183, 94,253, 21,243,167,143,115, 77, 85,138, 20, -221, 38,157,139,139, 56,127,191, 96,216,168, 47,140,159,127, 57, 81,115,238,252,111,199, 76, 38, 83,195,202,102, 16,154, 76, 38, -188,123,247, 14,207,158, 61, 67, 66, 66, 2,228,114, 57,178,178,178,144,159,159, 95, 26, 86,180,202, 87,158,217,176,243,212, 99, -137, 88,108,213,162,161,111,237,123, 81, 49,153, 18,177,216,202,183, 94,109, 63, 66, 22, 86,248, 28, 97, 89,182,161,200, 74, 12, -128, 64, 17,125, 29, 5,185, 5, 40, 80, 20, 32, 63,167, 0, 90, 61, 7, 26, 45, 3,181,142, 65,157, 14,221, 81, 80,168, 65, 65, -118, 30, 76, 44, 27, 82,221,253,180,192, 2, 11,254,119, 65, 8, 57, 61, 99,198,140, 89,102, 14, 55, 59,140, 89, 94,112,205,152, - 49, 99, 22, 33,228,244,204,153, 51,131, 96, 70,206,114, 69,168,182, 76, 67, 86,214,139, 2, 27,167,192, 1,147,191,155,119,238, -192, 47, 27,157,116, 58,117,178,163,189,148,181,182, 18,218,143, 25,251, 61,242, 11,114,251, 23,152, 89, 86, 0, 0,114,115,115, -241,250,245,107,136,197, 98,240,121, 60,176,106, 53, 88,117, 33,212,185,217, 96,244, 90,240, 89, 22, 50, 43, 49,234,184,187,162, -174,139,171, 89,156,175, 34, 47,150, 38,180,151, 13, 11,174,108, 30, 0,129, 68, 10,129,181, 20,255, 58,125, 21, 0,192,231,243, -129,185,139,171,229, 36,132, 56,122,120,120,156,220,191,127, 63, 95, 46,151,227,209,163, 71,143, 41,165,121,132, 16,107, 0,166, -216,216,216, 75,209,209,209, 97,190,190,190, 0,224, 83, 29,159, 50,139, 97, 13, 70,138,148,244, 36, 36,190,141,130,204,214, 11, - 60, 43, 63,100, 42,244, 16,138,189, 96,208,254, 17,101,212, 40,223, 64,173, 55,111,162,163, 94,175,135, 94,175,135,193, 96,128, - 86,171,197,176, 97,195,112,235,246,109,252,122,252, 50, 94,199,191, 64,131,122,174, 24, 62,124, 24, 66, 67, 67,241,224, 65,213, -249,195, 35, 27, 19,195,236,246,224,174,233,201, 64, 32,117,208,182,156,126,225, 94, 85,227, 75, 68, 86, 85,191, 54, 74, 64, 8, - 89, 29, 22, 22, 86,255, 69, 97, 33,158,197,197,161,235,130, 5, 0,128, 51,103,206,148,142,209,233,116,152, 50,101,138, 32, 38, - 38,230,243,135, 15, 31,126, 78, 8, 89, 67, 41,173, 56,137,156, 2,103,206,220,193,184,113, 49,144,203,139,242,176, 15, 30,248, - 67,143, 38,190,214,227,163,222, 69,145, 43, 59, 59, 59,172, 89, 83,157,182, 42, 2,203,178,216,186,117,107,105, 88, 16, 0,184, - 92,110,155, 41, 83,166, 12,168,104,124,253,250,245,249,213,113, 78, 9,247, 20, 61,122, 35,158, 96, 91,191,110,144,141, 99, 35, -100, 27,162,130,163, 82,223,125, 53, 37,220,115,237,154,195,111, 53, 98,162,221, 69,216,148, 90, 92,145,102,183, 57, 54,198,159, - 91,175,179,171, 59,106,119,186, 92, 57,123,226, 23,159, 57,216,216, 57, 23,110,223,176,204,158,225, 48,244,228, 67,189, 34,200, -219,193,174,111,203,117, 5,227, 38,207,141,210, 25, 83, 38, 34,229,228,139,170, 74, 85,176, 44,139,180,180, 52,200,229,114, 36, - 39, 39, 35, 43,171, 40,204,154,149,149,245,167,153,168, 53, 1, 33, 4,234,228,100,188, 57,182, 29,117,135, 13, 67,179,197,139, -192,154,184, 80,171, 88,172,105,221, 5,185,121,106,104, 77, 4,238, 77, 90,227,139,179, 55,192, 80, 22,216, 82,163, 10, 29, 22, - 88, 96,193, 63, 8,230,148,105, 40, 17, 66,203,150, 45,171, 54,186, 85, 83,148, 21, 89,203,150, 45,123,182,108,217,178,191,116, -174,106,203, 52, 0,128, 82, 30,147,224, 80,167, 81, 90,161,186,192,202,217,197, 81, 39, 21, 9, 77,121,202, 66, 78,212,211,199, -250,130,119,175,158,215,224,124,177,209,209,209,193,105,105,105, 72,126,243, 6, 70,117, 33, 24,173, 14, 84,163, 66,215,182,173, - 33, 2, 32, 98, 8,248, 38, 61,184, 28, 1,242, 11,148, 0, 16, 91, 29, 41,107, 48,148, 46,151,136, 43, 66, 8, 4,214,214, 16, - 72, 36, 16, 72,173, 75,247, 1,230,121,104,132, 66,225,254,195,135, 15,187,121,120,120, 96,209,162, 69,240,244,244,244,111,216, -176,161,170, 93,187,118, 98, 23, 23, 23, 4, 6, 6,162,117,235,214, 56,119,238, 28, 0, 84, 91, 19,202, 96, 20, 61,121,158,132, - 54, 89, 57,183,113,227,234, 38,232,212, 90, 52,238,176, 9,122,110, 93, 56, 5, 45,132,233,213, 94,168,210, 79, 0, 0,172, 92, - 63,198,219,228, 36, 16,142,224, 89,181,134,150, 1,165, 20, 79,158, 60,193,129, 19,215,224, 86, 39, 0,201, 47,227, 16,119,229, - 18,110, 57, 57,160,110, 96, 16, 12, 6, 67,149,215,110, 96,193, 93,178,177,180, 76,131, 48, 39, 39, 71, 40,147,201,180, 64,209, -189,115,115,115,171,240,156,102,138,172,207,166, 77,155, 6, 5,143, 7,244,238, 13,126, 66, 2,244,122, 61, 90,181,106,133,166, - 77,155, 2, 0, 90,181,106, 5, 46,151,139, 70,141, 26,193,221,221, 29, 27, 55,110,252, 12,149,204,210, 99, 8, 30, 25,141,217, -254,222,222,222,165, 2,107,247, 30, 57,162, 30,118, 3,129, 0,235, 55,252, 81,149,161,118,237,218, 72,127,151, 0, 66,104,116, - 53, 54, 46,118,117,117,157,235,230,230,230,189,122,245,106,142, 72, 36,194,248,241,227,189, 10, 10, 10,234, 2,192,242,229,203, - 49,115,230, 76, 0,192,252,249,243,177, 96,193, 2,104,181, 90, 85,101,100,123,126,108,228,158,153, 99,250,220,197,213,163,127, - 39,199,186, 13, 59,247,232, 10, 47,223,206,232,220, 35, 25, 0,150,202,184, 73,131, 86,206, 9, 62,230, 88, 75,182,227,226,249, -223,230,183,237,208,121,246,140,177,246, 75,150,111,201,173, 54,167, 49,239,205,174,252,231,130,193, 63,254,180,121,207,143,243, -102,126, 45, 74,150,235,114, 83,115,105,129, 84,200,149,250,184, 16,233, 87,223, 45,126,157,150,150, 48, 21, 41,231,171,157, 57, -105, 50,153,144,144,144, 80,154,179,167,209,104, 80, 88, 88,136,148,148,148,210, 16,161, 90, 98,243,209,196, 81, 31,135, 20,170, -213,170,123, 79, 95, 38,207,153, 52,180, 85,161, 90,173,122,153,152,252,130,210,117, 21,170, 48,134, 97,158,170,242, 85, 93, 85, - 10, 13,228,143,158,195,179, 75, 29, 24,140, 4, 58, 35, 11,121,118, 62,180, 70,128,101,120, 8, 26, 52, 28, 44,225, 34, 43, 45, - 21, 12,135,243,184, 58,123, 45,176,192,130,127, 44,170, 45,211, 64, 8, 57,221,170, 85,171, 95,129, 63,188, 76, 37,203, 0,180, - 0,170, 74,217,145,151, 21, 81, 37, 97,195,202,206, 83,142,183,198,168,182, 76, 67,241, 62, 18,210,176,142,251,202,249,159,121, -154,140,198, 6,153, 89, 25, 70, 46, 87,200,171,101,171,126, 87,147,147,105,181,218,211,151, 46, 93,234,215,173, 91, 55,225,203, -167,143,161,203,203,131, 46, 79, 1,158,201, 8,153,184, 41, 24,189, 22, 68,167,131,135,191, 9,154,124, 49,174,221,138, 54,104, -181,218,211,213,241,150, 8, 44,134,195,121, 63,239, 74, 42,133,208,218, 6, 66,169,180,124, 8,177, 74, 49, 64, 8,177,234,211, -167, 79,151,150, 45, 91,130, 82,138,173, 91,183, 66,175,215, 11,244,122, 61,116, 58, 29,244,122, 61,148, 74, 37,246,236,217,131, -159,127,254,249, 22,128,157,213,217,104, 50,234, 46, 93,248, 45,178,249,232,161, 97,188,179,167,215,192,168, 99,161, 38,158, 40, - 44, 52,160, 64,103, 5,214, 97, 24,144,113, 6, 28,174, 8,173, 26,121,225,196,145, 8, 61,140,218,203,213,241,150, 23, 76, 26, -141, 6, 41,201, 73,120, 27,255, 2, 82,101, 58,156,108,172,160, 74,120,129,208,225, 35,160,211,233, 42, 97,169, 28,181,106,213, -130,201,100, 66,167, 78,157, 74,147,166, 43,178,193, 28,145,149,157,157,141, 83,167, 78,161,101,203,150,232,208,161, 3, 82, 83, - 83,145,144,144,128,222,189,123,151,142,121,252,248, 49,162,162,162,224,227, 83,181, 83, 48, 43,199,112,246,109,202,163,240,190, -125,251,242,239,222,189, 11, 74, 41,124,125,109, 96, 99, 45, 1, 97,132, 8, 8,112, 6, 80,164,253, 59,118,236, 8,165, 50,193, -152,155, 75,207, 86,197, 73, 41,221, 79, 8, 57,174,211,233, 94,181,111,223,222, 61, 62, 62, 30,147, 39, 79,230, 30, 60,120, 16, - 0, 48, 99,198, 12,204,152,241,254, 36, 9,181,186,242,208,124,131,134,254,223,122, 25,237, 59,136,196,117,235,217, 56, 54,130, -151,111,103, 0, 64,183,176,209,240,170, 95, 27,202,172, 39,245, 52,234,164,254,124,110,174,253,147,245,169, 49,226,222,193,163, - 52,153, 87, 95, 2, 48,167,112, 47, 85,191, 60,152,145,204, 27,118,232,248,201,115, 99,123,133,245,225, 25, 88,163, 49,184, 14, -207,238,240,177, 51,153,169,111,146,215, 33,249,124,137,160,172,242, 23, 5,203,178,172, 82,169,132, 68, 34, 65,116,116,180,182, -119,239,222, 66,134, 97,240,234,213,171, 82,129,229,236, 40, 11,108,211, 44,216,127,201,143,123, 46, 72,132, 66, 97,143,142, 77, - 3, 98, 94,190,121, 75, 41, 73,170,140, 87,103, 48,252,246,244,209,227, 78, 78,238,245, 57, 9, 87,239,194,161, 93, 47,104,181, - 12,212, 58, 19,180, 70,192,200,225,195, 45,180, 5,236,124, 2, 64, 1, 60,184,123,203,160, 53, 24, 42, 45, 77, 98,129, 5, 22, -252,243, 81,133, 22,145,151, 17, 68, 57, 0,146,150, 45, 91,150, 85,198,187, 36, 7,240, 24, 64, 72,241, 56,121,185,227,228, 40, -154, 13,216,172, 12,143, 28, 40, 21, 90,101,151,117,229,198,124,208, 15,191,106,203, 52, 0,128,163,163,163,115,227,198, 77,125, -182,253,114, 8,148, 82, 60,143, 90,133,220,204, 56,204, 93,122,199,199,211,211,179,195,219,183,111,175,153,115, 50,150,101, 15, -238,216,177, 99,106,139, 38,141, 27,215,243,244,196,227,164, 68,240, 41, 11, 62,203,130,209,107,193,101,117,240, 12,102,193, 16, - 41,210,210,242,176,124,255,161,104,150,101, 15, 86,199,235,223,171, 15, 22,189,205, 3, 33, 4,171, 91, 5, 67, 96, 45, 5, 95, - 34,197,191, 78, 70,150,138,170,211,139,102, 66, 32,149,194,167, 69,245, 5,220, 41,165, 42,107,107,235,135, 79,159, 62,109, 22, - 28, 28,140,169, 83,167, 34, 41, 41, 9, 38,147, 9, 25, 25, 25,154,119,239,222,165,202,229,242, 36, 0,199, 0,108, 51,167, 82, - 56, 95,171, 89,123,250,232,238,137,173,218,118,112,236,219,255,103, 28, 63, 50, 5,138, 60, 37, 84, 70, 49, 10, 53, 70, 20,106, - 57,144, 57, 52, 68,139, 70,141,144,150,154,137,103,119, 47, 20,112,181,170, 85,213,223,213, 82,155,193, 48, 12, 30, 63,126, 12, -111,119,107,188,184,113, 13,142, 86, 60,132,184,187,194,189, 77, 91, 36, 36, 36, 84,203,193,227,192,248,217,103,159,149, 86,114, -239,222,189,123,226,176, 97,195,220,166, 76,153,130, 95,126,249, 5,183,110,221,250, 83,226,117,135, 14, 29,112,253,250,245,133, - 0,230, 87, 67,111,208,233,116,240,247,247,199,131, 7, 15,112,233,210, 37,116,238,220, 25, 29, 58,116,192,147, 39, 79,112,241, -226, 69, 68, 69, 69,129, 16, 2, 7, 7, 7, 24,138, 68,179,161, 50, 50,189, 30,135,127, 88,177, 99,214,143, 63,254, 28, 52,116, -232, 80, 28, 61,250, 43, 70,143,106, 0,194, 8, 65,136, 16,125, 62,110,128, 69,139, 31,160, 69,139,142,112,116,228,225,199, 53, - 39, 94,171,213,236,158,106,111, 2,176,228,226,197,139,238, 26,141, 6, 10,133,130, 74,165, 82,146,157, 93, 52, 67,181, 34, 15, -150, 74,165, 18, 85, 70,244,244,247,216, 85,138,124,154, 75, 11,162,250,231, 24,163, 26,118,238,145,130,110, 97,163,240,219,233, -157,136,188,112, 9, 50,110, 82, 34, 36,249,231,178, 18,179,148,239, 10,125, 55, 7, 52, 25,195,121, 91,120, 97,243,164,190,246, - 28, 55, 55,211,225, 25, 63,231, 41, 42,227,166,197,127,176, 57, 49,123, 79, 30,163,232,211,186, 85,139,250,193,181,221, 4,185, - 89,153,244,200,137,115,209,250,196,163,167, 80, 44,172,104, 53, 46, 91, 74,233,162, 25, 51,102,204, 43, 94,222, 53,103,206,156, - 49,203,151, 47,119, 74, 79, 79, 47,205,193,202,204,202,137,108,221,251, 43, 54, 91,145,167,219,241,227,119, 3,197, 34,161, 96, -206,242, 29, 87, 13, 28,220,173,140,215,104, 50,109, 28, 52,121,238,215, 47,159, 71,121,212, 21, 11,112,226,187,249,120,124,241, - 10, 12, 12, 31,227, 46,221,131, 86,207, 66,145,149,141,203,159, 79,128,212,197, 30, 63, 95, 61,154, 97, 50,153, 54, 85,101,171, - 5, 22, 88,240,207, 70, 21, 90,164,162, 28,151,140, 10,182,149, 31, 87,221,250,191, 13,102, 77,169,203,202,202,202,188,126,253, - 30,174,158, 94,130,107,167,151,224, 89,212, 99,164,165,234,144,154,161,129,141,141,205,157,202,142, 35,132,116, 45,187, 78, 41, -165, 42,149,106,192,156,185,243,210, 69, 98, 43,180,239,210, 5,174, 78,206,176,226,243,192, 49,154,192, 33, 60, 20,200,237,240, -226,137, 10,211,119,236,205, 44, 80,169, 6,148,255,231, 80,158,179,204,118, 16, 66, 32,180,177,134, 64,106, 13,161,181,205,123, -225, 66,145,141, 13, 68,214, 54,224, 10, 4, 21, 37,195,255,137,179,160,160,224,147,129, 3, 7,230,230,229,229, 97,204,152, 49, -184,118,237, 90,212,133, 11, 23,108, 30, 63,126, 44,206,204,204,172, 79, 41,237, 78, 41,221, 82,153,184, 42,207,153,147, 19,159, - 79,141,218,193,203,230,125,163,214, 24, 29, 16, 62,226, 32, 36, 76, 10,140,172, 9, 20,128,187, 76,128, 54, 93, 23, 35, 83,215, - 26, 7, 55,127,175, 50,233, 53, 67,203,214,192, 42,207, 73, 41,165, 14, 14, 14,239, 93, 11,195, 48,184,122,245, 42,194, 7,126, -130, 30,253,251,193,169,158, 55,156,187,246, 66,143, 49,227,176,101,203, 22, 48, 12, 3,153, 76, 6,148,241,104,148,229,220, 21, - 69,121,251,159, 80,178,255, 9, 37, 59,127,167, 92, 0,195,247,238,221,251, 67, 72, 72,200,149, 91,183,110,173, 2, 48,184,236, -253, 46, 99,203,130,178,222,171, 74, 62,163,217, 95,127,253,181,250,229,203,151,144, 72, 36, 48, 26,141,184,117,235, 22,126,254, -249,103,172, 94,189, 26, 81, 81, 81,112,112,112,128,143,143, 15,180, 90, 45, 30, 60,120,160, 6, 48,187, 50, 78, 74,169, 73, 46, - 55,126,178,126,253,242,236,176,176,118,216,177, 99, 3, 92, 93, 91,131,199,117, 5,151,231, 4,137,212, 31,219,183,253,128,158, - 61, 27,227,228,137, 67, 57, 89,217,198, 79,104,185,170,235,149,216,169,185,119,239, 30, 54,111,222,140,129, 3, 7,166,134,135, -135,179,121,121, 69, 69,106,103,204,152, 81,218, 37,125, 65,113, 14,153, 86,171,125,207, 29, 93,150,115,204,119, 79, 83,191, 93, - 18,189, 40, 35, 61,181,229,181, 43,119, 62,139,188,112, 9,175, 95, 70, 34,242,194, 37,220,136,188, 61, 35, 35, 61,181,101,227, -230,126,252, 1, 99, 38,126,187, 59,219,243,196,221, 0, 0, 32, 0, 73, 68, 65, 84,226, 40, 71,106,227,134,221, 17, 71, 57, 67, -190,250,230,251,166, 61, 58, 87,122,237,101,111, 3, 0, 90,144,153, 49,115,233,170,159, 10,140,122, 13,179,114,221,198, 52,181, -252,221,108,148, 76,173,172,196,123, 85,150, 83,165, 82,109, 81,171,213,238,106,181,218, 93,163,209,204, 78, 74, 74,106, 63,117, -234, 84, 57,203,178,165, 30,210,204,103, 39,238,196,222,216,185,212,217,209, 94,220,186, 89, 80,131, 53, 91,142, 92, 77, 78,201, -216, 87, 82, 3,171,146,207, 72, 83,160,214,124,210,111,192,176, 66, 69,174, 22,173,190,153, 1,147, 72, 10, 45, 11, 24, 40, 7, - 70,194,197,211, 37,107, 32,150, 89, 99,127,226,239,170, 60,131,254,147,178, 53,176,170,185,246, 15,134,133,211,194,105,225,252, -191,201,249, 79, 3, 23,168,126,106,164,135,135, 71,251,190,125,186,162, 99,216, 28, 80, 74, 17,247,251, 10,228,202,159,195,195, - 85,136,132,100,101, 43, 0,215,204, 61, 33,165, 52,153, 16,210,242,235,217,115, 34,194,187,119, 9, 8,174, 87, 79, 88,183,110, - 29, 72,156,157,145,149, 37,199,205,187, 49,134,239, 15, 28,142, 46, 22, 87,230,180,202,129,201,100, 42, 74, 94, 7,208,229,235, -233, 32, 28, 14, 80, 92,142,161,228, 31, 98,189,102,173, 65,184, 92,176,212, 4,173, 86, 91,109, 18, 22,165,244, 45, 33,228,147, -161, 67,135, 94, 62,125,250, 52,211,163, 71,143,208, 99,199,142,125,120,198, 47,128,130,140, 23, 87,164, 46,126, 97,223,207, 28, -123,176,101,231,126, 54,190, 65, 77,249, 77,235,114,160, 55, 16,164,165,190,193,233,136,251,250,152,123, 23,148,212,168, 25, 92, - 40,175,186, 85,142, 94,175, 79,118,113,113,113, 89,184,112, 33,140, 70, 35,140, 70, 35, 88,150, 69, 86, 86, 22,238,220,185,131, -134,205, 90, 32, 96,212,231,144,203,229, 88,191,126, 61, 60, 61, 61,177,116,233, 82,228,228,228,192,104, 52,154,117, 95, 41,165, - 44,128, 11,197, 47, 0,127, 8,217,146, 95, 25,213,133, 7,125,124,124, 4, 26,141, 38,212,205,205,141, 75, 8, 89,171,211,233, - 70,205,156, 57,211,117,233,210,165,104,208,160, 1,178,178,178, 32,145, 72,224,235,235, 11,185, 92,142,251,247,239,179, 42,149, -106, 51,128, 69,148, 82,121, 69,156,101,236,123, 69, 8,105, 57,105,210,191, 34,126, 88, 62,214, 87,163,237, 40,144,201,218,130, - 82, 35,228,242, 36,228, 43,111,233, 23, 47,218, 25,159,145,105, 24, 64, 41,125,105,206, 53, 3,152, 63,113,226, 68,160,184, 85, - 78, 66, 66,194,163,128,128, 0, 95,160, 98, 15,150, 57, 88,115,248,173, 6,192,129,149,147, 91, 79, 86,102, 61,241,149,113,147, - 18, 91, 6,155,214,175, 57,252, 86,179,112,178,221,146,172,164,107, 47,222, 21, 94,216,188, 59,226, 40,103, 68,255, 79, 88, 79, -233,203, 25, 34,103,122,164,243,199, 85,243, 82, 74,105,104,104,104, 45, 66,114,188, 50,179,159, 63, 28, 61,102,236, 32, 91,190, -250,108,136,103,182, 15, 83,187,177, 40, 42, 42, 42,177, 58,239, 85, 37,188, 47, 8, 33,237,103,206,156,121,129, 82,250, 94,238, - 65,102, 86, 78,100,171,176,137, 84,161,200,123,148, 25,115,162,218, 90,104,148,210,251,132,144, 46,193, 13, 27, 31,253, 97,233, -114,151,142, 95, 79,229,190,184,114, 21, 96, 13,120,115,237, 42, 88,161,206,180,230,246,111, 25,121,122,125,127,106,169,226,110, -129, 5,255,211, 48,167, 76,195,127, 19,170, 45, 52, 10, 0,111,223,190,189,230,227,237,121,241,197,139,246,221,107,123, 58, 1, - 0, 18, 18,211,144,154,161,189,104,110,120,176, 44,138, 69, 86,211,189,167,206, 14, 22, 10,133, 97,164,184, 20, 3,253,128,102, -207, 70,163,241,109,189,122,245, 42,217, 91,113,169, 38,150,101, 43,114, 43, 86,100,231, 85, 66,200, 48, 31, 31,159,229,111,222, -188,137,160,148, 22,154,115, 92, 85, 40,200,120,113, 69, 38,243,241,190,125,233,232, 55,119,175,158,238, 74,141,186,134, 0, 64, -184,130, 26, 53,123, 46, 40, 40, 24, 59,126,252,248, 45, 60, 30,175, 54,138,115,202, 74,102,124,177, 44,203,209,235,245, 34,150, -101, 57, 0, 8,195, 48, 70, 30,143,167,137,136,136, 48, 26,141,198,100,173, 86, 59,246, 67,237,175,233, 23,255,236,217,179,117, -237,237,237,187, 19, 66, 6, 82, 74,253,243,243,243,181,115,230,204,185, 19, 17, 17,145, 87,167, 78,157,143,122,247,238, 77,100, - 50, 25, 30, 60,120, 64,179,179,179,143, 0,152, 77, 41,173, 62,158,249,135, 61, 9,132,144,144,177,227, 54,125, 42,147,109,233, - 77, 41, 66, 64, 65, 8,131,167,121,121,166,179, 42, 21,187,175, 88, 40,154,203,103,196,251,158,179,197,209,209,209, 59, 1,240, - 42,202,193,170, 17,172, 10, 78,106,212, 73,159, 16,169,234,216,154,117,111, 53, 0, 48,255, 71, 69, 30,128,237,147,250,203, 76, -177,191,111, 95,225, 97,243,242,187,117,199,114,118,152, 67,215,184,113, 99,111,134, 97, 6, 3, 8,118, 22, 42,234, 59, 9,242, - 88, 66,104, 39, 66, 24, 71, 0, 79, 2, 3, 3, 79, 3,120,251, 33,166,210,162,182, 66,117,202,111,207,124,118,226, 14,128, 74, -189,214,149,112,221, 39,132,212,159, 60,109,202, 4, 1,143,215, 13, 44,219,104,241,241,195,212,210,236,217, 2, 11, 44,248, 39, -195, 44,129, 5, 0,241, 9,111,123, 0,128,159,159, 31,125,249,242,229, 95, 86,152,197, 2,234, 87, 84, 83,165,189, 58,100,101, -101, 53,253, 43,199, 87, 7, 74,233, 1, 0, 7,254, 78,206, 98, 1,181,168,248,245, 65,160,148, 62, 5,208,226,111, 51,234,195, -108, 40,137,149, 47,172,108, 76,247,238,221,223,232,245,250, 75, 40,250, 71,111, 7, 32,199, 96, 48,156,215,233,116, 25,132,144, -166,107,214,172, 41,169, 84,191,152, 82,250,240, 3,237, 48, 1,216, 95,252,250, 91, 65, 41,221,239,238,238, 62,197,193,193,193, - 71,163,209, 8, 52, 26, 13,191,172,246, 23,139,197, 85,122,217,202,194,206,154,236,226,115,115, 29,236,172,201,159, 4,148,204, - 3, 71,213,133,209, 13,100, 30, 56,106, 46, 95, 84, 84, 84, 66,104,104,232, 94,134, 97,234, 81, 74, 93, 0,106, 75, 41,228,148, -210, 44, 46,151,155, 26, 19, 19, 99, 86,143,204,255, 31, 40, 22, 80,171,138, 95, 22, 88, 96,129, 5,255,120,152, 45,176, 74,240, -226,197,139,127,132,235,206,130,191, 7,213, 9,237,164,164, 36, 45,128,219,197,175,242,199, 62, 4, 80, 77, 32,236, 63,143,180, -180,180,198,127, 7,207,152,239,158,166, 2,248,166,105, 5, 45,151,231,175,207,201, 7,240,109,167, 62, 53,227,124,244,232, 81, - 50, 0,179, 66,190, 22, 88, 96,129, 5, 22,252,255, 67,205,250,198, 88, 96,129, 5, 22, 88, 96,129, 5, 22, 88, 80, 45, 8,128, - 10,103, 2,208, 26,116,202,254,144,217, 4,213,241, 91, 56, 45,156, 22, 78, 11,167,133,211,194,105,225,252,231,113,254,207,160, -100,150,221,191,227, 5,160,171,133,211,194,105,225,180,112, 90, 56, 45,156, 22, 78, 11,231,255,218,171,198, 57, 88, 22, 88, 96, -129, 5,255, 20, 28, 57,114,196,172,166,159,159,126,183, 61, 76, 42,181,159, 91,160,204, 91,254,235,170,209,199, 74,182, 15, 28, - 56,208,236, 25,170, 22, 88, 96,193,255, 22, 42, 21, 88,222,222,181, 2, 25,214,212,134, 82,134, 67, 25,106, 32, 74,245,193,248, -156,156,247,202, 7,212,174, 93,219,142,199,224, 99, 66,169,132, 16, 19,107,226, 48,183, 18, 18, 82, 98, 42,227, 44, 15, 66,136, -192,222,222,126, 34,159,207,239,170,211,233, 60, 25,134,121,171,213,106, 47,169, 84,170, 13,180, 92,193,193,255, 36, 26, 52,104, - 48,228,234,213,171,118,109,219,182,213,138,197, 98,163, 90,173,230,158, 63,127, 94,216,179,103, 79,197,171, 87,175, 62,104,134, -161,135,135, 71,231,237,219,183,123,245,232,209, 3,245,235,215, 47, 28, 60,120, 48,191, 85,171, 86,252, 49, 99,198,188, 78, 77, - 77,141,172, 9, 23, 33, 36,144, 16,178,135, 16,194, 49,153, 76,195,105,209, 12,195,191, 29,132, 16, 6,192,151, 0,250, 1,240, - 6,144, 0,224, 56,128,173,212,140,106,246, 21,240,125, 2,160, 23,128,144,226, 77,143, 1,156,165,148,154, 61,147,174, 50, 78, - 66, 72, 40, 0, 80, 74, 31,253, 93,156, 60, 30, 47, 20, 0, 12, 6,195,223,198,249, 87,237, 36,132,140, 18,139,197, 95, 0,128, - 90,173,222, 70, 41,173,182,109,211,159,176, 37,128, 2, 64,224,138, 56, 0, 64,204,119,254, 48,119, 61,230,117, 13,103, 19, 87, -114, 46,140,141,253,224,201, 51,132,144, 94, 67,135, 14, 93,186,111,223,190,249,148,210, 19, 31,202, 83, 21, 92, 93,107,109, 88, -189,110,171,251, 55, 19, 63, 95,142,162, 14, 14, 85, 34,136,144,110, 2, 14,167,143,142,101,111,196, 0,135, 1,112,101, 50,217, - 16,129, 64,208, 94,167,211,185,113,185,220,119, 58,157,238,122, 94, 94,222, 1, 74,105,165, 29, 11,204, 70, 28,177,215,171,224, - 74, 76,127,244, 97,163, 12,180,124, 43,164,195,159,230, 86,117, 40,135,195, 89,229,225,225,241,165, 66,161, 40, 96, 24,134,146, - 34, 0, 69, 93,210, 74,106,223, 17,147,201,148,154,147,147,243, 65,179,182, 9, 33, 34, 0, 11, 80,212,211,109, 29,165, 85,219, - 84,137,157,223,184,187,187,247, 87, 42,149, 42, 14,135, 67,203,216, 71, 0,128, 97, 24, 98, 50,153, 50,179,179,179,135,127,136, -141, 22, 88,240,119,131, 11,188,215,251,167, 35,165,244,154,183,119,173,192,129,253, 6, 44, 29, 55,118, 60,225,112, 24, 68, 63, -123,198,253,108,248,168,238, 50,153,204, 67,170,213, 6,128, 16,147, 74, 36,138, 54, 24,244,169,135, 15,236,179,246,111,208,128, -101, 89, 19, 54,111,217,212,211,219,187,214, 44,115, 68, 22, 33,196,207,213,213,117,207,140, 25, 51, 92,251,244,233,195,113,117, -117, 69, 82, 82,146,221,175,191,254,218,224,167,159,126, 26, 68, 8, 25, 78,139,106,241,212, 8,132,144,118,174, 50,166,187,181, -152,116, 65, 62,139,124, 3, 46,167,171,113,145, 82,122,163,166, 92, 37, 80,169, 84, 95,169, 84,170, 22,205,154, 53,163,191,252, -242, 11, 25, 57,114, 36, 37,132, 16,181, 90,189, 11, 31, 88,194, 65, 34,145,108,236,209,163,135,175,175,175,111, 66,124,124,124, -175, 67,135, 14,157, 29, 49, 98,132,183, 68, 34,121, 9,192,175,134,116, 59,179,179,179, 67,212,106, 53, 60, 61, 61,127, 1,208, -228, 67,108,170, 10,197, 15,177,163, 50,153, 76,179,104,209,162,109, 29, 59,118,244, 72, 75, 75, 99,167, 79,159,222,230,209,163, - 71, 31, 17, 66,250,153, 43,178, 8, 33,246, 0, 54, 75,165, 82,171,233,211,167, 95,239,214,173, 91,162, 84, 42, 21, 61,121,242, -132, 55,125,250,244, 47, 9, 33,225, 0,198,213,228, 33, 92,194,233,228,228,100, 55,127,254,252,167,173, 91,183,190,198,231,243, -249,207,159, 63,231,205,152, 49, 99,194, 95,225,244,245,245,181,158, 55,111,222,131,208,208,208, 12,145, 72,196,143,143,143,231, -205,154, 53,107, 28,135,195, 9, 55,153, 76, 31,196, 41,147,201,108,102,205,154,245,176, 67,135, 14,114,161, 80, 40,136,137,137, -225,206,156, 57,115, 92, 77,236,116,112,112,232,228,224,224,176, 53, 61, 61,157, 11, 0,110,110,110,205,125,124,124,126, 42,169, -135, 6,252,209,171,210, 96, 48,228,107, 52,154,161,217,217,217,127, 42, 96, 27,184, 34, 14,223,206,219, 53,228,219,121, 69,235, -187,139,183, 87,183, 14,140, 52,251,187, 31,232, 85,244,140,153, 48,237,231, 97, 69,239, 69,219, 55, 21,155,186,209,139,208,154, -136, 53, 66, 72,223,206,157, 59, 47,136,140,140,220,212,177, 99,199,233,123,247,238,117, 78, 73, 73,249,129, 16, 82,235,211, 79, - 63, 29,121,249,242,229,101,114,185,252,136,185,124,213, 65,192, 23, 10, 9, 67, 32, 22, 89,217,152, 51,158,199, 48, 97,183,251, -246,253, 98,219,243,231,141,127,138,139,243, 42,116,115,107, 49,105,210, 36,151, 1, 3, 6, 48,181,106,213,194,171, 87,175, 28, -246,238,221, 27,176,109,219,182,254,132,144,175, 41,165,111, 62,216,184, 56, 98, 95,168, 64, 67,173, 14,141, 41,133, 93,201,102, - 66,160, 16,234, 17, 37,137, 35, 79, 43, 19, 89,132,144, 31,251,246,237, 59,252,248,241,227,210,189,123,247, 74, 91,183,110, 13, - 23, 23, 23, 16, 66,192,178, 44, 76, 38, 19, 76, 38, 19, 40,165,240,245,245,253, 43, 51,200,215,222,184,113,227,203, 87,175, 94, - 97,204,152, 49, 28, 0,115,106,114, 48, 33,100, 74,255,254,253,123, 71, 68, 68,136, 15, 31, 62, 44,110,214,172, 25, 92, 93, 93, - 1,160,212, 62, 74, 41,188,188,188,254,130,137, 22,252,167, 81, 94,139,252, 39,109,249, 59, 80, 81, 47, 66,194,176,166, 54,227, -198,142, 39,131,135,124,154,254, 42,225,181,137,203, 19, 12, 57,127,225,130, 85, 96, 96, 32,163,221,176, 1, 70,185, 28,134,201, -147, 91, 95,186,116,201, 16, 62,100,152,154,199, 33, 59,189,189,234, 89, 29, 60,240,171,107,196,209, 35,109, 0, 84, 41,176, 8, - 33, 2, 87, 87,215, 61, 87,175, 94,245,240,242,242,130, 66,161, 64, 82, 82, 18, 10, 11, 11, 49,104,208, 32, 94,155, 54,109, 60, - 6, 14, 28,184,135, 16,210,214, 92, 79, 22, 33,196,165,190, 39,247,244,234,121,131,252,122,118,111, 35,241,168,229, 3,154,174, - 65, 74,124, 92,179,211, 87,239, 78,242,181, 99, 94,188,202,163, 97,148, 82,179,138,140,150, 69, 86, 86,214,119,253,251,247, 63, -218,169, 83, 39, 39,161, 80, 8,119,119,119,210,167, 79,159,204,180,180,180, 74,235, 63,153, 97, 47, 0,128, 97, 24,182,236, 59, - 33, 31,244, 12,243,180,183,183,135,189,189, 61, 0,120,124,168, 77, 0, 16, 30, 30,206, 73, 78, 78,254,194,100, 50, 5,148,221, -238,236,236,220,128,101,217,220, 55,111,146, 27,168,117,250,128,241, 19,103, 45, 24, 60,176,171,221,237,219,183, 77, 61,122,244, -208, 94,191,126,253, 75, 0,155,205, 60,205,230, 70,141, 26,197,175, 93,187, 86,251, 50, 33,177, 94,116,236, 75, 72, 68,124,182, - 86,173, 90,194,152,152, 24,237,220,185,115, 11,215,173, 91,183, 25, 64,120, 13, 76,223,220,179,103,207,220, 57,115,230,100,190, -136, 79,116,123, 28,243,130, 74,133,124,131,139,139, 51,231,225,195,135,154, 31,126,248,193,180,108,217,178, 26,115, 14, 27, 54, - 44,109,250,244,233,137,242,108,133, 71,174, 34,159, 10, 84, 42,189,167,167, 39,247,202,149, 43, 5, 63,255,252,179,118,250,244, -233, 53,230,236,216,177, 99,250,226,197,139,147,227, 94, 38,184, 71, 69, 63,135, 84,200, 51,184,186, 58,115,162,162,162, 84,203, -150, 45,211,175, 88,177,194, 44, 78,137, 68,178,251,208,161, 67,220, 19, 39,138,156, 54,119,238,220, 97,188,189,189,173,202,142, - 81,107,180, 96, 8,144,149,149,101,213,170, 85,171,221, 0, 60, 43,227, 27, 49, 98, 68,122, 13,174, 3, 35,180, 43,204, 27,184, - 37,128,150, 8,171,241,227,199, 87, 86,155,107, 88, 96, 13, 68, 86,175, 94,189,102,159, 57,115,198,103,239,222,189,107,246,239, -223,175, 3, 0,145, 72,228,248,235,175,191, 46, 27, 52,104, 16, 6, 13, 26, 52, 23,192,223, 38,176, 88,202,234, 1, 64, 40, 18, - 10,227,226,226,136,191,191,127,149,133,144,245, 38,211,195,109,207,159, 55,253,151,191,127,179, 28,147,169, 62,191,103,207,130, - 41, 83,166,100, 41,149, 74, 36, 37, 37, 65,175,215, 99,228,200,145,156,142, 29, 59,186, 15, 26, 52,104, 61, 33,228, 19, 74,169, -190, 58, 59, 74,188, 77,121,121,121, 5, 37, 94,156,128,122,214,220,246,161, 70, 97,163,250, 6, 1,159, 99,228,127, 60,217, 68, - 46,110, 32,133,254, 94,184, 9, 0,124, 21,228,124,224, 79, 2,139, 16,178,162,111,223,190,131,142, 31, 63,110, 15, 0, 71,142, - 28,129, 74,165, 66,157, 58,117,192,231,243,193,227,241,192,227,241, 74,151,107,242,108, 34,132, 76,147, 74,165,189, 10, 10, 10, -142, 83, 74,215, 3,240,109,219,182, 45,188,189,189, 1,160, 77,241,152,225, 28, 14,231, 83,150,101,183, 82, 74,143, 87,193, 53, -169,111,223,190,221, 34, 34, 34,172, 75,236, 52, 24, 12,240,246,246, 6,159,207,135, 64, 32, 40,181,211,130,255,126,148,213, 34, -255,105, 91,254, 42, 74,203, 52, 20, 95, 80, 71, 0,160,148,225,112, 56, 12, 94, 39, 36, 25, 58,117,234, 50, 34, 57, 57, 89,218, -162, 69, 11,134,199,227,161, 48, 50, 18,154, 7, 15, 32,149, 74,209,191,127,127,222,245,235,215,109,108,164, 54, 99, 18, 95, 39, -230,115, 56, 12, 40,101,170,205,105,176,183,183,159, 56,107,214, 44, 87, 95, 95, 95, 24,141,198,210, 10,228, 70,163, 17, 41, 41, - 41,144, 74,165, 24, 62,124,184,179,149,149,213, 68,115, 46,130, 16, 82,215,207,219, 57,234,234,217, 45, 77,166,140,235, 37,241, -179,250, 13,146,148,175, 33, 61,242, 47, 4,164,157,199,140,126, 45, 36, 23, 55,206,109,236,227, 46,139, 34,132,212,173,233, 77, -210,104, 52, 55,163,163,163,199, 92,187,118,205, 4, 0, 87,174, 92,161,177,177,177, 99,255,202,175, 78,147,201, 4,133, 66, 1, -147,201,196, 41, 94, 47,121,255, 80,202,191,140,240,240,112, 78, 74, 74,202,216,128,128, 0,191,123,247,238,225,228,201,147,184, -116,233, 18, 46, 92,184, 0,129, 64, 80,123,224,192,129,114,121,182,194, 94,161,200, 19,189,123, 27,223,252,215,173, 91,221,211, - 18, 19,111,239,219,183,175, 0, 69, 97,195,106, 65, 8,249, 68, 42,149,138,215,172, 89, 83,104,109,231,218,187, 69,203,118,205, -120, 34, 27, 71,190, 80,234,148,151,167,212, 63,126,252, 56,110,229,202,149,126, 13, 26, 52,176, 47, 14,163,153,197,233,232,232, -104, 59,123,246,108,189,149,181, 83,187,102, 45, 90, 6, 11, 68, 54, 50,158,192, 74,214,166, 77,155,254,113,113,113,137,243,231, -207,247, 8, 13, 13,117,174, 9,167,151,151,151,245,244,233,211,181, 54,182,178,110,129, 1,129,141, 91,183,106, 62,184, 73,147, - 38,195,185, 92, 46,155,145,145,241,114,202,148, 41, 30, 29, 58,116,112,168, 9,167,189,189,189,245,226,197,139,117,245,188, 27, -124,242,241,199, 97,157, 68, 86,118, 50,129,216, 90,166, 86,171,217,216,216,216, 87,139, 22, 45,242, 8, 9, 9,113, 52,135, 83, -165, 82,241, 28, 29, 29, 17, 28, 28,140, 64,111,111,228,229,229, 33, 34, 34, 2, 59,119,238,196,246,237,219,113,224,192, 1, 52, -109,219, 29,214,214,214, 72, 75, 75,131, 82,169,228, 85,196, 83, 26,166,251,119, 96, 75, 0,221,100,154, 56,108,252,248,241,169, - 85,136, 43,140, 31, 63, 62,117,194,180,159,135,149,132, 16, 43, 3, 33,164,111,151, 46, 93,158,156, 61,123, 54,126,239,222,189, - 8, 12, 12, 68,143, 30, 61, 4, 0, 48,113,226, 68,193,160, 65,131,112,232,208, 33, 28, 57,114, 36,198,207,207,239, 22, 33,164, -175, 57,102, 14, 31, 62,188,109,120,120,248,141,240,240,240, 71,131, 7, 15,222, 58,118,236, 88,247,178,251,223,165,189,125,168, -211,233, 16,210,184,153,213,226, 95,238, 13,173,142, 47, 22,216,187, 53, 46,110,231,242,103,207,222,204, 13, 12,180,171,147,152, - 40,219,181,106,149, 99, 73,243,108,131,193,128,148,148, 20,216,219,219, 99,232,208,161,142, 66,161,176,218,176, 86,177,183,105, - 84,114,114,178,116,219,182,109,110,143, 30, 61,114,127,247,238,157,219,229, 75, 23,156,190,157, 58,209,218, 86, 42, 16,164,201, -139, 4,106, 98, 26, 36,113,175,209,150, 82,216,149, 13, 27,150,133,167,167,231,151,199,143, 31,119, 45, 89,183,183,183,127, 79, - 80,149, 95, 6, 67, 25, 89, 16,217, 81,183, 47,201,180, 11, 36,223, 84, 97,103,239,195,135, 15,175, 76, 76, 76,236, 16, 22, 22, -182,142, 16, 82,167,130, 49, 78,157, 58,117,218,246,252,249,243, 30,125,251,246, 61, 70, 8,233, 94, 25,159,167,167,103,255,227, -199,143, 59,148,172, 59, 58, 58, 66, 36, 18,253, 73, 92,241,249,124, 48,140,165,242,208,127, 59,202,106,145,255,118,148,126, 27, -105, 81,193,200,171, 0, 64, 9, 41,124, 18, 29,205,227, 8, 4,195,246,237,223, 47,228,243,249,120,243,230, 13, 98, 98, 98,160, -186,124, 25,234,219,183,145,145,145,129,130,130, 2,184,184,184, 96,203, 47,191, 72,116, 44, 29,253,252,197, 11, 14,101,254,200, - 39,160,149, 76,213, 20, 10,133, 93, 7, 12, 24, 80,169, 16, 75, 75, 75, 67,175, 94,189,120, 28, 14,231, 79,211, 67,203,115, 18, - 66,136,187, 19, 57,117,249,232, 98, 55, 55, 65, 12,240,106, 10,144, 31, 5, 80, 45, 96,212, 1,169, 79,129, 51, 11, 81,167, 32, -142, 92, 88, 60,194,213,195,138,123,138,148,251, 41, 86,153,157,101,206,225,237,239,239,191,125,216,176, 97, 12, 0,116,238,220, -153,248,251,251,111, 37,132,120, 87,118, 76,117,156, 42,149,234,110,110,110, 46, 6, 13, 26,228,224,227,227,115,105,208,160, 65, - 14, 37,219, 63,148,179, 24, 14, 65, 65, 65,217, 98,177,248, 0, 33,164,194, 7,107,101,156,201,201,201, 95,248,251,251,215,223, -182,109, 27,135,195,225, 96,219,182,109, 56,120,240, 32,110,222,188,137,236,236,108,233,148, 41, 83,108, 79, 95,186,123,254,214, -205,251, 39, 87,205,153,230,208,191, 75, 71,111,251, 60,185,210,195,195,163, 43,138,114,178,204,177,179,215, 87, 95,125,117,241, - 81,108,130, 51,135,199,231, 11,120, 92,177,147,163, 93, 29, 87, 39,251,250, 30, 14,246,245,173, 5, 60, 59,165, 82,249,250,208, -161, 67, 5, 40,202,207, 50,139,115,222,188,121,143,227, 18, 82, 28, 24, 30,151,203,231,242, 5,118,182, 82,135, 62, 97,221, 59, - 1,128,152, 67,132, 74,165, 50,101,247,238,221,133, 53,225,156, 59,119,238,157,119,242, 92,103,190, 72,196, 17, 10,121,165,247, -210,222, 70,234, 34, 17, 10,197, 42,149,234,205,246,237,219,243,106,194, 57,115,230,204, 7,207, 94,190,113, 36, 12, 56, 12, 8, -207,222,222,218,217,201,206,218,213,217, 70,234, 42, 98, 32, 82, 42,149, 73,187,119,239, 86,154,195,169,215,235,121,153,153,153, -136,139,139, 67,173,102,205,112,233,210, 37,212,174, 93, 27,131, 6, 13,194,167,159,126, 10,177, 88,140,206,173, 26, 98,214,172, - 89,136,143,143,135,209,104, 20,152,105,103, 41,220,221,221,175, 86,182,175, 36,143,170, 50,206, 64, 47, 82, 42,174,204,225,174, -104, 92,121,206, 94,189,122,205,190,124,249,178,207,158, 61,123,250, 12, 31, 62,252,230,158, 61,123,208,178,101, 75,196,198,198, -162, 94,189,122,216,181,107, 23, 62,253,244,211,155,235,215,175,239,243,251,239,191,135,120,121,121,205,170,142,115,240,224,193, - 19, 66, 67, 67, 35,211,211,211, 91,229,228,228, 4, 71, 68, 68,140,238,223,191,255,235, 33, 67,134,116, 41, 25,195, 26, 12,251, -207,156, 60,138,222,125, 6,160, 65, 80,240,230,145,179,246, 54,172,138,147, 82, 74,159, 1, 91,119,190,123, 39,223,175,209,168, - 6,241,120, 86, 86,247,238,201,142,108,218,228, 88, 18,182, 5,128,212,212, 84,124,252,241,199, 60, 62,159,223,174, 42, 59, 9, - 33, 43,250,245,235, 55, 40, 34, 34,162,212,219,116,251,246,109, 60,125,250, 20, 73, 73, 73, 80, 40, 20,232, 50,182, 0,227,151, - 21,113,143, 95, 70,209,125, 34,149, 84,197, 89, 80, 80,160, 62,118,236, 24,194,195,195,241,229,151, 95,194,203,203,171, 84,100, -149, 23, 87,215,238,255, 6, 65,112,142,172,237, 86,140,234,118, 2, 78, 18, 79,204,172,196, 78,126,215,174, 93,183,244,233,211, - 7, 44,203, 66,163,209,152, 0,228,148,183, 3, 0,167, 94,189,122,188, 90,181,106, 97,201,146, 37,176,179,179, 91, 75, 8,225, - 84,196, 89, 88, 88,168, 61,123,246, 44,134, 15, 31,142,175,191,254, 26,245,235,215, 47,181,115,247,222,131,142,159,142, 30,231, -215,164,109,251,144,192, 38, 45, 27,229,107, 57,205,248, 86,178, 47,202, 63,227, 43,250,140,254, 14, 88, 56,255,126,148,213, 34, -255,237, 40, 13, 17,150,109,121, 98, 48,225,212,176, 17,163, 63,190,116,249,178,149, 64, 32, 64, 98, 98, 34, 50, 50, 50,112,240, -192, 1,246,176,179,179,138,199,227,209,161, 59,119, 90,127,254,197, 23,132,199,227,193,223,223, 31, 3, 7, 14, 20,127, 50,104, - 72,166, 19,143,119,176,186,147, 18, 66,220, 74,226,231,163, 71,143,198,143, 63,254,248,222,254,111,191,253, 22, 7, 14, 28, 0, - 33,196,181,162,227,203, 33,124,210,194,126,158,246, 94,118, 25, 52,106, 55,143,112,172,100,224, 88, 1, 12, 31, 16,113,138, 68, - 22,195,129,246,247,200, 28,166,229, 33,229,128,118, 42,143,117,231,183,132, 3, 56,100,238, 77,114,119,119,159, 27, 25, 25,233, - 52,101,202, 20,170, 84, 42,201,187,119,239,232,210,165, 75,157, 38, 76,152, 48, 23,192, 8,115,121,202, 34, 45, 45,109,113,239, -222,189,123,156, 57,115,198,101,196,136, 17,182, 0,208,187,119,239,140,180,180,180,197, 31,194, 87, 2, 62,159,207,121,246,236, -153,108,205,154, 53,159, 78,157, 58, 53, 40, 56, 56,216, 85,161, 80, 36,165,166,166, 14,172,206,227,102, 50,153, 2,182,109,219, - 6, 14,167,232, 57,199, 48, 12, 4, 2, 1, 4, 2, 1,108,108,108,114, 19, 18, 18, 76,117, 93,196,130,194,140,119,121,246, 92, -123, 30,113,115,117,176,115,117,235,152,157,157,125, 15,128,173,153, 38,134,124,244,209, 71, 79,110, 63,122,197,142, 27,209,169, -190, 21,159,225, 89,139, 69, 28,177,128, 71, 8,165,172,222,160,107,181,113,247,149, 29,126,126,126,129, 48,211, 69, 76, 8, 9, -109,217,178,229,229, 71,177,111,240,232,105,252, 91, 39,153,149,195, 71,157,219, 52, 40,217,223,168,121,203, 79,203, 12, 87,152, -195,201,229,114, 67,154, 53,107,246, 54, 35,167, 16,206, 50,219,247,132,180,189,163,115, 87, 0, 40,204,203,219, 88,171, 86, 45, -127, 46,151, 91, 89, 51,204, 63,217,217,174, 93,187,119,191,199, 36,195,213, 73, 38, 43,222,252, 94, 78, 79,214,187,119,155,125, -125,125,253,205,241,180,234,116, 58,225,241,227,199,241,251,239,191, 99,113, 80, 16,190,173, 91, 23, 78, 78, 78,184,124,249, 50, - 40,165,144, 74,165, 80, 40, 20, 56,116,232, 16,186,116,233, 2,157, 78,247,167,127,184, 64, 73, 14, 86,229,231,113,119,119,191, -154,150,150,246,111,249, 69, 89,158, 59,112, 69, 28, 98,170,232,148,121,246,236,217,189,123,247,238, 93, 22, 24, 24,136,111,190, -249,166,237,218,181,107,111, 6, 7, 7,183,237,220,185, 51, 34, 35, 35, 49,122,244,232,155,235,215,175,111, 59,110,220, 56,108, -222,188, 25,175, 95,191,254,165,170,243, 15, 30, 60,120,193,152, 49, 99,230,108,216,176,161,200, 75, 3,160, 95,191,126, 64,209, -179,113, 71,120,120,120,118,201,216,195,219,223,222,246,242,246,109, 61, 97,210, 52,193,196,113,195,103, 0,248,180, 66,210, 98, - 80, 74,169,187,187,123,190,177,125,251,156, 67,119,238, 96, 48,159,111,181,255,209, 35,156,210,104,208,174,127,255, 44, 0,152, - 57,115, 38,246,236,217, 3, 0, 46, 85,113,121,122,122,126,121,236,216,177,210,239,138,131,131, 3, 4, 2, 65,145, 8,226,242, -192, 97, 57,184,180, 89,130,132,100, 21,198, 47,163,216, 52,147,160,158, 59, 10, 67, 27, 84,206, 73, 8, 65,155, 54,109,160, 84, - 42,193,225,112, 96,109,109, 13,153, 76,246,158,184, 82, 22, 40,176,242,151, 5,200,108,112, 21,221, 78,130, 33, 28,224,241,247, - 64,254,171, 74, 91, 58,125,188,102,205, 26, 55,141, 70,131, 43, 87,174,224,242,229,203, 63, 81, 74, 11,202,235, 29, 74,105, 58, -135,195,217,185, 98,197,138,209,238,238,238, 24, 63,126,188,223,210,165, 75,251, 1,127,230, 37,132,160,105,211,166,208,104, 52, -224,241,120,176,177,177,129, 78,111,228,133, 15,251,210,187,142, 79,176,112,233,170,165,140,139,140, 11, 46, 35,195,203, 55,106, -219,117, 63, 46, 89,119,247,198,245,207,137,149, 99,127,170,202,122, 87,213,125,181,224,255, 30, 72, 53,237,215,254,155,192, 5, -254,220,238, 36, 57, 57, 89, 33,147,201, 60, 26, 52,104,192,232,116,186,162,208,195,145, 35,236,246, 29, 59,206,104, 52,154, 73, - 0,248, 27,126,254,121,179,135,167,103,167, 97,195,135, 19,131,193,128,222,189,123, 11, 78,159, 62,237, 16,159,145, 81,109,163, -226,242,191, 46, 70,142, 28,137,181,107,215, 2, 0,190,250,234, 43, 0, 69, 46,244,138,126,133,148,135,212, 22,189,122,132, 53, -181, 73,145,252,100,163,111,109, 40,168, 27,111,125, 87, 82, 32,110, 10, 70,192,133,136, 3,147,222, 96,124,153,217,255, 97,252, -203,128, 64,113, 78,118,189,174, 65, 29,176,253,183, 61,189, 80, 3,129,101,101,101,213,220,218,218, 26, 15, 31, 62,204,105,218, -180,169,130, 82,106,187,120,241, 98, 71, 43, 43,171,230,230,114,148, 7,165, 52,145, 16,210,190, 77,155, 54, 19, 25,134,233,106, - 50,153, 46,101,100,100,108,160,148, 38,154,115, 60, 33,100, 60,128,249, 40,147,103,162,211,233,192, 48, 12, 40,165, 24, 60,120, - 48,102,206,156, 25,248,244,233, 83, 68, 70, 70,202,186,118,237,122,151, 16,162, 0,240, 57,165,180, 82, 47, 89,118,118, 54, 54, -109,218, 4, 14,135, 3, 59, 59, 59, 88, 91, 91, 67, 36, 18,161,109,219,182,233,203,151, 47, 15, 56,122,244,168, 74,145,153, 73, -196,249,121, 90,226,224, 32,130,123,237,143, 70,246, 31, 16,141,162,217,132,102, 65, 34,145, 88, 9,160,205,103, 88, 13,179,114, -193, 70,174, 21,159, 79, 68,124, 46,132, 38, 21,103,214,242, 37, 84, 68, 40, 15, 69,222, 85,179, 26,126, 3,128, 72, 36,226, 75, - 4, 84,203, 19, 50, 6, 43,166,230, 51, 26, 43,130, 64, 32,224, 11,121,133,234,202,246,243, 25,194,225,112, 56,213,122, 9,203, - 66, 44, 22,243,165, 2, 86, 91,217,126, 17, 3, 14,195, 48,149,114,134, 7, 17,122,120, 98,105, 72,175,212, 54,163,209,136,230, -205,155,227,215, 19, 87,112,246,242,109,100,189,121,130, 73,227, 71,195,215,215, 23, 23, 46, 92,168,137,137,127, 66, 90, 90, 90, -133, 34,171,202,208, 98,113,222, 85, 85, 97,193,247,184,231,217, 86, 59, 43,145, 16,210,183, 93,187,118, 19,246,239,223,175,251, -232,163,143, 4,131, 7, 15, 70,112,112,112,219, 81,163, 70, 1, 0,186,118,237,138,181,107,215,182, 29, 53,106, 20, 14, 30, 60, -136,136,136, 8,109,199,142, 29,167, 19, 66, 82, 41,165,103, 43,226, 52,153, 76, 31,111,217,178,229,189,109,122,189, 30, 70,163, - 17, 6,131,193,205,104, 52,186, 21, 63,139,176,110,221,250,172,139, 23, 78, 99,250,172,133,112,118,114, 13,173,234,186, 74,192, -225,112,200,200,105,211,178,118,173, 90,133, 85, 7, 15, 98, 90,189,122, 86,123, 98, 98,112, 81,163,193,161,200,200,172,226,243, - 84,155,223, 84, 88, 88,168, 62,123,246,172,205,161, 67,135, 96,103,103,135,250,245,235,151,138, 33,134, 35, 6,135,111,143, 6, - 65,205, 1,220, 7, 0,212,115, 71,161,191, 23,110, 18, 2, 5,101, 80,233,247, 77, 44, 22,195,213,213, 21, 92, 46, 23,143,158, -223,135,181,194, 6, 77,130, 90,128,199,227, 33,191, 48, 15, 19, 86, 13,132,239, 18, 57, 26,250, 3,234, 12,224,222, 20, 24,210, -111, 99,141, 42, 5, 27, 43,161,108, 92,187,118,109,104,181, 90,108,219,182,141,162,232, 25, 85, 33, 76, 38,211,236,213,171, 87, -143,152, 55,111, 30,167, 89,179,102, 0, 16,138, 10, 4, 22, 0, 72, 36, 18,120,120,120,148, 10,191,193, 35,198,121,143,157, 50, - 78,220,191,123, 39,112,185,142, 80, 20, 26,144,157,111,128,189,163, 20,211,167,132,139, 46, 53,245,104,182,101,253,190,147,132, -144,102,180,172,203,208,130,255,211, 40,175, 69,254,219, 81,105,153, 6,161,193,208, 64,187,121, 51, 10, 47, 93,130,224,226, 69, - 28,114,119, 47,208,104, 52, 83, 41,165, 41, 0, 64, 8,249,102,231,174, 93,183,250,220,185, 99,163,139,139,131,247,211,167,224, -217,217,153,245,208, 41,139, 29, 59,118, 64,169, 84, 34, 47, 47, 15, 0,240,211, 79, 63, 65,169, 84,162, 36, 87,161,218, 11,224, -163,173,171,115, 61,164,227, 37, 76, 92, 70,154,212, 64,213, 82,170,177, 78,243, 72,118, 41,204, 99, 60, 16,247,166,133, 68,157, -173,107, 73, 56, 58,104,178, 84,240,104, 83, 31, 92,112,219,214,196,198,146,184, 62,151,203,205,121,241,226,197,199,126,126,126, -167, 0, 56,254,213,120, 63,165,244, 21,128, 73, 31,114, 44,135,195,153,255,250,245,107,231, 95,126,249,101,226,226,197,139, 41, -240,135,192, 42, 89,230,114,185,160,148,194,214,214, 22, 60, 30,207,229,246,237,219, 46, 45, 90,180,216,136,162, 7, 89,133,176, -178,178,130,139,139, 11,120, 60, 30,108,109,109, 81,168,204,149,108, 90, 58,167,163,149,189,139,108,218,180,105,204,200,145, 35, -227, 55,110,220, 88,219,181, 65, 3,255, 39, 79,158,188,233, 51, 48,252,247,179,103,207, 2,192, 86, 51, 77,127,252,244,233, 83, -129,175, 79, 93,174,201,160, 54, 73,248,128,232,241, 58,147,192,218, 21, 34, 14, 7, 92, 2, 42,182,146, 56,191, 74, 74, 74, 3, -144,105, 14, 33,165,244,209,203,151, 47,121,158,238, 46,220,252, 66,141, 66,194, 53, 9, 94, 63,184, 31,235,213,172,121, 0, 0, -104, 30,220, 62, 38,108, 16,100,253, 58, 83,110,227,237,237,157,100, 14,167,209,104,124,156,152,152,200,247,240,240,224,189,124, -249,106,159,131,141,181,187,204,197,165, 35, 0,232,114,228,215,137, 90,147,198,227,241, 60,210,210,211,229, 70,163, 49,205, 92, - 59, 95,188,120,193,247,116,119,225,158, 58,115,246, 87, 87,137,149,155,157, 88,104, 43, 98, 64, 68,212,148, 39, 48, 26,211,197, - 86, 18,247,215,201,201, 89,148,210,183,149,241,108, 50, 77, 28, 6, 0, 28,206,180,237,101,183,223,188,121, 19, 87, 30,190,134, - 45,135, 5,207, 80,136,187, 17,135, 48,224,171,201,213,254, 45,197,124,231, 15,104, 87, 28, 8,244, 26,249,199, 58, 74, 66,128, -110, 0,254, 44,132,202,142,251, 32,108, 9, 40, 13, 1, 20,115, 35, 45,173,234,135,235,208,161, 67, 23,238,221,187,183,116, 18, - 71,108,108, 44, 58,119,238, 12, 0, 88,184,112, 33,122,244,232,129, 22, 45, 90, 32, 54, 54, 22,190,190,190,136,140,140, 20,114, - 56, 28,225,176, 97,195,150, 2,168, 80, 96,149,197,214,173, 91, 49,122,244,232,138, 18,166,227, 1,104,136,189,127,193,204,229, -187, 29,115,178,179,144, 41, 79,127,100,238,165, 18, 66, 48,114,218,180,172, 45, 58, 29,246,223,187,135,225, 18,137,213,174, 87, -175,208,187, 69, 11, 52,236,220, 57,203,156,103, 93, 69, 94, 28, 7, 7, 7,240,249,124,112,120,238,224, 10, 66,192,240,249,104, -220, 46, 4,171,166, 74, 84, 35,122, 98, 61, 33, 80, 8, 5,136,226, 91,161,194,201, 11,132, 16, 24,141, 70,240,120, 60, 28, 58, -191, 11, 79,236,246, 1,249,192,173,168,190,152, 60,122, 54,190, 91,251, 37,252,150,202, 97,235, 7,100,222, 5,238, 79, 97, 76, -121,137,166, 49, 90, 57,206, 81, 74,179, 43,226, 20,139,197, 1, 98,177, 24,133,133,133,120,249,242,229, 27, 74,169,178,178,107, -162,148,102,116,237,218, 53,147,195,225,184,121,120,120, 0, 64,237, 74,236, 36, 38,147,169, 52,207,106,207,254,195,142,161,237, -189, 69,221,218, 6, 98,247,169,239,241,175,240,245,224,113, 8, 88, 86,143, 53,107,195,192,106, 11, 16,222,231, 75,210,161,171, -111,200,165, 83,186, 49, 0,182, 85,123,131, 45,176,224,223, 0, 6, 0, 8, 33, 29, 8, 33,148, 16,210,161,100,135,137, 82,147, - 49, 39, 7, 84, 91,244,227,135,199,227, 81, 0,101,103, 40, 89,217,217,217, 17,158,167, 39,136,176,232, 7, 55, 5,254,182,162, -123, 6,131,121,165, 97, 76, 44, 56, 32,122,208, 50,206,142, 66, 17,193,247,142, 93, 48, 73, 48, 23,233, 2,187, 63, 6, 83, 10, - 24, 41, 88,152,204, 42, 46, 88, 6,180,160,160, 0, 70,163,209,222,199,199,231,140,209,104,180, 47,162,251,207,253, 50, 98, 89, - 54,129,195,225, 96,226,196,137, 64,113, 40, 77,167,211, 33, 61, 61, 29, 90,173, 22, 58,157, 14,175, 95,191, 70, 94, 94, 30,116, - 58, 29,158, 61,123, 6, 47, 47, 47,112, 56, 28,183,170,120, 77, 38, 19,156,156,156,224,230,230, 6,109,161, 82,114,116,235,218, -222, 43, 22,206,116, 28,226, 67,153, 95,214,175, 54,121,122,122,102, 7, 5, 5,185, 10,133, 66,125,147, 38, 77,180,167, 78,157, -186, 8, 96, 64, 13,234, 96,157, 93,180,104, 81,139, 22, 45, 90,212,181,147, 74,244, 66, 1, 7, 66, 99, 33, 21,106,179, 41, 87, -157, 69,235,120,214,213, 67, 34,109, 62,120,240, 96, 1,204,248,167, 88,194,249,221,119,223,213, 15, 8, 8,112,180,179,145, 40, -185, 12, 82,249, 44,155,154,251,240,246,111, 0,192,119,116, 86, 67, 34,109, 94,156, 67,103, 54,231,244,233,211,131, 60, 60, 60, - 28, 24,134, 40,140,122,253,155,146, 29, 68,163,206,224, 8, 69,133, 16,138,218,125,254,249,231,188, 26,114, 6, 52,106,212,200, -193,222,214, 70,193, 99, 72, 50,159, 53,166,136, 41,251, 86, 96,208,203,133,206, 46, 5,144, 72,219, 12, 25, 50,132, 91, 25,103, -137,247,170,188,103,136,203,229, 34, 53, 53, 21,170,180, 39,224,167,198, 33, 68,202, 79, 61,231, 46, 0, 0, 32, 0, 73, 68, 65, - 84, 67, 75, 87, 71, 72, 36,146,234,127,172,140,141, 37, 24, 27, 75, 98, 94, 83, 18,243,154,146,178,235,101,135,165,165,165,193, -125, 81, 30,222, 27, 87, 9,202,231,103,189,135, 45, 1, 87,203, 31, 91, 44,178,170,252,123,218,183,111,223,172, 78,157, 58,101, -246,232,209, 67,119,230,204, 25, 16, 66, 16, 25, 25,137,212,212, 84,244,232,209, 3,148, 82,220,189, 91,228,156,125,244,232, 17, -186,118,237,170,107,223,190,125,234,190,125,251, 42,245,162,148,197,232,209,163, 97, 48, 24, 80, 80, 80,128,156,156, 28,156, 62, -125, 26, 33, 33, 33,212,202,202,106, 0,167, 86,247,239,195,199,204,106, 29,220, 40, 20, 27,215,175,210, 9,184,188,229,230,112, -150,128, 16,130, 17, 83,167,102,229, 53,110,156,179,167,176, 80, 53,210,198,198,202, 39, 37, 69,246,240,194, 5, 71,189,190,218, -201,131, 0,254,240,226,120,122,122,150,138, 43, 62,159, 15,174,192, 9, 28, 73, 67, 8, 28,122,192,202,117, 0,174, 68, 9,181, -182, 18, 28,179,150,226,188,196, 14,149,150,104, 0, 64,140, 70, 35,248,124, 62,174,254,126, 14, 33,179,129,144,217, 64, 90,243, - 19,248,116,242, 71,112,156,244, 2,182,126, 64,250, 13, 64,177, 42, 4,134,215,182, 74,173, 28,135, 42, 19, 87, 0,160,213,106, - 53, 44,203,130, 16, 2, 62,159, 47, 40,179,235,214,213,171, 87,113,249,242,101, 0,120, 89,178, 49, 55, 55,151, 50, 12, 3,137, - 68, 2, 0, 21,134,176, 1,128,101,217,210,124,176,171,119,175, 59,124,250, 73, 24,185,253,248, 55,180, 9, 25,130,236, 2, 61, - 50,242,244, 80,168,128,160,102,115, 16,220,245, 24,158,188,206, 71,104,163, 96, 14, 71, 32,249,160, 20, 14, 11,254, 51,168, 72, -139,252, 55,163,196, 5,115,181,124, 98,153, 81, 40,124,102,156, 48, 1,118, 39, 79,130,247,242, 37, 70,141, 24, 97, 99,101,101, -181,158, 16,210,132, 16,210, 70, 42,149,110, 92,176, 96,129,181,227,178,101,112,191,126, 29, 73,167, 79,195,192,227, 61,248, 16, - 35,212,106, 53,184,220, 34,103,154, 78,167,131, 68, 34, 1,203,178,128, 25, 33, 34,214,136, 59,169, 25,113, 16,160, 46, 76,160, - 5,231,149,237,239, 13, 73,152,227,124, 90,233,229,251,170,144,239,187,200,169,165,243,250, 58,109,239, 21, 18,110,129,192, 78, -132,228,228, 20,176, 48,221,169,137,125, 26,141, 38,175,176,176, 16,161,161,161, 14, 15, 31, 62,244, 9, 9, 9,145, 21,111,191, -255, 1,151, 91, 10, 66, 72, 43, 15, 15,143,195,158,158,158,137, 30, 30, 30,135, 9, 33,173,106,112,248, 47, 55,110,220, 0,135, -195,193,130, 5, 11,144,159,159, 15,189, 94,143,236,236,108, 36, 39, 39, 67,167,211,225,237,219,183,120,254,252, 57,116, 58, 29, -146,146,146,160,213, 86, 26, 41, 40,133,193, 96,128,181,181, 53, 20,217,153,146,131,155, 86,247,254,126,225, 92,113,222,171,223, -241, 54, 45, 3, 38, 86,157,182,114,229,202,231,190,190,190,151,245,122,125, 45,147,201,212,129, 82,186,197, 92,161, 73,138, 10, -149,222,244,247,247,111,177,114,229,202, 14,115,151,111, 23, 90,115,242,169,192, 90,104, 18, 88, 11,168,192,191, 37,198,204,223, - 32, 90,190,116,241,163,199,143, 31,231,152, 83,116,179,132,179,101,203,150, 65,233,233,233,109, 67, 66, 66, 66, 93,235,251,137, -132, 30,238, 89, 2,247, 58,217, 84,173,186,196,212,174,247,241,250,245,235, 31,222,189,123, 55,163, 38,156, 30, 30, 30, 13,127, -254,249,231,102,181,107,215,110, 38,178,181, 21, 23, 40, 20, 91,181,138,156,237, 60, 71, 87, 49,227,224, 24,190,103,207,158, 59, - 23, 47, 94,204,170, 9,103, 96, 96, 96,240,210,165, 75,155, 52,110,220,184,137,155, 95, 3,145,216,195, 83,206,247,168,147, 41, -110,212, 84,196,212,241, 30,184,118,237,218,123, 15, 30, 60,144,155,195,201,229,114, 89,134, 97,192,227,241, 32,145, 72,112,237, -218, 53, 12, 25,240, 17, 92,157,109,224,215,160, 1, 58,142,253, 10,103,206,156,129, 64, 32, 0,195, 48, 96, 24,230, 47, 23,180, - 52, 71, 8, 85,135,202,196, 87,117,220,148,210,179, 87,175, 94,253, 97,228,200,145,130, 94,189,122,225,222,189,123, 24, 61,122, -244,205,136,136, 8, 0,192,189,123,247, 48,121,242,228,155,151, 47, 95,198,184,113,227,208,185,115,103,193,141, 27, 55, 54,154, - 83,124,212,104, 52, 98,199,142, 29, 48, 26,141,144, 74,165,144,201,100, 8, 11, 11, 67,116,116,244,184,157, 59,119,198,113,120, -188,207,122,247,249, 4,103, 78, 70,224,249,179,232,113,187,150, 14,171,113, 49, 95,134, 97,208,107,196,136,172,172,160,160,156, - 93, 74,165,234,115,123,123, 43,255,244,116,217,149,195,135, 29,171, 59,150, 16, 66, 88,150, 45, 21, 85, 37, 98,163,228,197, 21, - 56,129, 43, 9, 6,215,186, 25,158,188,226, 27,120,205,105, 20,191, 41,141,173,170,200, 40, 33, 4, 38,147, 9, 60, 30, 15,141, -235,183,249,127,236,157,119,120, 20, 85,219,198,239, 51,179,125, 55,187, 73, 54,189, 64, 18, 2, 73,232,129, 64, 66, 47,130,130, - 4,165, 72,121,177,208,148, 34, 42,168,136, 8, 72,111, 2,175, 32, 82, 4, 1, 1,145,106, 69,122,145, 72, 7, 65,145, 94, 19, - 72,111,155,182, 73,182,206,156,239,143,100,215, 37,108,146,221, 0, 2,239,183,191,235,154,107,203, 76,238, 61, 51,217,157,185, -231, 57,231, 60, 15,110,126, 91,246,126,189,215,129,152, 13,185,240,109, 83,214, 45,120,119,161, 47, 62, 26, 62, 3, 66, 86,100, -170, 46,109, 14,207,243,151,114,115,115, 33, 16, 8, 16, 25, 25,233, 79, 8,177, 68,165, 62,239,220,185,243,204, 55,222,120, 99, - 1,128,113,229,159, 31,210,191,127,255, 64,163,209,136, 63,255,252, 19, 0,206, 85,166, 75, 41,181,206, 26,212, 20, 38, 73,194, - 2,155, 32,186,193, 72,120,122, 54, 69,170,198,128, 52,141, 1,107, 86,246,198,185,163,179,241,199,254, 55,112, 55, 35, 3, 50, -255, 62,224,204,250,198,213, 29, 91, 23, 79, 21, 15,120,145,103,153,138,105, 26, 0, 0,117,213,106,165,201,100, 76, 57,112,224, -128,145, 97, 24,200,229,114, 12, 25, 54,140, 89,185, 98, 69,251, 65,173, 91, 31, 30,241,252,243,123, 14, 31, 58,212, 60, 46, 46, - 14,148, 82, 48, 12,131,173, 91,183,150,234,116,165,185,181,107,215,246,176,255, 81,255, 96, 59,182,138, 82,138,194,194, 66,171, -193, 42, 40, 40,128,159,159,159,195, 93,132,197,133, 56,120,104,239,185, 60,202,189,125,175,199,205,197,198,249, 25,189,227,242, -121, 78, 80,192,153, 80, 80, 74, 81,164,131,224, 52,163,142, 27, 18,209,199,120,167,107,220,181,132,171, 39,114,117,156,206,169, -217, 15, 89, 89, 89,147,251,247,239,159, 27, 16, 16, 64, 84, 42, 21,130,130,130,152, 94,189,122,229, 36, 39, 39,207,116, 70,199, - 22,111,111,239,255,116,238,220,121,103,106,106,106,191,132,132,132,208,223,127,255,189, 95,231,206,157,119,122,123,123, 87, 57, -112,214,134,109,147, 38, 77, 42, 22,139,197,104,213,170, 21,138,138,138, 96, 48, 24,170, 93,170,131,231,121, 72,165, 82,108, 95, -179,228,133, 57, 51, 62,149,229, 94, 57,137, 11,199, 14, 96,111,162,190,100,218,252, 47, 78, 73,165,210, 26,237,111,132,175,162, - 73,147, 64,229,149,247,135, 13, 76,251,100,226, 68,229,223,127,255, 45,123,111,236, 56, 36,101,230, 83,113,143,207, 89,116,252, -148,249,171,216,155,196,191,248, 28, 62,155, 59,181, 35,128, 81,213,105, 54,244, 85, 52,105, 28,168,188, 60,126,196,160,219, 99, -199,142,149,205,159, 63, 95, 23, 27, 27,107, 74, 79, 79,119,119,243,246,109, 33,244,242,110,157,152,145,233,209,162,101,203,155, - 99,199,142,213, 57,171, 57,117,234, 84,249,241,227,199, 69, 93,186,116,161, 89, 89, 89,158, 34,153,172,141, 80,233,222, 49, 45, - 39, 71,221,181,107,215,155, 67,135, 14,229,106,162,121,253,250,117, 81,139, 22, 45,104,122,122,186,167,220,203,167,149,200,203, -167,195,157,244, 12,207,102,205,155,223,120,255,253,247, 77, 85,105,246, 95,246,143, 57,113,115,115, 75,143,142,142,198,180,105, -211, 48,107,214, 44, 12, 24, 48, 0,137, 73,137,232, 56,116, 4,234, 12, 25,133, 95, 79,157, 65, 90, 90, 26, 38, 79,158,140,136, -136, 8, 8,133,194, 27,149,233, 58,131, 35, 38,171,178,238,195,134,117,200,145,170,198, 89, 85,167,221,175, 95,191, 49,150, 84, - 12,195,135, 15, 63,182,116,233,210,118,195,135, 15, 7, 0,180,106,213, 10,179,103,207,110, 55,101,202,148, 99,115,230,204, 65, -151, 46, 93, 16, 30, 30, 94,109, 62, 49,142,227, 96, 54,155, 49,104,208, 32,152,205,102,100,103,103,227,250,245,235, 88,189,122, - 53, 40,165, 82, 0, 8, 8, 12,110, 33, 22,139,241,215,249,179, 37,159, 14,143,219, 84,157,166, 5,219,115, 29,207,243,208,106, -181,232, 55,122,116, 78, 74,189,122,154,175,114,114, 74,222,244,244,148,135,221,189,171, 86, 26, 12, 65, 85,141, 57,181, 53, 67, -182,105, 9, 42, 46,150, 9, 42,142, 98,209, 28, 53,232,125, 72,247,182,183,154, 44,183, 16,128, 55, 3,231, 38, 10,241, 78,159, -105,136,110,210, 12, 12,195, 56, 98,172, 79,157, 62,125, 26, 98,177, 24,239,191,255, 62, 97, 89,118, 9, 33,132, 80, 74,243, 40, -165,211, 40,165, 31, 83, 74,117,132, 16, 34,145, 72, 86, 13, 27, 54, 12,122,189, 30,199,142, 29, 3,128, 67,246, 4, 45,227, 74, - 45,251,174,213, 16,112,188, 24,199,207,239,197,254,223,119, 32, 49, 53, 27,119,179,116,128,192, 29,186,226, 20, 24, 75, 83, 97, -200, 63,143, 66,189,220,158,156,139,167, 28, 91, 47,242,172, 99, 47,209, 40,168, 74, 54,112,199,242,149,238,253, 7,189, 94, 28, - 29, 29,237, 25, 20, 20, 4, 66, 8,122,247,233, 67, 58, 39, 36, 40,133,129,129,240,138,137,177,102,207, 61,120,224, 0,246,238, -221, 91,188,235,167, 31,131,134,189,249,230, 75,176, 77,246, 92, 1, 66,136,160,110,221,186,214,207, 77, 79, 79,135, 68, 34,177, -142,121, 40, 44, 44,132,143,143, 15,210,211,211,225, 96, 96,100,227, 39, 19, 79, 77,204,138,155, 92, 39, 78, 41, 36,123,138, 51, -192, 81, 10, 33,225,128, 82, 10, 19, 7,232, 77, 20, 45,194, 88,245,254, 82,179,231,175,167,127,184, 3, 96,163, 51, 7, 73,167, -211,253, 70, 8, 25,201,243,252, 14, 0, 76, 66, 66, 2,127,249,242,229, 49,142, 14, 72,183,135, 92, 46,159,112,248,240, 97,245, -132, 9, 19,242,126,253,245,215,130,158, 61,123,186,175, 94,189, 90,253,220,115,207, 77, 0,176,165,186,191,167,148,150, 18, 66, - 54, 36, 39, 39,143,105,217,178, 37, 52, 26, 13,140, 70, 35,206,157, 59,135,136,136, 8,252,241,199, 31,136,140,140,196,217,179, -103, 17, 21, 21,101,153, 50, 13,158,231,171,237,198, 77, 75,190,235, 38,215,231,169,210, 78,239,198,181, 11,127, 96,247,109,125, -201,194,117, 91,119, 55,105,214,162,216,217, 19, 56, 0, 68,249, 41, 26, 5,249,122,237,159, 63, 99,170,111,210,111, 91,241,195, -186,101,252,145, 61,123, 26,138,149, 24,217,233, 63, 99, 95, 49,152, 80, 27,128,164, 77, 92, 75,250,162,199,117, 94, 22,138,140, - 67,151,170,206,100, 30,229,167,104, 20,232,227,181,111,225,252, 89,202, 91,123,190,193,182, 85,159,211,239,191,221, 28,173, 3, -226,154, 52,105,210,131, 16, 18, 0,192, 92,254, 63,114,168, 4,141, 61,205, 67,191,254,218, 92, 7,196,213,173, 91,183,135, 80, - 40, 12, 5, 0,147,201,148,250, 40, 52,155, 54,109,218,163,252, 14,159,150,143,185,114,170, 84,206,240,225,195, 23,141, 31, 63, -254,125,147,201,100,205, 17,100, 50,153,216,213,171, 87, 11, 56,142, 99, 40,165, 70,134, 97,140,251,246,237,227,204,102,115,154, - 78,167, 27,237,168,118,101,188,242,202, 43, 56,117,234,212, 12, 84, 49,120,217, 22,141, 70, 35, 80,171,213,214,187,165,170,198, -109, 57,162,157,144,144, 48,235,213, 87, 95,253,100,203,150, 45,215,151, 46, 93,250,242,168, 81,163,176,117,235, 86,212,171, 87, - 15,127,253,245, 23, 38, 79,158, 12, 0,237,166, 76,153,242,203,218,181,107,195,147,146,146, 22, 85,215, 70,147,201, 4,179,217, -140,205,155, 55,163,119,239,222,240,241,241, 65, 96, 96, 32, 8, 33,191,189,249,230,155, 43, 0,128, 37,172, 8, 0,244, 58,189, -190,126,253,150, 14, 71,108,195,195,195,173,231,186,140,140, 12,235,204,191, 23, 94,125, 53,103,205,252,249,216, 84, 90,138, 55, - 61, 61,229, 41,193,193, 1,191,220,186, 53,130, 16,178,186,178,136,176, 37,138, 83,157,185,114, 34,162, 12,203,216, 38, 63, 63, - 63, 76,121,103, 30,230,173,156,130,155, 56,130,122,175, 1,151, 22, 3,189,195,223, 69,203,232, 86, 8, 12, 12,172, 94,176,140, -223,222,126,251,237,179,151, 47, 95,110,217,180,105, 83,204,156, 57,179,215,244,233,211,247, 19, 66, 70, 88,102, 49, 19, 66,194, - 88,150, 93,114,224,192,129,231, 85, 42, 21,174, 92,185,130,237,219,183,223,132,101,132,190,157,118, 2,176,230,188,170, 93, 43, - 82,119, 45, 73, 43,207, 74, 61,142, 99, 71,127, 66,189,232,113,144,249,191, 4,117,253, 57, 48, 94,253, 2,134,220,253, 80,215, -234,137,148,164, 91, 96, 5,146,139,142, 54,220,197,211,129,173, 23,121,214,177, 59, 74,155,240, 68, 24, 21, 25,201,137, 24,124, -211,251,165,151, 74,254,252,243, 79,235, 93,158,238,204, 25, 20,239,221, 11,142,227, 64, 41,197,239, 9, 9,120,227,245,215,181, - 66,150,172, 9, 11, 11,165,132,254,147,123,133, 16,242, 64, 30, 43,145, 72,212,191,127,255,254,214,147, 78,114,114, 50, 20, 10, - 5,196, 98, 49,120,158,135,217,108, 6,203,178,112,119,119,135,217,108,126, 32,228, 82, 81,147, 82,106,226, 52,197,253,214,198, -191,150, 30,168, 53,210,145, 30, 97, 8, 17,201,172, 63, 74,127, 21,193,203,209, 66,120, 11,178,232,161, 69,207,167,241,250,220, -126,180, 66,237, 47,123,237,172,176, 62,178,105,211,166, 43,222,120,227, 13, 6, 0,186,118,237,202, 52,109,218,244, 75, 66, 72, -165, 37,109,170,211,148, 74,165, 18, 0,216,185,115,167,230,250,245,235,221,119,238,220,169,177,125,223, 65,205,213, 11, 22, 44, -128, 92, 46,135,217,108,134,193, 96,176,142,191,178,125, 52, 26,141,240,246,246,198,174, 93,187,192,113,220,174,234,218,217,160, -113, 83,109,129,192, 35,115,253, 47,135,176, 39,201,168,117,214, 92,217,106,214, 11,112,139,242,247,246, 58,176,112,238, 44,159, -188,155,231,144,146,146, 66,247,237,221,117,178,148,210,212,252, 66,250,105,158,150, 70,149,232,169, 44, 54, 28,247, 14,172,250, -152, 78,233, 0, 19,200,131, 93,195,182,154,141, 2,220,162,130,124,188,246,125,190,104,190, 50,255,198, 31, 72,207,200,192,238, - 93, 59,255, 44,165, 52,149, 82,250, 61,165,116, 40,207,243, 77,120,158,111, 66, 41, 29, 90,153,105,113, 86,211,104, 52, 54, 49, - 26,141,143, 84,211,217,118,218,204, 32,196,140, 25, 51,110,164,164,164,140,202,204,204,124,197,178,104, 52,154,222, 69, 69, 69, - 61, 75, 74, 74,122,148, 46, 14,117, 47, 46, 46,246, 45, 42, 42, 10, 40, 45, 45,109, 65, 41, 61,103, 79,211, 17,108, 47,176,105, -105,105,211,211,210,210, 30,136,182,220,167, 57,242, 10, 89,190,232,237,111,183,111,223, 94,101,250,129,234,180, 43,182, 51, 59, - 59,123,199,230,205,155,155,213,169, 83, 39,124,232,208,161,248,234,171,175,176,116,233, 82, 61, 0,172, 93,187, 86,111, 19,185, -170,149,152,152,216,210, 94,247,160,173, 38,195, 48, 27, 95,120,225, 5,250,251,239,191,163,119,239,222,214, 4,160, 95,127,253, - 53,204,102,115, 97,151, 46, 93,120, 0, 40,213,149, 20, 82,158,194, 96,180,223,207,110,239,120,138,197,226, 23,109,243,253, 89, -146, 40,139,197, 98, 80, 74, 17,213,174, 93, 78,126,116,180,102, 93, 65, 65,201,244, 38, 77, 84, 35,234,215, 31,218, 0,120,221, -158, 38, 33,228,190, 40, 78,197,165, 38,191, 77, 11, 22,141,224,224, 96,204,250,240,115, 4,159,121, 5,191,181,247, 66,179,220, -161,232,214,254,101, 68, 69, 85,145,235,161,130, 38,165,148,102,101,101,141,154, 58,117, 42, 47, 22,139,241,214, 91,111,225,135, - 31,126,232,218,179,103,207,164,160,160,160,164, 70,141, 26,101,140, 25, 51,230,118, 78, 78, 78,207, 86,173, 90, 65,163,209, 96, -244,232,209, 70,141, 70,211,223,118, 28,103,197,118, 18, 66,172,145,187, 94,241, 93, 53, 43,191,252,156,239,210,113, 12,228, 50, - 21, 76,194, 90,208,104, 77,200, 43,166, 48, 72,226, 32, 22, 73,208,173,117, 35,156,218,183,190,132, 51, 20,111,168, 76,243, 81, -224,210,116, 81, 21,247,165,105,176, 60, 18,194,115, 28,199, 35,172, 78,152, 50, 41,241,222,178, 1, 3,250, 15,239,209, 35, 94, - 30, 31, 31, 47,109,116,181,172,139, 98,231,206,157,248,225,135, 31, 74,246,239,223, 95, 40, 17,178,107,107,213,174,229,199,113, - 60, 8,169, 58, 66,162, 84, 42,199, 78,154, 52, 73, 86, 80, 80,128,165, 75,151,242,205,154, 53, 99, 20, 10, 5,140, 70, 35,214, -174, 93,107,106,212,168,145,144, 97, 24, 20, 20, 20,128, 97,152,107,142,236, 4,165,244, 2, 33,164,219,138,206,125,127,104,249, -206, 48,175,134,157,219,120,118,170, 21, 4, 83, 12, 69, 90,114, 34,174, 31,218,159,119,105,223,146, 92,232, 50,251, 82, 74, 29, - 46, 70,109, 33, 48, 48,112,218,254,253,251,125,223,125,247, 93,170,211,233,200,189,123,247,232,220,185,115,125,223,122,235,173, -105,168, 38, 23, 78, 21,144,252,252,124, 16, 66,120, 0,214, 71, 56, 81, 30,128, 82,122,145, 16,242,115,159, 62,125,122,117,233, -210, 5, 87,175, 94,181,118, 5,218, 26, 44,203,108,194,121,243,230,229, 3,255, 36, 8,172, 12,137, 68,130,175,119,236,221,147, -150,114, 87, 30, 22, 86, 87,231,238,233,201,215, 36,114, 5, 0, 98,134,153,254,217,172,169,190, 57, 87, 78,145,139, 39, 15,243, -219, 47,100,102,153, 57,106, 63, 67,127, 81, 26, 5, 0,166,186,177,119, 12, 59,125,193,188, 89,238,150,238,203, 45,231,211, 11, - 9, 71,223,173, 81, 3,159, 53,205, 39, 64,217, 12,191, 52, 18, 24, 24, 72, 45, 93,120,246, 12, 86,117,216,235, 30,172,169,246, -157, 59,119,230,198,196,196,140,191,113,227,198,246,134, 13, 27,142, 2, 80, 91,175,215,231, 79,153, 50,101,225,218,181,107,135, - 59, 18,185, 2,128,173, 91,183, 46, 25, 54,108,216,222,151, 94,122,233, 99,158,231,155, 90,222, 39,132,220,241,245,245,181,102, -228,202,206,204,152, 56,114,248,160,137, 90,109,158,195,121,234,220,220,220, 70, 76,153, 50, 69, 90, 92, 92,140,229,203,151,243, -141, 26, 53, 98, 44, 55, 67,223,126,251,173, 57, 50, 50, 82,208,127,204,152,156,197, 25, 25,152,125,244,104,241,196,198,141,155, -173,187,126,189, 5,236, 68,216, 45, 55,140,246, 34, 87,150,225, 21,206, 98,209,180, 53,106,193,193,193,152,246,254,124,164,166, -166, 66, 36, 18, 33, 34, 34, 2, 98,177,184, 26,165,251,161,148,254, 69, 8, 25,116,239,222,189, 13,203,151, 47, 23,183,106,213, - 10,177,177,177, 16, 10,133, 33,150,246, 26, 12, 6, 92,184,112, 1,147, 38, 77,162,103,206,156,121,139, 86, 81,160,158,227,184, -172,200,200, 72, 75,155, 41, 33, 36,183, 80, 79,220,183, 53,136,115, 27, 58,114, 59, 57,118,246, 4,210,140, 60,244, 38, 30, 97, -117,154,163, 83,247,197,248,101,207,223, 92, 90,210,229,203,166,210,188, 53,149,233,186,120,250,168,232, 69,158,117,236,254, 50, -121,150, 57,254,213,170,149, 47,110,221,188,197,159,101, 25,255, 91,183,111,159,125,185,111,191,212, 3, 7, 14,168, 69,238,238, -177, 0,120,195,168, 81, 39,141,250, 82,205,175, 63,255, 28, 18, 22, 22, 26, 93, 94,236,153,242, 44,115,188,170, 15,212,106,181, -197, 71,143, 30, 45,249,228,147, 79, 72,114,114,242,119,126,126,126, 3,247,236,217,227,214,183,111,223,210,171, 87,175,126,239, -239,239,223,171,115,231,206,202,241,227,199,235,181, 90,237, 50, 71,119,132, 82,122,153, 16,210,224,204,212, 69,175,158, 89,176, -242,121, 8,216,182,208, 11, 1,222,116, 28,198,162, 3, 0,190,163,148, 58, 54,176,171, 2, 10,133, 34, 90,161, 80,224,207, 63, -255,204,139,139,139, 51,232,116, 58,209,156, 57,115,188, 20, 10, 69,116, 77,244,202,219, 75,243,242,242,192,243,188, 0, 0, 41, -127, 4,239,124,173,156,255,188,252,242,203, 63,111,219,182,237,133,248,248,120,132,135,135,195,100, 50, 33, 50, 50, 18, 6,131, - 1, 17, 17, 17,208,235,245,152, 49, 99, 6, 10, 10, 10, 62,160, 14, 20, 17,150, 74,165, 16,139,197,136,106,208,184, 68, 42,149, - 58, 61,174,195, 22,133,144, 9,191,246,235, 58,100,229,230,240,219,254,202,204, 44, 49,114,221,110,100, 21, 95,170,184, 93, 9, -135,226,206, 67,223, 75, 5, 0, 61, 15,109,149,154, 98,132, 95,251,117, 53, 50,179,114,176,245,124,122,126,177,145,239,126,205, -142,166, 83,237,124, 70, 52,251, 47,187,138, 78,111, 59,190,237,246, 42,146,118, 58, 66, 77,140,148,133,203,119, 40,193,170, 6, - 20,171,150,217,205,113,245, 48,218,229,145,169,159, 1,128, 16,146, 60,104,208,160,137,137,137,137,179,202,243, 93,173,170,250, -175,239,103,221,186,117, 55, 0, 12,171,106,155, 45,139,134,253, 8,224, 71,103,116,139,138,138,116,231,206,157,211,141, 31, 63, -158, 36, 39, 39,239,241,247,247,127, 97,239,222,189,242,190,125,251,234, 47, 94,188,120, 40, 48, 48,176, 67,215,174, 93,221,118, -159, 62,157, 90,114,235,214,175,191, 38, 38, 6,155,120,254,215,202,244,202,103,230, 61, 18,115,101,209,179,141, 12, 89, 76, 86, - 96, 96, 32, 66, 66, 66, 30,234,119, 79, 41,221, 70, 8,185,210,174, 93,187, 31,134, 14, 29, 90, 47, 46, 46, 14,145,145,145,208, -104, 52, 72, 73, 73,193,177, 99,199,176,122,245,234,211,165,165,165,239,218, 70, 86,237,145,155,155,251, 64, 25, 33, 34,243, 10, - 92,191,124,250,206,179,199, 98, 35,219,199, 15,145, 53, 14,228, 97, 48, 82, 36,223,189,133, 25,159,174, 41, 73,191,123,227,178, -209,108,236,227,202,129,229,226, 73, 98,247,215,121,251,118,242,229,240,240, 90,147,126,248,126, 71, 91, 74, 25,150, 18, 82,236, -225,225,185,243,222,189,123,247,101,193,174,171, 86, 43,135,189, 53,108, 32,225,137,144, 16,158,227, 89,230,248,237,219,201, 85, - 70,136, 12, 6,195,200,129, 3, 7, 46,149,203,229, 83, 52, 26,205,159, 30, 30, 30,127, 69, 71, 71,207,162,148,126, 90, 90, 90, -250,179, 82,169, 60,221,166, 77,155, 57, 33, 33, 33, 75, 40,165,127, 56,179, 51,229, 6,106, 3,170, 24, 3, 86, 19, 8, 33, 51, - 1,184, 11, 4,130,130,191,255,254,123,115, 84, 84,212, 32, 74,169, 59, 33,164,160,166,154, 58,157,238,221,252,252,124,239, 17, - 35, 70,152, 86,175, 94, 29, 53,100,200,144,137,151, 46, 93, 18,234,116,186,219,206,232, 80, 74,245,132,144, 94, 3, 6, 12, 88, - 35, 20, 10,187, 48, 12, 67,120,158,167, 54,235, 65, 41, 5,199,113,191,160,154,227, 34, 20, 10,181, 47,190,248,162, 91,117,159, - 41, 22,139,171, 52, 64,182, 20, 25,184,113, 43, 15, 95,154,167, 51, 81,106,230,233,200,107,153,197,118,167,144,157,185, 70, 27, - 57,172,169,227,199, 45,221,119,121,158,222,196,243,102,158,142,170, 76,211, 25,158, 21, 77, 0, 24,205, 44,251, 22,171,150, 89, - 7,188, 91,186, 13, 43,190,126,212, 88, 34, 77,112, 38,203,114,121, 58,134,170,178,179,215, 88,187, 28, 91,179,229, 44,253,250, -245,123,100,169,101, 42, 98, 52, 26, 39,191,252,242,203,179, 60, 60, 60, 22,102,103,103,255,233,225,225,113,185,126,253,250,227, -120,158, 95, 82, 82, 82,178, 83,169, 84,190,212,178,101,203, 15, 66, 67, 67,215, 39, 81,186,190, 42, 45,142,227, 82, 45, 81, 28, - 0,212, 18,125,178, 24, 8, 91, 35, 97, 50,153, 42,205,161, 86, 81, 51, 58, 58,186,188,215,162, 76,175,226,163, 45,142,234, 90, - 27, 89,118,211, 91,127,214,172, 89,109, 0, 60, 7, 32, 26, 64, 33,128,187, 0, 78, 82, 74,247, 58,163,119,159,118,105,110, 26, - 33, 36,230,202,249,163,163,174, 95, 62,255,170,101,182, 32,203,138, 47,114,198,146, 13,166,210,188, 53, 46,115,229,226,137, 99, -185, 0, 63,142, 5, 64, 87,151,166, 75,211,165,233,210,116,105,186, 52, 93,154, 46,205,255,111,139,171,244,184, 11, 23, 46, 92, -184,112,225,194,197, 35,134, 0,176, 59, 19,128, 58, 81, 41,187, 38,179, 9,170,211,119,105,186, 52, 93,154, 46, 77,151,166, 75, -211,165,249,191,167,249,255,134,199, 25, 30,195, 51, 18,150,116,105,186, 52, 93,154, 46, 77,151,166, 75,211,165,249,100, 53,255, -215, 22, 87, 23,161, 11, 23, 46, 92,184,112,225,194,197, 35,166,230,115,124,255,159, 82, 94, 83,238,109, 0,253, 0,212, 5,112, - 11,192, 14, 0, 43,168,227, 5,143,109,245, 84, 0, 38, 2,104, 11,160, 14,128, 59, 0,142, 2,152, 79, 41,117,120,182,222,255, - 55,124,124,124, 38, 9,133, 66, 15,160,172,220,135,229,209,246, 57,199,113,249, 5, 5, 5,115, 31,199,231, 19, 66, 88, 74,169, - 67, 51,208, 44,109,181,109,155,237,163,201,100,122,108,237,116,241,116, 66, 8,137, 84,171,213,155, 52, 26,205,107,148,210,235, - 79,186, 61, 46, 92, 60, 74,124,125,125, 71, 25,141,198, 41, 34,145,104, 78, 86, 86,214,202, 39,221,158, 39,133,213, 96, 17, 66, - 18, 0,128, 82,218, 17, 0,148, 74,229, 9,134, 97,234,148,175, 3, 80, 86, 19,202,246,117,197, 71,158,231,239,228,230,230,182, -169,236,195,228,114,249, 9,150,101,235, 16, 66, 44,197,103,193, 48, 12, 76, 38,147,146,101,217,162, 74, 52, 83, 52, 26, 77,139, - 71,180,191, 15, 69,121,173,176, 95, 61, 61, 61,117,179,102,205, 90,209,169, 83,167, 90,105,105,105,230, 9, 19, 38,116,248,235, -175,191,226, 9, 33, 47, 58, 99,178, 8, 33,173, 9, 33,235,155, 53,107,246,227,224,193,131,183,197,197,197,137,115,115,115,149, - 59,118,236, 8,218,176, 97,195, 57, 66,200,107,212,201, 84, 21, 79, 59,132, 16, 1,173, 36, 31, 89, 85,235, 42, 34, 20, 10, 61, - 82, 82, 82,148, 64, 89, 55,119,185,161,130,201,100,130,201,100, 66,113,113, 49,162,163,107,156,166,172, 82, 2, 2, 2,154, 19, - 66,150, 69, 68, 68,180, 8, 12, 12, 60, 11, 96, 76, 90, 90,218, 95,206,180,213,108, 54,131, 82,106,109,103,195,134, 13, 31,121, - 59,255,151, 33,132,188, 41, 22,139,187, 71, 68, 68,196,234,245,250,188, 59,119,238,156,225, 56,110, 42,165, 52,227, 17,233,187, - 3,152, 42,145, 72,226,234,214,173, 91,235,198,141, 27,201, 70,163,241, 52,128,153,148,210, 26,167,102,177,209,143,236,216,177, -227,177,229,203,151,123,141, 30, 61,250, 24, 33,164,157,203,100,185,120, 82,212,174, 93,219,163,184,184,120, 13,128,230, 66,161, -208, 95, 42,149, 66, 38,147,101, 72, 36,146, 63,101, 50,217,240, 99,199,142,229, 87, 43, 82, 1,142,227,166, 38, 37, 37,249,183, -106,213,106, 65,227,198,141,103,228,228,228,232,140, 70,227,161,188,188,188, 15, 40,165,133, 85,253,109, 69, 47,242, 44, 35, 0, -172,197, 21, 59,221,183, 66, 32, 8, 78, 74, 74,242, 85, 42,149,224, 56,206, 26, 29,176, 92,204,202,251, 96, 1,148, 93, 52, 56, -142, 67,253,250,245,141, 85,125,152, 80, 40,172,149,146,146,226,235,230,246, 79,170, 37,163,209, 8,127,127,127, 62, 53, 53,213, -183, 98, 33, 97,131,193,128,224,224,224,167, 41,151,201,219,106,181,186,224,222,189,228,104,157,222, 56,243,173,119, 63,153,244, - 90,191,231, 61, 79,156, 56,193,191,248,226,139,250,132,132,132,183, 1, 56,148, 28,149, 16,226, 78, 8,217, 48, 97,194,132, 25, - 82,185,202,235,240,137,203,250, 13, 59,118,165, 54,139, 12, 35, 31,124,240, 1,251,222,123,239,253,222,188,121,243, 77,132,144, - 24,103, 34, 89, 74,165,114,175, 68, 34, 9,101, 89, 22, 70,163,241,158, 70,163,121,161,198,123,251,136, 33,132, 52, 3,112,158, - 16,210,156, 82,250,167,163,235,170, 34, 55, 55, 23,165,165,165, 15, 44, 13, 27, 54,188,239, 59,250,136,218, 47,168, 85,171,214, -207,243,230,205, 11,202, 72, 79,199,231,139, 23,183, 2,176, 2, 64, 43, 71,254, 62, 43, 43,235,129,118,214,175,255,120,114, 86, -253,175, 66, 8,153, 56, 99,198,140,121,175,190,250, 42, 56,142, 67,105,105,105,224,205,155, 55, 27, 77,153, 50,165, 15, 33, 36, -150, 82,234, 84, 30, 57, 59,250, 62, 17, 17, 17, 87,199,141, 27,167,142,141,141, 69,121, 85,137,192,163, 71,143,182, 90,187,118, -237, 27,132,144,250,148,210,236,135,249, 12,181, 90,189,233,235,175,191,246,146,203,229,248,229,151, 95,188,186,116,233,114,148, - 16,210,190,166, 38,139, 16,194,120,121,121,189, 7,224, 57,158,231,197, 0, 78,231,229,229,205,166,148, 86,121, 62,118,225,194, -219,219,251,205,162,162,162,229, 18,137, 68,228,233,233, 9,185, 92, 14,129, 64, 0,129, 64, 80, 91, 34,145,212,150, 72, 36, 61, -158,123,238,185, 49,135, 15, 31,174, 50, 35,126,155,230,254, 67,193,144,153, 44, 97, 88, 0,104, 24,225,165,114,119,119,199,204, -153, 51, 21,189,122,245, 82, 0,192,177, 99,199, 6, 15, 25, 50,164, 11, 33,164,113,101, 38,203,158, 23,121,150,177, 45,246,156, - 96,187,130, 16, 2,153, 76,134,109,219,182,129,101,217,251,170,184,219,123, 94,187,118,237,106, 63,204, 18, 1,219,185,115, 39, - 84, 42, 21,220,221,221,173, 23, 24,137, 68,130, 67,135, 14, 65, 40, 20, 66, 32, 16, 64, 40, 20,162, 69,139, 22,118, 19,222, 61, - 78,250, 55, 42, 43, 50,105, 47,121, 99,251,186, 50,244,123,111,250,192, 18,157,177, 37,128,226,252,188,188,188,179, 63,252,144, -214, 44, 50, 82,180,105,211,166,216,160,160,160,126,112,208, 96, 1,152, 24, 19, 19,243, 61, 43,115,247, 30, 60,100,232,224,225, - 2,198,248,198,200,241,115,146,211,115,138, 71,140, 24,241,195, 47,191,252, 50,248,179,207, 62,187,242,209, 71, 31, 77, 4, 48, -217,209,246,139,197,226,208,155, 55,111, 70,240, 60,143, 38, 77,154, 60, 53,229, 6, 44, 6,138, 82, 10, 66,200,125, 70,170,170, -117,213, 97,137, 88,217, 91, 30, 53, 65, 65, 65,245, 95,127,253,117,111, 77, 78, 14, 62, 95,188,216,242,118,139,234,186, 11, 45, - 93,129, 6,131, 1,175,188,242,202,235, 28,199, 9, 44,230, 79,175,215, 27, 10, 10, 10,116, 54, 51,117,178, 41,165,207, 87,215, - 22, 66, 72, 29,133, 66,177, 16, 64,243,210,210,210, 32, 0, 80, 40, 20,169, 60,207,255, 88, 92, 92, 60,153, 82, 90, 90,147,125, - 36,132,212, 2,208, 8,149,151,108,162,243,230,205,187, 49,113,226, 68,135,141,204,163,210, 36,132,132,250,249,249,205,237,223, -191, 63,118,237,218,133,221,187,119,155,100, 50,153, 96,200,144, 33,100,204,152, 49,158,227,198,141,235, 1,224, 11, 71,219, 85, - 9, 61,102,204,152,161,110,208,160, 1,118,236,216,129, 11, 23, 46,148, 70, 68, 68,200, 58,117,234, 4,129, 64,160,158, 52,105, -210,139, 0,214, 63,204, 7,104, 52,154,217,227,199,143,223,176,121,243,102,229,157, 59,119,176,108,217, 50,239,129, 3, 7, 38, - 16, 66, 58, 58,106,178, 8, 33, 18, 0,239, 1,232,204,178,108,251, 33, 67,134,152,223,125,247, 93, 33,195, 48,166,197,139, 23, -251,172, 93,187,118,160,183,183,119,243,156,156, 28,215, 48,131, 42, 96, 89,214,200,243,188, 16,128,148, 82,170,175,238,245, 19, -110,238, 35,197,203,203,107,116, 94, 94,222, 10,127,127,127,248,249,249, 61,112,173,213,235,245,144, 74,165, 34,127,127,255,175, -123,247,238, 45,252,233,167,159, 42,237,234, 35, 44,153,250,203,150, 89, 65,106, 79, 37, 0, 96,201, 87,251, 74, 0,224,167,159, -126, 66, 90, 90, 26, 60, 61, 61,209,184,113, 99,118,214,172, 89, 1, 31,124,240,193,231, 0,134, 87,166, 85,209,139, 60,203, 84, - 57, 6,139,231,121,107, 33, 81,139,145,178,152,159,138,207,129, 7,179,255,210, 10, 83, 53, 9, 33, 68,171,213, 90,205,149, 74, -165, 66,249, 69, 21, 38,147,233, 1, 93,142,227, 44,142,182, 82, 77,123, 16, 66, 70, 3, 56, 68, 41,189,229,200, 65,176,213,220, -254, 78,125,108,144, 76, 24,100, 73,121,222, 99,124,217,227, 6, 0, 39, 18,135, 47, 91,222,177, 99,208,123,159, 46,157, 94,154, -155,150, 51,233,245,151, 66, 35,252,189,100,138,252,172, 2,117, 84, 84, 55, 0,102,123,154,149,208, 97,240,224,193, 27,247,159, - 74, 34, 82,169, 72, 36, 96, 89, 97,187, 38,145, 94,181,220, 89,119, 37,224,158,124,251,198,137,161, 67,135, 54,249,232,163,143, -218, 59,179,239, 12,195, 64,165, 82, 97,227,198,141, 96, 44,142,214,193,125,127, 84,216,249,191, 11, 80,110,160, 52, 26, 13,118, -237,218,133,248,248,248,243,132,144,230,229,155,156,167,148,162,176,176, 16,233,233,233, 8, 8, 8, 56, 79, 8, 17,218,118, 23, - 86,212,180, 68, 81, 45,102,106,200,144, 33,175,155,205,102,235,247,217,142,113, 1, 42,152, 23, 71,247, 61, 48, 48,112, 63,128, -231, 89,150,133, 65,167, 51, 44,252,239,127,109, 87,255, 97,107,174, 42,211,180,180,149,227, 56,193,249,243,231,133,150,223, 12, - 0, 33, 0, 5, 0,111, 74, 41, 24,134,121,160, 38,155,157,227, 89, 95, 46,151,159,216,185,115,167,170, 69,139, 22, 68, 44, 22, -195,108, 54,227,226,197,139,181, 62,251,236,179,145, 7, 15, 30,124,145, 16,210,144, 86, 40,106, 94,149,166, 13,141,142, 30, 61, - 90, 28, 30, 30,110,215, 48, 22, 22, 22, 10, 34, 35, 35, 59, 2,120,192, 12,253, 11,154, 41,153,153,153,189,159,127,254,249, 81, - 25, 25, 25, 87,205,102,243,199, 0, 26,123,123,123,159,239,219,183, 47,100, 50, 89,103, 56, 96,176,170,250,191,251,250,250,246, -106,211,166, 13,150, 45, 91,134,207, 62,251,172, 43,165,244, 16, 33,164, 75, 97, 97,225,193,151, 95,126, 25, 30, 30, 30,189, 97, -199, 96, 57,250, 93, 34,132, 68,118,232,208,225,235,153, 51,103, 42,119,237,218,133,136,136, 8, 20, 21, 21,225,195, 15, 63,244, -157, 54,109,218, 17, 66, 72, 39,139,201,170, 76,147, 16,210, 80, 34,145,172,223,188,121,179, 91,120,120,120,184, 72, 36, 98,194, -195,195,161,209,104,160,211,233, 36,115,230,204,105, 34,147,201,254,250,226,139, 47,214, 3,232, 91,147,118, 58, 67, 85,154,229, -213, 46, 84, 0, 60,156,233, 94,173, 98,223, 11, 0, 72, 44,175,133, 66, 33,164, 82, 41,164, 82, 41, 36, 18, 9,110,220,184,241, -169, 88, 44, 94, 12,155,115,113, 85,154,228,159,139, 86, 52, 33,228, 12,203,178, 85,190,174, 56, 4,228,223, 62,158, 0, 64, 8, - 9, 38,132, 44, 1,208, 25, 0,195, 48, 76,130,183,183,247,216,140,140,140,187,142,106, 6, 6, 6,122,105,181,218, 47, 2, 2, - 2,224,231, 87, 86,143,157, 97, 24, 4, 5, 5,193,100, 50, 33, 51, 51, 19,148, 82,228,231,231, 67, 46,151, 35, 48, 48,240,139, -145, 35, 71,238, 88,181,106, 85,174, 93, 77, 30,159,189, 60,112,202, 84,150,101, 25, 0, 96, 5,110,110,227, 62, 1, 66, 67, 67, -209,174, 93, 59,232,116, 58, 20, 20, 20,160, 81,163, 70, 2, 66,200, 96,134, 97, 84,148,210,149,148,210,195, 78, 31,160,103, 8, -203, 5,105, 70,197,126, 79, 66, 8,120,158,135, 64, 32,184,207, 96, 85, 92, 44,102,168,252,123, 90,101,196,132, 16,194, 24, 12, - 6,171,185,114,119,119,183,154, 51,179,217, 92,153,193,114,122,167,188,188,188,154,242, 60, 95,135, 16,178,202, 81,147, 85,145, -193,131, 7, 63, 48,158,227,131, 15, 62, 72,201,202,202,162,175,116,139, 86, 92,221,147,150, 94,215,211, 77,230,163, 84,134, 73, - 61,213, 30,185,185,185, 39, 1,120, 56,241, 17,245, 98, 98, 98,100, 27,126, 56,154,242,214,251,243,102,181, 8,247, 82, 53, 13, -246,246,244,119,151,137,221, 24, 82, 44, 53,155, 82,212,106,117,132,179,237,182,212, 15,243,240,240,128, 64, 32,120, 42, 34, 88, -148, 82, 51, 33,164, 57, 33,228,252,174, 93,187, 16, 23, 23,103, 53, 89,229,235, 81, 80, 80,128,139, 23, 47,162, 67,135, 14, 0, -208,220,145,177, 88, 60,207,195,104, 52,194,104, 52, 90,141,139, 72, 36,178,172,182, 26, 23,203,182, 44,203, 86, 90, 80,182, 26, -102,121,122,122,118,232,220,185,179,120,203,182,109, 98, 74,105, 49,202, 10, 82,107, 41,173,164,112,117, 5,204,102,179, 53,170, - 38, 20, 10,113,239,222, 61,107, 20,216, 18, 9,174,216, 69, 94, 25, 18,137,100,252,214,173, 91, 85,177,177,177, 36, 55, 55, 23, - 60,207, 91, 79,142, 43, 86,172,144,246,235,215, 47,232,220,185,115,147, 80,131,178, 51, 0, 72,101, 70, 8, 0, 84, 42,149, 25, -112,122,246,177, 93, 77,179,217, 76,218,182,109,251, 81, 78, 78, 78,147,210,210,210, 57,213,137,148,127, 39,126, 41, 95,202,132, - 9,249,235,234,213,171,165, 3, 6, 12,144,133,133,133,197, 57,217,174, 7,136,140,140,108, 45, 20, 10,113,250,244,105, 61,128, -132, 13, 52, 89,147, 0, 0, 32, 0, 73, 68, 65, 84,242,183, 19, 46, 92,184,160,239,219,183,175,164, 86,173, 90,173, 29,213, 34, -132, 68,214,175, 95,255,128,175,175,175,204, 18,177,236,223,191,191,112,245,234,213,202,212,212, 84, 24,141, 70, 76,156, 56, 17, - 61,123,246,132,183,183, 55, 62,248,224, 3,191, 5, 11, 22,108, 2, 16, 83,133,166, 84, 44, 22,111,188,121,243,102, 68, 64, 64, -128,236,212,169, 83,104,218,180, 41,114,114,114,144,145,145, 1,173, 86,139,140,140, 12, 12, 31, 62,220,247,243,207, 63, 15,124, -136, 67,241,168,201, 23,137, 68,144,203,229, 30,249,249,249, 15, 51,142, 77, 2, 64, 12,252, 99,174, 36, 18, 9, 36, 18, 9,164, - 82, 41,120,158,127, 42,206,121,143, 11, 66, 72, 16, 33,228,178, 72, 36,146,200,229,114, 17,195, 48,144, 72, 36,221,212,106,245, -165, 23, 94,120,161,241,254,253,251,147, 28,209,209,233,116, 27, 37, 18,137,208,215,215, 23, 0, 16, 17, 17,129,166, 77,155,162, -184,184,152, 47, 40, 40,128,135,135, 7,115,247,238, 93,148,150,150, 34, 61, 61, 29, 33, 33, 33, 66,134, 97, 54, 2,120,209,158, -222,241,115,233, 95, 1,248,202,242,218,199,199, 39, 19,128,204,242, 90, 42,149, 34, 40, 40, 8,169,169,169, 80, 42,149,236,180, -105,211,250,110,219,182,173, 15, 33,100, 48,165,244, 91, 27,169, 7,188,200,179,140, 0, 0, 40,165,211, 9, 33, 29, 43,174,180, - 24, 44,203, 98, 47,114,101, 89, 28, 49, 66,132, 16,112, 28, 7, 63, 63, 63,200,229,114,200,229,114,107,193, 81,142,227, 30,208, - 47,191,163,119,122,167, 20, 10, 5, 94,125,245, 85,186,114,229,202, 81,229, 38,235,166,163,127,219,127,217, 85,107,212,170, 34, - 13, 27, 54, 60, 49,105,210,164, 94,191,253,246, 91,106,139,240, 48,129, 34,237,174, 86,170,242,240, 64,112,237,248, 33,189,251, - 94, 64,217,108, 66, 71,185, 89, 84, 84, 36,171, 27, 44, 55, 48,140,142,212,150, 8,148, 1, 10,145,196,223,211, 51, 72,100,208, -103,169, 60, 61,197,122,189, 62, 31, 64,149,197,153, 85, 42,213, 62,137, 68, 18,194,178, 44, 88,150,133,183,183,183, 59,165, 20, - 30, 30, 30, 8, 14, 14,118,139,138,138,186, 46, 16, 8,192, 48, 12,180, 90,237,221,196,196,196,110,213, 53,204,211,211,115,159, - 68, 34, 9, 97, 24, 6,132, 16,176, 44,107,157,144, 96,121,206,178, 44, 8, 33, 40, 41, 41,113, 72,147, 82,250, 39, 33,164,121, -124,124,188,213,100,237,217,179, 7,221,187,119, 71,126,126, 62, 46, 93,186,100,107,174, 28,234, 30,180, 29,212, 78, 41,133, 72, - 36,194,181,107,215,238,235,186,182, 44, 74,165,210, 17, 73,187,168,213,234, 99,253,251,247,199,215, 95,127, 77,105, 89,149,119, - 5, 33,164,169,187,187,251,181,203,151, 47, 59, 52,206,133, 82, 10,163,241,159, 77, 45,223,113,219,223,151,163,176, 44,219, 45, - 38, 38,134, 20, 20, 20, 88,140,163,245, 70,136,101, 89, 44, 95,190, 92, 22, 27, 27, 59, 69, 42,149,126, 36, 18,137, 10, 77, 38, -211, 22,157, 78, 55,135, 82,234,244, 96,213,199, 73,251,246,237,223, 79, 78, 78,238, 25, 18, 18,178,179,166, 26,148, 82,218,178, -101, 75, 3, 0, 25,203,178,194,106,255,160, 26, 8, 33, 44, 0,112, 28,167,179,152,124, 74,169, 57, 38, 38, 70,135,178,139,187, -195, 21,144,189,189,189, 55,237,222,189, 59, 56, 36, 36, 4, 38,147, 9,102,179, 25, 90,173, 22, 9, 9, 9,208,235,245, 48,155, -205,136,136,136,192,212,169, 83,117, 99,199,142,149,174, 90,181, 42, 75,171,213,190, 86,141,236,216, 29, 59,118, 40, 2, 2, 2, -100,165,165,165,184,125,251, 54, 98, 98, 98, 80, 84, 84,132,226,226, 98,148,148,148,192,104, 52,162,176,176,208,131,227, 56, 67, -141, 15,196, 35, 70, 32, 16, 64, 34,145, 64, 36, 18,229,135,132,132,128, 16, 34, 77, 74, 74,170, 73,151,155, 10, 64,161, 80, 40, - 20,219, 26, 43,137, 68,130,211,167, 79, 79,150, 74,165,159,195, 78,244,170, 50,104,133,129,154,213,189,126,210, 16, 66,150,136, - 68, 34,137, 90,173,182,222, 73,242, 60, 47,114,115,115,131,175,175,239, 50, 0, 61, 28,209,161,148, 54, 83,171,213,214,243,123, -116,116, 52,146,147,147,127, 44, 40, 40,120, 35, 43, 43, 11, 12,195,108,100, 24,166, 79,185, 62,242,242,242, 80,171, 86,173,102, -149,233,181,141, 9, 24, 5, 66,173, 17,172,134,245,212,247,213,180, 85,169, 84, 80,169, 84, 72, 76, 76, 68,113,113, 49,189,113, -227, 6, 25, 61,122, 52, 49, 24, 12,223, 16, 66, 78, 82, 74,239,148,183,203,174, 23,121, 86,169,116, 12, 22,240, 79, 23,161, 61, - 67, 85,209,112, 57, 98,132, 12, 6,131, 91, 76, 76, 12,111,185,112, 91, 22, 0,164, 50,131,133,178, 72,129,211, 8,133, 66,229, -232,209,163,139, 86,174, 92, 57,146, 16,178,154, 82,122,163, 38, 58, 0,176,243,251,205,126,159, 77,157, 56, 85, 29, 24, 86,247, -163,143, 62, 21,188,244,210, 75,167, 54,108,216,192,169, 27,244,232,114,120,223,183,126, 95,124, 56, 97,207,238,221,187,129,178, - 1,207,142,114,236,215, 95,127,245,255,224,189, 49,152, 58,126,236, 94, 85,132,183,216,141,168, 21, 82,125,113,182, 27,104,169, -164, 94,253,158, 63,236,220,153, 14,160,202, 74,243, 50,153, 44,228,198,141, 27, 17,182, 6,194,104, 52,194,195,195, 3, 27, 54, -108,240, 81, 42,149, 62,110,110,110, 16, 8, 4,104,218,180,169, 67, 13,147, 72, 36, 33,215,175, 95,143, 80, 42,149, 40, 41, 41, -129, 94,175,135,201,100, 2,207,243, 32,132, 64, 40, 20, 66, 44, 22, 67,161, 80, 56, 53, 83,207,214,100,237,217,179, 7,141, 26, - 53, 66, 94, 94, 30,174, 94,189,234,180,185, 2,254,137, 10,217,142,183, 18, 8, 4,216, 20, 30,142,183,210,210,172,198,101,137, -187, 59,166,242, 78,103,208, 0, 0, 52,105,210,132, 30, 63,126, 28,123,247,238,197,203, 47,191, 76,126,254,249,103, 35,199,113, -162,212,212, 84,135,163, 97, 60,207, 91,219,106, 57, 95,219, 26, 43,103, 13,150,217,108, 86,138,197, 98,232,116, 58,107, 23,190, -237, 82,167, 78, 29,104, 52, 26, 65, 97, 97,161, 32, 45, 45, 77, 62,123,246,236,119,143, 28, 57, 18, 0, 96,144,211, 7,224, 17, -178,114,229,202,144,183,222,122,235,158, 64, 32,160,221,187,119,127,253,238,221,187,189, 3, 2, 2, 14,253,246,219,111,255, 5, - 16, 89,173, 64, 5,124,124,124,254, 16, 8, 4,193,110,110,110,162,237,219,183,155,138,138,138, 68,190,190,190,153,192, 63, 9, -148,129,178, 34,197, 5, 5, 5,213,206, 68,246,241,241,249,195,199,199, 71,244,229,151, 95,154,114,115,115, 69,254,254,254,153, - 22, 29,133, 66, 33,218,190,125,187,169,176,176, 80,228,225,225,241, 71,126,126,126,181,122, 57, 57, 57,175, 13, 30, 60,248,232, -161, 67,135,188, 89,150,197,221,187,119,145,155,155, 11, 15, 15, 15,108,220,184, 17, 33, 33, 33,216,177, 99,135, 70,163,209,188, -185,112,225,194, 41, 90,173,214,145,148, 13, 29,226,226,226, 66,242,243,243,225,225,225,129,226,226, 98,252,241,199, 31,104,216, -176, 33,210,210,210,192, 48, 12, 60, 60, 60,176, 98,197,138, 18, 66,136,198,145,227,248,184, 97, 89,214, 26,101,178, 49, 69,186, -214,173, 91,227,240,225,195, 31, 59, 99,138, 40,165, 6,161, 80,120,159,177,178, 60, 23,137, 68, 14, 27, 43, 11, 28,199,137,202, -199,128, 18, 71, 94, 63, 5,116,148,201,100,162,138,111,150,148,148,136, 2, 2, 2,218,219,251, 3,123, 8, 4, 2, 47,153,172, - 44,192, 20, 18, 18,130,130,130, 2,206, 96, 48, 12,220,184,113,163, 9, 0, 98, 98, 98, 6,114, 28,167, 51,155,205,172, 88, 44, - 70,113,113, 49,124,125,125,189, 42, 21,100,240,241, 47, 91,102,251, 87, 28,131, 21, 16, 16,128,230,205,155, 67,175,215, 35, 61, - 61, 29, 9, 9, 9, 38,142,227,190, 91,185,114, 37,239,227,227, 51,236,149, 87, 94, 97,207,157, 59,247, 14,128,247, 45, 82,255, -115, 99,176,202, 29,227, 17, 0,157, 44, 59,103,219, 69, 88, 85,228,170, 66, 4,171,202, 47, 33,203,178,249, 41, 41, 41, 10,133, - 66, 97,125,207,100, 50, 33, 48, 48,144,231,121,158, 84,252, 28, 75, 59,106,138, 80, 40, 84,126,242,201, 39,249, 43, 86,172,120, - 3, 14, 14, 20,223,254, 78,125,108,176,121,189,243,251,205,126, 95,125, 54,115,217,151, 11,102,171,111,237,249, 6,107,150, 46, -226, 56, 14,231,154, 52,105,210, 94,171,213, 10,220, 21, 38,228,228, 99, 15,202,242, 96, 57,100, 6, 73, 89, 46,173,117,103,206, -156, 57,215,163, 71,143,227,235,182,254,160, 78,187,125,251,164,164, 48, 39, 93, 85, 47, 66, 32, 10, 10,233, 83,164,211,137, 6, - 14, 28,232, 3,224,149,170,180, 24,134,193,237,219,183,145,148,148, 4, 55, 55, 55, 40,149, 74,184,185,185, 65,165, 82, 65,169, - 84, 66,169, 84, 58,125, 12, 25,134, 1,199,113,248,254,251,239, 33,151,203,161, 80, 40,238, 91, 44,230,234, 97,254, 55,221,187, -119,135, 70,163,129,155,155,155,181, 91,211, 25, 44, 99,176, 12, 6, 3, 12, 6, 3,140, 70, 35, 7, 64, 40, 16, 8, 48, 60, 37, -197, 26,213,113,198,184, 84,164,105,211,166,244,228,201,147, 56,126,252, 56,138,139,139,241,229,151, 95, 34, 32, 32,224, 57, 0, -159, 58,170, 65, 8, 9,247,247,247,239,254,194, 11, 47, 4,154, 76, 38,104,181, 90,230,239,191,255,134, 84, 42, 5,203,178, 72, - 73, 73,193,230,205,155,145,152,152, 8, 0,240,244,244, 12, 38,132,132, 81, 74, 19, 43,211,228, 56, 78, 36, 16, 8,172,119,159, -150,197, 54,138,197,178, 44,252,252,252,224,239,239,143,175,190,250, 74, 20, 22, 22,214,179,198, 7,226, 17,176, 96,193,130,122, - 75,150, 44, 89,187, 97,195,134, 61,175,189,246,218,182,139, 23, 47, 14,117,119,119,255,251,240,225,195,179, 37, 18, 73,141,220, -175, 80, 40, 12, 78, 75, 75,243,181,125,139,231,121,185,217,108,182, 26,218,146,146, 18, 52,110,220,216, 97,189,203,151, 47,203, - 1, 96,246,236,217, 66, 0,114, 75,250, 15,139,102, 73, 73,137,176, 97,195,134,193,142,232, 81, 74,175, 19, 66,218,119,237,218, -245,196,129, 3, 7, 60, 67, 66, 66,144,154,154,138,212,212, 84,212,171, 87, 15,115,231,206, 45, 46, 44, 44,108, 91,110,170,126, -118,112,183, 3, 61, 61, 61,133,247,238,221,131,217,108, 70,179,102,205,176, 98,197, 10, 12, 28, 56, 16,141, 27, 55, 70, 97, 97, - 33, 46, 95,190,140,245,235,215,123,138, 68,162, 42,207, 29,255, 6,229, 93, 88,149, 46, 53,193,108, 54,171,164, 82,105,161, 68, - 34, 17, 91,198, 95, 37, 36, 36, 56, 29,189,178, 80,241,166,174,186,215, 79, 18,139, 89,173,136, 88, 44,134,191,191,191,195, 58, - 18,137,132, 88,206,141,102,179, 25, 5, 5, 5, 92, 64, 64,128,181, 27,255,252,249,243, 92,104,104, 40,199,178, 44, 43, 22,139, - 65, 8,129, 92, 46,175,244,132, 79, 57, 58,243,165,129,159, 90,103, 17, 50, 66,133,106,220, 39,101, 55,251,231,207,159,135,209, -104, 68, 66, 66,130,105,225,194,133,105,249,249,249,227, 0, 8,246,237,219, 55,120,194,132, 9,172,175,175,175,117,156,172, 61, - 47,242, 44, 99,185,250, 28,161,148,146,242, 1,229,101, 78,137, 16, 80, 74, 31, 48, 85,149, 25,174,242, 8, 86,149, 87, 92, 75, -215,210,222,189,123,173, 70,192, 50,139,144, 82,250,128,174,165, 29, 53,197,203,203,171, 56, 46, 46, 78,149,156,156,188,185, 38, -127,111, 49, 87,243,103, 79, 87,231, 94, 57,137,148,180,116,104,178, 76,231,142,253,157,248, 35,128, 31, 1, 0,171, 26, 28,193, -200, 43,203, 29,213,108,224, 35,143,110, 18,168,252,241,249, 30, 61,107, 13, 24,241, 62,243,246,219,111,183, 27, 60,120,112,193, -107,175,189,246,158,155,155, 91,164,209,104,204,251, 97,215,174,164, 1, 3, 6,132,113, 28, 55,184,178,233,172, 22, 76, 38,211, -221,190,125,251, 90,143,173,191,191,191,106,203,150, 45,126, 74,165, 18,175,191,254,122,118, 82, 82,146,181, 91,168,168,168,232, -174, 35,109, 52, 26,141,119,163,163,163, 43,237, 22,180, 68, 32,157,209, 4,238,159, 45,152,155,155,139,107,215,174, 65, 32, 16, -160, 85,171, 86, 56,118,236, 24,218,181,107,231,212, 12, 66,157, 78,135,144,144, 16,232,116, 58, 20, 23, 23,151, 0,144,108, 12, - 11, 3, 0,188,147,155,139, 63, 22, 46,196,169,121,243, 44,159,237,104, 51, 1, 0,209,209,209,244,244,233,211,248,251,239,191, -161,215,235,241,230,155,111,162,188,123, 16, 0, 28, 74,125, 65, 8,105, 92,191,126,253,131,135, 15, 31,246, 81, 42,149,208,106, -181,208,106,181, 24, 54,108, 24, 70,141, 26, 5,147,201,132,149, 43, 87,226,167,159,126,130, 74,165,130, 86,171, 69,113,113,177, -103,124,124,252, 9, 66, 72,135,202,186,182, 41,165, 36, 49, 49, 17,243,231,207, 7,207,243,152, 48, 97, 2, 34, 34, 34,172,198, -234,238,221,187,152, 61,123, 54, 56,142,195,180,105,211, 80,175, 94, 61,152, 76, 38, 41,113, 34,207,216,163,230,131, 15, 62,184, -245,227,143, 63,238, 73, 78, 78,126,241,179,207, 62,235, 72, 8,225, 63,250,232,163,249, 42,149,202,161,100,173,149,145, 87, 80, -132,107, 55,239, 90, 13, 80,197,197,199, 91,237,180,222,141,219,201,214,191,231, 56, 91, 61, 14, 94,106, 79,103,155, 88, 98, 50, -153,138,251,244,233,227,241,253,247,223,147,122,245,234,225,206,157, 59,150,155,210, 18, 71,103, 13,218,144,170,209,104, 34, 88, -150, 21,221,188,121, 19,161,161,161,136,139,139,195,156, 57,115,144,147,147, 3,179,217, 12, 95, 95, 95,222,100, 50,157, 55, 24, - 12,191, 59,219,216, 71,141,109,148,201,118,249,237,183,223, 62,150, 74,165, 20,192,105, 0, 78, 25,108, 74,169,161,118,237,218, -247,105,215, 36,122,245,184,120,156, 51, 19, 3, 2, 2, 18,148, 74,101,207,188,188,188,251,162, 88,109,219,182, 53,250,249,249, - 29,117, 84,199,205,205, 45,143,101, 89, 47, 0, 72, 77, 77,133, 66,161, 16,221,190,125,123, 30, 33,100, 34, 0,132,133,133,205, -211,104, 52,162,176,242,243,169,191,191, 63, 12, 6, 67,165,195, 85, 78,156,207,248, 6,192, 55,150,215, 94, 94, 94,233, 5, 5, - 5,178, 69,139, 22,105,231,205,155, 87,202,113,156, 30,192,225,252,252,124,107, 30,172,208,208,208, 2,161, 80,168,246,240,240, - 8,178,145,122,192,139, 60,203,216, 38, 26,125, 32,250, 98, 49, 61,142,152, 44, 71,162, 16,132, 16,148,150,150,222, 23, 13,177, -204, 34,180,103,176,202, 47,228, 53,234, 34, 44, 55, 87,178, 45, 91,182,124,183,116,233,210,227,142,254,157,237, 24,172, 85,255, -157,245,153,197, 92, 93, 56,118, 0, 63, 95, 45,200,153, 48,111,241,146,154,180, 7, 0, 26,250, 40,154,250,251,121, 31, 89, 56, -111,150,234,214,158,111,176,109,213,231,244,194,217,179,177,103,207,158,125, 99,204,152, 49,181, 81,246,133,210, 0,248, 11,192, - 0, 71,102,221,100,103,103,223, 55,254, 41, 34, 34,226,186,135,135,135,159, 84, 42,197,237,219,183,181,151, 46, 93,114,186,235, -165,162,230,163,160,162,185,186,116,233, 18, 58,119,238, 12, 0, 56,118,236, 24,218,182,109,235,148,201, 50,153, 76,249, 13, 26, - 52, 0, 80, 22,205, 42, 40, 40,224, 1, 96, 68,122, 58, 86, 7, 4, 64, 32, 16,224,212,188,121,152,108, 50, 97,142,208,185,161, - 57,205,154, 53,163,103,207,158, 69, 82, 82, 18,204,102, 51,122,245,234,101,107,174, 28,198,223,223,127,252,225,195,135,125, 86, -175, 94,173,223,180,105,147,158,231,121,166, 89,179,102,202,230,205,155, 99,201,146,178,175,209,128, 1, 3, 48, 97,194, 4, 92, -186,116, 9,114,185, 28,237,219,183,231,166, 79,159,238, 59,110,220,184,119, 80, 54, 13,255, 1, 40,165,180, 91,183,110, 56,122, -244, 40, 88,150, 69,108,108, 44,114,115,173,147,123,224,231,231,103,111, 29,139,178,223,251, 19,185, 16, 9, 4, 2,154,144,144, -240, 89,199,142, 29,145,156,156,252, 98, 76, 76,204,151, 67,135, 14, 77,125, 88, 93, 79,119, 37,162, 27,134, 67,175,215, 67,175, -215, 35, 48, 48, 16, 69, 69, 69,184,117,235, 22,244,122, 61,252,124,157,153,119, 82,166,215,188,113, 61,171,158,175,175, 47,138, -139,139,145,152,152, 8,131,193, 0,111,111,199, 13, 22, 33,164, 86,183,110,221,126,251,238,187,239,188,214,175, 95,111,232,212, -169,147,248,203, 47,191, 36, 42,149, 10, 89, 89, 89,206,238,170,133,132, 99,199,142,133,116,237,218, 53,234,202,149, 43, 72, 72, - 72,128,193, 96, 64,243,230,205,113,227,198, 13,180,110,221, 26, 90,173,246,244,217,179,103,127,169, 94,234,241, 99,233,190,179, - 44, 71,143, 30,157,172, 82,169, 76, 0,236,206,244,115,148,123,247,238, 73,154, 54,109,170,151, 74,165,226,114,179, 86,163,232, -213,227,224, 97,103, 38, 86,133,191,191,255, 56,111,111,239,174,117,234,212, 65,102,102,166, 72, 44, 22,163,109,219,182,198,150, - 45, 91, 26,253,253,253, 29,154,112, 3, 0, 18,137,228,138, 72, 36,234, 80,118, 19,193,225,222,189,123,160,148, 78,104,220,184, -241,216,162,162, 34,228,230,230,138, 85, 42,149,245,102, 58, 42, 42, 10,122,189,254,138,163,250, 44,203,206, 12, 13, 13,157, 34, - 18,137,230,100,103,103, 63,144,222,129, 16, 34,142,142,142, 86,137, 68, 34, 24,141, 70,125,133,117, 79,213,184,183,135,193,118, - 12, 22,177,183, 99,142,116, 15, 58, 58, 6,139, 16, 2,131,193, 0,133, 66, 97,237,122,178,124, 23, 45, 99,123, 42, 26,172,154, - 80,171, 86, 45,196,197,197,201,182,109,219,182,105,209,162, 69, 39,106,162,177,227,187,111, 3,220,249,146, 90,105,167,119,227, -218,133, 63,240,227,229,252,156, 9,243, 22,191,247,210, 43,131, 50,109,183,235,191,236, 42,182,143,172, 94, 47,210, 87,209, 56, -200,207,235,200,231, 11,231,171,114,175,156, 68,122, 70, 6,118,159, 62,123,206, 64,233,101, 0, 19,106,210, 70,123,216,206, 70, -123, 90,190,168,182,105, 26,114,114,114,112,249,242,101,139,185,106, 14, 0,237,218,181, 59,111, 49, 89,231,206,157, 67, 76, 76, -204, 3,105, 26, 42,146,151,151,119, 95,105,153,242,116, 12,222, 22,163, 47, 16, 8,208,118,202, 20,167,205, 21, 33,132,114, 28, - 7,141,166,108,248, 74,219,182,109,107,100,174,202,181,218,150,148,148, 96,211,166, 77, 57, 55,111,222,172, 85,167, 78,157,113, -223,124,243,205, 98,185, 92,126,223,118, 37, 37, 37,232,218,181, 43, 70,143, 30,141,169, 83,167,242, 67,135, 14,101, 25,134,169, -180,130, 61,199,113,162,176,176,176, 67, 0,158,187,114,229, 10, 0,156,160,148,182,181,172,175,106,157, 3,240, 69, 69, 69, 66, -165, 82,105, 55,197,131,168,108,154,166,179, 93,122, 86,205,227,199,143,207,255,239,127,255,251,227,135, 31,126,104,141,206,213, - 80, 19,192,131, 17,172,158, 61,123, 66,167, 55, 33, 37,179, 0, 28,103, 70,169,209, 57, 35, 83, 49,130,213,179,103, 79,148,234, - 12,184,151,174,129,217,204,161,168,212,177,107, 56, 33, 68,254,252,243,207,239,219,178,101,139,255,201,147, 39,193,113, 28,127, -227,198,141,196, 62,125,250,168, 62,250,232, 35, 47,155, 49,166,206,178,116,208,160, 65,253,142, 31, 63,174,137,138,138, 82,159, - 62,125, 26, 89, 89, 89, 48,155,205,120,238,185,231, 32, 22,139,239,205,155, 55, 79, 4, 96,105, 77,196, 31, 53,150, 8,211, 31, -127,252,241, 72,140,149, 45, 98,177,184,198,221,140,207, 42,167, 79,159, 78, 29, 51,102, 76, 67,149, 74,181,164,125,251,246,157, -189,188,188, 24, 79, 79,207,132,160,160,160,177, 77,155, 54,189,235,168,142, 80, 40, 28,170, 80, 40,110,153,205,102,182, 60,114, - 14, 0, 48,155,205, 98,134, 97, 16, 22, 22,102, 13,154,196,198,198,194,223,223,159,187,122,245,234, 80, 71,245,179,178,178,238, -155, 85,104,135,145,109,219,182, 21,232,245,122, 36, 37, 37, 29,179, 93, 81,153, 23,121, 22,169,116,128, 10,195, 48,160,148, 66, -218,162, 5,210, 15, 28,192,247,223,127, 95,165,208,170, 85,171,128, 10, 33, 61, 66, 72, 87,219, 92, 25,150,217,130,111,189,245, -150,117,155,115,231,206, 89, 7,187,247,234,213,235, 62,205, 51,103,206, 60, 96,178, 42,106,218, 35, 43, 43,235,202,246,237,219, -207, 46, 88,176,224,116,149,141,182,163,105, 25,131,213,239,213,215,211,151,205,159,122,113,253, 47,135, 26,167,151,210,244, 9, -243, 22,127, 88,209, 92, 57,170,217,192,223,173, 65,176,175, 87,194,127, 23,206,119,183, 68,195,182,156,207, 40,128,153, 58, 96, -205,236,107, 86,134,109, 36,145, 16, 82,237, 69,203, 17, 77,103,169,168,105,155,166, 33, 61, 61,221,106,174,232, 63,137, 70,155, -183,107,215,238,124,185,185,178,172, 51, 87,165, 89, 25, 2,129, 0, 31,106,181, 16, 8, 4,232, 52, 99, 6,158,155, 53,203,225, -118, 90,224, 56, 14, 2,129, 0, 17, 17, 17, 78,155, 43, 91, 77, 74,233,241,139, 23, 47,134, 14, 25, 50, 68, 25, 17, 17,113,155, - 16, 34, 28, 54,108, 24, 31, 16, 16,192,156, 58,117, 10,148, 82,180,107,215, 14,153,153,153,224,121, 30, 27, 55,110,196,144, 33, - 67,200, 95,127,253, 69,121,158, 63,104, 79,211, 66, 82, 82,210,200, 46, 93,186,172,210,233,116,130,220,220,220,145,142,174,171, -110,223,183,111,223,126, 51, 34, 34,162, 35, 42, 79,197,192, 3, 56,249, 48,154,229,209,187,168,135,209,180, 80, 49,130,181,117, -235, 86,240, 60,143, 90,254, 30,208,235,245,168,104,102,171,211,172, 24,193,218,182,109, 27,120,158, 71,237, 0, 53, 12, 6, 3, - 44, 3,131,171,211,244,242,242,250,124,195,134, 13,193, 87,175, 94, 69, 74, 74, 10, 22, 47, 94,124, 55, 63, 63,191, 71,126,126, -190,100,250,244,233, 71, 94,125,245, 85, 63,158,231,171,236, 30,178,215, 78, 74,169,158, 16, 50,180, 77,155, 54, 27,103,207,158, -125,167,126,253,250,181,219,182,109,235,145,155,155,155,253,231,159,127, 38,174, 90,181,202,205,108, 54, 15,173,172,235,233,223, -248,189,219,146,154,154, 58, 3,101,215, 25,167,140,149, 35,237, 60,115,230,204, 39,229,218,103, 28,209,254,183,246,253, 97,103, - 38, 86,215,206,229,203,151,167,160, 66,126, 51,103,219,121,230,204,153,164,174, 93,187,206,242,243,243,155, 46,149, 74,145,157, - 93, 86,156,192, 18,105, 44,255, 27,180,104,209, 2,221,186,117,195,245,235,215,103, 77,153, 50, 37,169, 42, 77, 7,218, 32, 0, - 16, 14,224,141, 46, 93,186,124,212,175, 95, 63, 44, 95,190, 28,148,210,181,206,236,203,179,132, 37, 77, 3,177,125, 4, 0,147, -201,148,124,235,214,173,128,122,121,121,108, 32, 33,136,141,141,181,142,191,177, 29,151, 99, 25, 40,247,251,239,191,155,121,158, -175, 50,231, 20,199,113,201,199,143, 31,247, 59,112,224,128,208,242,143, 44, 31,172,201,167,165,165, 49, 71,142, 28,177, 70,195, - 4, 2, 1, 18, 18, 18,204, 70,163,241,158,179, 59,117,253,250,245, 71,114,247,246,251,165,164,177,251,118,255,228,221, 42,174, -125,190, 74,173,182,251, 3,182,100,124,175, 10, 34, 96,230, 44,152, 55,203,195, 98,174,182,158,207,200,215,233,185,206, 87,178, - 75, 46, 60,138,118,218, 82, 84, 84,148,100,153, 45,168,213,106,157, 62,118,143, 11,203, 12,194,128,128,128,243,168, 48, 91,208, -178, 46, 38, 38,230,129,117,206,192,243, 60,220,221,221, 1,192,118,134,170,195, 16, 66,168,165,203,186,188, 93, 15, 53, 6, 32, - 35, 35, 99,209,148, 41, 83, 94,152, 59,119,174,207,158, 61,123, 84,229,154,232,219,183,111,214,197,139, 23,219, 3,144, 20, 23, - 23, 31,156, 59,119,174,143, 77, 61, 66, 65,124,124,124,102,102,102,102,149, 21, 1,202,167, 53,119,113,118, 93,117,244,235,215, -239, 54,236, 36,252,124, 24, 30,135,166, 5, 77,126, 33,110, 39,165,150,215,162,228,193,221,205,180,142,155, 50,153,204,208, 20, -230, 86, 47, 98, 67, 94, 65, 17,110, 37,166,150,151, 6,227,192,113,105,229,122,101, 3,221,105, 94, 73,181, 26, 66,161,176,221, -146, 37, 75,122, 48, 12,195,156, 58,117, 74,191, 96,193,130,228,236,236,236, 94,148,210,123, 0, 64, 8,233,180,126,253,250, 77, - 14,164,100,176, 11,165,244, 50, 33,164,245,199, 31,127,252, 30,128,118, 0,106, 3,184, 7,224, 24,128,165,206,142,235,121,204, - 44,174,126,147,167, 82,187,198, 60, 43, 51, 19, 15, 30, 60, 56,163,119,239,222,130,144,144,144, 73, 33, 33, 33, 76, 94, 94, 30, -180, 90, 45, 24,134,129,191,191, 63, 26, 53,106, 4,127,127,127,254,202,149, 43,115, 63,254,248,227,106,115,234, 53,108,216, 48, -220,100, 50,213,101, 24, 38, 28, 64, 56,165, 52,156, 16, 18, 14, 64, 13, 0,177,177,177,170,208,208, 80, 65,171, 86,173, 16, 23, - 23,135, 35, 71,142, 96,199,142, 29,223, 80, 74,247, 89, 52,236,121,145,103,153, 74, 35, 88,121,121,121,221,122,244,232,113,128, -101,217, 48,224,193, 11,150,109,215, 30, 0,240, 60,159,148,153,153,105, 55, 9,153,173,230,216,177, 99, 15,176, 44, 27,102,137, - 76,153,205,102,189, 70,163,121,187, 83,167, 78, 43,132, 66,161,196, 86,151,231,249,187,153,153,153,255,106, 45,189,138,121,176, -186,245,232,157,243,176,154,110, 34,166,238,181, 95, 87, 35, 51, 43, 7, 91,207,103,228, 21, 25,184, 78,215,179,139, 47, 62,172, -174, 61,146,146,146,186, 63, 14,221, 71, 65,185,145,178,219,245, 87,213, 58, 7,201,118, 32,145,104,149, 53,228, 44,161,233, 71, -245,227,166,148, 94, 36,132,180, 25, 51,102,204,167,114,185, 60, 22, 0, 74, 74, 74, 78,165,165,165,205,178,204, 18,172,110,189, -139,202, 49,153, 76, 41,141, 26,148, 5,194, 44,233, 20, 44,193, 1,219,231,102,179, 57,197, 25, 61,123, 58,182,175, 57,142,171, - 82,143,101,217, 15,227,226,226,216, 15, 63,252, 48,115,207,158, 61,150, 2,183, 86,103, 86, 62,176,189,210,100,162,142, 80,110, -162, 22,148, 47, 46,158, 50,170,155,137, 88,211,155,200, 71,205, 79, 63,253,244,233,192,129, 3,215,171,213,234,111,195,195,195, -163,252,252,252, 84, 50,153, 12,122,189,190,200, 96, 48, 92,187,126,253,250,107, 83,166, 76,185,227,136,214,250,245,235, 89, 0, - 34,158,231,165, 12,195, 40, 0,168, 8, 33,158, 40, 55, 88,132, 16, 24,141, 70, 36, 37, 37, 97,242,228,201,220,161, 67,135, 22, - 2,152,230, 68,115, 91, 2,240,193, 63,231,113, 31, 0, 6,148, 37,158,205, 6,112,214, 9,173,127,133, 74, 13, 22, 45,203, 86, -237,112,214, 98, 71,168, 70, 51,228, 81,126,214,195, 48, 88,191, 96, 51, 86, 45,184,175, 14, 33,128,202, 95, 87,211,209, 87, 80, -106, 30,179,116,223,165, 69,122, 51,229,141,102,126,216,245,172,226,203,143,169,233, 79, 61, 85, 25,168,135,153,225, 70, 29,168, -223,231,160,206, 35,189,115,162,101,197,135, 7,215,116,189,139,202,201,206,206,174, 54, 23,213,147,208, 51, 24, 12, 99,219,180, -105,243, 5,199,113,255, 53,153, 76,199,170,255, 11, 23, 46,158, 28, 91,183,110,189,131,242,235,114,255,254,253, 89, 0,216,190, -125,187,211,179,123,135, 12, 25,194,209,178, 2,227, 58, 0,197, 0, 10, 81,150, 40,155, 0, 64,113,113,113, 94, 90, 90,218, 21, -142,227,174, 0,216, 84,131, 25,180, 62,132,144, 95, 41,165, 61, 1,192,242,220,246,189,167,141,154, 39, 9,250, 31,101,251,165, -127, 46,176, 21,141, 83,117,175, 43,227, 90,134, 54, 1, 15,121,199,234,194,133,139,103,131,242,174,192, 94,213,110,232,194,197, - 83, 70, 77,140,149,133,203,151, 47, 63,182,161, 0,207, 42, 53,155,166,231,194,133, 11, 23, 46, 92,184,112,225,162, 82, 8, 0, -187,211,193,157,156, 29, 80,233,148,242,202,168, 78,223,165,233,210,116,105,186, 52, 93,154, 46, 77,151,230,255,158,102, 13,137, -175,166,139,112,215, 99,248,204,135,195,118, 16,231,163, 94, 0,116,117,105,186, 52, 93,154, 46, 77,151,166, 75,211,165,233,210, -124,200,165,243,196,137, 19, 63, 65, 89,125, 98, 58,113,226,196, 79, 40,165,241,101, 54,134,198,255,203,109,113,104,113,141,193, -114,225,194,133, 11, 23, 46, 92, 60,237,156,152, 55,111, 94,201,188,121,243, 44, 3,218,179, 1, 16, 90, 22,189,170,114,134,248, -147,226,137, 25, 44, 66, 72, 32, 35, 16,189, 46, 20, 73, 58,131,242,141, 0, 0, 12,123,137, 51,232,126, 51,155,141,223, 82, 74, -211, 28,208,176, 59,227, 43, 10,104, 16,225, 33,251, 89,207,113,162,123, 69,134,254,215,202, 18,209, 61, 0, 45,183,225,149,209, -159,144,182, 82,177,120,191,216,195,195,110,118, 65, 67,126,126,169,206, 96,120, 97, 59,165, 14,151,226,113,225,194,133, 11, 23, - 46,158, 36,132, 16,133,167,167,231, 33,134, 97, 66,108,222,131,189,231, 0,192,113, 92,186, 70,163,121,129, 82, 90,105,218,162, -199,161, 89, 1, 3, 42,185,150, 63,173, 8,128,251, 74,170, 84, 91,193,186,126,128, 91,251,168,240,144,239,210, 50, 50,207, 23, -234, 12,195,175,165, 22,105,156,254, 80,145,244, 45, 15,111,255, 57,255, 25, 58,214, 43, 34, 50,138,212,170, 21, 4, 80,224, 94, -114,138,223,173,155, 55,186,108,219,176,244, 3,145, 84, 58,217,168,211,125,237,172,118, 4,160, 8,117,147, 28,253,122,226,171, - 30, 2,152, 49,104,246,119,123,120,173,177,246,141,178,105,163, 14,211,159,144,182,158,106,245,190, 5, 7, 14,200,148,205,154, -221,183,142, 82, 10,158,231,161, 61,127, 94, 54,177,123,247,125,253, 9,233,230, 50, 89,255,123, 16, 66,252, 85, 42,213, 56,161, - 80,216,201,104, 52,134,136,197,226,100,142,227, 18,242,242,242,150, 80, 74, 31,186,142,158, 11, 23,255,235,144, 42, 10,140, 87, -181,238,223, 64,169, 84,254,193, 48, 76,112,121, 91, 0,192, 90, 57,164, 98,158, 71,155,124,143,119,114,115,115,219, 84,166, 73, - 8, 9, 87,171,213, 43, 0,180,172, 46,209,113,249,253,253, 89,141, 70,243, 54, 45, 75,215, 98, 79, 79,233,233,233, 57,131, 16, -210,159, 97,152,106, 11,254,242, 60,207, 81, 74,183,231,229,229, 77,163,148, 22, 85,182,157,167,167,231,193,171, 87,175,182,244, -245,245,173, 54, 45,141,217,108,198,189,123,247,124, 98, 99, 99,127, 7, 80,105,102,237, 71,161,233,140, 23,121, 22,176, 87,139, -176,202,131,195,243,120,125,221,156,183,131,210,239,222, 12, 26, 57,119,115,100,125,111,121,167,171, 57, 37, 25,142,126,160, 88, -166,252,165,221,115, 61, 59,143,126,239, 67,197,159, 23,175, 97,255,145,147, 40, 44,214,131,101, 24,120, 40,229,136,140,172, 75, - 22,175,254,222,251,155,175, 22,255, 87,230,230, 17, 95,170,205,127,217,153, 29,114,151, 11, 38, 77,232, 19,171,240, 82,115, 0, -207, 97,124,143,104,197,164, 95,207, 79, 66,137,121,146,163, 26, 86,115,117,240,160, 60, 43, 51, 19, 11,189,188, 32, 48,153, 32, - 37, 4, 50, 66, 32, 5,224, 38,145,160,253,119,223, 97,206,174, 93,242,201,241,241, 46,147,245, 63,134, 82,169, 28, 26, 25, 25, -185, 96,205,154, 53, 94,117,234,212,129, 66,161,128, 70,163,241,190,126,253,122,179,247,223,127,127,176,187,187,251,148,130,130, -130, 85, 79,186,157, 46, 92, 60,173,148,103, 43,183, 91,188,189,170,117,255, 22, 12,195, 4,167,166,166,250,202,229,114,112, 28, - 87,158,189,159,183,222, 64,219,118,112, 80, 74,193,113, 28,234,215,175,111,172, 74, 83,169, 84, 46,207,202,202,234,106, 91,178, -172,170,142,146,212,212,212,174, 13, 27, 54, 92, 14,192,110, 66,109, 79, 79,207, 25,239,189,247,222,184,198,141, 27, 3,128,181, -157,150,199,156,156, 28,140, 25, 51,198,250, 25, 60,207,227,192,129, 3,239, 13, 29, 58, 20, 0,222,175, 98,223, 67,124,125,125, -201,200,145, 85,231, 26,154, 62,125, 58,166, 79,159,142,165, 75,151, 18,161, 80, 88,101,229,244, 71,165,233,168, 23,121, 22,112, -186,139,144,161,252,238,217, 75,214, 12,159, 57,164, 29, 89,247,126,215,136, 81, 75, 15,158,108, 24, 40,235,112, 57,173, 52,185, -218, 15, 19, 73,135,181,234,240, 98,167, 49,227, 38, 40, 54,255,116, 24,215,175, 92,192,213, 99, 91,238,219,166,197, 11, 67,145, -145, 83,132,161,163,199,187, 17, 86,208, 73, 36,149, 15, 51,234, 74,214, 57,210,182, 40,192, 47, 68, 34,126,183,117, 92, 35, 33, -106,167, 0, 20,104, 23, 83, 79, 88,107,223,223,239, 22,193,188,244, 26, 80,109, 45,193,138,230,106,243, 43,175,160,123,105, 41, -252, 80,150,211,194,178,148, 0,184,214,187, 55,234,255,248, 35,102,252,252,179,124, 90,175, 94, 78,155, 44,185, 92,254, 77,105, -105,233,103,212,249,132,107, 79, 12, 66, 72,164, 82,169,156, 92, 88, 88,248,250,147,110,139, 5, 66, 72, 0,128,236,138,119,195, -132, 16, 17, 0, 15, 74,169, 83, 21,127,165, 82,233, 91,131, 6, 13, 90,188,108,217, 50,121,102,102, 38,210,210,210,192,113, 28, -164, 82, 41, 34, 34, 34,200,193,131, 7,189, 38, 76,152,176, 72,165, 82, 73, 10, 11, 11,191,112,162,157,140, 80, 40, 28,162, 86, -171,123,251,249,249,249,102,103,103,103,231,229,229,237,212,235,245,235,106,122, 39, 95,174,249, 90,104,104,104,239,192,192, 64, -191,212,212,212,156,148,148,148, 95,244,122,253, 55,148,210, 26, 21, 80, 46,215, 13, 0,208, 20,128, 87,249, 91,233,161,161,161, -151, 18, 19, 19,157,171,158, 92,181,102, 90,104,104,232,101,103, 53, 9, 33, 10, 0,219, 0, 4, 86,179,105, 26,128, 1,180, 44, -193,177,139,127, 17,139,129,162,148,130, 16,114,159,145,170,106,221,191,141, 76, 38,195,150, 45, 91, 32, 20, 10, 33, 20, 10,145, -151,151,135,224,224, 96,235,107,145, 72,100,125, 94,187,118,237,106,245, 56,142,139,101, 89, 22, 90,173, 22, 28,199, 89,151,252, -252,124, 80, 74, 33,145, 72,192,113,101,101,151,108,214,199, 86,166, 71, 8,233, 31, 24, 24,136,205,155, 55,195, 96, 48, 60,176, - 94,165, 82,225,226,197,127,138,130,176, 44,139,184,184, 56,134, 16,210, 31, 85, 24, 44, 75,164,104,196,136, 17, 96, 89,214, 90, -250,206,242,220,178,112, 28,135,233,211,167,163,252,127, 85,229,190, 63, 14,205,103, 29, 82,190,147,148,218, 41, 19, 82,223,223, -237,237,110,157, 91, 45,148, 73, 68, 50,222,108, 2,103, 54,130, 51, 25, 32, 32, 28, 94,104, 26,128,214,117,228,200,214, 20, 98, -228,170, 51,133,169,169,250,184,139,185, 69,149, 26, 5, 66, 72,160,210,195,247,175,175, 54,254,228,189,255,228, 85, 92,186,112, - 30,231,247,172,176,187,109,215, 65, 19,209,176,105, 75, 52,169,231,143,143, 70,245,203,201,205, 74,139,182, 55, 38,171,226, 24, -172, 54, 74,209,198,101,175,117, 30,212,180,153, 7,131,142,229,215,171,131,102,156, 59,153,193,141,253,229,207,205, 39,139,140, -247,101,204,182, 55, 6,107,176, 68, 82,242,229,201,147,178,172,172, 44,108,126,229, 21,196,148,150, 34, 71, 40, 68, 3,147,201, -106,178,242, 1,228, 10, 4,240, 55,155,161, 83,169,224,255,253,247,224, 24, 6, 19,187,119, 47,221,104, 48, 60, 88, 93,182, 18, -220,220,220,178, 89,150,229, 10, 11, 11, 59, 61, 11, 38,171,220, 92, 29, 33,132,136, 10, 10, 10,212, 79, 65,123, 24, 0, 51,135, - 15, 31, 62,236,232,209,163,183,110,221,186,213,149,150,101, 18, 6, 33, 68, 80,183,110,221,195,237,219,183, 15, 95,187,118,237, -215, 0,102, 58, 98, 56, 8, 33, 65,117,234,212,249,243,210,165, 75,222, 55,110,220,128, 86,171,133, 80, 40,196,107,175,189,134, -239,191,255, 30, 34,145, 8, 18,137, 4, 34,145, 8, 29, 58,116,200, 73, 76, 76,108, 73, 41,189,235,128, 46,235,238,238,254,205, -138, 21, 43,234,245,234,213, 75,160,215,235,193,113, 28,182,111,223,110,154, 54,109, 90, 82,110,110,238, 27,206,154, 44, 66, 8, - 19, 16, 16,176,238,235,175,191,142,124,238,185,231, 4,165,165,165,224,121, 30,187,118,237, 50, 77,154, 52,233, 78,122,122,250, - 96, 74,169,211,137, 3, 9, 33,205,228,114,121,195,183,223,126, 59,187, 87,175, 94, 70, 0, 56,123,246, 44,115,225,194, 5, 85, -157, 58,117,238,126,250,233,167,231,107,160, 25,163, 84, 42,163, 70,142, 28,153,211,179,103, 79,147, 72, 36,226,143, 31, 63, 46, -184,126,253,186, 42, 52, 52,244,246,164, 73,147, 28,174,203, 73, 8,217,125,226,196,137,142,193,193,193,124,249, 73,157,150,191, - 79, 25,134,161,229,143,184,118,237,154,160, 99,199,142, 71, 40,165, 78, 69,193, 93, 60, 28,164,172,168,175,137, 82, 10,141, 70, -131,211,167, 79, 35, 62, 62, 30, 0,154,151,111,114,158, 82,138,194,194, 66,148,150,150, 34, 32, 32, 0, 0, 30,166, 76, 86,141, -240,240,240,200,204,206,206,246,253,249,231,159, 33, 20, 10,113,224,192, 1,172, 92,185, 18, 91,182,108,177,107,178, 2, 2, 2, - 16, 17, 17,145,146,150,150, 86,171, 50, 77, 55, 55,183, 2,173, 86,171, 42, 40, 40, 0,199,113, 56,125,250, 52,214,172, 89, 3, - 95, 95, 95,120,123,123,195,199,199, 7,177,177,177, 80, 40, 20, 86,147,213,190,125,251, 66,173, 86,235,110, 79,207,203,203, 43, -237,195, 15, 63, 12, 56,119,238, 28, 76, 38,211, 3, 8, 4,196,136, 0, 0, 25,215, 73, 68, 65, 84,235, 85, 42, 21,198,141, 27, -103,125,205, 48, 12,228,114, 57, 90,183,110,157,158,155,155, 91,233, 13,136,143,143, 79,122,118,118,182,255,133, 11, 23,238, 51, - 63,246, 12, 17,203,178, 80, 42,149, 8, 11, 11,203, 76, 79, 79,247,127,156,154,149,121,145,103, 21,107, 4,171,252, 68,213,201, -118,101, 84,168,255,228, 5,227,250,203,192, 25, 65, 77,165,128,177, 4, 48,106,193, 27, 74, 64, 68, 50,192, 84, 10, 31,137, 6, -219, 70, 71,169, 62,222,124,251, 74, 3, 31, 85,252,149,236,194,189,246, 62,136, 17,136, 94,235, 63,228, 61,175,148,172, 66,164, -102, 22,128,101,254,201,113,218,188,235, 16, 8, 88, 6,103,246,149, 5,170, 24,150, 69, 65,177, 30,249, 90, 35,250, 13, 25,167, -254,122,241,212,215, 0,124, 86,213,142, 52, 2, 34, 26,185,185,245,105,220, 40,132, 65,189,116,144,240,157, 0, 0,122,244, 37, - 52,203,243,101,235,239, 23,247,209, 22, 25,231, 94, 2,110, 84,165, 35,246,240,144, 41,155, 53,195, 2, 47, 47,244, 40, 45,197, - 45,129, 0,131, 52, 26,252, 62,110, 28, 4,235,214, 65, 0, 64, 63,108, 24,218, 46, 89,130,139,106, 53, 2, 11, 11, 97, 28, 54, - 12,226,115,231, 32,114,119,183, 59, 24,190, 50, 68, 34,145,113,205,154, 53,129,111,190,249,230, 17, 66,200, 83,109,178, 8, 33, -145,106,181,250,200,252,249,243,253, 62,253,244,211,244, 71,164,233,167, 80, 40,182, 23, 23, 23,143,115,246, 14,182,220, 92,205, - 94,181,106,213,168, 17, 35, 70,120,188,249,230,155,244,214,173, 91, 30, 0, 44,209, 16,159,246,237,219,215, 93,179,102,141,127, -203,150, 45,223, 27, 57,114,164,136, 16, 50,165, 58,147,229,230,230, 54,122,205,154, 53,222, 57, 57, 57, 86,115, 37, 20, 10,145, -146,146, 2,153, 76,102, 45,118, 46, 20, 10, 49,127,254,124,175,209,163, 71,143, 3, 48,174, 42, 77, 0,144, 72, 36, 67, 86,172, - 88, 81,175, 91,183,110,130,164,164, 36, 48, 12, 3,137, 68,130, 87, 95,125, 85, 88, 82, 82, 18, 50,115,230,204, 17, 0,236,223, -113, 84,130, 80, 40,124,109,245,234,213,145,109,219,182, 21, 92,189,122, 21,173, 91,183,198,153, 51,103,240,202, 43,175, 8,139, -138,138,194, 38, 76,152, 48, 28,192,106,103, 52, 9, 33, 1,114,185,188,241,111,191,253,150, 92,171, 86, 45,235, 13, 72, 88, 88, - 24, 23, 31, 31,175,185,122,245,106,212,201,147, 39,115, 91,183,110,237,112, 33,113, 66, 72,144, 92, 46,175,191,123,247,238,244, -153, 51,103,118, 89,181,106, 85, 47, 0,136,141,141,253,101,214,172, 89,135, 53, 26, 77,163,163, 71,143,106,218,183,111,239, 80, -205, 64, 0,129, 1, 1, 1,220,152, 49, 99,220,170,218,104,237,218,181,249, 0,106, 19, 66,234,208,178, 2,216, 46,254, 5, 40, -165,102, 66, 72,115, 66,200,249, 93,187,118, 33, 46, 46, 14,187,118,237, 66,124,124,252,249,242,245, 40, 40, 40,192,197,139, 23, -209,161, 67, 7,160,172,192,251, 19, 25,139,197,113, 28, 4, 2, 1, 82, 82, 82,176,118,237, 90,204,157, 59, 23, 17, 17, 17, 48, -153, 76,214,223,190, 64, 32,128, 80, 40,180, 68, 91, 28,186,232,155,205,102,156, 61,123, 22,223,110,220,136, 41,147, 39, 67,169, - 84, 2, 0,140, 70, 35, 52,121,121,144, 74,165,214, 8, 86, 85, 80, 74,183,223,188,121,115, 92,112,112,240,125, 93,131,150, 71, - 0,112,115,115, 3,207,243, 48,155,205,208,233,116, 88,188,120,177,153, 82,186,189, 42, 93, 75,108,130,101, 89,140, 27, 55, 14, -122,253, 63,245,193,155, 54,109, 10, 0, 8, 13, 13, 69,116,116,180,245, 53,195, 48, 85, 78, 10,179,213,252,186, 77, 99,148,218, -108, 29, 53,125, 17, 0, 32, 56, 56, 24, 81, 81, 81, 22, 83,109, 87,211,158, 23,121, 86, 17, 0,149,215, 95,187,146,152,241,217, -155, 19, 22, 45, 82, 72, 89,225,216,222, 77, 80,219, 67, 4,200,212, 16,117,248, 24,196, 35, 4, 0, 64, 53,119,128,253, 31,227, -191,125, 52,204,136, 77,186,159,234,170,213, 62,183, 52,154, 7, 6,215, 9, 69,210,206,225,245, 34,201,189,116, 13, 4, 2, 1, - 20,238,222,104,211,251,125,176, 44, 3, 55, 15,111, 16,174,212,186, 45,203,176, 16,176, 2,104,138, 74, 17, 90,167, 30, 35,145, -202, 58,163, 26,131,229,238, 46, 92,254,209,192, 54, 82, 70,154, 3, 4,138,255, 89, 17, 40, 6,227, 85,132, 15,187, 71,200, 70, -252,242,247,114, 20,152,186, 56,116, 96, 44, 17, 43,179, 25,191,143, 27,135, 46,171, 87,227, 20, 0, 33,128,152,213,171,113,109, -196, 8,248,154, 76,144, 0, 96,245,122,152, 43,244,217, 59, 2, 33, 4,189,123,247, 70, 78, 78,142,223,228,201,147,107,108,178, -100, 50,217,183,132,144, 30, 66,161,208, 72, 8, 1,195, 48,214,226,220,150,231, 70,163, 81,196,178,236,238,156,156, 28,167,187, -246, 8, 33,145,158,158,158, 71, 78,156, 56,225,167, 80, 40, 48,125,250,116,103, 37,236,105,250, 41,149,202, 83,195,135, 15,175, -253,237,183,223,238, 37,132,116,119,212,100, 85, 52, 87,171, 87,175,206, 95,187,118,237,215,182, 93,129,148,210,116, 66,200,186, -150, 45, 91,190, 61, 98,196, 8, 15, 0,163, 70,142, 28,137,234, 76,150, 68, 34,233, 20, 30, 30, 14,141, 70, 99, 61,193, 74, 36, - 18, 0,128, 66,161,128,187,187, 59, 68, 34, 17,244,122, 61,154, 55,111, 78,196, 98,113, 59, 71,218,172, 84, 42,123,244,233,211, - 71,112,252,248,113,100,100,100,192,221,221, 29, 10,133, 2, 28,199,225,173,183,222, 18, 45, 89,178,228, 69, 56,105,176,106,213, -170,213,171, 75,151, 46,130, 75,151, 46, 33, 49, 49, 17,122,189, 30,215,175, 95,135, 74,165,194, 27,111,188, 33, 90,176, 96,193, - 75,112,210, 96, 1,104, 60, 98,196,136, 76, 91,115,101, 65,161, 80,144,200,200, 72,141,151,151, 87, 12, 0,135, 13, 22,128,198, -239,188,243, 78,214,188,121,243, 58, 28, 60,120,240, 99,203,155, 7, 15, 30,156, 0, 0, 95,124,241,197, 81, 31, 31,159, 24, 0, -142, 26, 44, 80, 74,249,255,252,231, 63,119,197, 98, 49,132, 66, 33,196, 98,241,125,139, 72, 36, 2,195, 48,202,242,205,171, 29, - 28,252,172, 66, 8,105, 9,224,115,148,205,176,154, 76, 41, 61,253,132,155, 4,192, 90,188,189,121,124,124,188,213,100,237,217, -179, 7,221,187,119, 71,126,126, 62, 46, 93,186,100,107,174,158,212, 24, 44,240, 60, 15,161, 80,136, 69,139, 22,193,104, 52, 98, -211,166, 77,216,177, 99,199,125,231, 80,149, 74,133,165, 75,151, 58,213,157,197,113, 28,214,175, 95,143,143, 39, 76,176,154, 43, - 0, 16,137, 68,240,247,243,131,151,183, 55,110,223,190, 93,173,193,202,203,203,155,182,115,231, 78, 84, 53,200,125,231,206,157, -214,231,182,131,220, 29,105, 39,203,178,208,235,245,120,254,249,127, 74,185,190,243,206, 59,214,231, 26,141, 6, 44,203, 90,142, -133, 67, 7,128,101, 89,148, 82,160,183,244,159,247,122,124,248,161,245,121, 78, 78, 78,165,154,255, 11, 81, 43, 91,170, 28,131, -117, 35,171,120,153,128,164, 71,207, 27,243,194,144,218,190,238,160,218, 76,136,158,155,134,191,178,101, 88,180,120, 55, 0, 96, -252,171, 45,208,180,235,108, 24,190,121, 1,227, 90,179,226,215, 83,244, 31, 1,248,180,162, 22,165,124,253,224,160, 64,252,117, -235, 34, 4, 44, 11,177,187, 55,220,213,126,224,205, 6, 20,100, 37,226,200, 15,203, 1, 0,171,214,111, 7,195, 48, 16, 8, 88, -232, 13, 28, 34,106, 7,130,231,249, 74,103, 46, 0, 64, 3,160, 77, 39, 63,239,184,208, 80, 53, 65,195,124, 60, 80, 1,168,153, - 4, 17,105,110,164,181,155, 44, 54,175,160,176,205, 21,224, 68,117, 7, 70, 90,174, 18, 0, 64,180,110, 29, 78, 1,104,181,186, -236, 90,117,125,196, 8,184,173, 91, 7, 69,249, 54, 18, 66, 80, 88,205, 15,197, 30,150, 25, 43, 81, 81, 81, 88,181,106,149,223, -232,209,163,107,100,178,116, 58,221, 28,149, 74,213,101,221,186,117,126,125,250,244,121, 96,253,173, 91,183,208,161, 67,135,204, -140,140,140, 57,206,182,209,214, 92,121,120,120, 32, 57, 57,249,161,251,205, 45,230,234,192,129, 3, 33,193,193,193,104,222,188, -185,207,248,241,227,157, 49, 89,159,218,154,171,145, 35, 71,254, 13,192,151, 16, 82,209,160,144,242,117, 77,108, 76, 86, 1,128, - 5,149, 9,155,205,230, 16,133, 66,129,172,172, 44, 12, 25, 50, 4, 55,110,252, 19,240, 12, 12, 44,139,184,135,134,134,226,246, -237,219,240,241,241, 1, 33,196,215,145,125,246,241,241,241, 51, 24, 12, 24, 54,108, 24,146,147,255, 25,174, 24, 20, 20,100, 57, -166,222,142,232,216,226,231,231,231, 87, 90, 90,138,246,237,219, 67,167,211, 1, 0, 6, 12, 24, 0,161, 80,136,172,172, 44, 8, -133, 66,167, 53, 1,120,199,199,199, 87,154, 34, 69,165, 82, 25, 61, 61, 61, 27, 56,169,233,245,210, 75, 47,165,174, 94,189,250, -129,174,186, 51,103,206,188,172, 86,171, 15,170,213,234, 72, 39, 53,121, 91, 51, 37, 18,137,238, 51, 88, 66,161, 16, 12,195,212, -120, 12,218, 51,196, 66, 0,150, 89,109, 43, 1, 68, 63,193,182,220,135,173,201,218,179,103, 15, 26, 53,106,132,188,188, 60, 92, -189,122,245,137,155, 43, 11, 60,207, 67, 32, 16, 88,111,142,165, 82, 41,154, 55,111,110, 53, 87,132, 16,148,148,148, 64, 32, 16, - 88,206,215, 14,157,252,242,243,243, 17,224,239, 15,165, 82,137,122, 17, 17,184, 89,126, 30,177, 60,151, 72, 36, 32,132,192,108, -174, 58,112, 87, 62, 19,240,125, 84, 49,158,170,134, 80,160,204, 12, 85, 69, 96, 96, 32,120,158,183,156,243,171,139, 32, 56,164, -233,237,237, 13,173, 86,235,168,230, 51,141, 37, 77, 67, 71, 0, 71, 96, 51, 53,146, 16,194, 52,240,115, 91, 59,111,116,151, 33, - 47, 52,242, 70,105,118, 34,164, 74,111, 16,143, 80, 44, 90,188, 27,151,238,228, 2, 0, 22,125,247, 7, 54,207,236, 1,200,212, -136,114,207,129,191, 82,208, 7,118, 12, 22, 1, 37, 60,165, 16,176,101,253,177, 2, 1, 11,150,101,160,201, 78,199,146,105,163, - 0, 0,171,214,239,192,174,163, 87, 17, 28,222,200,218, 79, 11, 66, 0, 90,245,151,218,199, 93,180,106,116,223, 86, 50,226,145, - 15,120, 8, 31,220,192, 83, 4, 18,202,252, 95,123, 87, 30, 29, 85,149,167,191,251,222,171, 74, 45,169,164, 18, 66,165, 32, 36, - 4, 1,219,168, 96,156, 0, 14, 52, 25,150,145, 70,156,227,204,208,200, 34, 10, 2,129, 34,168,199, 33,216, 14,112, 20, 8,105, -192,214, 99, 88, 6,161, 33,131,136, 44, 42, 58,200, 98,219,224, 8, 39,172,118, 11, 97, 80,130, 1, 73, 32, 97, 73, 82, 73,165, -178, 84,146, 74,106,189,243, 71,213,171, 84,202, 90, 83,175,144,104,190,115,238,169,229,189,250,222, 93,235,125,239,119,127,247, -119,241,242,184,100,249,249, 35,109,219,127,104, 52, 63, 26,168, 98,100,132,184, 28,218, 57, 0, 98,183, 99, 98, 56, 44, 89, 12, -156,143,198,206, 85, 39,161,130, 23, 42, 10,133, 2,106,181, 26,235,214,173, 83, 47, 91,182,108, 47, 66,220, 24,154, 82,122,141, - 16, 50,110,193,130, 5,133,117,117,117,234,180,180, 52, 40, 20, 10, 40, 20, 10,104,181, 90, 76,157, 58, 85, 91, 93, 93,221, 85, -235,216,238,172,172, 44,181, 88, 44, 70,105,105, 41,122,245,234,229, 18,134, 93, 1, 33, 68, 29, 27, 27,251,183,175,191,254, 58, -117,240,224,193,184,122,245, 42, 30,121,228, 17,236,223,191, 95, 53,115,230,204,160, 68,150, 76, 38,155,236, 20, 76,208,104, 52, -113, 26,141,102, 44,128,177,129,174,173,209,104,226,114,114,114,254, 21,126, 4,150, 72, 36,186,173,215,235,251,200,100, 50, 28, - 56,112, 0, 10,133, 2,114,185, 28, 73, 73, 73,208,235,245,144,203,229,160,148,194, 98,177,240,127, 18,117,193,148,187,182,182, - 86,107,179,217, 82,142, 30, 61,138,218,218,142,152,120,169,169,169,112,250,107, 4, 27, 11,198,133,202,202, 74, 45, 33, 36,229, -210,165, 75, 40, 47, 47,199,164, 73,147,112,240,224, 65, 12, 31, 62, 28, 0, 96, 50,153,186, 18,124,207,198,178,172,207, 63, 61, -231, 19,103,188,144,156,112,220,180, 66,226,180,219,237,118, 94, 92,185,191,186,139,174, 0,215,252,165,192,221,119,231,103, 11, -121, 16, 8,147, 38, 77,130, 94,175,135, 66,161, 8,120, 3,190,151,224, 45, 88,171, 87,175, 70,118,118, 54,212,106, 53,150, 46, - 93, 10,142,227, 92,201,125, 38, 32, 20, 36,170,213,126,143,243, 62, 88,254, 64, 8,137, 81, 42,149,171, 25,134,153,198, 6, 81, -113, 54,155,205,102,183,219, 63,109,108,108,244, 27,166,129,119, 72, 15,166, 45,220,235, 32, 64, 94,195,230,244,166, 69,186, 51, -248,210, 21, 58, 77,115,133, 64,135,184,250, 83,246,248, 57, 19,135,196,227,240,241,191, 67,108,110, 0, 76, 62,219, 11,176, 89, - 64,196,209, 80, 43, 69,201,222, 14, 19,134,189,122,231,110, 37, 18,226, 21, 78,113,229, 76, 12,131,244, 33,142,135,215,191,156, - 46, 65,242,192, 33,224, 88, 22, 28,203, 66, 33,147, 64, 91, 93, 5,142, 99,174,250,186,236, 80, 22, 83,166, 60,148, 50, 64,157, - 24, 5, 12,245, 51, 0,134,197, 32,185,111, 20,158, 74,144,166, 14,101, 49,197, 95,165, 80, 74, 33,113, 10, 44, 3, 0,211,188, -121,200, 40, 40,192, 53,141, 6, 55, 53, 26, 60, 80, 80, 0,204,155, 7, 59, 58, 86, 21, 6, 26, 40,222,192,119, 68, 94, 8,173, - 88,177, 66, 91, 87, 87,247, 66,200, 68,142, 60, 95,171,175,175, 31,247,198, 27,111,104,117, 58, 29,228,114, 57,170,170,170,194, - 18, 87, 0, 96, 52, 26,103, 23, 20, 20,104, 11, 11, 11,161, 80, 40, 16, 19, 19,211,101,129,197, 91,174, 86,173, 90,213, 63, 37, - 37, 5,101,101,101, 80, 42,149, 72, 72, 72, 64,122,122, 58,206,158, 61,171, 74, 73, 73, 57,234, 92,101,228, 47, 79,135, 10, 10, - 10, 26, 0,160,160,160,160,129, 16,114,146, 16,178,141, 16,242,103,143,180,141, 16,114,210,253, 92,163,209,248,185, 63,110,147, -201,116,178,164,164,132,202,229,114,176, 44, 11,179,217, 12,169,212, 97,235,102, 89,214,229,152, 11, 0, 78,199,211, 51,193,148, -221, 96, 48,252,245,131, 15, 62,176,164,164,164,224,177,199, 30,195,176, 97,195, 48,106,212, 40,164,166,166, 98,245,234,213,166, -150,150,150,191, 6,195,227,142,202,202,202,191,236,223,191,223,146,146,146,130, 97,195,134, 65, 34,145, 32, 61, 61, 29, 73, 73, - 73, 88,183,110,157,169,177,177, 49,100, 78, 0,183, 46, 95,190,236,243, 31, 82, 38,147,197, 34,136,213,184, 30,184,125,254,252, -121,118,228,200,145,135, 61, 15, 60,241,196, 19,135, 21, 10,133, 18, 64,168,126,125,212, 93, 84, 73, 36, 18, 87,226,191,231, 56, -238,215, 96,193, 90, 12,224,123, 0,101, 0,150, 6, 56,247,158,194,125,181, 96, 93, 93, 29, 74, 74, 74, 80, 84, 84,132,145, 35, - 71,226,204,153, 51,128, 35, 76,131,223,177, 30,225,252,129, 82, 10,145, 72,132,180,180, 52,228,228,228,224,203, 47,191,196,181, -107,215, 96,177, 88, 92, 2,136,247,185, 12,197,130, 37, 22,139,161, 86,171, 97,177, 88, 92,214, 43, 0,184,254,227,143,224, 56, - 14,118,187, 29, 38,147, 41,160, 5, 75,169, 84,174,222,177, 99,199,171, 58,157,174,111,109,109,109,162,123,210,106,181,137, 85, - 85, 85,137,119,239,222, 77,188,125,251,118, 98, 69, 69, 69,226,205,155, 55,251,190,253,246,219,175, 42,149,202,213,193,228,147, -101, 89,164,167,167,227,149, 87, 94,113,165,247,222,123,207,149, 10, 11, 11, 59,140, 29, 65,130,101, 89,164,229,190,139,127,169, -165,174,244,165,138,184, 82,241, 31, 22,250,227,236,164, 69,186, 59, 60,157,220, 1, 0, 15,247,145,175,249,211,130, 49,115,126, -247,136, 18,135,142, 95, 64,222,231, 55,174,254,102,142, 42,109,112,124, 45,236,181, 37,248,195,243,195,241,238,190, 11, 0, 28, - 83,132,246,154, 98,208,250, 50,208,152, 20,220,212,235,188, 78, 47, 88, 77,109, 39,110,148,254, 56, 62,109,232, 8,166, 90,215, -220,105,133, 65,198,184,169, 32,132,160,223,192, 33, 96, 57, 14, 44,203,128, 99, 89,196,197, 74, 81,114,233,146,189,221,104, 60, -225,141, 51, 3,224, 18,100, 81,155,159,127, 42, 93,138,190,205,128, 76,226, 58, 70,111, 76,237,124,178,140, 3,134,198, 96,238, -221, 4,217, 9,109,219,102, 81,139,249, 48,128,159, 46,203,128,227,169, 38, 70, 34, 65, 43, 0,157, 72,132, 81, 27, 55,226, 71, -141, 6, 49, 59,119,130,133,195,139, 90,181,113, 35, 12,187,119,131,177, 90, 65,165,210,176, 44, 88, 90,173, 22,211,167, 79, 15, - 75, 8, 1, 29,150,172, 69,139, 22, 21,174, 91,183, 78,189, 98,197, 10,193, 56,151, 46, 93, 90,184,111,223, 62,245, 3, 15, 60, -208, 85, 42, 40, 20,138,255,180,219,237,113,239,188,243, 78,117,126,126,126,167, 39, 67,190, 46, 76, 38,147, 36, 46, 46,238, 93, - 0,227,253, 80,229, 45, 92,184, 80, 12, 32,219,105,201,122,108,225,194,133,231, 40,165,111,186,159, 68, 8,201,221,190,125,251, -116,183,169,196,109, 0, 54,250,203, 99, 83, 83,211,159,115,114,114,230,157, 58,117,170,183, 84, 42, 5, 33, 4, 98,177, 24, 15, - 62,248,160,211,242,234,112,120,165,148,226,181,215, 94,211,213,212,212, 4, 21,166,161,189,189,125, 87, 94, 94,222,120,163,209, -152, 58,119,238, 92,113,124,124, 60,180, 90, 45,214,175, 95,111,218,181,107,215,237,150,150,150, 80,125,165, 96,177, 88,118,173, - 92,185,114, 92,115,115,243,192,249,243,231,139, 27, 27, 27, 97, 52, 26,241,250,235,175,155,118,238,220,121,199,104, 52,134, 28, -168,119,212,168, 81,165, 21, 21, 21,153,173,173,173,245,114,121,231, 5,177, 34,145,136, 68, 71, 71,143, 0,176, 59, 20,206,140, -140,140,178, 91,183,110,141, 92,179,102,205, 73,139,197, 34,250,246,219,111, 93, 78,238,155, 55,111, 46,148, 74,165, 79, 34,116, -103,124,187, 68, 34,233,100,177,242,124,207,113,220, 47,222,130, 69, 41, 45,132, 35,244,197,125, 5, 79,113, 85, 92, 92,140,241, -227, 29, 67,250,204,153, 51, 24, 61,122, 52,206,156, 57,131,204,204,204,159, 53, 76, 3, 47,176, 56,142,195,204,153, 51, 49, 97, -194, 4,244,239,223,223, 53,206,221,157,220, 67, 17, 25, 86,171, 21, 67,135, 14, 69,187,201, 4,177, 88,236,154,130,228, 56, 14, -170,196, 68,148,150,150, 6,101,193, 98, 24,102,218,228,201,147,153, 43, 87,174, 96,198,140, 25,216,179,103,143,207,115,103,205, -154,133,143, 63,254, 24,147, 39, 79,102,150, 47, 95,238, 55, 76, 3,239, 92, 30, 76,153,248,251,116, 32, 11,158, 80,156,238, 90, -164,187,195, 91,160, 81, 12, 84,201,231, 78,120,144,195,161, 19, 23,144,119,232,214, 46, 27,165, 7, 14, 92,172,255, 98,233,104, -192,252,233,243, 72,159,186,219, 49, 45, 8,192, 94, 83, 12,243,167,179, 64,228,189,113,250,174, 8,141, 70,179,215, 29,173,173, - 86,243,158,131,123,183,228,140,220,154,169,234,155,168,132,190,209,232, 18, 89, 23, 11, 63, 3, 0, 76, 89,184, 22, 28,235,152, - 58,140, 85, 72, 33, 19,179,248,159, 15, 55,233,204,230, 54,175,189,202, 46, 98,178,231,255,246, 65,165, 82, 73,129, 71,197,157, -142,145,129, 14,206, 78, 66,235, 31,226,209,187,184, 30,207, 15, 86,196,110,188,210,144, 13, 96,179, 39,167,169,161,193,104, 40, - 42,146,253,211,222,189, 40,249,253,239,209,207, 96, 64,113,124, 60, 84, 86, 43, 20,112, 90,171,118,238,132, 97,207, 30, 72,173, - 86, 64,169, 68,221,150, 45,176, 94,190, 12,107, 83,147,209,147,207, 31, 8, 33,184,126,253,122,216, 86, 38,119,240,130,104,217, -178,101,123,235,234,234, 94, 16,146,115,246,236,217,133,199,143, 31,247,111,247,246, 3,131,193,176, 4,192, 18, 1,242, 99, 39, -132,188,233, 12,104,151,173,209,104,226,206,159, 63, 63,143, 16,178,149, 82, 90, 5, 0,132,144,196,172,172,172, 5, 30,226, 42, -224, 42, 66, 74,233, 45,133, 66,241,199, 37, 75,150,172,205,207,207, 87,240, 14,237,223,125,247, 29,172, 86, 43, 68, 34, 17,108, - 54, 27,178,178,178,154,235,234,234,222,245, 21,129,217, 11,175,149, 16, 50,107,237,218,181, 89,155, 54,109,122,134,101, 89,149, -205,102,171, 53, 26,141, 71,141, 70, 99, 65, 87, 86, 81, 57,235,225,197, 21, 43, 86,188,184, 97,195,134,201, 12,195, 36, 90,173, - 86,157,193, 96, 56, 98, 52, 26,187, 20, 91,235,220,185,115,181, 91,183,110,189, 81, 91, 91,251,112,114,114,114,163, 66,161, 48, -153, 76, 38, 86, 38,147,197, 70, 71, 71,103, 0,248, 6,192, 15,161,112, 22, 21, 21, 85,111,219,182,173,188,189,189, 61,109,219, -182,109,167, 99, 99, 99,143, 19, 66,136, 88, 44,142,151,201,100,227, 1,156, 4,112, 61, 20, 78,134, 97,236,238,214, 42, 79,255, -171,168,168,168, 95,139, 15,214,125, 7,103,152,134,139,148, 82,232,116, 58, 92,185,114,133, 23, 87, 25, 0,144,153,153,121,145, - 23, 89, 69, 69, 69, 24, 54,108,216, 69, 66,200, 61, 15,211,224,110,193,226,133, 84,255,254,253, 93,159,221,147,155, 15, 86, 80, -176,217,108, 16,139,197,224, 56, 14,125,147,146, 92,215,162,148,162,180,180, 20,122,189, 62, 40,129,197,178, 44, 75, 8,193,140, - 25, 51,130,186,238,115,207, 61,135,147, 39, 79, 34,152,233, 68, 39, 63, 6, 12, 24, 16,240, 28, 39,130, 18, 62, 44,203, 34, 57, -217,235, 68, 86, 80,156,238, 90,164,187,195,171,147,123, 89,141,113,205,172,245,103,151,255, 80,221,118,160, 68,219,154, 3,128, -126, 90, 44,255, 42, 93,197, 78,156,248,208, 29,180, 23,100,130,196, 58,130,174,209,230, 42,144,104, 53,238,216,251, 33,247,240, -213,106, 43,136, 87,255, 22, 74,105,165, 88, 42,127,243,195, 29,155,243,179, 22,189,166, 40, 46,211,162,177,185, 29, 44,219,209, -105,121,231,246,216,104, 41, 82,250, 40,177,239,191,215, 27, 12, 77, 13, 43,188,197,192, 2,128,212, 24,177,230,201, 17,131, 37, -232,211, 2,180, 73,129,182,142,206, 74, 47,253,187,227,141,193,195, 72, 53, 36, 14, 79,223,106,145, 30,188,213,162,129, 23,129, -213,102, 50, 77, 92,254,244,211,199,214,124,241,133,252,225, 3, 7,160,125,246, 89, 36, 53, 53, 65, 2,116,242,201, 98, 44, 22, - 64,169,132,110,207, 30,180,218,108,200,159, 59,183,181,205,108,126,202, 71, 61,123,133,197, 98, 17,143, 29, 59, 86, 48,113,197, -195,201, 21,146, 31, 87, 48,156,132,144,113, 19, 38, 76, 40,164,148, 74, 2,255, 34,178,112, 19, 89,230,243,231,207, 47, 56,125, -250,116, 25, 58,111,248,217,112,250,244,233,178,249,243,231,147,247,223,127,127, 39,128,149,193, 6,222,108,110,110,222, 28, 23, - 23,135, 49, 99,198,172,124,235,173,183, 18,134, 15, 31,142,196,196, 68, 24, 12, 6, 20, 21, 21, 97,241,226,197,250,166,166,166, -183,234,235,235,243, 67,204,179, 13, 14, 75, 77,200,214, 42, 63,156,118, 0, 31, 56,147, 32,120,233,165,151,190, 43, 43, 43,171, - 83,169, 84,255, 40, 22,139, 31,131,195,207,167, 26,192, 78,132, 40,132,120,100,103,103, 95, 42, 43, 43,211,245,235,215,111,164, -147, 51, 14,192, 93, 0, 59,186,192, 89,121,225,194,133,228, 17, 35, 70, 48, 34,145,136,178, 44, 11,145, 72, 68, 57,142,163, 78, -191, 25, 10, 0, 71,142, 28,145, 0, 8,121, 43,175, 30,132, 7,247, 48, 13, 85, 85, 85, 46,113,229, 22,104, 52, 35, 51, 51,243, -162, 83, 92,241,199,126, 22,255, 49, 74, 41,242,242,242,176,125,251,118, 4,138, 64,238, 92,173,231,215,140,195, 91,170,120,241, -100, 54,155, 81, 92, 92, 12, 66, 8,108, 54,155,107, 90,144, 15,209, 96,181, 90,253,174, 62,183,217,108, 54,147,201,132, 79, 62, -249, 36, 40,145,245,209, 71, 31,161,173,173, 13,182, 0,202,205, 61,164,194,227,143, 63, 14,189, 94,239, 90,196,147,145,145,225, - 58,207,108,246, 27,184,222, 39,103, 90, 90, 26,116, 58, 29,122,247,118,172,179, 73,153,173,113,157,103,109,249,245,196,253, 37, -193,134, 22,120, 60, 46, 78,217, 30,101,249,252,223,134, 72,198, 77,203, 80, 98, 96,159, 24,136,196, 82, 84, 54, 89,241,245, 15, - 77,216, 81, 88,125,219,104,177, 61,115,173,166,229,178, 63, 30,105,180,242,232,240,223, 78, 24, 61,123,193,226,232,230,118, 27, -202,203, 43, 80, 91, 83, 5,134, 48,232,219, 47, 25,169,169, 3, 32,139, 98,176,167, 32,191,229,226,185,227,103, 13, 77,250, 73, -190,184,158,137,139, 58,183,225,217,209, 35, 7, 13,138, 33,176, 90, 0,155, 5,176, 90, 0,187,243,149,255,206,222,185,175, 93, -185,210, 64,151,255,159,254,111, 95, 52,152,188,238, 41, 53,141,144,209,241,241,241,199,242, 14, 29,146,219, 77, 38,152,230,205, -131,172,189, 29, 50, 66, 64, 40, 5, 3,128, 72,165,168,219,178,197, 33,174,230,204,105,109,104,108, 12,121,171, 28,149, 74,245, -129, 78,167,235,118,145,220, 19, 18, 18,222,232, 74,184,135, 72,193,185,146,175,129, 15, 50,234,246, 61, 7, 64,197, 91,181,186, -192, 59, 64,165, 82, 45,103, 24,102, 20,165, 52,129, 97,152,122,187,221,254, 77, 77, 77,205,219,148,210, 82, 33,242,222,131,208, - 65, 58, 34,185, 7,154,175,174, 1,240, 31, 0, 12,148,210,242,136,103,172, 7,157,192, 79, 19,194,203,106, 65,127,199,238, 21, - 18, 18, 18,254,126,236,216,177,225, 3, 7, 14,100,220,221, 21,248, 88,119,252, 52, 22,199, 57,236, 16,167, 78,157,178,206,152, - 49,227,155,234,234,234, 49,190, 56, 99, 99, 99,191,250,254,251,239,127,215,216,216,248, 19, 33,229, 30,217,157,255,220,210,210, -130, 69,139, 22,253,111, 83, 83,147,215,173,114,226,226,226, 54,228,231,231,191, 58,101,202, 20,134, 15, 43,225,158,168,115,129, - 21,159,204,102, 51,118,239,222,109,223,180,105,211,127, 53, 52, 52,248,156, 34, 76, 74, 74,186, 93, 89, 89,153,204,135, 76,240, -149,220, 49, 96,192,128,170,242,242,114,159,193, 75, 35,193,217,221, 17,180,192, 2, 28, 43,136,210, 18,163,167, 83, 96, 26, 3, -251, 80,134,144, 40, 43,197, 53, 80,124, 37,231, 90,183, 22, 85,210,160,166,200,196,114,249,203, 49,138,248, 85, 83, 94,120, 37, - 97,192,160,223, 16,117,223,126, 32, 96,160,173,190,139,138, 27, 63,210,207,247,110,169,107,105,210,175,110,109,109,222,226,143, -231, 97, 66, 6, 15,138, 21,239,143,178,225, 33,240,229,240,216, 63,202, 19, 20,128, 89,196, 92,189, 97,176,204, 40,241,115,147, -228, 69,214,202,207, 62,147,115,143, 62,250,147, 0,111,118,187, 29,214,203,151,145, 63,119,110,151,196, 85, 15,122,208,131,240, - 64, 8, 25,136,192, 49,174, 44, 0,238,252, 92, 22,146, 95, 59,200,125,188,217, 51, 33, 36,186, 87,175, 94,199, 89,150, 77,117, -126,238,228, 19,196,191,231, 95,237,118,123,185, 86,171,125,146, 82,218,234,135,115, 80, 76, 76,204, 22,155,205,246, 68, 32,159, - 37, 74, 41, 88,150,253,214, 96, 48,188,236,203,213, 32, 82,171, 8,123,247,238, 93, 90, 81, 81, 49,136, 95, 21,237,126,175,244, -172, 7, 0,184,126,253, 58,198,142, 29, 91, 81, 85, 85,229,115, 62, 49, 18,156,221, 29, 33, 9, 44, 65, 47, 76, 72,146, 88,162, -120, 49, 74, 38,253,103,187,197,154, 6, 2,112, 34,209, 85, 83,155,241, 68,187,177,249, 67, 95,211,130, 30, 28, 97, 5,100,162, - 1, 10, 63,141,144,209, 18,177,248, 43,177, 82, 41,243,118,170,181,169,201,216,102, 54, 79,236, 17, 87, 61,232, 65, 15,122,208, -131,238, 2,226,216,153,227,152, 72, 36,146, 56, 63,187, 31,251,201,249, 86,171,181,173,182,182,118,146,191,217,150, 72,112,118, -123,240, 74, 51,216, 4,167, 46, 9,242,220, 9,193,114, 58,211,216,251,157, 51,130,101, 15,200, 29, 2,231, 88, 39,103,110, 55, -201,167,144,109, 36, 40, 39, 58,116,120, 80,188,161,112, 6,219,167, 66,204,103, 80,253,254,126,224, 12,178, 61,187,146, 79,191, -220, 93,108,247,220,110,146, 79, 33,219, 72, 16, 78,207,254, 19, 12,111,168,156,193,244,169, 46,228, 51, 96,191,191, 95, 56,131, -104,211,174,230,211, 39,119,176,125,201, 71,219,231, 6,250,237, 47, 33,249,141,228,238,137, 72,121,246, 83,103,120,124, 39,191, - 32,161,242, 35,193,201,131, 8,188, 17,165,144, 92, 78, 20, 10,205,233, 81,159, 66, 33,151, 58, 86,140,156, 68, 16,129, 66,131, - 68, 33,237, 88,133, 18, 86, 29,120,148, 85, 16, 94,119, 78,161,234,210,157, 71,168,126, 31,105, 78,247,239,194,233,171,158,156, - 66,244,123,111,237, 46, 36,167, 80, 99,201,227,247,130,140,165, 72,244,121, 47,253, 39,108, 94, 79, 78, 33,198,146, 39,167, 16, -253,254, 94,112,242,223,135, 51,150,188,113, 10,209,239,125,181,125,184,188,221, 5, 33, 69,140,140,100,197,144, 8,108,240, 40, -180, 16,226, 57,133,228,227, 57,137, 35,130,237,125,207, 9, 97,219, 40,215,201,153, 43, 32,231, 56,161,218, 40, 18,253,221,157, - 83, 40,126, 79, 30, 33,218,201, 27,103,184,249,245,145,207,176,224,141, 51,220,126,127,175, 56, 33,108, 27, 9, 50,150, 60, 56, - 5, 27, 75,158,229, 37,132,228, 10,201, 41,212, 88,242,146,207,176,219,201, 27,103,184,249,245,145,207,176,224,141, 83,136,123, - 72,164,120,187, 3, 66,178, 96, 69, 10,145, 16, 66, 64, 71, 60, 13,161,111,100, 66,138,172, 72, 89,218,132,178,226,120,225, 61, - 41, 32,157, 96,214, 38, 30,206,252, 9,242, 68,219, 29,209, 51,150,122,198, 18,238,179,177,228,173,223, 80, 74,115, 9, 33,171, -132,228, 12, 23,158,156, 66, 9, 33, 47,101, 15,107, 44,121,254, 86,136,177, 20,128, 51, 44, 11,179,175,242,135,195,219, 93,208, -245, 77,229, 4,134, 83,213, 10,246,103,235,198, 39,168, 85, 76,104, 68, 40,159,227,186, 67,217, 17,129,124, 18, 66,114, 35, 84, -246,238, 82,167, 61, 99,169,103, 44, 9, 2, 33,199,146, 71,159, 20, 36,175, 66,247,115,111,156, 66, 92,195,157, 67,168, 62, 26, -233,178, 11, 57,150, 34,209,246,221, 5,255, 15,195, 78,238,106,137,168,169,119, 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, 88, 0, 0, 2,128, 8, 6, 0, 0, 0, 64, + 11, 6,158, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 10, 79,105, 67, 67, 80, + 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, + 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, + 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202, +251,225,123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, + 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, + 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, + 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, + 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, + 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, + 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, + 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46, +194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, + 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254, +162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217, +217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, + 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, + 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62, +223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, + 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, + 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, + 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85, +184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153, +133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57, +135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11, +208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, + 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177, +119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, + 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, + 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35, +147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164, +248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66, +173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116, +186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, + 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21, +145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, + 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, + 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38, +177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113, +248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88, +171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5, +157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94, +128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, + 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, + 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, + 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168, +182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187, +167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, + 98, 23,103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, + 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, + 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122, +210,245,157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, + 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170, +247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133, +223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58, +219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145, +206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, + 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52, +186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11, +227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42, +168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122, +146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, + 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30, +149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150, +171,158, 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172, +106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38, +122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250, +134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185, +100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, + 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210, +221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101, +251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212, +213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121, +228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154, +251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211, +147,103,242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69, +255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79, +199,187,156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, + 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64, +237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, + 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162, +254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198, +194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177, +245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0,122, 37, 0, + 0,128,131, 0, 0,249,255, 0, 0,128,233, 0, 0,117, 48, 0, 0,234, 96, 0, 0, 58,152, 0, 0, 23,111,146, 95,197, 70, 0, + 2,237, 73, 73, 68, 65, 84,120,218,236, 93,119,116, 20, 85, 31,189,111,118,182,111,178,233, 61,180,208, 33,128, 52,165,247, 34, + 29,145, 34,124, 40, 34, 42, 29, 69, 65, 80, 68,165, 5, 16,233, 82, 20,149,162,116, 20, 68,165, 41,189, 10, 72,239,157, 16,210, +251,102,235,204,188,239,143,236,172,155,101,147,221, 64, 64,196,185,231,204,217,157,118,231,245,119,223,239, 53, 66, 41,133, 4, + 9, 18, 36, 72,144, 32, 65,130,132,146, 3, 35, 5,129, 4, 9, 18, 36, 72,144, 32, 65,194, 63, 44,176, 8, 33,180, 24,207,182, +241,150,211,126, 52,127,218, 57, 31,163,223,105, 9,114, 54,183,115,126,250, 47,113,103,243,167,149, 83,244,175,183,188,197,225, +244, 54, 77, 21,211,157,180,164,221,249,184, 56, 75, 42, 31,185,113, 39,125, 12,241,254,233,191,196,157,205,159, 54, 78,215,244, +227, 13,111,113, 57,189, 73, 83, 15,225, 78, 90,210,238,124, 92,156,143,154,143,138,112, 39,125,212,180, 84, 72,220,127,138,255, + 0,216,199, 37,174,138, 3, 74, 41,113,226, 39, 79, 43,167,115, 56,136,252, 37,233,214, 18,196,158,146,230,116, 9,207,146,194, +167,148, 82, 66, 8,217, 11,160,121, 73,250,189, 36,226,221,197,175, 37,194, 91, 92,113, 85, 92,206,146, 74,247,143,155,179,164, +242,146, 43,103, 73,164,123,119,241,254, 24,227,168,164,220, 89, 34,121,233,113,164,121, 55,233,231,145,121, 93, 57, 75, 34, 47, +185,114,150, 68,186,127, 18,156, 37,145,151,220,113,150, 68,186, 47, 44,238, 37, 11,214,147, 17, 2,174, 25,187,197,211, 44,132, + 30,151,200,244,214,226,242, 52,112,150,112, 28,125,106,231, 44,201,214, 76,139,146,138,163,199,145,222,157, 57, 75,138,223,149, +167, 36,226,201, 29,231,163,186,183, 16,119,150,184,223, 31, 53,221, 63, 41,206, 18,142,163, 18,201, 75, 46,156, 45, 74,184, 17, +208,194,233,252,211,146,228, 44,169,188,228,198,157,143, 28, 79,238, 56, 31,213,189,133,184,179,196,253, 94, 18,117,200,227,226, +125,230, 44, 88,143, 83, 92, 61,174,202,172, 36,185, 31,135, 21,231,113, 89,218, 74,202,138,227,134,119,111, 9,210,237, 41,105, +119,218,221, 71, 30,151,181,245,105,135,148,151,164,188,244,180,229, 37,119,233,134, 82,250, 41, 33,228,147,167,173,241,236,204, + 89, 82, 66,200,141,223, 31, 41, 47,185,190, 91, 18,121,201, 3, 39,121, 28,254, 47,233,252,244, 52,226,169, 25,228,238,237,248, +158,135,224,107,241, 52, 71,192, 99,114,103,139,127,131,223, 31,135, 59, 9, 33,159, 62, 38,191,255, 91,194, 84,202, 75, 82, 94, +122,234,242,146, 75,154,108, 81, 82,150,161,146,110, 72,185,114,150,196, 55,156, 57, 74, 42,141, 62,110,191,151,100, 94,122, 28, +113,255,111, 65,177, 45, 88,143,187,219,228,105,230,124, 28,220,143,201,239,123, 31, 71,235,224, 49,140,235, 42,113,119, 82, 74, + 63, 69, 9,118, 57,138,126, 46, 73,183, 62,206,110,194,199,145, 54, 31,103,122, 47,201,113, 30,143,201,239,255,150,120, 47,113, +119,150, 84, 94,114, 19,231,143,236, 86,119,225, 87,210, 93,216, 37,153, 54, 31, 39,103, 73,112, 63, 14,119, 62,174,184,255, 55, + 65, 90,166, 65,130, 4, 9, 18, 36, 72,144, 32,161,132, 65,164,133, 70, 37, 72,144, 32, 65,130, 4, 9, 18, 74, 22,133,118, 17, + 70, 69, 69,109,213,106,181, 21, 10,187,111, 48, 24,238, 39, 36, 36,180,148,130, 80,130, 4, 9, 30, 91,114,132, 48,248,219, 98, + 46, 0,160, 84,106,221, 73,144, 32,225,191, 40,176, 84, 42, 85,204,197,139, 23, 43, 9,130, 0,158,231,193,113,156,227,215, 98, +177,160, 89,179,102,197, 30,191, 21, 30, 30,190, 79, 38,147,149, 45,206, 59, 60,207,223, 73, 76, 76,108, 82, 68,193,125, 8, 64, + 12, 33,196,249, 90,145,191, 0, 18,172, 86,107,157,162, 56, 9, 33, 49,174,124,133,112,137,255,139,228,244,247,247, 63,206,178, +108,180, 59,174,194,254, 11,130,112, 35, 57, 57,185,145,148, 76,159, 12,194,195,195,247,177, 44, 91,236,244,121,255,254,253, 66, +211,103,100,100,228, 95, 12,195, 68, 22,131, 82, 38, 8,194,229,251,247,239, 55, 41, 76,128,136,105,222,131,160, 41,240,159, 16, + 18,207,113, 92, 61, 79,249,168, 40, 46, 55,105,180, 72, 78,103,113,197,178,236,244,208,208,208, 33,121,121,121, 38, 0, 84, 38, +147,209,160,160, 32,209,109, 0, 0,142,227, 82, 50, 50, 50,106, 72, 41, 81,130, 4, 9,207,180,192, 18, 4,129, 49,155,205,184, +114,229, 10, 10, 41,231,249,135,248, 94,165, 19,191,239, 12,245, 13, 13, 3,103,181, 66, 23, 28,226,224, 78,186,112, 14,156,205, + 10,206, 98, 65,233,250, 13,196,202, 11,213,171, 87,151,121,224,140,158, 49, 99, 70,168,175,175, 47, 76, 38, 19, 76, 38, 19,204, +102, 51, 76, 38, 19, 44, 22, 11, 44, 22, 11,172, 86, 43,172, 86, 43, 56,142,131,217,108,198,174, 93,187, 60,185, 61,122,234,212, +169,161,122,189,222,193, 39, 30, 34,167,200,107,179,217, 96, 50,153,240,199, 31,127, 20,201,201,178,108,116, 66, 66, 66,168, 66, +161, 0,165, 20,130, 32,128, 82, 90,224,112, 69,249,242,229,173, 82, 18,125,162,168, 52,117,245, 47,161,126, 26, 21, 56, 65, 64, +231, 90,229, 29, 55,110, 44, 91, 15,202,241, 16, 56, 14, 21,135,247, 7,242, 77, 48,168, 86,173, 90,145,233,147, 82, 90,102,234, +234, 95,252,189,229, 76, 77, 77, 53, 86,173, 90, 53, 1,249, 3, 65, 11,179,240, 68, 27,141,198, 80,209, 13,174, 66,136, 97,152, + 2,199,246,237,219,209,185,115,103, 79,126,143,126,247,221,119, 67,109, 54, 27, 44, 22, 11,204,102, 51,108, 54, 27, 56,142,115, + 28, 60,207, 59, 14,139,197,130,163, 71,143,122,107,185,154,209,182,109,219,129,191,252,242,139,238,167,159,126,210,149, 45, 91, + 22, 10,133, 2, 50,153, 12, 50,153, 12, 12,195,128,101, 89,188,240,194, 11, 68, 74,130, 18, 36, 72,120,230, 5,150,217,108,190, + 89,187,118,109,106,255, 31,165, 82,169, 20, 46, 5,103,100,165, 74,149, 46,187,190,231,169,235,208, 55, 52, 12,227, 75, 5, 2, + 0, 38,222, 78,115, 84, 12, 51, 27, 61,231,120,102,210,189, 44, 0,128, 70,163, 1,113,110, 54, 23, 2,157, 78,135,182,109,219, + 66,169, 84,162, 94,189,122,144,203,229,110, 15,133, 66, 1,185, 92,238, 77,165, 0, 31, 31, 31,124,246,217,103,162, 56,130, 78, +173,194,136, 70,245,160, 6,197, 87,231,174,194, 34, 80,176, 44,235, 56,188,225, 84, 40, 20, 56,123,246, 44, 88,150,133, 76, 38, +115,252,138,255,183,108,217,130,158, 61,123,130,101, 89,104, 52, 26,224, 63, 52,219,226,105,129,159, 70,133,215, 22,255, 8, 0, +184, 59,103,184, 35,238,142, 14,157,232,120,166,204, 91,189, 65, 8,129, 92, 46, 7,195, 48, 37,198,153,158,158,110,124,229,149, + 87, 14,248,250,250,110,207,206,206,134, 7,225,134,187,119,239,130,101,217, 66,211, 59,195, 48,152, 61,123, 54,174, 93,187,230, +149,223, 77, 38, 19,190,254,250,107,240, 60, 95,128, 87,252,239,122,205, 75,113, 53,165, 93,187,118,253,127,249,229,151, 0, 66, + 8, 22, 46, 92, 8,185, 92,142, 78,157, 58, 33, 40, 40, 8, 59,118,236,128, 66,161,192,216,177, 99,165,196, 39, 65,130,132,162, + 32, 7,240, 28,128, 16,187,129, 39, 7,128,191,211,253, 20,251,111,136,211,249,159,110,120,234,219,159, 17,239,139,231, 22, 0, + 74, 55,215,211, 0,104,236,135, 25,192, 33, 0,177, 78,223, 17,223,131,235,119, 89,123, 65,216, 28,192, 30, 0, 45,196,197,239, +238,223,191,223,193,201,146,114,241,242,229,203, 85, 68,173, 99,239, 42, 84,112, 28, 87, 73,236, 54, 20,173, 67,109,218,180, 41, +178, 69,207, 89,173, 15, 8, 15,119, 26,202, 93,183, 68, 97,194,197,106,181,162,119,239,222,249, 49, 80, 72,101,227,124,120,161, +217, 96,177, 88,192,178, 44, 42,151, 10,193,199,237,107,227,121,106,131, 33,151,128,203, 50,160,155,143, 13, 23,171,213,193,210, + 59, 41,184,157,157, 11,150,101,189,226, 20, 4,161, 80,113, 37,147,201,176,120,241, 98,188,242,202, 43,144,201,100, 94,241, 73, + 40,121,112,130,224, 54, 29, 22,150,102,189,137, 39,111, 56,211,211,211,141,157, 59,119, 62,162, 82,169, 86,132,133,133, 37,196, +199,199,123, 20, 88,174,162,199,181, 49,241,197, 23, 95, 96,254,252,249,104,217,178,165, 87,238, 52,155,205, 32,132, 96,233,210, +165, 15,220,155, 60,121,242, 3,223, 43,138,211,222, 48, 98, 34, 35, 35,135,110,219,182, 77, 47, 62, 27, 28, 28, 12,185, 92,142, + 26, 53,106,192,215,215, 23, 7, 14, 28, 0,207,243, 94,231, 75, 9, 18, 36, 60,187,112,167, 69,156,208,108,252,248,241,245,166, + 79,159, 62,173, 97,195,134,107, 14, 29, 58,180,154, 16,178,213,169, 76,236,108,231,216,234,116, 94,223, 69,100,201, 1,132, 16, + 66,182,138,207, 59,159, 59, 93,111, 3, 64, 41,158,143, 31, 63, 62,118,250,244,233,211,198,141, 27,247, 97, 92, 92,156, 98,252, +248,241, 53,167, 79,159, 62, 77,252,142, 59,119, 56, 91,176,138, 92, 5, 88,236, 46,188,116,233, 18, 60,141, 75,245,180,126,134, + 46, 56,196, 97,185,154, 84, 38,200,113,253,179,248, 76, 71,197,181,160,110, 5,232,116, 58,180,159,244,185, 87,150, 33,139,197, +130,228,228,100,135, 85,193,211,225, 45,167, 86,163,198,174,119,107,224,110,154, 18,159, 30, 78,199, 47,167,174, 65, 46,151,227, +197,106, 53,208, 65,225,139, 9,101,148,120,247,234, 45,216,188, 28,171, 75, 41,117, 43,172,196,255, 98, 87,137, 36,176,254, 57, +116,174, 85,222, 97,101, 58,234,219,218,113,189,167,225,172, 35, 78,222, 91, 60, 19, 0,208,178,206, 11,240,102,156,182, 39,206, +180,180, 52, 99,147,214, 45,246,242, 70,203,242,254,253,251,223,220,189,123,183,198,171,230,156, 27,129, 37, 90,105, 69,113,197, +178, 44, 44, 22,139, 87,126,183, 88, 44,133,230, 15,133, 66, 81,108, 11, 22, 0, 24, 12, 6,203,230,205,155,177, 96,193, 2, 4, + 5, 5,161, 93,187,118,136,136,136,192,250,245,235, 65, 41,197,240,225,195,161,209,104, 68,107,181,148, 0, 37, 72,248,111,163, + 40, 45,162,154, 62,125,250, 52,103, 1,227, 42,104,156,133,147,139,136,114, 22,105,177, 30,234,255,173,174,162, 73,252, 46, 33, +100,107, 92, 92, 92,103, 15,238, 72,113, 21, 88, 69, 46,179,111, 54,155,111,214,170, 85,203, 43, 21,145,151,151,151,232, 73,100, +184,107,197, 59, 91, 5,124,124,124,160,211,251,128,241,178,188,181,217,108, 14,129,178,115,231, 78,104, 52, 26,116,236,216,241, +145, 44, 88, 86,171, 21, 74,133, 28, 76,112, 24, 94,155,179, 27,105, 57, 70, 71,197,178,231,198, 77,156, 76, 74,198,187, 13, 91, + 67,167, 73, 70,174,197,226,149,165, 77, 16,132, 7,196, 21,203,178,232,221,187,183,195,122,224, 60, 46, 5, 82, 23,225, 63,217, +146,114,123,238,124, 93,112,177, 76, 61, 12,103, 90, 90,154,177,115,231,206, 71,120,163,101,249,189,123,247,142, 0, 80, 63,255, +252,243,197, 22, 88,162,176,146,203,229,152, 61,123, 54,230,207,159,239,184,239,173,192,226, 56,174,128,112,186,122,245,106,129, +111,185, 10,186,162,186, 71,105,126, 41, 41, 0, 16, 98, 98, 98, 28,239,132,135,135,195,223,223, 31,130, 32, 64, 16, 4,168,213, +106,104, 52, 26, 40, 20, 10, 41,209, 73,144, 32,161, 40, 45, 98, 28, 55,110,220,135,132,144,173,118, 75,210,185, 34,132,148, 59, +212,119, 17,105, 41,133,148, 93,157,221,137, 44,231,255, 34,198,143, 31, 31,235,198, 29,127, 62, 32,176,156, 84,227, 3,112,238, + 46, 44,169,202,171,168, 10,204,199, 95, 15,141, 78, 7,153,140,241,184,191,146,216, 69, 40, 22,248, 67,134, 12, 41,114, 92,138, +183,227,165,172, 86, 43, 24, 86,134,251,225,229,192, 51,251, 29,239,138, 7,195,202,113, 59,188, 10,100,151,254,130,220,203,138, +214,213,130, 53,124,248,112,124,253,245,215, 96, 24,198, 17, 38, 44,203,162, 98,197,138,184,121,243,166,148,211,158, 18,113, 85, +216,117,158, 23,188,182,186,184,123, 46, 45, 45,205,216,171, 87,175,189, 89, 89, 89,203,171, 87,175,126, 21,249,203, 24, 48,222, +242,177, 44, 91, 64, 88,137,226,106,222,188,121, 5,196,144,205,102,243,170, 1, 96,179,217, 30, 16, 58,179,102,205, 42,240, 11, + 0,141, 26, 53,242,202, 18, 12,128, 50, 12, 67, 21, 10, 5,218,182,109,139,154, 53,107,226,167,159,126,130, 32, 8, 24, 54,108, + 24, 52, 26, 13,230,206,157, 11,142,227, 48, 99,198, 12,201,130, 37, 65,130,132,162,180,136, 57, 46, 46,238, 92, 92, 92,156,195, +146,228,106,193, 42, 4,157,236, 98, 42, 68, 20,103,200, 31, 75,245,103, 17,110,232, 92,152,240,114,190, 54,125,250,244,105,110, +220,225,232,150,124,226,155, 61, 39,158, 63,139,207, 27,215, 6, 80,176, 91,112,241, 11, 85,160,243,209, 65,231,235,131, 94, 91, +246, 3,128,189,176, 31,231,149, 5, 75, 20, 88,105,105,105, 69,138,171,226, 88,176, 24, 37,139, 13,209, 25,160, 74, 57, 88,139, +173,128,192,146,177,114,220, 13, 42, 7, 70,174, 0,203,115, 94,113, 82, 74, 31,232, 18, 28, 48, 96, 0, 8, 33,142, 25, 95,181, +106,213,114,230,146,106,156, 39,157, 62,143, 47,195,197,141, 67, 1, 0, 77, 12, 6, 71, 92, 76,173,245,247,188,141, 57,103,247, + 58,172,141,147,240,254, 67,113,166,165,165, 25,159,175, 26,123, 68, 17,232,183,252,206,157, 59, 71, 0, 48,125,250,244,241,175, + 85,171,150, 87,121, 82,156, 52,225, 42,174,156, 45, 87,226,175,205,102,243,202,239,226, 88, 40, 79, 16,187, 11, 61,165,121, 74, + 41, 13, 12, 12, 4,195, 48,208,235,245,240,241,241,113,204,160, 85,171,213,208,106,181,142,241,155, 94, 10, 54, 9, 18, 36,252, +119, 17, 32, 10, 28,187, 72, 42, 96, 89,162,148,118,118, 22, 65,133,117, 21,218, 45, 78,251, 60,124,235, 23,187, 48,115, 11,209, +146,230, 82, 38,111,117, 21,103,172,168, 24,157,127, 35, 34, 34,126,243,241,241, 41,231,173,175,139,179,232, 40,111,179, 62, 96, +201, 34,132,192,199,215, 7, 26, 31, 29, 52,190, 62,133, 90,185,138, 18, 88,162,101, 72,172,108, 86,172, 88, 1, 31, 31, 31,188, +254,250,235,197, 30,131,229, 16, 88, 10, 6, 59, 84,127, 64,166,100, 11,136, 43,150,101, 33,147,203,145,232, 19, 1, 70, 46, 7, +203,121,103, 21,203,202,202, 2,203,178,248,248,227,143, 29, 45,118,103,113, 85, 28, 63, 75,120, 76,173, 39,222,246,128,213,169, + 48,107,235,195,114,138,150, 43, 69,160,223,242, 42, 85,170, 56, 44, 87, 90,173, 86,156, 61,234, 17, 12,195,184, 21, 87,174, 51, +254, 88,150,205, 79,203, 30,102, 59, 58, 91,176,226,226,226, 28,188,206,150, 43, 17,197,201, 71,162, 91,247,238,221,139,147, 39, + 79, 98,200,144, 33,208,104, 52,152, 63,127, 62, 56,142,195,228,201,147,161,209,104,160, 84, 42,165,196, 39, 65,130,100,189, 42, +106, 95,209, 20,151,113, 78,196,197,210,148,226, 78, 88, 57,119, 7, 58,253,183,185,225,181,184,116, 29,186, 94, 23,127,211,226, +226,226,118,139,150, 43,167,235, 5,220, 81,168, 5, 75,165, 82,149,187,114,229,138, 99,145,209,162,126, 45, 22, 11, 90,182,108, +233,181, 37, 76,156, 69,200,178,178, 2,130, 66,235,235, 3,173,222, 23, 26, 31, 31, 87,161, 65, 60, 21,222, 98, 11,216, 89, 96, +125,242,201, 39, 96, 89, 22, 95,127,253, 53, 0,224,253,247,223,247,122, 12,150,200, 9,158, 32,158, 94, 71,237, 57, 61, 97,249, +222,134,164,131,167,193,178, 44, 66, 27,116,128,240,124, 79,228,105,124,192,242,156,215,179, 8,211,211,211,113,243,230, 77,200, +100, 50,140, 30, 61,186,192, 90, 69,174, 51,211,118,238,220, 41, 89,176,254,137, 12, 46,112, 94,137,169,226, 88, 25,157, 57,197, + 49, 87, 89, 89, 89,203,239,220,185,115, 20, 0,211,191,127,127,127,173, 86,139,111,190,249, 38, 15,128,114,253,250,245, 26, 79, + 98, 72, 76, 55,158,196,149, 92, 46,207, 79,203,222, 21,110, 5, 26, 17,158, 6,188,123,147,230, 69,183, 18, 66,192,243, 60, 52, + 26, 77, 1,203,149, 90,173,134, 74,165,146, 18,158, 4, 9, 18, 60,225,207, 98, 60, 91,223, 73, 44,253,249,144,188,127, 62,170, +131,217,194, 4,134,217,108,198,133, 11, 23,188,229,241,122,209,209, 82,245, 94,192,164,123, 89, 32,132,224,171, 70,213,161,211, +251, 64,171,211,225,229,159,246, 58, 10,236,179,211,222,135, 74,231,131,200,166,237,188, 42,192,197, 46, 66,103,129,149,153,153, + 9,185, 92,142, 41, 83,166,128, 97, 24,204,152, 49, 3, 81, 81, 81,184,127,255, 62,214,175, 95,239,149, 5, 75,198,203, 16,241, +106, 85,104, 7,248, 65,255,106, 51, 4,180,253, 4,247, 44, 44, 14,153,180,104,102, 58, 15,229,142,121,176, 8,188,215, 51,170, + 56,142,195,222,189,123, 93, 7,178,131, 82,234, 88, 37,223,102,179,193,106,181, 98,198,140, 25,144,118, 18,121,242,136,104, 48, + 28, 33,245, 6, 3, 0,182,196,189,225,184,254,241,217,191,211,231,236,239,243, 23,236,175, 82,182, 93,177, 56,211,210,210,140, + 47,182,108,180,207, 36,200,191,171, 81,163, 70, 1,203,149, 90,173, 38,246,115,175, 68, 53,195, 48,144,201,100, 15,116, 11, 22, + 38,178,188, 25,131,197,113,156, 99, 1,208,162,198, 43, 62,140, 5,235,141, 55,222, 64, 68, 68,132,195,114, 53,105,210, 36,104, + 52, 26,140, 31, 63, 30, 54,155, 13,243,230,205,147, 18,159, 4, 9, 18,254, 9, 49,246,216,224,182, 4, 53,153, 76,183,106,214, +172,137, 66,238, 69,169,213,106,185, 75,225, 28, 89,169, 82,165,203,174, 93,133,132,144, 54,148,210, 93,238, 10,115, 66, 8,124, +245,190, 80,251,232,160,117,177, 90,169,125,245, 80,249,248,128, 81,200,221, 85, 4, 15,112,138, 99, 71,156, 5,150,120,100,101, +101, 65, 46,151, 99,193,130, 5,208,235,245, 48,155,205, 30, 57,197,202, 70, 38,147, 33,239,110, 14, 46, 78,219, 5,165,250, 16, + 42,180,123, 5, 17,114, 13, 20, 7, 54,193,200,219,138, 92,104,212, 29,103,165, 74,149, 48,113,226,196, 7,150,103, 40, 12, 81, + 81, 81, 30,253,254,168,144, 56,221,115, 22, 53,203, 85,132, 64,121,119,207,185,229, 20, 45, 87, 38, 65,254,221,205,155, 55, 69, +203,149,159, 86,171,197,146, 37, 75,242, 0, 48,147, 39, 79,214,150, 41, 83, 70,230, 77, 90,146,201,100,152, 51,103,142,219, 49, + 87,238,196, 86,113,242,145,243,187,205,155, 55,119,187,208,168, 59,209,230,142, 83,116,107, 80, 80,144,195,114,197,243,188, 99, +246,160,184, 90,124, 97,141, 9, 41,125, 74,156, 18,231,127,135,243, 89,131,219,218, 61, 33, 33,225,197,194, 94,168, 80,161,194, +149, 43, 87,174, 84, 20,183,204,176, 23,152, 10,147,201, 84,169, 81,163, 70, 30, 77, 57,130, 32, 64,165, 82,129, 82,138, 86, 19, +167,131, 48, 0,131,130,149, 87,104,227,214,144,201, 88, 8,249, 91,114,120,156, 69,104, 52, 26, 11, 84, 10,238,142,220,220, 92, +152,205,102,175, 87,223, 54,153, 76, 5,150, 82, 32, 84,192,237,223,215, 61, 48,155, 80, 60,188, 29,151,163, 86,171, 11,116,241, + 20, 5, 79,107,138, 73, 40,121,136, 19, 17, 0,160,114,163,142, 16, 4, 30,148,231, 11,108,103, 84,181,220,139, 16, 40, 15,171, + 45, 15,102,179,217,147,153,145,164,166,166, 26,123,245,234,181, 23,192,183,221,186,117,187,140,252, 25, 44,212,199,199, 71, 37, +151,203, 5, 0,233, 0,104, 70, 70,134,223,189,123,247, 4,147,201, 84,218,147, 59,127,249,229, 23, 92,184,112, 1, 77,155, 54, + 45,176,109,147,104, 5,117, 94,141,221,155,244, 41,118,139,187, 91,193,189, 48, 1,231, 45,100, 50, 25,252,252,252,160, 80, 40, + 48,101,202, 20, 40, 20, 10,104,181, 90, 0,192,188,121,243, 28,139,166, 74,144, 32, 65,194, 51, 47,176, 60,149,151, 69,116, 31, + 22,217, 85,200,113, 92,124,153, 50,101,138,245, 49,158,231,147, 60, 8,182,248,245,235,215, 43,156,173, 14,158,126, 41,165, 73, + 30, 42,217,248, 45, 91,182, 40,220, 89, 51, 10,219,248,217, 19, 39,207,243,241,101,203,150, 45,212, 66,226, 14, 54,155,237,158, +148, 68,159, 28,120,158, 47, 34,125,126,244,176,233,243,106,229,202,149,239,249,251,251,255, 26, 22, 22,150,118,240,224,193,160, +250,245,235, 7, 57, 63, 83,191,126,253, 8,151,215, 44, 40,124, 31, 66, 16, 66,226,187,117,235,230, 54,205,139, 98,201, 77,250, +140,247,148,230,143, 29, 59,166,112,126,191, 48,126,167,124, 20,239,133, 96,189, 93,187,118,109,198,153,167,176,180,111,179,217, + 82,164, 84, 40, 65,130,132,255,172,192, 50, 26,141,119,107,214,172,201, 21,114,239, 78, 81,239,166,166,166,214, 43,105, 15, 88, +173,214, 70,255, 6,206,148,148,148,122, 82,114,123,186,241, 56,226, 40, 41, 41,233,249,146,230,228, 56,174,196,211,167,205,102, +107,244, 56,194, 52, 45, 45,173,161,148,178, 36, 72,144, 32, 9, 44, 47,224,237,114, 12, 18, 36, 72,144, 32, 65,130, 4, 9,255, + 85, 48, 82, 16, 72,144, 32, 65,130, 4, 9, 18, 36,148, 44, 8,242,119,141,126, 0,197,153, 29, 64, 8,105, 83,220, 15,123,226, +151, 56, 37, 78,137, 83,226,148, 56, 37, 78,137,243,217,227,244,196,253,204,204, 78, 20,103, 71, 61,142, 3, 64, 27,137, 83,226, +148, 56, 37, 78,137, 83,226,148, 56, 37,206,255,218, 33,117, 17, 74,144, 32, 65,130, 4, 9, 18, 36,148, 48, 88, 41, 8,254, 25, + 16, 66,100,148, 82,190, 4, 41, 3, 0, 20,182,161,155, 5, 64,198,195, 56, 19,128,194,126,136, 11, 21,217, 0, 88,237,135, 23, + 75,205,127,198, 36, 36, 4,196, 82, 94, 94,159, 18, 34, 23, 4,156, 42, 93,186,212, 95,192,139, 22, 0,240, 9,175, 86,205, 71, +167,105, 99,182, 90,202,169,228,202, 11,153,134,220,157,166,164,203,183,164, 20, 34, 65,194, 63, 82, 46,117, 1,240,153, 61,239, +199, 81, 74,215, 73,161, 34, 65, 66, 9, 11, 44, 95, 95,223,227, 12,195, 68,123, 90, 95,199, 41, 99,130,231,249,248,244,244,244, +122, 94,102,100, 22, 64, 47, 31, 31,159,150,114,185,188, 49, 0,216,108,182,131,185,185,185,187, 1,172,167,148,114, 15, 89, 64, +232, 1,244, 6,208,207,126,233, 7, 0,235, 40,165,217, 15,201, 87,211,207,207,111,163, 92, 46,167,169,169,169, 13, 0, 32, 40, + 40,232,136,205,102, 35,217,217,217, 47, 83, 74,207, 20,147,143, 81, 40, 20,211,155, 54,109,218,132, 16,178,146, 82,186,184,132, +226, 82,197, 48,140, 91, 97, 34, 8, 66,217,135,224, 83, 0,240, 91,176, 96, 65,208,170, 85,171,106,199,199,199,215, 0,128,232, +232,232,179,253,251,247,255,107,196,136, 17,105, 0,178,236, 66,171, 80, 36, 36, 4,196, 38, 39,222, 24,146,148,124,161, 55, 0, +132, 71,212, 88, 39,147, 49,138,168,168,147,135,181,193,253,130, 43, 87, 41, 63,120,205, 55, 11, 20,101,203,149,194, 31,135, 78, + 62, 55, 98,212,135,177,234,176,202, 95, 72, 34,235,201, 65,175,215, 31,103, 24, 38,186,168, 60,238, 46,207,243, 60, 31,159,150, +150, 86,175, 48, 78,150,101,163,139, 42, 47,220, 93, 19, 4,225, 70, 74, 74,138,219, 37, 35,252,252,252, 14,179, 44, 91,206, 91, + 46,241,151,227,184,248,194,150,136,241,243,243, 59, 46,147,201,162,139,242,167,187,123,130, 32,220, 72, 78, 78, 46,204,157, 15, +248,189, 36,220,249, 48,156, 69,185, 83, 44,143, 0,204, 11, 10, 10,122, 33, 45, 45,237,127, 0, 62,204,206,206,174, 37,147,201, + 16, 24, 24,248, 33, 33,228,154,159,159,223,178,172,172,172, 67, 0, 70, 81, 74, 5, 41,199, 72,144,240,136, 2,139, 97,152,232, +123,247,238,133,234,116, 58, 0,127,239,151, 39,110,242, 44, 8, 2, 40,165,142, 95,142,227, 80,181,106, 85,111, 69, 70, 13,189, + 94,191, 97,252,248,241,165,123,245,234,165, 20,183,132, 73, 72, 72,168,180,113,227,198,255, 77,153, 50,229, 19, 66, 72, 79, 74, +233, 89,111, 69, 11,128,214, 0, 6,212,174, 93,187,199,164, 73,147, 20,173, 90,181, 2,207,243,248,245,215, 95,155, 78,158, 60, +121, 1, 33,100, 19,128,229, 0,126,247,182,144, 32,132, 52, 9, 15, 15, 95,125,224,192,129,136,155, 55,111,242,189,122,245, 90, + 11, 0,199,143, 31,143,225,121,158, 52,104,208,224, 23, 66, 72, 95, 74,233,129, 98,132,121,183, 17, 35, 70,244, 28, 62,124,120, +200,235,175,191,254, 42,128,197,246,111,137,187,136, 23,119, 3, 66,135,229,138, 82,170, 40,226,185,240, 98, 88,178,116, 55,111, +222, 12,104,212,168,209,208,228,228,228,119,157,121,147,146,146,112,226,196, 9,235,180,105,211,230, 28, 58,116,104, 81,185,114, +229, 50, 0, 24, 10, 35,162,188,188,126, 82,242,133,222,205, 26, 46,240, 3,128,245, 91,134,190,114,236,175, 20,223,173,219,150, +254, 79,169, 86,152, 87,125, 53, 71, 81,177, 66, 89,236, 57,126, 21, 71, 47,164,147, 26, 77, 58,179, 89, 91, 87,182, 5,176, 84, +202,158, 79, 6, 50,153, 44, 42, 62, 62, 62, 84,171,213,186,221,208,221,101,220,133,184,112, 41, 42, 85,170, 84,120,193,194,178, +209,247,238,221, 11, 85,171,213,142,178,195,181,204, 16,203, 21, 71, 90,161, 20,149, 43, 87,182, 22, 81, 38,149,185,115,231, 78, +168, 86,171,117,240,184,115,159,171,208,168, 92,185,114, 81,126, 47,224, 78,111, 56, 41,165,168, 88,177, 34,239,201,239,226,142, + 21,158,252, 45,114,150, 43, 87,142, 22,135,211, 27,119,150, 47, 95,222,234, 33,250,231, 93,190,124,121,120,169, 82,165, 80,177, + 98,197, 67, 47,188,240,130, 94,167,211, 97,219,182,109,168, 86,173, 90,172, 94,175, 63,186,126,253,122,249,216,177, 99,159,251, +238,187,239, 0, 96,132,148, 99, 36, 72,120, 68,129, 69, 8,129, 78,167,195,218,181,107, 11,221, 54,195,249,127,233,210,165,189, +250, 32, 33,164, 94,185,114,229,246, 30, 56,112, 64, 19, 17,241,247, 2,214, 22,139, 5, 1, 1, 1, 24, 54,108,152,178, 75,151, + 46, 21,219,181,107,119,132, 16,210,156, 82,122,220, 3, 95,143,144,144,144,133, 31,127,252,113, 88,159, 62,125, 16, 20, 84, 96, +145,108,244,234,213, 11, 47,191,252,178,226,242,229,203,175,172, 88,177,226,149,197,139, 23, 39, 18, 66, 70, 80, 74, 55, 21,197, +171,213,106,187, 85,168, 80, 97,201,129, 3, 7, 66, 67, 67, 67, 17, 19, 19,195,140, 29, 59,182, 98,165, 74,149, 52,209,209,209, +204,253,251,247,241,211, 79, 63, 69,245,237,219,119,131, 82,169, 28,108,177, 88, 54,123,225,119,101, 96, 96,224,152,183,223,126, + 59, 40, 59, 59,155, 59,121,242,228, 85,241,186, 74,165,154,216,160, 65,131, 58,132,144,181,148,210,229, 15, 99,185,178, 91,233, + 92,247, 28,177,137,247,189,180,100, 41, 79,157, 58, 21,216,176, 97,195, 77,102,179,185,206,144, 33, 67,238, 76,155, 54, 77,163, +215,235,245, 0, 72,118,118,118,198,103,159,125,102,153, 59,119,238, 7,213,170, 85,107,125,248,240,225, 30,207, 61,247,156,205, + 46,222, 30, 20, 88,132, 56,220,115,247, 94, 10,246, 30, 18,148, 19,199,191, 31, 61,115,106,185,219,127,158,191, 43,176, 26, 61, +126,222,119, 14, 73,105,185,248,237,240,121,132, 7,249, 18,133, 74, 30,235, 31, 29,219, 60,235,222,249,125, 84,218,241,250,177, +131, 16, 2,173, 86,139,159,127,254,249,129, 45,166,220,109, 63,197,178, 44,252,253,253, 61,238, 70,160, 86,171,177,115,231, 78, +183,123, 35,186,219,122,199,207,207, 15, 40, 98,179,107, 66, 8,212,106, 53, 14, 30, 60, 8,134, 97,220,110,225,227,122, 77,167, +211,129, 41, 98, 79, 42,145,115,223,190,125, 30,185,196, 95, 31, 31, 31, 0,144, 21,153, 41, 85, 42, 28, 56,112,160, 80, 63,187, +254,247,177,239,199,234,137,243,224,193,131, 5,182,232,114,221,186,203,249, 92,167,211, 57, 26,110,133,182,206, 2, 2, 26, 68, + 71, 71,227,216,177, 99, 88,191,126,125, 96,108,108, 44,174, 94,189, 10, 66, 8,166, 77,155, 70,170, 87,175, 46, 79, 76, 76, 68, +211,166, 77,241,227,143, 63, 54,146,114,139,132,127, 16,114, 0,207, 1, 8, 65,254,174, 49, 57, 0,252,237,117,143, 18, 64, 26, + 0,141,253, 48, 3,200, 5, 16,108,127, 55,213, 94,182, 56, 11,132, 20, 20,220, 20,186,190,157, 91,220, 81, 34,196,233,158,248, + 13,215,115,215,223, 2,220,172,189,144, 17, 43,177, 22,148,210,189, 5,124,228,133,184, 18,247, 17,115,205,203,110, 54,126, 85, +233,116,186,141, 71,142, 28,209,132,132,252,237,118,179,217,140,156,156, 28,228,230,230, 34, 39, 39, 7,190,190,190, 88,191,126, +189,166,117,235,214, 27, 9, 33,149, 40,165,230,194, 56, 1,204,185,127,255,126, 24,199,113, 80, 42,149,133,181,124, 81,181,106, + 85,124,248,225,135,104,223,190,125,120,203,150, 45,231, 0,216, 84, 4, 39,180, 90,237,146, 19, 39, 78,132,106,181, 90, 92,185, +114, 5,241,241,241,120,239,189,247, 74, 9,130,128,187,119,239,226,234,213,171,184,119,239, 30, 86,172, 88, 17,218,189,123,247, + 37, 0, 54, 23,229,119, 59,222, 28, 61,122,116,165,192,192, 64,230,243,207, 63,207,202,205,205,253,202,126,125,252,188,121,243, +250, 54,107,214, 44,100,208,160, 65, 32,132,172,161,148, 62, 32, 88, 92, 56,221, 89,174,120, 0, 23, 93, 94,171,234, 98,217, 10, +183, 39,190, 76, 55,156, 4,128, 95,187,118,237, 70,155,205,230, 58, 7, 14, 28,184,214,184,113,227, 50, 0,238,139,137,206,207, +207, 79, 55,103,206,156,176,206,157, 59, 95,110,213,170, 85,157,118,237,218,141, 78, 73, 73,153,102,191, 79, 93, 57, 5, 1,167, +194, 35,106,172,219,119,120, 68,239, 61, 7, 45,138,247, 71,125,114,167,116,169,178, 89,167,174,164,243,231,111,164, 32,199,200, +225,165, 86,249, 27,139, 55,168, 81, 26, 11,215, 30,192,176,119, 62,146,111, 90,183,242,229,107, 20, 58, 0,191, 20, 17,158,143, + 4,137,243,111,145, 33, 8, 2,228,114, 57, 58,116,232, 0, 66,200, 3,123,109,202,229,114, 28, 62,124, 24,173, 90,181,130, 92, + 46,199, 27,111,188,225, 21, 39,203,178,104,215,174,157, 99,159, 67,103, 62, 87,177,224, 78, 11,184,250,157, 82, 10,150,101,193, + 48, 76,161, 27, 92,187,114,122, 42,151, 68,119, 22,197,229,124,207,147, 59, 69,235,145,183,226,202, 91, 78,209,157, 44,203,162, + 81,163, 70,248,235,175,191,138, 20, 91,238,116,165,171,223, 51, 50, 50, 94,171, 84,169,210,190, 5, 11, 22, 4, 2, 64, 90, 90, +154, 99, 35,122,153, 76,134, 75,151, 46,193, 98,177,224,211, 79, 63,181,102,103,103, 15,146,242,145,196,249, 56, 57,139,210, 34, + 0,154,141, 31, 63,190,222,244,233,211,167, 53,108,216,112,205,161, 67,135, 86, 19, 66,182, 82, 74, 59,139,191,227,199,143,143, +157, 62,125,250,180,113,227,198,125, 24, 23, 23,119,142, 16,178, 21, 0, 92,207,237,238,239,236, 34,222, 66, 68, 30,187, 91, 10, + 60,235,238,220,245,215,149,155,117,186, 64,236,158, 35,206,133,153,183, 2,203,155,189,245, 88,150, 29, 62,109,218,180,176,162, +196, 85,110,110, 46, 18, 18, 18, 80,166, 76, 25,188,241,198, 27, 97, 11, 22, 44, 24, 14, 96, 86, 17,180, 10,153, 76,134, 99,199, +142, 33, 57, 57, 25, 53,107,214, 68,185,114,229, 10, 60,112,253,250,117,252,250,235,175,200,204,204, 68,221,186,117,129,252,241, + 69,110,241,220,115,207,125, 90,181,106,213,118,237,218,181,227, 52, 26, 13, 78,157, 58,133, 58,117,234, 96,237,218,181, 40, 93, +186, 52,180, 90, 45, 46, 95,190,140,154, 53,107, 98,239,222,189, 8, 9, 9, 65,237,218,181,185,186,117,235,238, 79, 79, 79,223, +125,235,214,173, 79, 11, 73, 56,138,168,168,168, 15,223,126,251,109,101, 66, 66,130,176, 98,197,138, 67,148,210, 67,132,144,193, + 31,125,244,209,171,237,219,183, 15, 57,121,242,100,246,159,127,254,249,167, 59,113,229,165,229,138,115,173,140,120,158, 55, 27, +141, 70,139,217,108,182, 49, 12,115,139, 16, 98,225,121,190,176,190, 29,245,128, 1, 3,202,167,166,166, 14,123,231,157,119,110, +218,197,213, 37,228, 15,108, 7, 0,112, 28,103,206,205,205,205,110,216,176, 97,153,190,125,251, 94, 91,189,122,245,176, 1, 3, + 6,172, 95,190,124,121, 46, 0,163, 43, 97,233,210,165,254,146,201, 24,133, 33, 39,240,198,134,245,203,222,253,117,203,240, 82, +119,239,222,171, 24, 20, 28, 98, 80,248,132, 36,172,255,225,187,227, 0, 44, 9, 41,217, 56,115, 61, 17,114,185, 12, 23,238,102, +161,217,139,189,228,215,174, 76,109, 34, 10, 44, 9,143, 21, 84,220, 28,122,207,158, 61, 69, 90,176, 14, 31, 62, 12,185, 92, 14, +141, 70,131,185,115,231, 22, 73, 42, 10, 2,209, 58,228, 73,196, 48, 12, 83,100, 57, 34,138, 12,113, 3,118,215,227,203, 47,191, +196, 59,239,188, 83,224, 27,118,145, 65, 60,113, 22,230,190, 50,101,203, 34, 57, 41,169,192, 53,111, 54,139,231,121, 30,114,185, + 28, 95,127,253, 53, 58,119,238,140,173, 91,183, 22,249,219,161, 67, 7, 48, 12, 67,189, 9,207, 70,141, 26,193,106,181, 58,220, +124,233,210, 37,183,188,139, 23, 47,246, 84,153,117, 1,240, 89,157, 58,117,244, 45, 91,182,196,190,125,251,240,242,203, 47,155, +173, 86,235, 21, 0,232,212,169, 83,229, 5, 11, 22, 40, 79,156, 56,129,160,160, 32,249,157, 59,119,190, 37,132, 72, 3,223, 37, + 60,222,194,200,141, 22, 17,235,188,233,211,167, 79,115, 17, 70, 5, 32,222, 39,132,108,141,139,139,235,236, 44,134,156,207,157, +172, 76,206,226, 45,214,217, 2,229, 44,158, 10, 17,101,174,238,118,126, 62,165,128,192,178,123,168,133,179,213, 71, 44,116, 61, +137,171,194, 90,138,174,240,243,243,235,248,210, 75, 47, 57,196,141,201,100,114, 8, 43, 81, 92,137,231,151, 47, 95, 70,189,122, +245, 20,126,126,126, 29, 61, 8, 44, 81,188, 33, 50, 50, 18,169,169,169, 56,123,246, 44,202,148, 41, 3,155,205,134,237,219,183, + 35, 43, 43, 11,114,185, 28, 10,133, 2, 86,107,209, 67, 18,170, 86,173,218, 97,213,170, 85,245, 86,174, 92,153, 33,182,224,126, +248,225, 7, 80, 74, 17, 18, 18,130,188,188, 60, 36, 37, 37, 97,247,238,221,224, 56, 14, 62, 62, 62,136,137,137, 81,118,235,214, +173,201,103,159,125, 38, 7,240,105, 33,212, 47,188,252,242,203,122,189, 94,143, 81,163, 70, 81,171,213, 58,139, 16,210,160, 71, +143, 30, 31,142, 24, 49, 34,240,214,173, 91,150, 55,223,124,243,184,213,106,157, 99,143, 15, 57,165,212,230, 33, 33, 22,106,185, +178,217,108, 98,152,222,204,205,205, 69,112,112,112, 25, 15, 99,180, 0, 64,113,240,224,193, 70, 0,100,147, 39, 79, 86, 3, 72, +114, 22, 87, 22,139, 5,185,185,185, 48, 24, 12,182,172,172,172,228, 49, 99,198,112,171, 87,175,150,217,223,185,224, 78, 96, 1, + 47, 90,170, 87,215, 41, 41,149,125,180,116,233, 82,159,246,237,219, 51, 62, 62, 62,200,201,201,209,255,182,109,155, 79,235,150, + 77, 98,166, 77,159,185, 67, 31, 93, 51,233,224,169, 27,184,151,152, 5,139,205,134,152, 8,191,124,251,151,132,199, 14,251, 4, + 21,135, 5,203, 89, 76,236,219,183, 15, 47,190,248,162, 35,175, 43, 20,138, 2,150, 46, 79,156, 44,203,226,197, 23, 95,124,192, +162,179,103,207, 30,183,214, 38, 79,112, 22, 67,174,162,200,157,240, 98, 24, 6,158,122,153, 69,235,157, 59,145,229,108,197,119, + 17,109,158, 42, 9,176, 44,139, 17, 35, 70, 64, 46,151, 99,236,216,177, 96, 89, 22,181,107,215, 6,203,178,104,216,176, 33,228, +114, 57, 90,181,106, 85,108,191, 31, 57,114, 4,117,234,212,113,184,169,118,237,218,168, 95,191, 62, 88,150, 69,211,166, 77, 33, +151,203,209,174, 93, 59,111, 56, 63,204,201,201,169,229,227,227,131,203,151, 47, 67, 38,147,129, 16,114,149, 82, 90, 11, 0,222, +126,251,237,107,121,121,121,229, 77, 38, 19,222,126,251,109, 98,177, 88,106,142, 29, 59,246, 35, 0,146,192,146,240, 56,203,163, + 2, 90,196, 9,198,113,227,198,125, 72, 8,217, 42, 90,164, 92, 45, 77,238,206,221,240,139, 34, 72,236, 30,172,239, 34,222,196, +174,195, 78, 69,188,107,113, 17, 84,174, 93,132,127,122,180, 96,137,133,174,183, 2,203, 19, 76, 38,211,115,161,161,161,133,138, + 43,231, 95,139,197,130,114,229,202,193,100, 50, 61, 87,220,202, 34, 34, 34, 2, 86,171, 21,203,150, 45,131, 66,161,128, 66,241, +183,174,176, 88,138, 54, 14,157, 63,127,254,230,145, 35, 71,234,212,173, 91, 55,224,199, 31,127, 76,105,222,188,121, 72,251,246, +237,161,209,104, 96, 52, 26, 97,179,217,208,160, 65, 3, 84,173, 90, 21,241,241,241,248,237,183,223, 82, 43, 85,170, 20,124,244, +232, 81, 33, 49, 49,241,118, 17,212,173, 91,183,110, 13, 66, 8,126,251,237,183, 52, 74,233, 9,141, 70,243,227,180,105,211,252, + 45, 22,139,240,234,171,175,222, 77, 79, 79, 31, 3,192,166, 82,169,102,181,111,223,254, 5,153, 76,182,150,231,249,133,197, 77, +160,174, 97,107, 48, 24,160, 86,171,189, 89, 18, 66,158,158,158, 94, 3, 0,116, 58, 93, 32,128,107,142,148,109, 52, 22, 16,193, + 22,139,197, 20, 24, 24,168, 3, 0,251, 59,242, 66,226, 35, 68,171,213,110,184,125,251,134,175,243,248, 56,127,127,127,244,235, +219,151,105,220,168,145,178,214,115,207,181,155,240,197,202,181,145, 65,122, 75, 76,100, 16,108,188, 13,187,118,108, 23,168, 96, +219, 33, 21, 55, 79, 70, 96,137, 34,195,213,130, 37,151,203,177,119,239,222, 7,174, 41, 20, 10,124,245,213, 87, 94, 9, 2, 81, + 76, 21,214, 69,230,210,165, 69, 60, 9, 23,185, 92, 14,153, 76,134,175,191,254, 26,130, 32,224,221,119,223, 45,208,109,232,204, +239,101,139,217,241, 78,213, 79, 4, 0, 22,196,207, 86, 57,222,119,117,175, 88, 94,122, 99, 21, 91,176, 96,129, 87, 22,172, 78, +157, 58,121, 20,172,206, 61, 10,206,238,250,235,175,191,220,242, 46, 93,186,212, 99,120,242, 60,143, 95,126,249,197, 33, 78, 69, +124,252,241,199,111, 71, 71, 71,135,237,223,191, 31,137,137,137, 48, 24, 12,200,205,205, 69,131, 6, 13, 98,218,180,105,115, 42, + 49, 49,241,214,249,243,231, 95,146,114,143,132, 39,104,193, 50,199,197,197,157,139,139,139,115,107,161,114,181, 36, 21,101,105, +114, 18, 86,127,194,222, 53, 56,110,220,184, 15,145, 63,124,230, 79, 47,222, 85,186,118, 17,186, 53,252,184,168,198,207,220, 21, +186,222,116, 19,122,105, 54,103, 9, 33, 48,153, 76,110,133,149,179, 40,176, 90,173, 72, 79, 79, 7,207,243,236, 35, 68,212, 3, +215, 60, 9,172,179,103,207,190, 62,112,224,192, 4, 63, 63,191, 90, 41, 41, 41,201,130, 32,180, 58,124,248,112, 8,203,178,208, +235,245,208,235,245,248,245,215, 95,161,213,106, 49, 98,196,136,100,158,231,247,249,250,250, 6, 25,141,198,211,137,137,137, 19, + 10, 85, 46,114,121,235,102,205,154,225,196,137, 19,200,204,204,252,131, 16, 82,107,208,160, 65,109, 75,149, 42, 69,166, 78,157, +106,186,118,237,218,151, 0, 82,116, 58,221,178, 85,171, 86, 53,175, 91,183,174, 79,255,254,253, 65, 8,249,134, 82,106,242,214, +207, 6,131,161,128,176,202,206,206, 70, 78, 78, 14,116, 58, 29,231,101,152,201,145, 63,150, 74, 28, 79,229,136, 27,187,245, 74, +140, 31,202,178, 44,205,127,132,202, 11,227,211,233,116,147, 87,174, 92,169,113,157,124,192,243, 60,146,146,146,160,215,235,241, +241,132, 9,138, 73,239, 13,170, 35,243, 9, 59,204, 48, 4, 22, 43,205,164,130,101,187, 33,169,207,126,169,184,121, 50, 16, 5, + 65,215,174, 93, 31,232, 22, 84, 40, 20,216,185,115, 39,186,119,239,238,104,176,212,173, 91,215, 99,163, 74, 20, 4, 93,186,116, +113, 88,130,182,111,223,238,182,123, 79,180, 64,121, 35, 4,197,103, 71,142, 28, 9,150,101,177,112,225, 66,140, 30, 61, 26, 12, +195, 96,246,236,217, 96, 24, 6, 19, 39, 78,244, 90, 92, 58, 11,151, 91, 51,243,127,163, 71,103, 35,109,113, 24, 0,192, 87,175, + 23, 61, 84,172,178,135,101, 89,135,229,234,185,231,158,131, 92, 46, 71,195,134, 13,193,178,172,195,114,213,177, 99, 71,231,112, +164,222,112,178, 44,139, 43, 87,174, 56,220,220,176, 97,195, 2,150, 43,150,101,209,169, 83, 39,111,156, 57,205,223,223,255,179, +170, 85,171, 86,155, 51,103,142, 92, 38,147,161,117,235,214,149,223,124,243,205,219, 65, 65, 65, 65,147, 39, 79,214,186,121, 71, + 3,160, 86,181,106,213,116, 82,174,145,240, 24, 45, 88,159,185,185, 21,224, 60,166,170, 24,124, 91,157,159, 23, 57, 92, 69,145, +221, 34,182,207, 19,151,187,119, 11, 3, 91, 84,107,172, 56, 2,203,110, 94, 46,242, 99, 90,173,246, 76,114,114,114, 67,141, 70, + 83, 64, 92,185, 19, 90, 50,153, 12,137,137,137,208,106,181,103, 74, 50,242, 60,117, 17,218,197,204,123, 78, 1,218,166, 99,199, +142,203,119,238,220, 25,177,107,215, 46, 28, 61,122, 20, 33, 33, 33, 88,176, 96,193,253,164,164,164,215, 41,165, 59,189,249,110, +249,242,229,171,235,116, 58, 28, 58,116, 8, 0,246, 3, 24, 48,108,216, 48,194,113, 28, 22, 45, 90,148, 7, 96,167,159,159,223, +166,141, 27, 55, 62, 87,179,102, 77,229,174, 93,187,114,142, 30, 61,186,199, 75,113,197, 11,130,240,128,176,114, 14, 83, 95, 95, + 95,111, 44, 88, 54, 63, 63,191,179,217,217,217,189,140, 70, 99,182, 74,165,242,205,206,206, 54, 59, 11, 43,145,159,101, 89,249, +149, 43, 87, 18, 0,196,248,249,249,157,133, 83, 87, 98,129, 4,198,178,173, 91,183,110,205,186,198, 65, 82, 82, 18, 18, 19, 19, + 97,181, 90, 81,183,110, 93, 34, 35, 54, 89,250,157,211,111, 75,197,203, 63, 83,160,137,121, 93,156,245,231,110,230,224,246,237, +219, 29,231, 12,195,192, 62,109,223,163, 24,218,185,115,103,145, 3,209, 93,186, 8, 61,154,194,197,231, 23, 45, 90,148,191, 29, +133,221,114,197, 48, 12,198,141, 27, 7,149, 74,133,169, 83,167, 98,220,184,113, 96, 89,214, 99, 23,161,179,112, 41, 59, 54,207, +185, 81,148,159, 41,236,227,157, 8, 33,206, 34,139,120, 43,218,138,178,222,121, 99,249,119,230, 20,223, 83,171,213,133, 14,112, +119,225, 36, 69,248,251,103, 66,200,141,136,136,136,131, 13, 27, 54,244, 59,126,252, 56,102,207,158,173, 48,155,205,165,119,237, +218,229,248,174,187,240, 50, 24, 12, 26, 41,231, 72,120, 28,214,171, 34,110,167,184,140,159, 34,206,221,117, 69,252,186, 62, 15, +167,107,206,188, 41, 46,245,152,243,117, 87, 81,229,250, 13,231,103, 82, 30,176, 96,121, 42, 36, 60, 9, 45,111, 44, 88,121,121, +121,191,111,219,182,173,126,223,190,125,217,162,186, 7, 13, 6, 3,194,194,194,112,238,220, 57, 46, 47, 47,239,119, 47, 44, 99, + 37, 38,176,220, 68,248,174,240,240,112,153,205,102, 67,197,138, 21, 17, 21, 21, 5,147,201,132,204,204, 76,153,183,226,138, 16, +162,168, 87,175,158, 12, 0, 50, 50, 50,128,252,233,164,149, 42, 85,170,132, 19, 39, 78, 32, 35, 35, 99, 51,128, 54,147, 38, 77, +170,253,194, 11, 47, 40,214,174, 93,155, 55,100,200,144,205, 54,155,109,170,151,214, 7, 11,199,113,229, 24,134,177,102,102,102, +222,115, 14,207,176,176,176, 64,157, 78, 71,146,146,146,108,222, 8,172, 90,181,106, 29,187,115,231, 14, 38, 79,158,156, 50,109, +218,180, 74, 57, 57, 57, 25, 89, 89, 89,156,179,200, 50,153, 76, 76,112,112,176,106,241,226,197, 26, 0,168, 85,171,214,177,194, + 4,150,193, 96, 40,165,213,254,221, 16, 54,155,205, 72, 76, 76, 68, 98, 98, 34,146,146,146,144,147,147,131,152,152, 24,228,229, +229,149,145,138,151,127, 76, 96, 21,232, 38,115,206,223,206, 21,120,113,242,186,179,112,233,218,181,171, 99,236,150,104, 17, 19, +143, 13, 27, 54,184, 14, 28,247, 74, 96, 45, 90,180, 8, 35, 71,142,132, 90,173,198,156, 57,115, 10,116, 17,186,138, 2, 65, 16, +136, 55,126, 47,247,129, 17,137,243, 3, 33,151,203, 17, 52, 36,169, 64, 87,156, 27,161,225,149, 59,167, 77,155, 86, 34, 93,132, +206,156,101,202,228,103,149,175,191,254, 26,189,122,245,194,254,253,251, 31,186,139, 48, 54, 54,246,135,173, 91,183,250,157, 63, +127, 30,217,217,217, 72, 73, 73,129,217,108, 70,124,124,124,161,189, 0,246,178, 92, 45,229, 28, 9, 79, 24,127, 62, 97,222, 71, +254, 30,235,161,226,246, 90, 96,121, 99,193, 50,155,205,115, 70,141, 26, 53,172, 77,155, 54,129,190,190,190, 72, 72, 72,120, 64, + 92,229,230,230,194,199,199, 7, 70,163, 17, 91,182,108,201, 54,155,205,115, 60,137, 2,155,205,134,208,208, 80,164,166,166, 66, + 40,100, 92, 52,195, 48,208,104, 52,200,205,205, 69, 97, 98,160,168,138,194,106,181,194,102,179,193,102,179,193,106,181,162,152, +203, 51,105,196, 5, 91, 13, 6, 3, 0, 24, 34, 35, 35,203,171,213,106,220,188,121, 19, 0,174, 0,104,217,190,125,123,121, 90, + 90, 26,125,243,205, 55, 15, 83, 74, 71,120, 88,205,222,178,111,223,190,114, 0,160,209,104, 46, 3, 64,124,124,188, 45, 51, 51, +179,128,101, 80,171,213,210,238,221,187, 71, 80, 74,177,111,223,190,114, 10,133,130,162,144, 53,171, 0,152, 54,111,222,124,222, +207,207,111,245,244,233,211,251,118,238,220,249, 92,141, 26, 53,202, 25, 12,134,100,163,209,104, 52,153, 76, 84, 38,147, 41, 2, + 2, 2,212, 59,118,236,184,118,248,240,225, 54,122,189,126,245,230,205,155,207, 3,112,107,105,211,233,116,241,121,121,121,101, +197, 56,117, 22, 87,137,137,137,160,148,226,198,141, 27,208,106,181,119,164,242,227, 31,109, 57, 62, 32,172,220,137, 45,111,197, +149,179, 32,216,177, 99, 71,145,107, 96,121,203,233, 44,134, 70,143, 30,141,249,243,231, 63, 96,193,154, 58, 53,191, 77, 50, 97, +194, 4,175,199, 96,137,214,170,196,249,129, 8, 31,153, 94,192,237, 0, 64, 68,247, 21,115, 73, 54,150,101, 49,121,242,228, 7, + 6,159, 59,119,225,121,217,149, 87,192,157,201,201,201, 96, 89, 22,129,129,129,232,215,175, 31,218,181,107,231,232,106, 44, 46, +239,197,139, 23, 15,126,240,193, 7, 53, 99, 99, 99, 49,101,202,148,116,127,127,127,223,183,222,122,139,205,204,204, 36, 69, 89, +176, 36,129, 37, 65,194, 35, 8, 44, 49, 99,121, 59,139,208, 93, 33, 73, 8,105,227,188, 86, 6,165, 52,139, 16,210,175,109,219, +182, 63,174, 91,183, 78, 83,190,124,121, 92,188,120, 17,233,233,233,176, 88, 44, 80, 40, 20,136,136,136, 64,102,102, 38,190,251, +238, 59, 99, 94, 94, 94, 63, 74,105, 86, 81,156, 0, 62,170, 87,175,222,146, 89,179,102,169,107,215,174,141,244,244,116,228,230, +230, 22, 88,117, 90,175,215, 67,163,209,224,216,177, 99,216,190,125,187, 17,192, 71, 30, 56,221,169, 56, 88,173, 86,135,208,242, + 36,176, 92, 56,117,162, 21, 39, 47, 47, 15, 0,184,210,165, 75,135, 1,192,141, 27, 55, 0,224,118, 76, 76,204,132, 10, 21, 42, +144, 85,171, 86, 81, 74,233, 46,119,226,202,133, 51,189,105,211,166, 25, 0,194, 45, 22,139, 2, 0,178,178,178,172,193,193,193, +161, 42,149, 74,208,104, 52,130, 90,173, 22, 18, 18, 18, 56,142,227, 20, 0,208,180,105, 83, 11,128, 68, 56,141,245,112,225, 20, + 0,100, 47, 93,186,244,179,254,253,251, 55,108,212,168, 81,236,208,161, 67,207,190,249,230,155, 76, 84, 84, 84, 64, 78, 78,142, +233,234,213,171, 25, 95,124,241, 69,206,145, 35, 71,218,200,229,242,219, 75,151, 46,253, 12, 64,182,253,221, 7, 56, 57,142,251, +125,215,174, 93,175,119,238,220,153,189,119,239, 30,146,146,146, 28,226, 42, 41, 41, 9, 85,171, 86,197,225,195,135,121,171,213, +186,171, 24,225, 89, 82,150, 27,137, 51,191,241, 65,197,188, 94,152,176, 18, 27, 81,222,114, 58,139,161, 94,189,122, 21,176, 90, + 41, 20, 10,108,220,184,209,109,185,225,102, 69,242, 54,174,235, 65,137,110,250,224,131, 15, 10,136,181,143, 63,254,184, 80,167, +121, 10, 79,145, 39,235,235,168,130,179, 8, 11,201,231, 69,185, 83, 44, 59,229,114, 57, 62,254,248, 99,175, 45, 88,112, 25,131, +229,142, 83,244,123,243,230,205,145,151,151,231, 16,176,133, 89,176, 60,133, 39,207,243, 35,231,207,159, 79,245,122,253, 11,217, +217,217,255,187,115,231,206,138,188,188,188,231,179,178,178,138,180, 96,153,205,102,149,148,143, 36,206,199,177, 22,214,127, 66, + 96,217, 43, 71,148, 42, 85,170,192,222, 86, 12,195, 20, 56,138, 51,142,192,158, 97,119, 16, 66,122, 52,110,220,248,251,145, 35, + 71,250,214,174, 93, 91, 94,182,108, 89, 24, 12, 6,220,188,121, 19,231,206,157,227, 54,111,222,156,157,151,151,247, 63, 74,233, + 14, 47,248, 86, 18, 66,182,183,111,223,126, 98,131, 6, 13, 6,127,242,201, 39,178,202,149, 43, 35, 43, 43, 11, 1, 1, 1, 8, + 13, 13,197,165, 75,151,176,101,203, 22, 62, 53, 53,117, 9,128, 73,148,210,148,226, 54,240,173, 86, 43, 94,121,229, 21, 8,130, +128,185,115,231, 58, 47,136,230, 13,172, 86,171,149, 2, 32,169,169,169, 0,144, 39, 10,174,171, 87,175, 2,192,157,178,101,203, +250, 0,192,174, 93,187, 8,128, 67,222,186,203,217,146, 85,181,106,213,155,174,133,162,104,185, 18,173, 94,240,188, 65,179,169, +119,239,222,201,121,121,121,237, 71,143, 30, 61,113,209,162, 69,125, 23, 45, 90,244,192, 67,122,189,126,245,236,217,179, 39,245, +238,221, 59,185, 48,235,149,221, 98, 55,225,181,215, 94,235,125,230,204, 25, 95,181, 90, 13,131,193,128,180,180, 52, 88,173, 86, +196,196,196, 32, 57, 57, 25, 43, 87,174,204, 49, 26,141,159, 74,217,241,159,129,179, 32, 40,204,138,229, 73, 92, 21,101,197,249, +249,231,159,221,174, 49, 85, 92, 78, 87,145,225,237,218, 84, 69, 53,134,196,229,101,220, 45,253, 80,156,114,205, 29, 47,203,178, +248,252,243,207, 29,139,173,186,179, 92, 21,199,130, 37,114, 6, 6, 6, 2, 0,196,173,141, 58,117,234,244,208,188,246,109,195, + 70, 56,125, 99,218,152, 49, 99, 62,171, 90,181,106,101, 0, 42,231, 48,144, 54, 85,144, 32,161,132, 4, 22,207,243,241, 85,170, + 84, 41, 80,176,121,218,100,212,102,179,197,123,153,169,183, 19, 66, 98,102,207,158, 61, 74,167,211,181,201,203,203,171,105, 47, + 48,206, 24, 12,134, 93,102,179,121, 94,113, 54,103,182, 11,166,225,132,144,185,237,219,183,159,218,170, 85,171,158,239,189,247, + 30,161,148, 98,241,226,197,244,250,245,235, 27, 0,124, 68, 41,189,254, 48,129, 20, 24, 24,120,254,187,239,190, 11,251,241,199, + 31, 97,179,217, 48,111,222, 60,248,250,250,158, 47,142,251, 88,150,253,190, 81,163, 70,125, 15, 31, 62,188,154, 82,122, 86,165, + 82,253,208,180,105,211,126,135, 14, 29, 90, 71, 41,189,192,178,236, 15, 13, 27, 54,236,119,236,216,177, 77,148,210,211,197,112, +158,195,146,197,113,238,123, 20,221, 89,174, 60, 32,123,224,192,129,214,129, 3, 7,190,215,187,119,239,101,127,254,249,231,243, +153,153,153, 53, 1,192,223,223,255, 76,253,250,245,143,173, 91,183,238,146,221,114,101,242,228,119, 66, 72,247,154, 53,107,110, +154, 50,101,138, 46, 54, 54,150,173, 88,177, 34,110,221,186,133,179,103,207,114,223,126,251,109,174,209,104,236, 74, 41,205,144, +178,227, 63, 39,176, 40,165,240,247,247, 47,208,120, 18,167,238, 23,183, 91,208,185, 66, 22,183,212,113,229, 45,140,211,195, 32, + 87, 0,128,143,143,143, 99, 81, 82,111,134, 38, 8, 66,209,235,169, 81, 74, 29,156,226,225,133,184,242, 56,227,207,190, 85,141, +215,156,222, 44,211,160,211,233, 96,179,217, 28,188, 94,204,228, 36,197,140,179,159, 1,252, 92,177, 98,197,171, 0, 42, 72,162, + 74,130,132,199, 32,176,210,211,211,235, 61,206, 15,219, 5,212, 36,251, 81, 82,156,215, 1,244, 38,132,204,250,227,143, 63,196, +254,130,201,158,246, 51,244,132,139, 23, 47,118,150,203,229, 95,173, 94,189,186, 1,165, 20,126,126,126, 71,110,221,186,245, 86, +113, 56, 56,142, 27, 76, 8,121, 87,156, 21,104, 54,155, 7, 19, 66,222,167,148, 26,156,238, 59,206,139,235,117, 0,102, 74,105, +100, 33,247,205,197, 16, 87, 14, 75, 22, 0,203,186,117,235,114, 1,156,194,223,235, 92,217,236,135, 9, 78,221,130, 30,226,101, + 55, 33,164,226,199, 31,127, 60, 77, 38,147,181, 54, 24, 12, 81, 58,157,238, 46,199,113,191,231,229,229,125, 68, 41, 77,147,178, +226, 63, 7,139,197,114,175, 74,149, 42,172,187,134, 83, 81, 21,120, 81, 13, 42,158,231,227, 43, 85,170,228,177, 81,230,134,243, + 94, 17,233,232,118, 76, 76, 12,227, 45,151, 8,171,213,154, 92,148, 59, 99, 98, 98, 80, 92, 78, 79,126, 47, 87,174,156, 91,191, +123, 16,130,247,138, 40, 63, 30,138,179,168,240, 44, 10, 70,163, 49, 35, 36, 36, 36,215,100, 50,201,205,102,179,156,227,184, 2, +230, 70,141, 70,147, 34,229, 28, 9, 18, 30, 82, 96,253,155, 97, 23, 84, 93, 74,144,207, 12,224,213, 18,224, 49,185,156, 27,138, + 58, 47, 38, 30,135, 5, 72, 0,144, 87, 66, 97,152, 10,224, 77, 41,203, 61,125, 72, 77, 77,125,161,164, 57,211,210,210, 74,188, +129,150,146,146,210,240, 49,248,189,222,127,149,179, 40,220,187,119,239, 5, 41,103, 72,144,240,104, 96,164, 32,144, 32, 65,130, + 4, 9, 18, 36, 72, 40, 89, 16, 0,109,220,221, 40,206,236, 0, 66, 72,155,226,126,216, 19,191,196, 41,113, 74,156, 18,167,196, + 41,113, 74,156,207, 30,167, 39,238,103,102,118, 34,165,244,177, 29, 0,218, 72,156, 18,167,196, 41,113, 74,156, 18,167,196, 41, +113,254,215, 14,169,139, 80,130, 4, 9, 18, 36, 72,144, 32,161,132, 33, 9, 44, 9, 18, 36, 72,144, 32, 65,130, 4, 73, 96, 73, +144, 32, 65,194,147, 1, 33, 36,224,105,230,147, 32, 65,130, 36,176, 36, 72,144, 32,225,223, 38,174,106, 0,152, 82,194,180, 83, +236,188, 18, 36,252, 39,242, 16, 33,164,166, 36,176, 36, 72,144, 32, 65,130, 88, 49,116, 44, 95,190,252,100, 0, 62, 37, 76,237, + 83,190,124,249,201,132,144,142, 82, 40, 75,120, 70,243,142,138, 16,242, 42,195, 48,199,106,212,168,113, 38, 54, 54,246, 52,195, + 48,135, 9, 33,189, 8, 33,236,127, 42, 44,156, 54, 69,222, 11, 0,148,210,230, 82, 18,145, 32, 65,194,127,180,114, 96, 1, 12, +238,219,183,111,151,233,211,167, 43, 75,149, 42,117,151, 82,218,191, 4,249, 87,221,189,123, 55,122,192,128, 1,185,187,119,239, +222, 1, 96,137,187,141,221, 37, 72,248, 23,230,157,178, 0, 6,251,248,248, 12,106,209,162, 69, 64,215,174, 93, 17, 20, 20, 4, +142,227,112,247,238, 93,108,221,186, 21,135, 14, 29, 74,176, 88, 44,243, 1,124, 77, 41,205, 44,132,231,153,209, 34,132, 82, 42, +110, 92,220,194,238,169,189, 82, 82,145, 32, 65,194,127,176,130,208, 3, 24, 63,103,206,156, 6,131, 7, 15, 46,103, 50,153,226, + 3, 2, 2,110,148,180,192,178, 90,173,109, 82, 82, 82,142, 79,157, 58, 21,139, 23, 47,190, 0, 32,174, 56,123,175, 74,144,240, + 20,230,157,113, 61,122,244,152, 26, 22, 22,198,212,168, 81, 3, 17, 17, 17, 48,155,205, 48, 26,141,160,148,130,101, 89, 80, 74, +145,149,149,133,125,251,246, 97,247,238,221,230,140,140,140,239, 0,204,163,148, 94,113,226,121,166,180,136, 67, 96, 21,119, 83, + 80, 9, 18, 36, 72,120,134, 42,136,114, 26,141,230,227, 45, 91,182, 84,111,210,164, 73,104, 78, 78,206, 13,155,205,102,136,140, +140,164,200,223,212,220, 29,178, 40,165, 35,220,112, 45, 0,224, 87,200, 59,122,171,213, 90, 63, 53, 53,245, 56, 0,108,220,184, + 17,227,199,143, 79, 51, 26,141,147, 41,165, 55,165,152,144,240, 47,205, 63,151, 47, 94,188, 88,137,231,121,164,166,166,194,108, + 54, 35, 47, 47,207, 33,176,100, 50, 25, 40,165,224,184,124, 99,173, 32, 8, 56,113,226, 4,118,237,218, 69,111,220,184,241, 9, +165,116,178, 40,176,158, 37, 45, 34, 9, 44, 9, 18, 36,252,215, 43,135,198,225,225,225,239,254,241,199, 31,101,203,148, 41,163, +207,205,205,189,198,113,156, 13, 0, 2, 2, 2, 98,101, 50,153,202,245, 29,158,231,205,106,181,250,128, 59,235, 22, 33,100,149, +201,100,106,226,238, 61,251,187, 92, 70, 70,198, 41,241,252,244,233,211, 24, 52,104,144, 53, 49, 49,113, 14,165,244,160, 20, 35, + 18,254,141, 2,235,212,169, 83,149,214,172, 89,131, 58,117,234,160, 90,181,106,200,205,205,117,136, 45,139,197, 2,155,205,246, +192,123,217,217,217,120,247,221,119,175, 80, 74, 43, 63,139, 2, 75, 28,112,246,153, 52, 6, 75,130, 4, 9,255,101, 36, 38, 38, +166,250,251,251,223, 23, 4,129,138,215, 50, 50, 50,206, 61, 12,215,195,190, 39, 65,194,191, 20, 54,139,197,130,122,245,234,225, +230,205,155, 56,113,226,132, 67,104,165,166,166, 34, 33, 33,161,192,195,199,142, 29,195,201,147, 39,209,172, 89, 51, 87,158,207, +158,185, 49, 88,118,229,216,220,238,169,189, 82, 90,145, 32, 65,194,127,172, 5, 94, 78,163,209,124, 28, 23, 23, 23,244,242,203, + 47, 59,174, 63,142, 46,194,132,132, 4, 71, 11, 93,234, 34,148,240,140,228,159,238,145,145,145,223, 14, 27, 54,204,175, 65,131, + 6,136,143,143,199,189,123,247,144,145,145,129,218,181,107, 35, 54, 54, 22,215,175, 95,199,246,237,219,113,242,228, 73,168, 84, + 42, 68, 71, 71,195,103,245, 26,124, 69,112,158, 82, 26,235,196,245,204,104, 17,135,192,146, 32, 65,130,132,255,120, 37,161, 7, + 48,126,200,144, 33,213, 62,250,232, 35, 16, 66, 16, 25, 25,153, 85,210,131,220, 19, 18, 18,252, 40,165,144, 6,185, 75,120,198, +242,143, 47,128, 49, 49, 49, 49,239, 15, 25, 50, 68, 85,189,122,117,196,199,199, 35, 37, 37, 5, 25, 25, 25, 56,114,228, 8, 0, + 32, 42, 42, 10, 81, 81, 81,184,116,233, 18, 14, 30, 60,152,157,155,155, 59,144, 82,250,227, 51, 25, 38,146,192,146, 32, 65,130, + 4, 71, 37,193, 2, 24,220,178,101,203,118,139, 23, 47, 70,165, 74,149, 74, 92, 96, 93,185,114,197,111,200,144, 33,144,150,105, +144,240,140,230,161, 80, 0, 19,170, 87,175, 62,120,208,160, 65,108,153, 50,101,112,239,222, 61,252,241,199, 31,168, 80,161, 2, +238,222,189,139,221,187,119, 91, 82, 82, 82,230, 2,152, 78, 41,205,122, 86,195,130,121,204, 1,221, 70,226,148, 56, 37, 78,137, +243,223,194, 73, 41,229, 40,165, 11,119,239,222,189,164, 99,199,142,194,227,112,103,199,142, 29,133,221,187,119, 47,161,148, 46, + 44, 74, 92, 73,113, 36,113,254, 27, 57, 41,165,201,148,210, 17,231,207,159,175,248,206, 59,239,124, 63,101,202, 20, 65, 16, 4, +132,134,134, 98,253,250,245,194,218,181,107,191, 77, 73, 73, 41, 79, 41, 29,247, 44,139, 43,224,239, 65,238, 18, 36, 72,144, 32, +225,239, 74,226, 87, 66, 72, 60,128,193, 37, 76,157,123,253,250,245,207, 41,165,103,165, 80,150,240,140,231,161, 91, 0,250, 19, + 66,102,158, 56,113,226, 35, 0, 20,192, 20, 74,233,133,255, 74, 24, 72, 2, 75,130, 4, 9, 18,220, 87, 16,103, 9, 33, 19, 74, +152,118, 2,165, 52, 67, 10, 93, 9,255,161,124,116, 14, 64,159,255,162,223,165,189, 8, 37, 72,144, 32,161,240,202, 33,227,105, +230,147, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18, 36,129, 37, 65,130, 4, 9, 18, 36, 72,144, 32,225,225, 64, 0, + 20, 54, 19, 96,151,215, 36, 15, 49, 67,193, 19,191,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,207, 30,167, 39,238,226,232, +143,167, 26,148, 82,143, 7,236,235,101, 21,247, 0,208,230, 97,222,147, 56, 37, 78,137, 83,226,148, 56,255,189,156,246,198, 59, + 65,126, 47, 9, 35,158, 63,205,126,127,152,122,238, 73,249,253,191,194,249,172, 29,172, 7,117,233, 8, 36, 66,136, 0, 64,160, + 37,176, 50, 41, 33, 68,140,128, 18,225,147,240, 24, 76,155,249,113, 68,254,214,225, 82, 60, 73,144, 32,161, 88,101,135,204,169, +146,229, 1,240,132, 16, 60,109,101, 73, 73,214,115,143,195,239,255,101,206,127, 59,216,162, 2, 74, 38,147,237, 8, 14, 14,110, +153,154,154, 42,216,175, 67,169, 84,130, 97, 24,200,229,114, 99, 78, 78,142,254, 33, 34,225,155,176,176,176, 1,105,105,105, 2, +195, 48, 80,171,213, 32,132, 56, 56, 51, 51, 51,245,255,116,160,148, 45, 91, 54,195,104, 52,250,184, 94, 87,171,213,166,219,183, +111,251,254, 23, 10, 72,133, 66,209, 35, 48, 48,208, 63, 37, 37,133, 50, 12, 3,133, 66, 1,153, 76, 6,251,127, 46, 51, 51,115, +185,183,124,129,129,129,199, 2, 3, 3,253,197,247, 9, 33, 72, 75, 75,203, 76, 74, 74,122, 30, 0, 52, 26,205, 65,157, 78, 23, +196,178, 44,100, 50, 25,100, 50, 25,242,242,242,210, 82, 83, 83, 27, 75,213,213,191, 19, 27, 54,108,144,181,143,122,163, 2, 75, +141,181, 24,134,250, 9, 2,201,226,136,230,244,246,123,223, 92,243,230,253,158, 61,123,242,255,112, 30,104,108,111, 89, 28, 44, + 33, 62,231,253, 9, 77, 0, 82, 1, 92, 3,176,158, 82,106,252,167,227, 75,165, 82,205, 13, 11, 11, 27,148,155,155,155, 71, 8, +161,132, 16,228, 87, 3,120,224,151,231,249,248,212,212,212,122, 30, 42, 89,185, 82,169,156, 29, 30, 30,254, 90, 94, 94, 94,158, +157,143, 18, 66, 16, 17, 17, 81,128, 15, 0,108, 54, 91,124, 74, 74, 74, 61,111,220, 26, 26, 26,186, 84,163,209,252, 47, 47, 47, +207, 96, 23, 68,206, 61, 50,206,149,248,245,148,148,148,166,158, 4,129, 82,169,156, 23, 22, 22,246,186,221,239, 32,132,208,144, +144,144, 71,246,123, 88, 88,216,107, 6,131,161,128,223, 67, 67, 67,221,114, 22,230,119,119,156,206,238, 36,132, 32, 36, 36,228, +145,221,249, 52,114, 62,179, 2, 11, 0, 67, 8,217,220,184,113,227, 22,123,247,238,101, 46, 94,188,200, 84,173, 90, 21, 60,207, + 67, 16,242,211,115,116,116,180,246, 33, 10,153, 21, 77,155, 54,125,101,223,190,125,204,230,205,155,153,250,245,235,131, 16, 2, +158,231,193,243, 60,106,212,168,161,121,196, 66,204,135,101,217,119,149, 74,101,115,142,227,170, 1,128, 92, 46,191, 96, 54,155, +247,114, 28, 55,135, 82,154,235, 13,143,213,106,213, 38, 39, 39, 63, 16, 54, 49, 49, 49,202,135,117,155, 94,175, 63,196, 48, 76, +140, 35,128,237, 66,195, 93, 38, 22,127, 41,165, 55, 82, 82, 82, 26, 21,198, 25, 16, 16,224,224, 44,140,195,245,154, 32, 8, 55, +146,147,147, 27,121, 16, 87, 47, 55,109,218,212,111,215,174, 93,228,238,221,187, 68,163,209, 64, 16, 4,240, 60, 15,155,205,134, +234,213,171, 23,107,253, 52,127,127,127,253,184,113,227, 42,116,232,208, 1, 27, 55,110,196,171,175,190,138, 38, 77,154, 92, 17, +239,235,116,186,160,243,231,207, 87, 10, 12, 12, 68, 94, 94, 30,178,178,178,208,182,109,219,127,125,230,106, 80,167,212, 20,194, +144, 64, 71,225,207,241,233, 71, 78,221,123,228,117,149,252,253,253, 79, 42,149,202, 48, 49, 94, 25,134,113, 27,215,206,215, 76, + 38, 83, 82,106,106,106, 29, 15,249,167, 44,128, 46, 50,153,172, 34,203,178, 85, 0,148,229, 56, 46, 12, 0, 20, 10, 69,146, 76, + 38,187,101,179,217, 46, 89, 44,150,171, 0,126,182, 47, 36,232, 22,237,163,222,168, 64,184,188,158, 57,102,161,163,182,252,244, +202,121,215,199, 93,214,170,242,126,109, 31,245,198, 6,111, 69,214, 63, 40,174,202,133,135,135,191,107,255,127,191,132, 54, 97, +246, 51,153, 76, 77,100, 50,153,138,227, 56, 36, 37, 37,165, 46, 89,178,228,246,130, 5, 11, 90, 18, 66,102,121, 90,120,180, 97, +189,210,199, 25,134,137,134, 93, 62, 8,148,143, 63,124,252,110,137, 84, 76, 50,153,108,222, 75, 47,189,244,250,134, 13, 27,180, + 39, 78,156,208, 86,171, 86,205, 81, 62, 9,130, 0, 87,195, 67,185,114,229,138, 12, 62, 0, 44,195, 48,115,123,246,236,217,119, +213,170, 85,218,219,183,111,107, 35, 35, 35, 29,156,206,226, 77, 68,100,100,164, 87,110, 13, 10, 10,250,166, 67,135, 14,253, 87, +174, 92, 41,223,178,101,139, 38, 56, 56, 24, 65, 65, 65, 80, 40, 20, 15, 60,219,184,113, 99, 79, 43,241, 51, 12,195,204,235,214, +173, 91,255,181,107,215,106,143, 30, 61,170,173, 81,163, 6,100, 50,217, 35,251,189,123,247,238,125,215,172, 89,163, 61,115,230, +140,182, 98,197,138, 96, 24, 6, 12,195, 60,192,199, 48, 12, 74,149, 42,229, 21,103,215,174, 93,251,174, 91,183, 78,123,242,228, + 73,109,149, 42, 85, 28,225,233,212, 61, 87,108,119, 62,229,156,207,158,192,178,155, 75, 87, 53,110,220,184,253,222,189,123,101, + 0,112,242,228, 73,164,167,167, 35, 42, 42, 10, 62, 62, 62, 80,169, 84, 48,153, 76,180,152,133,214, 55,118,113, 37, 7,128, 77, +255,235,142, 27,114, 96, 68,178, 5, 10,133, 2,215,175, 95,135, 76, 38,163,143, 80, 40, 54,211,235,245, 43,127,252,241,199,128, + 58,117,234, 48, 41, 41, 41,136,137,137, 65,122,122,250,243,251,246,237,171,251,198, 27,111,188, 65, 8,121,149, 82,186,207, 91, +206, 95,127,253, 21, 58,157, 14, 90,173, 22, 58,157, 14, 22,139,133, 60,116, 64,179,108,244,173, 91,183, 66,125,124,124, 32, 8, +130,227,112,233,191,118, 64, 16, 4, 84,170, 84,201,234,161, 96,140,190,125,251,118,168, 70,163, 1,165,180, 0, 31,207,243, 80, +169, 84,206, 45, 5,240, 60,143,152,152, 24,171, 39,203,149, 40,174, 0, 96,245,234,213, 8, 15, 15, 71,104,104, 40,116, 58, 29, + 52, 26, 77,129, 10,221,203, 2, 28,237,219,183,199,167,159,126,138,233,211,167, 99,204,152, 49, 5, 10, 88,185, 92,142,192,192, + 64,108,219,182, 13,122,189, 30,101,202,148,129, 92, 46,255,247, 91, 2, 25, 18,120,248,248, 29,135, 69,246,197, 86, 85,217, 6, +117,203, 44,178,199, 48, 24, 6, 16,132,252, 42,147, 16, 80,206, 38,100,252,121,250,222, 68, 47,194, 51,242,246,237,219,161, 42, +149,202, 43,119,240, 60,143,168,168, 40,153,135,252,211, 49, 54, 54,118,211,208,161, 67, 21, 21, 43, 86, 36, 10,133, 2, 44,203, +130,101, 89, 49, 61,150,161,148,150, 17, 4,161, 69, 82, 82, 18, 93,176, 96,193, 76, 66,200, 75,148,210, 95,221,166,119,106,172, +149, 99, 22, 58,238,255, 11,207,247,108,243, 1,182,173, 31,247,124,211,218, 2,124,181,198,107,118,203,205,211, 42,174,244, 26, +141,230,227,253,251,247, 87,202,201,201,201,110,210,164,201,199,132,144,119, 74, 98, 51,230,140,140,140,115,226,127,165, 82,137, + 81,163, 70,161, 67,135, 14,254,109,219,182, 29, 77, 8,121,139, 82,106, 45, 92, 9,200,162, 15, 30,187, 25, 42,158,119,109, 95, + 83,209,168,126,153,164,252,134,152,235,211, 20, 2, 47,196, 31,253, 43,190,158, 23,254,157,217,163, 71,143,126, 27, 54,108,240, + 1,128,197,139, 23,163, 71,143, 30, 8, 12, 12,132, 86,171,133, 66,161,128, 92, 46, 47,240,235,193, 34, 36, 3, 48,179, 79,159, + 62, 61, 87,173, 90,229, 11, 0,171, 86,173, 66,247,238,221, 17, 20, 20, 4, 95, 95, 95, 40,149, 74,200,100,178, 98,135, 95, 80, + 80,208, 55, 77,158,127,126,224,202,149, 43, 1, 0, 31,189,243, 14, 58,188,240, 2,124,180, 26,104, 53, 74,136, 97,161,148,201, +241,226,136,145,158,252,205, 0,152,213,163, 71,143,222,107,215,174,245, 5,128, 19, 39, 78, 32, 57, 57, 25, 97, 97, 97,208,104, + 52, 80, 42,149, 14, 63, 19, 66,160,209,104,188,242,123,143, 30, 61,122,174, 89,179,198, 23, 0, 86,172, 88,129,246,237,219, 59, +252,174, 82,169,160, 80, 40, 10, 28,174, 98,211, 29,231, 75, 47,189,212,115,221,186,117,190, 0,176,124,249,114,180,105,211, 6, + 1, 1, 1,142,240, 20,185,138, 19, 71, 79, 51,231, 51, 41,176,196,177, 81, 97, 97, 97,189,247,239,223,207, 56,137, 3,168, 84, + 42,168, 84, 42, 40,149, 74, 71, 55, 97, 49, 10, 45, 18, 22, 22, 54, 96,223,190,125,142,151, 44,244, 1, 19,117,177, 43,110, 39, +254, 54, 45, 91,182, 92,179,117,235, 86,181, 66,161,128,209,104,196,185,115,231,224,239,239, 15,165, 82,137,110,221,186,201, 26, + 55,110, 28,212,162, 69,139,141,132,144,190,222,204, 80,160,148,194,199,199,167,128,192,122,212, 46,100,141, 70,131, 45, 91,182, + 64, 38,147,185, 45,184,156,255,135,134,134,122,227,111,168, 84, 42, 28, 58,116, 8, 50,153, 12,114,185, 28, 44,203, 66, 46,151, +227,151, 95,126,193,123,239,189,135,212,212, 84, 16, 66, 32,151,203,225,235,235,177,119,147, 4, 6, 6,250,139,226, 74, 20, 63, + 26,141, 6,114,185,156,176, 44, 75,196, 46, 60, 66, 8,241,182, 79,157, 97, 24,124,255,253,247,152, 49, 99, 6,198,142, 29,139, +165, 75,151,162, 86,173, 90,206,226, 19,217,217,217, 8, 8, 8, 64, 64, 64, 0,212,106,245, 67,167,133,167, 9,174,161, 51,123, +206,124, 45, 4,138,252, 65, 30, 2, 32, 0, 20, 20, 2, 21,144,116,239, 26, 62,249,244,115,175,107, 29,149, 74,133,131, 7, 15, + 58, 68, 16,203,178, 32,132,192, 89, 24,137, 71,120,120,184, 71, 62,133, 66,241,217, 79, 63,253,164,252,254,251,239,177,118,237, + 90, 71,218,210,233,116,240,247,247, 71, 80, 80,144,227,136,142,142, 38,223,126,251,173,162, 86,173, 90,159, 1,248,213,125,156, + 83, 63,109,249,233,149,123,182,249, 0, 0,208,243, 3,138,140, 43, 83,159, 99, 50, 39,250, 61,197,226,138, 5, 48,126,203,150, + 45,213, 35, 35, 35,213, 58,157,238,118, 92, 92, 92,208,168, 81,163,198, 19, 66, 38, 60,226,166,204, 89,162,149, 70,173, 86,171, +155, 55,111,174,156, 54,109, 26, 42, 84,168,128, 55,222,120, 35,112,241,226,197,221, 0,172, 47,170, 60,114,198,130,133,139,252, + 41,205, 79, 63, 84,160, 5,126,211,147,111,225,157,209,159,120,229,168, 82,165, 74, 13,222,184,113,163,143,179, 37,201,185,242, +119, 46,163,196,163, 48, 65, 96,183, 98, 48,165, 75,151, 30,248,195, 15, 63, 56, 56,131,131,131, 29,229, 18,203,178, 96, 24, 6, +251,247,239, 71,220,103,227, 17, 16, 18,137,249, 11, 23,123,116,103,104,104,232,210,142, 29, 59,254,111,197,138, 21,142,107, 53, +203,151, 71,167,198, 47, 32, 52, 88,143,224,128,252,178,141, 10, 4,167, 47,221,244, 88, 31, 1, 96, 74,149, 42,245,198,250,245, +235,125,156, 27,130,162, 95, 1, 32, 47, 47,207, 97,181,183, 88, 44,168, 87,175,158, 87,126,119,230, 20,173,107,162, 88,115, 45, +235,197, 6, 76, 81,156,165, 74,149, 26, 40, 10, 96, 0, 8, 12, 12, 44,192, 33,151,203,177,126,219,202, 7,234,134, 71,229, 44, +110,188,187,114,222,188,121, 19,211,166, 77, 43, 16,239,162, 53, 43, 42, 42, 10, 11, 22, 44, 40,138,211, 29,234, 3, 8,113, 58, +183, 0, 80, 58,253,166, 0,248,211,205,115,226,117, 57,128,231,236,247,120, 0, 57, 0,252,221,240, 21,198,147,138,252,237,126, + 66, 92,158,119,253, 78, 65,129, 69, 8, 17,115,111, 75, 0, 7, 83, 83, 83,133,139, 23, 47, 50, 39, 78,156,128, 92, 46, 71,104, +104, 40,234,215,175, 47,118,159, 65, 46,151, 67,167,211, 17,127,127,255, 36,177,194, 21, 3,207,185, 47,221, 73,200, 48,233,233, +233,194,206,157, 59,153, 85, 47,181,131,133, 2,181, 63,142, 67,251,206,157,177, 61, 74, 9, 25,128,231, 47,166, 66,171,213,178, +114,185,220, 38, 70,130,200,233, 60, 54,203, 85, 28, 17, 66,124,117, 58,221,183, 63,255,252,179,154, 97, 24,228,228,228, 64, 16, + 4, 52,105,210, 4, 12,195,224,236,217,179,248,232,163,143,176,105,211, 38,252,244,211, 79,154, 58,117,234,124, 75, 8,169, 70, + 41,205,113, 42,188,118,185, 75,156,190,190,190,208,106,181, 14,129, 37,250,217,217,212, 45, 62, 79, 41,189,151,154,154, 90,183, + 40, 78,158,231,209,189,123,119, 16, 66, 32,147,201, 10, 20, 58,206,191, 10,133, 2,103,207,158,125, 32,241,185, 19,134,162, 95, + 1, 64,171,213,194,199,199, 7,123,246,236,113,220,175, 93,187, 54, 44, 22, 11,130,131,131,113,225,194, 5,119, 5,119, 1,206, +148,148, 20,154,144,144, 64, 86,173, 90, 5,185, 92,142,160,160, 32,104,181, 90,178,114,229,202,241, 10,133, 34,218,100, 50, 9, + 22,139, 5, 74,165,114,190,104,205, 98, 89,214,144,149,149, 21, 84, 24,167, 76, 38,195,208,161, 67,241,254,251,239, 99,233,210, +165,120,251,237,183, 31,176,112,153, 76, 38, 4, 7, 7, 59, 68,150, 55,126,127,116, 1,244,152, 57, 5,138,115, 39,183,227,252, +153, 93, 16,120, 1,188, 64, 65, 41, 15,129, 3, 78,236, 60, 82,233,254,141,132, 40, 10, 10,216, 59, 50, 84, 89,185, 92,139, 96, + 85, 21, 0,155,247,164,154,231,122, 74,159, 44,203,194,102,179,225,231,159,127,198,181,107,215,176, 99,199, 14, 24,141, 70, 71, + 56, 54,108,216, 16, 3, 7, 14,116, 43,176, 92, 57, 41,165, 43,238,222,189, 91,187, 73,147, 38, 36, 51, 51, 19,153,153,153, 48, + 26,141,224,121, 30, 28,199,129,101, 89,168,213,106,104, 52, 26,132,133,133,193,100, 50, 81,179,217,188,162, 48, 78, 65, 32, 89, +121,215,199, 93,222,182,126,220,243, 61, 63,160,216, 48,131,160, 66,105, 85,222,239,199,125, 7,110, 62, 48,166, 45, 0, 42,216, + 75, 29, 6,160, 54, 94, 72,125,127,252, 23,195,159,120, 28, 21,196,224, 57,115,230, 52,104,210,164, 73,104,118,118,246, 69, 65, + 16,232,203, 47,191,140,203,151, 47, 87, 91,188,120,241, 96, 0, 11,139,203, 73, 8,105,105,191, 63,194,185,130,223,182,109,219, + 75, 0, 6, 44, 91,182, 12, 61,122,244,192,226,197,139, 99, 93, 5,150, 51, 39,165, 20,183,174,236,199,173,171, 7, 32, 8,212, +201, 10,238,254, 63,245,210,157, 6,131,193,244,215, 95,127,249, 44, 91,182, 12,161,161,161, 40, 87,174, 28,180, 90, 45,212,106, +117,129,202,213,185,194,245,148, 55,141, 70,163,233,214,173, 91, 62,107,214,172, 65, 80, 80, 16,202,150, 45, 11,173, 86, 11,165, + 82,233,104, 8,172, 90,181, 10,171, 63,237,135, 91,151,206,160,123,167,182, 30,221,169,213,106,255,183, 98,197,138, 2, 38,143, +176,128, 0,176,114, 6, 50, 57, 65, 64,235,151,242,173,132,127,252, 88,232,234,142, 46,156, 36, 39, 39,199,116,244,232, 81,159, +227,199,143, 67, 16, 4,148, 45, 91, 22,121,121,121,208,235,245, 14,255,239,220,185, 19,221,186,117,195,247,223,127,143,134, 13, + 27,122,244,123,110,110,174,233,204,153, 51, 62, 63,252,240, 3, 2, 3, 3, 81,170, 84, 41,135,223,197, 67, 46,151, 67, 38,147, + 33, 38, 38, 6, 89, 89, 89,240,241,241,241, 24, 71, 39, 78,156,240,249,225,135, 31, 16, 16, 16,128,232,232,104,135,133, 77, 20, + 69, 51, 22,125, 90,128, 67, 77, 34, 30,153,179,184,241,238,202,249,210, 75, 47,161, 66,133, 10,208,235,245,208,233,116, 14,238, +162, 56,157,180, 72, 11, 74,233, 94,151, 40, 12, 33,132,108,117,250,126,103, 66,200, 86,231,223,194,158,179,255,109, 54,126,252, +248,122,211,167, 79,159,214,176, 97,195, 53,135, 14, 29, 90, 93, 24, 95, 97, 60,227,199,143,143,157, 62,125,250, 52,231,231,221, +124,231, 65, 11, 22,165,148,216, 61,199, 2, 64,213,170, 85,145,158,158, 14,149, 74,133,250,245,235, 35, 53, 53, 21, 62, 62, 62, + 80, 40, 20,160,148, 98,248,240,225,178, 49, 99,198,132, 50, 12, 3,142,227, 28, 5,126, 33,125,233, 2,195, 48,104,212,168, 17, +206,217,123,126,218,119,238,140,232,232,104,136,131, 56,212,106, 53,134, 15, 31, 78,222,123,239, 61, 86,180, 94, 80, 74, 97, 52, + 26, 17, 17, 17,161, 41,162,235,237,157,141, 27, 55,250, 41,149, 74,228,228,228, 56,186,200,100, 50, 25, 46, 94,188,136, 89,179, +102,225,181,215, 94,195,157, 59,119, 16, 25, 25,137,247,223,127,223,103,250,244,233,239, 0,152,228,169, 32,246,241,241,113,136, + 43,173, 86,139,119,222,121,135,109,220,184,113,168,143,143, 15,124,125,125, 33,118,247,241, 60,143,242,229,203,123,148,226,130, + 32, 96,251,246,237, 96, 89,214,163, 5,203,158,240,188,226, 60,122,244,168, 67,156, 57,183,138, 8, 33, 56,119,238,156, 67,204, +121,193, 73, 25,134,129, 78,167, 67,120,120, 56, 52, 26, 13,180, 90, 45, 89,179,102,205,132,114,229,202, 69,188,247,222,123, 76, +118,118, 54,211,168, 81, 35,244,232,209,131, 21, 4, 1, 86,171, 21,177,177,177, 30, 45,109,123,247,238,197,146, 37, 75,240,246, +219,111,187,181, 96,137,131, 32,245,250,127,124,142, 67,137, 65, 0, 96,229,108,200,203, 53, 58,186,112,121,158,199,153, 61,167, + 42,221, 56,117, 37,118,235,154,239,229, 0, 96,218,243,163,243,107, 17, 61, 22,173,171,220, 34, 80,113,116, 79,186,245,168, 39, +203,224,200,145, 35, 49,113,226, 68,244,233,211, 7, 59,119,238,196, 71, 31,125,132, 55,222,120,163,128, 5,203, 27,216,108,182, +175, 94,125,245,213,183, 55,108,216, 80,229,131, 15, 62, 96, 68, 11,150, 86,171, 21,199,112,193,108, 54,195,104, 52,226,210,165, + 75,194,155,111,190,121,217, 98,177,124, 85, 24, 31, 71, 52,167,181,170,188, 95,203, 71, 51, 21, 12, 55, 63,247,109,242, 66, 89, + 35,209,212,205,122,169,114, 27,218,113, 64,217, 0, 80, 10, 42, 0, 2, 5,204,102, 3,134, 15, 31, 37,251, 39,227,138, 16,210, +177,111,223,190, 93, 6, 15, 30, 92, 46, 39, 39,231, 58,199,113, 54,241,222, 71, 31,125,132, 43, 87,174,180, 35,132,220, 42,172, + 75,180, 16,206,232,242,229,203,143,226,121,158, 18, 66,174, 81, 74,227,237,183,230, 3,240,219,187, 55,191,254,136,142,142, 6, +128, 88, 66,200, 42, 0, 89,206, 98,204,217, 28,106,179,113, 48, 26,205, 69, 10, 43,241,156, 82,193, 91, 55,210, 42, 85,170,160, + 75,151, 46,144,203,229,142, 70,154,115,247,152,171,208, 42,170,252, 0, 32, 16, 66, 16, 25, 25,137,142, 29, 59, 66,161, 80, 20, +224, 20, 43,212,142, 29, 59, 98,228,164,143,241,213,200, 86, 88,242,106, 37,180,153,146, 84,164, 59,243,242,242,114,119,239,222, +173,121,255,237,183,241, 92,197,138, 8,214,235, 81, 58, 44, 4, 26,149, 18, 10,103, 55, 17,207, 70,117,154, 95,217, 9, 50,153, + 12, 53,106,212, 64, 82, 82, 18,110,222,188,137,155, 55,111,130, 97, 24, 52,105,210,196, 97, 9,190,122,245, 42, 38, 77,154, 4, +179,217,236,181,223, 43, 86,172,136, 86,173, 90, 65,169, 84, 66,171,213, 22,232, 26, 20,195, 52, 39, 39, 7, 21, 42, 84,192,230, +205,155, 81,185,114,101,143,156, 85,171, 86, 69,243,230,205, 11,132,167, 70,163,113,212, 27, 0,112,247,104,174,227, 27, 81, 81, + 81,197,226,220,113,236, 14,150,237,220, 13,179, 69, 64,118,158,173,192, 11, 17,193,122, 28,248,225, 3,175,252, 46,114,126,245, +213, 87,200,202,202,114,212, 61,162,177, 68, 52, 78,148, 42, 85, 10, 75,150, 44, 41, 44,126, 68, 45, 66, 10,185,223,217,203,134, +148,248,156,152,184, 84,211,167, 79,159,230,250,190, 39, 62,231,251, 46,239, 91, 92, 68, 89, 82,145, 93,132, 98,189, 32,102,130, +168,168, 40,136,227, 60,196, 12,226, 40, 64, 57, 14,155, 54,109, 66,104,104,168,227,240,243,243, 43, 52, 65,139,227,132, 70,166, +228, 15, 51,216, 22,169,192, 45, 0,157, 82,168, 99,156, 8,207,243,216,184,113, 35,156, 5,140,175,175,111,145,221, 69, 74,165, +178, 69,253,250,245, 25,179,217,252,128,184,154, 62,125, 58,250,246,237,139,202,149, 43, 67, 16, 4,228,230,230,162,101,203,150, +242,249,243,231,183, 40,142,192,210,106,243,199,243, 91, 44, 22,236,217,179, 7, 1, 1, 1, 8, 10, 10, 66, 96, 96, 32,124,125, +125,197,153,144,212,147,200,160,148,162,123,247,238,142,138,207,217,106,229, 42,182, 14, 29, 58,228, 85,215, 27,165, 20, 47,188, +240, 2,116, 58, 29,124,124,124,224,227,227,131,237,219,183, 59,158,121,254,249,231, 33, 8, 2, 66, 67, 67,113,248,240,225, 34, +187, 57, 41,165, 84,161, 80, 56,158,151,203,229,100,229,202,149,227, 99, 98, 98, 34, 70,143, 30,205,200,100, 50,156, 60,121, 18, +231,207,159, 71,217,178,101,189, 30,147,149,153,153,121,127,252,248,241,252,248,241,227, 1, 0,177,177,177,200,204,204, 76, 22, +239,103,103,103,167,181,107,215,174,192,184,140,212,212,212,180,127,189,192, 18, 4,112, 86, 14,121, 38, 19,114,115,242, 28,214, +160,228,132, 36,255, 15,222,123, 87, 62,107,248,235, 0,128,247,230, 46, 68,206,210,191, 11,176, 31,223,239, 27,250,210,172, 53, +227, 0,116,243, 80,233,192,108, 54,163, 76,153, 50, 56,118,236, 24,114,114,114,208,166, 77,155, 2, 22, 82, 49, 76, 61,153,226, + 41,165, 22, 66, 72,227,206,157, 59,255, 57,103,206,156,242,213,170, 85, 35, 6,131, 1,121,121,121,112,254, 61,115,230, 12, 93, +189,122,245,141,188,188,188, 70,148, 82, 75, 97,124,219,239,125,115,173,125,212, 27, 27,126, 63, 41,235, 28, 90,225,178,254, 94, + 70,121, 46,237,158,202,144,109,188,100,226,233,121, 80, 30,224, 33,128,114, 2,120,123,247,214, 63, 40,174,106,148, 47, 95,254, +173,249,243,231,135,153, 76,166,123, 54,155,205,224,154,119, 23, 47, 94,140,142, 29, 59,190, 69, 8,137,247, 52, 32,221,254,142, +210,223,223,255,163, 61,123,246,196,222,191,127, 63,177,113,227,198,227, 8, 33,163, 41,165,150, 42, 85,170,248, 29, 63,126,188, +137, 92, 46, 87,102,102,102,158,213,235,245,176, 88, 44, 53,108, 54,155,165, 94,189,122, 7,220,198,143, 0,216,108, 54, 24,141, +102,100,101,229,192, 98,181,217,203, 76, 1, 60,207,217,127, 5,112,246,114, 84,169, 96,125,235,214,140,200,165,148,130, 33, 36, +243,248,153,251,165, 10, 43,151, 10,235,202,242,198,122,229, 6,188, 56,107, 44, 40, 40, 8,114,185, 28,223,127,255, 61, 78, 31, +220, 14,165,140,130,231,108,224,108, 86,240, 54, 11,228, 50, 25,126, 63,121, 19,109,171,250,122, 19, 71, 52, 56, 56, 24,157, 26, + 54, 68,231,134, 13,243,167,171,177, 44,124, 84, 42,104, 21,234,124,203, 21, 0,202, 51,128,119, 73, 73, 16,221, 25, 22, 22,134, +227,199,143, 99,228,200,145,152, 49, 99, 6, 52, 26,141, 99, 54,243,197,139, 23,177,110,221, 58,180,109,219,182,216,126, 23, 45, +118,227,198,141, 67, 66, 66, 2,230,206,157,139,186,117,235, 66, 46,151, 35, 51, 51, 19,141, 26, 53, 66, 82, 82,146, 87,156,206, +221,120, 74,165,178,128,181, 73, 20,126,197,141, 35,103,206,215,187, 71, 96,203,193,213, 32, 32, 56,242,195,187, 5,234,162,197, +107,247, 23,155,243,147, 79, 62, 41,224, 78,111,172, 87,197,200,175, 91,189, 17, 89, 78,207,157, 16,141,171,227,198,141,251,144, + 16,178,117,220,184,113, 31,198,197,197,157,243,134,175,144,251,191,216,127, 59, 57, 93, 59,225, 81, 96, 81, 74,169, 82,169,132, + 32, 8, 5, 68,149,235,128, 90,209,228,231,108, 82,244, 36, 6, 4, 65,112, 36, 6,215,230,170, 76, 38,195,225,195,135,113,248, +240,225, 2,215,151, 45, 91, 86,100, 5,206,113, 92, 53, 95, 95,223, 2,214, 43,133, 66,129,113,227,198,161,127,255,254, 14,113, +165, 80, 40,176,124,249,114,212,171, 87, 15, 22,139,165,154,135,241, 40,121,225,225,225,140, 88, 0,233,116, 58, 50,114,228, 72, + 25,199,113,142, 48, 17, 15,113,108,154,167,196, 34,206, 74,217,177, 99,135, 87, 22, 44,111,199, 32, 81, 74,113,234,212,169, 2, +162, 77,156, 5, 3, 0,167, 78,157,114,140,207,242,134, 83, 38,147,129,231,121,104, 52, 26,162, 80, 40,136, 66,161,136, 22,197, +149, 76, 38,115,196,183,243,152, 60, 79,126,191,119,239, 94,203,162,238, 39, 39, 39, 63,179,203, 49, 88,109, 54, 24,243, 44,200, +201, 53,226,179,184,239,242, 47,126,134,163, 0,142, 54, 30, 60, 18, 67,219,183,109,229,210,207,239, 77, 1,227,168, 20, 55,110, +220, 8,185, 92,142,205,155, 55, 67,175,215,163,107,215,174,208,235,245,248,224,131, 15,208,167, 79, 31,175, 45, 88,246,180,148, + 69, 8,105,252,206, 59,239,252,249,249,231,159,151, 46, 85,170, 20, 44, 22, 11,172, 86, 43, 44, 22, 11,174, 93,187,134,213,171, + 87,223,205,203,203,107, 76, 41,205,242,196,183,253,222, 55,215, 54,237,123, 47,161, 77,159, 30,198,139, 73,219,144,152,152, 6, +142,187, 7,129,231, 96,229,242,103, 36,243, 28, 7,142,227,161, 80,200,244,159, 79,125,119,167, 0, 10,134, 33,150,158, 61,123, +118,120, 66,226, 42, 0,192,224,235,215,175,231, 4, 5, 5,157,177, 95,214, 39, 36, 36, 16, 0,136,140,140,164, 0,156, 7,184, + 15,182,143,199,242,180,105,243,224,159,127,254,185,145,191,191,191,133, 97,152,140,143, 62,250,168,212,167,159,126, 58, 24,192, +188, 75,151, 46,125,247,202, 43,175,248, 57,183,224,211,210,210, 78, 12, 30, 60, 24,151, 46, 93,250,206,189,137,192,110,193, 50, +153,144,146,150,129, 65,131, 39, 56, 76, 7, 0, 45, 32, 42, 40, 40,134,140,128, 26, 0, 82,147,174,225,245, 65, 35, 85,158, 26, + 2,238, 42,192, 98,140,193,113,182, 12, 57,210,168,143,143, 79,126, 55,219,230,213,248,229,139,193, 0,111, 5,181, 25, 1,107, + 30, 96,205,133, 96,201, 3, 81,104, 0,155,209,155,120,162, 62, 62, 62,240,209,104, 16,234,239,159,191,136,163, 76, 6,185,156, +133, 96, 3, 8, 79, 28, 66, 84,224,189, 74,235, 52, 56, 56, 24,130, 32, 64,163,209,224,214,173, 91, 24, 58,116, 40,172, 86, 43, +186,119,239, 14,139,197, 2,147,201, 4,163,209,136,152,152, 24,228,229,229,121,229,119,177,156, 23,123,123,222,125,247, 93,212, +171, 87, 15,147, 38, 77,194,216,177, 99, 17, 19, 19,131, 33, 67,134, 96,245,234,213,136,141,141, 45,146,215, 57, 60, 69, 78, 49, + 94, 92,187,242, 0, 20, 59,142, 92, 57,243,199,253,227,129,120, 31,245,106,235, 98,115,198,197,197, 33, 37, 37,229, 1,203,149, +248, 63, 42, 42, 10,139, 23, 47,126,168, 60,235,100, 45, 10,115,115,187,147, 27,203, 83,125,228,143,141, 50,199,197,197,157,139, +139,139,235, 76, 8,217, 26, 23, 23,215,185, 8, 11, 86, 39, 15, 22,174, 78,200, 31,115, 85, 36, 88,151,190,207, 22,206,150, 17, +177, 2, 21, 43,114,231,194, 93,171,213, 98,211,166, 77, 16,103,116, 56, 63, 83,148,192,250, 53,196,110, 34,182, 91,174,156,207, +187,116,233,130,114,229,202, 21,176, 94,105, 52,154, 34, 19,141, 32, 8,184,125,251, 54,206,158, 61,139,134, 13, 27, 34, 43, 43, + 11,114,134,193,123,103,206,160,250,171,175,194, 98,183,200, 40,149, 74,188,253,246,219, 94, 13, 84,191,121,243,102,128,243,121, +112,112,112,124,211,166, 77,163,142, 29, 59,230, 24,248,110,239, 62,115, 8, 13,111,196, 11,165, 20, 47,191,252,114, 1,171,149, +179,184,114, 62,182,109,219,230, 85, 23, 33,165, 20, 77,155, 54,117, 88,175,124,125,125,241,211, 79, 63, 57,226,170, 89,179,102, +249,227, 21,194,194,188,226, 20,253, 97, 31,216, 14,147,201, 36,228,228,228, 48, 39, 78,156,128, 82,169,116, 88,236, 52, 26, 13, +212,106, 53, 84, 42,213, 67,205, 8,250, 47,128, 82, 1, 22,155, 13, 70,163, 17,185,185,249, 43,132, 92, 59,187,177,160, 0, 51, + 63,252,228, 52,209, 74,149,147,147,131,223,127,255, 29, 63,254,248, 35,234,214,173,251,192, 32,119,111, 44, 88, 78,233, 41,133, + 16,210,100,204,152, 49, 71,166, 76,153, 18, 25, 24, 24, 8,171,213,138, 59,119,238,224,219,111,191, 77,200,203,203,107, 66, 41, + 77,241, 62, 16, 0,155,141,131, 41,207,140,172,236, 28,124, 58,117,121,161, 73, 15, 0,210,147, 47,161, 75,215, 94,202, 39, 23, + 71, 52, 3,192, 80,151,202,124, 21,254, 94,179, 42,155, 82,218,191,152,162,173,229,140, 25, 51,250,212,173, 91,215, 55, 43, 43, +235, 2, 0,188,249,230,155, 56,121,242,100,107, 66,200, 57, 74,233,110, 66, 72,108,157, 58,117, 90,191,249,230,155, 0,128,175, +191,254, 26, 91,183,110,253,157, 82,186,187,176,180, 36,118, 17,230,230, 26,161,247,143,192,189,155,123, 61,186, 69, 33, 51,129, + 10,130,199,134,159, 59,171,149,115,249, 84,140,244, 67,197, 49,127, 98, 69,221,225,229, 87,209, 97,232,116,104,229,192,180,215, + 27, 35,198, 31,128, 38, 16,138,102, 31,128,248,151,201,127,113,232,207, 94,241,143, 93,178, 4, 39,175,228,175,240, 18, 29, 18, +130, 49,125,250,128,218,128, 67,231,207, 99,237,238,221,232,211,178, 37,180,106,181,215, 13, 21,177,241,125,237,218, 53, 28, 58, +116, 8, 85,171, 86,197,213,171, 87, 11, 44, 39, 65, 41,245,202,255,148, 82, 42, 78, 78, 82,169, 84,144,203,229, 72, 76, 76, 68, +231,206,157, 29, 13,252,189,123,247, 98,204,152, 49, 24, 56,112, 32, 90,180,104,225,118, 92,172, 43,103, 72, 72,136,195,112,224, + 58, 1,193,185,219,182, 56,113,228,142, 83,196,195,198,187, 51,231,212,169, 83,221, 78,148,240,134,211, 89,139, 20,129, 19, 46, +214, 35,136,227,161, 68, 65,228,122, 14, 32, 64,188, 54,110,220,184, 15,189,125,207,249, 92,180,128,121,219, 85,201,138,125,158, +238, 42, 89,209, 92,236, 14, 58,157, 14,195,134, 13,195,196,137, 19, 17, 28, 28,236,113,236,140,168, 92,139,194,207, 63, 63,152, +201, 54,111,222,236,169,139,240,162,159,159, 95,189, 86,173, 90, 33, 43, 43, 11,119,239,222,133, 78,167, 67,245, 47,190,192,153, +161, 67,241,220,146, 37, 96, 90,181,114, 44,146,122,230,204, 25,104, 52,154,139,197,181, 24,248,250,250, 34, 32, 32,192,209,167, + 46, 10, 45, 39, 11, 22,245, 34, 17,226,215, 95,127,117,219, 74,124,152, 49, 88, 98,230, 63,114,228, 72,129,241, 87,206,130,231, +200,145, 35, 14, 11,150,248,154, 55, 93, 91, 26,141,134,138,124, 90,173, 22,129,129,129, 80,169, 84,208,104, 52, 5,196,149, 55, +214, 59, 79, 11,137,106, 52,154, 99, 58,157,206, 95,188, 47,151,203,145,147,147,147,153,150,150,246,252,191,186,139, 16, 20,156, +149,131,209,104, 66,110, 78,201,175, 37, 41, 78, 56,217,180,105, 19, 94,120,225,133, 7,196,149, 24,214, 15, 33, 58,226, 9, 33, + 45,230,205,155,119,116,246,236,217, 1,185,185,185,248,238,187,239,178,114,115,115, 91, 56,141, 35,242,142, 75,160,176, 89,173, +200, 51,153, 97,200,205, 15,131,235,231, 54, 62,211,194,186, 74,149, 42,175, 15, 25, 50, 36, 36, 39, 39,231,186, 32,252,109, 79, +153, 61,123, 54,174, 95,191,254, 58,128,221, 0,150, 76,157, 58,181, 98,205,154, 53, 75, 1,192,212,169, 83,239, 2, 88, 82, 84, +217, 97,181,119, 17,230,230,230, 91, 61, 76,134,212,146, 73,167,118,145, 81,216,152,171,135,233,202, 17,103, 46,203,100, 50, 12, + 31, 62, 28,103, 78,159, 70,235,200,108,196,132,251,130,102,223,131,162,213, 39, 56,149,162,193,172, 57,191, 22,155,123,157,211, + 36,158, 89,235,214,185,189,119,189, 91,183, 98,249,253,242,229,203,208,104, 52,224,121,254,129,250,166,184,254,119, 22, 46,115, +230,204,193,152, 49, 99,176,124,249,114,156, 57,115, 6,207, 61,247, 28,218,180,105,131,228,228,100,156, 62,125, 26,102,179,217, +107,119, 58,143,139,187,124,227, 60,118, 29,250, 13,183,227,111, 34, 33,241,238, 67,199,187, 51,167,171,192,218,180,235, 47,188, +220,182,206, 67,113,126,242,201, 39, 72, 78, 78, 46, 96,185,114,158, 24, 86,152, 5,203, 85,139,184, 32,213,101,172,147,120,110, +113, 17, 59,174,231,174,207, 3, 64, 50, 0,153,135,247, 92,207, 83,227,226,226,246,136,150, 47, 59,175,172,176,241, 87,110,187, + 8, 69, 49, 36,102, 16, 87,203,148,248, 95,167,211,193,215,215, 23,190,190,190,208,235,245, 30, 45, 67,162,192,106,122, 35,167, +192, 88, 46,209,146, 5, 0, 3, 7, 14,124,192,130,229,188, 32,167, 59,152,205,230,189,123,247,238,173,221,165, 75, 23,217,197, +139, 23, 33,147,201, 32, 8, 2, 44, 13, 27,226,185, 37, 75,112,246,221,119,209,252,214, 45,152,172, 86,168,213,106,108,223,190, +221,154,151,151,183,183,184,229,133,179,192,210,233,116,240,243,243,115, 8, 12,111, 84,185,152,105,139, 26,223, 32, 30,206,131, +252,189,201,204, 98, 69,234, 60,238,134, 16, 2,163,209,232, 24,172,233,141,149,209,185,139,208, 57,227, 49, 12, 3,127,127,127, + 71,161, 33, 90,176,188,181,222,121, 90, 72, 84,171,213,234, 47, 93,186, 84, 65, 92, 70, 34, 53, 53, 21,173, 90,181,186,242,175, +175,105, 5,192,202,241,200, 53,154,144,107,204, 43,201,110, 45, 0,192,247,223,127,143,107,215,174,193,106,181, 34, 46, 46,238, + 1, 97, 85,156, 65,238,110,210,213,181, 58,117,234, 8, 47,190,248, 34,142, 28, 57, 2,149, 74,101,163,148, 22,123,253, 42,129, + 10,176,114, 28, 76, 70, 35,114, 13,134,255,132,229,242,210,165, 75, 89,190,190,190,135, 1,248, 92,185,114, 69,166,211,233, 80, +190,124,121,152, 76,166, 44, 0, 89,246,240,181, 16, 66,166,191,253,246,219,115, 1,192,102,179, 77, 47,106, 76, 27,165, 20, 54, +206, 46,214, 75, 48, 28,197,180, 84, 88,153,244, 48,203,165, 56, 87,168,130, 32,224,173, 55,223, 68,155,200,108,188, 84, 55, 4, +134,251, 87,160,245, 11, 1,241, 47,139, 89,115,126,197,185, 27, 94, 15,181,164, 0,208,190, 89, 55,212,170,250,224,242, 94, 77, + 90,231,183,197, 14,252,126, 12, 73,169, 9,197,246,187,193, 96, 40,212, 82,229,173, 5, 75,228, 20,151, 75,145,203,229,168, 93, +187, 54, 42, 85,170,132, 61,123,246,160, 78,157, 58,184,122,245, 42,174, 94,189,138, 91,183,110,225,204,153, 51,200,200,200, 40, +118, 28,253,180, 99, 45, 50,114,210,161, 84, 40,145,158,153,138,219,247,110, 34, 44, 40,252,145,227,221,209, 64,232,244, 41, 0, + 32, 50,196,175, 88, 2,203,153,243,243,207, 63,127, 64,180,151,192,210, 59,199, 60,156, 23,247,253,199, 14,182, 16,171,144, 49, + 48, 48, 80,227,220,127,202, 48, 12,252,252,252,200,140, 25, 51,100, 12,195,192,215,215, 23,126,126,126, 16,205,130,158,160, 84, + 42,141,101,203,150,213,136, 9, 80,204,128,122,189, 94, 54, 99,198, 12,178,108,217,178, 66,173, 90, 30,198, 96,205,238,223,191, +255, 27,241,241,241, 1,161,161,161,184,127,255, 62,148, 74,101,126,166,104,217, 18, 77,111,220,128, 53,127, 76, 17, 46, 95,190, +140,175,190,250,202, 96, 54,155,103, 23, 55,160,124,124,124, 16, 20, 20,228,232, 26, 20, 45, 56, 78, 98,209,171,161,149, 69,153, +226,197, 22,223,195,116, 21,185,138,172,193,131, 7, 23, 16, 91,222, 66,161, 80,112,226, 74,237, 12,195,192,106,181,162, 78,157, + 58, 72, 78, 78,118,100, 22,103,203,157, 55, 2,203,211, 66,162, 44,203,194, 98,177,160, 89,179,102, 32,132, 96,225,194,133,207, + 70,183,163, 32, 16, 31,159, 32, 68, 70, 86, 70, 72,168, 9,130, 80,114,187,191,112, 28,135, 33, 67,134, 20,176, 88,137, 51, 21, +197, 46,126, 74, 41,108, 54,219, 67, 47,218, 42,230,235, 71, 89,255,141, 2,142,174, 45,131,193,244,175,139,194,232,232,104,189, +189,203,208, 21,238,103,251,225,239, 37, 25, 8, 33, 83,226,227,227,107, 86,169, 82, 5,205,155, 55,199,182,109,219, 54, 3,248, +209,197, 82,248,165,248,191,232,184,176,135,163,201, 12,131,161,228,173,161, 69, 53,244, 30, 69,184, 77,156,248, 49,218, 68,100, +162,251,115,126, 88,177,245, 32,250,213,214, 0, 22, 85,177,249, 68,183, 4, 69,149, 67,185, 26, 13, 30,184,175,246,203,239,154, + 43, 87,163, 1,100,119,175, 22,219,239,206,110,118,179,116,192, 35,133,231,160, 65,131,240,193, 7, 31,160, 93,187,118,184,122, +245, 42,246,237,219,135,171, 87,175, 98,228,200,145,136,141,141,197,115,207, 61, 87, 44,206, 45,187, 54, 32, 59, 55, 11, 12, 97, +144,158,149, 6,147,217,136,177, 67, 38, 62,114,188,139,184,185, 43, 14, 0,176,113,231,201,135,230,252,240,195, 15,145,152,152, + 88,192,114,245, 40,227,174,254,173,112, 43,176,210,210,210,220,246,247,133,132,132, 36,181,109,219, 54,244,254,253,251,240,241, +241,241, 40,174, 8, 33,109,196,181, 50, 18, 19, 19,221,114,250,250,250, 90,219,182,109, 43,143,136,136, 40, 48,123, 80,167,211, + 61,144,185, 92, 57,237, 5, 83, 14, 33,228,173,198,141, 27,175,216,182,109,155,182, 82,165, 74,200,206,206, 6,165, 20,203,151, + 47,199,240,225,195,161, 86,171,113,249,242,101,116,237,218, 53, 47, 47, 47,239, 45,231, 53,176,220,113, 22,214, 34, 19, 87,177, +119, 35,174,138,244,187,115, 38,157, 55,111, 30,166, 77,155,134, 15, 63,252,176,200,136, 89,186,116, 41,224,210,157,231,142,147, + 82,138, 89,179,102,149, 24,103, 90, 90,218,114, 23,235,211,194,151, 94,122,137,189,123,247,110, 1, 81,229,124,184, 41,144, 10, +112,122, 90, 72, 84, 38,147, 33, 44, 44, 12, 83,166, 76, 65, 80, 80, 16,194,195,195, 31,176,188,120,138,163,135,172, 4, 30, 43, + 39, 79,133, 19,159, 79,255,184,201,119,171,182,200, 85, 74,224,240,190,141,200,206, 72, 44,104,129,181,254, 61, 37, 90, 89,167, + 53, 44, 39,127,247,202,157,102,179, 25, 51,103,206,196,167,159,126,138, 79, 63,253,212,155,120,127, 36,191,123, 35,178,220,114, + 10,148,104,117, 1, 80,235, 34, 81, 61, 54, 0, 66, 49,215,234,252,135,226, 93, 72, 72, 72, 64,100,100, 36,174, 94,189, 90, 67, + 38,147, 21, 80, 4, 60,207,155,213,106,245, 1, 47, 56,207,110,218,180,169,230,132, 9, 19, 48,109,218, 52, 0, 24,176,119,239, +222, 87, 8, 33, 38, 79, 34,205,149, 83,160,148,104,180,254, 80,235, 34, 80,189,134, 63, 4,129, 43, 17,191,139,149,159,171,245, +170,152, 11, 73,187, 45,235, 0,224,207,223, 55, 99,226,187, 53,176,252,151,163,152,127, 12,168,229,159,140,234, 33, 41, 16, 82, + 46,226,253,126,245, 48,235,135,227, 0,128,125,123, 61,198, 81,145,235, 26,155,140,214, 71,242,187,179,165,202,249, 59,158,198, + 96,185,227, 20, 27,135, 57, 57, 57,200,204,204,196,138, 21, 43,240,250,235,175, 35, 57, 57, 25,183,110,221,194,149, 43, 87,176, +102,205, 26,199,236,244,226,198,209,123,111,126,132, 9,179, 70,131,130,162, 74,133,234, 24, 55,244, 83,212,175,213,240,145,227, +221, 21,158,172, 87, 69,113,206,155, 55,239,161,210,210,127, 66, 96, 21,213,138, 96, 24, 6,193,193,193,142,196,225,156,240, 30, +166,165, 43,147,201,192,113,156, 99,108,143,120, 0, 64,151, 46, 93,240,243,207, 63,123, 51, 51, 98, 27, 33,228,127,213,170, 85, +251,246,179,207, 62,243,105,222,188, 57, 27, 25, 25,137,250,245,235,227,242,229,203,248,229,151, 95,108,139, 22, 45, 50,228,229, +229, 13,164,148,238,124,152,114, 73,220,122,198,249, 40, 78, 43,199,106,181,222,189,122,245,106,196,172, 89,179,100, 12,195, 96, +238,220,185,142,204, 40, 46,212,234,140,125,251,246,113,130, 32, 20,217, 37, 99,179,217,238, 94,189,122, 53,226,139, 47,190,144, + 17, 66, 28,156, 12,195,192,121, 99,229,226,112,186, 19,151,226,132, 7,119,135, 59,183,187,139,227,162, 22, 18,101, 89, 22,151, + 47, 95,198,196,137, 19, 65, 8,193,198,141,207,198, 24,157, 51, 23, 83,151, 61, 87, 61, 52,160, 75,135, 38, 53, 65, 8,172,150, + 7,123,128,124, 50,114, 29,226,234,165, 47,214,226,199,247,250,120, 35,118,174, 29, 56,112, 32,112,230,204,153,172, 76, 38,195, +156, 57,115, 10, 44,246,235, 26,239,251,247,239,231, 30,166,123, 79,204,207, 86,171, 21, 70,227,195, 89, 77, 40,165,135,226,166, + 78,104,187,242,251, 95,229,132, 88,112,120,239, 70,100,101,186,159,154,174,148,179, 88,182, 98, 19,167,144,203,238,254,195, 81, + 55,191,103,207,158, 19, 54,108,216,192, 2, 56,247, 8, 60,155,191,249,230,155, 14,189,122,245, 10,172, 88,177, 34,190,251,238, + 59,133,191,191,127, 93, 66, 8,113, 39,210, 60,132,227,230,233, 83, 39,188,182,226,135, 95,149, 12,177,226,240,190,141,200,114, + 17,235, 15, 90,163,229,248,102,249, 38,171, 66, 33,191,228,169, 92,119,182, 94,149,100,133,216,181,255, 80,188, 52,111, 62,202, +215,111,143,233, 51,218,224,155,169,189, 48,251, 69, 5,172,235,251,161, 86,207,149, 88, 61,169, 35, 0, 32,242, 27, 47,173, 35, +172, 2,119,220, 88,168, 50,179,212,118, 81, 83, 60, 43,169,232,247,162,202,240,226, 90,176, 24,134, 65,185,114,229, 80,190,124, +121, 52,110,220, 24,117,234,212, 65,203,150, 45,113,250,244,105,156, 62,125, 26, 35, 71,142, 44, 84, 92,121, 19, 71, 45, 26,181, +197,209,166,151, 30, 57,110, 92,227,189, 36,224, 77, 90, 26, 50,100, 8, 0,252, 39,172, 89,236,195, 4,158,152, 32, 31,117,235, + 24,145,211, 98,177, 56,186,222,156,215, 85, 18, 7,189,123, 57, 67,111, 39, 33, 36,246,227,143, 63,126, 87,173, 86,183,204,203, +203,171,108,183,192, 92, 54,155,205,187,141, 70,227, 28, 74,105,230,163,184,213,121, 89, 6,119, 78, 40,234,221,140,140,140,246, +237,219,183,223,201,178,108, 57,215,141,120,221,101, 96, 65, 16,110, 37, 37, 37, 21, 57, 85, 61, 45, 45,173,125,187,118,237,220, +114,186, 43, 24,188,225,116, 23, 63,130, 32, 20, 42,174,188, 41,128, 60, 45, 36,202,178, 44,116, 58, 29,126,250,233, 39, 4, 7, + 7, 63, 83, 25,236,212,249,228,153, 69,221,111, 17,172,218, 11, 32,228,165, 47,214,222,217,147,106, 41,211, 34, 88,121,251,199, +247, 95, 41, 93,212, 59,169,169,169,237, 94,127,253,245,223, 88,150, 45,231, 26,254,238,226,130,227,184,155,137,137,137,197, 94, +246,128, 82,138, 75,151, 46, 9,131, 6, 13, 74, 77, 73, 73,233,245, 48,254, 31, 55,113,254,236,105,159, 13, 15,122,177,109,131, +250, 96, 0, 75,225,131,122, 41, 1, 40, 43,151,221, 29,243,225,220, 55,255,201, 56,163,148,158, 36,132, 76,169, 95,191,254, 72, + 20,186, 46,120,254, 88, 42, 15, 60, 86, 66,200,236, 14, 29, 58,188, 63, 98,196, 8,255,118,237,218, 89,163,162,162, 78, 56, 91, +231,189, 79, 71, 73,111, 63, 87, 45, 36,250,197, 54, 47,180, 7, 33,212, 98, 49,123,104, 24,129,130, 82,170, 80,200, 47, 29, 59, +149, 80,203,147,117,222,190, 99, 70,137,119,205, 15, 27, 54, 12,195,134, 13,115,164,167,133, 11,155, 98,195,217, 3,232, 89, 43, + 30,230,175,154,128,232, 75,123,221,208, 3,128,143, 62, 30, 84,146,150,204, 2,147,175, 74,106, 12,150, 76, 38, 67,106,106, 42, + 46, 95,190,140,164,164, 36,228,229,229,225,194,133, 11,176, 90,173,200,200,200, 64,141, 26, 53, 30,218,157, 37, 21, 71,255, 36, +231,127,169,155,176, 88, 2,139,227,184,120, 79,187,158,219,108,182, 98,205, 50,146,203,229,166, 74,149, 42, 17,119,179, 13,196, +255, 58,157,206,232,101,193,152, 9, 96, 34,128,137,246,253,166,144,158,158,254,200, 42,144,231,249,132, 50,101,202,200, 10, 19, + 46,246,176, 73,242,224, 54, 3,128,134, 37, 92, 17,148, 56,167,155,248, 49, 84,173, 90,213, 49,150,203,117, 77, 19,251, 38,168, + 69,142,186,245,180,144,168,193, 96,184,223,190,125,123,222,249,190,243, 66,164,207, 52, 8,189,221,241,149, 55,202,236, 73,181, +148, 1, 0, 81,100,129,210,219, 69,196,187, 17, 64,243,199,237,180, 27, 55,110, 88, 94,120,225,133,239,115,114,114,134, 82, 74, + 31,122,148,254,135,159, 44,252,240,223, 22, 45,148,210,147, 0, 94, 43, 1,158,179,132,144,193, 51,103,206,236, 53,115,230,204, + 10, 0,130, 1,168,189, 21,105, 5, 68,214,133,148, 18, 95, 27,140,227,184,248,242,229,203, 23,203, 82,227,169,140,183,217,108, + 69,214, 19,231,224,135, 15,143, 0,249,219,184,165,121,197,105, 50,153,210, 27, 54,108, 40, 47,166,223,146,189,245,123, 68, 68, + 4, 34, 35, 35, 29,191, 34, 92,175,123,114, 39,199,113,241,209,209,209, 8, 14, 14, 46,116,133,118,215, 49, 87,222,112,150,116, + 28, 21,197, 25, 25,185,178,196, 57, 75, 74, 47, 60,211, 2, 75,220, 99,176, 36,145,148,148,244, 88,246, 70,161, 37, 97, 94,251, +219, 82, 84, 31,255, 81,164,165,165, 5, 61, 42,135,167,133, 68,147,146,146, 90,254, 87,195,119, 79,138,101,192, 3,215,236, 98, +235,159,134,193, 96, 40, 77, 41,125,168,145,249, 61,123,246,228, 33,193, 89, 16, 47,127, 26,221,150,154,154, 90,226,101,250,227, +168, 39,210,211,211,107,254, 87,253,254, 56,220,249,111,225,252,183,131,145,130, 64,130, 4, 9,133, 8, 3, 73, 36, 73,144, 32, + 65,194, 67,130, 0,104, 83, 72,225,234,245,204, 29, 66, 72,155,135, 40,188,119, 73,156, 18,167,196, 41,113, 74,156, 18,167,196, +249,223,226,244,196, 93,210, 51,135,255,201, 86,234, 99, 59, 0,180,145, 56, 37, 78,137, 83,226,148, 56, 37, 78,137, 83,226,252, +175, 29, 82, 23,161, 4, 9, 18, 36, 72,144, 32, 65, 66, 9, 67, 18, 88, 18, 36, 72,144, 32, 65,130, 4, 9,146,192,146, 32, 65, +130, 4, 9, 18, 36, 72,144, 4,150, 4, 9, 18, 36, 72,144, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18, 36, 60, 60, + 72, 9,174,199, 41, 65,130, 4, 9, 18, 36, 72,144, 32, 1,246,149,220, 9, 33, 14,149, 69, 41, 37, 82,176, 72,144, 32, 65,130, + 4, 9, 18,158, 36,158, 53, 45,194, 74,194, 74,130, 4, 9, 18, 36, 72,144,240, 52,224, 89,210, 34,140, 59,229, 40, 65,130, 4, + 9, 18, 36, 72,144,240,164,241, 44,105, 17,230, 89, 84,141, 18, 36, 72,144, 32, 65,130,132,127, 31,158, 89, 11,150,100,197,146, + 32, 65,130, 4, 9, 18, 36,252, 83,120,150,180,136, 52,139, 80,130, 4, 9, 18, 36, 72,144, 32,161,132, 33,173,131, 37, 65,130, + 4, 9, 18, 36, 72,144,240,111, 18, 88,132,144, 54, 18,167,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,146,192,146, 32, 65, +130, 4, 9, 18, 36, 72,144, 32, 9, 44, 9, 18, 36, 72,144, 32, 65,130, 4, 73, 96, 73,144, 32, 65,130, 4, 9, 18, 36, 72, 2, + 75,130, 4, 9, 18, 36, 72,144, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18,254, 33, 16, 0,110,103, 2, 80, 74,119, +121, 77,242, 16,179, 9, 60,241, 75,156, 18,167,196, 41,113, 74,156, 18,167,196,249,236,113,122,226, 46,142,254,120,170, 65, 41, +125,108, 7,128, 54, 18,167,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,255,181, 67,234, 34,148,224,169,133,193, 18, 66,216, +135,189,255,164, 56, 37, 72,144, 32, 65,130,132,167, 9,108, 33, 21, 92, 69, 0, 31, 2,240,115,186,124,140, 82, 26,231,242,220, + 15, 0,180, 78,151, 12, 0, 38, 81, 74,175,122,241,109,133,157, 95,101, 63, 4, 0, 38, 0,102, 0, 57, 0,108, 82,244,252,227, +226,170, 33,128,206,246,255, 91, 41,165,135,139,115,255, 73,113, 62, 41, 68, 70, 70,106, 2, 2, 2,218,157, 60,121, 82,121,225, +194, 5,236,223,191,159, 46, 91,182,204,154,145,145,177, 35, 33, 33,193, 40,165,152,103, 34,205,183, 7, 48,206,126, 58,157, 82, +186,253, 17,249,136, 86,171, 29,169,211,233, 58,170, 84,170, 72,142,227, 72, 94, 94, 94,130,193, 96,216,201,113,220, 23,148, 82, +225, 33, 56,235, 7, 7, 7, 15,142,141,141,173,116,227,198,141,187,119,238,220, 89, 5, 96, 59,128,246,165, 75,151,238, 31, 19, + 19, 83,234,220,185,115, 87, 82, 83, 83,151, 80, 74,255,252,167,220, 41, 65,130, 36,176,220, 99, 34,165,180,159, 75, 6,124,224, +161, 86,173, 90,117,221,177, 99,135, 86, 16, 4,136,135, 70,163,225, 0, 12,240,240,221,160, 67,135, 14,149, 25, 58,116,232, 75, + 9, 9, 9,245,114,114,114,158, 7, 0,173, 86,123, 52, 52, 52,244,207,121,243,230,173,105,215,174, 93,188, 93,104, 21,203, 50, + 34,151,203, 95, 15, 8, 8,232,200,113, 92, 29, 74, 41,228,114,249,201,140,140,140,237, 54,155,237, 27, 74,169,237, 33, 10, 51, + 37,203,178,195, 84, 42, 85,123,142,227,106, 2, 0,203,178,103,204,102,243,118,142,227,190,164,148, 90, 30,130, 83,173, 84, 42, +135,233,245,250,182, 22,139,165, 38, 0, 40,149,202, 51,217,217,217, 59, 45, 22,203,151,148, 82,211, 83, 80,209,176, 0, 58, 83, + 74,229, 0, 32,147,201,186, 53,108,216,176, 12, 33, 68, 32,132, 80, 74, 41, 97, 24,166, 54,207,243,140,253,249,206,132,144, 63, + 41,165, 92,113, 56, 95,120,225,133, 82, 44,203, 82, 74, 41,161,148, 50, 12,195,212, 42, 14,103, 73, 33, 36, 36,100,154, 32, 8, +145, 69, 61,227,231,231, 87,239,228,201,147, 85,214,173, 91,199,127,245,213, 87,153, 3, 7, 14,244, 25, 58,116, 40,187,112,225, +194, 47, 1,140,114,125, 62, 56, 56,120, 54,195, 48,193,222,124, 95, 16,132,212,212,212,212,209, 82,145,244,143, 99,220,162, 93, + 57,205, 40, 5,134,181,245,101,236,194,229,161, 17, 21, 21,181,226,181,215, 94,123,165,102,205,154, 44,165, 20, 54,155, 13,102, +179,185,202,225,195,135, 91,108,220,184,177, 30,128, 94,197,204,151,157,199,141, 27,247,245,164, 73,147, 66,228,114, 57,177,217, +108, 13,214,173, 91,247,226,224,193,131, 79, 45, 89,178,228,185,222,189,123,251,138,215, 63,249,228,147, 14,132,144,119, 41,165, +107,158,180, 59, 37, 72,144, 80,184,192,210,217, 51,115, 18,128, 99,162, 5,203,245,161, 63,254,248, 99, 11,203,178,162, 5,235, +121,131,193, 16,230, 98,245,114,135,178,253,251,247,111,184, 97,195,134,105,189,123,247, 78,212,106,181,149,122,244,232,145, 67, + 8,145,173, 91,183,174,118,249,242,229, 53, 93,186,116,233,223,170, 85,171,247,126,251,237,183,253, 0, 82,188, 44,120,170, 7, + 6, 6,110,154, 57,115,102,153,246,237,219, 43,130,131,131, 65, 41, 69, 66, 66, 66,212, 47,191,252,242,226,103,159,125,246, 30, + 33,164, 59,165,244,124,113, 90,138, 26,141,102,195,103,159,125, 22,241,226,139, 47,178,225,225,225, 48,153, 76,184,112,225, 66, +155,237,219,183, 55, 91,186,116,233, 40, 66, 72, 79,111, 91,137,118,206,231,253,252,252, 54,126,247,193, 7, 97, 13, 94,127,157, + 13, 12, 12, 4,165, 20, 41, 41, 41,109, 14,172, 92,217, 98,200,204,153,163, 8, 33, 47, 83, 74,143, 61, 77, 9, 69,169, 84, 50, +171, 86,173,122, 78,169, 84, 2, 0, 44, 22, 11, 98, 99, 99,201,163,112,202,229,114,230,139, 47,190,168,195,178, 44,172, 86,171, +144,147,147, 67,123,244,232,241,143,116, 91, 19, 66,162, 19, 18, 18,252, 20, 10,133,219,251, 60,207,163, 89,179,102,229, 20, 10, + 5,190,248,226, 11, 91,106,106,106,237, 5, 11, 22,156, 92,189,122,117,240,151, 95,126,217,211,157,192, 98, 24, 38, 56, 62, 62, +222, 45, 39,207,243,176, 90,173,224, 56, 14, 22,139, 5,213,170, 85,147, 74,163,167, 3,101, 0,224,215,211, 38, 0, 8,124, 84, + 50,157, 78, 87,181,111,223,190,108, 74, 74, 10,228,114, 57,172, 86, 43, 18, 19, 19, 17, 27, 27, 43,251,254,251,239, 43, 23,151, +175, 74,149, 42,131,227,226,226, 66,127,253,245, 87,235,247,223,127,111,110,211,166,141, 98,224,192,129,250,102,205,154, 53,141, +142,142,102,190,253,246, 91,243,174, 93,187,172,255,251,223,255, 84,211,166, 77, 11,253,237,183,223, 94, 1,176,230, 73,187, 83, +130, 4, 9,133, 11, 44, 17,199, 40,165,221, 0, 64,161, 80,212, 46, 85,170,212, 10,142,227,194,237, 86,156, 68,185, 92,254,133, +213,106,253,203, 94, 65,109, 22, 4,161,171, 39,203, 85,255,254,253, 27,254,246,219,111,179, 14, 31, 62,156,149,150,150, 22,190, +101,203, 22,211,123,239,189,119, 11, 0,110,220,184, 17,211,165, 75,151,168,225,195,135,199,183,107,215,110, 94,203,150, 45, 71, +236,222,189,123, 39,242,187, 30,139, 20, 87,177,177,177,135,246,237,219,231,235,239,239, 95, 80,205,149, 45,139, 17, 35, 70, 40, +186,118,237, 90,190,117,235,214, 7, 9, 33, 77, 41,165,103,189, 17, 66, 21, 43, 86,220,245,199, 31,127,248, 4, 4, 4, 32, 51, + 51, 19,137,137,137,200,203,203,131, 94,175, 71,239,222,189, 21,205,155, 52, 46, 53,124,228,168, 93,132,144, 54,222,136, 44, 66, +200,243,141,171, 87,223,181, 58, 46,206,199,118,231, 14, 52, 26, 13,114,115,115, 1, 0,190,190,190,168, 87,174, 28,123,124,229, +202,168,126, 99,199,138,156, 79, 92,100, 17, 66, 84, 0, 64, 41, 53, 19, 66,182,202,100,178,110, 74,165,146,233,214,173, 27,118, +237,218, 69, 76, 38, 19, 11, 0,106,181,154,235,214,173, 27, 52, 26, 13, 44, 22,139, 0, 96,107, 97,150, 38,119,156,114,185,156, +105,217,178,101,222,177, 99,199,210, 69, 78,173, 86,107,107,217,178,101,144, 82,169,212,112, 28, 71,139,226,124, 76, 34, 18,215, +174, 93, 43,112, 45, 39, 39, 7, 41, 41, 41, 72, 75, 75,131,217,108, 70,102,102, 38, 4, 65, 32, 26,141, 38, 69, 16, 4, 48, 76, +190,177,173, 48, 78,133, 66,129,203,151, 47, 23,184,198,113, 28, 12, 6, 3,204,102, 51,172, 86, 43,114,114,114, 52,190,190,190, + 21,171, 87,175, 30, 15, 96,115,122,122,250, 23,137,137,137,183,165,226,233, 31,193,157,173,127,153, 74, 3,176, 0,184, 89, 2, +124, 2, 0,236,223,191, 31, 73, 73, 73, 72, 77, 77, 69, 74, 74, 10,162,163,163,241, 48,221,110,151, 46, 93,154, 87,187,118,109, +114,234,212,169,159, 1,124,189,118,237,218,151,210,211,211, 23,143, 25, 51, 38,240,243,207, 63, 79, 31, 59,118,236, 16, 0, 63, +174, 93,187,246,245,154, 53,107,118, 57,115,230,204,220,127,194,157, 18, 36, 60, 6,212, 7, 16, 98,255,159,106, 47,119,131,156, +206, 79,219,243,173,248,156, 5,128,210,205,175, 8,241, 60, 5,192,159, 78,239,137,231,143, 12,177, 43,134,138,135,187,135,194, +194,194, 70,182,106,213,106,214,137, 19, 39,170,221,191,127, 63,224,254,253,251, 1, 39, 78,156,168,214,170, 85,171, 89, 97, 97, + 97, 35,197,231,236, 51, 11,224,116,238, 60,213, 82,113,232,208,161, 50,155, 54,109,154,190,107,215,174,172,218,181,107, 91,254, +248,227, 15,174, 93,187,118,201, 0, 56, 0, 92,187,118,237,146,119,239,222,205, 55,104,208, 64,243,219,111,191,221, 61,120,240, +224,236, 13, 27, 54,132, 1,144, 21,194, 9, 66,136,220,223,223,255,167,189,123,247, 62, 32,174,156, 81,170, 84, 41,108,221,186, + 85,239,239,239,191,153, 16,162, 40,194,157, 32,132,168,213,106,245,198,221,187,119,251,248,250,250, 34, 57, 57, 25,114,185, 28, +161,161,161,200,202,202, 66,226,253,251,184,125,229, 10, 24,139, 5,115,166, 78,246,213,104, 52, 27, 8, 33, 74, 79,156,126,126, +126, 27, 87, 79,155,230,147,182,107, 23, 78, 77,153, 2,171,213,234,232, 90,181, 90,173, 56, 56,116, 40, 82,126,255, 29,223, 78, +156,232,227,231,231,183,145, 16,162, 46,138,179, 36,224,204, 73, 8, 25, 10, 32, 29, 64, 58, 33,100, 40,165,244,112,108,108,236, +137, 11, 23, 46,160,105,211,166, 88,191,126,125,173, 49, 99,198, 12, 29, 51,102,204,208,245,235,215,215,106,218,180, 41, 46, 92, +184,128,216,216,216, 19,206, 99,165,188,225,220,187,119, 47, 90,181,106,149,177,126,253,250,152,137, 19, 39, 78,155, 56,113,226, +180,181,107,215,150,111,213,170, 85,198,220,185,115,205, 69,113, 62, 14,191, 59, 91,150,156, 15, 65,248,187,110,137,140,140, 76, +222,180,105, 19,122,247,238,205, 40,149,202,251,125,250,244, 81, 29, 56,112,128, 2,216, 90, 28,119,154, 76, 38, 24,141, 70, 24, + 12, 6,220,184,113, 67, 51,115,230,204, 38,159,126,250,105,133, 93,187,118, 69,125,248,225,135, 67, 66, 66, 66, 78,134,135,135, +151,121,210,126,151, 56, 1, 0,137, 0,172,246, 70,221,237, 71,225,108,221,186,117,141, 10, 21, 42,132,173, 59, 23,128, 12, 69, + 21, 8, 10,127, 8, 10,127,240, 65,245,113, 77,217, 1,165, 75,151, 14,243,245,245,109, 88, 28, 78, 74,233,206,191,254,250,171, + 3,165,116, 9,165,148,167,148,110, 24, 59,118,236, 32, 66,200,198,177, 99,199,190, 77, 41,221, 96,191,190,236,244,233,211, 93, + 40,165,187,255, 9,119, 74,105, 73,226,124,200, 6,126, 81, 90, 36,132, 16,178,149, 16,178,117,252,248,241, 45, 1, 4,185,156, + 55,114,126, 14,128,210,221,175,120, 56, 93, 15, 1,208,201,233,189,144,146,242, 15,227, 20, 88,132, 82, 42,182,196,143, 17, 66, +182, 0, 56,166, 80, 40,106, 63,247,220,115,221,182,109,219,230, 27, 18,242,247,119, 67, 66, 66,176, 97,195, 6,223,234,213,171, +119, 83, 40, 20,181, 1, 28,211,235,245, 91,224,166, 43,209, 14,255,161, 67,135,190,244,234,171,175,102,215,174, 93, 27, 0, 50, +207,159, 63,175,109,208,160,129,129,227, 56,194,113, 28,105,208,160,129,225,252,249,243, 90,155,205,150, 83,191,126,125, 93,235, +214,173,111,141, 30, 61,186, 63, 0,117, 17,126,232, 59, 99,198,140,232,128,128,128,162, 18, 2,114,114,114, 16, 22, 22,134,161, + 67,135,134,203,229,242, 55,138, 52,235,177,236,176, 25, 51,102,132,250,251,251, 35, 35, 35, 3,209,209,209,176, 88, 44,184,124, +249, 50, 76,134, 92,216,114,178, 97,203,206, 68,202,245,171,240,151,179,232,223,181,115, 24,203,178,195, 60, 88, 71,134,125, 51, +118,108,152,229,214, 45,220, 88,191, 30, 60,247,160, 97,134,179, 90,113,230,235,175, 97,138,143,199,244, 65,131,194,148, 74,229, +176, 39,108,185,250,156, 82,170,161,148,106, 8, 33,243, 26, 53,106,244,189, 70,163, 25, 26, 23, 23,215,126,199,142, 29, 47,238, +219,183,175, 5,199,113,114,142,227,228,251,247,239,111,106, 50,153, 88,149, 74, 5,150,101,169,183,156, 13, 27, 54, 92,161,209, +104,134, 44, 94,188,184,253,238,221,187,251, 31, 63,126,124, 24,207,243, 74,158,231,149,199,143, 31,127,219,104, 52,202, 41,165, +124, 97,156, 79, 26,114,185, 28, 10,133, 2, 26,141, 6, 77,154, 52,185,190,108,217, 50, 91,116,116,180,124,227,198,141, 1,145, +145,145,186,133, 11, 23,102,230,228,228,204,240,150,207,106,181,194,108, 54,195,104, 52,194,100, 50,225,143, 63,254, 40, 55,124, +248,112,214,100, 50,241, 93,186,116, 73,183,217,108,230,177, 99,199,234, 3, 3, 3,223,147, 26,172,255, 8, 56, 0,185,118,129, +101,118, 78,203,132,144,154,162, 53,214, 27,100,102,102, 46,253,230,155,111,162, 25,149, 63, 14, 88, 58, 98,141,240, 25,118,248, + 45, 68,114,153,247, 17, 26, 93, 1,175,188,242, 74, 40,165,116, 97, 9, 84,116,155, 41,165, 61, 41,165,155, 30,230,253,199,237, + 78, 66, 72, 25, 31, 31,159,245,122,189,254,128,143,143,207,122, 66, 72,153, 71,245,115,187,138,164, 77,183,106,178,248,118, 21, + 8,237, 86, 77, 22,223,174, 98,241,215,106,146,240,116,194, 69,139, 56, 35,133, 82,218,153, 82,218,121,250,244,233,211,156,158, + 23,207, 53, 94,242,119,166,148,118,118, 73,163, 91, 31,135, 95, 88,103,229, 40,122,202,121,182, 96,169, 82,165, 86,172, 88,177, +194,215,245,197,251,247,239, 35, 59, 59, 27, 19, 38, 76,240,125,245,213, 87, 71,221,189,123,247, 53, 15,223, 82, 38, 38, 38,214, +233,215,175,159,218,106,181,102, 8,130,192,100,103,103,179,126,126,126,188,248,128,159,159, 31,159,149,149, 37, 55, 24, 12, 50, +158,231,205,175,190,250,170,114,208,160, 65,245,156, 45, 88, 15, 72,218,144,144,182, 29, 59,118, 84, 22,118,223,102,179,193, 96, + 48,192, 96, 48,192,106,181,162, 73,147, 38,170,101,203,150,181, 3,176,184,176,119, 84, 42, 85,219,182,109,219,202,211,211,211, +225,231,231,135,219,183,111,227,230,205,155, 48,231,230,194,154,155, 13,107,110, 14,184,156,108,208,236, 44,164, 93,189,132, 6, + 85,171, 40,126, 80,169,218, 3,152, 93, 24,167, 94,175,111,219, 96,192, 0, 86,167,211,161, 69,191,252,249, 3,191, 85,173, 10, +202,243, 16,120, 30, 60,199,161,253,229,203,176,217,108, 96, 24, 6,245,211,211, 89,253,202,149,109, 1,204,250, 39, 18,185, 74, +165, 98, 87,173, 90,213, 87,169, 84,130, 82, 74, 44, 22, 11,118,236,216,241,200,156, 43, 87,174,236, 47,114, 90,173, 86, 90,163, + 70,141, 7, 50,146,217,108,166, 79, 75,102, 87, 42,149, 80,171,213,176, 90,173, 40, 91,182,172,177, 95,191,126,135,166, 78,157, + 90,154, 97, 24,157, 66,161,216,150,150,150, 54, 45, 33, 33,225,134,183,124, 54,155, 13, 22,139, 5, 22,139, 5, 70,163, 17,215, +175, 95, 15, 47, 87,174, 28, 25, 58,116, 40,159,151,151, 23, 51,127,254,252,107, 59,118,236,208,206,152, 49,163, 7,128, 17, 82, +113,251,228, 96,183, 66,251,149, 14, 98, 13,114, 25,114, 1,248,218,197, 64, 15, 66, 72,131,106,213,170, 5, 92,184,112, 33,131, + 16,114, 4,192, 26, 74,233,253,162,248, 4, 65, 32,130, 32,224,237,231, 51, 49,180,161, 12, 54, 91, 22,178,178,178,112,251,246, +109,156, 63,127, 30, 71,143,158,127, 40,119,170,213,234, 55,124,124,124,218,169,213,234,178, 28,199, 49,185,185,185,183,243,242, +242,118, 9,130,176,148,186,118, 35,120,129,199,229, 78, 17, 58,157,110,230,135, 31,126,216,216,207,207, 15,127,253,245, 87,204, +218,181,107,103,226, 17, 7,205,171,229,204,183,179,231, 46,140,138, 10,245,199,233,125, 63, 71, 77, 91,178,238, 91, 0,209, 82, + 42,126, 38,242, 33, 45, 68, 96,253, 9,160,147,125,118,121,231, 71,224,127,164,247, 31, 74, 96, 21,226, 33,112, 28, 23,238,108, +185,162,148,226,254,253,251,184,119,239, 30, 82, 82, 82, 16, 16, 16, 0,171,213, 26,238, 77,253,154,147,147,243,124, 80, 80, 80, +158, 92, 46, 55, 27,141, 70,104,181, 90, 65, 46,151, 83,251,119,136,125, 22, 34,111, 54,155, 9,203,178, 54, 95, 95, 95, 31,179, +217, 92, 5, 69,140, 21,163,148, 62, 31, 20, 20,228,246,158,217,108, 70,110,110, 46, 12, 6, 3,114,115,115, 97, 54,155, 17, 22, + 22, 6,142,227,234, 20,217,132,229,184,154, 33, 33, 33, 72, 72, 72,128, 70,163, 65,124,124, 60, 44,185, 57,176,230,228,128, 51, +100,131,207,202,130,144,157, 13,193,144, 13,155, 37, 15, 81,149,170, 66,156, 97, 88, 24, 44, 22, 75,205,160,160, 32, 24, 12,127, + 15, 39,163,118, 97,197,113, 28, 56,251,160,103,177,219, 48, 56, 56, 24,226, 12,195, 39,212,106, 48, 19, 66,198, 48, 12, 51, 79, +165, 82,177, 67,134, 12,193,253,251,247, 11,164,137, 33, 67,134, 56,198, 92, 53,107,214,108,191, 90,173,230, 82, 82, 82, 96, 54, +155,229,222,112,150, 45, 91,246,246,132, 9, 19,142, 89, 44,150,232,200,200, 72,127,179,217,108,172, 92,185,114,164, 70,163, 9, +179, 88, 44,124,189,122,245,150,106, 52, 26, 91,110,110, 46,229, 56,142, 60, 37,153, 29,132,144,252, 56,226, 56, 4, 7, 7, 27, + 82, 83, 83,143,102,100,100,244,125, 24, 62,155,205, 38,206,208,130,209,104, 4,165, 20,127,253,245, 23,212,106,181,156,231,249, +115, 28,199,105,229,114, 57, 24,251,224, 46, 9, 79, 44,158, 91, 84,241, 87,206,142,107, 16,234,255, 92, 23,157, 65,171,148, 25, +132,219,207,149,253,238,243,243,107, 95,237,255,134,239,164, 73,147,202, 4, 7, 7,171,175, 93,187,102,154, 60,121,114,185, 85, +171, 86, 17, 79,141,159,187,119,239,110,252,240,195, 15, 3, 59,118,236, 24,163, 82,169, 72, 86, 86, 22, 82, 82, 82,144,148,148, +132,155, 55,111,210,211,167, 79, 95, 55,155,205,235,139,227,206,200,200,200,101,195,135, 15,127,181,110,221,186,114,209, 34,106, + 48, 24,106,239,221,187,183,235,111,191,253,214, 20, 64,177,211,229,221,187,119,215,127,244,209, 71,186, 14, 29, 58, 84, 81,169, + 84, 76, 73,184,211, 25, 12,195,132,249,248,248, 96,215,174, 93,240,247,247, 7,195, 48, 97,143, 26, 95, 38,171, 16, 21, 25, 30, + 4,211,193,217,168, 18, 82, 6, 38,171, 16, 37,165,226,103,199,130, 85,200,173,250,162, 5,202,131, 72, 50,142, 27, 55,238, 67, + 66,200,214,113,227,198,125,232,206,130,101,255,203, 59, 63,231,244,188,185,196, 5,150,151, 45, 29,220,187,119, 15, 9, 9, 9, +184,119,239, 30,210,210,210,192, 48, 76, 81, 1, 82,192, 95,132, 16, 97,231,206,157, 1,135, 14, 29, 50,212,175, 95, 63, 83, 28, +223,194,113, 28,177,217,108,196, 62,238,133,220,190,125, 91,113,224,192, 1,255,139, 23, 47,134, 33,127, 32,154,224, 33, 66, 30, +184, 38, 10, 43,231,195,100, 50, 65,173, 86,123,229, 87,177, 2,252,235,196,137,124,113,149,155, 99,239, 26,204, 2,159,157, 5, +106,200,129,146,183, 65, 9, 10, 98,202,243, 58,252,156, 33,138, 43,171, 93, 96, 89, 44, 22,216,108, 54, 8,130, 0,142,227,254, +137,132,189,168,118,237,218,117,126,252,241,199,129,247,238,221,123,224,126,247,238,221, 49, 98,196, 8, 12, 31, 62,252, 98,167, + 78,157, 78,255,252,243,207, 24, 54,108, 24, 4, 65,120,142, 16,146, 69, 41,253,173, 40,206,113,227,198, 29,191,123,247,238,158, + 43, 87,174, 12, 9, 13, 13, 85,213,172, 89,243,106,205,154, 53,101, 63,254,248, 99,216,155,111,190,121,226,197, 23, 95,188,245, +251,239,191, 7,238,218,181, 75, 45, 8, 66, 93, 66,200,189,127,122, 29, 44,179,217,236,176, 56,153, 76, 38, 88,173, 86,160,136, + 65,237,158,210,166, 24,183, 28,199,137,220,228,199, 31, 55, 97,255,254,253,204,249,243,231,162,135, 12, 25, 42, 14,164,151, 74, +218, 39, 35,172, 58, 40, 25,242,213,152,231,130,212,239,213, 10, 50, 40, 89,146,123,249,171, 15,115,111,150,214, 27,194, 74,105, + 45,209,229,252, 35,167, 77,155, 26,113,241,226, 37,243,132, 9, 19, 46,244,233,211, 39,244,189,247,222,171,182,113,227,198,166, +132,144,111, 40,165,153,133,240, 42, 6, 14, 28,120, 52, 52, 52,180,252,146, 37, 75,146,239,222,189, 27, 96,179,217,180, 54,155, +205,106, 48, 24,174,229,229,229, 29,176, 90,173,187, 40,165, 39,138,227, 94, 95, 95,223, 90, 3, 6, 12,144,103,102,102,194, 62, +251, 22,201,201,201,104,220,184,177,108,203,150, 45,213, 31, 38, 12,210,211,211,103, 19, 66,246,172, 94,189,186,157, 94,175,175, +171, 82,169,194, 1,240, 57, 57, 57, 73, 6,131,225,212,195,184,179, 64, 57,199,243, 73, 39, 78,156, 40,175,215,235,113,231,206, + 29,240, 60,159,244,168,241,166, 86, 48,119,207,236,219, 82,170,106,112, 57, 28, 56,116, 4,106, 5,115, 87, 74,205,207, 60,196, + 49, 82,112, 22, 78,110,132,209,161,184,184, 56,205,244,233,211, 17, 23, 23,119,206,157, 5, 75, 20, 90,113,113,113,231,196,231, +156,158,223, 87,162, 2,171, 40,129,196,178,108, 98, 74, 74, 74,128,191,191,191, 67, 88, 37, 36, 36, 32, 33, 33, 1, 74,165, 18, +183,111,223,134, 82,169,188,239, 77,163, 67,163,209, 28,175, 93,187,118,229, 27, 55,110, 40, 38, 79,158, 92,234,196,137, 19,250, +198,141, 27,215,208,104, 52, 60,165, 20, 38,147,137,185,112,225,130,207,172, 89,179,162,158,127,254,121,203,243,207, 63,127,114, +221,186,117, 70, 20,177,232, 40, 33,228,216,253,251,247, 99,202,150, 45, 43,138,181, 2,162,202, 89,104, 1,249, 93,155, 44,203, +158, 44, 50, 80, 88,246,204,229,203,151,219,104,213, 42, 88,114,178, 97,205,205, 6,151,147, 3, 62, 39, 11,124, 86, 22, 96,200, +134,146,227, 32,231,109,208,168,213,184, 23, 31, 15,150,101,207, 20,197,169, 84, 42,207, 36, 37, 37,181,241,247,247,119, 84,158, + 54,142,203, 63,120, 30, 22,142,115, 88,176,228,114, 57,238,222,189, 11,165, 82,121,230, 73,167, 96,134, 97,120,113, 41,134, 66, +252,129,176,176, 48,161, 65,131, 6, 24, 54,108, 24,120,158,183, 71, 3,105, 65, 8, 57, 64, 41,205, 45,140, 83, 16, 4,230,194, +133, 11, 47, 93,187,118, 77, 38,151,203,153, 23, 94,120, 33,182, 73,147, 38, 22,165, 82, 9,133, 66,193,230,230,230,250,238,218, +181, 75,109,179,217,136,157,243,137,173,131, 37,166,157, 7,154, 66,246,193,232, 70,163, 17,185,185,185,200,200,200, 96, 53, 26, + 77,229, 26, 53,106, 28,177, 88, 44,235, 57,142,251,246,198,141, 27,217,133,113,218, 5,153, 67,108, 9,130, 0, 74, 41,120,158, +135,205,102,131, 66,161, 16,246,238,221,135, 89,115,102, 98,197,183,171,104,215,174, 93,201,150, 45, 91, 32, 8, 66,188, 84,158, + 62, 17,124,145,185,102,170, 26, 28,111, 48,239, 93,157,251,253,149,108,195,164,239,231, 30,183, 40,101,217,245,154,135,213,140, + 41, 87, 89,230,239, 31,192, 44, 94, 58, 47,237,135, 85, 27,174,221,185,115, 39,251,203, 47,191,108, 88,185,114,101,191, 83,167, + 78, 69, 1,112, 43,176,124,124,124,202,190,254,250,235,175,103,100,100, 40, 86,173, 90,181,252,222,189,123,123, 41,165,215, 93, +202,174, 58,132,144,207, 1,200, 1,132, 33,127,252,215, 78, 74,233,202,162,218,105,132, 16,236,222,189,251,129,217,126,194,163, +169,242,140,154, 53,107,214,186,114,229,202,230,196,196,196,239, 93,111,106,181,218,174,177,177,177,175, 28, 59,118,236, 99, 74, +233,181,226, 16,231,229,229,141,221,176, 97,195,231, 50,153, 44,146,231,249, 4,163,209, 56,246,145, 45, 88, 54, 97, 80,220,226, +181, 95, 27, 45,124,105,141, 82,118,199,100, 19,222,148,146,242, 51,109,189, 2,236, 99,176,196,255, 0,136,203,249, 41,251,127, +139,211,179, 41, 78, 86, 43,139,139,213,203,221,189, 20,148,224, 34,231,133,173,228, 62, 30,192,243, 0,142,201,229,242,121,175, +190,250,234,172, 31,126,248,193, 55, 59, 59, 27, 73, 73, 73, 72, 78, 78, 6,203,178,208,235,245, 88,180,104,145, 49, 41, 41,105, +158,243, 59,174, 43,190,139,121, 34, 56, 56,248,248,170, 85,171,194,191,250,234, 43,246,181,215, 94,187,221,169, 83,167, 42,139, + 22, 45,186,161, 80, 40, 40,207,243,196,108, 54,147,183,223,126,187,252,156, 57,115,110,201,100, 50,109,239,222,189,137, 78,167, + 59,102, 47,120,220,135,120, 74,202,206,159,126,250,233,165,209,163, 71,171, 44, 22,139, 91,203,149,120,205,223,223, 31, 7, 15, + 30,180,100,100,100,236,240, 96,181,216,185,237,215, 95,154,253,175, 79, 31,133, 45, 39, 27,182,156,108,112,217,217,224,115, 50, + 65,114,179, 33,231, 57,104, 20, 2,194,163,213,224,140, 62,248,229,207, 83, 54,179,217, 92,228,130,132,217,217,217, 59, 15,172, + 88,209,226,249, 50,101,216,131, 35, 71,194,106,179,161,195,229,203, 14, 81,101,181, 90,177,185,102, 77,240,132,224,185,183,222, +194, 85,142,227,178,179,179,119, 62,141,153,224,244,233,211,201,253,250,245, 59, 33, 8, 66,157,226, 88,115,156, 42,159,156,220, +220, 92,164,166,166,242,105,105,105, 38, 0, 72, 78, 78,206,216,178,101,203, 5, 65, 16,158,127, 24,206,146,128,205,102,123,192, +250,196,243,124,190,149, 49,223, 82,160,252,229,151, 95,154, 93,184,112, 65,113,246,236, 89,236,223,191,255,185, 31,126,248, 97, +124,153, 50,101,106,222,190,125, 59,209,147,104,115,183, 88, 47,236,227, 11,215,173, 94,143,193,131, 7,147,196,196, 68,172, 89, +179, 6,158, 22, 61,149, 80, 98, 48,128,227, 53,150,189,171,115, 59,253,122, 39,231,240,125,227,100, 0,219,169,145,163,165, 74, +149, 58, 93,183,110, 64, 48, 0,152, 77,124,120,197,138, 21,155,179, 44,171,180,167,225,186, 65, 65, 65,139, 0, 52,113, 71,218, +189,123,247, 70,161,161,161,181,127,251,237,183, 83,247,238,221,219,231, 42,174, 0,160,114,229,202,159,157, 61,123,182,131, 92, + 46, 39, 78,105,132, 2,112, 43,176, 90,180,104, 81,185, 76,153, 50, 65,191, 94,241, 67,182,162, 2,168, 44, 11, 96,213,224,253, +107,225,182,162, 26,162,163,143, 4,249,251,251, 63,151,153,153,121,170,152, 86,188,210,189,123,247,254,101,217,178,101, 85, 95, +124,241, 69, 37,128, 7, 4, 86,213,170, 85,123,252,254,251,239, 61,135, 12, 25, 82,139, 16,210,197,203,221, 58,196,124,116, 27, + 64,207,146,140,180, 29, 87,233, 46,216,215, 44,147,240,159,193,159,143,233,217,199,134,194,186, 8,159, 23, 4,161, 43,195, 48, +176, 90,173,113, 97, 97, 97,155,123,247,238,221,125,252,248,241, 62, 65, 65, 65, 14,203,213,162, 69,139,140, 55,111,222,220,104, +181, 90,255, 34,132, 76, 76, 72, 72,232, 26, 25, 89,104,189,144, 51,127,254,252,181, 93,186,116,121,237,173,183,222, 50,214,172, + 89, 83, 95,165, 74,149,188, 67,135, 14,249,180,109,219, 54, 91, 38,147,209,131, 7, 15,250,150, 47, 95,222, 68, 8, 81,253,254, +251,239,105, 71,142, 28, 41, 31, 23, 23,247, 13,242,167, 77, 23,134,213, 83,166, 76,153,208,181,107,215,242, 65, 65, 65,200,206, +206, 46, 32,178,196,255,106,181, 26,137,137,137,216,180,105,211,125,155,205,246,141, 7, 75,198,151, 11, 23, 45, 30,213,178,193, + 11, 81,122,173, 6,137,241,183,193,103,101, 0,134, 92, 40, 57, 27, 52, 74,138,168, 10, 90,176, 50, 29,174, 37,230, 98,197,161, + 63, 19, 57,142,251,178, 40, 78,139,197,242,229,136, 57,115, 70, 29, 94,188, 56,170, 76,175, 94, 56,191,114,165,163, 75, 80, 20, + 88, 60, 33, 40,221,186, 53, 24, 63, 63, 76, 91,178, 36,201, 98,177,124,249,164, 19,132, 32, 8, 50,139,197, 82,148, 63, 32, 8, + 66,252,249,243,231,215, 18, 66,114, 8, 33, 45,236,183,246,184,179, 94, 57,115, 50, 12, 35, 84,171, 86,237,199,176,176,176,151, + 0, 24,170, 85,171,246,163, 74,165,106,101,177, 88, 94, 16, 4, 33,254,175,191,254,218, 68, 8, 73, 36,132,136,173,140, 39,186, + 14,150,205,102,195,196,137, 19, 49,125,250,116,140, 27, 55,206,225, 95,177,155, 48, 51, 51,179,220,129, 3, 7, 20,123,247,238, +165, 75,150, 44, 73,123,237,181,215,252,223,122,235, 45,255,175,190,250,234, 93, 0, 99, 11,227, 28, 59,118, 44,150, 44, 89,130, +193,131, 7, 63,168,174,100, 50, 33, 62,254, 46, 76, 38, 19,157, 63,127,126,130, 92, 46, 15,248,230,155,111, 52,111,190,249, 38, +145,202,211, 39,130,143, 52,253, 62,126,199, 94,198,204,163,148,238, 17,111,232,245,122,205,143, 63,254,196, 2,192,198, 13,155, +228,148, 82, 63,113, 97,216,239,191,255, 94,221,184,113,227,208,194, 72, 55,108,216,144, 57,121,242,228,160, 65,131, 6,189,184, +103,207, 30, 45, 33,228, 87,123,161,159, 10,128, 7, 16, 12,224, 96, 72, 72, 72,196,218,181,107, 43,180,107,215, 78,231,201,161, + 57, 57, 57,223,172, 93,187,182,236,156, 3,126,248,213,240, 18,238, 10,189, 64,253, 41, 2, 67,115, 80,205,231, 14,250,246,237, + 27, 57,111,222,188,175, 1,212, 45,134,184,170,254,242,203, 47,255,180,108,217,178,114,111,189,245, 86,252,193,131, 7,239, 18, + 66, 62,115,243,104,218,128, 1, 3,110, 47, 95,190,188,130, 32, 8,219, 9, 33, 47, 82, 74,175, 72,201, 71,130,132, 34,242,151, +187,241, 75,132,144,205, 28,199,117,101, 89,118,139,243, 66,163, 97, 97, 97,163, 44, 22, 75, 4, 33,132, 42, 20,138,196,164,164, +164,121,206, 11,141,198,199,199,119,141,142,142,118,188, 99, 95, 44,211,121,173, 12,125,135, 14, 29,218, 28, 62,124,120,193,214, +173, 91,147,115,114,114,124, 54,108,216,160,153, 62,125,250,109, 65, 16,232, 7, 31,124, 80,166,125,251,246,121, 60,207,223,127, +235,173,183,202,151, 43, 87,238,173,139, 23, 47,238,114, 22, 88,110, 56, 65, 8,169, 94,161, 66,133,131, 27, 55,110,212,251,251, +251, 35, 57, 57, 25,233,233,233, 48, 24, 12,224,121, 30,114,185, 28, 41, 41, 41,152, 60,121,114,118, 66, 66,194, 3, 11,141, 22, +194,249,124,217,168,168,157,243, 62,155,232,235,207, 50, 72,187,116, 1, 92, 70, 26,228,156, 13,165,170,251, 65,161,212,224,234, +229, 28,188,187,122, 83,206,157,244,204, 7, 22, 26, 45,140,179, 94,197,138,187,150,140, 25,227, 99,186,123, 23, 17,175,191,142, +188,188, 60, 88,173, 86, 48, 12,131,235,243,230, 65, 17, 18,130, 9,235,214, 25,206,221,185,211,218,117,161, 81,119,156,143,156, + 0,156, 56, 9, 33, 67, 9, 33,142, 65,238,221,187,119, 47,240,236, 79, 63,253,132,197,139, 23,195,108, 54,115,148,210, 81,148, +210, 69,132, 16, 31,123, 43, 53,215, 19,103,217,178,101,239,196,198,198,254,201,243, 60,107, 23, 23,244,252,249,243,117,111,222, +188, 89,202,133, 83,236,186,230,158,148,223,131,130,130,230,253,246,219,111,101, 67, 67, 67,137,243, 10,235,118,129, 8, 0, 24, + 54,108, 88,235, 35, 71,142,168,106,215,174,109, 78, 77, 77,173, 31, 18, 18,242,199,170, 85,171,130,123,247,238,157,112,238,220, +185, 40, 87,206,224,224,224, 89, 27, 55,110,172, 80,161, 66, 5, 70,180,130,185,118, 67, 14, 28, 56,176,205,170, 85,171,148, 47, +189,244,146,217, 96, 48,132,249,250,250, 94,219,184,113, 99,112,183,110,221, 18,207,157, 59, 23,241, 36,252, 46,113,186, 71,108, +108,236,213,115,231,206, 85, 16,207,141, 70, 35, 82, 82, 82,144,154,154, 10,127,127,127,180,109,219,246,250,205,155, 55, 43,184, +227,180, 91,133,230, 46, 93,186,244, 69,157, 78,167,216,183,111,159, 97,215,174, 93,166,219,183,111,115, 54,155,141, 70, 68, 68, +176, 77,154, 52, 81,119,236,216, 81,167, 82,169,152,143, 63,254, 56,117,234,212,169,193,132,144,185,148,210,119,221,113,214,169, + 83,231,232,182,109,219,158, 39,132, 64, 38,147,193, 98,177, 34, 51, 51, 19,247,238,197,227,252,249,243, 56,124,248, 48,118,236, +216,113, 42, 55, 55,183,182,183,126, 39,132,252, 97, 54,155, 91, 40,149, 74,175, 5, 61,207,243, 96, 89,118, 55,128, 54,148, 82, + 65, 74, 75, 18,167,132,226, 89,176,196,193,185,207, 19, 66, 54,219, 47, 29,115, 93,138,129, 16, 50,158, 16, 50,209,201,234,229, +233,123,217,191,253,246,219,254, 54,109,218, 12,107,221,186,245,156,118,237,218,221,191,127,255,126,204,236,217,179,163, 57,142, +179,158, 63,127,158,185,118,237,218,237,227,199,143, 87,168, 84,169,210, 91, 23, 47, 94,220,235,193,122, 37,186,245, 60, 33,164, +113,203,150, 45, 55,189,245,214, 91,165, 27, 52,104,160,244,247,247, 7,203,178,184,113,227, 6, 78,157, 58,101, 89,183,110, 93, +124,102,102,166,215, 91,229, 80, 74,143, 17, 66,218,246, 30, 62,106,227, 91,221,187, 4,191, 80,165,178, 50, 34, 34, 2, 48, 26, +113,233, 78, 34,142, 92, 58,101, 93,182,255, 72,138,217,108,126,217,219,173,114,236,156,109, 90,141, 25,179,113,210,255,254, 23, +134,251,247,217,136,136, 8, 40,149, 74,220,188,121, 19,215, 4,129,155,177,116,105, 82,118,118,246, 19,223, 42, 71, 92,179, 74, + 16, 4, 22, 0, 52, 26, 13, 70,140, 24, 1,231,173,113, 22, 47, 94, 12,163,209, 8, 0, 44, 33,228,115, 66,200,183,133, 89,173, + 10,225, 44,253,235,175,191,150,118,230,172, 90,181,170, 59, 78,243,147,206, 8,233,233,233, 19, 58,116,232, 16,199,178,108,161, +171,213, 6, 4, 4, 32, 39, 39, 7, 28,199,241,247,238,221,187, 20, 16, 16, 0,185, 92, 14, 74,169,219,124,148,150,150, 54,225, +229,151, 95,158,194, 48, 76,161,150, 14,189, 94,127,251,143, 63,254,168,248,230,155,111, 50,223,125,247,221,141, 65,131, 6,169, +254,248,227, 15,254, 97,215, 52,146,240,248,224,220, 24,181, 55,222,104, 17,207,222, 33,132,140, 61,113,226,132,122,240,224,193, +117,255,247,191,255,233, 91,182,108,233,227,252,140,209,104, 20,126,254,249,103,195,146, 37, 75,210,246,237,219,247,231,192,129, + 3, 95, 66,254,248, 17,183,184,115,231,206, 47,211,166, 77,243,235,216,177, 99, 37, 0,142,241, 87, 41, 41, 41,184,125,251, 54, +206,158, 61,123,219,106,181,110, 41,166,183,134,245,235,215,239,215,229,203,151,151,121,235,173,183,226,215,172, 89,179, 5, 64, +150,155,231,124,122,244,232,209,117,249,242,229,101,222,126,251,237, 59, 0, 70, 74, 43,188, 75,144,240,112, 2, 43, 75, 16, 4, +152, 76,166, 48, 65, 16,186, 10,130, 0, 31, 31, 31,119,207, 61,159,144,144,208,213,121,179,103,120,216,214, 6, 64,202,174, 93, +187,118,174, 94,189,186,245, 7, 31,124,240,191,204,204,204,231, 79,159, 62,221, 0, 0,228,114,249, 97,157, 78,119, 52, 46, 46, +238,245,177, 99,199,166,120, 35,174, 92, 68, 86,181, 89,179,102,149,216,102,207,118, 65, 84,241,203,245,155,134,125,163, 82,181, +117,217,236,121,167,125,179,103,211,195,112,142,249,250,235, 97,250,245,235,159,218,205,158,205,102, 51,247,210, 75, 47,125,195, + 48,140, 96,111,181,178,102,179,249,117, 20,115,230,169, 43,103,247,238,221,191,147,201,100,156,221, 50,196,152,205,230, 55, 30, +133,179, 4, 43,207, 92, 0,195,139,122,166, 70,141, 26,171,182,108,217,210,175,107,215,174,188,213,106, 77,238,210,165, 11,123, +244,232, 81,202, 48,204,174, 66, 56,205, 0,222, 47,138, 51, 60, 60,188,204,194,133, 11, 79,142, 28, 57, 82,191,122,245,234,192, + 3, 7, 14,240,243,231,207,207, 78, 79, 79,255, 66, 42,158,158, 46,200,229,114,104,181, 90, 88, 44, 22,164,164,164,192,211,146, + 83,148,210,107,132,144, 78, 99,198,140,105, 58,102,204,152, 78,209,209,209,213, 75,151, 46, 93,154, 97, 24,230,254,253,251, 41, +119,239,222,189,101,181, 90,127, 7,240, 11, 0, 69,249,242,229,255, 2,176,170, 48,190,180,180,180, 41,132,144,221, 43, 87,174, +236,164,211,233,170,169,213,234, 64,155,205,198,228,228,228,164, 27,141,198, 11, 38,147,105, 43,165,244, 80, 49,211,253,101, 66, + 72, 75,150,101,127, 89,182,108, 89,213,251,247,239,151,221,187,119,111, 23,215,231,234,214,173,187,124,249,242,229,101,134, 12, + 25,114,109,245,234,213,197, 26,131, 37, 65,130, 36,176, 10, 98,154, 82,169,100, 97,223,244, 89,180, 96,185,121,238,152,203,152, +171, 44, 0,211,188,248,174,161,111,223,190, 55,251,246,237,251,185,221, 13, 50,228, 47,197,192, 33,127, 4,191, 21, 30,150,102, + 40,164,176,224, 0,124,109, 63, 74,170,226, 53, 33,127,189,155, 89, 79, 51,103, 9,184,201, 76, 8, 25, 99,159,213, 4, 0, 99, +254,250,235,175, 69, 46, 22,169,211,206,247, 61, 89,154,220,113,158, 58,117,202,149,243,108,113, 56,255, 73,100,102,102,142, 90, +184,112,225,177,113,227,198,169, 6, 12, 24,128,179,103,207, 98,250,244,233,230,204,204,204,213, 15,203,153,152,152,120, 59, 60, + 60,188,206,220,185,115,223,155, 51,103, 78, 55, 66,136,180, 23,225, 83, 2,163,209,120,189, 86,173, 90, 32,249,179, 19, 40,199, +113,142,217,159,246, 21,249,175,123, 89, 38,237,182, 31,158,240,185, 23,124,135, 1, 28, 46,225,188,127,135, 16,210,233,214,173, + 91,211, 46, 95,190,188,205,221, 51,231,206,157,251,169, 93,187,118,218,195,135, 15,127, 88,220, 89,132, 18, 36, 72, 2,171, 96, +134,187, 10,224,127, 94,100,204,184, 71,248, 54,239,133,181, 75,194,147, 21, 89,139, 8, 33,223, 58, 89, 95,138,117,255, 73,113, +254, 83,136,143,143,207, 0,224,216, 50, 36, 38, 38,230,129,113,106, 15, 43,178,144,191,106,187,180,114,251, 83,132, 27, 55,110, +116,248, 15,229,253, 59, 0,250, 21,118,223, 98,177,108, 1,176, 69, 74, 21, 18, 36, 60,162,192,146,240,159, 22, 89,230, 71,185, +255,164, 56, 37, 72,144, 32, 65,130,132,167, 25, 4, 64,155, 66, 42, 61,175,103, 7, 16, 82,252,141, 54, 61,241, 75,156, 18,167, +196, 41,113, 74,156, 18,167,196,249,236,113, 58,113,207, 41,228,214, 37, 23,190,175,254,173, 22,139,199,118, 32,127, 26,175,196, + 41,113, 74,156, 18,167,196, 41,113, 74,156, 18,231,195,124,231,173, 39,241,157,199,113, 72, 27,202, 74,144, 32, 65,130, 4, 9, + 18, 36,148, 48,220,142,193,218,176, 97,131, 76,252,255,202, 43,175, 12,228,121,222, 49,125, 93, 38,147, 45, 92,179,102,205,183, + 69,145,246,236,217,147, 47,138,211, 29, 60,125,199, 29,103,108,101,191, 33, 65,126,218, 81,153, 89,121,115,111, 36,240,251, 77, + 38, 83, 53,241,158, 90,173,190,240,237,183,223, 94, 41,105,119, 14, 28, 56,176,146,235,119,202, 70,203, 91, 4,250,170, 71,164, +103,230,206, 62,123, 37,231, 43, 41, 89, 61, 94,244,234,213, 75, 86,156,231,111,222,244,103, 78, 34,226, 11,189, 78,209, 37,215, + 96,251,130, 63, 49,113,193,179, 16, 14, 17, 17, 17, 85,244,122,125,127, 0,213,243,242,242, 66,181, 90,109, 50,128,243,217,217, +217,171,238,223,191,127,201, 91,158, 22,229,200,109, 0,165,237,167,119,246,220,164,101,188,185,231, 9,237, 43, 16, 19, 5, 84, +132,192,186,253, 42,117,108,112,249, 98, 69, 98, 18,232,131,215,219, 87, 36, 22, 74,161, 32,128,121,251, 53,170,126, 86,210, 43, + 33, 68, 15,160, 45,128, 88, 0,167, 1,236,160,148,230, 73, 57, 89,130,132,255,160,192, 26, 56,112, 96, 51, 37, 75, 23, 64,160, +254,160, 52,200,108, 54,203,149, 74, 37, 44, 22, 11,180, 26,205,151,131,223, 24,240, 25, 8, 50,173, 2, 51,226,219,111,191,125, +232,157,167,139,243,157,158, 61,123, 62, 48,205, 57, 64,175,153,178,231,231, 15, 2,154,117,138,155,110,185,153, 62, 54, 39, 39, +135, 81,169, 84, 48,155,205,240,243,243,107, 60,252,173, 65,117, 41, 67, 44, 10,181,238,208,156, 57,115, 18, 31,214,157,239,190, +251,110, 56,103, 53, 52,162, 54,170,180, 88, 44, 42,215,239,248,107,117, 51,246,252,252,129,182,121,231,233,159, 1,144, 4,214, + 83,132,124,113, 21,254,213, 59,125, 95, 24, 48,115,100, 27,248,183,152, 49, 22,192,191, 90, 96, 17, 66,100, 49, 49, 49,195,202, +148, 41,211,103,233,210,165,138,152,152, 24,168,213,106, 24,141,198,136,235,215,175, 71, 12, 25, 50,164,121,249,242,229,215,222, +184,113,227, 75, 74, 41,239, 5,101,233, 61,203, 63, 6, 0, 52,238, 63,185, 52, 33,228,125, 0,121, 0,208,188,236,223,247, 90, + 12,152, 92,154, 16, 50, 6, 5,103,255,222,167,148,186,157, 93, 70, 1,229,214,149,179,208,245,213,247, 89, 66,200, 16,241,122, +199, 74,192,182,239,231,225,197, 87, 70, 21,184,222,190, 60,216,159, 87,206, 66,231, 87,223, 47,116,183,241, 23, 43, 49, 54, 65, +160,133, 78,206, 97, 24,194,109,191, 74,221,109,252,155, 68, 41,221,238, 38, 44,219, 35,127,163,101,183,207,119,174,202, 38, 89, +109,188,219,133, 98, 21,114, 89,242,214,139,220, 3,239, 14,168, 67,108, 54, 62,191,108, 85,176,224,253,252,252,246,124,244,209, + 71,108,231,206,157,177,108,217,178, 38, 95,125,245,213, 91,132,144,223, 1,108,145,150, 60,144, 32,225, 63, 38,176,148, 12, 93, +178,125,245,226, 10,137, 41,233,232, 51,100, 60, 86,175, 94,141,140,140, 12, 4, 4, 4, 64,169, 84,200, 23, 77, 27, 27,238,239, +171, 13,239, 61,124,226, 18, 0, 85, 30,246,227,197,252, 78,197, 7, 10, 71,251, 66,164,172,140,149, 43,149,114,102,237,218,181, +200,204,204,132,191,191, 63,148, 74, 57, 51,111,242,104,141,191, 94,167,249,223,168, 73, 77, 0,172,127, 88,119,114,198,220, 38, + 63,127,191, 80,159,148,146,134,126, 35, 38,192,245, 59,114,133,130, 23, 43, 20, 41, 73,253,115, 72, 77, 77, 37, 0, 16, 28, 28, + 76, 11,138,171, 6, 3,230,140,110,135,119,103,239, 64,158,201,242,253,191,221,159, 49, 49, 49,195,122,245,234,213,103,202,148, + 41, 10,134,201,239,229, 55, 24, 12, 48, 26,141,136,138,138,194,158, 61,123, 20, 19, 38, 76,232,243,211, 79, 63, 1,192,252,226, +242,159, 59,119,174,108,233,210,165, 77, 0,208,165,166,175,235,189, 50,226, 61, 0,240,245,245,245,200, 23,228,175, 51,159, 59, +119,164,186,248,222,176,214, 81,124, 33,215, 77, 0,180, 69,113, 9, 2,101,119, 44, 24, 82,232,253, 55,167,252,192,157, 94,191, +191, 74, 76, 76,140,209,249,122, 33, 11, 37, 3, 64, 88,110,110,110,105,215,139,226,243, 86, 27, 31, 90,216,247,218,141, 88,236, + 86,120,217,120,176, 63,252,240, 3, 0,224,139,247,251,201,190, 62,154,202,178,108,126, 81,251,249,231,159, 99,210,164, 73,202, +237,219,183,119, 92,185,114,101, 71,251,214, 56,210,242, 7, 18, 36,252, 87, 4, 22, 33,240,213,251,234,208,245,181, 17,248,109, +219,118, 52,107,214,204,113,175, 92,185,114,120,165, 71, 23,252,180, 52, 14, 12,136,239,163,124,252, 81,191,147,145,101,248,164, + 67,159,249,147,239, 36,230, 30,222,186,245, 87, 52,109,218,180,192,251,255,235,253, 18, 54, 46,154, 10, 66,169,226, 81,220, 41, + 48, 84,161,215,235,240,242,160, 81,112,247,157,193, 3,186,110,125,177,231,188, 54, 73,105,134, 57, 82,146,122,178,184,120,241, +162,204,108, 54,191,162,215,235, 27,200,229,242, 48,149,127,105, 33,129,125, 62, 45,133,196,220, 72, 14,205,107, 54,186, 77,216, +139, 95,188,211, 18,239,206,222,129,185,171,143, 44,175,131,196,137,255,102,255, 70, 68, 68, 84, 41, 83,166, 76, 1,113,149,147, +147,131,220,220, 92,100,103,103, 35, 39, 39, 7, 12,195, 96,236,216,177,138,189,123,247,246,137,136,136,216,229, 69,119,225,157, +198,253, 39,231,139, 12,153, 60,119,226,196,137,230,208,208, 80,179, 86,171,165,172, 66,149,211, 98,192,100, 95, 0, 96, 88, 69, +206,220,185,115, 45, 81, 81, 81, 38,150,101,149,163, 70,141,242,106, 12,167,217,108,166,206,156, 22,139,217,113,125,198,140, 25, +150,176,176, 48,179, 86,171,165, 86,171,197,235,112, 56,115, 51, 29, 42,133, 12, 42,133, 12,106,165, 28,190,101,235, 67,149,113, + 22, 28,199, 97,230,204,153,214,240,240,112,139, 86,171,165, 74,165, 82, 49,114,228, 72,143,238, 28, 56,112, 32,245,247,247,183, +106,181, 90,197,164, 73,147, 30,216,151,239,143,211,247,160, 81,202,161, 85,177,168, 88, 46, 26, 42,106,244,218,173, 50, 89,193, + 30,109,149, 74,133, 38, 77,154,160,122,245,234,216,188,121,115, 11, 72,235, 75, 73,144,240,236, 10, 44, 66, 72,115, 0,123, 0, +128, 82, 74, 0,128, 1,197,167,131, 94,196, 91,175,246, 2,207, 11,249,163,226, 1,200, 8,193,251,125,154, 65,224, 57, 8,240, +184, 85,132,199,169,154,197,253,142, 51, 39, 37,140, 12, 0,170,148, 14,162,131, 95,239, 11,129,207,239, 13,225, 1,200, 1,188, +215,171, 9,120,222, 6,193,195,162,240,222,185, 83,192,199, 3,219,193,221,119,170,148, 15, 99,204, 60, 7,226,180, 25,227,227, +216, 4, 83,226, 44,136, 67,135, 14, 69,104,181,218,217,253,250,245,139, 28, 57,114,164,146,103,253,217, 13,135,211,252, 62, 88, +116, 56, 50,207,108,149,245,109, 89, 22,163,255, 87, 19,163,231,254, 33,138,171,183,202,149,203,252, 87,199,145, 94,175,239,191, +116,233,210, 7,196, 85, 82, 82, 18,147,155,155, 11,171,213, 42,228,228,228,128,231,121,140, 27, 55, 78, 62, 97,194,132,254,132, +144, 73,118, 30,179, 59,206, 61, 55,105, 25, 66,200,152,115,231,206,149,249,232,163,143,172,173, 90,181,186, 83,174, 92, 57,131, + 76, 38, 67, 68, 68,196,188,182,109,219, 6, 78,153, 50,197,218,177, 99,199, 91, 50,153, 12, 21, 43, 86, 52,156, 61,123,182, 12, + 0,141,183,126,119,230,252,246,143,133,212, 94,238,160,109,219,182,183, 43, 86,172,104,144,201,100,184,242,243, 12,234,109,120, +202, 89, 6,149,162,252, 28, 45, 53,104,124,128,140,252,211,182,109,219,198, 87,169, 82, 37,151, 97, 24,156, 57,115, 38, 26,128, +218, 19,167, 70,163,177,245,237,219,247,206,165, 75,151, 30,120, 30, 0, 88, 25,131, 6, 85,236, 6,171,168, 58, 64,252,129, 66, +221, 41,151,129,155, 48,172, 31,235,175, 6, 84,190,193,230,236,236,108,232,245,250,124,139,152,213,138,191,254,250, 11, 13, 27, + 54,108,190,126,253,250,189, 82,126,151, 56, 37, 78,103,163,203,131, 90,228, 89,176, 96,237,113,245,140,192,115,168, 16, 21,132, + 69,239,191, 12,142,227,193,243,130,253,224,193,113, 2,108, 86, 11, 60,232, 43,239,172, 67,143,240,157, 0,189,102,202,111,107, + 71, 6,180,238,246,121,235, 5,239,245,216, 41,216,108,224, 5,128,227, 5,240, 54, 30,130, 32,192,102, 41,153, 53, 44, 5, 27, +143, 10,145, 65, 88,240, 94, 15,184,126,103,225, 47, 59,186,252,177,101,172,182, 89,231,233,239, 1,152, 41,233,246, 39, 99,185, +210,106,181,179, 87,173, 90, 85,166,126,253,250, 12, 0,236,191,204,169, 62, 88,116, 56,114,123, 92, 99,210,184,122, 16,146, 51, +205, 24,245,229, 41,252,118, 56,121,155,171,184,250, 23,163,122, 76, 76, 76, 1,113, 53,107,214,172,224, 69,139, 22, 69, 1,192, +203, 47,191,124,175,117,235,214,169,151, 47, 95, 70, 68, 68, 4, 73, 77, 77,237, 4, 96,148,189,240, 26, 67, 41, 93, 84, 8,175, +161,116,233,210,166,144,144, 16,179, 40,132, 24,134, 1,203,178, 40, 93,186,180, 41, 52, 52,212, 92,177, 98, 69,131, 66,161, 0, +195, 48, 16, 5,158,151,133, 38,100, 50, 25, 68, 78, 87,235,142,200, 89, 28,200, 89,167,231,233,131, 22, 35,134, 97,220,126,175, + 48,168,213,106, 10,160,208,231,101,140, 83,241,200, 22, 61, 18, 96,249, 73, 42, 39,132,236,161,148,226,228,201,147,184,113,227, + 6, 20, 10, 5,194,195,195, 49,105,210, 36,152,205,249,101, 82,175, 94,189,154, 3, 56, 35,229,102, 9, 18, 28,216,243, 44, 8, + 43, 87,129,229, 80,143,148,210,189, 0,192,115, 54,240,188,224, 86,244, 88,109, 28,108, 86,107,137, 56,160,168,239,240, 60, 95, +228,119,196, 49, 88, 2,165,172, 91,113, 37,228,239, 27, 86, 34,238, 20,108,176,241,128,187,239, 16,194,240,246,130, 94, 33,229, +143, 39, 3,179,217,220,183, 95,191,126,145,162,184, 2,128,212, 28, 27,155,103,182,201, 26, 87, 15, 66,221,150,189,112, 98,247, +122,172,219,119, 15,229, 67,180,251,202,233,158, 9,113,133,188,188,188, 80,181, 90, 13,131,193,224,176, 92, 45, 90,180, 40,202, + 98,177, 48, 0,192,178,242,232, 20, 33, 74,205, 11,128,159,254, 62, 50, 50,178,130,196, 2,139, 16,242, 57, 33,228,219,162, 86, +206, 87, 40, 20, 14, 97,226, 44,124, 84, 42,213, 67, 9, 23, 17,162, 40, 83, 40, 20,110,175,187,118,163,121,130,194, 89, 96,129, +230, 91,177, 92, 68,150, 76, 38,131, 56,246,201, 19,148, 74,165,195,239,110, 11, 74,153,211,247,100,197, 31,106,105,181, 90,145, +155,155,139,204,204, 76,168,213,106,209, 2, 0, 66,200, 40, 0,239, 72, 57, 90,130, 4,247, 90,228,153, 17, 88,200, 55,205, 17, + 0,224,108, 86,183,162,103,229,142, 19,184,150,102, 67, 84,192,121,136,207,122,139, 62,125,250, 44,143,136,136,104,224, 40, 36, +181,190, 65,253,223,159, 1,222,106,129,191,138,226,157,158, 77, 11,136, 43,158, 23, 96,181, 22,110,129,202,200, 50,124,242, 98, +175,121,147,131,116,190,135, 93, 69,207,132, 13,151,122,166,101, 89,162, 9,123, 17,153, 36,138,239,245,246,167, 3,157, 10,245, +211,107, 23, 79, 28,237,173,187, 41, 97,228, 93, 70,126,245, 22,175,240,173,166,167, 25,251, 38,189, 82,237, 71,103, 17, 23,234, +227,179,181,253,203,115,218, 36,165, 75, 99,176,158, 20,148, 74,101,155,145, 35, 71, 22,168,233,130,125,229,156, 86, 37,231, 15, +158, 79, 37, 39,118,175,103,246,159, 75, 21,212, 10, 25, 13,161, 55, 98,158, 21,127,107,181,218,228,188,188,188, 8,163,209,136, +236,236,108,100,103,103, 23,204,208,114, 57,121,107,240,240, 96,185, 66, 9,155,213,130,223, 86, 77,245,200,217,162, 28,185,221, +188, 44, 74,119,169,233, 11,153, 92,153,115, 62, 38,102, 30,203,178, 96, 24, 6, 63,127,249,193,168, 77,179, 71,248, 2,192,233, +173, 95,102,191, 50,118,225,124,134, 97, 96, 54,155, 85,197,113,247,221,187,119,163,205,102,179,201, 46,204, 68,193,135,155, 55, +111,150, 50,155,205, 70,231,235,222, 64,163,245, 5,252,203, 1,218,208, 7,172,101,183,110,221,138,180,217,108,121, 44,203,194, + 98,177,120,165,134, 24,134, 81,156, 57,115, 38, 90, 16, 4,183,207, 87, 47, 31, 9,132,215, 4,148,126, 94,251,217,190, 72,162, +199,103, 8, 33,244, 89,106,181, 75,144, 80, 18,150,172,226,234,139,167, 89, 96,181, 32,132,208,191, 51, 61,192, 89,173, 14, 97, +149,111, 97,202,255,127, 51, 75,192,165, 43, 87, 49,119,238, 92,236, 61,254,158,223,148, 41, 83, 84, 19, 38, 76, 48,247,233,211, +103,182, 32, 8,181, 24,134, 57,221,179,103,207, 81,238, 62, 38, 8, 66,169, 19, 39, 78, 56, 42, 59,155,205, 6, 95, 95, 95,248, +250,250, 34, 54, 38,252, 1,113,197,217, 45, 88,180,112,225, 35, 3, 5, 64, 65, 57,222, 6,222, 6,135,232, 73,203,178, 68,255, +180,251, 84, 5,167,199, 43,139,127,154,212,175, 86,184, 8, 28, 50,201,225,143,181,139, 39,142,158,178,108,153, 42,131, 15, 27, +249, 74,239, 65,177,189, 94,233,143,126, 61, 94,108,110, 50,217, 54,179, 12, 4,155,192,131,183, 9, 16, 40,101, 40, 80, 96, 12, +150,132,199,135,212,212, 84, 98, 52, 26,203,250,251,251, 23,168,168, 34,116, 6,243,216,222,149, 18,218,126,112, 32,210,100,229, +161,146, 51,116, 84,183, 50, 9, 71,127, 90, 23,148,106, 78, 37,226,236,194,127, 57,206, 95,187,118, 45,162, 84,169, 82,200,206, +206, 6,199,113,194,203, 47,191,124,143,101,229,209,172, 92, 78, 58,191, 50, 92, 72, 76, 76,176, 49,140, 12,148,242,232,208,107, + 40, 81,169, 53, 10,171,197,194, 1, 24, 83,136,245,202,121, 41, 6,223,182,109,219, 6,138, 51,251, 54,205, 30,225,235,116, 79, + 95,183,110,221, 64,231, 89,132, 94,138, 97,210,167, 79, 31, 77,233,210,165, 9, 0,252,185,234, 35,209, 90, 70,186,116,233,162, + 46, 93, 58,127,124,253,239, 95,122,191,215,117,176,150, 2, 89, 55,129,172, 91, 15, 88,174,186,116,233,162,138,137,137, 41, 86, + 94,180, 15,108, 47,116,237, 45, 29,203, 1,137, 39,189,226, 26, 80,135,216, 62,106, 6,118,118, 7, 6, 74,159, 32,115,131, 15, +182, 31,149, 68,150, 4, 9, 94,161,128, 22,121, 38, 4,150,221, 20, 87, 32,115,115, 54,235, 3,226,138,231, 5,168,121, 3,230, +206,157,139,119,222,121, 7, 0, 20,163, 71,143,254,113,202,148, 41, 47, 9,130, 80,139, 82,218,148, 16, 82, 84, 43,113, 79, 68, + 68, 68, 18,165, 84,206, 48, 76,211, 47,191,252, 50,176, 67,135, 14,240,245,245, 5, 21,232, 3,226,138,231, 5,216,204,150,124, +197,231, 6, 1,122,205,148,109, 27, 70, 5,180,234, 54,179, 53,111,195, 78, 81, 92,241,182,191,135,197,167, 37,197, 99,199,182, +205, 88,178,120,105, 6, 8,189, 8, 10,129, 97,152,211,133,185, 81, 16,132, 90, 7,254,188,208,180, 73,253,106,152,178,108,153, +234,220,137,251, 63, 14,127,247,163,216, 94,175,244,199,250, 53,171, 32,179,102,156,100,153,176,191,197, 21,207, 35, 37, 39,187, +203, 31, 63,127, 32,141,193,250,135, 96,179,217,144,145,145, 1, 91,110, 6, 87, 47,194,144,245,105,175, 80,115, 82,134,137,149, + 11,121, 92, 85,125,178,121,119,250, 45,153, 86,171,125, 38,252,154,157,157,189,106,200,144, 33,205,247,237,219,167, 96, 24, 6, +217,217,217,104,217,178,101,106,138, 16,165,126,107,240,240,224,132,132,123,156, 94,195,154, 21, 10, 57,146,147,147,133,230, 29, +251, 26, 95, 25, 56, 42,242,157, 15,167,125,149,112,104,241, 34,111,190,225, 60,179,207,245,222,215, 95,127,109,137,138,138, 50, +169, 84, 42,229,128, 1, 3,188,234, 39,180, 88, 44,116,198,140, 25,102,215,217,130, 22,139,133,206,157, 59,215, 18, 29, 29,109, +214,104, 52,212,102,243, 60,236,128, 97, 8,247,230,148, 31, 56,142,227, 10, 88,173, 68,113,101, 19, 72,238,130, 5, 11,172,209, +209,209, 22,173, 86, 75, 85, 42,149,194, 27,119, 14, 31, 62,156, 6, 4, 4, 88,117, 58,157, 98,236,216,177,143, 52,139,208,198, +131,157,242,165, 99,153, 6,149,175,175, 47,114,114,114, 28,110,141,136,136,144, 68,150, 4, 9,238, 27, 27,123,159, 5,203,149, +171, 5,171,160,200,160, 66,110, 82,114,106,168,127,100, 5,216,108, 28,120,206, 6,206,198,193,198,217, 48,230,245,238,136, 91, +156,223, 19,102, 23, 89,109, 71,143, 30,253, 35,224,121,219,157,181,107,215, 78, 30, 61,122,180, 62, 41, 41,105,251,242,229,203, + 3,251,245,235,135, 49, 99,198,224,243,207, 63, 7,171, 84,195, 47,188,140,227, 59,156,141, 3,111,227,144,156,150, 1, 74,105, +174, 59, 62,113, 12, 22,165, 96,245,225,229,192,243,226,187, 54, 48,178,252,153,233, 59,182,109, 70,191,215, 71, 64,174,242, 11, + 88, 56,119,166, 49,182, 94,196, 75, 19, 6, 13,242, 60,242,157,128, 57,119,226,254,143,195,223, 25,219, 86, 20, 87,155, 86,126, +121,241,203, 81,109, 87,107,149,172,227, 59,188,205, 6,134,145, 73, 99,176,158, 32,130,131,131,105, 74, 74,202,173,204,204,204, +202, 58,157, 14,105,105,105, 72, 79, 79, 71,102,102, 38,204,217, 25, 92, 16,159,105, 32, 92, 58, 88,150, 69,242, 93, 14, 60,207, + 39, 62, 35,214, 43,220,191,127,255, 82,249,242,229,215,126,248,225,135,175,140, 27, 55, 78, 46, 8, 2, 46, 95,190, 12, 10, 80, +185, 66, 9,134, 97, 32,151,179,200,202,202, 22,180, 62,254,247,173, 84,166,149, 43,148, 96,100,138,162, 22, 28,189,211, 98, 64, +254, 50, 13, 12,171,200, 17,103,246, 41, 20, 10, 28, 89, 63, 43,187,197,128,201,122, 0, 80,168, 52, 25,237,218,181,187, 93,173, + 90, 53,195,241,227,199,203,192,101, 22,161,155,252,201,117, 31, 48, 86,166,213,168, 13,109,219,182,189, 35,114,222,218,185, 48, +187,255,208,143, 8,145, 41, 13,157, 59,119,190, 29, 27, 27,107,144,201,100,184,176,121,102,118,247, 1, 99,213, 36,127,130,174, + 91,108,191, 74,223, 60,189,126,127,149,169, 83,167,218, 58,118,236,120, 87, 28, 15,118,235,214,173,200, 78,157, 58,169,230,204, +153, 99,235,212,169, 83,124,141, 26, 53,114, 25,134,193,137, 19, 39,162,139,178, 76,137,208,104, 52,182, 55,222,120,227,206,217, +179,103, 31,106, 22,161, 39,148, 42, 85, 10,130, 32,160,101,203,150, 48,153, 76,146, 37, 75,130,132,255, 0,220, 10, 44,171, 32, + 12,127,245,131, 89, 11, 9,136,143, 0, 90, 96,150, 14,205, 47, 9,200,251,239,191,167, 3,160, 17, 69,214,187,239,190,155,225, +233, 99, 78,226,170, 94,191,126,253, 48,126,252,120,124,241,197, 23,252,231,159,127, 46,187,112,253,174,181,231,232,207, 51, 93, +190, 3, 74,105, 46,207, 99,184, 59,190,140, 44,195, 39, 77, 59, 77,255,236, 94, 82,222,129, 94,239,197, 21, 40,181, 50, 73,254, + 98,134, 75, 22, 47, 49,200, 85,126,186, 94,175,244, 7,128,182, 11,231,206,252,113, 10,150,121, 22, 89,148, 84, 29,254,238,216, + 0, 81, 92,125, 57,103,234,217, 0,146,180, 96,208,199,231, 31, 24, 53,239,231,131, 31,155,118,154,222, 62, 57,221, 48, 79, 74, + 82, 79, 6, 22,139,101,215,252,249,243,203, 78,152, 48, 65,153,158,158,142,212,212, 84,100,100,100, 56,142,220,220, 92,132,135, +135, 99,219,182,109,214,236,236,236, 35,207,146,223,111,220,184,241,229,150, 45, 91,176,119,239,222, 62,227,198,141,147,135,135, +135, 19, 63,191, 68, 98,179, 90, 0, 80,154,146,146, 34,104,125,252,239, 7,135, 69,223, 73, 72, 76,174,106,179, 90, 32,240,214, + 66, 71,145,219,151,105,120,255,220,185,115,101,103,205,154,101,113,158,217,247,202,216,133,243,235,214,173, 27,184, 96,193, 2, + 75,231,206,157,111,139,131,210,189, 25,228,190,227, 58, 70,157, 59,119,166,186, 43,103,139,183,102,125, 35,114, 58,207, 46,236, +242,222,210,111, 42, 86,172, 24, 24, 27, 27,123,187, 40,222,152,152, 24, 99, 68, 68,132,165, 74,149, 42,185,114,185, 60,223,114, +101,179,229,197,196,196, 8, 97, 97, 97,150,106,213,170,229, 22,119, 48,190, 70,163,161,162, 21,204, 29,138, 51,139, 80, 46, 3, +215,175, 95, 63,199, 74,238,239, 87,172,120,191,127,255,254, 17,163, 71,143,198, 55,223,124,131,131, 7, 15,166,187,190,211,188, +121,115,236,219,183,239, 51, 0,159, 72,185, 91,130,132,103, 88, 96,125,247,221,170,223,225, 52,102,201, 29,166, 76,153,162,178, + 91,174,218,190,243,206, 59, 48, 26,141, 1, 15,180, 96, 9,105, 35,174,149,225, 78, 92,205,156, 57,115, 53,165, 52, 26, 64, 19, +142, 23,142,126,245,237,138,150, 30, 13, 75, 78,156,148, 48, 50,134, 33,185, 74, 57,253,107,241, 87,223, 21, 88,161,219, 62,168, +189, 50, 8, 78, 47,156, 59,211, 8,160,173,171,200,234,217,179,103,158, 43,167,136,193, 67,222,118,136,171,133,115,103,238,140, +173, 87,250,165, 9,131, 38,187, 21,101,147, 63,121, 91,199, 48,164,145,243, 24, 44,119,156,143, 10,137,243,111, 78,149, 74,181, +122,205,154, 53, 29,155, 54,109, 90,166, 86,173, 90, 76,122,122, 58,114,115,115,145,155,155, 43, 90,185,112,225,194, 5,225,246, +237,219,247, 84, 42,213,154,103,201,239,246,237,111,230, 71, 68, 68,236,154, 56,113, 98,255,212,212,212, 78, 25, 25,153, 65,191, + 44,159,130, 23,123, 13, 33,205, 59,246, 53, 88, 40,171,142,191,159, 84,101,207,175, 63, 4,254,182,246, 75, 88, 45,150,183, 8, + 89,114, 65, 92,166,193,141, 59,243,196,229, 24,170, 84,169, 98,112, 22, 40,165, 75,151, 54, 69, 70, 70,154, 99, 99, 99, 29,215, +221,205,206,115,231,247,226,114,218,199,119, 25, 60,133,167, 40,214, 92,151,127,208,106,181, 16, 69, 87,113,220,233, 60,123,210, +109, 65,233, 97, 22,161, 51,231,242,147, 84,238,124,111, 57, 33,178, 85,171, 86,181, 89,181,106, 85, 61, 0,127, 1,216, 1,192, +102,127,207, 49, 24,158, 82,250, 41,128, 79,165,252, 46,113,254, 87, 57,255, 19, 2,203, 19,196, 1,237, 0,152,119,223,125, 55, +195,104, 52, 6,244,239,223,191,200,119, 18, 19, 19,191, 89,177, 98, 69, 1,113,213,163, 71,143,215, 55,108,216,176, 43, 57, 57, +249,161, 28, 31,160,215, 76,217,251,243, 7, 1,205, 59, 79,127, 7,192,231,238, 45, 81, 16, 98,235, 69,188,180,112,238,204, 31, + 93, 68,214, 74, 0, 61,220,165, 27, 0,104,247, 98, 55,252,240,221, 2,113,236,150,230,236,241,123,191,245, 57, 57,201,237,236, + 67,127, 31,213, 36,187, 59, 70, 67, 26,131,245, 68, 80,181,106, 85,254,208,161, 67,163,135, 12, 25, 50,187,117,235,214, 81,221, +186,117, 83,148, 42, 85, 10, 42,149, 10,215,175, 95,199,254,253,251,173, 55,110,220,184,151,151,151, 55,186, 86,173, 90,252,179, + 24, 6,247,239,223,191,100, 95, 68,116,148,216,173,164, 82,107, 20,125, 7,190, 19,237,152, 69,184,246, 75,152, 77, 70, 0, 96, +189, 89,166,129,101, 89,197,169, 83,167,202,136, 86, 42,171,213,170, 18,175, 31, 63,126,188,140,184, 54,150,201,100,242,122, 22, +225,227,226, 60,115,230, 76,180, 56,219, 81,156, 45,200,178,172,226,196,137, 19,209, 34,167,217,108,246,106, 22,161, 82,169, 84, +156, 58,117, 42,154,231,249, 18,155, 69,232, 34,136,183,219, 15,177,114, 18,197, 21,177,119, 11, 74,221,131, 18, 36, 72, 2, 43, +127, 32, 56,165,180,105, 49,148, 46, 91,182,108,217,118,175,188,242, 74, 1,113,213,179,103, 79,126,211,166, 77,123, 34, 34, 34, +146, 24,134,185, 84, 92,119, 56,198, 96,229, 47,168, 94, 0, 12,195,156,110, 82,191, 26, 24,134, 57, 61, 97,208, 32,243, 20, 44, + 43, 32,178, 54,255,184,174,253,255,217, 59,235,240, 40,174, 54,138,159,187,238,113, 39, 36, 4, 66,132, 4,119,151, 6, 45, 86, +138,107, 75,177,182,208, 66,113, 40, 86,172, 88,241, 66,129, 2,197,161, 20,119,119, 11,154,144, 0, 33,238,110,235, 50,247,251, +131,132, 47,164,145,221, 64, 91, 74,231,247, 60,243,236,238,157,153, 51,119,252,236,123,173,180,231, 33, 0,216, 59,187, 99,224, +103, 99, 49,240,179,177,182, 0,154, 3,165,183, 62, 44, 43, 31, 44,127, 29,205,154, 53, 75, 10, 11, 11, 27,120,246,236,217, 1, + 87,174, 92, 9, 82,169, 84, 85, 8, 33,144, 72, 36,209, 58,157,238,156, 72, 36,218,253,161,154,171,210,208,235,245,198,169,115, +151,109,231,114,249, 38,134,209, 19,189, 94,255,153, 37,247,249,212,169, 83, 57, 40,161,110,213,216,177, 99, 75, 76,255,167, 52, +167, 79,159, 94, 98,171,191,177, 99,199,150,217, 26,176, 52,190,251,238,187,119,214,138,208, 76,211,197, 26, 41, 22, 22,214, 96, +253, 25, 14,135,243,168,132,214,130, 4, 0, 45,169,133, 30,165,212,200,229,114,231,218,216,216,140, 82, 42,149,167,122,245,234, + 53,190,119,239,222, 38,224, 85,197,247,138,102, 62, 43, 71, 57,187, 77,183, 31, 39,100,231,107,215, 20,159, 87, 60,210, 84,104, +178,214,173, 90,178,254,143, 3,123,122, 39, 39,198,175, 47,109,223, 74, 51, 82,165,181, 62,204,201, 85,207,109,211,237,199,111, +179,114,213,108, 29,172,127, 32,146, 5, 96, 7,128, 29,197, 7,123,254, 47, 64, 41,213, 18, 66, 38, 17, 66, 10, 35,184,147, 34, + 47,174, 90,255,255, 63, 55,107, 30, 21,157, 87, 70,244, 42,201,156,129,155, 75, 90,175,172,121,127,129,102, 74, 25, 3, 55,151, + 69,138,133,122, 41, 0, 32,224,115, 83, 75, 27,212, 89,192,231,166,190,163,115, 72, 10,154,166,207,101,239,104, 22,150, 15,220, + 96, 21,154,159,210, 40,173,159,171,178, 48,153, 76, 63, 2,248,241, 93,102,254,201,243,188, 95, 0,252, 98,238,242, 5,117,174, +134, 22, 76, 37,231, 51, 35,196,226,125,235,221,187,247, 6, 0, 27,216,203,233,239, 97,255,254,253, 38,246, 40,188,241,130, 94, + 79, 8,249,181,208,112,153, 59,175,216,114, 71,254,130,124,253, 21,154,167,255, 78,189, 99, 97, 70,231,191,233, 28,178, 17, 45, + 22,150,255,130,193, 98, 97, 97,249,215,153, 44,109, 69,230,177,176,176,176,176,252, 53, 16, 0, 65,165, 60,148,205,110, 29, 64, + 8, 9,170,192, 11,225, 28,171,201,106,178,154,172, 38,171,201,106,178,154,255, 45,205,242,180,139,174, 79, 8, 25, 73, 41,253, + 5,255, 70,232,171,190,166,254,146, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,102, 5,183, 51,242,239,216, +206, 95, 49,113,192,194,194,194,194,194,194,194,194,242, 78, 97,235, 96,153, 9,169,220,243,123,128, 78, 43,136, 89, 46,161,177, +135,230,176, 71,165,130,199,146, 16, 7, 0, 93, 21, 98, 65,247, 0, 27, 65,211, 39, 25,154, 27, 74,189,233, 40,128,195,148,210, + 44,246, 8,177,176,252, 13,247,161,109, 64,101, 16,242, 57, 64,255,223,140,146,161,161, 52,251,233,214, 55,150,179,169,241, 25, + 56, 36,160, 72,146, 26, 20,155,104, 86,104, 92, 41,247,119, 97,133,125,155,136,136, 8, 79,111,111,239, 24, 0,217,197, 22,251, +211, 60, 74, 41, 45,227,153, 65, 28,170,214, 27, 34, 21, 75,191,212,233,116, 94,114,133, 34, 53, 51, 35,109, 67,102,236,227,117, + 69, 22,179,186,125,251,182,107,227,198,141, 19, 1,228,149,167,201,194,242,222, 27, 44,226,243,169, 23,140,156,161,160, 24, 4, +130,135, 52,114,255,167, 21,210,241,238, 85, 9, 12,175, 17,128,122, 0,173, 39,147,136,235,170,117,250, 84,134,210, 33, 52, 98, +239, 3,139,245,170,246, 57, 14,160, 75, 41,115,231,210,200,125, 22, 26, 36, 58,253,238,149,131, 34, 27, 41,129,119,253, 79, 38, +163, 72,143,203,239,153,121,145, 0, 24, 70, 8,249, 72, 42,149,250,168, 84,170,104, 74,233, 99, 0,235, 41,165,137, 21,212,228, + 0, 24, 46,151,201, 58,121, 42,132,245, 98,211,115, 18,242, 12,166,171, 0,150, 90,106,136, 8, 33, 66, 79, 91,217,229,149,253, +219,248, 55, 13,168, 14, 38,244, 10, 52, 58,125,247, 75,241,249,221,103,223, 76,156, 64, 8,169, 71, 41,213,153,169,229, 10,128, + 71, 41,141, 43,248, 45, 3, 16, 8,160, 42,128, 72, 0, 33,148, 82,229, 91, 30,207,127,133,166,187,187,187, 27,195, 48, 95, 56, + 59, 59,127,156,146,146,114,156,195,225,108,142,143,143, 79,252,135, 47,199,141,133,245, 39,204,253, 4, 48,202,146, 13, 72, 36, +146, 20,141, 70,227, 4, 0, 98,177, 56, 85,173, 86,255,101,173,254,254,206,109,253, 61, 15, 11,140, 56,115, 45,164, 83,209,164, + 14, 45, 2,254,188, 28,135, 4,156,185, 22,218,234,205,229, 2, 77, 37, 61, 3, 11,122, 77,197,220,185,115,201,188,121,243, 62, +171, 86,173, 90,117, 14,135,243,108,214,172, 89,111,116, 97, 83,124,222,236,217,179,255,223,227,106, 9,154,238,190,205, 14,247, +235,223,167,205, 87, 35,135,201, 43, 57,202,145,148,174,180,255,121,203,142,101, 59,118,236,234,250, 69,191,246,157, 0,224,135, + 31,126,232, 89,185,114,229, 42, 92, 46, 55,234,251,239,191,255,173, 44, 77, 22,150,247,214, 96,145,128, 62, 50,104,104,111,128, + 12,107,221,180,126,139, 81, 67,186, 17,202, 21, 99,192,136, 41, 70,139,181,170,124, 38, 2, 87, 61,191, 86, 96,192,248, 62,221, +130, 56, 13, 2,171,192,213,209, 26,224,240,177,241, 68,180,253,154, 37,223,175, 7,208,184, 2,217,236,242,242,230,110, 36,101, +155, 64, 8, 64, 8,192, 33, 64,190,134, 65,135,158, 67,103, 91,110,144, 8,199, 70, 74, 48,126,183, 6, 0,225,190,167,230,170, +158,163,163,227,186,113,227,198,217,214,170, 85,203, 85, 44, 22, 75,213,106,117,245,136,136, 8,175,153, 51,103,182, 39,132, 44, +166,148, 30,180, 80,211,195,219,221,109,223,154,241,195, 27,213,174,234, 9,190, 46, 31,140, 86, 89,249,121,196,139,166,163,215, +239, 31, 65, 8,233,111,225,112, 9, 51, 54,142, 29,226, 95, 83, 1,232, 67,174,131,207,229, 66,106,109,139,246, 60, 46,184, 4, + 53,134,158,142,158, 14, 51,198, 99, 43,232,193,124,122,193,243,119, 23,151,203, 61, 27, 20, 20,228,245,197, 23, 95,144,250,245, +235, 35, 56, 56,184,234,238,221,187,131,120, 60, 94,148,201,100,122, 12,224, 25,165,212, 96,230, 62,243, 1,248,114,185,220, 90, +239,179,166,155,155,155, 68,167,211, 13,117,119,119, 31,217,189,123,247, 90,221,186,117, 35,190,190,190, 8, 15, 15,175,127,242, +228,201,217,117,234,212,121, 28, 31, 31,255,139, 80, 40,220,158,152,152,168, 54, 71,179, 95, 77, 18,190,247, 9,245,171,232,252, + 98,251, 60, 18,128, 91, 65, 64, 99,174, 25,159,137, 0,230, 82, 74,147,204,189,152, 52, 26,141, 83,225,251,147, 16,226,244, 87, +222, 95,150,108,139, 16,242,148, 16, 98, 87,240, 29,101,125,114, 56, 28, 24,141, 70,165,209,104,172, 86,142,166, 47, 96, 81,181, + 14, 74, 41, 45,171, 3,103, 9, 0,116,104, 30,144, 9,130,208,194, 8,214,159,150, 98,104,232,107,227, 69, 17,112,230,122,168, +221, 27, 81,175, 98,204,157, 59,151,204,158, 61, 27,115,230,204,233, 6,160, 37,195, 48, 87,253,253,253, 87,191, 33,201, 48,175, +231,205,158, 61,123,213,220,185,115, 9,222, 24,245,246,255,216, 85,169, 51,248,147, 79,122,180, 89, 48, 99,172, 60, 33, 67,143, +135, 81,106,216,201, 5,152, 61,105,140, 80,171, 53, 52, 93,255,219,142,145,107, 23, 79,217,100, 50,153,218, 1,104, 96, 50,153, +238, 1,248,173, 44, 77, 22,150,247,202, 96, 17, 66, 8,170,125,218, 10, 38, 12,243,172,236,220,123,220, 23,125, 37,129,254,222, +208, 64,142,232,116, 19, 78, 28, 59, 9, 0,123, 45,139, 50,245,107,192, 19, 96,251,146, 57,147,252, 90, 54, 10,196,147, 4, 3, +238, 37,152,160,138, 50,128,203, 49,192,196, 80,128, 66, 83,209,157,139,207, 50,226,218, 51, 29, 56, 4,224,114, 0, 14,135,128, + 91,209, 90,103, 38,221,243, 31,182, 6, 7,166,167, 48,128, 73,247,252, 61, 52, 87,237,124,124,124, 86,206,155, 55,207, 37, 37, + 37,197,238,222,189,123, 16,137, 68,176,181,181,229,185,185,185,249,173, 92,185, 50,103,236,216,177,147, 8, 33, 15, 40,165,209, +102,106,250,119,105, 80,235,198, 47, 75,126,176, 54,220, 62,137,236, 61,191,131,203,161, 16,200,228,240,146, 72,112,242, 19,111, +187,222,199,162, 14, 18, 66,252, 41,165, 9,230,104,122,187,216,119,168,229,239,143,172, 63,214,226, 97,150, 6, 39, 19,213,248, +188,125, 19,212,180,147,160,165,209, 4, 23, 25,191, 93,121, 6,139, 16, 98, 11, 96,138, 78,167,227, 8, 4, 2, 34, 22,139, 7, + 47, 88,176, 64, 63, 96,192,128,248,194,101, 90,182,108,137,150, 45, 91,146,188,188,188,170, 23, 47, 94,172,186, 99,199, 14, 35, + 33,228, 41,165,244,112,233, 17, 10,105,172, 70,163,174, 44,150, 72, 84, 63,175, 95,191,188, 85,171, 86,140, 72,244,255,209, 91, + 42,162, 9, 0, 54, 54, 54,155,124,124,124,200,180,105,211, 18,223,149,166,151,151,215,153,150, 45, 91,182,237,208,161, 3,175, +121,243,230,112,115,115,123, 61,207,193,193, 1, 45, 91,182, 36,113,113,113,181,175, 94,189,186,254,204,153, 51,171,189,188,188, + 46, 70, 69, 69,117, 40,247,141, 92,206, 24,164,229,205, 47,246,118,255,165, 96, 56, 24,115, 13,211, 47, 37,116, 96,252,239, 12, + 14, 17, 34,223,184,113,163, 83,225,152,137, 6,131, 1, 38,147,233,245,103,225,196, 48, 12, 76, 38, 19, 22, 44, 88, 96, 50,243, +152, 42, 81,208,169,115,145,137, 41,233, 83, 40, 20, 58,152, 25,201, 10,117, 21,101,215,144,201,100,158, 0,186,248,248,248, 76, + 41, 58,187,186,227,171, 79,165, 82, 25,147,164,181, 9, 5,208,170,172,203,125,222,188,121, 67,231,204,153,211, 3,255, 31, 83, +178, 86,159, 62,125, 46, 22, 91,174, 86,193,167,146, 16,114,137,195,225, 28, 5,176, 21,192,159, 34,226, 82,169,124,212,184, 47, +191,144,199,167,235, 49,255, 96, 58,182, 94,201,197,208,150, 10,140,239,108,141,129, 3,250,201,246,255,126, 96, 20,128, 77, 69, + 86, 9,247,247,247, 39, 97, 97, 97,172,185,250,176,104, 8,192,177,200,111, 29,128,194,161,173,210, 11,238, 11,251, 98,233, 69, +151, 43,252, 76, 43, 72,119, 44, 88,143, 22,209, 77, 3,112,247,157, 26,172,194, 49,176,202, 28, 11,203,171,247,137,225, 3,186, +119,250,248,163,102,224,136,109,241, 60, 21,184, 25, 75,193,227, 24,192, 1,197,237,235, 23, 41,120,204,246, 98, 15,131, 82, 35, + 27,196,171,247,119,181,106, 6,254,184,121,201, 55,220,167,169, 60,108,189,170,130, 94,147,143,180,228, 88,164, 38,198, 32, 41, + 62, 18, 9,177,145,143, 1, 50,219, 92,205, 63, 63,140, 0, 19, 83,240,159,143, 41,120, 61,128,148,244,208, 42, 95,211,160, 12, +171,230, 87, 51, 48, 75,104, 2, 12,202, 48, 51, 30,132,239,124, 16,204,210, 52, 9, 33,237,189,189,189,151,206,152, 49,195, 61, + 36, 36,196, 74,169, 84, 42, 79,158, 60,121, 57, 38, 38,198,217,197,197, 37,110,204,152, 49,205, 42, 85,170,228,212,179,103, 79, +233,190,125,251,102, 0,248,194, 12,205,192,238, 77,234,222,220,178,250, 39, 89,198,254, 53,208, 69, 60,194,137, 36, 37,174,167, +168,104, 85,107, 17,249,186,182, 35,228, 34, 30,126,104,238, 38,239,242, 71,196,143, 0, 6,154,179,239, 1,149, 93,171, 25,212, + 42,104,212, 6,108, 15,207, 84,159, 77, 80, 58, 17,155,232,180,213,189,155,136,185,105,137,240, 84, 8,171, 87,228,120,138,197, + 37,143,114, 98,107,107,139,214,173, 91,195,223,223,159,215,170, 85,171, 90, 0, 14,151,166,169,215,235, 92, 25,134, 66,161, 80, + 72,236,237,237,109, 21, 10, 69,134, 94,175,127, 43, 77, 0,176,179,179,251,180,117,235,214,188,221,187,119,167, 71, 69, 69,221, + 30, 48, 96, 64,164,149,149,213, 27,209, 94,153, 76,134,234,213,171,227,251,239,191,231,117,234,212,169, 92, 77,103,103,231,246, + 59,118,236, 0, 33,228,245,203,186, 56,158,158,158,112,113,113, 65,151, 46, 93,120,159,126,250,105,251,178,142,103,191,154, 36, +188,208, 60,245,173, 73,202,124, 49,245,173, 73, 40, 1,158, 21,143,100, 21,215, 44,136, 96,205,125,211,196,150, 94,204, 86,210, +242,102,156,247,212,194,104,146, 88, 44, 78,125,155,251,168,128, 82,139, 53, 69, 34,209,235,168, 83,241,109,149,164,201,225,112, + 48,115,230, 76, 16, 66,192,231,243, 33, 16, 8, 74,252,108,211,166,141,165,249,140, 35,132,112, 4, 2,193, 20, 30,143,247,133, + 86,171,117, 23,139,197,137, 38,147,105,155, 86,171, 93, 80, 16, 1,181, 41,233,218, 45, 77, 83, 38,147,121, 62,127,254,220,167, +180,131,162,213,106, 81,171, 86, 45, 64,139,167,101,105, 70, 68, 68,120, 86,171, 86,205, 23, 64,225, 80,106, 87, 40,165,173,138, +252, 46,202, 21, 74,105,231,130,239,207, 94,190,124,233, 89,104,176,138,106, 26,244,122, 47,119, 39, 43, 60,140, 86, 99,235,149, + 92,156,159,225,134,143, 22, 36,162, 87, 61, 30,252, 61,228, 48,234, 13,190,125,250,244,217,142, 87,215,239, 93, 0, 61,251,244, +233,227,199,229,114, 47, 0, 56, 4, 32,231,239,126, 38,179,154, 21,254, 99, 82,150, 23,113, 36,132, 28, 43,178,253,174,133,191, +167, 78,157, 58,125,209,162, 69, 33,132,144, 99, 69,211,139, 46, 87,244,179, 96, 91,199, 40,165, 93,167, 77,155, 22,184,120,241, +226,133,133,203,254, 35, 17, 44, 0, 86,105, 26, 25,174,198, 90,129,199, 53,129,199, 33,224,113, 1, 80,130,152,232, 8,228,229, +102, 95,163,145,191, 71,153, 23,185,234,211,188, 78,221, 90, 75,118,173,156,204,249,245,170, 10,217, 74, 13,194, 30, 92,194,221, + 75,135,146, 77, 70,211, 33, 16,122, 15,224, 4, 35,146, 9,167,180,226,189,118,191, 50, 88, 5,166,234, 13,147,245,225, 64, 8, +233,236,231,231,183,104,230,204,153,158, 15, 30, 60, 80,228,230,230,166,237,220,185, 51, 92,171,213, 62, 0,176, 42, 54, 54,182, +245,170, 85,171,164,203,150, 45,235, 80,171, 86, 45,223,253,251,247,171,204,208,172, 61,105,216,192,155, 95,140,251, 86,252,116, +223, 58, 8,159, 6, 99,230,163,116,211,249, 36,213, 12, 0, 43, 17,151,223, 60, 77, 99, 60,251, 83,235,202,156, 42, 10, 1,188, +109,132,109,204,205,175, 88, 40,226, 81,158, 24, 58,157, 17,121, 58, 70, 71, 41, 85,246,110,228,175,167, 50, 7, 49, 0,240, 56, +132,103,198,141,157, 69, 8,249, 81, 40, 20,206, 36,132,208,134, 13, 27, 62,172, 89,179,102,190,173,173, 45,212,106, 53,180, 90, + 45, 4, 2, 1,212,106, 53, 98, 98, 98,112,251,246,109,216,218,218, 90,116, 92,243,243,243,161, 80, 40,192, 48,204, 91,107,154, + 76, 38,178, 97,195, 6, 89, 72, 72,136,236,192,129, 3,206,227,199,143,207,168, 81,163,198,189,126,253,250,189,112,114,114,210, + 62,122,244, 8, 55,110,220, 64, 86, 86, 22,154, 52,105, 98,150,166, 78,167, 3,143,199,131, 90,173,134, 72, 36, 2,143,199,131, +209,104, 4,195, 48,175, 77, 87,126,126, 62, 50, 51, 51, 33, 16, 8,160,211,149, 93,173,173,208, 44,245,173, 73,232,190, 83, 55, + 82, 97, 98, 0,125,174, 1,218,156, 87,147, 46,199, 0, 77,182,161,239,132,229,181,247, 61, 49,175,215,241,194, 8, 86, 81,202, + 42,102, 43,105,249,242,120,215,245,160,202, 42,214,204,206,206,150,216,216,216, 76, 49, 39, 34, 71, 8, 1,151,203,133, 64, 32, + 0, 33, 4,173, 90,181,194,240,225,195, 81,175, 94, 61, 68, 68, 68, 96,207,158, 61,184,123,247, 46,248,124,254,235,229,205,165, + 77,155, 54, 92,177, 88,124,163,123,247,238,129, 51,102,204, 16, 87,169, 82, 5, 79,159, 62,245, 88,188,120,241,148,115,231,206, +245, 32,132, 52,160,148, 50,229, 10, 21, 22,253,189, 42, 22,236,162,213,106,241,244,233, 83, 75,214,249,115,132,218,219, 59,134, +195,225,188, 96, 24,230, 42,128, 90,148,210, 86,132,144,147, 0,100,197, 22, 85, 82, 74, 59, 19, 66,114, 1, 60,230,112, 56,207, + 24,134,137, 41,169,186,148, 66,161, 72,139, 79,205,117,182,151,139, 49,164,133, 28, 31, 45, 72, 68,239, 6, 34,136, 4, 4,225, + 81,201,240,174, 86,133, 60,188,118,184, 65,129,185,106,152,148,148, 4, 0, 13, 0, 68,197,197,197,185, 22, 26, 44,150, 15,131, +226, 38,168,208, 56, 45, 90,180,168,107, 73,166,170,132,123,243,141,244,197,139, 23, 47, 44,242,251,157, 54,178,226, 21,117,142, +101,223, 88,232,117,236,224,238, 91, 31,233,137,103, 96,253, 22, 69,162, 65, 20,193,183,111, 0,160,219,204,122,128,185,117,147, +112,164,178,109, 27, 22,142,229,108,188,164, 66, 92, 98, 42,110,156,216,134,180,164,232,173, 0, 29, 79, 35,247,231,190,245, 67, +178,106,159, 64, 39, 7,123,104,244, 20, 12, 5,240, 39,147,245,193,152,171,110,190,190,190,243,110,222,188,233,169,209,104, 20, +215,175, 95,207,222,177, 99,199, 11,157, 78,183,153, 82,186,179, 96,153, 35,233,233,233, 63, 80, 74,161, 80, 40,120,124, 62, 95, + 82, 86,197, 79, 66, 72,189, 73, 95, 12,189,246,227,134, 45,226, 23, 79, 30, 98,213,129, 19,200, 86,169, 76,151, 82,213, 61, 41, +165,133,255, 10, 46,120,219,136, 18, 40,104,101, 62,135,192, 85,198,119, 33,132,136, 41,165,229, 22,231,186, 86,246,228, 24, 60, +188,112,213,168, 65, 37,123,145, 16, 0,170,250, 6,112, 31,168, 13,184,254,232, 41, 28,228, 86, 2, 51,111,178, 89,132, 16,231, +237,219,183,115, 12, 6, 67,126, 68, 68, 4, 92, 92, 92,224,236,236, 12,107,107,107,132,133,133,225,252,249,243, 8, 15, 15, 7, +195, 48,168, 83,167,142, 69,199, 54, 35, 35, 3,143, 30, 61, 66,151, 46, 31,143, 79, 75, 75,181,178,181,179, 87, 94,187,122,101, + 89, 69, 52, 25,134, 33, 0, 16, 24, 24,136,192,192, 64,113, 66, 66,130,251,177, 99,199,156,230,207,159, 31,235,233,233,185, 75, +173, 86,191, 17, 41, 48,215, 96, 21, 24,150,215,230, 79, 44, 22, 67, 32, 16, 32, 55, 55, 23, 41, 41, 41,200,203,203,123, 85,102, + 99, 99, 83,174,193,122,211, 17, 50,192,142, 22,247,254,148, 94,115,152,147,133,215,231,159, 34, 82,239,114,249,191,232,225, 93, +106,177, 38, 33,100, 16,128, 41,102,238, 11,140, 70, 35, 4, 2, 1, 26, 55,110,140, 53,107,214,224,238,221,187, 56,116,232, 16, + 60, 60, 60, 48,108,216, 48,112, 56, 28,132,132,132, 88,154, 69,230,230,205,155, 83,122,246,236, 25,184,125,251,118,113, 76, 76, + 12,194,195,195, 97, 99, 99,131, 53,107,214,136, 70,142, 28,233,125,241,226,197, 89, 0,150,150,187,175, 69, 90, 11,186,185,185, +245,173, 85,171,214,159,150,113,113,113,177, 62,125,250,180, 83,161,241, 42,222,194,176, 4,178,103,205,154,245,147,191,191,255, +202,130, 98,193,150, 0,100,148,210, 54, 7, 14, 28, 32, 0,208,187,119,111, 74, 8,185, 84,176,252,227,253,251,247,183, 13, 11, + 11,163,115,230,204, 41,241,153,148,150,154,180,225,167, 53, 27,127,250,113,238, 36,225,132, 46,214,232,221,128, 15,177,128,192, + 74,202,199,130,213,155, 12,247,111, 95,121,228,234,234,122, 12, 64,207,164,164, 36,184,186,186,230, 3,120,198,229,114,163, 76, + 38, 83, 34, 91,199,253, 95,247, 94, 43,169,161,195,200,194,123,178, 52,227,100,137, 65, 43, 26,225, 42,100,218,180,105,129,139, + 22, 45,186,243, 46,247,133, 83,100,163,101,255,133,226,113, 92, 93,156, 29,236,166, 14,107, 14,134, 1,140, 38,192,104,162, 80, +170,212,120,250,228,174, 10, 98,114,192,172, 45,138,132, 75,230,207,248,182,234,195,120, 14, 18,179,244,184,124,120, 35, 77, 75, +138,254,148, 70,238,251,252, 93,153, 43, 23, 39,135, 75,187, 55,254,128,187,145, 58,152,152, 87,254,138, 97,232,235,239, 31,200, + 69, 88,221,193,193, 97,217,173, 91,183,170,136, 68, 34,197,243,231,207, 77,251,247,239, 79,212,233,116,235, 11,205, 85, 1,131, +234,215,175,111,144,201,100,200,207,207,215,234,245,250,252, 50,204,149,123,155,122,181,175,252,184, 97,139, 88,163,211, 33, 71, +173, 5,215,222,169,184,185, 2, 33,164, 89, 91,159, 74,149,136, 88, 1, 10, 32, 58, 87,159,104,142,185, 2, 0,185,181, 13,199, +189, 65, 27, 52,248,102, 13,114,137,130, 2,128,189,107, 37, 78,219, 47, 23,160,211,170,203, 80,114, 20,150, 88,224,196,129, 3, + 7,198, 7, 4, 4,228,248,251,251,231,100,100,100, 32, 52, 52, 20, 89, 89, 89, 88,181,106, 21,158, 62,125, 10,134,121, 37, 87, + 82,113,137, 25,198, 8, 89, 89,153,114, 74, 41,178, 50, 51,100, 51,102,204,176,174,136,166,201,100,122,227,222,170, 84,169, 18, +198,140, 25, 35, 80,169, 84, 54,177,177,177, 86, 69,231,153,171,169,211,233, 10, 59,225, 3,165, 20, 58,157, 14, 57, 57, 57,208, +233,116,120,241,226,197,107,115, 85,176,125,203, 12,150, 62,183,228, 74,246,234, 12,131,133, 15,178,215,189, 47, 75, 36,146,148, +194, 7,167, 88, 44, 6, 33,164,164, 98,182,119,210, 91,115,225,182, 8, 33, 84, 34,145,164, 84,192, 20,150,187, 63,102,158,119, + 8, 4, 2, 12, 31, 62, 28,119,238,220, 65, 68, 68, 4,184, 92, 46,148, 74, 37, 84, 42, 21,218,183,111, 15,161, 80,104,105, 4, +139, 10, 4,130, 65,211,167, 79, 23, 71, 69, 69, 33, 61, 61,189,176,146, 60, 76, 38, 19,198,143, 31, 47, 17,137, 68,131, 44, 13, +213, 39, 38, 38,118,124,254,252,185,111,241, 41, 57, 57, 57,167,104,157,193,138,114,224,192, 1,210,187,119,111,218,187,119,111, + 90,104,180,204, 37, 59, 62,116,195,161, 35,199,206,126,247,253,146,124,149, 50, 15,213,220, 36,200,207,203,193,130, 69, 63, 26, +110,222,188,122,105,202,248,209, 77,247,239,223,191, 24,192,179,130, 85,158,237,223,191,127,232,247,223,127,255, 27, 10,186,107, + 96,249, 87, 69,168, 72, 89,247,222,187, 40,198, 43, 73,163,160,152, 80,242,151, 68,176,202,124,232,120,247,171,235,236, 96,127, +113,251,218,185,242, 99, 79,128,248,184,104,164, 37,197,160, 65,211, 54,120,250,228, 33, 24,131,233, 32,125,190,191,220,102,230, +196,171,143,143,127,141,128, 47, 91, 55,173,137, 37,199,242,241, 60,248, 52,178,211,146,214,210,168,125, 7,223,197,206,144,170, +125, 2,157, 29, 29, 46,253,182,110,158,221,201, 80, 14,226,226,162,113,248,183,149, 48,232,255,244,238, 63, 97,241, 67,155,209, + 9,243,179, 83,160,203, 51, 65,204, 81,137,223,131,139,240,133,163,163,227,246,159,126,250,105,116,211,166, 77,165, 3, 6, 12, +120,158,149,149, 53,159, 82,186,175,200,203,162,157,175,175,239,196,181,107,215,122,199,197,197,225,252,249,243,207, 1,220, 43, + 67, 51,158,203,229,174, 63,255,219,166, 73,146,170,126, 88, 53,253, 59,227,129,187,161,221, 41,165, 39,139,104,250, 7,213,242, + 57, 54,127,226, 87, 28,230,254, 41, 60,138, 73, 65,100,142,246,188,185,249,142,200, 86, 26,248, 34, 9,228, 46, 85,240, 60,223, + 36,224,241,120,119,190,248, 98,184,128,195,229,129,195, 19, 32, 52, 75, 99,201, 75, 92,126,231,206, 29, 14,151,203,125,195,152, + 23,141, 8, 89, 26, 25,178, 4,115, 53,139, 27,172, 66,140, 70, 35,169,168,166, 86,171, 69, 73, 62,185,164,186, 88, 12,195, 88, +182,255,186,156,146, 93,158,198, 50,131, 85, 52, 34, 85,180,104,176,176,190,156, 70,163,113,146, 72, 36, 41,133,197,124,239, 42, +130,245, 54, 45, 11,203, 42,166,180, 36,127, 28, 14, 7, 12,195, 64, 32, 16,160, 78,157, 58, 56,118,236, 24,236,236,236, 96,101, +101, 5, 43, 43, 43, 72, 36, 18,216,219,219,191, 54, 88, 28,142,217,173,111,168, 86,171,245,240,240,240,192,139, 23, 47, 32, 22, +139, 95, 79, 34,145, 8,129,129,129, 80, 42,149,149,240, 65,197,234,129, 17,253,130,122,172,219,241,199,144, 99,199,142,127,169, +215,106,106,250,249,249,210,123, 55, 47, 62,154, 50,126,116, 39,214,146,252,231, 34, 92,199,138,154, 36, 66,200,177,169, 83,167, + 78,175,168,222,212,169, 83,167,151, 20,209,122,103, 6,171,208, 49,150,228, 28, 11,205,213,214, 53,115,172,254,120, 0,196,199, + 71,225,236,190,213,121, 6,189, 46,139, 97, 12,158,145,225, 15, 1, 14,182,153, 23, 47,163,141,122,116,105, 75,206,134,232,144, +155,157,134,103,247, 78, 71, 67, 45,156,246, 46,205,213,246,117,115,237,142, 62, 33,136,139,139,198,201, 61, 43,115, 12, 70,125, + 59, 26,185,255,193,219,104, 15, 22, 10,123,244,171, 97,211,117,120,139, 68,152, 90,154, 48,232,105, 88,103,183,150,164, 71,226, +213,178, 91,122,253,213,164,165,165, 45,144,203,229,156,165, 75,151,126,174,209,104,230, 80, 74, 15, 20,185, 8,219, 87,171, 86, +109,201,134, 13, 27,220, 99, 99, 99,133,215,174, 93,203,188,116,233, 18, 5,176,168, 28, 51, 48,153, 16,194,173, 87,165,210,216, +251,209, 9,221, 41,165,167,138,104, 6,118,173, 31,112,125,203,162, 89, 10,195,245, 3,200, 79,138,195,180,235,241,185, 0,166, +153,121, 99,216, 57, 56, 56,144,193,131, 7, 51,121,121,121, 16, 8,133,140,193, 96,224, 54,107,214,204,244,237,183,223,114,146, +147,147,145,155,151,207, 35,132,216, 81, 74, 51,203,209,154, 7, 96,124,179,102,205, 72,227,198,141,111,175, 92,185,242, 76, 89, + 38,165, 34, 17,172,114, 3, 61,102,106, 50, 12, 83,226,219,211, 96, 48,144,138,106, 22,141, 96,149,103,176, 44,142, 96,105, 75, +139, 96,165, 89, 28,193, 42,201,172, 20, 53,135, 69, 13, 80, 69,234, 96,253, 5, 15,239, 82, 77,148, 37,249, 43,172, 7, 39, 16, + 8,240,240,225, 67, 84,174, 92, 25,122,189, 30, 10,133, 2, 10,133, 2,114,185, 28,121,121,121,224,243,249,176,112,159, 25,177, + 88, 28, 27, 26, 26,234,235,232,232, 8,147,201,244,134,201,122,254,252, 57,100, 50, 89,130,165, 17, 44, 55, 55,183,211, 5,173, + 8,223,192,197,197,197,250, 93, 28,215,162,145,171,222,189,123, 87,168, 28, 97,221,162, 73, 59, 0,236,232,211,167,207,246,199, + 55,143, 55,112,117,117, 61,238,239,239, 79, 0,128,109, 49,248, 97, 69,175, 74, 41, 81, 75, 43, 22,121,210, 21,249,157, 6,128, + 20,252, 78, 43, 98,192,138,126,215,149,144,150,177,104,209,162,139, 69,234,111,165,253,109, 17, 44,226,221,175,174,147,189,221, +197,205,171,230, 88,237, 11, 6, 18,226,162,112,249,224,154, 28,163, 73,223, 14, 12, 77,186,121,238,224, 1, 16,168, 16,121,224, + 50,176,207,140, 71, 3,234,213,171,225,137, 67, 33, 6,164,197, 63, 7,165,204, 86,154,242,155,234,173, 31,138, 5,230,106,235, +154, 57,118,127, 60, 36,136,143,139,194,217,125,171,115,140, 38,125,187,138,116, 82, 90,200, 23,132,216,114, 20,210,159,135,116, +108,212,199,179,106, 37, 48,212, 0, 70, 64,209,107,178, 3,239,217,125,213, 33,143, 14,220,125, 76, 62,243,101,252,205,127,174, +247,241,252,252,252, 31, 8, 33,127, 80, 74,159, 22,121,184,119,246,246,246, 94,248,243,207, 63, 87, 73, 72, 72, 80,220,191,127, + 63,247,151, 95,126,137, 98, 24,102, 30,165, 52,213,140,139,252, 59, 66,200,230,162,125,232, 16, 66,106, 79,250,124,224,205,129, +159,125, 33,142, 58,183, 3,182, 81, 79, 49,241,122,162,233, 89,150,110, 0,165, 52,217, 28,115, 37, 18,137, 14,156, 56,113,226, + 69,189,122,245,136, 82,169,132,193, 96, 64,122,122, 58,254,248,227,143, 80, 74, 41,108,109,109,113,226,196, 9,102,224,192,129, + 7, 8, 33,189, 75, 51, 89, 69,186,105, 32, 5,221, 52, 52, 57,117,234, 84, 88,167, 78,157,226, 75, 50, 41, 34,145, 8, 26,141, +101,189,125,148,214, 42,177, 34,154,165, 69,176,138,167, 91,162, 89, 88, 76, 89, 88,185,189,120,122, 33, 92, 46, 23, 12,195,252, + 41,189,108,131,149, 93,178,145, 82,166, 86, 56,130, 85,180,181, 95, 69,204, 77, 81,202,235,240,179, 34, 45, 11,223,117, 4,171, +240, 92, 8, 4, 2, 28, 57,114, 4,159,125,246, 25, 76, 38, 19,164, 82, 41,228,114, 57,100, 50, 25, 14, 30, 60,136,194,110, 28, + 44,201,162,193, 96,216,185,104,209,162,233, 27, 54,108,144, 80, 74, 33, 20, 10, 95, 27,172, 57,115,230,168,245,122,253, 78,115, + 12,214,235, 30,218, 25, 26, 90,221,177,236, 86,132, 37,173, 83, 74,125, 44,155,121,243,230, 13,101, 24,166, 7,138,117,197, 80, +252,106, 42,248,172,213,167, 79,159,139,101,117,211, 0,192,118,222,188,121, 35, 24,134, 41,236, 5,245,141,214,130, 69,150, 43, +124,151,248,246,233,211,103,123,241, 86,132, 44,255,122,238,254,219, 50,204, 43,221, 92,245,241,119,178,119,184,184,105,229, 28, +171, 93,119,128,196,184, 72,220, 56,178, 54,199,196, 24,138,154,150, 22, 22,254, 61,172,231,230,100,131,204, 91,106,228,166,199, + 2, 20,247,223,222, 92,245,171,238,228, 96,127,105,203,234, 57,118,251, 31,112,144, 16, 27,133, 75, 5, 38,240,109,204,213, 96, +161,176, 71,160,143,251,150,254,157, 91,216, 90, 19, 3,140, 49, 97,216, 60,172, 47,130,187,233,209,188,159, 53, 26,117, 81,192, +187,174,184,239,137, 77,153, 31,185,181, 36, 95,252,147,209,172, 98,230,170, 91,149, 42, 85,230,222,190,125,219,147, 97, 24,197, +229,203,151,243, 54,108,216, 16,169,209,104, 86, 83, 74,143, 91,160, 89,212, 92,213,155, 58,114,216,181,133, 63,111, 22,135, 6, +223,197,146,157, 71,161, 54,232, 76,167,227,243,251, 20, 45, 62, 44, 11,161, 80,248,195,133, 11, 23,100,181,106,213, 34, 25, 25, + 25,175, 35, 45,122,189, 30, 57, 57, 57,200,203,203,131, 86,171, 69,253,250,245, 57,171, 87,175,150,141, 29, 59,246, 7, 0, 95, +154,155, 95,133, 66, 1,129, 64, 0,189, 94,255, 58,130, 37, 18,137, 96,109,109,141,140,140, 12,236,221,187, 23, 0,202,140,138, + 9, 4,194, 36, 14,135, 84,150, 72,165, 90,177, 88,204,184,186,186,150,104,172, 44,209, 44, 32,190,115,231,206,238,243,230,205, + 19,215,175, 95,255, 79, 17,172,138,104, 82, 74, 85, 29, 58,116,144,174, 94,189, 26,158,158,158,208,233,116,111, 24, 41, 14,135, + 3,129, 64,128,184,184, 56,204,159, 63, 31,148, 82,243,255,200,104,178, 12,168, 53,212, 17,234, 12,195,171, 41,221, 0, 85,170, + 1,122,149,201,194,235,242,181, 89, 41,106,130, 10,234, 72,253,201, 0,153, 27, 33, 42,175, 8,208,210,150,133, 69, 13,155, 72, + 36, 66,118,118,182,132, 16, 50,168,148, 30,231,205,142, 96, 21, 26,172,167, 79,159, 98,251,246,237,232,210,165, 11,108,109,109, +145,149,149,133,125,251,246, 33, 44, 44, 12, 66,161, 16,132, 16, 75,162, 88, 76,227,198,141,127,188,122,245,106,183, 1, 3, 6, + 4, 76,156, 56, 81, 82,179,102, 77, 60,123,246, 12,243,230,205,211, 4, 7, 7, 71,168,213,234,121, 48,167, 67,210,130, 30,218, + 11, 59, 17, 53,171, 21, 97,177,117,138, 83, 74, 55, 13,157, 75, 81, 43,218,133,195, 27,221, 52, 20,229,198,141, 27, 94, 85,170, + 84,241,199,171,150,129,133, 47,218,162,173, 5,223,120, 9, 39, 37, 37, 53, 4,219,138,144,229,125, 54, 88,160,100,252,128, 97, + 35,173,118,222, 33,136,139,137,192,189, 19,235,139,155, 43,115, 30, 50, 65, 69,251,202, 16, 75,100, 53, 25,242,170, 89,114,110, +122, 28, 64,185, 22, 27,172,226,154,160,204,119, 3,134,142,180,219,125,143, 32, 49,238, 37,174, 31, 94,103,177,185, 42,170, 57, + 68, 40,156,197,231,113,102,124,220,170,158,160,101, 93, 95, 72, 83,163,144, 28,159,136,189, 79,211, 50, 35,178,180, 95, 92, 39, +122,196,188,212,110,238, 50,194,206,206,214,133,143,174,163,237,237,110, 29,205, 61, 84,169, 29, 71, 79,245,116, 81,226, 53, 58, +167,196,124,190, 3,202,211, 36,132, 84,183,178,178, 90, 26, 28, 28,236, 40, 22,139,173,238,221,187,103,218,184,113, 99,156, 70, +163, 89, 70, 41,221, 83, 65, 77,247,134, 62,213, 46, 47, 92,183, 73,156,175, 84, 65,169,211, 67,228,236,106,250,227,230,147, 79, + 75,235, 12,179,184, 38, 33,164,237,231,159,127, 94,187,113,227,198,156,162,230, 74,167,211, 33, 55, 55, 23,121,121,121,200,205, +205, 69,110,110, 46, 18, 18, 18,208,186,117,107, 78,237,218,181,107, 18, 66,218, 82, 74, 47, 22,215, 44,210, 77,195,116, 0, 28, + 66,200,221,135, 15, 31,230,119,234,212, 9, 18,137, 4, 74,165, 18, 30, 30, 30, 48, 26,141, 56,113,226, 4,130,131,131,149, 12, +195, 92, 6,240,176,172,124,170,213, 42, 15, 66, 8, 71,173, 82,213, 25, 58,116,104,235, 9, 19, 38,188,209,180,220,201,201, 9, +118,118,118, 22,105, 2, 64,102,102,102,141, 83,167, 78,125,251,240,225,195,239,186,116,233, 98, 61,125,250,116,145,151,151, 23, + 76, 38, 19,167,162,154, 89, 89, 89,214,247,239,223, 95,214,162, 69,139,175, 58,117,234,196, 91,184,112, 33,172,173,173, 97, 50, +153, 32,145, 72,144,155,155,139,121,243,230,225,218,181,107, 70, 74,233,186,156,156,156,137,101,105,190,209, 15,214,132, 21,101, + 54,143, 44,173, 31,172, 18,206,123,137, 17,159,210, 12, 80, 73,203,255, 29,247, 81, 49,195, 6, 27, 27,155, 41, 0,166,148,210, +227,188,217,247,102,161,193,226,114,185,136,142,142,198,198,141, 27,255,212, 15, 86, 97, 55, 14, 37,105,151,178,239,244,210,165, + 75, 38, 66, 72,211,123,247,238, 77, 25, 50,100,200, 23, 74,165,210, 93, 38,147, 37, 26, 12,134,109,106,181,186,176, 31, 44,129, + 37,247,187, 82,169,140, 41,169, 21, 97,241,101, 0,155, 50, 53,139,117,211,240, 70, 87, 12,197, 86,123,163, 11,135,226,221, 52, + 20,213,108,214,172, 89, 20,135,195, 9, 47, 40,106, 15, 71,177,214,130, 69, 52,125,147,146,146, 26,186,186,186, 94, 6, 32, 45, +222,138,240,159,120, 38,179,154,172,193, 42,197, 96, 65,124,238,118, 52,132,146, 76, 60, 58,191,213, 98,115, 85, 98,201,131, 70, + 21, 49,107,119,108, 93,157, 86, 3,101, 78,202, 51, 26,181, 39,245,237,207, 50,100,231,238,198, 64, 44,203,198,131,115,191,102, +155, 76,154,118, 52,226,247,135, 21,151,195,212,245, 39,246, 11,136,181, 29, 30,125,251, 25, 18,179,149, 56, 25,153,181,143,170, +180, 95,238, 40, 24,119,207,189, 41,185,186,101, 70,242,250,150,189,172,251, 58, 84,226, 99,197,164,109, 16, 79,181, 23, 52,250, +168,213, 63, 58, 70, 97, 97,197,247, 85,171, 86,141,105,217,178,165,188,111,223,190,207, 51, 51, 51,223,168,248, 94, 1,205,120, + 66,200,207,199, 55, 44,159,100, 95,171, 9,214,126, 63,217,180,251,230,147, 55, 90, 21,150,135, 64, 32,104, 51,117,234, 84,129, + 82,169,252,147,185, 42,110,176,114,115,115,241,232,209, 35, 12, 27, 54, 76,244,240,225,195, 54, 0, 46,150,146,175, 89,132,144, + 13,120, 53, 22, 97,242,142, 29, 59,154, 30, 62,124,184,233,248,241,227, 5, 93,186,116,193,173, 91,183,112,246,236, 89,189, 94, +175,191, 9,224,166,185,195,207, 20,244, 31,116,159, 16,242,100,201,146, 37, 77,185, 92,238,172,194,121,161,161,161,216,186,117, +107, 69, 52,141, 0,150, 17, 66,126,222,177, 99,199,172,115,231,206,125, 62,116,232, 80, 43,131,193,128,167, 79,159,226,215, 95, +127,173,168,230,183,142,142,142, 51, 79,156, 56,177,237,204,153, 51, 61, 7, 15, 30,204, 25, 55,110, 28,214,172, 89,131,223,127, +255,157, 49,153, 76,135,249,124,254,208,180,180,180,114, 27,160,188,209, 15, 86, 25,253, 92,149, 55,191,132, 8, 86, 34, 94,245, +208,110,238,152,132,229,234,190, 77, 17,160,153,249, 78,122,235,199, 82,193,126,180,105,211,230,117, 84,145, 82,250, 70,189,185, + 66, 99,101,105, 17, 33, 0,155,130,235,116, 29,128, 53,120,179, 23,119, 46,254,223,211,187,185,138, 1, 73, 90,155, 80,104,241, +180,236,193,158,109, 0,138,128,114,212,178,103,205,154,245,211,236,217,179,127, 42,222, 21, 67,209,133,138,119,225, 48,119,238, + 92,148,214, 77, 3,128,172, 89,179,102,253, 8, 0,254,254,254,164,160, 88,176, 1, 10, 90, 11, 22,209,220, 94,144, 46,157, 51, +103,206, 16, 0,101,105,178,176,252,131, 6, 11,116,122,232,213,221, 6, 0,246, 32,156,105,244,229,222,208,183,126,112, 49,116, +234,133, 93,115,214,128, 34,139,154,140, 83,222,201, 30, 48,220, 25,161, 87,119, 49, 0,177, 1,225, 76,165, 47,127,127,235,124, + 18,107, 59,228,205, 27,131,223, 67, 18,105,178,210,240,201, 14,157,238,141, 72, 77, 65,157,171,126,110, 45,201, 94, 91, 55,254, + 31,223,182,179, 39,199, 51,135,188, 23, 39, 52, 45, 45,109,161, 92, 46,231, 46, 91,182,236,115,181, 90,253, 70,197,247,183,120, +225, 76, 38,132,112, 27, 85,247, 28,123,231, 69, 76, 15,115,139, 5,139,188, 72,132,110,110,110, 79, 52, 26, 13, 8, 33,208,106, +181,175,141, 85, 94, 94, 30,114,114,114, 94,255,214,235,245, 72, 75, 75,131,135,135, 7, 8, 33, 2, 11, 94,132, 87, 8, 33,193, +243,230,205,107, 53,111,222,188, 58, 5, 81,160, 43, 22, 21,141,189,169,109, 0,112, 69, 34,145, 38, 18, 66,220, 5, 66,145,242, +198,141, 27,231,222, 82, 83, 85, 16, 25, 89,177, 98,197,138, 5, 50,153,172, 97,104,104,232,249,183,209, 44, 48, 79,159,218,219, +219,187,109,223,190,125,255,150, 45, 91,154,240,120,188, 91,132,144, 62,217,217,217, 22, 15,246, 76,222,140, 8, 88, 60,191, 24, +163, 96,222, 24,132,229, 70,136,204,137,128, 85,148,191,194,176,153, 76,166,252,153, 51,103,166, 22, 55, 92,197,163, 85,133,191, +245,122,189,198,204,123,201,146, 86,145,229,152, 11,146, 15, 0,175,198, 22,124, 53,252,141,185,131, 61, 3, 40,117,108,203,217, +179,103,211,185,115,231, 18, 14,135,115, 24,192, 51, 14,135,243,162,120, 37,244,162,243,230,206,157,139,217,179,103,211, 57,115, + 74,255,111, 90,168, 25, 22, 22, 70,185, 92,238,121, 0, 81, 92, 46, 55,186,168,110,209,244,194,117,202,210,100, 97,249,199, 12, + 22,141,220, 31, 7,224,179,119,250,207, 48,106,255, 57, 88, 48,150,153, 89,154,209,123, 98, 0, 12,126,103,122,192,210, 17,141, +218, 76, 42,248, 23,184,162,184,185, 42, 74,226, 85,122,216,181, 57, 89,212,232,163, 86,227, 11, 94, 62, 11,223,135,147, 90, 82, +197,247,119, 96,178,254, 84,241,221,130,151,205, 25,137, 68, 66,148, 74, 37,212,106,245, 27,209,170,220,220, 92,168, 84, 42,228, +231,231,191,174,156,158,159,159, 95, 88,220, 69, 45,204,163, 10,192, 73, 66,200, 25, 74,169,233, 93,236,183, 90,173,170, 92,240, + 98,227,190, 43,205,130,134, 6, 95,188, 75,205,140,140,140, 68, 0,205,188,189,189,133, 17, 17, 17,186,138,234,148, 55,144,179, +185, 3, 61,191,203,104,208, 95,205,187, 54,108, 0,160,215,235,107,252, 5,145,181,103,239, 88,240,215, 14, 45, 2,184, 40,218, +247, 79,121,131, 61, 23, 26, 51,138, 95, 75,201, 35, 37,175, 28, 36, 5,176,253,229,203,151,158, 12,195,196,148, 16, 73,122, 99, +222,156, 57,115, 80, 90,255,124,197, 52, 1,224, 80, 92, 92,156,155,201,100, 74, 42,166,251, 70,122, 89,154, 44, 44,255,112, 4, +235,191,201,111, 58,221,108,148, 51,216,112, 81,146,174,211, 25, 0,102,188,111,251,241, 46,205, 85, 17,205,240,138,172,103, 48, + 24, 46, 0,128,163,163, 35, 28, 29, 29, 45, 89,175,162,249, 52,253, 5,251,254,175,208,124, 27,115,197,242,223,130,102,133,198, + 1,248,190,220,229,202,239,189,253, 79,134,168,224,107, 22,128,172, 82, 60, 78, 89,243,202,210, 4,128, 92, 0,185, 37,172, 91, + 90, 58, 11,203, 63, 2,135, 61, 4, 44, 44, 44, 44, 44, 44, 44, 44,239, 22, 2, 32,168,148,127, 12,102,183, 14, 32,132, 4, 85, +224,223,251, 57, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53,255, 91,154,229,105, 23,111,141,252,174,134,209,250,219, 41,108, +217,242, 87, 76, 0,130, 88, 77, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 43,184,157,145,127,199,118,254,138,137, 45, 34, +100, 97, 97, 97, 97, 97, 97, 97,121,199,176,149,220,255,165, 16, 66,170, 3,152, 14,192,186, 72,242, 29, 74,233,162, 98,203,237, + 2, 32, 45,146,164, 4, 48,143, 82,250,194,146,237,113,185,220, 69,173, 90,181,250,242,218,181,107,203, 13, 6,195,188, 10,228, +215,211,213,213,245, 71, 66, 72,125, 0,124, 66,200,203,148,148,148, 69, 6,131,225,220, 91, 28,131,170, 46, 46, 46,139, 1,212, +229,112, 56,124, 66, 72, 68, 74, 74,202,124,131,193,112,233, 45, 52, 21,206,206,206,205, 41,165, 46, 0,184,124, 62, 63, 35, 33, + 33,225,118, 69, 91,195,245,153, 27, 38,200, 85, 26,249, 0, 96, 37,227, 25,246,207,246,215,155,155,198, 94,229, 44, 44, 44, 44, + 31,168,193,234,239, 75, 92, 77, 60,240,246,135,210,184,194,151, 15,128, 58, 0,170, 3,120, 1,224, 33,165, 52,239, 45,141,194, +191, 66,243, 61,100, 22,165,116, 96,177,253,254,211, 66,237,218,181,235,126,230,204, 25,105,225, 48, 42, 12,195, 64, 34,145, 24, + 1, 12,179,224,120, 58, 13, 24, 48, 96,234,230,205,155,209,183,111,223,153,132,144,159, 40,165,249,230,174,111,103,103,215,187, +106,213,170,107, 54,109,218,228,216,164, 73, 83, 34, 20, 10,241,242,101,132,251,168, 81,163,106, 58, 59, 59, 31, 78, 73, 73,249, +194,210,157,183,183,183, 31, 84,173, 90,181, 21, 27, 55,110,116,104,209,162, 5, 8, 33, 8, 14, 14,118,255,246,219,111,235,184, +184,184,236, 73, 78, 78,254,202, 82, 77, 7, 7, 7,159,106,213,170,181, 93,187,118,173,164,121,243,230, 16,139,197,120,248,240, +161,124,244,232,209, 46, 46, 46, 46, 79,147,147,147, 47, 91,106,174, 30, 7, 31,237,105,212,107,151, 0, 0, 79, 32,154,220,244, +167,220,163,153,193, 87,186,149,151,214,103, 46, 14,177, 38,139,133,133,133,229, 3, 52, 88,189, 3,200, 60,240, 48, 29, 0,233, + 92,157,236, 57, 27,197,189,218,190,125,123,239,225,195,135,147,122,245,234, 33, 56, 56,216,103,207,158, 61, 31,243,120,188, 8, +147,201, 20, 12, 32,196,220, 94,168, 9, 33,124, 0,129, 92, 46,183,254,251,172,249,158, 35, 43,216,239, 20, 0,119, 10,210,238, + 20, 95,232,194,133, 11, 71,120, 60, 94, 97, 4,171,145, 82,169,116,198,155, 81, 47,115,168, 98, 48, 24, 16, 30, 30, 14, 14,135, +195, 7,224,133, 63, 15,125, 81,218,121,113,119,119,119, 95,127,243, 78,176, 61,225, 73,144,165, 1,160,209, 67, 40,119,198,230, +173, 59,236, 38,124,243,213,167, 86, 86, 86, 87,115,115,115,127,179,192,240,121,121,120,120,252,244,232,209, 35,123,169, 84, 10, +134, 97,144,151,151, 7, 23, 23, 23,108,218,180,201,102,194,132, 9, 3, 37, 18,201, 37,181, 90,253,187, 37,166,188, 90,181,106, +109,159, 60,121, 34, 41, 28,232, 89,167,211,193,221,221, 29,187,118,237, 18,141, 27, 55,174,134, 72, 36,138,215,106,181,145,230, +106,230, 42,141,124,163, 94,187,100,251,186, 57,149, 1, 96,232, 87,115,150, 8,243,172, 78,152,147,150,171, 52, 30, 7,192, 26, + 44,150,191, 21, 66, 72,125, 7, 7,135, 3,233,233,233,151, 1,124,241, 46,186, 18, 33,132,184,241,120, 60, 47, 74,169, 77,193, +239,108,163,209, 24, 69, 41, 77,172,168,166,131,119,219,110, 16, 73, 63, 3,101,234,112, 0, 16, 14,231,161, 73,175,218,154,254, +236,226,209,183,210, 20, 74, 62, 7,104, 29, 14,192, 16, 14,231, 17, 99, 84,109, 74, 11,187,120,146,189, 50, 88,222,153,193,234, + 19, 64,108, 1, 76,217,179,102, 58,135,199,229,146, 1,223, 44, 26,184,101,221, 50, 78,251,110,125, 94, 23,147,180,108,217, 18, + 45, 91,182, 36, 75,150, 44,169,126,254,252,249,234,187,118,237, 50, 18, 66, 30, 81, 74,247,150,182,177, 78,222, 68,205, 0,226, +143,253,120,202, 1,223,255,182,177,113,227,198, 16,137, 68,120, 27, 77, 0,232, 80,157, 27,217,165,177,247,163, 1, 99,103,197, + 52,105,210,140,190, 11,205,127, 17,119, 40,165, 61, 10, 30, 92,182, 30, 30, 30,205,141, 70,163, 24, 0,120, 60,158, 6,192, 88, + 90, 48,196, 15, 33,228, 48,195, 48,221, 45,120, 48,114, 0,204,238,222,189,251,204,175,191,254, 26, 30, 30, 30, 24, 55,110, 28, + 12, 6, 67, 48, 33,100, 22,128,197,229,117,228,231,228,228, 52,107,253,250,245,118, 60,161, 12,245,166, 68, 33, 41,219, 8, 0, +144,139,128, 35, 99, 40,198,141, 27,103,117,239,222,189,249, 0,204, 54, 88, 78, 78, 78,243, 54,109,218,100, 39,149, 74, 65, 41, + 69,126,126, 62,242,242,242,144,159,159,143,252,252,124,124,245,213, 87, 86, 79,159, 62,253, 17,128,217, 6,203,217,217,185,249, +218,181,107, 37, 98,177, 24,249,249,249, 2,189, 94, 79,242,242,242,160, 82,169,168, 78,167,211,143, 29, 59, 86, 20, 18, 18,210, + 6, 64, 36,251,216,120,111,204, 0, 23,192, 39,124, 62,191,151,183,183,119,131, 23, 47, 94, 60, 48, 26,141, 7, 1, 28,124,219, + 63, 81,132,144,143,220,220,220, 22, 36, 38, 38,174,165,148,238,248,175, 28, 83,103,103,231,131, 55,110,220,168,188,126,253,250, + 97,203,151, 47, 63, 97,201, 61, 84,202,159,222,166,141, 26, 53,114,232,213,171, 23,223,197,197, 5, 42,149, 10, 17, 17, 17,210, +115,231,206, 57,138,197,226, 12,173, 86,123,211,146,115,229,224,219, 92, 14,158,213,158,166,109,131, 90,244,253,244, 19,133,179, +189, 53,212, 58, 19, 94,196, 36,121,156, 58,113,164,181, 91,205,143,111,232,245, 57,253,211,159, 93,207,183, 84,179,109,167,174, + 45,130, 62,250, 72, 97,109, 99,141, 28,165, 30, 47,163, 19, 60, 47,158, 61,218,210,181,230,199, 87, 24, 98, 24,156,242,248,140, +138,189,235, 88, 44,193,236, 74,238, 82,169,180,196,116,107,107,107,180,109,219, 22,139, 22, 45,226, 1,168, 95,116,222,159, 6, + 63, 5, 68,199, 54, 76,131,181, 76,196,241,240,240, 80, 88, 89, 89,189,181,230,171, 68,198,171,153, 7,237,124,247,183,233,195, +206,237, 90, 17,168,204,203,230, 23, 95, 68, 46,151,195,215,215, 23, 51,103,206, 52, 79,243, 45,249,187, 53, 93, 93, 93,253, 90, +182,108, 89,255,194,229,203, 54,137,137,137,162,196,196, 68,209,153, 11, 23,108,154, 54,109, 90,223,213,213,213,175,136,134, 37, +249,252, 97,221,186,117,179, 14, 31, 62,204,105,217,178, 37,108,109,109,209,182,109, 91,156, 56,113,130,183,124,249,242,133, 0, +102,150,151, 79, 14,135,211,162,101,203,150, 4,148, 34, 57,199,136,219,139,252,240,112,153, 63,242, 52, 20,153, 57,185, 80,171, + 53,144, 74,165,226,130, 98, 93,115,247,189, 89,211,166, 77, 9,128,215,166, 42, 47,239,213,148,159,175,132, 78,167,135, 72, 36, + 82, 16, 66,196,230,106, 82, 74, 93,154, 55,111, 14, 0,208,235,245,175,203, 90,179,179,179, 73, 78, 78, 14,116, 58, 29,248,124, +190,128, 16,194, 51, 87,211, 74,198, 51,240, 4,162,201, 67,191,154, 19, 55,244,171, 57,113, 60,129,104,178, 78,145,107, 50, 39, +205, 74,198, 51,252,147,215, 39, 33,196,145,203,229,254,234,237,237,253,148,203,229,110, 39,132,184,188,141, 38, 33,164, 33, 33, +100,161, 84, 42, 61, 87,163, 70,141, 56,153, 76,118,129, 16,178,152, 16,210,180, 34,154,132, 16,161, 84, 42,189,176,112,225,194, +253, 15, 30, 60,232,123,254,252,121,175,199,143, 31,127,186,100,201,146, 61,114,185,252, 42, 33, 68,250, 54,247,166,151,151,215, +150,219,183,111, 55,108,214,172,217,102, 66,136,232, 93,220,239,132, 16, 46, 33,164, 46, 49,115, 76,160,191,251,188, 19, 66,220, +234,213,171, 87, 89, 44, 22, 35, 40, 40, 8, 0,218,188,165,102,211,209,163, 71,187, 76,152, 48,129,255,240,225, 67,108,222,188, + 25,135, 15, 31, 70,106,106, 42,186,118,237, 42,104,215,174,157,139, 72, 36,106,106,145, 38,207,106,207, 55,223,142,239, 52,105, +220, 8,197,163, 88, 61,182,158,139,197,161,155, 73, 72, 85, 9,209,237,211,161,214, 29,123,244,235, 40, 20, 89,239,177, 84,115, +234,148, 41,157, 70,126, 62, 80, 17,154,196,224,200,173,100,220, 10,207,129,145,111,131, 46,159,126, 97, 91,167,121,167,143,121, +224,111,123, 31,206,209,135,174,249,193, 70,176, 8, 33,148,210, 87,131,184,238, 15,165, 89,189, 3,200,143,253,190, 94, 56,147, +112, 8,173, 18,216, 44,180, 82,181, 0,165,189,189, 61, 84, 42, 21,180, 90, 45, 4, 2, 1, 52, 26, 13, 98, 99, 99,113,235,214, + 45,216,218,218, 90,180,225,220,220, 92,200,229,114,200,229,242,119,162, 57,109, 88,144,232,101, 92,154,232,244,173, 75,173, 87, +125,249,123,147,106,117,219, 60,254,168,223,184, 39, 86,142,110,154,199,143, 31,227,198,141, 27,200,202,202, 66,227,198,141, 63, +148,115,119,167,224, 57,125,135, 16, 98,219,178,101, 75,247,211,231,174,216,230,107, 24,171,232, 20, 3,159, 97, 24, 72,165,174, +198,189, 7,142,228,244,253,180, 27, 33,132,164, 2,184, 83, 96,106,239,148,243, 34, 16, 3,240,235,221,187,247,212, 47,191,252, + 18, 17, 17, 17, 24, 49, 98,132,250,206,157, 59, 25,205,154, 53,179,223,180,105,147,100,194,132, 9,184,124,249,242,108, 66,200, + 31, 0,162, 40,165,154, 82,110, 66,129, 64, 32,128,177,192, 46,232, 77,204,107, 95,159,155,155, 11,170,206,130, 64, 32,224, 2, +112, 4, 96, 86, 61, 57,134, 97, 4,124, 62,255,181,185,138, 77,201, 69,108,170, 10,185,249, 58,168,213, 70,232,212, 20, 92,169, + 61, 15,136,118, 6, 16,109,230,241,228,138,197, 98, 24,141, 70,228,229,189,202, 70, 97,100, 76,167,211, 33, 39, 39, 7, 92, 46, + 87, 14,192, 10, 64,166, 57,130,175, 42,175,227, 80, 65,113, 31,238,238,236,238,240,226,248, 52,125,239, 57, 79, 95,167, 89,201, +120,134, 3, 19,106,112,237,221,235, 92,171,219,119,155,127, 97,218, 63, 89,255,138, 16, 34,114,116,116,188,184,127,255,254, 26, +213,171, 87, 71, 84, 84,148,127,159, 62,125, 26, 19, 66,234, 90, 58,102, 34, 33, 68,202,225,112,126,252,236,179,207,190, 28, 48, + 96, 0,241,241,241, 1,143,199,131,209,104,116,143,136,136,104,187,111,223,190, 41, 60, 30,111,147,201,100,250,206,220,122,125, +132, 16,142, 80, 40,220,187,113,227,198, 86,141, 27, 55,198,246,237,219,113,231,206, 29,166, 97,195,134,156, 33, 67,134,192,211, +211,179,241,144, 33, 67, 14, 17, 66,186, 84, 36,146, 69, 8,241, 28, 52,104, 80,101, 46,151,139,102,205,154, 9,110,220,184, 81, + 15,192,141,183, 60,166,114,119,119,247,203,109,218,180,169,123,238,220,185,251,132,144, 54,150,212, 99, 36,132,244,112,115,115, + 91, 98,109,109,109,107,193, 51, 86,149,144,144, 48,209,130,241, 72,155,212,175, 95, 31, 49, 49, 49,240,243,243,131, 64, 32,104, + 74, 8, 25, 5,160, 19,128, 25,150,140, 14, 65, 8,113,107,218,180,169, 67,155, 54,109,200,226,197,139, 1, 0,124, 62, 31, 38, +147, 9, 28, 14, 7,124, 62, 31,254,254,254, 36, 50, 50,210,142, 16,226,102, 78,113,161,131,119,219,110,205, 62,234,212,162, 85, +227,218,156,229, 7, 94,192,196,152,192, 37, 70,240, 8, 3,198, 32,130, 72,192,133, 79, 96, 3,110,120,200,163,198, 14,190,237, +187,165, 63, 59,123,212, 28,205, 78,221,186,183,172,225,231,195, 89,117,232, 37,178, 19,158,154, 18,194,174,164,115,184, 28,212, +168,223,206,193, 39,160, 46,183,110,227, 54,252,196,168,144,182,118,213, 91, 7,101,190,184,204,154,138,191,254,249,243,218,139, +124, 48, 6,171, 56, 7, 66,233, 44, 43, 33,241,218,183,111, 55, 39, 45, 79,175,140,136,136,128,131,131, 3, 92, 93, 93, 97,109, +109,141,208,208, 80, 92,184,112, 1,207,158, 61, 3,195, 48,168, 83,167,142, 69, 27, 78, 79, 79,199,163, 71,143, 96,107,107,251, +206, 52,171, 85,118,196,215,149, 29, 5, 41, 25,185,130,115,119,158, 53,254,101,218,167, 1, 28,255, 79,183,104, 52,255,127,247, +235,116, 31,198, 72, 34, 69, 91, 11,122,120,120, 52,223,186,117,171, 64,107,132,194,103,212,205,165, 74,141, 73, 6, 0, 50, 49, + 87, 25,188,196,247,187, 31,126,248, 65,249,249,231,159,251,199,198,198, 46, 42, 79, 87, 40, 20, 46,232,220,185,243, 36, 74, 41, +255,155,111,190, 1, 0, 12, 29, 58, 52,247,214,173, 91, 62,148,210, 84, 66,136,219,240,225,195,159, 95,188,120, 81, 58,126,252, +120,174,209,104, 12,229,241,120,148, 16, 50,143, 82, 58,231, 79, 33, 82, 14,231,222,253,251,247,171,184,121,250,194,211,158,131, +150, 51, 95, 13,167,102, 47,101, 16, 31,253, 18, 97,143,239,192,197,197,197,218,213,213,245,169,159,159,159, 62, 33, 33, 97, 74, +126,126,254,250,178,242, 40, 16, 8, 30, 6, 7, 7,187,122,122,122, 34, 63, 63, 31,241,105, 42,140, 59, 40, 69,174,250, 85,208, +130, 15, 53,234, 86,246, 85, 72, 56,186, 59,206,206,206,122,157, 78,247,125,118,118,118,153,195,125,240,249,252,140,199,143, 31, +203, 61, 60, 60,160,209,104,104,102,102, 38, 81, 42,149,200,203,203, 35,199,143, 31,239,153,148,148,212,208,203,203,139,184,187, +187,207,171, 94,189,186, 58, 33, 33, 97,132, 57,117,188,246,207,246,215, 19, 66, 76, 60, 30,111,249,200,145, 35,251,254,241,199, + 31,247, 14,204,169,209,131, 82,170, 47,120,152, 88, 7, 6, 6,158,174, 93, 59,192,109,199,178, 90,171, 41,165, 75,223,131,203, +235,179,233,211,167,215,176,179,179,195,232,209,163, 49,119,238, 92,204,154, 53,171,250,232,209,163, 71, 2,248,201,130, 7,165, +196,197,197,229,238,170, 85,171,252,155, 55,111,142, 19, 39, 78, 96,247,238,221,136,140,140, 52,122,121,121,241, 26, 55,110,140, +217,179,103,163, 99,199,142, 35,198,142, 29,219,154, 16, 82,207, 76,211,241,249,236,217,179,123,180,104,209, 2,195,134, 13,211, + 94,186,116,169, 47,128, 51,103,207,158,109,119,249,242,229, 3, 59,119,238,148, 44, 92,184, 48,104,194,132, 9,163, 1,172,169, +192,254,247,108,213,234,213,216,198, 45, 90,180,192,146, 37, 75, 58,190,141,193, 34,132, 8,237,237,237,143,111,223,190,189,174, +175,175, 47, 6, 15, 30, 92,175,111,223,190,199, 9, 33,237, 41,165,102, 61,144, 42, 85,170,244,227,225,195,135,189, 75, 43, 73, + 40, 9,173, 86,107,247,201, 39,159, 44, 6, 96,145,193,218,181,107, 23, 38, 78,156,136, 58,117,234,212,110,210,164,201,134, 81, +163, 70,161,119,239,222, 31, 17, 66,156, 41,165, 74,179, 94, 44, 60,158, 87,215,174, 93,249, 7, 15, 30, 4, 0,180,106,213, 10, + 65, 65, 65,120,242,228, 9,174, 93,187, 6, 46,151, 11,153, 76,134,230,205,155, 11, 19, 19, 19,189, 0,148,107,176, 56, 34,233, +103, 61,186,118, 81, 28,185,149, 4, 19, 99, 68, 3,111, 43, 52,246,119, 66,120,124, 46,130,159,198,195,164, 19,192,202,206, 30, + 77, 91,119,176, 75, 78,136,252, 12, 64,249,245,177, 68,210,207,122,245,248, 88,126,228,102, 34,178, 19,195,232,139, 59,127, 92, + 48,104,148, 35, 0,224,222,249, 61, 27, 92,236, 37,237,125,234, 55,224,182,105,223,221,246,224,238,228,207, 0,176, 6,139,229, +237, 13, 22, 0,228,233,145,242,209,199,159,226,254,253,251, 0,128,140,140, 12,100,100,100,192,219,219, 27,107,214,188,249,220, +170,136,113, 97, 24,230,157,107, 2,128,179,189, 21, 6,119,105,196,187,246,104,183, 88,153,150, 38,150,203,229,154, 15,205, 96, + 21,197,104, 52,138,189,188,188,144,171, 6,201, 81, 25,228,233,123, 94, 69,246, 29,250, 95,146,235,116, 58,142, 92, 46,135, 86, +171, 21,155,241, 34,224,247,232,209, 99,210,222,189,123,249, 97, 97, 97,168, 86,173, 26,244,122, 61,110,221,186, 21, 95, 48, 64, + 49, 40,165,137, 92, 46, 55,145, 97,152,234,117,234,212,193,162, 69,139,224,239,239, 79,186,116,233, 50,165,192,100, 49, 69, 53, +147,146,146,126, 28, 53,106, 84,187,125, 7,254,176,219,216, 79,141,220,156, 92,228,231,231,227,225,131,123,200, 76,209,224,151, + 95,126,129, 88, 44, 33, 0, 4,169,169, 41,130,241,227,199,175,118,119,119,239, 20, 31, 31,223,181,180,124, 38, 38, 38, 46,248, +234,171,175,154,238,217,179,199, 38, 47, 47, 15,106,181, 6,153, 74, 41,158,174,124, 53,190,110,141,111,159, 98,221,218,245,156, + 90, 85,100, 14, 42,149, 10, 95,126,249,229, 10, 55, 55,183,230,137,137,137,195, 75,211, 76, 72, 72,184,253,245,215, 95, 59,239, +220,185, 83,172,211,233,244, 38,147, 9,106,181,154,179,103,207,158, 41, 85,170, 84,177,221,180,105, 19, 17,139, 37, 5,203,198, + 11,198,140, 25,179,215,197,197,101,103,114,114,242,176,114,142, 41,151,203,229,174,220,177, 99,199,144,126,253,250, 41,146,146, +146, 2, 14, 31, 62, 44, 2,160, 46, 88,196,181,125,251,246, 85,150, 45, 91,230, 24, 24, 24, 56,133, 16,194,167,148,254,163,131, +134, 59, 56, 56,140,237,209,163, 7, 22, 47, 94,140,163, 71,143, 78,176,179,179, 91, 49,119,238, 92,184,185,185,125, 77, 8, 89, +105,193, 0,186, 75,127,250,233, 39,127,127,127,127, 12, 29, 58, 84,119,238,220,185,233, 0, 14, 1,136,185,122,245,170,199,182, +109,219,186,237,221,187,119,241,170, 85,171,196,107,214,172,241,254,244,211, 79, 87, 2, 24, 94,238,253,237,236, 60,126,192,128, + 1, 88,182,108, 25, 46, 93,186,244, 41,165,244, 68,193,172,147,132,144,110, 11, 23, 46, 60, 63,115,230, 76,252,244,211, 79,223, + 88,106,176, 8, 33,242, 26, 53,106,124,223,169, 83, 39, 92,189,122, 21, 45, 91,182, 68,211,166, 77, 39, 16, 66, 86, 83, 74,211, + 43, 96,174, 56,114,185,124,239,214,173, 91, 91, 86,169, 82, 5,243,231,207,199,164, 73,147,176,101,203,150,150,131, 7, 15,222, + 75, 8,233, 85,252,158, 41, 9,107,107,107,185, 84, 42,197,148, 41, 83,104,100,100,100, 86,121,203, 87,174, 92,217,118,197,138, + 21,196,214,214,214,218, 92, 51, 44, 22,139,155,213,172, 89, 19,179,103,207,198,217,179,103, 49,115,230, 76,212,172, 89, 19, 49, + 49, 49,232,223,191,191,116,198,140, 25,189, 1,152, 53, 46, 33,165,212,218,222,222, 30,169,169,169,224,243,249,104,222,188, 57, + 14, 29, 58, 4,173, 86, 11, 39, 39, 39,100,103,103,163, 81,163, 70,133,102,204,218,188,163, 73,107, 58,216, 89, 35, 53, 36, 1, + 60, 24, 81,223,199, 1, 23,159,100, 64,111, 96,224,100,111,131,228,212, 20, 52,169,233, 14,157,206, 3,148, 50, 53,205, 81, 20, +114, 57,245, 69, 98, 9, 50,243,210,145,240,244, 82,134,222,164, 29,149, 29,121, 45, 14, 0,236,170,181, 26,117,239,218,217,123, +125, 62,110,229,148,175,172, 12, 66,153, 70,172,101, 96,177, 4,142, 25, 55,202,159,210, 84,170, 63,151, 18,188,173,113,249, 43, + 52, 75,226, 67, 52, 88,133, 20, 14,142,172, 51, 48,208, 25,152,194,127,177, 80,171,213,230, 70,197, 12,167, 79,159,222, 62,110, +220, 56,172, 88,177, 2,207,159, 63,135, 64, 32, 64,205,154, 53, 93, 9, 33,242,194,136, 75,253,250,245,157, 56, 28, 14,194,195, +195,177,124,249,114,124,254,249,231,244,198,141, 27, 91, 74,122, 81, 80, 74, 31,100,102,102,174, 29, 53,226,243,236,172,148, 88, + 24,212, 89, 72, 77,120, 9,173, 50, 27,243, 23,253, 8,149,129,135,228, 28, 61,146,115,244,224,136,236,176, 97,211, 86,110,141, + 26, 53, 58,241,120,188,174,101,228,243, 86, 74, 74,202,166, 49, 99,198,100, 39, 39, 39,191,222, 63,157,129, 66,103,120,243,122, +149, 74,165, 88,185,114,165,181,143,143, 79, 15, 62,159,223,182, 12,205,164,184,184,184,176, 49, 99,198,232, 82, 82, 82,144,147, +147,131, 35, 71,142,116,171, 82,165,138,237,226,165, 43,136, 82,207, 67,114,182, 30,201,217,122, 8,229, 78,216,123,224, 15,174, +175,175,239, 64, 62,159,223,180, 60,115,181,115,231,206, 33,253,250,245, 83, 44, 93,186, 52,243,240,225,195,235, 40,165, 69, 79, + 72,248,202,149, 43,247,237,221,187, 55,111,210,164, 73,118, 75,150, 44,153, 64, 8,153,254, 15,134,231,219,246,235,215,207,143, + 97, 24,236,223,191,255, 49,165,244,167, 63,254,248,227,174, 86,171, 69,255,254,253,189,240,170,184,200, 28,157,134, 3, 7, 14, +252,178,101,203,150,248,246,219,111,245,231,206,157,171, 79, 41, 93, 65, 41,141,166,175,136,161,148,174,190,124,249,114,157,177, + 99,199,106, 27, 53,106,132, 97,195,134,125, 78, 8,105, 89,142,110,179, 1, 3, 6,248, 51, 12,131, 61,123,246, 60, 42, 98,174, + 10,207,227,133, 3, 7, 14,220,210,233,116, 24, 52,104, 80, 85, 66, 72, 59, 11,246, 93, 32, 18,137,246,255,240,195, 15, 54, 9, + 9, 9, 24, 50,100,136, 54, 60, 60, 28,115,230,204,145, 88, 91, 91,159, 40,188, 7, 44, 65, 36, 18,253,242,243,207, 63,247,168, + 85,171, 22,198,140, 25,163, 91,191,126,253,184, 47,191,252, 82, 87,191,126,125,172, 91,183,174,135, 80, 40,180,104, 8,144,196, +196,196,236,208,208, 80,251,242,166,248,248,248, 20, 51,247, 89,170, 80, 40,110, 6, 6, 6,230,214,172, 89,179,129,209,104, 68, +104,104,232,203,237,219,183, 51, 53,107,214,196,218,181,107,177,100,201, 18,116,237,218, 21, 92, 46,183,183, 37,121, 85, 42,149, + 16,139,197, 16, 8, 4, 8, 14, 14,134, 86,171,133, 84, 42,133, 88, 44, 6,151,203,133,141,141, 13, 20, 10, 5, 0, 80,243,242, + 10,154,171, 50,128,207,231,128,199, 97, 16, 22,147, 3,189,129,129, 88,192, 5,159, 71, 0,202,192, 70,198,135, 88,200, 5,135, + 16,198, 76, 77,228, 40,245, 16, 10, 56,224, 11,132,132, 99, 52, 73, 94,191, 28,121, 38,137, 68, 34, 36, 14, 86, 34,136, 5,108, +159,220, 44,239, 56,130, 85, 24,101, 50,199,164,104,181,218,119,110,124,222, 86,179, 36,115,248,182,154,239,229, 73,228,241, 52, +207,158, 61, 19, 90,217,187, 49,246, 10,126, 86,149,207,175, 89, 3,128,157,156,151,163, 55, 25,152,196,196, 68,136, 68, 34,141, + 57, 90, 26,141,102, 4, 33,100, 62,128, 0, 30,143,119,108,235,214,173,100,199,142, 29,182, 3, 6, 12,136, 32,132, 36, 4, 6, + 6,122,110,221,186,213, 10, 0, 86,175, 94, 77,247,238,221,219, 17,175,186,190, 72, 46, 77, 51, 57, 57,121, 14,159,207,191,241, +213, 87, 95,173, 17, 10,133,182, 50,153,204,254,234,213,171, 68,163,167,104, 56, 61,230,117,203, 66, 43, 9, 7, 87,166, 89, 97, +228,200,145,220,167, 79,159, 46, 2,112,172, 12,205, 41, 34,145,232,234,243,231,207, 87, 88,187,215,117,148,121, 78,183,110, 60, + 45, 28, 0,224,233,192, 7,167,224,121,152,157,157,141,180,180, 52,124,249,229,151,182, 17, 17, 17, 83, 0, 92, 44, 77, 51, 62, + 62,254,178, 72, 36,138, 15, 9, 9,105,195,231,243,133, 50,153,172,225,205,155, 55,137, 70,199,160,246,148, 24,100,230,191,202, +167,157,156,135,123, 63, 56,227,235,175,191,230,189,120,241,226, 71, 0, 45, 74,252,247,194,225, 44, 41,106,174, 38, 79,158,252, + 16, 64, 85, 66,200, 27, 69,160, 38,147,137, 12, 26, 52,232, 9,128,154,147, 38, 77,178,163,148, 78, 32,132,100, 82, 74, 55,254, +221,215,146,149,149,213,226, 81,163, 70, 97,239,222,189,200,202,202, 90, 9, 0,185,185,185, 63,237,218,181,107,207,136, 17, 35, +240,219,111,191, 45, 38,132,156, 50, 35,138,213,185,127,255,254, 56,121,242, 36,206,159, 63,255, 61,165, 52,180,148,123,244, 57, + 33,100,202,225,195,135, 87, 13, 24, 48, 0,191,254,250,107, 39, 0, 87,203,208,109,223,177, 99, 71,156, 56,113, 2, 25, 25, 25, +235, 74, 90, 32, 59, 59,123,253,145, 35, 71,154,116,236,216, 17,139, 22, 45,106, 15,224,130, 25, 70,195,223,218,218,122,235,170, + 85,171, 26,214,170, 85, 11, 3, 7, 14,212,232,245,250, 78,147, 38, 77, 58,186,123,247,110,197,246,237,219, 27,140, 28, 57,242, + 54, 33,228, 11, 74,233, 45,115,142, 37,151,203, 93,184,102,205,154,225,109,218,180,193,132, 9, 19,140,167, 79,159,238, 78, 41, + 61, 67, 8,137,152, 60,121,242,241,229,203,151,115,151, 45, 91, 54,156,203,229,166,153, 76,166,127,202, 84,255,176,122,245,234, + 38, 29, 58,116,192,203,151, 47,113,235,214, 45,232,245,250,223,110,222,188,121,165,122,245,234, 63,232,116,186,163, 50,153,108, +168, 66,161, 8,172, 91,183,110, 59, 66,136,212,156,122,120,132,144,236,136,136, 8,153,147,147, 19,248,124, 62, 30, 61,122, 4, + 39, 39, 39, 0, 64,106,106, 42,106,214,172, 9, 46,151,139,236,236,108, 0,200, 49,207, 12,113, 30, 71, 68, 39, 86,181, 83,200, + 0,147, 24, 15,194,227,225,232, 96, 11, 19,225, 32, 57, 57, 9,117,253,220, 65, 8, 65,118, 70, 50, 8, 33, 79,204,209, 52, 81, + 38, 56, 54, 49,181,146,189, 66,132, 90, 77, 58,216,223, 60,149,182,195,186, 90,139,145, 60, 46,225,138,196, 86, 27,135, 15, 27, +230,192, 48, 20,217, 25, 41,224,113, 56,119, 88,203,192, 82,161, 8, 86,105,149,202, 94, 85,150,150,150,105, 82,196, 98,241,235, +232,137, 5,255,236,222,185,102,121,252, 21,154,255, 96,164, 97, 26, 33,228, 48, 33,100, 90, 92, 92, 92,216,240,225,195,245, 70, +189, 54,239,198,252,170, 83,239, 47,170, 50,230,230, 28,215, 49,135,198, 89, 79, 85,229,100,230,173, 94,189,218, 16, 23, 23, 23, + 86,116,157,114,140,105, 44,165,244,196,182,109,219,214,239,223,191, 31, 53,107,214, 68,104,104,168,147, 82,169,172,247,228,201, + 19, 59,127,127,127,236,216,177, 3,123,247,238, 93, 65, 41, 61, 91,150,185, 42, 18, 93, 59,151,148,148,228, 27, 19, 19,227,109, + 99, 99, 99,176,177,177, 65,241,150,133,185,106, 6, 25,217, 57,176,179,179,135,149,149,149, 87,121,154, 90,173,246, 68, 82, 82, +146, 15, 99,235,215,202, 39,125,101, 78,240,194,202, 8, 94, 88, 25, 39,166,184,193,213, 70,136,172,172, 44,164,165,165, 33, 45, + 45, 13,132, 16, 24, 12,134, 26,102,104, 70, 38, 38, 38,110,142,141,141, 61,236,236,236, 12,133, 66, 1, 10, 32, 57,219,128,135, +203,252,241,112,153, 63,146,179, 13,200,205,203, 67,149, 42, 85,160, 80, 40,106,150,114,126, 56,149, 42, 85,234,210,175, 95, 63, + 5, 0, 20, 24,167,143, 40,165, 99, 74,152, 70, 27,141,198,230,133,203, 78,156, 56,209, 14, 64,199,191,249,122,226, 18, 66,190, + 26, 49, 98, 68, 3,177, 88,140,181,107,215, 70, 2,216, 89, 48,123,255,250,245,235,195, 1, 96,220,184,113,129, 0, 38, 20,116, +145, 80, 42, 2,129,160,126,141, 26, 53,112,243,230, 77, 0,248,163,156,205, 31,184,113,227, 6,170, 87,175, 14,177, 88,220,176, +156,101,189, 42, 87,174,140,240,240,112, 0,120, 80,202, 50, 15,194,195,195, 81,185,114,101, 16, 66,188,204,216,247, 30, 29, 58, +116,120,124,241,226,197,134,205,154, 53,195,240,225,195,117,183,111,223,238, 66, 41,189,242,224,193,131,182,131, 6, 13, 82,250, +248,248,224,242,229,203,254,131, 6, 13,186,193,229,114,231,155,161,249,249,188,121,243,166,245,236,217, 19,243,230,205,163,251, +246,237, 27, 72, 41, 61, 83,112,127,157,222,179,103,207,144, 5, 11, 22,208, 94,189,122, 97,238,220,185,211, 8, 33, 99,202,137, + 6,229,152, 76, 38, 40,149, 74,179, 66,240,230, 46,239,224,224,208,185, 67,135, 14,152, 57,115, 38, 42, 85,170,132,163, 71,143, + 82, 0,199, 40,165, 87,181, 90,109, 43, 74,233,114,165, 82,121,232,230,205,155,104,223,190,189, 0,192,199,230,108,223,104, 52, + 70, 95,188,120, 81,111,111,111, 15,119,119,119,120,120,120, 64,169, 84, 34, 59, 59, 27, 53,107,214, 68,147, 38, 77,160, 84, 42, +113,236,216, 49,125,118,118,182, 89, 13, 81,140, 58,229,246,179,199, 15,230,216, 43, 68,112,119,178, 70,149, 74,118,200,207, 78, + 71, 90,114, 34,234,215,240, 64,235,250, 85,144,158,163,195,233, 99, 7,179,242,242, 84,219,205,138,250,107, 85, 91,207,157, 58, +154, 99,171, 16,192,215, 47, 16,131,134,143,171, 91,183, 94,227,179,141, 26, 53, 63,189,116,241,194,218, 31, 53,173, 65,226,211, + 53, 56,121,236,143,172,156,220,220,173, 96,249,203,249, 80, 42,184,191, 97,176, 74, 33,125,194,132, 9, 16,137, 68,112,117,117, +125,109,138, 10, 77,138, 80, 40,132,171,171, 43,140, 70, 35,246,236,217, 3, 0,233,229,108, 76,219,125,204, 34, 70,107,160, 42, + 62,159,255, 78, 52, 11, 34, 5,218, 79, 39,255,202,156,186, 81,114, 35,151,138,104,254, 11,104, 84,208,167, 85, 35, 74,105, 86, +116,116,116,124,223, 79,187,231,196, 68,132, 36, 43,179, 19,147,114, 51,226,146,226, 34,159, 36, 79,159, 50, 33, 39, 62, 62, 62, +174,160, 47,172, 70,137,137,137,221, 1,152, 91,151, 96, 66,223,190,125,127, 30, 49, 98, 4,125,248,240, 33, 0, 32, 56, 56, 24, +195,134, 13,163, 67,134, 12, 89, 9, 96,106, 5,242,173, 84,171,213,111, 68, 63,244, 38,230,117,209, 94,110,110, 46, 18, 19, 19, +161,211,233,204,118,194,207, 79, 47,123,150, 25,125,207, 16,232, 41, 67,160,167, 12,254,149,165, 32,198,252,215,230, 42, 45, 45, + 13, 41, 41, 41, 0,160,177, 32,159,185, 90,173,246,141,124, 22, 45,130,204,205,205, 69,114,114, 50, 76, 38,147,174,148,135, 4, +147,144,144,112,122,239,222,189,121, 0,176,116,233,210, 76, 66,200,121, 66,200,207, 37, 76, 27,120, 60,222,245,194,101,151, 45, + 91,150, 9,224,196,223,104,174,122,214,170, 85, 43,107,218,180,105,107,191,249,230, 27,108,216,176, 1, 73, 73, 73, 83, 41,165, +198,194,125, 73, 79, 79,159,188,110,221, 58,124,246,217,103,152, 53,107,214,178,122,245,234,229, 18, 66, 6,149,166,233,232,232, +232,206,227,241,112,255,254,253, 92, 74,233,203,114, 30,168,201,247,239,223, 79, 33,132,192,213,213,181, 90, 89,203,218,217,217, +121, 43, 20, 10, 36, 36, 36, 0, 64, 84, 41,139, 69, 39, 38, 38, 82,161, 80, 8, 55, 55,183,234,229,237,191,173,173,237,228,205, +155, 55,243, 66, 66, 66,240,209, 71, 31,197, 95,190,124,185, 61,165,244, 82, 65,222,238, 7, 7, 7,183,108,219,182,237,179,179, +103,207,226,199, 31,127, 36,117,234,212, 25, 83,158,166,167,167,231,232,207, 63,255, 28,107,214,172,193,198,141, 27,199, 80, 74, +247, 23,219,231,221,235,214,173, 27,183,113,227, 70, 12, 31, 62, 28, 94, 94, 94,131,202,210,139,137,137,153,210,166, 77,155,224, +231,207,159,155, 53, 66,129, 57,203, 19, 66,218, 54,110,220,216, 91,173, 86, 99,235,214,173, 47,189,189,189,239,238,223,191,127, + 2,165,244, 81,177, 69, 15, 29, 60,120, 16,131, 7, 15, 70,157, 58,117,182, 18, 66, 6,152,241,146, 76,140,137,137, 73,127,244, +232, 17,195,229,114,225,238,238,142, 46, 93,186,160,127,255,254,168, 83,167, 14, 82, 83, 83,113,229,202, 21, 38, 34, 34, 34,221, +220, 14, 71,211,159, 93, 60, 26, 21,245,236,250,253,219, 87, 12, 60, 46, 7, 30,174,118,248, 36,168, 46,190,232,221, 28,245,253, + 43, 33, 38, 85,141, 11, 23,206, 26,162,162, 94,222, 52,167, 5, 97,161,102, 88,232,163, 27, 33,247,175, 25,249, 60, 2,127, 63, + 31,204,156, 62,217,118,193,236, 41, 54, 62,213, 60,240, 40, 50, 7,103,207,156, 52, 36,198,199, 93,100, 91, 16,178, 88, 74,121, + 69,132, 75, 55,108,216,208,104,243,230,205,237, 39, 76,152, 32, 31, 58,116, 40,196, 98, 49, 84, 42, 21,220,221,221, 97, 50,153, +112,234,212, 41,220,187,119, 47,159, 97,152,179, 40,214,252,159, 16, 18, 84,180,175,140, 83, 17, 84,242,170,243, 74, 85,163,195, +125,250,188, 19, 77, 0,144,191, 96,172, 50,170,232,118,172,222,127,173,215,174,211,247,201,183, 3, 90,115,234,251, 85, 6, 0, + 56, 59, 59,195,202,202,202, 98,205,119,240,210,250,203, 53,139, 22,223, 38, 37, 37,133, 19, 66, 82, 71,140, 24,225, 95, 88,161, + 93, 36, 18,105,226,226,226,194, 10, 59, 26, 45,190, 78,121,249, 44,104,233,246, 37, 33,228, 72, 78, 78,206,233, 73,147, 38, 97, +193,130, 5, 56,122,244,104, 75, 74,233,245,138,236, 59,165,212,228,229,229,149,125,231,206, 29,231,234, 53,234,161,170, 19, 31, +173,190,127, 14, 74, 41,236,165, 20,121,217,153,120,240,224, 62,242,242,242,110, 91,146, 79, 55, 55,183,236,212,212, 84, 7, 39, + 39, 39,100,102,102, 34, 61, 61,253,181,185,202,202,202, 66,102,102, 38, 37,132, 92,181, 64, 83,233,237,237,173, 10, 11, 11, 19, + 58, 87,174,142,106, 78, 2, 52,158, 30, 14, 80, 10, 15, 59, 14,242,114,179,113,243,230, 77,228,228,228, 92, 42, 77,147, 97,152, +239, 6, 13, 26,196, 5, 48,100,210,164, 73,118, 0,234, 76,158, 60,249,108,241,150,130,124, 62,255,167, 29, 59,118,212, 44, 44, + 74,156, 50,101,202, 10, 74,233,230,191,235, 90,178,183,183,255,238,248,241,227, 10,189, 94,143,213,171, 87, 99,197,138, 21, 91, + 40,165,191, 23, 59, 30,199,185, 92,238, 58, 14,135,243,213,215, 95,127,141, 81,163, 70, 73, 27, 52,104, 48,161, 72,148,235, 13, +205,132,132,132,153,245,235,215,159,149,154,154,106, 86,133,253,231,207,159,143,172, 95,191,254,204,212,212,212, 37,101,157, 35, +153, 76, 38, 51,153, 76,136,138,138,202,162,148,230,148,114,238, 52, 62, 62, 62, 9, 38,147,201, 93, 42,149,218,149,119,125,102, +101,101, 45,108,208,160,193,156,148,148,148, 51, 0,230, 23,239,114,132, 82,250,144, 16, 18,248,205, 55,223,140, 93,188,120,113, +175,228,228,228, 61,229,105,198,196,196, 44,108,219,182,237,247,207,158, 61,219, 86, 90, 81, 47,165,116, 45, 33, 68,191, 99,199, +142, 49, 81, 81, 81,139,202,210,164,148, 30, 67, 25, 69,230, 37,104,151,184,124, 81, 77, 46,151, 59,121,241,226,197,156, 13, 27, + 54,128, 82,186,204,104, 52,150,150,207, 71, 92, 46,119,123,243,230,205,135,238,223,191, 95, 28, 24, 24, 56, 10,192,238,242,174, + 79,173, 86,123,235,198,141, 27, 77,162,163,163, 29,218,182,109, 43, 40,252, 99,146,157,157,141, 99,199,142,233, 35, 34, 34,210, +149, 74,229, 45, 75,158, 33, 70, 93,238,128, 27, 23, 14,239,142,126,254,164,105,155, 78, 61,108,117,122,119,136, 50,184,200,206, + 72,198,169, 99, 7,179,162,162, 94,222, 84,169,178, 7, 88,162,169,215,230,244,191,121,241,200,158,248,168,176, 38,173,218,118, +177,213,232, 60, 33, 18,112,144,145,146,128, 83,199, 15,103, 70, 69, 69, 94,213, 24,180,195,254,169,231,252,127, 73,243, 67, 12, +199,149, 59, 1, 16, 0, 8,146,203,229, 11,102,205,154,181,236,246,237,219,203,186,118,237,186, 76, 36, 18, 45, 0, 16, 4, 64, + 80,202,122, 65,127,167,102, 67, 55,216,181,173, 70,174,116,240, 38,204,232,150,182,166, 97,141,101,186,118,237,218,173,123, 27, +205,138, 78,127,181, 38,128,195, 6,131,129, 2, 72, 6,112,184, 96,154, 86,194, 58,211,138,204, 79,142,141,141,165, 0, 14, 91, +146, 79, 0, 14,253,250,245, 99,242,242,242,104,223,190,125, 41, 0,235,183,217,119,145, 72,212,182, 85,171, 86,134,148,180, 76, + 26, 30,153, 64,111, 5,135,210,211, 23,110,208, 61, 7,143,211, 53,235, 54,210,218,181,107,235, 0,120, 90,162,201,227,241,218, +181,109,219, 54, 35, 37, 37,133,134,133,133,209, 43, 87,174,208, 3, 7, 14,208,141, 27, 55,210,159,127,254,153, 86,174, 92, 57, + 5,128,179, 37,154, 18,137,164, 71,231,206,157, 13,217,185, 42, 26,149,144, 65, 31,135, 69,209,235,119, 30,211, 83, 23,174,211, +157,187,247,211,128,128, 0, 77,121,154,175,222, 99,220, 53,123,246,236,201,165,148,210, 30, 61,122,196, 3, 16, 23,153, 95,245, +187,239,190, 75,165,148,210, 37, 75,150,100, 0,152,254, 15, 92, 75,157, 42, 85,170, 20, 46, 16, 8,142, 3, 24, 82,206,122,253, +121, 60,222, 81, 23, 23,151,187, 0, 62,249,187,239, 35, 0, 93,157,156,156,110, 1,232, 94,206,122,133,203,245,252, 16,238,247, +191,232,188,183,227,241,120, 87,240,170,143, 43,115,222, 1, 63,112,185,220, 19, 0, 62,178, 36,159, 0,220,228,114,121, 11,185, + 92,222, 77, 46,151,119,179,177,177,105, 1,192,237,109,246,221,222, 39,168,155, 71,189,238,135, 42,215,249, 56,198,163,110,215, + 24,175,250, 61, 14,217,251, 4,117,123, 91, 77,207,250, 61, 14,123,212,237, 26,235, 81,183, 91,116,213,134, 61, 14, 57,248, 5, +117,254,208,206,251,251,172, 89,202,118, 70,254, 29,219,249, 75,242,110,225,142,202, 0,124, 2, 96, 81,193,167,236,109, 79,192, + 95,161,217,196, 21,190, 65,222, 36,172,139, 31, 47, 19, 64,239,119,161,249, 30, 62, 28,183,233,116, 58,170,209,104,168, 74,165, +162,249,249,249,111, 24,167,162, 70, 44, 49, 49,145,198,199,199,211,216,216, 88, 26, 29, 29, 77, 1,236,180, 52,159, 86, 86, 86, +155,251,244,233, 99,226,243,249,107,222,197,190,219,217,217, 45,106,220,184,177,126,213,170, 85,244,208,161, 67,116,211,166, 77, +244,235,175,191,166, 53,107,214,212,218,216,216, 12,168,136,166,139,139,203, 76, 63, 63,191,140, 45, 91,182,208,157, 59,119,210, +149, 43, 87,210, 25, 51,102,152,220,221,221,147, 21, 10, 69,199,138,104, 58, 57, 57,253,210,162, 69, 11,253, 47,191,252, 66,207, +158, 61, 75,119,237,218, 69,191,251,238, 59,234,239,239,175,149,201,100,159,154,163, 9,128,203,227,241,150,143, 30, 61, 58,217, +205,205,237,120,177,121,210,128,128,128,187,131, 6, 13, 74, 4, 48,133,125,224,178,154,172, 38,171,201, 26,172, 15,195, 96,241, + 44,140,118, 41, 1,252, 65, 8, 57, 90, 88, 63,227, 29, 68,208,222,185,230,205, 68,250, 12,128, 63, 33,132,247,174, 52,223, 67, + 22, 10,133, 66, 94,129, 65, 45,164,164, 86, 46,119,220,220,220,138,254,206, 1, 96,113, 63, 75, 57, 57, 57, 95, 16, 66,198, 21, +235, 98,160,194,100,100,100, 76, 35,132,236,141,140,140, 92,100, 99, 99, 83,223, 96, 48, 24,114,115,115,175,100,101,101, 77,161, +148,198, 87, 68, 51, 41, 41,105, 62, 33,228,200,204,153, 51, 39, 81, 74, 27,113, 56, 28,141,193, 96,184,148,158,158,190,136, 82, +154, 86, 17,205,148,148,148,145, 2,129,224,215,136,136,136, 69, 18,137,164, 54,195, 48, 58,149, 74,117, 41, 61, 61,125, 60,165, + 52,197,204,107,220, 4,224, 59, 66,200,114, 0,169,197,230,169, 8, 33,205, 67, 67, 67,237, 41,165, 73,108, 76,157,133,133,133, +229,191, 81, 7,171,180, 23,198, 59, 55, 45,255, 22,205,247,168,104,247, 5,128, 65,102, 44,183,232, 29,110, 83,253,142,247,225, + 49,128,206,239, 88, 51, 4,192,144,119,169,169,215,235,111,195,204,113,217,202,201, 91, 82, 41,233,122, 0,172,185, 98, 97, 97, + 97,249,128, 96,123, 79, 99, 97, 97, 97, 97, 97, 97, 97,121,199, 16,188,170,252, 93,210,191,106,179, 91, 7, 16, 66,130, 42,240, +111,254, 28,171,201,106,178,154,172, 38,171,201,106,178,154,255, 45,205, 34,218,165,141,109, 26, 94, 76,239, 23,252, 27,249,139, + 43,167,177, 21, 0, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,207, 77,108, 17, 33, 11, 11, 11, 11, 11, 11, 11,203, 59, +134, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44,172,193, 98, 97, 97, 97, 97, 97, 97, 97, 97, 13, 22, 11, 11, 11, 11, 11, 11, 11, 11, +107,176, 88, 88, 88, 88, 88, 88, 88, 88, 88, 42, 14, 41,104, 13,240,234, 7, 33,148, 82, 74,216,195,194,194,194,194,194,194,194, +242,143, 24,147, 15,196,139,176, 17, 44, 22, 22, 22, 22, 22, 22, 22, 22,214, 96,177,176,176,176,176,176,176,176,252, 11, 12, 22, + 33,132,178,135,130,133,133,133,133,133,133,229,159,226, 67,243, 34,133, 17,172, 54, 5, 59,214,134, 61,197, 44, 44, 44, 44, 44, + 44, 44,255, 0, 31,148, 23,121,163,146, 59, 11, 11, 11, 11, 11, 11, 11, 11,203,219,195,214,193, 98, 97, 97, 97, 97, 97, 97, 97, + 97, 13, 22, 11, 11, 11, 11, 11, 11, 11,203,127,216, 96, 17, 66,130, 88, 77, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 89, +131,197,194,194,194,194,194,194,194,194,194, 26, 44, 22, 22, 22, 22, 22, 22, 22, 22,214, 96,177,176,176,176,176,176,176,176,176, + 6,139,133,133,133,133,133,133,133,133,133, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44,255, 16, 4, 64,137, 45, 1, 40,165,231,204, + 22,169, 64,107,130,242,244, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,240, 52,203,211,182,196,127,188,215, 80, 74,255, +178, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,230,127,109,226,177, 65, 60, 22,150,127, 57, 7, 8, 23, 89, +126, 94,160,212, 13, 92, 97, 18,146, 30,191,196,108,202,188,181,102, 74,128, 39, 36, 6,103, 24,197,105, 72,121, 20,249,214,154, + 44, 44, 44, 44,255, 33, 88,131,197,194,242,111, 39,205,223, 23, 60, 44, 2, 7,174,160,250, 8, 56, 6, 44, 2,240,228,173, 53, + 5,204,124,152, 56,238,160,250,103,112,242, 91, 12, 32,148, 61,216, 44, 44, 44, 44,230,241,143, 84,114, 23,139,197,193, 66,161, +240, 7, 66,136,136, 61, 5, 44,127, 21,132, 16,145, 80, 40,252, 65, 34,145, 4,127,176, 59,185,163,150, 20, 28, 83,103,157,129, +169,116,234,113,182,147, 74,107,242, 5,199,216, 5,191,250,202,223, 74,147, 71, 58,104,244,140,199,206, 59, 42,103,165,206, 88, + 3, 20,111,167,249,255,115, 98, 35, 20, 10, 79, 17, 66, 28,216, 43,244,195, 36,128,144, 6, 13,249,252,137, 53, 8,105, 71, 8, + 33,236, 17, 97, 97, 13,214,223,136, 86,171,173, 87,175, 94,189, 9, 66,161, 48,134, 16,210,253,191,116,192, 21, 10,197, 13,107, +107,235, 20, 27, 27,155, 20,107,107,235,251,229,165,127,160,198,199,215,201,201, 41,198,222,222,254, 89,209,116,167, 58,189,154, +249,180, 24, 58,219, 33,176,103,235,119,176,141,238, 34,145, 40,166,113,227,198,227, 53, 26, 77,189, 15,246, 96,106, 24,103,112, +184,109, 67,146, 84,210,164, 92,131,115,112,180, 74, 1,112,219, 64, 7,215, 10,107,230, 48,206, 0,109,247, 48, 94, 45,187,145, +233,232,124,245,165,214, 10, 28, 78, 91,104,136,203, 91, 63,112, 56,156, 49, 12,195,180, 23, 8, 4,223,178,143,223, 15, 19, 33, +135,211,252, 70,247,238,243,167,212,174, 61,214, 31,232, 86,146,201, 34,175, 24, 87,163, 70,141,147,132,144,254,239,240,217,242, +163,191,191,127, 2, 33,228, 27,246, 76,176,252,107, 12, 86,159,170,164,249,192,106,228,114,191,170, 36,175,127, 53,146, 63,164, + 26,185,214,187, 42,105, 87,209, 13, 95,185,114, 69, 18, 22, 22,230,212,186,117,235, 61, 18,137,228, 26, 33,196,167, 34, 58, 98, +177,248, 20,143,199,235, 83, 52, 77, 42,149,158,226,241,120,253,138,165,133, 72,165,210, 28,137, 68,242,210, 76,221, 23, 66,161, + 80, 41, 22,139, 95, 20, 77,231,241,120,253,100, 50,217,169, 98,105,125,138,167,149, 6,159,207,119,143,139,139,115,138,143,143, +119, 18, 10,133,206, 69,211, 99, 99, 99,157,226,226,226,222, 72,183, 20, 62,159,223, 78, 46,151, 31, 40,158,166, 80, 40, 14,152, +171, 33,151,203,127,231,243,249,237,138, 25,195, 63,165, 85,212, 92,117,232,208,225, 90, 82, 82,146,135,141,141,141, 77,209,121, +118,214, 54, 29,127,219,178,110, 66,143, 46, 29,198, 56, 5,124, 82,171,130,250, 62, 82,169,244, 90,163, 70,141,246, 92,184,112, +193,105,231,206,157,210, 15,246,238, 61, 16, 32, 0, 97, 90, 49,148, 58, 62, 77,208, 56,126,220,189, 15,239, 65,156,218,209, 96, + 50,217, 1,220, 54,216, 86, 69, 84, 33, 77,158,161, 37, 67,169,243,249,104,190, 99,219,190, 99,185, 23,162,121,142, 6,147,201, + 30, 28,180,174,144,230,255,207, 13,159,203,229, 78, 88,190,124, 57, 7,192,215,132, 16,225,127,233, 97,219,184, 18,169,244, 81, +117,222,157,250,110,164,249, 59, 52, 20,129, 50,153,236, 30, 33,196,247,125,217, 79, 29,195,132,239,137,140, 60, 61,216,219,187, +235,148,218,181, 63, 43,110,178, 10,190, 79, 89,188,120,241,144,144,144, 16,199,170, 85,171,142, 34,132,112,222,193,177, 88,185, +120,241,226,201, 33, 33, 33,110, 94, 94, 94,115,223,133, 38,203,251,229,221, 1,180, 5,240, 49,128,143, 0, 52, 42,248,222,176, + 96,250, 24,175,122, 69, 40,250,217,176, 96,221,194,249,141, 75,209,248,184,132,245, 26, 22, 73, 47,250,187,248,247,210, 41,104, + 13, 64,139,126, 22,159,250,121, 97,206,216,102,149, 84, 79,143,238,162,249,113,145, 52, 43,236, 1,125,240,203, 66, 58,182,161, +163,106, 96, 85,252, 88,129,214, 7,148, 82, 74,131,131,131,169, 90,173,166, 39, 78,156, 96,156,157,157, 53, 66,161,112, 37, 0, +153, 37, 90, 66,161, 48,223,209,209, 49, 79, 34,145,108, 5, 32,164,148, 66, 36, 18,229,187,184,184,228,137,197,226, 29, 0, 68, +148, 82,116,236,216, 81, 77, 41,165, 34,145, 72,105,142,110,231,206,157,149,148, 82, 42, 20, 10,149, 5,121, 22,137,197,226,223, + 26, 52,104,144, 43, 18,137,242, 11,210,132, 82,169,116,107,195,134, 13,115,197, 98,113,190, 57,186,118,118,118,113, 38,147,137, + 30, 61,122,148, 58, 57, 57, 37, 22,166,219,218,218,198,153, 76, 38,122,248,240, 97,234,232,232,152, 88,129, 99,202,145,203,229, + 75, 27, 53,106,148, 45,151,203, 51,138,164, 45,107,210,164, 73, 78, 97,154, 57,147, 76, 38,203,240,240,240,200,146,203,229,203, + 0,112, 40,165,144,203,229, 25, 85,170, 84,201,180,178,178, 90, 90,152,102,206,228,230,230, 54,202,201,201, 41,209,201,201, 41, +209,198,198,102,129,171,171,107,114, 90, 90, 26,165,148,210,106,213,170,165, 82, 74,225, 88,251,147,102,213,155, 15,153,237, 20, +216,125,252,134,253, 55,111, 95,121,146,145, 86,187,253,152,165,214,181,123, 88, 91,176,255, 50,161, 80,184,210,197,197, 69,115, +248,240, 97, 83, 74, 74, 10,125,244,232, 17, 77, 74, 74,162,165, 93,215,255,250,105, 93,128, 59,221,232,183, 39,116,150, 71,216, +149,197,157, 12, 52,250, 2,221,245,153,163,225,242,248, 74, 17,244,103,255,223,233,198, 26,149, 43,164,249,115,141, 93,143,102, +120,132,175,153, 59,206, 16, 19, 19, 67, 39, 14,237,100, 60, 51,182,210, 75,186,193,127,127,133, 52,255,127,142, 6,124,242,201, + 39,249,177,177,177, 52, 32, 32, 64,201,229,114,135,255, 87, 90, 19, 53,114, 67,165, 32, 95, 97,194,163,157, 19,153,110,129,210, +140,122,174,104,254, 14, 90,113, 5, 58, 57, 57,165,111,219,182,141, 42, 20,138, 84, 0,190,239,195,190, 2, 32,254, 64,247,237, +181,107, 31,102,122,247, 54,109,175, 93,251,176, 63,208, 29,175,186, 5, 34, 0,166, 46, 89,178, 36,216, 96, 48, 4,111,221,186, + 53,184,123,247,238,193, 0, 38,190,229, 54, 87,253,248,227,143,212, 96, 48,208,173, 91,183,210,238,221,187, 83, 0,171,205, 93, + 95, 46,151, 87,175, 85,171,214,142,128,128,128,216, 58,117,234,232,106,212,168,161,241,245,245,141, 14, 12, 12,220, 38, 18,137, +188,216, 22,113,127,219,181, 83,150, 23,105, 52,117,234,212,105, 0,232,212,169, 83,167, 81, 74, 63, 46, 88,238,227,162,223,139, +127, 82, 74,131,138,254, 46, 73,163,112, 42, 73,179,164,109, 20,251, 94,250,254, 20,238, 12,128,214, 0, 46, 23, 95,160, 79, 85, + 52, 27,219,172,146, 90,157,150, 68,159, 44,252,150, 94,108,235, 78,175,183,113,161,207, 38,124, 66,147,118,174,164, 95,214,181, + 85,245,174,138,182, 21, 49, 88,135, 15, 31,166,103,206,156,161, 47, 95,190,164, 41, 41, 41,244,251,239,191,215,201,100,178, 44, + 46,151, 59,200, 92, 45,137, 68,146,147,144,144, 64,191,255,254,123,109, 65,180,169,170, 84, 42,205, 73, 78, 78,166, 11, 23, 46, +212, 73, 36,146, 72, 0, 62, 34,145, 40,255,229,203,151, 84, 44, 22,155,101,176,164, 82,105,206,147, 39, 79,168, 72, 36, 82, 2, +240,113,116,116,140, 60,127,254,188,129, 97, 24,234,238,238,158, 11,160,170,163,163,227,139, 11, 23, 46,188, 78, 51,215, 96,169, +213,106,122,230,204, 25,234,236,236,156, 88, 60,253,228,201,147,111, 24, 47, 51,143,167,179,171,171,235,131,194,252,121,121,121, +165, 1,112,118,115,115,123,120,249,242,101, 67,129,153, 73, 51, 87,207,197,197, 37, 53, 53, 53,149,174, 94,189, 90,171, 80, 40, +238, 3,112,118,113,113, 73, 77, 75, 75,163,107,215,174,213, 90, 89, 89, 5, 3,112, 54, 71,203,193,193, 33, 81,167,211,209,236, +236,108,218,184,113,227,252,235,215,175,211,220,220, 92, 74, 41,165, 85,170, 84, 73,165,148,194,175,245,240, 31,110, 63,207,207, +253,124,242,186,125, 94,141, 6, 46, 60,125, 39, 33,126,243,161,123,193, 14,129, 61, 58,153,179, 13, 46,151, 59, 72, 38,147,101, +253,244,211, 79,250,172,172, 44, 26, 25, 25, 73,111,221,186, 69,111,221,186, 69, 83, 82, 82, 62, 76,131,181, 31, 92,186,209,175, + 7,221,232, 23,188,109,176, 67,122,222,253,221,148,158,253,134,190,252,161, 42,157,213, 73,145,199,108,244, 11,166, 27,253,123, +211, 57,173,121, 22,105,254, 82,163, 27,221,232, 23,252, 99, 31,207,140, 7,193,119,233,229,203,151,233,250,149, 75,232,216,160, + 74, 74,102,163, 95, 48,253,185, 70, 47,139, 52,139, 76, 34,145,232,249,181,107,215,232,149, 43, 87,232,220,185,115,169, 84, 42, +141,125,251,227, 80, 67, 64,127,246,245,164,235,124,218,208, 45, 62,174,244, 82,197,242,246, 87,155,171,246,190,194,248,244, 7, +135, 40,205,124, 65,147,151, 5,208, 78,126,252,183, 50, 89, 5,230, 42, 45, 58, 58,154, 38, 39, 39,211, 21, 43, 86, 80, 43, 43, +171,247,218,100,249, 1, 61, 0, 76, 91,186,116,233,107,115,181,110,221,186,224,199,143, 31, 7,123,120,120,156,120,139,109,173, + 94,186,116,233,107,115,181,110,221, 58,250,248,241, 99,234,233,233, 25, 87,222,186,131, 7, 15,150, 54,107,214, 44,120,208,160, + 65,170,109,219,182,209,232,232,104,250,248,241, 99,186,116,233, 82, 58,123,246,108,250,235,175,191,210, 94,189,122, 41, 27, 55, +110,124,187,119,239,222, 98, 11,243,198,163,148, 10, 11, 38, 62,165,180,208, 96,242, 0,240, 1,112, 89, 83,245,103,111, 80,154, + 23, 41,205, 68,149,102,172,138,207, 43,195,128,149,105,212,202,219, 94, 89,251, 83, 52,132,122,137, 82,250,167,186, 47, 60,138, +121, 35,191,251, 65, 28,181,109, 5, 82,246,174, 5, 55, 59, 5,252,188, 12,104,175, 29,135,225,218, 17, 12,105,218, 84, 34, 33, +100,126, 69,226,125, 18,137, 4, 60, 30, 15,137,137,137, 72, 76, 76,196,168, 81,163, 4,215,174, 93,179,105,217,178,229, 47,114, +185,252, 33, 33,164,182, 25, 97, 97,184,185,185, 97,236,216,177,194,237,219,183, 87, 83, 40, 20,247, 77, 38, 19,223,217,217, 25, + 99,198,140, 17,236,223,191,191,138,141,141,205, 93,147,201, 36, 16, 10,133, 48,183,206, 37, 33, 4, 2,129, 0, 70,163,145,223, +168, 81,163,123,161,161,161, 94,173, 91,183,230,133,133,133, 33, 61, 61,157,215,176, 97,195,135,161,161,161,222,173, 90,181,226, + 69, 70, 70, 34, 39, 39,135,154,171,171,211,233, 32, 18,137,192,225,112,222, 72,215,106,181,176, 36,143,133,197,127,205,155, 55, + 15,121,244,232, 81,157,214,173, 91,243,158, 60,121,130,244,244,116,126,227,198,141, 67, 30, 62,124, 88,187, 69,139, 22,188,103, +207,158, 33, 39, 39,199,236, 38,246, 98,177, 24,142,142,142, 24, 50,100,136,112,255,254,253,117, 28, 29, 29, 31,241,120, 60,161, +131,131, 3, 6, 13, 26, 36,220,191,127,127, 93,103,103,231,135,102, 22, 25,114, 1,192, 96, 48, 96,212,168, 81, 50, 43, 43, 43, +196,197,197,129, 97, 24,152, 76, 38, 0, 64, 70, 86,198,227,135,143,159,132, 13, 25,208,167,181, 90,175,213,222,188,115,239,105, +181, 42,158,238,132,208, 42,229, 28,203,218, 82,169,244, 97,255,254,253, 55,197,198,198,218, 12, 26, 52,136, 31, 29, 29,141,140, +140, 12,240,249,124,136,197,226, 55,142,241, 7, 69,110,128, 61, 24,180,143, 73,211,137, 68, 54,238, 10,185,171, 47, 16,123, 5, + 85, 29, 69,224,114,184,226,187,145, 42, 25, 64,219,195, 35,221,222, 50, 77,166,125,100,170, 78,100,176,171, 41,119,115,247, 64, + 70, 70, 6, 42, 87,243,135, 70,232, 40,188,241, 66, 41, 7,177, 80,243,255,231,170,165,143,143,143, 75,245,234,213,145,158,158, +142,122,245,234,193,214,214,214,150, 16,210,190,194,199, 96, 91, 21, 17,114,209, 28,132, 44, 7,151, 51, 23, 6,222, 34,188, 72, +171,135, 95,234,243,223,167, 98, 65, 43,185,240,214,238, 61,123, 43,217,123,212, 0,142,127, 14,103, 27, 17,182,140,169,103,231, +104, 45, 58, 92,145,226, 66, 66, 72,160,179,179,243,133,219,183,111, 59,136,197, 98,220,191,127, 31, 1, 1, 1, 88,177, 98,133, +163,173,173,237,149,247,161,184,144, 82, 74,195,128,163, 63, 62,122,180,117, 71, 68,196,177,193,222,222, 93, 7,249,250, 46, 24, +221,191,255,240,113,227,198, 97,201,146, 37, 56,124,248, 48,154, 55,111,142,145, 35, 71, 26, 98, 99, 99,183, 87,176, 88,112,237, +178,101,203,198,126,243,205, 55,197, 53,245, 49, 49, 49, 63,150,181,110, 96, 96,160,251,243,231,207, 19, 38, 76,152, 80,111,199, +142, 29, 18,169, 84,138,236,236,108,252,242,203, 47,152, 54,109, 26, 8, 33,160,148,226,215, 95,127,149,126,246,217,103,141, 34, + 34, 34, 18,170, 84,169, 98, 78,245, 13, 2, 64, 12, 64, 90, 48,201, 0, 72,119,239,222,109,221,163, 71, 15,171,130, 52, 9, 0, + 9,219,208,171, 68, 74,244, 34, 69,206,249,177, 98,215, 90,215,226,105,197,231, 81, 74,187,150,165, 97,225,181,221,213,220,245, +139,190,125,218, 16, 66, 46,255, 73, 12,168,237,226,229,135,156,179,251, 33,225, 17, 72,184, 5, 19,143,128,243,242, 49, 42,139, +249, 48, 80, 26, 88,193,250, 83,144, 72, 36,144, 72, 36, 32,132, 32, 43, 43, 11, 86, 86, 86,216,187,119,175,120,245,234,213,181, +164, 82,233, 77,107,107,235, 69,229, 25, 22, 0,120,246,236, 25,234,214,173, 75,142, 29, 59,102, 53,122,244,104, 30, 0,196,196, +196,160, 86,173, 90,228,226,197,139,138, 73,147, 38, 17,145,200,178,107, 89, 32, 16, 96,242,228,201,228,250,245,235,114,169, 84, +138, 39, 79,158, 32, 63, 63, 31,147, 38, 77,226,221,184,113, 67, 46,147,201, 16, 17, 17, 1,141, 70, 99,145,113,211,233,116, 16, + 8, 4,111,172, 67, 8,129, 94,175,135, 80, 40, 52,219, 20, 56, 56, 56,204,110,208,160,193,129, 75,151, 46,217, 75, 36, 18, 60, +126,252, 24, 42,149, 10,243,231,207,151, 94,187,118,205, 94,161, 80, 32, 60, 60, 28, 42,149,202, 34,211, 86,184,253, 23, 47, 94, +192,199,199,135, 28, 63,126,220,105,228,200,145,226,194, 99,234,235,235, 75, 78,156, 56,225,236,239,239,191,223,201,201,105, 86, + 89, 90, 12,195, 32, 41, 41, 9, 33, 33, 33,120,249,242, 37,210,210,210,144,158,158,142,188,188, 60, 24,141,198, 87,245,227,242, +114,143,239,222,119,244,161, 68, 34,145, 6,248,250,120, 60,126, 18,154, 42,145, 72,164,158, 30, 30,190,132,204, 45,241, 96, 40, + 20,138, 69, 18,137,228,230,145, 35, 71,106,111,218,180, 73,148,158,158,142,152,152, 24, 16, 66, 32, 22,139, 95, 79, 92, 46,247, +195,123,252, 16, 66, 64,116, 62, 32,164,222,173,151, 74,187,150, 93, 7, 8, 16,121, 10, 96, 12, 0,135,135, 54,181,221,121,135, + 31, 43,157, 65, 81, 27, 90,248, 3,102,156,124, 66, 8,160,175, 14,144, 6,103,158, 27,237,155,127, 50, 70,144,144,144, 0,129, + 64, 0,145, 72,132,122,237, 62,229,237,126,104,112, 1, 65, 29,232,225,103,150,230,155,127,166,190,159, 61,123,182,172,168,230, +240,225,195,101,214,214,214,179, 43,108,174,148,210,166, 48,209,111, 67, 18,212,158, 11,142, 39,251,191, 76, 85,251,131,226, 59, +192, 80,247,109, 77, 22, 33,164,141, 88, 44,142, 36,132,180,120, 43,115,165, 16,222,220,179,103,111, 37,187,202,175,204, 21,140, + 26,128, 47,129,139,163, 13,182,140,111,107,231,104, 35,177,200,100, 21,152,171,243,183,110,221,114, 16,139,197, 8, 14, 14,134, + 64, 32,128, 88, 44, 70,173, 90,181,176,113,227, 70, 71, 59, 59,187,247,202,100, 45,126,244,104,219,162,144,144,103, 83, 3, 3, +253,123,202,100,118, 95, 13, 26,100, 61, 99,198,140, 99, 71,142, 28,217,250,241,199, 31,167,223,185,115,231, 39, 74,233,126, 11, +207, 15, 33,132,172, 91,190,124,249, 87,133,134,109,198,140, 25,191, 30, 57,114,100,209,199, 31,127,156,116,231,206,157, 9,148, +210,117,101,105,228,231,231, 31,153, 57,115,166,245, 39,159,124, 82,248, 27,215,174, 93,195,246,237,219, 33,147,201,222, 88,182, +123,247,238, 24, 49, 98,132,173, 78,167,251,189, 44, 77, 39, 39,167,160, 91,183,110, 5, 0, 16, 0, 16, 21, 26,172, 39, 79,158, +216,228,230,230,218,200,229,114, 27, 87, 87, 87, 69,161,201,250,228,147, 79,108,248,124,126, 75,214, 83,189, 65,137, 94,164,168, +193, 49, 39,173,162,203,155,107,178, 44, 50, 88,148,210,203, 0, 90,149,180,144, 62, 51, 5, 34,152, 32,225, 18, 72,185, 69, 76, + 22, 24,240,114, 82, 81,209,134,184, 69, 95,132, 18,137, 4, 98,177,248,117, 36, 39, 39, 39, 7,132,144,114,205, 70,161,113,144, +203,229, 80,171,213,208,235,245, 16,139,197,175,211,140, 70, 35,140, 70, 35, 36, 18, 9, 68, 34,145,197, 17, 44,131,193,128,144, +144, 16, 68, 68, 68,128,195,225, 64, 38,147,193, 96, 48,224,233,211,167, 72, 72, 72, 0,143,199,131, 84, 42,181,200,192,152, 76, + 38, 8,133,127,174,223,107, 48, 24, 44,138, 96,113, 56, 28,168, 84, 42,250,252,249,115, 68, 71, 71, 67, 32, 16,192,202,202, 10, + 66,161, 16,105,105,105,136,143,143,127,157,102, 73,254, 10,151,149, 72, 36, 80, 42,149,133,117,221, 94,167,105,181, 90, 16, 66, +192,229,114,203, 61, 63, 38,147, 9,137,137,137, 72, 75, 75, 67, 92, 92, 28,210,211,211, 95,155, 44,134,121,251,126, 43,239,221, +187, 71, 67, 67, 67,161,213,106, 33, 18,137, 32, 22,139,223,248,228,241, 62,192,174,222,214, 7, 90,195,192,239,144,158,111, 16, +165,233, 5,214,206,129, 65, 64,228, 73,128,195, 3,196,182,104, 82,179, 42, 98,178, 76,178,240, 20,157, 24, 4, 29,177,206,215, +214, 44, 77, 19,191,125, 90,158, 65, 20,173,119,180,170, 81,187, 62, 82, 82, 82, 32, 18,137, 32, 18,137,208,160,121, 16, 34, 51, + 76,210,208, 4,181, 20, 20, 29,204,210,252,255,245, 84, 77, 46,151, 55,109,209,162, 5, 41,170,217,165, 75, 23, 16, 66,106, 17, + 66,252, 45,218,255, 53,222, 66,232,165, 77,192,167,223,134, 38,169,220, 14, 63,209,248,118,235,249,169,221,202,115,169,254, 97, + 73, 26, 47, 48,198,137,160,250,250, 21, 53, 89,132,144,214, 10,133,226,216,154, 53,107,188,196, 98,241, 73, 66, 72,133, 94,128, +114, 9,119,195,247, 95, 13,168,100, 91,104,174, 12, 42,128, 39, 1,248, 18,128, 39,129,139,147, 3,230,143,104,111, 39, 21,243, + 15, 90, 96, 84,119,175, 91,183,206,177,184,185, 42,156,234,213,171,135, 89,179,102, 57,218,217,217,237,250,135,255, 3,116,176, +177,177,217, 17, 20, 20,116, 43, 81,161, 24,145, 84,191,190,240,188,181,117,206, 71, 57, 57,214,158, 79,158,232,253,128,199, 0, +214,199,197,197,117, 50,215, 92, 17, 66,250, 91, 91, 91, 7, 7, 5, 5,233, 21, 10, 69,236,138, 21, 43,190,252,250,235,175,177, +100,201, 18,204,156, 57,115, 19,128, 47, 40,165,211,227,226,226,220,202, 51, 87, 0,144,156,156, 60,112,202,148, 41,233,233,233, +233, 0,128, 90,181,106, 33, 59, 59, 27, 19, 39, 78,196,183,223,126, 11, 0,168, 91,183, 46, 40,165, 72, 73, 73,193,178,101,203, + 82,146,147,147,135,149,243,135, 50,110,255,254,253,141,244,122,189,123, 65, 49,160, 40, 59, 59,219, 42, 51, 51, 83,161,215,235, +101, 12,195,200,108,108,108,228, 0,164, 67,134, 12,225,133,132,132, 4, 24,141,198, 4,214, 83,189, 97, 94, 74,245, 34, 21,228, +248,219, 68,170, 74,138,128,153, 29,172, 40, 16, 34, 69, 63,139,194, 37,120, 20,123,239, 10,236, 2,235,191, 17,189,146,114, 9, + 36, 86,214,136,140,139,129, 0, 36,228,109, 13, 86,161,201, 10, 13, 13,197, 71, 31,125,164,154, 51,103,206, 99,165, 82,217, 52, + 43, 43,107,154, 57,102,192,218,218, 26,215,175, 95,167,189,122,245,202, 93,181,106,149,177, 48,237,214,173, 91,180,125,251,246, +121,243,230,205,163,197,139,229,204, 49, 88,171, 86,173,162,109,219,182,205,185,125,251, 54,149,201,100,144, 74,165, 88,181,106, +149,177, 85,171, 86, 57, 23, 47, 94,164, 50,153,236, 79,255,118,202, 51, 69,133, 6,171,168,233,225,112, 56, 96, 24,198, 34,131, +149,154,154, 58, 55, 44, 44,172, 79,187,118,237, 82, 66, 66, 66,168,149,149, 21,172,173,173, 49,117,234, 84, 85,221,186,117, 83, + 31, 61,122,244, 58,205,146,162,178,194,237, 43, 20, 10,132,132,132,208,174, 93,187,166,174, 95,191, 94, 83,152,246,228,201, 19, +218,185,115,231,148,144,144,144, 62,201,201,201,243,202,139, 96,189,124,249,242,117,196, 74,163,209, 32, 61, 61, 29,113,113,113, +175,139, 8,213, 50,171, 78, 3,250,118,171,163, 86,171, 85,161,207,158,199,214,170, 25,224,164, 86,171, 85, 49,177,177,207, 40, +157, 93,162, 11,203,203,203,155,166, 86,171,155, 46, 88,176,224,113,159, 62,125, 84,225,225,225,127, 50, 87, 98,177,248,195, 52, + 88, 28,198, 5,132,182,184,250, 60,223,166,125,183,126, 66,146,124, 7,208,231, 3, 34, 91, 64,100, 11,158,204, 30,157, 91,214, +229,110,187,149,235, 2,202, 52,131, 64,228, 94,174, 38,159, 58, 3, 76,203,179,207, 52,182, 45,122,143, 21,102,102,102,130,203, +229,190, 54, 67, 82,153, 12, 31,245, 28,194,249,245,142,214, 5,160,205, 65,184,238,230,102, 87, 40, 20, 78,254,254,251,239, 5, + 89, 89, 89,224,112, 56,255,215,148, 74, 49,122,244,104,145,149,149,213, 76,179,247,253, 64,128, 0,124, 81, 19, 48,244,219,240, +100,181,219,145, 71,106,223,239, 22,109,145, 4,214,109,132, 81,109,156, 36,139, 78,164, 6, 60, 76, 80,121, 1,166, 9, 48,234, + 26, 88,106,178, 8, 33, 45, 21, 10,197,241,123,247,238, 73,187,116,233,130,101,203,150,201, 36, 18,201, 73, 66,136,197, 15,124, +101,190,233,235,121,171,127, 75,121,244, 83, 71, 64,175,124,101,172,138, 76,169,249, 12,102,109,185,144, 99, 48,208, 1,230,106, +170,213,234,161, 95,124,241, 69,198,193,131, 7,255,100,174,196, 98, 49,162,162,162,176, 96,193,130,204,204,204,204, 97,255,164, +185,250,250,235,175, 23,196,199,199,251,157, 61,123,150,151,150,150,230,180,124,243,230,156, 3, 57, 57,153,139,158, 60, 9,159, + 94,179,166,207,212,218,181,135,149,214,133, 67,105,230,234,171,175,190,218, 29, 31, 31, 95,239,220,185,115,252,180,180, 52,247, +175,190,250, 10, 75,151, 46,197,204,153, 51, 55, 2, 24, 85, 88, 59,218, 92,116, 58, 93,120, 86, 86, 86,215,142, 29, 59,102,103, +101,101,161,118,237,218,232,214,173, 27, 92, 92, 92,224,230,230,134, 30, 61,122,192,215,215, 23, 25, 25, 25, 24, 48, 96, 64,102, + 90, 90, 90, 71, 74,105,153,173,208, 51, 50, 50, 94,236,218,181,235,249,215, 95,127, 93, 63, 62, 62,190, 6, 0,251,188,188, 60, + 89, 94, 94,158, 72,167,211, 73,108,109,109,109,235,214,173,235, 48,114,228, 72,249,253,251,247, 3, 18, 18, 18,242, 0, 68,179, +182,234,181,169, 41,213,139, 0, 72, 43, 48, 58,186, 98,159,105,229,204, 51,119,221, 18,191,155,177, 92,249, 17,172,210,208, 3, +179,182,239,223,166, 17,122, 84,135,181, 95, 29, 72,197, 98, 72,132, 66, 72,108,237,161,101, 24,108,142, 74, 86, 41, 41,157, 89, +129, 3,249,186,120, 80, 44, 22, 35, 63, 63, 31, 99,199,142,213,244,237,219, 55, 59, 42, 42,106,116,110,110,110, 29, 74,233, 35, +115,204,128, 82,169,196,156, 57,115,212, 83,167, 78,125,153,151,151, 87, 79, 32, 16, 24,244,122, 61,190,255,254,123,205,152, 49, + 99,162,179,179,179, 27, 10, 4, 2,189,165, 47, 91, 62,159, 15, 30,143,103,200,201,201,169, 55,101,202,148,136, 5, 11, 22,168, + 5, 2, 1, 4, 2,129, 33, 55, 55,183,214,180,105,211,194,167, 77,155,166,230,243,249, 22, 69,198, 10, 35, 66,197,139, 8,139, + 70,138,204,197, 96, 48, 92, 72, 77, 77,173,243,205, 55,223, 60, 88,181,106,149, 74, 46,151, 67, 36, 18,233, 82, 83, 83,107,127, +249,229,151, 15,151, 45, 91,166,146,203,229, 22, 69,176,244,122, 61, 24,134,193,154, 53,107, 84,223,124,243,205,195,180,180,180, +218, 5, 23, 36, 86,173, 90,165,250,242,203, 47, 31,164,164,164,212, 49, 24, 12, 23,204,136,214,153,114,115,115,193,227,241,240, +228,201, 19,173, 64, 32, 0,135,195,193,139, 23, 47, 94, 27, 44, 59, 59,187,128, 58,181,106,250,255,182,123,255,101,137, 64, 36, +106,218,168, 65,141,151,209, 49,241,148,146,232,114,174,161, 71, 74,165,178, 78, 92, 92,220,232,225,195,135,103,127,247,221,119, +154,252,252,252, 55, 94, 56,124, 62,255,195,123, 10,113, 32, 5,129,228,121,170, 86, 33,230, 24, 9,158, 29,122,101,174,196, 54, +128,216, 22, 16,219,162, 82, 37,119,220,137, 82, 41,192,129, 16, 38,131,147, 25, 55,164, 12, 4,210, 39, 41, 80,240,133, 18,146, +156,156,252,218, 8, 21, 78, 94,213,107,224,126, 76,190, 28,132,138,192,133, 37, 93,137,116,181,183,183,231, 37, 37, 37,253, 73, + 51, 32, 32,128,107, 48, 24, 58,154,173,148,104,114, 5,152,175,159,165,106,220,254,120,168,242, 29,191,232, 87,137,196,148, 13, +220, 91,141,192,106,110, 24,223,187,174,112,198,225,180,192,187,209,170,106,224,209,209, 96,242, 29, 45, 48, 6, 45, 20, 10,197, +201,187,119,239, 74, 21, 10, 5, 94,190,124,137, 70,141, 26,225,151, 95,126,145, 74,165,210, 19,132,144, 54,150,156,166, 91,201, + 52, 38, 63,207,212,116,242,254,216,228, 71, 73,198, 55,204, 85,154,146,226,139, 31,143,100,103,229,106, 62,189, 25, 91,254,125, + 84,228,154,127,144,157,157,221, 97,230,204,153, 25,105,105,105,111, 92,235, 49, 49, 49,133, 70,160, 13,165, 52,228,159,186, 60, +173,173,173, 7, 45, 90,180, 8,119,239,222, 69,151, 46, 93,112,229,202, 21,100,102,102, 98,207,201,147,207,119, 61,127, 62,189, +176, 78, 86, 73, 93, 56,148,134,149,149,213,119,139, 22, 45,194,189,123,247, 94,107,102,100,100, 96,209,162, 69,241, 0,198, 88, +106,174, 10, 73, 73, 73,185, 19, 30, 30,222,177,118,237,218, 79,215,172, 89, 19,239,234,234,202,140, 28, 57, 18, 95,124,241, 5, + 28, 29, 29, 77, 43, 87,174,140,109,217,178,229,147,136,136,136, 32,165, 82,249,216,140,243, 67,211,211,211,175,111,218,180,233, +102,187,118,237,100,131, 7, 15,118, 58,124,248,176,189, 74,165,114, 19, 8, 4,206, 58,157, 78, 24, 26, 26,202, 59,112,224,128, +235,211,167, 79,163,212,106,245,157,138,230,253, 63,200,221,130,104,212,185, 98,159,119,203,153,103,238,186,165,125, 47,111,185, +178,141, 78,121,211,160,106,152, 51,186,166, 66,117, 99,112, 19,154, 60,178, 5, 77,233, 87,131, 94,107,109, 71,135,123, 19,229, +208, 10,118,211, 96, 50,153,104, 74, 74, 10, 77, 73, 73,161,243,231,207, 55, 74, 36, 18,181, 84, 42, 93, 9, 11,187,105,144,203, +229,249, 62, 62, 62,121,214,214,214,175,187,105, 80, 40, 20,249,126,126,126,121, 54, 54, 54,175,187,105,144,201,100,249,148, 82, + 42,151,203,205,106, 69,104,101,101,149,147,159,159, 79,165, 82,105, 97, 55, 13, 2,107,107,235, 77, 62, 62, 62,121,114,185,188, +176,155, 6,190,173,173,237, 6, 95, 95,223, 60,133, 66,145,111,102, 11,189,184,248,248,120, 26, 31, 31, 79, 43, 87,174,156, 88, + 52, 61, 38, 38,134,198,196,196, 80,119,119,247, 10,117,211,224,232,232,184,180, 97,195,134,153,142,142,142, 25, 69,210,150, 53, +108,216, 48,171, 48,205,204,150,127, 25, 13, 26, 52,200,114,116,116,124,221, 77,131,163,163, 99, 70,129,182, 69,221, 52, 72, 36, +146, 81, 98,177, 56, 81, 44, 22, 39,138, 68,162, 5, 85,170, 84, 73,221,183,111, 31, 93,185,114, 37, 85, 40, 20,175,186,105, 8, +232,222,180,122,179, 97,211, 29, 3,122,124,247, 54,221, 52, 72,165,210,149, 18,137, 68,189,112,225, 66,163, 82,169,164, 6,131, +129, 22, 60,188, 62,172, 86,132,191,248, 86,167, 63,251, 31,137,152,231, 21,250, 77, 43,169,230,241,252, 58,148,254,254, 9,165, + 39,190,160,244,194,100,122,103,227, 72,218,204, 75,100,186, 62,177,242, 51,186,193,239, 15,179,186, 86,248,165, 86,117,250,179, +255,137,231,115,189, 66,135,182,116,211,108, 94,191,146,222,190,125,155, 62,121,242,132,190,124,249,146,158, 56,180,143, 54,171, + 38,125,165,249,179,255, 17, 75,186,107, 0,208, 92, 36, 18,229,175, 88,177,130,222,186,117,235,181,230,145, 35, 71,168, 84, 42, + 85, 1,102,182, 66, 6, 8, 93, 23,240,137,113,189,223,181,153,237,229,249, 25,199, 38, 83,250,120, 27,165,191, 4, 82,186,181, + 49,165,251, 62,166,244,232, 48,122,107,101,111,218,220, 75, 96,160, 27,252,174,210, 45, 1,237,205,205, 39,159,207,207, 61,120, +240, 32, 77, 76, 76,164, 87,174, 92,161,247,238,221,163, 97, 97, 97, 52, 54, 54,150, 30, 63,126,156,242,249,124, 13, 0,139, 91, + 41, 54,118,134,103,144,143, 32,233,225,226,230,148, 30, 30, 64,211,118, 13,162, 93,107, 42, 50,155, 84,230,181,123,139,214, 86, +117,237,237,237,211,143, 31, 63, 78,163,162,162,232,229,203,151,169,147,147, 83, 58,128,192,127,250,250, 12, 10, 10,186, 77, 41, + 13,238,210,165, 75, 48,128, 83, 65, 65, 65,193,145,145,145,193,141, 26, 53,186,133, 50,186,112, 40, 75,243,163,143, 62,210, 83, + 74,105,151, 46, 93, 40,128,196,160,160, 32, 26, 25, 25, 73, 27, 53,106,164,123, 71,173,215,184, 0,134,241,249,252,205,118,118, +118, 23,109,109,109, 47,112,185,220, 95, 0, 12,182,228,121, 87,130,102, 37, 0, 1,120,213, 95, 82,131,130,239,110, 96, 91, 16, +254, 55, 90, 69,154,187, 96,111, 47, 52,255,172, 26,185, 60,176, 42,242, 6, 84, 69,254,231,222,228,218,167, 94,104, 87,145,209, +182, 11, 13,214,209,163, 71,105,229,202,149,149, 10,133,226, 26, 0,159,138,140,224,109,107,107,123,138,203,229,246, 41, 33,173, + 95,209, 52,107,107,235, 16, 27, 27,155, 28, 43, 43,171,151,230,228,211,202,202, 42, 76, 42,149, 42,173,172,172,194,138,117, 9, +208,195,222,222,254,120,177,180,238,197,211, 74,219,119, 23, 23,151,184,196,196, 68,154,150,150, 70, 61, 60, 60, 18,139, 27,175, +228,228,228, 55,140,151,165,163,151,243,120,188,118,142,142,142, 7,202, 75, 43, 75,211,217,217,249,119, 30,239,205,135,127, 73, +105, 21, 25,101, 29,128,111,165, 74,149, 82,151, 47, 95, 78,229,114,121,106,209,121,126,173, 62,255,254,246,243,252,220, 47,166, +252,188,207,177, 70,207, 90, 21, 25,185, 29,128,143, 66,161,184,230,233,233,169, 60,127,254,124,153, 6, 11,255,214, 81,235,247, +215, 16,208,141, 53,154,211, 13, 53,142,135,205,246,124, 58,172,177, 76, 27,188,188, 11,165, 23, 38,211, 91, 63,127, 65,155,122, + 9, 95, 25,161,141,254, 39,233,175,190,173,232,234,106, 66,179, 52, 55,123,183,164, 27,253, 79,134,206,242,124,250, 73,125, 71, +221,238,109, 27,233,139, 23, 47,232,145, 3,187,104,147,170, 5,230,106, 67,141, 51,244,231, 26,109,205,210, 44,193,100,109,217, +178,133,190,120,241,130,254,241,199, 31,102,153,171, 55, 52, 1, 66,127, 14,232,105, 92,239,119,109, 90,144, 60,251,139,198, 98, +237,128,186, 66, 93,143, 64,129,190, 67,117,129,177,153, 39,207, 84,199,149,195,212,112, 4,237,224, 39,209,210, 13,126, 87,233, +134, 26, 29,205,205,167, 80, 40,140, 69,145, 62,113,138, 79, 34,145, 40,173, 52,131, 85,222,121,111,236, 12,207, 32, 95, 81,210, +249,121,237,104,183,218,138, 12,115,204, 85,121,154, 0,234, 58, 56, 56,164,111,221,186,149, 58, 59, 59,167,153, 99,174,254,142, +235,211,218,218,122, 71,126,126,126,240,233,211,167,131,131,130,130,130,119,236,216, 17,124,237,218,181, 96,169, 84,186,163,180, + 46, 28,106, 0, 29,203,210,180,178,178, 10,206,203,203,163,167, 79,159,166, 65, 65, 65,116,199,142, 29,244,218,181,107, 84, 42, +149, 6,191, 87,247, 38,171,201, 78, 21, 49, 88,239,242, 4, 0,160,131, 7, 15, 86, 73,165,210, 20, 0,221,255, 75, 23,159,131, +131,195, 13,103,103,231, 20,103,103,231, 20, 71, 71,199,251, 37,165, 59, 56, 56,220,255,144,111, 60, 0,190, 2,129, 32,134,207, +231, 63, 43,154,238, 24,208,189,169,119,243,161, 51,157, 3,187,119,126,219,124, 2,232, 46,149, 74, 83,122,245,234,165,252,224, + 12, 22,165,160,171,171, 9, 11, 77,214,227,153,158, 97,221,106, 74,245,191, 76,232, 64,155, 86, 41,102,174,182,122,138, 44,210, + 44, 48, 89, 15,102,120,132,181,245,149, 27, 23,205, 28, 79,155, 84,149,188,105,174, 44,209, 44,102,178,164, 82,105,222,236,217, +179,205,142, 92,253, 73,115,179,159, 7,253,217,127,231, 43,243, 84,222, 84, 99, 51, 93,235,231,241,190,156,247,198,206,240,252, +200, 87, 20, 98,110,228,202, 28, 77, 0,117,109,109,109,159,154, 27,185,250, 59,246, 29, 64,135,209,163, 71, 7, 71, 70, 70, 6, +191,124,249, 50,248,218,181,107,193, 61,123,246, 12, 6,208,161,164,126,178,244,189,122,105,235,114, 56,227,203,209,236, 63,122, +244,104, 26, 25, 25, 73, 95,190,124, 73,175, 93,187, 70,123,246,236, 73, 1,244,103,141, 11,107,176,222,215,233, 31,169, 1,172, + 80, 40,238, 31, 60,120,240,148, 90,173, 94, 64, 41,213,254,151, 10,145,211,210,210,154, 89,146,254,129, 86,100,124, 6,192,243, + 79,149,246, 67, 14,223, 4,112,243, 29,109,227, 8, 33,228,204,169, 83,167,102, 40, 20,138, 78, 31,220, 65, 28, 27,161,195, 26, +239,123, 16, 10, 23,215,172, 36,157,250,125, 23, 74, 22,157,190,225,185,164,151, 83,108, 51,111, 89, 20,248,204,143, 32,218, 59, + 24, 22,173,181, 80,243, 14, 36,134,197,117, 42, 75,167, 46,236, 1,242,227,201,109,158, 75,123,218,199, 54,171, 38,143, 5,197, +143, 16,169,110, 90,164,249,230, 57,185, 78, 8,233,188,124,249,242,237, 42,149,106, 4,165,244,162,229, 15, 15, 78, 50,148,134, + 89, 48,112,107,130, 66, 88,198,198, 84,224,224, 9, 50, 56, 41,239,203, 41,187,149, 76, 99, 0, 4,190,227,123,233, 1,128, 26, +239,217,253,125,134, 16,130, 93,187,118, 13,242,247,247,175, 22, 26, 26,250, 82,165, 82,237,164,148,158, 41, 90, 87,137, 16,114, +244,199, 71,143,148,107, 67, 67,175,235, 24,230,122, 57,154,123, 10, 52,191,243,247,247, 15, 12, 13, 13, 13, 81,169, 84,203, 41, +165,123,216,170, 73, 44,239, 43,255,136,193,202,205,205,173,207, 30,122,150,191,225, 65,175, 5,240,125,193,244,225, 81,196,100, +213,247,144,140, 61, 56, 90,162, 2, 37,241,224, 51, 43, 45, 54, 87, 37,152,172, 70,158,146,111,255, 24, 37, 81,129, 34, 25, 20, + 63,189,141,185, 42,106,178, 0, 84,173,176, 64,239, 80, 61,128, 40, 16, 18,141, 57, 40,189,114,244, 28,188,254,155,205,242,207, +152, 44, 0,103,202, 89,134, 2,184, 80, 48,153,163,185, 7, 0,107,168, 88, 88,131,197,194,194,242, 55,153,172, 3, 1,119,145, +206,157, 8, 14,170, 2,198, 24, 40,141,201, 24, 27,173,123, 75,205,219, 72, 39,223,128, 11, 95, 8,141, 17,200,215, 37, 99,244, + 91,104,254, 5,111,112,188,170, 27, 85, 50,179,217, 75,131,133,133,133, 53, 88, 44, 44, 44,111,195,171,168, 78,124,193,244,254, +106,178,176,176,176,252,135, 32, 0,130, 74,249,131,120,206,108, 17, 66,130, 42,240, 7,244, 28,171,201,106,178,154,172, 38,171, +201,106,178,154,255, 45,205,242,180, 45,241, 31,239, 53,255, 68, 43, 66, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 89,205, + 15,121,226,128,133,133,133,133,133,133,133,133,229,157,242,143,214,193,146, 58,248,186,130,199,169, 77, 24,234, 15, 0,148, 67, +194, 96,100, 30,169,210,159, 37,189,173,182,162,146,159, 29,133,112, 63,129,174, 79, 94, 66,120,230,219,234,213,242,179,238,229, +236,160, 24,148,156,145,179,253, 73, 88,222, 97, 75,214,181,177,169, 98, 45,182,179,237,173,213, 27,106, 10, 5,130, 88,125,118, +238, 47,153,153, 17,121,236,229,199,194,194,194,194,194,242, 31, 51, 88, 85, 2, 91,222, 21,139, 37, 94, 0,192, 80, 10,134, 2, +202,220,236,224,164,136,187, 29, 1,192,209,171,254,105,190,216,170, 62, 67, 95,205, 55, 49,128, 81,175,137,202,137,190,213,208, +156, 13,203,157,252, 62, 9,234, 16,212,171,107,215,143,253,106,213,172,229, 13, 0,143,159, 60,142, 56,118,236,120,184,220,201, +239, 96,126,106,248, 31,111,179, 99, 20,226, 31, 26, 52,168,219,226,222,189,251,243, 0,124,245,182, 7,202,222, 94, 62,246,204, +239, 19, 91,125,212,107,153, 12,128, 69, 6, 75,108,103,219,187, 71,183, 78,117, 39,141, 27,205,249, 98,226, 66,175,187,215, 47, + 45, 81,184,213,204,166,140,225,140, 50,165,223,213,210, 6, 52,102, 97, 97, 97, 97, 97, 97,249,192, 12,150, 88, 44,241,186,117, +233,152,221, 31,215,226, 0, 0, 65,245, 92, 48,125,254,154, 14,132,144,112, 0,232,254,197, 28,223,121,211,198,225, 70, 72, 42, + 40,165,168, 91,221, 30,157,123,244, 49,107,163, 18,151,128,134,253,250,246, 29, 56,113,226,119,221, 95,188,120, 17,189,123,247, +238,171, 0,208,178, 85,171,234, 11, 23, 46,236,187,204,214, 78, 36,113, 9, 72, 80, 39,135,222,173,200, 78, 73, 42,121, 87, 10, +240,169, 61,104,239,175,107, 56,109, 58,126, 58, 64, 82,201,123,145, 58, 33, 34,193,156,117, 29, 29, 29,191,225,243,249,214, 0, +192, 48,255,247, 61,213, 42,115, 93, 0,192,104, 98, 20,118,149,252,243,184, 2,177, 73, 36, 18,132,230,229,231,111,207,137, 15, +221, 92,150,166,214, 96, 8,252,118,204,103,156, 7, 47, 51,224, 21,216,146,187,114,209, 12, 48, 38,131,237,248,105,243,123,223, +187,189, 23,192,236,203,236,165,200,194,194,194,194,194,242, 31, 48, 88, 0, 32,151,240, 16, 30,153, 12, 0,176,145, 0, 99, 71, + 13, 69, 70,122,154,175,206,200,224,243,161,131,113, 63, 44, 9,225, 81,105,160,148,194,215, 93,106,246, 70,185, 96, 26,124, 62, +252,243,214,167,207,156,185,243,253,204,239,127, 35,228, 85,239,221, 27,127,217,212,116,214,236, 89, 35, 6, 15, 29,220,254,192, +129, 3, 33, 40,111,164,234,210,118,138, 40,214, 44, 93,188, 64, 24,159,174,209,124, 51,113, 42,243,221,132,111, 86, 2,248,212, +156,117,249,124,190,117,124,124,188,156,195,121,179,122,218,143, 11,166, 94,105,223,107,217,243,232,216,236, 7,167,143, 28,105, + 24, 16, 16,128,248,132,228,230, 75, 86,109,168,227,234,221,240,179,188, 92,117, 47,101, 90,104,137,189, 70,139,248,252,144,185, + 75,126,174,203,216, 84,231, 76, 31,209, 5,129,222,110, 72, 72,205, 70,171,142,221,121,193,119,239,118, 0,192, 26, 44, 22, 22, + 22, 22, 22,150, 15, 8, 14, 0, 16, 66, 74,236,176,207,100,162, 8,143, 74, 66,120, 84, 18,238,132,165, 65, 79,249, 88,185,100, + 46,150, 47,154,141, 76, 53, 7,127,220,136,195,179,168,100, 60,139, 74, 70,122, 86,254,159,214, 47,222,212,114,249, 98,105,189, +149, 43,173,151,118,104, 37,107, 99,103,107,107,251, 60,228, 55,229,172, 9, 41, 53,230,126, 27, 39,224,235, 68,241, 50,185,172, +217,254,253,251, 2,156, 29,157,100,114,185, 98,178,204,189,238, 22, 27,155, 58,214,101,105, 22, 71,234, 92,163,123,247,143, 59, +181,115,113,113,102, 70,175, 12, 14,171, 89,195,223,224, 83,221,167,185,212,217,183,123,105,235, 20,213,100, 24, 6, 28, 14, 7, + 41, 41, 41, 72, 76, 76, 68,100,100, 36,158, 61,123,134,184,184,232, 20,134, 82,190, 9, 12,199,213,213, 29, 60,158, 16, 94, 85, + 60,241,243,202, 69,210,249,115,166, 55, 18,203,132,135, 9, 33,164, 36, 77, 77,102,214,129, 19,167,206, 36,156,220,253,179, 9, + 0, 82,179,242,113,225,238, 11,220, 15,141,179,232,100,253, 21, 77, 87, 89, 77, 86,147,213,100, 53, 89, 77, 86,243,125,208, 44, +205,139,252,171, 13, 86,105, 68,196,101, 34, 60, 50, 25,245,253, 43,193,187,138, 43,238, 60,203,194,206, 11,113,216,114, 58, 6, + 23, 30,166,129,225, 41,144,156, 11, 60,143, 78,193,243,152,244,178,250, 85, 6, 0,112, 69,252,126,223,126,155, 51,177, 86, 64, +110,147, 75, 39,199,162,146,227,243,128, 41, 83,178,199,114, 69,252,126,182,149, 21,187,167, 78, 28, 63, 72, 33,149, 10,117, 90, + 29,170, 85,245, 20,143,251,122,236,103,196, 86,180,219,220,157,177,114, 15,176, 21, 73, 36,155,231,207,153, 44,250,233,143,231, +177, 74, 29,148, 7,111,166,188,252,110,234,172, 76, 30, 95,252,179,149,123,128,173,185, 90, 6,131, 1, 90,173, 22, 58,157, 14, +122,189, 30, 9,113, 79,187,159,255, 99, 82,199,170,149,237, 58,138,196, 98, 80, 0,185,106, 35, 34,147, 84,104,251, 81,123,110, +253,122,245, 2,229,174, 53,134,151,164,149,157, 29,157,195, 80,174,226,216,161, 93,220,125,103, 31,224,183, 99,119,113,248,226, + 3,220,185,124,210, 72, 25,195,235,225, 36, 20,110, 62,190, 10,183,218, 49,138, 74,117, 82, 94, 79,238,181,238,177,255, 3, 88, + 88, 88, 88, 88, 88,254, 93,148, 90, 68,168,209,168,163, 62,237, 55, 24,174, 78, 46,242, 30,109,134, 9,130, 35,178,145,150, 20, +131, 23,207,158, 64,165, 49, 64, 96, 91, 21, 16,187,160,138,151, 39, 30,133, 31,214,175, 94,122, 60,159, 49,106,163, 74,211,235, +209,195,205,221,213, 81,198, 89,186,196,227,214,179,240,172,250,187,102,110,197,192,129,114,135,165, 75, 60,110, 69,191,148,113, +164, 98,218,236,179,161, 3, 8,135, 80, 76,153, 50, 17, 61,186,118,194,231,159, 13, 33,219,183,111,107, 98,238,206, 48,224,175, +157, 54, 99,174, 48, 37,219,168,187,243, 44, 95, 43,149, 73, 36,215,159,231, 43, 3,189, 60, 36, 93,122, 13, 75, 60,190,127,243, + 79, 0,134,154,163, 85,104,172, 12, 6, 3,244,122, 61, 0,152, 0,128,195,121,245,153,145,167, 67,106,182, 22, 41,217, 90, 24, + 77, 12,122,245, 27, 42,185,123,239,225, 80, 0,165,212,199, 98, 24,131,209,128,131,103,239, 35,225,238, 1,134,112,184, 57,133, +149,220, 11,205,149,139,139,199,149,174,189,134, 56, 10,197,175,138, 91,243,148, 90,108,223,176,132,189, 74, 89, 88, 88, 88, 88, + 88, 62, 20,131, 21, 29,114,181, 33, 0,248, 53,236,152, 33, 23,243,236,120, 28,130,148,248, 8,108, 95,246, 13, 24,134,162,203, +136,165, 80,120,185, 64, 34,224, 66,155,159,145,159,241,226,146,125, 89, 27, 34,196,208,126,221,198, 4,175, 47,199, 84,179,218, +181, 43,159, 15, 0,187,118,229,243,199,140,174,108,181,126, 99,148, 87,227, 22,245, 65, 77, 38,116,237,241, 41,250,245,239,135, +232,100, 21,126,191, 18, 11,165, 90,103,214,248,103, 82,199, 26,117,156,220, 42,117,250,118, 88, 39, 25,143, 75,136,143,167, 53, + 55, 46,205, 96,228,114,249,166,163,119,115, 18,123,245,234,239,112,225,196,190,118, 82,199, 26,117, 84,105, 79, 31,150,167,167, +213,106, 97, 50,153,160,213,106, 97, 48, 24, 96,231, 80,245, 68,251, 79,151,197, 39, 37,231, 29, 79,206,210, 52, 86, 26,140, 72, +201,214, 34, 53, 91,139,108,165, 30, 46, 10, 91, 24, 13,186, 90,165,233, 81, 74,127,235,249,233,224, 33, 0, 56,132, 99,220,154, +151,248,244, 89,225,188, 66,115,213,169,199, 64,199, 43,193, 17,120,113,239,100, 22,101,140,134, 87, 7,142, 97,135, 42, 97, 97, + 97, 97, 97, 97,249,151,193,249,191, 1, 34,180,180,242,207,132,148, 76,216,203,121,112,116,243,194,160,111,150, 3, 0, 76, 38, + 3, 40, 5,140, 38,243,122, 24,160,148,127,246,171, 49, 94, 81, 85,188, 72,206,160,129, 82, 53, 0, 12, 26, 40, 85, 87,241, 34, + 57, 95,141,241,138,202,211,200,245, 70,147, 9,215, 67, 82,177,116,239, 83,204,218,246, 24,167,238,153,223, 29, 22, 87, 40, 24, +179,100,241, 34, 1,143, 75, 72, 72, 76,126,126,124,134, 49,159,203,231,235,165, 82, 33,213, 81,158, 54, 58,157,102,124,212,243, +179, 23, 28, 46, 25, 94,150, 78, 97,203,193,194, 34,194,194, 8, 22,165,148, 18,128, 97,136,201, 20,159,174, 65, 92,154, 26,113, +169,255,159, 82,178,180,165,150,144, 42,220,124,124,173,173,228,167,108,109,172, 62,179,177,182, 26, 42,147,216,158, 86,184,249, +248, 22, 55, 87,183, 66, 18, 17,241,224, 92,138, 73,175,234,155,151,240,208, 57, 47,225,161,115, 94,252,227, 6,236,101,202,194, +194,194,194,242, 95,160, 44, 47,242,175, 52, 88,148, 82, 82, 56,253,217, 24, 1,207, 99,210, 33,228, 49,112,175,226, 13, 90,196, + 70, 80, 0, 70,147,121,199,225,240,225,196,248,106,213,149,204,228,201,177, 77,107,214,178,127, 52,102,116,229,176,154,181,236, + 31, 77,158, 28,219,180, 90,117, 37, 99, 48,242, 77,180,160,191,173,194,190,181, 10,186,227, 55,119, 87, 26,213, 9,168,202,157, +187,235,121,236,151,235,159,133, 11, 4, 2,131,187,131,148,120, 58, 75,185, 30,142, 18,161,214,192,209,250, 6,214,211,129, 67, +234,153, 99,176,116, 58,221, 27, 83, 70, 90, 68,247, 51,191, 79,236, 81,201,217,118, 88, 66,154, 26,177,169, 42,196,165,169, 16, +155,166,130, 74,107,196,227,167, 47, 1,174,224, 73, 73,154, 86, 10,187,211,187,119,254,230, 81,167, 70, 53,167, 0,223, 42, 78, +155,183,253,230, 33, 22,219,156, 86,184,249,248,122,120,249, 5,223, 62,183,207,241, 86, 72, 34, 98,194,239, 37, 27,181,185,187, +149, 41, 97,231,217,219,140,133,133,133,133,229,191, 68, 89, 94,228,223,136, 89, 61,185,123,186, 59,227,246,147, 40,212,242,175, + 10,107, 43, 5,194, 34,226,193,229,240,193, 33,128,193,104,190, 9,162,122,195,222, 21, 43,172, 17, 19, 37,227,172,255, 57,202, +235,171, 49, 94, 81, 43, 86, 88,223,164,122,195, 94, 0,131, 41,125, 53, 54, 98, 97,199,166, 38, 11,186,223,164,140,161,178,179, +157,148,123,239,165, 50,131,195,225,106,237,173,197,140,189,181,136, 99,175, 16,242, 5,124, 46, 99,164, 28,189,187,147,151,134, + 50, 76, 29,115,244,138, 22, 17,154, 76, 38, 16,194, 49, 21, 24, 48, 89, 92,134, 26, 57, 26, 46, 82,178,181,200,202,211,195,167, +146, 12,231, 46, 28, 80,153, 12,234, 93, 37,105,113,249, 2,107,111, 47,119, 76,255, 97, 5,212, 90, 19,158, 39,228, 67, 32, 18, +185, 56,187, 4, 62, 28,252,229, 84,209,184, 95, 34, 48,188,157, 61, 38, 92,141, 72, 80,165,136,167,178,183, 25, 11, 11, 11, 11, + 11,203,127,192, 96,201,165, 98, 80,174, 24, 87,131, 35,224, 23, 80, 27,219,142,220, 65,245, 90, 77,144,148,103, 4, 5,167,220, +214,131,133,124, 55, 85,117, 31,192,253, 30, 61,220,220, 63,249,164, 82,123, 74,249,103,215,111,200,137, 7,128,159,247,180, 6, + 5,192, 48, 20,148, 2,148,121,101,180,204,134,240, 98,162,146,114,171,120,185,200, 16, 26,175,215,202, 68, 2,142,173, 76,200, +117,180, 22, 10, 4, 60, 30, 76,148,104,147,146, 34,180, 4,136, 54, 71,174,176,104,176,240, 83, 42,119, 61,241, 81,207,165,105, +209,177, 57,247,124, 50, 85,117,114,244, 66, 80, 10,248, 84,146,225,201,173,227,166,148,132, 23,207,213, 41,225, 27, 74,210, 98, + 24,112,245, 70, 6, 15, 95,230, 32, 91,105, 64,118,190, 30,205,219,118, 19, 52, 15,234,142,171, 79,210,193, 24, 13, 88,178,233, +120,158,137, 26,250, 81, 26,106, 96, 47, 75, 22, 22, 22, 22, 22,150,127, 55,102, 13,246,108, 98, 40, 28,236,237, 32,150, 89, 33, + 42, 69,143, 60,226,132, 44, 21,133,201,244, 42,130, 85, 90,160,137, 16, 18, 84, 82,250,225,195,137,241,135, 14,165,109, 57,124, + 56,177, 72, 5,238,255, 71,174, 94,127, 50,212,108, 77, 66, 77,231,142,156,188,148,211,189,177,163, 45,135,203, 85, 11,248, 28, + 45, 79,192,213, 11,120, 28,131,128,199,209, 57, 91,241,185,151,142,238, 17, 82,130, 75,229,105,106, 52, 26, 4, 5, 5,161, 75, +151, 46,232,209,163, 7,250,244,233, 3, 95,223, 26, 78, 28, 46,209, 81,194, 48,142,194, 60,120, 59, 18,240, 52,113, 56,191,231, + 71,213,147,235,135, 30,154,180,154,110,180, 72,153,230, 27,154,148, 50,153, 57, 90,104,244, 38,100,229,235,145,165,212,195,232, +216, 20,135,110, 36, 66,173, 51, 33, 38,248,128, 58, 45, 57,254, 27, 77,202,243,168, 50, 61,100, 41,251,254, 54,176,154,172, 38, +171,201,106,178,154,172,230,251,160,249,161, 97, 70, 4,139,162,154,171, 12,213, 43,201,160,209, 59, 65,163, 51, 65,169, 49, 33, + 87,165, 71,174,202,128,168,100, 21,158, 28,121,251,140,188,138, 90, 1,164,224, 59,200, 43, 99,103,110, 12, 75,168,215,253,176, +124,201,194,190,123,234,213,213,141,251,216,181,242,163, 40, 93, 34, 33, 28, 53,135,203, 51,216, 41,120,252,176,176, 71,105, 55, +175,156,104, 37, 54,154,134,148,165, 99, 52, 26,115, 42, 85,170, 4,224,205,161,114,106,120, 75,122, 92, 63, 62,165,106,235,238, + 75, 28,127, 90, 48, 81,197,225, 10, 24,194, 19, 60, 49, 25,212,187,213, 41,225, 63,211, 50, 42,140,113, 4,226,167,183, 31,132, + 54,177,177,171,140, 23, 9, 74, 40, 53, 70,232,141, 12,108,229, 2,196, 63, 62,173,143, 10,187,183, 47, 47,225,225, 54,246,114, +100, 97, 97, 97, 97, 97,249,143, 24, 44,141, 70, 19,213, 34,168, 27, 24,134,194, 68, 1,198, 84, 16,105, 98,254, 31,109, 50, 25, + 52, 81,111,155, 17,134, 49,221, 89,251,203,150, 46,245, 26,181,230, 6,120,200,145,155,145,140, 91,215, 47, 26,193,208,155,230, +172,159,158,254, 44, 95,234,226,243,105,223,222,159,236, 31,250,249,232,236, 86,109,219,202,156,156, 92,180,241, 9,241,170, 95, +119,236, 52,156, 62,113,184, 21, 3, 99,255,244,244,231,249,101,233,100,103,103,175, 42, 41,253,163, 22,149,155, 3,168,202,229, + 17,157, 42,245,153,204,146,125, 75, 79,136,235,181,240,135, 57,209, 3, 71,140, 23, 86,171,228,141,212, 28, 46,162,226,147, 17, +118,229,176, 54,225,217,221, 63,114,227,239, 15,103, 47, 69, 22, 22, 22, 22, 22,150,255,144,193,138, 13,125,213, 31,214, 95, 77, + 94,114,234,224,109,219,126,155,255,219,142, 61,205, 53, 58, 93, 37, 10, 65,156,201,168,187,156,111,194, 44,115, 53, 84,201,207, +239, 57, 56,248,214,252,117,211,218, 25,191,110, 89,223, 26,140,201,159, 0,209,148,224,146,216, 96, 26, 90,158,185, 42,219,192, +229,109,108,255,233, 50,117, 70, 70,254,111,150,174,171, 74, 15, 75,150, 59, 87,171,188,113,229, 15, 75, 57, 28,110, 7,147,137, +225, 51, 38,195, 11,147, 94,243,163, 58, 45,252, 8,181,172,185, 36, 11, 11, 11, 11, 11, 11,203,191,221, 96,253, 93,100,102, 70, +228, 1, 24,247,182, 58,233,233,207,242, 1,188,243,150,120,143,159,229,252, 14,224,247,138,174,159,159,242, 50, 13,102,246, 34, +207,194,194,194,194,194,194,242,239,134,195, 30, 2, 22, 22, 22, 22, 22, 22, 22,150,119, 11, 1, 80, 98, 75, 0, 75, 70,202,174, + 72,107,130,242,244, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,240, 52,203,211,182,196,127,188,215,208,130, 30,211,255, +138, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,230,127,109, 98,139, 8, 89, 88, 88, 88, 88,254,115, 56, 56, +248,202, 29, 28,124,229,230, 46, 47,115, 12,112,150, 57, 6, 56,179, 71,142,197, 92, 88,131,245,150, 16, 66,136,159,151,124,108, +135,214, 85, 15,249, 87,147,246,248,167, 52,229,206,213, 28, 21, 30, 13,175, 91,185,215,236,252, 23,236,163, 40, 48, 48,176,105, + 96, 96, 96, 83, 66,136,232, 93,104,202,156,253, 6, 84,246,105,122,197,217,187,222, 69,185,139,111,239,119,157,103,133,155,143, +189,194,163,193,239,138, 74,117,178, 20,110,117,114, 21,149, 27, 92,182,114, 12,168, 86,222,122, 30, 61, 22,249,207,219, 19,178, +219,163,199, 34,255,146,230,219,117, 94,163,152,179,247,197, 2,135,238, 75,228,236,213, 95, 49, 60, 90, 12,180,113,107, 51,209, +222,210,245,220,253,154,134,120,213,108,149, 90,201,183,201, 19,115,215,169,236,223,236,126,149,192, 22, 41,149,253,154,221, 99, +143,188,121, 72,156,170, 53,149,216,121, 30, 23,219,121,158, 16,219, 87,107,251,182,122,110,110,110,146, 26, 53,106,116,106,218, +180,233,168,160,160,160,111,235,213,171, 55,178, 74,149, 42, 29, 8, 33,255, 88, 35, 43,153,179,223, 52, 45,159,164,107,249, 36, + 93,230,236, 55,173,252,231,171,255,124,194, 49, 37, 18,142, 41, 81,238,236, 63,255,125, 57, 87, 98, 23, 63, 79,153,179,223, 10, + 43,215,192, 59, 82,103,223,110,150,174,111,103,103,215,193,201,201,169,103,225,100,103,103,215,129,189, 3,222, 29, 22, 95,224, +132,212,231,203, 93, 13,223, 10,197,146, 97, 28, 14,172, 82, 95,220,170,244, 62,239,160, 99,181,198,247,184, 28,174,123,209, 52, + 19, 99,138, 79,123,121,187,193,187,208,247,171, 34, 25, 62, 99,242,224, 9, 3,250, 6,121, 6,117,253,134, 0, 56, 92,226, 11, +223,163,225, 13, 66, 56, 85, 57, 4,224,112, 8, 56, 4, 0,104, 98,250,203,219,245, 42,170, 89,136,181,147,119, 85,161,220,241, + 74,139, 30, 95,185, 4,159,219,185, 77,230, 24,208, 94,153, 22,250,232, 29, 24, 43, 71,111,111,239,134,190,190,190,246, 99,199, +142, 21, 0,192, 79, 63,253, 84,189,122,245,234, 25, 17, 17, 17,119, 41,165,105, 21,122,184, 57,249, 15, 94,181,108,222,111,157, + 59,119, 65, 98,186, 18, 75, 86,172,107, 35,119,241,237,147,159,252,236,192,187, 56, 39,182,182, 85,173,120, 86,182,143,191,153, + 60,207,169, 83,155,134,220,124,141, 17,167,174, 60,104,185,115,221,188, 59, 86,142, 1,141,114,211, 66, 95,150,182, 46,163,202, +153,233, 44,167,157, 24, 85, 14, 0, 12, 40, 62,191,146,220, 16,228, 40, 49,117,114, 21,241, 30, 0, 56, 88,110, 94,188, 90,156, +230,139, 68,158, 28, 14, 7,133,231,158, 75, 94,157,127,131, 94, 29, 19,255,244, 74,199,247,225, 62,177,242,108,156, 12, 46,207, +158, 67,254,159, 63, 82,112,157, 18, 74,115,147,158, 93,181,127, 7,215,147,117,205,234, 54,129, 31, 55,111,241,235,229,200, 76, +153, 71,235,241,199, 9,229,172,143,185,178,252,161, 89, 47, 19,177,216,246,232,209,163,142,157, 58,117,178,118,174,217,243,178, + 89,127, 60,132,226,128, 99,199,142, 8, 58,117,234,104,193,245,233,215, 30, 28,206, 14, 2,240, 25,134,254,196,101,232,190,252, +140,103, 17,150,118,167, 34,117,246, 31,206, 1, 53,251, 57,195,128,220, 83,165,132,109,169,224,177,229, 74,156,252,134, 73,196, +226,137, 62,126, 53,124,163, 34, 35,158,229,230,230,172, 80,167, 62,219, 66, 41,101, 44, 18, 51, 24, 39,157,187, 26,220,153,199, +231,147, 78, 31, 53,230, 2,184,248, 54,231,221,217,217,185,231,154, 53,107,170, 53,109,218, 20, 0, 96, 52, 26,173,246,239,223, +239,242,195, 15, 63,200,204,185,135, 74,217,223, 74,142,142,142, 30, 66,161,176, 18, 0,232,116,186,132,180,180,180, 88, 74,105, + 66,185,215,132,139,183, 3, 1,111,222,213, 43, 87,120, 0,208,178,101,171,249,158, 45,199,218,114, 5,114,117,137,135, 67,151, + 39, 3, 48,254,214,237,155, 4, 0,154, 52,110, 58, 85,230, 24,176, 86,153, 22,154,242,143,153, 96,103,255,198, 28, 96, 66,243, + 86,237,123,245,235, 63,152, 19,232,227,129, 14,237,219, 77, 1,112,212, 34, 3,192,227, 73,238,220,185,227,205,225,112,184, 70, +163, 81,211,164, 73,147,216,183,201, 87, 37,191,102, 55, 8, 56,149,245, 70,221,166,180,151,247,230, 23,191,246, 8, 33, 92,235, +202,245,102,128,203, 27,193, 48, 76, 92,110,204,221,102,172,193, 42,114,112,172,220,235, 94,235,219,111, 80,205, 31, 38,143, 20, +175,222,113, 22,118, 85, 27,133,102, 70,222, 9,120, 95,119,144,203,225,186,159, 57,115,218, 73, 34,226, 2, 0,242,213, 38,116, + 54,227, 97,107,227,213,248, 18,135, 16,191,194, 33,189, 77, 70,189,152,199, 23,106, 8, 0,144, 87,173, 3, 28,220,170, 92,112, +117,181,147, 14,232, 27,228,185, 99,207,217,248,216,248,140, 82, 31,250, 28, 14,215,253,240,145,163, 78,149,236,197,224,113, 9, +242,213, 70,116,234,210,205, 84,210,178,174,174,118, 31, 15,232, 27,228,185,107,239,185,216,164,164,204,227,101, 62,196, 93,125, +235,203,172,157, 79,245, 26,245,131,189,134, 99,135, 89, 11, 86, 57, 92, 57,185,235,114,235,143, 7, 51, 49, 49,113, 26, 74, 72, +104, 86,102,210,183,249, 73, 47,194,205, 61,199,114,185,188,154, 92, 46,175,211,185,115,103,241,196,137, 19,249,109,218,180,121, + 61,127,228,200,145,130, 75,151, 46,185, 46, 91,182,172,139,155,155,155, 38, 63, 63,255, 97,126,126,254, 75, 74,169,201,220,115, +226,226,226,248,245,167,159,116, 67,187, 94, 95,193,196, 16,140,252,114, 60, 78,159, 60, 56, 26,192, 59, 49, 88, 6,169,213, 15, + 35, 70, 77,116,108,210,176, 46,119,222,174,112, 72,132, 60,116,108,224, 71, 62, 27, 59,211,102,203,234,121,155, 1,180, 46, 41, +114,197,168,114,102,214,116,208,245,239,222,180, 42,142,236,214,245,119, 15,154, 2,142,212,122,126,236,225,105, 97, 0,224,221, +121,156,194, 86, 34, 89,227,102,195,117, 18,153,210,214,120,119, 30,119, 46,226,228,234,188,178,242,194, 23,137, 60,247,236,222, +229, 99, 43, 23,128,203, 37,224,113, 56,224,114, 9,180,122, 19,122,247,233,255,174, 34,140, 92,137,147, 79, 23, 14,240,217,171, + 23, 53,182,170, 83,159,159,176,228,156, 16,174,192,254,216,145, 63,120, 78,214, 34,112,185, 4, 92, 14,192,229, 16, 68,167,168, + 49,124,248,103,214,111,107,212, 59, 55,119,106,120,105,109,235,142, 77,106,218,213,222,123,147, 88, 55,233,220,207, 62, 93, 35, + 29,182,231,240,197,254, 30,173, 38,220,166,148, 89, 26,119,117,229,153,178,116,180, 90,109, 74,199, 78,157,173, 8, 79, 38, 61, +119,104, 91, 43, 30,135,192, 96,162, 48,154, 40, 76, 5, 99,151,190,186, 95, 9, 56, 28, 2,202, 80,140, 24, 49, 28, 29, 59,117, + 86, 49, 70, 38,222,236, 12,115, 56, 59, 78,157,187,238,168, 53, 48, 88,182,102,203, 60,101, 78,218,188,200, 48,251,104,169,179, +239,120, 85,202, 51,179,199,173,224,128, 54,136,123,249,100,212,174, 99,183, 80, 51,160, 6, 76,204,171,124,250,185,203,176,235, +248, 45,248,251,249,191,202, 55, 67,225, 91, 89,142,134, 13, 26, 2,192, 22,203,143,111, 27,158,204,217,127,119,247,222, 67,123, +247,234, 61, 0,118,182, 86,208,233,181,190,231, 79,159,248,229,231, 53, 75,154, 19, 66,134, 89,100, 14,169,233,245,123,129, 50, +204, 91, 71,153,220,220,220, 28, 27, 54,252,127,119,138, 70,163, 17, 94, 94, 94, 72, 72, 72,240,171,192,181, 36,117,117,117,253, +120,227,198,141, 78, 93,186,116,225,187,184,184, 0, 0,146,147,147, 43,157, 58,117,170,158,155,155, 91,106, 82, 82,210,113, 74, +169,170, 52, 13,147,129, 35,224,240,192, 21,139,165,175,246, 17,132, 51,241,235, 33,181,157, 93,221,180, 37, 45,159,150,150, 44, +156,252,213, 69,194,227, 9, 10,150, 7,135, 82,134,148, 17, 21, 10,226,243,249,146,146,230,233,185, 86, 77, 40,223,250, 11, 14, +151,243,234, 98, 53, 26,210, 50, 99,130,107, 88, 16,121, 11,228, 11, 5, 63, 15, 28, 58,170, 89,239, 94, 61,224,234,104,141,115, +215, 30, 97,244,215, 19, 12, 70,189, 97, 69,133,222,145, 92, 46, 47, 53, 53, 53,218,214,214,214,229,237,223,183,164,234,217,211, + 39,157,206,157,191, 48,117,249,202,213, 99,220,124, 91, 26, 24, 74, 95,143, 51,236, 81,179, 29,191,125,215,190, 86, 78,222, 77, +196,171,103,127,193,103, 35, 88, 69,157,191, 91,192,183,125,250,246,173,249,213,232,145,226,111,215, 92,195,249,221, 63,165,191, + 43,115,165,112,242,107, 74,184,188, 81,132,203,149, 17, 14, 17, 50, 38, 38,206,168,211,205, 87,165, 63, 75,122, 91,109, 19, 3, +252,126, 61,213,178, 27,153,162,250,142,125,135,156,156,109, 68,208,232,140,232, 55, 96, 48,118,236,248, 77,225, 96, 37,132, 70, +103,196,210,229,203,243,242,163,143, 59, 69,199,101, 37, 4,117,155,112,230,101, 84,234,147,216, 36,205,190,210, 31, 12, 28, 56, + 89,139,176, 96,207, 51, 88, 73,248,176, 85, 8,192,225,144,162, 15, 14,226, 91, 69,246,117,229,202,142,109, 19,147,178,114,138, +104,238, 44,245,102,115,173,213,209,218,214,109,247, 39,163, 22,216, 60, 79,229,129, 66,143, 8, 43, 49,250, 14, 27,103, 85,205, + 69, 2,153,152,107, 19, 25,147,224, 58,113,210,164,107,214, 78,222,141,114, 82, 35, 34,203,219,239, 42, 85,170,244,234,218,181, +171,244,187,239,190,227, 87,174, 92, 25, 91,119,237,247,108,217,177, 79,183,196,164,148,202,148, 82, 56, 59, 57,197,141,248,172, +207,209, 19, 39, 78,196,196,197,197,241,151, 44, 89,210,248,143, 63,254, 8,176,228,159,168,137, 82,104,180, 38,152, 10, 94,140, +105, 57, 90, 75, 31,178,164, 82,165, 74,162,132,132, 4,109,225,139,131, 16,242,250, 96,202, 43,213,237,248, 81,235,198,188,141, + 39,163,144,175, 49, 65, 38,230, 35, 42, 69,133, 6,117,107,145, 77, 38, 99,157,146, 52,135,247,253,120,166,179,156,118,234,222, +180, 42,156,108,165,248,117,237, 2, 28,185, 25,217, 41, 37,159,192,161,251,146, 81,174, 34, 94,123, 71,169, 96, 77,155, 6,222, + 46,237,234,123,226,110, 3,111,151, 43,193,225,207,106,245, 93, 49, 54, 33,159,127, 46,243,228,216,188,146, 31, 56, 28,216, 41, +132,216,124, 42, 26, 82, 49, 15, 50, 49, 15, 50,209,171,207,162,231,191, 66,255, 98,221, 2, 42,115, 25,211,112, 43,183,128,225, +253,251,246,113, 27,216,191, 15, 5,151,131,253,191, 31,237,177,115,231,142, 36,185,139,223,102, 19,135,187, 69,157, 24, 26, 87, +238, 49,229, 0, 78,214, 66, 76,218,252, 4, 86, 18, 62, 20, 82, 62,172,164,124,180,171,237, 8,110, 5, 43, 18, 16, 66,108, 71, +247,168,214,229,209,111, 65,109,253, 60,228, 62, 15, 35,114, 66,135,207,191,183,242, 82,118,219,111,215,254, 20, 96,159,159,173, +227,205,154, 56,130, 23,159,152,216,118,255,209,203,237,220, 26, 13, 15, 55,234,149,211, 83, 31,238, 43, 49, 98, 27, 23,118,163, +158,123,211, 62, 98,125,190,225,241,195,240,120,239, 44,173, 8, 33,209,185,144,137,121,144, 23, 30, 91, 49, 15, 50, 49, 31,114, + 49, 15,137,241, 81,200, 84,114,175, 37,216,115,218,210, 75, 55,140,150,228, 93,163, 55,225, 65,100, 62,170,248,213,133,171,171, + 27,116, 93, 6, 85,185,125,225,247,195, 50,215, 26,139,148, 73, 79,167,155,171,179,235,216, 45, 76, 29, 63, 42,152, 0,247, 11, + 94,206,245,102, 45, 94, 87,127,222,212,175,222, 72,155, 56,119,117,253,138,154,107,169,179,223,206,214, 31, 15,238, 93,171, 73, + 7,188,140,138,194,201,163,247,240, 81,251,206,232,210,173, 23,116, 58,237,144, 45, 27, 87,223, 5,176,238, 79,207, 92,215, 26, + 45,106,213,172,177,179,146,155, 91,101,134,121, 53, 42, 7,165, 64,139,214,237, 48,249,219, 17, 96, 40, 69,157,122,141,218,117, +233, 63,150,210,130,209, 59,210, 51,210,149,225, 97,161, 65,234,148,176,219,102, 31, 75,141,198,144,150,150,134, 7, 15, 30,224, +217,179,103, 8, 9, 9, 65, 70, 70, 6,172,173,173,243, 45,220, 87,171,218,181,107, 15,188,112,225,130,216,214,214,246,117,186, + 78,167,131, 66,161,192,192,129, 3,249, 29, 58,116,168,244,241,199, 31, 15, 37,132,236,162,148,230,150,164,163,206,120,158,104, +229,226,191,161,117,155,214, 99, 0, 64, 98,229, 26,185,102,235,209,144, 50,239, 53,107, 55,207,102,205,154,123,131, 82, 16,208, + 85,202,244,240,228, 50,162, 66,178, 91,183,110, 85,227,114,185,175,223,175, 12,195, 96,253,175,123,253,207, 94,125,220,107,241, +210,101, 98, 43,153, 8,105, 57, 58,124, 49,232, 19,179,223,193, 82, 23,255, 46,205,155,183, 62, 60,111,238,247, 60,185, 76,134, + 51,183, 95, 98,236,183,147, 52, 73,209, 79,150, 81,134,191, 78,153, 26,158,250,150,175,202,119,210,225,181,143,187, 28,138,238, + 29,197,163,135,116, 23,235, 12, 38,100, 43, 13,208,234, 77, 48, 49, 20, 57, 74, 3, 66, 99,243,224, 96, 37,172,136,116, 67, 0, +142, 0,210, 0,220, 45,246, 27, 5,223, 81,194,239,244, 87, 97, 17,216, 3,208, 1, 40,186,241,194,223,165,165, 23,174, 31, 10, +160, 70,129,166, 9,192, 29, 0, 89,229, 26, 44, 66, 8,165,148,146, 34, 23,241, 27,191,139, 34, 16,202,251, 78, 29, 59, 88,252, +195,174, 96,156,223,189, 48, 61, 45,226,102,225, 14,192,201,187,241,253,212,136, 55,139,187,204,105,106, 41,113, 11,168,204, 35, +220, 21,173,219,180,234, 48,230,203, 47,225, 87,205, 93, 96, 50,153,232,147,103,145,134,109, 91,126, 29,102, 93,185,214,202,220, +248, 39, 51, 11, 67,141,150, 54,223, 52, 49,166,248,226, 17, 43, 19, 99,138, 47, 47,159,132, 0, 54, 50, 1, 54,156,136, 4,165, + 0, 1,133,149,148,143, 61,151,226, 17, 25,124, 48,183,107,157, 92,229,192,197,115,218,181,237, 50,238, 66,104,132,102, 95,106, +170,230, 52,165, 52,185, 52, 77, 14, 1,120, 92, 2, 43, 41, 31,214, 82, 1,108,100, 2,144, 34, 47,174,162,197,130,109,186,140, + 59,123,225,122,204,116, 0,105,148, 82,109, 73,154, 18, 23,159,134, 86, 54,238,251,122,141, 89,162,120, 28,111, 4,143, 11, 84, +117,145,192, 78, 33,128,206, 72, 16,157,166, 47,184, 99,108, 48,118,226, 92,187,169, 19,198,156, 32, 36,160, 38,165,161,250,178, +246, 93,165, 82, 9, 7, 15, 30,204, 55, 24, 12,250,129, 95,124,211, 33, 57, 57,173,199,250, 85, 63,138,156,156,156,161,210, 24, + 17, 28,242,162,198,188,121,115,171, 30, 61,117,233,208,156, 73,163, 15,119,234,212,201,122,239,222,189,140, 37,231, 61, 45, 37, +125,237,175, 59, 15,252,246,211,178,133, 8,143,201,194,150,141,235, 64, 77,198, 13,101,222,249, 69, 52, 41,165,116,250,244,233, +146, 67,135, 14,185,203,100,178, 92,149, 74,149,246, 70,252,129, 67,120, 41,153, 42, 56, 40,132, 16,240, 56,112,182, 21,195,201, + 90, 4, 62, 23,224, 16, 98, 42, 73,115,203,190,227,243, 25, 85, 14,142,236,214,245,255,117,237, 2,124,254,245, 12, 60, 73, 23, +158,226, 72,173,231,127,213,191,215, 84, 71,137,169,147,155, 13,199,169, 93,253, 42,144,137, 5,152, 54,110, 48, 26, 5, 71, 59, + 37,100, 51, 51,210,212,220,186, 0,102,148,120,222, 57, 4, 60, 46,129, 66,202,199,169,157, 75, 83,149, 57,105, 57,133, 69,111, + 58,173, 38,198,172,167, 94, 9,199, 83,230,236, 55,181,126,221,218, 11,198,140, 28,206,105,222,180, 17,229,112,248, 72,207,211, + 17, 74,129,111,199,142,198, 87,163, 71,184,196, 37,166,206, 90,183,110,195, 76,185, 83,141, 31,242, 83,159,206, 41, 75,147, 67, + 94, 69,125,228, 98, 30,228,146, 87,134, 69, 46,230, 65,163, 51,129, 16,112,109, 61,235,231,144, 87,145,219,196,140,232,146,255, +113, 23,215,180,243, 8, 60,127, 54, 82,225,159,181, 47,235,102, 84, 98,200,252,224, 71, 41,119, 40,165,153, 30,173, 39, 12,213, + 27, 41,242, 53, 70, 68,165,168, 96,212, 83,242,121,103, 79,120,245, 38,126, 11,127,189,255, 27, 33,196,170,208, 56, 23,215,140, +191,185, 95,227, 80,171, 87,191,159, 86,111,188,187,108,193, 12,110,122,142, 14, 12,165, 16, 11,185,144, 8,121, 5, 19, 23,106, +101, 14,214,253,188, 41,217, 8,210,139, 94,186,100,180,232,185,196,208, 65,159,116,105,181,135, 0, 66,194, 17,196,187,121, 86, +241,252,168,219, 48,241, 71,221, 7,195,100,212, 77,149, 57,251, 95, 84,166,132,157, 55, 71,179,102, 64, 13, 16,224,126,126, 74, +248,104, 0,144, 59,251,109,240,247,243,175, 95, 60,173,122,117,191,250,230,156,247,130,103, 52, 71,226,232, 51,178,186,127,173, +201, 99,190,223, 88, 37, 42, 73, 5,187,202, 62, 8,121,252, 0, 39,247,174,189,175,206,203, 90,118,242,200,193,201, 63,252,184, +170, 78,183,158,125,113,248,143,189,223, 17, 66,214,211, 87,156, 43, 18,157, 26,180,109,243, 47,149,249, 66, 17, 12, 70, 6, 6, + 19,125,245,105, 52, 33, 51, 51, 11, 6, 35, 3,177, 84, 1, 35, 67, 96, 48, 49, 48, 24, 25,104,117, 70,217,232,193, 31,127, 9, +224,118, 73,249,116,175,209,230,180, 64, 36,242,164,120, 53,182, 44,165, 20, 92,163,142,227,234,234,186, 11, 0, 68, 34, 17, 68, + 34, 17, 24,134, 65,112,120,218,215,142,254, 65, 99, 80, 96,236, 76,122, 93, 76, 86,212,181,142,165,237,187,139,139, 75,183,226, +230, 74,163,209, 32, 63, 63, 31, 87,111,222,181,222,252,219,129, 78, 81, 49,241,213, 24,106,173, 85, 56, 85,235, 8,160, 91,105, +199, 51, 55, 57,236,203,202, 77, 71,114,190,251,106,104,245,213,219,142,221,121,126,234,135, 50,235, 97, 85, 13,154,170,251,110, +212,167, 13, 22,175,218,242, 60,243,218,207,227,203, 59, 71, 60, 30,143,159,150,150,246,250,254, 94,179,105,119,131,251,225, 9, + 61, 87,254,180, 82, 28,252, 50, 15,143,163, 18, 49, 52,200, 3,111,188, 4,202,208,148,187,120, 59,120,123,251,239, 90,183,106, + 49,239,121,162, 6,107, 15,222,193,133,195, 27,174, 38,167,222,238, 68,147, 19,213, 21,121,134,188,173,193, 42, 75,243,226,163, +116,228,107,140,208,234,140, 48, 48, 20,185, 42, 3, 82,179,117,200, 85,233,145,175, 54, 98,104,123,143,210, 76,116, 89,126,196, +145, 16,114,140, 82,218, 21,175,186,151, 18, 22,249, 13, 66,200,177,130,124,189,241,123,234,212,169,211, 23, 45, 90, 20, 82,184, +108, 97,122,225,178,101,165, 23, 89,223,126,218,180,105, 53, 23, 47, 94,188,176,105,211,166,123,110,220,184, 17,105,150,193, 42, +186, 19,132,144, 50, 15,176, 72,192,115,147, 42,108, 95, 25,142,255, 7, 12, 80,165,102,155,140,149, 75,230,217,185,250, 52,137, + 73,122,126,203,211,252,168,149,111, 51,137, 68,122,124,249,242,229,232,223,173,165, 36, 54,221,144,255, 40, 86,157,162,212,193, +232,228,232, 43,156,191,112,177,124,241,146,165, 95, 29, 59,194,100, 3, 88, 90,114, 81, 94,195,123, 92, 82,164,142, 21, 33,160, +140, 41, 62, 51,234, 78, 3, 0,120,155,186, 86, 74,141, 17,220,130,186, 51,132, 0, 42,173, 9, 92, 46, 73,205, 14,223, 23, 58, +240,135,249,237,118,236, 57,155, 72, 57, 54,121, 74,101,148,148, 82, 26, 95,118,132,128, 32, 87,101,128,181,148, 15, 27, 57, 31, +214, 50, 1,184, 69,110,174,194, 98,193, 29,187,207, 36,196,196,100,220, 45, 48, 87,165,106,242,184,156, 72,106, 50,104, 40, 53, + 41,186, 54,116,132,147,141, 16,174,182, 34,136,132, 60, 24,140,128, 90,199, 64,163, 51, 33, 58, 85,141, 60,181, 4,181, 90,247, +169,106,239,122, 79,107,239,217,240, 80, 70,204,221, 94,101,154, 82,147, 9,219,118, 29,168,158,152,152,210,227,196,161,157,162, +180, 92, 3, 30, 69, 43,145,154,173, 5,184,142,152,189,112,173,104,202,248,145, 61,183,237,254, 61,230,163,150,141, 99, 44, 62, +174,169, 97, 59,106, 53,251,120, 67,215,174, 61, 37, 33,183, 79,224,249,131,243, 11,242, 83,204,175,127, 69, 8,225,236,223,191, +223, 56,114,228,200,188,133, 11, 23, 86, 62,114,228,136, 87, 90, 90,218, 3, 0, 6, 27, 27, 27,127,223,234,158, 15,207,156, 58, + 89,233,227,158,125,248,241,233,106, 88, 75, 5,240,116,146,226,230,213,211, 6,161,144, 95, 98,125,146,130, 98,192, 1,238, 65, + 83,112,228,102,100,167,144, 12,241,165, 17,195,135,198,156,185, 18,158,177,230,183, 51, 63, 86,146, 27, 30,136,153,180, 53,247, + 26,120,187, 76, 29, 59, 24,139, 86,239,192,229,224,240, 84, 37,199,117, 65,146,214,120,118, 78,191,201,165,132,204, 95, 25,107, +133,132, 15,101,110, 90,206,139,224,147,190,239, 40,250, 60,244,204,161, 29,156,204, 60, 3,226,210, 53, 36, 49, 51, 15, 38,134, +194, 70, 42,128,145,161,200,206, 76, 39, 59,119,252,134,187,119,111,114,192,229,124, 1, 96, 78,153,197, 89,228, 85,145,160, 92, +204,127, 21, 1,146,188,250, 52,152, 24,248, 85,247,198, 47,107, 86, 88, 57, 56, 57,163, 69, 43,243,235, 60, 43,236, 61,235,236, +217,186, 6,151,110,220,111,115,121,229,218,134,114, 55,199,213, 86,238, 1,203,172,189,218,107,180,122, 19,114,178,179, 32,212, +197,161, 81,165, 52,216, 73, 77,136,206,117,197,147,228,231,242,242,138,179,210, 31, 31,124,224, 88,243,147,153, 7,142, 94, 88, +212,177,125, 27, 60,137,206,133, 68,200,131, 88,200,133, 88,200, 5,159,152,176,226,231, 13,134,172,156,188,174,233, 79, 14,165, + 87,224,250, 60, 87,240,111,247,213,203,205,185,154,227,142,213, 51,183,143,152,188,164, 99,167, 79,134,145, 39,119, 47, 78, 7, +112,222,188, 63,120,212,172, 52,134,161,102, 95,251, 78,222, 13,118,109,221,182,187, 95,128, 79,101,164,100, 27,144,152,165,199, +213,251, 17,216,190,121,102,118, 86,202,203, 65,208,231,231, 51,196,152,115,250,212,209, 83, 95,127, 51, 25,129, 53,235, 84,201, +141,207,181, 2,144,243,198, 54,185,100,227,144,225,163,250, 57, 59, 59, 43,254, 31,193,162,240,245, 11, 64,151,238,159,226,244, +225, 63, 16, 26,242, 8, 12,125,101,148, 24,134, 34, 59, 43, 35,217,104,208,109, 43, 45,127, 66,177,216,243,215,173,191,249,112, + 56, 4,122, 3, 3,157,145,193,248, 47, 63,211,141,254,118,122,139, 46, 29, 90,135, 8,185,200,141,142, 77,178,185,121,255,105, + 45,134, 47,175, 60,124,226, 10,129, 70,107, 66,142,202,128, 19, 91, 74,247, 56, 18, 59,207,166,117,154,245, 28, 62,250,251, 95, + 68, 34, 46, 71, 31,232, 91, 57,178,117,147,192, 56, 15, 55,135,188,121,139,215, 54,186,118,251,126,151,190, 3,135,139,135,250, +215, 39,110,246, 18,197,103, 3, 63,169, 45,179,247, 24,162,204,136, 45,117,104, 51,190,212, 54,219,195,171,186,234,255, 17, 34, +191,131,132,162,234, 27, 38,130, 32, 82,149, 28,222, 11, 0, 92,221, 60, 52,124,145, 85,158, 5, 6,132, 2,192,234, 77,187, 27, + 60,124,150, 56,226,167,159, 86, 74,131, 95,230,225,193,203, 28,136, 4, 28,232, 13, 12,136,153, 65,108,134,114, 71,205,152, 54, +213, 42, 75,105,194,165, 71,105, 8,185,119,145,234,242, 53, 3,165, 70,171, 94, 50,103,191, 33, 0,188, 1, 68, 16, 66, 55, 42, + 83, 92, 14, 83,122,201,104,233,117,207, 48,175,254, 39, 91, 59,121, 87, 53,241, 68, 93,248, 66, 89, 83, 66,104, 32,161,176, 5, +104, 66, 70,193, 59,213, 92,135,166, 76,121,134, 37, 11,103, 97,213,230, 63,144,152,161,129,181, 41, 14,135,183,204,199,119,139, +118, 65,173, 53,149,117,141,151,233, 71, 74, 50, 68,197,141, 86,225,247,194,229, 22, 45, 90,212,181,216,185,233, 90,202, 57,251, +211,114,133,235, 47, 94,188,120, 97,145,249, 42,179,139, 8, 11,119,166,172,157,178,114, 12,168, 38,176,146,139,172, 36,124,120, +121,184,162,255,152, 57, 14, 46, 62,205, 83, 69, 66, 30,247,208,238, 95,236,210,213, 34, 16, 14, 71,105,118,241,134,179,127, 99, +133, 66,113,226,224,239,127,160,154,135,147, 96,231,213,204,168,251,145,234,215, 33,221,220,180, 24,161,151,149,138,215,235,147, + 79,164,231, 47, 92,252,182, 52,131,197, 37, 92,247, 77,191,253,238,164,144,240, 65, 8,144,167, 54, 98,196,144, 79,223,254,245, + 69, 25,238,231,195,134,128, 20,152,171,220,140,100, 76,159, 60, 70, 35, 51, 60, 15,141,141,142, 77, 8,234,246,221,249,220,124, +162,233, 55,248,203,187,161,207, 22,101,149,127,245, 26,226,187,124,220, 69,240, 42, 82, 0,112, 9, 1, 67,153, 20, 63, 47,249, +216, 63, 21, 11, 38,107, 55,149,103,216,242, 18,194, 51, 21,174,181,122,239, 88,254,245, 38, 55,103, 39,123,185, 76, 66,229, 82, + 17, 9,244,247, 17, 52,105,210, 76,232,229, 87, 91,112,245,169, 26,177,105,106, 68, 38,230, 64,228, 92,151,215,191, 93,103,236, + 88, 57,177, 13, 33,132, 83, 94,197,215,179,151,110,117,219,252,243, 79,162,148,108, 61,194, 98,243,145,156,165, 65, 82,150, 22, +201,153, 26,200, 37,124,180,234, 62, 82,116,252,240,198,110, 31,181,108,188,186, 34,135, 55, 50, 50,234,120,116, 66, 82,159,218, +245, 26, 97,199,246,173, 45,109,109,171, 90,101,101, 69,230,154,123,118,230,207,159, 47, 92,188,120, 49,111,205,154, 53,185, 77, +154, 52,113,153, 54,109, 90,199,212,212,212, 59, 85,170, 84,241, 59,125,112,219,133,186,173,122, 52, 4,163,119,108,217,186,173, + 64,196,240,112,230,216, 49,253,190,189, 59, 51,212,234,188,209,101, 26, 13,169,245,252,148,124, 2,199, 74,149, 66,228, 66, 83, +123, 30, 39,251, 89,230,201,177,191, 1, 56,232,253, 63,246,206, 59, 60,138,170,109,227,247,153,173,217,146,222, 59, 16, 8,161, +132,222,123,239, 93,170,160,162, 82,196,130, 20, 21, 68, 65, 80,138,136, 82, 20,165, 73, 71,233, 85,122,239, 53,116, 72, 2, 33, +149,244,178, 37,219,203,156,239,143,148, 55, 96,202, 6,241,243,125,241,252,174,107,175,108,118,103,238, 61,103,230,204,153,123, +158,211,122,126,116,252,212,245,232,152, 38, 55, 18,124, 78,222,120,148,153,171,183,212,124,124,104,114,185, 21,174,128, 16, 8, + 5, 28,156,101, 66,112,133,181,169,115, 96,131, 71, 32,196,187, 40, 82, 74, 64, 10,255, 2,132, 32, 53, 55, 49,202,129, 62, 25, +132,242, 20,136, 78,209, 33,223, 88, 16,130, 15,242,146, 35, 43, 35, 5, 63, 47, 91,143,168,235,215,208,173,103, 63, 44, 95,189, + 25, 99,222, 24, 98,172, 72,141,227, 10, 35, 88, 37,162, 87, 74,153, 16, 0,129, 74,103,197,206,243,201,168, 94,141,115,248,134, + 0, 0,206, 74, 57,212, 90, 3, 56,177, 51, 30,223, 56, 40, 63,116,234,202,244, 47,190, 94,252, 73, 94,218,237,164, 71,119,206, + 33,194, 75,141,106,129, 22,220, 75,119,193,245,156,170,136,168, 17, 6, 78,124,205, 33,237,236,123,245, 22,238,229,118,246,105, +210,176, 78,203, 80, 31, 55, 24,204,246,194, 40,150, 0,235,214,110, 68, 66,124,202, 59,217,247,246, 68,189, 12, 39,155,159, 17, +151,229,228, 27,254,254,157, 43, 39,158, 12,124,253,125,248, 7,134, 52,112,252,166,229,152,153,178, 59, 96,176, 8, 33,156, 71, +149,134, 27, 54,108,218, 62,172, 90,136, 31,142, 93,137,199,213,152, 28,120,121,121, 66, 32,247, 67,120,251,209,110,119, 14, 47, +125,205,144,157,191, 65, 36,150,191,219,188, 69,107, 80, 74, 17,253,224, 94,174, 90,237,250,167,186, 89,159,250,240, 38, 0,151, +103,154,161,188,107, 55, 80,186,122,220, 52, 89,236,120,250, 52, 5, 23, 46,158,110, 84,184,157,195, 72,197, 2, 28,141,202,132, +197,202,195, 98,227,209,174,125, 87,179,152, 51,181,157,187,120,109,139,180,212, 52, 78,225,226,197,123, 4,214, 22,251, 75, 45, +166, 91,113,106,177,197,202, 35, 44, 64, 81,174,166,119, 64,141,121, 83,167, 78,170, 45, 16,203,160,213,153,204,105,169, 79,253, + 86,253,118, 42,255,193,195, 59,129, 65, 62,174, 46,223, 46, 89, 41,214, 24, 9, 50,213, 38,228,106, 53,228,245,113,159, 6,172, +249,105,254, 72, 0, 14,175, 29, 75, 40,170,253,113,244, 92, 45,119,103, 49,201, 55,218,248, 28,141,197,254,250,128,191, 54,136, +178,208, 92,141, 93,252,195, 18,121, 84,156, 22,183,226,212,112, 18, 11, 32, 17,115, 48, 91,121, 56,114, 57, 17, 66,184,106,145, +237,199,183,106, 82, 15, 71,110,102, 67, 32,224, 96,208,230,233,133,200,137,105,210,161,155,188,113,179, 22,232,216,161, 61, 30, +197, 68,135, 28,216,183,179,243,165, 11,103,210,149, 62, 17, 31,228,103, 70,239,174, 84, 57,215,235, 5, 86,137,223,104,255,192, + 42,173, 7, 13, 31,237, 26, 26, 18, 72,124,188, 60, 97,163, 66,140,125,227, 53,135,175,252, 2, 67, 14, 44,248,122, 58, 76, 38, + 51,188,221, 36,160, 20, 88,187,236, 43,152,205,102, 4,120, 74,161,214, 89,203, 51,166,229,250,145,178,162, 78,149,108,110, 62, + 80,154,201,122,254,115, 66,200,129,105,211,166,125, 14,128, 78,155, 54,237,243,162,255,231,207,159,111, 0,144,234,144,193, 42, +202, 84,153, 21,101, 64,120, 77,119,159,128,243,219, 54,252,228,158,151,111,129,147, 88,128,160,224, 80,124, 54,103,169,119,207, + 38, 94,200, 50,202,177,125,199,186, 92,179, 81,191,213,177,182,228,240, 38,206, 10,151, 35, 27, 54,109,229,189, 60, 61,185,159, +143,102,197,229,104,109,197, 77, 87, 49, 87,246,241,215,143,172,242,167, 32,135,157,156,156,106,152,205,102,247,138, 78,232,218, +163,137,133,157,115,201,203,168, 83, 65, 4, 2,251,230,205,155,224,233, 34,129,201,202, 99,218, 39, 19, 13,111,118, 83,170, 94, + 31, 58,188, 83,199, 94, 31,157, 20, 41,194, 79,180,106, 20, 78, 27, 54,108,168, 18, 8, 4, 21,234,229, 60,185,250,167,209, 18, +181,170,202,223,157,241,233,155, 51, 74,105, 22,116,168, 67,174, 54,237,206,121, 0,207, 68, 68, 72,245,234,146, 45,219,247, 78, + 28, 60,116,216, 23,129, 13, 6, 40,227,211,212, 16, 19, 11,154,214,246,199,169,195,187,105, 74, 66,204, 36, 71, 70, 21,101,102, +229, 6,123,123,251, 34,234, 73, 62,158,230, 24,144, 94,104,174,210,242, 76,208, 26,180,168, 31, 26, 0,149, 90, 29,252,194,199, + 23,216,125,228,200,145, 33,189,250, 15,195, 71,159,204,110,243,235, 47,139,110, 43,253,106,190,157,159, 30,115,218,145, 39, 67, + 66, 72,238,103,159,125, 86,125,245,234,213,220,200,145, 35, 13,245,234,213,115, 26, 53,106, 84,155,141, 27, 55, 58,201,229, 78, +134, 91,231,246,125,241,238,135,211,250,175, 90,250, 77,131,188,188, 60, 98,179, 90, 15, 89,242,242,166,105, 43, 48,113, 73,123, +167, 63, 36,117,102,191,213,181,173,247, 62, 15, 57, 87, 87, 74,205,195, 73,157,217, 91,233,253, 89,150,199,135,150,105,235, 13, +253,225,195, 84, 21, 63,195,200,249,204,173,200, 92, 1, 0, 39, 32, 48, 91,121, 56,203, 68,224, 56,174,200,188,251,175,219,122, + 72,238,237, 42,129, 72,192, 65, 40, 40,136,110,102,107, 44,120,127,116,127,135,159, 0,108,118, 10,131,217, 6,125,225,211,160, + 86,147,141,233,159, 76, 70,207,190, 3,241,238,248,201,200, 51, 0,215,159,104, 97,177, 90, 43,188, 40, 56,194, 65,111,178,225, +237,110,161,200,205,183, 64,103,176,193,108,227, 33,151, 8, 33, 18,114, 80, 56, 9,225, 34, 23, 1,148,138, 9, 33, 99, 1, 64, + 36, 18, 25, 45, 22,203,166,114,206, 19,170, 6,251,194, 96,229,208,108,216, 34,116,105, 89, 19,247,206,239, 20,158,185,124,167, +218,199,159,204,192,196, 49,125,177,227, 97,117,120,248,132, 66,169,144,193, 74, 57, 0,212,161, 14,121,148,206,226,253,107, 13, + 26,177, 98,245,218,232, 57, 51,167, 57,169,116, 4, 82,177, 0, 39, 79, 28,199,165, 43,215,151,102,221,219,179, 9, 47, 17, 17, +229,124, 93, 92, 92,224, 36, 17,192,108, 49,153, 29,239,162, 64, 65,129, 70, 74,223,136, 21,133, 79,248,141,236, 60, 74,249,140, + 86,116, 67, 32,174, 1,145,235, 86,172,217, 60, 50,192,207, 7,187, 79,220,198,186,213, 63,162, 90,195, 62, 56,255,199, 58,184, + 86,109, 1, 69, 72, 27, 72,156,183,143,229, 4,194,122, 31,124,252,249,160,198, 77, 91,226,194,185,147,200, 76, 79, 91, 65,233, + 67,135, 34, 26, 2, 17,249,168, 83,215,190, 48,154,237,104,219,185, 15, 14,239,223,253, 33, 10, 7, 79, 56,126,243,122,174,126, + 6,103,155, 60,233, 35, 81,166,218, 44,202, 86,155,145,156,109, 64, 66,186, 14,123,126,255,149, 58, 94, 95,152,155,182,171, 31, + 36, 26,187,240,100,114,112,144,191, 73,100, 50,200, 98, 30,199,213,122,119,244,155,162,106, 53,106,113,153,106, 19,178,212, 38, +100,171, 77,200, 55,218, 80, 35, 40,156,179,218, 72,203,202,158,103, 47, 87,137,104,249,254, 39,112, 81,136,208,170,214,139, 15, +156,229,121,254, 63,230,106,113,129,185,186,253, 68, 13,169, 88, 0,169,152,131, 84, 44,128,205, 78, 29,122, 96,145,249,212,236, +245,254, 7, 19, 2,204, 54, 32, 71,109,134, 80, 64,224,227,229,174,104,218, 96, 4,214, 46,250, 16, 0, 48,230,179,159,241,238, +219,163, 80,187,110, 61,168,242,242,252, 70, 12,238,181, 24,192,110, 71,211,122,240,232,233,144,163,103,163, 62,123,127,234, 44, +229,208,190, 29, 5, 55,227,212, 72,203, 53,225,113,140,182, 82,145, 54, 0,176,217,121, 80, 80,172,223,122, 0, 50,137, 16, 89, +106, 11, 40,165,248,230,199,109,112,150,137,144,150, 87,208,172, 95, 65, 29, 79, 42,248,190,207, 95,138,159, 20,236,159,133,255, +244,211,170, 48,130, 53,127,254,252,123,243,231,207, 47, 53, 34, 86,161,193, 42,207, 92,185,185,251, 95,216,183,117,181,199,238, + 40, 51, 46,111,191,142,222,205,253, 33, 22,114,144,187,122,227,214, 19, 29,142, 28,254, 77,117,112,223,142,167,185, 34,253,119, + 21,154, 43,255,136, 70, 10,153,203,241,229,171, 54,216,188,124,124,176,233, 92,110, 74,158,206,102,253, 79,243,148,149, 92, 63, +178,170,154,141,183,246, 48,164,199, 86,248, 56,203, 83,136,231,255,178, 23, 0, 5,207,243,160, 60, 15,145,147, 82,225, 93,189, +101, 70, 97, 5,231, 36,228,136,177,228,149, 79,121, 91, 74, 86, 92,249,225, 78, 2,192, 69, 46,194,214, 51, 79, 1, 32, 67,160, +189,241,224,245,161, 5,205,130, 70,179,147,166,110,245,234,180,105,211,166, 42,153, 76,246,194, 39,185,178,205,130, 14, 21,156, +199,143,205, 0, 22, 6, 68,180, 29,216, 93, 89,191,153,132, 19,163,113,132, 63, 78, 29,217, 67, 47, 31, 94, 59, 70,159, 17,189, +193,193, 2,136,124,163, 21,169, 57, 70, 60,205, 49, 34, 61,207,136,244, 92, 19,210,243,140, 32,132,192,104,182,253,165, 27,150, + 46, 51,122,251,166, 13,107,250,153, 44, 24,222,174,219, 64, 76,158,181, 60,116,211,138, 5,199,101,190,181, 90, 59,210,129,150, + 82,106, 39,132, 36,140, 30, 61,186,193,111,191,253, 38,136,140,140, 52, 60,120,240, 64, 14,128, 7, 96, 81, 42,229,178, 95,127, +154,127,164, 89,179,102,191, 63,141,121,120, 18, 64,158, 35, 35,169,170,116, 24, 45,173,229,146, 59, 54, 68,209,170,123,152,159, + 28, 33, 10,109,247, 90,202, 91,223,249,116,254,120, 94,230,137, 37,153,105, 38,219,177, 44,131,160,225,211,124,145, 67,125, 1, +173, 38, 99,226,160,193,195, 32, 32, 28, 44, 70,125, 98, 81,225,242,113,149,224,171,205, 15,161,116, 18,193, 89, 38,132, 82, 38, + 66,155, 58, 30,168, 68, 61, 70,173,118, 30,122,147, 29, 6,147, 13, 70,179, 13, 94,193,238, 88,189,105, 59,146, 50, 13,216,123, + 45, 27,209,137, 90,132, 7, 41, 64,105,197,213, 35,111,183,234,250,190, 54,210, 89,192, 17, 8, 56,194,213,169, 85, 19,185,249, + 22,136,133, 28,196, 78, 50, 40,164, 66,184,200, 68, 16,139, 69,200,204,204,132,201,100, 66, 72, 72,136, 83,249, 22,144,194, 89, + 41, 67,120,181, 0, 88,172, 54, 28, 60,123, 31,115, 39, 13, 66,215,118, 77, 64, 68, 74, 60, 52, 53,130,179,135, 51,120,142,131, +197,198,195,108,177, 3,224,202,140,182,133,132,132,116, 82, 40, 20, 10,189, 94,175, 77, 76, 76, 60,157,246,112, 87,146, 79,221, + 1, 99, 15, 31, 61,185,169, 79,207,174,136,186,125, 15, 59,118,239, 59,151,237,169,158, 90,180, 79,100,100,100, 11, 47, 47, 47, +101, 78, 78,142,230,206,157, 59, 87, 95,240,105,151, 40,124,107,125,220,178, 77, 7,228,171, 50,145,145, 28,239,240, 83,115,237, + 80,103,124, 57,127,121,227,136,154, 17,141,237,180,192,112,213, 9,113,198,148, 89,203, 26, 87, 15,175,217,184,104,160, 71,237, +144,242,167, 85, 83,248, 70, 76,152,251,195, 47,111,132, 4, 7,227,208,133,135,152, 63, 99,124,148, 66,238, 92, 53,200,215,221, + 77, 92,183, 9,110,222,188, 8, 31, 72,224,226, 27, 30, 52,188,223,184,160,238, 61,251,225,206,173,235, 88,178,240,235, 75, 58, +129,108,158, 35,105, 85,250,134,121, 55,108,218,238,117,103, 15, 95,168,212, 90, 56,187,251,160,118,253,166,175, 43,125,195, 62, + 43, 92,172,254,197,204, 6,165, 48, 89, 40,242,180, 22, 36,101, 21,152,171,248, 12, 61,120,190, 18,125,126,236, 60, 81, 58, 9, +133, 30,214, 71, 33,119,142,159,164,161,193,190,100,225,215,159, 8, 44,112, 66,150,170,192, 92,101,105,204,200, 82,155,145,111, +180,194, 67, 33, 4,111,231, 43,253,180,157,151,111,129,115, 97, 63, 89, 59,255,226,125,190,127, 89,183, 53,226, 86, 76,234,128, + 31,126, 88, 34,191,249,164,132,185, 18, 21, 68,175,164, 98, 1,236, 60, 95,120,167,169,192,220, 11, 69, 31,245,239,213, 5,201, +217,134,194,145,200, 4,225,245,154,193, 75,198,163,243,176,105, 0,128,190,189, 10,250, 25, 63, 73,211, 97,255,229, 44,224,217, + 14,219,229,215,197, 6,131, 96,213,230, 63, 62,222,190,237,119, 87,163, 93,136,149,135, 18,160, 55,217,224, 36, 22, 64, 42, 22, + 64, 38, 22, 60,211, 37,168, 98,131, 85,208,167, 46, 41,219, 10,189,209, 8,141,193, 10, 10,224,234,163,124, 24,204, 54,168,117, + 86,180,168,229,254, 87,159,121,254, 0,208,251,121, 35,244,188, 73, 42, 17,129, 42,141,107, 37, 53,138,182, 47,203,192,149,236, +147, 5,192,161, 7, 65,225,243, 78,177,228,255,206, 1,225, 53,221,220,252, 47,236,251,125,181,199,174, 40, 19, 78,221,202,193, +224,182, 65,208,171,211,177, 96,254,167,185, 4,212,204, 9, 56,149,201,104,216,149, 35,183,204,165,247, 31, 91,202,173, 36,188, +235,212,151,201,229, 39,191, 93,178,210,226,227, 27,200,239,186,172,202, 84,235,237,207,196, 10,237, 38, 19, 71,121, 42,118,196, + 92, 21, 54,109, 88,102,125, 56, 16, 60,165,248,106,201,118,204,155, 58, 12, 74,217, 72, 57, 33, 68,174, 51,218, 48,105,246, 26, +124,255,229, 59,206,114,169, 16,132, 0, 70,179, 29,111, 12, 31,232, 88,193, 51,218,240,248,202,111,249,218, 39, 7, 30,148,108, + 22,108,222,166,231,245,230,205,155,171,220,221,221, 33,147,201,254, 19,153,112,176,178, 46,109,180, 96,166, 10, 41,206,206,206, +237, 93, 92, 92, 74,234,233, 84, 42,213,158, 23, 41,125, 90, 85,246,201,244,132, 59,205, 90,119,236,139,211, 71,246,208,203,135, +126, 29, 83,153, 57,118,220, 61,220,147,111,220,121, 92,155, 16,143,130, 8, 86,161,185, 50, 91,121,132,250,202,145,156,240, 24, +110,174,174,201,142,234,201,125,106,245, 39, 28, 29, 79, 64,215,230,167,199,108, 47, 52, 59, 35, 20,126,181,110,223,187,123,115, +110,159,215, 63, 18,118, 27, 60, 65,176, 98,254, 7,159,227,185,206,169,229, 96,137,142,142,190,255,206, 59,239,180,186,116,233, +146, 29,128,158, 16, 98, 21, 8, 4,114,179,217, 44,238,216,177,163,250,225,195,135,103,224, 64,103,196,182,111,239,240, 34, 82, +109,207,234,225, 77, 71,132, 58,107,187,118,108,219, 18, 45,235, 6, 35,185,109, 75, 0,248, 40, 49, 95, 25,209,230,189, 95,183, + 86,243, 14, 58,184, 98,221,254,121, 99,134,117,153, 20,208,119,246, 15,169,251,103,149,219,193, 52,233,254,233,238,165,217,247, +130,102, 67, 17,148, 50, 33,156,101, 34, 56, 59,137, 96,181,209,202, 60, 41, 82,171,141, 47,136, 96,153,109,200, 55,216,112,242, +102, 6,210,213,102,168,180, 22, 24, 44,118, 80,208,130,167, 79, 7,106,241,204,216,243,110,197,231, 62,180,177,122,213,143,139, + 92,118,158, 79, 41, 30,161,231, 42,151,192, 89, 94, 48,170,250,236,217,179,240,244,172,248,233,158,231,121,236, 56,124, 21, 63, +172, 63,137,195,107, 63,133,147, 88,128,250,253,103,227,173, 1,205,193, 83, 30,143,163,239,101,132,215,105,224,203,113, 50,112, +132,192,100,229, 1,208, 50,143,167,217,108,246, 76, 74, 74,210,212,168, 81,195, 47, 48, 48,112,176, 64, 32,160, 82,192,180,231, +247, 92,253,137, 3, 91,228, 58,131,201, 46,183,169,215,214, 72, 51,244, 14, 15, 15, 7, 33,132,122,121,121,137, 79,158, 60,153, + 95,175, 94, 61,239, 23, 52, 87,156,204,167,230,210,119,223,251,120,112,245,176, 48,108,223,178, 22,148,146,157,142,238,191,121, +255, 37,124, 61,253,217, 17,131, 83,102, 45,107,252,253,236,143,158,249,236,189,233, 63, 52, 46,175,206, 8,138,236,244,105,173, + 90,117,112,233, 94, 10, 22,126,241, 94,148, 49,243,201, 8,179,210,115,156, 37, 63,109,114,195, 70, 77,224,231,233,130,212, 92, + 19,250,141, 28,128,214,109,218,226,206,173,235,248,250,203, 79, 46, 65,111,238, 70,179,238, 27, 28, 73, 43, 79, 69,227, 59,118, + 31, 32, 50,152, 44, 88,182,112, 38,198, 77,157,139, 22,157,250,138,238,222,188, 60, 30,192, 28, 71,243,108,178,216,209,177,158, + 87,129,105,182,242,216,247, 68, 32, 44,173, 4, 10, 5,132,107, 24,230, 6,131,217, 6,141,222, 90,254,141, 74, 44, 74, 87,169, + 53, 85,126,154,247,177, 64,103,180, 33, 75,109, 70,166,218,132,108,213,127,140, 85,182,218,132, 44,181, 25, 34, 33, 65, 76, 92, + 34, 56,145,176,210,253,239,242,242,173,104, 86,211,189,224, 26,125,193,214, 16,171,208,165,249,225, 51,183, 6,253,240,195, 98, +167, 91,241, 90,220,126,162, 41,140, 92, 9, 32, 21,113,144, 20,190,183,243, 64, 69, 63,225,234, 83,189,218,155,239,140,233,236, +162,148, 33, 53, 54, 19, 66, 1,129, 64, 64,224,234, 19, 12, 87,169, 17, 31,188, 55, 22, 94,158,110, 72,202, 54, 97,233,238, 24, +220,190,255, 8,188,161,114,217, 94,182,242,247, 30,239,190, 63,197,141, 19, 73,176,241, 72,124, 65, 58, 5,118, 60,188,188,223, +152,250,248,142, 46, 95,147, 67, 65,237, 14, 62,248, 19,106,179, 23, 24,211,121, 95, 77,195,239,235,127,198,145, 27,153,197,157, +179,206,239,252, 30, 31, 79,255, 6,217, 26,115, 97,209, 47, 63,114,245,220,255, 89, 37, 34, 79,127,250,191,132, 41, 42,237,127, + 82,248,191,185, 12, 13,243,115,166,202,252,220,231,230,231,244, 28,154,187, 79, 88, 94,228,202,213,221,239,194,222,173,171, 60, +118,221, 48,227,244,237, 2,115,101, 51,169,240,203,194,233,105,122,149,166, 93,121, 19, 54,254,201, 92,249,212,140,148, 42, 20, +103,190,248,102,169,201, 55,176,138,237,224, 77, 77,142,214,104,255, 83, 24, 68, 44, 87,216, 21,174,222, 70,183,208, 70, 63,136, + 12,230,153, 89, 89,247,117, 21, 69,154,120, 74,113,224, 74, 58, 40, 45,120, 36,218,118,246, 41, 10,159,196, 97,231, 11,154, 79, +142,221,204,132,176,176,159,137,163, 97,238, 95, 86,254,172,233, 93, 79,173,123,125,222, 87,197,205,130, 45, 26, 20, 68,174, 92, + 92, 92,224,230,230, 6,165, 82, 9, 71,154, 8,139, 40,107,180,160,179,179,115,251,155, 55,111, 58,185,184,184, 64, 32, 16,192, +100, 50,161,110,221,186, 47,116,129, 43,253,106,189,223,172,211,192,207,219,116,234,139,147,135,119,209,203,135,215,141,173,236, + 4,134,189,187,180,218,255,245,215, 95, 85,251, 98,238, 79, 82,103, 39, 33, 30,228,155,193, 17,130, 80, 95, 57, 60, 21, 28, 78, +239,217,104, 28,214,183,149,195,147,218, 5, 7, 7,110,250,254,199, 85,138,239, 23,204,238,232, 28, 24,113, 82,251, 52, 58, 23, + 0,116,233, 15, 23,202,253,106,221, 15,186,120,244, 96,131,246, 3,225, 27, 16,214,181, 18, 97, 94, 74, 8,209,199,197,197, 61, +249,226,139, 47, 34, 22, 44, 88, 64, 5, 2, 1, 15, 64,186,100,201, 18,125,108,108,236, 77, 20, 12,177, 69, 69,209,171,206, 93, +235, 78, 82, 74,236, 45, 60,228, 92,221, 48, 63, 57, 90,214, 45,104,253, 28,214,187, 13,130, 67, 66, 16,151,174,111,152,171,231, + 69,249,102, 65,216,242,149,183,175, 85,245, 18,140,177, 25,204,247, 81,193, 36,176,101,149,217,162,142,239, 69,209, 43,103,153, + 8, 60, 80,153, 39, 69,106,181,241, 48, 89,236, 48,152,236, 48,152,109,208,153,237,208,155,237,224,105,193, 53, 65, 8,129,197, +198,195,161,199,228,231,202,190,139,135, 23,194,170, 22,140,122,117,150, 21, 76,217,224, 34, 23, 21,140,117,246,244,132,143,143, +143, 67, 81, 80,179,165,224, 18, 55, 91,249,226,230,123,179,197, 6, 74, 41, 98, 98,162, 63, 77,120,242,164,127,141,240, 26,237, +234,212,111,224, 33,151,114, 0, 80,166, 25,208,235,245,118,103,103,103, 31, 15, 15, 15,238,233,211,167,197,166,185, 70,195,142, +182,221,187,118, 98,208,160,129,249, 15,174,222, 42, 30,170,110, 48, 24, 72,235,214,173, 93,130,131,131, 57,147,201,164,169,220, + 49, 32, 68,225, 93,115, 64,112,173, 86,115,223, 24, 61,174,102,199, 46, 61,112,234,196, 81,236,221,245,219, 6, 93,102,244, 81, +135,175,247,136, 90,127, 26, 69, 88, 61,188,230,159, 70, 17, 86,169, 22, 94,166,193,114,117,173,239, 82,191,105,135,224,132,108, + 11, 14, 29, 58, 8,157, 58,253, 75,179, 57, 95, 15, 17, 93,115,224,183,229,239,188,251,241,108,151, 14,237,219,194,221, 69, 14, +161, 80,128, 27,215, 46, 97,193,156,207, 47, 65,111,238, 86, 81,253, 89,156,223, 58,117,196, 53, 66,170, 76, 12,169, 30,137, 27, +151,207,225,113,204,221,123,183,174, 93,170, 91,163, 94, 11,120, 7,132, 78, 36,117,234, 44,160,247,239, 91, 42,210, 49, 27,141, +137,111,189, 57, 10, 37, 71, 17,182,108, 20,225, 73,158,191, 0, 0,232,181,153,150, 95, 23, 77,138, 45, 26, 69,200, 91,204,137, +101,233,170,243,178,118,156,190,112,101,106,255,222, 61,184,108,141,185, 32, 98,165, 54, 23,190, 76,200, 46,122,175, 49, 33, 60, + 64,137,232,123, 55,120,163, 58,123,103, 37,175, 75,227, 91, 67,186,223, 47, 42,187, 60, 79, 65, 0, 99,101,175,111, 42,114, 25, +187,240,187, 31,156,110, 61,201,199,237,120, 77, 65,147,160, 72, 80, 96,172, 68, 92,177,217, 42, 24,157, 94, 65, 52,136, 8,230, +189,253,230,112,100,107, 44,224,121, 64, 40,224, 10, 95, 98, 36,105, 9,146,181,122,100,231,101,225, 73, 66, 34, 84,233,143,193, +113, 28,188, 2,106,194,209,112,163,157, 74,252,245,102, 90,111,112,239,118,194, 93, 23,211, 32,151, 10, 97,210,102,224,208,214, + 69, 89,166,124,205, 92,131, 62,127,151, 33, 39, 54,213,209,188,115,132,100,105,242,141,190, 82,145, 0,219,215,255,132, 33,111, +189, 87,120, 80, 10,254,124, 58,227,107,128, 35,200,205,211,130, 16, 82,217,168,232,181, 10,254,127, 17, 94,134, 70,229, 13,150, + 92,238,121,124,239,239,171, 60, 46, 62,225,112, 53, 58, 15,131,219, 6,193,106,204,195,210,111, 38,167,107, 52,153,157,180, 89, +177,113,149,250, 37,142,235, 62,236,237,169,247,194,106,214, 49,157,186,155, 31,175,210, 89,203,236,199,208,114,240, 23,247,174, +255,241, 99, 47,181, 53,110,130, 50,160,174,157,183,217, 22,234, 51,163,103,151,209, 68, 40,153,189,116,123,113,243,224,103, 11, + 54, 22,188,183,219, 97,167, 60, 40, 15,124,240,229, 47,176,241,118,240,118, 59,120, 59,133,213, 78,229, 21, 37,215, 39,160,202, +174,188,135,219,106,189, 62,231,207,205,130,110,110,110,240,244,244,132,167,167, 39,138, 12,209, 95,109, 22,116,113,113,129, 82, +169,196,185,115,231, 32,147,201,160, 80, 40, 42,165, 91,194, 92, 77,104,218,161,255, 79,157,250,189,131, 99,187, 86,210,107,103, +247,143,211,103, 68,175,113, 56, 18,111,183, 19,171,213,138,222,221, 58, 36, 70,221,123,116,120,198,212,241, 61, 90,245, 25, 39, +109, 25, 17, 8,163,217,142,148,132,199, 56,189,103,157,177,102, 53,255, 35,157,219, 54, 79,180, 90,173,176,219,237, 21,222,192, +141,102, 75,182, 64, 36, 83, 12, 31,254,186,232,218,213,171, 59,149, 62, 53,183,219, 9,119,139, 80,190, 62, 33,100, 80,253,250, +181, 97,177,242,208,235, 53,121,149,205,179, 86,171,125,178,118,237,218,106,111,190,249,166,188, 78,157, 58,162,199,143, 31,227, +251,239,191,207,209,106,181, 79, 28,213, 56,122, 54,122,137,144,228,197, 74,120,203,136, 80,103,109,215,164, 54, 45, 49,188, 79, + 27,252,254,199,121,156, 62,119, 9,137,249,202,155,249, 54,225,158,228,196, 84, 83, 93, 15,205,206,126, 45,171, 8,182,175,207, +219,233,211,113,250, 80, 74,165, 71,179, 78,207,210, 57,126,243, 6,180, 6, 43, 92,228, 5,243, 53, 21, 69,178, 4,132, 56,236, +132, 8,240,228,220,165, 27,145, 77,194,235, 32,234,137, 26,153, 42, 19, 12, 38, 27,120,158,130, 7,133,167,179, 4, 78, 98, 14, + 73, 9, 79,192, 83, 75,124, 37,111, 17, 89,237,219,181, 23, 2, 4,132, 80,161, 72, 40, 4, 69,193,188,136, 50,153, 44,223,199, +199,199,161, 8,150,197,102,195,160, 30,205,209,162,105,125,244, 31,183, 8, 0,112, 98,195, 52,184, 43, 69,248,125,211, 26, 36, +157, 89,188, 41,172,213,123, 71,239,222,185,247,218,189,168,139,175,247,108, 44,107,232, 39, 76, 21,151,165,151,159,159,191,147, + 16, 34, 17,139,197, 61,218,181,107,231,177,115,231, 78,149,151,151, 23, 47, 17,139,179,250,245,237,195,139,196,226,220,162,109, + 47, 92,184, 32, 26, 55,110,156,115, 94, 94, 94, 82, 70, 70,198, 37, 74,169,181,252, 7,192, 90, 93,192,225, 55, 16,226,164,148, +201, 19, 91,118, 25, 30,208,180, 69,115,215, 1,131,134, 64, 42,145,226,216,209,195, 88,182,120,193,182,252,180, 7,111, 87,230, + 72,190,140, 81,132,106,181,171, 46,246,254,173,188,248, 76,179,187,200, 45, 28, 34,169,243, 56,226, 26,176, 84, 32, 85,206,242, +110, 48,192,101,199,190,131,184,115,247, 46, 60,100, 86,196, 61,142,213,223,189, 25,245,179,158,136,102,211,172,251,122, 71,211, + 41,207,177,191,214,114, 84, 15,119,147,197,142,179, 39,255, 48,242, 54,190,199,165, 51, 7, 31, 7,213,108,234, 20,217,180,179, +123,246,222, 53,131, 0,252, 94,145, 78,202,131, 63, 71,108, 67, 34,154,197,159, 56,121,220,213, 55,180,174,128,128,192, 98, 50, + 34, 43,238,154, 77,159,241, 80,163, 78,185,227,208,168,218,156,100,124, 57,125,214,183, 19,154, 54,105,162,160,112,122, 38, 98, + 85,100,172,178, 53,102,120, 57, 75, 96,208,100, 33,246,218, 97,163, 62, 75, 80,238,124,101, 54,179, 78,158,157,153, 81,220,148, +150,159, 17,221,162,188,237,179, 51, 51, 36, 54,179, 78, 94,241,173, 78, 0, 23,133, 4,119,226,159, 22,119,104,151,138, 10,250, + 94, 73, 68,130,226,126, 88, 69,117, 65, 5,116, 16, 59,185,225,105,142, 17, 4, 20,188,221, 6,155,213, 12,173, 70,131,167,169, +233,200, 72,207,128, 86,171,130, 92,233,142,200,134,205,224,172,112,194,173,211,219, 64, 41,117,104, 94, 66, 43, 17, 69, 52,109, +209, 86,122, 55,161,160,175,149,147,136, 98,255,111, 11,114,242, 53,153,109,181,169, 49,177,149,173,139,109,118,251,241,219,247, + 99,235, 6,249, 87, 37, 55, 31,171,177,105,245,143, 48, 23, 70, 50,173, 86, 59,238, 38,233,144,150,171, 71, 82,220, 3,202,219, +237,199,241,138, 83,166,193, 18, 75, 68, 50, 23,143, 0,124, 61, 98, 36,126,254,249, 23,196, 39, 63,197,178,175, 39,165,107,180, + 89, 29,181,169,177, 49, 14, 62, 5,118, 41,154, 43, 67,151,254,112,225,219, 63,199,167,236,139,202,229, 12,102, 90,110, 7, 30, + 39,239, 80,180,125,251,251, 35, 6,109,174,196,110,210, 11,247,111,122,251,183,210, 52, 11, 28, 51,204,115,167, 12,131, 82, 38, + 4, 33, 4, 69,205,130,203,191, 30, 11,185,180,160,237,216, 96,178, 97,228,164, 31,176,233,135,201,160, 0, 70, 12, 57,175, 47, + 43,157, 37,154,240,130, 18, 19, 50,159,118,233, 59,229,132,209, 34, 53,245, 25,248,230,245, 38, 77,154,168,100, 50, 25,100, 50, + 25, 92, 92, 92,224,238,238, 14, 55, 55,183, 10,243, 94,230, 36,162, 37, 70, 11,114, 28, 7,142,227,160, 80, 40,160, 84, 42,161, + 80, 40,202,213, 44,211, 92,181,239,183,188,115,255,119,113,108,215, 42,122,237,236,254,241,250,140,232,213,142,158,163,194,102, +157, 91,131, 6, 13,170, 55,110,220, 56,241,172,169,227,142,252,113,244,116,204,246, 3,171,250,230,229,169,130, 41,165,112,115, +117, 77, 30,214,183,213,254,142,173,155, 38,158, 56,113,130,255,237,183,223, 76,132,144, 59, 21,165, 51, 59, 51,115,195,137,227, + 39,191,106,219,190, 3,214,172,255,173,253,189,251, 15,218, 63,126, 28,139,224,208, 48, 84,173, 22, 14, 61,113,199,201, 51,231, +144,175,202,220,224, 72, 58,159,139, 98,145,188,188,188,139,195,134, 13,235,118,254,252,121,110,216,176, 97,250,236,236,236, 11, + 69,207, 77,101, 69,175, 74,106, 94,252,101, 64, 22,128, 13, 85, 58,140,222,246,212,162,154, 8, 96, 65, 72,104, 8, 78,159,187, +132, 75,231,175,252,146, 45, 15,153,253,246,200,209, 99,171,244, 19,188,219,175,101, 21,129,143,187, 28, 91, 86,125, 47,216,119, + 41,225,135,132, 28,251, 26, 0, 95, 59,114,142,138,111, 24, 90, 11, 90,215,246,128,213, 78,193,211,130,138,214,217, 73, 84,106, +133, 91,154,166,208, 44,125,123,252,184,113,143, 35,235, 55,252,120,228,232,241,226,134, 97,193,184,250, 72, 5, 16, 2, 15, 63, + 5,210,210,210,112,118,199, 42, 91,222,211,135,191, 8, 4,252,156,202,148,165,220,132,168, 26, 37,182, 27,155,157,157,141,211, +167, 79,163,200, 88,121,123,123,151,106,176,158,215,204,201, 72,189,240,245,119, 43, 91,143,121, 99, 32,250,116,168,139, 51,215, + 30,195, 92, 56,223, 82,209,144,240, 39,151, 86, 72, 38, 14, 11, 51, 79, 24, 84, 83, 99,176, 74, 18,190,140, 87,159, 45, 57,202, +245,121, 77, 74,169,153, 16,178, 47, 58, 58,186, 77,131, 6, 13,170, 28, 60,120, 48,247,222,149, 35, 31,149, 76,199,148, 41, 83, +148, 63,255,252,179,156, 82,122,193,100, 50,197, 57,148,119, 14, 91,110, 92,191,238,105,177,242, 56,119,229, 86,237,206,173, 27, +130,167,192,181,107,215,176,230,215, 53,198, 59,183,111, 46,210,101,248,205, 41,107,128, 72, 89,199,211,254, 23, 70, 17, 22,105, + 82,122,218,166,244,173,245,203,133,115,103,102, 72, 3,154,160, 86,175,207,251, 61,189,181,175,159, 95,157,238,240, 10,107,133, +212,219,251,112,225,200,230,131,188,205, 54,205,137,231, 18,117, 89, 15,117,142, 94,239, 69, 72,101,242, 15,235, 52,110,143,164, +196, 4,196,199,222,221, 96,200,137, 77, 85,250,213,218,144,154,146, 56,190, 90,221,214, 56,127,228,247,143,202, 50, 88, 21,149, +249, 96,111,217,170,131, 7,246, 13, 79, 73, 89,225,167, 51, 24,165,148, 82,163, 84, 34, 76, 87,114,218,173,142,166,147,210,251, + 22,133, 71,213, 65, 67, 70,142,255, 99,217,178,197, 34, 95, 55, 57,210,243,140,208, 24, 44,208,234, 45,224, 8, 65,141, 0, 5, +244,218, 92,156,217,241,157,213,156,159, 55,140,210, 71,150,178, 52, 11,214, 19,164, 31, 76,121,239, 20, 36,174,193, 1,213, 58, +127, 94,110,116, 78,155,122,187,239,148,247,246, 71, 80, 74, 59, 43,125,107,105,243, 51, 30,126, 81, 86,222, 9, 41,184,190, 95, +239, 24, 12,139,173, 96,254, 48, 27, 15,216,121,190, 48,170, 7,208,226,118,123, 82, 65,222, 9,191,245,143, 11, 72,205, 80,193, + 96,182,194,100,182,193, 98,181,131, 19, 8,224,230,238,134,240,170,141,224,234,230,130,140,244, 84, 92, 58,177, 15, 49,183,207, + 92, 32, 20,179,245,153, 49, 39, 28, 57, 71, 98,153, 91,132,127,128, 31,151,166, 49, 67, 38, 17,224,230,153,131, 22,171,217,180, +200, 17,115, 85,154,166, 42, 39,247,135,143,167,126, 50, 98,221,218,245,126,245,170,185, 32, 37,219,128,148, 44, 35,180, 70,107, +161, 1,227, 97,202,207,198,237,147,235,211,237, 70,237, 15,255, 90,131,197,219,236,230,232, 71,113,152, 54,251, 59,196, 37, 36, + 98,217,252, 79, 50,242, 43, 97,174, 74, 99,237,132,170,191, 87,110,143,194, 41, 73,230, 36,148,255,188,253,124,179, 32,229,193, + 83,138,253, 87,210,139,155, 5,249,194, 30,149, 81,143, 85,149,106,194,187, 29,173,221,108, 48,100,184, 62,124,180, 40, 15, 0, + 4, 2, 65,241,171,168,175,148,209,104, 52,191, 72,179,224,243, 29,218,121,158,135,139,139, 11,100, 50, 89,165,155, 30, 21,190, + 17,195,155,118,232,255, 83,231, 1, 99,112,124,247,106,122,237,204,190,247,244,153,209,171, 42,221, 7, 33, 47,239, 30, 33, 36, +118,209,162, 69, 13,215,172, 89, 83,109,234,212,169,113, 27,127,250,106, 25, 0,228,228,228, 0, 0,162,162,162,232,123,239,189, +103, 50, 26,141, 79,242,242,242,110, 80, 74, 43,108, 58, 48,100,201,231,173, 89,190, 32, 50,249,105,218,192,176,200,102,240,174, +214, 12,126, 53,154, 35, 79,107,193,213, 71,169,136,123,112, 2, 15,206,237, 56,168, 87,218,190,170,108,154, 27, 52,104, 16,204, +113, 92,213,252,252,124,191, 58,117,234, 52, 80, 40, 20, 81, 13, 26, 52,104, 36, 20, 10, 83,174, 95,191,158, 80, 25,173,132,211, +235, 76, 85, 58,140, 94,154,168,117,238, 24,151,174,111,148,168,117,142,210, 75, 93, 39,103,158, 88, 98,242,237,182,232, 7,106, +201,190,183,125,189,102,231,150, 85,223, 11, 70,142,157, 98,191,171,118,159, 40,148, 73,142,205,127,171, 94, 37,154,159,184,180, + 9,111,246,255,207, 52, 13,133,145,171,194,247, 14,133,227, 85,170, 91,106, 0,159,201, 2,234,254,116,119,226,184,175,235, 55, +109, 61,170, 93,207, 97,156, 77,172,196,145,221, 43,232,147,219, 39,183, 11,169,125,134,222,129,217,251, 43,108,246, 49,155, 43, + 52, 87,165, 70, 94,146, 21, 29,182,255,246,235, 91, 59,119,239,154, 63,160, 95,127,207,229, 95, 14,197,119, 43,247, 64, 33,147, +130,242, 60,134,117, 10, 25,252,224,183,238,125,131,125,157, 2,119,158, 74, 57,251,193,226,187,159,233,245,150,152,138, 70,185, + 22, 26,230,115,206,206,206, 89,109,218,180,105, 33,149, 74, 73,118,118,182,208,199,199,199,230,234,234,106, 78, 73, 73,209,155, + 76,166,157,148, 82, 93,101,242,105,177,242,136,207, 48, 98,239,174,157,184,117,229, 4, 30, 60,136,214, 62,184,255,224, 71, 34, +164,139,243,211, 99,114, 95,228,216,241,165,142, 34,164,149, 30, 69,168, 19,200,230, 69, 29,248,174, 67,120,167,143, 90,122, 86, +111, 13,247,208,130, 49, 58,234,148,187, 72,190,182,125,175, 54, 85, 60,132,210,187,214, 23, 61,199, 1, 65,213,194,169, 64,130, +139,167,255, 0,229,249, 95, 0,128,242,252, 47, 81,231, 15,142,111,222,235, 93,120,248, 84,105, 80, 52,118,190,178,218, 98, 33, +167, 59,180,115,221,238,248,248,120, 60,124,248, 16,143, 30, 61, 66,110,110, 46,182,108,137,175,212,249,209,229,198, 31, 83,122, +134,117,127,109,232,235,251, 7, 15,127,195,169, 90,120, 61, 46, 34,200, 29,158, 74, 33,162, 31, 37, 32,230,250,109, 62,250,234, + 65,163, 69,147, 57, 64,159, 27, 95,166,225, 83,120,215,241, 37, 28,157, 86,180,182, 96,203,150,173, 35, 62,153, 59,191,133,167, +183, 79,169,245,120, 78, 86,166,228,211, 15,246, 69, 92,186,124,209,161,181, 8,121,187, 61,103,236, 91,195,120, 65,193, 66,158, + 40,142, 75,147,130,147, 93,240, 16, 85,240, 57,229,109, 21, 70,236, 71, 15,108, 11, 27,207, 67,103,176, 64,163, 51, 65,173, 53, + 34, 45, 51, 7,183,110,223,198,153,253,251,240, 56,250,214, 19,171,217,124,148,227,200, 14,125,122,244,153,202,181, 44, 9,171, +121,122,120,224, 73,110, 62,156, 36, 66, 36,196, 92, 55,233, 52,234,205, 47, 90,142,244,217, 49,105, 10,223,136,110,195,134, 13, + 63,220,169,123, 63,215,166,173,186,200,189, 92,220, 32, 22, 82,196,198,167,226,198,133,195,186,184, 91,103, 53, 86,115,126,143, +151,177, 74,203,255,172,193,210,104,179, 58,190,243,246,184, 35,156, 80, 32, 5,229,141,122,125, 94,143,191, 98,174,254, 46, 40, +181,167,188, 53, 98,224, 51,207, 2, 54,158,202, 70, 12, 57, 98, 40,249,108, 96,181, 83,249,136, 33, 23,244, 5, 21, 71,217, 29, +246,138,155,240,126, 63,150,146,152,152,115, 45, 55,215,116,234,175,142,236, 43,185,182, 96, 57,163, 5,117,181,106,213, 42, 54, + 85, 2,129, 0,118,187,221,225, 10, 72, 44,149,141,233,212,239, 29,114,124,207,106,122,245,244,158, 9,250,204,152,149, 47,126, + 76,169, 5,192, 21, 66,200,221, 25, 51,102, 52,245,245,245,245,157, 57,115,166,147, 70,163, 17, 45, 95,190,220,152,157,157,157, +174,209,104, 46, 81, 74, 13,142,107,222,176, 2, 24,164,244,173,217,145,238, 92,221,213,205, 43,176,155,171,119, 80,117, 85,214, +211, 39,234,172,212,163, 0,142, 23, 78,240, 88, 41, 26, 53,106, 20,198,113,220, 48, 0,145, 10,133,162,134, 82,169,148, 82, 74, +107, 17, 66,238,241, 60,127,187, 78,157, 58, 7, 0, 84,234,252, 37,156, 94,103,106, 55,225,215,223,114,245,188,216,204,137,127, + 75, 56,189,206, 4, 0, 25, 71,167,234, 1,236,245,237, 56,109,208,190, 75, 9,203,238,229,185,126,148,121,106,222,190,202,166, + 89,149,124,179,198,203, 42,255,134,212,123, 41, 0,222, 82,248, 70,124,127, 39,234,210, 44, 66, 33,178,195,246,141, 62, 35,246, +250,203,208, 23,137, 68,198,192,192,192, 82, 71, 11, 74,165, 82, 99,249,231,252,180, 13,192, 26, 66, 58,172,223,181,109,253, 91, +123,246,237,157,223,174,243, 0, 79,167,160, 32, 84,245, 33, 88, 63,173,241, 71, 39,162,178,174,246,251,228,236,207,113,169,198, +219,148,210, 74,245,119,209,106,181, 49,132,144,188,252,252,252,254,148,210,100, 66, 72,112, 94, 94,222, 77,171,213,122,167,210, + 70,128,199,235, 45, 91, 54,219, 66, 8, 17, 82, 27,191,240,146, 72,240,155, 49,237, 65,202,139, 24,138,146,212,171,234,130, 73, + 51,151, 54,174, 94,163,102,227,162,181, 8,235, 86,113,198,184,207,190,111, 92,165, 90,120,227,255,172, 79, 88,254, 40, 66,154, +122,195, 64,124,235,117,141, 62,186,232, 75,207,199, 23, 38,200, 60,130,148,186,236,132,220,188,132,235,139,244,153,190,139, 94, +100, 98,201,146,196, 63,186,183,120,205,162,207,166,166, 61,125,178, 70,151, 25,115, 23, 0,116,153, 49,119,229,190, 53,191,204, + 78, 79,153,154,147, 25,183,232, 69,143,133, 78,167, 75,221,188,121,179, 91,235,214,173, 57, 95, 95, 95,100,101,101,225,212,169, + 83, 60,207,243, 79, 43,171,149,159, 19,119,138,144,234, 30, 27, 86,254,180, 80,172,112,238,101,179,217, 2, 40, 5,132, 66, 97, +154, 89,175, 57,172,229, 20,159,208,220,248, 10,202, 37, 79, 0,112, 69,107, 11,242, 60, 79, 22, 46, 91,159, 32,114,114, 46,181, + 73,213,106,212,202,121,158,119,120, 45,194,188,196,235,213, 95,214,245, 77, 40,157,221,160, 73,139,207,173, 86,139, 17, 5,253, +193,140, 0,140,148, 34,135,227,200, 25, 1,111, 61,162,254, 11, 15, 81,132,192,133, 18, 33,156,101, 66, 16, 16,228,171,115,105, +101,250, 92,149,122,190, 51,162,239, 17,210, 33,244,144,121,219,155, 39,143, 29, 28, 98,183,219,171, 22,150,156,120,147, 65,183, + 61, 63,205,125, 3,165,215,108,248, 23, 32, 44, 59, 36, 26, 27, 3, 32,244,191, 61, 3, 57, 79,174, 54,121,153,122,105, 25,185, +235,187, 15,152, 74,227, 19, 50,175, 38,165,155, 54,148, 92,254,230,175,106, 38, 39,103,157, 42,108, 22, 52,253, 57, 34,241, 98, +163, 5,139,159,190,141,134,111,151,204, 24, 14,163, 65,183, 81,159, 25,179,254,229,152, 87,106, 0,112,134, 16,226, 58, 97,194, +132, 70, 74,165, 82,148,157,157,125,133, 82,170,126, 81,205,252,140,152, 83, 0, 78, 1,152,246, 50,210, 24, 21, 21, 21,215,176, + 97,195, 77, 28,199, 85,165,148,250, 82, 74, 93, 11, 13,108,182, 80, 40,124,122,255,254,253,167, 47,148,119,147,243,161,124,179, + 32,220, 70,221, 15,255,201,116,120,250, 28, 75,204,181,175, 22, 40,156,254,107,250, 16,232, 50,162,239, 1,120,237,101,235,150, + 55,207,149,227,229,232, 63, 70,235,244, 31,235,222,226, 36,174,223,116,142, 48,234,187,125,252,244,235,115,119,178,174, 80, 74, +181,127,161,140,102, 73, 36, 18, 3, 33, 36, 88, 44, 22, 27,204,102,243,237, 23, 58,126, 5,230,222,251,101, 30, 59, 30,228,122, +227,198, 77, 42,181,125,185,121,205,184,163, 7, 48,141,212,169, 51, 83,254,248,154,187, 62,219, 43,135,210,232,151,114,163,202, + 79,127,248, 53, 10,155,185,159,137, 72,100,196,124, 3,224,155,191,162,125,237,218,181,253,139, 22, 45, 82, 47, 91,182, 44,196, +110,183,203,205,102,179,222, 96, 48,196,167,164,164, 92,124,177,115,254,216, 12, 96, 98,225,235, 5,162, 44, 15,211,149,190, 53, +151,182,106,217,106, 98,193,131, 57, 93, 26,127,102,233,164,242,246, 81,250,214, 52,148,220,190,188,181, 8, 95, 38,249,153, 49, +191, 0,248,229,239,139, 80,240, 89,175, 15,238, 15, 20, 78,168,205,219,108, 89, 47, 69,182,224,154,255, 21, 47,176,120,249, 43, + 5, 45, 92, 30,225,239,120, 1,232,194, 52,153, 38,211,100,154,165,108,203,177,227,201, 52,255, 73, 77, 39,255,218,193, 78,254, +181,131, 29,221,191,180,237,217,241,164, 96,175,178, 95, 66, 48, 24, 12,198,255,255,131, 29,207,142, 2,227,159,196,144,122, 63, +249,239,220,158,193, 32, 40, 88,149,186,180, 10,208,225,230, 15, 66, 72,151, 23,168, 96,143, 51, 77,166,201, 52,153, 38,211,100, +154, 76,243,223,165, 89,145,118,101,252,199,127,251,147, 36,107, 34,100,154, 76,147,105, 50, 77,166,201, 52,153, 38,107, 34,124, +137, 47, 14, 12, 6,131,193, 96, 48, 24,140,151, 10, 51, 88, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96, 48, +131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6,227,197, 33,148, 82, 20, 46, 49, 69, 0, 60,243,158,193, + 96, 48, 24, 12, 6,227,255,197,144,188, 98, 94,132, 43,153, 49,118,122, 25, 12, 6,131,193, 96,252,147, 38,235, 85,201, 75,177, +193,162,148, 18,102,178, 24, 12, 6,131,193, 96,252, 83,188, 74, 94,132,123, 62, 99,236,244, 50, 24, 12, 6,131,193,248, 39, 77, +214, 43,103,176, 24, 12, 6,131,193, 96, 48, 24,127, 29, 82, 56,229, 61,131,193, 96, 48, 24, 12, 6,227, 37,193, 34, 88, 12, 6, +131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96,252,139, 13, 22, 33,164, 11,211,100,154, 76,147,105, 50, 77,166,201, 52, +153, 38, 51, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, 6, +139,193, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12,198, 63, 4, 1, 80,234, 72, 0, 74,233,113,135, 69, 94, 96, + 52, 65, 69,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,245, 52, 43,210,174,140,255,248,175,134, 82,250,183,189, 0,116, + 97,154, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,183,189, 88, 19, 33,131,193, 96, 48, 24, 12,198, 75,134, 25, 44, 6,131, +193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6, +131,241,226,144,194,209, 0, 32,132, 80, 74, 41, 97,135,132,193, 96, 48, 24, 12,198, 63, 98, 74, 94, 33, 47,194,149,204, 16, 33, +132,178,211,203, 96, 48, 24, 12, 6,227,159, 50, 87,175,138, 23, 97, 77,132, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6, +131,193, 96,252,119,195,250, 96, 49, 24, 12, 6,131,193,248,239, 48, 37,175,144, 23, 41, 54, 88, 12, 6,131,193, 96, 48, 24,140, +151, 3,107, 34,100, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227, 95,108,176, 8, 33, 93,152, 38,211,100,154, + 76,147,105, 50, 77,166,201, 52,153,193, 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, + 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,254, 33, 8,128, 82, 71, 2, 80, + 74,143, 59, 44,242, 2,163, 9, 42,210,103,154, 76,147,105, 50, 77,166,201, 52,153,230,171,167, 89,145,118,101,252,199,127, 53, +148,210,191,237, 5,160, 11,211,100,154, 76,147,105, 50, 77,166,201, 52,153,230,191,237,197,154, 8, 25, 12, 6,131,193, 96, 48, + 94, 50,204, 96, 49, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, + 12, 6,131,193, 96, 48, 24,140, 23,135, 80, 74, 65, 8,161,133,255,119,160,148,158, 97,135,133,193, 96, 48, 24, 12,198,255,171, + 33,121,197,188,136,176,232, 13,165,148, 20,102,142,176,211,204, 96, 48, 24, 12, 6,227,255,155, 87,201,139,112,207, 57,199, 14, +236,244, 50, 24, 12, 6,131,193,248, 39,120,149,188,200, 51, 17, 44,118,106, 25, 12, 6,131,193, 96,252, 83,188, 74, 94,132,117, +114,103, 48, 24, 12, 6,131,193,120,201,144,194, 41,239, 25, 12, 6,131,193, 96, 48, 24, 47, 9, 22,193, 98, 48, 24, 12, 6,131, +193, 96, 6,139,193, 96, 48, 24, 12, 6,227, 95,108,176, 8, 33, 93,152, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,153,193, + 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131, +193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,254, 33, 8,128, 82, 71, 2, 80, 74,143, 59, 44,242, 2,163, 9, 42,210, +103,154, 76,147,105, 50, 77,166,201, 52,153,230,171,167, 89,145,118,101,252,199,127, 53,148,210,191,237, 5,160, 11,211,100,154, + 76,147,105, 50, 77,166,201, 52,153,230,191,237,197,154, 8, 25, 12, 6,131,193, 96, 48, 94, 50,204, 96, 49, 24, 12, 6,131,193, + 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24,140, 23,135, + 20,142, 6, 0, 33,132, 82, 74, 9, 59, 36, 12, 6,131,193, 96, 48,254, 17, 83,242, 10,121, 17,174,100,134, 8, 33,148,157, 94, + 6,131,193, 96, 48, 24,255,148,185,122, 85,188, 8,107, 34,100, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227, +191, 27,214, 7,139,193, 96, 48, 24, 12,198,127,135, 41,121,213,250, 96, 1, 0,235,131,197, 96, 48, 24, 12, 6,227,159,228, 85, +242, 34,197, 17, 44, 6,131,193, 96, 48, 24, 12,198,203,129,245,193, 98, 48, 24, 12, 6,131,193,248, 95, 50, 88,132,144, 46, 76, +147,105, 50, 77,166,201, 52,153, 38,211,100,154,204, 96, 49, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, + 6,139,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24,255, 16, 4, 64, +169, 35, 1, 40,165,199, 29, 22,121,129,209, 4, 21,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,213,211,172, 72,187, 50, +254,227,191, 26, 74,233,223,246, 2,208,133,105, 50, 77,166,201, 52,153, 38,211,100,154, 76,243,223,246, 98, 77,132, 12, 6,131, +193, 96, 48, 24, 47, 25, 97,105, 31,138,154,207,205,176,217,108, 62, 0, 32, 20, 10, 51,173, 87,191,240, 47, 79, 68, 4,116,182, + 1,171, 11, 5,199, 88, 41, 61, 86,138,230, 49,155,205,230, 94,168,153,103,189,250, 69,247,114, 53,155,125,115,228,153,237,175, +204,232, 90, 74,124, 81, 32,106,246, 77,234,115,105, 13,168, 68,248,206,254,255,145,206,255, 21,205,127, 51,226, 22,115, 51,172, +214,130,114, 36, 18, 9, 51, 45, 87,202, 47, 71,226,230,223,164, 62,179,253,229, 25,190,229,105,202,101,210,156,234,129,222, 63, +148,167, 25,151,154, 61, 89,167, 55,122,150,167, 89,217,107, 51,216,223,191,179,189,240,218, 20, 0, 99,146, 83, 83,143,253, 55, +149, 37, 66, 72, 19, 0, 95, 0,112, 41,241,241,109, 74,233,199,172, 84, 50, 24,140, 87,206, 96,217,108, 54,159, 27,187,103, 65, +103, 2, 58,191,241,141, 79,216,128,149, 91,254,180,141, 49, 79,162,186,183,181,158,192,170,113,247, 22, 90, 92, 82, 83, 83, 73, + 97,133,185, 26, 64, 72, 41,154,238, 55,118,207,130,222, 12,180, 27, 62,219, 61, 4,112,201, 18,139,167,200, 20,138,142, 6,131, +161, 46, 0,200,100,178,123, 6,157,238,148,183,197,242,253,243,219,151,149,129,146,105,237, 52,234, 27,159, 90, 3, 86,126,100, +231,121,201,211,107, 43,218, 25,179, 99,133, 34,155,105,249,231,192,161, 89,128,221,145, 3,242,204,239, 14,153,238, 41, 2, 58, + 73,156,156, 26,184,185,187,183,229, 41,173,205,243, 60,177,219,108,247, 53,106,245, 57,222,102,187,101, 51,235, 60,111,236,155, +207,151,151,206,231,243, 50, 4, 16,238, 6, 6, 43,148,202,142, 2,145,168, 21, 0,216,173,214,139,186,252,252, 83, 3,129, 29, +142,228,221,209,227,243,162,219,255,219,176, 90,109, 62, 79,142,204,130,201, 10, 52,122,109,190, 79,253,215, 55,108, 1, 0,115, +230, 45,223,252,216,125,205, 1, 64, 81,189,207, 21,169, 95,163, 12, 0, 16, 38,166,249,196, 28,152, 1,147, 21,168,221,103,182, + 79, 69,154,163,103,110,243,252,116,236, 32, 41, 0, 28,221,249, 83,205,147,187,126,233, 9, 0,157, 6,189,119,168,219,107, 31, +196, 0,192,194, 85,187, 60,127,159, 63,180, 92, 77,199,174, 77,181, 88, 29,123,160,134, 89,147,230, 22,172, 16,250,197,198,198, +114, 0, 16, 16, 16,224,208,181, 25, 4,184,166, 1,239,115, 2, 65,219,234, 53,106, 52, 2, 64,227, 30, 63,142,178,219,108,231, +253,129,229, 47,185, 44,125, 68, 41,237,251,156,233, 98, 5,146,193, 96,188,154, 6, 11, 0,116, 38,224,204, 35,160,125,139,250, + 24,251,122, 47,101,201,239,118,172,156, 29, 18,123,109,111,173, 95, 55,124,207,213,175, 95, 31, 79,158, 60,113,232,199,244,102, +224,116, 44, 0,213, 3,231, 60,133,226,241,226,239,190,115,233,218,181,171, 48, 32, 32, 0,132, 16,164,167,167,183, 56,126,252, +120,147, 73,147, 38,141,135,234, 65,158,222, 12,237,233,216,138,117,139,210, 90,183,102, 21,124,241,193, 80, 87, 0,248,252,141, +229, 77,174, 69,103,120, 60,126,252,184,243,103,159,125,150, 35, 56,117,234, 23, 47, 96, 93, 6,144,236, 72, 58, 55,238,191,226, +228,154,246, 91,216,200, 15, 62,216, 89,163, 70, 13,101,104,104, 40,113,118,118,134, 64, 32, 64, 94, 94, 94,200,221,187,119,123, + 94,189,122, 85,119,252,204,106,201,245,171,253,226, 50,157,154, 27, 29,202,187, 33,213,233,168,179,243,189, 81, 3, 7, 6, 13, + 29, 58,212,169,122,245,234, 0,128,199,143, 31,135,239,216,177, 99,248,206,157, 59,103,194,144,106,211,155, 97,172, 40,239,197, +154, 0,156,128, 86,110, 62, 62, 35, 5, 34, 81, 93,155,205, 22, 88, 24, 93,120,106,183, 90,239,169, 50, 51, 55, 63,191, 61,227, +207,152,172,192,131, 52,160, 75,219, 70, 24, 53,168,139, 2, 0, 62, 27, 54,183, 69, 98,252, 35,177,217,108, 70,205,136,218,173, +191,158,255,195, 17,112, 28, 54,237, 58, 94,188,189, 35,154,183, 31, 60,193,172,175, 23, 35,245,206,142, 22,118,245,163,142, 90, +141, 90, 0, 0, 46,174,174,131,118,108,253,237, 84, 64,189,193,151, 31,101, 91, 28,210, 44,239,218, 60,188,245, 71,255,148,187, +167,234,252,124,116,173, 40, 36, 36, 4,119,238,220,169,220,181,169,142,118,230,253,253,239,127,255,201, 39,126,237,218,181,131, + 82,169,132, 80, 40,132,205,102,235,114,254,252,249, 46,179,102,205,122, 15,234,104,157,163,215,166, 3,124, 79, 8,233, 56,122, +236, 71,254,189,250, 15,198,160, 30,173, 89, 65,100, 48, 24,175,174,193, 18, 10,133,153, 93,223,156,231,211,182,121, 36,174,221, +138, 81, 39, 36,165,229, 23,125,151,123,111, 71,205,254,173, 3,235,156, 61,123, 6, 38,147, 9, 23, 47, 94,196,173, 91,183, 16, + 31, 31,143,113,227,198,153,132,192,152, 50, 52,243,218, 13,159,237, 14,117,172, 50, 92, 18, 93,245,248,195,135, 2,163,209,136, +179,103,207, 34, 47, 47, 15, 18,137, 4, 65, 65, 65,232,214,173,155,240,225,195,135, 30,157,187,246,112,109,215, 99,196, 19,184, +134,231, 11,133,194,188, 50, 51, 32, 20,102,118,126,227, 27,159, 58,225, 85,240, 56, 33, 85,253,197,252, 95,243,121,158, 10,227, +226, 19, 45,103,206,156, 65,163, 70,141,112,236,216, 49,207,220,220,220, 47,151, 47, 95,254,133,232,219,159,151, 90,205, 57, 83, +203,209,203,107, 55,124,182,187,103,230,246,208,147,135,247,136,239,221,187, 39, 94,177, 98, 5,114,114,114, 32,145, 72,224,230, +230, 6, 63, 63, 63,212,172, 89,147,124,254,249,231,202, 62,125,238,225,195, 49,131, 67, 45, 97,239, 70,151,149,206,226,188,231, + 39,202,189, 52, 71,171,239,250,227, 15,174, 77,155, 54,207, 60,166, 87,171, 86, 13,221,187,119,119, 26, 57,114,100,245,161,195, + 95,231,219,245, 30,253, 24,202, 80,125,133,154,186,100,153,167,254, 82, 64,151,225,195,247,205,158, 61,219,205,207,207, 15, 10, +133, 2, 0,160, 86,171,131, 18, 18, 18, 90,204,156, 57,243,181, 43,183,183, 10,219,245, 73, 78,133, 34,216, 80,222,241,252,183, + 34, 18, 9, 51,139,162, 70,206, 10, 89, 94,114, 74,134, 14, 0,204,102, 51,204,102, 51, 76, 38, 19, 38,188, 55, 78, 48,230,181, +102, 53, 66,219,126,116, 51,254,105, 70,110,237,227,151, 61,138,246,173, 72, 83,168,143, 87,169,146, 78,140,153,245,201, 39,126, +190,190,255,105,249,219,180,113,163, 32, 55, 55,183,203,172, 89,179,234, 80,121, 7, 85,237, 62,179,221,202,211, 44,239,218, 84, +197,252, 81,245,235, 15,186, 55, 88, 57,255, 0,236,118, 59, 46, 93,186,132,179,103,207,226,135, 31,126,160,135, 14, 29, 82,187, + 40, 20, 21, 92,155,209,206,109,252,211,195,190,253,118, 39,145, 74,165,216,187,119, 47, 30, 62,124, 8,142,227, 80,191,126,125, +140, 26, 53, 10, 93,186,116,241, 27, 59,118, 28,109,215, 99, 88, 28, 92, 35,180,127,165, 44, 17, 66, 56, 0, 31, 77,159,245,173, +255, 27,239,190,143,133, 95,127,206, 12, 22,131,193,120,117, 40, 28, 13, 64, 11, 95,237, 41,165,160, 0, 87,109,192,202,223,183, + 95,231,255,168, 54, 96,229,239, 20,224, 40,192,185, 0, 85, 26, 54,108,104, 85,169, 84,244,234,213,171,116,194,132, 9,186,165, + 75,151,158,250,227,143, 63,118,216, 44,150, 53, 1,254,254,139, 40,192,149,218,163, 30,224, 66, 1, 87,185, 92,158,149,148,148, + 68, 15, 30, 60, 72,191,250,234, 43,186,121,243,102,122,232,208, 33,122,252,248,113,122,232,208, 33,250,251,239,191,211,219,183, +111,211,152,152, 24,170, 80, 40,178, 66, 1,215,114, 52, 5, 20, 16,212, 28,176, 98,234,206,107,214,217, 17, 3, 86, 78,162,128, +192, 29,168,213,176, 97, 67,251,142, 29, 59,232,166, 77,155,232,134, 13, 27,232,237,219,183,105,118,118, 54, 21, 74, 21, 89, 69, +251,149,149, 78, 10,112,129,129,129, 89, 42,149,138, 6, 7, 7, 83,137, 68, 66,125,125,125,105,205,154, 53,105,139, 22, 45,104, +207,158, 61,233,235,175,191, 78,191,252,242, 75,170, 82,169,168,147,147, 83, 70,209,126,101,105, 54, 2,100, 10,133, 34,233,198, +141, 27,180, 44, 12, 6, 3,205,206,206,166, 71,142, 28,161, 10,133, 34,169, 17, 32, 43, 79, 83, 6, 52,174, 87,175, 94, 86,118, +118, 54,181, 88, 44, 52, 41, 41,137,222,189,123,151, 62,124,248,144, 38, 37, 37, 81,131,193, 80,172, 29, 19, 19, 67,195,194,194, +178,100, 64,227, 50, 53,255,205,175,162, 50,241,220, 43,196,215,183,167,159,159,159, 97,231,206,157,244,233,211,167,116,253,250, +245,148, 3,230,254,105,219,114, 52, 37, 64,183, 54,109,218,216, 47, 93,186, 68,111,222,188, 73,167, 77,155, 70,187,119,239, 78, +123,244,232, 65,103,205,154, 69, 83, 82, 82,104, 74, 74, 10,237,217,179,167, 93, 2,116,171,168,124,150,118,109,186, 2, 33,125, +250,244, 49, 88, 44, 22, 26, 23, 23, 71,235,214,173,155, 34, 0, 70, 42,128, 58,237, 1,105, 69,229, 51, 16,112,247,247,247, 79, +187,116,233, 18,221,181,107, 23, 13, 13, 13,205, 18, 0,163, 93,128,106, 46, 64, 53, 1, 48,186, 90,181,106, 89,151, 46, 93,162, + 57, 57, 57, 52, 36, 36, 36, 45, 16,112,127,209,178,132,130, 57,248,214, 78,159,245, 45,141, 78,209,209,233,179,190,165, 0,146, +104,193,151,199, 88,153,100, 47,246,250,247,189,254,228, 69,254,199, 95,194, 18, 70,139, 16, 66, 40, 10,230,198, 42, 21,131, 64, + 48,111,225,194,133, 66,163,209,136, 95,127,253, 85, 59, 98,216,176, 93,110,110,110, 54,145, 72, 4,194, 85, 60, 32, 49, 75, 42, +157,248,221,194,133,110,102,179, 25,215,175, 95, 71,147, 38, 77, 32,149, 74, 33, 22,139, 33, 18,137, 32, 18,137,224,239,239,143, +204,204, 76,212,173, 91, 23,159,126,250,169,235,130,121,243, 38,194,100,250,186, 60, 93,158,167, 66, 0,176,243,188, 68, 12,140, +109,208,180,233,162,207, 63,255,156,115,113,113,129,209,104,132,201,100,194,195,135, 15,225,233,233, 9,185, 76, 46,132, 73, 87, + 97, 90, 57,142,227,148, 74, 37, 78,158, 60,137, 85,171, 86, 33, 62, 62, 30,105,105,105,112,118,118, 70,221,186,117, 81,187,118, +109,180,111,223, 30,113,113,113, 32, 14,116, 26,185, 47, 20,190, 63, 97,204, 24,159, 70,141, 26,149,250,189,209,104,132, 74,165, +130, 90,173, 70, 80, 80, 16, 6, 15, 30,236,243,219,166, 77,239,195,102,251,190,180,237, 61, 1,191,160,240,240,125, 87,175, 94, +245,162,148, 98,211,166, 77,200,207,207,135,217,108, 6,199,113,112,114,114,130,187,187, 59, 58,117,234, 4,111,111,111,132,135, +135, 99,219,182,109, 94, 61,123,246, 60,224,153,153,217, 56, 7, 72,101,143, 23, 21,147,152,145,113,180, 27,224, 53,242,245,215, + 15,221,186,125,187,237,200,145, 35,145,145,145,241,185,104,218, 52,149, 21, 88, 92,209,254, 17,128,171,135,191,255,186,111,191, +253,150, 75, 79, 79,199,148, 41, 83,178, 83, 19, 19,167,185, 2,231, 0,224,196,225,195,109, 55,111,222,188, 96,211,166, 77, 94, + 27, 55,110,228, 26, 53,106,180, 46, 34, 41,169,110, 52,160,174, 76, 58,181,192, 71, 75,150, 44,113, 50, 26,141,232,218,181,107, +156, 83,124,124, 3, 27, 96,112,116,255, 52,224,253, 31, 62,253,212, 79, 42,149, 98,202,148, 41,217,250,196,196, 72, 27,144, 85, + 98,147, 4,239, 39, 79, 14,191,241,198, 27,119,111,223,190,237,181,120,241, 98,191,215, 6, 14,124, 31,192,220, 74, 68,172, 74, +118,104, 15, 31, 61,246, 35,223, 70,205, 90, 98,227,154,229,152, 63,251,179,117, 0, 86, 18, 66, 62, 0,240, 29, 43,121, 12,198, +191, 54,232, 83,161, 23,249,159,107, 34, 44,204, 80,135,242, 54,118,247,244,108, 18, 25, 25,137,179,103,207,162, 94,189,122, 87, +221,220,220,108, 98,169, 20, 34,145, 8,148,231, 43,252, 49,153, 66,209,185, 75,151, 46,194,203,151, 47, 35, 44, 44, 12, 50,153, +172,216, 88, 21,189,196, 98, 49,252,253,253,161,209,104,208,185,115,103,209,178,101,203, 58, 87,100,176, 0, 32, 49,246,174, 50, +235,242,183,175,175, 94,191,174, 90,187,118,237,160, 86,107,192,243, 60,228,114, 57,204,102, 51,132, 66, 97, 65, 83,143,149,106, + 28, 57, 48,118,187,221, 46, 16, 8, 16, 22, 22,134,121,243,230,193,104, 52, 66, 44, 22, 3, 0, 52, 26, 13, 84, 42, 21,238,222, +189,139,132,132, 4, 20, 62,117,151,139,179,171,107,175,161, 67,135, 74, 74,251,206,100, 50, 65,173, 86, 67,173, 86, 67,165, 82, +193,104, 52,162,101,203,150,146, 63, 14, 28,232,133,156,156, 82, 13,150,201,201,233,181,141, 27, 55,250, 72, 36, 18, 24, 12, 6, +104,181, 90, 36, 39, 39, 35, 49, 49,209,152,153,153,105,115,118,118,230, 66, 67, 67, 57,169, 84, 42, 29, 48, 96, 0,209,104, 52, + 32,132,160, 79,159, 62,158, 91, 54,109, 26, 10,224, 7,118, 41, 59,198, 81,192,212,216,108,238,219,188, 89,179,147, 87,175, 93, +107, 52,113,226, 68,220,190,125,251, 91,249,214,173,103,244,192,173,242,246,141, 3,222, 95, 84,194,184,208,196,196,122,150,231, +140, 75,104,129,113,185, 83,100, 92,134, 84,210,184, 20,150,175,166,254,254,254, 56,116,232, 16,146,226,227, 63,171,140,185, 2, + 0, 78, 32,104,211,174, 93, 59,236,221,187, 23, 41,137,137,159, 61,103,174, 10, 30,144,128, 44, 97, 92,220,103,235,214,173, 91, +251,246,219,111, 67, 32, 20,182,129,205, 86,153,159,249, 83,135,246,183,199, 77,196,186, 85,203,214, 1,120,151, 82,202, 3,184, +202, 74, 28,131,241,239,197, 17, 47,242,191, 2, 87,210, 53, 2, 56, 93,222,198, 62, 62, 62,129, 74,165, 18,169,169,169,168, 93, +171, 86,166, 84, 42,133, 68, 36,130,147, 68,226,208,143,233,245,250,122, 1, 1, 1, 80,171,213,240,242,242,130, 88, 44, 46,126, + 73, 36,146,226,247,206,206,206,224, 56, 14, 33, 33, 33,208,235,245,245, 42,212,205,184,235,179,117,217,123, 19, 46,157, 57, 84, +109,224,192, 65,112,119,247, 64,112,112, 16,124,124,124, 32,147,201, 16, 28, 28,140,234,213,171,211,239,191,255, 30,114,159,250, + 14, 85,224, 37, 77,147, 80, 40,132,221,110, 71, 70, 70, 6,162,163,163,113,251,246,109, 92,186,116, 9, 55,111,222,132, 86,171, +133, 3,254, 10,122,131,161,129, 80, 40, 44,213, 92,169, 84,170,226,232,149, 74,165, 66, 86, 86, 22, 18, 18, 18,144,175,211, 53, + 44,199,236, 14,138,140,140, 20, 0,128, 76, 38, 67,195,134, 13,177,114,229, 74,219,254, 61,123,134,213,185,116,201, 35,248,200, + 17,183,213, 43, 86, 12, 27, 60,120,176,253,242,229,203,208,104, 52,120,240,224, 1,188,189,189,133, 18, 39,167,161,236, 50,174, + 28, 55, 0,157,151, 86,219,163, 85,171, 86, 79,212,106, 53,190,251,238, 59, 78,228,236,188,106, 54, 32, 40,119, 71,129,160,117, +187,118,237,176,111,223, 62,164, 38, 38, 78, 75, 44,197,184, 36, 2, 89, 73,113,113,211,214,173, 91,135,110,221,186,129, 8,133, +149,238,136,212,162, 69,139, 72,158,231,113,231,206, 29,184, 1, 87, 42,187,127,245, 26, 53, 26, 41,149, 74, 60,124,248, 16,138, +194,232, 90,105, 40,128,115, 81, 81, 81,144,201,100,168, 93,167, 78,227, 74,254,204,247,132,144,180,183,199, 77,196,174,195, 23, + 0, 0,235, 86, 45,203, 40, 97,174, 24, 12, 6,139, 96, 85,232, 69,254,231, 12,150,131, 25, 7, 0,136, 68, 34, 72,164, 82, 72, + 36,146, 2, 99, 36,149, 86,198,157,194,201,201,169,216, 80,149, 52, 86, 37,223,203,229,114,135,140, 11, 0,228, 61, 58,220,246, +221,119,222,150, 72,165, 82,152,205, 38, 80, 74, 33,149, 58,193,205,205, 13, 97, 97, 97,208,104, 52,104,213,186,189, 41, 89, 37, + 62,224, 89,123,192,237, 23, 57, 80, 54,155, 13, 58,157, 14,121,121,121,200,205,205,133, 70,163,129,193, 96,112,120, 72, 57,207, +243,130,228,228,100,252,246,219,111,200,201,201, 1, 80,208,129,186,200, 84, 21,253,125,242,228, 9, 54,109,218,132,248,248,248, + 74,157,159,182,109,219,226,192,129, 3,130, 14,157, 59,175, 57, 22, 26,154,122, 44, 52, 52,181, 67,231,206,107,246,237,219, 39, + 8, 12, 12, 68, 66, 66, 2,174, 95,191,142,188,188,188,162, 2,204,168, 36,143,129, 60,125,110,238,219,159,127,254, 57, 85, 42, +149,248,110,209,162, 6,115,129, 17,142, 26, 23,215,114,140,139,235, 95, 51, 46,160,148,130,231,121,216,237,246, 23,202, 27, 33, +132,136, 68,162,202, 78,145, 64, 42,161, 95,220,161,253,211, 47,231,225,224,222, 29, 69, 95,197, 50,115,197, 96, 48, 94, 69,132, + 37, 28, 99,133, 55,222,140,140,140,167, 58,157,174, 90,104,104, 40, 82, 82, 82,124, 66, 66, 66, 18, 37, 34, 17,196, 18,137, 67, +125,176,228,114,249,157,212,212,212,214,129,129,129,176,217,108,197,102,234,249, 38,194,162,168,204,205,155, 55, 33,151,203,239, +192, 88,238, 12, 8,176,155,243,170, 52,110,220,184, 56, 18,228,230,230, 6, 55, 55, 87, 72,165, 78,152, 49, 99, 6,191,248,251, +239,151,135,116,154,173,126,107,210,231,244,243,185,107, 94,234, 1,116,244,134, 36,151,203,239, 4, 7, 7,183,116,117,117,197, +174, 93,187,144,144,144,128,188,188, 60,232,245,122,152, 76, 38,232,245,122,152,205,102, 56, 57, 57,161, 78,157, 58,112,113,113, +193,241,227,199,239,192,100, 42,221, 84,230,228,236,186,115,231, 78,203,102,205,154, 21, 71, 80, 58,118,236, 72, 58,118,236,232, + 85, 28, 53,211,235,145,157,157,141,171, 87,175,226,248,241,227, 32,132, 32, 54, 54,214,110, 50, 24,126,103, 69,255,197, 48, 2, + 23, 5,235,214,173, 29, 63,126,252, 59,173, 91,183,134, 29,232, 9, 96,211, 63,101, 92,138,184,116,233,210, 93,187,221,222,186, +102,205,154, 80, 1,205, 1,236,173,148,121,124,244, 40,202,102,179,117,110,208,160, 1,118,109,223,222, 22, 64, 66,105,219,233, +128,182,141, 26, 53,130,193, 96,192,131,251,247,111, 84,194, 92,173,153, 62,235,219,209,111,188,251, 62, 54,174, 89,142,117,171, +150, 37,175, 93,185, 52, 24,128,133,149, 42, 6,131, 81, 25, 47,242, 74, 70,176,212,121,121, 55,162,162,162,208,184,113, 99, 60, +126,252,184, 25,229,121,161, 88, 34,129, 68, 44, 6,231,192, 13,196,160,211,157, 56,113,226,132,173, 97,195,134,200,207,207,135, + 80, 40,124, 38,122, 37,145, 72, 32, 18,137, 32, 20, 10, 33,151,203,177,123,247,110,139, 65,167, 59, 81, 97,116,200,206,219, 57, +142, 43,190,137,169, 84, 42,232,245, 6,204,155, 55, 15, 63,126,255,253,235,118, 96,146, 72,225,109,248, 39, 15,180, 81,175, 63, +121,240,224, 65,107,181,106,213, 48,122,244,104, 76,154, 52, 9,147, 38, 77,194,248,241,227, 49,122,244,104,140, 26, 53, 10, 3, + 7, 14, 68,243,230,205,225,237,237,141,232,232,104,171, 81,175, 63, 89,150,158,212,104,220,249,230,155,111,102, 22, 25, 51,157, + 78, 7,173, 86, 11,181, 90,141,172,172, 44, 92,184,112, 1, 27, 55,110,196,247,223,127,143,221,187,119,195,100, 50,193, 98,177, +224,230,205,155,121, 10,171,117, 59,187,148, 95, 28, 17,176,235,252,249,243,240,240,240, 64, 64, 80, 80,123, 7,140, 11, 26, 52, +104, 0, 53,208,182,204,107,235, 5,140,203, 51,198, 71,171,189,246,228,201, 19,116,232,208, 1,254, 65, 65,223,214, 1,100,149, +217,223,110,179,157, 59,127,254, 60,222,120,227, 13,132, 86,171,246,173, 55,224,253,252, 54,222,128,119,213,234,213,191, 29, 61, +122, 52,142, 30, 61, 10,187,205,118,174, 28, 83,213,132, 16,178,143, 16,114, 6, 64,194,232,177, 31,141,126,174, 67,251, 16, 66, +200,102, 0, 83, 89,137, 98, 48, 24,175, 34,149, 50, 88, 50,187,125,250,212,169, 83,173, 28,199, 97,208,160, 65,206,123,247,237, + 27,124,243,214,173,176,204,204, 76, 55,187,221, 94,161,150,183,201,180,116,234,212,169, 42,179,217,140,136,136, 8,228,230,230, +194,110,183, 67, 40, 20, 66, 40, 20,130, 16, 2,142,227,160, 84, 42, 17, 21, 21,133,181,107,215,106,188, 77,166,165, 21,222, 28, +236,246, 59,155, 54,109,130, 64, 32,160, 78, 78, 78, 32,132, 64, 40, 20, 98,241,226,197,153, 63, 2,187, 0, 64,192,113,102, 0, +224, 56,226,104,175,220, 10,219, 39, 37, 18, 9,248,130,206,253, 21,110,235,110, 50, 45, 89,184,112,161,246,193,131, 7,208,233, +116,197,209,182,252,252,252,226, 78,243, 42,149, 10,132, 16,232,116, 58,236,219,183, 79,235,110, 50, 45, 41, 75, 47, 7, 72, 79, +137,141,237,215,172, 89,179,156, 39, 79,158, 64,173, 86,227,206,157, 59, 56,126,252, 56,182,109,219,134,163, 71,143,226,209,163, + 71,176,217,108, 8, 12, 12, 4,165, 20,123,246,236, 81,219,180,218,158, 57, 64, 58, 43,250,101, 83,197,207,175,179,175,143, 79, +146,183,151, 87, 74, 21, 63,191,206,207,127,239, 10,196,196,196,196,192,102,179, 33, 44, 44,204,163,188,126, 88,212,102, 59, 95, +100, 92,130,171, 85, 91, 16, 90,138,113, 9, 5,188, 67,171, 87, 95, 80,100, 92,168,205,118,190,178,105,118, 6,150,125,242,201, + 39, 6,177, 88,140,173, 91,183,134, 89,107,212,120, 40, 4, 70, 40,129, 90, 29, 0,113, 69,251,251, 3,203,191,252,242,203,116, + 66, 8, 54,111,222,236,229, 90,189,250, 93, 33,240,166, 43, 80,197, 21,168, 34, 4,222,116,173, 94,253,238,214,173, 91,189,108, + 54, 27, 38, 77,154,148,238, 15, 44, 47, 71,242, 35, 74,105, 95, 74,105, 59, 74,105,240,218,149, 75,113,112,239,142, 34,115,245, + 46,165,244, 42,165,116, 20,165,244, 46, 43,113, 12, 6,227, 85,132,148,214,207, 73,212,124,110, 6, 64,125,218,183,168,143,107, +183,162,213, 94,238, 46, 71,138,190,203,189,183,163,102,167,122, 46,245,127,254,249,103,136, 68, 34, 36, 39, 39,227,254,253,251, +112,113,113,193,235,175,191,110, 50,104,181,253,138,214, 34, 36,132,116,161,148, 30, 47,212, 44, 88,239, 76, 29,171,172, 46,188, + 93,237,240,193, 3, 2, 87, 87, 87,228,231,231, 23, 79, 43, 32,151,203, 33,147,201,112,253,250,117,244,238,219,223,158, 37,111, + 87, 60,209,104,209,122,103, 37, 53, 65,136, 0, 0,154, 3,242, 40, 96,138, 79, 64,192,212, 47,190,248, 66,214,189,123,119,136, +197, 98, 4, 85, 9, 79, 15,235,241,221, 50,142, 35,182,148, 28,205,140,234, 85, 2, 92,239,199, 38, 0, 32, 5,107, 22, 22,174, + 69, 88, 90, 58, 67,204,103,194,118,111,248,222,165, 97,195,134,197, 81,177,140,140, 12,100,102,102, 66,165, 82, 65,167, 43,152, +234,225,192,129, 3, 56,120,246,161,198, 16, 52, 56,174,172,116,254, 39,239,209,206, 1,150, 43, 85,183,108,218, 32,240,246,246, + 70, 70, 70, 6,178,178,178,160, 82,169, 96, 48, 24, 96,183,219,145,155,155,139, 95,215,109,176,231, 40,219,197, 23, 77,228, 88, +174,166, 46, 89,230,145,127, 33,176, 81,157, 80,250,206, 59,239, 56,187,184,184,128,231,121,228,229,229, 33, 41, 41, 9, 79,158, + 60,193,217,179,103,117,153, 42, 51,116, 94, 93, 83,138, 38, 26, 45,245,120,190,172, 66,245,191,168, 89, 88,150, 0, 32,192,223, + 63, 53, 49, 49,209,199,110,183, 35, 48, 48,208,166,202,205, 93, 32, 1,142, 58, 3,105, 0,104, 54,240,197,146,101,203,222,238, +223,191, 63,154, 54,109,154,156,158,145, 81,181,180,178, 4, 66, 4, 17,128,171, 62, 40,232,222,213,171, 87,253,146,146,146,240, +198, 27,111,100, 39, 62,126, 92, 60, 77,131, 26,104, 27, 90,189,250,130,173, 91,183,122, 85,171, 86, 13,245,234,213, 75,119, 42, +154,166,161,244,242, 89,230,181,169,138,249,163,234,123, 3, 35,155, 78,152, 48, 1, 54,155, 13,103,207,158,197,149, 43, 87,144, +152,152,136, 11, 23, 46,168, 92, 20,138, 97, 69,107, 17,150, 85, 62,123,134,235,194, 54,111,222, 68,196, 98, 49,214,173, 91,135, +168,168, 40, 0, 64,163, 70,141, 48,122,244,104,216,108, 54,140, 28, 57,138,254, 17, 45,139, 43,175,124, 18, 66, 34, 1, 44, 66, +129,185,107, 74, 41,117, 34,132,164, 2, 8,174, 76,159, 43, 86, 62,153, 38,211,252,247,104,190,106, 84,184, 22,225, 55,191,192, +245,217,229, 56,198,164,238, 88, 57, 91,216,166,109,187, 90,179,191,154,197, 53,107,214, 12,193,193,193,104,212,168, 17,146,146, +146,164,110,110,110, 21,173,119,150,223,174,199,136, 39,245,235,215,119,155, 54,109,154,107,183,110,221, 68,193,193,193,160,148, + 34, 42, 42, 10,187,118,237,178,172, 89,179, 70,163,247,237,171,186,113,234,183,124, 71,214, 59,187, 2,232, 1,204, 9, 74, 77, + 93,245,254,123,239,205,106,216,184,241, 59, 95,125,245, 21,167,148,203, 68,243,102,188,235, 4, 0,223,252,180,205,181,255,224, +215,177,164, 6,208,126, 68,233,235,188,149, 76,103, 82,202,152,196, 94, 3, 59,215,152,242,193,219,246,161, 67,135, 42, 92, 92, + 92, 16, 28, 28, 12,119,119,119,196,197,197, 33, 37, 37,133,238,223,191, 63,255,210,205, 24,209,158,163,215, 18,157, 92,253, 29, + 89, 55, 80,219,174,251,144,248, 94,189,122,185,191,249,230,155,206, 77,154, 52, 17, 73,165, 82, 72,165, 82,100,100,100,224,209, +163, 71,150,253,251,247,231,235,125,122,230,221, 56,181, 85,235,224, 90,132,134,118,195,103, 63, 58,119,236,171, 73,247,238,220, + 25,197, 3, 13, 44, 22, 75,160,221,110, 39, 28,199,165,241, 60,127,199,162,213,174, 53, 53,250,106, 49, 91,139,208, 49,236,118, +187,216,110,183, 67,165, 82,225,216,177, 99,194,199,143, 31,127,113,235,214,173, 47, 82, 83, 83, 97,181, 90,241,218,107,175,161, + 81,163, 70, 56,117,234, 20,178, 50, 50,246,151,167, 21, 13,168,165, 41, 41,163,199,140, 25,115,104,211,166, 77,220,173, 91,183, +188,214,173, 91,247,107,105,198,101,212,168, 81,124, 70, 82,210,104, 83, 57,115, 96, 85,112,109,102, 31,222,250,227,173, 1,131, + 6,215,249,106,230, 23,162, 86,173, 90,193,203,203, 11,109,219,182,133,197, 98,113,171, 93,187,118, 69,215,166,182, 93,143, 97, +113, 13, 26, 52, 80, 44, 94,188,216,239,237,183,223,198, 7, 31,124, 0, 0, 48, 24, 12, 56,122,244, 40, 38, 77,154,148,158, 36, +108,174,171,168,124, 22, 70,166,138,140,215, 25, 0,237, 0,196,177, 14,237, 12, 6,227, 95,109,176,128,255,172,119,118,238,202, + 93,148, 92,142,163, 0,255,251,182,144, 55, 31,143,155,186,160,158,192,170,113, 23, 17,163, 75,108, 76, 12,169,104, 77,194,226, +245,206, 92,195,243, 61,159,252,222,108,222, 55,223, 76, 92,178,100, 73,231,162,169, 24,228,114,249, 29,131, 78,119,194,219,100, + 90,170,119, 13, 63, 81,217,181,243, 82,128, 12, 0,239,185,223,184,177,172, 79,255,215, 22, 58,121,132,137, 62,159,187,198, 40, +224, 56,243,163,212, 44, 44,169, 1, 40, 28, 24,240,168, 55, 3,247, 84,254,182, 12,207,193,209, 95,126,242,201,148,111,230,204, +105,166, 84, 42,219, 91,108,182,112,158,231, 1,158,143,213,235,116,103,168,197,114,213,212,104,230,247, 78,174,254,212,225,117, + 3,221,106,107, 61,226,119, 52, 91,191,118,237, 71,219,183,111,255, 83,222, 61, 77,166,101,122,183,218,199, 29,201,123,201,109, +140,192, 69,100,102, 94, 44,243,105, 3,108, 45, 66,135, 47, 10,158, 31,235,238,238,190,177,115,231,206, 78, 93,186,116, 65,239, +222,189,209,170, 85, 43,240, 60, 15, 74, 41,180, 90, 45,182,109,219,134,133, 11, 23,198, 86, 5,230, 84,164,103, 2, 78, 72, 15, + 30,236,217,160, 65,131,117,229, 25,151, 66,115, 85, 97,159,195,242,175, 77,105,172,205,181, 95,194,240,247,231,213, 48,107,210, +220, 60,229, 54,191,123,119,239,112,142, 95,155, 17, 90,123,212,182,230,175, 13, 28,248,190, 64, 40,108, 91, 56,162,145, 62,184, +127,255, 70,209, 98,207,104, 52,250, 88, 37,203, 82,209,220,115,172, 67, 59,131,193,248,119, 27, 44,161, 80,152, 89, 20,229, 17, + 10,133,153,113,123,198,189, 94,158,136, 8,232, 92, 24,185, 66,133,107, 17, 22,190, 79, 0,180, 48,153,190,126,102, 18,209, 18, +163, 5, 69,207,109, 95,153, 76,229, 1,209,176,153,250, 32,243, 62,176,239,189, 2,189,102,223,124, 86, 50, 79,101, 30,144,103, +126, 87,156,107, 4,206, 33, 63,255, 28,242,243, 75,157, 93, 90, 36, 20,231, 86,148,206,231,243,158, 4,104,254,106,222,133,149, + 60, 62,194,191,112, 60,255,109, 60,205,206,222, 3, 64, 25,116,224,128,239,225, 3, 7,134, 78,153, 60,249, 53,255,128,128,234, + 94, 94, 94,238,206,206,206,220,229,203,151,159,216,140,198,101, 13,129,245,133,209,211, 10, 49, 1, 39, 34,146,146,234, 14, 25, + 56,240,125, 34, 20,182, 41,105, 92,168,205,118, 33, 12, 88,110,114, 96,246,246,202, 94,155,193, 82,255,206,133,145, 43, 8, 28, +188, 54, 83, 10,210, 49, 23, 54,219, 92,220,190, 93, 74,153,175,116, 89,250,134, 16,162, 5,155,161,157,193, 96,252,155,248,155, +215, 21,234,194, 52,153,230,171,162, 89,224, 81,224,194,142, 39,211,100,154, 76,147,105,190,124,205, 87,237, 37,100, 22,147,193, +112,248, 97,196,142,255, 52,119, 49, 24, 12, 6,131, 81, 38, 4, 64,151, 50,110, 38, 14,143, 14, 32,132,116,121,129,155,213,113, +166,201, 52,153, 38,211,100,154, 76,147,105,254,187, 52, 43,210,126,101, 70, 39,178, 38, 66,166,201, 52,153, 38,211,100,154, 76, +147,105,178, 38,194,151,251,226,192, 96, 48, 24, 12,204,158, 77, 56,128, 16, 96, 54, 7,236, 16, 0, 67, 4, 5,255,191, 56, 67, +134,144, 82, 39,161,253,232, 35,226,204,142, 56,131,241,106,195,250, 96,253,131, 16, 66, 66,252,252,252, 86, 2, 32,233,233,233, + 99, 41,165, 73,236,168,252,247,225,233,233,217,217,102,179, 65,173, 86,159,120, 21,243, 87,183, 6, 25, 72, 57,212,254, 79, 88, + 27, 73,247, 99,233,198,210,182,173, 19, 78,222, 0,249,207, 92, 90,132,199,131,123,143,232,238, 74,148,121,110, 64, 79,239, 69, + 0,176,231, 80,214,212,191, 99, 94, 44, 66, 72, 77,111,111,239, 35, 66,161, 80,104,183,219,223,203,200,200, 56, 80,182, 1, 26, + 34, 0, 0,111,217,174,233,110, 30, 94,211,190,156, 66, 68,102,211,119, 42,147,209,168,230,132,194,120,137, 88,126,222,198, 41, + 14,165,100,244,188, 95,218,254,219,183,111, 47,115,117,237,200,112,210,179, 86,157, 58,125, 27,215,147,197, 45, 90,218,108, 73, +251, 48, 47,209,147,228,155,202, 95, 54, 38,173,244,118, 15,236, 59,241, 93,225, 1, 41,181,143,250,246, 87,154,207,174, 50,199, +153, 79,136,135, 5,168, 39,146, 74,131,237, 54,155, 47, 1,168, 64, 40,204,176,154, 76,201, 98,224,246, 52, 74, 85,175,186,166, + 88, 42, 13,178,219,108,190, 0,240,223,152, 78, 70, 5, 6,203,217,217,249, 58,199,113, 65, 37, 23,169,229, 10, 23,116, 46,250, +172,228,119,132, 16,216,237,246,148,220,220,220, 38,149,168, 8, 93, 0, 12, 5, 80, 52,212,124, 11,128,109,148, 82,205, 11, 86, +172, 46, 98,177,120,170, 66,161,232,100, 48, 24,234, 2,128, 76, 38,187,167,211,233, 78, 90, 44,150, 69, 47,162, 75, 8, 17, 2, + 24,162, 84, 42, 59,114, 28,215,145, 82, 74, 40,165,167,242,243,243, 79, 2,216, 78, 41,181,189,128,166,204,199,199,103,110,173, + 90,181, 70, 76,159, 62, 61,199,211,211, 51, 98,210,164, 73,215,188,189,189,127,203,206,206,158, 65, 41, 53,252, 55, 20, 14, 66, + 72,117, 63, 63,191, 45, 34,145, 72,144,156,156,220, 17, 0,130,131,131, 79,153,205,102,123,102,102,230,235,148,210,199,149,212, + 83, 0,104,161, 84, 42,155, 40,149,202,118,118,187,189, 54,207,243,224,121,254, 65,126,126,254, 89,139,197,114, 29,192,101, 74, +169,238,191,200, 4, 59,251,248,248,108, 34,132,128, 16, 18, 78, 41,213,190,106,149, 0,229, 80,251,254,189,135, 17,197, 38,170, +110,173,114, 14, 8, 66, 74,217,214, 97,131,213,171,179, 91,143,190,125, 27,112, 0, 96,177, 92,235, 1,224,224,203, 54, 87,131, + 6, 13,186,184,105,211, 38,119,147,201,132,177, 99,199,110,113,117,117, 93,174, 86,171,167,151,183,159,179,179,243,164, 57, 95, +255, 36, 47,172,211,124,120,158,247, 73, 75, 75, 14,143,126,120,167, 71,116,244,221,121, 22,221,238,203, 22, 42, 24,167,210,247, +123,232, 72, 58,234, 84, 39,125,250, 15, 25,216,123,206,156,175, 48, 98,216,136, 42,247,238, 25,101,129, 46,113, 18,141, 69, 81, +195,203, 43,168,223,103,159,127, 75, 46, 95, 58,221,111,251,182, 53, 39, 63,123,135,116, 98, 38,203,161,115, 75,190, 17, 10, 91, +184,215,170,213,110,216,158, 61, 80, 6, 7, 11,133, 82, 41, 7, 0, 54,147, 41, 56, 63, 57,217,127,107,191,126,205,103, 19,114, +122, 22,165, 87,152,230,255,191, 38,195, 65,131,197,113, 92,208,211,167, 79,125, 20, 10, 69, 65, 37, 76, 41,236,118, 59,236,118, + 59, 10,111,138,160,148, 22,255,181,217,108,168, 85,171,150, 67, 79,176, 0, 58, 1,120,171, 67,135, 14,131, 23, 45, 90, 36,170, + 87,175, 94,209,210, 30,109, 63,255,252,243,159, 8, 33, 59, 1,172, 7,112,194,209, 39, 92, 66, 72,119,133, 66,177,249,187,239, +190,115,233,218,181,171, 48, 32, 32, 0,132, 16,164,167,167,183, 56,126,252,120,147, 73,147, 38,189, 71, 8, 25, 73, 41, 61, 82, +137, 11, 58,210,217,217,121,199,192,129, 3,131,218,183,111,239, 84,167, 78, 29,216,237,118,220,188,121,243,237,235,215,175, 15, +223,185,115,231, 44, 66,200, 96, 71,215, 83, 35,132, 16,165, 82,249,102, 96, 96,224,220,153, 51,103,122,140, 28, 57, 82,114,247, +238,221,188,176,176, 48,114,254,252,121,239,109,219,182,189,183, 96,193,130, 33,206,206,206, 51,242,243,243, 55,208,210,214, 49, +122, 14, 23, 23,151,235, 28,199, 5, 57, 98,128, 1, 56,108,130, 9, 33, 13,171, 86,173,186,237,220,185,115, 85, 19, 18, 18,236, + 3, 6, 12,216, 8, 0, 39, 79,158,172,103,181, 90, 73,183,110,221, 14, 17, 66,134, 82, 74,111, 58,152,247,250, 30, 30, 30,123, + 71,140, 24,225, 81,189,122,117,121,213,170, 85,137, 66,161,128, 64, 32,128, 90,173, 14,184,123,247,110,151, 43, 87,174, 24,142, + 31, 63,158, 75, 8,233, 71, 41,189, 93,137,243,212,202,199,199,103,148, 72, 36,138,180,217,108,129, 0, 32, 20, 10,159, 90,173, +214,187,153,153,153,155, 40,165, 23, 95,244, 2,241,245,245,253,113,238,220,185, 94,153,153,153,116,193,130, 5, 63, 2,120,243, + 85,173, 12,182,252,182, 29,215,175, 93, 1, 0, 49, 33,132, 60, 95,254, 8, 33,164,118, 56,196, 31,127, 60, 25, 77,154, 54,199, +235, 35,134, 84,168, 57,160,183,215, 28,137, 64,232,169, 55,155,174,100,171,185,189, 33, 62,146,129, 35,135, 52,137, 3,128,195, +135,238, 12,108,222,220,227,188,151, 43,223, 95, 46,145, 54, 55,219,109, 57,123,254,200,158, 89, 25, 51, 21, 24, 24,120,196,221, +221, 93,158,155,155,155,158,149,149,245,203,160, 65,131,190, 89,191,126,189,251,147, 39, 79,144,156,156,140,137, 19, 39, 42, 83, + 82, 82,222,151, 74,165,151, 76, 38, 83,153,145, 44,173, 86,187,116,238,215,147,103, 58,187,184, 11,228, 50, 5,148,206, 46,168, + 90, 53, 28, 77,155,181, 69,151,174,253, 16, 23, 23,221, 98,219,239,107,162, 4,105, 59,230,219, 37,141,190, 81,169,170,150, 89, + 47,213,141, 32,237,139,204,213,204,153, 95, 33,230,225, 67,109, 66, 60,247,225, 31,123,132,242,158,157,107, 73,205,150,252,132, +203,151, 78, 87,109,209,178, 3, 0, 52,217,190,109,205,201,217, 35, 73,231, 89,155, 95, 61,243,254, 50,205,213, 28,145,232,205, +238,139, 23,251, 52,122,239, 61,113,126,124,188, 37,110,197, 10,125,198,217,179,118,161, 84, 74,131,123,244, 32,222, 29, 59, 58, +189,247,224,129,248,194,130, 5,237,230, 73, 36, 97,159,155,205,155,153,230,255,159, 38,163, 18, 6,139, 16, 2,133, 66,129,173, + 91,183, 66, 36, 18, 65, 40, 20, 66, 36, 18,149,249, 62, 36, 36,196,145,139,100,144,159,159,223, 79,203,151, 47,247,237,222,189, + 59,156,156,156,138,191, 19, 8, 4,232,218,181, 43,186,116,233, 34, 74, 77, 77, 29,190,117,235,214,225,243,230,205,203, 32,132, +124, 64, 41,221, 85,129,110,199,136,136,136, 93, 71,143, 30,149, 25,141, 70,156, 61,123, 22,121,121,121,144, 72, 36, 8, 10, 10, + 66,183,110,221,132, 15, 31, 62,244,232,218,181,235, 46, 66, 72, 31, 74,233, 41, 7,210,218,196,199,199,231,204,246,237,219,157, + 26, 52,104, 64, 30, 61,122,132, 70,141, 26, 1, 0,212,106, 53, 6, 12, 24,224, 52,114,228,200,234,195,135, 15,191, 76, 8,105, + 79, 41,189, 94,129, 94, 99, 63, 63,191, 13, 3, 7, 14, 12,152, 55,111,158,139,179,179, 51, 18, 18, 18,210,252,252,252,194,139, +142,247,240,225,195, 37,125,251,246,245, 95,184,112,225,210, 29, 59,118,124, 66, 8,121,147, 82,122,163, 60,221, 34, 35, 44,151, +203,145,145,145,129, 45, 91,182,224,253,247,223,135, 64, 32, 64,102,102, 38,182,109,219,134, 15, 63,252,176,200,200, 56,100,130, + 21, 10, 69,151, 6, 13, 26,252,122,242,228,201, 32, 55, 55, 55, 4, 4, 4,112, 95,126,249,101,100, 88, 88,152,172, 74,149, 42, +130,180,180, 52,236,218,181, 43,108,212,168, 81,123,157,156,156,222, 54, 26,141, 21, 54,157,249,250,250,174,253,227,143, 63, 66, +238,221,187,135, 21, 43, 86, 32, 55, 55, 23, 18,137, 4,110,110,110,240,243,243, 67,120,120, 56,153, 54,109,154,188,111,223,190, +242, 15, 62,248, 96, 45,128,134, 14,156,163, 6, 62, 62, 62, 43,135, 15, 31, 30, 54,123,246,108, 55, 63, 63, 63, 20, 61, 16,168, +213,234,160,132,132,132, 22, 51,103,206, 28,236,235,235,251, 36, 51, 51,115, 28,165,244, 86, 37, 43,245,134,157, 59,119,238, 51, + 96,192, 0, 65, 90, 90, 26, 54,109,218,212,135, 16,210,208, 81, 83,249,191,198,245,107, 87, 48,118,194,196,252,128,224, 96,241, +254,125,191,247,207,207, 95,117, 94,201,185, 9, 1, 32,159, 87,217, 90,183, 80,182,233,219,111,184,184, 87,239, 1,249,171,126, + 94,170,116,196, 96, 73, 4, 66,207,173,155,199, 39,159,189, 16, 91,251,200,241,132, 46, 3,250,117,225,132,226,136,234, 0, 48, +101,242, 24,201,158,125,199,151,119,239, 82, 37,173, 93,235,240,228, 97, 35, 87, 4, 87,198, 92,213,172, 89,243,116, 84, 84,148, +175, 84, 42, 69,110,110,174,231,170, 85,171,126,104,211,166, 13, 23, 23, 23,135,135, 15, 31, 34, 62, 62, 30,106,181, 26, 93,187, +118, 85,222,184,113,227, 23, 0,101, 26,172, 44,195,160,185, 97, 62,217,203, 2, 61,221,171, 26, 45,106, 31,187, 45,167,206,201, +227,183,234,239,220,174,111,228,227, 23, 20, 62,124,248, 88,124, 54,253, 91,209,238,157, 27,102,158, 57,123, 20, 64,213,178,103, +240,167,104,245,249,140,233,208,104, 77, 24, 57, 98, 12, 70,141, 24,227, 73, 97,246,167,118,163,194,108,200,115,115, 21,223, 59, +176,225,247,237, 3, 1, 4,149, 48, 89, 39,152,201, 42,155, 57, 66, 97,243, 62, 63,253,228, 29,249,238,187,210, 91,179,103,235, +178,207,158, 53,212,232,213, 43,175,209,248,241, 38, 0,208,198,199,139, 99,102,205,146,123,183,107, 39,107, 57,117,170,187,221, +108,246,251,154,144,102, 95, 82,122,181,178,154, 33, 67,135,218,103,174, 91,215,244,236,228,201, 29,136,213, 42,232,209,178,229, +205, 5,155, 54, 61,253, 43,154, 47, 51,157,169,103,206,152,114,195,194,208,104,192,128,156, 16, 31, 31,211,203,204,251, 95, 73, + 39,163,148,122,138, 82, 10, 66, 72,123, 0,167, 1,204,166,148,126, 5, 0,110,110,110, 25, 42,149,202,103,215,174, 93, 21,154, + 43,145, 72, 4,127,127,127,132,135,135,103,102,100,100,248,150, 83, 41, 38,243, 60, 31, 68, 41, 45,142,182,148,133,201,100, 66, +108,108, 44,234,215,175,159, 66, 41, 13, 46,175, 9, 71, 46,151,199, 61,124,248,208,235,254,253,251,184,126,253, 58,194,194,194, +224,238,238, 14,145, 72, 4,171,213, 10,141, 70,131,136,136, 8, 72,165, 82, 52,110,220, 56, 91,167,211,133,149,215,212, 67, 8, +145, 42, 20,138,216, 51,103,206, 4, 55,106,212, 8, 87,175, 94, 69,112,112, 48,252,252,252, 0, 0,241,241,241, 56,127,254, 60, +122,245,234,133,168,168, 40,188,246,218,107,201, 58,157, 46,156, 82,106, 42, 75,211,211,211, 51,237,228,201,147, 41,245,234,213, + 51,234,116, 58, 46, 35, 35, 67,116,246,236, 89,155, 86,171, 85,170,213,106,145, 74,165, 18,105, 52, 26,161, 78,167, 19,113, 28, + 39, 54, 24, 12,162, 19, 39, 78, 8,204,102,179, 75,121,199,169,232, 60,237,219,183, 15,245,234,213,195,174, 93,187, 48,101,202, + 20, 92,184,112, 1,193,193,193,216,190,125, 59,166, 78,157,138,232,232,104,120,121,121,161, 78,157, 58,229,158, 35, 0,168, 81, +163,198,163, 59,119,238, 84, 23,139,197, 69,235, 46, 22,173,103,135,172,172, 44, 60,126,252, 24, 79,159, 62, 69,141, 26, 53, 48, + 98,196,136,199, 41, 41, 41, 53, 42, 42,104, 65, 65, 65, 89,247,238,221,243,170, 95,191, 62, 50, 50, 50,224,230,230, 6, 87, 87, + 87,184,185,185, 21,191, 15, 11, 11,195,228,201,147,225,231,231,151,105, 48, 24,124, 43, 50, 63,245,234,213, 59,114,226,196, 9, + 47, 23, 23, 23,164,167,167, 67,163,209, 64, 40, 20, 66, 46,151,195,203,203,171,216,192,199,198,198,162,119,239,222,217,113,113, +113,221, 43, 17,113,227,124,125,125, 31,222,190,125, 59,156, 82,138,164,164, 36, 68, 71, 71, 99,194,132, 9,177, 70,163,177,214, +171,180,166, 94,137,126, 85,226, 55, 71,143, 21, 15,232,215, 95,127,243,250, 97, 94,134, 51,104,214, 80,166, 2,128,171, 55, 13, +110, 6,180, 71,195, 38, 61,184, 61,251,246,202, 55,172, 95, 37, 2, 15, 95, 16, 68,223,143,161, 95,151,165,221,167,187,219, 27, + 83, 39,246,168,221,174,117, 59,161, 70, 67,253,126,221,184,186, 89,226,147, 56, 95, 0, 8,173, 22,150,241,206, 27, 99,174,186, +184,144,244,179, 23,206,218, 22, 45, 61,252,224,192, 17,213, 70, 7,206, 77, 88,120,120,248,165,125,251,246,121,249,248,248,192, +213,213, 21, 58,157, 14, 22,139, 5,247,239,223, 55,110,221,186,213,234,226,226,226,156,158,158, 14,149, 74, 5, 66, 8,246,237, +219,151, 68, 41, 13,125, 94,171,168, 15, 22, 0, 76,232, 89, 91, 84,167, 83,184,187, 88,106,147,201, 68, 49,254, 32,118, 41,161, + 74,223,147, 39, 47,213, 63,117,230,220,235,189,250, 12,243,110,217,178, 35,190,157,247,153, 53, 41, 61,163,145, 74,223,239, 97, +105,125,176,106,135,147, 78, 3, 94, 27, 56,100,206,156,175,240,213,204,217, 56,176,111,143, 90,169,224, 76, 46,110, 34,215,118, + 45, 90, 27, 39,191,223, 63, 89,159,159, 18,252,195,242,213, 35,186,118, 31, 18,212,162,101, 7, 92,190,116, 26,219,183,173,185, + 46,182, 91, 89,115,225,115,204, 38,196,221, 45, 44,108,220, 71,177,177,226, 91, 95,125,149,111, 75, 77,205,107, 50,105, 82,118, +105,219,166, 28, 59,166,144, 4, 4,184,184,247,235,231,177, 52, 52,148, 90, 51, 51, 87,150,214,135,168, 52,205,227, 74,165,219, +239,135, 14,117,166, 34, 81,251, 79, 63,251, 76,214,167, 79, 31,104, 52, 26,236,220,185, 19, 43, 87,172, 48,249,251,251,223, 9, +184,123, 55, 42, 82,163,249,194, 81,205, 38,147, 38,101,219,237,118, 50,100,234,212,174,247,226,227, 59,165,103,102, 86, 1, 0, +127, 15,143,228, 38, 97, 97,215,215, 30, 56, 16,253, 99,213,170,188,163,233, 92,125,248,176,239,142,132,132,119, 61, 60, 60,100, + 25,153,153, 66,169, 68,146,211,162, 78,157,237, 63,207,152,113,218,118,251,182,216, 41, 40,200,197,181, 79,159, 74,231,189,201, +164, 73,217,185, 90,173,240,163,111,190,105,157,152,145, 81, 37,223,100,170,161,210,106,253,236, 86, 43,231, 34,151,231, 84,139, +136,200, 52,156, 61,155, 86, 77,175,159,184,154,210,204,191, 49, 82,249, 39, 47,242, 42, 68,176, 78, 83, 74,255, 52, 90,134, 82, +234, 80,244, 74, 36, 18, 61,211, 28, 85, 14, 98, 66, 8,110,220,184, 1, 79, 79, 79,248,249,249, 65, 42,125,118,113,192,172,172, + 44, 92,184,112, 1, 15, 30, 60, 64,131, 6, 13, 0, 64, 92,158,160, 84, 42,253,120,225,194,133,110,102,179, 25,215,175, 95, 71, +147, 38, 77, 32,149, 74, 33, 22,139,159, 49,127,153,153,153,168, 91,183, 46, 62,253,244, 83,215,121,243,230,125,140,114,214,144, + 19, 10,133, 31,140, 25, 51,198,167, 40, 98,149,156,156,140,198,141, 27, 23,127,239,237,237,141,155, 55,111,162, 73,147, 38, 8, + 10, 10,194,224,193,131,125, 54,109,218,244, 1,128, 69,101, 62,201, 75, 36, 92,189,122,245,154, 22, 70,136,192,113, 92,140,139, +139,139,183,175,175,175,194,197,197,229, 79,121, 92,183,110,157,138,227, 56,107, 69, 7,148,227, 56,164,167,167, 35, 50, 50, 18, +106,181, 26, 0,160,211,233, 80,163, 70, 13,104, 52,154, 98,179, 26, 16, 16, 0,131,161,252,174, 93, 13, 26, 52,248,170, 86,173, + 90,221, 58,116,232, 32, 21,137, 68,184,117,235, 22, 26, 53,106,132,173, 91,183, 34, 36, 36, 4,114,185, 28,177,177,177,168, 87, +175, 30,206,156, 57, 3,111,111,111,212,173, 91, 87,218,184,113,227,115,185,185,185,167, 18, 18, 18,190, 42, 39,157,156, 82,169, +196,153, 51,103,176,118,237, 90,196,199,199, 35, 53, 53, 21,206,206,206,104,216,176, 33,234,212,169,131, 86,173, 90, 33, 54, 54, + 22,164,130,194, 68, 8,241, 11, 15, 15, 63,112,245,234, 85, 47, 74, 41, 54,109,218,132,252,252,124,152,205,102,112, 28, 7, 39, + 39, 39,184,187,187,163, 83,167, 78,240,246,246, 70,120,120, 56,182,109,219,230,213,179,103,207,131,133, 17,168,244,138,142,171, +187,187,251,196, 89,179,102, 5,251,248,248, 32, 33, 33, 1,106,181, 26,190,190,190,232,208,161, 67,224,241,227,199, 39, 2, 88, +252,170,220,192,138, 58,180, 19, 66,200,254,125,191,247, 15,241,151,212,110,214, 72, 27,122,231,134,176,250,193,227,143,234, 23, + 28,143,208,219,205, 26,107, 31, 95,189,126, 56,113,255,190,223,175, 60,136,193, 94, 71,154,176,179,213,220,222, 35,199, 19,186, +212,175,219, 86,176,108,249,172,254, 99,223,233, 46,245,112,111, 75, 52,153,219,112,225,202,157,208, 47,191,154,230,243,245, 87, + 11,246, 31, 57,158, 96,207, 86,115,115, 29, 73,111,221,218,254, 63,158,222,227,227,149,111,249, 25, 55,175,184, 2,162,150,168, + 22, 86, 19, 26,141, 6, 78, 78, 78, 78, 35, 70,140,176, 79,159, 62, 93,239,226,226, 34, 39,132,224,212,169, 83,153, 0,186, 87, +164,107,244,113,167,118,139,213, 70, 37, 2,158, 18,103, 3,177,231, 74,238,222,127,130,246,237,123,102, 52,109,210,104,222,130, +239, 22,127, 30, 22, 22,225, 61, 98,228, 56,209,162, 69, 95,172, 0,208,182, 52,157, 7,177,244,100,157,234, 68, 6,160,247,156, +175,191, 66, 92, 92,172,251,216,183, 84,179,133, 82, 89, 64,173,208,214,206, 43,214,158,234, 81,163, 70,213, 42, 99, 71,191,253, +199,170,117,107,123,151,140,100,253,254,219,170,189,132,144,206,142, 28,219,127, 17,245, 71, 29, 56,128,252,164, 36,107,238,185, +115,198,206, 63,253,148, 29,220,189,251, 98,179,197,226, 85, 84, 85,112,132,128, 20,117,145,224,121, 34,252,244, 83,142, 10,133, +176,186,187,191, 53, 13,168, 89,145,230,148,180,180, 65,175,191,251,110,239,189,135, 15,163,106,213,170,197,247, 51, 55, 55, 55, + 76,157, 58, 21,147, 38, 77,146,222,188,121,179,217,142, 29, 59,154, 45,250,238, 59,223,105,192, 32, 71,210,121,244,242,101,247, +241,115,230,204,104,208,164, 73,200,198, 45, 91,164,213,171, 87, 7, 0, 60,126,252, 56,252,219, 5, 11, 66, 35,235,213,203,152, +247,241,199,235,239, 77,159, 94, 23,192,185,242, 52,211,207,158, 53,239, 72, 72,120,247,228,169, 83,110,145,145,145, 0,128,232, +232,104,159,165, 75,151,142,169, 59,120,240,200, 57,239,189,247, 69, 31,163, 81,229,146,149, 37,237,243,227,143,194,223,135, 12, +169, 80,179, 40,157, 0,208,225,237,183, 63,110,219,177, 99,157, 65,239,190,235, 17, 18, 18, 66,148, 74, 37, 44, 22, 11, 82, 83, + 83,221,239,221,187, 87,253,128, 86,171,217,125,249,242,166,213,133,139,184,255, 77,148,234, 69,254,215, 13, 86, 7, 66, 8, 5, +208,129, 82,122,166,232,198,109,183,219, 29, 50, 87, 66,161, 16,133,157,128, 29,250, 81, 74, 41,178,179,179,145,157,157, 93,220, + 68,148,153,153,137,147, 39, 79, 34, 54, 54, 22, 34,145, 8, 98,177, 24, 22, 75,197,107,195, 42, 20,138, 46, 93,186,116, 17, 94, +190,124, 25, 97, 97, 97,144,201,100,197,233, 42,122,137,197, 98,248,251,251, 67,163,209,160,115,231,206,162,101,203,150,117, 41, +207, 96,185,186,186,246, 26, 58,116,168,164,232,255,252,252,124, 8, 4,130, 98,179,146,159,159,143,220,220, 92,168, 84, 42, 24, +141, 70,180,108,217, 82,114,224,192,129, 94,229, 25,172,146,232,245,250,252,204,204, 76,183,182,109,219,186,175, 95,191, 62,186, +101,203,150, 17,207,148,176,211,167,141, 70,163, 81,196,113,156, 67,235,220,109,222,188,185,248,216, 63,125,250, 20, 43, 86,172, + 40,254, 46, 54, 54, 22,203,150, 45, 43,158,151,163,188,115, 84,171, 86,173,158,155, 54,109,106,178,113,227,198, 60,129, 64,128, +232,232,104,108,217,178, 5,148, 82,120,123,123, 67,175,215, 35, 35, 35, 3,167, 78,157,130,205,102,131, 82,169, 68, 96, 96,160, +211, 7, 31,124,208,102,246,236,217, 34, 0,101, 26, 44,187,221,110, 23, 8, 4, 8, 13, 13,197,204,153, 51, 97, 52, 26, 33, 22, + 23,248, 74,141, 70, 3,149, 74,133,168,168, 40, 36, 36, 36,160,162,155,139,147,147,211,224,141, 27, 55,250, 72, 36, 18, 24, 12, + 6,104,181, 90, 36, 39, 39, 35, 49, 49,209,152,153,153,105,115,118,118,230, 66, 67, 67, 57,169, 84, 42, 29, 48, 96, 0, 41, 50, +154,125,250,244,241,220,180,105,211,176,138,204, 17, 33,196,187,118,237,218,159,143, 25, 51,198,169,100,153, 77, 79, 79,199,160, + 65,131,228, 23, 47, 94,156, 78, 8,217, 66, 41,205,122,149,238, 98,148, 82,154,159,191,234,252,217,189, 63,213,190,115, 67, 88, +221,108,206,107,217,181,215, 68, 33, 0, 92, 60,179,174,229,157, 27,119, 33, 35,182,196, 67, 71, 23,157, 87, 42,199,210,138, 34, +128,189, 58,187,245, 8,241,145, 12, 28,208,175, 11,247,235,198,213,205,198,190,211, 93,234, 83,109, 53, 1, 0,119,113, 16, 90, +217,167,112, 70,147,206,233,215,141,171,155, 13,232,215,235, 74,252,147,196,197,189,187,184,239, 62,120, 66,117,184,188, 8,161, +191,159, 40,208,195, 37, 7, 30,206,141, 16, 26,230,140,168,155,183,177,119,215, 57,132,215,106, 3,147,201, 4,155,205,166,232, +219,183,175,126,235,214,173,198,152,152, 24,173,193, 96,104, 79, 41,141,169, 40,255, 41, 41,247,249, 8,191, 22, 22,177, 76,106, +211,170,197,250,105, 95,236, 24,210,184,121,183, 38,238,254,129, 34,111, 5,191,191, 99,251,182, 91,126,219,188,114,210,148, 79, +190, 70,195,134, 45, 91, 62,120,116,168, 14,128, 59,165,154,214,199,244, 64,100, 56,177,197, 61,122,212, 59, 49, 33, 33,165,166, +175,159,249,177,138, 90, 39, 78, 91,221,181,109,251,193,245,171,215,110, 39,185,119,255, 12,153,252,254,152,223,126, 88,190,122, + 68,145,201, 58,123,246, 72,251,175,190, 74,144, 0, 48, 49, 95, 85,248, 84, 46,149, 6, 41, 67, 67,133,241,235,215, 27,194,250, +246,205, 3, 0,179,197,226, 21,159,144,224, 42,151,203, 65, 41,133,213,106,125,166,143,112, 81,191,224,200,136, 8, 95, 71, 52, +227,191,252,178,254,167,159,126,138,244,244,116,216,108, 54,136, 68,162,231,235,108,232,116, 58,188,245,214, 91,248,241,187,239, + 90, 56,162,105,183,219,201,248, 57,115,102,124, 54, 99, 70,245,113,227,198,113, 37,235, 94, 15, 15, 15,236,216,185, 83,178,124, +249,242,160,207,127,252,241,173,215,165,210,184,138, 52,179,107,212,128, 71, 70,134,172,200, 92, 1, 64, 68, 68, 4, 86,172, 88, + 33,125,231,157,119, 36,125,251,246,253,254,102,131, 6, 75, 23,183,105,243,200,179,102, 77, 23,137, 84, 26,228,232,241, 4, 0, +173,209, 24,185,120,233, 82,247, 43, 87,174, 32, 35, 35, 3,233,233,233, 69,215, 50,154, 54,109, 74, 70,141, 26,229, 90, 45, 56, +184,217,223,124,186,255,228, 69,254,231, 13, 86, 97, 70, 72, 97,198, 72,137,155,226, 51, 70,165, 34,131,245, 34,168, 84, 42,168, + 84, 42,172, 89,179, 6, 98,177,184,248,166, 11, 0,102,179,217, 17,179, 82, 47, 32, 32, 0,106,181, 26, 53,107,214,124, 38,114, + 37, 22,139, 33, 20, 10, 33, 22,139, 33,149, 74, 97, 50,153, 16, 18, 18, 2,189, 94, 95,175, 60, 77,131,193,208,208,195,195,163, +248,198,106, 50,153,138,205, 85, 81,122,205,102, 51,242,242,242,144,159,159, 15,173, 86, 11,157, 78,215,200,145,252,242, 60,143, +187,119,239, 62,142,136,136,104, 40, 16, 8,160, 84, 42, 21, 58,157,174,184,239, 80,110,110, 46, 54,108,216,160,123,227,141, 55, +188,246,237,219, 87,161,193, 34,132,224,195, 15, 63,132, 84, 42,133, 94,175,199, 47,191,252,130,143, 62,250, 8, 98,177, 24, 90, +173, 22, 43, 86,172,192,228,201,147, 33, 20, 10, 97, 54,155,177,116,233,210,178, 35, 25,247,239,199, 95,190,124,185, 81,227,198, +141,221,119,239,222,157,213,181,107, 87,239,238,221,187, 67, 38,147,193, 96, 48,192,106,181,162, 69,139, 22,168, 85,171, 22, 50, + 51, 51,113,232,208,161,236,240,240,112,175, 43, 87,174,240,233,233,233,137, 21,221,188, 75, 68, 8, 97,183,219,145,145,145, 1, +149, 74,133,172,172, 44,164,166,166, 34, 37, 37, 5, 66,161, 16, 21, 61,188,123,122,122,190, 22, 25, 25, 41, 0, 0,153, 76,134, +134, 13, 27, 98,198,140, 25, 54,131,193, 48, 20,192,161,194,205,122,174, 94,189,122,247,249,243,231,133, 1, 1, 1,120,248,240, + 33,188,189,189,133, 78, 78, 78, 21, 26, 44, 63, 63,191,117,251,247,239,247, 40, 50,213, 69,199, 89,175, 47, 56, 29,131, 6, 13, +242,216,184,113,227, 58, 0,189, 94,181,155,153,146,115, 19, 54,107, 40, 83, 29, 60,254,168,126,215, 94, 19,133,254,213,103, 1, + 0, 90, 1,194, 99, 7,151,214,239,213,165,198,246,162,126, 89,229, 49,160,167,247,162,190,125, 27,112, 35,135, 52,137, 19,138, + 35,170,111,222,184,212,215,195,189,237,127, 42, 9,129, 7, 20, 50,160, 86,117, 59,119,233,247, 56,223,201, 19, 35,204, 91,214, +191, 27,183,121,251,245, 46, 98,241,173, 78, 0, 38,151,165,125,251,158,105, 95,158, 54,176,182,187,248, 52,129, 83, 63, 52,106, + 24, 14,111,111, 21,126, 89,181, 17,129, 33,173, 97, 50,153,224,226,226, 34,183,219,237, 22,129, 64,176,217, 17,115, 5, 0, 39, + 78,168,248,186,117, 85,102,129,150,183,189,255,209,162,129, 93,123,246,171,211,169, 83, 23,254,232,177,163,150,214,141, 44,105, +157, 58,181,204, 56,117,250,108,108,122,250,211,240, 90,181,234, 35, 38,250,102, 15,128,220, 5, 74, 47,176,119, 99,233,225,234, +213,201,169,173, 91,199,242, 6, 62, 74,246,205,220, 59, 61,123,247,126, 51,178, 93,219,118,252,177,227, 39,205, 18,100, 63, 80, +182,105,245,244,205,225, 67,119,111,221,181,187,219,169,147, 7,106,168, 53, 25, 7,190, 91, 78,153,185, 42,249,112,102,179,249, + 10,165, 82, 46,235,212, 41, 91,189,119,222, 49, 21, 93,143,114,185, 28,123,247,238,133, 68, 34, 41,126,137,197,226,226,247,190, +190,190, 69,131,170, 28,210, 4,128,180,180, 52,164,167,167,195,213,213, 21,222,222,222, 72, 79, 79,199,197,139, 23, 17, 19, 19, + 3,145, 72,132, 30, 61,122,128, 43,163,239,242,243,154, 67,166, 78,237, 90,187, 94,189,144,231,205, 21, 0, 88, 44, 22,228,230, +230,162,127,255,254,220,161, 67,135,252, 14, 39, 37,245,251, 18,216, 92,158,102,163,222,189,115, 50,118,236, 40,245,183, 27, 55, +110, 76, 46, 92,184, 32,237,209,189,251,164, 41,115,231, 46,255,113,227,198,100,187,205,230, 87,153,188,115, 28,199, 17, 66, 16, + 28, 28,140,220,220, 92,228,231, 23,180, 84, 43,149, 74,184,187,187,195,106,181,130,167, 84,244, 55, 63,228,149,234, 69,254,167, + 13, 86, 97,102, 0,160, 67,201, 27, 10,207,243, 14,153, 43,145, 72, 84, 97,159, 42, 71,162, 90,207,227,136,193, 42, 74,171,147, +147, 83,241, 5, 86,210, 88, 21,165,147,227, 56, 8, 4, 2, 56, 18,121,231,121, 94,160,213,106,177,115,231, 78,180,111,223,190, +184,249, 73,173, 86, 67,165, 82, 65,173, 86,195,104, 52, 34, 62, 62, 30, 39, 78,156, 64,141, 26, 53, 0, 56, 54,105,107, 92, 92, +220,245,170, 85,171, 54, 41,186,121,119,236,216, 49,104,253,250,245,169,189,122,245, 10,160,148,226,139, 47,190,200,110,209,162, +133, 87,201,155,123, 69, 8, 4, 2, 92,188,120, 17, 53,106,212, 0,165, 20, 98,177, 24,209,209,209,240,241,241, 1,207,243, 16, + 10,133,200,202,202,130,179,115,249,115, 27,222,189,123,119,244,219,111,191,157,234,234,234, 90, 63, 39, 39, 39, 77, 42,149,182, + 61,123,246,108,176,197, 98,129,139,139, 11, 92, 92, 92,112,240,224, 65,184,185,185,225,227,143, 63, 78, 50, 24, 12, 23, 21, 10, +133,175,193, 96,184,157,158,158,254, 69,101,206,183,205,102,131, 78,167, 67, 94, 94, 30,114,115,115,161,209,104, 96, 52, 26, 43, + 76, 99,105,180,109,219, 22, 7, 14, 28, 16,204,159, 63,255,215,184,184,130, 7,193,176,176, 48,124,252,241,199,130,192,192, 64, +196,199,199,227,250,245,235,176, 88, 44,168, 40,252, 44, 18,137, 58, 78,153, 50,165, 77, 72, 72, 8,177, 88, 44,224,121, 30, 38, +147, 9, 69,239,147,146,146, 80,187,118,109, 46, 52, 52,180, 37, 33,164,163, 35, 3, 38, 24, 5,104, 50,183,193, 93, 28, 4, 8, + 60,192,107,150, 67,247,130,147,145,100,102,102,206, 29, 49, 78,240,206,193, 45,249,190,209,143,156, 17, 28, 54, 10, 65,213,250, + 99,204,219,118,124,245,205, 1, 4, 6,215, 65, 98, 98, 34, 58,118,236, 40, 78, 77, 77,125, 27,192, 84, 71,181,143, 29,187,108, + 63,122,240,208,224, 33,195,222,108,210,165, 75, 47,219,145, 35, 7,113,247,246,145,123,111, 15,123, 45,147,242,249,196,205, 77, + 30,245,232,209,131,240,200,200,198,176, 88,173,109,129,175, 22, 2, 40,179, 82,121,252,152,154,103,207,158,205,253,177,103,221, +168, 17, 35,223,106,208,185,115, 55,235,145, 99,251,113,253,210,177, 91,223, 47, 28,115,102,254,210,109, 29,187,246,120,173,174, +147,203,229,131,145,117, 13,239, 6,187,132, 60,102, 37,165,140,155,149,147, 19,143,194,122,145, 35, 4,148,210,103,204,213,243, + 6,139,227,184, 10, 31,252, 75,106,150,188, 23, 21, 61, 72,175, 92,185, 18, 82,169, 20, 18,137, 4, 34,145,168,194,110, 22, 37, + 53,239,197,199,119,218,176,121,179,180, 52,115,149,147,147,131,156,156, 28,228,231,231, 99,248,240,225,226,217,215,174, 53,174, + 72, 51,196,223,223,164,144,201, 50,238,223,191, 31, 80,167, 78,157,103,210,171,209,104, 32,147,201,176,121,203, 22,113,159,222, +189, 39,116, 62,120,240,123, 0,170,202,230,157, 16, 2, 31, 31, 31,184,187,187,131, 16, 2,155,205,134,244,244,116,220,187,119, + 15,215,174, 93,131,128, 16,219,223,121,142, 75,243, 34,175, 66, 4,139,148, 21,109,113,212, 96, 9, 4,130, 23,142, 98,149,133, + 35, 77,132,114,185,252, 78,106,106,106,235,192,192, 64,216,108,182, 98,131,245,124, 19, 97, 81,180,227,230,205,155,144,203,229, +119, 42,210,164,148,182,108,214,172, 25,118,237,218,133, 83,167, 78,225,201,147, 39,208,235,245, 48,153, 76, 48, 24, 12,184,119, +239, 30,120,158, 71,100,100, 36, 20, 10, 69,133,154, 0,160,211,233,210, 68, 34, 81,132, 76, 38,251, 79,115,135,191, 63,114,114, +114,120,171,213,138, 13, 27, 54,104,252,252,252, 20, 50,153,204, 97,195, 74, 8, 65,102,102, 38,130,130,130,138,251, 96,105,181, + 90,248,248,248, 20, 25, 10,152, 76, 38, 56, 59, 59, 87,216, 68, 72, 41, 53, 2,152, 82, 66,187,233,144, 33, 67,126,219,186,117, +107,181,227,199,143,227,202,149, 43,240,246,246,198,188,121,243,158, 36, 36, 36,140,160,148, 94,251, 27, 46,176, 10,183,201,201, +201,217,121,231,206,157,150,205,154, 53, 43,174, 29, 58,118,236, 72, 58,118,236,232, 85, 50,164,159,149,149,133,171, 87,175,226, +248,241,227, 32,132, 32, 54, 54,214,110, 48, 24,126, 43,231,183,197,161,161,161,235,103,204,152,161,180,217,108,197,101, 91, 38, +147,193,201,201, 9, 98,177, 24, 2,129, 0, 9, 9, 9,232,223,191,191,235, 79, 63,253,180,142, 16, 82,157, 82,106,193, 43, 66, + 62,175,178, 93,189,105,112,115,119, 15,189,125,241,204,186,150,173, 10,235,136,139,103,214,217,220,221, 67,111, 95,189,105,112, +107, 23,172,178, 41, 43,208,217,115, 40,107,170,197,114,173,199,225, 67,119, 6, 78,153, 60, 70, 18, 90, 45, 44,227,194,149, 59, +161,173,236, 83, 56,133, 12,208, 25,128, 92, 21,240,240,177,128, 15,173, 22,150,113,237, 70,180,228,251, 31,214,132,233, 13,230, +221, 7, 79,168, 14, 87,240, 48,102, 36,132, 12,248,240,115,209,153, 55, 71,251, 72, 36, 78,193,208,230,221, 64,149, 80, 79, 12, +125, 45, 2,203, 87,221,128,139,139, 7,124,125,125,193,113,156,194,209,188,103,103,103,147,157,191,159,123,231,141,183,198,180, +232,222,173,183,237,240,145, 63,132,167,142,238,187,184,110,213,231,187,169, 64, 39, 39, 84, 43, 11, 14, 9,186, 29,255, 36,102, + 68,187,118,221, 32,147,200,107, 0,181, 74, 45,176,197, 3, 7, 40,146, 56, 14, 78,111,188, 53,182, 85,247,238,253,108, 71,142, +236,193,145,131, 27, 47,207,154, 85,229,224,147,167, 91,196,151,174,165, 56, 13, 24,252, 94,222,129, 67, 15,204,175,245,173, 26, + 19,160,104,104, 0,227,217, 7, 72,161, 48,195,102, 50, 5, 7,117,239, 46,208, 39, 38,138,148,190,190, 54, 0,176, 90,173, 21, + 26, 44, 0,188, 35,154,142,166, 69,175,215,131, 7,108,142,104,166,103,102, 86, 41,124,248, 46,198,106,181, 22,155,171,156,156, + 28,168, 84, 42, 40, 20, 10,100,153, 76,190,142,104,118,107,222,124,195,236,175,190,154,186, 99,231, 78,113, 73,115, 85,244, 18, +137, 68,248,118,225, 66,241, 71,159,124,242,222, 4,161,112, 98,101,142,103,209,195,186, 64, 32,128, 80, 40, 68, 98, 98, 34,146, +146,146,144,152,152,136,196,196, 68,200,100, 50,208, 50,142,231, 75,140, 96,145, 87,169,236,150, 59, 77, 67,101, 58,185, 59,106, + 8,236,118,251, 75, 53, 88, 58,157,238,248,137, 19, 39,154, 15, 24, 48, 64,120,249,242,101,248,249,249, 21, 27,172,162,191, 69, +205, 78,114,185, 28,187,119,239,182,232,116,186,227, 21, 92, 68, 39, 14, 30, 60,216,100,230,204,153,162,209,163, 71,227,254,253, +251, 24, 55,110, 28, 84, 42, 21, 52, 26, 13,114,114,114,160,215,235,209,188,121,115, 56, 57, 57,225,246,237,219, 86,189, 94,127, +162,130,130, 67, 51, 51, 51,243,189,189,189,253,159,255,110,240,224,193,190, 63,255,252,179,254,225,195,135,214,214,173, 91,187, + 56,106, 52,138,248,253,247,223,139, 35,115, 49, 49, 49,248,249,231,159,139,251, 92,221,184,113, 3,139, 22, 45, 42,158,187,172, +146,133,253, 90,221,186,117,109, 86,171, 21, 53,106,212, 64, 96, 96, 32,140, 70, 35,150, 44, 89, 98,251, 59,204,149,163, 24,141, +198, 29,111,190,249,230,103, 81, 81, 81,254, 66,161,176, 32,116, 93,152, 63,139,197,130, 71,143, 30,225,222,189,123,120,248,240, + 33,114,115,115,139, 31, 0,110,222,188,153,103,181, 90,183,149,165,235,237,237,253,197,218,181,107,253,228,114,249, 51,229,185, + 40,250, 89, 20, 21,205,202,202,130,155,155, 27, 58,119,238,236,115,226,196,137, 47, 0,204,124, 21, 42, 3, 66, 8,105,221, 66, +217,230,195,247,222, 66,179,198,218,199,119,110,220,197,177,131, 75,235, 3, 5,157,220,235, 53,142,124,124, 53,202, 25, 61,187, + 77,109,115,225,242,184,114, 59,185, 23,246,161, 58,216,188,185,199,249, 61,251,142, 47,159, 54,121,204,213, 47,191,154,230, 99, + 52,233,156,106, 85,183,115, 64,129,185,186, 20,165, 48,126,253,213,152,171, 11,126,216,192, 39,101, 90, 38, 93,185,146, 87,230, +232,222,146,166,165,110, 77, 56,249,133,246, 78, 13,173,214,177,234,237, 27,107,224,229,154, 7,231, 26,173,209,179,123,115, 28, + 63,113, 7,137, 79,141, 72, 75, 75,131,201,100, 42,119,218,131,135,183,119,143,162,132,134, 16, 74,146, 8, 71,157, 70,189,249, +110,219,222,189,251,209, 3, 7,246,217,246,236,222,124,126,219,166,101, 59, 56,177, 72,104, 48,187,154, 9, 49,170,121,206,249, +190, 78,151, 83, 80,121,138,197,101,135, 91, 11, 39,100,173, 83,183,150,223,168, 55,199,185,246,234,217,159, 30, 60,184,135,223, +182,117,195,169,109,107,234,109,230, 57,141, 56, 45, 89, 47, 85,107,172,106, 74, 36,110,249, 26, 94,159, 17, 87,221, 24,208,123, +176, 5,140,103,239, 3, 38, 83, 74,126,114,178,191, 71,251,246,210, 71, 95,125, 37,247,109,222,220, 72, 10,251, 8,151,103,176, + 4, 2, 1,192,113,188, 35,154,142,166,197, 96, 48,128, 7,172, 47,162,105,179,217,158, 49, 87, 69, 6,171, 40,158,225,136,230, +170, 89,179, 46,135,116,239,158,123,250,244,105,223, 14, 29, 58, 16,173, 86, 11,173, 86,251,140,201, 10, 8, 8, 32,117, 34, 35, +229,191,159, 58, 21, 54,211,193,227,233, 72,222, 57,142,251,219, 13,214, 43, 23,117, 45,239,203,162, 8,150, 35, 6,203,193, 8, +150,213,106,181,194,199,199, 7,217,217,217,101,222,240, 57,142,131, 76, 38, 43,106, 3, 46,119, 36,157,201,100, 90, 50,117,234, +212, 15,122,246,236,233, 21, 17, 17,129,172,172, 44,248,250,250,194,201,201,169,184,111, 88,145,222,141, 27, 55,176,118,237, 90, +141,201,100, 90, 82,129,230,226,133, 11, 23,190, 63,104,208, 32, 15, 63, 63, 63,184,187,187,227,246,237,219,112,119,119,135, 70, +163, 65,116,116, 52,156,157,157,139,251,229,236,219,183, 79,107, 50,153, 22, 87, 96,218,232,217,179,103, 45,206,206,206,183,179, +178,178, 4,185,185,185,194,188,188, 60,161, 70,163, 17,169,213,106,209,225,195,135,189, 92, 93, 93,245, 39, 79,158,204, 10, 9, + 9, 17, 60,121,242, 68, 96,181, 90, 57, 7,110,138,152, 56,113, 34,196, 98, 49, 76, 38, 19,150, 44, 89,130,169, 83,167, 22,247, +185, 90,184,112, 33,102,204,152, 81,108,152, 87,175, 94, 93, 89,147, 5,139,197, 2,171,213, 10,171,213,234,144,233,253, 43, 56, + 98,212, 41,165,233,132,144, 62,205,154, 53, 59,186,125,251,118,207,194, 57,197,144,145,145,129,140,140, 12,100,101,101, 33, 63, + 63, 31, 54,155, 13,129,129,129,200,200,200,192,158, 61,123,212, 90,173,182,123,121, 35, 8, 5, 2,193,155,109,219,182, 21, 62, +159,134,162,167,186, 34,211, 46,149, 74,145,154,154,138,142, 29, 59, 74, 78,159, 62,253,230,255,186,193, 42, 50, 46,181,195, 33, +238,219,111,184,184, 97,147, 30,250,171,215, 15, 39,202,136, 45,177, 87,151, 26,219,129,130,105, 26,174, 70, 57,163, 97,147, 30, + 92,223, 52,115,115, 85,222,170,134,117,106, 18, 75,121,203,234, 0,128,151, 43,223,191,123,151, 42,105, 46, 46, 68,248,245, 87, + 11,246,255,186,113,117,179, 75,191,255,103,154,134,175,191, 42,152,166,161,123,151, 42,182,251, 15, 99,250, 3,216,232,168,105, +233,211,167,111,212,170, 53,155,144, 18,183, 47, 96,249, 2, 55, 9,140,121,128, 40, 2,109, 91,184,224,202,143, 73,184,117,235, + 86,186,217,108,238, 88,110, 89, 34, 52,228,222,253,187, 53,235,213,173,227, 55,234,205,177, 46,125,250,244,199,129, 3,123,177, +105,195,154,179,175, 13, 31,244,235,211, 60,141,192, 71, 36, 23,203, 41, 47, 17,136, 93,133, 78,114,121,166, 37, 53,181,160,242, + 20,138, 92,128, 33,124, 57, 45,132, 24, 63,118,164,107,167, 46,253,241,199,193,189,216,180, 97,213,153, 47,235, 14, 94, 83,181, + 81,109,210,188,241,119,239, 85,173, 86, 53, 84,151,159,161,225,136,196, 98, 52,242,206,223,109, 72,248, 33,110,198,155,113, 81, +119,135,124,207, 70, 17, 62,195,237, 77,189,122, 53,251,232,241, 99,177,119,155, 54,178,212, 83,167,228,133, 43,135,148,107,176, +132, 66, 33,104,217, 77, 90,207,104,146,141, 27, 57, 0,229, 14,174, 18,139,197,208,235,245,176, 2, 22, 71, 52,253,143, 28, 73, +126,252,248,113,184,135,135,199, 51,230, 42, 55, 55,183,248,189,209,104,132, 94,175,135, 76, 38,187,231,136,102,198,217,179,198, + 5, 19, 39,206, 28, 49,124,248,178,227, 39, 78, 56,121,122,122, 66,173, 86, 63, 99,176,204,102, 51, 58,117,238, 44, 94, 24, 21, + 53, 10,192, 44, 71,142,167,111,199,142, 21,246,247, 21, 8, 4,224,255,230, 38,194, 87, 13,174,162,166, 26, 71, 71, 17,150,118, + 99, 36,132,116,121,238,163, 25, 77,154, 52, 49,198,196,196, 32, 36, 36,164,216,164,148,252, 77, 23, 23, 23,184,185,185,225,198, +141, 27,152, 59,119,174, 1,192,140,242, 52, 41,165, 90,189, 94, 63,172,107,215,174, 6,161, 80,136, 90,181,106, 21,207,127,197, +243, 60, 36, 18, 9, 20, 10, 5,162,162,162,208,183,111, 95,189, 94,175, 31,246,252, 28, 88,165,104,170,245,122,253,235,221,186, +117,211,223,191,127, 31,109,219,182,197,173, 91,183,144,159,159,143,252,252,124,196,199,199,163, 78,157, 58,208,235,245,248,249, +231,159, 13,122,189,254,117, 74,169,186, 60, 77,173, 86,219,119,234,212,169,130,223,126,251,173,106, 96, 96, 96,221,166, 77,155, + 70,116,238,220,185,250,192,129, 3, 67,123,245,234,229, 31, 30, 30,110,236,222,189,187,119,207,158, 61,189,245,122,189,232,194, +133, 11,105, 86,171,181,103, 5,199,179,216,148,196,196,196, 20, 55, 9, 10,133, 66,100,103,103, 23,207,180, 95, 84, 25,149,102, +128,203,210, 44,105,178,139,140, 85,145,209,170,168,238, 47, 67,179,194, 27,134, 68, 34, 41,138,112,210,138, 52, 41,165, 55, 31, + 60,120,208,181,125,251,246, 55,223,121,231, 29,109,122,122, 58,156,157,157, 17, 22, 22,134,154, 53,107,194,203,203, 11, 22,139, + 5,187,119,239,214,237,217,179,231,142, 90,173,238,248,252, 28, 88,207,107,114, 28, 23, 95, 90,229, 90, 20,189, 42, 50, 88, 78, + 78, 78, 8, 12, 12, 44, 58,182,241,149, 57,158, 47, 24, 89,250,123, 53, 11,141, 75,231, 78,221,171,245,234, 61,192,117,207,190, +189,242, 31,127, 89,255,160, 93,255, 15, 86,120,133, 78,217,229, 21, 58,101, 87,187,254, 31,172,248,241,151,245, 15,246,236,219, + 43,239,213,123,128,107,231, 78,221,171,221,191,247, 48,226,153,117, 9, 75, 73,167, 92, 34,109,222,174,117,184,234,236,133,179, +182, 5, 63,108,176,183,110,213,235,202,178,101, 43,182, 45, 91,182, 98, 91,235, 86,189,174, 44,248, 97,131,253,236,133,179,182, +118,173,195, 85,114,137,180,185, 35,121, 31, 63,118,164,107,239, 94,253,113,224,192,110,219,142,223,127, 94,184,122, 83,106,251, +142, 3, 83, 50,226,227,174, 81,232,215,195,203,249, 54, 30, 60,120,160, 54,155,205, 29, 75,235,224, 94,154,230,184, 49, 35, 75, +154,171,115,158,126,109, 87, 63,120, 0,251,177, 99,251,173, 39, 78, 68, 25,206,221,204, 84, 95,191,159,157,155,163, 49, 62,209, +105, 53,102,158,231, 65,121,187, 96,246,236,130,142,184,101,157,163,214,173, 59,224,228,241, 45,216,176,126,165,154,231, 97, 28, +188,125,187,125,200,144,175,104,104,149, 42,161,155,127,223, 66,250,244, 27,224, 74, 1,190,239,160,254,110,191,109,253,141, 84, +171, 81,173, 74, 88, 88,193,212, 52,255,147,101,233,111,208,156, 69,105,158, 38, 49,241,204,141,159,126, 50,249, 14, 27,230, 33, +241,245,117,129,221, 78,138,234,247,178, 94, 66,161,240,153,136, 75,121,154,129, 94, 94, 79,247,237,219,135,154, 53,107, 34, 48, + 48, 16, 37,251,192, 22, 77,164,237,233,233,137,157, 59,119,130, 2,215, 29,209,108, 84,181,234,141,111, 23, 44, 48,243, 60,143, +188,188,188, 63, 69,175,242,242,242,192,243, 60, 14,254,241,135, 89,147,159,191,193,209,188,119, 20, 8,242, 71,180,107, 55,191, +119,239,222,150,199,143, 31,131,231,121,148,140,100,101,102,102, 66,169, 84,194,104, 50, 5, 19, 66,228,142,104,102, 30, 62,172, + 64, 5,245,250,243, 17,172,191,227,188,255,171, 34, 88, 54,155, 13,193,193,193,207, 44,189,194,113,220, 51,175,202,140, 32,164, +148,110, 36,132, 28,233,222,189,251,204, 22, 45, 90,140,159, 57,115,166, 32, 34, 34, 2,106,181, 26,238,238,238,240,241,241, 65, +116,116, 52,246,237,219,103,207,206,206, 94, 1, 96,142, 35, 67,225, 41,165,167, 8, 33,125,234,215,175,191,117,218,180,105,174, +221,186,117, 19, 5, 7, 7,131, 82,138,168,168, 40,236,218,181,203,178,102,205, 26, 77,161,185, 58,229, 96, 90,143, 18, 66, 94, +235,217,179,231,230, 55,223,124,211,217,110,183,139,226,227,227, 97, 50,153, 96,181, 90,145,148,148,100, 57,112,224, 64,190, 94, +175, 31, 73, 41, 61,234,128,222, 13, 66, 72,157, 99,199,142,189,121,225,194,133,185,239,188,243,142,103,231,206,157,197, 54,155, + 13,231,207,159,207,106,212,168,145, 79,102,102,166,101,231,206,157, 57, 70,163,113,134,221,110,119,104,169, 28, 66, 8, 52, 26, + 13,188,188,188, 96, 50,153,192,243, 60,204,102, 51,148, 74,101,241,242, 70,148, 82, 84,166,211,252,115,101, 64, 96,177, 88, 48, +124,248,112,240, 60,143, 37, 75,150,192,102,179, 85, 90,204,213,213,245,250,205,155, 55,251, 52,108,216,176,216,180, 20,149, 33, +169, 84, 10, 47, 47, 47,120,122,122,226,192,129, 3, 16,137, 68,215, 29, 60, 71,183, 0, 52, 34,132,180,186,115,231,206, 27, 0, + 26, 90, 44,150, 64,187,221, 78, 56,142, 75,163,148,222,214,104, 52,191, 58,186, 84, 78,102,102,230,220,183,222,122,171,209,150, + 45, 91,148, 66,225,127, 46, 13,161, 80, 8,169, 84,138,162, 73, 45, 41,165, 48,155,205,248,226,139, 47, 52, 58,157,110,238,171, + 82, 25, 52,105,218, 28,171,126, 94,170, 60,113,242, 72,214,131, 88,236, 45, 57, 21,131, 18,192,133,203,227,246,170,242, 86, 53, + 76, 77, 78, 86, 54,105,218,220, 33, 77,179,221,150, 51,108,228,138,224,194,165,114,230,198, 63, 73, 92,188,101,253,187,113, 0, +240,253, 15,107,194,146, 50, 45,147,238, 63,140,233,255,203,138,211,205,205,118, 91,142, 35,154,255, 49, 45,155,213,160, 48, 82, + 74,175, 16, 66,170, 70,180, 50,206,136,172, 37,238,151,154, 97,125,154,159,111,254,144, 82, 26,231,104,222,219,180,110,143,147, + 71,127,195,166, 13,155, 53,148, 23, 24,189,188,188, 40, 0, 60,120,224, 69, 31, 60, 80,209,255,244, 23,118,211,121,203,179,230, +204,152, 62,126,178, 86,171, 93,188,252,187,242, 39,156,173,223,160, 5,234, 55,104,129, 15, 62,252,220,181, 78,221, 90, 33, 0, +176,125, 59,181, 71,134,147,253, 51,191,252,170,223,156, 57, 95, 65,163, 53, 97,206,156,130,101,117,162,239,222,255,227,241, 99, +106,102,183,166,103,153,105,179, 93,193,228,201,225,250,220, 92,239, 54,159,125,230, 37,252,228, 19,174,188, 78,238, 37,175, 95, + 71, 52,175,221,190,253,199,184,119,223,125, 58,107,230,204,238, 43, 86,174,148,213,171, 87, 15,233,233,233,168, 85,171, 22, 2, + 3, 3,113,236,216, 49,236,220,182, 77,167,210,106,103, 0,248,197, 17,205,141, 7, 15, 70, 71,212,173,155,189,114,229,202,128, +222,189,123, 19,157, 78, 7,181, 90, 13,181, 90, 13,147,201,132,194,137,156,105, 76,108,236, 3,171,213,186,194,209,188,219,179, +178,156,230, 52,111,158, 34,230,249,111, 95, 27, 52,104,234,156,175,191,150, 86,171, 86,141,152, 76,166,226, 40,150,197, 98,129, + 82,169,180,152,205,102, 79, 0,122, 71, 52,165,107,214,216,178,178,178,224,237,237, 93, 60,237, 82,201,121, 5,181, 90, 45, 40, +101,147,224, 86,234, 65,161,172,123,184,135,135,199,117,161, 80, 24, 84, 50,154, 85,218,218,118, 37, 63,179, 90,173, 41, 89, 89, + 89, 77, 74, 58, 92, 74,233,241, 50,140, 65, 24,128,121,157, 58,117,122,109,202,148, 41,228,244,233,211,216,179,103, 15,141,139, +139,219, 1, 96, 70, 89,149, 99, 5,154,206, 82,169,244, 99,133, 66,209,165,104, 42, 6,185, 92,126, 71,167,211, 29, 55,153, 76, + 75,202,154,189,189, 2, 77, 23,169, 84, 58, 81,161, 80,116,213,106,181, 13, 1,192,217,217,249,166, 78,167, 59,102, 50,153,150, +150,181,128,116, 5,154, 50, 87, 87,215,185, 94, 94, 94,175,127,242,201, 39,158,103,207,158, 77, 59,121,242,164, 88,165, 82,109, + 49,155,205,101, 46,246, 92,154,166,167,167,231,117,129, 64, 16,244,119,156, 35, 0,104,208,160,193,129,190,125,251,246, 30, 57, +114, 36,172, 86, 43,126,249,229, 23, 28, 59,118,236,143,216,216,216, 62,229, 61,125, 62,175, 73, 8,241, 10, 10, 10, 58, 61,126, +252,248,208,225,195,135,203,221,221,221, 33, 20, 10,161,211,233,240,232,209, 35, 68, 69, 69,209,189,123,247,230,223,184,113, 35, + 69,175,215,119,160,148,102, 59,122, 60,255,202, 83,242,243,154, 34,145,168,125,112,112,240,239,179,102,205,114,238,218,181,171, +204,211,211, 19, 2,129, 0, 86,171, 21,105,105,105,184,123,247, 46,142, 28, 57,162,219,177, 99,135, 46, 39, 39,103,248,243,115, +181,252,127,165,243,101,106,214,169, 73,190,124,110, 1,231, 50,103,103, 47,111, 91, 71,210,217,187,139,123,175,215, 94,107,218, + 5, 0,118,238,188,118,252,143,227,121, 7, 95, 52,157, 21,165,213, 17,205,218,225,130, 89,247,238,223,125,102, 34,202,186,117, + 34, 99,106,215, 27,244,141, 35, 90, 69, 51,185, 63,159,247, 18,179,227,151,140,225, 62,211,156, 90,180, 32,244,231, 51,166, 99, +222,220,249,216,187,125,247, 31,247, 31,211, 3,255,203,101,233,239,212, 44, 90,156, 88,238,239,223,110, 9,207, 79,191,117,247, +174,178,228,131, 90, 81,164,185,228,195,100, 64, 64, 64,102,106,106,170,175, 35,154,125,126,252,209,162, 87, 40,164,211,191,253, +182,125,190,209,216,126,206,156, 57,194,107,215,174,225,231,159,126,178, 25, 83, 82, 54,103, 1, 19, 75,107,253, 40, 79, 51,116, +226, 68,167, 79,127,254,121,116, 88,141, 26, 62,111,188,241,134, 72, 36, 18, 65,167,211, 33, 57, 57, 25, 71,143, 28, 49,223,127, +240,224,190, 70,163,233, 71, 41, 77,117, 84,179,207,143, 63, 90,220,194,194, 32,247,246,166, 39, 78,157,114, 29,247,241,199,227, +171, 84,173,234,218,189, 71, 15,145,139,139, 11,242,242,242, 16, 31, 31,143,221,187,119,103,230,231,231, 7, 80, 74,237,142,104, +110,190,112,161,254,193, 51,103, 6,127,243,205, 55,146,200,200, 72,184,186,186, 66,171,213,226,238,221,187, 56,115,230,140,105, +197,138, 21,106,181, 90, 61,222,102,179,237,251,187,206,251,191,198, 96,253,127, 93,120,132,144, 38, 0,190, 44,252,247,107, 7, +214,244,123,101, 42, 29, 66, 72,136,135,135,199, 42,163,209, 72, 13, 6,195, 56, 74,105,210,127, 91, 58, 9, 33,194, 38, 77,154, +252,156,153,153,217,138, 82, 10, 87, 87,215,139,247,238,221,155, 64, 41,181, 85, 86,147, 16, 34, 0,208, 74,169, 84, 54,119,118, +118,110,111, 50,153,106, 23, 54,179, 61,208,233,116,103, 44, 22,203, 21, 0, 23, 41,165,246,127, 50,239,133,233,236, 26, 16, 16, +240, 46,207,243, 53, 8, 33,110,118,187, 29, 86,171, 85,197,243,252, 35,181, 90,189, 6,192,177,127, 58,157, 47, 75,179,110, 13, + 50,144,114,168, 93,150, 17,120,198,208, 60,103, 28, 8,143, 7,247, 30,209,221,149, 40,243,220,128,158,222,139,128,130,145,134, + 21, 45, 57,244,140,193,114,192,180, 84,218, 92,214, 16,190, 69, 9, 13,121,182, 82, 36, 73,181,234, 15,220,244, 87, 12,150,163, +212,141, 32,237, 65,209,138,167,184,242, 32,150,158,124, 85,235,186,151,169, 57,159, 16,143,159,220,221, 47,114, 66,161, 31, 0, +174, 48,218,194,243,132,216, 41, 33,182,146,205, 88, 37, 31, 40, 43,210,180, 0,245, 68, 82,105,176,221,102,243, 77, 7,148, 7, +237,246,198, 70, 74,243,131,128, 47,163, 40,141,126,145,116, 90,128,122, 2,169, 52,228, 32,165,253,179, 20,138,250,153, 6,131, + 55, 0,170, 84, 40, 30,104,116,186, 13, 70,163,113,121, 41,139,170, 87,168, 41,150, 74,131,236, 54,155, 47, 0,112, 66, 97,230, + 86,147, 41, 56,197,197,229, 13,163,201, 20,170, 84, 42,173,102,179, 89, 99, 52, 26, 71, 90,173,214, 19,149,201,251, 35,155,173, +206, 5,142,107,107, 81, 40, 60, 45,132, 40,204, 54,155,197,108,177, 36, 27,141,198, 59, 0,126,160,148, 62,254, 59,207,251, 43, + 71,209,104,179,191,227, 5,160, 11,211,100,154, 76,147,105, 50, 77,166,201, 52,255,126, 77, 0,114, 0, 33, 0, 4,255,139,121, +127,213, 94, 66,102, 49, 25, 12, 6,131,193,120, 37, 2, 38,122,148,210,231,138,241, 15, 53, 17, 2,232, 82,198,137,114, 56,244, +247, 34,163, 9, 28,104, 74, 96,154, 76,147,105, 50, 77,166,201, 52,153,230, 43,166, 89,145,246, 43,211,244,200,154, 8,153, 38, +211,100,154, 76,147,105, 50, 77,166,201,154, 8, 95,238,139, 3,163, 44,103,237, 75, 8,241,125,217,219, 50, 94,237,178, 80,202, +190,129,132,144,192, 74,110,239,207,142, 58,131,193, 96,252,111,243,255,110,176, 28,189, 89,253,197,155,218, 95, 50, 60,132,144, +249,132, 32,181,224, 69,230,191,172,109, 29,248,221, 0,111,111,239,143,234,214,173,187,217,207,207,239, 3, 66,136, 79, 37,247, + 15, 87, 40, 20, 75,149, 74,229,105,165, 82,121, 90,161, 80, 44, 37,132,132,191,164,243, 70, 8, 33,227,156,156,156, 78, 5, 4, + 4, 60,149, 74,165,167, 8, 33,227,201, 11, 46, 64, 73, 8,169, 78, 8,153, 76, 8,153, 66, 8,137,168,204,190,190,145, 3,182, +249, 68, 14,184,237, 19, 57,224,174, 87,189,126,225, 62,145, 3,238,250, 68, 14,184,237, 27, 57, 96,219,223, 80, 94, 95,248,252, + 22,238,155, 84,240,170,120, 95, 66,200, 15, 4, 72, 38, 4, 41,127,181, 44, 49, 24, 12, 6,227,159,165, 82,157,220,131,130,130, +122,242, 60, 63, 2, 0, 56,142,251, 45, 37, 37,229,208, 11,220,112, 62, 45,124,191,144, 82, 58,253,175,108,231,192,190,139, 41, +165, 83, 43,111,206,240, 41,207, 83,174, 32,159,228, 51, 95, 95, 95,185, 64, 32,248, 83,199, 65,187,221, 46, 39, 4, 31,240,124, +193, 2,149, 28, 71, 62, 37,132, 44,165,148,102,188,136, 41, 28, 53,106,212,226,165, 75,151, 58,201,229,114, 36, 38, 38,118, 27, + 63,126,124,107, 66,200,100, 74,105, 90, 69,251,203,100,178, 17,205,154,183,154,252,237,119,223, 43,125,125,124, 20, 54, 59,111, +137, 79, 72, 80,124, 49,125,106,115,153, 76,182,180,188, 69,142,159, 55, 82, 0,198, 10,133,194,161, 78, 78, 78,213,141, 70,227, + 99,155,205,182, 67, 32, 16,116,159, 59,119,110,100,175, 94,189,156, 52, 26,141,196,102,179,213,216,180,105,211,228,181,107,215, +246, 36,132,244, 47,111,184,125, 81, 4,135, 82,250,180,196,199, 61,147,146,146,234,137, 68, 34, 84,175, 94,157, 0,136,174, 96, +251, 98, 40, 16,126,239,252,246,122, 0, 80,183,205,144,152,123,231,183,163,240,253,223,240, 48,240,108, 89,144,201,100,191, 24, + 12,134,228,162,239, 11,211,153,225,200,190,132,144,101,133,203,252, 68, 2, 24, 84,184,233, 46, 74,233, 93, 66,136,159,147, 84, +250,177,193,104, 36, 0,200, 95, 41, 75, 12, 6,131,193,248, 31, 51, 88,148,210, 55, 30, 61,122, 36,231,121, 30, 17, 17, 17,163, + 0, 56,108,176, 74,187,225,116,238,220,185,145, 76, 38,123,102,214, 98,131,193, 32, 33, 4,157, 95,196,180, 20,253,134,217,108, +226, 68, 34, 9, 56,142, 76,174, 95,191,126,149,236,236,236,179, 28,199,109, 78, 73, 73,201,123,129,155, 44, 86,175, 94, 93,211, +223,223,255, 79,179, 43,167,165,165, 73,250,247,239, 87, 41,189,209,132, 72, 77, 82,105,115, 49, 33,254,118,155,205, 13, 0,132, + 66, 97, 94,132,171,107,147,121,223,124, 35, 39,132,240, 57, 57, 57, 48, 24, 12,152, 52,105,146,236,254,253,251, 3, 0, 44,175, + 32,141, 53, 91,180,108, 61,233,200,145,195,181, 53,185,121,198,213,139, 87, 69, 25,132, 34, 93,181, 58,181, 37, 63,175,218,224, + 54,118,244,200, 15, 9, 33, 55, 75, 91, 54,228, 57, 29, 14,192,238,143, 63,254,184,110,159, 62,125, 36, 90,173,214,201, 96, 48, + 84,217,188,121,243, 23, 77,154, 52, 81, 54,108,216, 80,242,251,239,191, 19,181, 90, 13, 74,169,188, 86,173, 90,116,232,208,161, +198,173, 91,183,126, 0, 96,153, 35,134,215,223,223,127,102,161, 65, 47, 89,246, 68, 1, 1, 1,178,194, 99, 58,135, 16, 76, 42, +207, 92, 19, 32,182,110,155, 33, 0, 65,141,123,231,183, 59,213,109, 59,196, 8,138, 71, 4,136, 5,128,192,192,192, 57, 64,137, +121,157,158,229,193,211,167, 79, 95,104,237,192, 62,125,250,130, 82,250, 75, 96, 96,224,129,140,140,140, 72, 66, 48,206,209,135, + 0, 66, 8, 60, 61, 61, 95, 3,240, 35,128, 97, 15, 31, 62,172, 11, 0,181,106,213, 18, 1,184,235,230,230,214,216, 84, 96,174, + 24, 12, 6,131,241, 47, 52, 88, 98, 0, 56,123,246, 44, 40,165,146, 23, 9, 10,148,188,225, 76,156, 56, 17,254,254,254,207,155, + 22,156, 62,125,234,175,228,233,153,223,248,250,235,175,149, 42,149,170,203,175,191,254,218, 46, 48, 48,112,209,211,167, 79, 47, + 87,144,199, 12, 66,200,194,194,136, 3,164, 82,167,152,241,227,199, 71, 21,126, 93,101,255,254,253,242,190,125,251,234, 1, 36, + 0,128, 84,234, 20, 40, 16,112, 53, 11, 58,181, 97, 97,121, 70,112, 8, 33, 97, 18,137,164,211,184, 31,127,180, 53,238,219, 87, +168,240,246, 38, 0,144,240,240,161,231,194,239,190,107,157, 23, 23, 39, 49,120,122,230,228,232,116,134,152,152, 24, 72,165, 82, + 34, 16, 8, 26, 87,148, 97,133, 66,241,209, 55,243, 22, 42, 52,185, 42,131, 73,147,111, 22,216,173, 38,103,153,204,158,158,158, +145,173,148,203,245,211,191,156, 45,126,111,204, 27, 31, 1,152, 80,129,212, 7,147, 39, 79,174,221,172, 89,179,192,109,219,182, + 17,181, 90, 13,161, 80,168,108,216,176, 33,154, 52,105, 98, 63,121,242, 36,169, 90,181, 42, 34, 35, 35,113,254,252,121, 92,188, +120,145, 52,106,212, 72,190,107,215,174, 81,165, 25,172, 82, 76,245,228,150, 45, 91, 6, 43,149, 74,163, 70,163,193, 59,239,188, + 3, 0,232,218,181,107, 77,133, 66,241, 75,126,126,190,211,190,125,123, 95,171,200, 92,103,220,221, 51, 20, 0,124, 34, 7,220, + 6, 80, 15, 20,143, 50,239,238,169, 95, 98,147,218,209,209,209, 45,242,242,242,138, 59, 27, 22, 45, 44,222,174, 93,187,202,148, +247, 12, 66,200,194,126,253,250,126, 6, 16,116,232,208, 33, 99,226,196,137,244,238,221,187, 3,135, 12, 25,220, 57, 54,246, 81, +153,233,124,190, 28,141, 24,241,250, 19, 15, 15,143,174, 1, 1, 1,177, 0,132, 34,145,168,104, 83, 65, 96, 96,160, 71,100,100, +228,112,165, 82, 25, 47,224,184,170, 20,148, 86, 84,150, 24, 12, 6,131,241, 63, 96,176, 8, 33,180,196,141,129,148,243, 20,158, +125,243,230, 77,127,163,209, 8, 66, 72,182, 3, 55,168,227, 37,111, 56, 2,129,224,103,142, 35, 19, 8, 33,136,140,172,247,100, +201,146, 37,165,173,185,101,142,140,172,247, 68, 32,224,170, 81, 74, 65, 8,247, 11,207,219, 51, 74,211, 44,235,134, 40,145, 72, + 63, 5, 0, 63, 63,255,184, 67,135, 14,153, 7, 15, 30,140,239,190,251, 78, 60,109,218,180,169,161,161,161, 31, 36, 38, 38,166, +151,149,206,194,255,167,251,250,250,202, 87,175, 94, 93,115,252,248,241, 81,169,169,169,211, 1, 32, 32, 32, 96, 62,128, 58, 0, + 18, 74,124,134, 21, 43,182, 62, 29, 51,102, 76, 76, 70, 70,198,244,178, 52, 95, 35,164,122,104,173, 90,157,230,156, 61, 75, 57, +147,137,100,159, 59,167,201,202,200,176, 62,206,202,146,175,191,126,189,207, 23,243,231,139,130, 67, 66,112,122,223, 62,175,108, +189, 62, 75,109, 50, 25, 51, 50, 50,168,205,102,187,232, 64,222,235,250,120,123,203, 87,254,240,203, 53,103,145,128,247, 13, 12, + 36, 66, 15, 55, 17, 39,119,149,112, 66,161,177, 90,104, 13, 49,128,186, 21,157, 35,177, 88, 60,170, 91,183,110,242,173, 91,183, +146,200,200, 72,184,185,185,225,220,185,115,184,121,243, 38,172, 86, 43,151,151,151,135,166, 77,155,226,219,111,191, 69, 72, 72, + 8, 84, 42, 21,146,146,146,188, 36, 18,137,119, 57,199,243, 25,195, 59,117,234, 84, 4, 7, 7,195,102,179, 33, 55, 55, 23, 54, +155, 13, 10,133, 2, 0,144,144,144,128,253,251,247, 85, 88,150, 28, 52, 71,104,217,178,165,150, 16,242,224,249, 8, 86,101, 52, +253,253,253, 55,100,102,102, 53,234,216,177, 35,212,106,181,121,214,172, 89,168, 95,191, 62,106,214,140,112,164,204, 79,151, 74, +165,107, 66, 66, 66,190,252,228,147, 79, 60, 60, 60, 60, 96, 50,153, 62, 76, 75, 75,195,248,241,227, 1, 0,189,123,247,174, 37, + 20, 10,215,191,243,206, 59,168, 82,165,202, 67,173, 86, 27,125,243,230,205,105,249,249,249,247, 95, 52,239, 14, 30, 31,166,201, + 52,153, 38,211,252,175,210,116,212,139,252, 79, 25, 44, 74, 41, 33,132,208,138, 50, 68, 41,205, 11, 12, 12,244,151,201,100,160, +148, 86,186,185,205,110,183,127,224,229,229,149, 57,125,250,244, 54, 53,107,214, 52,127,240,193, 7,119,227,227,227,103,148,220, +166,106,213,170,115,127,250,233, 39,196,196,196, 36,204,159, 63,255,124,118,118,246,215,149, 60,233,211, 8, 33, 75, 10,163, 97, +217,251,246,237,171,127,246,236,217, 9,139, 23, 47,246,126,255,253,247,197, 31,125,244,209, 72, 0,223, 85,164, 35, 16, 8,244, +165, 53, 11,150,113, 19, 54,151,214, 71,171,136,190,132,200, 92, 36,146,142,115,206,158,165,230,132, 4,253,218,239,191,119, 94, +121,245,234, 44, 43,165,190, 62, 62, 62,104,219,186,117,190,147, 64,144,157,153,158,206,251, 84,175, 46,136, 63,116,200,203, 32, +145,164,110,221,186, 85,157,147,147,179,199,129, 66,169,177,243,188,197, 57, 48,216, 54,120, 96,183,186,215,174,220,124,232,236, +237,197, 53,105, 20, 89,239,126, 76,194, 13,106,183, 91, 9, 33,154,138,116, 92, 93, 93,107,230,228,228, 64,163,209,192,219,219, + 27, 75,150, 44,129,159,159, 31,244,122, 61, 46, 93,186, 68,131,130,130,200,217,179,103, 17, 20, 20,132,172,172, 44,152,205,102, +104,181,218, 76,147,201,100, 40,203,240, 10,133,194, 53, 28, 71,222, 5,128, 42, 85,170, 62,248,229,151, 95,140, 0, 80,187,118, +109, 12, 28, 56, 16, 59,119,238,196,253,251,247,193,243, 60, 40,165,198,160,160,224, 7, 28, 71,106, 23,122,164, 23,142,226, 20, + 45,193,243,244,233,211, 65, 47,120,161, 19, 63, 63,191,129,181,106,213, 26, 57, 98,196, 8,179, 72, 36,130, 94,175,135, 94,175, +199,131, 7, 15,204,221,186,117,203,232,215,175,175,239,129, 3, 7,202, 77,167,201,100,122, 18, 16, 16, 48,117,242,228,201, 75, + 86,172, 88,225,242,197, 23, 95,192,110,183,131,231,249,226,191, 69,239,247,236,217,131,184,184,184,165, 37,205, 21,131,193, 96, +252, 91,112,212,139,252, 79, 25,172,255, 79, 4, 2,193,202,163, 71,143, 54,108,215,174,157,176,115,231,206,145, 65, 65, 65,145, + 41, 41, 41,119, 1, 32, 40, 40, 40,178, 71,143, 30,145, 62, 62, 62, 88,186,116,169, 94, 32, 16,172,124,193,147, 84,242,102, 23, +229,239,239,191,104,215,174, 93, 11,199,141, 27, 7, 63, 63,191, 58,255,223,121,118,145, 74, 27,189,179,100,137, 77,100,181,114, + 63, 46, 90,228,242,253,169, 83, 11,183,109,223, 46,108,217,178, 37,161,148,226,206,237,219,178,111,151, 45,147, 15, 31, 48, 32, + 33, 58, 46,206,182,247,200, 17,107,198,211,167,185, 79,179,178,102, 82, 74,115, 43,210,183, 90,173,151, 98, 31,197, 6,182,233, +216, 42,224,220,213,123, 55, 7, 13,232,213, 73, 36,228,200,163,132,167,215,253,253,188, 92, 79,159, 58,102,180, 90,173,151, 42, +210,209,233,116,241, 54,155,205,131, 82,234,125,250,244,105,120,123,123, 35, 47, 47, 15, 86,171, 21,102,179,217,172,215,235,157, +114,114,114, 96, 52, 26, 97, 50,153,224,226,226,130, 59,119,238,100,216,108,182,147,101,105,218,108,182,177, 78, 78, 78,243, 40, +165, 34,147,201,148,122,252,248,113,136,197,226, 96, 87, 87,215,233, 86,171, 21,169,169,169,184,112,225,194,124,139,197,146, 92, +180,143, 68, 34,245, 54,153, 76,182,178, 58,185, 59, 26,193,122, 81,130,130,130, 2,170, 86,173, 58,121,218,180, 79,107,212,175, +223, 16,217,217,217,224,121, 30, 74,165, 18,122,189, 30, 46, 46, 46,104,213,170, 85,212,220,185,115,115, 41,197,180,138, 76, 96, +106,106,106, 78, 72, 72,200,204,241,227,199, 79,174, 81,163, 70, 8, 0,132,135,135,163, 91,183,110, 56,116,232, 16, 98, 98, 98, +144,159,159,111,191,118,237,218,254,212,212, 84,182,182, 23,131,193, 96, 48,131, 85,121, 50, 50, 50,178,130,130,130, 14,223,184, +113,163,207,208,161, 67,113,250,244,233,183, 0, 76, 6, 0,169, 84,250,214,208,161, 67,113,227,198, 13, 60,124,248,240,112, 70, + 70, 70,214,203,248, 77,137, 68, 98, 52,155, 11,130, 81, 78, 78, 78, 78,149,220,189, 74, 97,211, 32, 0, 84, 41,231,179, 50,225, +132, 66,255,122, 61,122, 8,243,110,222,212,172,190,114,229,235,205,155, 55, 11,219,180,105, 67,172, 22, 11,236, 60,143,176,176, + 48,210,185, 75, 23,197,186,205,155, 61,236, 58,221,217,111, 62,251,236,220,170,119,222,201,143,161, 52,193,145, 4,154, 76,166, +101, 31, 78, 24,219,245,196,169,179, 1,181,106,133,121, 30, 62,118, 42,202,211,195, 85, 94, 51, 60, 92,145,155,151,103,159, 49, +237, 83,161,201,100,250,177, 34, 29,131,193,176,251,248,241,227, 3,130,131,131,189,239,222,189, 11,179,217, 12,187,221,142,206, +157, 59,131, 82, 42, 5,192, 11,133, 66, 60,124,248, 16, 22,139, 37, 51, 54, 54, 54,245,209,163, 71, 82, 0, 11,202,211, 53, 26, +141,137, 37,255, 15, 9, 9,105,211,187,119,111,216,108, 54,244,232,209, 3,251,246,237,107,147,154,154,186,186,196, 38,137, 47, +225, 73, 8,148,210,218,129,129,129,187, 10, 63,114,168,115,187,191,191,127, 68,120,120,248,220,249,243,231,139,130,131,131,193, +243, 60, 60, 60,220,160,211, 25,144,147,147,131, 58,117,234, 32, 56, 56, 24,223,126,251, 45, 80, 48, 2,208,161, 8, 91, 82, 82, + 82, 60,128, 15,234,212,169, 35,214,106,181,145, 6,131, 97, 86,231,206,157, 17, 21, 21,133, 75,151, 46,125,168,211,233,114, 21, + 10,133, 53, 32, 32, 96, 4,199,113, 10,139,197,178, 47, 51, 51, 51,147, 85, 81, 12, 6,131,241,138, 27, 44, 95, 95, 95,185,147, +147,211,235,239,190,251,174, 27,207,243, 16,139,197,245,188,188,188,230,101,103,103,231, 87,246, 71,245,122,253,182,205,155, 55, +119,251,225,135, 31,196,189,122,245,170, 30, 20, 20,212, 12, 0, 6, 13, 26, 84,221,217,217, 25,155, 55,111,182,232,245,250,151, + 54,167,145,213,106,109,215,180,105, 83,228,230,230, 34, 33, 33,225,110,101,246,221,191,127,191, 28, 5,253,174,202,253,172, 60, +108,102,179,187, 91, 96, 32,247,244,212, 41, 75,174, 70,227,223,174,125,123, 98,181, 88,192,113, 28,114,114,114,144,148,148, 4, + 87, 55, 55,242, 48, 54, 86,185,230,211, 79,247, 87,105,208, 64, 98, 55,155, 61, 43, 97, 38,116,132,144,183, 62,252,224,253,221, + 91,182,252,230,165, 82,105,226,156,100, 50,179, 84, 34,242,253,232,131,247,237,185,185,185,111, 82, 74, 29, 57, 79, 11,182,108, +217,210,163, 71,143, 30,183, 67, 66, 66,124,178,178,178,252, 84, 42,149, 61, 55, 55, 87,128,130,190, 84, 4, 0, 78,157, 58, 5, +141, 70, 99,179,219,237,103, 1,204,161,148,154, 29, 77,171,135,135,135,115,199,142, 29, 91,248,250,250, 66,163,209,192,203,203, + 11,141, 26, 53,106,225,225,225,177, 45, 55, 55, 87,251, 50, 11,247,177, 99,199,156, 41,165, 45, 40,165,232,209,163,135, 67,251, + 16, 66, 6,247,238,221, 91,196,113, 28, 12, 6, 61,164, 82, 39, 40,149, 46,112,118,118, 69,205,154, 53,145,154,154,138,238,221, +187, 91, 98, 99, 99, 55,165,165,165,253, 81,217, 52,169,213,234,174, 45, 91,182,124,119,194,132, 9,176,219,237,232,223,191, 63, +146,147,147,191,140,143,143,223,239,229,229, 53,224,237,183,223,246,240,244,244,196,148, 41, 83,100, 0,150,176, 42,138,193, 96, + 48,254,199, 13, 86,121,109,158, 65, 65, 65, 77,189,188,188, 62,116,118,118,118, 59,121,242,164, 2, 0,218,180,105, 3,158,231, + 87, 6, 4, 4,252,156,154,154,122,161, 50, 63,154,151,151,167,241,247,247,223,123,233,210,165, 33,131, 6, 13,194,177, 99,199, +222, 44, 52, 88,184,116,233, 18,158, 60,121,178, 55, 47, 47, 79,243, 50, 50, 24, 20, 20,212,179, 67,135, 14,131,154, 54,109,138, + 3, 7, 14,192,110,183, 95,172,204,254, 37, 71, 12,162,148, 81,132, 69,159, 57, 36, 38, 16,128, 16, 2,155,205, 6, 0,200,206, +202, 66, 76,116, 52,114,243,242, 96, 50, 26,161,211,235,237, 53,171, 86, 53,168,205,102, 17, 1, 42,213,198, 69, 41, 77, 84, 42, +149, 73,122,189,206,199,195,203,221,160,112,114,130, 74,163, 22, 95,191,118, 89, 75, 41,125,236,160,134,153, 16,210,254,208,161, + 67, 51, 5, 2,193, 80,165, 82,137, 9, 19, 38, 8, 58,116,232, 0,177, 88, 12,147,201, 4,149, 74,133,205,155, 55,103,217,108, +182,106,133,134, 68,169, 80, 40, 54, 8, 4,130, 20,141, 70,243, 69, 69,191, 33,149, 74, 59,244,235,215, 79, 96, 50,153, 48,103, +206, 28,204,156, 57, 19, 61,122,244, 16, 92,189,122,181, 3,128,125, 47,171, 96,243, 60,143,174, 93,187,150,236,228,254,192,145, +253, 68, 34, 81,205, 26, 53,106, 32, 43, 43, 11, 89, 89, 89,240,246,246, 70, 64, 64, 0,124,125,125,177,120,241, 98,186,100,201, +146, 51,118,187,125, 83,122,122,122,246, 11,148,197, 17,111,189,245,214,240, 33, 67,134, 64,167,211,225,228,201,147,104,221,186, + 53,190,253,246, 91,239,115,231,206,189,219,180,105, 83,136, 68, 34,156, 57,115, 6, 22,139, 37,149, 85, 79, 12, 6,227,223,198, +171,210,255,170,194, 8,150,187,187,187,139,147,147,211,184, 62,125,250,180, 25, 48, 96, 0,230,205,155, 91,252, 29,199,113,216, +184,113,163,114,247,238,221,159, 5, 7, 7,183,231,121,254,151,167, 79,159,230, 58,250,195, 60,207,239,222,178,101, 75,175,150, + 45, 91,202, 59,118,236, 24, 86,120,243, 53,111,217,178, 69,207,243,252,238,202,102,228,249, 73, 31, 3, 3, 3,235, 11,133,194, + 65,125,250,244,169, 63,122,244,104,220,187,119, 15,155, 55,111,126, 84,179,102,205,243,149,148, 78,168, 96, 20,225,252,138,162, + 89, 2,137, 36, 71,149,158,238,166, 12, 9, 17,185, 59, 59,167, 29, 56,112, 32,184, 75,151, 46, 36, 57, 57, 25,121,121,121, 48, + 26,141,184,118,237, 26, 47, 4, 18,133,238,238, 36,241,210, 37, 34,144, 72,114, 42,123, 12,130,253,221,195,191,156, 54,190,138, +209,104,172,171, 86,171,109, 34,145, 72, 20,228,231,150, 92,201,194,109, 82, 40, 20, 77, 0, 8,121,158,215,123,120,120,200,143, + 30, 61, 10,137, 68, 2, 66, 8,234,213,171, 7, 39, 39, 39,177, 66,161, 72, 2, 0, 63, 63, 63,201,202,149, 43, 93, 71,142, 28, +121,174, 34,237, 14, 29, 58, 8, 67, 67, 67,187,213,172, 89, 19, 23, 47, 94,196,131, 7, 15,158, 94,190,124, 57,176, 73,147, 38, + 8, 12, 12,236,214,161, 67,135,131,167, 79,159,182,189,164,139,244,133, 58,185,219,237,118, 74, 8, 1,199,113,224,121, 30, 89, + 89, 89,168, 86,173, 26,150, 47, 95,142,197,139, 23,255,248,162,125,164,234,212,169, 35,110,216,176,225,160, 33, 67,134,224,241, +227,199,152, 63,127,126, 94,102,102,230,197,163, 71,143,246,156, 48, 97,130,160,117,235,214,200,201,201,193,218,181,107,109, 81, + 81, 81, 59, 50, 50, 50,118,179,170,150,193, 96, 48, 94, 65,131, 21, 24, 24,216,219,195,195,227,221, 97,195,134, 9, 34, 34, 34, +144,145,145, 1,173, 54,223, 88,191,126, 36, 15,112, 84, 34, 17, 91, 20, 10, 5,198,142, 29,139,122,245,234, 53,251,236,179,207, +154,250,249,249,109, 76, 79, 79,223,233,200, 15,103,100,100,232,253,253,253,119, 76,152, 48, 97,193,205,155, 81,213, 0,224,234, +213,171, 79, 82, 83, 83,167,101,100,100,232, 43,105,174,138, 38,179, 36, 50,153,236, 74,120,120,120,124,207,158, 61, 93, 6, 12, + 24, 0,111,111,111,220,184,113, 3,223,126,251,109,172,217,108,158,249,178,110,224,149,193,102, 50,165, 95,223,179,199,185,195, +235,175,187, 76,236,221,123,209,251, 19, 38,252,240,229,151, 95, 10, 35, 34, 34,136, 94,175,199,149, 43, 87,232,206,157, 59,173, +235,190,254,122, 9, 20, 10,209,165,157, 59, 37,102,179, 57,177,146,209,145,246,189,122,180,143, 88,244,195, 50, 24, 13,249,184, +114,241, 15,228,229,101, 97,229,170, 93, 17, 65, 65, 65,237, 83, 82, 82,206, 84,226,120,214, 60,118,236,152, 15,165, 20, 18,137, + 4,115,230,204, 65, 64, 64, 0, 92, 92, 92,160,213,106, 49,121,242,100,215,143, 63,254,216, 21, 0,238,221,187, 7,165, 82,233, +144,110,116,116,116,227,241,227,199,203,237,118, 59, 14, 31, 62,108, 17, 8, 4,139,142, 29, 59,182,176, 65,131, 6,226, 14, 29, + 58,200,215,173, 91,215, 4,192,229,151,101,176, 94, 4,187,221,158,112,244,232,209,122, 67,135, 14,165, 66,161,144,168, 84, 42, +184,186,186, 98,249,242,229,250,180,180,180, 23,158,160, 45, 39, 39, 71, 84,183,110, 93, 49,207,243,216,177, 99, 7,158, 62,125, +250, 73, 70, 70, 70, 86, 64, 64,192,225,169, 83,167,142,139,136,136, 8,122,248,240,225, 83,131,193,176, 34, 53, 53, 53,133, 85, + 77, 12, 6,131,241,234, 70,176, 94, 63,124,248,176,128,231,121,172, 90,181, 10, 55,110,220,160,217,217,217, 51, 9, 33, 27, 92, + 92, 92,236,217,217,217,175,143, 25, 51,102,192,204,153, 51, 73,219,182,109,113,233,210, 37, 82,173, 90,181, 65, 0,118,150,184, + 81,119, 41,111,174, 12,181, 90,125, 45, 35, 35,189, 90,137,137, 37,171, 73,165, 78,215, 42,184,249, 63,163,249,252,100,150, 2, + 1,215,124,206,156, 57, 58,127,127,127,243,221,187,119,177, 98,197, 10,254,250,245,235,167, 36, 18,201,202,212,212, 84,147, 35, +154, 47,131,146,154, 18,155,237,198,166,169, 83,107, 55,238,223,159,127,119,202,148,124,177, 76,246,209,162,101,203, 62, 85,105, +181, 1, 32,132,122,186,186, 38,174,154, 51,103,126,143,126,253,242,239,157, 57,227,116,243,216, 49,145,183,213,122,171, 50,233, + 76, 73, 73, 57, 19, 94, 61, 4,235, 87,255, 0,139,197,132,180,167, 5,254, 44, 59, 71,141,242,204, 85,105,154, 54,155, 77,253, +218,107,175,137, 1,200, 70,141, 26, 37,201,204,204, 68,245,234,213, 1, 0, 26,141, 6,127,252,241, 7,106,213,170, 5, 0,184, +115,231, 78,241,251,138,210,233,236,236,220,165, 93,187,118, 72, 76, 76,196,253,251,247, 47, 62,125,250, 84, 21, 24, 24,120, 49, + 41, 41,169, 67,211,166, 77,177,115,231,206,206,101, 25,172,202,158, 35, 71, 12, 86, 25,121, 95,176,123,247,238, 33,151, 46, 93, +234, 51,101,202, 20, 97,167, 78,157, 0, 0, 58,157,206, 72, 41,181,191,136,102, 73,172, 86,107,209,164,167,122, 0, 40, 52, 83, + 95,252, 21,205,191, 90, 62,153, 38,211,100,154, 76,243,191, 65,243,223,100,176,108, 60,207,227,244,233,211,216,181,107,151,221, +108, 54, 79, 79, 75, 75,139, 46,241,253,186,224,224,224,115,131, 6, 13,250, 62, 38, 38, 70,112,255,254,125, 56,114, 3, 42,137, +209,104,180, 62,191, 84,176,209,104,180,254,213, 76,173, 95,191, 30,233,233,233,150,228,228,228,227, 54,155,109,247, 95, 28,141, +248,151, 71, 17,174,163,212,244, 58, 33,199,103,181,105,211,117,230,177, 99,210,119, 63,255,220,244,214,232,209,159,216,205,102, +171, 64, 44,230, 37, 10, 5,103,151, 74, 69,247,206,156,113, 90,250,222,123, 30, 6,147,233,240,166, 74,116, 28, 47, 17,193,194, + 91,239, 78,130,161, 68, 4,235,210,181, 24, 84, 54,130,101, 52, 26,235, 2,128, 76, 38, 75, 2,224,247,198, 27,111,128,231,121, + 24, 12, 6,104,181, 90,164,166,166,170, 71,143, 30,109, 7, 0,133, 66, 33, 28, 52,104,144,139, 67, 7,178, 74, 21, 63,129, 64, +128,131, 7, 15, 66, 42,149,158, 4, 0,169, 84,122,242,216,177, 99, 29, 70,140, 24,129,224,224,224,144,162, 73, 80,202,211,241, +141, 28,176,141, 2,225, 32,168, 81,112,165,163,134, 79,228,128,219, 4,136, 45,156,229,253, 65,163, 70,141, 0, 7,251, 93,149, + 36, 43, 43, 75, 7, 96,173,175,175,239, 31,159,124,242,201, 27, 45, 90,180,104, 59,115,230, 76, 66, 41,253,203, 11,163, 83, 74, + 97,183,219, 89,173,195, 96, 48, 24,255,102,131, 69, 8,249,189, 99,199,142,195, 41,165, 2,142,227, 54, 63,103,174, 0, 0,201, +201,201, 79,130,130,130, 86, 85,173, 90,181,120, 1,232, 74,222,112, 50, 8, 33,223,114, 28,249,180,224,255,202, 79, 44, 89, 98, + 73,146, 79, 1, 16,142, 19,108,136,138,138,250, 60, 41, 41, 41,171,178,134,175, 52, 94,198, 40, 66, 0,216, 66,105,252,112, 66, +142, 76,137,140,236,210,227,189,247, 80,191, 71, 15,151,128,208, 80,187,193, 98,225,239,156, 63, 79, 46,238,216, 33,190,121,236, +152,200, 96, 50, 29,222, 69,105, 82,101,211,153,146,146,114,166,122, 88,208,209,193,131,122,117, 11,171, 26, 0, 0,136,139, 79, + 69,118,174,250,104,101,204,213,115, 70,171,255,242,229,203,247,137,197, 98, 97,201, 37,103, 44, 22, 75,110,145, 9, 35,132, 4, +172, 90,181,234,119,142,227, 18, 43,210,139,142,142, 62, 58,107,214,172, 30, 79,158, 60, 57,155,156,156,156, 2, 0,113,113,113, + 41, 1, 1, 1,187, 82, 83, 83,123, 38, 37, 37, 29,162, 14,132,158,158, 91,236, 25,247,206,111,119, 2, 80,175,104,177,231, 23, + 93,107,176, 36,133,166,124, 81, 80, 80,208,222,158, 61,123, 14, 39,132,164,255, 21, 61,165, 82,105, 51, 24, 12, 54,158,231,133, + 22,139,133, 42,149, 74, 27,171,126, 24, 12, 6,163, 82, 52, 5, 80,180,114, 72, 81,224,196,251,185,247,102, 0, 37,151,242, 43, +250, 63, 11,192,181, 18, 26, 37, 63,175,104, 95, 0,200, 6,112,187,240,179,191,102,176, 82, 82, 82, 14,193,129,197,156, 29,221, +174, 28,131, 52,157, 16,178,180,200, 44,253, 85, 13,155,205,246, 82,214,111,227, 56, 46,190,111,223,190,149,218,190,162,109,126, +167, 52,241, 35, 66, 54, 30,248,241,199,134,135, 87,172, 8,180,219,108,158, 4,160, 2,137, 36,199,108, 54, 39,120, 91,173,183, + 42, 27,185, 42,201,227,184,148,238, 0, 80,179,102, 77, 26, 27, 27,251,151, 71, 99, 80, 74,111, 1, 8,174, 96,155, 84, 0,109, + 29,209, 75, 78, 78,222,135, 82, 70, 10,166,166,166,238, 7,176,223,209,116, 21, 47,246, 12,112, 60,225, 7,215,109, 51,100, 7, + 0,190,104,177,231,151, 73, 74, 74, 74, 28,128,175,255,170,206,227,199,143,205, 85,171, 86,221,179, 96,193,130, 1,183,111,223, + 62,144,156,156,108, 6,131,193, 96, 48, 42,101,174, 8, 33, 7, 10,239, 61,125, 10, 31,242, 15, 60,255,190,104,155,162,237, 74, +110, 83,164,241,252,231,229,237, 11, 0,211,166, 77,251,124,254,252,249,114, 0, 14,247,197, 21,254, 55, 28,181,151,177,168,237, +203, 94, 24, 55, 37, 37,101,245,223,145,215,101, 5, 6,234,242,223,121, 60, 99, 98, 98,200,171,124,149, 21, 45,246, 92,130,200, +255,133,116,199,199,199,111,236,208,161,195,111,201,201,201, 44,122,197, 96, 48, 24,149,195,187, 52, 67, 84,134, 31,232, 83,222, +247,207, 60,176,151,178, 93,105,255, 19, 66, 14,204,159, 63,191, 79,101, 18,204,177,115,198, 96,252,255,241, 79,140, 98,101, 48, + 24, 12, 70,233, 60, 31,181, 42, 50, 93,207,255, 63,109,218,180,207, 81,137,230, 65,160, 96,102,238, 46,101,252,168,195,163, 3, + 8, 33, 93, 94, 32, 83,199,153, 38,211,100,154, 76,147,105, 50, 77,166,249,239,210,172, 72,187,140,253,123,151,213,164, 87, 94, +115,225,243,239, 43,218,215,129,109,255,168,204,129,248,219, 94, 0,186, 48, 77,166,201, 52,153, 38,211,100,154, 76,147,105,254, +197, 87, 83, 74,105,111, 20,172,114, 66, 41,165,189, 41,165, 61,166, 77,155, 54,189,232,179,105,211,166, 77,167,148,118, 46,218, +174,112,155,226,125,138, 62,123,254,239,243,159, 85,176,173,195,105,254,175,232,131,197, 96, 48, 24, 12, 6,131, 81, 14,215, 0, + 52, 45, 17, 93,202, 2,112,103,254,252,249,121, 37,250, 70,101, 1,184, 5,160, 65,225,118, 89,133,129,164,146,125,167,204,133, +255,155, 75,217,198,236,200,182,142,194, 12, 86, 25, 52,244, 23,124, 29, 18,228,211,164, 56,202, 87, 48, 57, 36,248,194, 89, 4, +138,167, 19,224,121, 80, 74,145,154,169,186,113, 59,131,126,249,162,191, 23, 17, 72, 60,124,156,156,150,240,148,182, 41,252,232, +140, 58,199, 52,233,174,154,170, 28,213,168,237, 71,106, 59,113,248,132,167,168, 15, 0, 28,193,109, 35,143,239, 30,164,211, 7, +127,245,120, 16, 66, 72, 93,111,140,149,200,228,195, 92,221,220,107,228,229,101,199, 90,140,166,237,247,179,176,146,190,192,180, +233,213, 61, 72, 11,158,226,115, 0,156,136,195,247, 49, 57,244, 20, 43,117, 12, 6,227,255, 9,193, 95,220,191,180, 41,128,254, +234,224, 34,202, 78,139, 67, 38,235,121,174, 58,184,221,255, 59,149, 50, 88,117,125,200,123, 32,248, 10, 0, 5,197,236,123,153, +244,151, 74,237, 31, 64,186, 56, 9, 4,107, 0, 8,140, 22,251, 20,202,227,108,169, 55,115, 14,237,156,196,130,239, 1,240, 70, +187,253,157,123,169,142,247, 7,139, 12, 34, 61,132, 60,183,137,167, 84,100,231,233, 6, 80, 28, 80,138,113,225, 82, 10, 53, 86, + 38,173, 33, 65, 62, 77,246, 92, 77,235,246,127,236, 93,117,120, 20,199,255,126,231,246, 52, 23,119, 79, 8,146, 4, 66,112, 39, + 64,112, 47,238,180, 80,218, 66, 41, 69,139,182, 64, 75,177,226, 80,164, 72, 91,160,184, 75,209,224,238,132, 16, 66, 32, 1,226, +238,114,186,187,243,251, 35,210, 0,145,187, 64,251,251,150,238,251, 60,251,220,221,222,238,187, 99, 59,243,206,103,102, 62,115, + 97,195, 4, 52,173, 91, 29,148, 99, 1, 94, 15,101,171,169, 56,183,242, 99, 52,173,229, 1,202,235, 1,158,133, 89,215,101,232, +234,111, 89,233,151,195,215,149,216,120,218, 57,132,108,222,188,197,201,165,154, 31,225, 89, 29,158,222, 62, 51,108,226,180, 57, +237,252, 45,137,191, 33, 34,171,158, 11,249,172,122, 85,223,169,147,190, 95,193,184,184,184,155,114,172,134, 77,124,241,164,193, +154, 37,115, 14,212,115, 33,203, 31,198,211, 45,134, 10, 41, 63,123,140, 22,203,101, 3, 76, 20,166, 53,242,243,115,158,115, 58, +253, 62,127, 23,113,151,165,203, 86,213, 15,236,216,205,140,203, 73, 20,233,121,248,237,221,179,219,243,231,117,235,187, 17, 66, + 62,162,148,242,198,196,153,167,152, 22,190,253,139,110, 18, 49, 67,106,125,186,153,129, 17, 75, 95, 75,194,207,145, 12, 33,180, + 98, 55, 17,148,224, 74,104, 18,221, 85,153,103,212,114, 36,191, 18, 10, 31, 16,236, 39, 20,187, 31, 39,211,100,161,158, 19, 32, +224,195,130, 72, 36,186,192,243,124,219,247,201, 73, 8,105, 70, 41,189, 41,164,238,127, 19,198, 89,176, 8,230, 63,142,136,177, + 6,167, 67,109,159,106, 63, 2, 48, 74, 96, 41, 24,102,219,157,103, 73, 78, 96,117,216,188, 96,236, 30,173, 30, 96,245, 58,112, +172, 30, 28,171, 7,203,234,192,233,245,160,122, 13,230,252,118, 1,208,230,160,145,191,247, 54, 0,206,134, 62, 67, 66, 69,127, +220,187,122,198,134,104,179,176,107,195,162,175, 99, 82,114,191, 14, 10,142, 79,173,237, 72,102,134, 38,227,119, 99,132,192,133, + 95, 38, 96,199,161, 63, 99, 87,255,154, 23,198, 83, 10, 27, 11, 19,223, 97, 61, 30,187,111, 63,114, 33,102,213, 54,117, 24, 0, + 88,154,202,124, 63, 9,126,230,241, 46,153,224,160, 80,172,218,184,254,103, 39,103, 91, 19,194, 94, 95, 12,150,227,224,238,217, +157,153, 57,110,152,243,252,149, 91, 86, 2, 24, 81,222,253, 53, 29,137,159, 79,245, 90, 83,182,253,121,221, 35, 63, 39, 89,123, +102,199,172, 8,170,129,222,201,181,150,228,199, 69, 43,152,111,167, 79,152, 92,211,145,220, 10, 75,162,161, 21, 84, 6,162, 90, + 14, 56,178,104,241,178,186,237,186,246, 48,227,115, 83, 24,117, 94,174,207,230,223,182,124, 95,179,110, 19,101, 43,127, 55,105, +242,190, 49, 68,149,147, 14,157, 72, 33,111, 87,187,131,133,106,248, 96,253,230,173, 59,198, 1, 88, 99, 84,247,175,196,240, 52, +207, 87,190, 55, 73, 40, 90, 61,184,121, 97, 52, 23,127, 7,148,211, 3,156,174,248, 19,156, 30,148, 47,248,108, 58,230, 55, 0, +168,148,192, 18, 81,116, 10,186,122,199, 57, 41, 49,161,241,202,101, 11,103,250, 57,144,147,224,240,199,147,116, 92, 50, 86, 88, + 10, 16, 32,224,127, 23,132, 16,150, 82, 42,126,207,156,221, 40,165, 39,222,145, 99, 42,128,207, 10,127,110,161,148, 46,125, 15, +225,114, 3,224, 84,248, 51,145, 82, 42,236,129,250,255, 42,176, 0, 5, 40, 15,236,239, 13, 0, 38,198, 62,140, 2, 10, 16, 6, +208,231,161, 87,215,142,176,115,112, 2,244,249,128, 46, 31,208,171, 0,125, 30,160, 87, 33, 53, 33, 10,208,229, 1,145, 39,193, + 82, 42, 55, 58, 86,154, 44, 32,124, 31,218, 55,240,128,189,165, 2, 19,122,249,217,109, 58, 21,190,101,203,153,167, 29, 0, 12, + 50, 40,172,148,162,105,157, 26, 88,189, 37, 47,236,232,189,228,206, 0,208,189,190,221,169,166,126,158,238,171,182,169,195,254, + 12, 78,239, 2, 0, 93,253, 45, 79, 54,241,117,246,224,223,193,186,203, 83,218,202,165, 74, 13,194, 61,216, 8, 62, 59, 22,217, +217, 42,196,190,220, 14,107,215,134, 34,142, 71,155,138,238, 55, 97, 48, 99,252,119, 63, 73,242,179,147,180,156, 46,133,179, 19, +101,136,197,114,158, 32,254,146, 38,143,207,228, 38,126, 62,156,251,102,206,194, 25, 0,134,149,107, 13,114,192,184,229,203, 87, +213,105,217,168,166, 67,226,129, 9, 36, 55, 35, 9, 44,163,148,247,106,222, 18, 86,222,126,124,210,197,229, 68, 86,173, 3,172, +108,171, 33,238,250, 78,188,186,121,144, 4, 52,232, 43,255,125,151,116,120, 89, 2,203,219,158, 4,116,110,221,100, 79, 53, 15, + 23,103, 74,121,240, 60, 5,229, 57,124,218,191, 19,102,238,141, 4,199,113,232,215, 57,160,253, 79,163,219, 81,158,231, 65, 41, +143,152,196,180,252,243,183,194,218, 71,164,211, 91,134, 88,166,234, 53,107, 27, 16,124,239,102, 77,125,248, 49, 52, 26,182, 40, +140, 0, 87, 75,148,185,128,251,167,127,175, 9,252, 86,217, 74,136,212,114, 0,247,234,212, 98,120,180,254,130,217,184,235,148, +125, 86, 74,220, 39, 7,182,175,239,191, 97,227,198, 29, 0,198, 8,213,136, 0, 1, 31, 6, 40,165,239, 93,100, 69, 68, 68, 36, +188,139,200,114,115,115,107, 13, 96, 73,209, 76, 12, 66,200, 18, 47, 47,175, 57,127,117, 80, 95,235,227,101,113, 28, 55, 44, 54, + 54,246,114,121,156, 61,122,244,112, 1,224, 85,130,211,139, 16,226, 85,218,181, 86, 86, 86, 92,139, 22, 45, 94, 29, 63,126, 60, + 94, 40, 33,127,175,192, 10,139,222, 55,161,129, 38, 33, 23, 0,194, 12, 40,172,175, 13,237,169,245,220,226,173,223,127,188,184, +118, 21, 27,228,228,105,113,230,238, 43,112,156, 30, 28,203, 22, 90,178, 88,112,172, 30,157,235,217,161,133,122, 12,214, 28,127, + 10,150,227, 23,149,199,249, 38,116,148, 31, 82,191,195,192,189, 60, 79,101,114,137, 40,203,199,221,214, 97, 74,191,122,162, 9, +189,106, 67,165, 99, 7,250, 57,146,243,161, 73,116,179, 65,156,252,219, 46,139,104,105,231, 56,182,194,184,151, 99,125,106, 58, +184, 71, 71, 11,170,201,130, 62, 53, 18, 57,249,122, 68,166,233,145,168,206,132,156, 36, 24,196,201, 83,212,117,117,118, 54,189, +182,103,250, 75, 91,113,182,216, 65,204, 74,100,148,149,112, 60,101,144, 25,170,177,173,217, 81, 92, 52, 47,171,188,112,154, 40, +205, 63,110,221,169,187,101,244,206, 47,136,137, 79,103, 56, 52,112,199,203,203, 91,145,124,247, 56,114,115,179,137, 60, 43, 19, +142,182,213,209,117,216, 32, 44, 29,212, 24, 57,217, 57, 96, 18, 34, 44,101, 18,185, 85, 89,156,148,195,176,229, 63, 45,112, 22, + 51,162,130,244, 44, 58, 56, 61, 84, 26, 13,192,177, 80,136,121, 16, 90,244,159, 30,156, 94,167,172,219,119,250, 88, 0,183, 42, +138,123,104, 18,221, 85,219,129,180, 2,175,175, 73,245, 42, 16,224,234,227,100, 90, 44,122,252, 28,201,144,134,157, 71,182,162, + 4, 87, 42,147, 71,254,182,232,209,200,203,204,212, 52, 59, 12,177,251,191, 70, 4, 20,212,177,229,103, 24,242,233, 56,229,166, + 77,155,122, 18, 66,190, 44, 57, 7,237,239,216,252, 84,224, 20, 56,255,173,156,150,150,150, 85,171, 84,169, 50, 71,175,215,183, +150, 74,165,142, 58,157, 14, 60,207, 39,202,100,178, 43,175, 94,189,154,151,149,149,245,226,127, 45,238,193,193,193, 6,139, 44, + 67, 56, 37, 18, 9,158, 62,125,250,220, 80,145,245, 38,167, 68, 34,249,227,234,213,171,216,187,119, 47, 0, 32, 60, 60, 28,222, +222,222,166,165,221,251,242,229, 75,211,192,192,192, 63,240,198, 14, 28,111,114, 62,122,244,168,234,177, 99,199,176,127,255,126, + 0,192,211,167, 79,225,227,227, 83,106,120,174, 94,189,202, 12, 29, 58,180, 42,128,248,191, 59,143, 62, 72,129, 85,184,191, 46, +121,243,123, 41,136,244,176,150, 53,128,154, 3,128, 72, 99, 31, 22,154, 72,127,170,231, 44,233,114,110,255,186,214, 10,169, 8, +115, 55, 79,137, 73, 73,207,105, 38, 38,224, 1,128,165, 16, 89,155,201,110, 44,250,164,158, 71, 70,174, 26, 71,111,199, 93,126, +156,100,156, 41,244,113, 60, 61, 11,192,234,175, 6,146,248,124,178,244,236,238,221, 51,186,212,157,212,171, 46,142, 92,127, 53, + 9, 64,133, 94,218, 41,207,131,242,108,241,164,246,194,174, 2,192,179, 40, 57,167,155, 7, 45, 56,199, 27,103,193, 10, 36, 68, +156,225,128,174, 54, 74,217,218,209,163, 63,183,208,167, 60, 67,186, 86,138,152, 12, 53, 18, 85, 18,228,138, 29, 16, 23,246,136, + 19, 17,156,173,216,202,130,108,112,106, 43, 27,153,153,200,191,227, 88,215,236,211,179, 50,100,148,101, 44,122,207,183, 74, 61, +183,226, 21,171, 74,201, 35, 4, 21,110,162,109,105,105,229,173, 78,123,197,100,101,164,194,202,169, 54,186, 12,236,129, 31,186, +251, 33, 39, 59, 15, 41,215,255,164, 53,156, 45, 72,212,149, 29,248,182,107, 45,164, 37, 37, 64,163, 7, 72,158, 38, 93,173, 85, +231,150,153,142, 34,108,156,248,205,180, 33,158,206,246,166, 69,139, 5, 40,207,161, 94,173,106,232,216,186, 41,206, 94,189,134, + 59,143,194,193, 23, 46, 22,160, 60,143,216,228,140, 36,181,142,219,106, 84,130,114, 44,168, 94, 93,170, 0, 67, 37,134, 6,235, + 56, 18, 37, 7,204,110, 86,195,124,212,140, 30,158,230,166,114, 2,181,158,131, 90,171, 71,206,181,181,176,173, 82, 7, 74,133, +130, 52,128, 74, 12, 64, 47, 84, 37, 2, 4,252,133, 1, 3, 6, 40,146,146,146, 46,118,239,222,221,175, 99,199,142,202, 86,173, + 90, 33, 47, 47, 15,103,206,156, 65, 94, 94,158,167,187,187,187,231,153, 51,103,250, 54,107,214, 44,212,205,205, 45,112,223,190, +125,198,204,145, 21,227,175, 73,234, 60, 0,150, 16,130,194,115, 4, 0,255, 46,251,208,202,100, 50, 68, 69, 69,189, 55, 75,150, + 84, 42,133, 90,173, 70, 92, 92,220,243,202, 88,178,114,115,115,165,174,174,174,176,183,183, 7,199,113,200,203,203,195,225,195, +135,145,149,149, 5,158,231, 97, 98, 98,130,249,203, 55, 35,236,254, 69,220,186,117, 11, 89, 89, 89,210,138, 56, 99, 99, 99, 73, +189,122,245,160,209,104,192,178, 44,212,106, 53,130,130,130,138,127,139,197, 98, 76,251,113, 37,194,239, 94,196,131, 7, 15, 16, + 27, 27,251,143,236, 14, 98,132, 22,249, 32, 45, 88,239, 12,142, 99,103,110,218,182,251,198,204, 49,131, 48,110,112, 7,247,121, +235, 14,118, 8, 77,161,219, 0,192,207,158,124, 50,188,109, 13, 15, 43,165, 4, 63,236,188, 11, 80, 58,243, 93,159, 23,146, 70, +195,107, 59,145, 73,135,110, 69, 93,156, 53,168, 1,170, 57, 91,120, 87,175, 78,100, 17, 17, 6,236,249,199,179,176, 54,147,251, +118,175,111,119, 10, 60, 15, 43,115,121, 77,112, 44,172,204,228,190, 93,253, 45, 79, 2,128,149, 82, 90,179, 52, 75, 87, 89,104, +236, 33,253, 66, 41, 23,127, 97,218,208,217, 99, 68,207,142, 38,221,122,246, 53, 49,147,176, 72,187,117, 6,217, 18, 55,232,109, + 60,161,209,167, 35,246, 69, 4,119,238,230,147,184,212, 28,205,148, 10,131, 73,113, 57,238,197, 83,251,170,117, 59, 90,167, 30, +255, 54,185,234,200,157, 94, 34,240,162,156, 29,125,146, 76, 29,154,152,220,126,254, 34,151,167,111, 91,112,222, 68,118, 86,214, + 43, 61, 7,103, 21, 39, 54,143,184,240, 59,102,116,173,131,140,244,100,168,117, 44,178, 84,172,206,201, 74, 33,215,188, 8,129, + 70,199, 66,171,231, 33,177,114,197,153, 27,143, 82,121,189,190,204,189, 40, 35, 82,233, 3, 0,102, 37,207, 85,183, 39,245,166, + 91,152, 60,128, 94,133,168,216,120,108,251,243, 70,131,194,235, 42,223, 59,229,217,130, 97,230, 18,150, 43, 66,209,170, 50,147, +219,107, 57,146, 38, 38, 10,233,207, 75, 38, 13,245,107,238, 99, 35,231, 99,111,128,240, 58,152,114, 98,168,100, 28, 44,221,171, +129,215,230,208,124,181, 58,243, 49, 32,120,102, 23, 32,160, 4,106,214,172,233,100,105,105,249,248,155,111,190,177,233,211,167, + 15, 14, 29, 58,132,236,236,108,108,221,186, 21,171, 86,173,194,247,223,127, 15,189, 94,143, 77,155, 54, 41, 15, 28, 56,208,100, +253,250,245,177,158,158,158,181,163,162,162, 42,218, 80,157, 0,144, 3,144, 20,182, 93, 4, 0,127,226,196, 9,116,235,214, 13, + 39, 78,156,224, 11,207,113,132, 16, 61,165, 84, 83, 89,129, 37,147,201,144,149,149,245,222, 68,150,153,153, 25,100, 50, 25,114, +114,114,140, 22, 89, 44,203, 50,177,177,177,200,202,202, 66,199,158, 61,177,114,209, 34,180,109,219, 22, 29, 59,118, 4,165, 20, + 65, 65, 65,232,208,210, 31,131, 62, 10,196,147, 39, 79,192,178,172, 65,225, 77, 76, 76, 68, 82, 82, 18,186,244,236,137,205,235, +215,163,105,211,166,240,245,245, 5,203,178,184,120,241, 34,250,119,110, 9, 69,239, 14, 8, 15, 15, 23, 10,245,191, 69, 96,133, + 36,211,155,126,246,228,248,224,206, 77,122,244, 12,240,195,230, 61,231, 22,248,249,145,221, 0, 96,107, 46,159,255,113,219,106, + 8,141,206,192,185, 7,241,199, 67, 83,222,207,234, 11,158,131,157,173,133, 18, 96,100, 80,233,120,214, 34, 18, 21, 78, 76,230, + 41,133,178,245,116, 12,239, 25,234,222,212,207,221,189,104, 21,161, 89,183, 21,248,228,209,115,143,198,190, 78, 30,224,244, 0, +167,135,197,160,157,192,143,166, 21,134, 35,160,170,252,236,244, 41,147, 90,116,237, 61,208, 68,166,180, 4,151, 29, 3,125,226, + 35,164, 61,187,140, 60,165, 55, 18,163, 34,177,247,244,173,172,103,177,105,217, 34, 17,206, 36,101,105,166, 70,164,211,220,138, +120,213,122, 44,154,243,237,148,238,123,119,239, 49,151, 87, 11, 32, 17,107,187,101,201,196,172,220,190,106, 67, 81,190,194,142, + 46,220,186,199, 34, 79,139,197, 21,241,228,231,101, 31, 12, 58,115,106, 80,141,170, 1,230, 47,239,252, 9,149, 90, 3,141, 30, +168,221, 36, 16, 28, 71,101, 68, 68,120, 11,134, 33,201,105, 25, 32,122, 46,233,202,195,151, 9, 87, 31, 70, 50, 26,243,138,185, + 95, 43,116,132, 25,223, 51,176, 62,160, 87,225,163,214,117,176,114,199,185,175, 1,140,124,183, 76, 46,176, 96, 81, 32,160,182, + 3,249, 5, 64,192,221,195,171,106, 54,234, 61, 17,198, 88,176,252,237, 73, 87,255,234, 46,191,175,156, 63,221,198,214,205,155, + 33,188, 30,212,169, 46,144, 29, 75, 73,236, 13, 88,186, 54, 5,231,210, 18,155,214, 44,203,229,121,186,187, 50, 46, 42, 4, 8, +248,144,161, 86,171, 15,254,244,211, 79, 54, 61,122,244, 40,178,192,224,198,141, 27,216,178,101, 11, 76, 77, 95,175, 39,187,117, +235, 6, 74,169,205,220,185,115, 15, 2,104, 94, 22,103,179,102,205,122,174, 91,183, 46,190,126,253,250,145,133, 34, 75, 10, 64, + 20, 18, 18, 34,138,137,137, 33,214,214,214,212,197,197, 69, 31, 31, 31,207, 3,224, 62,253,244, 83,198,204,204,172, 70,110,110, +238,165,202, 10, 44,153, 76,246, 94,230,100, 73, 36,146, 98, 94,169, 84, 10, 74,169, 81, 34,139,227, 56,241,137, 19, 39,112,247, +238, 93,124, 95,191, 62, 38,185,186,194,198,198, 6, 23, 47, 94, 4,165, 20,166,166,166, 72, 79, 79,199,238,221,187,209,174, 93, + 59,176, 44, 43, 53,132,119,255,254,253,184,119,239, 30,126,108,212, 8,147, 44, 45, 97,102,102,134,160,160,130, 81, 63,185, 92, +142,168,168, 40, 4, 5, 5, 33, 48, 48, 80, 40,212,127,183,192, 10, 36, 68, 76, 28,225,164,211,170, 64, 89, 10, 16,184,248,249, + 17,105,104, 40,213, 25,251, 80,145, 8,223,174,217,118,188,251,138,137, 61,201, 23,189, 26,184,204,251,253,194,151, 0, 48,170, +159,143,171, 82, 46,198,234, 35,161, 84, 36,194,183,239, 35,130,126,126, 68, 42, 18,225,203,142, 77,125, 17,159,169, 69, 68,124, +230,249, 80, 74, 13, 26,210, 57,183, 98, 56,182, 31,189, 24,179,106,187, 58,140, 82, 10, 43, 51,185,239, 39,193, 17, 30,191,159, +184, 23,189,124,175, 58,140,242, 20, 86, 74, 73,205,145, 79, 90, 86,184,138,176,177,135,244,139,153,211,167,182,236, 53,242, 27, + 5, 27,182, 15,218,136,211,224,117, 42,100,235,164,200,100,156, 16, 27, 29,141,133,155,142,199,100,231,105, 7,133, 36, 27, 39, + 44,195, 83,105,174,159, 61,233,179,240,135, 89,103, 23,205,159,107,150, 31,121, 49,151, 33,172,138,241,108, 35,158,255,253, 10, +146,163,209, 14,140, 72,167, 57, 21,241,104,204,177,248,167,229,107,186,127, 62,172,111,152,143,119, 27, 91, 46,254,133,173, 58, + 59, 59,121,231,169,123, 78,133, 61, 67, 2, 0, 17,177,105, 72,201,202, 99, 57, 86,127,201, 92,130,121,143, 13,177, 6, 22,162, +154, 35,177,239,211,170,238, 80,123,115, 41, 84,185,153,112, 48,151,160,115,211,234, 67,171, 57,146,233,145, 73, 52,165,210, 25, +205,235, 65,245, 42,220, 92,220,174, 38,229,244, 53,193,233,161, 11,254,195,120, 75, 24,193,164,113,173,205, 44,172,181, 47, 69, +200, 51, 5, 76,236, 64, 44, 60, 1, 75, 47, 34,169, 53, 16,241,145,143,217,175,135, 14, 75,123,241, 42,246, 87, 59, 19, 44, 21, +170, 16, 1, 2, 94, 71, 84, 84,212,199, 51,103,206,188,218,180,105, 83, 71, 59, 59, 59,212,169, 83, 7, 71,143, 30,197, 55,223, +124, 83,124, 77,253,250,245, 65, 41, 69,122,122, 58,126,250,233,167,196,248,248,248,143,203,227, 12, 11, 11,123,186,125,251,246, + 86,126,126,126, 58,169, 84,154, 9, 64,158,153,153,169, 72, 79, 79, 39,106,181, 26, 60,207,243,150,150,150, 92,124,124,188,126, +208,160, 65,154,235,215,175, 87,207,203,203,139,126, 23, 11,150,187,187,123, 72, 90, 90, 90, 22, 33,228,157, 92, 56, 72, 36, 18, +136, 68, 34, 72,165, 82,216,217,217,217,231,230,230,242, 0, 50, 42,227,194,129,101, 89, 52,106,212, 8,167, 47,223,199,137,115, +215,145, 29,255, 20, 95,126,254, 49,234,212,169,131,211,167, 79, 87, 58,207,234,213,171,135, 83, 65, 87,113,245,238, 67, 68,133, + 7,227,235, 47, 63, 71,237,218,181,113,234,212, 41,161, 64,191, 7,129, 21, 72, 8, 41,234,137,191, 37, 87,107,217,147,122, 46, + 53,100,127,204,237, 90,189,150,164,227, 92, 16,137, 9,246,121,159,106,249,237,194,181, 97,117, 28,201,176, 71, 73, 21,175,246, +122,205,138,149, 68, 31,215,118, 32,187, 30, 62,169, 57,244,163,166,238,216,124, 84, 57, 27, 0, 6,182,170,138,219,207, 82,112, + 43, 60,121,215,227,100,250,248, 93, 35, 87,199,145, 40, 65,177,235,167,241,189, 2, 61,221,156,176,229,208, 85, 16,130,131, 6, + 53,180,148,210,166,126,158, 88,181,253,205, 21,131, 78, 30,203,247,170,195, 78,135,100,119, 5,128, 78,181, 76, 79, 54,174,110, +237, 81,145, 37,195, 68, 38, 30,221,181,239,112, 5, 27,126, 20,120, 21, 4,194,106,160,210,241, 72, 72,205, 65,190,165, 59, 46, +222,120,168,202, 82,107, 39, 62, 78,174,156,213, 46, 52,133, 70,214,119, 38,209,121,121, 42,103,165,125,117,181,152,240, 52, 87, +205,227,118,232,171,172,199, 9,244,169, 33, 28, 17, 17, 84,219,220,141,180,250,101,219,222, 57, 18,169,108, 32, 67, 64, 28,172, + 76,237,127, 89,241, 35,204,205,205,192,107,115,129,188, 20,244,249,106, 97,202,163, 56, 93, 85, 0,240,177, 35,102,173,171, 73, +183,137, 69, 36,246,252,115,237,119, 21, 61,131,232, 49,102, 88,231,250, 18, 94,155,135,241, 63,237,193,198,233,189, 48,188,125, + 45,201,159,215,194,199, 0,152, 87,217,188,166, 28, 11,170, 87,161,249,172,203, 97, 4,184, 74,129,128,187,123,231,215, 4,238, + 27,204,209,144, 16,137,216,153,212,170,235, 97, 42,229, 99,175,129,143,189, 70, 25,247,150, 32, 30,173, 9,113,106, 68,127, 94, +242,125,222,230,205, 91,206,240, 34,252, 80,145,203, 11, 1, 2,254,171,160,148, 70, 90, 89, 89,117,233,214,173,219,185,211,167, + 79,219,248,251,251, 3, 0,238,222,189, 11, 0,104,212,168, 17,124,124,124,144,148,148,132,193,131, 7,167, 38, 36, 36,116,161, +148,150, 59,167, 55, 39, 39, 39,114,255,254,253, 14,185,185,185, 13,102,207,158,157,228,233,233,153,173, 86,171, 73,102,102, 38, +207,178, 44,172,173,173,101,245,235,215, 71,139, 22, 45,114,175, 95,191,238, 21, 19, 19,147, 13,224,101,101,194,223,171, 87, 47, + 92,190, 92,176, 8,239,125,248,197,146, 72, 36,240,247,247,119,141,140,140,140, 43, 76,159,155,149, 72,211,226,239, 15, 31, 62, +196,165,251,177, 16,107, 85,144,165,196,227,230,161,253,232, 57,122, 44, 88,182,242,179, 21, 30, 62,124,136,195, 65, 55, 97, 42, + 23,227,233,211,199,216,191,127, 63,190,252,242,203,119,226,172, 36,202,213, 34,255, 74,129, 69, 41,189,132, 82,188,208, 86,175, + 78,100,242, 92,204,237,220,200,117,218,192,128,234,140, 62, 59, 30, 60,199,131,145, 0, 14,118, 22,248,227,143, 93, 85,119,237, +217,115,163,158,171,100, 13,207,178,223, 62, 74,162,249, 70, 60,123,238,138, 61, 87, 7,254, 49, 37, 80,252,101,215,154, 54, 0, + 32, 21,139,176,250,232, 99, 22,192,220,119,137, 84,115, 55,162,200,213,227, 11, 39, 91,203,217, 51, 63,235,110, 19,216,200, 7, +151,110,133, 96,205,254, 27,151,101,201,216,110,112,161,230,245,120, 83, 55,149,182,138, 16,124,197,243, 41, 57,142, 58, 73, 77, +173,161,123,117, 1,208,169,161,214,232, 16,147,198, 33, 38, 93, 13,177, 82,138,187,225,177, 42,219, 68, 28,175,108,156, 9, 33, + 36,160,154,194,101,246,130,229,110,106, 85, 46,155,157,145,202, 74,101, 55, 37, 74, 19,121,130, 49, 60, 55, 98,169,186, 77, 85, +105, 67,128,103,100, 10,154, 63,107,242, 8,211,184,208,211,168, 33,138, 7,161, 20, 38,181,186,195,220,132,145,182,242,146, 70, + 3,128,151,147,165,236,167, 31,190,177,156, 56,253,135, 10,231,120,249, 17, 34,173,211,216,105,162,191,167, 53, 46,223, 11,195, +229, 71, 81,143, 47,223,125, 90,187,109, 29, 23,248,184, 89, 77,240, 35,100,113, 40, 53,222, 34, 90,144, 49, 44,160, 87, 23,175, + 34,244,115, 36, 67, 26, 15,252,174,212,213,131,101,193, 11,224,195, 57, 10,194, 48, 0, 17, 21,172,104,140,185, 6,177, 85, 53, +186,107,239,225,252, 45, 91,182,255, 24,154, 66, 5,171,149, 0, 1, 21, 32, 51, 51, 51, 88,169, 84,118,174, 91,183,238,214,241, +227,199,155, 15, 27, 54,204,229,243,207, 63, 23, 1, 64, 82, 82, 18,191,106,213,170,248,159,127,254, 57, 43, 53, 53,117,164, 78, +167,123,100, 72,135,151, 16,114,253,183,223,126, 75,185,116,233, 82,237,102,205,154, 41, 26, 53,106,196, 89, 91, 91,139,229,114, + 57,167,213,106,213,225,225,225,124,100,100,164, 75,102,102,230, 51, 0, 17,149, 25,190, 47,180, 86,205, 99, 24,102, 14,165,212, +255,125,204,193, 82, 42,149,206, 0,158, 19, 66,106, 24, 59, 60,248, 86,131, 45, 22, 35, 35, 35, 3,249,137,143,161,136,125,134, +186,166, 34,248, 89,155,193,194,194,226,157,196, 80, 86, 86, 22,144, 23,135,171, 87, 31, 2, 44, 11, 75, 75, 75, 88, 90, 90,254, +227, 2,171, 44, 45,242,111,183, 96,189,133,218, 14,228, 75,107, 25, 86,141,238, 94, 93,234,229,225, 6, 77,236, 93, 60,140,201, +197,183,205,154,132, 50,114,115,245,232,143,123, 53,234,219,191, 10, 2, 91, 52, 38, 94,206,150, 19, 22,175,216,240, 85,109, 71, +242,205,227, 36,186,218,144, 7, 63, 78,166, 47,106, 57,144, 45, 23,130, 99,199,184, 41, 85,224,121,138, 11,143, 18,240,232, 85, +198,150, 39,201,244,133, 49,145,168,237, 66, 58,136, 33,218, 67, 41, 85, 88,154,154,230,212,175, 87,211,174, 67,243,122,162, 46, +109, 26, 65,202, 0, 87,111, 63,196,164, 21, 7,111,242, 60,237,126,207,192,225,193,130, 21,131,175, 11,167,130, 21,131,250,215, + 86, 12, 82, 74,105,193, 42,194,242,167,117, 49, 12, 73,204,143,186,227, 36,177,245,134, 42,226, 2, 94,101,240,136, 74,206, 65, +182,216, 9,154,184, 56,128,242,209, 23, 41,173,116,105,182,179,179,115,168,234,231, 83,125,237,182,253,208,229,103,225,197,197, +173,200,205, 72,192,252, 95,142, 86,119,115,115,107, 19, 27, 27,123,201,136, 74,198,231,220,241, 93, 14,160, 0, 35,145,227,207, +245,123,145,106,107, 2, 59,165, 20,188, 42, 5,163, 39, 14,179,236,218,113,152, 37, 0, 68, 61,125, 0, 79,165,202, 32, 94,157, + 45,250, 14,108,235,107, 5,189, 10,219, 78, 61, 80,139,128, 46,219,207, 60,142,104, 91,211, 74, 49, 48,192,211,122, 94,124,102, + 63, 84,210, 25,104,145, 5,171,216,162, 87,137,213,131,251, 40,229,106,217,147,136, 61,215,147, 77,251,119,108,168,148,138, 9, +161,185,113,160, 38,118,216,176,109, 95,174, 76,143, 77, 66,211, 41, 64,128, 97,200,207,207,191, 71, 8,169, 51,117,234,212, 33, +179,102,205,106,109,106,106, 90, 21, 0,242,242,242, 94,232,245,250,203, 0,118, 25,179,218,175, 80, 48, 61, 39,132,188,120,249, +242,165,211,206,157, 59, 45,241,151, 63, 70, 21,128, 44, 20, 56,204,172,244, 10,194, 34, 49, 69, 8,153,243, 30, 69,195,137, 66, +206, 26,149,185, 95, 36, 18,113,132, 16, 16, 66, 32,151,203,113,229,202, 21, 12,232,222, 17, 79,254,204,132,191,149, 25,154,140, + 28,141, 61,103,207,130, 97, 24, 16, 66,192, 48,140, 81,237,136, 88, 44,198,213,171, 87, 49,124,112,127,200,197,128,165,165, 37, +166, 78,157,138, 35, 71,142, 64, 44, 22,118,211,251, 91, 4, 22, 8,230,157,221,186, 80, 10, 78,143, 99, 91,151,225,120, 72,174, +246,105, 10,190,245, 77,193,170,253,200,225, 83, 86,108, 31,115,246,106,200,210, 79, 7,245, 80,182,107,219, 17,237, 2,219,138, +107, 55,110, 51, 27,192,234, 18, 13,117,135,242,124,101,112, 60,126,220,116, 42,108,244,158,139,225, 4,186, 28, 12,234,212,152, +114, 60,126,172,160,241,127,139,211,210,196,108,207,213, 27, 55,172,161,203,197,171, 7,231, 21, 85,170, 86, 7, 56, 29,158, 63, +127,134,159,183, 29,226, 47,222,126,250,135,150,197,248,136,116,154,103, 40,103,129,162, 98, 97,105, 42,243,237,234,111,121,146, + 7,133,149, 82, 90,147,242, 28,172,148,146,154,157,106,153,158,164,148, 82,115, 19, 73, 77,202,233, 43,228, 84,105,217,141,219, +126,219,178,124,212,168, 81,166,169,177,137,136,207, 14, 65,174,204, 21,122,165, 59, 34, 30, 92, 86,229,107,216, 10, 27,239,242, +210, 51, 53, 53, 53,249,222,173,116,236,249,101, 17,244, 90, 13,146, 99, 11, 52,106,124,106, 54, 44,236, 92,111, 24,195,169, 99, +249,172,190,195,190,144,154,152,195,100,120,223, 30,178,136, 52, 13, 26,184,152, 23, 84, 22,185, 41,120, 18,116, 21,129,121, 5, +122, 45, 50, 70, 4,207,122, 46, 6,133,211, 92, 33, 29,223,181,161, 43, 94, 68, 39,224,202,227,184,109,145,105, 52,190,154, 45, +217, 22, 17,159, 57,166, 87, 51, 15,172, 60, 18,250,117, 89,162,168, 44, 78, 63, 71, 50, 4, 64, 64,193, 36,119, 21, 40, 16,224, +231, 72,134, 24,178,114,176, 52, 78,177, 20, 67,151,159,140,250,110,223,157,212, 94,211,134,182,178,104,209,162,155, 12,172, 22, + 57, 42,141, 62, 52,131,102,191, 75, 30,189,131,117, 82,224, 20, 56,255,149,156,133, 98,231,143,194,227,125,114,198, 21, 30,239, + 45,238, 37,135, 3, 41,165,226, 66,235, 85,185,147,220, 43,226, 44, 57, 28, 72, 41, 61, 81,104,189, 42,215,138,245, 38, 39,207, +243,241,141, 26, 53,178,233,217,179, 39, 56,142,195,179,103,207, 16, 21, 19,131, 14, 99,190,134,149,149, 21, 46, 7, 7,227,233, +211,167,152, 51,103, 14,244,122, 61, 14, 31, 62, 28, 91, 17,167, 88, 44,214, 85,175, 94, 93,218,187,119,111,176, 44,139,200,200, + 72,196,197,197, 97,210,164, 73,176,180,180,196,189,123,247,138, 57, 83, 83, 83, 33, 22,139,117,255, 68, 89,250,239, 8, 44,128, + 3,167, 71,214,217,185, 88,125, 5, 58,157, 30, 53, 31, 39,211,146, 99,218, 27,234,218,146, 99,193, 33, 97, 47,238, 93,107, 39, + 67,242,163,130,123,140, 64,120, 42, 77,104,236, 46,206,129, 46,199, 2,145, 39,241, 50, 41, 39, 55, 60,149, 38, 24, 27, 9,202, +115, 4,186,124, 32,225, 46,174, 95,190,132,139, 55, 31,226,206,163, 48,238,250,189,240, 61, 34, 30, 63,134,166,210,103,149,232, +117,192,172,251, 74,140,120,244,220,163,177,143,163, 7, 56, 22,148,215,195,114,208, 46,140, 12,109,225,209,184,154,149, 71,129, +229, 74, 15,235,207,206, 3,203, 21,229,242,221,137,214,109, 10,168, 42,239,151,147,153,214,172,125,155,230,166,150,181,186, 34, +245,121, 56,158, 61,188,170,186, 23, 18,113,253, 78,180,238,157,172, 35,174,174,174,173,219,183,241,197,160,209, 51,161,203,207, + 66,228,197,223,144,155,158,136, 43, 55,204, 16,150,157,221, 28,128,193, 22,172,235, 81,250,218, 0, 16,224, 37,141, 54,135,198, +233,227, 30, 61, 33, 39,106,240,154,108,144,252, 84, 68,196,105,179,250,253, 18,195, 1,128, 82, 78,196,166, 52,203,194, 16, 94, + 63, 79, 91,111, 37,163,199,246,179,143,193,243, 5,219, 44,241, 60, 54,108, 63, 31, 49,230,199,225, 13,224,231, 97, 93,143, 20, + 58, 63, 49,184,210,164,104,117,103,207, 15, 53,213,231,102, 3,188, 14, 87, 39,216,212,108,181, 58,189, 85,101, 45, 97,143,226, +104, 28,128, 49,181, 92,200,198, 9,171, 79,205,110,116, 54, 52, 96,202,103,189, 44, 64,133,141,209, 5, 8, 16,240,207, 35, 55, + 55,119,244,200,145, 35, 55, 74, 36, 18,123, 0,132,231,121,240, 60, 47, 94,186,116,169,132,227, 56,145, 72, 36,226, 24,134, 97, + 79,156, 56,161,231, 56, 46, 69,173, 86,143,174,136,147,101,217,136,177, 99,199, 86,175,104,197,225,238,221,187, 33, 22,139,117, + 44,203, 70, 8, 57,241, 62, 5, 22,197, 15, 45,135,207,157, 11,128,128,226,251, 55,196, 21, 0, 32, 56,141,198,215,118, 32,147, +106, 55,110, 51,183,232, 30, 99, 3,160,230,184,254,141,235,248,236, 6, 0, 13,229,134, 87, 38, 18,217, 26,213,192,250,141,155, +239,225, 41, 21,179,148,110, 17,241, 56,160,102,241,196,144,149,115,101, 33, 62, 57,243, 94,209, 6,206, 60,232, 95,195,130,133, +238, 24, 40,165,180,120, 88,112,153, 2,169, 89,154, 10,253, 56, 93,125,161,233,216,216, 67,250,197,153,107, 15, 70,115, 28,117, + 98, 24,146,168,210,178, 27,223, 85, 92, 1, 64,108,108,236, 37, 63, 7,114, 38,184,158, 99, 39, 59,101,161, 85, 43, 31, 72,205, +199,153,216,228,156, 75,149,225,204,200,211,247,154,181,234,200, 81,153,132, 17,131,210, 2, 71,160,148, 66,173,227,210,139, 68, + 88, 93, 91,226, 50,245, 48,187,155, 97, 72, 84, 69,124,183,158, 38,172, 28,180, 56,232,155,199,175, 50,182,188,204,160, 33, 0, +240, 50,131,134,212,176, 37,179, 35, 18,115,190, 9,137,202, 88,102,236,188, 9, 74,112,165,241,160,185,111,157,123,215,244,124, + 18, 79, 31, 2,232, 83,219,129,116, 28, 52,229,231, 41,132, 64,216, 38, 66,128,128,255, 16,138,172, 88, 34,145,104,222,123,228, + 60, 65, 8,233, 6,224,185, 17,247,220, 2, 80,231, 61,199, 45, 13, 64,154,144,203,255, 79, 2,235,113, 50,221, 0, 3, 54,115, + 54,244,186, 50,239,143,167, 65, 0,108,223, 37, 18,133, 28, 54,239, 51, 97,130,147,232,236,191, 35,193, 11,197,212,223, 50,151, + 39, 52,153,118, 6, 0, 31, 31, 31,250,236,217, 51,188,171, 23,220, 39, 41,244, 33,222,216,114,161, 52,145, 13,160,149, 33,124, +225,169,244, 71,224,237, 33,224,231,105,116, 62,128,249,149,138,115, 37, 61,181, 27, 92,182,146,233, 89,160, 98,111,250, 2, 4, + 8,248, 48, 69,214,223,192,121, 66, 72,217,255,184,192, 18,240,239, 69,120,120, 56, 17, 82, 65,128, 0, 1, 2,202, 4,247, 55, +112, 10, 78,135, 5,188, 6,145,144, 4, 2, 4, 8, 16, 32, 64,128, 0, 1,239, 23, 4, 64,135, 82,165,184, 17,171, 3, 8, 33, + 29,140,150,250, 21,240, 11,156, 2,167,192, 41,112, 10,156, 2,167,192,249,225,113, 86,196,253,193,172, 78,164, 37, 38, 47,191, +239, 3, 64, 7,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5,206,255,218, 33, 12, 17, 10, 16, 32, 64,128, 0, 1, 2, 4, +188,103, 8, 2, 75,128, 0, 1, 2, 4, 8, 16, 32, 64, 16, 88, 2, 4, 8, 16, 32, 64,128, 0, 1,130,192, 18, 32, 64,128, 0, + 1, 2, 4, 8, 16, 4,150, 0, 1, 2, 4, 8, 16, 32, 64,128,128,202,131, 24,185, 51,137, 0, 1, 2, 4, 8, 16, 32, 64,128, +128, 10, 32, 2, 0, 66, 8, 45,249, 41, 64,128, 0, 1, 2, 4, 8, 16,240, 79,226, 67,211, 34,194, 16,161, 0, 1, 2, 4, 8, + 16, 32, 64,128, 32,176, 4, 8, 16, 32, 64,128, 0, 1, 2,254, 29, 2, 43,176,208, 36, 23, 40, 36,137, 0, 1, 2, 4, 8, 16, + 32,224,255, 1, 31,148, 22, 41,158,228, 78, 8,161,148, 82, 34,228,175, 0, 1, 2, 4, 8, 16, 32,224,255, 69,148,124, 64, 90, + 68, 88, 69, 40, 64,128, 0, 1, 2, 4, 8, 16,240,158, 33,204,193, 18, 32, 64,128, 0, 1, 2, 4, 8,248, 55, 9, 44, 66, 72, + 7,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5, 78, 65, 96, 9, 16, 32, 64,128, 0, 1, 2, 4, 8, 16, 4,150, 0, 1, + 2, 4, 8, 16, 32, 64,128, 32,176, 4, 8, 16, 32, 64,128, 0, 1, 2, 4,129, 37, 64,128, 0, 1, 2, 4, 8, 16, 32, 64, 16, + 88, 2, 4, 8, 16, 32, 64,128, 0, 1,255, 79, 32, 0, 74, 93, 9, 64, 41, 13, 50,152,164, 18,171, 9, 42,226, 23, 56, 5, 78, +129, 83,224, 20, 56, 5, 78,129,243,195,227,172,136,219, 24,253,241, 63, 13, 74,233,223,118, 0,232, 32,112, 10,156, 2,167,192, + 41,112, 10,156, 2,167,192,249, 95, 59,132, 33, 66, 1,134, 90, 41, 29, 9, 33,142, 66, 74, 8, 16, 32, 64,128, 0, 1, 21, 67, +252, 62,201,106, 17,210,110,108, 93,199,125, 95, 61, 76,180,169,232, 90, 7, 7,135,141, 74,165,114, 88,126,126,126, 30, 33,132, + 47,105, 81, 3, 80,114,255,158,200,228,228,228, 86, 21,241,201,229,242, 85,142,142,142,159,229,230,230,230, 19, 66, 40, 33, 4, +132,144, 34,113,240,218, 39,199,113,177,169,169,169,141,254,213,130, 7, 96,236, 28, 29,111, 75, 24,198,213,216,123, 57,158,127, +153,148,152,216,220, 8,113,181,136, 16, 76, 43,252,190,132, 82, 58,243, 3, 84,144,140, 33,151,249, 3,230,225,192, 32, 78, 36, +250, 90, 2,172,211,240,252, 47,133, 5,151,171,236,163,181,183, 73,117, 66, 81,143, 16, 88, 82,138, 44, 74,240, 80,214,132, 70, +252, 63, 9,233,102, 18,137,100,160,181,181,181,121,114,114,242, 57, 0, 71, 1,124,228,224,224,208, 62, 35, 35, 35, 71,175,215, +239,165,148,222,172, 12,119,235,250,100,186, 76, 42,249, 84,173,211,255,116,245, 1,253, 45,176, 33,177,101,121, 44, 86, 72,197, +173, 52, 90,118,201,149,135,116,139,145, 97, 37,111, 88,227,141,222,247,107,191,129,249, 14, 0,135,173,173,125,228,246, 22,231, + 36, 50,230,101,102, 82,238,176,254,201,201, 49,253,223, 33,223,255, 23, 97,111,111, 63, 66, 36, 18, 45,160,148,130,227,184,111, +211,210,210,182,190,167,114, 53, 4,128,105,225,207, 60, 74,233, 46, 35,238,141, 2,224, 81,248, 51,154, 82,234, 89,222,121, 1, + 70,231,205,134, 67,135, 14,141,105,219,182, 45, 86,174, 92,137, 13, 27, 54,188, 74, 73, 73, 89, 12, 96, 27,165, 84,251, 79,243, + 8, 2,171, 20,248, 17, 82,103, 84,151,230,127,142, 30,208, 69,102,192, 75,252,107,151, 46, 93,134,111,219,182, 77, 18, 30, 30, +110,226,229,229, 5,145, 72, 84, 44,128, 74,214,147, 85,170, 84,225, 43,226, 99, 24,102,117,159, 62,125, 70,238,223,191, 95,121, +239,222, 61,101,173, 90,181,138,249,120,158,199,155,245,174,151,151, 87,185,124,150,150,150,119, 25,134,113, 43, 77,156,149,245, +157,227,184,216,180,180,180, 70, 6, 20,194,206, 0,102, 24,144,164,139, 41,165,167,203,187, 64,194, 48,174,241,241,241, 14,198, +230,149,187,187,187,206,136,151,198,145, 16, 76,227,121, 42, 2, 0,145,136, 76, 55, 49, 49,217,160, 82,169, 98,138,254, 47,204, +179, 36, 99,194,224,230,230,214,149,231,249, 33, 5,156,162, 93,177,177,177, 39,141,185,223,194,194,226,174, 76, 38,115, 19,139, +197,164,180,124,121,243, 55,199,113, 84,167,211,197,166,167,167, 27, 45,172, 47, 1,164, 11,208,154,101,152,137,182,118,118,173, +238,157, 57, 99,234,239,239, 47, 98, 24,102, 38,128, 95,222,229,189,209,222, 38,213, 57, 61, 6,168,244,242, 30,114,207,239,125, + 52, 81,223,135,155, 72, 52,199,181,183,201,190,127, 90,100, 17, 66,186,124,242,201, 39, 11,127,250,233, 39, 59,153, 76, 38,218, +187,119,111,243, 73,147, 38,125,186,114,229, 74,215,129, 3, 7,154,107,181, 90,126,250,244,233,173, 9, 33, 63, 80, 74,143, 24, +195,221,162, 62,105,230,235,229, 60,103,220,176,118,248,102,209,238,113, 1,117, 72,170,137,169,116, 67,191, 86,213,173,106, 87, +181,198, 15, 27,175,143, 7,176,197,136,176, 18,137, 68, 82,223,201,201,201, 75,163,209,112,133,157, 54, 90,162, 78, 0, 0,104, + 52, 26, 93, 70, 70,198,137,119, 77,155,111, 20,138,166, 77,173,204,206,206, 29,242,137, 73,118, 70,186,227,234, 63,143, 6,239, +135, 67,221,254,192,171, 15,169, 65, 16,137, 68, 11,226,226,226,156, 41,165,112,118,118, 94, 0, 96,235,123,162, 54, 45,170,135, + 9, 33,166, 70,222,235, 81,226, 94, 15, 3,206, 87,166,236, 43,196, 34,209, 88,153, 68,210,137,227,184, 58,133,101,232,145, 86, +175, 63,203,242,252, 58, 74,169,250, 3,214, 1,211,198,140, 25,211,113,214,172, 89, 94,211,166, 77,195,180,105,211,170,108,222, +188,121,227,194,133, 11,167, 19, 66,234, 82, 74,115,255, 97, 30, 65, 96,189, 33,174,220, 59,215,247,185,248,245, 39, 3,164,252, +254, 85, 4, 35,190, 43, 87, 92, 53,111,212,232,211,109,219,182, 1, 0,134,245,234,133, 78, 77,154,192,220,204, 20, 50, 89, 65, +112, 8, 37,144, 74,164,232, 61,105,178, 33, 47,198,146,190,125,251, 14,221,191,127,191, 25, 0,108,216,176, 1,125,251,246,133, +141,141, 13,148, 74, 37,164, 82, 41, 36, 18,201,107,159, 6, 8, 54,183,184,184, 56, 7,133, 66, 81, 44,248,120,158,127,237, 40, + 49, 14, 13,150,101,225,237,237,109,104,114,205,200,202,202,106,157,151,151, 87,238,216,109,213,170, 85, 1,224,180, 33,132, 11, +230,255, 8,158,205,131, 88, 12,176, 44,160,209,137,192,151,210,151,119,113,113,193,216,177, 99,241, 46, 27,124,247,232,209, 19, +148,210, 13,174,174,174,199,147,146,146,252, 9,193,232,202, 88,182, 40,165, 31, 63,127,254, 92,201,243, 60,124,125,125,135, 3, + 48, 74, 96,137,197, 98,183,224,224, 96, 7,185, 92, 94,166,165,178,132,248,133, 78,167, 67,131, 6, 13, 88, 99,158,225, 8,120, +164,139, 68,159,215,111,216,240,139, 57,189,122,153,220,189,123, 87, 46, 18,137,192,178, 44,150, 46, 93,202, 82, 74,173,252, 0, +139, 80, 32,187,156,242, 57, 11,192,136, 66,171,236, 22, 74,233,210,215,254,167,168,167,210,203,123, 68,230,246,110,210,180,202, +116,132, 62,126,212,164,154,217, 97,152,139, 53, 17, 0,254, 81,129,101,105,105,217,127,229,202,149,246, 91,182,108,201,126,250, +244,169,238,151, 95,126,177, 31, 61,122,116, 77,157, 78,135, 49, 99,198,164,248,250,250, 74, 87,174, 92,105,127,232,208,161,206, + 0,140, 18, 88, 98,130, 31, 7,247,234, 4,181, 94, 4,189,158,181,119,182, 55,255, 99,194, 39,129, 18, 74,181,216,126,228, 30, +244, 44,255,155,145,150,171,250,253,250,245,243,220,181,107,151,248,201,147, 39,226, 90,181,106,129,227,184,226,131,231,121,112, + 28, 7, 31, 31,159,119, 78,151, 79, 1, 31, 59, 71,155,179,205,187,117, 53,113, 86,200, 97,147,145,130, 81, 82,177,249, 86,165, +102, 7,128, 22, 31, 82,131, 64, 41,133, 88, 44, 70, 76, 76, 12, 28, 28, 28, 76,108,108,108, 18, 0,124,159,158,158,190,233,111, + 18,245,149,182,108,189,199, 48, 52,145,137,197, 7,182,255,182,218,169,105,139, 22,140,163,179, 3,194,159, 69, 67, 76,184, 14, +193,119,238, 5,126,250,229,148, 9,132,144,126,148,210,219, 31,154, 0,112,110,249, 85, 31,231,128,175, 55, 16,202,227,135,181, + 71,115, 22, 45, 89,165, 28,243,249, 39,204,164, 73,147,224,238,238,238,213,167, 79,159, 37, 0,190,172,144,167,217, 87,125,156, + 90,140,219, 0, 74, 49,247,231,163, 57, 11,151,172, 82,126, 89, 9, 30, 65, 96,189, 1,127, 66,172,234,122, 58, 94,154, 63,109, +180, 25, 61,249,187, 40, 63, 45, 25,101, 73, 24, 7, 7,135,141, 93,187,118, 29,182,117,235, 95,157,162,230,254,254,232,211, 46, + 0, 14,182,150, 80,154,202, 10,154, 33,158,224,225,211,151, 6, 9, 1,119,119,247, 49, 7, 14, 28, 48, 43, 41, 34,164, 82,105, +241, 81, 82, 92, 21, 29,111, 90, 58, 74,131, 66,161, 64, 80, 80, 16,196, 98, 49, 24,134,129, 88, 44, 46, 62, 74,254,102, 24, 6, +142,142, 70, 77, 77, 90,108,105,105, 89, 55, 39, 39,199, 34, 51, 51, 19, 30, 30, 30,217, 0,130, 75,252, 95, 55, 37, 37,197,194, + 24, 66,158,205,195,164, 81,181, 32,209,222,132, 86,210, 4, 42,113, 75, 92,191,243, 4,199, 79, 95, 66, 92,124, 34, 2,154,213, +199,199, 67,250,227,236,217,179,224, 56,206,216, 10, 55,137, 16,178,228,163,143,122, 78, 7, 8, 2, 3, 3,147, 38, 76,152, 64, + 67, 66, 66,250, 12, 24,208,191,253,179,103,207, 73,161,101,107, 26, 33,100,181,161,150, 44, 74,169, 20, 0, 46, 95,190, 12, 74, +169,172, 50,101, 79, 46,151,227,198,141, 27, 40, 26, 14, 22,137, 68, 16,137, 68, 96, 24, 6,199,158,219, 33, 79, 43, 66,126, 82, + 8,190,238,225,129,170, 85,171, 66, 36,170,120,202, 97, 32,160,184, 14,244, 33, 18,201, 36,103, 23, 23,175, 54,213,170, 41,131, +130,130, 24, 0,240,244,244,164, 9, 9, 9,153,135, 15, 31,206, 17, 3, 27, 60, 41,221, 86,158,184,242,240,240,104, 41, 18,137, + 22, 20,165, 57, 33,100,137,151,151,215,156,226,124,227,121, 12,233,104, 35,153, 48, 97,162,180,105, 96, 65,167,164,105,207, 93, +200,142, 92, 84,139,164,207,178,252,167, 43,131,172,172,172, 63,124,124,124,152,148,148,148,243, 0, 94,232,245,250,181,127,252, +241,135,195,168, 81,163,146,119,236,216, 49, 14,128,251,210,165, 75, 59,231,230,230,238, 49,134,183, 85, 61,210,173, 81,125,255, +102, 30,238,238,184,116,253, 54,164, 50,137,213,216, 17, 61, 96,102, 38,198,178, 45,127,242, 81,177,233,227,174, 60,164,219,140, + 16, 87,117,251,247,239,239,190,107,215, 46, 41, 0,132,132,132, 32, 57, 57, 25,182,182,182, 80, 40, 20,197,239,124,145, 21,235, + 93,197,149,165,187,237,173,195,135,143,152,216,216, 88, 97,237,228, 9,248, 56, 62, 22, 22,140, 8,122, 61,188, 62,164,198,128, + 16,226,211,175, 95, 63, 5,199,113,200,203,203,195,197,139, 23, 45, 77, 76, 76, 44,221,220,220,230, 2, 48, 88, 96,153,152,152, + 36,169,213,106,135,194,122, 52, 89,165, 82, 57, 2,200, 87, 40, 20, 38,133,151,168,140,180,108, 69,151,176, 80, 69, 27,112,222, +152, 56, 55,110,210,184,110,208,193,253, 59,205,178,114, 18, 97,101,157, 12, 17,178,176,105,211, 58,152,152, 88, 96,238,220, 89, +226,151, 29,218,185,118,238,214, 47,136, 16,210,225,131, 19, 89,148,108,234,208,115,152,141,137,210,188,176, 45,209, 99,235,230, + 9, 16,137, 68,152, 51,103, 14,106,215,174,253, 5, 33,228, 59, 74,105,122,249, 52,216, 84,167,245, 64, 27,153,162,160, 41,230, + 57, 61,126,217,253, 77, 1,207,204,209, 24,220,179,234, 23, 15,119,144, 83,181,171, 33,167,160,254,135, 74, 34, 66, 52,154,208, +228, 18,121,209,134, 82,122,169,172,223,255, 74,129, 69, 8,161,148,210,146,195, 44,175,253, 46, 15, 85, 8,145,123, 91,155,157, + 94,255,253, 4, 23,230,198,159, 98, 85,244,115,196,171, 57, 88,253,213,136,190,182,212, 82,169, 84, 14,219,186,117,235,107,250, +203,195,209, 1, 82,169, 4, 18, 41,129, 85,171, 30, 0,128,204, 43,199, 65, 8, 45,171, 97,126,141, 51, 47, 47, 79,253,224,193, + 3,179, 45, 91,182,192,193,193, 1, 94, 94, 94, 80, 42,149,197, 21,109,201,163, 72,104,189, 41,176,222,228, 44,250, 95, 44, 22, + 67, 36, 18,225,236,217,179, 96, 89, 22,253,251,247,127, 75, 92,137,197,226, 82, 5, 91, 89,203, 76, 41,165,167, 9, 33,193,148, +210,214,133, 13,111, 48,165,180, 77,137,103,119,182,183,183,159, 1, 96,177,161,156, 12, 67,193,168,175,131,119, 91, 5,113,204, + 4,104, 37,245,112,225,234, 61,108,221,184, 18, 0,224, 85,179, 49, 6,244,233, 81,108,125, 51,132,243,181,222,137,179,243,182, +228,228,148, 6,109,219,182, 69, 86, 86,150,118,238,220,185,168, 91,183, 46,124,124,124, 13,202,163, 50, 42,182,212,135, 15, 31, + 58,171,213,106, 16, 66, 82, 13, 16,100, 65,165,112,224,143, 63,254,128, 90,253,182,245,222,186,205, 66,124,211,215, 19, 35,191, +222,134, 37, 79,247, 98,253,250,245,229,198, 93, 9,212, 85, 91,214, 88, 45, 99,216,186, 63,125, 59, 78, 62,124,248,112,102,228, +200,145,136,142,142,198,168, 81,163,212,103,207,158,213, 38, 38, 36, 28,145,241,252, 90,221,235,130,184, 76, 78,185, 92,190,253, +244,233,211,216,187,119, 47, 0, 32, 60, 60, 28,222,222,222,175, 53, 34,124,250, 62,228, 68,173,197,173, 99, 97,104,218,115, 23, +110, 29, 27, 2, 46,243, 79, 73, 35,111,100, 25,147,158,149,176, 84, 4,149,114,238, 34,128,139, 37,210,247,187, 29, 59,118, 12, + 0,112,144, 82,122, 29,192,117, 0,187,141,225, 44, 32,194,200,129,125,123, 67, 44, 53, 71,216,243, 88,180,105,222, 0,142, 14, + 14, 8,126, 18,129,168,184,244, 36, 66, 48,162, 75, 75,249, 98,149, 74,251,221,229, 7,244,215,138, 56,221,221,221,171,238,219, +183, 79, 82,194,226, 12,134, 97, 94,235, 80, 21,157,171,108,249, 44, 18, 87,230,110,102,183,126, 92,215,210,244,214,163, 29,240, +246,236, 6,139,206,221,176, 98,247, 46,196,166,102,169,217,124,182,253, 63,157, 71,127, 23, 39, 33,196,167,111,223,190,215,119, +238,220,105, 21, 19, 19,131,203,151, 47,195,203,203, 11,249,249,249, 21,118,116,223,228, 84,171,213, 14, 37, 68, 83,209, 20,134, +221, 26,141,166,168,162,164,198,132,179,172,185, 85,198,206,185, 42,165,158,151, 41,164,210,125,135, 15,238, 54, 11, 13,187,140, +250,245,154,193,204,210, 15, 60,151,136,180,244, 92,100, 60,143,199,252,249, 75, 48,247,251,111,113,244,208,126, 51,223, 90,245, + 14, 16, 66,106,148, 28, 46,252,183,231, 59, 8,253, 34,232,216,142, 13,132,242, 80, 37,133,201, 37,121, 47,148,195,134,244, 99, + 6, 13, 26,132,163, 71,143,226,241,227,199, 27,202, 18, 87, 37, 57, 9,197, 23, 33,151,247,110, 0,165, 80, 37,135,201,165,170, + 23,202, 79,134, 14, 96, 62, 30,220, 9, 55,207,175, 70,167,250, 47, 66, 92, 28,208, 39,163,112,144, 80,204, 32, 77,174,192, 53, +147,219,228,102, 9,145,117,177,176, 15, 85, 36,172, 46,162,192,149,212,191,223,130,101,140,176, 42,188,158,105, 40, 19, 31,252, +109,238, 87,254,138, 87, 33, 82, 77,200, 13,196,107,120,186, 37,154,205, 88, 85,198, 61,249,249,249,121, 17, 17, 17, 38, 35,250, +244, 65, 11,127,127, 56,219,218,162,134,155, 27, 76,228, 50,200,164,146, 18,245,177, 81, 61, 16,234,235,235,139,158, 61,123, 66, + 34,145, 64,169, 84,194,204,204, 12, 50,153,172, 84,235,149, 68, 34, 49,216, 84,206, 48, 12, 66, 66, 66, 16, 21, 21, 5, 43, 43, + 43, 92,187,118, 13,237,219,183,127,203,138, 85, 82,148, 25, 99,138,127,179,193, 47, 18, 96, 48,112,104,176, 8, 28, 71,144, 75, +235, 65,241,106, 28,242, 73, 3,104, 52, 44, 52, 26, 13,126,189,170,195,237,136, 60,232,116, 90,104, 52,154, 50,159, 89,158,181, +192,201,201,169, 79,205,154, 53,135, 13, 25, 50, 68, 43,145, 72,144,159,159,143,252,252,124, 60,121,242, 68,219,169, 83,167,164, +143, 62,234,233,120,252,248,113, 74, 41,150, 24, 51, 15,139, 82,154,225,226,226,226,172, 80, 40, 64, 41,205,168,100,239,179, 88, +188,188,137, 17, 43, 66, 33,102, 10,242,100,195,134, 13,224, 56, 14,229,149,111, 53, 33,231,190, 95,184,220,242,167, 85,191,193, +210,198, 17,151, 46, 93,226, 78,157, 58,149, 67,128,240,103,143, 31,175,248, 8, 56,177, 15,208, 25, 19,190,140,140, 12, 19, 47, + 47, 47,184,185,185,129,231,121,232,245,122, 4, 7, 7, 35, 49, 49, 17,105,105,105, 80,169, 84,176, 49,205, 68,117, 91, 55,176, + 57, 23,145, 16,242, 3,156,205,194,176,237,180, 86,223,208, 7, 15,255,223, 59,183,148,158, 0,112,226,221,137,224,234,224,228, + 14, 17,213, 35, 62, 57, 13,189,187,119, 2, 35, 53,195,203,152, 84,212,243,171,230, 60,244,163,150,206, 12, 97, 49,109,241,174, +177, 0,126,173,136, 46, 63, 63,159,123,242,228,137,228,225,195,135, 96, 24, 6, 22, 22, 22,197,211, 1, 74,138, 43, 67,166, 3, + 84, 36,174, 22,110,104,111, 42,146,228, 33,155, 11,194, 47,191,223,132,183, 71,123,108, 13,123,166, 22,103,230,118, 88,166, 86, +135,255,171,135,135,156,157, 71,243, 60, 63,151, 82,154,217,183,111, 95,199, 93,187,118, 89,199,197,197,225,222,189,123,152, 51, +103, 78, 10,199,113, 44,165,148, 80, 74,127,120, 15,101,137, 47,105,217, 50, 49, 49, 41,178,108,229,149,176, 92,229, 85,162, 14, +144, 40, 21,248,218,206,130,244, 18,139, 44,188,216,236,220,151,169, 90,122, 36,159,229,127,166,148,234,203,187, 87, 36, 18,125, +182,127,207, 6, 23, 59,123, 30,129,246,237,144,144,164,195,194,201,159, 32, 45, 45, 7,191,110, 94, 4, 64, 6, 29,203,160,117, + 96, 63, 56, 56,184,226,139,207,191,112,218,176,241,151,175, 0, 44,251, 80, 12, 88, 9,215,214, 29, 34,132, 4,217,219,219, 63, +254,234,139, 47,236,189,188,134, 67,161, 80, 96,247,238,221,216,181,118, 45,183, 10, 24,176,145,144, 11,163, 41, 61, 84, 46,207, +205,191,120, 38,140, 25, 99, 95,171,214, 24,200,229,114,156, 63,245, 59,212,137,127,228,116,111, 1, 93,190, 26,221,171,244,164, + 54,175,142,145,116,137, 4,207, 1, 64,162, 64,130, 4, 72,126,131,238, 95, 47,172,222, 18, 88,198,162,154, 84,121,125,243,228, +129, 13,236,121,149, 88,123,245, 24,226, 52, 60,187,244,185, 78,119, 55,147, 14, 43,167, 64,243, 30, 30, 30,104,215,168, 17,250, +180,106, 5,177, 88, 12,133, 76, 10,115,133, 9, 40, 87, 96,185, 42, 26, 34, 52, 84,235, 21, 9, 27, 91, 91, 91, 72,165,210, 98, + 97,101,168,245,170, 44, 78,158,231, 33, 22,139, 17, 28, 28,140,128,128, 0,184,187,187, 99,239,222,189,232,220,185,243, 91, 67, +134,198,138,171, 34,129, 85,114,184,174,196,228,247, 10, 39,183,191, 37, 14,180, 4,169,218,122, 32,196, 31, 44, 11,112, 20,208, +168,213,160, 20,160, 20,208,235,180, 80,171,213,197,207, 52,100,232,213,205,205,205,197,203,203,107,242,140, 25,211,106,212,173, + 91, 31,169,169,169,224,121, 30,102,102,102,200,207,207,135,133,133, 5, 90,180,104,113,127,193,130, 5,233,148, 98,134,177,147, +220,223,195,112, 6, 0,224,204,153, 51,175, 13, 15, 22, 29,121, 9,177, 24, 57,126, 7,100, 98, 32, 56, 56, 24, 53,107,214,172, + 72, 92,138,218,182,110,137,235,247,195,217, 81, 83, 87,105, 36,105,247, 22, 59,241,252,214, 88, 32,233, 29, 26, 21,164,166,166, + 34, 41, 41, 9,189,122,247,198,174,157, 59,241,234,213, 43,248,249,249,161,109,219,182,112,112,112,192,171, 87,175,112,251,138, + 6,154,140,116,164,107,239, 65,105,222, 20,135, 47, 69,104,102,175,215, 70,252,127, 85, 10,132,144,198, 0, 70, 89, 90, 90, 86, +201,207,207, 79,212,235,245,123, 11, 69,127,103,137, 68, 50, 80,169, 84, 58,101,101,101,189, 2,240, 43,165,244, 78,133, 67, 70, + 10,133,173, 92, 97, 1,158,213, 64, 44, 22,195,221,221, 11,148,211, 34, 35, 91,133, 17,131,122,226,126,240, 19,156,186,112,147, +213,235,249, 53,134,134,209,199,199, 7,105,105,105, 96, 24, 6, 74,165, 18,166,166,166,240,245,245, 69, 76, 76, 76,177,184,170, +236, 16,225,167,128,143,133,135,217,205, 5,235, 10,196, 85, 98,124, 2,226, 94, 81,200,101, 50,108,220,180, 33, 47, 63, 49,163, +233,111, 64,248,191,189,242,231,121,254,135,184,184, 56, 7,177, 88,236,196,178, 44, 98, 98, 98,112,247,238, 93,140, 27, 55, 46, + 41, 45, 45, 45,144, 82, 90,169, 56, 42, 20,138,228, 34,203,149, 66,161, 72, 46,207,178,245, 46,115,174, 8, 33,213,188,220,204, +207,110, 94, 57,201,163,113,211, 22, 34,165,216, 34, 35,247,121, 98,192,213,203,151, 90,140, 91,249,235, 87,132,144, 78,148,210, +200,178,238,151, 75, 36, 93,155,181,108, 41, 6, 77,130, 88, 22,128, 37, 63, 13, 66, 74,106, 54, 50,210,115, 32,149,154, 66,171, +103,192,241, 4, 45, 2, 90,225,247,109,123, 80,251,243, 81,140, 76, 34,233,248, 33, 9,172, 66, 44,250,249,231,159, 61,124,125, +125,177,117,235, 86, 92,216,190, 29, 31,103,101,225,146, 72,196,232, 37, 18,187, 19,122,253, 38, 0,135, 12,229,169, 93,187, 54, +126,251,237, 55,252,241,199, 31,209,195,218, 39, 31,152, 52, 12, 14, 58, 29,186,220,123, 10,155, 42, 61,129,123, 79, 97,211,208, + 23, 53, 88, 49,158, 19, 2,147, 55,242,180, 77,201,207, 15, 65, 96, 5,146,130,241,184,226,207,138,110, 50,117,244, 29,178,115, +120,199, 70,126, 85,221, 68,250,189,171, 17,151,207,170,231, 60,213,241, 79,115,104,191,208,114,196,129, 72, 36,162, 12,195,192, +220,196, 4,246, 86, 86, 5, 61, 77,145, 8,224, 1, 94, 15, 16,174,224,229,163, 60,129, 49,139,159,121,158,135, 76, 38, 43,117, + 66,187,177,115,175, 74,114,230,228,228,224,229,203,151,248,226,139, 47,160, 84, 42, 1, 0,137,137,137,240,244,244,132, 88, 44, + 70, 92, 92, 28,206,159, 63,143,170, 85,171, 66, 46,151, 27,165,178, 74, 88,147,234, 18, 66, 46, 1,168,155,144,144, 96,225,236, +236, 12,163, 45, 88, 60, 69,190,134, 64,171,229,240,236,217, 51,196,199,199,227,229,139,231,104,156,151, 13, 10, 6,148, 82,163, + 44, 88,206,206,206,190,222,222,222, 11, 22, 45, 90, 36,113,119,119, 7,207,243,176,177,177, 66, 94,158, 10,105,105,105,240,243, +243,131,187,187, 59,150, 44, 89, 2, 20, 12, 31, 37,253,127, 21,224,162,213,162, 37, 63, 69, 34, 17,198,127,228,129,244,116, 51, + 48,204, 95,171, 73, 43,152,131, 37, 5,128,192, 78,125,197,103, 79,157, 48,101,129,121,137, 12, 51, 79, 92,113, 62,234, 57,158, + 87,150,245,127, 76, 76, 12, 36, 18, 9,246,239,219,135,244,164, 36,212,171, 87, 15, 77,154, 52,193,243,231,207,113,255,254,125, +216,218,218,194,222,173, 57, 46,189,208, 33, 52, 94, 5, 75, 75, 75, 68,196,138,254,223,150,254, 19, 66,122,116,232,208, 97,237, +138, 21, 43,156,156,156,156, 36, 41, 41, 41,236,186,117,235, 58,175, 91,183, 46,244,171,175,190,242,251,234,171,175,172,237,237, +237,197,137,137,137,250,201,147, 39,119, 38,132,204,160,148,238, 46,183,190, 48, 53,183, 97,164,166, 32, 68, 12, 43, 75,107,136, +101,166,224, 89, 49, 56, 30,176,176,180,199,245,251,251,113,237, 81,206,232,228, 52,236, 51,224,189,161,182,182,182,148, 97, 24, +216,218,218,190, 54, 52, 8, 0,142,142,142,200,206,206, 6,195, 48,144, 72, 36, 70,139,172, 34,113,181,112, 93,123, 51, 82, 66, + 92,229,166,218,226,194,233, 39,153,249,137, 25, 1, 31,130,184, 42,170,227, 40,165,120,241,226, 5,242,243,243,113,229,202, 21, +252,240,195, 15, 41,111,138, 43, 71, 71,199,207, 45, 44, 44,190,207,205,205, 93,146,144,144,176,186, 34,222, 66,203,212,251, 44, +147, 81,120,195, 29, 3, 33, 68,226,238,172, 56,125,255,202, 14, 79, 75,250,144, 32,234, 11,224, 89,246, 99,243, 91, 14,173,187, + 53,238, 46,106,176,254,199, 42, 77, 70,207, 60, 77, 8,241, 45,203,146,197,115, 92, 3, 83, 51,115, 0,201,184,119,247, 98,177, +184, 74, 75,207,130, 70,199, 64,163, 37, 80,235, 68,104,215,161, 11,214,254,242, 7,226,146,211, 81,180,194,240, 67, 1, 33,196, +198,223,223,127,204,128, 1, 3, 48,111,222, 60, 4,173, 88,161,253,146,144,108, 49, 64,255,228, 56,240,148, 18,145, 1,147,211, +223,228, 89,182,108,217, 33, 0,131, 23,143, 67,243,140, 92,140,112,233, 73,109,170,244, 44,184,182,255,116, 10, 0, 54, 41, 65, +111, 77,213, 33, 69, 35,105,198,142,168,253,207, 10, 44, 74,233, 37, 66, 8, 74,126,150,119,131,149,147,111,155,239,166, 79, 88, +213,178, 87, 7, 81,226,151, 1,200,204,214,104,167, 63,209,139, 98,243,105,159, 80, 3, 45, 47, 83,215,173,195,253,240,130,247, +215,205,193, 1,211,134, 14, 5,101,129,107,143, 67,177, 39, 40, 8,131, 58,116,128,105,225, 10, 62, 67,173, 77,165, 89,173, 74, + 90,175,140,181, 50,101,102,102, 98,223,190,125,104,210,164, 9,148, 74, 37,196, 98, 49,234,214,173,139, 39, 79,158,160, 90,181, +106, 32,132,224,240,225,195,232,211,167, 15, 34, 35, 35,209,188,121,115,179,202, 8,172,208,208, 80, 11, 74,105,235, 34,107, 71, +101,161,209,104, 16, 22, 22,134,158, 61,123,194,218,218, 26,174,174,187, 16,116,122, 7,148,254, 31,131, 16, 24, 37,176, 8, 33, +253,187,119,239, 46, 17,137, 68, 80,169,242, 33,151, 43, 96,102,102, 1,115,115, 75,248,248,248, 32, 62, 62, 30,157, 59,119,214, + 61,123,246,236,143,132,132,132, 63,141, 13,171,163,163,163, 50, 39, 39,103,130,151,151,151,162,176,151,219,206,206,206,110, 97, +106,106,106,174,145,149, 67,177,176, 34,132,128, 97,152, 98,129, 37, 22,137,224,236,228, 80,252,187,112,254, 25, 41,135, 43, 59, + 46, 77, 35, 7, 0, 15, 15, 15,172,221,120, 84,212,189,123,119, 76,152, 48, 1,122,189, 30,235,215,175, 7, 0, 12, 25, 50, 4, + 58,157, 14, 7, 14, 28, 40,120,129,196,226,114,199,156,239,222,189,139,123,247,238, 65,175,215, 35, 43, 43, 11, 39, 79,158,196, +165,203,151,177,251,240, 57,188,122,241, 28,117,125, 61, 49,106,212,167,144, 72, 36,216,182,109, 27, 2, 2, 2,254, 95, 43, 4, +169, 84,250,201,230,205,155, 93,183,110,221,154,121,228,200,145,172,166, 77,155,154,174, 90,181,202, 97,237,218,181,109,181, 90, + 45, 38, 78,156,152,124,235,214,173,188, 94,189,122, 89,110,218,180,201,181, 70,141, 26, 31,161,148,121, 89,133,195, 62,131, 0, + 12, 15,108, 98, 41,206,204, 81,129,103,181,120,241,234, 37,178,114,181,224, 57, 29,162, 99,227,145,171,230,144,150,158,131,186, + 13, 58,253,124,241,226,197,111, 9, 33,179, 40,165,199, 43,236, 84,112, 28,110,222,188,137,107,215,174,225,242,229,203,136,138, +138, 42,254,207,194,194, 2,103,207,158, 69,219,182,109,223,139,184,202, 73, 41, 16, 87,153,209,233, 31,140,184, 42,172,131,230, + 58, 59, 59,207,117,118,118, 86,156, 57,115,198,178, 74,149, 42, 96, 89, 86,251,166,229, 42, 48, 48,240,187,205,155, 55, 59, 87, +171, 86,109, 28,128,213,149,125, 94, 89,150, 45, 3,240,150, 59, 6,145, 8,159, 47,217, 48,198,206, 92, 22, 29,143,103,203, 11, +125, 1, 50, 64,126, 54,112,113, 39,196, 45,103,191, 28,215,123,186,245,140,173,243, 62, 7,176,190, 44,226,136,200, 24,108,216, +176, 22,147, 38,142,192,239,191, 46, 1,207,139,161,209, 51,240,240,106, 6,141,142, 7, 17,137, 81,175, 65, 35, 92,184,120, 5, + 18, 17,176,111,235,134, 15,202,116, 69, 41, 77, 39,132,172, 63,124,248,240,215, 19, 38, 76, 0,207,243,178,239, 55,108, 80,165, +164,164, 44,130, 17,254,171, 74,225,233,179, 97,195,134,240, 25,107, 83, 14, 77, 26, 6,230,213, 49,146,126,239, 41,108,250, 79, +167,216,255, 19, 65, 67, 95,164, 43, 75,111,226, 47,191,241,249,175,183, 96, 21,207, 77, 41, 79, 49, 54,244,169,246,163,165,141, +245,167, 45, 26,215,178,157, 60,238,115, 73,100,162, 26,167, 27, 77,206, 58,186,114,182, 89, 52,111, 58, 49,138,102, 27,101,117, +217,115,254,124,241,247,165,187,118,149,250, 95, 66,255,254, 6,247,196,202,178, 90, 25,107,185, 2, 0,165, 82,105,213,177, 99, + 71,180,111,223, 30,253,250,245, 43,158,115, 85,191,126,125,236,222,189, 27,125,251,246,197,131, 7, 15,224,236,236,140,154, 53, +107,162,102,205,154, 56,113,226,132,177, 5, 27, 28,199,193,223,223,191,104, 21, 97,221,216,216, 88,139,202,102,164, 70,163, 65, + 90, 90, 26,108,108,108, 32,147,201,208,180,105, 19,124, 61,190, 41,236,156,127,131,127, 45, 95,228,229,229, 21, 47, 93,175, 8, + 18,137,196,167, 70,141, 26, 72, 73, 73, 65, 74, 74, 10,236,237,237,225,226,226, 2, 71, 71, 71,172, 92,185,146,174, 90,181,234, + 18,199,113,127, 36, 38, 38, 26,173, 8,221,220,220, 26,219,217,217,125,157,156,156,172, 40, 81,105, 42,234,213,171,183,209,197, +197,101,125,124,124,252, 53, 99, 4,150, 78,167, 3, 33, 4,127,190,112, 65,158,150, 32, 59,246, 30, 38,124,228,249,154,224,146, + 72, 36,134, 76,212,205, 27, 60,120,176,131,187,187, 27, 98, 34, 30, 99,255,126,138, 21, 43, 86,224,242,229,130,247, 60,188,176, + 67, 80,244,187,109,219,182,240,242,242, 50,202,185, 37,207,243, 8, 14, 14,198,174, 35,151,224,236, 89, 11,209,207,194,112,255, +196, 49, 84,177,183, 65,237, 6,141,160,215,235,223,201,133,198,251,128, 78,167,219,228,237,237, 13,173, 86,123, 14,192,230,224, +224,224, 62, 9, 9, 9, 43,143, 30, 61,234, 50, 96,192,128,248, 99,199,142, 77, 2,112, 40, 56, 56,120,228,130, 5, 11,218,235, + 11,134, 15,222, 2,195, 48,191, 79,158, 60, 57,112,192,128, 1, 68, 42,210,107,207,156,222, 38,102, 89, 61,153, 58,107, 11,119, +241,234, 37, 17,203,234, 73,191,193,147,249, 19,231, 31,137, 70,143, 95,202,213,111,214, 29, 33, 33, 33, 78, 61,122,244,152, 15, +160, 92,129,197, 48, 12, 56,142,131, 68, 34, 41, 22,208,165, 93, 99,140,245,106, 20, 80,205,194,211,236,230,194,117, 29,204,136, + 56,247,131, 23, 87, 0,144,154,154,186, 17,192, 70, 27, 27,155, 36, 83, 83, 83,228,228,228,188, 85,254, 8, 33, 10, 95, 95, 95, +133, 76, 38, 67,167, 78,157,108,156,157,157,195, 69, 34,209,234,184,184, 56,163,149, 70,105,150,173,202,186,105,176,182, 71,143, +166,173, 26,152, 63,181,156,103,174, 16,171, 31, 84, 9, 87, 88, 16, 0, 89, 26,199, 23,215,163, 6,101,147,100,121,253, 70,109, + 27,194, 66,108,218,163, 44,129, 37, 98,152,251, 89, 25,153, 93,179,115,180,184,122, 45, 4,131, 7,213,128, 70, 71,192,243, 34, +228,230,105, 0, 70, 2, 17,128, 33, 67, 63, 1, 37, 98,164, 39,197,131, 97,152, 71,248,240, 48,115,204,152, 49, 93,103,205,154, + 85,181,208,127,149,103,161,255,170,105,132,144, 58,148,210,252, 74,242, 84, 57,182,123,246,148, 35, 87,126,201,234,222, 66,245, +172, 97,193,154, 40,155,134,190, 72,151, 72,240, 92,204, 32,141,210,215, 86,148,162,104,193, 87,201,133, 95,255,122,129, 85, 17, +188,171,185,117,105,211,184,209,248,111,103,125,107,254,236,246,101,124, 59,255,103,190, 70,163,206, 89,203, 15,157,202,201,178, +168,210, 46, 63, 62,236,129,161,186, 2, 0, 58,183,237,139,186,126, 77,222,250, 51,160,109,129, 15,200,171, 23,238, 34, 41, 37, +206,224, 70,182, 80, 20,148, 58,231,202,144,165,249,165, 84, 4,153, 33, 33, 33, 14,177,177,177,175, 77,104,247,242,242, 2, 33, + 4,183,110,221,194,205,155, 55, 49,120,240, 96,136,197, 98, 72, 36, 18, 92,186,116, 41,167, 50, 22, 44, 20,174, 34, 36,132,116, +118,115,115, 43,117,245,160, 33, 92, 42,149, 10, 89, 89, 89, 56,125,250, 52,106,212,168,129,133, 11, 23,194,197,217, 17,223,126, + 59, 5, 60,207, 35, 59, 59,187,216, 63,144, 1,214, 1, 90,100, 29,226,121, 30, 41, 41, 41,168, 90,181, 42,214,173, 91,135,149, + 43, 87,254, 28, 31, 31,111,244, 42, 23,107,107,107, 11,133, 66, 49,186, 71,143, 30, 1,189,123,247, 70,231,206,157, 95,251,127, +199,142, 29,102,135, 14, 29,154,238,238,238,222,134,231,249, 13,113,113,113,233,134,240,254,246, 91,129,251, 36,101,179,185,152, + 49,160, 10,134,143,221,134,229,203, 15, 66, 46,151,191,214,216,206,155, 55,175, 92,241,194, 83,234, 45, 77,189, 30, 63,101,250, + 50,135, 69,139,130, 16, 20,148, 12,145, 72, 4,103,103,103,136, 68, 34,188,124,249, 18, 34,145, 8,158,158,158, 16,137, 68,136, +139,139, 43,154,243,151, 1,181, 97, 62, 8, 69, 34, 17,212,106, 53, 98,162, 95, 33, 54, 34, 28,102,217,137,176,183, 80, 34,227, +113, 48,234,142,250, 28,122,189,254,127,161, 71,123, 22,192,217, 18,167,246, 19, 66,244,132,144,161, 0,246, 80, 74, 15, 22,158, +223,130,114, 28,131, 54,107,214,172,254,172, 89,179, 36, 69,110, 51, 92, 60, 22,176, 58,157,142, 7, 0,223,186,173, 95, 83,249, +207,159, 63,199,242,229,203,145,151,151, 7,169, 17, 51,211, 59,116,232, 80, 60, 39, 82, 42,149,194,206,206, 14, 58,157, 14, 44, +203, 26, 61, 52,104,235,233,246,243,173,123,151,184,135, 17,191,168, 30, 61, 61,105, 18,251,146, 71,110,170,221, 7, 43,174,222, +180,100,185,185,185,205,229,121,158, 82, 74,103,151,168, 91,229, 30, 30, 30, 87,206,156, 57, 99,203,178, 44,214,172, 89, 99,149, +152,152,104,213,186,117,235, 25, 0,202, 20, 88,101,184,105, 40, 11,149,114,211,192,113,240,177, 48,183, 66, 6, 98,161,177,211, +215,207,180,101,211,207, 38,124,254,192, 37,170,129,159, 41,167,175, 42,202,214,194, 85,105, 5,158,210, 50, 29,161,105,244,250, +147, 15,238,221,239,228,225, 94,131, 57,122,252, 50,122,245, 25, 0,141, 70, 4,181,158,128, 48, 18, 16, 70,138, 58,117, 27,160, +102,237,186,160, 0,238,222,190,206,106,245,250,179, 31, 82,222,187, 4,140, 31,236, 18,240,245,106, 80,158,150,226, 7,171,106, +159, 62,125, 22, 1, 24, 95,225,168, 68,243,241,131,157, 90, 20,240,148,244,131, 53,249,235, 49,120,124, 91, 98,121,249,222, 79, +210,206,205,240,103, 74, 16,129, 82,241,215, 42, 66,137,168,114,238, 53, 62, 24,129,229,225,225, 97,229, 96,166,252,237,171, 81, +159,154, 71, 61,188,129,216,224, 27,184,118, 53, 60, 99,231,129, 35,113,217, 89, 41,163,140, 16, 87,197,195,121,118,206, 85, 80, +181, 20,129,101, 98,110, 15, 0,168,234,215, 4,226,104, 75,163, 34, 82,154,245,170, 50,226,170,100,163, 92,154, 15,172,209,163, + 71, 99,243,230,205,104,217,178, 37,188,189,189,139,123,202,198, 90,201,222,180, 38, 85,102,245, 96, 73,228,228,228,192,211,211, + 19,155, 54,109,194,163, 71,143, 96,110,110,142,193,131, 7, 35, 39, 39,167, 88, 88, 25, 58,201,157,227,184, 87,103,206,156,169, + 51,112,224, 64, 42, 22,139, 73,102,102, 38, 44, 45, 45,177,110,221,186,252,132,132,132, 11,198,134,205,213,213,181,187,141,141, +205,103,131, 6, 13, 98,124,125,125,145,148,148, 4, 11, 11,115, 45, 33, 68, 6, 0,150,150,150, 90, 83, 83, 83,124,241,197, 23, +168, 83,167, 78,147,233,211,167, 55,118,114,114,218,158,152,152,120,160,188,178, 68, 8,193,238,221, 5,163, 83,163, 86,135, 65, +171, 45, 16, 40,235,215,175, 71,225, 92,182,191,134, 2, 34, 34, 0, 3, 86,166,152,153,153,193,219,219,187,212,188,111,213,170, + 21,238,222,189, 91, 48, 4, 41, 22,195,193,193, 1,215,174, 93, 51,104, 89,102,145, 3,199,144,144, 16,212,242,178,195,163,160, + 51,176, 83, 74, 80,207,197, 9,110,173,218, 32, 60, 60,252,255,213,122, 69, 8,233, 5,160, 7,128, 19,148,210, 67,132,144,254, + 0, 58, 23,253,134,145,142, 69, 89,150,165, 34,145,136,196,196,196,232,148, 74, 37,177,177,177, 17,203,229,114,104, 52,154, 98, +161,245,252,249,115, 28, 63,126, 28,177,177,177,176,177,177, 17, 89, 90, 90, 66,167,211, 25,180,162,148,227,184,183,220, 51, 20, + 62,215,104,113, 53, 2,240,223,188, 96,113, 21,185,136,177,172,101,215, 5,145,143,159,171,114, 83, 51, 77,254, 11,226, 10, 0, + 50, 50, 50, 54, 2,216, 88,244,219,222,222,126, 36,195, 48,223, 90, 90, 90, 90, 94,186,116,201,202,222,222,158,108,219,182, 77, + 63,123,246,236, 76,134, 97, 50, 8, 33, 43,203,227, 43,195, 77,195,187, 8, 64,207,183,207, 33, 52, 53, 43,194, 83, 98,237,194, + 63, 84,211,235, 19, 99,102,212,204,144,212,176, 39,181,253,209, 39,249,201,213,145,108, 68,139,164,132, 68, 17, 5, 31, 90, 78, + 29,188,101,198,172,121, 83,195,195,238,123, 40, 44, 20, 24, 61,102, 22,254, 60,117, 1, 68, 36,193,149,235,183,160,213,113, 72, + 77,207,194,160, 33,195,224,230,108,135,208,155,167, 83, 88,158, 95,247, 97,137,107,126,109,167, 94, 35,173,229, 38,202,194, 52, +225,240,199,175, 83, 32, 18,173,198,156, 57,115,224,239,239, 63,182,112,231,134,244,242,235, 15,126,109,157, 54, 67,172,165,242, + 2, 30,202,115,216,180,111, 70,161, 31,172, 73, 88,183,241, 64,157,218, 94, 47,190, 47,207, 15,214,127, 74, 96, 85,169, 82, 69, +110, 42,193, 23, 54, 38,210,105, 95, 13,237,109,159, 28,241, 24,177, 79,238, 23, 40,127,141, 74,159, 16,126,169,158, 1,149,118, +135, 55,252,111,208,242,134,168,212,234,138,123,240,111,114, 22, 53,180,111, 90,175,140, 17, 87,165,113,150, 20, 89, 37,253, 94, +185,187,187, 99,209,162, 69, 21,250,193, 42, 37,238, 69,231, 59, 3,168, 91, 36,178, 80, 48,201,189,179, 33, 43, 7,203,226,180, +183,183, 71, 90, 90, 26, 0, 32, 48, 48, 16,129,129,127,173, 83,208,233,116,197, 86, 43,115,115,243,183, 44, 88,165,113,178, 44, +187,248,208,161, 67, 3,110,220,184,209, 99,202,148, 41,226,118,237,218, 21,216,239,243,242,212,212,128,189,215, 74,225, 28,122, +234,212, 41,134,231,121,108,218,180, 9,247,238,221,163,166,166,102, 19,205,204,204,183, 89, 88, 88,112,153,153,153, 67, 63,255, +252,243,222,223,127,255, 61,105,213,170, 21,110,220,184, 65,170, 86,173,218, 23,192,129,138,226,126,235,214, 45,136, 68, 34,176, +233,209, 24, 59, 99, 15, 76, 77,196, 8, 11, 11, 67,122,122,250, 91,206, 71, 13, 73, 79,158,231,139, 27,238,162,163, 85,171, 86, +197,195,141, 77,155, 54, 5,195, 48,120,240,224, 65,169,195,173,111,112, 82, 91, 91,219,226,242, 33,149, 74,113,225,194, 5,252, +248,227,143,240,176,177, 66,198,147, 71,112, 10,108,135,142,159,126,142,193,131, 7,131, 97, 24,216,216,216, 20, 91,122, 43,138, +251, 59, 10,170, 98, 78, 66, 72,207, 90,181,106,205, 12, 13, 13,117,171, 83,167,142, 31, 33, 36,208,223,223,191,241,163, 71,143, +138,126, 75, 40,165,123,141,225,188,115,231,206,254,181,107,215,142, 25, 49, 98,132,148,231,121, 46, 42, 42, 74, 15,128, 56, 57, + 57, 49,119,238,220,225,143, 30, 61, 10,149, 74, 5, 55, 55, 55,145,171,171, 43, 57,123,246, 44,255,228,201,147, 91,148,210, 89, +134,198,189,104,165, 96,209,100,118,149, 74,101,144,184,122,147,179, 74, 77,159,133,237, 91,251,186,167,198, 63, 64, 66, 92, 4, +212,233,214,250, 11,167,175, 25, 37,174,254,238, 60,250,135, 57,231, 61,123,246,204, 85,163,209, 64, 38,147, 97,253,250,245,186, + 69,139, 22,133,166,166,166, 6, 80, 74, 85,149, 13,167, 49, 14, 72, 43,226,204, 74,195,159,135,143,220,105,108,214,103, 11,198, +198,167, 20, 79, 92,164,132,216, 28,116,244, 11, 80, 54,169, 19, 39, 58, 49, 87,148,195,229,255, 89, 22, 39,165, 84, 75, 8, 25, +208,167,239,144,115,187,119,239, 50,155, 61,119, 46,174,221,122,132,180,204, 92,240,148, 1, 79, 8,190,253,118, 54,156,236,108, +144, 29,255, 44, 95,163,211,245,121,115,203,156,127,123,190, 19, 34, 26,119,246,232,182,213, 34, 2, 62, 47,233,169,156,201,137, + 80, 14, 31,220, 71, 60, 96,192, 0, 28, 60,120, 16, 33, 33, 33,191,148, 37,174, 74,114, 82, 42, 26,247,232,210,158,213, 4,224, + 85, 41, 79,229,226,220, 23,202, 79,134,246, 17, 15, 30, 60, 24,135,142, 95,199,238, 99, 47, 54,236, 58, 74,143,225, 63,134, 50, + 5,150,185, 24, 33, 1,126,213, 92, 91, 53,168,173, 16,115, 42,196, 62,137, 64,122,158, 26,103, 31, 71,101,138,168,232,247,202, + 62,176, 96,238,132, 20,209,209,207,222,250, 47, 51, 83, 81,104,141, 49,110,219, 39,145, 72,244,154,245,234, 93, 44, 87, 37,195, +233,232,232,248,218,182, 43, 37, 27,236,162, 57, 62,149,112,209, 48, 35, 58, 58,218, 34, 58, 58, 26,148, 82,220,186,117,203,162, +105,211,166, 51,222,197,122, 53,101,202,148,215,182, 7, 41,249, 89,218,185,138,144,146,146,146, 7,224, 55, 71, 71,199, 63,167, + 78,157,250,113,179,102,205, 90,205,153, 51,135, 80, 74, 43,155,176, 44,207,243,184,120,241, 34, 14, 30, 60,200,105,181,218,153, + 9, 9, 9, 79, 75,252,255,187,187,187,251,149,222,189,123, 47, 15, 15, 15,103, 66, 67, 67, 97,136,144, 83,169, 84,240,246,246, + 6,203,178,248,105,172, 59,114,114,234,128,101, 89,112, 28, 7, 83, 83,211,215,246,161, 52, 36,159, 68, 34,209,107,150,145,162, +227,214,173, 91, 96, 24, 6, 1, 1, 1,184,127,255,126,177, 5,171, 34,139,147, 78,167,139,118,116,116,116,156, 55,111, 94,113, +184, 82, 82, 82,112,230,204, 25, 52,107,222, 2,126, 95,140, 70,124,124, 60, 86,174, 92, 9, 23, 23, 23, 44, 92,184, 16,233,233, +233, 96, 89,246,159, 54,155,119, 9, 13, 13,117, 27, 58,116,104,242,163, 71,143,220,142, 31, 63,110,213,163, 71, 15,211, 33, 67, +134, 36, 63,122,244,200,141, 16,210, 26,192, 94, 35,223,159,153,132,144, 83, 11, 23, 46,156, 49,126,252,248,166, 35, 70,140,144, + 72, 36, 18, 62, 46, 46,142,221,181,107, 23,241,246,246, 22, 73,165, 82,114,250,244,105,254,246,237,219, 55, 89,150,253,137, 82, +122,197, 88, 43,115,145,184, 50,118,206, 85, 17, 38, 58,200, 63, 49, 23,165, 4,172, 93,191, 72,228,235,229,166,219,190,235, 76, +204,149, 27,207, 34, 25, 13, 59,241, 55, 32, 18,255, 65, 48, 12,179,183, 86,173, 90, 35,199,141, 27,103,210,185,115,103,249,247, +223,127,159,149,147,147, 83,170,184, 42, 13,198,184,105,128,145, 14, 72, 75,224,215,153,223, 28,159, 56,185,206,200,106,159, 57, + 85, 65, 80, 94, 50, 50,196,140,200,194, 74,132, 6,158, 12,114, 82,159,219, 31, 59,183,245, 37, 42,240,171, 70, 41,189, 67, 8, +233, 80,187, 78,253, 3, 63, 45,252,201,225,187,233,211, 36, 7,142,159, 4,101,117,184,117,233, 18,204,164, 28,125,114, 47, 40, + 73,163,211,246,254, 16,183,202,137,191,186,102, 55, 33,228,136,141,141,205,195, 79, 71,140,240,174, 85,107, 8,148, 74, 37,246, +239,223,143, 63,214,172,225, 86, 1, 3, 55, 18,114,127, 52,165,229,182,249, 73, 55,138,121, 30,124,254,233,167, 62, 13, 26,124, + 6,165, 82,137,125,251,246, 97,219,170, 85, 6,243,252,103, 4, 22, 68, 36,231,230,179,168,220, 91,207,162,114,193, 83,202, 83, +170, 17,137, 16,147,167,211, 45, 12,143,140,173,148, 24, 40, 26, 34,156,191, 96,220,251, 84,230,197,162,167, 50,203,178,203,104, + 28, 98,107,212,168,129, 55, 45, 90,229,125,215,235,245,177, 6,210, 47,246,240,120,107, 95,210,197,149, 13,107,209,176,159,161, +226,202, 80, 63, 88, 0,144,148,148,148, 2, 96,153,155,155,219,145,174, 93,187, 14, 38,132, 36, 86, 50,143,118,183,109,219,118, + 48,165,148, 17,137, 68, 59,222, 16, 87, 0,128,152,152,152, 23,110,110,110,155,188,188,188,138, 55,128, 46,143,147,231,249, 23, +117,234,212,209,149,150, 23,101,253,230,121,190,194, 60,202,204,204, 68,147, 38, 77,222,218,115,146, 82,138,168,168,168, 34, 11, + 83,113,218,151, 39,220,114,115,115, 71,127,253,245,215, 27, 37, 18,137, 7, 0, 82, 36,110, 57,142, 99,126,254,249,103, 5,199, +113, 12, 0, 34, 18,137, 88,137, 68,162, 62,120,240, 32,203,178,108,180, 70,163, 25,253, 15,215, 3,123, 8, 33, 18, 0, 25,161, +161,161,173, 11, 45, 87,177, 33, 33, 33, 65,187,119,239,118, 4, 42,118,159, 80, 70,217,188, 2,224, 10, 33,164,213,250,245,235, +103,142, 30, 61,186,201,224,193,131,197,129,129,129,248,243,207, 63,185,139, 23, 47,222, 82,169, 84,139,141, 21, 86,132,144, 92, + 79, 79,207,130, 10, 76, 92,254, 44, 7,150,101,203,237,173,217,122,202,215, 14,251,210, 69,177,105,241,153,220,212,120,237,117, +125,174,118,214, 86, 32, 4,255, 97, 36, 38, 38,126, 67, 8,153,189,114,229,202,248,122,245,234,201,165, 82,169,214, 80,113, 85, +216,241,113, 52,162,140,240,149, 44, 91, 44, 33,164,219,138,142,253,143,180,249,246,107,175,142,109, 3,148,238, 85, 28, 92,159, + 68, 36,225,249,141, 63,243, 30, 30, 91,240,138,106, 50,122, 81, 74, 89, 3,184,110, 19, 66,106, 76,153, 54,165,104,179,231,186, +237,207, 30,166,255,161,205,158,231, 47, 93,186,212,187, 86,173, 90,216,191,127, 63,206,238,216,129, 65,169,169,184,192, 48,140, + 72, 42,181, 61,166,211, 45, 3, 96,136, 48,154,191,124,249,114, 31,127,127,127,236,221,187, 23,167,183,109,195,192,202,241,148, +133,198, 0,236, 11,191,167, 2,120, 10,160, 33, 0, 19, 0, 26, 0,185, 0,236, 74, 92,159, 86,248, 95,209,255,151, 1,252,163, + 19, 93,203,172,157, 30, 61,123,217,240,125, 63, 76,165, 82,165,123,123,123, 75,140,185, 71,175,215, 39, 87, 80,129,198, 86,171, + 86,205, 96, 43,133, 33, 98, 40, 45, 45,173,209,223,149,224,239, 58,215,234, 53, 33,200,243,175,156,157,157,249,162,198,190, 52, +241, 85,218, 57, 10,188, 52,230, 57,177,177,177,145, 0,126,172,108, 56, 99, 99, 99, 79,194,128,205,156, 13,189, 14, 0,210,211, +211,223,251, 38,187,132,210,184,239,191,255,222, 40, 97, 13, 74,227,202,201,235, 71, 0,154,254,175,215,174,148,210,203,133,149, + 15, 8, 33,125, 8, 33,221, 0,156,166,148,238,127, 79,252,197, 66,107,211,166, 77, 19, 41,165,200,206,206, 94,101,172,176, 42, + 33,252,207,191,175,184,167, 39,105,207,239,250, 37,182,157, 42, 83, 55,113,115,174,118, 27, 4, 20,229,153,218,193,193,225,247, +225,195,135, 55, 3,176,245,125,112,190,131,155,134,178,194,248,146, 16, 82,239,194,148, 31, 63,189, 96,101,222, 29,156,216, 23, + 90,209, 49,104,211,254, 4,240,155, 33, 86,240,146,241, 5,176,188,240,248,207,160,208,127,213,196,145, 35, 71, 98,246,236,217, + 56,189,108,153,238, 75, 66,178, 36, 0, 61, 85,208,193, 20, 17, 96,186,161, 60,159,124,242, 9,102,207,158,141, 19, 63,253, 84, + 41,158, 10, 96, 79, 8, 57, 14, 0, 51,102,204,152,181,104,209, 34,235,153, 51,103,214, 93,188,120,241,194,194,223,143,139,254, + 47,204,211, 30, 51,103,206,172, 93,226,255, 28, 0,119,254,233, 23,233,111, 59, 0,116, 16, 56, 5, 78,129, 83,224, 20, 56, 5, + 78,129, 83,224,124,199,163,123,129,100, 41,251,179,172,239, 37,206,253,147,225,133, 72,232,171, 9, 16, 32, 64,128, 0, 1, 2, +254,165, 86,184,227,239,242,255,223, 26, 54, 0, 29,202,176,108, 5, 25, 17,193, 14,149,176,156, 5, 9,156, 2,167,192, 41,112, + 10,156, 2,167,192,249,223,226,172,136,187,140,251,187, 19, 66,142, 83, 74,123,148,245, 89, 36,168,222,252, 94,226,156,209, 59, +143,188, 19,132, 33, 66,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255, 13, 67,132, 0,232,140, 25, 51,102,254, 27,134, 8, +203, 89,130,179,159,137,139,131,133, 76,166,148, 2,128, 86,155,175,115,117, 69, 54,208,255,255,109, 35, 90, 1,255, 90, 19,174, + 99,161,152, 79,122,159,215, 10, 16, 32, 64,128,128,255, 12, 82,138, 44, 83, 0, 82, 0,144,194,223,218,194,207,148,194,182,227, +205,239,175,253,255, 79, 66, 92,150,184, 74, 77, 85,218,137,197, 25, 62, 28,167,174, 9, 0, 98,177, 40, 44, 53,213, 58,220,206, +110,127,106,101, 68,150,189,163,227, 61, 9,195,184, 26,114,173,158,227,226, 82,147,146, 94,115,245, 78,129,127,189,176, 51, 84, + 60,188,139,200,248, 39, 4,138,189,189,189,163,163,163,227, 71, 22, 22, 22,205, 51, 51, 51,111,167,164,164, 28, 74, 73, 73, 73, + 42, 35, 60,139, 8,193,180,194,239, 75, 40,165, 51,203, 9,187,193,215,150,114,175,183, 82,169, 28, 75, 8,241, 47,140,127, 72, +126,126,254,122, 74,233,179,255,160,160, 53, 1,208, 91, 44, 22,127, 98,103,103,215, 36, 49, 49,241,123, 74,233,202, 74,114,137, + 1, 76,177,178,178, 26,108,101,101, 85, 53, 61, 61, 61, 50, 59, 59,123, 47,128,229,148,210, 10,151, 60,255, 48,193,165,121, 96, +231,192,239, 46,158,190, 56,127,238,234,248, 27,111,253,255,141,139,109,167,142, 45,103, 95, 60,118,125,222,204,181,134,109,143, + 84, 34,108, 34,160,120, 30, 41, 95,216, 75,165,255,195,249,210, 12,192,172,194, 48, 47,167,148, 94,248, 31, 47, 71,166,142,142, +142, 63, 1,232, 41, 22,139, 67,227,226,226,190,160,148,198,190, 39,110, 9, 0, 27, 0,233,134,148,163, 55,202, 99, 99, 0,254, + 40,112,167,113,199, 16, 87, 12, 31, 26,228,114,249, 42, 39, 39,167,207, 84, 42, 85, 62, 33,132,150,244,215,200,178,108,108, 74, + 74, 74,163, 15, 48,218,119,254,109, 1, 46, 85, 96,197,197,193, 66, 44,206,240, 73, 78,124, 52, 40, 62, 33,120, 32, 0,184, 56, +215,221,235,224, 84,103, 79, 92,156, 76,215,184, 99, 95, 51,137, 82,188,158, 97, 36,245,213, 90,141,157, 68, 44, 73,213,177,250, + 7, 34, 45, 29,155, 16,118,176, 84, 39,137, 18,134,113,125, 21,126,193,129,213,165, 67,162,112,129,196,196,163,204, 64,185,184, +184, 84, 42, 50, 54, 54,213,205,117,114,197, 68,137,132,233,200, 83,214,159,242,128,136, 72, 66, 88, 78,127, 78,170,209,172, 72, + 79,143,200,169,108, 66,213,180, 35, 78, 20, 24, 12,130,142,160, 56, 75,128,221, 97,169, 52,209,136,138,193, 32,241,240,142, 34, +163,228,189, 43, 41,165,223,188,239, 2,227,230,230,102,221,175, 95,191, 85, 63,254,248,163,137,153,153, 25,137,142,142,238, 60, +125,250,244,214,110,110,110,147, 99, 99, 99,227,223, 20,123,132, 96, 26,207, 23, 56, 40, 21,137,200,116, 71, 71, 71, 37,195, 48, +111,109, 30,202,113,156,146, 16,140,227,249,130, 13,199, 69, 34, 50,141, 16,178,218, 16,161,104, 98, 98, 50,164, 73,211, 22,147, +127, 90,186,220,204,209,193,193,148,229,120,221,203, 87,175, 76,191,155,249, 77, 83, 19, 19,147,213, 42,149,106,151,177,241, 36, +132, 16,134, 97, 6,201,229,242, 30, 0,106, 21,158,126,162,209,104,142,115, 28,183,199,208,134,220,201,201,233, 50,195, 48, 85, +140,121, 54,199,113,209,137,137,137, 1,149,108,184, 6,120,120,120,252,214,166, 77, 27,101,147, 38, 77, 32,147,201, 48,123,246, +236, 41, 0, 86, 26, 34,164,148, 74,229, 32, 83, 83,211,106,185,185,185, 17, 42,149,234,128, 76, 38,235,176,122,245,106,247,150, + 45, 91,154, 39, 37, 37, 17,134, 97, 28,143, 31, 63,254,241,154, 53,107, 58, 19, 66,218, 87,212,184,101, 69,208,239,228, 61,107, +181,202,138,184,240, 29,128,174,111,254,207,170, 21,159, 80,198,189,135,138,222,143,129, 17, 75,228, 9, 33, 34,137, 68,178,218, +201,201,105,164, 90,173, 86, 3,160,132, 16,234,232,232, 88,220,208, 0,128, 86,171,205,200,200,200,240, 45,247,221,174, 89,243, + 46,195, 48,110,229,228, 71,108, 88, 88,216,251,104,176,166, 37, 38, 38,118,147, 72, 36,196,221,221,157, 1,112,193,136,248,250, + 0,248,182,176,145, 89, 79, 41,229, 8, 33,109,129,130,247, 29,192,146, 34,193,198, 48,204,122, 95, 95,223,143,158, 60,121,178, +129, 82, 58,191,178,129,117,114,114,218,184,110,221,186,129,189,122,245, 98, 82, 82, 82, 92,235,213,171,183, 19, 64,171,119, 20, + 86, 50, 0, 51,157,156,156,190, 10, 8, 8,176,189,127,255,126, 58, 33,100, 29,128,197,229,249,154, 34,132,184, 1,232, 96,101, +101,213,254,219,111,191, 53,235,209,163, 7, 54,109,218,212,109,243,230,205,185,132,144,115, 0,130,222,151,248,251, 95, 7,195, + 48,171, 7, 13, 26, 52,114,231,206,157,202, 87,175, 94, 41, 93, 93, 93,139,157, 94, 19, 66, 42,221,126, 10,248,135, 4,150, 76, +166,148,114,156,186,102,124, 66,240,192,214,109,126,182, 4,128,203,151,190, 30,232,224, 84, 59, 68, 38, 83,134,203, 45, 20, 7, +251,246,236, 80,191,127,143, 54,196,205,217, 1,177, 9,201,142,191,238, 62,221,229,248,233, 11, 7, 81,224,248,171, 84,176,186, +116,152,232,130,240,244,234, 26,216, 5,198, 99,237,137, 88,220,120,248, 18,249, 89,169,168,226,100,130,165, 19, 59,193,201, 90, + 89,169,136,152, 57,250,180, 21, 41,148,123,134, 14, 25,110,249, 81,239, 90, 18, 79, 39, 39, 80, 42, 71,120, 68,110,139,147,103, + 46, 52, 62,176,111,215, 88, 51, 71,159, 65,185, 73,225, 6, 87,106, 13, 93,136, 73,158, 14,189,197, 12,249,184, 85,211,218,237, +135,116,107, 37,242,171, 85, 3,161,143,159,116, 58,114,254,214, 82, 63, 71,209, 57,150,163,219, 77,165, 56,124, 47,190,108, 71, +124,165, 9,141,246,237,219, 55, 48, 49, 49,209,150,188, 78,165, 82,201, 8, 65,251,202,136,140,162,103,104,181, 26,145, 68, 34, +131, 72, 68, 38,215,173, 91,183, 74,106,106,234,101,145, 72,180, 35, 54, 54, 54,195,152,244, 28, 79,136, 44, 67, 44,110, 40,146, +203,157, 57,173,214, 22, 0,136, 76,150,225,102,109, 93,231,219, 89,179,204, 24,134,225,211,210,210,144,159,159, 79, 62,255,252, +115, 69, 68, 68, 68, 95, 0,107, 42, 8, 35, 54,111,222,236,227,236,236,172,125,243,191,132,132, 4, 89,175, 94, 31, 85,166,194, +246,105,214,188,229,164,211,167, 79,213,202, 78,207, 80,111, 94,185,233,190, 94, 97,162,246,170,233, 35, 93,191,105,155,197, 23, + 35,135,125, 77, 8,121, 64, 41, 13, 55,130,211,195,196,196,228,224,178,101,203,252,219,182,109, 43,113,112,112, 64, 82, 82, 18, +158, 60,121,226,127,254,252,249,222,219,182,109,155, 66, 8,233, 75, 41, 53,196,227,186,247,185,237,191, 57,152,218,216,130,211, +235,225, 82,183, 65,177,127,178,231,231,207,128,213,233,192,235,245,168,213,163,119,129, 25,134,231,225,231,231, 87, 41,111,185, +132, 16,151,218,181,107,255,177,112,225, 66,169, 70,163,193,173, 91,183,112,225,194, 5, 62, 33, 33, 97,113, 69,226,138, 16,114, +102,238,220,185,110, 1, 1, 1,230,169,169,169,224, 56,206,238,240,225,195, 99, 27, 52,104, 96,225,238,238, 46,219,190,125, 59, +114,115,115,193,178,172, 77,181,106,213,108,134, 12, 25,162,221,190,125,251, 20, 0, 63,149,101,185,202,142,160,223, 37,146,106, + 93,124, 27,126,130, 68,114,170,203,228,174,206, 39, 45,170,147, 98, 75, 86,215,234,213,205,171,213, 52,157,110,102, 81,199, 38, + 59, 46,104,122,215,234,213, 55,159,140,168,184, 19, 68, 8, 17,137, 68,162,213,125,251,246, 29,186,123,247,110,229,147, 39, 79, +148,181,106,213, 2,207,243,197, 30,243,139, 28,197,122,123,123, 27,210, 96,185,157, 59,119,206,193,196,196,228, 45,167,188,121, +121,121,232,213,171,215,223, 81,223, 26,155,199, 63,188,120,241, 98,192,193,131, 7,135, 77,155, 54,205, 27,192, 56, 0,179,211, +210,210,218, 0,128,173,173,173, 12,192, 5, 66,200,167, 83,167, 78,253,114,198,140, 25,232,214,173,219,108, 66,200,130,202, 88, +245, 8, 33,140,157,157, 93,183, 94,189,122, 49,122,189, 30,166,166,166,208,235,245,213,223, 81, 92,201,165, 82,233,209,101,203, +150,117, 28, 50,100, 8,196, 98, 49,120,158,183, 57,115,230,204,156,145, 35, 71,182, 34,132,116, 45, 77,100, 17, 66, 62,249,242, +203, 47,251, 13, 31, 62, 28,141, 26, 53, 42,118, 46,187,108,217, 50,204,155, 55,207,236,204,153, 51,189,183,111,223,222,155, 16, +114,128, 82,250, 65,251, 50, 35,132, 44, 25, 52,104,208,208,157, 59,119,154, 1,192,210,165, 75, 49,105,210, 36, 56, 58, 58,194, +204,204, 76, 80, 52,255, 6,129, 85, 17,242,243,243, 27,204, 28,255, 49, 68,162,130, 94, 98,141,170, 30, 88, 52,235, 11,114,228, +248,233, 6,229,221, 39, 81,184,224,233,213, 53,144,187, 79,132, 70,207,226,230,195, 23, 56,187,180, 51, 0,192,167,235,183,208, +232,218, 3, 0, 40,165, 54, 50, 19,147, 37, 90,142,187, 6, 39,167, 91,136,138, 74,169, 72, 92,217, 59, 57, 30,255,229,151,159, + 76,252,171,251, 66,199,234, 17,151, 28, 7, 66,228,112,115, 53,199,167,159,116,149,180,105,227, 98,247,195, 15, 27,255, 52,181, +247,233,147,151, 18, 94,161,163, 79, 95,123,178,181, 85, 3,239,129, 67,186, 7,200,235,248,215,134, 84,110,242,151,240,106,212, + 8, 13, 27, 53, 18,205,200,205,233,120,251,206,189,142,251,207,220,212,248,218,147,189, 79, 83,232,136,242,222,141,146, 66, 99, +194,132, 9,111,109, 72,156,144,144,128,139, 23,223,105,212,224,181,103,252,248,227,143,102,153,153,153, 29,126,253,245,215,214, +174,174,174,203,226,226,226,110, 26, 66,242, 49, 33, 85, 32,151,183, 31,185,124, 57, 95,255,163,143, 24, 43, 39, 39, 17,207,113, + 36, 62, 50,210,118,229,154, 53,129,233,207,159,155,228,217,216,164,103,168, 84,249,225,225,225, 80, 40, 20, 68, 44, 22, 55,126, +147,135, 82,154, 68, 8, 89, 34, 18,145,233,132, 16,200,229,138,240, 49, 99,198,220, 47,252,187,202,177, 99,199,148, 61,123,246, +204, 7,240,170,192,236,173,112,101, 24,145, 79,193, 4, 65, 44, 49, 68, 88,154,154,154,142,159,191,112,137,105,118,122,166, 74, +151,151,167,119,176, 48, 35, 48, 51, 99,114,178,115,179,227, 19, 83,212,223,126, 63, 79, 60,250,211,225,227, 1,140, 53, 84, 92, +213,171, 87,239,246,193,131, 7, 29,108,109,109,145,153,153,137,180,180, 52,220,190,125, 27, 60,207,163,111,223,190,242, 22, 77, +155, 52,152,245,237,119, 55, 8, 33,205, 13, 17, 89,166, 54,118, 88, 26, 80, 31, 0, 48,231, 85, 90,113,254,108, 26,208,163,248, +154,121,177, 89, 0, 0,133, 66,241, 46, 91, 61, 53,111,223,190,189, 20, 0, 70,141, 26,149,157,147,147,179, 8,192, 78, 90,142, + 51,212, 66, 76,249,238,187,239, 92,171, 86,173,234,185,115,231, 78,228,230,230, 2,128, 67,213,170, 85,225,235,235,203, 93,188, +120, 17, 62, 62, 62, 48, 55, 55,199,229,203,151,113,243,230, 77, 52,108,216,208, 92, 42,149, 14, 44, 75, 96, 5,118, 14,252, 78, +222,179, 86, 43,223,134,159,192,204,194, 25,155,119,237,193,211,123,219, 90,105,116, 79,190, 91, 52,206,117,184,138,202, 71,184, +121,155,207,168,210,168,141,109,141,218, 31,193,179,225,125, 59, 53,119,229,197,236,175,170, 45, 22, 43,212,219,230, 46,139, 79, + 43, 75, 92, 1, 88,218,183,111,223, 1,187,119,239,182, 2,128, 71,143, 30, 33, 41, 41, 9,246,246,246, 80, 40, 20,144, 72, 36, +197,251,135, 26, 10, 19, 19, 19, 36, 36, 36, 64,167,211, 21, 89,173,144,147,147, 3, 39, 39,167, 2,117,243, 3, 17,205,157,107, +152,215,113, 66, 72, 64,211,166, 77,119,120,122,122,186,151, 60,223,189,123,119, 12, 30, 60, 24, 0,208,166, 77,155,246,253,251, +247,167, 69, 66, 48, 33, 33, 33,247,206,157, 59, 29, 41,165,183, 74,227, 20,137, 68,170,184,184, 56, 76,157, 58, 21, 47, 95,190, +252,138, 16, 18, 5, 64, 33,147,201,138,251,197,132, 16,159,218,181,107,175,158, 52,105, 18, 34, 34, 34, 16, 26, 26,122,187,178, + 67,166,148, 82,206,203,203,235,185, 94,175,111,196,178, 44, 84, 42, 21,250,244,233,163,176,177,177, 73, 98, 24, 38, 44, 53, 53, +117, 24,165, 52,193, 8,171,149,167, 88, 44, 94, 59,117,234,212,246, 29, 58,116, 64,112,112, 48, 14, 30, 60,136, 33, 67,134,160, + 75,151, 46, 88,182,108, 89,155,113,227,198,205, 0, 48,183, 20,138,246,235,215,175, 7,199,113,111,189, 27, 10,133, 2, 1, 1, + 1,240,243,243,195,145, 35, 71,218, 3,248,160, 5,150,167,167,231,152,221,187,119,155,149, 28,237,145,203,229, 40, 81, 14, 4, +252,175, 11, 44,173, 54, 95, 39, 22,139,194, 92,156,235,238,189,124,233,235,226, 33, 66, 64, 20,166,213,230,235, 0,128,227, 41, +178,243, 89,152,200, 69,120,149,152,131,199,145,169,165,189,164,175, 45,181,148,152,120, 64,222,228, 21, 40,165,208,234, 56,104, +178, 18,177,232,207,124, 60,137, 85, 67,155,151, 1,173,174, 96,154,149,157,157,157,248,244,233,147,147,130,130,206,127,249,251, +239,191, 51,177,150,150,161,200,202,106, 80, 26,167,141, 77,117,115,177,169,201,222, 13,191,204, 54,161, 76, 36,194,163,243, 80, +195,173, 9,236,172,220,145,152,154,135,107,161, 39, 16,246,236, 56,170, 58,123, 98,226,248, 46,138,249, 11,119,238,177,182,174, +234,145,145,241, 34,187,172,112, 22,226,147,141,167,194,193,166, 71,130, 75,139, 0,151, 19,255,182,176,179,247, 64,195,182,174, +176,119,175, 46, 31, 49,113,222, 39, 0, 70,148,198, 73, 41, 77, 98, 24,102,189, 72, 68,198, 18, 66,224,239, 95,231,197,170, 85, +171,180,165, 37,189,191,127,157, 23, 12, 35,170, 90,176, 13,139,104, 3,207,115, 73, 21,132,243, 53, 49, 35,147,201,167, 21,152, +247,157, 35, 79,158, 60,169,237,223,191, 63,150, 46, 93, 42,157, 49, 99,198, 55,158,158,158,227,162,162,162, 18,203,203,163,190, +132,120,184, 86,175,222,105,193,181,107, 84,162,215,147,244,219,183,179, 51, 19, 18,216,196,156, 28,217,190,176,176,110,159,125, +243,141,204,221,221, 29, 87,143, 31,183, 77,201,203,163,153, 26,141, 42, 51, 51,147,178, 44,123,187,140,184,207,116,116,116, 84, +110,222,188,217,103,204,152, 49,247,227,227,227,103, 22, 86, 12,139, 0,248, 1,120, 85,226, 28,126,249,101, 79,220,231,159,127, + 30,158,148,148, 52,179,188,112,150, 64,109, 7,123,123,229,174,141,219,131,109,204, 77, 68,118,110,206, 34,137,165,165,132,149, + 43,165,148, 66, 93,181,106,117, 37,128,218,101,164, 89,208, 27, 13, 1, 49, 49, 49, 57,120,244,232, 81, 7,137, 68, 2,142,227, + 96,111,111,143,151, 47, 95, 34, 51, 51, 19, 57, 57, 57,120, 17,246, 4, 94,238,238,248, 97,198,116,231,113,211,103, 28, 36,132, + 52, 42,217,136,149, 22, 78, 78,175,123,203,146, 87,198, 6,225,175,125, 26,146,239,111,224,101,116,116, 52,204,204,204,224,239, +239,111,118,237,218,181, 43,101,137,171,146,156, 10,133, 98, 96,203,150, 45,205,119,237,218,133,134, 13, 27,194,210,210, 18, 23, + 47, 94,196,163, 71,143,160,211,233, 68,185,185,185, 48, 55, 55,199,226,197,139,225,233,233,137,236,236,108, 68, 71, 71,219, 74, + 36, 18,187,178, 56, 47,158,190, 56, 63, 43,226,194,119,137,228, 84,151,205,187,246,224,243, 33,131,224, 68, 35,175, 88, 86, 39, +243, 59,245,108, 57,135, 50,238, 61, 76,205,235, 90,123,251,247,132, 84,102,134,113,211,230, 33, 60,228,152,117,126, 78,240, 87, +132,139,113, 7, 48,225, 77, 78, 82,144, 48, 34,119,119,247,207,246,237,219,103, 94,194, 2, 85,188, 15,105,201,205,217,203,218, +136,189,212, 60,226, 56,232,116, 58,232,116, 58,112, 28,135,212,212, 84,228,228,228,192,202,202,170,224,130,185, 0, 1, 33, 20, +165, 11,150, 55, 56,135, 5, 5, 5,185,155,154,154,190,121, 13, 82, 83, 83,193,178, 44,148, 74,101,241, 51,245,122, 61,212,106, +181,153,159,159,223, 88, 0,183, 74,227,228,121,126,242,192,129, 3, 91,222,186,117,171,218,154, 53,107,160,213,106,151, 38, 38, + 38,162, 95,191,126,224,121, 30,237,219,183,111, 70, 41,125,250,237,183,223, 2, 0, 38, 77,154,164,207,203,203, 27, 99, 72,220, +203, 16, 69,126,253,251,247,175,118,238,220, 57,180,106,213, 10, 26,141, 6,203,150, 45,179,248,229,151, 95, 44,182,111,223,110, + 63,109,218,180,223, 0,116, 46,143,179, 80, 88,205,234,210,165,203,228, 94,189,122,153,198,197,197,193,202,202, 10,123,246,236, +193,226,197,139, 47,107,181,218, 89,219,183,111, 95,116,240,224,193, 86, 67,134, 12,193,178,101,203,190, 34,132,204,167,148,234, + 75,227,124,241,226, 5,236,237,237, 97, 97, 97, 1,160, 96, 35,251, 7, 15, 30,224,236,217,179,168, 89,179,166, 33,162, 49,232, +125, 55,160,255, 52,167, 74,165, 82, 71, 71, 71,155,253,244,211, 79,112,118,118,134,167,167, 39, 20, 10, 5, 8, 33,208,235,245, +101,110,131,102, 72, 56, 3, 3,137, 56, 53,206,186,151,165,149,245, 87,148, 82,113, 86, 86,198, 70, 29, 50,247, 71, 68, 80,237, + 63, 21,247, 15, 82, 96, 17, 66, 40,165,148, 20,125,186,186, 34, 59, 53,213, 58,220,193,169,206, 30, 7,167,218,133,251,114,137, +194, 24,198, 58,220,209, 49, 63, 27, 0,116, 44,197,245,176, 76, 4, 63, 79,196,163,231,137, 48,149, 27,182, 77,141, 70,199, 22, +172,179,164, 20,234,220,191, 58,169,186,252, 12,104,116, 5,211, 57,180,154,124,100,165,132,146, 1,125, 58, 42,190,252,114, 52, +156,157, 93,237,203,226,211,201, 21, 19,199, 77,234,102,101, 99, 37,193,241,107,167,208,172,102, 31, 40,228, 18,164,101,169, 1, + 2, 60,139, 60, 11,240,230, 8, 9,143, 70,211,218, 74,116,238, 84,203,236,208,254,167,223, 0,152,109, 72,120,217,216,219,144, +122,119,133,132,211, 67,159,250, 20,124,102, 20, 96,234, 4, 21, 49, 67, 90, 66, 20,194,174, 28, 48,104,139, 82,142,227,198,217, +217,217, 37,207,156, 57, 51,192,199,199, 71, 59,110,220,184,144,151, 47, 95,126, 91,242, 26, 47, 47,175, 5,107,215,174, 69,120, +120,248,171, 69,139, 22, 93, 77, 77, 77,253,209,200, 23,115, 6, 33,100, 85,161, 53, 44,245,232,209,163,117, 47, 95,190, 60,118, +229,202,149,246, 95,125,245,149,116,252,248,241,195, 0, 44, 45,111, 88,208, 84, 46,239,176,224,242,101,202,198,198,106,254,248, +249,103,217,186,235,215,191,213,241,188,139,157,131, 3,105,209,180,105,158, 82, 36, 74, 77, 75, 74, 98,237,171, 85, 99, 94,158, + 61,107, 75, 77, 76,226, 79,158, 60,153,157,155,155,123,160,156, 33,152,252,210,134, 5, 75,131,179,179,179,182,180, 57, 90,229, + 52, 4,217, 60,165, 58,235,170, 94,232,212,190, 69,141,231, 79, 35, 35,229,150, 86,140,183,119, 21,223,208,176, 87,183,120,150, +213, 16, 66,178, 13,225, 98, 24,102,208,170, 85,171,234, 88, 88, 88,128,231,121, 88, 90, 90, 34, 37, 37, 5, 90,173, 22,217,217, +217,208,230,100, 65,155,149,133, 71, 81, 47,209, 50, 48, 16, 3,186,116,170,181,253,240,209, 65, 0,118,151,199,235, 82,183, 65, +177,229,106, 94, 21,219,191,198,124, 98, 50,139,197,214, 79, 13,188, 33, 53, 51, 67,199,201, 51,222,165, 98,190, 47,147,201, 78, +244,237,219,183,219, 55,223,124, 35, 74, 72, 72, 56, 69, 8,105, 73, 41, 13, 45,215, 2,108,102, 86,189, 72, 80, 88, 90, 90, 98, +213,170, 85,112,116,116, 68,126,126, 62,238,220,185, 67,221,220,220,200,133, 11, 23,224,230,230,134,212,212, 84,232,116, 58,228, +229,229, 37,106,181,218, 50,135,197, 11,135, 1,187, 78,238,234,124,242,233,189,109,173, 92,201,139, 59, 3,167,180,121,254,244, + 81, 88,244,153,179,215,126,100,213,138,152,204,216,160,233, 85, 27,223,183,251,106,234, 15, 88,187,116, 46,158,222,186,156,238, +232,145,189,206,132,104,182, 54,237, 88,118,120,243,242,242,212, 79,158, 60, 49, 15, 14, 14, 6, 33, 4,150,150,150, 80, 42,149, +165,138, 44, 67,193,113, 92,241,103,106,106, 42, 82, 82, 82, 16, 30, 30,142,109,219,182, 33, 62, 62,222,110,165,165, 69,162,157, + 76, 26, 44,205, 36,179,116, 58,122,191, 2,186,141, 29, 59,118, 28,228,225,225, 97, 94,242,100,227,198,141, 49,122,244,104,108, +216,176, 1,215,175, 95,127,109,191,203,196,196,196, 4,189, 94,191,181,156,188,205, 36,132,116,233,211,167,207,189, 43, 87,174, + 88,108,217,178, 5, 44,203,150,122,108,222,188, 25, 55,111,222,156, 77, 41, 13,171,228, 48, 84,205,126,253,250, 93,222,177, 99, +135, 85, 74, 74, 10, 82, 83, 83,145,155,155,139,188,188, 60,112, 28, 7, 95, 95, 95,194,178,172,111, 69,195,129,246,246,246, 39, + 46, 93,186,212,214,215,183,224, 82,189, 94,143,107,215,174,225,163,143, 62,202,214,106,181,253, 40,165,105,132,144,153,251,247, +239,191,222,180,105, 83, 52,110,220,216, 38, 42, 42,202, 6, 64,169,150,235,220,220, 92,228,230,230, 66, 34,145,192,201,201, 9, +243,231,207,135, 86, 91, 80,173,248,248,248,148,180,112,174,172, 89,179,102,159,176,176,176,197,148,210,117, 31,216, 16, 33,145, + 72, 36, 24, 53,106, 20,196, 98, 49, 76, 76, 76,160, 86,171,161,215,235,139, 69, 60,140, 28,126,246,246, 54,183, 21, 67,250,185, +143, 79,235,137, 3, 38,244,176,119,118,113,133,149,133, 28, 79,158,132,182, 60,127,238,236,207,126,190,246,191,240, 90,253, 47, + 97, 47, 51,163,255,129,248,189,166, 69, 62,208, 33,194,254,156,157,221,254,212,184, 56,153, 78, 38, 83,134, 23, 89,181, 10,196, + 85,127, 14,216, 5, 86,167, 47,172, 32,104,225, 97,160,192,210,115,120,254, 52, 4, 87,206, 28,133, 93,126, 28, 82, 95,212, 7, +164,117,160, 85,101, 65,173,213, 21,246,214, 56, 60,188,119, 14,217, 89,233,240,111,212, 3, 16,137,202, 28,218,178,180, 37, 61, + 90, 52,172,203, 60,143, 14, 65, 99,159,254,168,230,214, 10, 81, 9,217,200,204,213, 32, 35, 91,141,250,254, 51,144,146,161, 66, +118,190, 26,161,207,183,195,213,165,154,136,136, 35,219, 27, 42,176, 52,161, 7,161, 9, 59, 2,169,103, 75,200,124, 63, 2,227, + 25,128,232,224, 11,120,120,114, 37, 98, 31, 95, 5,229, 57, 56,251, 52, 49, 40,238, 12,195,108, 60,115,230, 76,253,214,173, 91, +139,219,183,111,239,239,230,230,230, 31, 27, 27, 27, 2, 0,110,110,110,254, 93,186,116,241,119,112,112,192,234,213,171,243, 25, +134,217, 88,201, 70,182,100,229,116,223,217,217,121,217,193,131, 7,151,140, 30, 61, 26, 78, 78, 78,126,229,221,155, 34,145,212, + 27,177,112, 33,149, 48, 12,221,189,118,173,244,135, 83,167,150,255,190,117,171,180, 93,219,182,132, 82,138, 7, 15, 30, 40,127, + 90,187, 86, 57,180, 87,175, 87, 81,201,201,236,165,235,215,117, 9,177,177, 57,201,121,121, 63,196,199,199, 39,254,127, 20, 96, +189, 94,127,227,229,139, 72,183, 6, 77,234,219,223, 15,125, 17,218,185,125,139,230, 34,145, 72, 20, 22, 25,117,195,222,222, 66, +121,238, 76,144, 78,175,215,223, 48,132, 75, 46,151,247,104,215,174,157, 56, 35, 35, 3, 46, 46, 46, 72, 73, 73, 65, 92, 92, 92, +129,133, 33, 43, 3,186,172, 44,232,179, 51,193,229,229,226,197,157,219,168, 95,173,170,124, 95,193, 36,248,221, 21,228, 73,169, +150,169,146,150, 44,153,185, 57,100,102,102, 32, 70, 14, 15, 18, 66,122, 89, 89, 89, 77,207,204,204, 60, 65, 41,157,175,211,233, +198, 77,159, 62,189,241,154, 53,107,236, 22, 44, 88, 96,241,197, 23, 95,236, 35,132,212,167,148,106,202,226,200,205,205,141, 96, + 89,214, 14,128,195,185,115,231,224,224,224,128,172,172,172, 34,203,138, 54, 63, 63, 95,145,150,150, 6,141, 70, 3,173, 86, 11, + 11, 11, 11,220,189,123, 55,131,101,217,163, 21,133,207,162, 58,153,175,209, 61,249,206,182,150,105,188,142,181,110,147,156,206, +103,204, 93, 22, 63, 15,192,242,174,213,171,111,214,241,151, 95, 60, 11, 57,102,253,242,206,197,244,248,103,121,213, 54,255, 25, +153, 83, 78, 58, 82, 66, 8, 79, 8,161,190,190,190, 72, 77, 77, 5,195, 48, 80, 42,149, 48, 51, 51, 67,205,154, 53, 17, 19, 19, + 83,105,129,197,178,108,177,184, 58,126,252, 56, 18, 18, 18,176,107,215, 46,184,187,187,139, 0,216,199,196,196,116, 28, 48, 96, + 64, 83, 91, 91,235, 69,105,105, 25,139,203, 9,231, 3, 0, 22,111,228, 83, 91, 59, 59,187,243, 26,141, 6,145,145,145, 56,124, +248,112, 32,165,244,146,145,239,118, 36, 33,164, 75, 64, 64,192,182,134, 13, 27, 86,167,148,162, 78,157, 58, 24, 60,120, 48,182, +111,223,142,135, 15, 31, 34, 43, 43,139, 63,123,246,236,239, 0,150, 25,219,112, 23,166,175,111,191,126,253,174,238,220,185,211, + 58, 45, 45, 13, 42,149, 10,121,121,121,216,183,111, 31, 90,182,108, 9, 59, 59, 59,236,216,177,131,165,148, 30, 43,135, 75, 97, +101,101,117,226,234,213,171,129, 53,106,212, 64,104,104, 40,206,157, 59,135, 42, 85,170, 64, 38,147, 97,216,176, 97, 22, 27, 54, +108,248,154, 16,178, 88, 34,145,204,239,215,175, 31, 56,142,195,181,107,215,210, 0,164, 27,240,206, 35, 51, 51, 19,153,153,153, + 48, 49, 49, 41,249,142, 17, 0, 91, 86,174, 92, 57,114,226,196,137,168, 94,189,250,124, 66,200,134,202,110, 40,253,191, 4, 95, + 95,235,218, 50, 70, 62, 65, 42,149,216,102,100,100, 20,215, 29, 90,173, 22, 26,141,230, 53,203,149, 84, 42,177,109,210,192,243, + 79, 85,126,206,172,199,225, 25,101,110, 92,238, 87,195,170,174,210,212,114, 98,247, 46, 3,134,117,234,210,155, 97,245,122,156, + 62,125, 12,191,254,186, 30,109, 3,124, 80,173, 70, 29,124, 61,126,130,165, 70,203,206, 56,123,246,212,244, 22, 77,170,158,202, +201,206,156, 89, 30,167,128, 82, 4, 86,233,138,177, 63,231,234,138,140,194, 23,198,206,218,218,122, 45,199,113,109,129,207, 33, + 49,115, 66,232,221, 91, 72,207,144, 64,163,226,192,211, 2,145,101,144, 96,209,104,113,249,244, 17,172, 90,185, 28,105,105,105, + 8,104, 29,136, 92,177, 59, 60,220, 61,160, 86,229, 23,190, 44,128, 78,171,135,189,163, 39,238,223,127,168,207,206,203, 43,179, + 34,146, 42,116,181, 60, 28,125,160,209, 53,135, 66, 38, 67, 86,142, 22, 25,133,226,106,199,254,129,208,228,171,192,106,117, 96, +181,122,216,123,244, 67, 77,199,118,224,185, 99,181,141, 74, 37,158,131,238,229,101,232, 94, 94,134, 73,243,241, 56,186,104,200, + 27, 21,159, 97,239,111, 82, 82, 82,138,155,155,219,169,123,247,238,245, 24, 56,112, 32, 46, 94,188, 56, 2,192,228,194,198,125, +196,192,129, 3,113,239,222, 61,132,133,133,157, 74, 74, 74,122, 47, 62, 59,100, 50,153,186,168,151,167, 80, 40, 20, 21, 92,235, +218,184,111, 95, 81,214,253,251,217, 43,175, 93,155,187,121,203, 22,105,135,246,237,137,158,101,193,115, 28,106,120,123,147, 78, +157, 58,153,110,223,187,215,150,209,235,111, 78, 29, 55,238,220,134,225,195,115,110,229,230, 26, 58,129,188, 74,225,208, 32, 0, + 84, 41,231,156,193,208,104, 52,107,198,140,254,172,227,133,139,151,220,171,120,186,154,159, 57,119,249,161, 76, 46, 21, 85,243, +170,198,100,102,102,138,191,159, 59,211, 68,163,209,252,108, 32, 93, 45, 59, 59, 59, 36, 38, 38,226,249,243,231,208,104, 52,208, +235,245,224,243,243,160,205,200,132, 54, 43, 29, 68,173,130,156,227,160, 78, 77, 66,149,106, 85,129,191, 86, 24, 86,212,128,149, + 42,176,138, 62, 21, 22, 22,144,154,154, 65, 36,145, 24,188,105, 57, 33,164, 97,147, 38, 77,246, 30, 56,112, 64,250,233,167,159, + 54, 37,132,172,165,148, 70, 17, 66,218,207,158, 61,251,246,218,181,107,229,163, 71,143,246, 93,182,108,217, 39, 0,202, 20,236, +106,181,122,239,159,127,254, 57,212,211,211,211,225,209,163, 71, 80,171,213,224,121, 30, 93,187,118, 5,128,226, 50,243,244,233, + 83,149, 90,173, 78, 14, 9, 9,201,142,138,138,210,194,128, 85,127,115, 87,199,223,152, 60,192,173,175,163,147,235, 77,133, 73, + 21, 47,154,123,191,207,228, 1,110, 75, 87,236,139, 85,159,140,136,200,153,253, 85,181,197,121, 57,193, 95, 89,185,229,174, 59, +121, 44,210,144, 85,190,180,104, 89,186,173,173, 45,196, 98, 49, 36, 18, 9,164, 82, 41, 0,192,209,209, 17, 89, 89, 89,229, 14, + 17,150, 37,176,178,179,179,145,149,149,133,176,176, 48, 36, 36, 36,224,198,141, 27,224, 56, 14, 5,139, 20, 1, 55, 55, 55,220, +190,125,219,188,113,227,198,179,136,148, 92,160, 58,106,240,178,113,134, 97, 38, 14, 31, 62, 28, 90,173, 22,131, 7, 15,198,230, +205,155, 39, 2,184,100,108,121,167,148,222, 36,132,120, 63,124,248,208, 2,192, 71,131, 6, 13,218,218,175, 95, 63, 92,186,116, + 9,199,142, 29, 11, 4, 16, 14, 64, 5, 96, 81,225,198,202,139,202, 91,224, 81,232,138, 97,189,189,189,253, 71,181,107,215,126, +216,175, 95, 63,255,157, 59,119, 90, 37, 39, 39, 23, 45,106,192,203,151, 47,241,219,111,191, 37,108,217,178, 37,155,227, 56, 91, +145, 72,244,103,102,102,102, 89,171,160, 21,166,166,166, 39,175, 94,189,218,166, 70,141, 26, 8, 10, 10,194,172, 89,179,208,166, + 77, 27,236,218,181, 11, 53,107,214, 68,157, 58,117,224,224,224,240, 85,122,122,122,139, 77,155, 54, 5, 54,107,214, 12, 59,118, +236, 64, 66, 66,194,250,178, 92, 54, 84, 52,149, 76,175,215, 19, 0, 77, 87,174, 92, 89,117,226,196,137, 56,112,224, 0, 26, 52, +104, 96, 25, 25, 25,185,172,168,142,253,183,162,166,183,237,226, 38,141,219, 76,119,118,173,129, 29, 59,119, 33, 61, 61,189, 56, + 77,138,210,133, 82,138,156,156, 28, 36, 38, 38,194,210,194, 28, 75,151,205,239, 54,246,139,145,238, 40,112,103,241,118, 69, 87, +221,102, 89,255,193,159, 77, 25, 60,116, 36, 30, 61,188,135,237, 91, 55, 34,228,209,131, 98, 62, 86,175, 67,248,147,187, 8,127, +114, 23,142, 78,158,232,212, 33,144, 12, 25, 50,164,235,240,161,131,236, 1,252,109, 46, 32, 62, 36,235, 85,153, 67,132,111,188, + 48,118,214,214,214,143,247,236,217, 99, 27, 16, 16,192,176, 44,139, 83,167, 79,227,171, 47, 63,198, 39,195,103, 64, 7,107,176, + 90, 41,120,169,194,160, 7,170, 84,249,160,160,200,203,203,195,245,235,215, 65,121, 22,219, 55, 45, 7,165,124,177,192, 2, 40, +180, 58, 29, 92, 61,124,177,126,243, 2, 22, 18, 73,153, 21, 89,118, 26,195,233, 89,138,184,228,104, 68, 39,132,192,210,220, 3, + 98,137, 7,210, 50,243, 33, 22, 57, 65,175,126, 10,174,208,124,154,159, 23, 11,149,238,221,242,141,203,122,219, 74, 74,121,195, + 59, 72,249,249,249,123,119,236,216,209,105,197,138, 21,210,110,221,186, 85,119,115,115,107, 2, 0,125,251,246,173,110,110,110, +142, 29, 59,118,232,242,243,243,247,190, 71, 11, 79,235,198,141, 27, 35, 61, 61, 29,175, 94,189, 42,183,231,193,105,181,182,102, + 14, 14, 76,242,133, 11,250,148,140, 12,247,118,237,218, 17, 61,203, 66, 68, 8,210,179,178, 16,245,234, 21,172,172,172,200,227, +167, 79,205,126,254,250,235, 67, 62,254,254,226,162, 21,134,134,224,216,177, 99, 74, 20,204,187, 42,247,156,145, 47,100, 30, 33, +100,196,215, 95,127,125,232,143, 63,118, 88, 38, 38, 37, 61,147,203,228,172,153,153,137,243,240, 97,131,196,153,153,153, 67, 41, +165,185,134,242,101,100,100,224,197,139, 23, 48, 49, 49,129, 84, 34, 1,175,202, 7,151,151, 11,117,122, 10, 24,157, 22, 50,142, +131,141, 82, 14,119, 71, 71,120,216,219, 25,196,249,252,252,153,226, 9,237, 37,135, 5,151, 54,169, 5,153,169, 25,100,230,102, + 24,123,252, 98, 97,239, 83, 10,204,174,120,100,152, 16, 98,231,234,234,122,116,231,206,157,210,148,148, 20, 60,120,240,224, 33, +165, 52,139, 16, 98, 14,128,127,242,228, 73, 80, 72, 72, 72,143,194, 85,116, 21,173,254, 90,126,240,224,193,142, 1, 1, 1,172, +151,151,151,105, 82, 82,146, 71, 90, 90, 26, 73, 72,120,125, 14,243,137, 19, 39, 20, 42,149, 42,143,231,249, 67, 40,240,227, 84, +161,255,161,201, 3,220, 20,215,239, 99,124,155,206, 85,234, 88,216,213, 69, 58,123,191,206,205,135, 9,227, 39, 15,112, 91,179, + 98, 95,172,218,132,104,182, 18, 46,198, 93,172, 80,111, 51, 48,191,169,157,157, 29, 40,165,184,125,251, 54,174, 94,189,138,203, +151, 47, 35, 42, 42,234, 47,171,182,165, 37,206,158, 61,139,182,109,219, 26,243, 94,194,217,217, 25,214,214,214,216,190,125, 59, +118,237,218, 85, 60,209,189, 8,169,169,169, 80, 42,149, 88,177, 98,133, 89,255,254,253,127, 4,208,201, 64, 33, 92,181, 99,199, +142,221,157,157,157,145,150,150, 6, 39, 39, 39, 4, 4, 4,244, 36,132,120, 81, 74, 95, 86,178,232,143,237,220,185,243,252, 31, +126,248, 1,122,189, 30,163, 70,141,194,179,103,207,246, 62,123,246,108,149,135,135,199,248,105,211,166, 57, 58, 58, 58, 98,224, +192,129,166, 0,250,150, 69, 98, 99, 99,179,104,227,198,141, 67,187,119,239, 46,210,233,116,173,207,159, 63,143, 87,175, 94, 65, +171,213,130,101, 89, 68, 68, 68, 96,220,184,113, 9,105,105,105,109, 40,165, 17, 6,132,107,198,153, 51,103,218,212,170, 85, 11, +199,143, 31, 71,223,190,125, 47, 88, 89, 89,249,212,173, 91,215,217,197,197, 5,251,246,237,131,133,133, 5, 60, 60, 60,108, 22, + 44, 88,208,174,119,239,222, 56,126,252, 56, 38, 77,154,116, 17,192,226,202, 36, 4,207,243,100,229,202,149,254, 43, 87,174,116, + 43, 18, 87, 34,145, 8,123,246,236,193,195,135, 15,123,253,219, 5, 22, 35, 34, 35, 22,206,155,138, 59,247,159,226,224, 65, 41, +238,220,185, 3, 71, 71, 71,200,229,114, 80, 74,161,209,104,144,146,146, 2,189, 78,131, 58,181,171, 98,219,150,197, 72, 78, 78, + 1, 68,164,204,169, 53, 68, 68,134,141,252,184, 15,174, 92, 61,141, 13, 27, 54, 34, 55, 55,175,140, 78,183, 2, 53,124,106,193, +213,197, 1, 49,177, 49, 32, 34,216,253,157,113,253,143, 12, 17,254, 5, 43, 43,171, 85,187,119,239,182,109,219,182, 45,147,151, +151, 7,158,231,209, 42, 32, 0,227, 39, 78,196,177,157, 59,225,221,116, 48,136,214, 12,172,210,176, 85, 12,106, 85, 62,252, 26, +180,192,128,129,131, 16, 29, 21,133,206, 61,250, 65,173,206, 47,158,139, 80,100,193,210,106,117,176,115,112,199,153, 51,103, 24, +140, 26,245,184, 76, 81,160,147, 5,135, 71,168, 91,102,170,238,227,250,157,237,208,105,116,168, 83,103, 54,116,188, 45, 28,220, +190,128, 94,127, 24,217, 41,231, 11,134, 43,108,219, 34, 54, 58, 26, 34, 70,250,184,178, 9,198,231,165, 24,221,187,122,163, 1, +207,118,118,118, 62,114,227,198,141, 1,125,251,246,197,217,179,103, 63, 41, 20, 88,184,113,227, 6, 94,188,120,113, 36, 35, 35, + 35,251,125,100,174,155,155, 91,215,192,192,192,190,141, 27, 55,198,241,227,199,193,113,220,117,131, 94,104,137,132,138, 68, 34, +240, 60, 15, 2, 32, 45, 51, 19,207,158, 61, 67, 90,106, 42,244,122, 61,242,114,115,249, 90, 62, 62,185,148,231,205,141, 9, 79, +201, 21,131, 40,101, 21, 97,209,185, 74,136,172, 40, 51, 51,179,232,156,220, 92,123, 11,107,155, 28,133, 76,198,101,101,102,101, +133, 62,126,164, 53,176, 81, 40,194,147,144,144, 16,255,248,248,120, 68, 71, 71,131,205,203, 1,163,209, 66,164,201, 71,251, 22, +205, 97, 2, 10, 5,120, 72,120, 61, 36,140, 4, 57, 5,171,237,158, 84, 40,202,245,250,183, 44, 89,132,144,130, 97, 65, 83, 83, +200,204,204, 95,179,104, 25, 82,158,228,114,249,206,125,251,246, 57,187,186,186, 98,222,188,121,112,115,115,171, 89,167, 78,157, +252, 86,173, 90,153, 56, 58, 58,194,207,207, 15, 45, 90,180,192,201,147, 39, 1, 32,162,130,244, 99, 9, 33,157,174, 92,185, 50, +229,218,181,107, 3, 8, 33,100,198,140, 25,232,210,165, 11, 20, 10, 5,242,243,243,145,145,145,129, 77,155, 54, 17, 74,105,131, +194,176,122, 42, 20,138, 93,132,144, 88,149, 74, 53,240, 77,206,237, 43,235,186, 36,167,243,163, 28,157, 92,251,180,233, 92,165, + 78,187,206, 29, 80,213,187, 29,218,117,142, 6,128,197, 54,226, 87,131,151,126,231,127,200,206,221,230,183, 51,167,206,206, 13, +104,211,238,219, 25,163,173,231, 47,222, 88,113,217, 39,132,128,227, 56,136,197, 98,136, 68,162, 82,173, 84, 98,177, 24, 12, 99, +216, 84, 20,142,227, 98,123,247,238, 93,252, 59, 62, 62,222,206,221,221, 93, 84,100,185, 2,128,172,172, 44,196,196,196, 64,175, +215,195,214,214, 22, 58,157,174,174, 17,229,106,252,167,159,126, 74, 84, 42, 21, 62,251,236, 51,108,222,188, 25,131, 7, 15, 38, +151, 46, 93, 26, 15, 96,162,177,229, 93, 36, 18, 45,157, 54,109,218,148,113,227,198, 33, 61, 61, 29, 39, 78,156, 64,215,174, 93, +177,103,207, 30,251, 19, 39, 78, 44,108,219,182, 45, 24,134,193,241,227,199,193,178,236,211,242,184,164, 82,233, 71,221,187,119, + 23,197,196,196, 64, 42,149,162, 81,163, 70,136,141,141, 69,126,126, 62,226,226,226, 48, 97,194,132,196,180,180,180, 64, 67,222, + 35, 66,136,164, 70,141, 26,227,106,214,172,137,179,103,207,162,127,255,254,151,244,122,125,247,148,148,148,113, 25, 25, 25, 75, +134, 13, 27, 6,127,127,127,132,135,135,163, 99,199,142,104,217,178, 37, 78,156, 56,129,207, 62,251,236,162, 94,175,239, 94,142, + 31,172,156,228,228,100,203,234,213,171, 35, 41, 41, 9,185,185,185,184,113,227,134,197,197,139, 23,189, 92, 92, 92,172, 34, 35, + 35,233,119,223,125,167,156, 56,113, 34, 86,173, 90,133, 7, 15, 30, 96,251,246,237,104,215,174,157,254,249,243,231,203,255,237, +141, 52,207,241, 0,120,120,185,155,225,244,177, 45,184,247, 48, 18,247, 30,134, 64, 38, 47,152,220,174, 82,229,163, 65,157, 26, +104,218,168, 9,226, 19,226,240,199,246, 45,176,177,115, 45,183, 30,161,148, 66, 42,230, 80,203,199, 9, 59,183,111,196,241, 19, +231,176,253,143, 93,197,115,218,196, 98, 9,234, 55,104,138, 70,141, 2, 16,249, 34, 2, 91,182,108,128,189,131,187, 48,230, 87, +217, 33,194,146,159,111,244, 14,218, 5, 4, 4, 48,185,185,185, 80,171,213, 72, 76, 76,196,171, 87,175, 96,101,109,133,200,248, +151, 8, 84,234,144,200,103,227,201,195,199, 28, 97, 36, 15, 42,122, 96,247, 54,245,129, 54,245,241,213,167,131,203,206,124, 80, +152, 90,216, 65,163,209, 64,167,215, 63,199,154, 53,101,246,148, 89, 78, 31,116,250,236,249, 38,159,126,242,145,228,204,249,205, +208,107,121,168,244,150,200, 83,107,145,167,147, 64,100,217, 21, 72,189, 4, 70, 44, 71,179,122, 53,112,232,224, 73, 29,101,245, +231, 12, 78, 32, 71,127,176, 73, 33, 37, 4, 86,242,107,255, 43,204,109, 96,236, 16, 63,207,243,135,118,238,220,217,173,121,243, +230,202,182,109,219, 86, 43,108, 48,181, 59,119,238,204, 47,180, 14, 24,171,250, 95,243,222,238,234,234, 90, 87, 44, 22,247,237, +209,163, 71,221,145, 35, 71,226,241,227,199,216,177, 99,199,115, 31, 31,159,171,229, 10, 43,153, 44, 45, 55, 57,217,202,204,203, + 75,108,109,110, 30,127,242,196, 9,207, 14, 29, 59,146,232,232,104,164,165,165, 65,173, 86,227,193,195,135, 84,194, 48,177,196, +194, 66,244,244,254,125, 17, 35,147,165, 25, 17,212, 87, 21,172, 34, 92, 84, 89,107,150,187,179,117,245,185, 51,199, 84, 85,171, +213,254,217,217,217,172, 88, 34,145,184, 57, 89, 69, 25, 57,220,120, 60, 40, 40,168,119,135, 14, 29,228,225,193, 15,192,102,101, + 65,155,149, 1, 41,207,193,166, 65, 61, 48, 58, 13,160,213,195,181, 22,133, 58, 83,137, 75,183,158,234, 53, 26, 77,133, 59,181, + 23, 9, 44, 81, 9,103,128, 0, 32, 51, 51,131,220,220, 2,114, 51,179, 55,135, 16, 73, 5,249,173,252,232,163,143,218, 55,107, +214, 12,148, 82,108,218,180, 9, 58,157, 78,166,211,233,160,213,106,161,211,233,144,157,157,141,237,219,183, 99,253,250,245,215, + 0,252,110,128, 72,101, 37, 18,201, 56,150,101, 29,228,114,185,206,222,222, 94,186,119,239,222, 98,183, 17,245,235,215,135,169, +169,169,134, 16,162, 3, 0, 39, 39, 39,253,214,173, 91,197,189,122,245,146,150,198,231, 91,167,230,212,170,172,117, 27,133, 73, + 21, 47, 11,187,186,168,234,221, 14, 0,208,177,199,167,168, 90,195, 3,217,169,193, 94,106,213,171, 62, 82,113,134,245,227, 53, +113,161, 38,221,253, 71,230, 37, 95,124, 6, 96,139,129,239, 16, 58,116,232,128,206,157, 59, 23, 15, 7, 58, 56, 56, 64,171,213, +150,186,156,191, 60, 20, 57, 17,253,225, 7, 34,194, 92, 96,165,165, 69, 34, 0,251,146,226, 42, 58, 58, 26,209,209,209, 69, 86, +225, 10,243,168, 68, 94,153,120,123,123,143,104,208,160, 1, 78,156, 56,129, 59,119,238,196,157, 62,125,218, 53, 32, 32, 0, 94, + 94, 94, 35, 9, 33,179, 40, 45,219,135, 94,105, 67,122,173, 91,183,254,122,220,184,113, 8, 9, 9,193,152, 49, 99,210, 98, 98, + 98, 14,237,221,187,247,179,185,115,231,138, 58,119,238,140,132,132, 4, 44, 93,186,148,187,122,245,234, 50, 0,243, 42,200,247, +176,152,152, 24, 55,181, 90,141,244,244,116,176, 44,139,252,252,124,156, 60,121, 18,219,183,111, 79, 42, 20, 87,207, 13, 12,158, + 77, 64, 64,128,245,179,103,207,176,101,203, 22,104,181,218,111, 41,165,106, 66,200,239,211,167, 79,159,229,232,232,104,217,177, + 99, 71, 52,104, 80,224, 11,110,207,158, 61,152, 48, 97,194, 69,173, 86,219,189,130, 52, 88,225,228,228,244,197,152, 49, 99,106, + 78,158, 60, 25, 81, 81, 81, 22, 39, 78,156,104,121,253,250,117,226,238,238,142,180,180, 52,216,218,218, 98,213,170, 85,152, 52, +105,210,239, 0,146,110,221,186, 53, 34, 34, 34,226, 71, 74,233,134, 15,161,161,166,148, 67,126, 70, 8, 56,141, 53,234,215,241, + 69,125,255, 42, 56,125,254, 30, 0,160,125,191, 0,228,231,229, 96,235,214, 77,120,254,252, 25,196, 18, 9,172,108,156, 12,122, +135,180,217, 97,200,212, 37,160, 67,219, 70,232,218, 57, 16,191,111,219, 3, 86,175,195,103,159, 14, 69, 70,102, 38,182,109,219, +130,200, 23, 17, 16, 75, 36,176,181,115,249, 7,226, 89,182, 22,249, 32, 45, 88, 69, 21, 10,207,243,136,139,139,195,221,187,119, +241,242,229, 75, 40,149, 74,168, 88,142,223, 16,116,149, 39, 68, 26,203, 83,122,141,178,197, 94,133,223,230,224,184,184, 18, 30, +102, 45,173,173,173,101, 26,141, 10, 44,171, 47, 81, 83, 17,128, 0, 82, 49,224,236, 82, 21, 49,209, 49, 84,165, 86, 95, 44,183, + 7,166, 81,175, 58,114,104,223,184, 22, 45, 3,236,186,182,255, 1,135, 14,207, 70, 70,118, 54,212, 58, 9,242,212, 58,228,171, + 1, 43, 27, 31, 52,174, 83, 23,241,241,105, 8,190,115, 41, 87,172,201, 55,100, 2,232,179,159,191,253,212,251,211,175,166,194, +196,179, 37, 52, 79, 14,129,207, 77, 42,182, 96, 41,204,172, 97,227, 81, 11,153,121, 26,236, 59,119, 15, 0, 12,222,146, 37, 41, + 41, 41,223,217,217,121,255,216,177, 99, 23, 63,120,112,191, 42, 0,220,190,125,251, 69,124,124,252,140,164,164,164,124, 99, 50, +176,132,247,118, 98, 98, 98,114,203,219,219,251,101,215,174, 93, 45,122,247,238, 13,123,123,123,220,187,119, 15, 63,253,244,211, + 51,173, 86, 59,231,226,197,139,229, 14,233,104,181,218,184,123,135, 15, 91, 4,126,252,177,213,212,158, 61,151,142, 27, 55,110, +213,188,121,243, 36,222,222,222, 68,175,211,225,209,163, 71,116,231,142, 29,250,245, 51,103,174,148,153,154,138,111, 31, 57, 34, + 97, 53,154,184,255,239, 66,236,230,230,214,166, 91,151, 54,181,150,173, 88, 3,181, 42, 23,183,174,255,137,140,140, 20,108,220, +116,176,150,155,155, 91,155,216,216,216, 75, 6, 90, 50,246,252,246,219,111, 83,154, 54,104,208,160,154,187, 59, 30, 69,189,132, +140,231, 32,101, 89, 48, 58, 13, 68,172, 26,238,254, 20, 68,100,142,132,196,108, 44,216,189, 63,132,227,184, 61, 21,241,214,236, +246, 17,230,197,102,129, 16,130,229,205,253, 33, 51, 55,131,212,212, 12, 99,143,158, 47, 22, 85,199,231,205,132,204,204, 12,213, +155, 6, 24, 82, 9,229,155,155,155,223,125,244,232, 81, 99,127,127,127, 76,153, 50, 5,175, 94,189, 2,207,243, 72, 74, 74, 82, + 39, 36, 36,196,165,164,164,188, 2,112, 8,192,102, 67, 39,249,178, 44,235,112,239,222, 61, 0,144, 2,192,185,115,231,224,226, +226, 2, 75, 75, 75,100,103,103, 99,234,212,169,242, 57,115,230, 0, 0,238,222,189, 43, 41,154, 96, 92, 26, 30,221,123,178, 44, + 51,135,102,208,220,251,125,210,217,251,117,218,117,142, 65,199, 30, 35,113,246,248,239, 56,127, 58, 8, 54,226, 87, 47, 97,154, +115, 50,245,101,106,118,108,158,247, 47,181, 26,126,198, 36,228,157,254,101,124, 47,107,198,217,153,223, 55, 99,125, 86,102, 5, +105, 0,134, 97,138,231, 96, 21, 77,104, 55, 86, 92,149,196,220,185,148, 39, 32,196, 78, 38, 13,142,137,137,233,232,230,230,134, +164,164, 36,196,196,196, 32, 58, 58, 26, 49, 49, 49,168, 81,163, 6, 34, 35, 35, 33,149, 74, 31, 24, 72, 59,116,224,192,129,230, + 90,173, 22,187,118,237, 98, 1,244,216,183,111,223,221,198,141, 27,139,187,116,233, 98,190,110,221,186,161, 0, 54, 27, 17, 76, + 83, 11, 11, 11,169, 78,167,195,186,117,235, 16, 19, 19,211,134, 82,250,132, 16,242,203,192,129, 3,215,251,251,251,215, 8, 9, + 9,121,150,155,155, 59,150, 82, 26,108, 64, 93,244,105,163, 70,141,246,241, 60,239,217,161, 67, 7,211, 21, 43, 86, 88, 60,125, +250, 20,110,110,110,224,121,254,145,145, 91, 77,165, 7, 5, 5,101,180,104,209,194,186,112, 66,251, 2, 66,200,143, 12,195, 44, +238,219,183,175,229,206,157, 59,113,226,196, 9,104,181, 90,132,133,133,165,132,132,132,252, 12, 96, 89,121, 11, 48, 10,243,250, + 5,128,233,132,144,186,191,252,242,203, 96, 87, 87,215,161,215,175, 95, 39, 87,174, 92,193,242,229,203,217,217,179,103,139, 91, +181,106,133, 41, 83,166,188, 0,240, 89, 97,121,159,245, 1, 25, 66,244, 58,157, 22, 22, 54, 85,145,155, 25,141,148,152,235, 80, +154, 59,161,115,187,122,200, 87,105,113,236,200, 1, 4, 63,122, 8,145, 72, 4, 71, 39,119, 88, 89,219, 33, 60,252, 25, 0,132, +150,207,169,131,185,117, 21,228,102,197, 64,155,124, 15, 38,102, 14, 24,249,113, 31,228,171,116, 56,120,232, 0, 66, 66,130,193, + 48, 12,156,156,221, 97,105, 85,192, 73,104,185,156, 2,140, 21, 88, 12,195, 92, 56,117,234, 84,255,166, 77,155,138,159, 63,127, +142,231,207,159, 23, 13,117,177, 4,220,254,164,224,195, 67,202,105,252, 59, 20,249,202, 40,185,183,160,153,185,121,220,211,176, + 39,142, 25,233, 73,120,120,255, 42,158,135, 63,194,203,200, 39,208,233,212, 96, 68, 34,136, 24, 17,170, 84,173,141,171,215,174, +107,181, 28,119,163, 44, 78, 0, 72, 79,143,200, 49,115,244, 25, 52,127,222,172,227,147,166,126,111, 50,160,255, 6, 4, 63, 13, + 69, 46,235, 4, 74, 1, 39, 91, 83,212,175, 54, 13,113,241, 41,216,253,251,186,124, 94,167, 27, 86,210, 7, 86,105,156, 0,224, +152, 10,191,245,155,126, 31,181,121,251,206,239,167,126, 61,218,177, 87,223, 97,144,165,135, 66, 31,127, 15, 85, 27,119, 5,145, + 91,225,196,153,243,184,116, 55, 52,137,231,232,247,142,105,248,181, 34,206,146,200,202,202,186,147,148,148, 88,181,132,215,246, +170,114,185,226, 78, 5, 98,170,195, 27,126,129, 94,243, 16,207, 48,162,166,243,230,205,203,115,118,118,214,134,132,132,224,151, + 95,126,225,239,222,189,123, 65, 38,147,109,140,143,143,215, 84,196,105,175,215, 63,220, 57, 99,134, 95,147,190,125,233,144,175, +191,206,135, 92, 62,126,233,242,229, 51, 82, 50, 50, 92, 40,207,195,222,198, 38,118,233,204,153,139,250, 15, 28,152,241,248,234, + 85,147,235,135, 15,155,200, 88,246, 94, 69,225,124, 31, 40,143, 51, 54, 54,246,146,119,117, 15,108,221,188, 2, 58,157, 6, 9, +113, 5,134,171,212,180, 44,148, 39,174,222,228, 44, 28,252,239,251,221,156, 57, 55,191,155, 52,209,169,117,251, 14,136,126,248, + 0,186,244, 20, 16, 61, 11, 9, 17, 35, 47, 89,137,228,164, 92, 76,255, 99,111,114,110,126,126,223, 55, 29, 57,150, 21,206, 34, + 11,149,220,194, 28, 82, 83, 51,200,204,204, 95,179, 90, 41, 44, 44, 32, 51, 53,131, 88, 38, 43,109, 50,252, 91,156,185,185,185, +253,250,247,239, 31,124,251,246,109,235,207, 62,251, 12, 45, 90,180,184,175, 82,169,218, 82, 74,115, 42,155,158, 98,177, 56,185, + 97,195,134, 14, 18,137,132, 29, 53,106,148, 56, 53, 53,181,216, 19,122,110,110, 46, 78,158, 60,137,162, 37,247,143, 31, 63, 70, +237,218,181,203,228,252,108,218,163, 56, 0,243, 38, 15,112, 91,122,243, 97,194,120, 0,139,171,214,112,199,249,211, 65,184,114, +254,250,140,102,254,252,154,110,195, 26,255,168,108, 59,112,106,173,134,159, 49,102, 22,206,216,118,240, 0,243,228,222,150, 5, +249,249,143,170, 3,248,166,172,112, 18, 66, 64, 41,125,203, 37,131, 74,165, 50, 72, 92,149, 87,150, 40, 40,149,102,146, 89, 3, + 6, 12,104,122,235,214, 45,115, 51, 51, 51,232,116, 58, 80, 74, 81,189,122,117,136,197, 98,252,252,243,207,121,169,169,169,179, + 13,225, 52, 53, 53, 29,215,185,115,103,132,133,133,225,206,157, 59, 7, 40,165,193,132,144, 3,207,159, 63, 31,212,170, 85, 43, +252,254,251,239,227,202, 18, 88,101,113,242, 60, 95,210,231, 81,122, 97,217,125, 8,160,153,177,113, 47,116, 22,218, 18, 0,108, +109,109, 99, 28, 29, 29, 45, 30, 62,124, 8, 15, 15, 15,232,116,186,166,198,148, 37, 74,169,158, 16,178,246,226,197,139,115, 90, +182,108,137,113,227,198,181,185,120,241, 98,155,150, 45, 91,162, 86,173, 90, 56,127,254, 60,118,236,216,177,159,227,184,177, 0, + 50, 41,165,156, 49,121, 84, 40, 24,131,235,212,169, 51,212,221,221, 29,203,151, 47,215, 5, 7, 7, 79,152, 63,127,254,202, 7, + 15, 30,200,107,215,174, 45, 10, 14, 14,230, 43,147,239,127, 71,189,244,190, 56, 41, 33,223,126,246,249,248, 95, 62,255,108,168, +162, 81,195,250,200,207,142,133, 42, 55, 9,249, 57,137,248,121,243, 25, 16, 34,130,189,189, 51, 28,156,220, 16, 21, 21,141,107, +127,158,208,230,229,171, 86,201,244,252,226,242, 57,191, 46,224,108, 80,192,153,159,151, 12, 85,110,114, 49,167,131,131, 75, 33, +103, 20,174, 94, 63,161, 86,229,229,173,208, 82,178,228,239,140,251,127, 78, 96,101,100,100, 76, 24, 61,122,116,219,233,211,167, +219,178, 44,203,216,216,216, 32, 42, 42,138,221,191,127,127,122,110,110,238,132, 74, 61, 84, 34, 9,246,246,241,109,219,171, 87, + 47,246,163,143,122, 74,135,127,218, 69,108,239,224,128,172,204, 52,132,135, 61,192,211,208,123,240,246,173,135,185,243, 86, 2, + 86, 86, 21,174,212,201, 77, 10,191, 96,230,232,211,227,135,239,190,217,211,178, 77, 39, 11,223,218,245,164,245,171, 91, 66,167, +103, 17, 27, 27,139, 35,135, 31,234, 66,238, 94,201,230, 89,237,160,188, 20,195,182,202,185, 88, 48,129,119, 99, 29, 71,178, 99, +225,210,159,167,172,219,184,117,234,244,241,159,153,182, 10,232,136, 71, 65,191,227,192,241, 61,121,106,141,118,169,148,193,242, + 71,169, 52,223,216, 52, 80,171,213,250, 55,167,142,168,213,106,253,187,102,232,214,173, 91,145,152,152,168,139,137,137, 9, 98, + 89,246,144, 49,171, 17,215, 80,170,237, 75, 72,208,119, 1, 1, 93,190, 59,125, 90, 49, 98,218, 52,237,176,225,195,191,129, 70, +163,131, 76, 70,197,166,166, 34,200,229,146,199, 87,175,154,172,254,242, 75, 27,162,213,158,253,189,130,222,231, 27,120,239,171, + 8, 75, 88,176, 48,226,179, 73, 80,149,176, 96,221,184, 19, 14, 99, 44, 88,133,149,120, 52, 33,164,217,248,111,191, 59, 56,168, +115,251, 90,254,158, 85,228,246, 94, 85, 96,230,228,132,180,148, 20, 92,189,243, 84, 63,111,207,193,144, 66,113,101,144, 95, 24, +158,231,139, 87,185,181,159, 48, 29,132, 97,128, 66, 33, 80,180, 18,200,171,113, 11, 16,177, 24, 28,229,161,209,104,168, 1,225, +140, 37,132,244, 27, 54,108,216,185,227,199,143,139, 58,119,238, 92,255,208,161, 67,239,180, 28, 93,175,215,187, 21, 10,173,108, +165, 82, 41, 30, 57,114, 36,244,122, 61,242,243,243,145,149,149,133, 39, 79,158,104, 6, 12, 24, 32, 47, 20, 14,250, 65,131, 6, + 85, 88,127,172,216, 23,171,158, 60,192,109,141,141,248,213,224,236,212, 96, 47, 27,241,171,151,205,252,249, 53, 43,246,197,170, +127,152,100, 53, 63,245,213,165,240,132,188,211,191,108, 59,120,128,249,164, 79, 63,206,205,236,217, 12,133, 3,221,223,174,103, +133,141,208, 91, 78, 69,223,193, 3,254,107,208,233,232,125, 91, 91,235, 69, 77,154, 52,153,181, 98,197, 10, 51,123,123,123,176, + 44,139, 23, 47, 94, 96,237,218,181,121, 25, 25, 25, 11, 40,165,119, 13,225,242,241,241,241, 18,139,197,216,189,123, 55, 0,172, + 45, 60,189,246,208,161, 67,131, 62,251,236, 51, 84,169, 82,197,143, 16, 34,167, 70,188, 71,148,210,226, 81,133,247,220,176, 71, +174, 94,189,218,213,201,201,137,156, 60,121,146,101, 24,230, 88, 37,104, 22,237,216,177,163, 57,207,243,237, 91,181,106,133, 26, + 53,106, 20, 89, 60,113,248,240,225, 61, 28,199, 13, 43, 79, 88, 25,130, 39, 79,158, 92,137,137,137, 25, 60,101,202, 20,233,138, + 21, 43, 86, 78,158, 60, 89, 30, 19, 19,131,208,208,208, 91, 31, 98, 35, 29,246, 44,109,123,157,106,142,167,231,205, 95, 49,167, +122, 53,175, 49,163, 70, 14,100,124,188,107, 35, 47, 43, 22,182,118,142,112,115,175,138,148,228, 84,156, 58,117,146, 75, 77,205, +252,141, 19,145, 31,158, 61, 75,139,127, 23, 78, 87,183,170, 72, 78, 78,198,137, 19, 39,184,204,140,236, 77,208,139,230,133,190, +202, 72,130, 0,227,222, 41, 67, 38,212, 22,174, 36, 92, 93,224,166,161,192,170,149,145,145, 49,129, 82,154,106,168, 18, 39,111, + 58, 63, 27, 48, 64,138, 63,255,172, 11,189,190,153,149,185,121,123,202,243,141,235,213,171,103, 54,112,224, 64, 62, 32,160,133, +204,194,194,130,248,249,249,231,100,101,102, 90, 23,244, 44,193, 85,164,154,139, 54,123, 22, 51,146, 14, 28,167,171, 83, 16,214, +138, 55,123, 54, 68,137, 87,115, 36,246, 98, 30,115, 69,132,140,228, 41,253,157, 21,225,135,200, 36,154,242, 46, 61,155,146,155, + 51, 23,110, 13, 51,211,216,222, 82,201, 33, 66,145,136,217,230,234,234, 58, 43, 58, 58, 58,197,208, 74,172, 52,206,162,173,114, +122, 76,156,168,111,216,169, 19,107,227,238,206, 83, 74,185,151,247,238,145, 27, 71,142, 72,110, 28, 57,162,208,107, 52, 23,246, + 81, 26,105, 8,167,139,139,203,162, 99,199,142, 25, 60,183,170,103,207,158,161, 69,243,178, 12, 77,207,234,213,220, 78, 87,243, +114,237, 84,205,171, 96, 24, 58,242,101, 60, 34, 95,198,157,137,136,140,237, 92,153, 60, 42,185,217, 51, 41,116,197, 64, 13,216, +236,249, 77, 78, 59, 59,187,187, 98,177,216,205,152,151,146,227,184,248,148,148,148, 6, 6,134,115,136,151,151,215,226,168,168, +168,131, 28,199, 77,122, 31, 61,111, 66, 72, 11,134, 97, 78,112, 28,103,242,166,133,171, 72,132, 17, 66, 60,229,114,249,107,147, +220,203,227, 92,250,157,255,156,230,173, 90,245,185,113,229,202,161,169,243, 67, 94,155, 23, 52,190,143,205,167, 67,190,154,176, +100,215,186,213,211,214, 28, 74,255,173, 66,235,178,163,227, 69, 0,222, 69, 66,203,128,180,108, 84, 25,171, 3,145,146,198,118, +150,118, 63,234,116,186,122, 0,168, 84, 42,125,152,154,154, 58,187, 52,113, 85, 22, 39,195, 48,139,107,214,172, 57,225,233,211, +167,187, 88,150, 29, 85,226,250,101,213,171, 87,255,234,213,171, 87,107,245,122,253, 84, 35,222,119,139, 86,173, 90,101,172, 94, +189, 90, 52,105,210, 36, 92,186,116,201,134, 82,154,241,158,242,221,201,218,218,250, 87,142,227,106, 81, 74,143,229,228,228,204, +164,148,230, 25,203, 73, 8,145, 2,152, 92,173, 90,181, 9,110,110,110,142,177,177,177, 49,145,145,145, 75, 0, 24,236,147,170, +130,112, 54,236,219,183,239,141, 21, 43, 86, 72,220,221,221, 17, 19, 19,131,201,147, 39,235, 15, 30, 60,216,156, 82,122,239, 67, +179, 96,149,132, 95, 53,251,106,148,225, 22,212,243,175,213,255,227, 97,125,200,141, 59,207,112,243,198,117,196,198,199, 31,226, + 69,162, 89,225,225,169,207,222,149,243,250,157,112,220,188,126,157, 38,196, 39,236, 3,101,190, 11,141, 76,137,252,167,226,254, +159, 20, 88,239,163,160, 16, 67,188,203,186,184,184, 32, 45,173,169, 66, 44, 14,144,203,229,109, 69, 34,209,229,244,212,212,175, + 13, 21, 88,255,196, 75, 82,189, 58,145,149,181,117, 64,165, 42,241, 55, 38,168, 87,134,211, 24, 14, 67, 57,203,218,236,153,215, +104,226,109, 89,246,238, 26, 90,118, 26,188,201,233,230,230,246, 57,207,243, 94,134,134, 73, 36, 18,189,140,141,141,221, 92,153, +244,244,241,241,161,207,158, 61, 51,104,146,228,135, 80,225,254, 91, 56,183,175,172,235,226, 91,167,230,212, 71,247,158, 44, 43, + 28, 62, 44,198, 15,227,109,204, 3,218, 5,206,190,122,254,226,143,115,215,164,231,124,104,113, 39,132,136, 74, 19, 22, 69,107, +209,141,229,148, 74,165,191, 52,105,210,228,243,155, 55,111,254,202,178,236, 23,255,171,113, 47,220,218, 72, 70,141,179,114, 27, + 20, 78, 66, 72, 67,134, 97, 38,251,249,249, 53, 13, 13, 13,189,197,113,220,138,242,196,213,135,246,110,250,121,219, 54,162,180, +216, 89,246,130, 39,207,211,110,191, 55, 78,202,115, 60,101,230, 63,141, 76,189,255, 79,199,253, 67,131,248,159,122, 80,145, 64, + 42, 23,241,241, 49, 0, 98, 0,236,251, 95, 77, 48, 67,196,149, 81,233, 82, 9, 81,244,119,112,188,137, 66, 1,117,253,125,112, +189, 41,150,254, 78,132,135,135, 19,225,181,254,223,195,199,147,130,227, 1, 76,108, 84,138,107,170, 66, 81, 53,181,237, 71, 31, +102,220,203,178,218, 84,118, 35,102,157, 78, 55,134, 16, 50,217,152,213,135,255, 79,241,166, 0, 52,127, 19,247, 61, 0, 67,254, +171,239, 83,232,179,180,187, 0,122,254,175,115,254,215, 33, 18,146, 64,128, 0, 1, 2,254,117,162, 77, 37,164,130, 0, 1,255, +219, 32, 0, 58,148,241, 2, 27,108,250, 35,132,116,168, 68, 5, 17, 36,112, 10,156, 2,167,192, 41,112, 10,156, 2,231,127,139, +243,191,212, 19,250,219, 14, 0, 29, 4, 78,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255,107,135, 48, 68, 40,224,111,199, +207,125,137,235,207,125,137,235,223,117,189, 0, 1, 2, 4, 8, 16,240,191, 6,241,255,119, 0, 8, 33, 46, 40,112,144, 87, 29, +192, 83, 0, 87,140, 89,118, 92, 10,159, 29,128,129,132,144, 1,133, 22,186,125, 0,246, 86,228, 82,162, 8, 38, 38, 38, 73,106, +181,218, 1, 0, 20, 10, 69,178, 90,173, 46,185,231, 0, 41,113, 0, 0, 45, 58,202,155,176, 90,181,106,213, 36,141, 70,227, 96, +192,227,179, 40,165,193, 34,145,232,145,153,153,217,249,167, 79,159, 30, 55, 38,238,237,218,181, 27,193, 48,204, 2, 0,224, 56, +238,219,243,231,207,111,253, 27,243,173,169,187,139,211,239, 58,189,142, 77, 74, 73,159, 77, 41, 61, 82,218,117,235,123,146, 69, + 98,130,169,133,223,151,142, 61, 86,190, 43, 10, 99,175, 47, 39,124,141, 36, 18,201, 56, 71, 71,199,174,177,177,177,119, 1, 76, +163,148, 86,232,133,216,195,195,227, 99,177, 88, 60,140,227,184,106, 12,195, 68,178, 44,187, 35, 58, 58,122,187, 80, 85, 8, 16, + 32, 64,128,128,191, 77, 96,213,180, 35, 78, 20, 24, 12,130,142,160, 56, 75,128,221, 97,169, 52,209,208,251,187,215, 36,122, 61, + 91,240, 76,169, 8,220,201, 8,209,166,238,221,187,187,125,253,245,215,104,209,162, 5,110,222,188,217,252,183,223,126,251,148, + 97,152, 96,158,231, 47, 0,184, 73,169, 65, 46, 17, 76, 1,244, 2, 48,180,107,215,174, 29, 22, 44, 88,192,212,174, 93, 27, 42, +149, 10, 23, 47, 94, 12, 88,186,116,233, 42, 66, 72, 16,128,157, 0,142,148,231,219, 69,173, 86, 59, 20,105, 37, 66,136, 67,191, +126,253,238,148,220, 35,142, 16, 2,145, 72, 4, 74,233, 13, 0, 55,120,158,191,177,111,223,190,152,154,132, 52, 29,237, 37,221, + 63,225,133,246, 45,159, 71, 26,141,198,225,240,146,133, 16,203,229,208,228,100,163,249,200,191, 86, 86,159,157, 51, 21,132,103, +193,128,102,180,157,191, 42, 24,192,163,248,248,248,224, 54,109,218,188, 52, 54, 51, 25,134, 89,112,234,212, 41,103, 74, 41, 58, +119,238,188, 0,192,223, 34,176, 8, 33,242,102,141,234, 93, 56,118, 96,151, 34, 55, 61, 9, 93,122, 13,218, 65, 8, 25, 65, 41, + 61,240,154, 88,234, 70, 28,137, 24, 83,191, 92,184,147, 1,128,245,179,134, 78, 91,213,153,172,153,120,154, 38, 18, 66,218, 2, +197, 91, 43, 45,161,148, 94, 88,223,141, 56,130,193,244, 47, 23,238, 36, 0,176, 97,214,208,169,235,187,145,213, 99, 79, 24,183, + 74,146, 16, 50,118,196,136, 17,107, 22, 44, 88,192, 56, 59, 59, 35, 46, 46,174,139,159,159,159, 15, 33,196,175,188,201,193, 94, + 94, 94,123,218,118,234, 93,173,239,128,193, 38,118,182,214,136, 75, 72,177,220,187,235,183,209, 94, 94, 94, 93, 95,190,124, 57, + 72,168, 46, 4, 8, 16, 32, 64,192,123, 19, 88, 13, 93,136, 73,158, 14,189,197, 12,249,184, 85,211,218,237,135,116,107, 37,242, +171, 85, 3,161,143,159,116, 58,114,254,214, 82, 63, 71,209, 57,150,163,219, 77,165, 56,124, 47,190,252,149, 45,122, 22,226, 51, +135,119, 2, 0,198,126, 58,148,185,125,251,118,141,134, 13, 27, 22,239,160,222,190,125,123,180,111,223,158,172, 95,191,190,222, +153, 51,103,234,109,217,178, 69, 71, 8,249,157, 82,250,103, 57,141,233,184,234,213,171, 47, 93,179,102,141,188, 77,155, 54,144, +203,229,197,255,153,153,153,161,103,207,158,232,217,179, 39, 19, 31, 31,223,249,216,177, 99,157,151, 44, 89,162, 37,132,124, 67, + 41, 93,107, 72, 2,205,153, 51,167, 97, 41,167, 79, 17, 66, 34, 88,150,189, 95,183,110,221, 24, 95, 66,106,140,233,214,226,236, +216,150,222,166,101, 38,180, 76,134,109, 35, 10,218,232,146, 2,235,229,249,147, 48,179, 48, 79, 83,154,155, 7, 3,120, 4, 32, +152, 82,250, 40, 34, 34,226, 73, 45, 66,234, 53,179, 22,253,190, 37,157,171,107,132,200, 66, 76, 76, 12, 44, 45, 45, 77, 2, 3, + 3, 19, 8, 33,223, 95,184,112, 97,211,123, 46, 55, 77,191,159, 58, 86,154,241, 42, 24,137, 97, 55, 48,121, 64,128,114,226,207, + 71,127, 4,112,160,124,225, 35, 18, 45,185,206,207,152, 8, 76, 0, 48, 59, 45, 45,173, 13, 0,216,218,218,202, 0, 92, 88,121, + 11,221, 38,181, 36,149,118,179, 64, 8,145, 50, 12,179,110,219,182,109,159,125,252,241,199, 5, 91, 60, 92,189, 10, 51, 51, 51, +204,155, 55,175,202,148, 41, 83, 22,161,224,217,165, 90,174, 2, 59,246,174,186,106,233,143,181,114,210,179, 52, 27,215,237,189, +227,234,239,203,140, 25, 55,197,124,173, 94,235,228,225,225,241,177, 96,201, 18, 32, 64,128, 0, 1,239, 69, 96,249,218,147,173, +173, 26,120, 15, 28,210, 61, 64, 94,199,191, 54,164,242,191, 28, 59, 55,108,212, 8, 13, 27, 53, 18,205,200,205,233,120,251,206, +189,142,251,207,220,212,248,218,147,189, 79, 83,232, 8, 67, 31, 94,180, 89,236,130, 94,142,237,242, 50,147, 21, 0, 96,106,229, +160,158,117, 56,241,124,203,150, 45,225,230,230, 38, 61,119,238,220, 40, 0,127,150, 67, 51,235,233,211,167,114,134, 41,223,143, +169,139,139, 11,250,247,239, 15, 95, 95, 95, 89, 96, 96,224, 44,252,181,109,197,107, 80, 40, 20,201,132, 16, 7, 0,176,177,177, +225,190,255,254,251,135,180, 16, 0,192,243,252, 13,134, 97,110,240, 60,127,235,200,145, 35,177,181, 9,113,232,209,208,247,202, +216,225,253,149,116,255,170, 50,197,129, 58, 59,187,212,243, 74, 51,211, 20, 19, 83,211, 96,185, 82,241, 8, 64, 48,128, 71,174, +174,174, 79,106, 19,226,214,204,215,235,204,250, 73, 67,205, 13, 73,203,134, 13, 27,250,180,109,219, 86,193,113, 28,242,242,242, +176, 97,195, 6, 75, 19, 19, 19,203,174, 93,187,206, 5, 80, 44,176,252, 8,169,211,207,133,249,226,251, 56,246,171, 74, 8, 24, +171, 86,205, 27,189,250,121,241, 92,139, 70,205, 90,225,217,133, 63,144,158,158,131,172,204, 92,240, 60,255,214,206,191, 99, 79, +208,164,245, 61,201,210,245, 51,135, 78, 39, 34, 17,169,215,103, 26, 62,114,202, 26, 79, 8,121, 12, 64, 34,147,201,138,203, 33, + 33,196,197,223,223,127,105,141, 78,173,176,225,219,225,160, 60, 79, 1, 44, 53,212,122, 69, 8,113, 48, 55, 55, 63,114,230,204, +153,166,141, 27, 55,198,205,155, 55,241,226,197, 11,140, 29, 59, 86,251,213, 87, 95, 73, 63,249,228, 19, 50,121,242,228,175, 9, + 33,251, 41,165,215,222,122, 17,196,226, 97,189,250, 14,146,229,102,102,171,117, 90,157,214,214,214,146,170,243,212, 57,105, 25, +217,170,129,131, 63,211, 61,186,119,115, 24,128,183, 4,214,187,164,167, 0, 1, 2, 4, 8, 48, 24,141, 1,216, 3, 72, 1,112, +231,141,223, 40,252,142, 82,126,167,162, 96, 90,143,109, 9,174, 84, 20, 76,239,177, 71,129,143,206,219, 0, 50,222,119,128, 9, +165, 20,133, 14,133,139, 28, 11,147, 18, 2,139, 62, 77,161, 96,211, 35,193,165, 69,128,203,121,123,123, 35,162,176, 66,150,138, + 67, 76,228, 19,140,152, 56, 15, 79, 83,202,246,160,221,189, 38,209, 91,202, 32, 54,151, 2, 82,165,149,102,200,226,211,215, 27, + 53,106,164,158,213, 70,212,125,209,250, 2,203,214,228, 47,134,162,249,164,253,167, 35, 35, 35, 89, 23, 23, 23,124,252,241,199, +160,148,246, 40,167, 97, 77,202,185,115,221, 33,172, 71, 11, 52, 73, 42,125, 26, 84,120,120, 56, 46, 95,190,140,232,232,104, 84, +171, 86, 13,163, 70,141, 74,166,148, 58,150,197,217,165, 75,151, 75, 75,150, 44,105,189,124,249,242,224,109,219,182,181,164,180, +244,189, 6,253, 8, 49,173, 87,197,233,206,150, 69,211,171,145,147,191, 75,242,163,159,195,234,146,138,148, 34,238,104,124,252, + 95,105,247,147,143, 51, 76, 45,205, 97,106, 97,150,244,201,153,187,197,150,171,194,207,167, 13, 9,177,112,115,182,189,187,123, +229,108, 87,209,249, 61, 10,233,198, 27,164, 34,113, 21, 24, 24,120,125,193,130, 5,214,241,241,241, 8, 10, 10, 66,149, 42, 85, +144,159,159,143, 21, 43, 86, 36, 92,185,114,197,165, 48,188,142, 77,124, 61,131, 55, 76, 25,105, 41, 29, 53, 71,110,108, 97,145, +138,197,107,175,159,218,243,149,165,156, 34, 51,254, 5, 34,158, 60,198,237,208,151,250,237,103,131,185,108,149,166, 59,165,244, +124,105,247,141, 11, 32, 53, 46,196,219, 31, 59,117,241,142,183,179,179, 51, 70,143, 30,141,196,196, 68, 80, 74,193,243,124,241, +138,139, 89,179,102,193,199,199, 7, 35, 6,127,148, 47, 79,191, 23,120, 44,212,176,253,222, 8, 33,254,158,158,158,103, 46, 92, +184,224,232,234,234,138, 43, 87,174, 32, 49, 49, 17, 78, 78, 78, 56,119,238, 28, 22, 47, 94,188,237,203, 47,191, 28,176, 96,193, + 2,197,144, 33, 67,226, 78,159, 62,237,254,230,156,185, 42, 85,170, 60, 57,118,250,138,217,185, 67,167, 35,173,205, 77, 97,230, +104, 3,198,220, 90, 5, 10,149,163,189,165,116, 80,239, 14,213, 95,189,122, 85,235,141,252,127,167,244, 20, 32, 64,128, 0, 1, +175,213,229,165,106,145, 34, 9, 65, 8, 57, 94,168, 7,180, 0,100, 37,126,131, 16,114, 28, 0,222,252, 61, 99,198,140, 89,139, + 22, 45,122, 92,244,187,232,154,153, 51,103,214, 94,188,120,241,194,230,205,155,239,190,126,253,250,247, 0,158,255,163, 22,172, + 34,176,177,183, 33,245,238, 10, 9,167,135, 62,245, 41,248,204, 40,192,212, 9, 42, 98,134,180,132, 40,132, 93, 57, 80,160, 5, + 43,192,159, 97, 84, 66, 8, 57,247,228,201, 19,132,133,133, 33, 38, 38, 6, 74,165,242,173,235,174, 94,189, 10, 19, 19, 19, 56, + 59, 59, 27, 20, 9,170,125,221, 89,112,112, 67, 79,152, 53,111,131,212, 33, 99,112,238,220, 57, 36, 39, 39, 67, 42,149, 66, 38, +147,129,101,217, 10,249, 68, 34, 17, 41,204, 4, 10,160, 84, 47,204,129,132,136,221,108,204,142,173,159, 59,193, 75,116,227,184, + 68, 21,253, 28,241,106, 14, 86,134, 88,238,204, 76,161, 52, 85, 38,152,152, 40,223, 20, 87,207, 26, 18, 34, 49, 53, 83, 28,251, +125,254,100, 39,230,254, 57,133,234,121, 48,164,165,112,116,236,216,113, 52,128,185,148,210,204,192,192, 64,199, 5, 11, 22, 88, +199,197,197, 33, 52, 52, 20,123,247,238, 77, 97, 11, 34, 74, 40,165, 63, 0, 64,115, 66, 20, 30,246, 86,167,215,206,153, 96,142, + 11,123,100, 24, 53,199,232,194, 98, 89,171,231,159,253, 62,249,242,171, 53, 19,122, 34, 47, 71,133,157,103,239,227,212,189,136, +143, 0, 92, 45,111, 94,219,218,171,244, 57, 33,164,125,223,190,125, 31, 92,190,124,217,110,203,150, 45, 96, 89,182,212, 99,203, +150, 45, 8,186,114,111,188,161,155,233, 18, 66, 92,188,188,188,130,110,221,186,101,175, 84, 42,113,246,236, 89,100,102,102, 22, + 91,174, 70,140, 24, 65, 50, 51, 51, 7,111,216,176,161,223,171, 87,175,150, 93,185,114, 37, 13, 5,219, 54,189, 86, 16, 24,134, +137, 96, 89, 93, 77,151, 90,222,204,128,158,173, 90,229,166, 5,195,204,182, 46,110, 62,136, 56,158,149,153,174, 98, 24, 38,162, +228,245,239, 35, 61, 5, 8, 16, 32, 64,128,209, 34,236, 56,165,180, 71, 73,193,244,166,208, 42,250, 94,116,221,162, 69,139,122, +148, 20, 95, 0,176,120,241,226,133, 37,126,231,255, 29, 97, 21,255,165, 23, 8, 5, 16, 88,218, 69,154,208,131,208,132, 29,129, +212,179, 37,100,190, 31,129,241, 12, 64,116,240, 5, 60, 60,185, 18,177,143,175,130,242, 28,156,125,154, 24,250, 76,117,205,154, + 53,161, 86, 23, 76,189,210,104, 52,144,154, 90,171, 39,127, 49, 84, 1, 0,188, 88,161, 41,161, 50, 13, 34, 52,111,217, 22, 77, +146, 40,110, 59, 22, 8,222, 34, 75,214,252,145, 35, 33,149, 74, 33,149, 74,139, 55,133, 53, 68, 96, 21,238,161, 85,180, 91, 61, + 45,237,255, 70,114,201,206,221,115,199, 53,145,191,122, 36,211,132,220, 64,188,134,167,199,146,184, 63, 13,217,209, 88,105,170, +140, 51, 81, 42, 31,153,152,153,150, 20, 88, 17, 0, 64, 37,146,237,127,252, 48,174,174,105, 82,164,169,250,206, 57, 36,168,121, +157, 69,233, 52, 63,156, 60,121,210, 65, 44, 22, 59,113, 28,135,232,232,104, 60,126,252, 24,171, 87,175, 78,202,201,201, 9,188, +119,239, 94,120,137,240,138, 26,155,200,246,110,159, 55,161,170, 56,248,146, 66, 19, 17, 82,170,104, 43, 15,246,117,250,116,254, + 40,176,222,159,163,135,127,139,222,221, 58,225,147, 64, 63,250, 50, 62, 93, 13,224,172, 33, 27, 75, 83, 74,227, 8, 33, 29, 91, +183,110,189,163,126,253,250,181, 40,165,168, 83,167, 14, 6, 15, 30,140,237,219,183,227,225,195,135,200,206,206,214,157, 57,115, +102, 21,165,244, 55, 3, 95, 52,165,181,181,245,169,243,231,207,219, 43,149, 74,156, 57,115, 6, 42,149, 10,206,206,206,248,234, +171,175,100,139, 23, 47,222,150,157,157, 61, 96,209,162, 69,138,151, 47, 95,174, 61,125,250,116, 21, 0, 34, 74,233, 91,133, 64, +171,213,110,218,185,125,235,154,175,198,125,237,122,254,102,232, 57, 77, 94,142,165,187, 71, 76,142,157,141,153,217,202, 37, 63, +184,107,181,218,209,165,167,231,197, 74,165,167, 0, 1, 2, 4, 8, 40,205,118, 81,182, 22, 41, 41,154,222, 20, 89,198,136, 51, + 0,170, 25, 51,102,204, 34,132, 28, 47,180,112,169, 0,196,255, 45, 2,139, 82,122,137, 16, 2, 74,233,165, 50,175,228, 57,232, + 94, 94,134,238,229,101,152, 52, 31,143,163,139,134,188, 17,105,190,210,129,232, 57,239,236,121,141, 70, 35,222,186,117,107,241, +188, 44, 0,224, 56,238,189,231,158, 33, 2, 11,133, 91, 8, 21, 10,172,183, 2,225, 37, 55,187,180,105,210,128,102,182, 92,190, + 68,123,245, 24,226, 52, 60,187,236,185, 46,255, 78, 38, 93, 50,171, 12,194,195, 19, 71, 35,230, 74, 16,148,102,102, 49,159, 93, +126, 84,210,106, 21, 12,224, 5, 0,120, 41, 44,206,237,157, 60, 36,192, 73, 10,169,246,207,125,136,215,240,154, 95, 94,233,127, + 91, 93,122, 33, 3,165, 20, 47, 94,188, 64,126,126, 62,174, 95,191,142, 3, 7, 14,164,188, 41,174, 10,195,123,241,215,105,195, +154, 90,228, 36, 74,181,119,130, 16,175,225, 53, 62,134,136,170,186,125, 90, 74, 69,228, 12, 17, 49, 38,221, 90,249, 97,226,231, +125,176,242,215,163,172,214,161, 85,143, 53, 71, 78, 12,204,213,232,102, 25, 34,174, 74,132, 57, 24,128, 31, 33, 68, 14,160,237, +224,193,131, 79,244,235,215, 15,151, 46, 93,194,177, 99,199,188, 1, 36, 20,190, 4,243, 0, 56,162, 96,117, 97, 89, 59,185,139, +164, 82,233,238,160,160,160,218, 46, 46, 46, 8, 10, 10,130, 74,165,194,151, 95,126,169, 29, 55,110,156,116,196,136, 17, 36, 43, + 43,171,216,114,117,253,250,245,180,178,196, 21, 0,196,198,198,158,172, 82,165, 74,203,214,173, 91,247,174,234,237,107, 17,153, +147,157,108,166, 84,152, 92,185,116, 65,122,239,206,141,181,177,177,177,183, 75, 79,207,115, 6,167,167, 0, 1, 2, 4, 8, 40, +183,141,168, 88,139,188, 97,137, 50,146,191,232, 62,201,162, 69,139, 30, 47, 90,180,232, 53, 11,215,223,101,193, 50, 10, 92, 86, +244,219, 1,231,121, 99, 34,249,214, 57,107,107,107,214,196,196,228, 53,129,197, 27,200,153,126,104, 23, 34,199, 14, 45,182, 92, + 21, 89,178,208,101, 68,165, 4, 86,145, 5,171,112, 50,244,107,129, 48,117,244, 29,178,123,120,199,150,126, 85, 93, 69,250,189, +171, 17,155,207,170,231, 62,213,169,195,114,232,255,177,247,213,225, 85, 28,255,215,103,118,175,231,222,184, 11,154,144, 16,131, +224, 4,119, 90,220,165, 56, 20, 41, 86,164,197,189, 72, 11,165, 64,161,197,181,184,187,187, 75,144, 16, 66, 2, 33, 33,238,158, + 92,223,157,247,143, 72, 67, 26,185, 1,250,254,190,109,239,121,158,125,238, 93, 59, 59, 59, 51, 59,115,230, 51, 51,159,233, 22, + 84,194,224,233, 66, 78,189, 14, 82,185,236,189, 76, 33, 47, 46,174, 34, 0, 64,225,224,209,123,215,192,214,173,252,106,186, 49, +250, 3,171, 17,147,171,203,158,249, 74,171, 13,203,161, 71, 75,137,195, 5, 29, 58,116, 88, 96,109,109, 45, 93,183,110,157,121, +149, 42, 85,160,215,235, 53,197,197,149,220,190,230,192, 3,195,190,104,234,225, 96,201,232, 14,255,138, 40, 37,151,187, 54, 76, +183,107,163, 1,226,202,198, 92,113, 97,227,178,111,100, 38, 18, 33, 84, 42, 21, 86,252,118, 24, 23,239, 4,118, 73,122,113,236, + 2,128, 11,159,144,239, 70,117,233,210,229,151,197,139, 23, 67,167,211, 97,228,200,145,120,251,246,237,197,215,175, 95,175,173, + 92,185,242,244,239,191,255,222,201,193,193, 1,253,250,245, 19, 1, 24, 86, 10,199,143,123,247,238,237,226,231,231,135, 27, 55, +110, 32, 61, 61, 29,142,142,142,152, 48, 97,130,120,249,242,229,187, 50, 51, 51,251, 46, 91,182, 76,250,238,221,187, 50, 45, 87, +197,242,198,146, 77,191,124, 51,173, 65,227,102,204,155, 55, 33,250,200,134, 45,153,107,151, 79,221,180,180,180,220,245, 65,124, + 14,255,178,194,241,105,132, 17, 70, 24, 97,196,103,195, 25, 0,157,139, 91,181,138,139,175, 2, 11, 85,209,253,226,215,231,159, +255, 91, 22, 37, 23, 20, 9,160,193,211,227,249,156, 36,131, 68, 83,113,116,246, 36,186, 49, 13, 32,152,221,146,129, 72,110,169, +234,186,248,210,213,210,174,149,203,229, 6, 91,176,120,181,170, 60,193, 84, 33,129,197,178, 44, 1,112,158,231,249,123, 69, 5, +150,133, 67,205,150,115,103, 76, 94,211,172,247, 23, 76,194,215,254, 72,207, 86,171,191, 15,210,243,209,185,101,139,171, 60, 85, +170, 11, 55,145, 43, 94, 72,229, 31,140,187,138, 4, 0,153,125,141,134, 51,167, 76,252,173,205,192,174, 36,105, 92, 51,164,165, + 43,213,211, 95,234, 73,140,146,246, 13,162,244, 90, 73,116, 87,174, 92,217, 4, 96, 83,171, 86,173, 18,228,114, 57,178,179,179, +255,146, 6, 5,225,109,218,251, 11, 38, 97, 84, 35,164,230,104,213,223,191,212, 35, 86,201,239, 47, 79, 92,217, 90,152, 94,216, +184,244, 27,147,216,232, 8,136, 68, 34, 40, 20, 10, 92,186,253, 2, 73,129,199, 63, 69, 88,129,101,217,133,179,103,207, 94, 48, +126,252,120,164,164,164,224,212,169, 83,232,212,169, 19,246,237,219, 87,229,236,217,179,191,180,110,221, 26, 44,203,226,244,233, +211,208,233,116,161,165,164,103,207,209,163, 71, 79,239,221,187, 55, 30, 62,124,136,184,184,184, 15, 44, 87,233,233,233, 3,126, +251,237,183,222,225,225,225,229, 90,174,138,161, 97, 53,183,186,162, 89,243,126,134, 58, 55, 81,144, 20,115,255,198,149, 75,204, +189,212,212, 84, 19, 0, 25, 31, 27,159, 70, 24, 97,132, 17, 70, 24,108,128, 41, 77,139, 36,229,139,167,164,146,246,139, 8,171, +146,246, 73, 49,171,151,166,216,249,103,255,103, 22, 44,129,189, 47,244, 9,129, 69, 4, 86,226, 7,231,165,166, 86, 6,117, 17, +234,244, 16,108,220, 94,232, 7, 75,154,146,146, 34,181,177,177, 81, 21, 21, 6, 38, 38, 38,112,114,114, 66, 90, 90, 26, 54,111, +222, 12, 0,229, 13,118,214,155,245, 30,140,134, 3, 71,226,145,139, 24, 84,167, 45,180,100,109, 28, 62,252, 3,145, 37, 18,137, + 10,198,126,149, 87,217, 62, 32,132, 68,240, 60,127,143, 82, 74,235,121,184, 46,145,202,229,195,235,215,118,179,249,246,155, 81, +194,240, 68, 53,174, 54,155,149,126,248,199, 25,138, 40,170, 24,255,158,166,223, 41,135, 47,172,251,239,123,138, 91,174,162,235, +122,184,206,145,154, 72,191,110,236,235,225, 48,115,234, 55,194,240, 4, 53,185,218,240,251,204, 35, 63,125,111,242, 14,166,211, +163,104,218, 53, 3,146,103, 65,167, 78,157, 22, 80, 74, 41,207,243,243, 0,160,104,120,167, 78,248, 90, 24, 22,175,194,149,102, +115,210,142,252, 56,195, 52, 10,101,135,215,182,118,207,166,246,150,102, 23, 54, 46, 27,111, 18, 23,243, 30, 18,137, 4,166,166, +166,136, 74,200,128, 80,192, 42, 63, 37,179, 17, 66, 36, 45, 91,182,156,241,205, 55,223,224,197,139, 23, 24, 55,110, 92, 92,100, +100,228,209, 3, 7, 14,140,155, 63,127,190,160, 99,199,142,136,139,139,195,202,149, 43,117,183,111,223, 94, 6, 96,101,137,249, + 81, 32, 24,181,100,201, 18, 26, 27, 27, 75,222,189,123, 7, 71, 71, 71, 76,156, 56, 81,188,108,217,178,194, 49, 87, 21,177, 92, + 21, 32, 58, 58,250,134,187, 91,101,116, 59,183, 6,122,157,250, 70,122, 74,228,205,224,176,180, 27, 86, 98,241,180,102,245,106, +127, 84,124, 26, 97,132, 17, 70, 24,241, 89,240,168,156,253,255, 57,148, 39,176, 66,127,157, 51,194,125,196,248,239, 32,171,210, + 20,234, 87,199,192,103, 39, 20, 90,176,164, 10, 75, 88, 85,246, 66,122,142, 26,135,174, 60, 1,128,208,138, 60, 60, 43, 43, 11, +245,234,213,195,134, 97, 30,109, 84, 89, 41, 82, 25, 0,181,196, 76,117, 92,220,252,234,217,179,103,115,121,158,223, 15,224,108, + 57, 52, 11,125,124,124,214,255,252,243,207, 98,175,129, 35,144,125,255,214, 7, 39, 25,134,129, 76, 38,131, 68, 34,193,243,231, +207,113,245,234, 85, 13,128,133,229, 8,129, 7,122,189,254,217,161, 67,135,162,220, 93, 93,190,104,213,160,225,164,217,179,102, +154, 6,221,186,136,121,203,214,243, 53,234,119,204, 88,177,239,120, 86,134,162,114,219,220,216,224,167, 6,188,234,179, 98,226, + 42,214,171,122,229, 54,254,117,235,124, 55,111,222, 28,179,151,183, 46, 97,254, 79, 27,169,187, 95,187,140,159,142,156,200, 76, + 54,169,218, 65,153,240,234,161, 33,113,120,253,250,245, 77, 0, 54, 21,236, 23, 15,239,204,197,107,121,143, 6, 95,164,173,216, +119, 36, 39,211,180,114,187,178,194,107,231,221,171, 73, 37, 71,171, 11,191,254, 48,214, 36, 62, 38, 18, 18,137, 4, 10,133, 2, +145,113,233, 88,176,230, 96,142,150,231,191,248,196,252, 38, 49, 53, 53,149,104,181, 90,108,216,176, 1,145,145,145,254,148,210, + 72, 66,200,198,254,253,251,175,171, 85,171,150,231,203,151, 47, 67,179,179,179,199, 83, 74,131, 75, 35,177,176,176,240,183,181, +181, 37,247,238,221,195,216,177, 99, 53, 19, 39, 78, 20, 13, 29, 58,148,164,165,165,125,172,229, 10, 0,224,226,226,210,178,123, +231, 38,104,218,126,220, 13,141, 42,253,102,120,240,174, 27, 12,189, 35,173, 87,167,246, 71,197,167, 17, 70, 24, 97,132, 17,255, +109,115, 92,169, 91, 75, 64,224, 97,141, 49, 62,206,162,248,221, 63, 78,164, 89, 97,119,169,242,225, 38,154,121,236,107,122,102, +229, 80,122,246,215,111,233,184,206, 62,212,211,142,196,123, 88, 99, 76, 75, 64, 80,214,106,219,157,106, 66,215,222, 13,180,189, + 27,104,103, 15,232, 0,204,174, 91,183,238,241, 9, 13, 65,105,208, 94, 74,131,246,210, 9, 13, 65, 1,140, 5,160, 48,116, 5, +111, 0,142, 0, 54,215,171, 87, 79,127,237,218, 53,250,186,111, 59, 26,224,105, 67,199,143, 31, 79,231,207,159, 79,191,250,234, + 43,106,107,107,171, 71,158,195, 77,199,242, 56,187,117,235,230, 66, 41, 69,165, 74,149, 44,234,123,213,136,127,126,229, 20,189, +185,123, 29,221, 54,161, 23,109, 84,203, 43,217,193,179,197, 51,153, 99,205, 58,134,174, 52,238,224,224, 48,139, 82,250, 5,165, +212,145, 82, 10,119,119,107, 69, 93,207, 26,177,207, 46,159,162,183,246,172,167,219, 38,244,162,141,107,123,167,184,120,181, 14, +150,218,121, 54,252,216,213,203, 75, 12,175,175,103,178,125,141, 38, 79, 75, 11,111, 81,206,234, 13,251,157,136,142, 77,160, 15, + 30, 60,160,103,207,158,165,183,110,221,162,187, 15,156,160,149, 27,244,205,182,169,213,163,233,167,174,178, 14,192,188,115,231, +206, 52, 52, 52,148,126,249,229,151, 20,128,249,199,112, 2, 56, 30, 30, 30, 78, 3, 3, 3,233,236,217,179, 41,128,157,223,124, +243,141, 50, 35, 35,131,182,107,215, 46, 18,121,147, 20, 4, 31, 19, 78,215,106,206, 43,122,118,109,190,112,194,216,222, 45, 63, + 53, 62,255,151, 87,173, 55,114, 26, 57,141,156, 70,206,255, 53,206,127,219, 86,166, 5,235,122, 94,235,127, 83, 45,123,242,199, +178,149,191, 78,219,176,105,231,119, 51, 38,141,146, 55,111,214, 30, 47, 46,239,192,145,211, 7,114, 84,106,205, 74, 17,139,159, + 95, 36,211,114,253, 72,156, 9,166,194, 18,172, 69, 38, 86,110, 40,244,161,244, 38, 13,160,148,110,172,160, 72,140, 3, 48,154, + 16,242,115,235,214,173,151,126,221,180, 97,175, 9, 77,218, 64,167,211, 97,247,238,221,120,255,254,253, 81, 0,115, 40,165, 6, + 89,216, 94,188,120,145,236, 83,163,234,100, 43,153,232,187,241, 95,245,180, 77,122, 27,132,232, 87, 1, 0, 0,181, 90,169,139, + 11,185,225, 87,145,240,201,100,178, 7,182,182,182,175,109,109,109,211, 56,117,246,104,169,192,108,222,184, 1,221,237, 82,194, +131, 17,245, 50,175, 7, 84,173,202,213, 70,133, 92,245,252, 24,145, 92,181,106, 85,137, 92,136, 49, 37,134, 87,163,210,197,135, +190,170, 99, 8, 79,174, 90,179,108,209, 47,187, 59,252,240,221,112,137,153,153, 25,158, 4,190,193,188,213,251,114,148, 26,221, + 23, 73,207,143,221,249, 92,130, 94,167,211, 25, 60,129,161, 20,204,240,243,243,171,185,116,233, 82,247, 97,195,134,225, 83, 45, + 87, 69,241,246, 93,244,204, 86,173, 90,121,191,121,253,164,181,149, 76,244,199,167,196,167, 17, 70, 24, 97,132, 17,255, 93, 24, + 52, 6,235, 69, 2,205, 5,176,216,213,158,108,156,181,244,151, 5, 12, 89, 51,156,167,116,135,158,193,162,176,100,154,244,137, + 21,110,110,103, 79,162,239,208,227, 43, 1, 0, 8, 5,208,127, 2, 87, 40,128,222,132,144, 6, 91,238, 60,156,155,127,248, 7, + 74,105,133,250,106, 77, 5, 8,108,230,237,234,220,188,174,143,148,229,148,136,126,245, 22,169, 57, 42, 92,122,249, 62,157,161, +204,142,138,134, 43, 44, 44,236, 58, 0,248,214,168,250,170,185,183, 91,229, 22,245,124, 76,132, 68,131,232,160, 39,200, 80,106, +112,241,229,251, 12, 16,242,209, 3,165, 63, 87,120,227,159, 31,127,100, 91,187,103, 59, 66,200,229,217, 19, 6, 74, 22,172,222, +255, 89,197, 21,128,220,152,152,152,148,220,220, 92,235,216,216, 88, 13, 62,210,185, 27,165,244, 13, 33,164,214,183,223,126,187, +120,250,244,233,223,253,248,227,143,162,143, 25,115, 85, 26,210, 98,222, 31,107,225,243,249,210,223, 8, 35,140, 48,194, 8,163, +192, 42, 91, 40, 36,208, 36, 0,227,221,220,200,212,183,111,169,230,115, 5,162, 36,203,214, 39,138,182, 71, 0,186,126, 52, 1, + 67,178,238,135,190,207,126, 16,250, 62, 27, 60,165, 60,165,106,134, 65, 84,142, 86,187, 44, 36, 44,250,227,103,209, 17,194, 61, +122, 19,169,124,252, 54, 74, 69,121,158,242,148,106, 8, 65,188, 78,199, 47, 11, 12,139, 56,241,191, 16,222,164,231,199,238, 56, +120,247,106,126,231, 65,224,212,156, 28,237,250,164,160, 99,119, 63, 99,186,232, 8, 33,131,252,253,253, 71,112, 28,183,145, 82, +170,251, 4, 46, 13,128, 25,132,144,163, 47, 94,188, 56,120,247,238,221,184,207, 33,174,254,214,244, 55,194, 8, 35,140, 48,194, + 40,176,202,194,231, 20, 87,255,139,120, 17, 26, 94,239,239,224, 13, 12, 13,247,253, 39,132, 55, 62,232,232, 99, 0, 3,254,142, +176, 82, 74, 47, 2,184,248, 57,197, 52, 33,164, 26, 0,246,179,136,171,191, 49,253,141, 48,194, 8, 35,140, 48, 10, 44, 35,140, +248,199, 32,127,205, 72,189, 49, 38,140, 48,194, 8, 35,140,248, 95, 1, 1,208,174,148, 74,235,178,193, 36,132,180,251,136, 74, +241,178,145,211,200,105,228, 52,114, 26, 57,141,156, 70,206,255, 22,231,127,169,245,255,183,109, 48, 78, 97, 53,114, 26, 57,141, +156, 70, 78, 35,167,145,211,200,249, 31,220, 24,163,196, 52,194, 8, 35,140, 48,226,111,235, 38, 33, 68,146,191,192,251, 71,157, + 55,194,136,127, 42, 4, 31,241,177,212,200,183,124,189,249, 27, 63,200, 9,142,142,142,163,107,215,174,237, 37, 18,137,152,172, +172,172, 69, 87,175, 94, 93, 88,252,186, 22, 62,194,199, 44, 3,151, 34,119, 2,132, 5, 24, 6, 28, 69,244,205,103,185,245,141, + 73,252, 63, 93,240, 86,145,153,217,158, 36, 12, 43,230,244, 90,112, 58, 45,128, 63,151, 77,226,121,253,123,189, 70,213,177,180, +251, 29,235,244,170,172,231,232, 10,128,255,141,128, 25, 71,193,255, 78, 40, 51,142, 50,248,141,240, 24, 11,129,110, 37,244,194, +233, 2,145, 96, 78,236,147, 67, 81,255,134, 56, 59,124,248, 48,251, 41,247,247,233,211,167,196, 5, 62,157,157,157, 79,155,152, +152,184,149,118, 95, 78, 78, 78, 92,108,108,108,235,127,121,126,108, 1,224, 87, 0, 62,197, 78, 5, 3,152, 76, 41,189,242,169, +207,104, 69,136,192, 30, 24, 35, 2,190, 7, 0, 45,240, 83, 2,176,233,250,103,154,160,241, 57, 96,103,103,119, 83, 32, 16,184, +231,228,228,228,100,102,102,186,154,153,153,133,201,229,114,185, 94,175, 15, 77, 76, 76,108, 81,193, 56,253, 6,249, 75, 94, 17, + 66,190,163,148,254, 86,145,243, 70, 24,241,175, 22, 88,132, 16, 15, 0, 45,243,183, 22, 13, 26, 52,176,207,201,201, 1, 33, 36, + 1,192, 77, 0, 55, 0,220,160,148,134,124,142, 0,177, 44,187,106,237,218,181,211, 38, 78,156, 88,184, 72,243,243,231,207, 75, +190,150,129,203,181,211, 87,236, 30, 61,127,141, 6,237,250,228, 11, 44, 6,200,141, 71,235,118, 13, 62,182,144, 53,181,180,180, + 92, 68, 8,233,203, 48, 76,185,149, 25,207,243, 28,165,244, 80, 90, 90,218, 2, 74,105, 86, 69,158,165,144, 75,117,122,142, 43, +241, 25, 2,150,229,178,115, 84,165,186,175,176,182,182,190,203, 48, 76,245,162, 11, 89,231,135,191,196,255, 69,247,245,122,125, +116, 82, 82, 82,125, 3,226, 66,202, 8, 68,147, 9, 17,181, 7,195,123, 0, 4, 4, 76, 8,207,105, 46,241,122,237, 90, 74,169, +234, 83,196,149, 99, 37,215, 91, 83,230,172,112, 9,124, 21,140,217, 19,190,194,143,191,238,196,172,201, 35,176,118,243, 62, 76, + 30, 61, 16,222,222, 62,101,114,112,148, 44,154, 55,121, 80,235,165,107,247, 54,152, 51,249, 43,249,210,181,123, 27,204,249,246, + 43,197,210,117,123,235,207,249,118,144,226,135,117,127,212,159,251,237, 32,179,165,235,246,106, 1,140,252,152,112, 14,242,112, +206,129, 94, 95,114,235, 90, 32, 80,255, 17, 18, 35,255,191,248,112,135, 13, 27, 86, 91,169, 84, 62,249,170,125,221, 21,117, 60, +156, 99, 74,186, 38, 37, 62,198, 57,236,117,192, 76,161, 72, 86,175,251,204,157,207,203,226,147, 72, 36,213,131,131,131,221,121, +158, 7,199,113,208,235,245,133,191, 26,141, 6, 45, 90,180,248, 44, 19, 98, 8, 33, 93, 1, 44,202,251, 88,177,156, 82,122,240, + 19,184, 20, 2,129, 96,138, 88, 44,110,169,215,235,189, 0, 64, 40, 20,190, 82,171,213, 55,244,122,253, 47,148,210,236, 10, 82, +174,137,137,137,241, 86, 40, 20,208,106,181,133, 11,195,179, 44,235, 89,185,114,229, 13, 0,220, 63,245,253,237,129, 49, 77,154, + 53, 91, 59,116,218, 52, 86,121,243, 38,214,110,223,190, 6,153,153, 0,176,161,188,123, 37, 18,201, 5,134, 97,170, 84,228,121, + 60,207,191, 87,171,213, 29, 43, 84, 41, 8, 4,238,177,177,177,118, 78, 78, 78, 0, 0,185, 92, 46, 47,186, 95, 17,203, 21,128, +149,148, 82, 25, 0, 48, 12,179,182, 73,147, 38,254,132, 16, 61, 0,202,243, 60, 67, 8, 25,200,243,188, 32,255,250,149,132,144, +237,148, 82,181,177,106, 54,226, 95, 45,176, 8, 33,103, 1,180,108,208,160,129,108,192,128, 1,104,217,178, 37,220,221,221, 33, +149, 74,243, 10,239,148, 20,251,167, 79,159,246,187,121,243,102,191, 83,167, 78,129, 16,162, 4,112,155, 82, 90,226,199,220,174, +107,243,137, 82,133,100, 29, 0, 36, 69,167,196, 69,191, 75, 92, 23, 23, 23,183,146, 22, 89, 37,154, 16,226, 58,116,232,208,169, +147, 38, 77,194,233,211,167,177,111,223, 62,168,213,106,100,101,101,225,234,213,171,165, 52,173, 19,145,118,117, 5, 32,143, 0, + 34,175, 3, 38,118,128,220,254,163, 35,196,210,210,114,209,228,201,147,191,245,246,246, 46,244, 58,174,211,233,160,215,235,161, +211,233,144,150,150,134,169, 83,167, 34,223,138, 7,158,231,113,238,220,185,137,163, 71,143, 6,128, 41, 37,113,250,215,175,252, +152, 33,140, 75,129,109,134,114, 92,244,189,128,168,250,122,142, 99, 85, 42,109,137, 43,135, 75,165,162, 50,197,157, 80, 40,116, + 9, 58,121,210,142, 17,139, 65, 57, 14,224,121, 80,158, 7, 80,100,163,121,199, 40,199,131,234, 56,240,122, 30,122,165, 26, 13, +191,249,198,144,194,177,137, 80, 44,219, 55,232,235,105, 14,141, 26, 55, 22, 86,173,228, 4, 61,199,227,109,120,180,195,147,199, +247,155, 30,218,181, 97, 28, 33,100, 32,165,244,163,252,100,137, 77,204, 46,174,255,125,139,203,163,167,129,184,114,237, 38, 46, + 95,189, 1, 0,184,112, 45,143,142, 97,152,242,194,103,105,237,222,186,246,196, 17, 61,228, 63,252,188, 85, 50,113, 68, 15,193, +159,191, 91, 36, 19, 71,116, 23, 44,253,101,139,100,226,136,238,194, 37, 63,173,175, 67, 8,177,164,148,166,149,198, 87, 90, 26, + 65,175,151,252, 17,150,192, 2, 64,210,198,141,208, 37, 38,194,105,193,130, 60,241,229,106,111,112,183,134,173,173,237, 99,161, + 80,232, 82,222,117, 58,157,174, 92,241, 59,108,216, 48, 63,165, 82,249, 88,175,215, 83,129, 64, 48,243,171,158, 29,142,127,209, +220, 47,165,232, 53,207,159, 63,179, 94,182,236,100,143,131, 79,178,104,191,122,166, 79, 78,175, 26, 86,191,203,244,157,207,202, +168,136, 25,181, 90,141,208,208, 80, 20, 93,124,189,168,158,253, 72, 17,196, 0, 88,107,109,109,221, 40, 37, 37,101, 16,128,217, +153,153,153,181, 89,150,133,149,149,213,108, 66,200, 91,115,115,243,173, 25, 25, 25,119,243,173, 68,188,129,188, 45,204,204,204, +118, 31, 59,118,204,178,110,221,186, 76, 82, 82, 18,170, 87,175,142,212,212,212,134, 55,111,222,172, 55,114,228,200,145,132,144, + 33,148,210,155, 21, 8,110, 77, 19, 19, 19, 58,116,232, 80,194,113,127,190,238,182,109,219,208,209, 87,239, 54,246, 11,121,174, + 74, 67, 51,174,132,154,143, 21,137, 68,183, 35, 34, 34, 50, 42, 26, 31, 34,224,251,161,211,166,177,138,136, 8, 40,158, 61,195, +160,204, 76,193,143,121,214,172,114, 5, 22,195, 48, 85,118,239,223,225, 46, 22,139, 11,203,165,210, 54,142,227,160,213,104,177, +226,135,149, 31, 93, 22,154,152,152,152, 56, 57, 57, 37,152,152,152,152,124,142,202, 70, 34,145, 8,118,237,218, 53, 80, 44, 22, + 3, 0, 52, 26, 13,124,125,125,137,177, 26, 54,226,191,104,193,250, 50, 51, 51, 19, 28,199,193,212,212, 20, 44,203, 22,183,160, +160,125,251,246,104,209,162, 5, 6, 12, 24,128,160,160, 32,217,128, 1, 3,218,151, 70,246,213,180, 46,168,228,110,159, 95,137, +240,142,119,206, 60, 93,177,109,201, 97, 91, 0,211,138, 92, 54,114,204,152, 49, 36, 37, 37, 5,125,251,246,189,169, 86,171,187, + 81, 74, 51, 75,181, 96,240,136,110, 61,224, 43,240,148,200,126,121,176,153,104, 84, 74,202, 48,140,178,160,139,240, 35, 43,132, +190, 78, 78, 78,216,191,127, 63, 52,154,191,186,251, 50, 51, 51,195,203,151, 47,139, 90,220,208,184,113, 99,150, 16,210,183, 52, +129, 69, 8,227,114,231, 81,132, 93,193,126,151,246, 62, 34,255,250, 85, 18,108,173, 77, 41, 0, 50,103,206,156, 66,193, 6, 0, +139, 22, 45, 50, 36,156, 96,132, 66, 36,221,184,241,103, 1, 44, 96,192,136, 8,136, 16, 96, 4,121,189,165,160, 0,229, 0, 94, + 15,240, 58, 64,234, 88,201, 16,238,134,206,149,221, 79, 47, 91,253,155,133, 90, 71,177,255,196, 21,132,135,191, 3,203, 48,112, +117,115, 71,135, 86,205,133,245, 26,248, 87,250,105,225,180, 83,132,144, 47, 41,165, 15, 43, 28,209, 60,149,186, 85,182,193,214, +109, 79, 96,107,169, 64,223, 30,157, 32,147, 74,240,227,175, 59,240,195,172, 9,112,119,173,130, 77,107,150,150,122,187,185,185, +249,226,186,181, 60, 93,119, 28, 60,143,150, 45,154, 8,118, 30,188,128, 86, 45,154, 10,118, 28, 60,143, 86, 45,155, 11,118, 30, + 60,143, 86, 45,154, 9,119, 30, 60,143,198,245,107,185,221, 77,121,190, 24,192,132,210,223,185, 88, 26,117,200, 75, 35,119,129, +168,176, 2,136, 24, 55, 14, 0, 10, 5, 86, 69, 32, 20, 10, 93, 98, 99, 99,237,202,187,174, 60, 43, 65,190,229,234,177, 94,175, + 71, 98, 98, 34, 73, 79, 79,167, 22, 22, 22, 61,206,111,154,125,172, 99, 51,191, 84, 0,120,246,236,153,213,242,229,203,122, 28, +120,156, 9,229,253,245,228,143,147, 55,248, 65,221, 90, 62, 62,177, 98, 88,189, 62,125,250, 4,148,196,171, 86,171,195,235,212, +169, 67,243,255, 59, 75, 36, 18, 81,177, 60,225,228,238,238,254, 23, 43,181, 1, 93,135,107,239,221,187, 55,193,219,219, 27,158, +158,158,119, 27, 53,106,100, 38,151,203,113,254,252,121,120,121,121,249,152,153,153, 61, 56,116,232,144,112,198,140, 25,126,219, +183,111, 7,128,137, 6,228,207,118,173, 91,183,222,127,250,244,105,169, 72, 36,130, 82,169,196,203,151, 47, 97, 97, 97, 1,177, + 88,140,238,221,187,179, 77,155, 54,181,110,213,170,213,145,252, 70,128,193, 51,154, 84, 42, 21,157, 61,123, 54, 76, 76, 76, 96, + 98, 98, 2,185, 92, 14,185, 92, 14,133, 20,100,227,228,202,178, 73,155,211,101, 83, 22,108, 92,177,251,183,133,215, 42, 87,174, + 60, 63, 50, 50, 50,189,162,121, 65,121,243, 38, 20,207,158, 1, 69,190, 93, 67, 97,110, 98,133,153, 51,103,150,103,129,130, 72, + 36, 66,147, 38, 77,202,229,179,182,182, 62, 42, 16, 8, 62,104,145, 82, 74,165, 51,103,206,228, 66, 66, 66,228, 12,195,200,121, +158,199,204,153, 51, 57,189, 94, 47,181,183,183,191,203,243,124, 66, 82, 82, 82,175,242,184, 41,165,106, 66,200,119, 12,195,172, +149, 72, 36,130,170, 85,171,190,159, 55,111,222,189,124,235, 37, 40,165, 76,213,170, 85, 27,202,100,178, 42,106,181, 90, 15,224, + 59,163,245,202,136, 50, 80, 47,207, 8, 92, 8, 13, 0,113,129,193, 62,175,182,131, 77,177,227, 0,144,156,223, 64,180, 47,101, + 63, 5, 64, 16,128,154, 0,236,242,207, 61, 2,144,250, 89, 4, 22, 33,132, 22,249, 40, 10, 43, 20, 83, 83, 83, 60,122,244, 8, +132, 16,152,154,154,194,204,204, 12,230,230,230,200,204,204, 68, 80, 80, 16,130,131,131, 17, 17, 17, 1, 66, 8, 92, 93, 93, 81, +240,225, 20,225, 42, 44,216,246,254,124, 26, 82,133, 4,132, 0,117,219,212, 70,237, 22,190,104,240, 48,108,178,147,147,211,230, +216,216,216, 80, 66,136,192,215,215,119,100,227,198,141,177,122,245,106,168,213,234,213, 37,137,171,162,156, 55, 95,234,234,231, + 87, 74,211,247,156,127,107, 50,248, 11,183,220,216,216,216, 85, 21,141,132,226, 5,112,114,114,178,193,107,229,241, 60,143,180, +180,180, 50, 57,139, 91, 4,126, 89,187,222, 34, 43, 35, 1, 75,126,220, 3,157, 78,135,105,211,166,129,231,249,194, 45, 61, 61, +221,160,112, 82,174,152, 81,129,201,219, 8, 3, 16, 1, 80,185,127,158,158,136,220,191, 30,132, 2,132, 3, 80,236,189,138,115, + 18, 66,164,172, 72,118, 96,225,143,235, 44, 2,130,163,113,226, 74, 0,180,153, 49,136,123,118, 12, 0,224,218,100, 32, 14,170, + 89, 52,170,237,134,111,231,252,100, 57,247,219, 33, 7, 8, 33,158, 69,187, 11, 13,169,208, 40,229,176,100,241, 98,108, 94,183, + 26, 63,173, 94,135,204,140,116, 8,133, 54, 0, 0,189,158, 3, 87,236,221,254,242,238,148,126, 49,119,250, 24,178,118,203, 17, +248,214,112,192,169, 75,119, 81,223,167, 10,206, 93,125,136,198,181,170,225,194,141, 39,104, 92,187, 58,110,220,127,137,105,227, +135,146, 59,231,118,126, 81,145, 52, 90,179,102,189, 69, 86,102, 2, 78, 47,221,133,196, 13, 27,240,126,194, 4, 52,204,191,230, + 33, 33, 16,185,184, 0,162,242,211,168, 56, 94,189,122, 5,181, 90, 93, 82,235, 30, 94, 94, 94,229,166,187, 82,169,124,162,215, +235,105, 66, 66, 2, 73, 72, 72,128, 92, 46, 39, 47, 95, 6,114, 62, 62,190, 61,105,240,225, 45, 0,176,124,249,178,158, 7,159, +100, 34,247,238, 58, 40,239,253, 10, 81,181,231,204,230, 69, 99,180,163, 23,108,122, 82,164,114,251, 32,156,113,113,113, 95, 22, +252,119,117,117, 13, 14, 9, 9,169, 89,208,165,156,223, 85, 40,210,235,245,238, 5,221,134,122,189, 30,106,181, 26,237,218,181, + 99,203,122,119, 75, 75,203,198, 94, 94, 94, 8, 8, 8,192,186,117,235,172, 90,183,110,141, 55,111,222,128, 16,130,101,203,150, + 17,111,111,111, 97,114,114, 50, 58,118,236,136,163, 71,143, 54, 41, 47, 62, 9, 33,166,114,185,124,251,169, 83,167,164, 12,195, + 32, 43, 43, 11, 60,207,163, 89,179,102, 96, 24, 6,129,129,129,152, 51,103, 14,142, 30, 61,138,227,199,143,203,234,213,171,183, +157, 16,226, 85,180,251,190,140, 52,162, 42,149,138, 74, 36, 18, 72, 36, 18, 72,165, 82, 72,165, 82,136,197, 98,100,171,128,209, +191,188, 87,179, 82, 27,222,167, 78, 51,183,225,147,150, 49,171,230,141,184, 10,224,132,161,121, 30,200, 27,115,181,118,199,142, +117,131, 50, 50, 24, 0,216, 74, 8,175,165,244, 39, 67,190,119, 0,200, 82,165,163,138,155, 11,142,236, 63,142,222, 3,122,148, + 40,174,132, 66, 17, 68, 66, 33, 76,173, 76,202,229, 20,137, 68,246,193,193,193,214, 66,161,176,208, 34,175,211,233, 18,230,205, +155,103,219,185,115,103,211,115,231,206, 49,157, 59,119,230,109,108,108,114, 2, 2, 2, 18,181, 90,173,117,211,166, 77, 13,206, +243,148,210,223,234,212,169, 83,247,216,177, 99, 35,102,206,156,249,120,250,244,233, 75,138,158, 95,185,114,229,226,179,103,207, + 86,233,217,179,231,238,167, 79,159,254, 86,145, 50,228, 83,203,121, 35,231,255, 30,103,105, 90, 36, 31,246,132,144,211, 69,206, +119, 41,216,159, 57,115,230,236,229,203,151,191, 36,132,156, 46,122,188,224,186,124,238,211, 37,237,231,223,107, 53,107,214, 44, +223, 21, 43, 86, 44,243,247,247,223,127,247,238,221,119,159, 77, 96, 21,188, 72,209,151, 43, 22,145,200,204,204, 68,102,102, 38, +162,162,162,176,113,227,198,252, 15, 89, 8,129, 64, 0,129, 64, 80, 56, 94,161, 52, 92, 62,117,235, 87, 0,191,214,171, 87, 79, +248,226,222,161,115,223,111,158,212,182,126,187,186,236,147, 43, 47,250, 0,248, 1,192,151, 67,135, 14,181, 1,128, 93,187,118, + 37, 3, 56,247,127, 33,145, 41,165,135, 66, 67, 67,191,117,116,116, 44, 28,131, 82,180,155, 80,175,215, 67, 42,149,162, 96,172, +138, 74,165,194,198,141, 27,245,148,210, 67,101,112, 34,228,229, 85,132,190,188,150,119, 31,207,131,231,254,188,127,225,194,133, + 69,167,190, 98, 92,190,165,164, 92,113, 87, 82,156,211, 98,191,197,142,255, 69,148,253,165, 27, 66, 52,169,207,144, 9,142, 60, + 17,224,228,213,167, 16, 10,133,224,139, 88, 47,133,108, 94,235,248,229,155, 88, 56,217,251,160,219,192, 49, 14,199,118,175,159, + 4,224,199,138,198,181,167,159, 63, 38,127,251, 45,182,108,222,140, 57, 11, 22, 23,170,115, 61,199, 65, 95,110, 56, 25,166,105, +125,111,100,167, 68,131,101, 89, 52,169,227, 6,150,101,209,188,190, 7, 88,150, 69,179, 6, 53, 33, 16, 8,208,170,177, 55,106, +212,168, 1,129, 64,192,148,147,238, 8,121,121, 5,161, 47,175, 23, 17,187,121,105,162,141,139,251,203,245,186,184, 56,208,202, +214, 21,205, 91, 24, 57,114,100,122, 84, 84,148,182,248,185, 74,149, 42,137,110,222,188,105, 81, 74,247, 92, 33,100, 50, 89, 61, +129, 64,240, 36, 53, 53,149, 55, 49, 49, 97,120,158,227,125,124,124,217,243,155,102, 31, 43,184,102,214,172,217,199,250,213, 51, +235,185,231,208,105, 42,170,218,140, 16,161, 68,255,245,130, 77, 34,161, 72,102,144,135,250,130,238,194,215,175, 95,163,188,240, +148, 80, 8,126,128,180,180,180,161, 94, 94, 94, 55,127,253,245, 87, 43, 66, 8,110,221,186, 5,150,101, 11,183,176,176, 48, 48, + 12,131,239,191,255, 94,155,153,153, 57,170,220, 2, 75, 32,248,246,200,145, 35,230, 98,177, 24, 89, 89, 89,133,223, 13,203,178, + 8, 14, 14,198,170, 85,171, 48,116,232, 80, 68, 70, 70,194,201,201, 9,211,166, 77, 83,172, 88,177,226, 91, 0,139, 13,120,245, +231, 26,141,166,190,137,137, 9,164, 82, 41, 10,132, 22, 0, 92,124, 41, 12,204,205,205,173,101, 99, 99,227, 96,123,227,244,201, + 38,173,187,249, 89,219, 58,250, 23, 8, 44, 67,241, 22,216,252, 78,175,159,251,229,177, 99,118,119,142, 29,227,239,157, 60, 25, + 45,205,206,222,100, 48,129,142,197,251,183,209,168, 87,175, 30,158, 60,121,130,122,245,234, 21, 21, 75, 16,139,197, 16,137, 68, + 16,137, 68,176,177, 48,104,168, 4,101, 24, 6,119,238,124,184,220,104,243,230,205, 83,175, 93,187,166, 0,128,247,239,223,211, + 46, 93,186,164, 7, 5, 5,193,221,189,236, 97,104, 14, 14, 14, 55, 89,150,173, 90,236, 91,181,236,213,171, 23,210,210,210, 58, +245,234,213,171, 89,254,177,152,195,135, 15, 15, 6, 0,177, 88, 12,134, 97, 56, 24,241,159, 71,121, 90,164,168, 64, 42, 46,180, +150, 47, 95,222,165,248,177,162, 98,170,164,255, 69,239, 93,177, 98,197,178, 34,220,202,207,241, 62,130,162,202,177,188,194,178, + 44,148, 39,176, 10,240,228,201, 19,157,179,179,243,150,208,167, 17,109,221,106,187, 66, 38,151,116, 32,132,252, 42,145, 72,166, + 14, 25, 50, 4,247,239,223, 71, 96, 96,224,182, 79, 93,246,164, 86,173, 90, 23, 36, 18, 73,149, 82,186, 67,222,191,120,241,162, + 99, 41, 21,194,130,252, 49,101,165, 14,114, 47, 58, 30,172,232, 32,247, 82, 51, 4, 79,161,211,234,144,147,171,252,179,242,206, + 23, 88, 57, 57, 57,232,223,191,255, 7, 22,172,196,196, 68, 67,148, 62, 86,157, 56,129, 75,135, 14,161,147,159, 31,142, 62,124, +136, 21, 67,190,130,103, 21,103, 80,142,128, 18, 32,114,223,122,164,100,102, 99,239,149, 59, 72,205,202,197,160,230,205,225,110, +102, 83, 54,175, 80,212,190, 97, 99,127,209,229,187, 65, 16, 10, 5, 96,192,131,234,114,225,228,213, 10, 44,195,192,220,190, 26, + 68, 66, 33,132, 66, 1,194,162,146,225,229,219, 64,124, 90, 44,109,255, 49, 2,171,114,149,234,224, 57, 14, 67,135, 14,197,254, +253,251, 97,237, 80, 5,230,149,124,241,195,234,205,232,212,174,121,185,239, 95,208, 98, 23, 8, 4, 96, 89,246, 47,191, 5,255, + 13,177, 70, 82,158, 66, 91, 60,141,120, 10, 10,192,101,233, 82,184, 44, 93,138,135,249,207,244,206,201,129, 82,169, 4, 26,249, + 84, 72, 92,105, 52, 26, 68, 69, 69,105,227,226,226,236, 75,168,152, 18, 52, 26, 77,185,130,102,231,206,157,207,135, 13, 27, 86, +223,202,202,234,241,243,103,207,116,181,253,252,132,231, 54,206, 62, 94,208, 61, 8, 0,126,126,126,169,179,103,207, 62, 62,184, +111,151, 30,191,205, 28,192,125,179,120,183, 64, 34,147,213,239, 50,189,236,129,238, 69,190,143,240,218,181,107, 83, 67,174,205, +205,205,141, 47, 35,141,186, 2, 88, 84,183,110, 93,179,214,173, 91,227,230,205,155,232,221,187,183, 90,171,213,134, 2, 64,231, +206,157, 61,246,238,221, 43, 14, 10, 10,130,173,173,173,240,253,251,247,219, 9, 33,101, 14,124, 23,139,197,173, 26, 52,104,192, +168,213,234,191,136,171, 21, 43, 86, 96,224,192,129,240,240,240, 0,207,243,200,206,206, 70,235,214,173,133,235,214,173,107,101, +160,192,154,236,233,233,185, 10,121,179, 8,139,150,133,175, 0,124,151,111,221,142,239,210,123,232,203,230,237,122,213,175, 90, +195,215,177, 60, 66,123,123,251, 89, 12,195,244,227,121,158,205,204,204,140,210, 16, 82,195,187,106, 85,251,166, 61,122, 32, 67, + 40,100,215, 94,185,194, 36,100,103, 43, 0, 24,212,213,168,212,101,163,138, 91,222, 80,190,222, 3,122,224,201,147, 39,232, 51, +176, 39, 68, 34, 17, 4, 2, 97,222,183, 41,202,179, 96, 89,216,152, 26,166,217,116,186,191,228, 85, 74, 41,204,204,204, 10,123, + 50, 10,142,233,116,186, 50, 43, 63, 0,238, 7, 23,207,179,147,153,153,131,211,233,224,211,163, 79, 97,158,126,176,245, 55, 25, +120, 94,150,254, 62, 28, 19, 15,157, 18,194, 8, 35, 74,177, 98,149,165, 69,138, 10,164,207,240,172,211, 51,103,206,156, 13,128, +206,156, 57,115,118,193,254,242,229,203,149, 0, 98, 62,139,192,250, 84,113, 85,208,141, 80, 22,218,180,105, 51,209,212,212,116, + 29, 0,212,175, 95, 31, 81,247, 99, 16,117, 63, 6, 94, 53,125,154,214,245,171,159, 49,112,224, 64, 88, 91, 91, 99,250,244,233, + 20,192,182,138, 62, 63, 44,228,165, 2, 0,117,114,114,154, 14, 0, 78, 78, 78,126, 15, 31, 62,180,125,244,232, 17, 26, 52,248, +115, 70,161, 86,171, 69,179,102,205,202,170, 8,179,144, 55,150,106,202,231, 83,229, 60,180, 90, 45,114,115,149,208,104,180,208, +235,120,232,245,122,212,243, 49,197,238,205, 51,243,142,233, 11,172,101,121, 86, 50, 23, 7, 83,212,171,229,160, 99, 24,162,124, +244, 44,206,172, 36, 94,141, 70,131,231,239,223,227, 89, 68, 4, 0,160,219,242,159,202, 12,199,238, 43, 55,225,237,237, 93, 94, +104,221, 92,156, 28, 16,123,233,121, 94,161,173,140,194,163,219, 7, 97,106,170, 0, 0,248,180, 28, 4,145, 40, 79, 96,229, 40, +181,176,169, 89, 9,132,210, 82,167,247,203,173, 28, 47, 8, 68,210, 42,148,227, 65, 41, 15,202,115,160,148,135,196,212,218,100, +194,216,225,224,121, 14, 13, 27, 54, 4, 97, 89,112, 58, 53,250,118,109,143,180,140, 44, 88, 91,152, 25, 20,183, 34,145, 8, 45, + 91,182,148,149,118,254,205,155, 55,202,162,130,172,236, 52,210, 33, 39, 71, 9,181, 90, 13,173, 70, 15,173, 78, 15,190,186, 8, + 75,230,126, 5,189, 86,143,220, 1,254,121,199,190,237, 9,173, 70,135, 72, 19,134,241,243,182,213, 49, 32,202,128,160, 68,179, +242, 4, 86,129, 40, 40, 13, 37,141,249, 43, 69,100, 61, 27, 54,108, 88,189,218,126,126, 79,250,181,243,251,249, 69,224,203,216, + 23,129, 47,255,114, 93, 21, 15,191,240,111, 86,236,159, 38, 20,201,234, 25, 42,174,128, 15,187, 11, 63, 17,179,179,178,178,106, + 43, 20, 10,132,132,132,128,101, 89, 16, 66,222, 80, 74,107, 3,192,152, 49, 99,222, 10, 4, 2, 87,150,101,177, 97,195, 6, 34, + 16, 8,106,249,251,251,207, 6,112,176,140,134,156,151,169,169,233, 7,214, 43,145, 72,132,153, 51,103, 98,240,224,193,133,226, + 74, 36, 18, 97,231,206,157,168, 95,191, 62, 52, 26,141,151,129, 34,248, 17,128,230, 6, 88,248, 72,190, 40, 47, 87,132,234,245, +250, 97, 41,253,250,213,192,141, 27,104,234,234,234, 93,175, 94, 61,104,181,127, 26, 48,171, 87,175, 94, 41, 43, 43, 43,158, 16, +242, 7,128,223, 40,165, 79,203,228, 83, 81,188,127, 27, 93,208, 88, 69,195,134, 13, 11, 45, 86, 69,173, 87, 34,145, 8, 50,145, +162,194, 2,139, 82,138,156,156, 28,230,252,249,243, 54, 94, 94, 94, 4, 0,188,189,189,201,253,251,247,173,100, 50, 89,178,147, +147, 83,185, 13, 95,153,153, 57,118, 14,235, 15, 0,152,223,238,139,194, 6,209,249, 69,179, 33, 20, 10,209,118,250,236,191,228, +123,158,231, 89, 24, 97, 20, 87, 6,104,145,207, 37,174,138, 91,176,150, 47, 95,254,114,249,242,229,127,177,134,125, 54, 11,150, + 33, 38,127, 67, 91, 65,197,177,122,245,106,212,170, 85,171,204, 10,104,221,186,117,216,179,103,207,106, 74,105, 88, 69,159,223, +165,109, 93, 31,252,114,236,165,171,135, 15, 1,128,197,223,118,101,114,114,114,112,231,206, 29,152,155,155,227,205,155, 55,134, + 38,176,169,185,185,249, 34,134, 97,250,178,197, 71,246,151, 44, 44, 57,158,231, 15,101,100,100,148,234,166,129, 82, 64,171,211, + 35, 39, 87, 5,141, 70,131,111,191, 95, 95,110, 56,150, 3, 68,171,201, 18,180,108,225, 47, 43,205,130,211,208,183, 37,198, 15, +150,255,165,210,102,243, 92,129,161, 78,195,188,181,165, 3, 30, 4,130, 82,128,227, 0, 27, 59, 43,108,219,255,115,153, 81,160, +231,248,252,214, 48,135,108, 53, 7,175,198, 93, 16,253,234, 70,161,197, 72, 44,202,235, 26, 22, 9,133,224, 41,201,243,222, 80, +154, 0, 18,203,170,164,197,133,185,111, 62,253, 2,163,187,212,194,225,203,207,209,167, 93,109, 92,123, 16,132,214,141,188,241, + 50, 52, 2, 62,238, 85,177, 97,251, 33, 80,138,172,223,127,249, 33,254,207,138, 76,255,222, 16, 11,214,253,251,247,149,197,173, + 86, 69,127,105,249,245, 96, 94, 87, 96,190, 5, 75,169, 82, 99,250, 44,131,220,241,228,165, 81,243,198, 50, 67, 46, 46,203, 66, +101,136, 0, 43,110,201, 66, 57,110, 86,170, 3,168, 15,204,248,191, 44, 48, 57,142,195,153, 51,103, 10,211,163,164,116, 44,154, +118, 6,136, 27,188,127,255, 30,129,129,129,240,247,247, 71, 70, 70, 6,132, 12,131,105, 47, 94,192,123,200, 16,104, 68, 34,240, + 60, 15,177, 88,140, 49, 99,198, 24, 28,159, 21, 44,149,243,199,177,113,180,156,178,228,231, 46, 93,186,212, 8,201,201,193,203, +224, 96,180, 91,184, 16, 0,112,230,204,153, 15,242,196,212,169, 83,197, 65, 65, 65, 35, 31, 63,126, 60,146, 16,178,154, 82, 58, +173, 52, 78, 45, 85, 21,142,193,234, 55,168, 55,106,120, 85,199,158,237,251, 10,207, 79,253,126, 50,132, 66, 17,132, 66, 33, 44, + 44, 44, 12,122,155,162,101,119,110,110, 46,115,248,240, 97,151, 86,173, 90,137, 70,143, 30, 77, 0, 96,243,230,205,204,214,173, + 91,229, 23, 47, 94, 20,153,155,155,199,149, 43, 42,181,218,191,164, 49, 33, 4, 66,161, 16, 34,177, 8,224,121, 16, 66,228, 43, + 87,174, 92,252,242,229,203, 6,158,158,158, 80,171,213, 67, 8, 33, 1, 70, 63, 88, 70,148,167, 69, 74, 26, 75,149,111,133, 42, + 13, 73, 69,199,101,149, 38,208,138,142,201, 2,240, 89, 38, 91, 8,202, 19, 85, 44,203,150,107,157, 98, 24,166,220, 46,194,169, + 83,167,194,212,212,180,180,138,135,190,120,241, 34, 40, 46, 46,110, 51,165,116,253,199,188,200,233, 43, 1, 47, 23, 77,233,153, +133,252,190, 83, 11, 11,139,228, 54,109,218,100, 3,208, 30, 60,248, 97,131, 88,173, 86,151, 90,113,155,155,155, 47,218,186,117, +235,164, 30, 61,122, 48,197, 93, 5, 20,237,198, 43,216,116, 58, 29, 14, 30, 60, 56,105,198,140, 25, 40,205,234, 85, 80,121,231, +230, 40,161,204, 31,224,252, 54,240,176,161,133,121,169,167, 20,150, 78,112,113,229, 74,173, 68, 24, 81,222, 24, 33,135, 42,126, +133,199, 76, 77,165,224,202,224, 36,132, 9,139,136,140,117,174,228, 96,133,183, 81, 73,176,175, 90, 11,105, 49,127,198,131, 64, +192, 66,152,223, 69,104, 97, 38, 71, 82, 98, 34, 24,134, 45, 83, 16,255,176, 55, 0, 15, 2, 35,112,228,242, 83,104, 85, 57,248, +101,215,121,104,213,217,208,170,114,160, 85,229,253, 46,155,241, 53, 8, 65,188, 86,149,237, 81,161, 12, 44, 16,160, 81,163, 70, +165, 10,156,152,152, 24, 3, 45, 88,180,208,130,165, 84, 85, 48,141, 12,107, 41,149,105,161, 42, 56,255,177,130,160,192,117,131, + 76, 38,171,191,115,103,233,238, 24, 74,130,163,163,227, 57,133, 66, 81,205,208,235, 43,224,116,116,153,133,133,197, 34, 79, 79, + 79,175, 95,126,249, 69,200,178, 44,218,182,109,235,241,245,215, 95,191, 7,128, 90,181,106, 57, 21,148, 49,223,124,243, 13,189, +127,255,126, 96, 94,219,162,116,136,197,226, 96,115,115,243,250,109,218,180, 65, 70, 70, 6,162,162,162, 32,151,203,225,253,243, +207,120,241,205, 55,240,219,184, 17, 76,155, 54, 32,132, 64, 44, 22,227,197,139, 23,144,201,100,193,101, 20,230,141, 0,252, 4, +160, 41,254,236, 22,164, 0,238, 0,248,158, 82,250,160,132,242,142, 1, 0,142,231,203, 75,172,175,166, 79,159,142,116,161, 16, +232,220, 25,162,176, 48,104,181, 90,248,251,251,163,126,253, 60, 79, 28,254,254,254, 16, 8, 4,168, 93,187, 54,156,156,156,176, + 97,195,134,175,240,225,204,234, 15,203,174,108, 29,222,191,141,134,191,191,127,161,165,170,115,231,206,133, 22, 44,161, 80, 88, +104,201, 34, 28,107, 80,101, 86, 84, 96,233,116, 58, 34, 18,137, 4, 99,199,142, 37,163, 70,141,162, 58,157,142, 23,137, 68,204, +150, 45, 91,200,253,251,247, 5, 74,165,178,220, 6,184,111,207,190,152,223, 62,207, 8,250, 67, 53, 91, 8, 69, 66,136, 69, 34, + 76, 15,142, 46, 76, 23,179,157,251,197, 43, 86,172,232,227,233,233,153,215,221, 14, 8,140,126,176,140, 40,199,192,147, 84, 76, + 28,105,138,236, 39, 1, 32,249,251, 73, 69,132, 84, 18,242,102, 4, 54, 40,118,109,193,121, 77,177,223,130,243,207, 62,199,251, +148,213, 2, 14,189,119,239,158,123,189,122,245, 16, 25, 25,249,151,153,109, 5, 21,150, 92, 46,135, 76, 38,195,221,187,119, 1, + 32,180, 52,178,171, 87,175,254,138, 60, 47,201, 0, 0, 39, 39, 39,255,214,253, 90,221,109,248, 69, 3,236, 93,190, 47, 35, 46, + 46,174,118,129, 15, 28, 66, 8,113,114,114, 26, 44, 20, 11,250,187,250, 86,110, 9,158,255,233,242,201,219, 11,203,122, 17, 87, + 15,159,108, 0,202, 34,179, 8, 87,125, 76,132, 48, 12,211,183, 71,143, 30, 76, 80, 80, 16,250,247,239,143, 61,123,246,148,122, +237,224,193,131,177,127,255,126,244,232,209,131,153, 53,107, 86,223,242, 4, 86,158,117, 68,243,217, 50, 99, 72,232, 51,236,222, +183,165,212, 49, 70,118,118,182, 0,128,196,196,164,194, 99,245,235,151,237,136,153,215,107, 46, 5, 60,126,232,223,164, 69, 91, + 81, 84, 66, 58,120,189, 26,170,172,228, 63, 91,184,233, 9,160,122, 21, 68, 38, 86,112,176, 49,199,147,123, 23, 53, 90,141,234, + 82, 89,156,147,122,248,224,155,174, 94, 0,229,209,115,218, 54,156, 94, 63,177,176,123,167, 89,239,201,184,114,112,173,193, 99, +248,138, 67, 40, 20,226,197,139, 23,202,210,172, 87, 44,203,150,235, 83,235, 79, 43,163, 14,185,185, 74,228, 42, 85,159, 45,141, + 8, 33,182,246,246,246,191, 91, 89, 89, 73, 75, 18, 80,132, 16, 91, 91, 91,219,223,173,173,173,165,134,118, 17,150, 38,174,242, +253, 98, 61, 30, 54,108, 88,133, 68,150, 68, 34,169, 22, 26, 26, 90,232,100,180,172, 95,141, 70,131,214,173, 91, 11, 12, 44, 44, + 79, 17, 66,222, 57, 58, 58,222,241,246,246, 54,127,251,246, 45,246,237,219, 39, 18, 10,133,149, 11,202,143,172,172, 44,176, 44, +139,196,196, 68, 29,128, 17,229,117,145,169,213,234, 27, 55,110,220,168,211,181,107, 87, 54, 56, 56, 24, 44,203,230,133,203,223, + 31,126, 27, 55, 34,112,202, 20,180,140,136,128, 74,171,133, 84, 42,197,133, 11, 23,180,185,185,185, 55, 74,227,147,201,100,155, +195,195,195,125,164, 82, 41,180, 90, 45,120,158, 7,195, 48, 68, 32, 16, 52,179,176,176, 88, 7,160,193,135,223,148,157,221,152, +169, 63,214,228,244,122, 46, 46,242,109, 82,121,113,144,146,146,130, 83,167, 78,161,113,227,198,104,217,178, 37, 98, 98, 98, 16, + 22, 22,134,206,157, 59, 23, 94,243,236,217, 51, 4, 4, 4,192,205,205,173,124, 11, 30,171,131,155,103, 53,136,132, 34, 8, 69, +194,188, 95,161, 48,127,203,251, 95,112,172,192,103, 97, 69, 44, 88, 0,160, 80, 40, 10,242, 5, 95,173, 90,181,184,184,184, 56, + 71, 0,108,129, 3, 86, 67, 26, 43, 5,117, 68,129,184, 18,137, 69,133,150, 44, 0, 72, 79, 79, 87,245,232,209,227, 15,181, 90, + 61, 28, 31,177,162,136, 17,255, 73, 60,250, 63,186,247,111, 17, 88,157,154, 52,105,178,113,224,192,129,109,215,172, 89, 3,133, + 66,129,184,184,184,194,138, 80, 44, 22,163, 82,165, 74, 72, 77, 77,197,166, 77,155, 16, 29, 29,125, 21,192, 24, 67, 31, 28, 23, + 23,119,255,205,211,208,148,214,125,154, 88,251, 52,169,105, 17, 21, 26,221, 24,192,221,124,113,181,109,224,212, 78,195, 91,247, +106, 8,145, 88,136,168, 55,241,255,223, 34,132,101, 89,150, 16,130,254,253,251, 27,116,253,128, 1, 3,112,227,198, 13,148,213, +157,200, 23, 88,176,114, 85,200, 81,126,190,198,217,248, 73,131, 49,126,210,224, 66, 17, 97, 72, 23, 75,158,184, 61, 80,134,192, +210,174, 57,125, 96,211,232,186, 13,253,171,212,247,169,134, 7,143,159, 98,239,198, 63,141, 10,219,127, 93,140, 31,183, 95, 69, + 37,123, 75,104,213, 57, 56,119,120, 75,188, 86,157,187,230, 35,141,112,121,162,150, 16, 24,232, 95,242, 3,171,105,129,192,242, +245,245, 45,213,130,149,154,154,170, 44,175, 66, 40, 76, 35,141, 14,217, 57, 74, 40,115, 63,143,192, 34,132,248, 53,107,214,236, +210,161, 67,135,172,237,236,236, 16, 27, 27,251,129,192, 34,132,248, 53,109,218,244,210,161, 67,135,172,237,237,237, 17, 21, 21, +101,176,123,144, 18,196, 21,146,146,146, 72, 90, 90, 26,111,105,105, 89, 33,145,197, 48, 12,212,106, 53, 94,189,122,101,232, 99, + 13,158,241,101,110,110,190,115,255,254,253,230,201,201,201, 96, 89, 22,175, 94,189,250, 96, 22, 97,193,182,109,219, 54, 81,207, +158, 61,183, 2,168, 83, 22,159, 94,175, 95, 61,120,240,224,145, 49, 49, 49,150,118,118,118,136,139,139,131, 88, 44, 6,165, 20, +164,117,107, 52,127,247, 14, 90,142,131, 76, 38, 67, 72, 72, 8, 54,111,222,156,163, 86,171, 87,151,146, 62, 98, 19, 19, 19,119, +145, 72,132, 65,131, 6,125,112,110,215,174, 93,232, 86,159,173, 63,186,189, 36, 91, 15,169, 58, 65,246,229, 57,150,101,201,152, +233, 63,121, 52,106,209,217,247,117,224,131,183, 73, 9,209,119,202,121,125,157, 70,163,129,167,167, 39, 30, 61,122,132,203,151, + 47,163, 77,155, 54,104,217,178, 37,158, 63,127,142,139, 23, 47, 34, 32, 32, 0,132, 16, 88, 91, 91, 23, 12,179, 40,115,172,133, + 38, 71,143,196,152,148,191, 88,171,138,239,139, 68, 34,168,197, 90,131,210, 40, 56, 56, 24,143, 30,229,213, 63,185,185,185, 16, + 8, 4,250,233,211,167,131, 97, 24, 26, 24, 24, 8, 59, 59, 59,250,253,247,223,115, 2,129, 64, 31, 25, 25,105,104,222,207,179, + 86,229,139, 43,129, 72,248,129, 48,227,121, 62,235,217,179,103,163, 9, 33,207, 9, 33, 5,222, 80,141,126,176,140,248, 87, 65, + 80, 70, 43,228, 29,128,118,132,144,175,142, 31, 63,190,122,221,186,117,182, 93,186,116, 65, 90, 90, 26,170, 84,169, 2, 71, 71, + 71,156, 62,125, 26,103,207,158, 77,230, 56,110, 26,165,116, 79, 9, 31, 89,187,210,124,101, 80, 74,169,147,147,211, 33,117,118, +246, 55,245, 90,122,225,234,193, 91,203, 29, 29, 29,199, 56, 59, 59,127, 59,108,118,247,225,173,122, 52, 64, 72, 64, 56,238, 95, +124,129,132,200,100, 12,107,254,125,153,156,197, 7,185, 91, 88, 88,140, 52, 49, 49, 17, 3,208,150,208, 10,254, 96, 22, 97, 81, + 78,142,227, 56,141, 70,131, 3, 7, 14, 24, 36,178,246,237,219, 7,149, 74, 5,174, 88, 63,106, 81, 78,202, 83, 34, 16, 74,224, + 84,201, 19, 90,109, 14,120,254,227,172, 53, 69, 57, 9, 33, 96, 24, 6,111,197, 98,216, 37, 39,227,193,131, 7, 6,113, 20,109, + 57,151, 20,159,148, 82, 21, 33,100,208,218,165,211, 79, 79,152,249,147, 69,155, 38,117, 48,255,231, 93,208,106,183,131, 97, 25, +200, 36, 34,212,107,216, 20, 44,212,248,125,197,119,233,185,153,105,131,138, 47,153,243, 23,206,178,122, 82, 40,192,241, 60, 46, +223,124,104,240,187, 23,214,242, 28, 7,129, 64,128, 55,111,222, 40, 75,154, 61,200,178,121,221,153, 12,195,148,216,234,254, 48, +141,120, 34, 20, 73, 81,169,138, 55, 52,234,236,207,146, 70,118,118,118,223, 29, 59,118,204,186,192,229,193,243,231,207, 65, 8, +121, 85,196, 26,242,221,177, 99,199,172,149, 74, 37, 2, 3, 3, 11,150,132,122, 85,145,239,168,192,114,149,148,148, 68,226,226, +226, 96, 98, 98,194, 60,127,254, 92, 93,187,118,237,199, 40,123,165,134, 66, 78,149, 74, 21, 81,218,248, 72,149, 74,229, 44,149, + 74,133,197,238,117,114,119,119, 15, 41,222, 85, 88, 82, 56, 51, 50, 50, 30,204,152, 49,163,222, 23, 95,124,129,239,190,251, 46, +213,210,210,210,244,247,223,127, 23,176, 44, 75, 38, 76,152,192, 37, 38, 38,102,111,217,178,197,252,248,241,227, 72, 79, 79,191, + 91,222,187, 83, 74,179, 8, 33,163,155, 52,105,178,235,252,249,243, 38,238,238,238,200,204,204, 4,165, 20, 59,119,238,196,132, + 9, 19, 32,149, 74, 17, 18, 18,130,110,221,186,229,230,230,230,142, 46, 62, 54,178, 8, 39, 33,132, 80,158,231, 49,111,222,188, + 66,167,162, 5, 78, 70, 77,101, 4,155,167, 86,151, 79,222,146, 33,255,106,254,150, 33, 0,192,233,245,220,235,192, 7,111,119, +174,159,127, 77, 36, 18,221, 44, 39,141,230, 76,158, 60,249,247,206,157, 59,203, 20, 10, 5, 82, 83, 83,113,231,206, 29,220,187, +119, 15,247,239,223,135, 70,163,129,181,181, 53, 44, 45, 45, 17, 23, 23,135,224,224, 96, 37,128, 57,101,113,138,229, 66,184,214, + 44,152,201,251,167,245,170,112, 95, 36,132, 80,240,231, 76, 66, 67,242, 82,139, 22, 45,208,168, 81,163, 2,225,195,189,127,255, + 62, 78,173, 86,147, 34, 98, 63,166, 64,136, 87,174, 92, 89,191,109,219, 54, 90, 22,231,253,205, 27,112,126,201, 28,136, 69, 34, + 76,123, 21, 85, 40,182,118,181,169, 11,161, 88, 4,175,174,189,139,214, 3,191, 17, 66,182,231,255, 87, 27,146,231, 63,161,193, + 99,228,252, 31,231,252,207, 8,172, 34, 31,192, 94, 66,200,185,175,191,254,122,133,159,159,223,215,191,252,242, 11, 17,137, 68, + 88,184,112, 33,141,141,141,221,145,223,234, 72,251,152,135, 83, 74,119, 92, 63,122,119,220,208,153, 61,200,212, 53,195,154, 61, +190, 18, 24, 92,171,137, 59,106, 53,113,199,227,171, 65, 88, 63,123,223, 30, 78,199,205,139,139,139, 43,175,217,164,110,215,180, +102,241, 65,238,214, 55,174, 93,177,174,232, 44, 66,158,231, 15,237,219,183,111, 82,175, 94,189,152,135, 15, 31,254,101,204, 85, +129, 51, 62,158,231,113,233,210, 37,104,181, 90,236,216,177,131,231,121,190,116, 63, 88,160, 39,214,174, 89, 49,116,199,238, 19, + 98,177,136,224,222,205, 35,200, 72, 43,219, 42, 39, 18, 9,177,109,231, 81,173, 72, 36,124, 93,210,121,173, 86, 27,117,229,202, + 21,251,142, 28, 39,100, 24,230, 47,194,169, 52, 28, 58,116, 72,199,243,252,251,114,210,229, 46, 33,194,174, 63,124, 55, 98, 95, +231,126, 95,219, 55,105,210, 76,104, 99,103, 15, 66, 8, 18, 19, 18, 17, 18,248, 80,119,238,200,214,132,156,220, 44,131,150,202, + 25,177,234,122,225,152, 43, 0,232, 50, 97, 93,225,248, 43, 0,232, 58,108, 6, 90, 55,246, 1, 49,196,212,244,167,184,226,245, +122, 61,228,114, 57,244,122,125,137,174, 26,204,205,205,101, 42,149, 74, 73, 41, 5,199,113,101,154,134, 40,240,217,211,136,227, + 56,175,180,180, 52,228,228,228,224,222,189,123,116,233,210,165, 73, 73, 73, 73,133,131, 49,117, 58,157, 87,106,106, 42,178,179, +179,113,247,238, 93,186, 98,197,138,164,148,148,148,217, 21,249,134,100, 50, 89,125,129, 64,240, 56, 45, 45,141, 55, 49, 49, 97, +116, 58,157,174,118,237,218, 18,153, 76,102,240, 66,231,177,177,177, 95,148,118,206,205,205, 45, 52, 52, 52,180, 6,199,113, 69, +215, 40, 20,169, 84, 42,247, 38, 77,154, 24,210,181, 51,121,251,246,237, 56,122,244,104,195,204,204,204,193,239,223,191,223, 5, +160,161, 64, 32,192,211,167, 79, 95,169, 84,170,129,189,122,245,218,153,150,150,246, 0,192,100, 3,203,141,243,132,144, 65, 94, + 94, 94,219, 23, 45, 90,164,104,217,178,165,192,201,201, 9, 13, 26, 52, 64, 72, 72, 8,206,156, 57,163,251,237,183,223,114,114, +115,115, 71, 80, 74, 47,149,157,236, 32,122,189, 30, 98,177,184,112,147, 72, 36, 16,137, 68,200, 82, 82,140,250, 57, 76,169,135, + 76,185,122,225,232, 51, 20, 32,241, 81, 97,201,137,241, 81, 15, 8, 33, 55, 99, 99, 99, 51, 74,137, 51,177, 74,165,170,227,232, +232, 40, 32,132,172,209,106,181,195, 39, 78,156,232,176,108,217, 50,212,172, 89, 19,201,201,201,144,203,229,112,119,119, 71, 82, + 82, 18, 30, 62,124,200,229,230,230,110, 4,176,152, 82, 90,102,183, 99,122, 82, 38, 92,236, 43,127, 96,233,164,148,130,234, 1, + 29,199,129,211, 82,104,136, 14, 66,161, 14, 34,145,200,144, 74,146,242, 60,143, 52, 71, 71,196, 92,184,128,252, 85, 37, 74,181, +162,157, 62,125,218,128, 4,226, 33,150,136, 63,232, 22, 36,132, 64, 36, 22, 67, 40, 22,253,101, 70,140,209,106,101,196,127, 86, + 96,229,127, 0,233, 0,198, 16, 66,118,181,106,213,234, 52,165, 84, 8,160, 51,165,244,214,167, 60, 60, 46, 46,238,137,147,147, +211, 44,123, 23,203, 21, 95, 14,110,134,154,117,170,128,211,115,184,115,246, 41,118, 44, 59,190, 63, 38, 42,102,152, 33,107,147, +241, 60,127,173,105,253,154, 12,138,248,214,118,114,114,226, 63,102, 22, 97, 70, 70,198,130,105,211,166,225,187,239,190,171,240, + 44,194,210,174,121,254, 42,113,140,159,151,173, 75,215, 47,155,119, 4, 97,168, 70,163, 46,163,192, 67,161,199, 81,145, 72,248, +250,225,179,216,218, 37, 93,151,148,148,212,113,248,240,225,151, 4, 2, 65,181,138,196, 57,207,243,239, 19, 18, 18,218,150,159, +230,186, 59,132, 16,247, 83,251, 55, 77, 57,127,116,123, 71,158,231,220, 8, 0, 86, 32,122,171,211,106, 47,168,149,153,191, 24, +186,216,243,202, 49,254,152,188,246, 34, 54,124,215, 21, 19, 87, 28,196,214,121,163, 48,235,231,125,248,233,187,201, 88,186,238, + 15,204,159, 60, 8,125,190, 26,206, 83,194,220, 54,244, 61, 88,150, 61,191,105,211,166,161,163, 70,141, 42,156,140, 64, 41,253, +160, 64,215,233,116, 74,158,231,177,113,227, 70, 30,192,249,178,248, 62, 76, 35, 66,203, 26, 15,101,104, 26,101,102,102,142,240, +247,247,223, 9, 64, 66, 41,125,147,150,150, 54,150, 82, 90,184,132, 83,118,118,246,136, 38, 77,154,236,164,148, 74, 8, 33,127, + 57,111, 8,242, 93, 54,212,183,180,180,124,156,111,185,146,124,204, 64,247,178,162,186,140,238, 67,206,128,178,131, 71,145,229, +111, 8, 33,203, 26, 54,108, 88,116,177,231, 87, 0,234, 87, 52, 80,148,210, 75,132, 16,159,121,243,230, 77,145, 74,165,173,115, +115,115, 61, 0, 64, 46,151,135,168,213,234,107, 74,165,242,151,252,114,171, 44, 14,141,137,137, 73,136, 94,175,247,181,181,181, +205,155, 33,155, 47,178, 0,224,228, 99,238, 49,165,250, 10,175, 26,127,246,236,217,170,150,150,150, 29, 8, 33,125, 40,165,158, + 89, 89, 89,234,185,115,231,222, 59,122,244,104,122,149, 42, 85,190,236,220,185, 51,177,178,178,194,163, 71,143,104, 74, 74,202, + 17, 0,179, 13,153, 57,205,243,252,251,149, 43, 43,182,182, 96,121,141, 41,173, 86, 27,127,246,236, 89,155, 47, 18, 19, 5, 86, + 60,255,193, 12,199,146, 38, 92,188,126,253, 26,106,181,186, 76, 39,140,234,140, 52,180,153, 50, 3,200,159,205, 89,128, 60,203, + 21, 5,213, 24,245,148, 17,255, 13,144,191,101, 26,115, 5, 77,136, 78, 78, 78,253,165,114,201,248, 42, 30,142,181, 99,195, 18, +131,178, 50,114,247,196,197,197,109,162,148,114, 31,203, 89, 17, 71,163, 70, 51,239,223,199,249,167, 31, 44, 14,148,114,160, 60, + 5,165, 60,120,158,203, 91,136,154,242,160, 28, 71, 8,193,109,117,110,198, 40, 67,195, 73, 8,177,180,177,177, 89, 76, 41,253, +130,101, 89,166,168,241,171,232,255,124,203,213,249,164,164,164,249,197, 45,173,255,196,248, 60,124,248,112,137,162,223,208, 89, +132,125,250,244,225, 42,248,109, 94,147,203,229, 37, 58,212,204,201,201,137,140,141,141,237,240,191, 16,159, 5,214, 79,106, 64, +129, 86,172,171,189,194,179, 8,203,227,172, 90,181,170, 68,171,213,214, 5,224, 1,192, 2, 64,170, 78,167, 59,159,148,148,148, + 64, 8,169, 15, 96, 94,254,109, 75, 40,165,143,255, 47,191,119, 66,136,204,198,198,102, 59,195, 48, 46,134,220,175,215,235, 53, +169,169,169, 67,139, 54, 4,138,114,218,216,216, 60, 22, 8, 4, 46, 6,240, 68, 39, 39, 39,215, 55,150,159, 70,206,255,188, 5, +235,239, 70,108,108,236, 1, 0, 7, 62, 39,103,105,158,218,141,248,255,139,156,212,184,191, 37, 29,242,197,210,132,255, 90,124, + 22, 8,164, 18,142, 63, 1, 64,254,134,111,179,245, 63, 33, 94,232, 71,182, 20,243, 5, 84,243,207, 25,150,136,136, 8, 53,128, +187,249, 91,241,231, 61, 6,208,245,127, 40,222,148, 0,250,127, 46,190,178, 68,147, 17, 70,252,215,192, 24,163,192, 8, 35,140, + 48,194, 8, 35,140, 48,226,243,130, 0,104, 87, 74,203,198, 96,211, 31, 33,164,221, 71,180,156, 46, 27, 57,141,156, 70, 78, 35, +167,145,211,200,105,228,252,111,113,254,103, 80,224,240,241,239,216, 0,180, 51,114, 26, 57,141,156, 70, 78, 35,167,145,211,200, +105,228,252,175,109,198, 46, 66, 35,140, 48,194, 8, 35,140, 48,194,136,207, 12,131, 5,150,194,193,203,203,182,170,223, 78,171, + 74,181,159, 91, 85,170,253,220,182,170,223, 78,133,131,151,215,127, 49,210, 8, 33, 50, 66,200, 87, 66,161,240,146,163,163, 99, + 38, 33,100,202,191,244, 61,205, 8, 33,125, 8, 33,139, 9, 33, 61, 9, 33, 38,159,147,191, 21, 33,130, 1,132,140, 31, 74, 72, +228, 80, 66, 34, 7, 16, 50,190, 21, 33,255,186,101, 51, 22, 77,118,242,191,117,126,208,185, 69,147,157,252, 75, 60, 63,221,201, +250,193,165,126,107,151, 79,112,182,250, 76,233,102,106,111,111,191,217,193,193, 33,194,222,222,254,189,189,189,253,118, 66,136, +185,177,184, 51,194, 8, 35,140,248,255, 7, 65,126,129,220, 18,192,117, 0,173, 40,165, 55,138, 95,100, 85,165,214, 40, 47,207, +154,223,253,176,112, 14,177,181,177,148,233,116,156, 54, 42, 58,206,123,193, 15,203, 15, 91, 85,169,181, 58,245,253,139,173, 31, + 81, 9, 16,150,101,251, 75, 36,146, 46, 0, 10,132,218, 43,181, 90,125,154,227,184, 3,134,206, 10,114,112,112,184,201,178,108, +213,138, 60,155,227,184,200,248,248,248,102, 31, 89,121,245,173, 92,185,242,246,150, 45, 91,154, 52,108,216, 16, 98,177, 24,243, +230,205,155, 6,224, 23, 67, 57,172,172,220, 76,181, 18,233,183, 2,177,184, 61,213,105,124, 41, 40,192, 72, 2,121,189,250,138, + 72,173, 94,157,154,250, 54,203,192,176,204, 6, 48, 12,121,211,202,183, 82, 74, 87,126, 74,102, 24, 86,151,232,116, 92, 94,158, + 16, 9,192,153,155,155, 95,159, 51,103,142,160, 75,151, 46,216,186,117,107,179,205,155, 55,143, 38,132, 92, 1,112,146, 82,250, +246, 83, 51,159, 61, 48,166, 73,179,102,107,135, 78,155,198, 42,111,222,196,218,237,219,215, 32, 51, 19, 0, 54, 84, 52, 47,137, + 68,232, 99, 99, 35,236, 66, 41,234, 18,128, 16,224,105, 82, 10,127, 86,171,229, 14,208,138,174,195,243, 33,247, 87,248,112, 90, +253,222,138,114,100,188,165,115, 37, 93,189,154,103,188,189, 54, 23,192,151,197,207,235, 85,210,161,148,173,212, 69, 73, 3,162, + 0,252,252,137,226,202,196,214,214,246,249,137, 19, 39, 92, 26, 54,108, 40, 0,128,199,143, 31, 15,233,210,165, 75, 27, 66,136, + 47,165, 52,243,255, 72,172, 75, 5, 12, 51, 94, 44, 20,182,231, 56,174, 22, 0,176, 44,251, 66,163,211, 93,210,243,252, 6, 67, +125,170, 25, 97,132, 17,255,106,227, 69,153, 90,228, 31, 41,176, 0, 92,167,148, 18, 66, 8, 69,177,169,222, 10,123, 79,111, 31, + 31,175,105,231,143,237,170,148,145,154,174,250,245,231,221, 1,217,172, 40,199,195,203, 93,252,235, 47, 43, 45,198, 79,158,250, +173,194,222,243, 65,118, 66,112, 80, 5, 34,177,178, 76, 38, 59,186,106,213, 42,223,214,173, 91, 11,237,236,236,144,144,144,128, + 87,175, 94,249, 94,189,122,181,199,174, 93,187,166, 17, 66,122, 81, 74, 13, 89,248,202,253,202,238,237,118,114, 43,107,112, 58, + 29,156,106,215, 45,116,144,247,230,234, 69,232,181, 90,240, 58, 29,188,186,244, 0, 0,240, 60, 15,111,111,111,246, 35, 19,223, +201,199,199,103,207,178,101,203, 68,106,181, 26, 15, 30, 60,192,181,107,215,248,184,184,184, 21,134,114, 40,236, 61, 90, 51, 50, +249,129,254,131,190, 54,239,222,165,186,176,178,189, 45, 0, 19,188, 14,215, 55, 57,119,241,106,131, 99, 7,118,124,163,176,247, +232,159,157, 16,114,173,108,145,102,213,152, 16,178,180,192,163, 51, 33,228,167,106,213,170,205, 47,122, 77,241,117,237, 40,165, + 16, 8, 4, 9, 89, 89, 89,253,147,147,147, 3,138,115,234, 56, 8,246,238,205,211, 15,115,199,127,197,222,190,125, 91,238,237, +237,173, 6,128,149, 43, 87, 98,241,226,197,226, 11, 23, 46,116,218,189,123,119, 39, 66,200, 26, 74,233,201, 79,201,124, 34,224, +251,161,211,166,177,138,136, 8, 40,158, 61,195,160,204, 76,193,143,192,247, 21, 17, 88,132,144,234, 14, 14,194,195,211,166, 14, +247,114,117,107, 44, 18,137,108,242, 22,215,214, 36,123, 68, 70, 6,244, 89,241,227,230,153,132,144,222,148,210, 55, 6,242, 9, + 0, 44, 2, 32, 5, 48, 23,192,188,164,164, 36,119,142,227,224,224,224, 48,143, 16,114, 28,192, 15,182,182,182, 52, 41, 41,105, + 6,165, 84, 95,150,229, 42,243, 45,157, 27, 79, 92,191,168, 89,111, 40,226,201,249, 47,166,126,233,120,206,204,141,252,176, 96, +109,236, 61, 0,248,210,205,205,212,213, 83, 62, 67, 97, 86,203, 42, 51,230,242,140, 47,221,220,182,156,123,107,152,192, 46, 46, + 50, 1,192,201,201,105,229,238,221,187, 43, 53,106,212,168, 48,143,215,169, 83,135, 93,185,114,165,243,148, 41, 83,214, 0, 24, +110, 32,159,135,173,173,237, 5,142,227,212, 41, 41, 41, 30, 5,199,237,252,122, 53,177, 54,149,183, 77, 74,203,186,153,252,242, +248, 13, 3,185, 26, 74, 69,162, 35, 39,247,172,117,172,211,200,159, 81,216,216, 65, 21, 19,139,108,157,182,221,181, 59,247, 91, +141, 30,255,253,228,252, 52,122,104,172, 98,140, 48,226, 63,141, 82,181,200, 63, 89, 96, 33,255,133,254, 2,137, 68, 60,115,193, +156, 25, 36, 61, 37, 93,169,206,202,214,232, 85, 42, 37, 35,228, 85,207, 95,189, 75,100, 4,108,250,212, 73,147, 76,103,204,158, + 51, 19,192, 32, 67,197,149,159,159,223,195,163, 71,143,218, 89, 89, 89, 33, 35, 35, 3, 41, 41, 41,120,248,240, 33, 40,165,232, +213,171,151,164, 81,131, 6,117,231,206,155,119,143, 16,226,111,136,200,146, 91,217, 96,101,179,188, 53, 98,231, 71,164, 20, 60, + 7,155,251,118, 41,188,102,113,116, 6, 0, 64, 42,149, 22, 46, 20,252, 17,240,111,219,182,173, 8, 0, 70,142, 28,153,153,149, +149,181, 28,192, 94, 74,105,140,161,226,202,198,209,233,244,239, 27, 87,202,106,185,185, 67,171,211,227,125,124, 44, 4, 66, 11, +184,184,136, 48,124, 80,123, 97,139, 38, 86, 54, 75,151,108, 62, 35,183,245,232,153,147, 20,114,161, 52, 46, 11, 11,139, 93, 7, + 14, 28,192,193,131, 7, 1, 0, 33, 33, 33,112,119,119,151,151, 23,134,192,192, 64,215,110,221,186,237, 7, 80,163,188,107,139, + 59,178,151, 72, 36,104,214,172, 25,188,189,189,113,226,196,137, 86, 0, 78,126,106, 6, 84,222,188, 9,197,179,103,192,141,138, + 55, 86, 8, 33,213,235,213,171,114,255,236,153, 61, 54,103,206,190,194,207, 63,111,199,219,183,121,134, 53, 87, 87, 87,124, 53, +176,175,240,197,139,187, 62,125,250,124,117,151, 16,210,140, 82, 26, 98, 0,237,162, 45, 91,182,204,174, 86,173, 26,250,244,233, +211,215,199,199,199,193,204,204, 12,155, 54,109,130,163,163,163,171, 70,163,121,115,226,196, 9,167,248,248,120, 76,154, 52, 9, + 0,166,149, 70,212,170, 99,171,185,146,174, 94,205,107,214, 27, 10,133,153, 35,182,236, 59,128,215, 79,118, 53, 87,107, 95,205, + 93, 62,193,121,176,146, 74,134,185,184,155,206,172, 90,191,165,117, 13,159,110,168, 82, 47,192, 70,197,221,122, 55,111,188,235, + 10,129, 84,181,107,193,170,216,148,191,188,115,223,195,172,111,102,176, 85,224, 37,164, 80,186,128,207, 23, 86,133, 5, 17, 71, +209,173, 69,139, 22,133, 9, 23, 17, 17, 1,181, 90, 13, 47, 47, 47, 70,163,209,180, 54, 48, 94, 61, 58,116,232,112,251,236,217, +179,214, 30, 30, 30, 31, 44,221,226, 96,109,209,241,198,209, 53,147,150,174,253,195,211,206,187,103,122, 98,208,177, 23,229,137, +171,166,141,235, 93, 62,119,116,143,130,100, 71, 65,108,145, 12,240, 41, 8,219,191, 13,196,196, 10,253,199, 77, 21,180,110,219, +198,185,253,151,189, 47, 19, 66,218, 82, 74, 31, 25,235, 24, 35,140,248, 79, 91,177,232,191,229, 93, 4, 69,172, 27,164,164, 23, +227, 41, 95,219,193,206, 90,182,102,213,206, 71,172, 86,163, 49,177, 48,211,154,155,153, 83,152,154,177, 90,157, 54,187,178,123, + 53, 17, 79,249,218, 37,145, 23,159,170, 73, 8, 33, 50,153,236,232,201,147, 39,237,132, 66, 33,120,158,135,173,173, 45,194,195, +195,145,158,158,142,172,172, 44,188,125,245, 10,213, 42, 87,194,194,153, 51, 28, 39,205,152,121,148, 16, 82,191,104,119, 97, 73, +211, 63, 57,157,182,120, 2,149,182,184,239, 7,191,101,113,150,130,240,200,200, 72, 40, 20, 10,248,250,250, 42,238,220,185,115, +171, 52,113, 85,156,211,202,202,205, 84,160,144, 29,252,237,247,121, 50,173, 46, 16, 65, 97,169,168, 89,173, 57,236,173, 43, 35, + 54, 85,131,251, 15, 79, 34,240,249, 94,184, 57, 87,198,132,113,109,164, 43, 86, 30, 62, 96,105, 89,189,114, 90,218,187,204,146, + 56, 51, 51, 51, 21,213,171, 87, 71,229,202,121,235,146,113, 28,135,160,160, 32,112, 28, 87,184, 95,244,119,231,145,171,208,103, +190,199,208, 33, 67,144,146,146,162, 40,137, 83,200, 66, 63,117,244, 87, 2,153, 16, 16,203,173, 52,217,217,217,133,214, 64,173, + 86,139,167, 79,159,194,223,223,191,229,161, 67,135,202, 84, 67,134,198,167, 22,248,105,237,142, 29,235, 6,101,100, 48, 0,176, +149, 16, 94, 75,233, 79,134,230, 37, 59, 59,225,145,243,231,118,219,176, 76, 48,172,204,127,196,195,135,239,161,213,230,133, 55, + 37, 37, 17, 19,199,103, 66, 36, 52,197,137, 19,127, 88,123,121, 53, 59,146,223, 69,198,151, 19, 78,233,185,115,231, 48,113,226, + 68, 4, 5, 5, 57,177, 44,139, 7, 15, 30, 64, 38,147, 97,213,170, 85,172,151,151,151,147, 92, 46,199,249,243,231,145,144,144, + 64,202, 10,231,245, 11,215,127,200,120,123,109,110, 60, 57,255,197,150,125, 7,240,245,192,254,112,160, 97,183,204,221,200, 15, + 29,186, 54,157, 79,217, 74, 93,228,166,181, 45,221,125,187, 66, 36, 86, 96,194,247,139, 17, 18,120,202, 50, 55,235,249,120,194, + 69, 85, 66,254,218,124, 31, 44,118,124,168, 15,183,110,223,221,122,151, 42, 63,170,226, 84,111,204, 3, 0,207,255, 20, 88,174, + 2,194,112,230, 5,214,202, 55,111,222,224,237,219,183, 16, 8, 4, 80, 42,149,208,235,245, 37,134,211,217,217,121,140, 94,175, +159,159,159,206, 59, 29, 29, 29, 71,236,217,179,199,186,168,192, 46,176, 92,165,166,103,166,221,125,244,242,245,212, 49,125, 90, +221,188, 31, 24,101,225,215, 35, 50,253,217,241,140, 82,210, 72, 42, 19,139,143,156, 63,246,135, 66,247,238, 42,228, 94,173, 32, + 84,184,131,211,197, 32, 55, 45, 7, 89,111,227,160,254,125, 61,234,140,159,130, 83,199, 15, 43,124,106,213, 63, 68, 8,113,167, +148,106, 62,226,219, 52, 24, 70, 78, 35,167,145,243,127,147,179, 44, 45, 2,160, 30, 0,251,252,255, 41,200, 27, 26, 99, 3, 32, + 25,121,203,118,217, 3,208, 0, 16, 23,185,167,248,126,209,107,139,239, 23,253,159,146,255,223, 46,255,247, 17,128,212,143, 22, + 88,165,171, 73, 38, 83,207,243, 18,177,173,173,122, 68,191,118,190, 23, 47, 63,126, 42,183, 54, 23,116,104, 93,175,229,195, 23, +111,239, 49, 96,116,132, 48, 6,141,235, 96, 89,182,255,154, 53,107,106,153,153,153,129,231,121,152,155,155, 35, 41, 41, 9, 26, +141, 6, 25, 25, 25, 80,103,101, 66,155,149,137,103, 81, 17,104,218,178, 21,122,127,209,193,235,143,227, 39,251, 3,216, 95, 22, +175, 83,237,186,133,150,171,197, 85,173,255, 52, 69, 68,165, 23,138,173, 31,235,186, 67,164, 80,160,253,212,153,159,146,240, 1, + 98,177,248, 92,175, 94,189,190,156, 62,125, 58, 19, 23, 23,119,158, 16,210,148, 82, 90,110,247,168, 86, 34,253,246,155,111,187, + 88, 90, 42, 40, 14, 93, 58,137, 22,117, 7,194, 68,204, 34, 37, 83, 11, 66,128, 87, 47,143,130, 16, 43, 60, 15,137, 67,243, 58, +102,232,208,209, 75,113,252,240,171,233,248,115,252,207, 95,146, 38, 45, 45, 13,137,137,137,208,233,116,208,233,116,232,211,183, + 47,118,239,218,133,156,156, 28, 40,149, 74,104, 52, 26,112, 28, 7,134, 97,112,233,244, 33, 68,189,123,133, 38,254,254, 40,205, +244,186, 51,128, 10, 9, 33,247, 95,191,126,141, 87,175, 94, 33, 58, 58, 26, 82,169, 20, 14, 14, 14, 88,188,120, 49,212,234,188, + 53,196,250,246,237,219, 18,192,139, 79,253,144,222, 2,155,223,233,245,115,191, 60,118,204,238,206,177, 99,252,189,147, 39,163, +165,217,217,155, 12,185, 87, 36, 66,159,149, 63,141,171, 41,151,203, 17, 29,185, 6,158,158, 34, 76,155, 98,141,229, 63, 38, 3, + 0, 38, 77,116, 65,131,250, 54,200, 76, 63, 12, 27,187,217, 88,183,110,178,219,176, 97,171,135, 0,216, 89, 14,245,220,147, 39, + 79,246,118,119,119,119, 14, 8, 8, 32, 98,177, 24, 50,153, 12, 50,153, 12, 82,169, 20,137,137,137, 8, 15, 15,167, 43, 87,174, +140, 65, 94, 23, 98,169,200,239, 6,252,114,234,151,142,231, 94, 63,217,213,220,153,125,247,172,247,132,102, 17,207,239, 7,100, + 93,188,116,103,137, 94, 37,141, 74,143,190, 60,163,122,131, 0,155,241,223, 45,194,250,149, 11,240,250,193,205, 84,251,202,153, + 27,100, 68,189,179, 81,251, 18,172, 98,173, 22, 9,198,207,235,167, 31, 51,172,183,197, 41,251,187, 99,206, 10, 72, 82,124,242, +147, 85, 8, 15, 80, 74,106,212, 29,236,225,202,104,174, 94,189, 42,107,209,162, 5, 84, 42, 85,161, 37,114,207,158, 61,188, 94, +175, 47,177,219, 89,171,213,206,143,137,137,113, 84, 42,149,248,226,139, 47, 38,173, 90,181, 74, 94,176,134, 28,199,113, 31, 88, +174,126,248,101,247,133,111,231,111,184,118, 97,255,143, 78, 63,204, 28,209,106,208,132,165,215, 80,202, 58,143, 2,134, 25,127, +234,216,118, 7,169,165, 14, 50,171, 14, 80, 37, 40,241,122,243,215,200,205, 84,161,193, 15,139, 0,136,161,209, 49,216,212,181, + 15,132,214, 78, 88, 48,106,132,211,156, 77, 91,198, 1, 88, 99,108,199, 27, 97,132, 17,197, 96, 79, 8, 57, 13, 0, 51,103,206, +156,189,124,249,242,151,132,144,211,148,210, 46,249, 13,186,211,148,210, 46, 5,215,228,215,217,127,217, 47,184,182,248,126,241, +255,179,102,205,242, 89,177, 98,197, 50,127,127,255,253,119,239,222,125,247, 49, 2,139, 41, 80,140, 69,127, 63,176, 96,241,252, +205, 55, 97, 17,185, 29,219, 55,118, 62,117,253,197,227,225,195, 59,183,237,215,173,121,135,119, 81,137,193,110, 85, 28,108, 2, + 95, 62, 51,227,121,254,166, 33, 15,147, 72, 36, 93,218,180,105, 35, 72, 75, 75,131,137,137, 9,146,146,146, 16, 19, 19, 3,173, + 86, 11, 85, 70, 58,212, 25,233, 80,165,167, 65,155,145,134,183,143, 31,162,182,155,171, 36,127, 16,124,121,194,167, 68,203, 84, + 81, 75,150,216,212, 20, 18, 83, 83,144, 10,118, 15, 18, 66,186, 91, 90, 90,222, 39,132,204,205,175,140,198,207,152, 49, 35,153, +231,121, 44, 93,186,212, 76,161, 80, 28, 34,132, 72,202,227, 49,181,101,187,248,215,241,101,130,195,159,163,153,223, 80,120, 84, +239,132,240, 4, 37,146,179,180, 72, 76,215,162, 65,139, 95, 81,213,111, 17, 42,213, 89,142, 87,239, 83,225,228,236,206, 64, 32, + 41,115, 81,230,132,132,132, 15,246,247,239,219,135,220,220, 92,184,185,185, 97,224,192,129,152, 49, 99, 6, 6, 14, 28, 8, 39, + 39, 39, 12,234,215, 13, 11, 22, 44, 64, 98, 98, 98,121, 65, 85,123,120,120,168,171, 84,169,162,174, 82,165,138, 90,171,213, 34, + 59, 59, 27,233,233,233,197,227,123,114,133,191, 14,123,251, 89,142,142,142,207,237,237,237, 95, 74,165,210,179, 79, 9, 9, 86, + 87,173,106,223,180, 71, 15,226,221,175, 31, 27,105, 98, 66,110, 0, 10, 67,184,108,172,132,157, 91,183,249, 82,156,158,182, 29, + 64,158, 81,106,196,112, 91,220,190,225,131, 59,183,234, 99,226,120, 55, 16, 70, 10,194,136,145,155,115, 21,141, 26,250,139, 44, + 44, 72,151,114,210,250, 43, 0, 79,155, 54,109,234, 52, 97,194, 4, 34,145, 72, 48,105,210, 36,237,168, 81,163, 66, 7, 14, 28, + 24,122,229,202, 21,174, 74,149, 42,168, 84,169, 18,169, 84,169,146, 35,128,167,249,247,148, 9, 51, 55,242,131, 90,251,234,150, +133,187,252, 29, 7,155, 38,217, 58, 73,159, 5,171, 98, 83,150,108, 8,251, 57,252,117,174,235,235, 7, 55, 83, 66, 3, 79,241, +225,143,174, 39,199,134,102,185, 46,217, 16,246,243,172,245, 49, 37,126,204, 55,110,128, 63,122,250,134, 54, 55, 39, 87,208,163, +107,235,220, 49, 35,251,123, 88, 41,124,246,192,185,131, 95,213,202, 46,131, 22, 44, 91,167, 29, 53,238, 91,237,214,109,219,105, + 86, 86, 22, 50, 51, 51,177,110,221, 58,253,169, 83,167, 98, 56,142,251,182,180,182, 15, 0,232,116, 58,140, 25, 51, 70,110,102, +102,134,168,168,168, 66, 11, 40, 0,196, 37,165,188,184,243, 40, 48,120,234,216,190, 45,115,212,106,245,133,235,143, 95,121,187, + 87,113, 33,132,150, 58,193, 68, 44, 20,182,175,223,168, 17, 75,105, 58,136,160, 50,222,238, 90,137,204,248, 84,100, 38,166,130, + 21,202,161,135, 4, 58, 94, 12,139,218, 13, 17,242, 40, 0,206,182,246, 2,137, 80,104, 92,226,202, 8, 35,254,163, 40, 75,139, + 20, 21, 73, 43, 86,172, 88, 86,214,249, 34,191,154, 98,251,133, 2,170,184,248, 42,250, 31, 0, 86,172, 88,177,140, 82,218,229, +238,221,187,251, 0, 40, 63,230,125,202, 85, 27,172, 74,179,124,250,140,185, 48, 55,147,153, 55,170,235,238,112,252,252,245, 39, + 55,239, 62,126, 85,213,197,198,150,234, 52,150, 63,173, 94,239, 66,114,149,134, 14,242,246,178,177,177,129, 86,171,197,155, 55, +111, 16, 29, 29, 13,173, 86, 11,125, 78, 14,212,233,233, 80,165,165,129,203,201,130,136,227,160, 76, 74,132,181,137, 20,248,115, +134, 97,121, 66,168, 68,129, 85,240, 43, 53, 51,131,196,212, 12,140, 80, 88, 98,247, 97, 41,156,245, 26, 54,108,120, 48, 48, 48, +176, 81,187,118,237,150, 16, 66,204, 41,165,239, 99, 98, 98,218,206,155, 55, 79,109,111,111,143, 49, 99,198,212, 4, 48,180, 92, +113, 41,214,120, 85,113,168, 9, 15,215,161,168, 90,169, 13,210,115,116, 72,202,212, 33, 49, 93,139, 77,191,250,227,200,214,134, +184,125,164, 57, 2, 47,180, 71,186,206, 1, 10,167,238,160,156,198,167, 44,206,187,119,239, 98,227,198,141,216,184,113, 35,126, +255,253,119,172, 95,191, 30,105,105,105,240,245,245, 69,100,100, 36,206,157, 59,135,184,184, 56,216,216,216,224,233,211,167,216, +180,105, 19, 30, 62,124,104, 72, 38, 55,232,154,138,246,149,235,245,250, 97,113, 61,122,212, 74,176,178,242,174, 91,183,238,151, +147, 38, 77,114,109,218,180,105,225,249,234,213,171, 87,150,201,100,241,132,144,173,132,144, 58,101,113,241, 64, 93, 91, 91, 95, +104,212,193,249,105, 37, 4, 33, 82,180,105,255, 10, 77,155, 63,134, 86, 39, 2, 67, 36, 96, 24, 41,244,250, 20, 88, 90, 58,129, + 82,226, 91, 78, 16,231, 37, 37, 37,185, 95,190,124,153, 9, 15, 15,135, 84, 42, 5,128,136,133, 11, 23,174,255,249,231,159,131, +172,173,173,185,211,167, 79,227,248,241,227,232,210,165, 11, 59,106,212, 40,247, 74,149, 42,109, 44,239,189, 23,172,141,189,183, +119,245,185, 1, 66,157,101, 29,169,172,106, 53,228, 40,186,143,111,101, 43, 7,128,115,111,223,102,217, 85,206, 92,145,147,245, + 60,210,194, 37,251,199,242, 6,184, 83,186,128,127, 18, 26,124,127,239,177,243, 25,137, 9,105,194,186,181,124,148,203, 23,127, + 39,170, 90,173,198, 79, 11,102,140,117,136,201,148,166,183,159,116, 46,248,232,249,135,217,131,135,127,173, 31, 57,122,130,234, +220,249, 75,199,120,158,175, 85,218, 12, 66,158,231, 17, 23, 23,135,151, 47, 95, 34, 44, 44, 12, 73, 73, 73, 72, 78, 78, 70, 86, + 86, 86, 97,183,162, 73, 86,230,153,245, 59, 78, 61,147,203,100, 38,141,106,185, 87,126, 16, 16,148, 40,151,201, 76,220,171, 85, +246, 32,100, 81,137,229, 8,199,113,181,164, 38, 50, 0, 4,233,129, 55,145,157,150,141,236,244,108,100,165,102, 67,173,101,161, + 82, 51, 80,106, 24, 84,105,217, 1,217, 57, 42,100,167,100,128,231, 56, 63, 99, 53, 99,132, 17, 70,148, 81, 47,159,158, 57,115, +230,108, 3, 47, 55,184, 27,179,184,224,154, 57,115,230,108, 66,200,233, 89,179,102,249,192,128, 49,203, 37,161, 92, 55, 13,201, +201, 33,217,102,182,222,189,166,124, 63,255,220,190,109, 27,108, 53, 26,101,164,141,165,130, 51, 53,145, 88,142, 26,179, 20, 89, +217,105, 61,179, 83, 13,159,245,148,150,150,134,119,239,222, 65, 38,147, 65, 36, 20,130, 83, 42,193, 41,115,160, 76, 75, 1,163, + 85, 67,196,113,176, 50,145,161,138,147, 3,170,218, 59, 24,196,249,230,234,197,194, 1,237, 69,187, 5, 87, 54,244,130, 88,174, +128,216, 84,129,111, 78, 95, 7, 0,136, 68, 34, 96,222, 18, 67, 18,209,198,217,217,249,228,222,189,123, 69, 73, 73, 73,120,250, +244,233, 51, 74,105, 6, 33,196, 20, 0,255,234,213,171,203,129,129,129, 93,220,221,221, 1,192,173, 60,190,204,100,134,211,233, + 41,162,226, 35, 16, 30, 29, 0, 43,243,234, 16,154,120, 32, 49, 93, 11,137,172, 58,116,234, 63,123, 25, 85,153,239,161,212, 26, + 54,209, 81,171,213, 66,171,213, 66,167,211, 65,173, 86, 99,240,224,193,184,115,247, 46,246, 31,191,130,119,111, 67, 80,179,154, + 3,134, 12, 25,140, 58,117,234,224,209,163,178,199, 15, 15,171, 75,116,115, 90, 64,176,250, 75, 6, 98,133,181,186,241,140, 11, + 15, 12, 17, 89,101,181, 54,138,196,231,207, 93,186,116,169, 17,146,147,131,151,193,193,104,183,112, 33, 0,224,204,153, 51,133, +215,104, 52, 26, 76,157, 58, 85, 28, 20, 20, 52,242,241,227,199, 35, 9, 33,171, 41,165, 37, 15, 34,167,192,153, 51,247, 48,118, +108, 16,146,146,242,198, 97, 31,216,247,167, 30, 13,127,167,197, 23,157,243,122,174, 44, 44, 44,176,122,181,175, 65,241,201,113, + 28, 54,111,222, 92,216, 45, 8, 0, 2,129,160,233,212,169, 83,123,149,116,125,141, 26, 53, 68,229,113, 78,237,235, 34,125,250, + 94, 54,222,188, 70, 85, 31, 51,155,218, 72,209, 5,248, 6,196,196, 77,156,218,215,101,205,234, 67,209, 42, 25, 81,239, 36, 92, + 84, 37,129, 84,181,203,144, 48,190, 61,183, 78, 99, 81,117,248,174,248,164,204, 57, 19,190,254,202,218,204,194, 46,103,235,250, +229,150, 12,203,208,147,143,181,233, 62,174,214, 22,221, 27,175,205, 30, 59,101, 94,128, 70, 31, 53, 1, 81, 39, 67,202,114, 85, +193,113, 28, 98, 99, 99,145,148,148,132,200,200, 72, 36, 39, 39,231,127,251,201,127,153,137, 90,193,130, 16,202,200, 72,188, 63, +182, 21, 85, 7, 15, 70,131, 37,139,193,241, 2, 40,115, 57,172,110,210, 22,105, 25, 74,168,121, 2,167,122, 77,240,245,217, 91, + 96, 40, 7,108,218, 96,172, 65,140, 48,226,191, 43,158, 74,213, 34,197,133,208,242,229,203,187,124,238,231, 23, 21, 89,203,151, + 47,127,185,124,249,242, 79,122, 86,185,110, 26, 0, 32, 51, 41, 40,204,186, 74,237,216, 28,101,182,137,157,189,141, 70, 33,149, +240, 25,153, 57,108,192,139,103,218,236,184, 55,175, 43,240,188, 87,129,129,129,190,177,177,177,136,124,255, 30,122,101, 14, 24, +181, 6, 84,149,139,118,205,154, 64, 10, 64,202, 16,136,120, 45, 4,172, 24, 89,217,153, 0,240,170,220, 74, 81,167,251,139, 37, +139, 16, 2,177,169, 41,196,114, 57,196, 10,211, 15, 44, 90,134, 88,104, 36, 18,201,222, 67,135, 14, 57, 58, 59, 59, 99,241,226, +197,112,113,113,241,172, 85,171, 86,110,243,230,205,101,246,246,246,240,246,246, 70,147, 38, 77,112,238,220, 57, 0, 40,215, 39, +148, 78, 47,125,254, 58, 2, 77,147, 83,239,226,214,245,223,161, 81,170, 81,183,229,239,208, 10,170,194,214,103, 17,248, 55,123, +144, 27,127, 34,207, 90,224,208, 21,209,145, 17, 32,172,248,101, 5, 51, 7,158, 63,127,142,125, 39,110,192,177,138, 23, 34, 67, +131, 17,124,237, 50,238,216, 90,163,170,183, 15,116, 58, 93,153,239,174,227, 32,248, 97, 67,161,155, 6, 73,106,106,170,196,202, +202, 74, 93, 16,119,142,142,142,159, 34,178,190,154, 62,125, 58,210,133, 66,160,115,103,136,194,194,160,213,106,225,239,239,143, +250,245,235, 3, 0,252,253,253, 33, 16, 8, 80,187,118,109, 56, 57, 57, 97,195,134, 13, 95,161,148, 89,122, 12,193, 83,189, 62, +197,211,213,213,181, 80, 96,237,218,157,132,128,199,237, 65, 32,198,186,245,127,122,101,168, 92,185, 50,226,227,194, 64, 8, 13, + 44, 39,140, 75, 28, 28, 28,230, 57, 58, 58,186,254,252,243,207,172, 84, 42,197,184,113,227,170,103,103,103, 87,205, 55, 25, 99, +214,172, 89,121, 86,169, 5, 11,176,112,225, 66,168,213,234,220,210,200,118,255, 82,219, 41, 49,149, 31,105,239,224,220,179,181, + 77,213, 90,109, 58,182, 67,117,247, 54,104,211, 49, 18, 0,150, 89, 9, 34,250,173,156,235,123,204,166,146,213,246,139,231, 47, + 45,104,214,178,205,156,153, 99, 44,127, 88,177, 41,173,220, 49,141, 25,239,119,102,189, 22,247,255,229,215,141,187,127,153, 63, +107,178, 52, 50, 73,147, 22,147, 70,179, 21, 18,129,194,205,158, 40, 38,126,191,228, 93,108,108,216, 52, 68,157, 47,119,230, 36, +207,243, 8, 11, 11, 43, 28,179,167, 82,169,144,147,147,131,168,168,168,194, 46, 66,165,220,236,139, 9,195,187,250,229, 40,149, +185, 15, 94,132, 70,206,157, 52,200, 63, 71,169,204, 13, 13,143, 12,161,116,109,137, 42,140, 97,152, 23,185, 89,185,237,114,211, + 85, 72,122,250, 26, 46,109,171, 64,167, 39,208,232, 57, 36,165,100, 65,173, 7, 56, 70, 8,159,126, 67,192, 17, 1,146, 99, 99, +192,176,236, 51, 99, 53, 99,132, 17,255, 89,148,235,166,129, 16,114,218,223,223,127,127, 81, 43, 83,193,127, 0,106, 0,101, 13, +217, 73, 42, 42,162, 10,186, 13, 75,123, 78, 49,222,143, 22, 88,101,118,247, 16, 66,136, 95,173, 42, 78, 43, 23,124,229,194,235, +245, 53, 19,147, 19,244, 2,129, 68, 88,201, 92, 25, 87,145,135,169,213,234,211,151, 47, 95,238,209,190,125,123, 73,232,139,103, +208,100,100, 64,147,145, 14, 33,175,135,149,172, 62, 24,173, 26, 68,163,129,179, 39, 15, 85,150, 12, 55,238, 4,234,212,106,245, +105, 67, 5, 22,195,178, 31,142,187, 82, 40, 32, 49, 53,131, 68,161, 40,222,133, 72,202, 81,209, 38,221,186,117,107,219,184,113, + 99, 80, 74,177,121,243,102,104,181, 90,177, 86,171,133, 70,163,129, 86,171, 69,102,102, 38,118,239,222,141,223,126,251,237, 14, +128, 29,229, 86, 98,122,205,229, 11,151,174, 54, 28, 49,168,139,240,236,233,213,208,107, 56, 40,137, 11,114,114,116,200,214,152, +128,179, 30, 12, 36,156, 1, 43,144,194,191,118,117,156, 56,124, 84, 11,189,250,138, 33,162,170, 40, 84, 42, 21,162, 34, 35, 16, +253, 54, 4,138,204,120,216,154,153, 32, 55, 44, 4,117,134, 12,133, 70,163,169,112, 6,169, 84,169, 18,120,158, 71,235,214,173, + 11, 7, 77,127,172,200, 74, 73, 73,193,169, 83,167,208,184,113, 99,180,108,217, 18, 49, 49, 49, 8, 11, 11, 67,231,206,157, 11, +175,121,246,236, 25, 2, 2, 2,224,230, 86,182, 81, 48, 57, 85,119, 54, 58,234,105,223,238,221,187,139,238,223,191, 15, 74, 41, +220,221,205, 96,102, 42, 7, 97, 36,240,242,178, 3,144,167,253, 91,181,106,133,204,204, 48,125, 90, 26, 61, 91, 78, 92,238, 37, +132, 28,215,104, 52,111, 90,180,104,225,244,246,237, 91, 76,153, 50, 69,112,224,192,129, 2,147, 49,102,206,252,112,146,132, 82, + 89,122,215,124,205, 90,158,223, 85,215, 91,182,148,202,170, 86, 51,179,169,141,234,238,109, 0, 0,237,187,140, 64,245, 26,149, +145,153,252,188,154, 74, 25,209, 83, 36, 72,179,124,190, 46, 38, 72,214,217,119,184, 42,241,122, 40, 0, 67, 28,247, 82,101,232, +129,132, 72,225,224,131,199, 79,158, 27,211,169, 75, 55,161,142,211,235,125,171, 8, 45, 14, 29, 59,147, 24,243, 62,114, 45, 34, +207, 7,254,105,239, 43,211,106,199,101,102,102, 66, 46,151, 35, 48, 48, 80,221,185,115,103, 9,195, 48,120,243,230, 77,161,192, +178,179,177,242,110,218,192,215,243,135, 95,118, 95,144, 75, 36,146,142,173,234,123, 5,133,190,143,166,148, 68,148,198,171,209, +233, 46,189,120,250,172,181,173, 83, 13, 54,236,250,125, 88, 55,239, 4,181,154,129, 82,195, 67,173, 7,244,172, 8,142,117, 26, +193,194,205, 11, 20,192,163,251,119,116,106,157,238,130,177,142, 49,194,136,255,180, 21,139,150, 37,142,242,255,167, 2,136, 88, +190,124,121,114, 17,235, 82, 18,128,103, 0,252,242,175, 75, 42,118, 95, 18,242,102, 3, 54, 40,194,147, 84, 68,104, 21,253,175, + 41,118,205, 71, 53,252,202,117,211, 0, 0, 54, 54, 54,118,117,235,214,119,219,178,237, 32, 40,165,120, 29,176, 10,105,137,193, +152,183,236,158,155,139,139, 75,203,232,232,232, 27,134, 60,140,227,184, 3,219,183,111,159,214,168, 94,221,186,213, 92, 92,240, + 44, 34, 28, 34,202, 65,196,113, 96,180,106, 8, 56, 13, 92,124, 57, 48, 68,129,216,216, 12,172,216,123, 48,144,227,184, 3,229, +241,122,118,234,134,197,209, 25, 32,132,224,103,127, 95,136, 77, 21, 16,201, 21,248,230,228,213, 66, 81,117,122,241, 44,136, 21, + 10,184, 53, 42,223,129, 59,165, 52,215,212,212,244,241,139, 23, 47, 26,248,250,250, 98,218,180,105,136,136,136, 0,207,243, 72, + 72, 72, 80,197,197,197,197, 36, 37, 37, 69, 0, 56, 6, 96,139, 33,158,194, 69,106,213,154,211, 71,118, 77,240,111,214,210,166, +123,207,223,112,252,240, 84,164,103,100, 34, 87, 47, 67,142, 74,143, 28, 53, 11, 43,235, 90,104, 84,187, 54, 98, 99, 18,241,242, +254,133,108,129, 58,119, 85, 69,172, 87, 12,195,224,217,179,103,112,117, 50, 69,200,173, 27,176, 49, 17,194,207,201, 1, 78, 77, +155, 33, 44, 44,172, 92, 14, 33, 11,253, 87, 95,125, 85,232,201,189, 67,135, 14,225,131, 7, 15,118,156, 58,117, 42,182,109,219, +134, 59,119,238,252,101,224,117,203,150, 45,113,243,230,205, 69, 0, 22,148,103,196,211,104, 52,240,244,244,196,163, 71,143,112, +249,242,101,180,105,211, 6, 45, 91,182,196,243,231,207,113,241,226, 69, 4, 4, 4,128, 16, 2,107,107,107,232,242, 68,179,174, + 52, 50,173, 22,135,126,252,105,251,236, 95,126,249,205,103,208,160, 65, 56,114,100, 63, 70, 12,175, 9,194, 72, 64,136, 4,221, +186,214,196,226, 37,143,208,168, 81, 43,216,216, 8,241,203,234, 19,239,148, 74,110,183, 1, 81,249,195,197,139, 23,157, 84, 42, + 21,210,211,211,169, 66,161, 32, 41, 41,121, 51, 84, 75,178, 96,229,230,230, 74, 75, 35,122,241,228,213,170,244, 44,154, 70,179, + 3,122,166,234, 3,106,181,233, 24,133,246, 93,134,227,210,233, 29,184,122,225, 50,172, 4, 17,225,144,103,157, 75, 14, 79,206, +140,203,113,223,232, 85,111, 20, 27,157,115, 97,227,164,238,150,172,163, 35,127,104,230,111, 25,233,101,164, 55, 37,132,144,212, +160, 61, 39,143, 81,116,107,226,223,168,134,111,101, 71,113, 90,114, 34, 61,124,226, 92,160, 54,252,200,169, 2, 97, 85,222,170, + 8,148,210,197, 51,103,206,156,159,255,127,231,220,185,115, 71,173, 88,177,194, 54, 62, 62,190,112, 12, 86, 98,114,234,213, 38, +157, 39,114, 41,233, 25,154,237,191,124,223, 71, 38,149,136,231,174,216,126, 93,199,226,126,105,188,122,158,223,208,111,202,188, +201,161,175, 3,156,171,202,196, 56,241,253, 2, 60,187,120, 13, 58, 70,132,177,151, 31, 64,173,229,144,158,156,130, 43, 35,199, + 67, 97,111,137,223,174, 31, 73,224,121,254,119, 99, 21, 99,132, 17,255, 93,148,161, 69, 74, 26,227,146, 96,192,117,143, 12,224, +249, 91, 96,208,148,186,228,228,228,196,155, 55, 31,224,250,233, 31,112,227,244, 15,120, 25,240, 12,177, 49, 26,196, 36,168, 96, +102,102,118,175, 12, 37,218,174,120,165,144,155,155,219,107,238,188,249,241, 82,153, 9, 90,180,109, 11, 7, 91, 59,152,136,132, + 96,245, 60, 88, 34, 68,118,146, 5, 66,158,231, 98,198,246, 61,137,217,185,185,189,138, 87, 14,197, 57,139, 28, 7, 33, 4, 18, + 51, 83,136, 21,166,144,152,154,125,208, 93, 40, 53, 51,131,212,212, 12, 2,177,184,164,193,240,127,225,204,206,206,238,221,167, + 79,159,180,140,140, 12,140, 26, 53, 10, 55,110,220, 8,184,112,225,130,217,179,103,207,100,137,137,137, 53, 40,165, 29, 40,165, +155, 74, 19, 87,197, 57, 83, 83,223,102, 81,189,186,255,242,249,223, 42, 85,122,107,244, 29,122, 0,114, 38, 10,122,142, 7, 5, +224,100, 37, 70,211,118, 75,144,168,105,130, 3, 27,151,230,242, 90,213,160,162, 62,176,138,115, 82, 74,169,181,181,245, 7,239, +194, 48, 12,174, 95,191,142,190,125,122,163, 99,207, 30,176,173,230, 10,187,118,157,208,113,212, 88,108,218,180, 9, 12,195,192, +202,202,234, 3,139, 70, 81,206,157, 1, 84,184,247, 57, 37,123,159, 83,178,227, 9, 21, 0, 24,178,103,207,158, 31,253,252,252, +174,221,185,115,103, 21,128,254, 69,227,187, 72, 88, 22, 22,181, 94,149,146, 70,115, 38, 79,158,172, 12, 13, 13,133, 92, 46,135, + 94,175,199,157, 59,119,240,219,111,191,225,231,159,127, 70, 64, 64, 0,172,173,173,225,230,230, 6,181, 90,141, 71,143, 30, 41, + 1,204, 41, 35, 47,241, 73, 73,250,222,235,214,173, 72,233,210,165, 57,182,111, 95, 15, 7,135, 38, 16, 10, 28, 32, 16,218, 66, +174,240,196,214, 45, 63,226,203, 47,235,226,228,137,131,169,201, 41,250,222,197,189,174,151, 18, 78,213,131, 7, 15,176,113,227, + 70,244,233,211, 39,166,111,223,190, 92, 70, 70, 70,161, 5,171, 96,149,244,133,249, 99,200,212,106,181,164, 52,206, 81,223,191, +136,249,238,135,192,197, 9,241, 49,141,111, 92,187,247,213,213, 11,151,241, 46,244, 42,174, 94,184,140, 91, 87,239,206, 76,136, +143,105, 92,183,161,135,168,215,168, 9,223,237, 58,122,132, 85,152, 57, 98,215,209, 35,236,192,137,223, 46,173,223,177,205,156, +242,242,124,126, 58,210,236,196,132, 89,203, 86,253,154,173,215,170,152,149,107, 55,196, 42,147,226,230,160, 96,106,101, 41,214, +171,162,156,185,185,185,155,148, 74,165,147, 82,169,116, 82,169, 84,115, 34, 34, 34, 90, 76,155, 54, 45,137,227,184, 66, 11,105, +226,203, 19,247, 94,221,218,177,204,206,198, 82,214,164,129, 79,205,213,155, 14, 95,143,140, 74,248,163,192, 7, 86, 41,105,164, +202, 86,170,122,247,232, 53, 56, 39, 61, 77, 13,255,111,103,130,151, 42,160,230, 0, 29,101,161, 39, 2,188,248, 97, 53,100, 86, +166,216, 27,254, 36, 55, 67,167,237, 93,212, 7, 86, 57,239,254, 41, 45,100, 35,167,145,211,200,249, 63,200,249,111,131,160, 64, + 49, 22,253, 45, 14,103,103,231, 22,221,187,181, 67,171, 46,115, 65, 41, 69,240,147,159,144,150,244, 26,206, 14, 18,132, 69,102, +250, 3,184, 97,232, 3, 41,165,145,132,144,198,147,231,204, 61,218,183, 67, 91, 47,223,106,213, 36, 85,171, 86,129,220,206, 14, +201,201, 73,184,125, 63, 72,183,116,223,161,192,124,113,101,200, 82, 57,224,121, 62,111,240, 58,128,182,147,103,128,176, 44,144, +239,142,161,160, 66,172,214,160, 9,136, 64, 0,142,242, 80,171,213,212,128,112, 70, 19, 66,122, 15, 26, 52,232,202,233,211,167, +153,142, 29, 59,214, 57,118,236, 24,255, 41,145,157,157, 16,114, 77, 97,239,209,101,233,172, 49, 7, 26,183,233, 97,230,238, 83, + 95, 84,191, 42, 11,173,142, 32, 54,230, 61, 78, 31,125,168, 13,122,112, 33,147,234, 85,253,115,146,202, 94, 42, 71,171,213, 70, +218,219,219,219, 47, 90,180, 8,122,189, 30,122,189, 30, 28,199, 33, 57, 57, 25,247,238,221, 67,173, 6,141,224, 53,124, 36,146, +146,146,176,110,221, 58,184,184,184, 96,217,178,101, 72, 77, 77,133, 94,175,143, 52, 48,173, 56, 0, 23,242,183, 15,132,108, 65, + 43,163,188,238, 65, 55, 55, 55,177, 74,165,170,227,232,232, 40, 32,132,172,209,104, 52,195,103,205,154,229,176,108,217, 50,212, +172, 89, 19,201,201,201,144,203,229,112,119,119, 71, 82, 82, 18, 30, 62,124,200,229,230,230,110, 4,176,152, 82,154, 84, 78,248, +222, 16, 66, 26, 79,154,244,205,209, 31, 87,140,113, 87,169, 91,137,173,172,154,129, 82, 61,146,146, 34,144,149,121, 71,187,100, +241,142,183, 9,137,186, 94,148,210, 80, 3,147,105,193,132, 9, 19,128,252,165,114,194,194,194,158,122,121,121,185,151,102,193, + 50, 4,171, 15, 69,171, 0,236, 91, 57,165,201,148,204,228,231,238, 86,130,136,240,198,190,252,186,213,135,162, 85,139,166, 88, +252,144, 28,113, 35, 36, 46,231,194,198, 93, 71,143,176, 67,123,246,230, 92, 20,161, 51,165,118,244,112,155,174,229,166, 15,173, + 83,167, 78, 37, 66, 82,171, 39,166,188,126, 60, 98,212,152,126,230, 34,229, 89, 63,151, 20, 55,166,114, 93,105, 64, 64, 64,184, +161,107,122, 22,227, 13, 33,132,180,152, 53,107,214, 5, 74,233, 7, 99, 15, 18,147, 83,175,250,119,153, 64,211,211, 51,158, 38, + 6,157,120, 97, 0,215, 67, 66, 72, 91,223, 90,117,143,252,184,108,133,125,171,201,211, 4, 33,215,174, 3,156, 14,239,111, 92, + 7, 39,209,240,171,239, 94, 74,200,208,106,123, 26,189,184, 27, 97,132,209,122, 85,150, 22,249, 71, 10,172,242, 16, 29, 29,125, +195,205,213,229, 98, 72, 72,139, 14,149, 93,108, 1, 0, 97,225,177,136, 73, 80, 95, 52,180,123,176, 4,145, 85,127,207,169,179, +253, 37, 18, 73, 23,146,239,138,129,126,196, 98,207,122,189, 62,186, 90,181,106,165,156, 45,217, 85, 19,199,113, 9, 6,134,243, + 58, 33,100,176,155,155,219,138,247,239,223, 31,165,148,230,124,106,132,103, 39,132, 92,179,178,114,115,189,123,249,200,183,247, +175,159,110, 71,245,154, 90, 0, 64, 4,226, 10, 45,246,156,157,157, 61,102,220,184,113,155,132, 66, 97,101,228,143, 41, 43,152, +241,197,113, 28,171,213,106,165, 28,199,177, 0, 8,195, 48,122,161, 80,168, 58,122,244,168, 94,175,215, 71,170,213,234, 49,159, +250, 1, 24,138,179,103,207, 86,181,180,180,236, 64, 8,233, 67, 41,245,204,202,202, 82,207,157, 59,247,222,209,163, 71, 51,170, + 84,169,242, 69,231,206,157,137,149,149, 21, 30, 61,122, 68, 83, 82, 82, 14, 3,152, 67, 41, 13,171, 64,120,194, 8, 33,126, 99, +198,254, 62,192,202,106, 83,103, 74,225, 7, 10, 66, 24,188,200,200,224,207,230,230,114,127,228, 11, 69, 67,249,244,197, 44,103, + 75, 2, 3, 3,119, 0, 16,150, 52, 6,171, 66, 48,201, 62,169, 82, 70,244, 38,138,220, 99,171,215, 70,171, 0, 96,193, 47,233, + 25, 0,182, 78,234,105,197,191,122,178,245, 39,103,179,208,239,215, 30, 75,221,110, 8, 93,221,186,117, 93, 25,134,233, 15,192, +215, 78,146, 94,195, 86,156,193, 17, 66, 91, 19,194,216, 0,120,238,237,237,125, 26, 64,244, 71,166,115, 8,128, 42,197,143, 39, +190, 60,113, 15,192,189, 10,114, 61, 36,132,212,152, 50,125,234,120,177, 80,216, 30, 28, 87,123,201,241, 67,212,184,216,179, 17, + 70, 24,241,175,183, 96, 25,130,183, 97,209, 29, 1,192,195,195,131,134,134,134,126,178,194,204, 23, 80,251, 81,142,151,246,242, +144,156,156, 92,255,111, 86,212,251, 0,236,251,156,156,249, 2,106,113,254,246,177,225,122, 1,160,209,255,117,107, 35,191,175, +124, 81,105,215,116,232,208,225,189, 86,171,189,156, 95,209, 91, 0, 72,213,233,116,231, 53, 26, 77, 2, 33,164,254,234,213,171, + 11, 60,213, 47,161,148, 62,254,200,112,240, 0,246,230,111,159,251, 29,247, 58, 57, 57, 77,181,182,182,118, 83,169, 84, 98,149, + 74, 37, 42,170,253,101, 50, 89,146,161, 92, 22,166,100,167, 72,144,102,109, 97, 74,254, 34,160,172,156,113, 68,153, 19, 88,211, +202, 25, 71, 12,229, 11, 8, 8, 8,171, 83,167,206, 30,134, 97,170, 81, 74,237, 1,106, 78, 41,146, 40,165,201, 2,129, 32, 38, + 40, 40, 40,230,127,165,160,201, 23, 80,171,242, 55, 35,140, 48,194, 8,163,192, 42,142,144,144, 16, 98,140, 54, 35,138,138,172, +178,206, 71, 68, 68,168, 1,220,205,223,138,223,251, 24, 64,215,255,245,119,140,141,141,173,251, 57,120, 70,125,255, 34, 6,192, +183,245, 75, 88,114,121,193,186,212, 44, 0,223,181,238, 86, 49,206,167, 79,159, 70, 2,136, 52,230, 68, 35,140, 48,194,136,255, + 45, 48,198, 40, 48,194, 8, 35,140, 48,194, 8, 35,140,248,188, 32, 0, 74,156, 9, 80,145,149,178, 63,102, 54, 65,121,252, 70, + 78, 35,167,145,211,200,105,228, 52,114, 26, 57,255,125,156,255, 25, 20,204,178,251, 59, 54, 0,237,140,156, 70, 78, 35,167,145, +211,200,105,228, 52,114, 26, 57,255,107,155,192, 40, 49,141, 48,194,136,255, 42, 14, 31, 62,108,208,162,159, 3,190,223,218, 69, +161,176,156,151,157,153,177, 98,255,170, 17,199, 10,142,247,233,211,135, 51,198,162, 17, 70, 24, 81, 18, 74, 21, 88,174,174,149, +188, 25,142,111, 74, 41,195, 82,134,234, 72,166,242,192,219,212,212, 15,220, 7, 84,174, 92,217, 66,200,160, 43,161, 84, 78, 8, +207,241, 44,115, 39, 44, 44, 42,200,208,135, 19, 66,196,150,150,150, 19, 68, 34, 81, 59,141, 70,227,194, 48, 76,180, 90,173,190, +156,155,155,187,190,184,195,193,255, 75,212,172, 89,115,224,245,235,215, 45,154, 53,107,166,150,201,100,122,165, 82, 41, 56,127, +254,188,228,203, 47,191, 76,127,243,230,205, 71,205, 48,116,118,118,110,179,117,235,214,234, 29, 59,118, 68,141, 26, 53,114,250, +247,239, 47,242,247,247, 23,141, 26, 53,234, 93, 76, 76,204,213,138,112, 17, 66,188, 9, 33,187, 9, 33, 44,207,243, 67,242,103, + 24,126,118, 16, 66, 24, 0,163, 1,244, 0,224, 10, 32, 12,192,113, 0,155, 13,241,102, 95, 2, 95,111, 0,157, 0,248,229, 31, +122, 6,224, 44,165,244,200, 39,132,177, 55,128, 78,132,144, 58,249, 22,218,167,159,139, 83, 40, 20,214, 1, 0,157, 78,247,244, +127, 37,156,132,144,225, 50,153,236,107, 0, 80, 42,149, 91, 40,165, 59, 42, 28,152, 77, 94, 20, 0,188,127, 10, 6, 0, 4,125, +239, 9, 67,247,131,222, 85,112, 54,113, 41,207,194,152, 87,228, 19,226,178,211,160, 65,131,150,253,241,199, 31, 11, 40,165, 39, +254,142,188,239,224, 80,105,253,207,107, 55, 59,125, 59, 97,228, 10,228,173,224, 80, 38,124, 8,105, 47,102,217,110, 26,142,187, + 21, 4, 28, 2, 32,176,178,178, 26, 40, 22,139, 91,104, 52, 26, 71,129, 64, 16,167,209,104,110,102,100,100,236,163,148,234, 62, + 57,128,193,196, 82,155, 11, 7,194,255,185, 14, 27,101,160, 22,153, 32, 30,158, 52,173,172, 91, 89,150, 93,229,236,236, 60, 58, + 61, 61, 61,155, 97, 24, 74,242,144, 31,181,133,206,154, 9,207,243, 49,169,169,169,245, 63, 50,141,164, 0, 22, 34,111, 77,183, +181,148,150, 29,166, 82,194,249,173,147,147, 83,207,204,204,204, 92,150,101,105,145,240, 17, 0, 96, 24,134,240, 60,159,152,146, +146, 50,196, 88,181,151, 14, 39, 39, 39, 70, 36, 18, 13,101, 24,102,181, 94,175,175, 30, 25, 25,153, 6, 0,118,118,118,126,137, +137,137,198,181, 64, 63,183,192, 42,226,150,190, 21,165,244,134,171,107, 37,239, 62, 61,122, 45, 27, 59,102, 28, 97, 89, 6,129, + 47, 95, 10,190, 26, 50,188,131,149,149,149,179, 66,173,246, 2, 33,124,174, 84, 26,168,211,105, 99, 14,237,251,195,212,179,102, + 77,142,227,120,108,220,244,251,151,174,174,149,102, 27, 34,178, 8, 33, 30, 14, 14, 14,187,103,206,156,233,208,173, 91, 55,214, +193,193, 1, 17, 17, 17, 22,251,247,239,175,249,235,175,191,246, 35,132, 12,201,247,197, 83,209, 15,185,185,131, 21,211,193, 84, + 70,218, 34,139, 67,150, 14, 87,226,149,184, 72, 41,189,245,177,145,148,155,155, 59, 49, 55, 55,183, 81,131, 6, 13,232,182,109, +219,200,176, 97,195, 40, 33,132, 40,149,202,157,248, 72, 23, 14,114,185,124, 67,199,142, 29,221,221,221,221,195,222,190,125,219, +233,224,193,131,103,135, 14, 29,234, 42,151,203, 67, 1,120, 84,144,110, 71, 74, 74,138,159, 82,169,132,139,139,203, 54, 0,245, +254, 6,113, 69, 0, 28,177,178,178, 82, 45, 94,188,120, 75,171, 86,173,156, 99, 99, 99,185, 25, 51,102, 52,125,250,244,233, 23, +132,144, 30,134,138, 44, 66,136, 37,128,141, 10,133,194,100,198,140, 25, 55,219,183,111, 31,174, 80, 40,164,207,159, 63, 23,206, +152, 49, 99, 52, 33,164, 47,128,177, 21, 41,132, 11, 56,109,109,109, 45, 22, 44, 88,240,162, 73,147, 38, 55, 68, 34,145,232,245, +235,215,194,153, 51,103,142,255, 20, 78,119,119,119,211,249,243,231, 63,170, 83,167, 78,130, 84, 42, 21,189,125,251, 86, 56,123, +246,236,177, 44,203,246,229,121,254,163, 56,173,172,172,204,102,207,158,253,184,101,203,150, 73, 18,137, 68, 28, 20, 20, 36,152, + 53,107,214,216,138,132,211,218,218,186,181,181,181,245,230,248,248,120, 1, 0, 56, 58, 58, 54,116,115,115,251,181,192, 31, 90, +190,112, 67,190, 40,204, 82,169, 84,131, 82, 82, 82,254,226,192,214,251,167, 96,124, 55,127,231,192,239,230,231,237,239,202, 63, + 94,222, 62, 48,204,224,188,239, 93, 61,175,140, 25, 63,253,183,193,121,191,121,199,127,207, 15,234,134,234,132, 86, 68,172, 17, + 66,186,183,105,211,102,225,213,171, 87,127,111,213,170,213,140, 61,123,246,216, 69, 69, 69,253, 72, 8,169, 52, 96,192,128, 97, + 87,174, 92, 89,158,148,148,116,248,115,229,127,177, 72, 34, 33, 12,129, 76,106, 98,102,200,245, 66,134,233,114,183,123,247,175, +183,188,126, 93,247,215,224,224,234, 57,142,142,141, 38, 77,154,100,223,171, 87, 47,166, 82,165, 74,120,243,230,141,245,158, 61, +123,188,182,108,217,210,147, 16, 50,153, 82,250,254, 83,196, 85, 78, 58,106,169, 53,168, 75, 41, 44,254,140, 35,164, 75,180, 8, +144, 7,147, 23,165,137, 44, 66,200, 47,221,187,119, 31,114,252,248,113,197,158, 61,123, 20, 77,154, 52,129,189,189, 61, 8, 33, +224, 56, 14, 60,207,131,231,249,252,181, 62,221, 63,101, 6,249,154, 91,183,110,141,126,243,230, 13, 70,141, 26,197, 2,152, 91, +193,242,103,106,207,158, 61, 59, 31, 61,122, 84,118,232,208, 33, 89,131, 6, 13,224,224,224, 0, 0,133,225,163,148,162,122,245, +234,255,186, 74,218,213,213,149,138,197, 98,176, 44, 11, 74, 41,120,158,135, 78,167,131, 70,163,137, 82,171,213, 61, 19, 19, 19, + 3, 12,229,178,183,183,103,164, 82,233, 48,153, 76,182,141,101, 89,232,245,250,107,110,110,110,109, 56,142,131, 68, 34,185, 6, +252,153,127,254, 47, 80, 92,139,252,107, 44, 88, 69, 87,176,102, 56,190,233,216, 49,227, 72,255,129, 3,226,223,132,189,227, 5, + 66,241,192,243, 23, 46,152,120,123,123, 51,234,245,235,161, 79, 74,130,110,202,148, 38,151, 47, 95,214,245, 29, 56, 88, 41,100, +201, 14,215,234,213, 76, 14,236,219,239,112,244,200,225,166, 0,130,202,179, 92, 57, 56, 56,236,190,126,253,186,115,245,234,213, +145,158,158,142,136,136, 8,228,228,228,160, 95,191,126,194,166, 77,155, 58,247,233,211,103, 55, 33,164,153,161,150, 44, 66,136, +125, 13, 23,193,233,159,231,247,243,248,178, 67, 83,185,115, 37, 55,208,120, 21,162,222, 6, 55, 56,125,253,254, 36,119, 11, 38, +228, 77, 6,237, 66, 41, 77,168,104, 36, 37, 39, 39,127,223,179,103,207, 35,173, 91,183,182,149, 72, 36,112,114,114, 34,221,186, +117, 75,140,141,141, 93,244, 9, 25, 9,249,173, 46,174,232,111,241,101,124, 12,132,139,165,165, 37, 44, 45, 45, 1,192,249, 83, + 50, 68,223,190,125,217,200,200,200,175,121,158,247, 42,122,220,206,206,174, 38,199,113,105,239,223, 71,214, 84,106,180, 94,227, + 38,204, 94,216,191, 79, 59,139,187,119,239,242, 29, 59,118, 84,223,188,121,115, 52,128,141, 6, 62,102, 99,237,218,181,223,174, + 89,179, 70, 29, 26, 22, 94, 45,240, 85, 40,228, 82, 17, 87,169, 82, 37, 73, 80, 80,144,122,222,188,121, 57,107,215,174,221, 8, +160,111, 5,130,190,241,203, 47,191, 76,155, 59,119,110, 98,200,219,112,199,103, 65, 33, 84, 33, 17,233,236,237,237,216,199,143, + 31,171,126,252,241, 71,126,249,242,229, 21,230, 28, 60,120,112,236,140, 25, 51,194,147, 82,210,157,211,210,179,168, 56, 55, 87, +235,226,226, 34,184,118,237, 90,246,111,191,253,166,158, 49, 99, 70,133, 57, 91,181,106, 21,191,100,201,146,200,224,208, 48,167, +128,192,215, 80, 72,132, 58, 7, 7, 59, 54, 32, 32, 32,119,249,242,229,218,159,126,250,201, 32, 78,185, 92,190,235,224,193,131, +130, 19, 39,242,140, 54,247,238,221, 99, 92, 93, 93, 77,138, 94,163, 84,169,193, 16, 32, 57, 57,217,196,223,223,127, 23, 0,151, +210,248,134, 14, 29, 26, 95,145,188, 50, 84,253,147,193, 86,171, 2, 97, 53,110,220,184,210,124,115, 13,246,174,128,200,234,212, +169,211,156, 51,103,206,184,237,217,179,103,245,222,189,123, 53, 0, 32,149, 74,109,246,239,223,191,188, 95,191,126,232,215,175, +223, 60, 0,159, 77, 96,113,148,211, 2,128, 68, 42,145, 4, 7, 7, 19, 79, 79,207, 50, 29, 33,107,121,254,241,150,215,175,235, +127,227,233,217, 32,149,231,107,136,190,252, 50,123,234,212,169,201,153,153,153,136,136,136,128, 86,171,197,176, 97,195,216, 86, +173, 90, 57,245,235,215,111, 29, 33,164, 55,165, 84,107,128, 21,103,149,179,179,243,232,140,140,140,236, 2, 43,142, 87, 53, 83, + 65,139, 58,122, 73,237, 26, 58,177,136,213,139,186, 78,225,201,197,245, 36,199,179, 58,110, 3,128, 40, 23, 73, 34, 32,173,132, + 50,232,167,238,221,187,247, 59,126,252,184, 37, 0, 28, 62,124, 24,185,185,185,168, 82,165, 10, 68, 34, 17,132, 66, 33,132, 66, + 97,225,255,138,148, 77,132,144,233, 10,133,162, 83,118,118,246,113, 74,233, 58, 0,238,205,154, 53,131,171,171, 43, 0, 52,205, +191,102, 8,203,178, 3, 56,142,219, 76, 41, 61, 94, 6,215,164,238,221,187,183, 63,122,244,168,105, 65, 56,117, 58, 29, 92, 93, + 93, 33, 18,137, 32, 22,139, 11,195,249,111,132, 88, 44,134, 84, 42,133, 64, 32, 0,165,180, 96,125,208,235, 58,157,110, 18,128, +119,150,150,150, 76, 90, 90,154,161,141, 91, 86, 32, 16,172, 46,146,182,181, 56,142,219,161,215,235, 43,107,181, 90,243,255,133, +247, 45,170, 69,254,233,105,199, 20, 83,142,173,242, 94,144, 97, 89,150,193,187,176, 8, 93,235,214,109,135, 70, 70, 70, 42, 26, + 53,106,196, 8,133, 66,228, 92,189, 10,213,163, 71, 80, 40, 20,232,217,179,167,240,230,205,155,102,102, 10,179, 81,225,239,194, +179, 88,150, 1,165, 76,185, 99, 26, 44, 45, 45, 39,204,158, 61,219,193,221,221, 29,122,189,190,208, 3,185, 94,175, 71, 84, 84, + 20, 20, 10, 5,134, 12, 25, 98,103, 98, 98, 50,193,192, 76, 83,213,195,213, 46,224,250,217, 77,245,166,142,237, 36,247, 48,185, + 4,121,212,100, 40, 14,127, 3,175,216,243,152,217,163,145,252,226,134,121,117,221,156,172, 2, 8, 33, 85, 43, 26, 73, 42,149, +234,118, 96, 96,224,168, 27, 55,110,240, 0,112,237,218, 53,250,234,213,171, 49,159,210,234,228,121, 30,233,233,233,224,121,158, +205,223, 47,248,253, 63,203, 12,125,251,246,101,163,162,162,198,120,121,121,121, 60,120,240, 0, 39, 79,158,196,229,203,151,113, +225,194, 5,136,197,226,202,125,250,244, 73, 74, 74, 73,183, 76, 79,207,144,198, 69,191,109,184,127,243,102,167,216,240,240,187, +127,252,241, 71, 54,242,186, 13, 13, 73,171,222, 10,133, 66,182,122,245,234, 28, 83, 11,135,206,141, 26, 55,111, 32,148,154,217, +136, 36, 10,219,140,140, 76,237,179,103,207,130, 87,174, 92,233, 81,179,102, 77,203,252,110, 52,131, 56,109,108,108,204,231,204, +153,163, 53, 49,181,109,222,160, 81, 99, 95,177,212,204, 74, 40, 54,177,106,218,180,105,207,224,224,224,240, 5, 11, 22, 56,215, +169, 83,199,174, 34,156,213,171, 87, 55,157, 49, 99,134,218,204,220,170,189,183,151,119,221, 38,254, 13,251,215,171, 87,111,136, + 64, 32,224, 18, 18, 18, 66,167, 78,157,234,220,178,101, 75,235,138,112, 90, 90, 90,154, 46, 89,178, 68, 83,205,181,102,239,174, + 93,187,180,150,154, 88, 88,137,101,166, 86, 74,165,146,123,245,234,213,155,197,139, 23, 59,251,249,249,217, 24,194,153,155,155, + 43,180,177,177,129,175,175, 47,188, 93, 93,145,145,145,129,163, 71,143, 98,199,142, 29,216,186,117, 43,246,237,219,135,250,205, + 58,192,212,212, 20,177,177,177,200,204,204, 20,150,196, 83,216, 77,247,119, 96,147, 23,253,157,159, 48,120,220,184,113, 49,101, +136, 43,140, 27, 55, 46,102,252,244,223, 6, 23,116, 33,150,101,185,106,219,182,237,243,179,103,207,190,221,179,103, 15,188,189, +189,209,177, 99, 71, 49, 0, 76,152, 48, 65,220,175, 95, 63, 28, 60,120, 16,135, 15, 31, 14,242,240,240,184, 67, 8,233,110, 72, + 48,135, 12, 25,210,172,111,223,190,183,250,246,237,251,180,127,255,254,155,199,140, 25,227, 84,244,124, 92,108,244, 99,141, 70, + 3,191,186, 13, 76,150,108,123, 48,168, 60,190, 87,192,158,205,193,193, 59, 86,188,124,249,126,158,183,183, 69,149,240,112,171, +157,171, 86,217, 20, 44,158,173,211,233, 16, 21, 21, 5, 75, 75, 75, 12, 26, 52,200, 70, 34,145, 12, 49, 32,255,252,210,189,123, +247,225,145,145,145,138, 45, 91,182, 56, 62,125,250,212, 41, 46, 46,206,241,202,229, 11,182,223, 77,155, 96,106,174, 16,139, 99, +147,242, 4,106,120, 44,228,193,239,208,140, 82, 88, 20,237, 54,252,160, 85,230,226, 50,250,248,241,227, 14, 69,202,229, 15, 4, + 85,241,255, 96, 40, 99,229, 67,182, 87,237, 78, 18, 45,188,201,183,101,132,179,243,161, 67,135, 86,134,135,135,183,236,210,165, +203, 90, 66, 72,149, 18,174,177,109,221,186,245,150,215,175, 95,119,236,222,189,251, 49, 66, 72,135, 82, 91,143, 46, 46, 61,143, + 31, 63,110, 93,176,111, 99, 99, 3,169, 84,250, 23,113, 37, 18,137,192, 48,255, 62,207, 67, 44,203, 66, 32, 16, 20,166,131, 64, + 32, 0,203,178, 23, 25,134,137, 98, 24, 70,107,168,184,202, 23, 47, 44,199,113, 3,121,158,207, 38,132, 64, 40, 20, 66, 34,145, +116, 17,139,197,190, 66,161,240,127,226,125,139,106,145,127,141,192,202,119, 24,121, 29, 0, 40, 33, 57,207, 3, 3,133,172, 88, + 60,248,143,189,123, 37, 34,145, 8,239,223,191, 71, 80, 80, 16,114,175, 92,129,242,238, 93, 36, 36, 36, 32, 59, 59, 27,246,246, +246,216,180,109,155, 92,195,209, 17,175, 67, 66, 88,202,252, 57,158,160,180,169,154, 18,137,164, 93,175, 94,189, 74, 21, 98,177, +177,177,232,212,169,147,144,101,217,118, 37,100,144,203,197, 18,131, 56,217,146, 83, 87,142, 44,113,116, 20, 7, 1,111,166, 2, + 89, 1, 0, 85, 3,122, 13, 16,243, 2, 56,179, 8, 85,178,131,201,133, 37, 67, 29,156, 77, 4,167, 72,177,166,152, 1,211, 84, + 93, 61, 61, 61,183, 14, 30, 60,152, 1,128, 54,109,218, 16, 79, 79,207,205,132, 16,215, 50, 50,242,229,114, 42,199,251,105,105, +105,232,215,175,159,181,155,155,219,229,126,253,250, 89, 23, 28,255, 88,206,130,158, 35, 31, 31,159, 20,153, 76,182,143, 16, 34, + 49,224,131, 43,228,140,140,140,252,218,211,211,179,198,150, 45, 91, 88,150,101,177,101,203, 22, 28, 56,112, 0,183,111,223, 70, + 74, 74,138, 98,234,212,169,230,167, 47,223, 63,127,231,246,195,147,171,230, 78,183,238,217,182,149,171,101, 70, 82,166,179,179, +115, 59,228,141,201, 50, 36,156,157, 38, 78,156,120,241,233,171, 48, 59, 86, 40, 18,137,133, 2,153,173,141, 69, 21, 7, 91,203, + 26,206,214,150, 53, 76,197, 66,139,204,204,204,119, 7, 15, 30,204, 70,222,248, 44,131, 56,231,207,159,255, 44, 56, 44,202,154, + 17, 10, 4, 34,129, 72,108, 97,174,176,238,214,165, 67,107, 0,144,177, 68,146,153,153, 25,181,107,215,174,156,138,112,206,155, + 55,239, 94, 92, 82,154,157, 72, 42,101, 37, 18, 97, 97, 92, 90,154, 41,236,229, 18,137, 44, 55, 55,247,253,214,173, 91, 51, 42, +194, 57,107,214,172, 71, 47, 67,223,219, 16, 6, 44, 3, 34,180,180, 52,181,179,181, 48,117,176, 51, 83, 56, 72, 25, 72, 51, 51, + 51, 35,118,237,218,149,105, 8,167, 86,171, 21, 38, 38, 38, 34, 56, 56, 24,149, 26, 52,192,229,203,151, 81,185,114,101,244,235, +215, 15, 3, 6, 12,128, 76, 38, 67, 27,255, 90,152, 61,123, 54,222,190,125, 11,189, 94, 47,174, 96, 94,130,147,147,211,245,210, +206, 21,140,163, 42,141,211,187, 58, 41, 20, 87,134,112,151,116, 93,113,206, 78,157, 58,205,185,114,229,138,219,238,221,187,187, + 13, 25, 50,228,246,238,221,187,209,184,113, 99,188,122,245, 10,213,170, 85,195,206,157, 59, 49, 96,192,128,219,235,214,173,235, +246,228,201, 19,191,234,213,171,207, 46,143,179,127,255,254,227,235,212,169,115, 53, 62, 62,222, 63, 53, 53,213,247,232,209,163, + 35,122,246,236,249,110,224,192,129,109, 11, 45, 88, 58,221,222, 51, 39,143,160,115,183, 94,168,233,227,187,113,216,236, 61,181, +202,226,164,148,210,151,192,230, 29,113,113, 73,123, 85,170,220,126, 66,161,137,201,131, 7, 86,135,127,255,221,166,232, 74, 0, + 49, 49, 49,232,218,181,171, 80, 36, 18, 53, 47, 43,156,132,144,159,122,244,232,209,239,232,209,163,133,214,166,187,119,239,226, +197,139, 23,136,136,136, 64,122,122, 58,218,142,201,198,184,229,121,220,227,150, 83,116,152, 64,229,101,113,102,103,103, 43,143, + 29, 59,134,190,125,251, 98,244,232,209,168, 94,189,122,161,200, 42, 46,174,110, 60,188, 4,177,111,170, 85,179,205, 24,222,254, + 4,108,229, 46,152, 85, 74, 56, 69,237,218,181,219,212,173, 91, 55,112, 28, 7,149, 74,197, 3, 72, 45, 73, 55, 84,171, 86, 77, + 88,169, 82, 37,252,240,195, 15,176,176,176, 88, 67, 8, 97, 75,226,204,201,201, 81,159, 61,123, 22, 67,134, 12,193,228,201,147, + 81,163, 70,141,194,112,238,218,115,192,102,192,136,177, 30,245,154,181,240,243,174,215,184,118,150,154,109, 32, 50,177,250,154, +148, 96,110,251, 59, 92, 7,252,255,224, 44,232, 22, 44,216, 8, 33, 96, 89,118, 5,203,178,125, 24,134,161, 21,225,228,121, 94, +175,215,235, 31,232,245,250, 97, 5, 34,139,101, 89,176, 44, 91, 97,113,250,119,185, 98, 40,170, 69,254, 53, 93,132, 69,151, 60, +209,241, 56, 53,120,232,136,174,151,175, 92, 49, 17,139,197, 8, 15, 15, 71, 66, 66, 2, 14,236,219,199, 29,178,179,203, 21, 10, +133,116,208,142, 29,166, 35,191,254,154, 8,133, 66,120,122,122,162, 79,159, 62,178,222,253, 6, 38,218, 10,133, 7, 12, 80,168, +142, 5,253,231, 35, 70,140,192, 47,191,252,242,193,249,239,190,251, 14,251,246,237, 3, 33,196,193, 16,195,203,164, 69, 61, 92, + 44,171, 91, 36,208,128, 93, 66,194,154, 88,129, 53, 1, 24, 17, 32,101,243, 68, 22,195, 66,253,228,106, 42,211,248, 96,102,175, +230,185,206,107,207,111,234, 11,224,160,161,145,228,228,228, 52,239,234,213,171,182, 83,167, 78,165,153,153,153, 36, 46, 46,142, + 46, 91,182,204,118,252,248,241,243, 0, 12,253,152,136,143,141,141, 93,210,185,115,231,142,103,206,156,177, 31, 58,116,168, 57, + 0,116,238,220, 57, 33, 54, 54,118,201,167, 36,168, 72, 36, 98, 95,190,124,105,181,122,245,234, 1,211,166, 77,243,241,245,245, +117, 72, 79, 79,143,136,137,137,233, 83,158,197,141,231,121,175, 45, 91,182,128,101,243,202, 57,134, 97, 32, 22,139, 33, 22,139, + 97,102,102,150, 22, 22, 22,198, 87,181,151,137,115, 18,226, 50, 44, 5,150, 66,226,232, 96,109,225,224,216, 42, 37, 37,229, 1, + 0, 67,205,203,126, 95,124,241,197,243,187, 79,223,112, 99,135,182,174, 97, 34, 98,132,166, 50, 41, 43, 19, 11, 9,161,148,211, +234, 52,254, 27,118, 93,219,238,225,225,225,109,168,137,152, 16, 82,167,113,227,198, 87,158,190,122,143,167, 47,222, 70,219, 90, +153, 88,127,209,166,105,205,130,243,181, 27, 54, 30, 80,228,242,116,131, 62, 12,129,192,175, 65,131, 6,209, 9,169, 57,176,179, + 50,255, 64, 72, 91,218,216,181, 3,128,156,140,140, 13,149, 42, 85,242, 20, 8, 4,213, 12, 13,103,243,230,205,227,158, 4, 69, +194,193,214,202, 42,255,240, 7, 99,122,146,227,226, 54,186,187,187,123, 26, 98,105,213,104, 52,146,227,199,143,227,201,147, 39, + 88,226,227,131,239,170, 86,133,173,173, 45,174, 92,185, 2, 74, 41, 20, 10, 5,210,211,211,113,240,224, 65,180,109,219, 22, 26, +141, 70, 94,154, 80, 42, 24, 95, 85,154, 16,138,141,141,253, 91, 90,148,197,185,189,127, 10, 70, 80, 25, 43,101,158, 61,123,118, +207,158, 61,123,150,123,123,123,227,219,111,191,109,182,102,205,154,219,190,190,190,205,218,180,105,131,171, 87,175, 98,196,136, + 17,183,215,173, 91,215,108,236,216,177,216,184,113, 35,222,189,123,183,173,172,231,247,239,223,127,225,168, 81,163,230,174, 95, +191, 30, 5, 45,248, 30, 61,122, 20,148,141,219,251,246,237,155, 82,112,237,161,173,209,119,171,187,186, 55, 25, 63,105,186,120, +194,216, 33, 51, 1, 12, 40,167,162,160, 78, 78, 78, 89,250, 22, 45, 82, 15,222,187,135,254, 34,145,201,222,167, 79,113, 74,165, + 66,243,158, 61,147, 1, 96,214,172, 89,216,189,123, 55, 0,216,151,197,229,226,226, 50,250,216,177, 99,133,121,197,218,218, 26, + 98,177, 56, 79, 4, 9,132, 96, 57, 22,151, 55,202, 17, 22,153,139,113,203, 41,126,159, 69, 80,205, 9, 57,117,106,150,153, 31, +209,180,105, 83,100,102,102,130,101, 89,152,154,154,194,202,202,234, 3,113,149,153,157,142,149,219, 22, 34,177,230,117,180, 63, + 9,134,176,192,179,165, 64,214,155, 82,151,116,234,186,122,245,106, 71,149, 74,133,107,215,174,225,202,149, 43,191, 82, 74,179, +139,235, 29, 74,105, 60,203,178, 59,126,250,233,167, 17, 78, 78, 78, 24, 55,110,156,199,178,101,203,122, 0,127,229, 37,132,160, +126,253,250, 80,169, 84, 16, 10,133, 48, 51, 51,131, 70,171, 23,246, 29, 60,218,181,138,155,175,100,217,170,101,140,189,149, 0, + 2,198, 10,161,239,149,230,107,127,249, 97,237,253, 91, 55, 71, 18, 19,155,158, 52, 55, 57,238,159, 94, 73,115, 28, 7,157, 78, + 87,176,238,170,107,129, 40, 18, 8, 4, 91, 89,150, 77,183,177,177, 57,158,156,156,108,144,208,226,121,158,227, 56, 46, 91,167, +211,165,233,116,186, 28, 66,136,130,101, 89,112, 28, 7,142,251,223,152, 16, 91,222,242,107,255, 56,129, 85,124,185,147,200,200, +200,116, 43, 43, 43,231,154, 53,107, 50, 26,141, 38,175,235,225,240, 97,110,235,246,237,103, 84, 42,213, 36, 0,162,245,191,253, +182,209,217,197,165,245,224, 33, 67,136, 78,167, 67,231,206,157,197,167, 79,159,182,126,155,144,144,101, 64, 4,126,240,188, 97, +195,134, 97,205,154, 53, 0,128,137, 19, 39, 22,154,208,137, 1,157,254, 10,115,116,234,216,165,190, 89,148,252, 87, 51,109, 19, + 93,118,213,183,166,247,229,217,178,250, 96,196, 2, 72, 89,240, 90,157, 62, 52,177,231,227,183,161, 94,222,178,212,148,106,237, +124, 90, 98,235,165,221,157, 42, 34,176, 76, 76, 76, 26,154,154,154,226,241,227,199,169,245,235,215, 79,167,148,154, 47, 89,178, +196,198,196,196,164,225, 39,168,244,112, 66, 72,139,166, 77,155, 78, 96, 24,166, 29,207,243,151, 19, 18, 18,214, 83, 74,195, 13, +204,132,227, 0, 44, 64,145,113, 38, 26,141, 6, 12,195,128, 82,138,254,253,251, 99,214,172, 89,222, 47, 94,188,192,213,171, 87, +173,218,181,107,119,159, 16,146, 14, 96, 36,165,180, 84, 43, 89, 74, 74, 10,126,255,253,119,176, 44, 11, 11, 11, 11,152,154,154, + 66, 42,149,162, 89,179,102,241, 43, 86,172,240, 58,114,228, 72,110,122, 98, 34,145,101,101,168,137,181,181, 20, 78,149,191, 24, +214,179, 87, 32,242,102, 19, 26, 4,185, 92,110, 34,134, 58,139,225, 84,204,202,133, 27, 4, 38, 34, 17,145,138, 4,144,240,185, +236,236, 21, 63, 80, 41,161,194,124,235, 42, 53,148, 83, 42,149,138,228, 98,170, 22, 74, 24,157, 9, 67, 63, 75, 63,171, 88, 44, + 22, 73,132, 57,202, 82,197, 44, 67, 88,150,101, 37, 21,225,148,201,100, 34,133,152, 83,151,250, 30, 12, 88,134, 97, 74,229,236, +235, 67,232,161, 9,133, 93,122,133, 97,211,235,245,104,216,176, 33,246,159,184,134,179, 87,238, 34,249,253,115, 76, 26, 55, 2, +238,238,238,184,112,225,194, 39,197, 67,108,108,108,137, 34,171,204,174,197,252,113, 87,101,117, 11,126,192, 61,223,188,220, 89, +137,132,144,238,205,155, 55, 31,191,119,239, 94,205, 23, 95,124, 33,238,223,191, 63,124,125,125,155, 13, 31, 62, 28, 0,208,174, + 93, 59,172, 89,179,166,217,240,225,195,113,224,192, 1, 28, 61,122, 84,221,170, 85,171, 25,132,144, 24, 74,233,217, 82, 42,156, +174,155, 54,109, 42,110, 25,132, 94,175,135, 78,167,115,212,235,245,142,249,101, 17,214,174, 93,151,124,241,194,105,204,152,189, + 8,118,182, 14,117, 12,236,222, 33,195,166, 79, 79,222,185,106, 21, 86, 29, 56,128,233,213,170,153,236, 14, 10,194, 69,149, 10, + 7,175, 94, 77,206,127, 78,185,227,155,114,114,114,148,103,207,158, 53, 59,120,240, 32, 44, 44, 44, 80,163, 70,141, 66, 49,196, +176, 50,176, 34, 75,212,244,105, 8,224, 33, 0,160,154, 19,114, 60,171,227, 54, 33, 72,167, 12,212,101,228, 71, 56, 56, 56, 64, + 32, 16,224,233,235,135, 48, 77, 55, 67, 61,159, 70, 16, 10,133,200,202,201,192,248, 85,125,224,254, 67, 18,106,121, 2,202, 4, +224,193, 84,232,226,239, 98,117,110, 20, 54,148, 66, 89,183,114,229,202, 80,171,213,216,178,101, 11,205, 47,163, 74,171,236,231, +252,252,243,207, 67,231,207,159,207, 54,104,208, 0, 0,234,148, 36,176,242,203, 12, 56, 59, 59, 23, 10,191,254, 67,199,186,142, +153, 58, 86,214,179, 67,107, 8, 4, 54, 72,207,209, 33, 37, 75, 7, 75, 27, 5,102, 76,237, 43,189, 92,223,185,193,166,117,127, +156, 36,132, 52,160, 69, 77,134,255, 64,104,181, 90,240, 60,127,134, 97,152,185, 44,203,254, 32, 16, 8, 58,231,159,202, 98, 24, + 38,145,101, 89, 82,145,178,146,231,249,193,122,189,126,181, 70,163, 49, 43,176,136,113, 28, 7,141,230,255,126,226,254,167,174, +113,252, 63,107,193,250, 75, 55,158, 78, 87, 83,189,113, 35,114, 46, 95,134,248,226, 69, 28,116,114,202, 86,169, 84,211, 40,165, + 81,249,133,221,183, 59,118,238,188,211,237,222, 61, 51, 77,112, 48, 92, 95,188,128,208,194,162, 78, 69, 3,176,125,251,118,100, +102,102, 34, 35, 35, 3, 0,240,235,175,191, 34, 51, 51,179, 96, 32, 95,249, 47, 32, 66, 51, 7,187,106,136, 71, 40,120, 1,163, +136,168,153,219, 88,161, 50,141,117,142,180,207,201, 96,156, 17,252,190,145, 92,153,162,105, 76, 88, 13, 84,201,185,112,110, 90, + 3, 2, 8,154, 85, 36,140, 5,166, 83,129, 64,144, 26, 18, 18,210,213,195,195,227, 20, 0,155, 79,237,239,167,148,190, 1, 48, +233, 99,238,101, 89,118,193,187,119,239,236,182,109,219, 54, 97,201,146, 37,180,168,192, 42,248, 95, 48, 40,210,220,220, 28, 66, +161,208,254,238,221,187,246,141, 26, 53,218,144, 95,144,149, 38, 38, 97,111,111, 15,161, 80, 8,115,115,115,228,100,166,201,127, + 95, 54,183,149,137,165,189,213,244,233,211,153, 97,195,134,189,221,176, 97, 67,101,135,154, 53, 61,159, 63,127,254,190, 91,159, +190, 79,206,158, 61, 11, 0,155, 13, 12,250,179, 23, 47, 94,136,221,221,170, 10,120,157,146,151,139, 0,233,179,181,188,216,212, + 1, 82,150,133,128,128,202, 76,228,118,111, 34, 34, 98, 1, 36, 26, 24,143, 79, 67, 67, 67,133, 46, 78,246,130,172, 28, 85,186, + 92,192,139,223, 61,122,248,170,122,131,134, 94, 0,160,122,116,247,152,164,166,143,233,187,196, 36, 51, 87, 87,215, 8, 67, 56, +245,122,253,179,240,240,112,145,179,179,179, 48, 52,244,205, 31,214,102,166, 78, 86,246,246,173, 0, 64,147,154,116,147, 40, 85, +177, 66,161,208, 57, 54, 62, 62, 73,175,215,199, 26, 26,206,144,144, 16,145,139,147,189,224,212,153,179,251, 29,228, 38,142, 22, + 50,137,185,148, 1,145, 82, 62, 67,172,215,199,203, 76,228, 78,239, 34, 35,147, 41,165,209,165,241,252,206, 79, 24,156,151, 7, +166,111, 45,122,252,246,237,219,184,246,248, 29,204, 89, 14, 66, 93, 14,238, 31, 61,136, 94, 19,167,148,251, 45, 5,125,239, 9, +168,127,218,231, 93,125,216, 7,194, 41,175, 11,208,177, 68, 33, 84,174,192, 42, 15,155,188,174, 23, 19, 89,136,141, 45,187,112, + 29, 52,104,208,162, 61,123,246, 20, 78,226,120,245,234, 21,218,180,105, 3, 0, 88,180,104, 17, 58,118,236,136, 70,141, 26,225, +213,171, 87,112,119,119,199,213,171, 87, 37, 44,203, 74, 6, 15, 30,188, 12,192,217,242,130,180,121,243,102,140, 24, 49,162,164, + 1,211,111, 1,168,136,165,103,246,172, 21,187,108, 82, 83,146,145,152, 20,255,180, 2, 45,114, 12,155, 62, 61,121,147, 70,131, +189, 15, 30, 96,136, 92,110,178,243,205, 27,116,110,212, 8,181,218,180, 73, 54,164,172, 43,201,138, 99,109,109, 13,145, 72, 4, + 86,232, 4,129,216, 15,140, 72,132,186,205,253,176,106,154, 60,119,232,151, 88, 71, 8,210, 37, 98, 4,136, 76, 16, 95, 26,167, + 94,175,135, 80, 40,196,193,243, 59,241,220,226, 15, 32, 11,184, 19,208, 29, 83, 70,204,193,247,107, 70,195, 99, 89, 18,204, 61, +128,196,251,192,195,169, 12,159, 17,206,143, 82, 39,225, 28,165, 52,165, 20,193,230, 37,147,201,144,147,147,131,208,208,208,247, +148,210,204, 50,190,135,132,118,237,218, 37,178, 44,235,232,236,236, 12, 0,149, 75,107,144,243, 60, 95, 56,206,106,247,222, 67, + 54,117, 90,184, 74,219, 55,243,198,174, 83, 75,241, 77,223,117, 16,178, 4, 28,167,197,234, 53, 93,192,169,179,209,183,219,104, +210,178,157,187,223,229, 83,154, 81, 0,182,252,147, 43,105,141, 70,115, 66,171,213, 78, 33,132,100,177, 44, 59, 73, 40, 20,218, + 51, 12,227,206,113,220, 16, 66,200, 11,145, 72, 84,213,209,209, 49, 53, 46, 46, 46,163, 60,174,148,148, 20, 10, 96,123,254,102, +196,223, 12, 38, 63, 3,183, 36,132, 80, 66, 72,203, 66,149, 75, 41,175, 79, 77, 5, 85,231, 53,126,132, 66, 33, 5, 80,116,134, +146,137,133,133, 5, 17,186,184,128, 72,242, 26,220, 20,248,108, 54, 70,157,206, 48,215, 48, 60, 7, 22, 68, 11, 90, 68,192,231, + 72, 9,150,218,180,197, 36,241, 60,196,139, 45,138,126,209,128,158,130, 3,207, 86, 48, 56, 52, 59, 59, 27,122,189,222,210,205, +205,237,140, 94,175,183, 44,232, 2,248, 63, 52, 27,135,177, 44,139, 9, 19, 38, 0,249, 93,105, 26,141, 6,241,241,241, 80,171, +213,208,104, 52,120,247,238, 29, 50, 50, 50,160,209,104,240,242,229, 75, 84,175, 94, 29, 44,203, 58,150,211,186,129,173,173, 45, + 28, 29, 29,161,206,201,148, 31,217,188,166,243, 79,139,102,217, 12,116,163,204,182,117, 63,243, 46, 46, 46, 41, 62, 62, 62, 14, + 18,137, 68, 91,175, 94, 61,245,169, 83,167, 46, 2,232, 85, 1, 63, 88,103, 23, 47, 94,220,168, 81,163, 70, 85, 45, 20,114,173, + 68,204, 66,162,207,161, 18,117, 10, 21, 40,147,105, 21,151,170, 90,200, 21, 13,251,247,239, 47, 54,164, 82, 44,224,252,254,251, +239,107,120,121,121,217, 88,152,201, 51, 5, 12, 98, 68, 28, 23,147,246,248,238, 37, 0, 16,217,216, 41, 33, 87, 52,204, 31, 67, +103, 48,231,140, 25, 51,124,156,157,157,173, 25,134,164,235,181,218,247,133, 5,190, 74,153,192, 74,164, 57,144, 72,155,143, 28, + 57, 82, 88, 65, 78,175,218,181,107, 91, 91,154,155,165, 11, 25, 18, 41,226,244, 81, 50,202, 69,139,117,218, 36,137,157,125, 54, +228,138,166, 3, 7, 14, 20,148,198, 89, 96,189, 42,110, 25, 18, 8, 4,136,137,137, 65,110,236,115,136, 98,130,225,167, 16,162, +177,131, 13,228,114,121,249,141,149, 49,175, 8,198,188, 34, 65,239, 40, 9,122, 71, 73,209,253,191, 88,155, 22,103,224,131,235, + 74, 65,241,241, 89,127, 17, 87,197,238,205, 23, 89,101,126, 79,127,252,241,199,236,214,173, 91, 39,118,236,216, 81,115,230,204, + 25, 16, 66,112,245,234, 85,196,196,196,160, 99,199,142,160,148,226,254,253, 60,227,236,211,167, 79,209,174, 93, 59, 77,139, 22, + 45, 98,254,248,227,143, 5,134, 36,206,136, 17, 35,160,211,233,144,157,157,141,212,212, 84,156, 62,125, 26,126,126,126,212,196, +196,164, 23, 91,169,195,210,190,163,102, 55,241,173, 93, 7, 27,214,173,210,136, 5,194, 21, 21,236,246,192,208,105,211,146, 51, +234,214, 77,221,157,147,147, 59,204,204,204,196, 45, 42,202,234,241,133, 11, 54, 90,173,214, 32,142, 2, 43,142,139,139, 75,161, +184, 18,137, 68, 16,136,109,193,202,107, 65,108,221, 17, 38, 14,189,112, 45, 64,162, 54,151,227,152,169, 2,231,229, 22,120, 81, +134, 31, 44,162,215,235, 33, 18,137,112,253,201, 57,248,205, 1,252,230, 0,177, 13, 79, 96,192,148, 47, 96, 51, 41, 4,230, 30, + 64,252, 45, 32,125,149, 31,116,239,204, 51,213, 73, 56, 88,154,184, 2, 0,181, 90,173,226, 56, 14,132, 16,136, 68, 34,113,145, + 83,119,174, 95,191,142, 43, 87,174, 0, 64,104,193,193,180,180, 52,202, 48, 12,228,114, 57, 0,200,203,234, 38, 43, 24, 15,118, +253,254, 77,235, 1,189,187,144,187,207, 46,161,169,223, 64,164,100,107,145,144,161, 69,122, 46,224,211, 96, 46,124,219, 29,195, +243,119, 89,168, 83,219,151,101,197,242,161,248,135, 67,163,209,140, 81,171,213, 73, 42,149, 42, 75,165, 82, 37,231,230,230,142, + 84, 42,149, 93,245,122,253,109,129, 64,224, 41,149, 74,159,152,152,152,156,168, 92,185, 50, 3, 0,206,206,206,140,147,147,211, +206,127,226,187,150,164, 69,254,241, 2, 11,192,245,226, 3,203,244, 18,201, 75,253,248,241,176, 56,121, 18,194,208, 80, 12, 31, + 58,212,204,196,196,100, 29, 33,164, 30, 33,164,169, 66,161,216,176,112,225, 66, 83,155,229,203,225,116,243, 38, 34, 78,159,134, + 78, 40,124,244, 49,129, 80, 42,149, 16, 8, 4,133,150, 23,185, 92, 94,208, 31, 92,174,128,225,244,184, 23,147, 16, 12, 49,170, +130, 7,205, 62,159,217,226,193,192,176,185,118,167, 51,171,187,191,201, 17,185, 47,182,109,108,183,174, 74,179, 7, 57, 68,144, + 45,182,144, 34, 50, 50, 10, 28,248,123, 21, 9,159, 74,165,202,200,201,201, 65,157, 58,117,172, 31, 63,126,236,230,231,231,103, +149,127,252,225, 39,102, 38,127,103,103,231, 67, 46, 46, 46,225,206,206,206,135, 8, 33,254, 21,184,125,219,173, 91,183,192,178, + 44, 22, 46, 92,136,172,172, 44,104,181, 90,164,164,164, 32, 50, 50, 18, 26,141, 6,209,209,209,120,253,250, 53, 52, 26, 13, 34, + 34, 34,160, 86,171, 13, 18,182,166,166,166, 72, 79, 73,148, 31,248,253,231,206, 75, 23,205,147,101,188,121,130,232,216, 4,240, +156, 50,118,229,202,149,175,221,221,221,175,104,181,218, 74, 60,207,183,164,148,110, 50, 84,104,230, 59, 42,189,237,233,233,217, +104,229,202,149, 45,231,173,216, 42, 49,101,179,168,216, 84,194,139, 77,197, 84,236,217, 24,163, 22,172,151,174, 88,182,228,233, +179,103,207, 82, 13,113,186, 89,192,217,184,113, 99,159,248,248,248,102,126,126,126,117, 28,106,120, 72, 37,206, 78,201, 98,167, + 42, 41, 84,153,123,153,169, 92,173,235,186,117,235, 30,223,191,127, 63,161, 34,156,206,206,206,181,126,251,237,183, 6,149, 43, + 87,110, 32, 53, 55,151,101,167,167,111, 86,167,167,110, 21,218, 56,200, 24,107,155,190,187,119,239,190,119,241,226,197,228,138, +112,122,123,123,251, 46, 91,182,172, 94,221,186,117,235, 57,122,212,148,202,156, 93,146, 68,206, 85, 18,101,181,235, 75,153, 42, +174,125,214,172, 89,243,224,209,163, 71, 73,134,112, 10, 4, 2,142, 97, 24, 8,133, 66,200,229,114,220,184,113, 3, 3,123,125, + 1, 7, 59, 51,120,212,172,137, 86, 99, 38,226,204,153, 51, 16,139,197, 96, 24, 6, 12,195,124,178, 67, 75, 67,132, 80,121, 40, + 77,124,149,199, 77, 41, 61,123,253,250,245, 31,135, 13, 27, 38,238,212,169, 19, 30, 60,120,128, 17, 35, 70,220, 62,122,244, 40, + 0,224,193,131, 7,152, 50,101,202,237, 43, 87,174, 96,236,216,177,104,211,166,141,248,214,173, 91, 27, 12,113, 62,170,215,235, +177,125,251,118,232,245,122, 40, 20, 10, 88, 89, 89,161, 75,151, 46, 8, 12, 12, 28,187, 99,199,142, 96, 86, 40,252,170,115,183, +222, 56,115,242, 40, 94,191, 12, 28,187,115,217,224, 10, 59,243,101, 24, 6,157,134, 14, 77, 78,246,241, 73,221,153,153,153, 59, +210,210,210,196, 51, 62,222,234,218,161, 67, 54, 6,228, 31,194,113, 92,161,168, 42, 16, 27,133, 51,203,196,182, 16,200,125, 33, + 48,109,128,231,111, 68, 58, 97, 67, 26, 32,170, 79, 95,149,229,100,148, 16, 2,158,231, 33, 20, 10, 81,183, 70, 83,188,217,147, +119,188,198, 96,160,222,174, 20,216, 53,201,235, 22,124,191,210, 14,223,141, 92, 4, 33, 43,210,149,231, 54,135,231,249,151, 41, + 41, 41, 16, 8, 4,240,240,240,112, 32,132, 20, 88,165, 86,183,110,221,122,241,144, 33, 67,126, 2,240,109,254,243,171,244,237, +219,215, 73,171,213,226,233,211,167, 0,240,164,140,180, 47,156, 53,152,154, 25, 33,169,230, 84, 11,126, 94, 99, 96,105, 89, 27, + 49,169, 26,196,166,106,176,245,247, 30,120,114,235, 7, 60,190, 56, 4,239,227,227, 33,115,232, 9, 78,175,246,253,167, 87,210, + 73,121, 80, 38, 37, 37,233,181, 90,173, 82,163,209,188,209,106,181,143, 40,165,174, 66,161,240,146, 84, 42, 53, 55, 49, 49,105, + 33,151,203,119,120,120,120, 8,100, 50,217, 14,137, 68, 82,162,176, 52, 55, 55, 39,230,230,230,172,185,185,185,160,164,173,224, + 58, 87, 87, 87,234,229,229, 69,125,125,125,169,143,143, 15,173, 89,179, 38,173, 90,181,106,166,163,163,227, 24,107,107,107,246, +111,124,221,235,255,166, 65,238,197,221, 52, 0, 0,220,172,172, 76,117, 58,109,244,165, 75,151,180, 12,195,192,196,196, 4,195, + 70,140, 96,126,255,237,183,230, 3,253,253,175,142,110,223,254,220,213, 43, 87,234, 54,106,212, 8,148, 82, 48, 12,131, 3, 7, + 14, 40, 85, 42,101, 74,229,202,149, 45, 12, 41, 44,138,126, 56,153,153,153,133, 2, 43, 35, 35, 3,246,246,246, 6,119, 17,230, +100,226,242,149,243, 79,210, 40,247, 77,100,167, 55,191,104, 87,196,247,104,148,206,115,130, 12, 78,135, 12, 37, 69,150, 10,130, + 7,140, 85,163, 97,238, 61,181,239,218, 53,122,125, 35,248,110,138,138, 83, 85,104,246, 67, 98, 98,226,156,190,125,251,166, 56, + 58, 58, 18, 51, 51, 51, 56, 59, 59, 51,221,187,119, 79,142,138,138, 90,252,177, 17,111, 99, 99, 51,160,117,235,214,167, 98, 98, + 98,250,220,184,113,163,234,205,155, 55,251,180,110,221,250,148,141,141,205, 0, 3, 41, 14,206,158, 61, 59, 71, 44, 22,163,113, +227,198,200,202,202,130, 70,163, 41,119, 43,215, 34,200,243,144, 74,165, 56,180,117, 77,135,165,139,230,201, 82, 94,221,195,243, +219,151,112, 62, 92,157,187, 96,197,218,251, 82,169,244,163,222,215,221, 78, 94,171,150,147,233,171, 41, 35,250,199,206,154, 57, +211,244,197,139, 23,178, 73,147,191, 69, 68, 66, 58, 21,119, 90,205,162,229, 60,230, 89,142, 13,233,252,101, 27,252,184,108,126, + 75, 0, 99,203,173,168,237,228,181,124,157, 76,131,166,143, 30, 24, 54,121,242,100,217,138, 21, 43, 84, 13, 27, 54,212,197,197, +197,153, 43,108,236,234, 11,173,109,252,195,227, 19, 44,234, 55,104,240,102,242,228,201,170,138,114,206,159, 63,223,228,206,157, + 59,162,182,109,219,210,196,196, 68, 75,145, 76,214, 68,104,106,222, 50, 54, 57,217,170, 93,187,118,111,134, 15, 31,206,125, 12, +103, 72, 72,136,168,126,253,250, 52, 46, 46,206,210,196,218,182,177,200,218,182,197,187,184,120,203, 58,117,235,134, 78,153, 50, + 69, 87, 22,103,223,245,127,138, 19,133, 66, 17,231,231,231,135, 5, 11, 22, 96,201,146, 37,232,215,175, 31,194, 35,194,209,114, +248,104, 84, 31, 54, 22,167,239, 63, 68,108,108, 44,230,204,153, 3,119,119,119, 8,133,194,208,207, 81,104, 24, 34,178, 74,235, + 62,244,174, 78,174,151, 53,206,170, 60,238, 62,125,250,140, 47,112,197, 48,114,228,200,219,235,214,173,107, 54,114,228, 72, 0, + 64,227,198,141,241,195, 15, 63, 52,155, 59,119,238,237,165, 75,151,162,109,219,182,112,117,117, 45,215,159, 24,199,113,208,235, +245, 24, 56,112, 32,244,122, 61,146,146,146, 16, 18, 18,130,205,155, 55,131, 82, 42, 5, 0, 71, 39,151,250, 98,177, 24,207, 2, + 30,229,206, 27,217,232,143, 10, 52,162, 72,209,111, 43, 59, 59, 27,125,198,141, 75,142,174, 81, 35,117, 99,114,114,238, 40, 75, + 75,147,106,239,223, 91,153,106, 52,206,101,141, 57, 45, 42,134,138,186, 37, 40,190, 21, 76, 80, 49, 20, 5,156, 99, 7, 78,129, +244,124,243, 66,145,165,168, 2,240,122,224,201, 76, 33, 38,244, 92, 0,191, 90,117, 96,224,140,181,251, 15, 30, 60,128, 88, 44, +198,148, 41, 83, 8,203,178,107, 8, 33,132, 82,154, 70, 41, 93, 64, 41,157, 65, 41, 85, 17, 66,136, 68, 34,217, 52, 98,196, 8, +168,213,106,220,190,125, 27, 0,174,148, 38, 76, 41,165,133,239,158,157, 74,192,241, 98,220, 9, 56,143,139, 55, 15, 35, 60, 38, + 9,239, 19, 85,128,192, 28,170,156,104,104,149, 49,208,164, 7, 32, 83,109,242,175,235,114, 74, 77, 77,229, 57,142,211,112, 28, +167,229,121,190, 42, 0, 51,129, 64, 0,145, 72, 4,153, 76, 54,196,196,196, 36, 64, 38,147, 13, 17,139,197, 37,222,159,145,145, + 65, 51, 50, 50,184,140,140, 12,125, 73, 91,193,117, 5,190,183,100, 50, 25, 36, 18, 9, 68, 34, 81,188, 64, 32, 24, 66, 8, 57, +136,191,217, 63, 85, 81, 45,242, 79, 71, 73,142, 70, 65,205,100,253, 15,111,248,221,188,239,192,193, 57,126,126,126,150,206,206, +206, 32,132,160, 71,207,158,164,245,141, 27,166, 66, 39, 39, 88,215,171, 87,232, 61,247,242,165, 75, 56,127,254,124,206,153,227, +199,156, 71,140, 26,213, 21, 69,157, 61,255, 53,242, 4,110,110,110,133,207,141,139,139, 43, 72, 64, 0, 64,102,102, 38,108,109, +109, 17, 23, 23, 7, 3, 13, 35,187,103,205,188, 63, 51,177,209,156,234,141, 76,133,228, 92, 78, 60, 56, 74, 33, 36, 28,160,164, +208,113,128, 90, 71, 81,191, 26,107,117, 81,169,183, 60,253,224,232, 59, 0,187, 43,104,193,186, 70, 8, 25,195,243,252, 97, 0, +204,141, 27, 55,248,160,160,160,241,134, 14, 72, 47, 9, 38, 38, 38,223, 95,189,122,213,234,251,239,191, 79, 59,125,250,116, 70, +151, 46, 93,204, 55,111,222,108,213,166, 77,155,239, 1,236, 47,183,207,146, 82, 37, 33,100, 87, 84, 84,212,248, 6, 13, 26, 32, + 53, 53, 21, 90,173, 22, 79,158, 60,129,187,187, 59, 30, 63,126, 12, 15, 15, 15, 60,122,244, 8, 53,107,214, 44,152, 50, 13,158, +231,203,237,198,141,141,122,175, 48, 81,167,153,197, 62, 56,139,215,207, 31,227,108,152, 58,119,229,246, 3,103,107,213,169,159, + 83,209, 2, 28, 0,106,218,203,125,156,237,172, 47,174, 88, 52,223, 46,226,218, 1, 28,221,190,158,191,126,238,156,183,216, 20, + 99, 90, 13,152,220, 91,163, 67,101, 0,146, 38,141, 26,208, 47, 45, 66,120, 89, 85,196, 95,121, 89,182, 39,243,154,246,114, 31, + 39, 91,235, 11, 43, 87, 44, 49,125,123,110, 7, 14,110, 90, 77,143,236,217,231,167, 2, 26,213,170, 85,171, 19, 33,196, 17,128, + 62, 63,141, 12, 90,130,166, 36,206, 43,167, 79,215, 85, 1,141,220,220,220, 58, 9,133,194,170,249, 86,190,152,207,193, 89,187, +118,237, 78,249, 45,124,154, 63,230,170, 66, 75,229,140, 28, 57,114,213,244,233,211,167,232,116, 58,235, 34, 22, 72,118,243,230, +205, 2,142,227, 24, 74,169,150, 97, 24,237,133, 11, 23, 56,189, 94, 31,171, 82,169,198,125,106,129,209,187,119,111,220,191,127, +127, 17,202, 24,188, 92,172, 66, 16, 88, 89, 89,233,203, 19, 94,134,114,223,184,113, 99,201, 87, 95,125, 53,107,255,254,253, 33, +235,214,173,235, 54,118,236, 88, 28, 56,112, 0, 53,106,212,192,179,103,207, 48,103,206, 28, 0,104, 54,119,238,220,147,219,182, +109,115,141,136,136, 88,101,136,213, 86,175,215, 99,223,190,125,232,209,163, 7,108,109,109,225,228,228, 4, 66,200,181, 81,163, + 70,253, 6, 0, 44, 97, 69, 0,160, 86,169,213,158,158, 13, 12,182,216,186,186,186, 22,150,117,241,241,241,133, 51,255, 58,124, +245, 85,242,214, 21, 43,240,135, 82,137, 81,150,150, 38,209, 46, 46,142, 39,223,190, 29, 77, 8,217, 92,154, 69,184,192,138, 83, +158,184,170,128, 69, 25, 5, 99,155,236,237,237, 49,119,194,114, 44,255,125, 46,222,224, 58,106, 12, 2, 94,254, 2,244,112,157, +136, 6,126,141,225,228,228,100,104, 22,185,246,205, 55,223, 60, 10, 10, 10,106, 80,187,118,109, 44, 94,188,184,251,194,133, 11, + 47, 18, 66, 70, 23,204, 98, 38,132, 84, 99, 89,118,205,165, 75,151,218,155,153,153,225,213,171, 87, 56,116,232,208, 27, 20,140, +208, 47, 33,156, 5,149,190, 80, 40, 68,229, 74, 30,170,215, 17,217, 38,137, 49,119,112,251,214,113,212,240,251, 22, 50,135,174, +176,242, 92, 10,109,240, 90,104, 82, 46,194,170, 82, 23, 68, 71,188, 5, 43,144, 4,254,219, 68, 86, 90, 90, 26,181,182,182,230, + 57,142,187,192,113,220, 28,142,227,150, 10, 4,130,130,241,183,190,122,189,254,147,103, 4, 22,248,222, 42,224,165,148,202, 5, + 2, 65, 38,203,178, 74, 66,200,223, 58,221,176,168, 22,249,215, 88,176, 62,200,208, 60, 17,214,244,240,224, 68, 12,118,244,232, +218, 53,247,233,211,167,133,173, 60,213,195,135,200, 57,127, 30, 28,199,129, 82,138,155, 55,110, 96,200,224,193,217, 66,150,108, +173, 86,173, 42, 37,244, 79,223, 43,132,144,191,248,177, 18,137, 68,125,251,246,237, 91, 88,232, 68, 69, 69, 65, 46,151, 67, 44, + 22,131,231,121,232,245,122,176, 44, 11,115,115,115,232,245,122, 77, 9, 31, 91,187, 98,137,161,227, 82,115,250,108,235, 60, 40, +206, 41, 91, 75,199, 88, 84, 67, 21,145,172,240,163,116, 48, 35,232,230, 39,132,141, 32,145, 94, 89,213, 62,150, 87,167,244, 41, +190,246, 87, 73,225, 44,118,222,163,118,237,218,191, 13, 25, 50,132, 1,128,118,237,218, 49,181,107,215,254,149, 16,226, 81,198, + 61,101,114, 74,165, 82, 9, 0,156, 58,117, 42, 53, 36, 36,228,139, 83,167, 78,165, 22, 61,110, 32,231,230,159,126,250, 9, 38, + 38, 38,208,235,245,208,104, 52,133,227,175,138,254,106,181, 90,216,216,216,224,204,153, 51,224, 56,238, 76,121,225,244,242,173, +157,157, 33,176, 72,216,121,242, 10,206, 69,104,179, 43, 42,174,138,114,214,112, 84,212,116,176,177,190,180,114,217, 18,219,180, + 55, 79, 16, 29, 29, 77, 47,156, 63,115, 79, 73,105, 76,122, 38,157,151,150, 77,107,230,170,169,172,161, 43, 34, 47,109,154, 65, +231,182,128, 14,228,175, 93,195, 69, 57,125, 28, 21, 53,157,109,173, 47,172, 94,181,194, 52, 61,244, 49,226,226,227,113,246,204, +169,167, 74, 74, 99, 40,165, 71, 40,165,195,121,158,175,197,243,124, 45, 74,233,240,210, 68, 75, 69, 57,181, 90,109, 45,173, 86, +251, 89, 57, 43, 26,206, 34, 51, 8,177,104,209,162,208,232,232,232,177, 9, 9, 9,189, 11,182,212,212,212, 30, 89, 89, 89, 93, +114,115,115, 59, 41,127,169,106,158,147,147, 99,151,149,149,229,168, 84, 42,235, 83, 74,159, 24,154, 63,139,163,104, 5, 27, 27, + 27,187, 48, 54, 54,150,148,153, 63,199,188, 34, 27, 86,125,179,231,208,161, 67,246,159,194, 93, 60,156, 73, 73, 73,135,247,237, +219, 87,167,122,245,234,174,195,135, 15,199,198,141, 27,177,110,221, 58, 53, 0,108,219,182, 77, 93,196,114, 85, 41, 60, 60,188, + 65, 73,221,131, 69, 57, 25,134,217,221,161, 67, 7,122,243,230, 77,244,232,209,163,208, 1,232,150, 45, 91,160,215,235, 51,219, +182,109,203, 3,128, 82,149,155, 73,121, 10,141,182,228,126,246,146,226, 83, 44, 22,127, 89,212,223, 95,129, 19,101,177, 88, 12, + 74, 41,106, 54,107,150,156,238,231,151,186, 61, 35, 35,119, 97,173, 90,102,163, 61, 61,135,123, 1,131, 75,226, 36,132,124, 96, +197, 41,190,125,204,183, 89,128, 2, 14, 23, 23, 23, 44,153,182, 26, 46, 15,123,227, 90,115,107,212, 73, 25,142,142,205,187,161, +102,205,154, 6,115, 82, 74,105, 98, 98,226,216,249,243,231,243, 98,177, 24, 95,127,253, 53,142, 30, 61,218,174, 75,151, 46, 17, +206,206,206, 17, 62, 62, 62,241,227,199,143, 15, 75, 78, 78,238,210,184,113, 99,164,166,166, 98,220,184,113,218,212,212,212,190, + 69,199,113, 22, 15,103,129, 83, 76,145, 72,132,238,157,219,165,254,254,235,106,190,109,203,241, 48,145,153, 65, 39,172,132,212, +108, 29,210,114, 40, 52,146, 70, 16,139, 36,232,232,239,131,251, 23,118,230,114,154,156, 93, 31,155,231, 63, 54, 62,255,127,112, + 82, 74, 41,199,113, 42,189, 94,191,141,231,249,121, 5, 61, 73, 5,254,172,138, 27, 67, 43, 26, 78,158,231, 11, 93, 55,228,115, + 43, 4, 2,193, 9,150,101,125, 10, 38, 82,253, 29,239,254,111,195, 7,110, 26, 10,126, 9,225, 57,142,227, 81,173,122, 53,211, +136,240,200,245,253,250,245, 29,217,169, 83,103,147,206,157, 59, 75,125,130,243,186, 40, 78,157, 58,133,163, 71,143,230, 94,188, +120, 49, 83, 34,100,183, 85,170, 92,201,158,227,120, 16, 82,182,133,196,212,212,116,242,236,217,179,101, 25, 25, 25, 88,183,110, + 29, 95,167, 78, 29, 70, 46,151, 67,171,213, 98,219,182,109, 58, 31, 31, 31, 33,195, 48,200,200,200, 0,195, 48,175, 13, 84,188, +207, 9, 33, 29,127,107,221,235,104,131, 9, 35,172,189, 91, 55,177,108, 85,201, 25,186,122, 20,177, 81,225, 8,185,114, 49,237, +229,133, 53, 41, 80, 37,244,162,148, 6, 85, 52,146,156,156,156, 22, 92,188,120,209,110,226,196,137, 84,165, 82,145,200,200, 72, +186,108,217, 50,187,175,191,254,122, 1,202,241,133, 83,214,119,148,158,158, 14, 66, 8,159,159, 89, 11, 10, 23,131,205,175,148, +210, 64, 66,200,137,158, 61,123,118,111,219,182, 45,130,131,131, 11,187, 2,139, 10,172,130,217,132,203,151, 47, 79, 7,254,116, + 16, 88, 26, 36, 18, 9,182, 28, 62,127, 46, 54,250,189, 73,181,106,110, 42,115, 75, 75,254, 99, 44, 87, 0, 32,102,152,133, 63, + 46,153,111,151,252,234, 62, 9,188,119,149, 63,244, 60, 33, 81,207,209,146, 61,244,103,197,210,124,213, 95,118,235,133, 97, 23, +254,180,124,137,121, 65,247,229,254,128,184, 76,194,209,137,159,214,212,248,135,112,254, 31, 32,111,134, 95, 44,113,114,114,162, + 5, 93,120, 37, 9,172,242, 80, 82,247,224,199,114,191,123,247,110, 89,189,122,245,166,135,134,134, 30,242,246,246, 30, 11,160, +178, 90,173, 78,159, 59,119,238,202,109,219,182,141, 52,196,114, 5, 0, 7, 14, 28, 88, 51, 98,196,136,243, 93,187,118,157,193, +243,124,237, 34, 21,210, 59, 59, 59,187, 66,143, 92, 73, 9,241, 51,199,140, 28, 56, 51, 59, 59,205, 96, 63,117, 10,133, 98,244, +220,185,115,165, 57, 57, 57,216,176, 97, 3,239,227,227,195, 20, 52,134,246,236,217,163,247,240,240, 16,244, 29, 63, 62,249,151, +248,120,252,112,235, 86,206, 76, 95,223, 58,219, 67, 66,234,151,100, 97, 47,168, 48, 75,178, 92, 21, 12,175,248,136,138,252, 3, +129, 85, 32,178, 22, 76, 89,129,152,152, 24,136, 68, 34,184,187,187,163,180,238,166, 50,202,165,103,132,144,129,145,145,145,187, + 54,108,216, 32,110,220,184, 49, 26, 54,108, 8,161, 80, 88,165, 32,188, 26,141, 6,207,159, 63,199,236,217,179,233,195,135, 15, +191, 46,107,129,122,142,227, 18, 61, 60, 60, 10,187,143, 8, 33, 41,153,106, 98,126,208,171,145, 98,248,152, 67,228,246,163,187, +136,213,242, 80,235,120, 84,171, 94, 23,173,190,248, 5, 39,207,189,224, 98, 35,130,130,116,202,180,173,255,198,138, 59, 53, 53, +149,218,217,217,233,243,141, 18, 77, 11,134,212, 20,204, 12,253, 84, 11, 86,126,131, 61,140,231,249, 4,134, 97,154,230,251,222, + 50, 19, 8, 4, 87, 24,134,177, 1,160,255, 59,222,171,184, 22,249,215,116, 17,126,160, 94, 89,230,206,198, 77,191,127,121, 96, +223,126, 7,150,101, 28,222,134,133, 61,234,214,171, 79,204,165, 75,151,172, 68,230,230, 13, 1,240,154,177, 99,239,105,213,202, +212,211, 39, 78, 84,169, 86,173,170, 95,254, 98,207,148,103,153, 59,101, 61, 48, 59, 59, 59,231,214,173, 91,185,179,102,205, 34, + 81, 81, 81,123,237,237,237,251,159, 59,119, 78,209,171, 87, 47,101,112,112,240, 17, 7, 7,135,238,173, 91,183, 54,157, 62,125, +186, 58, 59, 59,123,125, 5, 18, 38,136, 16,226,245,112,254,170,175, 30,254,244,123,123, 8,216,166, 80, 11, 1, 94,119, 7,218, +172, 75, 0,246, 82, 74, 63, 42, 83,200,229,114, 63,185, 92,142,167, 79,159,166, 53,106,212, 72,163, 82,169, 68, 75,151, 46,181, +150,203,229,126,159,144,145,104, 90, 90, 26,120,158, 23, 0, 32,249,191,224, 43,190, 86,206,128,110,221,186,157, 56,120,240, 96, +135,206,157, 59,195,213,213, 21, 58,157, 14, 30, 30, 30,208,104, 52,112,119,119,135, 90,173,198,162, 69,139,144,145,145, 49,213, +144, 69,132,165, 82, 41,196, 98, 49,106,122,249,230, 74,165, 82,124,172,184, 2, 0,185,144,113,125,125,122, 59, 18, 83,146,249, +131,207, 18, 18,114,181, 92,199,208,196,156,151,197,175,203,229,144,211,122,248,164, 24, 0, 80,243,200, 46,147, 83, 12,215,215, +167, 55, 35, 33, 49, 25, 7, 2,226,210,115,180,252, 23,175, 75,224,172, 80, 56,255, 33,156,125,215, 7,163,213, 55,134, 95,123, +104,204,167, 21, 16, 31, 35,164, 10, 16,244,142, 18,108,242,162,216,180,190, 68, 31, 87,159,194,157,111,153, 58,145, 95,169, 68, + 13, 28, 56,112,102,120,120,248,146,124,127, 87,155, 42,194,181,125,251,246, 80, 0, 35,202,186,102,255,170, 17,199, 0, 28,171, + 8,111, 86, 86,150,234,201,147, 39,170,233,211,167,147,168,168,168,115, 14, 14, 14, 29,206,159, 63,111,210,171, 87, 47,117, 96, + 96,224, 21, 39, 39,167, 22,237,218,181, 83,156,125,240, 32, 38,247,237,219,211,167,195,195, 93,116, 60,127,186, 44, 65,244,185, +196, 85, 1, 95, 81,203, 80,129,200,114,114,114, 66,149, 42, 85, 62,233,187,167,148, 30, 36,132,188,106,214,172,217,209,225,195, +135,215,104,212,168, 17, 60, 60, 60,144,154,154,138,232,232,104,220,190,125, 27,155, 55,111,126,160, 84, 42, 39, 22,181,172,150, +132,148,148,148,191, 44, 35, 68,100,214, 78, 59, 55, 44, 60,245,232,118, 67,143,230,157,135,201,124,157,120,104,180, 20, 81,239, +223, 98,209,188,173,185,113,239, 67,131,180,122,109,207,127,186, 15,172,114, 80,155,227,184, 99, 58,157,174,114,190, 53,246,179, +249,180,210,104, 52,217,122,189,126,152, 64, 32,224,132, 66,225, 46,150,101,107,228, 47,107,247, 3,165, 84,240,119, 9,172,127, +165, 5,171, 56,194,194,162,130, 92, 93, 43,205, 62,122,228,112, 83, 74, 25,150, 18,146, 99, 97, 97,121, 42, 50, 50,242, 3, 47, +216,110, 86, 86,166, 35,190, 30,209,159,240, 68, 72, 8,207,241, 44,115, 39, 44, 44, 42,168,156,132, 27,211,191,127,255,117, 38, + 38, 38,115, 83, 83, 83,159, 90, 88, 88, 60,243,243,243, 91, 66, 41,157,167, 84, 42, 79,152,154,154, 62,104,210,164,201,210, 42, + 85,170,172,161,148, 62,174,224, 71,173, 71,222,248,175, 93,159,217,100,187, 24,128,185, 64, 32,200,120,241,226,197,190,154, 53, +107, 14,164,148,154, 19, 66, 50, 62,150, 83,165, 82, 77, 76, 79, 79,183, 25, 61,122,180,110,243,230,205, 53,135, 13, 27, 54,243, +229,203,151, 66,149, 74, 21, 86,193,119, 86, 19, 66,186,247,235,215,111,171, 80, 40,108,203, 48, 12,225,121,158, 22, 57, 15, 74, + 41, 56,142, 59, 89, 94,188, 8,133,194,236, 47,191,252, 82, 81,174, 85, 74, 44,206, 54,184,146,209,112,223,254,126,245,229,114, +149,142, 82, 61, 79,199,188, 78,200, 41,113, 10,217,195,215,212,199, 96, 78, 21,255,237,186, 11, 65,203,213, 58,158,215,243,116, +108,105,156, 21,170, 12,255, 33,156, 0, 48,142, 89,191, 7,155,214, 23, 14,120, 47,232, 54, 44,190,255,185, 81, 96,105, 66, 69, +188, 44,231,187, 99, 8, 26,243, 55,112,151, 32,182, 42,138, 62,125,250,252,109,227, 73,180, 90,237,156,110,221,186, 45,177,176, +176, 88,153,148,148,244,212,194,194, 34,200,211,211,243, 91,158,231,215,228,230,230,158, 50, 53, 53,237,218,160, 65,131,169, 85, +171, 86,221, 25, 65,233,206,178,184, 56,142,139, 41,176,226, 0,160, 5,214,167, 2, 1, 81, 84, 72,232,116,186,104, 67,194,199, +113, 92,140,159,159, 31, 41,106,205, 42,254, 91, 20,134,242, 22,107,244,122, 46, 89,178,164, 9,128, 54, 0,252, 0,100, 2,120, + 15,224, 30,165,244,252, 71, 11, 56,101, 74, 44, 33,164,222,171,128, 91, 99, 67,130, 2,190, 42,152, 45,200,178,226, 64, 78,155, +187, 75,167, 76,219,250, 47, 23, 87, 72, 76, 76,124, 10,160,202,223,193,173, 86,171, 7, 18, 66,130, 89,150,165, 66,161,240, 43, +150,101,175,241,252,255, 99,239,186,227,155,170,222,247,115,238,189,217,171,233, 30,180,180,172, 82,150, 64,203,148, 45, 8, 8, + 40, 67,144,175,162, 44, 45, 32,254, 20, 65,134,202,150, 33, 8,130,202, 16, 4, 4, 68, 16,112, 34,160, 50,164,178, 4, 4, 69, + 70, 89,133, 2,221, 35, 93,105,211,172,123,207,239,143, 38, 49,148,142,164, 20, 44,152,247,243, 57,159, 38,185,233,147,179,207, +115,222,243,158,247, 21, 62, 48,153, 76, 91,248,154,226,242,253, 33, 16,114, 63,251, 32, 33,164, 71,117,199, 43,242, 96,122, 48, + 61,152, 30, 76, 15,166, 7,211,131,121,255, 48,125,125,125, 21, 0, 76,132, 16,202,178,172,146, 97, 24,111, 74,169,129,231,249, + 60,171,213,106,201,201,201, 17,238, 71, 62,255, 19, 26, 44,143,120,196, 35, 30,241,136, 71, 60,242,223, 20,158,231,139,115,115, +115, 5, 0,240,241,241, 41, 36,132,152, 40,165, 60,165,148,207,201,201, 17, 60, 53,228, 34,177, 5, 80,230, 77, 0,119,152,105, + 85,110, 19, 84,134,239,193,244, 96,122, 48, 61,152, 30, 76, 15,166, 7,243,209,195,252,207,136,221, 70,231,126, 36, 0, 61, 60, +152, 30, 76, 15,166, 7,211,131,233,193,244, 96,122, 48,255,107,137,241, 80, 76,143,120,196, 35, 30,241,136, 71, 60,226,145,234, + 21,143, 13,150,155, 98,139, 41,247, 42,128,193, 0,234, 3,184, 6, 96, 39,128, 85,110, 4, 60,118,198,211, 0,152, 6,160, 3, +128,186, 0,174, 3, 56, 12,224,125, 74,169,222, 83,227,101,139,191,191,255, 59, 34,145, 72, 11,148, 56,197,179,255,117,126,205, +243,124,110, 94, 94,222,130,251,212, 15, 88, 74, 41,239, 78, 94,157,243,230,252,215, 98,177,220,183,124,122,164,198,206, 35, 13, +125,124,124,182,232,116,186, 97,148,210,203,158, 26,241,200,163, 36, 1, 1, 1, 99,205,102,243,116,177, 88, 60, 63, 35, 35, 99, +245,127,158, 96, 17, 66,226, 0,128, 82,218, 5, 0,212,106,245, 49,134, 97,234,218,158, 1, 0,156, 60,184,150,249, 87, 16,132, +235,217,217,217,143,151,247, 99, 10,133,226, 24,203,178,117, 9, 33,246,224,179, 96, 24, 6, 22,139, 69,205,178,108, 65, 57,152, + 73, 58,157,174, 85, 13,153, 20, 9,128, 31,189,189,189,139,223,123,239,189, 85, 93,187,118, 13, 75, 73, 73,177, 78,153, 50,165, +243, 95,127,253,213,151, 16,242,148, 59, 36,139, 16,210,158, 16,178,177,101,203,150,223, 14, 31, 62,124,123,219,182,109, 37,217, +217,217,234,157, 59,119,214,218,180,105,211,105, 66,200, 48,119, 93, 85, 60, 4, 11, 11, 87,158, 63,178,138,158,149, 22,145, 72, +164, 77, 74, 74, 82,219,250,172,195,243,176,197, 98,129,197, 98, 65, 97, 97, 33, 90,180,104, 81,237,249, 15, 14, 14,142, 38,132, +172,136,140,140,108, 21, 18, 18,114, 10,192,248,148,148,148,191,220,201,171,213,106, 5,165,212,145,207, 38, 77,154,120,102,100, +247,250,208,203, 18,137,164,119,100,100,100, 27,163,209,152,115,253,250,245,147, 60,207,207,164,148,166, 85, 19,190, 23,128,153, + 82,169,180,109,253,250,245,195,174, 92,185,114,219,108, 54,159, 0, 48,151, 82,154, 87, 29,228,170, 75,151, 46, 71, 86,174, 92, +233, 59,110,220,184, 35,132,144,142, 30,146,229,145,127, 75,106,215,174,173, 45, 44, 44, 92, 7, 32, 90, 36, 18, 5,217, 98, 16, +166, 73,165,210, 63,229,114,249,232, 35, 71,142,228,186,139,201,243,252,204,196,196,196,160,118,237,218, 45,110,214,172,217,156, +172,172,172, 98,179,217,124, 32, 39, 39,103, 34,165, 52,191,146,241,113, 7, 23,121,232, 9,150, 45,238, 79,215, 59, 30,112, 92, +104, 98, 98, 98,128, 90,173, 6,207,243, 14,237,128,125, 49,115,118,239, 96,243,179,132, 70,141, 26,153, 43, 89,104,194,146,146, +146, 2, 84,170,127, 92, 45,153,205,102, 4, 5, 5, 9,201,201,201, 1,165, 3, 9,155, 76, 38,132,134,134,214, 36, 95, 38,175, +250,248,248,228,221,186,117,187, 69,177,209, 60,247,149,255,123,251,157, 97,131,159,244, 62,118,236,152,240,212, 83, 79, 25,227, +226,226, 94, 5,224,146,115, 84, 66,136, 23, 33,100,211,148, 41, 83,230,200, 20, 26,223,131,199, 46, 24, 55,237,220,157,220,178, + 97, 29, 50,113,226, 68,246,245,215, 95,255, 45, 58, 58,122, 11, 33, 36,198, 29, 77,150, 90,173,254, 73, 42,149, 70,176, 44, 11, +179,217,124, 75,167,211,245,172, 65, 11, 99, 75, 0,103, 8, 33,209,148,210, 63, 93,125, 86,145,100,103,103,195, 96, 48,220,149, +154, 52,105,130,234,118, 65, 66, 8,225,194,194,194,190, 95,184,112, 97,173,180,212, 84,124,184,108, 89, 59, 0,171, 0,180,115, +229,255, 51, 50, 50,238,202,103,163, 70,141,224, 17,183,218, 96,218,156, 57,115, 22,190,240,194, 11,224,121, 30, 6,131, 33,228, +234,213,171, 77,167, 79,159, 62,144, 16,210,134, 82,154,112,143,248,254,145,145,145,241, 19, 38, 76,240,105,211,166, 13,108, 81, + 37, 66, 14, 31, 62,220,110,253,250,245, 47, 17, 66, 26, 81, 74, 51,239,229, 55,124,124,124,182,124,246,217,103,190, 10,133, 2, + 63,252,240,131,111,247,238,221, 15, 19, 66, 58, 85,149,100, 17, 66, 24, 95, 95,223,215, 1, 60, 33, 8,130, 4,192,137,156,156, +156,121,148, 82,179,167,199,120,164, 34,241,243,243,123,185,160,160, 96,165, 84, 42, 21,123,123,123, 67,161, 80,216, 99, 16,214, +150, 74,165,181,165, 82,105,159, 39,158,120, 98,252,193,131, 7, 43,244,136,255,120,116,208, 72, 48,100, 46, 75, 24, 22, 0,154, + 68,250,106,188,188,188, 48,119,238, 92,101,255,254,253,149, 0,112,228,200,145,225, 35, 70,140,232, 78, 8,105, 86, 30,201, 42, +139,139, 60, 18, 26, 44, 74,105, 92,169,130, 66, 46,151, 99,251,246,237, 96, 89,246,142, 40,238,101,189,174, 93,187,118,165, 63, +102,215,128,237,218,181, 11, 26,141, 6, 94, 94, 94,142, 5, 70, 42,149,226,192,129, 3, 16,137, 68,224, 56, 14, 34,145, 8,173, + 90,181, 66, 5, 1,230,239,139, 12,105, 90, 18,100,178, 44,231,141,157,234,203, 49,248,245,217, 67,139,138,205,173, 1, 20,230, +230,228,228,156,250,230,155,148,150, 13, 27,138,183,108,217,210,166, 86,173, 90,131, 93, 37, 88, 0,166,197,196,196,124,205,202, +189,252,134,143, 24, 57,124, 52,199,152, 95, 26,243,214,252,219,169, 89,133,177,177,177,223,252,240,195, 15,195, 23, 45, 90,116, +113,242,228,201,211, 0,188,235,106,254, 37, 18, 73,196,213,171, 87, 35, 5, 65,192, 99,143, 61, 86, 99,194, 13,216, 9, 20,165, + 20,132,144, 59,136, 84, 69,207, 42, 19,187,198,170,172, 84,221, 82,171, 86,173, 70, 47,190,248,162,159, 46, 43, 11, 31, 46, 91, +102,255,184, 85,101,199,133,246,163, 64,147,201,132,103,159,125,246, 69,158,231, 57, 59,249, 51, 26,141,166,188,188,188, 98,167, +155, 58,153,148,210, 39, 93,168,207,186, 74,165,242, 3, 0,209, 6,131,161, 22, 0, 40,149,202,100, 65, 16,190, 45, 44, 44,124, +151, 82,106,168, 98, 59,133, 1,104,138,242, 67, 54,209,133, 11, 23, 94,153, 54,109, 90,194,131,198, 36,132, 68, 4, 6, 6, 46, + 24, 50,100, 8,118,239,222,141, 61,123,246, 88,228,114, 57, 55, 98,196, 8, 50,126,252,120,239, 9, 19, 38,244, 1,240,209, 61, + 54,115,159, 57,115,230,248, 52,110,220, 24, 59,119,238,196,217,179,103, 13,145,145,145,242,174, 93,187,130,227, 56,159,119,222, +121,231, 41, 0, 27,239,229, 7,116, 58,221,188,183,222,122,107,211,214,173, 91,213,215,175, 95,199,138, 21, 43,252,134, 14, 29, + 26, 71, 8,233,226, 42,201, 34,132, 72, 1,188, 14,160, 27,203,178,157, 70,140, 24, 97,253,191,255,251, 63, 17,195, 48,150,101, +203,150,249,175, 95,191,126,168,159,159, 95,116, 86, 86,150,199,204,160, 2, 97, 89,214, 44, 8,130, 8,128,140, 82,106,172,236, +253,163, 84,118, 95, 95,223,113, 57, 57, 57,171,130,130,130, 16, 24, 24,120,215, 90,107, 52, 26, 33,147,201,196, 65, 65, 65,159, + 13, 24, 48, 64,244,221,119,223,149,123,212, 71, 88, 50,243,135,109,239,213,242,241, 86, 3, 0,150,127,250,115, 17, 0,124,247, +221,119, 72, 73, 73,129,183,183, 55,154, 53,107,198,190,247,222,123,193, 19, 39, 78,252, 16,192,232,242,176, 74,115,145, 71,130, + 96,149,183, 48,216, 3,137,218,137,148,157,252,148,126,109, 39,101,165, 42,106,127,169, 73,129,232,245,122, 7,185,210,104, 52, +176, 45,170,176, 88, 44,119,225,242, 60,143,210, 81,181, 93,185,254, 73, 8, 25, 7,224, 0,165,244,154, 43,149,224,140,185,227, +181, 70,216, 36,157,242,188,221,229,121,159,183, 74,254,110, 2,112,236,198,232, 21, 43,187,116,169,245,250,140,143,103, 27,178, + 83,178,222,121,241,233,136,200, 32, 95,185, 50, 55, 35,207, 39, 42,170, 23,156,194, 7,184,144,207,206,195,135, 15,223,252,203, +239,137, 68, 38, 19,139, 57,150, 21,117,124,172,161,111,152, 23,235,165, 6,188,110, 39, 92, 57, 54,114,228,200,199, 38, 79,158, +220,201,157,178, 51, 12, 3,141, 70,131,205,155, 55,131,177, 51, 90, 23,203, 94, 93, 82, 70,187,115,118, 2,165,211,233,176,123, +247,110,244,237,219,247, 12, 33, 36,218,246,149, 51,148, 82,228,231,231, 35, 53, 53, 21,193,193,193,103, 8, 33, 34,231,227,194, +210,152,118, 45,170,157, 76,141, 24, 49,226, 69,171,213,202, 57, 77, 14,165,137,203, 93,228,197,213,178,135,132,132,252, 2,224, + 73,150,101, 97, 42, 46, 54,125,176,116,169,243,227, 63,156,201, 85,121,152,246,188,242, 60,207,157, 57,115, 70,100, 31, 51, 0, + 68, 0,148, 0,252,108, 65, 85,255,118,161, 62, 27, 41, 20,138, 99,187,118,237,210,180,106,213,138, 72, 36, 18, 88,173, 86,156, + 59,119, 46,108,209,162, 69, 99,246,239,223,255, 20, 33,164, 73,233,160,230, 46,182,123,211,195,135, 15, 23,214,171, 87,175, 76, +194,152,159,159,207, 53,108,216,176, 11,128,132,127, 1, 51, 41, 61, 61,125,192,147, 79, 62, 57, 54, 45, 45, 45,222,106,181, 78, + 5,208,204,207,207,239,204,160, 65,131, 32,151,203,187,185, 66,176, 42,106,247,128,128,128,254,143, 63,254, 56, 86,172, 88,129, + 69,139, 22,245,160,148, 30, 32,132,116,207,207,207,223,255,204, 51,207, 64,171,213, 14, 40,139, 96,185,218,151, 8, 33, 13, 59, +119,238,252,217,220,185,115,213,187,119,239, 70,100,100, 36, 10, 10, 10, 48,105,210,164,128, 89,179,102, 29, 34,132,116,181,147, +172,242, 48, 9, 33, 77,164, 82,233,198,173, 91,183,170,234,213,171, 87, 79, 44, 22, 51,245,234,213,131, 78,167, 67,113,113,177, +116,254,252,249,143,201,229,242,191, 62,250,232,163,141, 0, 6, 61,232,241, 94, 42,175,121, 0, 52, 0,180,238, 28,175, 86, 80, +246, 60, 0, 82,199,224, 17,137, 32,147,201, 32,147,201, 32,149, 74,113,229,202,149, 25, 18,137,100, 25,202, 8,229, 82, 22, 38, +249,103,209,106, 65, 8, 57,201,178,108,133,239, 75,155,128, 60,232,250,180,229, 57,148, 16,178, 28, 64,183,146, 41,159,137,243, +243,243,123, 35, 45, 45,237,166,171,152, 33, 33, 33,190,122,189,254,163,224,224, 96, 4, 6, 6, 58,214,142, 90,181,106,193, 98, +177, 32, 61, 61, 29,148, 82,228,230,230, 66,161, 80, 32, 36, 36,228,163, 49, 99,198,236, 92,179,102, 77,118,153,152, 2, 22, 61, + 51,116,250, 76,150,101, 25, 0, 96, 57,149,106,194,219, 64, 68, 68, 4, 58,118,236,136,226,226, 98,228,229,229,161,105,211,166, + 28, 33,100, 56,195, 48, 26, 74,233,106, 74,233,193, 71,153,192,219, 23,164, 57,165,207, 61, 9, 33, 16, 4, 1, 28,199,221, 65, +176, 74, 39, 59, 25,178,245, 83, 82,153, 42,219,100, 50, 57,200,149,151,151,151,131,156, 89,173,214,242, 8, 86, 85,152,121,115, + 65, 16,234, 18, 66,214,184, 74,178, 74,203,240,225,195,239,178,231,152, 56,113, 98, 82, 70, 70, 6,125,182, 87, 11,101,252,222, +148,212,250,222, 42,185,191, 90, 93, 71,230,237,163,205,206,206, 62, 14, 64,235,198, 79, 52,136,137,137,145,111,250,230,112,210, + 43,111, 46,124,175, 85, 61, 95, 77,243, 80, 63,239, 32, 47,185, 68,197,144, 66,153,213,146,228,227,227, 19, 89,133, 29, 25, 0, + 64,171,213,130,227,184, 26,161,193,162,148, 90, 9, 33,209,132,144, 51,187,119,239, 70,219,182,109, 29, 36,203, 78, 62,242,242, +242,112,238,220, 57,116,238,220, 25, 0,162, 93,177,197, 18, 4, 1,102,179, 25,102,179,217, 65, 92,196, 98,241, 93,196,197,254, + 93,150,101,255,174, 98, 17,222,243,246,246,238,220,173, 91, 55,201,182,237,219, 37,148,210, 66,148, 4,164,214, 83, 90, 78,224, +234, 82, 98,181, 90, 29, 90, 53,145, 72,132, 91,183,110, 57,180,192,118, 77,112,233, 35,242,242, 68, 42,149,190,245,213, 87, 95, +105,218,180,105, 67,178,179,179, 33, 8,130, 99,114, 92,181,106,149,108,240,224,193,181, 78,159, 62,253, 14,170, 16,118, 6, 0, + 41,143, 8, 1,128, 70,163,177, 2,110,223, 62, 46, 19,211,106,181,146, 14, 29, 58, 76,206,202,202,122,204, 96, 48,204,119,165, + 31, 1,248,193,150,236,115,202, 95,241,241,241,134,231,158,123, 78, 94,167, 78,157,182,247,218, 87, 27, 54,108,216, 94, 36, 18, +225,196,137, 19, 70, 0,246,157,116,220,217,179,103,141,131, 6, 13,146,134,133,133,181,119, 67,115,215,176, 81,163, 70,251, 2, + 2, 2,228,118,141,229,144, 33, 67, 68,107,215,174, 85, 39, 39, 39,195,108, 54, 99,218,180,105,232,215,175, 31,252,252,252, 48, +113,226,196,192,197,139, 23,111, 1, 16, 83, 1,166, 76, 34,145,108,190,122,245,106,100,112,112,176,252,247,223,127, 71,243,230, +205,145,149,149,133,180,180, 52,232,245,122,164,165,165, 97,244,232,209, 1, 31,126,248, 97, 72, 13, 90,107,114,197, 98, 49, 20, + 10,133, 54, 55, 55, 55,239, 30,112,164, 0, 36,206,228, 74, 42,149, 66, 42,149, 66, 38,147, 65, 16,132, 71, 34, 72,112, 5,237, + 95,139, 16,114, 65, 44, 22, 75, 21, 10,133,152, 97, 24, 72,165,210, 94, 62, 62, 62,231,123,246,236,217,236,151, 95,126, 73,116, + 5,167,184,184,120,179, 84, 42, 21, 5, 4, 4, 0, 0, 34, 35, 35,209,188,121,115, 20, 22, 22, 10,121,121,121,208,106,181,204, +205,155, 55, 97, 48, 24,144,154,154,138,240,240,112, 17,195, 48,155, 1, 60, 85, 22,222,209,211,169,159, 2,248,212,254,222,223, +223, 63, 29,128,220,254, 94, 38,147,161, 86,173, 90, 72, 78, 78,134, 90,173,102,103,205,154, 53,104,251,246,237, 3, 9, 33,195, + 41,165, 95, 56, 65,205,121,228,108,176, 40,165,179, 9, 33, 93,202, 90,192,108,231,177,229,106,174,236,201, 21, 34,100, 15, 68, + 25, 24, 24, 8,133, 66, 1,133, 66,225, 8, 56,202,243,252, 93,248,182, 29,189,219,133, 82, 42,149,120,225,133, 23,232,234,213, +171,199,218, 72,214, 85, 87,255,119,200,138,120,135,214,170,180, 52,105,210,228,216, 59,239,188,211,255,215, 95,127, 77,110, 85, +175, 14,167, 76,185,169,151,105,180, 90,132,214,238, 59, 98,192,160,179, 40,185, 77,232,170, 92, 45, 40, 40,144,215, 15, 85,152, + 24,166,152,212,150,114,234, 96,165, 88, 26,228,237, 93, 75,108, 50,102,104,188,189, 37, 70,163, 49, 23, 64,133,193,153, 53, 26, +205,207, 82,169, 52,156,101, 89,176, 44, 11, 63, 63, 63, 47, 74, 41,180, 90, 45, 66, 67, 67, 85, 81, 81, 81,151, 57,142, 3,195, + 48,208,235,245, 55,111,220,184,209,171,178,140,121,123,123,255, 44,149, 74,195,237,193, 67, 89,150,117, 92, 72,176,191,102, 89, + 22,132, 16, 20, 21, 21,185,132, 73, 41,253,147, 16, 18,221,183,111, 95, 7,201,218,187,119, 47,122,247,238,141,220,220, 92,156, + 63,127,222,153, 92,185,116, 60,232,108,212, 78, 41,133, 88, 44,198,165, 75,151,238, 56,186,182, 39,181, 90, 93,229, 65,226,227, +227,115,100,200,144, 33,248,236,179,207,168, 45,202,187,146, 16,210,220,203,203,235,210,133, 11, 23, 92,178,115,161,148,194,108, +254,231,171,246, 62,238, 60,190,220, 32,209,189, 98, 98, 98, 72, 94, 94,158,157, 56, 58, 54, 66, 44,203, 98,229,202,149,242, 54, +109,218, 76,151,201,100,147,197, 98,113,190,197, 98,217, 86, 92, 92, 60,159, 82,154, 91,147, 38,159, 78,157, 58,189,121,251,246, +237,126,225,225,225,187,238,129,188,211,214,173, 91,155, 0,200, 89,150, 21, 85,195, 2,198,218,250, 86,177,157,228, 83, 74,173, + 49, 49, 49,197,182,197,221,229, 8,200,126,126,126, 91,246,236,217, 19, 26, 30, 30, 14,139,197, 2,171,213, 10,189, 94,143,184, +184, 56, 24,141, 70, 88,173, 86, 68, 70, 70, 98,230,204,153,197,111,188,241,134,108,205,154, 53, 25,122,189,126, 88, 37,176,111, +236,220,185, 83, 25, 28, 28, 44, 55, 24, 12, 72, 72, 72, 64, 76, 76, 12, 10, 10, 10, 80, 88, 88,136,162,162, 34,152,205,102,228, +231,231,107,121,158, 55,213,152,133,134,227, 32,149, 74, 33, 22,139,115,195,195,195, 65, 8,145, 37, 38, 38, 86,229,200, 77, 3, + 32, 95, 36, 18, 73,156,137,149, 84, 42,197,137, 19, 39,222,149,201,100, 31,194,141, 64,196,165,227, 21, 86,246,190, 6, 16,172, +229, 98,177, 88,234,227,227, 35,118, 90,167,197, 42,149, 10, 1, 1, 1, 43, 0,244,113,177,220, 45,125,124,124, 28,243,123,139, + 22, 45,112,251,246,237,111,243,242,242, 94,202,200,200, 0,195, 48,155, 25,134, 25,104,231, 1, 57, 57, 57, 8, 11, 11,107, 89, + 30, 94,135,152,224,177, 32,212,161,193,106,210,192, 71, 85,106,157,130, 70,163,193,141, 27, 55, 80, 88, 88, 72,175, 92,185, 66, +198,141, 27, 71, 76, 38,211,231,132,144,227,148,210,235, 21,113,145,135, 93,131, 85,230,185,167,253,136,176, 44, 66, 85,154,112, +185, 66,132, 76, 38,147, 42, 38, 38, 70,176, 47,220,246, 4,128,148, 71,176,108,154, 2,183, 69, 36, 18,169,199,141, 27, 87,176, +122,245,234, 49,132,144,181,148,210, 43, 85,173,164, 93, 95,111, 13, 92, 52,115,218, 76,159,144, 58,245, 39, 79,158,193, 61,253, +244,211,191,111,218,180,137,247,105,220,167,251,193,159,191, 8,252,104,210,148,189,123,246,236, 1, 74, 12,158, 93,149, 35, 63, +254,248, 99,208,196,215,199, 99,230, 91,111,252,164,137,244,147,168,136,143, 82,102, 44,204, 84,129, 26,164, 13, 26,245,251,102, +215,174, 84, 0, 21, 70,154,151,203,229,225, 87,174, 92,137,116, 38, 16,102,179, 25, 90,173, 22,155, 54,109,242, 87,171,213,254, + 42,149, 10, 28,199,161,121,243,230,174,106, 72,194, 47, 95,190, 28,169, 86,171, 81, 84, 84, 4,163,209, 8,139,197, 2, 65, 16, + 64, 8,129, 72, 36,130, 68, 34,129, 82,169,116,235,166,158, 51,201,218,187,119, 47,154, 54,109,138,156,156, 28,196,199,199,187, + 77,174,156,181, 66,206,246, 86, 28,199, 97, 75,189,122,120, 37, 37,197, 65, 92,150,123,121, 97,166, 80,181,232, 14,143, 61,246, + 24, 61,122,244, 40,126,250,233, 39, 60,243,204, 51,228,251,239,191, 55,243, 60, 47, 78, 78, 78,118, 89, 27, 38, 8,130, 35,175, +246,249,218,153, 88,185, 75,176,172, 86,171, 90, 34,145,160,184,184,216,113,132,239,156,234,214,173, 11,157, 78,199,229,231,231, +115, 41, 41, 41,138,121,243,230,253,223,161, 67,135,130, 1, 60,255,111, 78, 54,171, 87,175, 14,127,229,149, 87,110,113, 28, 71, +123,247,238,253,226,205,155, 55, 7, 4, 7, 7, 31,248,245,215, 95,151, 2,104,232, 46,158,191,191,255, 31, 28,199,133,170, 84, + 42,241,142, 29, 59, 44, 5, 5, 5,226,128,128,128,116, 59,161,181,215,181,197, 98, 73,202,203,203,107,229, 10,158,191,191,191, +248,147, 79, 62,177,100,103,103,139,131,130,130,210,237, 56, 74,165, 82,188, 99,199, 14, 75,126,126,190, 88,171,213,254,145,155, +155, 91, 41, 94, 86, 86,214,176,225,195,135, 31, 62,112,224,128, 31,203,178,184,121,243, 38,178,179,179,161,213,106,177,121,243, +102,132,135,135, 99,231,206,157, 58,157, 78,247,242, 7, 31,124, 48, 93,175,215,187,226,178,161,115,219,182,109,195,115,115,115, +161,213,106, 81, 88, 88,136, 63,254,248, 3, 77,154, 52, 65, 74, 74, 10, 24,134,129, 86,171,197,170, 85,171,138, 8, 33,186,154, +176,200,176, 44,235,208, 50, 57,145,162,226,246,237,219,227,224,193,131, 83,221, 33, 69,148, 82,147, 72, 36,186,131, 88,217, 95, +139,197, 98,171,187,121,227,121, 94,108,179, 1, 37,174,188,175, 1,210, 69, 46,151,139, 75,127, 88, 84, 84, 36, 14, 14, 14,238, +228, 6,225,245,149,203, 75, 20, 76,225,225,225,200,203,203,227, 77, 38,211,208,205,155, 55, 91, 0, 32, 38, 38,102, 40,207,243, +197, 86,171,149,149, 72, 36, 40, 44, 44, 68, 64, 64,128,111,185,128, 12,166,254,176,109, 94, 80,105, 27,172,224,224, 96, 68, 71, + 71,195,104, 52, 34, 53, 53, 21,113,113,113, 22,158,231,191, 92,189,122,181,224,239,239, 63,234,217,103,159,101, 79,159, 62,253, + 26,128, 55, 43,226, 34, 15, 53,193,178, 49,198, 67, 0,186,218, 11,231,124, 68, 88,145,230,170,148, 6,139, 84, 50,208,114,147, +146,146,148, 74,165,210,241,153,197, 98, 65, 72, 72,136, 32, 8, 2, 41,253, 59,246,124, 84, 85, 68, 34,145,250,237,183,223,206, + 93,181,106,213, 75,112,209, 80,124,199,107,141,176,169, 20,185,250,116,209,220, 21,159, 44,158,231,115,109,239,231, 88,247,241, + 18,158,231,113,250,177,199, 30,235,164,215,235, 57, 47,165, 5, 89,185,216,139, 18, 63, 88, 46,145, 65,155, 47,173, 13, 39, 79, +158, 60,221,167, 79,159,163, 27,190,250,198, 39, 37, 33,225,184, 52, 63, 43, 85,211, 32,146, 19,215, 10, 31, 88, 80, 92, 44, 30, + 58,116,168, 63,128,103, 43,194, 98, 24, 6, 9, 9, 9, 72, 76, 76,132, 74,165,130, 90,173,134, 74,165,130, 70,163,129, 90,173, +134, 90,173,118,187, 14, 25,134, 1,207,243,248,250,235,175,161, 80, 40,160, 84, 42,239, 72,118,114,117, 47,109,211,187,119,111, +232,116, 58,168, 84, 42,199,177,166, 59, 98,183,193, 50,153, 76, 48,153, 76, 48,155,205, 60, 0, 17,199,113, 24,157,148,228,208, +234,184, 67, 92, 74, 75,243,230,205,233,241,227,199,113,244,232, 81, 20, 22, 22,226,147, 79, 62, 65,112,112,240, 19, 0,102,184, +177,227,172, 23, 20, 20,212,187,103,207,158, 33, 22,139, 5,122,189,158,249,251,239,191, 33,147,201,192,178, 44,146,146,146,176, +117,235, 86,220,184,113,195,174, 61, 12, 37,132,212,161,148,222,168,104, 81,224, 56,206,177,251,180, 39,103, 45, 22,203,178, 8, + 12, 12, 68, 80, 80, 16, 62,253,244, 83,113,157, 58,117,250,253,155, 19,205,226,197,139, 27, 44, 95,190,124,253,166, 77,155,246, + 14, 27, 54,108,251,185,115,231, 70,122,121,121,253,125,240,224,193,121, 82,169, 84,168,226,248, 14, 77, 73, 73, 9,112,254, 72, + 16, 4,133,213,106,117, 16,218,162,162, 34, 52,107,214,204,101,188, 11, 23, 46, 40, 0, 96,222,188,121, 34, 0, 10,187,251, 15, + 59,102, 81, 81,145,168, 73,147, 38,161, 46,146,129,203,132,144, 78, 61,122,244, 56,182,111,223, 62,239,240,240,112, 36, 39, 39, + 35, 57, 57, 25, 13, 26, 52,192,130, 5, 11, 10,243,243,243, 59,216, 72,213,247, 46, 22, 59,196,219,219, 91,116,235,214, 45, 88, +173, 86,180,108,217, 18,171, 86,173,194,208,161, 67,209,172, 89, 51,228,231,231,227,194,133, 11,216,184,113,163,183, 88, 44,126, +246,223, 94, 96,108, 71, 88,229,166,170,136,213,106,213,200,100,178,124,169, 84, 42,177,219, 95,197,197,197,185,173,189,114,222, +248,185,243,190, 38,144,213,210, 34,145, 72, 16, 20, 20,228, 50,142, 84, 42, 37,246,185,209,106,181, 34, 47, 47,143, 15, 14, 14, +118, 28,227,159, 57,115,134,143,136,136,224, 89,150,101, 37, 18, 9, 8, 33, 80, 40, 20,229, 78,248,148,167,115,159, 30, 58,195, +113,139,144, 17, 41, 53, 19,222, 46,217,236,159, 57,115, 6,102,179, 25,113,113,113,150, 15, 62,248, 32, 37, 55, 55,119, 2, 0, +238,231,159,127, 30, 62,101,202, 20, 54, 32, 32,160,135,211,124,121, 23, 23,121, 20, 52, 88,135, 40,165,196,102, 80, 78,236,196, +134, 82,122, 23,169, 42,143,112,217, 52, 88,164,178,193,198,178, 44,126,250,233, 39, 7, 17,176,223, 34,164,148,162,186, 9,150, +175,175,111, 97,219,182,109, 53,183,111,223,222, 90, 85,205,213,167,139,230,174,120,127,222,108,159,236,139,199,145,148,146, 10, + 93,134,229,244,145,191,111,124, 11,224, 91, 0,192,154,198,135, 48,230,226, 74, 87, 49, 27,251, 43, 90, 60, 22,162,254,246,201, + 62,253,194,158,139,125,147,121,245,213, 87, 59, 14, 31, 62, 60,111,216,176, 97,175,171, 84,170,134,102,179, 57,231,155,221,187, + 19,159,123,238,185, 58, 60,207, 15,175,204,103,136,197, 98,185, 57,104,208, 32, 71,221, 6, 5, 5,105,182,109,219, 22,168, 86, +171,241,226,139, 47,102, 38, 38, 38, 58,142,133, 10, 10, 10,110,186,146, 71,179,217,124,179, 69,139, 22,229, 30, 11,218, 53,144, +238, 96,218,218,210,113, 91, 48, 59, 59, 27,151, 46, 93, 2,199,113,104,215,174, 29,142, 28, 57,130,142, 29, 59,186,117,131,176, +184,184, 24,225,225,225, 40, 46, 46, 70, 97, 97, 97, 17, 0,233,230, 58,117, 0, 0,175,101,103,227,143, 15, 62,192,239, 11, 23, + 86,169, 31,181,104,209,130,158, 56,113, 2,127,255,253, 55,140, 70, 35, 94,126,249,101,216,142, 7, 1,160,167,139,229,109,214, +168, 81,163,253, 7, 15, 30,244, 87,171,213,208,235,245,208,235,245, 24, 53,106, 20,198,142, 29, 11,139,197,130,213,171, 87,227, +187,239,190,131, 70,163,129, 94,175, 71, 97, 97,161,119,223,190,125,143, 17, 66, 58,151,119,180, 77, 41, 37, 55,110,220,192,251, +239,191, 15, 65, 16, 48,101,202, 20, 68, 70, 70, 58,136,213,205,155, 55, 49,111,222, 60,240, 60,143, 89,179,102,161, 65,131, 6, +176, 88, 44, 50,119,252,140, 85,183, 76,156, 56,241,218,183,223,126,187,247,246,237,219, 79, 45, 90,180,168, 11, 33, 68,152, 60, +121,242,251, 26,141,134,191, 23,220,156,188, 2, 92,186,122,211, 65,128, 74, 39,127, 63, 31,183,241,174, 36,220,118,252, 63,207, + 59,227,241,240,245,241,118, 55,139, 69, 22,139,165,112,224,192,129,218,175,191,254,154, 52,104,208, 0,215,175, 95,183,111, 74, +139,170,224,154, 33, 89,167,211, 69,178, 44, 43,190,122,245, 42, 34, 34, 34,208,182,109, 91,204,159, 63, 31, 89, 89, 89,176, 90, +173, 8, 8, 8, 16, 44, 22,203, 25,147,201,244,219,191,189,192, 56,107,153,156,211,175,191,254, 58, 85, 38,147, 81, 0, 39, 0, +184, 69,176, 41,165,166,218,181,107,223,129, 93, 21,237,213,125, 36, 65,247,237,102, 98,112,112,112,156, 90,173,238,151,147,147, +115,135, 22,171, 67,135, 14,230,192,192,192,195,174,226,168, 84,170, 28,150,101,125, 1, 32, 57, 57, 25, 74,165, 82,156,144,144, +176,144, 16, 50, 13, 0,234,212,169,179, 80,167,211,137,235,216,230,211,160,160, 32,152, 76,166,114,205, 85,142,157, 73,251, 28, +192,231, 78,107,111,106, 94, 94,158,124,201,146, 37,250,133, 11, 23, 26,120,158, 55, 2, 56,152,155,155,235,240,131, 21, 17, 17, +145, 39, 18,137,124,180, 90,109, 45, 39,168,187,184,200,163, 64,176,238,186,173,231, 76,122, 92, 33, 89,174,104, 33, 8, 33, 48, + 24, 12,119,104, 67,236,183, 8,203, 34, 88,182,133,188, 74, 71,132, 54,114, 37,223,182,109,219,151, 31,127,252,241, 81, 87,255, +207,217, 6,107,205,210,247, 22,217,201,213,217, 35,251,240,125,124, 94,214,148,133,203,150, 87,181,178,155,248, 43,155, 7, 5, +250, 29,250, 96,225,123,154,107,123, 63,199,246, 53, 31,210,179,167, 78,181, 57,117,234,212, 75,227,199,143,175,109,235, 80, 58, + 0,127, 1,120,206,149, 91, 55,153,153,153,119,216, 63, 69, 70, 70, 94,214,106,181,129, 50,153, 12, 9, 9, 9,250,243,231,207, +187,125,244, 82, 26,179, 58,164, 52,185, 58,127,254, 60,186,117,235, 6, 0, 56,114,228, 8, 58,116,232,224, 22,201,178, 88, 44, +185,141, 27, 55,118,104,179,242,242,242, 4, 0,136, 77, 77,197,218,224, 96,112, 28,135,223, 23, 46,196,187, 22, 11,230,139,220, + 51,205,105,217,178, 37, 61,117,234, 20, 18, 19, 19, 97,181, 90,209,191,127,127,103,114,229,178, 4, 5, 5,189,117,240,224, 65, +255,181,107,215, 26,183,108,217, 98, 20, 4,129,105,217,178,165, 58, 58, 58, 26,203,151,151,116,163,231,158,123, 14, 83,166, 76, +193,249,243,231,161, 80, 40,208,169, 83, 39,126,246,236,217, 1, 19, 38, 76,120, 13, 37,215,240,203, 90, 96,104,175, 94,189,112, +248,240, 97,176, 44,139, 54,109,218, 32, 59,219,113,185, 7,129,129,129,101, 61, 99,109,227,253, 95, 89,136, 56,142,163,113,113, +113,139,186,116,233,130,219,183,111, 63, 21, 19, 19,243,201,200,145, 35,147,239, 21,215,219, 75,141, 22, 77,234,193,104, 52,194, +104, 52, 34, 36, 36, 4, 5, 5, 5,184,118,237, 26,140, 70, 35, 2, 3,180,110,227, 69, 55,107,224,192, 11, 8, 8, 64, 97, 97, + 33,110,220,184, 1,147,201, 4, 63, 63,111,119,250,124, 88,175, 94,189,126,253,242,203, 47,125, 55,110,220,104,234,218,181,171, +228,147, 79, 62, 33, 26,141, 6, 25, 25, 25, 85, 45,114,220,145, 35, 71,194,123,244,232, 17,117,241,226, 69,196,197,197,193,100, + 50, 33, 58, 58, 26, 87,174, 92, 65,251,246,237,161,215,235, 79,156, 58,117,234,135,154,176,192,216,143,239,236,233,240,225,195, +239,106, 52, 26, 11,128,101,247,210, 23,111,221,186, 37,109,222,188,185, 81, 38,147, 73,108,100,237,195,127,171,111,151,209,238, +247,116, 51,177,146, 57,101,130,159,159, 95,143,186,117,235, 34, 61, 61, 93, 44,145, 72,208,161, 67, 7,115,235,214,173,205, 65, + 65, 65,175,185,209, 46, 23,197, 98,113,231,146, 77, 4,143, 91,183,110,129, 82, 58,165, 89,179,102,111, 20, 20, 20, 32, 59, 59, + 91,162,209,104, 28,155,233,168,168, 40, 24,141,198,139,110,144,204,185, 17, 17, 17,211,197, 98,241,252,204,204,204,213,101,212, +145,164, 69,139, 22, 26,177, 88, 12,179,217,108, 44,245,172, 70,217,189, 85, 11,193,114, 98,141,165,213,230,149, 30, 15,186,106, +131, 69, 8,129,201,100,130, 82,169,116, 28, 61, 57,123,110, 47,139, 96, 85, 69,194,194,194,208,182,109, 91,249,246,237,219,183, + 44, 89,178,228, 88, 85, 48,118,126,249, 69,176,151, 80, 20,150,114, 98, 15, 46,157,253, 3,223, 94,200,205,154,178,112,217,235, + 79, 63,251,124,122,105, 66,182, 99, 76,229,120, 13, 3,148,205,106, 5,250, 30,250,240,131,247, 53,217, 23,143, 35, 53, 45, 13, +123, 78,156, 58,109,162,244, 2,128, 41,213,213,160,206,183,209,106, 74, 71,117,118,211,144,149,149,133, 11, 23, 46,216,201, 85, + 52, 0,116,236,216,241,140,157,100,157, 62,125, 26, 49, 49, 49,119,185,105,184, 75,211,144,147,179,160,212,111,244, 0,224,103, + 39,250, 28,199,161,195,244,233,110,147, 43, 66, 8,229,121, 30, 58,157,206,190, 51,172, 18,185,178, 97,117, 40, 42, 42,194,150, + 45, 91,178,174, 94,189, 26, 86,183,110,221, 9,159,127,254,249, 50,133, 66,113,167,138,163,168, 8, 61,122,244,192,184,113,227, + 48,115,230, 76, 97,228,200,145, 44,195, 48,229, 70,176,231,121, 94, 92,167, 78,157, 3, 0,158,184,120,241, 34, 0, 28,163,148, +118,176, 63,175,232,153, 11, 34, 20, 20, 20,136,212,106,117,153, 46, 30,196, 37,215, 52,221, 61,210,115, 96, 30, 61,122,244,253, +165, 75,151,126, 59,105,210,164,171,247,136, 89,166, 6,171, 95,191,126, 40, 54, 90,144,148,158, 7,158,183,194, 96,206,112, 27, +207, 89,131,213,175, 95, 63, 24,138, 77,184,149,170,131,213,202,163,192, 96,117,181,237, 21, 79, 62,249,228,207,219,182,109, 11, + 58,126,252, 56,120,158, 23,174, 92,185,114, 99,224,192,129,154,201,147, 39,251, 58,217,152,186, 43, 31, 63,255,252,243,131,143, + 30, 61,170,139,138,138,242, 57,113,226, 4, 50, 50, 50, 96,181, 90,241,196, 19, 79, 64, 34,145,220, 90,184,112,161, 24,192,199, + 53,133, 96, 73,165, 82,252,241,199, 31,213, 66,172,156, 69, 34,145, 84,249,152,241, 97,149, 19, 39, 78, 36,143, 31, 63,190,137, + 70,163, 89,222,169, 83,167,110,190,190,190,140,183,183,119, 92,173, 90,181,222,104,222,188,185,203,167, 9, 34,145,104,164, 82, +169,188,102,181, 90, 89,155,230, 28, 0, 96,181, 90, 37, 12,195,160, 78,157, 58, 14,165, 73,155, 54,109, 16, 20, 20,196,199,199, +199,143,116, 21, 63, 35, 35,227,142, 91,133,101,200,152, 14, 29, 58,112, 70,163, 17,137,137,137, 71, 74,107,232, 31, 21,146, 85, +174,129, 10,195, 48,160,148, 66,214,170, 21, 82,247,237,195,215, 95,127, 93, 33,208,154, 53,107, 80, 90,165, 71, 8,233,225,236, + 43,195,126, 91,240,149, 87, 94,113,124,231,244,233,211, 14, 99,247,254,253,251,223,129,121,242,228,201,187, 72, 86,105,204,114, + 26,247,226,142, 29, 59, 78, 45, 94,188,248,132,139,147,161, 3,211,110,131, 53,248,133, 23, 83, 87,188, 63,243,220,198, 31, 14, + 52, 75, 53,208,212, 41, 11,151, 77, 42, 77,174, 92,197,108, 28,164,106, 28, 26,224, 27,183,244,131,247,189,236,218,176,109,103, +210,242, 96,165, 99,220,105, 44, 87,202,238,172, 73, 36,132, 8,213,129, 89, 5, 98,113, 7,166,179,155,134,212,212, 84, 7,185, +114,114, 52, 26,221,177, 99,199, 51, 54,114,101,127,102,173, 74, 62, 57,142,195, 36,189, 30, 28,199,161,235,156, 57,120,226,189, +247,220, 46, 59,207,243,224, 56, 14,145,145,145,110,147, 43,103, 76, 74,233,209,115,231,206, 69,140, 24, 49, 66, 29, 25, 25,153, + 64, 8, 17,141, 26, 53, 74, 8, 14, 14,102,126,255,253,119, 80, 74,209,177, 99, 71,164,167,167, 67, 16, 4,108,222,188, 25, 35, + 70,140, 32,127,253,245, 23, 21, 4, 97,127, 69,249, 76, 76, 76, 28,211,189,123,247, 53,197,197,197, 92,118,118,246, 24, 87,159, + 85, 86,246, 29, 59,118, 92,141,140,140,236,130,242, 93, 49, 8, 0,142,223, 11,166, 77,123, 23,117, 47,152,229,105,176,190,250, +234, 43, 8,130,128,176, 32, 45,140, 70, 35, 74,147,217,202, 48, 75,107,176,182,111,223, 14, 65, 16, 80, 59,216, 7, 38,147, 9, +118,195,224,202, 48,125,125,125, 63,220,180,105, 83,104,124,124, 60,146,146,146,176,108,217,178,155,185,185,185,125,114,115,115, +165,179,103,207, 62,244,194, 11, 47, 4, 10,130, 96,116,119,108, 82, 74,141,132,144,145,143, 63,254,248,230,121,243,230, 93,111, +212,168, 81,237, 14, 29, 58,104,179,179,179, 51,255,252,243,207, 27,107,214,172, 81, 89,173,214,145,229, 29, 61, 61,136,241,238, + 44,201,201,201,115,108,235,140, 91,196,202,149,124,158, 60,121,242,109, 27,246, 73, 87,176, 31, 84,217,239,245,102, 98,101,249, + 92,185,114,101, 18, 74,249, 55,115, 55,159, 39, 79,158, 76,236,209,163,199,123,129,129,129,179,101, 50, 25, 50, 51, 75,130, 19, +216, 53,141,246,245,186, 85,171, 86,232,213,171, 23, 46, 95,190,252,222,244,233,211, 19,239,165, 62,109, 27,237,122, 0, 94,234, +222,189,251,228,193,131, 7, 99,229,202,149,160,148,174,127, 84, 9,177,221, 77, 3,113,254, 11, 0, 22,139,229,246,181,107,215, +130, 27,228,228,176, 33,132,160, 77,155, 54,112,142, 33,104,183,203,177, 27,202,253,246,219,111, 86, 65, 16, 42,244, 57,197,243, +252,237,163, 71,143, 6,238,219,183, 79,100,111, 72,155,177,166,144,146,146,194, 28, 58,116,200,161, 13,227, 56, 14,113,113,113, + 86,179,217,124,203,221, 66, 93,190,124,185, 90,118,111,191,157, 79,124,227,231, 61,223,249,181,107,219, 41, 87,227,227, 83,230, + 0,182,123,124,175,176, 99,113,204,252,197, 11,223,211,218,201,213, 87,103,210,114,139,141,124,183,139,153, 69,103,171,187, 65, + 11, 10, 10, 18,237,183, 5,245,122,253,173,154,210,209,236, 55, 8,131,131,131,207,160,212,109, 65,251,179,152,152,152,187,158, +185,165, 38, 17, 4,120,121,121, 57, 38, 7,119,237,174, 8, 33,212,126,100, 93,122, 60, 84, 69,210,210,210,150, 76,159, 62,189, +231,130, 5, 11,252,247,238,221,171,177, 97, 98,208,160, 65, 25,231,206,157,235, 4, 64, 90, 88, 88,184,127,193,130, 5,254, 78, +241, 8,185,190,125,251,166,167,167,167,175,168,164, 62,175, 3,232,238,238,179,202,100,240,224,193, 9, 40,195,225,231,189,200, +253,192,180,139, 46, 55, 31, 9,137,201,182, 88,148, 2,248,155,233, 14,187, 41,139,197, 10, 93,126,182,219, 26,172,107, 55,146, +109,161,193,120,240,124,138, 13,175,196,208,157,230, 20,185,162, 29,232,184,124,249,242, 62, 12,195, 48,191,255,254,187,113,241, +226,197,183, 51, 51, 51,251, 83, 74,111,217,250, 89,215,141, 27, 55,110,113,193, 37, 67,121,109,127,129, 16,210,126,234,212,169, +175, 3,232, 8,160, 54,128, 91, 0,142, 0,248,184,134,121, 28, 95,246,144, 98, 87, 89, 30,150,155,137,251,247,239,159, 51, 96, +192, 0, 46, 60, 60,252,157,240,240,112, 38, 39, 39, 7,122,189, 30, 12,195, 32, 40, 40, 8, 77,155, 54, 69, 80, 80,144,112,241, +226,197, 5, 83,167, 78,173,212,167, 94,147, 38, 77,234, 89, 44,150,250, 12,195,212, 3, 80,143, 82, 90,143, 16, 82, 15,128,143, + 77, 19,166,137,136,136,224,218,181,107,135,182,109,219,226,208,161, 67,216,185,115,231,231,148,210,159,157,181, 87,213, 49,247, +214,120, 13, 86, 78, 78, 78,175, 62,125,250,236, 99, 89,182, 78, 89, 11, 86, 25, 65,153, 19,211,211,211,159,170,112,242,202,201, +233,245,198, 27,111,236, 99, 89,182,142, 93, 51,101,181, 90,141, 58,157,238,213,174, 93,187,174, 18,137, 68, 82,103, 92, 65, 16, +110,166,167,167, 63,208, 88,122,165,253, 96,245,234, 51, 32,235, 94, 49, 85, 98,166,254,165, 31,215, 34, 61, 35, 11, 95,157, 73, +203, 41, 48,241, 93, 47,103, 22,158,187, 31,249, 79, 76, 76,236, 93, 83, 59,155,141, 72,149,121,244, 87,209, 51, 23, 37,211, 5, + 71,162,153,149,228,143,216, 72, 22,169,166,242,158, 35,132, 60, 62,126,252,248, 25, 10,133,162, 13, 0, 20, 21, 21,253,158,146, +146,242,158,253,150, 96,101,207, 61, 82,190, 88, 44,150,164,166,141,163,236,117,125,135,107, 6,231,215, 86,171, 53,201, 29,188, +178,112,156,223,243, 60,159, 84,137, 22,121, 82,219,182,109,217, 73,147, 38,165,239,221,187,215, 30,224,182,200,169, 95, 92, 70, + 5,206, 68, 93,236, 91, 70, 0,139,109,201, 35, 53,112,174,115,231,253,191, 37,223,125,247,221,140,161, 67,135,110,244,241,241, +249,162, 94,189,122, 81,129,129,129, 26,185, 92, 14,163,209, 88, 96, 50,153, 46, 93,190,124,121,216,244,233,211,175,187,130,181, +113,227, 70, 22,128, 88, 16, 4, 25,195, 48, 74, 0, 26, 66,136,183,157, 96, 17, 66, 96, 54,155,145,152,152,136,119,223,125,151, + 63,112,224,192, 7, 0,102,185,145,221,214, 0,252,157,230,113,127, 0, 38,148, 56,158,205, 4,112,234,161, 33, 88, 54,111,213, +237,171,185,211, 85,132, 25, 94, 83, 42,101,184,113,241, 86,172, 89,124, 71, 28, 66, 59,249, 42,243,125, 37, 7,125,121, 6,235, +248,143,127, 62,191,196,104,165,130,217, 42,140,186,156, 81,120,225, 63, 60,241, 88,171,242,204, 5,220, 39,171, 41,127,164,154, +203,155, 0, 96,120, 85,159,123,164, 2,182,156,153,217,170, 38,226,153, 76,166, 55, 30,127,252,241,143,120,158, 95,106,177, 88, +142,120, 90,202, 35, 53, 89,190,250,234,171,235,246,117,121,200,144, 33, 44, 0,236,216,177,195,237,219,189, 35, 70,140,224,109, + 1,198,139, 1, 20, 2,200, 71,137,163,108, 2, 0,133,133,133, 57, 41, 41, 41, 23,121,158,191, 8, 96, 75, 21,110,208,250, 19, + 66,126,164,148,246,179, 17,182, 31, 41,165,253,156, 63,123,104, 8,214,127, 85,118,156,255,103,129, 45, 77,156, 42,123, 95,158, + 92, 74,211,199,221,235,142,213, 35, 30,241,200, 67,179,137,184, 5,160,191,167, 38, 60,242,208,173,127, 85, 32, 86,118,185,112, +225,194,125, 51, 5,120, 88,133,241, 84,129, 71, 60,226, 17,143,120,196, 35, 30,241, 72,245, 10, 1,208,163,156, 93,152, 59,183, + 3,122, 84, 97,151,183,223,131,233,193,244, 96,122, 48, 61,152, 30, 76, 15,230,127, 11,179,138,210,183,146, 35,194,221, 53,142, + 97, 57, 27,113, 86,119, 2,208,195,131,233,193,244, 96,122, 48, 61,152, 30, 76, 15,166, 7,243, 30, 83,183,105,211,166,189,141, +146,248,196,116,218,180,105,111, 83, 74,251,150,208, 24,218,247, 1,231,197,165,228,177,193,242,136, 71, 60,226, 17,143,120,196, + 35, 53, 93,142, 45, 92,184,176,104,225,194,133,118,131,246, 76, 0,196,166,189,202,172,137, 25,254,215, 8, 22, 33, 36,132,225, +196, 47,138,196,210,110,160, 66, 83, 0, 0,195,158,231, 77,197,191, 90,173,230, 47, 40,165, 41, 46, 96,148,121,227, 43, 10,104, + 28,169,149,127,111,228,121,241,173, 2,211,144, 75, 37,142,232,202,210,222, 85,232,240,109, 8, 33, 29,100, 18,201, 47, 18,173, +182, 76,239,130,166,220, 92, 67,177,201,212,115, 7,165, 71, 61,125,223, 35, 30,241,136, 71, 60,242, 48, 8, 33, 68,233,237,237, +125,128, 97,152,112,167,207, 80,214,107, 0,224,121, 62, 85,167,211,245,164,148,102, 61, 72,204,210, 75, 46,202, 89,203,107,170, +112,182,130,219,137, 70,165, 17,172, 27, 5,171, 58, 69,213, 11,255, 50, 37, 45,253, 76,126,177,105,244,165,228, 2,157,219, 63, + 42,150,189,162,245, 11,154,255,191,145,111,248, 70, 54,140, 34, 97, 97,181, 0, 10,220,186,157, 20,120,237,234,149,238,219, 55, +125, 60, 81, 44,147,189,107, 46, 46,254,204, 93,236, 72, 64, 25,161,146, 30,254,108,218, 11, 90, 14, 86, 60, 63,239,203,189,130, +222, 92,251, 74,201,181, 81,151,101, 8, 33, 29,188,125,124,126, 94,188,111,159, 92,221,178,101,105, 98, 6, 65, 16,160, 63,115, + 70, 62,173,119,239,159,135, 16,210,203, 67,178, 30,201, 73, 40, 72,163,209, 76, 16,137, 68, 93,205,102,115,184, 68, 34,185,205, +243,124, 92, 78, 78,206,114, 74,105,178,167,134, 60,226,145, 74,199, 80,185, 1,198,255,205,224,227, 0,160, 86,171,255, 96, 24, + 38,212,121,241,183,251,103, 44,237,231,209,201,223,227,245,236,236,236,199, 43, 40,111, 61, 31, 31,159, 85, 0, 90, 87,230,232, +216,182,191, 63,165,211,233, 94,181,185,107, 41, 11, 79,237,237,237, 61,135, 16, 50,132, 97,152, 74, 3,254, 10,130,192, 83, 74, +119,228,228,228,204,162,148, 22,148,247, 61,111,111,239,253,241,241,241,173, 3, 2, 2, 42,117, 75, 99,181, 90,113,235,214, 45, +255, 54,109,218,252, 6,160,209,253,196,116,135,139, 60, 52, 4,203,214,216, 46, 69,176, 22, 4,188,184, 97,254,171,181, 82,111, + 94,173, 53,102,193,214,134,141,252, 20, 93,227,179,138,210, 92,253, 65,137, 92,253, 67,199, 39,250,117, 27,247,250, 36,229,159, +231, 46,225,151, 67,199,145, 95,104, 4,203, 48,208,170, 21,104,216,176, 62, 89,182,246,107,191,207, 63, 93,182, 84,174,210,246, + 53,232,115,159,113,167, 64, 94, 10,238,157, 41, 3,219, 40,125,125,120, 64,224,241, 86,159, 22,202,119,126, 60,243, 14,138,172, +239,184, 77,174,246,239, 87,100,164,167,227, 3, 95, 95,112, 22, 11,100,132, 64, 78, 8,100, 0, 84, 82, 41, 58,125,249, 37,230, +239,222,173,120,183,111, 95, 15,201,122,196, 68,173, 86,143,108,216,176,225,226,117,235,214,249,214,173, 91, 23, 74,165, 18, 58, +157,206,239,242,229,203, 45,223,124,243,205,225, 94, 94, 94,211,243,242,242,214,120,106,202, 35, 30, 41,151,108,180, 4, 80,102, +240,246,138,158, 61, 40, 97, 24, 38, 52, 57, 57, 57, 64,161, 80,128,231,121,155,247,126,193,177,129,118, 62,224,176, 57,152, 69, +163, 70,141,204,149,204, 27, 43, 51, 50, 50,122, 56,135, 44,171,232,160, 36, 57, 57,185, 71,147, 38, 77, 86, 2,232, 89, 14,105, +153,243,250,235,175, 79,104,214,172,153, 93,235, 99,139, 90, 80,242, 55, 43, 43, 11,227,199,143,119,252,134, 32, 8,216,183,111, +223,235, 35, 71,142, 4,128, 55, 43, 40,123,120, 64, 64, 0, 25, 51,166, 98, 95, 67,179,103,207,198,236,217,179,241,241,199, 31, + 19,145, 72,164,173,164, 62,171, 5,211, 85, 46,242, 80, 17, 44,151, 59, 37, 21,246,204, 91,190,110,244,220, 17, 29,201,134, 55, +123, 68,142,253,120,255,241, 38, 33,242,206, 23, 82, 12,183, 93,208, 92,141,106,215,249,169,174,227, 39, 76, 81,110,253,238, 32, + 46, 95, 60,139,248, 35,219,238,248, 78,171,158, 35,145,150, 85,128,145,227,222, 82, 17,150,235, 42,150, 41, 70,153,139,139, 54, +184,146,183, 40, 32, 48, 92, 42,249,191,246,109,155,138, 80, 59, 9,160, 64,199,152, 6,162,176,159,255,254,191, 2, 88, 63,190, + 4, 84, 26, 75,176, 52,185,218,250,236,179,232,109, 48, 32, 16, 37, 62, 45,236,169, 8,192,165, 1, 3,208,232,219,111, 49,231, +251,239, 21,179,250,247,119,155,100, 41, 20,138,207, 13, 6,195,162, 42, 56, 92,251, 55, 39,205,134,106,181,250,221,252,252,252, + 23,107, 80,158,130, 1,100,150, 17,191, 80, 12, 64, 75, 41,117, 43,226,175, 76, 38,123,229,249,231,159, 95,182, 98,197, 10, 69, +122,122, 58, 82, 82, 82,192,243, 60,100, 50, 25, 34, 35, 35,201,254,253,251,125,167, 76,153,178, 68,163,209, 72,243,243,243, 63, +114, 35,159,140, 72, 36, 26,225,227,227, 51, 32, 48, 48, 48, 32, 51, 51, 51, 51, 39, 39,103,151,209,104,220, 80,213,157,188, 13, +115, 88, 68, 68,196,128,144,144,144,192,228,228,228,172,164,164,164, 31,140, 70,227,231,148, 82,225, 30,235,180, 57, 0, 95,219, + 71,169, 17, 17, 17,231,111,220,184,145, 81,141,152, 41, 17, 17, 17, 23,220,197, 36,132, 40, 1,108, 7, 16, 82,201, 87, 83, 0, + 60,103,115,112,236,145,127,129, 92,217, 66, 79,221, 65,164, 42,122,246,160, 69, 46,151, 99,219,182,109, 16,137, 68, 16,137, 68, +200,201,201, 65,104,104,168,227,189, 88, 44,118,188,174, 93,187,118,165,120, 60,207,183, 97, 89, 22,122,189, 30, 60,207, 59, 82, +110,110, 46, 40,165,144, 74,165,224,249,146,176, 75, 78,207,219, 84, 80,143, 67, 66, 66, 66,176,117,235, 86,152, 76,166,187,158, +107, 52, 26,156, 59,247, 79, 80, 16,150,101,209,182,109, 91,134, 16, 50,164, 34,130,101,215, 20,197,198,198,130,101, 89, 71,232, + 59,251,107,123,226,121, 30,179,103,207,134,115, 8,177, 7,137,249,208,143, 3, 91, 33,105, 89, 97, 66, 26, 5,169, 94,237,213, +173,221, 7,114,169, 88, 46, 88, 45,224,173,102,240, 22, 19, 56,194,163,103,243, 96,180,175,171, 64,166, 46, 31, 99,214,156,204, + 79, 78, 54,182, 61,151, 93,112,185,130,202, 15, 81,107, 3,254,250,116,243,119,126,191, 28,143,199,249,179,103,112,102,239,170, + 50,191,219,227,249,105,104,210,188, 53, 30,107, 16,132,201, 99, 7,103,101,103,164,180, 40,203, 38,171,180, 13,214,227,106,241, +230, 21,195,186, 61,223,188,165,150, 65, 23,219,122,181,223,138,211,199,211,248, 55,126,248,115,235,241, 2,243,240, 82, 76,249, +174,173,197,112,169,180,232,147,227,199,229, 25, 25, 25,216,250,236,179,136, 49, 24,144, 37, 18,161,177,197,226, 32, 89,185, 0, +178, 57, 14, 65, 86, 43,138, 53, 26, 4,125,253, 53,120,134,193,180,222,189, 13,155, 77, 38,133,171,149,175, 82,169, 50, 89,150, +229,243,243,243,187, 62, 12, 36,203, 70,174, 14, 17, 66,196,121,121,121, 62, 53, 32, 63, 12,128,185,163, 71,143, 30,117,248,240, +225,107,215,174, 93,235, 97,243, 36, 12, 66, 8, 87,191,126,253,131,157, 58,117,170,183,126,253,250,207, 0,204,117,133,112, 16, + 66,106,213,173, 91,247,207,243,231,207,251, 93,185,114, 5,122,189, 30, 34,145, 8,195,134, 13,195,215, 95,127, 13,177, 88, 12, +169, 84, 10,177, 88,140,206,157, 59,103,221,184,113,163, 53,165,244,166, 11,184,172,151,151,215,231,171, 86,173,106,208,191,127, +127,206,104, 52,130,231,121,236,216,177,195, 50,107,214,172,196,236,236,236,151,220, 37, 89,132, 16, 38, 56, 56,120,195,103,159, +125,214,240,137, 39,158,224, 12, 6, 3, 4, 65,192,238,221,187, 45,239,188,243,206,245,212,212,212,225,148, 82,190, 10,245,218, + 82,161, 80, 52,121,245,213, 87, 51,251,247,239,111, 6,128, 83,167, 78, 49,103,207,158,213,212,173, 91,247,230,140, 25, 51,206, + 84, 1, 51, 70,173, 86, 71,141, 25, 51, 38,171, 95,191,126, 22,177, 88, 44, 28, 61,122,148,187,124,249,178, 38, 34, 34, 34,225, +157,119,222, 57,235, 6,214,158, 99,199,142,117, 9, 13, 13, 21,108,147, 58,181, 79,240, 12,195, 80,219, 95, 92,186,116,137,235, +210,165,203, 33, 74,233, 51,240,200,131, 28,151, 28, 0, 11,165, 20, 58,157, 14, 39, 78,156, 64,223,190,125, 1, 32,218,246,149, + 51,148, 82,228,231,231,195, 96, 48, 32, 56, 56, 24, 0, 68, 15,250,184, 80,171,213,166,103,102,102, 6,124,255,253,247, 16,137, + 68,216,183,111, 31, 86,175, 94,141,109,219,182,149, 73,178,130,131,131, 17, 25, 25,153,148,146,146, 18, 86,193,156,158,167,215, +235, 53,121,121,121,224,121, 30, 39, 78,156,192,186,117,235, 16, 16, 16, 0, 63, 63, 63,248,251,251,163, 77,155, 54, 80, 42,149, + 14,146,213,169, 83,167,124,189, 94,239, 85, 22,158,175,175,111,202,164, 73,147,130, 79,159, 62, 13,139,197, 82, 38,193,154, 48, + 97,130,179, 22, 9, 10,133, 2,237,219,183, 79,205,206,206, 46,119, 3,226,239,239,159,154,153,153, 25,116,246,236,217, 59,200, + 79, 89,132,136,101, 89,168,213,106,212,169, 83, 39, 61, 53, 53, 53,232,126, 98,150,199, 69, 30,122, 13,150,109,162,234,122,135, + 70, 40, 34,232,221,197, 19,134,200,193,155, 65, 45, 6,192, 92, 4,152,245, 16, 76, 69, 32, 98, 57, 96, 49,192, 95,170,195,246, +113, 81,154,169, 91, 19, 46, 54,246,215,244,189,152,153,255, 83,153,154, 47, 78, 60,108,200,136,215,125,147, 50,242,145,156,158, + 7,150,249,199,199,105,116,143, 17,224, 88, 6, 39,127, 46, 81, 84, 49, 44,139,188, 66, 35,114,245,102, 12, 30, 49,193,231,179, +101, 51,135, 1, 88, 84, 81, 65,154, 2,145, 77, 85,170,129,205,154,134, 51,104,144, 10, 82,111, 87, 9,137, 58,252, 52, 90,230, + 4,176,141,126,145, 12,212, 23,152, 23,156, 7,174, 84,132, 35,209,106,229,234,150, 45,177,216,215, 23,125, 12, 6, 92,227, 56, + 60,175,211,225,183, 9, 19,192,109,216, 0, 14,128,113,212, 40,116, 88,190, 28,231,124,124, 16,146,159, 15,243,168, 81,144,156, + 62, 13,177,151,151,220,157,202, 23,139,197,230,117,235,214,133,188,252,242,203,135, 8, 33, 53,154,100, 17, 66, 26,250,248,248, + 28,122,255,253,247, 3,103,204,152,145, 90, 77,152,129, 74,165,114, 71, 97, 97,225, 4,119,119,176, 54,114, 53,111,205,154, 53, + 99, 99, 99, 99,181, 47,191,252, 50,189,118,237,154, 22,128, 93, 27,226,223,169, 83,167,250,235,214,173, 11,106,221,186,245,235, + 99,198,140, 17, 19, 66,166, 87, 70,178, 84, 42,213,184,117,235,214,249,101,101,101, 57,200,149, 72, 36, 66, 82, 82, 18,228,114, +185, 35,216,185, 72, 36,194,251,239,191,239, 59,110,220,184, 9, 0, 38, 84,150, 95,169, 84, 58, 98,213,170, 85, 13,122,245,234, +197, 37, 38, 38,130, 97, 24, 72,165, 82,188,240,194, 11,162,162,162,162,240,185,115,231,198, 2, 88,229, 78, 29,136, 68,162, 97, +107,215,174,109,216,161, 67, 7, 46, 62, 62, 30,237,219,183,199,201,147, 39,241,236,179,207,138, 10, 10, 10,234, 76,153, 50,101, + 52,128,181,238,106,153, 20, 10, 69,179, 95,127,253,245,118, 88, 88,152, 99, 3, 82,167, 78, 29,190,111,223,190,186,248,248,248, +168,227,199,143,103,183,111,223,254,150, 27,152,181, 20, 10, 69,163, 61,123,246,164,206,157, 59,183,251,154, 53,107,250, 3, 64, +155, 54,109,126,120,239,189,247, 14,234,116,186,166,135, 15, 31,214,117,234,212, 41,201, 69,200,144,224,224, 96,126,252,248,241, +170,138,190,180,126,253,250, 92, 0,181, 9, 33,117,109, 1,176, 61,242, 0,132, 82,106, 37,132, 68, 19, 66,206,236,222,189, 27, +109,219,182,197,238,221,187,209,183,111,223, 51,182,231,200,203,203,195,185,115,231,208,185,115,103,160, 36,192,251,191, 98,139, +197,243, 60, 56,142, 67, 82, 82, 18,214,175, 95,143, 5, 11, 22, 32, 50, 50, 18, 22,139,197, 49,246, 57,142,131, 72, 36,178,107, + 91, 92, 90,244,173, 86, 43, 78,157, 58,133, 47, 54,111,198,244,119,223,133, 90,173, 6, 0,152,205,102,232,114,114, 32,147,201, + 28, 26,172, 74,234,114,199,213,171, 87, 39,132,134,134,222,113, 52,104,255,107,155,179, 32, 8, 2,172, 86, 43,138,139,139,177, +108,217, 50, 43,165,116, 71, 37, 99,210,161,241,154, 48, 97, 2,140,198,127,226,131, 55,111,222, 28, 0, 16, 17, 17,129, 22, 45, + 90, 56,222, 51, 12, 67, 93,197,252,236,241,102, 48, 56,125, 59,106,246, 18, 0, 64,104,104, 40,162,162,162,236,164,186, 76,204, +178,184,200, 67, 77,176,202, 99,138, 23,111,164, 45,122,121,202,146, 37, 74, 25, 43,122, 99,192, 99,168,173, 21, 3,114, 31,136, + 59, 79, 5,209,134,151,116, 0,221,117,224,151,169, 88, 58, 80,199,196,110, 41,254,174,190,143,143,255, 53,157,238, 46,227, 58, +145, 88,214,173, 94,131,134,228, 86,170, 14, 28,199, 65,233,229,135,199, 7,188, 9,150,101,160,210,250,129,240,134,127,212,156, + 12, 11,142,229,160, 43, 48, 32,162,110, 3, 70, 42,147,119,171,140, 96,121,121,137, 86, 78, 30,250,184,140,145,101, 1, 33, 18, +167,169, 88, 2,198,183, 0,147,122, 71,202, 99,127,248,123, 37,242, 44,221, 93,170, 24,187,198,202,106,197,111, 19, 38,160,251, +218,181,248, 29,128, 8, 64,204,218,181,184, 20, 27,139, 0,139, 5, 82, 0,172,209, 8,107,169, 51,123, 23, 23, 30, 12, 24, 48, + 0, 89, 89, 89,129,239,190,251,110,149, 73,150, 92, 46,255,130, 16,210, 71, 36, 18,153, 9, 33, 96, 24,198, 17,156,219,254,218, +108, 54,139, 89,150,221,147,149,149,229,246,209, 30, 33,164,161,183,183,247,161, 99,199,142, 5, 42,149, 74,204,158, 61,187, 90, +200,149, 90,173,254,125,244,232,209,181,191,248,226,139,159, 8, 33,189, 93, 37, 89,165,201,213,218,181,107,115,215,175, 95,255, +153,243, 81, 32,165, 52,149, 16,178,161,117,235,214,175,198,198,198,106, 1,140, 29, 51,102, 12, 42, 35, 89, 82,169,180,107,189, +122,245,160,211,233, 28, 19,172, 84, 42, 5, 0, 40,149, 74,120,121,121, 65, 44, 22,195,104, 52, 34, 58, 58,154, 72, 36,146,142, +174,228, 89,173, 86,247, 25, 56,112, 32,119,244,232, 81,164,165,165,193,203,203, 11, 74,165, 18, 60,207,227,149, 87, 94, 17, 47, + 95,190,252, 41,119, 9, 86, 88, 88, 88,255,238,221,187,115,231,207,159,199,141, 27, 55, 96, 52, 26,113,249,242,101,104, 52, 26, +188,244,210, 75,226,197,139, 23, 63,237, 46,193, 2,208, 44, 54, 54, 54,221,153, 92,217, 69,169, 84,146,134, 13, 27,234,124,125, +125, 99, 0,220,114, 7,243,181,215, 94,203, 88,184,112, 97,231,253,251,247, 79,181,127,184,127,255,254, 41, 0,240,209, 71, 31, + 29,246,247,247,143, 1,224, 42,193, 2,165, 84,248,223,255,254,119, 83, 34,145, 64, 36, 18, 65, 34,145,220,145,196, 98, 49, 24, +134, 81,219,167,148, 71, 88, 91,212, 26,192,135, 40,185, 97,245, 46,165,244, 68, 13, 33, 89,127, 18, 66,162,251,246,237,235, 32, + 89,123,247,238, 69,239,222,189,145,155,155,139,243,231,207, 59,147,171,127,203, 6, 11,130, 32, 64, 36, 18, 97,201,146, 37, 48, +155,205,216,178,101, 11,118,238,220,121,199, 28,170,209,104,240,241,199, 31,187,117,156,197,243, 60, 54,110,220,136,169, 83,166, + 56,200,149,109, 83,141,160,192, 64,248,250,249, 33, 33, 33,161, 82,130,149,147,147, 51,107,215,174, 93,168,200,200,125,215,174, + 93,142,215,206, 70,238,174,228,147,101, 89, 24,141, 70, 60,249,228, 63,161, 92, 95,123,237, 53,199,107,157, 78, 7,150,101,237, +117, 65, 92,197, 52, 80, 96,128,236,159,207,250, 76,154,228,120,157,149,149, 85, 46,230,163,160,181, 42, 83,131, 85,150, 92,201, + 40, 92,193,145,212, 22, 11,199,247, 28, 81, 59,192, 11, 84,159, 14,241, 19,179,240, 87,166, 28, 75,150,237, 1, 0,188,245, 66, + 43, 52,239, 49, 15,166,207,123, 98, 66,123, 86,242, 98,146,113, 50,128, 25,119, 15, 56,161, 81,104,173, 16,252,117,237, 28, 56, +150,133,196,203, 15, 94, 62,129, 16,172, 38,228,101,220,192,161,111, 86, 2, 0,214,108,220, 1,134, 97,192,113, 44,140, 38, 30, +145,181, 67, 32, 8, 66,163,138,242,217, 24,120,188,107,160, 95,219,136, 8, 31,130, 38,185,184, 43, 2, 80, 75, 41, 34, 83, 84, +164,189, 74,222, 38, 39, 47,255,241,139,192,177,202, 42, 70,102, 67, 9, 6, 32,222,176, 1,191, 3,104,183,182,100,173,186, 28, + 27, 11,213,134, 13, 80,218,190, 35, 37, 4,249, 60, 95,165, 1, 14, 0, 81, 81, 81, 88,179,102, 77,224,184,113,227,170, 68,178, +138,139,139,231,107, 52,154,238, 27, 54,108, 8, 28, 56,112,224, 93,207,175, 93,187,134,206,157, 59,167,167,165,165,205,191, 23, +114,165,213,106,113,251,246,237,123, 62, 55,183,147,171,125,251,246,133,135,134,134, 34, 58, 58,218,255,173,183,222,114,135,100, +205,112, 38, 87, 99,198,140,249, 27, 64, 0, 33,164, 52, 65, 33,182,103,143, 57,145,172, 60, 0,139, 43,216,121,134, 43,149, 74, +100,100,100, 96,196,136, 17,184,114,229, 31,133,103, 72, 72,136, 99,103,151,144,144, 0,127,127,127, 16, 66, 2, 92, 41,179,191, +191,127,160,201,100,194,168, 81,163,112,251,246, 63,230,138,181,106,213,178,215,169,159,187,245, 24, 24, 24, 24,104, 48, 24,208, +169, 83, 39, 20, 23, 23, 3, 0,158,123,238, 57,136, 68, 34,100,100,100, 64, 36, 18,249, 85,161,121,252,250,246,237, 91,174,139, + 20,141, 70, 99,246,246,246,110,236, 38,166,239,211, 79, 63,157,188,118,237,218,187,142,234, 78,158, 60,249,140,143,143,207,126, + 31, 31,159,134,110, 98, 10,206,100, 74, 44, 22,223, 65,176, 68, 34, 17, 24,134, 17,240,232,203, 7, 0,236,183,218, 86, 3,104, + 81,131, 52, 89, 14,146,181,119,239, 94, 52,109,218, 20, 57, 57, 57,136,143,143,255,215,201,149, 19, 33, 1,199,113,142,205,177, + 76, 38, 67,116,116,180,131, 92, 17, 66, 80, 84, 84, 4,142,227,236,243,181, 75,147, 95,110,110, 46,130,131,130,160, 86,171,209, + 32, 50, 18, 87,109,243,136,253,181, 84, 42, 5, 33, 4, 86,171,181,178, 58, 44, 64,137, 45,213,155,213,221, 60,118, 50, 84,161, +170, 56, 36, 4,130, 32,216,231,124, 90, 29,152,126,126,126,208,235,245,174, 98, 62,252, 4,139, 16,210, 5,192, 33, 56, 93,141, + 36,132, 48,141, 3, 85,235, 23,142,235, 62,162,103, 83, 63, 24, 50,111, 64,166,246, 3,209, 70, 96,201,178, 61, 56,127, 61, 27, + 0,176,228,203, 63,176,117,110, 31, 64,238,131, 40,175, 44, 4,169,185,129,101, 17, 44, 2, 74, 4, 74,193,177, 37,231,177, 28, +199,130,101, 25,232, 50, 83,177,124,214, 88, 27,185,218,137,221,135,227, 17, 90,175,169,227,156, 22,132, 0,180,226, 78,237,239, + 37, 94, 51,110, 80, 59, 57,209,230, 2, 90,209,221, 95,240, 22,131, 68, 48, 24,223, 53, 84,113,106, 87,241,154,139,121,230, 38, +149,106,133, 8,113, 24,180,115, 0,196, 78,207,196, 54, 77, 22, 99,223, 26,219,110,157, 84,129,104, 56, 84,188,129,129,129, 88, +176, 96, 65,224,180,105,211,182,192,205,192,208,148,210,203,132,144,174,175,188,242,202,161,236,236,236,192,168,168, 40,168, 84, + 42,168, 84, 42,164,167,167, 99,240,224,193,233,105,105,105, 85,213,142,109, 30, 61,122,116,160, 88, 44,198,181,107,215,224,227, +227,227, 32,134, 85, 37, 87, 26,141,230,247,253,251,247,135,215,175, 95, 31,151, 46, 93, 66,227,198,141,177,125,251,118,255,231, +159,127,222, 37,146, 37,151,203, 7,216, 8, 19, 98, 99, 99,181,177,177,177, 93, 0,116,169,236,183, 99, 99, 99,181,111,190,249, +230,211, 21, 17, 44,145, 72,116, 91,167,211, 5,201,229,114,124,243,205, 55, 80,169, 84, 80, 40, 20, 8, 9, 9,129, 78,167,131, + 66,161, 0,165, 20, 22,139,197, 62, 73,100,187, 82,238,204,204,204,116,158,231,195,126,250,233, 39,100,102,254,227, 19, 47, 60, + 60, 28, 54,123,141, 44,119,235, 50, 37, 37, 37,157, 16, 18,246,215, 95,127, 33, 49, 49, 17,189,123,247,198,119,223,125,135, 86, +173, 90, 1, 0, 76, 38, 83, 85,156,239,241, 44,203,210, 10,218,143, 0,240,174, 78, 76,219,162,229, 22,166, 32, 8,130,157, 92, + 57,255,117, 38, 93,149,252,230,163, 34, 94,206,251,131,154,154,201,222,189,123, 67,167,211, 65,165, 82, 85,186, 0, 63,104,130, + 37, 18,137, 48,103,206, 28,140, 29, 59, 22,129,129,129,152, 58,117, 42, 56,142,115, 36,231,147, 0,119, 36, 32, 48,176,194,231, +118, 27,172, 74,230, 75,181,151,151,215, 28,134, 97,134,176, 46, 84, 28,207,243,188, 32, 8, 59,242,242,242, 42,116,211, 96, 55, + 72,119,165, 45,156,235,160,146,188,222, 51,102, 89, 92,228, 97, 22,123,233, 14,217, 84,115,135,156,201,213,251, 99,187,141,232, +217,212, 27, 63, 28, 56, 1,177, 57, 23, 48, 21, 84,208,178, 22, 16,177, 18,129, 94,162,208, 50, 43,159, 97, 47, 37, 37,167,192, +215, 91,101, 35, 87,182,196, 48,104,222,180,100,243,186,251,112, 60, 66,235, 54, 5,199,178,224, 88, 22, 42,185, 20,233,105,169, +224, 56,230, 82,121, 63,219,140,197,160, 65, 13,195, 34, 2, 3, 36, 64,179, 10, 6, 64,140, 26,161,193, 18,244,242,149,133, 55, + 99, 49,168, 18,194, 2,169,141, 96, 21, 0, 48,141, 26,133,232,181,107,113, 57, 54, 22, 55, 98, 99, 81,103,237, 90, 96,212, 40, + 8,248,231, 86, 33, 95, 5, 13,150,189, 35,218,137,208,140, 25, 51,210,179,179,179,135, 85,113,183,120, 57, 39, 39,167,235,187, +239,190,155,158,149,149, 5,133, 66,129,212,212,212,123, 34, 87, 0, 96, 48, 24, 94, 90,187,118,109,250,161, 67,135,160, 82,169, +160, 86,171,171, 76,176,236,154,171, 89,179,102,213, 14, 11, 11, 67, 66, 66, 2,188,188,188,224,235,235,139,230,205,155,227,232, +209,163,254, 97, 97, 97, 63,217,110, 25, 85,148,167,239,215,174, 93,155, 11, 0,107,215,174,205, 37,132,196, 17, 66, 62, 37,132, +172, 46,149, 62, 37,132,196, 57,127,215, 96, 48,124, 91, 17,182,201,100,138,139,143,143,167, 10,133, 2, 44,203,194,108, 54, 67, + 38,147, 57,218,203,110,152, 11, 0, 54,195,211, 35,174,148,189,160,160, 96,239,231,159,127,110, 9, 11, 11,195, 99,143, 61,134, +152,152, 24,180,111,223, 30,225,225,225,152, 51,103,142,169,176,176,112,111, 21, 8,214,238,237,219,183, 91,194,194,194, 16, 19, + 19, 3,169, 84,138,230,205,155, 35, 36, 36, 4, 11, 22, 44, 48,229,229,229,237,173, 66, 51,221, 58,119,238, 28, 91, 1,185,213, +192,133,219,184,165,228,246,169, 83,167,216,118,237,218,253, 80,250, 65,155, 54,109,126, 80,169, 84, 94, 0,220,181,235,163,206, +164, 74, 42,149, 58,146,253,115,142,227,254, 11, 26,172, 9, 0,254, 6,144, 0, 96,106, 77,202,152,243,109,193,236,236,108,196, +199,199,227,244,233,211,104,215,174, 29,142, 28, 57, 2,148,184,105,104,249, 47,230, 15,148, 82,136, 68, 34, 68, 69, 69,225,205, + 55,223,196,158, 61,123,112,249,242,101, 88, 44, 22, 7, 1,178,219, 92,186,163,193, 18,139,197, 8, 12, 12,132,197, 98,113,104, +175, 0,224,234,149, 43,224, 56, 14,130, 32,192,100, 50, 85,170,193,242,242,242,154,179,110,221,186,215,179,178,178,130, 51, 51, + 51, 3,156, 83,122,122,122, 64,106,106,106, 64,114,114,114,192,237,219,183, 3,110,222,188, 25,112,227,198,141,224, 69,139, 22, +189,238,229,229, 53,199,213, 53,168,121,243,230,120,237,181,215, 28,105,197,138, 21,142,116,232,208,161,127,148, 29,110,172,107, + 81,179,151,160, 79, 38,117,164, 61,254,196,145,206,191, 53,166, 34,204, 59,184,200, 35,161,193,114,102,159, 0,208, 40, 72, 49, +239,253, 87, 58,143,120,178,177, 23,190, 63,240, 7,230,126,123,253, 82,228, 8,255,168,250,222,153, 16, 50,227,241,214, 11,173, +176,228,203, 63, 0,148, 28, 17, 10, 25,231, 65,115, 18, 64,213, 97,184,161,203, 42,243,120,193,106, 42, 62,120,253,218,149,110, + 81,205, 90, 51,105, 89,250, 59,110, 24, 68,119, 29, 12, 66, 8,106,213,109, 10,150,227,192,178, 12, 56,150,133, 86, 35, 67,252, + 95,127, 9, 70,131,225, 96, 89,152,209, 0,231, 43,151,124,242, 66,175,230, 50, 4,235, 1,185,244,159,217,247,250,224, 82, 43, + 3, 7, 52, 83, 99,100,178,175,252, 96,122,241, 39,162, 66,243, 15, 0, 44,229,237,106,212, 82, 41,138, 0,100,137, 68,104,191, +124, 57,174,196,198, 66,189, 97, 3, 88,148, 88, 81,251, 47, 95,142,130,205,155,193, 88,173,160, 50,217, 61,105,176,210,211,211, +241,220,115,207,221, 19, 17,114,214,100,141, 27, 55,238,208,130, 5, 11, 2,103,204,152, 81,109,152, 83,167, 78, 61,244,229,151, + 95, 6,214,169, 83,167,202,157, 77,165, 82, 77, 17, 4, 65,187,120,241,226,180,165, 75,151,162,180,189,152,141,224, 72,181, 90, +237, 18, 0,221, 42,128,154, 59,102,204, 24, 49,128,177, 54, 77,214, 99, 99,198,140, 57, 70, 41,157, 94,170,126,103,175, 89,179, +230, 57,167,163,196, 79, 1, 44,175, 40,143,249,249,249,171,223,124,243,205, 81,191,253,246,155,159, 76, 38, 3, 33, 4, 98,177, + 24, 13, 26, 52,176,105, 94, 75, 12, 94, 41,165,152, 52,105, 82, 86, 70, 70,134, 75,110, 26,140, 70,227,198,185,115,231,118, 51, + 24, 12,225, 35, 71,142, 20,123,123,123, 35, 61, 61, 29, 31,126,248,161,105,227,198,141,183, 11, 11, 11,221,181,149,130,197, 98, +217, 56,115,230,204,174,122,189,190,238,203, 47,191, 44,206,203,203,131,193, 96,192,228,201,147, 77, 27, 54,108, 72, 50, 24, 12, +110, 59,234,109,223,190,253,181,155, 55,111,118, 44, 42, 42,202, 81, 40, 20,165,181,123, 68,169, 84,182, 6,176,217, 29,204,232, +232,232,132, 91,183,110,181,155, 55,111, 94,156,197, 98, 17,157, 60,121,178,191,157, 92,125,242,201, 39,135,100, 50, 89,119,184, +111,140, 47, 72,165,210, 59, 52, 86,165, 95,115, 28,247,200,107,176, 40,165,135, 80,226,250,162, 70, 73,105,114,117,254,252,121, +116,235, 86, 50,164,143, 28, 57,130, 14, 29, 58,224,200,145, 35,232,216,177,227,191,234,166,193, 78,176, 56,142,195,243,207, 63, +143, 30, 61,122,160,118,237,218,142,113,238,108,228,238, 14,201,176, 90,173,104,214,172, 25,140, 38, 19,196, 98,177,227, 8,146, +227, 56,248, 7, 4,224,218,181,107, 46,105,176, 24,134, 25, 50, 96,192, 0,230,194,133, 11, 24, 58,116, 40,190,248,226,139,114, +191,251,226,139, 47, 98,219,182,109, 24, 48, 96, 0,243,246,219,111, 87,232,166,193,110, 92,238, 74,153,236,235,116,101, 26,188, +234,194,116,230, 34,143, 12,193,114,114,238,133,186,254,138,145, 61, 26,112,248,254,224, 31,152,251,253,173,141, 60,165,223,124, +115, 38,231,199,169, 29, 0,243,142, 23,208,124,240,230,146, 99, 65, 0, 66,198,121,152,119,188, 8,162,240,195,225,100, 17,242, + 12,230,221,101,119, 56,243, 23,223,109, 89,249,102,187, 85, 29,253,131, 3,188,160,203, 51, 56, 72,214,153, 67, 59, 1, 0,131, +198,204, 7,199,150, 28, 29,106, 84, 50,200,197, 44,190,222,244, 81,150,217, 92, 92,102,175, 18, 68,204,216,151, 31,111,224,229, +229, 69,129, 38,226, 59, 27,169,238,206,187,137, 86, 75,111,248,157,207,193, 11,245, 85,154,229, 23,114,199, 2,248,228, 46, 13, + 70,110,174,161,224,244,105,121,167, 45, 91, 16, 63,112, 32,106, 21, 20,224,188,183, 55,252,173, 86,168,236,218,170, 13, 27, 80, +240,197, 23,144, 89,173,128,151, 23,178, 87,174,132,245,220, 57, 88,243,243, 13,238, 18,172,171, 87,175,222,179,150,169, 44, 66, + 52,109,218,180, 45,217,217,217,195,170, 19,243,165,151, 94, 58,116,224,192,129,192,170,226, 20, 20, 20, 76, 4, 48,177, 26,242, + 35, 16, 66,166,219, 28,218,141,141,141,141,213,158, 58,117,106, 20, 33,100, 21,165, 52,213, 86,183, 1,163, 71,143,126,165, 20, +185,170,244, 22, 33,165,244,150, 74,165,122,111,226,196,137,243,151, 46, 93,170,178, 27,180,159, 61,123, 22, 86,171, 21, 34,145, + 8, 60,207, 99,244,232,209,250,236,236,236, 37,229,121, 96, 46, 3,215, 74, 8,121,113,254,252,249,163, 63,250,232,163,126, 44, +203,250,243, 60,159,105, 48, 24,126, 50, 24, 12,107,171,114,139,202, 86, 15,195,103,204,152, 49,124,217,178,101, 3, 24,134, 9, +176, 90,173, 89, 5, 5, 5,187, 12, 6, 67,149,124,107, 29, 59,118, 44,115,213,170, 85,215, 51, 51, 51, 27,133,134,134,230,169, + 84, 42,147,201,100, 98,229,114,185, 70,169, 84, 70, 3, 56, 14,224,162, 59,152,167, 79,159, 78,251,244,211, 79, 19,141, 70, 99, +212,167,159,126,122, 88,163,209, 28, 32,132, 16,177, 88,236, 45,151,203,187, 1,136, 3,112,213, 45,213, 59,195, 8,206,218,170, +210,246, 87, 18,137,228,191, 98,131, 85,227,196,230,166,225, 12,165, 20, 89, 89, 89,184,112,225,130,157, 92, 69, 3, 64,199,142, + 29,207,216, 73,214,233,211,167, 17, 19, 19,115,134, 16,242,192,221, 52, 56,107,176,236, 68,170,118,237,218,142,247,206,201,201, + 6,203, 37,225,121, 30, 98,177, 24, 28,199, 33, 56, 36,196,241, 91,148, 82, 92,187,118, 13, 58,157,206, 37,130,197,178, 44, 75, + 8,193,208,161, 67, 93,250,221,255,253,239,127,136,139,139, 3,235, 34, 27,100, 89, 22, 17, 17, 17, 46,157,180,192, 69,123, 41, +150,101, 17, 26, 26, 90,101, 76,103, 46,242,200, 16, 44,103, 73,200, 48,204,123,241,195,163,111, 95, 76, 43,254, 38, 62,189,232, + 77, 0,116,199,121,197, 47,205,253,217,158, 61, 27, 38,193,184,182, 35,136,166,196,233, 26,213,167,130, 40, 3,145, 36,212,194, +236, 31, 46,165, 89, 65, 22,151,179, 24,164,136,101,138,233,155,214,125,178,116,244,184, 73,170,243, 9,233,200,211, 27,193,178, +140,243,164, 9,142, 99,161, 81,202, 16, 22,228,133, 47, 63,251,176,160, 32, 63,119, 70,121,113, 9,195,213,226,216,238,173,235, + 75, 17, 84, 8, 20,203,128,226,127, 58, 43,253,171,191,109, 85, 47,165,164,106,170,197, 83,183, 10,101,223,221, 42,140, 45,139, + 96, 21,155, 76, 61,223,126,234,169,159,231,253,248,163,162,209, 55,223, 32,253,217,103, 17,146,159, 15, 41,112,135, 77, 22, 99, +177, 0, 94, 94,200,250,226, 11, 20,241, 60,150,142, 28, 89, 84,108, 54,247,114, 83, 3, 33,238,210,165, 75,181,145, 43,103, 66, + 4, 55,237,184, 92, 37, 89, 61,122,244, 56, 68, 41,149,214,128,157,187,157,100,153, 79,157, 58,245,202,225,195,135, 19,112,103, +192,207,220,195,135, 15, 39,188,252,242,203,100,253,250,245, 27, 0,204,116,213,241,166, 94,175,255, 68,171,213,162,115,231,206, + 51, 23, 46, 92,232,219,170, 85, 43, 4, 4, 4,160,160,160, 0,167, 79,159,198,132, 9, 19,116,249,249,249, 11,115,114,114,150, +186,153,103,222,166,169, 89, 91,157,245, 0,224,115, 91,170, 22,121,245,213, 87,207, 38, 36, 36,100,251,251,251,183, 21,139,197, +143,161,196,206, 39, 13,192, 6,119,137,144, 93,198,142, 29,251, 87, 66, 66, 66, 86,173, 90,181,218,217, 48,181, 0,146, 1,172, +171, 2,102,202, 31,127,252, 17,218,186,117,107, 70, 36, 18, 81,150,101, 33, 18,137, 40,199,113,212,102, 55, 67, 1, 96,215,174, + 93, 82, 0, 58,120,228, 65,143, 77,135,155,134,212,212, 84, 7,185,114,114, 52, 26,221,177, 99,199, 51, 54,114,101,127,102,253, +151,242,138,185,115,231, 98,205,154, 53,168,204, 3,185,237,182, 30,169, 12,207,174,193,226,121, 30,102,179, 25,231,207,159, 7, + 33, 4, 60,207, 59,142, 5,237, 46, 26,172, 86,107,133,183,207,121,158,231, 77, 38, 19,190,250,234, 43,151, 72,214,214,173, 91, + 81, 92, 92, 12,190, 18,230,230,236, 82,161, 69,139, 22,208,233,116,142, 75, 60,209,209,209,142,239,153,205,102,183, 8,171, 29, + 51, 42, 42, 10, 89, 89, 89,240,243, 43,185,103, 19,246, 82,236, 63,202,150,194,255,142,223, 95,226,170,107,129, 22, 90,173,151, + 81, 98,249,246,153,166,210,174, 67,162,189, 80, 55, 72, 13,145, 88,134,148,124, 43,246, 95,204,199,186, 67,105,183, 13, 22,190, +223,229,140,194,115, 21,225,200,148, 94, 63,181,122,188, 71,135,151, 94,153,160,212, 27,121, 36, 38,222, 68,102, 70, 42, 24,194, + 32,184, 86, 40,194,195, 35, 32,151, 48,248, 98,237,210,194, 51,199, 14, 28, 45,200,215,245, 46, 15,171,159, 86,114,108,217,179, + 29,218,213,171,167, 38,176, 90, 0,222, 2, 88, 45,128, 96,251,107,255, 76,184,179,175, 93,184,144, 75,223,254, 83,247,251,143, +185,166, 50, 99, 74, 13, 33,164,131,183,183,247,207,115,191,255, 94, 33,152, 76, 48,141, 26, 5,185,209, 8, 57, 33, 32,148,130, + 1, 64,100, 50,100,175, 92, 89, 66,174, 70,140, 40,202,205,203,115, 59, 84,142,191,191,255,231, 89, 89, 89, 15,157, 39,119, 95, + 95,223,119,171,226,238,225, 62,230, 41, 0, 64,174,221,201,104,169,157,180,191, 93,171, 85, 5,220, 8,127,127,255,183, 25,134, +105, 79, 41,245,101, 24, 38, 71, 16,132,227, 25, 25, 25,139, 40,165,215, 60, 75,233,191,214,222,118, 79,238,149,157, 87,103, 0, +120, 3, 64, 1,165, 52,209, 83,115, 15,188,157, 90, 2, 56,131, 50,110, 11, 86,244,236, 65,137,175,175,239,137,159,127,254,185, + 85,221,186,117, 25,103,115, 5,187,175, 59,251, 49, 22,199,149,232, 33,126,251,237, 55,235,208,161, 67,143,167,165,165,117, 46, + 15, 83,163,209,252,242,247,223,127, 63,153,151,151,119, 23,145,114,246,236,110,127, 95, 88, 88,136,113,227,198,237,203,207,207, + 47, 51, 84,142, 86,171, 93,182,116,233,210,215, 7, 13, 26,196,216,221, 74, 56, 39,123, 88, 31,123, 50,155,205,216,188,121,179, +240,209, 71, 31,125,156,155,155, 91,238, 17, 97, 72, 72,200,237,148,148,148, 80,187,203,132,242,146,179, 68, 68, 68,164, 38, 38, + 38,134, 60, 72,204,255, 12,193,178, 13, 10, 18, 21,160,124,142, 2, 67, 24, 8,205, 24, 66, 36, 86,138,203,160,248, 69,193, 21, +173, 58,157, 66, 93, 58, 34, 19, 43, 20,227,213, 42,239, 89,131,134,189,230, 27, 81, 47,146, 4, 6,215, 2, 1,131,244,180,100, +220,188,126,133,126,187,101,101,118, 97,190,110, 78, 81,145,126,101, 69, 56,141, 8,169, 95, 79, 35,222, 46,225,209, 16,246,114, +148,138, 31,117,215, 14, 3,128, 89,196, 92,186, 94, 96, 25, 26, 95,193, 34,105, 39, 89, 51,119,238, 84,112, 77,154,220,229,224, + 77, 16, 4, 88,207,157,195,210,145, 35,171, 68,174, 60,226, 17,143,220,243, 2, 94, 23,149,251,184,178, 0, 72,250, 55,131, 10, +255,199,219,168,198, 6,123, 38,132, 40,125,124,124, 14,176, 44, 27,110,215,192, 56,219, 4,149, 17,232, 57, 49, 61, 61,189, 59, +165,180,168, 2,204,122,106,181,122, 37,207,243,109, 92, 9,246,204,178,236,201,130,130,130,241, 21, 5,123,190, 31,183, 8,253, +252,252,174,221,188,121,179,158,253, 86,180,243, 90, 89,186, 30, 0,224,234,213,171,232,210,165,203,205,212,212,212,136, 7,137, +249,159, 34, 88,213,220,185, 67,196, 82,213,112,137, 92,246,132, 96,177, 70,129, 0,156, 72,116,201, 84,108, 56,104, 52,232, 55, +149,119, 44, 88,154,240,221, 75, 30,104, 37,133, 31, 66, 72, 7,169, 88,252,139,216,203, 75, 94,214, 87,173,249,249,134, 98,179, +185,167,135, 92,121,196, 35, 30,241,136, 71, 30, 34,226,219,208,199,199,231,103,145, 72, 36,117, 38,145,165, 95, 59,214, 58,171, +181, 56, 51, 51,179,119, 69,167, 45,247, 3,243,161, 23, 59,211,116, 53,217,121,137,139,223,237,225, 42,166, 45,117,169,233,152, +247,177,236,180, 26, 49,187,216, 48,103, 63, 36,249,236, 82, 83, 49,157,120,184, 75,184,238, 96,186,218,167,220,204, 39,173,238, +124,222, 47,204,234, 26, 71,101,228,147,222,135,118,159,253,144,228,179, 75, 77,195, 44,221,127, 92,193,117, 23,211,149, 62, 85, +133,124,210,234,206,231,253,194,188,215,113, 84, 65, 62,233,189,246,165,114,218,126,182,187,220,227, 97, 76,156,155,172,151,222, + 39,146, 71,156,240, 73, 77,197,116,174,135,234,116,233,127, 31,194, 3, 28,170,110,204, 82,245, 89, 93, 50,219,118, 99, 36, 14, + 46, 56, 10,117,167,236,213,209,238,165,202, 90, 45,184,206,152,213, 85,151,206, 56,213,213,239,239, 55,102,117,141,165,210,152, +213,209,239,203,106,247,251,216, 70,213,149,207,106, 25, 75,247,163,207,151,209,127,238, 25,183, 52,102,117,140,165,210,152,213, +209,239, 31, 4,102,117,140,165,178, 48,171,163,223,151,215,246,255, 21, 77, 33, 83,149,202,186, 79, 42,203,106, 15,240,120, 63, + 34,114,223, 15,146, 73, 8,161, 54, 15,182, 53, 30,179,154,219,104,182, 13,115,118, 53, 98,118,173,174, 54,186, 31,253,221, 25, +179,186,240, 75,227, 84, 71, 59,149,133,121,175,249, 45, 39,159,213, 94,246,123,237,247, 15, 10,179,154,219,168, 90,198, 82, 41, +204,174,213,188, 9,232,234,244,126,118,117, 98, 86,215, 88, 42, 35,159,247,220, 78,101, 97,222,107,126,203,201,103,181,151,189, + 58,214,144,251,133,251, 48, 8, 87, 19, 50,113, 63,136,144,125,208, 85, 39,246,253,208,226,220, 47, 77, 91,117,105,113,202,192, +141,171, 70,184, 67,213,157, 79, 91,254,200,163,228,172,206, 51,150, 60, 99,233, 97, 30, 75,101,245, 27, 74,233,108, 66,200,172, +154,212,207, 75, 99, 86, 23, 17, 42,163,236,247, 52,150, 74,255,111,117,140,165, 74, 48,201,253, 40,127,117,143,167,154, 40, 76, + 77,201,136,141,213,210,251,128,215,181, 38, 55,192,125,202,103,215,135,161,236,247, 35,159,132,144,217,247,169,236, 15, 75,157, +122,198,146,103, 44,213,184,177, 84,170, 79,118,173, 46,205, 80,117,111,164, 74, 99, 86,199,111, 56, 99, 84, 87, 31,189,223,101, +175,206,177,116, 63,218,254, 97,145,255, 31, 0,174,104,149,198, 74,176,169, 14, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index f071111660b..765343ae4da 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -109,8 +109,8 @@ DEF_ICON(ICON_QUIT) DEF_ICON(ICON_URL) DEF_ICON(ICON_BLANK037) DEF_ICON(ICON_BLANK038) -DEF_ICON(ICON_BLANK039) -DEF_ICON(ICON_BLANK040) +DEF_ICON(ICON_FULLSCREEN_ENTER) +DEF_ICON(ICON_FULLSCREEN_EXIT) DEF_ICON(ICON_BLANK1) // Not actually blank - this is used all over the place /* BUTTONS */ From 2cf22b53bc026de8af7538eacf2ff80ad0938f69 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 1 Nov 2009 18:07:35 +0000 Subject: [PATCH 292/412] add_mesh_torus now passes the pep8 test --- release/scripts/io/add_mesh_torus.py | 196 ++++++++++-------- .../ui/properties_object_constraint.py | 4 +- release/scripts/ui/properties_particle.py | 2 +- 3 files changed, 113 insertions(+), 89 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index c651e7edca8..8a6a3a58ed6 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -4,112 +4,136 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # ##### END GPL LICENSE BLOCK ##### -import bpy, Mathutils -from math import cos, sin, pi, radians +# +import bpy +import Mathutils +from math import cos, sin, pi -def add_torus(PREF_MAJOR_RAD, PREF_MINOR_RAD, PREF_MAJOR_SEG, PREF_MINOR_SEG): - Vector = Mathutils.Vector - Quaternion = Mathutils.Quaternion - - PI_2= pi*2 - Z_AXIS = 0,0,1 - - verts = [] - faces = [] - i1 = 0 - tot_verts = PREF_MAJOR_SEG * PREF_MINOR_SEG - for major_index in range(PREF_MAJOR_SEG): - verts_tmp = [] - quat = Quaternion( Z_AXIS, (major_index/PREF_MAJOR_SEG)*PI_2) +def add_torus(major_rad, minor_rad, major_seg, minor_seg): + Vector = Mathutils.Vector + Quaternion = Mathutils.Quaternion - for minor_index in range(PREF_MINOR_SEG): - angle = 2*pi*minor_index/PREF_MINOR_SEG - - vec = Vector(PREF_MAJOR_RAD+(cos(angle)*PREF_MINOR_RAD), 0, (sin(angle)*PREF_MINOR_RAD)) * quat - verts.extend([vec.x, vec.y, vec.z]) - - if minor_index+1==PREF_MINOR_SEG: - i2 = (major_index)*PREF_MINOR_SEG - i3 = i1 + PREF_MINOR_SEG - i4 = i2 + PREF_MINOR_SEG - - else: - i2 = i1 + 1 - i3 = i1 + PREF_MINOR_SEG - i4 = i3 + 1 - - if i2>=tot_verts: i2 = i2-tot_verts - if i3>=tot_verts: i3 = i3-tot_verts - if i4>=tot_verts: i4 = i4-tot_verts - - # stupid eekadoodle - if i2: faces.extend( [i1,i3,i4,i2] ) - else: faces.extend( [i2,i1,i3,i4] ) - - i1+=1 - - return verts, faces + PI_2 = pi * 2 + z_axis = (0, 0, 1) + + verts = [] + faces = [] + i1 = 0 + tot_verts = major_seg * minor_seg + for major_index in range(major_seg): + quat = Quaternion(z_axis, (major_index / major_seg) * PI_2) + + for minor_index in range(minor_seg): + angle = 2 * pi * minor_index / minor_seg + + vec = Vector(major_rad + (cos(angle) * minor_rad), 0.0, + (sin(angle) * minor_rad)) * quat + + verts.extend([vec.x, vec.y, vec.z]) + + if minor_index + 1 == minor_seg: + i2 = (major_index) * minor_seg + i3 = i1 + minor_seg + i4 = i2 + minor_seg + + else: + i2 = i1 + 1 + i3 = i1 + minor_seg + i4 = i3 + 1 + + if i2 >= tot_verts: + i2 = i2 - tot_verts + if i3 >= tot_verts: + i3 = i3 - tot_verts + if i4 >= tot_verts: + i4 = i4 - tot_verts + + # stupid eekadoodle + if i2: + faces.extend([i1, i3, i4, i2]) + else: + faces.extend([i2, i1, i3, i4]) + + i1 += 1 + + return verts, faces from bpy.props import * -class MESH_OT_primitive_torus_add(bpy.types.Operator): - '''Add a torus mesh.''' - bl_idname = "mesh.primitive_torus_add" - bl_label = "Add Torus" - bl_register = True - bl_undo = True - - major_radius = FloatProperty(name="Major Radius", description="Number of segments for the main ring of the torus", default= 1.0, min= 0.01, max= 100.0) - minor_radius = FloatProperty(name="Minor Radius", description="Number of segments for the minor ring of the torus", default= 0.25, min= 0.01, max= 100.0) - major_segments = IntProperty(name="Major Segments", description="Number of segments for the main ring of the torus", default= 48, min= 3, max= 256) - minor_segments = IntProperty(name="Minor Segments", description="Number of segments for the minor ring of the torus", default= 16, min= 3, max= 256) - - def execute(self, context): - verts_loc, faces = add_torus(self.major_radius, self.minor_radius, self.major_segments, self.minor_segments) - - me= bpy.data.add_mesh("Torus") - - me.add_geometry(int(len(verts_loc)/3), 0, int(len(faces)/4)) - me.verts.foreach_set("co", verts_loc) - me.faces.foreach_set("verts_raw", faces) - - sce = context.scene - - # ugh - for ob in sce.objects: - ob.selected = False - - me.update() - ob= bpy.data.add_object('MESH', "Torus") - ob.data= me - context.scene.add_object(ob) - context.scene.active_object = ob - ob.selected = True - - ob.location = tuple(context.scene.cursor_location) - - return ('FINISHED',) + +class AddTorusPrimitive(bpy.types.Operator): + '''Add a torus mesh.''' + bl_idname = "mesh.primitive_torus_add" + bl_label = "Add Torus" + bl_register = True + bl_undo = True + + major_radius = FloatProperty(name="Major Radius", + description="Number of segments for the main ring of the torus", + default=1.0, min=0.01, max=100.0) + minor_radius = FloatProperty(name="Minor Radius", + description="Number of segments for the minor ring of the torus", + default=0.25, min=0.01, max=100.0) + major_segments = IntProperty(name="Major Segments", + description="Number of segments for the main ring of the torus", + default=48, min=3, max=256) + minor_segments = IntProperty(name="Minor Segments", + description="Number of segments for the minor ring of the torus", + default=16, min=3, max=256) + + def execute(self, context): + + verts_loc, faces = add_torus(self.major_radius, + self.minor_radius, + self.major_segments, + self.minor_segments) + + mesh = bpy.data.add_mesh("Torus") + + mesh.add_geometry(int(len(verts_loc) / 3), 0, int(len(faces) / 4)) + mesh.verts.foreach_set("co", verts_loc) + mesh.faces.foreach_set("verts_raw", faces) + + scene = context.scene + + # ugh + for ob in scene.objects: + ob.selected = False + + mesh.update() + ob_new = bpy.data.add_object('MESH', "Torus") + ob_new.data = mesh + scene.add_object(ob_new) + scene.active_object = ob_new + ob_new.selected = True + + ob_new.location = tuple(context.scene.cursor_location) + + return ('FINISHED',) # Register the operator -bpy.ops.add(MESH_OT_primitive_torus_add) +bpy.ops.add(AddTorusPrimitive) # Add to a menu import dynamic_menu -import space_info -menu_item = dynamic_menu.add(bpy.types.INFO_MT_mesh_add, (lambda self, context: self.layout.itemO("mesh.primitive_torus_add", text="Torus", icon='ICON_MESH_DONUT')) ) + +menu_func = (lambda self, context: self.layout.itemO("mesh.primitive_torus_add", + text="Torus", icon='ICON_MESH_DONUT')) + +menu_item = dynamic_menu.add(bpy.types.INFO_MT_mesh_add, menu_func) if __name__ == "__main__": - bpy.ops.mesh.primitive_torus_add() \ No newline at end of file + bpy.ops.mesh.primitive_torus_add() diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 1cc0073fbca..1c0f58ae796 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -594,10 +594,10 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemL(text="To:") row.itemR(con, "track", expand=True) - + def SPLINE_IK(self, context, layout, con): self.target_template(layout, con) - + row = layout.row() row.itemR(con, "chain_length") # TODO: add the various options this constraint has... diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index bfa67dd7292..8a1f0cc2b5f 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -643,7 +643,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel): subsub.itemR(part, "adaptive_pix") sub.itemR(part, "hair_bspline") sub.itemR(part, "render_step", text="Steps") - + sub = split.column() sub.itemL(text="Timing:") sub.itemR(part, "abs_path_time") From a51fe76ff29a3fd8444b7773e51780a045fa5e0f Mon Sep 17 00:00:00 2001 From: William Reynish Date: Sun, 1 Nov 2009 19:45:50 +0000 Subject: [PATCH 293/412] Fixed a few icons in user preferences Input tab --- release/scripts/ui/space_userpref.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 69f16ebd08c..fc9678a0847 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -508,13 +508,16 @@ class USERPREF_PT_input(bpy.types.Panel): row = subcol.row() if kmi.expanded: - row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") + row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_DOWN") else: row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT") itemrow = row.row() itemrow.enabled = km.user_defined - itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") + if kmi.active: + itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_HLT") + else: + itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") itemcol = itemrow.column() itemcol.active = kmi.active From 39021ac4eaafabcc420377e9372c736968908f9d Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 20:09:03 +0000 Subject: [PATCH 294/412] after transform update didn't run because of stupid typo --- source/blender/editors/transform/transform_conversions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index 5d6d6948a4b..c85eeb88f9f 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4716,7 +4716,7 @@ void special_aftertrans_update(TransInfo *t) short duplicate= (t->undostr && strstr(t->undostr, "Duplicate")) ? 1 : 0; /* early out when nothing happened */ - if (t->total == 0 || t->mode != TFM_DUMMY) + if (t->total == 0 || t->mode == TFM_DUMMY) return; if (t->spacetype==SPACE_VIEW3D) { From 7bb6e18f20916b73618a4a42a4ebf285f5e3f6a9 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 20:17:30 +0000 Subject: [PATCH 295/412] Fix view3d rna to work with new number of orientations (use constant instead of value, safer for future). --- source/blender/makesrna/intern/rna_space.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 43172f0a1e8..a12e26a7d7b 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -153,10 +153,10 @@ static PointerRNA rna_CurrentOrientation_get(PointerRNA *ptr) Scene *scene = ((bScreen*)ptr->id.data)->scene; View3D *v3d= (View3D*)ptr->data; - if (v3d->twmode < 4) + if (v3d->twmode < V3D_MANIP_CUSTOM) return rna_pointer_inherit_refine(ptr, &RNA_TransformOrientation, NULL); else - return rna_pointer_inherit_refine(ptr, &RNA_TransformOrientation, BLI_findlink(&scene->transform_spaces, v3d->twmode - 4)); + return rna_pointer_inherit_refine(ptr, &RNA_TransformOrientation, BLI_findlink(&scene->transform_spaces, v3d->twmode - V3D_MANIP_CUSTOM)); } EnumPropertyItem *rna_TransformOrientation_itemf(bContext *C, PointerRNA *ptr, int *free) From 94209d58aa45455793d0148299755c28ab832ba1 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Sun, 1 Nov 2009 21:10:54 +0000 Subject: [PATCH 296/412] Simplify gimbal axis code and make gimbal orientation work correctly with parents (objects or pose bones). Works for all euler orders too, obviously. --- source/blender/blenlib/intern/arithb.c | 37 ++++++------- .../editors/transform/transform_manipulator.c | 53 ++++++++++++------- 2 files changed, 52 insertions(+), 38 deletions(-) diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c index fe8f97b4bcf..874756135e5 100644 --- a/source/blender/blenlib/intern/arithb.c +++ b/source/blender/blenlib/intern/arithb.c @@ -3471,28 +3471,25 @@ void EulToGimbalAxis(float gmat[][3], float *eul, short order) { RotOrderInfo *R= GET_ROTATIONORDER_INFO(order); - float quat[4]; + float mat[3][3]; float teul[3]; - float tvec[3]; - int i, a; - for(i= 0; i<3; i++) { - tvec[0]= tvec[1]= tvec[2]= 0.0f; - tvec[i] = 1.0f; - - VecCopyf(teul, eul); - - /* TODO - only works on XYZ and ZXY */ - for(a= R->axis[i]; a >= 1; a--) - teul[R->axis[a-1]]= 0.0f; - - EulOToQuat(teul, order, quat); - NormalQuat(quat); - QuatMulVecf(quat, tvec); - Normalize(tvec); - - VecCopyf(gmat[i], tvec); - } + /* first axis is local */ + EulOToMat3(eul, order, mat); + VecCopyf(gmat[R->axis[0]], mat[R->axis[0]]); + + /* second axis is local minus first rotation */ + VecCopyf(teul, eul); + teul[R->axis[0]] = 0; + EulOToMat3(teul, order, mat); + VecCopyf(gmat[R->axis[1]], mat[R->axis[1]]); + + + /* Last axis is global */ + gmat[R->axis[2]][0] = 0; + gmat[R->axis[2]][1] = 0; + gmat[R->axis[2]][2] = 0; + gmat[R->axis[2]][R->axis[2]] = 1; } /* ************ AXIS ANGLE *************** */ diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index 4d48c2c0158..357e164961d 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -197,34 +197,51 @@ void gimbal_axis(Object *ob, float gmat[][3]) } if(pchan) { - int i; + float mat[3][3], tmat[3][3], obmat[3][3]; - EulToGimbalAxis(gmat, pchan->eul, pchan->rotmode); + EulToGimbalAxis(mat, pchan->eul, pchan->rotmode); - for (i=0; i<3; i++) - Mat3MulVecfl(pchan->bone->bone_mat, gmat[i]); + /* apply bone transformation */ + Mat3MulMat3(tmat, pchan->bone->bone_mat, mat); + + if (pchan->parent) + { + float parent_mat[3][3]; - if(pchan->parent) { - bPoseChannel *pchan_par= pchan->parent; + Mat3CpyMat4(parent_mat, pchan->parent->pose_mat); + Mat3MulMat3(mat, parent_mat, tmat); - float tmat[3][3]; - Mat3CpyMat4(tmat, pchan_par->pose_mat); - - for (i=0; i<3; i++) - Mat3MulVecfl(tmat, gmat[i]); + /* needed if object transformation isn't identity */ + Mat3CpyMat4(obmat, ob->obmat); + Mat3MulMat3(gmat, obmat, mat); + } + else + { + /* needed if object transformation isn't identity */ + Mat3CpyMat4(obmat, ob->obmat); + Mat3MulMat3(gmat, obmat, tmat); } - /* needed if object trans isnt identity */ - for (i=0; i<3; i++) { - float tmat[3][3]; - Mat3CpyMat4(tmat, ob->obmat); - Mat3MulVecfl(tmat, gmat[i]); - } + Mat3Ortho(gmat); } } else { if(test_rotmode_euler(ob->rotmode)) { - EulToGimbalAxis(gmat, ob->rot, ob->rotmode); + + + if (ob->parent) + { + float parent_mat[3][3], amat[3][3]; + + EulToGimbalAxis(amat, ob->rot, ob->rotmode); + Mat3CpyMat4(parent_mat, ob->parent->obmat); + Mat3Ortho(parent_mat); + Mat3MulMat3(gmat, parent_mat, amat); + } + else + { + EulToGimbalAxis(gmat, ob->rot, ob->rotmode); + } } } } From a99157b20dc68ce46499e95e8e040a293453c569 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 1 Nov 2009 21:53:45 +0000 Subject: [PATCH 297/412] rna structs would not raise an error when assigning invalid properties netrender needed updating for this. hint, bpy.data is not a module --- release/scripts/io/netrender/__init__.py | 7 +++--- release/scripts/io/netrender/operators.py | 26 +++++++++++------------ release/scripts/io/netrender/ui.py | 12 +++++------ source/blender/python/intern/bpy_rna.c | 5 ++++- 4 files changed, 27 insertions(+), 23 deletions(-) diff --git a/release/scripts/io/netrender/__init__.py b/release/scripts/io/netrender/__init__.py index 18da5e2a934..be3d25d83fe 100644 --- a/release/scripts/io/netrender/__init__.py +++ b/release/scripts/io/netrender/__init__.py @@ -32,6 +32,7 @@ import ui import bpy -bpy.data.netrender_jobs = [] -bpy.data.netrender_slaves = [] -bpy.data.netrender_blacklist = [] \ No newline at end of file +bpy.netrender_jobs = [] +bpy.netrender_slaves = [] +bpy.netrender_blacklist = [] + diff --git a/release/scripts/io/netrender/operators.py b/release/scripts/io/netrender/operators.py index 0caa393eda1..8f727ca96b3 100644 --- a/release/scripts/io/netrender/operators.py +++ b/release/scripts/io/netrender/operators.py @@ -99,10 +99,10 @@ class RENDER_OT_netclientstatus(bpy.types.Operator): while(len(netsettings.jobs) > 0): netsettings.jobs.remove(0) - bpy.data.netrender_jobs = [] + bpy.netrender_jobs = [] for j in jobs: - bpy.data.netrender_jobs.append(j) + bpy.netrender_jobs.append(j) netsettings.jobs.add() job = netsettings.jobs[-1] @@ -130,8 +130,8 @@ class RENDER_OT_netclientblacklistslave(bpy.types.Operator): if netsettings.active_slave_index >= 0: # deal with data - slave = bpy.data.netrender_slaves.pop(netsettings.active_slave_index) - bpy.data.netrender_blacklist.append(slave) + slave = bpy.netrender_slaves.pop(netsettings.active_slave_index) + bpy.netrender_blacklist.append(slave) # deal with rna netsettings.slaves_blacklist.add() @@ -160,8 +160,8 @@ class RENDER_OT_netclientwhitelistslave(bpy.types.Operator): if netsettings.active_blacklisted_slave_index >= 0: # deal with data - slave = bpy.data.netrender_blacklist.pop(netsettings.active_blacklisted_slave_index) - bpy.data.netrender_slaves.append(slave) + slave = bpy.netrender_blacklist.pop(netsettings.active_blacklisted_slave_index) + bpy.netrender_slaves.append(slave) # deal with rna netsettings.slaves.add() @@ -200,17 +200,17 @@ class RENDER_OT_netclientslaves(bpy.types.Operator): while(len(netsettings.slaves) > 0): netsettings.slaves.remove(0) - bpy.data.netrender_slaves = [] + bpy.netrender_slaves = [] for s in slaves: - for i in range(len(bpy.data.netrender_blacklist)): - slave = bpy.data.netrender_blacklist[i] + for i in range(len(bpy.netrender_blacklist)): + slave = bpy.netrender_blacklist[i] if slave.id == s.id: - bpy.data.netrender_blacklist[i] = s + bpy.netrender_blacklist[i] = s netsettings.slaves_blacklist[i].name = s.name break else: - bpy.data.netrender_slaves.append(s) + bpy.netrender_slaves.append(s) netsettings.slaves.add() slave = netsettings.slaves[-1] @@ -236,7 +236,7 @@ class RENDER_OT_netclientcancel(bpy.types.Operator): conn = clientConnection(context.scene) if conn: - job = bpy.data.netrender_jobs[netsettings.active_job_index] + job = bpy.netrender_jobs[netsettings.active_job_index] conn.request("POST", "/cancel", headers={"job-id":job.id}) @@ -294,7 +294,7 @@ class netclientdownload(bpy.types.Operator): conn = clientConnection(context.scene) if conn: - job = bpy.data.netrender_jobs[netsettings.active_job_index] + job = bpy.netrender_jobs[netsettings.active_job_index] for frame in job.frames: client.requestResult(conn, job.id, frame.number) diff --git a/release/scripts/io/netrender/ui.py b/release/scripts/io/netrender/ui.py index 343442b32f1..df75c175cae 100644 --- a/release/scripts/io/netrender/ui.py +++ b/release/scripts/io/netrender/ui.py @@ -122,14 +122,14 @@ class RENDER_PT_network_slaves(RenderButtonsPanel): sub.itemO("render.netclientslaves", icon="ICON_FILE_REFRESH", text="") sub.itemO("render.netclientblacklistslave", icon="ICON_ZOOMOUT", text="") - if len(bpy.data.netrender_slaves) == 0 and len(netsettings.slaves) > 0: + if len(bpy.netrender_slaves) == 0 and len(netsettings.slaves) > 0: while(len(netsettings.slaves) > 0): netsettings.slaves.remove(0) if netsettings.active_slave_index >= 0 and len(netsettings.slaves) > 0: layout.itemS() - slave = bpy.data.netrender_slaves[netsettings.active_slave_index] + slave = bpy.netrender_slaves[netsettings.active_slave_index] layout.itemL(text="Name: " + slave.name) layout.itemL(text="Address: " + slave.address[0]) @@ -157,14 +157,14 @@ class RENDER_PT_network_slaves_blacklist(RenderButtonsPanel): sub = row.column(align=True) sub.itemO("render.netclientwhitelistslave", icon="ICON_ZOOMOUT", text="") - if len(bpy.data.netrender_blacklist) == 0 and len(netsettings.slaves_blacklist) > 0: + if len(bpy.netrender_blacklist) == 0 and len(netsettings.slaves_blacklist) > 0: while(len(netsettings.slaves_blacklist) > 0): netsettings.slaves_blacklist.remove(0) if netsettings.active_blacklisted_slave_index >= 0 and len(netsettings.slaves_blacklist) > 0: layout.itemS() - slave = bpy.data.netrender_blacklist[netsettings.active_blacklisted_slave_index] + slave = bpy.netrender_blacklist[netsettings.active_blacklisted_slave_index] layout.itemL(text="Name: " + slave.name) layout.itemL(text="Address: " + slave.address[0]) @@ -195,14 +195,14 @@ class RENDER_PT_network_jobs(RenderButtonsPanel): sub.itemO("render.netclientcancelall", icon="ICON_PANEL_CLOSE", text="") sub.itemO("render.netclientdownload", icon='ICON_RENDER_ANIMATION', text="") - if len(bpy.data.netrender_jobs) == 0 and len(netsettings.jobs) > 0: + if len(bpy.netrender_jobs) == 0 and len(netsettings.jobs) > 0: while(len(netsettings.jobs) > 0): netsettings.jobs.remove(0) if netsettings.active_job_index >= 0 and len(netsettings.jobs) > 0: layout.itemS() - job = bpy.data.netrender_jobs[netsettings.active_job_index] + job = bpy.netrender_jobs[netsettings.active_job_index] layout.itemL(text="Name: %s" % job.name) layout.itemL(text="Length: %04i" % len(job)) diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index f914c3cacea..cd1f7dbc102 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1392,9 +1392,12 @@ static int pyrna_struct_setattro( BPy_StructRNA * self, PyObject *pyname, PyObje if (prop==NULL) { // XXX - This currently allows anything to be assigned to an rna prop, need to see how this should be used // but for now it makes porting scripts confusing since it fails silently. +#if 0 if (!BPy_StructRNA_CheckExact(self) && PyObject_GenericSetAttr((PyObject *)self, pyname, value) >= 0) { return 0; - } else { + } else +#endif + { PyErr_Format( PyExc_AttributeError, "StructRNA - Attribute \"%.200s\" not found", name); return -1; } From e8b5effdff5fcd486292c4efb73f030b80aa3c7e Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 1 Nov 2009 22:30:47 +0000 Subject: [PATCH 298/412] Spline IK Bugfixes 1: * Fixed crash when reloading a file with Spline IK and/or Damped Track constraints. The targets for these constraints weren't getting relinked. * Fixed problems with removing Spline IK making some bones unable to be manipulated. * Jotted down some comments in the Spline IK code noting places where additional tweaks will be added. --- source/blender/blenkernel/intern/armature.c | 29 +++++++++++++------ source/blender/blenloader/intern/readfile.c | 26 +++++++++++++++++ .../editors/object/object_constraint.c | 2 +- 3 files changed, 47 insertions(+), 10 deletions(-) diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 0bb0041cece..e5bf0fb35a9 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -1682,6 +1682,7 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) /* perform binding step if required */ if ((ikData->flag & CONSTRAINT_SPLINEIK_BOUND) == 0) { + float segmentLen= (1.0f / (float)segcount); int i; /* setup new empty array for the points list */ @@ -1701,7 +1702,7 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) if (totLength == 0.0f) { /* 1) equi-spaced joints */ // TODO: maybe this should become an option too, in case we want this option by default - ikData->points[i]= (1.0f / (float)segcount); // TODO: optimize by puttig this outside the loop! + ikData->points[i]= segmentLen; } else { /* 2) to find this point on the curve, we take a step from the previous joint @@ -1720,6 +1721,12 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) ikData->flag |= CONSTRAINT_SPLINEIK_BOUND; } + /* apply corrections for sensitivity to scaling on a copy of the bind points, + * since it's easier to determine the positions of all the joints beforehand this way + */ + // TODO: code me! + + /* make a new Spline-IK chain, and store it in the IK chains */ // TODO: we should check if there is already an IK chain on this, since that would take presidence... { @@ -1801,10 +1808,10 @@ static void splineik_evaluate_bone(tSplineIK_Tree *tree, Object *ob, bPoseChanne VECCOPY(pchan->pose_mat[1], splineVec); - /* step 3: determine two vectors which will both be at right angles to the bone vector - * based on the method described at + /* step 3a: determine two vectors which will both be at right angles to the bone vector + * based on the "Gram Schmidt process" for finding a set of Orthonormal Vectors, described at * http://ltcconline.net/greenl/courses/203/Vectors/orthonormalBases.htm - * and normalise them to make sure they they don't act strangely + * and normalise them to make sure they will behave nicely (as unit vectors) */ /* x-axis = dirX - projection(dirX onto splineVec) */ Projf(axis1, dirX, splineVec); /* project dirX onto splineVec */ @@ -1821,12 +1828,14 @@ static void splineik_evaluate_bone(tSplineIK_Tree *tree, Object *ob, bPoseChanne Normalize(pchan->pose_mat[2]); + /* step 3b: rotate these axes for roll control and also to minimise flipping rotations */ + // NOTE: for controlling flipping rotations, we could look to the curve for guidance... + // TODO: code me! - /* step 4a: multiply all the axes of the bone by the scaling factor to get uniform scaling */ - // TODO: maybe this can be extended to give non-uniform scaling? - //VecMulf(pchan->pose_mat[0], scaleFac); + + /* step 4: only multiply the y-axis by the scaling factor to get nice volume-preservation */ + // NOTE: the x+z could get multiplied too, but that may be best left as an option VecMulf(pchan->pose_mat[1], scaleFac); - //VecMulf(pchan->pose_mat[2], scaleFac); /* step 5: set the location of the bone in the matrix */ VECCOPY(pchan->pose_mat[3], pchan->pose_head); @@ -1851,6 +1860,8 @@ static void splineik_execute_tree(Scene *scene, Object *ob, bPoseChannel *pchan_ bPoseChannel *pchan= tree->chain[i]; splineik_evaluate_bone(tree, ob, pchan, i); } + + // TODO: if another pass is needed to ensure the validity of the chain after blending, it should go here } /* free the tree info now */ @@ -2166,7 +2177,7 @@ void where_is_pose (Scene *scene, Object *ob) /* 1. clear flags */ for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) { - pchan->flag &= ~(POSE_DONE|POSE_CHAIN|POSE_IKTREE); + pchan->flag &= ~(POSE_DONE|POSE_CHAIN|POSE_IKTREE|POSE_IKSPLINE); } /* 2a. construct the IK tree (standard IK) */ diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 5fc5fd8fb7d..ebfa701be4e 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -2265,6 +2265,20 @@ static void lib_link_constraints(FileData *fd, ID *id, ListBase *conlist) data->target = newlibadr(fd, id->lib, data->target); } break; + case CONSTRAINT_TYPE_DAMPTRACK: + { + bDampTrackConstraint *data; + data= ((bDampTrackConstraint*)con->data); + data->tar = newlibadr(fd, id->lib, data->tar); + } + break; + case CONSTRAINT_TYPE_SPLINEIK: + { + bSplineIKConstraint *data; + data= ((bSplineIKConstraint*)con->data); + data->tar = newlibadr(fd, id->lib, data->tar); + } + break; case CONSTRAINT_TYPE_NULL: break; } @@ -10732,6 +10746,18 @@ static void expand_constraints(FileData *fd, Main *mainvar, ListBase *lb) expand_doit(fd, mainvar, data->target); } break; + case CONSTRAINT_TYPE_DAMPTRACK: + { + bDampTrackConstraint *data = (bDampTrackConstraint*)curcon->data; + expand_doit(fd, mainvar, data->tar); + } + break; + case CONSTRAINT_TYPE_SPLINEIK: + { + bSplineIKConstraint *data = (bSplineIKConstraint*)curcon->data; + expand_doit(fd, mainvar, data->tar); + } + break; default: break; } diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index 15ec8d6116d..35b11571a61 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -1450,7 +1450,7 @@ static int pose_ik_clear_exec(bContext *C, wmOperator *op) } CTX_DATA_END; - /* */ + /* refresh depsgraph */ DAG_id_flush_update(&ob->id, OB_RECALC_DATA); /* note, notifier might evolve */ From c90db8d270e16dddaebd122a6599be0c8e7c7196 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 00:20:07 +0000 Subject: [PATCH 299/412] last commit broke running python operators note that you can still set rna properties like this. bpy.data.__dict__["var"] = 1 print(bpy.data.var) but this is only stored for the python objects lifetime and not actually attached to blenders data --- source/blender/python/intern/bpy_operator_wrap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c index aeb99779d33..fcfea7db885 100644 --- a/source/blender/python/intern/bpy_operator_wrap.c +++ b/source/blender/python/intern/bpy_operator_wrap.c @@ -102,7 +102,7 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat Py_DECREF(args); if (py_class_instance) { /* Initializing the class worked, now run its invoke function */ - + PyObject *class_dict= PyObject_GetAttrString(py_class_instance, "__dict__"); /* Assign instance attributes from operator properties */ if(op) { @@ -114,7 +114,7 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat if (strcmp(arg_name, "rna_type")==0) continue; item = pyrna_prop_to_py(op->ptr, prop); - PyObject_SetAttrString(py_class_instance, arg_name, item); + PyDict_SetItemString(class_dict, arg_name, item); Py_DECREF(item); } RNA_STRUCT_END; @@ -124,7 +124,7 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat if(op) { RNA_pointer_create(NULL, &RNA_Operator, op, &ptr_operator); py_operator= pyrna_struct_CreatePyObject(&ptr_operator); - PyObject_SetAttrString(py_class_instance, "__operator__", py_operator); + PyDict_SetItemString(class_dict, "__operator__", py_operator); Py_DECREF(py_operator); } @@ -158,6 +158,7 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat Py_DECREF(args); Py_DECREF(item); + Py_DECREF(class_dict); } if (ret == NULL) { /* covers py_class_instance failing too */ @@ -245,7 +246,7 @@ static int PYTHON_OT_poll(bContext *C, wmOperatorType *ot) void PYTHON_OT_wrapper(wmOperatorType *ot, void *userdata) { PyObject *py_class = (PyObject *)userdata; - PyObject *props, *item; + PyObject *item; /* identifiers */ item= PyObject_GetAttrString(py_class, PYOP_ATTR_IDNAME_BL); @@ -325,7 +326,6 @@ PyObject *PYOP_wrap_add(PyObject *self, PyObject *py_class) char *idname= NULL; char idname_bl[OP_MAX_TYPENAME]; /* converted to blender syntax */ - int i; static struct BPY_class_attr_check pyop_class_attr_values[]= { {PYOP_ATTR_IDNAME, 's', -1, OP_MAX_TYPENAME-3, 0}, /* -3 because a.b -> A_OT_b */ From 773253df724edf48ce798811c33635d03a6c2e37 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Mon, 2 Nov 2009 00:30:52 +0000 Subject: [PATCH 300/412] == COLLADA == * proper library names and order. Goes together with 76MB commit for r24225 --- config/win32-vc-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py index 2c5781df75a..60463a07a32 100644 --- a/config/win32-vc-config.py +++ b/config/win32-vc-config.py @@ -145,7 +145,7 @@ BF_COLLADA_LIB = 'bf_collada' BF_OPENCOLLADA = LIBDIR + '/opencollada' BF_OPENCOLLADA_INC = '${BF_OPENCOLLADA}/include' -BF_OPENCOLLADA_LIB = 'opencollada' +BF_OPENCOLLADA_LIB = 'OpenCOLLADAStreamWriter OpenCOLLADASaxFrameworkLoader OpenCOLLADAFramework OpenCOLLADABaseUtils GeneratedSaxParser UTF MathMLSolver xml2 pcre' BF_OPENCOLLADA_LIBPATH = '${BF_OPENCOLLADA}/lib' WITH_BF_STATICOPENGL = False From ab7a174f92d872955389f5226970344983f9e56f Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 2 Nov 2009 08:05:16 +0000 Subject: [PATCH 301/412] Added some missing menu items + fixes --- release/scripts/ui/space_view3d.py | 33 ++++++++++++++++++------------ 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index b2d043029f2..f197e4cb8ed 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -199,6 +199,7 @@ class VIEW3D_MT_select_object(bpy.types.Menu): layout = self.layout layout.itemO("view3d.select_border") + layout.itemO("view3d.select_circle") layout.itemS() @@ -208,7 +209,11 @@ class VIEW3D_MT_select_object(bpy.types.Menu): layout.itemO("object.select_mirror", text="Mirror") layout.itemO("object.select_by_layer", text="Select All by Layer") layout.item_menu_enumO("object.select_by_type", "type", "", text="Select All by Type...") - layout.item_menu_enumO("object.select_grouped", "type", text="Select Grouped...") + + layout.itemS() + + layout.item_menu_enumO("object.select_grouped", "type", text="Grouped") + layout.item_menu_enumO("object.select_linked", "type", text="Linked") layout.itemO("object.select_pattern", text="Select Pattern...") @@ -218,7 +223,7 @@ class VIEW3D_MT_select_pose(bpy.types.Menu): def draw(self, context): layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border") layout.itemS() @@ -268,7 +273,8 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): def draw(self, context): layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border") + layout.itemO("view3d.select_circle") layout.itemS() @@ -314,8 +320,8 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu): def draw(self, context): layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") - layout.itemO("view3d.select_circle", text="Circle Select...") + layout.itemO("view3d.select_border") + layout.itemO("view3d.select_circle") layout.itemS() @@ -343,8 +349,8 @@ class VIEW3D_MT_select_edit_surface(bpy.types.Menu): def draw(self, context): layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") - layout.itemO("view3d.select_circle", text="Circle Select...") + layout.itemO("view3d.select_border") + layout.itemO("view3d.select_circle") layout.itemS() @@ -400,7 +406,8 @@ class VIEW3D_MT_select_edit_armature(bpy.types.Menu): def draw(self, context): layout = self.layout - layout.itemO("view3d.select_border", text="Border Select...") + layout.itemO("view3d.select_border") + layout.itemS() @@ -687,6 +694,7 @@ class VIEW3D_MT_pose(bpy.types.Menu): layout.itemS() layout.itemO("pose.apply") + layout.itemO("pose.relax") layout.itemS() @@ -946,7 +954,6 @@ class VIEW3D_MT_edit_mesh_faces(dynamic_menu.DynMenu): layout = self.layout layout.operator_context = 'INVOKE_REGION_WIN' - layout.itemO("mesh.flip_normals") # layout.itemO("mesh.bevel") # layout.itemO("mesh.bevel") layout.itemO("mesh.edge_face_add") @@ -1023,7 +1030,7 @@ def draw_curve(self, context): layout.itemS() - layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing") layout.item_menu_enumR(settings, "proportional_editing_falloff") layout.itemS() @@ -1085,7 +1092,7 @@ class VIEW3D_MT_edit_text(bpy.types.Menu): layout.itemS() - layout.itemm("view3d_mt_edit_text_chars") + layout.itemM("VIEW3D_MT_edit_text_chars") class VIEW3D_MT_edit_text_chars(bpy.types.Menu): @@ -1144,7 +1151,7 @@ class VIEW3D_MT_edit_meta(bpy.types.Menu): layout.itemS() - layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing") layout.item_menu_enumR(settings, "proportional_editing_falloff") layout.itemS() @@ -1179,7 +1186,7 @@ class VIEW3D_MT_edit_lattice(bpy.types.Menu): layout.itemS() - layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing") layout.item_menu_enumR(settings, "proportional_editing_falloff") From dd130350d5650dc85133a9fde2f84f82c2d8df2c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 08:32:00 +0000 Subject: [PATCH 302/412] make python operator instances subclasses of the wmOperator when called. was subclassing the operator's type before. Removes the need for passing self.__operator__, can pass self directly. --- release/scripts/io/export_3ds.py | 2 +- release/scripts/io/export_fbx.py | 2 +- release/scripts/io/export_mdd.py | 2 +- release/scripts/io/export_obj.py | 2 +- release/scripts/io/export_ply.py | 2 +- release/scripts/io/export_x3d.py | 2 +- release/scripts/io/import_3ds.py | 2 +- release/scripts/io/import_obj.py | 2 +- release/scripts/modules/bpy_ops.py | 2 +- release/scripts/templates/operator.py | 4 ++-- release/scripts/ui/space_userpref.py | 2 +- release/scripts/ui/space_view3d.py | 2 +- .../blender/python/intern/bpy_operator_wrap.c | 20 +++++++++---------- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index d3221d4c81c..3e5d64a3e35 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1128,7 +1128,7 @@ class EXPORT_OT_autodesk_3ds(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) def poll(self, context): # Poll isnt working yet diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index 92a7286d4af..b303e536b99 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -3429,7 +3429,7 @@ class EXPORT_OT_fbx(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) diff --git a/release/scripts/io/export_mdd.py b/release/scripts/io/export_mdd.py index 28e6a325cbe..677361f3392 100644 --- a/release/scripts/io/export_mdd.py +++ b/release/scripts/io/export_mdd.py @@ -184,7 +184,7 @@ class EXPORT_OT_mdd(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) bpy.ops.add(EXPORT_OT_mdd) diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 92e6841016a..72f1835fea8 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -995,7 +995,7 @@ class EXPORT_OT_obj(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) def poll(self, context): # Poll isnt working yet diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index 61f3484f97d..7235d51450e 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -288,7 +288,7 @@ class EXPORT_OT_ply(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py index 4b215ccdd9f..6de67252676 100644 --- a/release/scripts/io/export_x3d.py +++ b/release/scripts/io/export_x3d.py @@ -1235,7 +1235,7 @@ class EXPORT_OT_x3d(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) bpy.ops.add(EXPORT_OT_x3d) diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_3ds.py index ebb4ed59c36..62612cc79d4 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_3ds.py @@ -1161,7 +1161,7 @@ class IMPORT_OT_autodesk_3ds(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) bpy.ops.add(IMPORT_OT_autodesk_3ds) diff --git a/release/scripts/io/import_obj.py b/release/scripts/io/import_obj.py index 4fb7ada5d81..e5e0dc35995 100644 --- a/release/scripts/io/import_obj.py +++ b/release/scripts/io/import_obj.py @@ -1618,7 +1618,7 @@ class IMPORT_OT_obj(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index 233c072867e..cfcaf3b6083 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -528,7 +528,7 @@ class WM_OT_doc_edit(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.invoke_props_popup(self.__operator__, event) + wm.invoke_props_popup(self, event) return ('RUNNING_MODAL',) diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index b0c03045216..88e6a327096 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -51,11 +51,11 @@ class ExportSomeData(bpy.types.Operator): if True: # File selector - wm.add_fileselect(self.__operator__) # will run self.execute() + wm.add_fileselect(self) # will run self.execute() return ('RUNNING_MODAL',) else if 0: # Redo popup - wm.invoke_props_popup(self.__operator__, event) # + wm.invoke_props_popup(self, event) # return ('RUNNING_MODAL',) else if 0: return self.execute(context) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index fc9678a0847..9fd35e9588e 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -678,7 +678,7 @@ class WM_OT_keyconfig_export(bpy.types.Operator): def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index f197e4cb8ed..24484f84e44 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1553,7 +1553,7 @@ class OBJECT_OT_select_pattern(bpy.types.Operator): ''' def invoke(self, context, event): wm = context.manager - wm.add_fileselect(self.__operator__) + wm.add_fileselect(self) return ('RUNNING_MODAL',) ''' diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c index fcfea7db885..b0754ee1cde 100644 --- a/source/blender/python/intern/bpy_operator_wrap.c +++ b/source/blender/python/intern/bpy_operator_wrap.c @@ -90,14 +90,18 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat PointerRNA ptr_context; PointerRNA ptr_operator; PointerRNA ptr_event; - PyObject *py_operator; PyGILState_STATE gilstate; bpy_context_set(C, &gilstate); args = PyTuple_New(1); - PyTuple_SET_ITEM(args, 0, PyObject_GetAttrString(py_class, "bl_rna")); // need to use an rna instance as the first arg + + /* poll has no 'op', should be ok still */ + /* use an rna instance as the first arg */ + RNA_pointer_create(NULL, &RNA_Operator, op, &ptr_operator); + PyTuple_SET_ITEM(args, 0, pyrna_struct_CreatePyObject(&ptr_operator)); + py_class_instance = PyObject_Call(py_class, args, NULL); Py_DECREF(args); @@ -120,14 +124,6 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat RNA_STRUCT_END; } - /* set operator pointer RNA as instance "__operator__" attribute */ - if(op) { - RNA_pointer_create(NULL, &RNA_Operator, op, &ptr_operator); - py_operator= pyrna_struct_CreatePyObject(&ptr_operator); - PyDict_SetItemString(class_dict, "__operator__", py_operator); - Py_DECREF(py_operator); - } - RNA_pointer_create(NULL, &RNA_Context, C, &ptr_context); if (mode==PYOP_INVOKE) { @@ -160,6 +156,10 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat Py_DECREF(item); Py_DECREF(class_dict); } + else { + PyErr_Print(); + PyErr_Clear(); + } if (ret == NULL) { /* covers py_class_instance failing too */ if(op) From a9f6eaf847d8de17d78fdc94825d435df8acf7cf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 09:26:55 +0000 Subject: [PATCH 303/412] vertex paint script ported by - Keith "Wahooney" Boshoff Todo - Add back nicer normal calculation function - Make pep8 compliant - Add vertex color layer when none exist --- release/scripts/io/vertexpaint_dirt.py | 189 +++++++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 release/scripts/io/vertexpaint_dirt.py diff --git a/release/scripts/io/vertexpaint_dirt.py b/release/scripts/io/vertexpaint_dirt.py new file mode 100644 index 00000000000..9f55d3bb042 --- /dev/null +++ b/release/scripts/io/vertexpaint_dirt.py @@ -0,0 +1,189 @@ +# bl_author = ["Campbell Barton aka ideasman42", "Keith Boshoff aka Wahooney"] +# bl_url = ["www.blender.org", "blenderartists.org", "www.python.org"] +# bl_version = "0.2" + +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# Script copyright (C) Campbell J Barton +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- + +# History +# +# 2009-11-01: * 2.5 port by Keith "Wahooney" Boshoff +# * Replaced old method with my own, speed is similar (about 0.001 sec on Suzanne) +# but results are far more accurate +# + +import bpy +import Mathutils +import math +import time + +from Mathutils import Vector +from bpy.props import * + +def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, dirt_only, sel_only): +## Window.WaitCursor(1) + + #BPyMesh.meshCalcNormals(me) + + vert_tone= [0.0] * len(me.verts) + vert_tone_count= [0] * len(me.verts) + + # create lookup table for each vertex's connected vertices (via edges) + con = [[] for i in range(len(me.verts))] + + min_tone=180.0 + max_tone=0.0 + + # add connected verts + for e in me.edges: + con[e.verts[0]].append(e.verts[1]) + con[e.verts[1]].append(e.verts[0]) + + for v in me.verts: + vec = Vector() + no = v.normal + co = v.co + + # get the direction of the vectors between the vertex and it's connected vertices + for c in con[v.index]: + vec += Vector(me.verts[c].co - co).normalize() + + # normalize the vector by dividing by the number of connected verts + vec /= len(con[v.index]) + + # angle is the acos of the dot product between vert and connected verts normals + ang = math.acos(no.dot(vec)) + + # enforce min/max + + vert_tone[v.index] = max(clamp_clean, min(clamp_dirt, ang)) + + # average vert_tone_list into vert_tonef +# for i, tones in enumerate(vert_tone): +# if vert_tone_count[i]: +# vert_tone[i] = vert_tone[i] / vert_tone_count[i] + + # Below we use edges to blur along so the edges need counting, not the faces + vert_tone_count= [0] * len(me.verts) + for ed in me.edges: + vert_tone_count[ed.verts[0]] += 1 + vert_tone_count[ed.verts[1]] += 1 + + + # Blur tone + blur = blur_strength + blur_inv = 1.0 - blur_strength + + for i in range(blur_iterations): + + # backup the original tones + orig_vert_tone= list(vert_tone) + + for ed in me.edges: + + i1 = ed.verts[0] + i2 = ed.verts[1] + + val1 = (orig_vert_tone[i2]*blur) + (orig_vert_tone[i1]*blur_inv) + val2 = (orig_vert_tone[i1]*blur) + (orig_vert_tone[i2]*blur_inv) + + # Apply the ton divided by the number of faces connected + vert_tone[i1] += val1 / max(vert_tone_count[i1], 1) + vert_tone[i2] += val2 / max(vert_tone_count[i2], 1) + + + min_tone= min(vert_tone) + max_tone= max(vert_tone) + + print(min_tone) + print(max_tone) + print(clamp_clean) + print(clamp_dirt) + + tone_range= max_tone-min_tone + if max_tone==min_tone: + return + + for lay in me.vertex_colors: + if lay.active: + active_col_layer = lay.data + + if not active_col_layer: + return('CANCELLED', ) + + for i, f in enumerate(me.faces): + if not sel_only or f.sel: + f_col = active_col_layer[i] + + f_col = [f_col.color1, f_col.color2, f_col.color3, f_col.color4] + + for j, v in enumerate(f.verts): + col = f_col[j] + tone = vert_tone[me.verts[v].index] + tone = (tone-min_tone)/tone_range + + col[0] = tone*col[0] + col[1] = tone*col[1] + col[2] = tone*col[2] + +## Window.WaitCursor(0) + + +class VertexPaintDirt(bpy.types.Operator): + '''This script uses the concavity of vertices to shade the mesh, and optionaly blur the shading to remove artifacts from spesific edges.''' + + bl_idname = "mesh.vertex_paint_dirt" + bl_label = "Dirty Vertex Colors" + bl_register = True + bl_undo = True + + blur_strength = FloatProperty(name="Blur Strength", description="Blur strength per iteration", default=1.0, min=0.01, max=1.0) + blur_iterations = IntProperty(name="Blur Iterations", description="Number times to blur the colors. (higher blurs more)", default=1, min=0, max=40) + clean_angle = FloatProperty(name="Highlight Angle", description="Less then 90 limits the angle used in the tonal range", default=0.0, min=0.0, max=180.0) + dirt_angle = FloatProperty(name="Dirt Angle", description="Less then 90 limits the angle used in the tonal range", default=180.0, min=0.0, max=180.0) + dirt_only = BoolProperty(name="Dirt Only", description="Dont calculate cleans for convex areas", default=False) + sel_faces_only = BoolProperty(name="Selected Faces Only", description="Only apply to UV/Face selected faces (mix vpain/uvface select)", default=False) + + def execute(self, context): + sce= context.scene + ob= context.object + + if not ob or ob.type != 'MESH': + print('Error, no active mesh object, aborting.') + print(ob) + print(ob.type) + return('CANCELLED',) + + me = ob.data + + t = time.time() + + applyVertexDirt(me, self.blur_iterations, self.blur_strength, math.radians(self.dirt_angle), math.radians(self.clean_angle), self.dirt_only, self.sel_faces_only) + + print('done in %.6f' % (time.time()-t)) + + return('FINISHED',) + + +bpy.ops.add(VertexPaintDirt) + +if __name__ == "__main__": + bpy.ops.mesh.vertex_paint_dirt() From 27580daf2754a5aff8f786eb1d7370ba5043b3bd Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 2 Nov 2009 09:31:55 +0000 Subject: [PATCH 304/412] Added back texture filter/minimum settings to image texture properties --- release/scripts/ui/properties_texture.py | 4 +++- source/blender/makesrna/intern/rna_texture.c | 9 ++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index 38c4682c7a8..6490c03986d 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -519,11 +519,13 @@ class TEXTURE_PT_image_sampling(TextureTypePanel): col.itemL(text="Filter:") col.itemR(tex, "filter", text="") + col.itemR(tex, "filter_size") + col.itemR(tex, "filter_size_minimum") col.itemR(tex, "mipmap") row = col.row() row.active = tex.mipmap - row.itemR(tex, "mipmap_gauss", text="Gauss") + row.itemR(tex, "mipmap_gauss") col.itemR(tex, "interpolation") if tex.mipmap and tex.filter != 'DEFAULT': diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c index c2be65c39d6..5a18a7a987c 100644 --- a/source/blender/makesrna/intern/rna_texture.c +++ b/source/blender/makesrna/intern/rna_texture.c @@ -620,10 +620,9 @@ static void rna_def_filter_size_common(StructRNA *srna) { PropertyRNA *prop; - /* XXX: not sure about the name of this, "Min" seems a bit off */ - prop= RNA_def_property(srna, "use_filter", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "filter_size_minimum", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "imaflag", TEX_FILTER_MIN); - RNA_def_property_ui_text(prop, "Use Filter", "Use Filter Size as a minimal filter value in pixels"); + RNA_def_property_ui_text(prop, "Minimum Filter Size", "Use Filter Size as a minimal filter value in pixels"); RNA_def_property_update(prop, 0, "rna_Texture_update"); prop= RNA_def_property(srna, "filter_size", PROP_FLOAT, PROP_NONE); @@ -1062,7 +1061,7 @@ static void rna_def_texture_image(BlenderRNA *brna) {0, NULL, 0, NULL, NULL}}; static EnumPropertyItem prop_normal_space[] = { - {MTEX_NSPACE_CAMERA, "CAMERA", 0, "Extend", ""}, + {MTEX_NSPACE_CAMERA, "CAMERA", 0, "Camera", ""}, {MTEX_NSPACE_WORLD, "WORLD", 0, "World", ""}, {MTEX_NSPACE_OBJECT, "OBJECT", 0, "Object", ""}, {MTEX_NSPACE_TANGENT, "TANGENT", 0, "Tangent", ""}, @@ -1080,7 +1079,7 @@ static void rna_def_texture_image(BlenderRNA *brna) prop= RNA_def_property(srna, "mipmap_gauss", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "imaflag", TEX_GAUSS_MIP); - RNA_def_property_ui_text(prop, "MIP Map Gauss", "Uses Gauss filter to sample down MIP maps"); + RNA_def_property_ui_text(prop, "MIP Map Gaussian filter", "Uses Gauss filter to sample down MIP maps"); RNA_def_property_update(prop, 0, "rna_Texture_update"); prop= RNA_def_property(srna, "interpolation", PROP_BOOLEAN, PROP_NONE); From 334a80a4f8a484c13ebf8c426064d7c49b212ab7 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 2 Nov 2009 10:04:37 +0000 Subject: [PATCH 305/412] Spline IK Experimental Features: 1) "Even Divisions" - This option ignores the length of bones when considering how they should fit along the curve. This is useful for getting a smoother curve fit without having to worry about getting the bone lengths spot on. By default, this is disabled. 2) "Keep Max Length" - This option prevents the bone chain from extending past its natural length when the spline is stretched beyond that length. When the spline length is substatially shorter though, this bones get scaled to zero; making this option possibly useful for doing "growing tips". This is essentially a 'no scale' option, although the behaviour when the curve is shorter is really a compromise since the curve cannot be accurately satisfied + left intact without some scaling being applied due to the way this works. 3) "Radius to Thickness" - The average radius of the spline between at the head+tail of each bone determines the x+z scaling of the bone. --- .../ui/properties_object_constraint.py | 17 ++- source/blender/blenkernel/intern/armature.c | 129 ++++++++++++++---- .../blender/makesdna/DNA_constraint_types.h | 14 +- .../blender/makesrna/intern/rna_constraint.c | 28 +++- 4 files changed, 146 insertions(+), 42 deletions(-) diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 1c0f58ae796..485fd0d0973 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -36,7 +36,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): # show/key buttons here are most likely obsolete now, with # keyframing functionality being part of every button - if con.type not in ('RIGID_BODY_JOINT', 'NULL'): + if con.type not in ('RIGID_BODY_JOINT', 'SPLINE_IK', 'NULL'): box.itemR(con, "influence") def space_template(self, layout, con, target=True, owner=True): @@ -597,10 +597,17 @@ class ConstraintButtonsPanel(bpy.types.Panel): def SPLINE_IK(self, context, layout, con): self.target_template(layout, con) - - row = layout.row() - row.itemR(con, "chain_length") - # TODO: add the various options this constraint has... + + col = layout.column() + col.itemL(text="Spline Fitting:") + col.itemR(con, "chain_length") + col.itemR(con, "even_divisions") + #col.itemR(con, "affect_root") # XXX: this is not that useful yet + + col = layout.column() + col.itemL(text="Chain Scaling:") + col.itemR(con, "keep_max_length") + col.itemR(con, "radius_to_thickness") class OBJECT_PT_constraints(ConstraintButtonsPanel): diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index e5bf0fb35a9..62c4143632c 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -34,13 +34,12 @@ #include "MEM_guardedalloc.h" -//XXX #include "nla.h" - #include "BLI_arithb.h" #include "BLI_blenlib.h" #include "DNA_armature_types.h" #include "DNA_action_types.h" +#include "DNA_curve_types.h" #include "DNA_constraint_types.h" #include "DNA_mesh_types.h" #include "DNA_lattice_types.h" @@ -1613,7 +1612,10 @@ typedef struct tSplineIK_Tree { int type; /* type of IK that this serves (CONSTRAINT_TYPE_KINEMATIC or ..._SPLINEIK) */ - int chainlen; /* number of bones in the chain */ + short free_points; /* free the point positions array */ + short chainlen; /* number of bones in the chain */ + + float *points; /* parametric positions for the joints along the curve */ bPoseChannel **chain; /* chain of bones to affect using Spline IK (ordered from the tip) */ bPoseChannel *root; /* bone that is the root node of the chain */ @@ -1631,8 +1633,9 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) bPoseChannel *pchanChain[255]; bConstraint *con = NULL; bSplineIKConstraint *ikData = NULL; - float boneLengths[255]; + float boneLengths[255], *jointPoints; float totLength = 0.0f; + short free_joints = 0; int segcount = 0; /* find the SplineIK constraint */ @@ -1662,10 +1665,8 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) pchanChain[segcount]= pchan; /* if performing rebinding, calculate the length of the bone */ - if ((ikData->flag & CONSTRAINT_SPLINEIK_BOUND) == 0) { - boneLengths[segcount]= pchan->bone->length; - totLength += boneLengths[segcount]; - } + boneLengths[segcount]= pchan->bone->length; + totLength += boneLengths[segcount]; /* check if we've gotten the number of bones required yet (after incrementing the count first) * NOTE: the 255 limit here is rather ugly, but the standard IK does this too! @@ -1699,9 +1700,8 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) /* 'head' joints * - 2 methods; the one chosen depends on whether we've got usable lengths */ - if (totLength == 0.0f) { + if ((ikData->flag & CONSTRAINT_SPLINEIK_EVENSPLITS) || (totLength == 0.0f)) { /* 1) equi-spaced joints */ - // TODO: maybe this should become an option too, in case we want this option by default ikData->points[i]= segmentLen; } else { @@ -1724,8 +1724,37 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) /* apply corrections for sensitivity to scaling on a copy of the bind points, * since it's easier to determine the positions of all the joints beforehand this way */ - // TODO: code me! - + if ((ikData->flag & CONSTRAINT_SPLINEIK_SCALE_LIMITED) && (totLength != 0.0f)) { + Curve *cu= (Curve *)ikData->tar->data; + float splineLen, maxScale; + int i; + + /* make a copy of the points array, that we'll store in the tree + * - although we could just multiply the points on the fly, this approach means that + * we can introduce per-segment stretchiness later if it is necessary + */ + jointPoints= MEM_dupallocN(ikData->points); + free_joints= 1; + + /* get the current length of the curve */ + // NOTE: this is assumed to be correct even after the curve was resized + splineLen= cu->path->totdist; + + /* calculate the scale factor to multiply all the path values by so that the + * bone chain retains its current length, such that + * maxScale * splineLen = totLength + */ + maxScale = totLength / splineLen; + + /* apply scaling correction to all of the temporary points */ + for (i = 0; i < segcount; i++) + jointPoints[i] *= maxScale; + } + else { + /* just use the existing points array */ + jointPoints= ikData->points; + free_joints= 0; + } /* make a new Spline-IK chain, and store it in the IK chains */ // TODO: we should check if there is already an IK chain on this, since that would take presidence... @@ -1740,6 +1769,11 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) tree->chain= MEM_callocN(sizeof(bPoseChannel*)*segcount, "SplineIK Chain"); memcpy(tree->chain, pchanChain, sizeof(bPoseChannel*)*segcount); + /* store reference to joint position array */ + tree->points= jointPoints; + tree->free_points= free_joints; + + /* store references to different parts of the chain */ tree->root= pchanRoot; tree->con= con; tree->ikData= ikData; @@ -1767,28 +1801,53 @@ static void splineik_init_tree(Scene *scene, Object *ob, float ctime) /* ----------- */ /* Evaluate spline IK for a given bone */ -// TODO: this method doesn't allow for non-strechiness... -// TODO: include code for dealing with constraint blending -static void splineik_evaluate_bone(tSplineIK_Tree *tree, Object *ob, bPoseChannel *pchan, int index) +static void splineik_evaluate_bone(tSplineIK_Tree *tree, Scene *scene, Object *ob, bPoseChannel *pchan, int index, float ctime) { bSplineIKConstraint *ikData= tree->ikData; float dirX[3]={1,0,0}, dirZ[3]={0,0,1}; float axis1[3], axis2[3], tmpVec[3]; float splineVec[3], scaleFac; + float rad, radius=1.0f; float vec[4], dir[3]; - /* step 1: get xyz positions for the endpoints of the bone */ + /* step 1: get xyz positions for the endpoints of the bone + * assume that they can be calculated on the path so that these calls will never fail + */ /* tail */ - if ( where_on_path(ikData->tar, ikData->points[index], vec, dir, NULL, NULL) ) { + if ( where_on_path(ikData->tar, tree->points[index], vec, dir, NULL, &rad) ) { /* convert the position to pose-space, then store it */ Mat4MulVecfl(ob->imat, vec); VECCOPY(pchan->pose_tail, vec); + + /* set the new radius */ + radius= rad; } - /* head */ // TODO: only calculate here when we're - if ( where_on_path(ikData->tar, ikData->points[index+1], vec, dir, NULL, NULL) ) { - /* store the position, and convert it to pose space */ - Mat4MulVecfl(ob->imat, vec); - VECCOPY(pchan->pose_head, vec); + /* head + * - check that this isn't the last bone that is subject to restrictions + * i.e. if no-root option is enabled, the root should be calculated in the standard way + */ + if ((ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT)==0 || (index+1 < ikData->chainlen)) + { + /* the head location of this bone is driven by the spline */ + if ( where_on_path(ikData->tar, tree->points[index+1], vec, dir, NULL, &rad) ) { + /* store the position, and convert it to pose space */ + Mat4MulVecfl(ob->imat, vec); + VECCOPY(pchan->pose_head, vec); + + /* set the new radius (it should be the average value) */ + radius = (radius+rad) / 2; + } + } + else { + // FIXME: this option isn't really useful yet... + // maybe we are more interested in the head deltas that arise from this instead? + /* use the standard calculations for this */ + where_is_pose_bone(scene, ob, pchan, ctime); + + /* hack: assume for now that the pose_tail vector is still valid from the previous step, + * and set that again now so that the chain doesn't get broken + */ + VECCOPY(pchan->pose_tail, vec); } @@ -1833,9 +1892,15 @@ static void splineik_evaluate_bone(tSplineIK_Tree *tree, Object *ob, bPoseChanne // TODO: code me! - /* step 4: only multiply the y-axis by the scaling factor to get nice volume-preservation */ - // NOTE: the x+z could get multiplied too, but that may be best left as an option + /* step 4: set the scaling factors for the axes */ + /* only multiply the y-axis by the scaling factor to get nice volume-preservation */ VecMulf(pchan->pose_mat[1], scaleFac); + + /* set the scaling factors of the x and z axes from the average radius of the curve? */ + if (ikData->flag & CONSTRAINT_SPLINEIK_RAD2FAT) { + VecMulf(pchan->pose_mat[0], radius); + VecMulf(pchan->pose_mat[2], radius); + } /* step 5: set the location of the bone in the matrix */ VECCOPY(pchan->pose_mat[3], pchan->pose_head); @@ -1855,17 +1920,23 @@ static void splineik_execute_tree(Scene *scene, Object *ob, bPoseChannel *pchan_ if (tree->type == CONSTRAINT_TYPE_SPLINEIK) { int i; - /* walk over each bone in the chain, calculating the effects of spline IK */ - for (i= 0; i < tree->chainlen; i++) { + /* walk over each bone in the chain, calculating the effects of spline IK + * - the chain is traversed in the opposite order to storage order (i.e. parent to children) + * so that dependencies are correct + */ + for (i= tree->chainlen-1; i >= 0; i--) { bPoseChannel *pchan= tree->chain[i]; - splineik_evaluate_bone(tree, ob, pchan, i); + splineik_evaluate_bone(tree, scene, ob, pchan, i, ctime); } // TODO: if another pass is needed to ensure the validity of the chain after blending, it should go here + + /* free the tree info specific to SplineIK trees now */ + if (tree->chain) MEM_freeN(tree->chain); + if (tree->free_points) MEM_freeN(tree->points); } - /* free the tree info now */ - if (tree->chain) MEM_freeN(tree->chain); + /* free this tree */ BLI_freelinkN(&pchan_root->iktree, tree); } } diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h index bf8139ce6a0..f5a08764c42 100644 --- a/source/blender/makesdna/DNA_constraint_types.h +++ b/source/blender/makesdna/DNA_constraint_types.h @@ -546,11 +546,15 @@ typedef enum B_CONSTRAINTCHANNEL_FLAG { /* bSplineIKConstraint->flag */ /* chain has been attached to spline */ -#define CONSTRAINT_SPLINEIK_BOUND (1<<0) - /* roll on chains is not determined by the constraint */ -#define CONSTRAINT_SPLINEIK_NO_TWIST (1<<1) - /* root of chain is not influence by the constraint */ -#define CONSTRAINT_SPLINEIK_NO_ROOT (1<<2) +#define CONSTRAINT_SPLINEIK_BOUND (1<<0) + /* root of chain is not influenced by the constraint */ +#define CONSTRAINT_SPLINEIK_NO_ROOT (1<<1) + /* bones in the chain should not scale to fit the curve */ +#define CONSTRAINT_SPLINEIK_SCALE_LIMITED (1<<2) + /* bones in the chain should take their x/z scales from the curve radius */ +#define CONSTRAINT_SPLINEIK_RAD2FAT (1<<3) + /* evenly distribute the bones along the path regardless of length */ +#define CONSTRAINT_SPLINEIK_EVENSPLITS (1<<4) /* MinMax (floor) flags */ #define MINMAX_STICKY 0x01 diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 63b1538354f..02cf44dcc7a 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -1683,10 +1683,11 @@ static void rna_def_constraint_spline_ik(BlenderRNA *brna) srna= RNA_def_struct(brna, "SplineIKConstraint", "Constraint"); RNA_def_struct_ui_text(srna, "Spline IK Constraint", "Align 'n' bones along a curve."); RNA_def_struct_sdna_from(srna, "bSplineIKConstraint", "data"); - + + /* target chain */ prop= RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE); - RNA_def_property_pointer_sdna(prop, NULL, "tar"); // TODO: curve only - RNA_def_property_ui_text(prop, "Target", "Target Object"); + RNA_def_property_pointer_sdna(prop, NULL, "tar"); + RNA_def_property_ui_text(prop, "Target", "Curve that controls this relationship"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); @@ -1697,6 +1698,27 @@ static void rna_def_constraint_spline_ik(BlenderRNA *brna) RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_dependency_update"); // TODO: add access to the positions array to allow more flexible aligning? + + /* settings */ + prop= RNA_def_property(srna, "affect_root", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", CONSTRAINT_SPLINEIK_NO_ROOT); + RNA_def_property_ui_text(prop, "Affect Root", "Include the root joint in the calculations."); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); + + prop= RNA_def_property(srna, "even_divisions", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_SPLINEIK_EVENSPLITS); + RNA_def_property_ui_text(prop, "Even Divisions", "Ignore the relative lengths of the bones when fitting to the curve."); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); + + prop= RNA_def_property(srna, "keep_max_length", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_SPLINEIK_SCALE_LIMITED); + RNA_def_property_ui_text(prop, "Keep Max Length", "Maintain the maximum length of the chain when spline is stretched."); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); + + prop= RNA_def_property(srna, "radius_to_thickness", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_SPLINEIK_RAD2FAT); + RNA_def_property_ui_text(prop, "Radius to Thickness", "Radius of the spline affects the x/z scaling of the bones."); + RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); } /* base struct for constraints */ From 3b910a780925163f81f11fd9994d01c61e27417a Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 2 Nov 2009 10:20:06 +0000 Subject: [PATCH 306/412] Fixed typo in key display code, was making the shortcuts for [ and ] (used in bone selection) inverted in the menu shortcut hint --- source/blender/makesrna/intern/rna_wm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index e2e50b695fd..39c4c340b97 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -183,8 +183,8 @@ EnumPropertyItem event_type_items[] = { {SLASHKEY, "SLASH", 0, "/", ""}, {BACKSLASHKEY, "BACK_SLASH", 0, "\\", ""}, {EQUALKEY, "EQUAL", 0, "=", ""}, - {LEFTBRACKETKEY, "LEFT_BRACKET", 0, "]", ""}, - {RIGHTBRACKETKEY, "RIGHT_BRACKET", 0, "[", ""}, + {LEFTBRACKETKEY, "LEFT_BRACKET", 0, "[", ""}, + {RIGHTBRACKETKEY, "RIGHT_BRACKET", 0, "]", ""}, {LEFTARROWKEY, "LEFT_ARROW", 0, "Left Arrow", ""}, {DOWNARROWKEY, "DOWN_ARROW", 0, "Down Arrow", ""}, {RIGHTARROWKEY, "RIGHT_ARROW", 0, "Right Arrow", ""}, From da6081f26692833e980706bee094933dadda5fa5 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 2 Nov 2009 10:30:51 +0000 Subject: [PATCH 307/412] Fix for bug [#19668] Blender freezes if step size 0 is used for a volumetric material -- limit the minimum step size --- source/blender/makesrna/intern/rna_material.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c index fbecf2b5f07..35eab7645f3 100644 --- a/source/blender/makesrna/intern/rna_material.c +++ b/source/blender/makesrna/intern/rna_material.c @@ -991,7 +991,7 @@ static void rna_def_material_volume(BlenderRNA *brna) prop= RNA_def_property(srna, "step_size", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "stepsize"); RNA_def_property_range(prop, 0.0f, FLT_MAX); - RNA_def_property_ui_range(prop, 0.0f, 1.0f, 1, 3); + RNA_def_property_ui_range(prop, 0.001f, 1.0f, 1, 3); RNA_def_property_ui_text(prop, "Step Size", "Distance between subsequent volume depth samples."); RNA_def_property_update(prop, 0, "rna_Material_update"); From da1765765baf3bc84059548a43beec0c3a1c2d41 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 11:14:22 +0000 Subject: [PATCH 308/412] many operators uses Bases, for the python to set operators context python too needs to be able to access bases. - added scene.bases (like scene.objects) - renamed group create operator. Example scene = bpy.data.scenes[0] C = {} C["scene"] = scene C["selected_editable_bases"] = [scene.bases[2], scene.bases[3]] bpy.ops.group.create(C) Also made operator fake modules not return __call__ (reported by Stani, fixes autocomp. bug) --- release/scripts/modules/bpy_ops.py | 2 + source/blender/editors/object/object_group.c | 14 +-- source/blender/editors/object/object_intern.h | 2 +- source/blender/editors/object/object_ops.c | 4 +- source/blender/makesrna/intern/rna_object.c | 113 +++++++++++++++--- source/blender/makesrna/intern/rna_scene.c | 5 + 6 files changed, 114 insertions(+), 26 deletions(-) diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index cfcaf3b6083..c30869669cc 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -98,6 +98,8 @@ class bpy_ops_submodule(object): ''' gets a bpy.ops.submodule function ''' + if func.startswith('__'): + raise AttributeError(func) return bpy_ops_submodule_op(self.module, func) def __dir__(self): diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c index 198838d6f05..ec8409e9aa1 100644 --- a/source/blender/editors/object/object_group.c +++ b/source/blender/editors/object/object_group.c @@ -198,11 +198,11 @@ static int group_create_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); Group *group= NULL; - char gid[32]; //group id + char name[32]; /* id name */ - RNA_string_get(op->ptr, "GID", gid); + RNA_string_get(op->ptr, "name", name); - group= add_group(gid); + group= add_group(name); CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) { add_to_group(group, base->object); @@ -218,12 +218,12 @@ static int group_create_exec(bContext *C, wmOperator *op) return OPERATOR_FINISHED; } -void GROUP_OT_group_create(wmOperatorType *ot) +void GROUP_OT_create(wmOperatorType *ot) { /* identifiers */ ot->name= "Create New Group"; - ot->description = "Create an object group."; - ot->idname= "GROUP_OT_group_create"; + ot->description = "Create an object group from selected objects."; + ot->idname= "GROUP_OT_create"; /* api callbacks */ ot->exec= group_create_exec; @@ -232,7 +232,7 @@ void GROUP_OT_group_create(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; - RNA_def_string(ot->srna, "GID", "Group", 32, "Name", "Name of the new group"); + RNA_def_string(ot->srna, "name", "Group", 32, "Name", "Name of the new group"); } /****************** properties window operators *********************/ diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 9ce54241cb6..ebc36dddb33 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -114,7 +114,7 @@ void LATTICE_OT_select_all_toggle(struct wmOperatorType *ot); void LATTICE_OT_make_regular(struct wmOperatorType *ot); /* object_group.c */ -void GROUP_OT_group_create(struct wmOperatorType *ot); +void GROUP_OT_create(struct wmOperatorType *ot); void GROUP_OT_objects_remove(struct wmOperatorType *ot); void GROUP_OT_objects_add_active(struct wmOperatorType *ot); void GROUP_OT_objects_remove_active(struct wmOperatorType *ot); diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 85211f12a0c..fc06a94ecfa 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -104,7 +104,7 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_select_mirror); WM_operatortype_append(OBJECT_OT_select_name); /* XXX - weak, not compat with linked objects */ - WM_operatortype_append(GROUP_OT_group_create); + WM_operatortype_append(GROUP_OT_create); WM_operatortype_append(GROUP_OT_objects_remove); WM_operatortype_append(GROUP_OT_objects_add_active); WM_operatortype_append(GROUP_OT_objects_remove_active); @@ -294,7 +294,7 @@ void ED_keymap_object(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "ANIM_OT_insert_keyframe_menu", IKEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "ANIM_OT_delete_keyframe_v3d", IKEY, KM_PRESS, KM_ALT, 0); - WM_keymap_verify_item(keymap, "GROUP_OT_group_create", GKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_verify_item(keymap, "GROUP_OT_create", GKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_remove", GKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_add_active", GKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_remove_active", GKEY, KM_PRESS, KM_SHIFT|KM_ALT, 0); diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 28e4e7fc443..1e884bb6950 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -150,6 +150,25 @@ static void rna_Object_select_update(bContext *C, PointerRNA *ptr) ED_base_object_select(object_in_scene(ob, CTX_data_scene(C)), mode); } +static void rna_Base_select_update(bContext *C, PointerRNA *ptr) +{ + Base *base= (Base*)ptr->data; + short mode = base->flag & BA_SELECT ? BA_SELECT : BA_DESELECT; + ED_base_object_select(base, mode); +} + +static void rna_Object_layer_update__internal(Scene *scene, Base *base, Object *ob) +{ + /* try to avoid scene sort */ + if((ob->lay & scene->lay) && (base->lay & scene->lay)) { + /* pass */ + } else if((ob->lay & scene->lay)==0 && (base->lay & scene->lay)==0) { + /* pass */ + } else { + DAG_scene_sort(scene); + } +} + static void rna_Object_layer_update(bContext *C, PointerRNA *ptr) { Object *ob= (Object*)ptr->id.data; @@ -160,15 +179,19 @@ static void rna_Object_layer_update(bContext *C, PointerRNA *ptr) if(!base) return; - /* try to avoid scene sort */ - if((ob->lay & scene->lay) && (base->lay & scene->lay)) - base->lay= ob->lay; - else if((ob->lay & scene->lay)==0 && (base->lay & scene->lay)==0) - base->lay= ob->lay; - else { - base->lay= ob->lay; - DAG_scene_sort(scene); - } + base->lay= ob->lay; + rna_Object_layer_update__internal(scene, base, ob); +} + +static void rna_Base_layer_update(bContext *C, PointerRNA *ptr) +{ + Base *base= (Base*)ptr->id.data; + Object *ob= (Object*)base->object; + Scene *scene= CTX_data_scene(C); + + ob->lay= base->lay; + + rna_Object_layer_update__internal(scene, base, ob); } static int rna_Object_data_editable(PointerRNA *ptr) @@ -697,23 +720,47 @@ static PointerRNA rna_Object_game_settings_get(PointerRNA *ptr) return rna_pointer_inherit_refine(ptr, &RNA_GameObjectSettings, ptr->id.data); } -static void rna_Object_layer_set(PointerRNA *ptr, const int *values) + +static unsigned int rna_Object_layer_validate__internal(const int *values, unsigned int lay) { - Object *ob= (Object*)ptr->data; - int i, tot= 0; + int i, tot; /* ensure we always have some layer selected */ for(i=0; i<20; i++) if(values[i]) tot++; - + if(tot==0) - return; + return 0; for(i=0; i<20; i++) { - if(values[i]) ob->lay |= (1<lay &= ~(1<data; + unsigned int lay; + + lay= rna_Object_layer_validate__internal(values, ob->lay); + if(lay) + ob->lay= lay; +} + +static void rna_Base_layer_set(PointerRNA *ptr, const int *values) +{ + Base *base= (Base*)ptr->data; + + unsigned int lay; + lay= rna_Object_layer_validate__internal(values, base->lay); + if(lay) + base->lay= lay; + + /* rna_Base_layer_update updates the objects layer */ } static void rna_GameObjectSettings_state_set(PointerRNA *ptr, const int *values) @@ -1707,10 +1754,44 @@ static void rna_def_dupli_object(BlenderRNA *brna) /* TODO: DupliObject has more properties that can be wrapped */ } +static void rna_def_base(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + srna= RNA_def_struct(brna, "Base", NULL); + RNA_def_struct_sdna(srna, "Base"); + RNA_def_struct_ui_text(srna, "Object Base", "An objects instance in a scene."); + RNA_def_struct_ui_icon(srna, ICON_OBJECT_DATA); + + prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); + RNA_def_property_pointer_sdna(prop, NULL, "object"); + RNA_def_property_clear_flag(prop, PROP_EDITABLE); + RNA_def_property_ui_text(prop, "Object", "Object this base links to."); + + /* same as object layer */ + prop= RNA_def_property(srna, "layers", PROP_BOOLEAN, PROP_LAYER_MEMBER); + RNA_def_property_boolean_sdna(prop, NULL, "lay", 1); + RNA_def_property_array(prop, 20); + RNA_def_property_ui_text(prop, "Layers", "Layers the object is on."); + RNA_def_property_boolean_funcs(prop, NULL, "rna_Base_layer_set"); + RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, "rna_Base_layer_update"); + + prop= RNA_def_property(srna, "selected", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", BA_SELECT); + RNA_def_property_ui_text(prop, "Selected", "Object base selection state."); + RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, "rna_Base_select_update"); + + /* could use other flags like - BA_WAS_SEL, but for now selected is enough */ + + /* TODO: DupliObject has more properties that can be wrapped */ +} + void RNA_def_object(BlenderRNA *brna) { rna_def_object(brna); rna_def_object_game_settings(brna); + rna_def_base(brna); rna_def_vertex_group(brna); rna_def_material_slot(brna); rna_def_dupli_object(brna); diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index e2c239c4010..e7aeac96aef 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2227,6 +2227,11 @@ void RNA_def_scene(BlenderRNA *brna) RNA_def_property_update(prop, NC_WINDOW, NULL); /* Bases/Objects */ + prop= RNA_def_property(srna, "bases", PROP_COLLECTION, PROP_NONE); + RNA_def_property_collection_sdna(prop, NULL, "base", NULL); + RNA_def_property_struct_type(prop, "Base"); + RNA_def_property_ui_text(prop, "Bases", ""); + prop= RNA_def_property(srna, "objects", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_sdna(prop, NULL, "base", NULL); RNA_def_property_struct_type(prop, "Object"); From 3b43a5228e37e8cb79063474295a951c423497b3 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 2 Nov 2009 11:20:31 +0000 Subject: [PATCH 309/412] Mac / COCOA : - revert tiff load/save to use standard libtiff (to ensure 100% colorimetry & alpha interpretation across platforms) - include patch #18720 to fix load of libtiff dynlib (if present on system) --- source/blender/imbuf/CMakeLists.txt | 9 ++---- source/blender/imbuf/SConscript | 4 --- source/blender/imbuf/intern/dynlibtiff.c | 30 ++++++++++++++++++- source/blender/imbuf/intern/readimage.c | 4 +-- source/blender/imbuf/intern/writeimage.c | 4 +-- .../windowmanager/intern/wm_init_exit.c | 2 -- source/creator/creator.c | 7 ----- 7 files changed, 35 insertions(+), 25 deletions(-) diff --git a/source/blender/imbuf/CMakeLists.txt b/source/blender/imbuf/CMakeLists.txt index 55497fdabb7..336f4cc70b0 100644 --- a/source/blender/imbuf/CMakeLists.txt +++ b/source/blender/imbuf/CMakeLists.txt @@ -24,13 +24,8 @@ # # ***** END GPL LICENSE BLOCK ***** -IF(WITH_COCOA) - FILE(GLOB SRC intern/*.c intern/*.m) - LIST(REMOVE_ITEM SRC "${CMAKE_CURRENT_SOURCE_DIR}/intern/dynlibtiff.c") - LIST(REMOVE_ITEM SRC "${CMAKE_CURRENT_SOURCE_DIR}/intern/tiff.c") -ELSE(WITH_COCOA) - FILE(GLOB SRC intern/*.c) -ENDIF(WITH_COCOA) +FILE(GLOB SRC intern/*.c) + SET(INC . ../makesdna ../../../intern/guardedalloc ../../../intern/memutil ../blenlib diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript index 9684c19b247..a8d91b2d31e 100644 --- a/source/blender/imbuf/SConscript +++ b/source/blender/imbuf/SConscript @@ -2,10 +2,6 @@ Import ('env') sources = env.Glob('intern/*.c') -if env['WITH_GHOST_COCOA']: - sources += env.Glob('intern/*.m') - sources.remove('intern/dynlibtiff.c') - sources.remove('intern/tiff.c') incs = '. ../makesdna #/intern/guardedalloc #/intern/memutil ../blenlib' incs += ' ../avi ../blenkernel' diff --git a/source/blender/imbuf/intern/dynlibtiff.c b/source/blender/imbuf/intern/dynlibtiff.c index b9186e482c5..6db83b37c05 100644 --- a/source/blender/imbuf/intern/dynlibtiff.c +++ b/source/blender/imbuf/intern/dynlibtiff.c @@ -78,6 +78,34 @@ void libtiff_loadlibtiff(void) if (libtiff != NULL) return; /* Try to find libtiff in a couple of standard places */ +#ifdef __APPLE__ + /* OSX has version specific library */ + //standard install location + libtiff = PIL_dynlib_open("/usr/local/lib/libtiff.dylib"); + if (libtiff != NULL) return; + libtiff = PIL_dynlib_open("/usr/local/lib/libtiff.3.dylib"); + if (libtiff != NULL) return; + //inside the blender app package contents/resources + libtiff = PIL_dynlib_open("@executable_path/../resources/libtiff.dylib"); + if (libtiff != NULL) return; + libtiff = PIL_dynlib_open("@executable_path/../resources/libtiff.3.dylib"); + if (libtiff != NULL) return; + //inside the blender app package contents/frameworks + libtiff = PIL_dynlib_open("@executable_path/../frameworks/libtiff.dylib"); + if (libtiff != NULL) return; + libtiff = PIL_dynlib_open("@executable_path/../frameworks/libtiff.3.dylib"); + if (libtiff != NULL) return; + //along side the blender app package + libtiff = PIL_dynlib_open("@executable_path/../../../libtiff.dylib"); + if (libtiff != NULL) return; + libtiff = PIL_dynlib_open("@executable_path/../../../libtiff.3.dylib"); + if (libtiff != NULL) return; + //inside the blender app package contents/MacOS + libtiff = PIL_dynlib_open("@executable_path/libtiff.dylib"); + if (libtiff != NULL) return; + libtiff = PIL_dynlib_open("@executable_path/libtiff.3.dylib"); + if (libtiff != NULL) return; +#else libtiff = PIL_dynlib_open("libtiff.so"); if (libtiff != NULL) return; libtiff = PIL_dynlib_open("libtiff.so.3"); @@ -88,7 +116,6 @@ void libtiff_loadlibtiff(void) if (libtiff != NULL) return; libtiff = PIL_dynlib_open("/usr/lib/libtiff.so.3"); if (libtiff != NULL) return; - /* OSX has version specific library */ #ifdef __x86_64__ libtiff = PIL_dynlib_open("/usr/lib64/libtiff.so.3"); if (libtiff != NULL) return; @@ -97,6 +124,7 @@ void libtiff_loadlibtiff(void) if (libtiff != NULL) return; /* For solaris */ libtiff = PIL_dynlib_open("/usr/openwin/lib/libtiff.so"); +#endif } diff --git a/source/blender/imbuf/intern/readimage.c b/source/blender/imbuf/intern/readimage.c index 5003127dfb6..f248e6bb6c4 100644 --- a/source/blender/imbuf/intern/readimage.c +++ b/source/blender/imbuf/intern/readimage.c @@ -57,7 +57,7 @@ #include "IMB_dpxcineon.h" #include "BKE_global.h" -#if defined(__APPLE__) && defined(GHOST_COCOA) +#if defined(__APPLE__) && defined(IMBUF_COCOA) #include "IMB_cocoa.h" #else #include "IMB_tiff.h" @@ -157,7 +157,7 @@ ImBuf *IMB_ibImageFromMemory(int *mem, int size, int flags) { ibuf = imb_loadcineon((uchar *)mem, size, flags); if (ibuf) return(ibuf); -#if defined(__APPLE__) && defined(GHOST_COCOA) +#if defined(__APPLE__) && defined(IMBUF_COCOA) ibuf = imb_cocoaLoadImage((uchar *)mem, size, flags); if(ibuf) { ibuf->ftype = TIF; diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c index f8452ac4cd4..06ce59cddec 100644 --- a/source/blender/imbuf/intern/writeimage.c +++ b/source/blender/imbuf/intern/writeimage.c @@ -53,7 +53,7 @@ #include "IMB_bmp.h" #include "IMB_radiance_hdr.h" -#if defined(__APPLE__) && defined(GHOST_COCOA) +#if defined(__APPLE__) && defined(IMBUF_COCOA) #include "IMB_cocoa.h" #else #include "IMB_tiff.h" @@ -119,7 +119,7 @@ short IMB_saveiff(struct ImBuf *ibuf, char *name, int flags) return imb_saveiris(ibuf, name, flags); } -#if defined(__APPLE__) && defined(GHOST_COCOA) +#if defined(__APPLE__) && defined(IMBUF_COCOA) if (IS_tiff(ibuf)) { if(ibuf->rect==NULL && ibuf->rect_float) IMB_rect_from_float(ibuf); diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 96199a2a158..8097822acbc 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -247,9 +247,7 @@ void WM_exit(bContext *C) BPY_end_python(); #endif -#if !(defined(__APPLE__) && defined(GHOST_COCOA)) libtiff_exit(); -#endif #ifdef WITH_QUICKTIME quicktime_exit(); diff --git a/source/creator/creator.c b/source/creator/creator.c index 9749b724672..6f90c2ffe84 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -368,10 +368,8 @@ int main(int argc, char **argv) switch(argv[a][1]) { case 'a': /* -b was not given, play an animation */ -#if !(defined(__APPLE__) && defined(GHOST_COCOA)) /* exception here, see below, it probably needs happens after qt init? */ libtiff_init(); -#endif // XXX playanim(argc-1, argv+1); exit(0); @@ -540,10 +538,6 @@ int main(int argc, char **argv) #endif /* WITH_QUICKTIME */ -#if defined(__APPLE__) && defined(GHOST_COCOA) - /* libtiff is not used, Cocoa services are used instead for tiff I/O */ - G.have_libtiff = 1; -#else /* dynamically load libtiff, if available */ libtiff_init(); if (!G.have_libtiff && (G.f & G_DEBUG)) { @@ -551,7 +545,6 @@ int main(int argc, char **argv) printf("Try setting the BF_TIFF_LIB environment variable if you want this support.\n"); printf("Example: setenv BF_TIFF_LIB /usr/lib/libtiff.so\n"); } -#endif /* OK we are ready for it */ From 4b8c64246ef87bd2b1edcf7d6377c3daefecca15 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 2 Nov 2009 11:36:45 +0000 Subject: [PATCH 310/412] * Added a new 'bone constraint' property editor icon and panel titles to distinguish bone constraints from object constraints It was a bit too confusing and people were easily getting them mixed up. --- release/datafiles/blenderbuttons | Bin 194590 -> 195097 bytes .../ui/properties_object_constraint.py | 4 +- .../editors/datafiles/blenderbuttons.c | 12182 ++++++++-------- source/blender/editors/include/UI_icons.h | 2 +- .../editors/space_buttons/buttons_header.c | 2 +- 5 files changed, 6103 insertions(+), 6087 deletions(-) diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons index 8d47bde6e6e571a1eab8be9b9d32fdedf069d4c0..258e134675a0c7d271c6d24969f420e2c37f5133 100644 GIT binary patch delta 180554 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 z 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

=i1l`2N?vbS-8!3yTxlx9nF_oRLi^e! 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

O42y4;e@KG1CFa`Uc z&r!{4`}cqPB>DY)OBBYBc$3;e{RJ_Kkm?@KNrUjSXU{GGI?%gnTkN|F4F1QCjz>c& z_!KWv@7n86kByC$hJ~=4oSOoaQVH|6`XQoZfn;syi@gDq9s+87PIiM4mWfHKgrOrS zp9{=*MzQX&iHP%UCuEBBt`KR8SRHU5F$y_z0cOu!kDBzLxQXlkE0>dRYb-vqG)N^c zRGwL#Sf*piR$bv)s)!>Y0vN&4KK;tdO4yuGQ(}&NzWNil3F?d}bO~-_e(ZhNoO)Aa zzfjCs;s$Jnk18LkEcJF4zA3yNK^wL^`kq)iy>!Ld3veo~6ktsgo@i zC7Po2>NRmiGVyQ~V`>mF+}uueFx^qs3N2hm>P%uRz z*d~fV=>Nx3CT!)|+dFT*F^JFZF}n$H?<%1lD_NJo#GoC)k65aW$GmLo&ikC6>Z z$^5Ucpgi{CZzB~XR&t;ZfB`w2s8M$j^31ljv8;o(gCf(>TS7LIIGx$Ll3y|+IpdE0w`ot;!~t6bA{EuQ1OoS&2$NovPTPqFzV-r(z4$3WgpKU0G|&%C#u zGmhSL--kj=PFm&4a2Vo;bpmUVn?yN!uou6*_-Z5?=Y&&y<2QGedNm@asYwzF@&E0n zLPQA6sPppKBuIs2|IdW z|DuYTA?Oo&t%iy1R{S0#F~&BEZ$#m;H{e>Lyki!03Kk($fRk2ESJ}jw!>*nVkeA-vNJAgG1Krf+hl=1PztgAWaOe-O6d-Om*Z zDCI1jS9{=0x4F5oxjlC*k)!+)7I(V)Vg8egnJs&bX;2RDx8?n#m%h| zq>-1mU(*u(YIMAzw?dC!LKy@CJ2<0@;_Z>H_+x;H$Y~_ zAwlaH*K2 z-mXiIGT9QQpGt7b#4tvt&M)vnjcSJ#5QW_NN!<~+r~j+bkPUM zw*;%2U^sa6WOosM{nwBqeb0N8Wzqhh| z;H`0(zkA-1AM@qam;tuM*V_Kn@aD^tz3~Vieyl=KY?)PVE`}XwB#E%`sFp^Ch4}{t zVi-PqW@>LA1>;#z)3zbNz(D@55lgM2s@e@!kS2C^XWxYiwO)1nO1OQEgQ_mT)jdP_ z(qcRhjpj5 zqV@NX5UzT?S2^;9vP??5@Ak=gBwVw7k`fZ&d}$3MQl4@qKrxXCZrnCS(i718pP_8gj|lq6HEb2xXhj7rmq#zg*2aE!A%Rk80f#X0uTiaxK{)^Z{d)@+TvJJD zDIb_^8J5Cdx&guB$gz}+0nBQD9wO8xMXo38xW(FbN4;#B+*l^Dtq@*Nu&ShoL7i$8 z<%b%A@;?Q-oQ^~$og+t~(ui9kLkD^{Cs3upL{!<1;em6m$L<1d3G!J37H<+h&`=P) z81Y9(3!>M2cK0_M%TM)@c>C1&9gGEwHslQj)n(ca z4j)0x{?$TH8 z?pvgEbko&UKCG;)yvHy{Fm>}!Wj8B~=CQ5DN>Sj*DDe^g>Ja6aX*M-}kgl&~PRNN& zz=Oeii+IpxT7t-?U2#N7UcUAMrrX^E6F`lkk=1?J(QKM00?vR>>q3tYRP_vrHm=>Si}ol9`W)Ip~-+PwI;A>jw}A9TOGpn?H| z`+$Z%YAuQjigCcF;FXXD2o7bUIjw73hQwjmy(MhxGY#YC3}N06WCEy}$!x?j(194? zGAR*tsq@(a;LiZ1hX;fKHOd@DG8gX>>KoK>y!3=UifH|sPxJL5SttYHahd-j32 zRT_j z#{YQxBBdM_<4cPOWK!gcEKJHVqp3u`We#h8mQK3SSnPblC8Rj_P)IkJlrXwTkpBl& zavQQ7Oyrm3Itic<`B%zeQWS*2=!2QkP#e7u0m-xfkFNiK$MWst$Ki{zi4Za)*~u(h zDSOM_D>K>Ios`H*W|0{e$<9h-hODgYEqm{k@&CB*`}g`k&+qj-UVQ5-%5`1mc^seP zJ@FW~8{R0w@g-S^_6kU3iXqv<7gE@EVGJ@*@K#q-V6e2ZDxedb*;&nt)kUcO=*cO2 z;^p(v>`(+5j?SL4KnpJR7wWlF0#5 z)}A}waSCYNN*8n)X#0sJQYXs^J2TJ#;Cj zZyol=ol_a|nIcADrQ5g<-&iW^-Cr5(iZr7F|J*q*dN&*VQhy78bpiv*kIgUNe$gfefywIxIv3&( z0ZQ0|xSL#6cB2RE5m|+A(qjvt`NRcDhWo{iM$j%0CKx{zTwA@j&q{#EIpimN1-?u% z4)X&1uD`G0?-_&e5U9;i(~^=CCD=E*K^n4u4#@|1!5&A&XZhx?m>4bSg`#u~3{u&u zakw5Zlb&t^e|i9AbQExXWf;`HI0cdLiH1(?3%@+*oD5cDE44vz-$A?5Doh0bwzEKm zOwNCx_eG8E8B`?A1C(46&|~umP|J4EbMb@H=_jo8#g?t4kbiIukcf&~URoS+fP;|W zUIxS@2$HHbIbMV01!Q~?5k%zpSSYofZT!SsKL4%-{}wY6ikM430s?gFuu^4FZFMru z!HDiJtYDI6CFNPRJraDODT2U23julKT3RobkVj0+SG1YlU_DJ8G2dI+AX1(q8!vCZ;%^-%nqUCx)#aR#TDM;X~RLgMr8?NXe0I67H+W)N912KNIurc)kaC(y-< z%NG&)x>bYjv0f?_&%|!iqNbMWaI&YoJ|rhcK&h4Q(cJrTnB^ZMC_^q~=;=NC3TO#2 z9-eLE!p>`eil-rZBSfYpZ9kUEa=x}LJ2@%XM^fl7RHn}V0L_ss>bAnkLBli`yIlda z5uT9T*OK~0Bb~+)6GBKWu!!fM2~_Y zDt^f|1YXdtH&<_NLN3*9mcS&wo1y)cFsMVQ6!Y&?$#ZeEKxwSct}vq|SPX-80B1wh zo*mn>qIBB39VVgr4i31Oz`U*~=-&_(^*Mz$vP8Glp{sE6wj-W;d0nP)a%9AN1y*Qk zaF-Ckb^K>>?^p$XI+5>?ebIDbr>6<072dwfI134|w_V>t>#WhYi}q9)&+8$6A{?IB zbrp8;hqxgh#Jsk*0Kj#Hc)YtwU zbo-tG1puF=(sALceF3)O|R7+70C4!FgeI z^(pEXZx^96z3d}a?Xt(eP%%`*4S%N>O$o@RAtoKq{dDXB?t|wte7KCN9X$f-EJAmA z%c6fs1?nq{3{8r~l{bFZ4~r7xo(}z~O%qH^GhfF;K75^h%2~)mx4ljy9aq~nuFV+H zijR-C)%ap37~V@ZV>2a%Z1+k2^-@8$hjEchJ~B=bBsn#-ob1unJDa{ z;MlkX)E+EC;s)`R9HfYm==<2%SsF63zYZX_|4W zg~A6JnuzB4*X=4vLOoaRx6~ea&yY&hQ1hBUx>T$i4iYaJ%ppA~4U7`7+m zB2$$_s=8z7fF7_4`_H(L&23mV6Vhg0Cb z$MmBkuz+PjiyaxzK^ef))5x)lKXyWrCt$082TkYQ5dC2WQ%fH%qeWW?_S^?07KpMd zk=mT+-k6%|u0+7*{6W~23vQLyzsX47!p<5-oB`>IUzSyb6lU zHK;KDTLMp}?MG@H-)hZ@6d3*BSOK^wNRa#- zLh+SD)z|`ab2&i^2S(RRsHM55N~3-qOfvRq91^MLDgp#dSR<;e=WR*f)e)DQ??Y|Q z2y8UFv$bwQ4W*l#oA0D*)xyt5fy|sGWHB!MGto0lsm!XWe2lD+lUR^;Cr<_@)p3ju z2JcO!E+{m5Uh~U-hntM38<3O;r=N_6L4W!}BV_=46aBTMgF z>UiGJrFzFF{<>cm39`ukFfE(#EDn96`DAdO11@5a5TnwHZ=_bjRUhF?ar@;(CA*6Y zpAt(*lxRG~CiWVhz{(VlH}!MUrobE4J5GQH zZ0#XKg$BIi81nM+kJ-`94Sw>fs;SiwN$R^lj97nwSMMtkd)ESxo?Bxx#~|H@p*Q^D{5s;xIHBqX61f{msiCHJGCRDf_hnbZh` z?hP5_gR^5G{|@+cHXsWN!9?$>7fTb?mkuH2NJ^lPRO#)tct3CO`GVZ8!?mG&dkg-;EN*Ew`)|q zj<{@=_HQxHLdw_gCCIKftAB|lf=EDJ8De<5SYuR*|* zxQZtC8cy)soVvjNpBY4}!ey`ubrv|Vm%)(DBrbkhRtZ0c6yO-Q0u9UVKVDi}%LfNK znTSroTRRm@ffR)PiW)w#=#_1k5@%R5Aq3NqLpjFm!v;1H^-nAw%Zrg0wXBpPcJy>B z{w1J>*>s}M|8Q|BBtg;&zQWRc?TY@_ii-1f&^X}#FpdO#&jQXp25jhBN>Tb2V3tLI zdhQ3sLIeyS@-zZAJn3?=D@2_js!!Nk8AMX!5)3aH=VM*g1>oMtV~J@s;)olG^YF8J^5pi@?zH+Opd|TG^OPGdff~o}NJtMm z?@fjqReL%Y!b1_Cvu*zQlk4KLKY$r=R9j#D4%+QDWC2#bFs_NxF)Ic%qIrit1OB7LD9s<3mT zQCHx4LS2F5kOf>^um}0EqgE=0J)-3Pl!K`{RrV(tE?(ZK=9ZSep&?yrIyz;H)lz{};A=mEVa{S^ z=g5Adsb+L|__iG+fV_Ypvt20QxKPON!hs#0)(D z_P<;4;Mx%x?(AIiEcWX4_xG>5h@-m9^V)CfzgY>?dBlyTTU_DK*)dKY;0o*OO8%vL z)ICu--}&g6&|i`<@Ss3o@*zTj|60m8;KA+8Ol@utAQ(f>eq)$AODckh(}YB-`Pzzk zS_5DzN;d;nL8)nI3BI05QywZ%UKLtCd7_*i+pP15pPk)Sf^il?KloYI6=NvTjl+B{|Zl6v78fcEc=Ku@ss3_e)LUy;Vt_*; z^-`K+)A8*84wzsXK}R@H8!K&4p3oeHab_1^L;X+N@tL zPo#PfQiHz!-vJx*h{H_r12KwtL>LE`QtyRv+8-iAGty}K+MiF`s>`et{8^c?t*M%9 z<-Ev`20+aNdLBmIS4~L6wj*ojB&8S^CQd=xF|H6c7v|<{z93eI?+2mvv}0?hZ3Ds^ zvEoA)-!Z=xsp$fC*m|k-O&qB=Z^W^8S&&mgeM2&xGg)E z$0*ouW3>!n)gHG^D#XZ&*zAV4{1)Y~M*r5mMDCbj znp*~2TiKf@CeHMF+_FV}Bp#JgiHtH9S+95$MXWPLv1I{6_E(Tv`3Ld7sU4NI(>I5Q z(VD%Ph~X<&r&0wBr_uX3gZTFIJik#62Rz2NtD=?`efQ7<__QhpHgDPuB%OqkcnKRz zDRD1PevO}FkRzc3dfg3*$h)RhBO9JYu~50MGv%0lDU{2z$l7bgvwrDpt@%_L%8 zd`KSIvhr9!nIkS`X3O(56#ZHb-AfztXuDTwoD$sC>|k{vS6+ZWf=<00b6daA>^SVy zE|18tFxSw?NDor{*T1Fv;1rt-v(>BDv|Bg|K`za$g=xXyokb!=u~>!mQpF z_NiXt{dIAY8z?h<-dGU{ABhs+IGiXlJ*Gkmy`|ZXhl@z|ICqXaltG5j{$r9{fpGwe*YPILnX zaA1jnp06DJ{49t}H%&@T7L-bNx`j%(r4N_wWKRz-SdyM%-N=lUVkVud`u1%$q-ll@ z^(a;Y0dPoNnH|j(C1?Bg89bkHkO@wXABW{d0bepn4ZXmeq#@e`y@4QPvcCuxY%+JQ z5&jPJoHKx1u=mHp26c-fYjk9!8D>Q9!%eg0#l;W00Tyi_YfuCvHTL%VcK*=J+x9TK zs+c7T$0)J1gIVeq3`*@N#0e^O+vlzWlhIlV0&@KiR=>f+eHWVi*n2KMnwzZxa&zrn z^!2G>v;esmT0>!4_g{=v|3~74HS!_9lc3XkV7ZKr(yluFfF3CG(KRSK=Sx@n*4xx1 z?Fv86V+93#KRDzlD=2(I8x5Wx+Zy?cjxScQy2Z;5A#qK~gaXHy<9i7i)7ys%S9h(? zCzqP3<2W;qTqBGktvmw@6GVTLkdZxPy|QL0#$Vp6_`M!MUIX#^7TXtMu8+WsC~)J( z{nj~`;By^)GC`Mz=o=m2I!DXH?Jb>jCHyybOO&puM6Gq$UdN zXt-MC(XkDMdz%c;B)hs!eYd~+8Ao7qi}|rKzSv3kslO5+E|O3}1P@(~CFaQ~kXy%q z%28jxE)TD$^u@@;V@;uEk)pi8?=w^5rIPI`~`tR2-7DcL(8#aZQrc5ycP$JzdA8#UJZ z_gEm%J4E9+`}-ZSP_LV{{~pkmIbdn*7hv5J#X6}bv?-(uo*ubMXgi|G#Ax|Kdd3g@ zA!78z09HZS!A}sKULFL#y9Cr>b9X>E#mJah4rQCbb(#Sx+W-uU4kW`ID6^1F4i8_q zXb!&$#8Pc&L`0_%)Kie)zvijy zn4@hUflc-zw(VY1bMpxB7jGEo=q_won@7HHnr803-NKQ6<}XfF8Y$lw^62h5er4_* z5+5urI_W8wZ!=X<9M|uUHr^bc;8V`>v;3lBS(MA};d*diMh2ThXD3)@5whT<*l~*0 zcFq^RAn3@*NJZ#EfsVMhfV$NKK^srfThq{DYH;nUOAl=z7tVWrO6&=yYPsBCljWVs zZ1V@4m74?W;y#?iK7UYekt^0TSIfh5tQTxn2JR0b-$NeI z^}PlDgc`JF6*@(_PHVs%How^Eyw@bS2UM|SeAzQo)3kp;Es?P(eNb}*4vRELGZdDK z6R4>F08O5_jA^kK?vS__`@_}|0Hu+Fi``shj|lTV;eCCcR+Jn9SG~h{hAeUJO94C- z-e`C3BZXZi>EB1i=7ai!Gqz0&>IzlyXtU|E@&2*Buo}M+5-IL;dBV?YGjqX7CI1+w zugZPHB8&9j+2-X4JK|BJ)~!E&3;~Alek1S(^k=}Sbg0Us&=a2HvP_L7Wtdo{=dM$r zAoTG1GU$C2!4_jB2;dey3Yf<bM;=yW zCKY>eLIna;c*fovS3U1EPFF*208a}2z)XGG-%df`TG!GNOe^_f%oZrTnFfpHl@&$c z9Hv({HfkqZTWz)V^a&epu(RXASOx3(EeMu}tl_uS)nZf;%{qI3w_PGPCOmf2A2CH? zA0B&(y&z5Gh?2`pp{K72?6|#U%0?avC(hYm5%_MX>w!AX3*WXO_d%o2 z35nEwH;EgW6Z!AqsW-yGCGo;HB}4@W-z^*W3TEI;exOdHe|X6%$yW+Dt?WJbKmQTQs!0|1DbM>n4?M;bxW-F3pBBXS zX7M0Bjt@!yq!7Gi{a34`_3zb;Xr0=DgE9qUW`r)+Tjs!0Pfk}f$;4QRwd1X-w!)5U z;neUzg%EKM)7i?}8|FXRHA$JE7*uh3<|02Nie6dDlEMq=ptqe%rgKoT<3L= z12EOK^ujKdJpfTBxxsvh7u)Op#1?cf3<<)nS$nLhz8Z%#ASG%9xC?qWCUnbTT)B`$ z=Bs4?`@yBm%9@=9G#?g<1VsY&Nw|K7V7?mxy(W#0j*c{v-g-P6qx$sF_l4rX;~x(~ zj59yi^RniDYX4~em5Wa|wznOnA6NQLf**_N!;NWDxk_mz3aU*P4fUR&Z_*}#u%yF5 z#U1)nSaAa1xpc~;JHt2$k_gb_!V^;12c!qQGn3-MCDC-13mjW8r9*^`f8#VX64xW9 zJX4_kg4lf&XdE>;%6`?s5{dg7DVVh9q2dZP1@HpAF~=uIu8(A8A=IR8O zZy-q_*-HKl|9zYsGkE=9yN?@Z+m`7=p3|I5ySOCibS}0UMa74PhP060Z1RyS$m`z= z&W-UZSwJ+>`|TJ>LlC&`CJ$$~Bo(q{IFg{3um*kyJh(qA@85XoXSt0= z35WStrLUXh$yAr=ihmCda4D13`st@UAkX(G{i0qa0n!TCRN%ck&5MMIU#YkIav3=} zT}SW9`JN_VX7?PxMZx}M7z$Frp?y{A3DIXu1DgUu4u4jR zLsEa%fUuZL^N}`=tk-sk^-VQB3JofL7lRuq2`KttaGnVRS+aH^)4w%%&9Gw9ZU;LD1UH5Faj9|YQ3KolP?HRpA9Ow z+0b(G^7XKeYe2?8aNJHX!uJd|x`+WUAEytlJRxlS_4Mh}SyU#l zSJO~kaT!*a%W#RB87u5DU7I}|ee^{k)IWhPkBx*$S~9HRmM6K-2L3AMO6}Dj(Jpw* z+5>OG!vavuvkpYs>8_{R)TfGg68M1T6) zum%hk;Q!sw_Lc?ZL&lFk>;pYL0t-SctZ5QZs=m_}X8Hpp&F()HGJ0-^i_<}jPGJ~s zKVPoOrQ_$h8QQs8>0K!;17EIBWy0@yi;KJ1l8rtQw70i^g!GM%+`2_m&Y&^Yga~1T zPX}(j%IV73Xox<6}N zz>+F*NvXZ0OQ8I=cjPs2>%MHCtGWA7BY}`%kGA1x@9h9qTIYjr>+@EiY*jgfvSTc; z>`pleoe#z;@WS>6R_%VJl7rLx{wQB{GM?ShP0O;;C`8t7a)ZJl>hgd?pt?g6bC^md zwwRKd7e*Ey&oZ^H-B(=3+kp3M!J;OAQIQ7Pp;l(nR(Yv6O~k%WYL-^KauG$Z-N&-` z3w@vDg(~G75n4G^zO&%z#+bMJ(!ZQ;;=3i?3_%y?mIc6QefspN$h7`t2fUe`XI35` zBP)fJKU-StwlGXKRq%1gY;Ppe>c@PlRjLAH3Mrt)Dze2X0{zs6$XKOwG>+ z!Fm0nNCyNWV9>g6rLT|Z%PQC=dY9;tCHmX&r&`_Yx^7={D+7N%?YF4tswXN{*99J1VqP;J)0L9!E?sy>0`f(HLG<`488 z1Bp~(`bg_vt*trtp0vfj0lNP)7A6Kv=wK$V7yvtM1BB9L&F>shNH^o(lxhmY4MSu? zJDN;+4CR!S^I@`^6uY>y6re?!nRE##PmeM*n1%~BWPgz| zyW{h6pYtan_Yr2hk6r{^S+og)3;n*U`d#sUzagRjE;kaik1XN$6 z55DsatbkdsFWQXrRCpdiFLqNsJ*L}qw|TH{ljAqF!pTkH z8a@^T42H-=P)~ypHVRDYWEUd-q%4D00T#)wKW^J+L$k8-&G$OA5~F9r7$PmL=jqEE*R^WogJ?bOKr$ z*i`eb)|f62aYW)rk&3pwkx*<9+~6Ldb83J*T4Q@FOG{ITCEP+a>)I9I1Jz$iMo&Lc z47Y>oAV@tomY3T==0u9X{fR{j3=R-t;SO*Ti~&;O23q52D17H(UteD#Oo>ZYu!LH| zY4*8@?_tpo1+)tp?&aSi$tqOT)NP_pQ~oQE2$ca=+T_srQ^{ZBFKzx*nx}fSCs?n4 zNBiAzto$0G;?B`UHcHN?S5Qx9=LE%Y4EHwB14L-xtXssRE@hivaE9#Kb%n@vlRUj|uVdzbms7twRz7kN;y( z>eoj_Mb(24==*EF?@nxrI~kD@y^j@a;oe~L|CyF{;{s;_;5E}nHh=INDroEIq!aL3 zN?6110HbPxA}pWv(s^lh3x(l{^qXkBdb#n;)PUsdp1yQqm8s($f%81-O0go2ZEQ{H zvxSM-k!)idov5C20-^yhMA$-4a~uqW)Tq?Z@F@p-d!NwuxqWuVe3Kplxa3HH6`=*d z=>7a`Ut1f85=R_IeqLTfs5@SFBd{Z$#ii>_eF~!uC7pkyRQk91rKKEz4Sf@^3C;)9R}KbAx+4S=`-lYJ26yiJ zisTh5(NrVV1ZYZ@J_AYQ!AEaAlk4dbXRJ$wHTjFnc2Xq*_k1ccX}~Q0d)xO|-cNRX z-GOEamhr`?OI0>8Um$1cVFdr~0<}YDFIT-KtRAmxJhxt6_)V-5a_G()h>e^4b(@PcP96ouwdZy3WpQHMVf+ zC<*6K!0g%b1zu@QcsZ^TcHJ;h?>+Kbv#A&fC3Nl3@=8Q4iwFs20+tvD-s$WFi-NPa zD}5mDl!et{6V5cRUcG$z(gU=gzTna}&C&dxQOZqghoWom1)v@OcYAvVC^?ZVxSreq zx!47zfF?&AcCF3<1na8+p1ZMq8I=aBp0+%?mmD>Iu1J~s>Qy5VU`yl|AF{G7|8Akd zGB9@j&QT0igBfrmsB1xzGjW}&`$vw)PC9?`r7DjXqrRAn+;Iwz0oy^JOc7F`({gk1 z2$To@CZw2++bJM>wMvWkKWejE6_k62a`kfY=n(_vUbYuUL)l5I`cX5k+O_~9f2_U& zB7BkL-uc$>RNl2D73XvqS>W8!oY1u3H(FWPs!2L%{=IqfONZS2*=!rFGRhq;_tZq1 z%45-ey8FR!;o`^w0#)mK#CHe}wI0OWgxKBbNal;LyFa{bS6qbtw)d<`!k~C@_kd7K zzR;*j1|$yh7`xUH1olM}gG&rK72=r~?#fKcJ;aZ=~MvA;G5{%wtYI_M=pwNJeU=D>L6e ze#-BtM}F85d1FMBiXy*EZRZMeP?I}{Vm9|G#`fP-J9|}}k_GB=&0n7- z41em4;ZwgLl9ynbC)z$ZKnf|SsgE_#8f%%cDeU?>AtWxlEwYiZ_75Kxu29W;3n%*E z3)Jo$91s%{5fQ29XtuMXeTKfsb8T>*zo~EQ?9A_?_l~cfeo%fHK}CzBHGcusXoJ%H&tx#W+CN)EfPD9!w$`x}UwxIY^SX@oG_ z50_oq>a&lX+g%^HP}XgFL73mvcoH%yaZvW3b%7~vXxP4&kar2gBkFfD?v*c?%~Wg= ztyDDmK8l^Aa;%g71SYrvs{TTw#aA+{_zKY2|8U%njk%vyeCv15 z?7m)*?ZG!tFBOiESDwG00!z-ZiL?8E)Bf9~x3?HJ1kWFFO8tLkKInB4d(HS?F!UF1 zbIIG01NG4&hu>ee=eM!e4bvBPhYXG-7Uakb1GT{C(HStn@1T75%5mBz zj3xFvHpmS8{@5oF`b%RgKD8dLlC4m2XN{ogJTjk=Dy$m3b6fpee@9mMbT}V+vcDHw z!0Nx^gQGgacwMfo@9s+<#u)}@P^brchCF^}iO_1}gjzgnqMh{WYo3;o<6uL7HW;T* z_Sr>v?K4Q<`v;vK@6$nKlgBs+YOlfox1NjY{;HL`3?$ELRmXq|vooHY8f)-G{x21I z4lf=2%^Y!?jY4}N2ay*d_cdC5qC^;(>XY2*=;&&vca8>7bv)+>;{6=1MyNU)bMohL zCp+ITi{+U~1Lx-!9J@k@#|`7N2262JkmnuNNjP`-r>+e}SGn{M^02&GJG9;LnXLLj zS-0B0ivIP#mw-nXb>sae34H<~swfI&Axk7JuP?nk~g?!La&NsV45-XoC&S;n@L_QN}iL#sI1k+il{ zBqaWafwS|9+76%pE{|`PR2#bAd7^I<@k;){azA`i0IXG^g#1sQMcv($k*6MtNe%x!pUPOUuJ z;;YOX1{WV@5?!*TOQreOjvwn3G#^C?9W<(zbo{^9hp}-*wQj)>nmcu8Xxd{3dW7auLC%q|XYNW`CDNAQq`ozw=@D>oI6a zoup4*OuqQYU#xxqS&SlU%ctnSJO1pCzqYu*AC$*ktIAfPm6T(Q!*|!G`=Yf+9{JCE z)%vG)>F8K;u?un0HF@Tb3tb6Z$4ik5#R_ytERJJV^~tm4JSBRQlae?e|NKgQ=qrF? zYRI&O@H{+c)vDBU3yqd9acd%>Kh4!pm3B9oVl-|3srx)T_1?prD-aBNpBa}-m)xjU zFf){HH0Ec`FjZmU;e0rAX{^$>SMGY_$}}_iGl?4fiV@yW1$PZ&)%CLV;`2+oy1EE_ zoEgRHKlG zqlyYj%+RvQBgDQ0XK&O8lz*ewUP4s%L%VVc_F;W0WkT;g8jeaxYEeU>|FoD>z3TCQ zWxa88dL1Lk>6`HDxG{pxxUjI6xPl)+LikOEp$0p#`cEf|0)Hsz!9$0~FG2q58l6iS zBkE9a^#dd2&Z;Nv%h*HQrzZPER6(EG-=NhzEAKN+NqtO>O5K`?_S2(b`q}+ry!mqB zofgfKkuuIyVpP@hxt*5qf~RFKEMj&3QtUlYW^r5FVn5#72wt?j_M(=Q0IhF5aA>X3 zLhYV3#^HYaT$lBFq~e>%Y((%Lcc&?Iq-AAzxRUzpEpIqY|Ezg_@r9bUstobj+5L7P zfKG$|@=%#BsO>%ar~1B$_0|HN>hE3wZR&8j)&V9#gRrM)dTx9JDx&ZD=p}UpWaVgS ziV-CgXfc-f{%}`sx?0M$Kd0q>3upaRPv;FwiYMVgIyi65f;o`?E!^+xk7_ZPN=vu9 z0%Mhi+P$3Ib{f(g<1e9Dcs`?RQ!uztaLV1W|<4Y+5>7Ou{A+ zTcK@zzxHHe@CF}h6uWIa?iksp%3e>Hq@&Pbqbjl7V#0`2l#^3>@xnKVH?@6X1+Br@ zuby&OB-sk_{j*a-Ny~lRI9|o9y}p5|p#hfy9ZTwO_NJ9QwcvqaBDHhQd8)?OQgr+~ zjxk@~{QTMMrw(}%P~}C<5i^vc{q5+G;+{^06zSEiDZ^0t!sU=nWa+@mxB`^m3*Q}XhO+W1v{RUT*a>e(`a*{Delm5&vt^NbXuNf!^+ z+w%x(Qlg@3OIwb~ykX-OO<84C9J|@V@M!pd=8@V*dd9PpZ}h|~eZGtS-H&1Wvt5X9 z&xzH*G*dsfSp=tu^p*1ZAF`_6;SECx;aIu zMl9~+ZA%GB^tIIe{oZF`D^4}AHw++B91)bI~Aqo-T*|7OJoQg-#TPtz#$no~LL$zT(k%-=Au zz5l$1zH{_BnE>(f+g#P&dMYB_uS=dOA=Jm})OMzK6#u*TBKNF__Mal=Y_zLuH{$ge zIiw@SW&*jcy>8v*c&VkI76K**jpOOYkgeb=Xa`|mp<+3#^>f(*V}$R|Q)MaTg||u7 zv3);^Gj0dBYY`mM-d3&aC-9_w<=@gHY_L`N{_XlzjhBjZwsr#4m$9(Y0Vakx1DxaC zrAsE0)GD;xJ?afSZyOLXPf^lM0cWAw1=;?Xm0_9-!! zu%ELvtw;1h2LFQ`UPc|XY(bmuG zEcf?E{2MCU&R{cQVx$!eZs#9j_dF>olC`~8m}GP7Zema@+CqTZ6_n+dr#jPJ>^v2{ z4J9Seb}Q?Ow1_^BdebyMRRftA@AW@b@X|>3@o|JZU!KXXUjLVI zAFl@Sj_dtvkLTW_E}O^p{1x>vD%@c34t0I^$N9X}lrt`q<(VDZ$%)iehU25fRc(jS zwxlG((k;BLFD4$V0!b3i->zMVX^mJHaUwnkVD)CN15u;o950Y9xS0y<%aJdRfFhdse{mh)YNT0 zBCCC-uK!Ha4ci+*jr5ooKRyB<@g4*iYUYY4MVYn&x&QyNifP3zf*eZ8Fq-wHHq!^(OVb@6+G`E#f1cnEk_Sfw|xP zwAT=NqC$hp!POJW)eJTso+4XQQ`5&6aY;69NvGJF`?lUq!&MW~m0^w>9?90PKSus& z$f)0dA?hpnGk2G3aWsbIE`*=8C%oy!DUP~E$-a(ev@o4V&yTtrXM89*Xu=F$SDan# zH{li2CoFZg=kJ;5-5Wbi4D#%M8mHe{(Tb3{4(6;*uD*z?qhOCaO&qs~toD*i`XU%N zXkw=s$>7J+#BeSXvjryvjaH#b6Q%O<4S+-y{}NfOoz*Ou6vU+p=46vc50^m z5wp?!>b?Avh1_%B2HsnwZ`sw?S0&H=gmug*B~{_8@Hq$TL^Z4@pT++tj}NH_w#0fG z(hLRzeq5TMqcE8Y{Ik$*L^O%t6m3R(B~Qa-?8~miMw&%g^T9XT0-qiMGK)}EAFrzV zs_uhart1R3ymX~Ygduo?Q)+UH`B}rqXr1T2%WjMubbBlu3L!cSc*n5?6LImDUv$A)5qJ8$Cuc%f<_@wSLlk*rOCUf4p8uQ8Z3QUK!Joo$o5N983f1{4|M>yDR14S*oOlQ!=T7YfOq! z8GUhFY{7LRn%I%gB7c3X|kl=^!SugRN4Xk~b1U}}BdOlvB&qrK*{w<7t0Z1Hcvm9tE+qt<^nTp}0Mn@vPGK2lJG*`?!pTD{XsL{_QmNJW7VoI>xOanb^fCZ*0YQWzPQ-xheBh+5hc7Bn>91ZD9PN zEc4?-3#A?8_UYtbq8droA$Fx*3(B61Unk<&3x8 zFXOh{+o{?6wV>cR1M$Vz+HX`2WoCB#eIoJG$Zw@RFIjbudhgYbAd6r<0&QVK;mQ@4 zl}H?ZUS4Nv1vwjStKNzu`8y4r;w`|yBpPxTLj0@s*3S^KBXH7ti6fwJdZ~!K=dOet z+`KR-RAiBqJU4@^Bt?as)-hMm%pdM$r@B3?GB&CINfLhIBBqimCPZB)%Bzc=(@%U; zM%nFYZxOf0M1hlBpqSg!DOm{`(LSs8Wv`DIrQGZ;O`lz?2Hd*$HYQ3r-mVVpc@QUJ zzWw9qYIG+}=pFF%p!eXOnO&~_y4^q-B6hGkF=xR^>EC_} z4DwShc%|NC-UmzP1x(?FAu+0yS2l-pDFw^FJWfq5noS}ps5={qlJry=U~;OwYj6jmKce?M>^yB9R^BSxjr33W#OU5z8talUx=B~Qu-Sy1(dV;_WyR`I zd$`Xfe03|;cTi|iNzTVrWfAwVG2o;Rt~33_lgOroW%0h|y9u5UEoPfqI2A7~ov6Du zuMEq?Dxs^8s7i9x`e#8N-EymTu_r1c)xUWD+2oXLcxturm$c+h`QLrxb7c9az@kEp zKMh-{BiHx1vb|{K@b=+9sa|31E?;rMY{8c!bJiTm_*&D2X<6>&lqj z-Q7<;LBXj4LDSQqxJRKtal#2pz?YPd9}Vm@GNR|@mPJR;FI8$QvrQfoTzS8DLochTL~R^*jPJ;@sL~ zMdtEwA8Ru5JGqv}{ivh!#m*BEB+XAieKC*Y?(dEat0AsLeXpo|S8U zf6vH(!vSjs#gLflT!2(0E+_Bt6&h=;PHD`95B6l&W2Qu$do%3^R3;)^G;T7rk8Z&H zxVt=3hUD&oYw<7ecGnF&)()Ny7pqqM%#3Y|)esUDZi+a}>*~1>5P^7h>phoV?_s3m z8E(;R>gNy*n^Kk!_{QP3!upB~Ku(|)K7mHaVLI#;$@Z~n8)yI8q54X5bp&h1yF%Uv zEb})xK%V1nAEnG9In^;{%6Nu~`Y?n=VqpU9}b4 z8qY@^2hYe&Q&aQ*b|wnFq)h!V^!&W1eQk`Ii1^-eT;F4cbxvM$8p`JxDL#D?=6*HP zTaBBZ8(jIgj6Id_LcHEl(i^}}jPNqJ@Dhh?ssGY+DZDl0I?}6nFFbzMDC6Gr151f7 zhyAZ}b7|a+u(c}vrVkqV2C2hh> ziV@B4;^TuLL2U{mq;T=@9ss=r0;`?dV>-FOFcDWfO}`u(7}$6Ju9E#qD!mRM-y?{$ z_`D1JAn~ohRq#>AXCfKDJyUGvW@^*jKMq)+?wik1S6Z#~yyM#tw7=H{K4PC&8YJCX zZM&PZe4nJgf|63}uS;d&WFcXr>1m4?a(@0rl6>aD`T~kJ|8|4Zi zizO#f_p&k%FS)S7B`J%YDbrhdZ`>ZD-lBR@W4HHduqM?THgs2g9FbHK~N%e z`dZe7^1H9N^*caJV-zjlC1B&H2C8r!-noUTXSfhs!$qKca*S$`qwpS-#!Sv;srh2T z>a?m=pZDTV5;;{GO;-AC*`;=t;&V_K`nd^EZ+&z<#wd7s3%hQWg}(tAMEWQJ7V&Au zp9WX^d{RNjo#CW+nHa!W(c=aMp~yTz(ePcdCX%|h1=ev0VjmNjH%D?&c3f{ z?d+v8`rkhP3A8I7j~A!{@9H2ro zKndneuqNPxX=5n}-P?*(jhgES-TwY$i$7Iyh9m&xQd~)`WZ5(Nq~CqNEJY6(&hey$ zw5StA^rxJX;#s+R<4UKl#_}!~G+rps#wQ|*j^D#P_*0?HwYqBx`KrySD%K747OkjO zZsF*tS(qrbkw~uaFYwI_(I+1o=x2~dLv-p4Dzll$B` z))T1(#CC&m*;w8?-A~#6$=p)qMj~jK%U)hG*Cvoi{yWR#tFvNVfkHRO=G)DrD_>&{ zsnu=vvN~vC&zGhpHEM=;@b$eyNUrw~+N+|*;=w)*r_=7%9^w0%-*VL{p0?K!jZ0W! zlVhq$jM&Lg!V1eXme?CHEL2GZgcqI{rW_RP>?jDYo|S%rdG%J0^$jb*OA|-QneA3G z=<{W#cQ+2jBbyZ>RHwgOIIEblaI`YR*LHX7P$1%zSl~erC~D&}I~D#Y`b9x+|AU+M z2bJ;4@T`OSkdXJ)tDAqLH$kMGs`X;!;{BYD+(+n}lL-Q|LS-K1J)|^E(=K*y-u=E_ zSt+}wJ2R7ui8-)kXe&0 z``xWP7gT+$P$a%*!-&Yle#6oI%(?-tcQ~frh2O>f?ntBB?9GvD27)=pVk?l`6w%}? z9zw;VUrgY-1~wG7GQ2-q&2(5d4;|hOWo5;wWq77o?%1uo6IINmZ{i*?`oTfnt0M~2 zE>v+Ax41428}9}U2-AE$8c*DTuXhapwFZu2jm2lTl`_LDeDx(SfO_EsA$JWWreoRe z05ywc`lFSh4uqw#VU$R>*he#1=)MexJ|UtiWEmxf#=hU2slDa+`p(U(Z|pud)|&mR zxEt7A-`HL%%%b92h_FcJW5SPR{6`3%sdEYvAe+Wb2b1mj~1L#Zme8)jI2TuFEiPF4Wt}=!(&=^HR zT_=BUa#cg`$`}kHUb0Cxm>LPIqBi|jlKLU4jt+zQ*Q}~pW~Vht(q?QXbe!~cTn_%x zVVFf#l)?T21fkvEF?lKl%hh6#$%&*z*-a)E?> zbgd&jIio`B8L0$gR6-$qP5947s7;|s?{$=5^}(ayX6BEuFHAy3d7t^sIPYBEP8A7K zQ&h_@-}s%OoGSGfLnV+_z!9h=9=rAK24Hzo5wcqkR@Km$eFgzC8zSh^ZVJXw5}*3c zT8iiO$&Q)Yd-!9A@2i^=V+iSyy852qef3*l4n>u0){P8uB2iDWu-b#5f0AmkQ%X0h z*@acU6OjhTS8!ety3~Il;U@@DIcnKhKK?}AzE0zreHAQBJBi>=-nGZITS$QR&@-A87fV?*oB#(XM5~14d6SzEgc& zIVw%7ABqd}z2TPQC&4xFjr?ITS5f2T;mwp_Jlhjs+!x&2pQ%HLvzoWIcior`wBzoY zP&tI@D`=cG2a_PXvU2kA&h(F29MkV)g9jZuqt~}iPrsFql972VtDQy1BZlj!jhA{7 z349$45byR=>ka@!z0{v2t6OM+1xXD>JM!pRs>`jw>6MX~F+Jv?63HIuUpAEmh zE6jLqB&VERMqQx%NzbOAd38%)irU4HQnTDR|FaT!LJ=n*qg?= z=Gyb?cAu~)oBjMVc8O?w$rWRX7f~Qu3j!P-QOYUs2>!4wyR!8}0vWJ#nUJTKz?+Ckw(?JC1!aG54Wvdf{yecM z9QiZdrxIAjs{6Z~L!3klIb$8e;&!BD*u*=-R93FqHt=3+j8{(A?r8M#-i_G>?19F| z<#W^xLwN`iigR{Bav4}Eq$&9xQb6V5;#!mO^ph7I$}BXXBq2t6HGHVMKRQ8)i7sX8 zbP`w&{SqK%ySjV?O-l%h*4vus&%KMsyTI))- z`Qh+a#r}Z=9d`^PvVGQUxSmu?t{?feb|2y#|ku2wdI!!{lO|GNO8h#$n9p749x z%mvgHx^ci|I$O-t6^e8m+iXt1d1z|nXCL2f7%?P7%e%Ob@qq1;i4|KHQ*tMzy@RT6 z_LMfm@N7Q_Uk>sMeEV&=b`@VZ^L>#Y6Di$)(fvsKcUp#Ghc6DUxTwOnU`3p)cTzjb zZbzIB(y$b<=VjD$eMv_VG2D8+2q$NrC-+6>#THJ+hl0i+mf1aJ%+1T;e*9wlCk;2Y zhuoq|OniRzxQB;{T`g{rHzpE1aT3%}%qE~R&tA_@ioBzqPEke#`3csaoRj-auaD46 z|5Kb`xeqXM<;9M*OIgbH~gMIf4yu%HrOViO3xjqFlZi4>HHo6~>y-6!^F^^vUnX60j zMpW9wRIIp-b)v_|WJcN)RF4PGYs5efoBQmIpYdhppX=_&6+53t~+jp?H_1ihH#J>BmI+jFhg&c<(gxM#14!#W>t zy_>m$%Z9bWwC~%oT|Xt^Rj-cQV55*@*|Tc8^4RfWiPe}z9duQjDPl-j8NDT6)*Ig3 z3F!W6I+~u?U|Wv2J)JHHCG8XsBA%`;Kg&Wf9*q^kB3n0>JSzIcJGBR|@^#7NsfD2s z5smDCkPutiqe0+vrdX)w8fQ@PJ?vX_rfWAoK;>#!pi0A0tKVn*Iba0mB9lI;-p8K3 zaT`^ZAs1_5C8Ur5^riM<-9BI#d56-c zr}xV&?F%$(C#ceI9WuTKr7j(^WE}c7`3f@}IZ$MBv60|#cQ*uTZ*xYlD}VPcC7My#Jo zN)p%5Xam9B{f=_?olwdqL8OjJ(dg-iVZw@BGD1kK29)H!tqXtJ6D-D3G~QygOQrT( zo$axNSTR1BH6^E#+RsMOz7>-`G*0zY@dQU`=K)b34g9nRn=zjf0X>VaXG1PfbL-Oc zL!%F)nT;cZaoBqOXEf@$b`QHN6C%(*6)ZK7bJm)5Tc);Kz-6Bdy7i?u@ z&g24hfCi;PES!-2W)M7A#?n-x!*)_XNDehUJ2|}W>1KyarJ8&$)nII(<7pGME?YUU zO79-17BMbqwOFHwL!!X8Q{Z{NLWvI(1O4`#;tPxj752;5czxM+gD-v~+_mX#3|mZ7 zI+&`zxEegdNvZY7ne9sLZ|QjBS-SSw(dF7-EHAQEh8HrPj_w*WxcXp@Mp&wUF}uyn zp2M5x0H;_Ap_M1@%3_>~Gg_D{f6ju1wc()+4j@rswOG7~CppRx5%rOjSqjDtkcVD} z?F-1Ladjc|5G<1oT1S!#Pig}SEFJHBOy&Bom3sM0oUe6 z=5c?M_D5E8wXHU~`-8lu=+4_9Nli9d@W2o?@YVI=Vj-tMbXH2}(>N-x;uV>yvg(xH+FE zW|(oB*~Xi_C>y6S$d~Qro>h27msCD0-PfC9%%b|$ zViXsoWX4rNpw2@x(&oq4$RDc11-han@(kBaL%QEmarRRKp3cX9 zv-)yEAMf44@e&qJN|p3hh9NCzZS9@zbhTq;*C8D{vvqU$;=lt1o?T?U+uGy{l5pZj zSx1|t@SIx82WQ*_5b`UD9N%}ck84 z(adk-nFtn(=0rZER0=pi$G*XL88%gF@Q?cZP&A|UrwSz%tZTJyexUj5cL0&zBIw?T zdLJ1!%5BiyF zMQ8IXb-XFfTq%=Z+RB(m)LT!OLYgnDX|3(#Vf>NNg} zG-8Q-q`BgPl7&vBZqXzN(P)z8XgaNjYK^A+-`UWn-Cq-peAVzrq!%&moOoqjy?fil zHLBi%g~Zb~k*EBk_69FFfVe}BjqaCNO}98^h(vdPzkiQ`n6z}T(hXi@n>zhlmr96Q z0T;1=JDEK#n%I;RR8~Y>Mu3CUw>*g5CETy`PrF6wv*q5bi@(VCuFvtXJ^W=w$g6ljn_??dU;|}stG%Dl)5)Orhg~d=#E*uyQ`Bim~P2=c1 z%suDJWD(c%*`lI|kB*h>4-||&c%iOq!3kJl2Nf+g6VIWxe`3`82vsqPXKGB+qz)oa zbCi{?B|rSUYiF_cheKQ&4hZ@w{KX?i>`;rddul;etNJ-WNh6U-FRv1jax^T}q#X+0 ztqd0Ksg)h?z320>NO@(dd>iP>Z83Z3XpEtoJFdY~f0yR;kX_8^*)GJWRq)u^kC4Tx zPIp>?M`Z{Fr{}Lx1zno3J-zk?KJq;eAf1$=a1KxXmEPK9urig3#AGA(<9Caep=p1& zVq%naMcZ2nIO{FOhl*s-PuhPLR_A|O^=yKwS97kaeAx9S^HQU1zWL=}i;XK@{7WBZ zUqII-C$D85MS|?&Xac@xCa^848*b$yq4oWr%(D`xDa5;}5&8C|@Vl|kPa90jGw5?0 zQ=JHYdSJpKwAgguteUAE92zy4o@M{ev$Cs*?uFb!Z|icE=y3j6sorBwE!=qjbDr29lj+!3)%{slWSYH& zR1JIMaXlNf&Dv$7t7}BvM|B0gpY{%hI*<=&UP!qzICW^@a#^YwdGcTiWL=x}IQ1v; zp~}oi^HPWxvCp!aUJ`mdZSW7;eq%jtF7K_T6RGr|{1CB2qS)7AgBH!A6vz^bUICw#ZZ)9iwl7)l~9 zGPRl0Wx>M1{|d*e(rT&R-QFs7N*LRTNI+f4|Zsz#B;Cd%z%XOc}16Q~}_-nhlZ~z$PL2n<7*9u_< zT9rs6GLH=Xr%adoY}su5TMRZ}hS?%=W-Km0$jFQWhD5x0ry2Dp$?=GgZE%q!9g}MadIYGWu|I zdRl0rGS;|E=-E1nnLnI$v%+4D@NnF&pQCxAG4GW@AFB179M?7yr>Xi(L_&CFSE+F} z@hEf$?EX-2a=j3P0{ywj^6m>%)jTY+25vl^6f5aouFpG%1oKT#NDb+BGdfkLSENTx z!ku9+-j$q4dx-MEI|(#2Ed9K_4rkVlek*!_E_D6EtQ?MlbZwN^!(H<2 zU|Ci+eA47ei9no5bsD#5QL=hiQaBiOGhSW&$`My0!9~V)S%#19wF}j((q%UYHtZ*MLu(7^k_6fLi zl<)Kp4_|@&$Hi>C67BkF8WChOsjl;YSi9jK=Xu0t)f85@wYrtm^x$Kf%LtIR0Qb@nG4s zl~WYS2lUqIUF%!DO(8+}ZNKqC-5h`5ewbON#K#SFygc^@WTm$s70R=gvAH#GRyWEi#b)wqhla1{eTsAXev%?)jBB|At(AMcZD)rclLxi9oQ(sEb+9X1C+x z{=&r^g0|85$Drb?U=1jtgqmQ(W~wBXN*SADN+b>sd95vjXSj2&_p|%AH^mGMpqABLjtw}>HpoXh_d{9qX;&bfa6#M-FHIMWw zQQXjqZU2IMb&>XO%}gB>7es$KKvHK)yE@Wj7=1$&_SL$P7nxcLtI7gr1TPH5OsD8-FD}8 z$>ei4rY?TJrunvRiG`tFKwcE`#jx0#!R}@KaXnd*m0(ZTfs3qYbegn+UV*q)=?nuw zvW_T6Fw$n@!={aaIn%PM2;DNWu0ECN^Y4{z23v+J@5CrS?LM7c^-lB$}IkQHgt)T&55XE?We(s->L;DSNMAs6}!4_%@_XPx8sPjecM1RYuK?uOh~b#fxouu&t|K&_@tzbF)--$Iv=U3 zcxY~C%=T76CQGVZZfKO(>kOd+fl+H6{)`h>0$K*=&$I83bi6*FMHD65wnx7El`x*+ z1u6}ZONuXIKu$TFoId)y=khH|?>(rkvD6RdD)C|A{1wur>EI+<8-m&5nU=b`y3&z; zbQ-m%kq(Sxn0lU*RU<)c^xHXV7$vSf#|WvC)f?ywCfuct7Hh9&8*@X7uPm6%w`o7% z#zC{}yu|-3>WrZ7a^;b;K3r(k&q{9^w_ERu^fg%i1tJ5RxYE>?+RreK$)~cJ* zO`#wC%_{SmFCPmVu0NF5cfTg4%sb;*g%Xy0B3B+fwPI~C>}v9>vA<##Fi`0b44+tP ze0fox5^OY9aOWm9Mn6>AJZbj{!#TP$yqxxl^^~irD~lbG3~|C@7iXrT-2HNq(+_g5 z6D8N{CoE<0mNKC;mB)2{g1e%~+q*@djgs*&K{oY7Ayck)Z8&!}$-slxbF%tH0+h=% zBhAK*Mqk;Wpp4VVh4;PQumQ#8?B`6O_X>v|hFs-xDar94=VN}PVl8Ae9F()OQ-SAn zP7389_yKUvtEqU-CUM`8Z*|^@`>uMaNjQqaJ7DtHu9${n!QnJ4AS6zp7E1c%`po3Ei3ch zl*Sf@SUTOE%w2uiL%30;<|fN8HNA*n#g}9&RN+6Q*@^s-FQqvDtat99>*SkKb}ROK zaW?!2h=-s)mDl49eg~~^XIU|AmU)FbNo8K?8+0LfC;9}&w{ed)D|5nKIne!(-VIbE z4J$-a+9L(P9lCpkU|G~*HHva&?RHl^%7H@6-fy3S>ZeEpM*$}>;M>&*)q*@RpJwwK`Xw?jWX zLW{+8@fFa zo|4&Sl&lGm=D&gAnCGM*Z!P@Z_S~WW@>%}v=0=_`eU^>Aqb%uU^~7U%VIoZm(EL6f zR4;w-kL1VAV&`YKZ~wYR+iW)1^lY-=sqmrk4r5l>i#TK%I?Vd15D#6@wyTGIE3&wE zep#9?HAFwEp`jrJ&~Epf9`9YPrb|BG0&@m4HOYaG})-m62lQZu=nFVMjWDhfWy5HB>M!eeNzIR#QK3NU?+*)%h4UY+n zAq)?AcQ#I444R8$LCr{T_es4mS@Zt6gw$0;i9mJm7emsm=IZVqXI7Fj)!!rCczof^ zs2SnsCN$E?840cnfYU*p=-V0Y*nY?(+ zG8R6*I@!OeO)TKTdbJq)iY)d+7tra&2tVDICn>tM8nAWp#yF#ET4^;OnwFmOIB%#N z3>Fgk=ClCvXvyXj=O6xRYvxhI>j8RmZ)x?eu}6GKEId<1x7qCT!i&BDdt)Q%X9;O4 z(Bh#x!N$tsRNdsmV`TGy@wq#jmF`Wyh5@dDuUpuT>KKmUI!6-HhNl>N999v(I^a6G z78mrozsf4#PRvFoeCKJ>SeWF2u3ts;vZ>+5-soA+{Pshtz@TV^`Wu26|+)!SyLNrXkG`#zI8A&t@0)IZMl{9mbJdu>j z9XcxYql^P(^2IN*53WZzR7I^Y6MRq|D+jqmxB8=)t4k>b8Gc4jbJH_+Qm>CHi_ht6 znsko{P(up!9$ASnrd^v@eiwK#J`~>=9SWq*Yt;alf`Afc}s(}yczF@mp@a{jb*Q# zkj+4Q6%>)<#rD@6>2>kDmYjOdJBI01g`{~p%-ZMPp+5)Fdt(QZ2N+Kpew}mso7+;h zKe_JsJE*DjXYS?MP8mNJ$$UBR{|#+cwTft?f44~$^VIO*QBJ0gw&df=hl}`LmX%UQTc6G=mBfWzctMusXef}j}FeOHN|_}mV&>vhdw9C z7IZ`{Fm6ZB(N?46c?K@}%-k_rT)s(U~+l{H0ZmRMu=28~$AFZFn z7wm!&ooLGw@eRp&f^6LALcCA!Sw3!Igj+A}X}es1GF9MkYAT!6r^w;2uwOU?h#>)w zYfK=f5CgKODvPhh<2NH4f5?>F0v(~2+k1D27*J??o`#DcGi5hPiVQ^t88!Llt)ilFQTyHF2^^MU`IPkHS|%@%+sJIo0xc7cO!t+3RB%ml9fa9wX_M zNUrsQ#`~J>E~2esDRklQqkW^bk1>^xc{eO^CHJK;EKrDs-Wr#HU>UG=Px+c1vD#|s z4>bPa?wIFx@LP=C&R2^E}I~=zU0B!Ms5MWHr`Yi)XZ24&dtHsDF{g^XS43Q?Oy5&M>!?XNU(?xT z&8s8@a`=rfH&302X8oc^X1dCp22TBDcIXf+S4uDFKlSNuEc7asZh|TB&*5>UW=Jl- zB_4YT|M>p%r~Pa0DTm$S@O{SGDm~szc*jb!2?j1@03LR#UsyqwW{M5l89ySi^B6L7 zyEspIe%t>umc{Es9()U~SoZ?3iEvzif5`yX84Y68U+Xr_|4dF!22N*Ya8ej8+@FIn!OZGCPvamQ{Jit!aJRa!o1x?dh7FBP3ZX^)O`G1 z`Z)2;foN|C!ME?@`MbXF*yFg0bTW^X)B)os5Y>cXe#7VwR!+xMSu@ZSqLk8cXmG0^Y%-XUC9?J|%tl$|Z;Stc3x(jKfT z#J_RgXyR<{my?f&CPcri-j;|6kjr_$(BN9G38vS)y1Kf+rLqDz?E*t*@{IYhsV|(r zMedRksXSIF6xbXZme0V_!TXDSPEarAE!egMn?TG}zRzv`k|5(_l9N3H6n}et z9JmktsRWUO`FY7UN`Q-t`^G(P!zPKbx0a zzbbdkY^NBYD{=U{YGa8_Q`xl4v%NciOm_F0LSzIICY9FnpI5D z4y)?E0i*IoJ=Tt#U%#|GO6?z~QT6m!_TV#^Fven=IOD3!X3X?k{dlzrp+-BuPA@;+ zPIAP|H#Jlu>C)W9ziEbCZybdv9IF>&9AeoFv7pqB3(Ih zf!S{3h^HAdNXWA2D_!g1czP#G`!w4Mm3yr8BUxy!IG8#4rB__0E5=HI`seA%k7Otu zb}h9d(oOj0Xg;NtoK7vat^#>@WfMb8Iu1WqFM?e*yXT)PemGmoQjc;nyzheEMN^qm z8YFy(HU;qSzkfET^!Unxj*8&d3M4_Hamegy|NgyS4}cO8{Gi}@KLB9-`+F-Y-oIXk zim=uRq&YauZzLcBXDNT*37&fDjBL=?@n?*G#%;SQCakMD( z>AE;j@wU1V;_&%@TygBax>4-~#XooQ=Y3$Ds00iRbTzVV1VZkwAVdE-$p2qo{Ex7{ zj1C1$TWmija089?{gW7}Y^ufI@ITA?|6e!n+s}9@0%fP>iz`s5P8j2sJ zAR~&D9`NLx7L)QhDBzzoc*>`6?Q94x*+$EX!7&Oi8SDRdnMhRa39%XC?Lz~@K5 z=w`=aax(jOA^BHpyV<7|~$3bQCINp+7mXl-cPj_{2sKsye7QW5Jb5RBtS549nMi5+*B*RdHQfR7Z>aE-SmKCmnc=^nTnUemTS+LIU{uTW%-u?%0$zft(J6k?}eym zr~OCh@rU%VeD9Ky2y1HVt2gKi2hIda=Pa%`%`SKsjp_~A_XMo>6NlpB2Di@G;4lvn z5Ex^6!(pRxaUs)%lOc8Y_e#%vNW#|_M%K|})3pYvw z(e++C&mqYOjn27q=42g^mNw;j0cfglg_dkrk!+JjLk`?vi%&;lH=)H6$RQKpbe6 z`(LGbhTIa|xv?1b961#vkzl)9S{Leadkjq!>ym+;N!#tNbE9PkCdkCIErEd5lhvap z`<>a!d{%ODh(G49oSbSNuX~qhU_S^8+7(S%L_OG<{^l4ms!?r(>v7VmpbELZ58IF} zf=U8zFLEnveUid38PEQggZ+Lugt(QxeV4#Dvb)$q9h@ zMZoH5_d>n1J8+&TJKy)4^<3mXtgo z(9v}1munDHVcZsJHkSCgfbOU>0Rm0(R~ zIw~qS=fnBD`O3U-r_G0lBj{5Ptrr;I_$lW31L^R9(VpGo{S9-u(SRGqu1Rv{RQ59u zd88d4w|%Kc5N`J;jkHi*6m&_&MXkUV7O%aOv^7@cN>#M*?ISH!)&{<3oV&Huz+>UF zy(B?*1VGdW2Rb@{Vg(aQMiv279r6AxKiN3WX3aidw6L`=uG@oPGe?4fR+o~6 z1q1j20N@f3uoHoJA&4}&{?f*B>PyFqn!qiTfVKuUc5)meC$BZ4RK6AEV;&0Sht7N5 zGuIU4wbd7|fy_u0sK#u7!+8iC^JM|h(Z_)8xzsp~0bZz5-$Fv5(a~Gr!1icEL0SR>m@i~u*B5^D2R|CMC zIxsW@#Xt^#g`}zE`vDTS20-DTRWeprBhOvDlMA4nR#-f_ucideTu6rGAhNoSolGD) zq~C}gJU-C8plRTiW8JJY;uM?na$tWnm9#ooixd2IStzZP8=;!_T`n~K0%T)T)064V zT!n2WIasmnD^M@rRd7XAJ`gHj=pAE%9?gF0y#IKyhf&9^#`^@>cj5>3VE?}|;~+Ax zv>i1?j|L8hn? zYrU#~W-(!j@j%FAQ!fgih>n^f0(7B+f5(L`j&#ImA}G2*1epd=wS>0xE>-JpJ>_!g zZ5-h&)3ww>lnJ>kOqBCJodex~0}x=>WxbC}xm}A8cA94T!3p#D7(&+)JDW+mEC!=m ztCbQP6C;j6Dj?l_yUSSTdS>LdJxt+te{K8s=PlUr83UBEF`x$dtw2{M1~X;H0gr<@ zPF$kDJ7_*Rg9Ux2BA4OaLXtaC^7-u@fUR!>6Z3W;8qqfJ2AMiJapB6~s!QC(#>yev z`1ts!GsJ#FKtxpfDlX>f>1hhW*G<6;zy#<#cYp**uKE7-{cpv*T!8$Q9Pu(V<$^Up z4xrotHrom&Kt3B79Lxruj&$%`9u_&Hyb=NjvXg1 zYLRL#%h_ob?K*Mm#fEo)lP(Fc-g55e+oHw;34d)>f8o>zGvztjunzgT9?&07mUXZc zp10?3z_f@EA72VgToWlF;OGtC0gS1{20NzB)zy_eVCG{lRGQ-hc<2B&Bvaelj9G*e zhP4jJ8Poxp@E zL-O@PTY!~O`Ac9~kOJBo@>m%PybxgC0J4nbqoaua{tx4Yn)s<+w|RTMu4goD2Dfzr z+9^3=kdm_oanw-D;fkFM;NwmLv_hW|6A(_<)*gfb9DzH}Ydq(%SQb9kJ6Tp(FOdRW0y(+^VJ!gjskG*XKmy^lz z)hLuyP{2gMAl*Nk%a%QAH@a)8I1q$sPCGvK1etu15u*>xvE4&MK{FNzUA8uMcE0uX zP=2ty2?xyc{y{-s=Bg}p0MAxnIX-@d2T|HE0v|W}XOwLP(K6@h#T3RuooD?4h+78K z=#yHLS&mp-HLa0HEbsiF=BGLk>GgZ=s)uLm7n>v&DG-CSGi$7T~Vh`r=q#F)^XC#TQJg;Wh&M!u`WT`iRLez;KKJ z1qh$2K?#KX&1DhW-f4Alu}*W52H?D>shGE%39Q@kg0>Q@u!t%}#F`QFvVxU1;4#L; z!wUpnj#d*6s2CI8GYAJE8gP^!E;fdMv;R0kj&UL7`R2vxZ-ZoH?gkCmLAXC*BT7N>W7o(bKb238KeurKzyNl*6P_0~l;xy?Hb8Gd|wb-pOfG?Co1# zAZ{aJ)q{X_c5?qT`Bb44O`w!QUPg4H=l=u!*fKtCaX8nYULLJltZmL=yDC24Z_fuQVa7TyRkFC)6CO)>cN(NeipGIqNeiUavK0fj|Y-4_3T@%g^ zt%Zfik(-PaY4h(d)Z^2C{hBIhT!c&->CN<6Yu*@CY|XpNIqSFNI8{CaD)Ff|NMq%iI_17e7?(K3-e)zvGQ@r-N1a$Kr_Hdcqnxlj+KYbxeBMVU3p+0_FIPKXCHoUY zfH;+JwD{_9#LmU78<27VP0#V^sjnInvlmbRu3mv9?PVTxpmqYWC>IRl12uc)jx+8r zn3H)wSuVGT+Bjc{*w|otczBRULwhiZi9|y(EgKES91B)|InO`> zZhLoWsa5Cj928`KmHdEbkH~I*={^c{OcPpppMI}y$I4`hsi@$A{xh<8jFYKrAN^Zs zC=SH?1I=5ozFTUyAv5;~xT6!b4n41~yRoV#7*$Y-1YAlUPB;37p(Y%_^A6L{*cgCK zo0GoJRz%DVNsd#Q%LHwJ{J0rs6EHN(t?xIOagozGOZlWZg0fX&y(ILDhDPo^Q)dko ztol1!+cA)~K_H092Pq)-FnByeB1Af6%NB^`YhY9v>cO!rPD1)vnZJwZ-`ch{OzFJs zfh8R<|8t?*IdW?_k{Zb$v$_Yx5jEKVu? zOA$c&VZTtts{BcA1IVXog;)+1>ZLv)tqethtPAqZUoJQ={*ca6{5e3QAVU$$*E%qO z2H=pxCLAUcb&d4u)I!VZ?kxxSyb4^2XnfFQbYNEO9vBFa%=Bs1vvHB;9Xj(}UpKf1 zB?TBbU=)UZ>bgJSK6sw4KLF<7uq1B6};8L<7iR1rP`o>qr*z);Ss%n*BRHIji~?}HUih!35z3k})R zWoJ%{@!fKrKDfm1C8F>T7SHIFixOc-*PTy)7-QL5SzaWO(CuWi2P;fE68_Z0Ujn!n zLqkJz_>zk>z_1)>lRSVL2b-D_s{{M%Th9^z;!Fm|$tFRU4JMzRM!PpOZ5g@!K+gwc zwMQ*#hp0#;iD$n#tf2EXJlH^Fg}}|NDxD<#+Icf&QdU;a*sUT(Oit5N!hGa+oXpmn5;B?GRre<83*{O!WP z`Yeqbb(Hj9TNMs6NYqmIE2|LE9R81=9l8hSc*7Z+zJhjd`vRdKC=rFdo*wp`^u9~4 zSYFd&RD3KJc0FDeH3$12P*y-{|B%4(9CYbzAR+!5e*TUpfzw_bh?7qDCr}8(fX=PsY6%(v2Hx!kY_0mG%OLL96*=FL zzdlBn7^`IO{^ktGYDGj86xiQS225V5GD1mVEwI_GL}t^t={t%>;n`McYOvH%|Z9810s*J$-)vS z7`JfOFX*KIsP3t702`?c7ew+!;eGvOngw1K<8!wfx@~(Z6Rwl$QS*b^x|_ z%aefXO{7p|4NP6ZoSFwz{lHAAh*d!12UQEyb+{}XfY<*xS23HyE5gTkYpB#YR9s#h zA^*KPPE`h1xOs30dV~y|gdHtL}*i0%PzD-h6`8%Y?kg|+3sU3YF$uD4T&^|bBeFh8s zc)+uVFV9FG*9XGjZ60nN&kyI8QmCy}1)w7)BW}jjoT9-HNW!yII=yf5A}!-AP1j6uz4PU!1CU5UEkQC z0QN?(5Yq~vIgarR><&8GO5bP*UthR16^LCl=c=pyfcziEz5=SM_51cvf+zw?sVLnk zU4kMdEfNv}BHbY!8wCsy5GiSq?(PODDFG>IQM$W%>-_#N#~W{qcL(EM@4*9S@BMw> zT5Ha^=Av$#mf(kEsNJ@Lj+^^u`j4LH)EFTmSQaRAfz8&>CSBkgG2I{$D_|2FpBVO} zth5+g5*zYaapuLTp&YHV&!0bUw%xWfW)k<&6I1fLWqunT^&40a9uS<--FphItg-3I zyW86HWm$noDa)Q%baBdGxG^BI!JO4r7@Yg*%a`}yJ)fyZ68J*eia1I`-1F^9Gb|e^ z$RlBqAn!6WnNbe_9zY*Nqt*g2OepZ2m?Ma-!0WmsEe5;f>nbaG7H3-jR7|{l#UwUO zabRCg56tT=)ho$n1sfXo#{LPlrLI2{)*Vf^snIEEh;8M!8ot`p)MWlElNc@`6$%;B zJlCk{{Py=udn+TZuxn$jVA7)${2kzu+?Nz4%Tw29hNJ+WQRp-Fc&ep zFUu=E-#ho*=&>BF+!8hL-XqP3=#ttotzE%JO`n$blwHh>6s2DJ=_9qYQX8pgruO5@ zcYQ3;kuTd#@lunu?pVxWhjKQUzld`tAs?r00Dj_03z zI)oIwssRqzUg*dsew?NTNd&Y5&A>*Ff>B`$E8ZUSlR{-0D>FL&Z(Ulb8 zPuy(9B48&|_&RCJ1l@u_CAWVY%ID`lw!Ehs^z+`TOU)>pWNB)%fPXau5QaEFY~un5 z^+lP^7V;bN>?bKQfV`0u^YH9PXOI$Prm?W3w12$mWDaG^1U&9qcu)sc7HuZbzThRJ zHemi#*vU}C-o}(_>KK|H{4R|gSb|sK_GFG;u=6e;jQ8iszl&f+vLMGzwk9-hMs%c}M5!y-l z#m=6E!Awc9nJI{MpnhI{wXdn)z-PNN!fw9X0$_YmBR`m;6IHpK|#SxR*{&}TdtgS2Vl%&VuGVJgc(Q9Jha zp`Y`=o6(X^8ZVMswhNRja(l`Qnl}#?hPbT;CdB>;G;l>123uj$bBHo~5)`bC@MA2FbY4xVjw`ibxH z7WF8qBm=C7$?8>5rQ9*~KBm|EuczQh_t_Z4DE`CfFN`^+-Vra{sKcx?o%Yh?Q8Bsu z$;?M9-U_>yM&g2Udq*MRxeh(af@TEZeyAFlR1dMD-8vWR2LhyPopnnkm9tIQb=g-U6ZVGLB(~^|4 zSfC>m&DCeNj)wdDKlJ08)Gm4h!r1UAYXzR-58NXc7}uMqe=Z+W@JjpmEzviexa0(& zBI6F@Mo5=|xt-7Xrakjyra6S^zj#Tc-m6Dzjlq~KyvhFX#rKd4KG*;7sZSWOA4K!m zGF}V4M(zK~{dL@s!~djd!!6EhfRXeukzp!kl>FabE@o_wKKTQ)qA9L+Cn^c~5*Z5M zt`eahVdGph2t9iHNsTG_Y?1CycZiVRmL>3uXMRM8q$DURG%=}R)aFZ;w8yKNrw6l3 zOJifEB~bMyxsmQ@Rb09$C;aPN<=O4W2QQb}2FmkpC{Lk|`t)@C+xmn!TNYfDbqn$ z)^MahbKbw%?ZY#lsWz5tX~w&?2EWf?0dqMyuXWfDlxQZ1c;6lgZ{^VWZT?2CEM=j``&zMm`8@40D(~OnWHNo0_gfQ)%z}#IJtJrBY zv(G25QBa-!jFkX*hkDfJ^cQ6roJ(CWk_r)NcX-G^p7jr({1xYM?q64bA}B&4048RP z%*1<+x{9O9_si>wuT6wn&lSyFPNO2XY{}$BfV!74p~9@m7+g};VULpL`lf(Kj7jlL zomJG4awJSmo;fXJduK-lb5xn7tj;&RyS?4a7KZuCC?<*DZyy}wH5y2LJW^YS)FEBH zy@?N5_)i5%u1U%{OGq?u(1yvu2-FE;6!d4P#PpbYnwrk9L=3b?{(6csPgZA*V~+gc z;!;y5(6=+=e*O@wMzw=l9q%-n$Y-rLbYP2~93EQJ`uh@HS7sTiw~R#nQ$0Dadq>>L zm~ETqcnwcder))K-%w78ZfHH?ecK*oSfsatF*DO8paoLV>Pm}2M%VC8|Du=ewhqqD z&+|2NGNLPzU>0|(u)zgASMH#fTjIfE1%+#&K5iMZuXZQh$tKsk$XF>d1`a$I?xY;yXOi%I_sWQ| zE7?h*o)}-ZawL1mb~N$6>LuJO0ctF`D1mSmAqn9z#Hzuk$Lxlq2U(idm-&kZ#+HYE ztqyuWK`ZM`f-n7$L6HTpYxu&q3;Y^Ec2PEFovD!%^+=@SXb5K4!VE_Th@iz}T33J0wGY7Ey)rXf}HNC-+z;xTu$h%s8T7GAw;5i2B9*w`4!8smHs*BKf zDn#t2QmjDx3f)`vOyRE;Ba|N=EM^JD9L6wb5+T z1_)=EfZ(`|u;+P4qV`Q*QVI&U?~{|y!CN&hF*0(m3xZC)c7spdNjQ@V?1_&bZZNR| zh&>f8pBAmi_%tSrJx{ad)%r-dnMh6LmA^bV5xtz5I{cJMab?oc`DaAr(#&N)xd5M|h6&w3E~37^NteFq<}S_a!zeDAig5|?Ckc|Xrx z>Zv=TB6SBduMeBw;H=F*rhkzX*Ao{rf04wPa{W>e5oUnoYe;D%>90S8;*K7<9(g2A zPyanE$oNxI(zFU-od;`Eb)sN47}x;gDFK&dgHBaic_pPg_0B89vrrUwQTuy6V42i- zZQBk*E}zSW-i^E&ECa+E89+HOFCGscUlNvuKOvR)F1&w*Q&Nsfeu)Kl;5SUDUFZgg zCIRZ-2QWj{Uj_-jg@FQ?>(W(<89wj>TLw_PK@rbFg{4mawf;*ujR>F=zxqYcE-|R2 zgcm@z0f-mPK_Lgg!!f{k<2{2)``LjzqAoB+-922*BSmbImX1BT3qb1E9J=K*X9v^o zfH5^SWke?xgc7HP5Dkpqz!2!@O9Z!05f2zj55$xpHa51sfzOeN@v~=Na={P%4a~)b zLAGqxkn?$h4atrG?d&{qa}xq5q1akL zr?&~k4-Gkd-(HJPxdZ?v+dD$4y8@p3)`Gz1k=!TB99sSgqms!GnBz>jy0UUY&&%sX znYOFRz_#}moXOXD4I5Dpb#!h4=Jo3x(ZJ6qPmdbf_N=tHU7Ek2`py_`oqIPN^z|7y z>vvXN#-L8p8q=vzEngb9tE|-8z&OhB(a(PM-S9ECWM5ufJ5y2}k?u*ymOm%fvGc6| zpZCisZj)__&O~pdJ=%3cjUn&(%I4n}bXwS2ZF)nw+B>h*)gubjS*2}l^B1x;a(o~Y zCLkv#e+O4V3&ezF*)7O!HKr;Z=EzYdw{qEAzE-^uAM3)rKbZqAs8lr^8NHoz70VkF z`F4Nj$Vq@vdgdi?rrW=saN9Id*puYJP_fx&hWXwR@^R^>xe|r2(N&pXin+%x_A^{k znyovWoJgld3uh13urRPAxwVlh*quv7by0)I7?HV`(0}`)!u5JF>g_xAV^XA=btI z;(t9jaRSKwGqzYR-h?c(-YedCF!s0O>bPYfP2r9^lHs^Lq@d7?5fy3-?k za8U4|Z?Z=IFoQ|;;9~*w5P~2;otVLx*u$u&EQ~v1R8lM)A>|PP;Fn-+&AvQRkR-`M zz*%rvmNUBjzSrT;6{y=Qea=K+f&p}~AlKk$J*w58}~3{aCyI+p1F}fiqssl2rkQ&GN4O z?F?su`jmJ1l?W#t-J@6gtJ-lePdj_a64=x07JRpol{0QQP%;T16j#52F)?1ZX^Db+ zd)A^D(2j)g&K7_exlMkMps_6|6G!X4MbniN0s#vH<0Ul8_%D$TmH8y4Ed|!9I(bm5 z^a>|gp4mHq!vMRZ0G2@-5I}CD@9*1T{1!het2xl;+7NtpvJD!KV`HpxcpFz4m%O$D=BMdQ^1Q&Z`sWMy9hZ(AgjQZ$@Xny&xBN8^v6Y$z$=A`GS8 zIewx4me+h(H67D8N00!qy;LgO!g#;({>lCi!CV6dOhN-9sp-&UgXpx$jGFP=Pnq^J zC-a>}lVu*A`Ak+;YySxsGC<+wkwtCw-hP>1UHNIZguM4R8OQz8nMUFv8Qfl_XKrqX zX>c^T9~~Yx4h@mQ04}m1oP&*NK|tt-mcfucJ~8oHq&$u!-afK69xcT};H{sNNl1oL zT-4T8&v;r{^UN~5Q|jJ1wF^tK{B$@I*N}ws{KQJ#@zovMv0}RVgo7AE9MIhJeauxHC}<_RdJTtHqhnH6?YWQ6yU(cL;+W5x1YtHGkPfk=MP85eTRH)4PZmmvK-C)zo zEvyu*wtGkd!xM8@-?&^uB{H{(hXMQbAH>>_B(JJ+&hy zu5DJSLglCO7YLuuTeW4?T^N&me~?n+nvoI; ziAj-Hi`1kaq$-_P$bf_OhYWxgG&hb_2xU=GQKnYG-QIX%ETDmb!`Au@$GTHhRaFK= z+j>@}gm~zzh5WJ5WlaYHI2}JfDWr?$qlGj87yH2vrx6e!OMTNUg|~HukWj*YZ&`y& zo(0X-K=%yL684n1OiWCbH8m;VnTE#vAWA|ko*x3*)ei|E&fE!kT%_I6O~Han%x_VdWSTc_1z!TB zTbWMgVkfSGvR46A5Cetimgv%ltP%4aiR zKJ{jU47p22HhbUbuMqSt8RVjVmh&ax79qRF3CmKKz8=IEG)U^{<(`aIsFwt&X+OyO zIo!)OoVX0w)DY`S*@mqn$NiTFdj&ntlZe^(J%fVLr%7#*sK6zu+Hs2t`<_$SHw}Zb~Pi-L=L-|7JNCG8I zNS3JEW{2=b-GMY!%9DS{=SYUNow?BF>33JNR7;o>P(NqaDkN;ji(V!?+^An6zJ6U2 zL=o&{R{*e^1Z|Yo8Fasnc^_@34+R8OUMNK@OP`MrXyQuZ;rx89=8?YGW>YbKhet~? znJ6H^_s;PXd6wdm65zU?Pe?_?#C(7}o)*?CaQsF^6l4lWt5pjGS3%zL8-I=A&u&TOx{}yN>%V^s1vDJgVfLJvlN zQv}PDT92tY&NRN(|93O@^Wxs|DbOnwu-K~$AnH}a4+cPhQTG@9pWFYOdvK> zwN;0s65huoY?`^u=bZ4_x}rGP5~EXUoz$W3N(8jlvKS<4Vy_>d@1gZrF;0Y_u<-~8TDxO-U+~?cAtOJO z50=4-lt(8GpqBaiEe;6^4qZf3u}KZfr(<;zL-kINo=sZ!T8)*BNYSA5#7gr2CEP|_ zY3RzoKawR+&|+;L2&DC`6RFw5+X}l%`Lp24!AjduPh0)q^W~>D{1_-#2O^!Z411aI z-ldV?oH&BTkrnyV@b9g4HI*CUZj#QGwRp)5Nz6Z67;x|Q1{2+y|Ckw9QRF%z>_1|O z72b&**OR_DUQyr!@NXLkvhtb?%~cSV;4J0~7M6n}yaqC|B1Ox=?ABuogH?)wO7{xJ z_4C)Xb~p_UFHg#Kea34Y2O?DJWm?{H=!(0&%Dm<)nif0UzWcyfsHpY6$1l-)G&E`H z1xZImfjUgex|3x#Crx`fBeqOct`}EhPS3wg`#h`nkP7P*@!Xd?DX5qKgyO!37-$@- zb4FfbdGsh?Yh~ni^YMNU778{nY0{?|*66N>ECEB7-sz$CPa0-A-s2g_^364z7N2J% z`2_Cnz5>1gsOp6kYv9gm_l9*3w`w+YguYo+jCURiJDGY3yp-94rQ^V`q7QZ)tD{v< zi@}QeYaepDl{b<$P#MUFlvw@pm6ds$3x0tQq@=JlbDz<8FC@6qL;iAhZt8bQfxNeM+>_IzJO`CWK>jnn0^I?n3jwYm#A@pY!=RZATGQZ9T`AZ z1)MJYJ5nBIRuWymj#;N~Pyh@})6btREh&d>mOL?mJsM9udQ5qtzY_{qLLg%klt((k zPPfHEL2xD>^8UR!GZ7v{YDmBGD>qc3aZtc|^sDDwuwX4zpjydIwEiP2S+;#0ibqq zJKUr}>qQ_Gk=|m53fcMOVB>(9XGpqTyMRmR4kRhtqY%PHP<8rcaWS8rZU|U0KfNP% zp6N59eciy1u)*WuRUEzMR$7zJNFJO#@WH-^mAW@*OyylSa^-~Ex zONwiDcBDSqWyG&(^57B9K&Y%3Un6_{pm2=X2?xcboOxL7tYP{(3aO~O=>PWmx#xb) zVAfOe^Tnc+sNrCCiv*FfZXxGmYip0=!A+gAWje-VQ$pVf9C@xn*OyDP%R`-6dAjY} zm&E1wdnQEhdmi}k7C#?%IW3xF>bY(#p;~USx7#!O$klGLtY$nb9M>|F|0Zs|u5wHj z>yf=_$q{~<8t2L{7G0#yb?P4J^H9esN*ER$AVtgK^P%<6p99D~r2Vof2e5qs2Y@WA z1@ic*sVO-)nof;=-KT{fQWOXofj<9+T%1n; z19p0iiDB>L`lw!_Y06Zc6OYR(^IiqW1r#~K3u6uGuRBR)aa!QKfPHFQ(=)FXQ|m<8 zPArL*B|%vEyFgy5&K4;T=~Ihk*_#aYT|tSzkr4ATU~`$GzCP-_jo-I(Ee1+a^%qI3 zvfp(2=H554%IAOtbPGpw;2CLJ_?!?PHm1;Z_XT%-nE#44<^U;SedW<((3By-)8=Wm znDe2_dM4%g2T--4gajWuT0 zh93=1%EbJZzffr;uzC9X`!~0?F#2|g@B=!2{CHF1bmVj!RHd%F<8}=R%gf6;5|9ll zu|}4I($KmPX*GHcJ>S3*+Jhnkiosa`SCpaUikuWbprFaHG9fYXT-v0!0%DwU#v^_G zyN*syAijeEWNeBrElO?1$#Abx5_Km@T#Qs!zQJt*Y}4y>tNl%5;{!-m=Z^PQ3ZJoO zGM}UoP2zx3^b`JbXbfOIOaSRP0uN@ z@x&Ufq8=T*2@eB8yZ6pL<;~tEj-&ei(0F1>0sMzU$1l6bUA*>sFt9I;JTx+*1!WDh zvXYYb?M8Lkvd}v<))F3@KWAuKrmP3j6u8F2=x`kl_QO2w2t7H%w~xN}DBay#MEdUwo{Spi0anD(i*<>a$-Lxg>3ItJk1#syhyk0WjKXvi|YfGgHxrW(5PQN*L>=e3pkvSwy)iJ#iciZ$tW&fB@Ai|`gqJnkmM}!&I z^A@7hM2#yU;3R&&MB~%$AqqRR1(Mi75u`Q_zYH&9zabAXiVUDbl>8m5PL(Y!Emz=) zjaru*`R#e#c=4ok4)imhy8gMc4x~nuTMy^ngj6E{3W(Xxa3+xTamOeE%T(#Qan~(T z7AAWG1RoHKu7L)mXrK5iGM=b7y=#yF4ZRyU{Se$1FbCL#geRu^MT$IScVCIy*bZ+(8B%1xjqT{5$_sU&WJ}6d4(i^M8n|xG8+t7Ajhklap7> zy1yg?;N5DXi$L(`?7R#c2imYNU%tFJ-O#WCLkmkoh}06)ESuOQ#S4m`*IC#*xf0fS zZ*^Bk<>9Zq4>B7bo0xoLX8_-@BF`;mVf#7e#B7z_>X_FKhu$S16=kmLaInucM~Wur ztv(eBxcc*^uO8{<3wl$j8kb4x@D3|fnLI~fD;6&EXQ6A#cD4NF8VBoV zh_!6UYEzisZLYppjej%Y8M@!2^V5U~C{FdKUOyu2F4)Vvb>pkKIcjbUS1y^m#gqpJ z*Lj2UClg~}M14J2*Xra!5Jc6|#fGFy7mWDfT8EgYo0)2|cpY-KS(cH-<-n4Llmi?{ zjbjw+L(E;Qro38K3+iL5UoI#+JVu-}cCUYsI&_(p+>%Z5+MdErwl^{fG3#%s2HrxI zSqk4I*fUK@`NlXd^8Nx%36&QReEG1QYC7Mx9W1D!2e7nVf_&JfmlKc z?gws1+a`b@klxPy)*#)Z4B-W`l5!Y~I7g}{#dPhi*r+i$yMOCPQe@FW9tuHQN=Q{e z2MkO0>&Qw!O!xsg-z;P*nsxffw>NJd@$&NS)Ya9UC0*EV&NS5nfmCu1tti8wO{fvF zE6A2her!ZK__~Xl@3_Y9Kf1bllwW~Ob1ltHkvu4a8N%mG^GA0Ll?!a zZFGW&c1NaA1h?G*qpEo`5QUz@1V`#u&%a0nwY~vle-@5zbix6rZV(j;98+U}^r?tU zTUlE>YX!~r8Hfyc|5Y&`Ym<=nz;PcJcU#1DebwpD_YYjCZZA?+EJ-|zNy)MKmV+tD zlD6ONuC^1cMScn^SU3q2EBqmdmlyw!oA+y!Y@BAdD;-6v$oG>)Mr*6ukM5s@a3u-2 zcMqWp^p|`~@s=7DP7lBqnIw(d=WOUp&J~~0MkW&-#^+U^wdNP6KBuSIDhVA0>?;%G z4Hqr1-L{(f7mK@aE3d!A(}_~T0r!JSu$+Q|U#Bsv>u<`EqcrzT>AX5`^_$PSLW`)?87>y49S;rtU^~KHQ`esowmUvG~`ce*a z;_UnRZ0!=xcds@QJ&$)Sroruw2vXiW&6AIv_;`5K&a`y@8j?gv1qPeumgJ^{Lr%sC zhS|uSIX1e!;YHD1>T1G^8nP^FZg0mO8yhp3+7u4)Q)Fbb#6mb-=@UAQb$FbYe-V1@ zuP%`i6TgP!^zir?E$^+gdlohY)gc=D35LI>_Imyg2s7#>%zsi70+Rv9{T!@Odso+Y zGAR#Vz2b{cNC-Olht}~~@x+j68U9`beHI7cMHMB*#n=EUHG^n18SEpnhAjJG`66|C z&!6uBnb?hg`7*JX`?i!}nT{~7ZQvIn2U?IwL7Ne*(>Ga9Gsq6AbSmv>OuN54vHk*B z_;c-WoS;@rz|M1qmOm|>u?ZRdVo6)_|0E7)v1qmTiA!IzaO)?afzXOH6B8PkR|L8& zP~>)WbTlU3_xz=kSMG_p)8XM@HpKxIN-Cc8_FG0Z?I35Qd{}I3AV47U%1Pp9^B2`k ztUR1$Ei~(BcI8F*-Q%1QLZ%<@If}HRZ;iixV{t2AMmPmt*PG^Za?+T}e(P*`UBSHz z`tE>YZ19X`wczBGIz(ek7u62VB?=7}X0dMz8d$%iCnNCP@)N?B$5^9_nHJDYWA`hY zKkn1@3NFJVOu@?^-F=xcZFDPVeuO>->`t?K%zFKqtu`&+->I`2{*|G;Il<+gB2K8v z+h1dO7Fo2!mJ|?B?XC=p1vkpllXtOj5x;*PpzP?L&cI*xb(Y0ydeKUv&*Sp;gb;$KfQ{syqUi?Ay6m!vTtQ_|@({~UZ<81?U3{`H_% zh}MOeWU_o`p_Gq(P7fU_-@R++oo9t+u*153#N1!M;2j7V7T%iziP?s8gQ=GiCVm#r zF)0hVdw59ZX-d2-gdPeJ=XG{{3Q~UjMt0ed3>Xkbx_Z5+xPF(^z^BtsS&42KqH`&OMqU#h`Q!uG=AKMacDYlv`XY!jpScS zR(%hhM5KL4>y8+-^^)M@poPd45McESsP<1OpQV{+?|Gc9z#%#~-GETRa%lw&6)MkA zz=0sqOaV#+E);$A5_r^|JIiNPiz(%4j>B-atT)p>CwZ1I5PA}NyJTJgn|%!A{Ugu4 z<$qMj-MhA{Q*|}2(85)>=TW!V9B{=#GpEc9r@dq}0yL{6f|v0FBw?;Hd0(l4`prlf zXFI@dQ5^J9Bdk9=bDir^N%QTuP__ix4+O#`2~vr<{VapxU2xic;f{@mhY0LQVrVyk z(Y?(eP6HwW0?{xuU@e5`R5T6L0Ji+T6U50tw`ZSE(+~q zPyQ>x3Jc1UIeW|Z8=d>=>$a&7?TfF^F9;!vuzA{ z`dXpiFxhax{U^rxvclsGJzAToeCNvL)qs+690}{f3frNTAH^nYNI8(SM!GASb@}Xv zFZ|BX-*?Gt(Qy1wT1Dqhgf9CR^ERM8v9SPhO zbNea~*KU-%ebQnVUQpJ0*LZh)Dlj*XWKE7krX`PeZ_mhM z)Ngz}w{5UF3s%p0k|+P{S<^4Ri*S=AyPxsW7Kx1awz`9pe0Ywo-JYk}+H-zAsT{a` zP^>SRyczRe!9Di1zP`%A+W0$o47A+bL<}d5WJ;-POH0THAba0nj@;?DRxeu)wj*cf z-VqChwgn040)RH4h3MM();sO+q=u&cT2~UhZP`*Q!3KaIqCm;$x8NS}(bxpkwpr@U z<~%qzB>#q(o8A@AeSoufyhEJZFjsq#L;DO)J)rRV*z1}dCU^^ee56i|u%-8>T!Mht zjlis-k1+8#otl;w6A+m7^>rxU&?h+@>t=nuz4{o2A#{&sS<*7_XuN^VY;XpzsC?K5 zH^A%GPc0CTM4-vLicNcNDJ55l{4>-Ey)LQ00_$sDaN28d%(f!v&)ghf0C28{MMM}2 z+s{0xhfM`imSx{50z^_S0R~vtxdWY2wNbkhVg}iCD|})YEYfHBD>F>R)HK}$UK5r{ zaduR1wDTxPp65Jw~?g;k>&V~qildWx;2sQQe!BZ!b2Zlw@xV;YTH^o936rw=$ zt)bIBG_-dN%@-$p)}w`^r6iFwS?c&;Gw zLUGI|l3=@@qjrUX^{plfbFds~xVQAt@-z~VPDL8DYM z8O3Y;H*lso&2hd>;;~+>$ytp9YV(ZHs`)byNBFwL$EAy|z`>p#7u^uL*o%7{aYJ9Z z)#M9^B(r5od3xXHGOS0(zVMDsvOE8zc5A_WYP{4oG+Y*GNhgTok07V0tF2{5iMh>4 zQ;DheU+j{*47zuf%y)kg_bJvya-P?o)@(Dy=S_dbSr#;ZO(=dkQKmepLxU>x7A=!~ z8-B*yaGE_GFKqBIh5tow{2LSJZyQq=b6YPhO)JvPVk}CYH~sCLJ)Y3p5J>W#XE^

Ky<5@P*X#2J~5!=@7sd2*R2_#9Js@uVUp4RYMIjUQ!%C&u5oN zJAY(n0Df)Dz@S8F=4b|gQB42C90j<7T2?90Pbw%6S-v!@;Zcy8&#bLI7h6;7bjK;v z;b1lipV35?A13E|qC=8%vMPl-Ppro8-!2RiB|3R5+S=Mm@*;ZjOIti2A5!?b!^~w5 z8)!%T3q7x+C1!-dK|$jfhBDfbFL7df)v|V921xd&nX_K1(({qc7`!7Gqp0vBwyq9S zi9AbPrz<-!Rukk|Frshu8wcgGUh8riI_HjSz?VRpHbmU> zd-e_J0H(c7X@68Z(;_b|M{e&1)9Fa_R!JlsTrZi6{x~Z>7_U=Gy}Q7h{&H&KXtc)r zfa-v15bL7LWNG6UyH5PG^^IxU%Y7;h&IkF$fBkfxq*ncHF@EsifvKfsb^%?ix6f(+ zH!bGW!G^PP@B02xA0RiIA5EIe5xj3hH*o|>Wo>1_Z9L-DnkW1cYpOP_?Ea` z?bcgpq^DlD<$0or&gV>Vy4sCglXjJHU9&<*4T^ z|E`lI3gv1kn>wJg)QKV@37c2d)O($HpjhCFxk|HO!@XFol#!X4iAG-16XDfb@MC~Hc; z9Kod)A$f}dL|5c8O*8bDoW?`9E~r#s5e0$1BJKf8nT949@uGgpXQ>Ogy13Zd@x)k? z3zXc4mK!s6vMy2-IZN6;!m|;uw0a96BHHBa+u_Hfv304r0}_$eom09pow`enMTkfO zmqLjx0naDL%;!*zI9|U`FLObyT94#!7W`mT(eLXwt+am!l+-Oohtl z{@uLeKgvQ={<-HF0~IsdKq+cZO3k8h(sV}&Hv)HUzfDGd$Iq85g*n(K?3IqM2WA%E zU+T285|Y5lco7iBN`VqOyzoIsruq;!&G ztFz{rmT14^yCn-c!yA#E$O&CsUN26FmDLkwF%Ey`Zh^Q~>mvHw!EK@_pRW<(=c0Wl zY_k34B@J``rw7r6j}poeMT5e=2y#b;^d(L2{l^T*jRBLwx)o$D|x$7jWvNQPmH>B>!;L*&1v`-la8(R$eRw1U(bzb2_9z4d& zQpSr>#EX%{`;ggPUmu25ek66Ra_xrjOukl~&#ZVD*7`B}h1v8Iv z*=`1s9fa6&jMywl89Q1zK9`iHmN4P>=8ea;m;@$DDCC5Lf#KiJD--tO99|8d)I`n- ztQQ*VgILm@vf1@+vh+R8r$&(wseY7EHAB<4oMPJL$%=tG$%ubI}|K4_cE@h{1G+Lt0Ymx)z-K`zb>BdR`7Sz zlA%%HH~&JT+djSjE|*=U_Y>@QYR9GD+wTKby!=6mR=q$!0rfuL@WhCj$Yc>S*=Jcoz0~SO9ZOC*;#rrH`KoCd;`UUs9#KgoYC?V@Y`I=dD#So^*=xI7^JtgR!X=dLHelP?>G?X2T@woA!RhG>l@hj$w6w>^ z2OC-}b^ZQwN@^BP_h`;t;(7>B(3Y<6pJNs7j!b*eG5K$ThXP=#U-&FOuL2~6g<>zD z4(8V_wZ6a95!O=1U*+C56r?46)1UTvnMfIfM8WSF0hiql!pk&*3c3P+h3{NzT!*pt zm9|OZ-t@4$It{ti#{e-Uhg$3jaBr&H;D&JnLb-faEvQDI*D<*bYA7F+AreFPc4T@Q zF-?BRrM)i&99MDkOOba(iZEE}26ee@91ZGWFx+0zAsf-}c!9Fm?{Rz^8ykfmd~i=l z{MQ5$Yy8&r;d^F;67t+`q&d;_XLN8;`qkPqu zNtlW3`LBqSy?Eg+V~rO2c-iEh+lq0rt8O7H;`e0=H$>%Bbfu|tyRy)&j`)f3}R4IQyYr=ilDB`d%Y!PD;K}RYpSRS zruMtVd9_D#E3G?yy6@_+V<~*v+#`>wL3|-z?1cfZ!^OYSIL{ zqGw{+x)rwDu!a7URsgyI3jIp39)X-NIy(9tfDM0ubCU+b3!r5Hv1{qCe{dCU-?`Z$ z>b$HDz2q&>4-5Kb0VIw9?E-{uDThWojb~Ame6r?a#c5GQ+cQUankIZ_XJ>-If$=Yo z7Sa8(EOQ^u)y@P#i{6-*6Q%_y_7TaYY4%7HFr&KtZaR&p?7d z(y-GjnyHrd1B@(g!xQVVI668yFyPy`c9$w0`HunQX~Dp&UqPoTH`(P`X#9T$@<_4t zT)BF6H@egKYlLQXRgY~2GV||Wq%fde0-zM&LpGamUFYWJ%pxYzLB-^R94|2eVnUB5 z1HD{a_D3ScmIm=?6!24CjGgSSgb{lO9gGGMnZUaN&9QbtfHOTR$=Z@0XM^n>XG~juf^51R(=Z-?F}ErW&+C! z-ODtwfv*7gw3`3>_d!ZO(l|bT8;nq1CnZtsdfW#wk`x5c4nR(cNl5$wjfFDCyzIAP zc&9OQ*CvE8eoEOX9A8$AZ1KZ?(FPw;Xa@5tr4SKlalgY8Y}yfHPHX%6bq1GG){@*K zl|1AR2}jco)GZIW+>&pAWZ*R%gSUi@zT=h1(ZA703f_SN!Vj0Q8|wP5#gT%7jn`PX zKa?^$jXkat5pg?%MqUAwA+y`9&(QErywrD z;?QIIza1(586#(BwR$Q^B8Vx>_=sj5=wEuZ1yGWo+A=IL3(#26f%6yCKA=&_9a%{L zY6fWM|B^Gjfm>}1bY-}S#c%8KB1kEAnA2#(J0sB6Pw!j*7(zO}1aF0d0{Ro0y@Fal z>y?H|(e4RAHc||v(XA$rCqP1Cf;v+KasOSaV)d(Fnh3yoV5UK$?NN7^latdNT4;X3 zu6AN+Ee%vO1eR1;POhUH!i-8j2m|p@AU#ikLjY~TVq|0laHJhHVE#V;^-I0HoE#ns zx1WYPh^>p^H(i5*FQpF@l@7j?TLDPr%6O^8qg=8pt74%* zy$@6=khfO%#NA&NnH;kdKUtl~cAe@BP3CI~!;V!Fs&WLQM-%%Sg`Z0!ee8rtG_dT z;F^7m7cuY~IDi^_3CB#QnuZ2M%FPWqoB(Z25d1FKIbvcHUk7h~0x}$&k*I})C;+|X zQ02z_nT)3kJ|AMfgaGN%4O^ClUGjUO3CI-M76EL6yfX)v96_|e4^aWT-2p$SwU`Sy zyKs#s=o};PHaj}Q1+m=<#FzZrppOV@-2)J7-o(rdS-1$em}?x*X?>^rLOptQ)o zOG5JNDhirZ)F;QrZh}_090Y~Y0vTaLmNp}$7EeKALQ6w4YiqJU*?=@q;+*CGILj5Y zHZ7^qHKab+{l%h?FEclt@9k++_N>u?5?1f0hzM*gLBVZq0nMuUL6rk7i=PjS1mo@_ zY%dsJ`G2YqKb<+7)Ga@qPgAq_6K~8@qE5Sgw&-`T2E2`(n*1GMl`G}eV*{|Y?^ZmL zl=K2bT!4kaak#>8K_ATBOw#03)t&?Z*mg4QK$7>N-Z z>ygYO5gQ$yv2}1T?YT6NMgz*KX6QgfF;srZV|acA3*=T`FI${K$TqR9`D zpBRI6s7;zh3GV1)kGkIWmafUK_Kt7lQ^*V&T(lKfyjQ=zjUgI1hb_wsl$C0l+K0ajVgL}74(fDD}x1OHfCLJ8SqvrOO;sw1ga##GCR`J4Irfx-CY?`f!NFq9Y}6efSn;_R{#b>i?$y;Kmq+<1eRMc zpX@WQOO5wa4-b$1D-o^4c6EEhn>3H!KFAoH1<{=OWHo>N*}m=uocwigIy?oxig;nC zOR!rbHB_KNoNmh*xX5nCi>j%qLCa4o5lG!jZ-PY?Xg+jL@3cFBd@Tjtsh9*9bH#%D zd31(K(!9uVi&)>rRI!Od0c5B@0P&*Gblc!MLX+c{nTVfy#zF%=dT)(RLhK7<22 zO9C7f&>9rjIzH-vXzfHsC}$dy%$^2*)5iQjFB_S-o__T*ag`_{nsGzt`mF&5+D~$hte#ijoK3bg#0%61_M7MCXy({Jr!2|eg($tw zW*ZoCs)WLGPaN@dbL)Un1^6GNFeUN8SqiOwFOp1_!-OnTq7#%P&%uMwJ)d?BJ+kc4 zqenGENUrt`v>_!#;6xB13m2k$0a@hVK#H}6 z+zEo7BmR@slD^pEqazzd6_x3w4ni|y<3-33T@}A@zi8@-doqNYfeTjw$##Ybe2dK@ zKajD6o+oBi-p$R;3#hK=(C-JJh1~>b6sCQU6Pw&I>%^mC+nLBFQ=T+~>5}%UmX(4U z#nnmA{*xPwr<;)G;M394zK1*oTs0OU5ag}YpL+mP*PoUk%3xX|T=cm=Y`@NVMpZ#avdu5T>C;P@rdj2+LYe577f%+&%Yg z;}NJ|M@dm|#^9!@Eq$_m_3G6e+{vyr7tw1};?~4?*g?PwmlrC^%PPvVX7J}K zSpx56n%f|nTZKOsfB@UH5hUJ^!N1R8X@Efu`n(^aT%szUxU$&gUoF$|=Afgi)A{g$ zA?I#3FC`g9WF`Xj=tNO8X(1o7e;7G)UJ{vOrUjQO#=W4H z40+`6EGa&IEPO-%KK6>%1uCf3zcd5qoLy8lc)MG}B32+y=?u&_K45g9n?M;lySt^J z=?en|T^1lu#)X6)2UQ7L#jTUTfu+^ei8Saqlv7kh=eJyN@6^$)y7yREvL1m+2WT35 zdrfZU{z#;gy{dWB-JlS}oHXDIxy%baY%f5!hC+!X^vbc6HM}={oU3WopPJ!;V&;2l za7xC`sUCWf01vM1W&)Mn)O? zi*s)wM=aJ4{pO|O4eEvPpYtKbJcEY2z-~mr5SlrGIGY0l%HYFjS>pVZU%MhS?Pg^b zgU<6sF9%#DE+%$|7yFY&drWg4u+K9f_&8?K^3n&r@eVr2Q=WG(g)eQU%fF)JB5rEd z-B5m$EQP%?P)4CH@WzDi)(X1sUjcLG0Gw%HO+Y;iu798<&W5OLgNq7~q@m<9{}l8H zw-~&Spl1LM6-m~}L~Ka+Jhoxw-I4i7@fxn>)3?W}KL)pgDGP%U%vtKpC-!M6Z&m*K zj$^;)i2rwncC1C=o;;7FXJb>qHOzyWfC}_cowqr3O3g)`<`pGb&bqFoJe3Dcvvyt! zcs^X1`bpy*)d8E=!jcA#Q34WX`6v`9Ar|fy~Xr>)0k4k4QeyD&1 z>G5Y31cNB#hV}cvz+*9}5^{>)7Vzn}F-xLGB`r?vB|{WHd|Vxvt2D$+-Z_y#r|Mc+trKNVtM+*kw9@>|7nBY}qwr?mF8*P)LZlh}CfJT`(3Bjsu_+ z69p}XEPzSWz**)Arl@zmUGq;&)Lp%K&}-+4sajxOv_Sscs*pY)-Rp^}>dz_Am0V-; zPrV?$4>=Ss#Z`gCg#fak0Ma$-ZW@q`|ZhlFe&PuUq5qOy*Pi@g)!ymv*q9X%NKq?5hpi%?WYVgNQfs zcl|dTpA5b&I!S@MhgC#u7EbrSBIVk@YA-g6J7U9YjEky= z>x_OZFE3B&TX2!x3zEnlut1tD0q+2e3UDKY)_CjxSiiHHvZAY+7%RR))OzVa&|;rJ7^_67o;qUF3LpKy7Vao85m6Vro%=|a4s!x zPrHk~G&1VQ@roqn*w=g0aS`we<`UVh{!DJMgB8W@fgbe`*;2#zNc}C<;?t>vKC!~+ z;^!6@Hzcn?`QM;oa=p9Asm<{8VoT+tkqN+>GD~7qWvo2U`z|B^+v$7qVgBJ)L(_Fm zlhe!=Bn1mb7wA(zZU3)x;6G;lM;ilRH2?9;GkPdhOW$dBXM^qc$ZMO6%?lXD`iBuaQ@D>kNe{tDDHW_v6G}x znAc))Ua(tNQ8QlRFaSCH? zs~zPb&2Yf+?UH-lx&C)BRp^Hnw=n%-vo>~M#*G;8#v{i3Uh$~>Fue!ogKXv}&6+R*weC7&fK?$by$ z2w@=G!O$Z}uZjEC>$5C%Pv2!YZ+I?0y(0;M0t2Zx& zW<`%GeNp0x{c5%F{tahnE1a$<9qY2#Q){U(w#B#|%tyYu6bCDNALq8GFuLN7yTbcv zy2m(!F`$O%tkf|agAK2KBS;XptY}TRpp|Sj?!wSY zh)ILL$4uNv17JT{=|r^4ogWn#8rn|1=l=D+K(~=&ZD!3qfQY&wy>j$T$;eL?s0A`_ zGi)Uhc@#}p$t~y7tX`;?xJ@^i>`|9co1BX{6;o3dq4n>yZJ%d);%wf$NBF&&8Podj zDQqZMLPq*IG~eji9c*1yZr7PzW~T1aii;VkTC%TT8O*fy!3-n<88eymWJ#Lo+^3Lr zYhY4f5iOaDQ#U$7k}hz|iKlMlFx`|sZ%GW_&10_Qh$u0#uSpdutNbd!Dl=ITolU z8IHxwV=855k!Yf3>*ESlS|3+7>^J=7S##AOcQYy--dw7Myp5|Ih=3SL(B`CtS2jKt zH%$TVsM8n_WP4$9yICUIji76$`LFEf5&y7Gi{J|ueerq^Q+_fCEp7}cwe*50l{$|5 z!d_%k5cVyujquew%m&XMVOHL(<30;4t1IE?*yW?1*ms6}+Pawdw961#Abx^6o9}Sy z0!tqAVvHHY<~NK9Ib_9g`QWX%AT4WNJc&_f+w;G=XDf%Hu;A?-;=q`?B_a?p@lk(o zW$8>smb*G3o?ZHJ(flrg`A}!-zy;u#zc&zKnA_Fa1Vyw{IB30TW(AM@n)48eJTGV7 zijcHe^d}ck!La#QisQ0v(jMzJGji|!X9luWn4*T)nS3QuuPui<9>Id+?QmS$>NomzCTwQD<;$%4V=xHPV{qie z{j*(!2(=e|y+^w?WVK6>itUTw2UjXh4Ia_R{D0W*eG=cf>ml~fr6a#{STI)=z$3F# z^f(ej*%0=gZ6&fi_zZ?Ef2M>pZ&h>VUIASfYgE$D>YLNLj#>HKF@s>;{2c*13ViQF zOJ$!6UjE0mED=e{Ed6{-N%{w-8dg@#d&75+Ooq| z)3t6YSU38_Cl~?^DoftsYxC!_vJ6e(zknRt4#(uh$V;%?AmrvQ6NcQ>jCa>8oGAr4 zo<9BS;*kovYbS(dt&d~j_^Vp8HQL(RhCqyML?!7fX2b%A%Gxl)7X`EYnc!rw4hWm2 zxD02%@O*x?WC?1je@{ZOzHZ~ZdBE`6)pGhvM^zUPwZ zT^x;iYiC=tn5u+aBm6CyT?ewz&Mf13L zCozlYN8c+-W?mWca~Cx^rLYW2IxG}6TAU4We+pH#65@C2>F+m)@%|^|;#w6d#!eJj zJ2B!mP0K+wPA)tnY(hxKVL|vqOD{F9vwTC6(~0y+_Qx|05g~ES$2e^jYM&qveEqWw z>QtkG;<*o3y0AL7Ft3NF*qnbgVp-XXb2j|toi%fP4$m9P-ss>o`Pyt`9ky8cyV^e^ zzxoHp`9-lSu3P1hiN`B8tjJHcg*L$H>q#ix!Xb>de>i=kxlAl{Uy_=Tkf2qhS;!|} zHdU9Pm=_7K3}VB~edd+y5Lo`EBm&&eD#UpJq;ja?95O~v+@K1zZ5WkQ81$+O;LcpZ*gq9INUc(Viuyi z3aW;_crk3l#I%gymxr(Swby~;DmPtTuJp0IW6x{fRP$8UGiNbzthSvp)Grs_m1lbg z3r`xx)5eRqA`Kw{45=WaS=Qlz6Z_-bza6EBZB;D71z*uPg?cEg+A$eqQ&;>-pDNDG zj^s$zLB9*cWE!-?lCT8`wFuY4sPM`Dej*}BEt&57XzygpPLZ7at94CxYHzHH&pgh8 z!*jS!QM_)Iq)4%s9+|`;`>l=5Mv017m$^l5M_=L72JAh5nucpQvnU?x)P1f%DyPDD zJk>?59cL~hqf`!>LORpy60NO-Hb4DhY@6y zUI1oMTL5x!_0(>XV|;Ls(`l*2r+XlVWUcJQjuACOQr3o0dO zvIPO=J}}Ci_UTrFCqiCnX=!;~9a@j`um1i{AiRo+k4H)0GJW&r<7K}f{odX4`3AR# zdD>{0keQj;3ozu(9I_{^!huPZe?g8Ea9tS71e;&KI@6naB=3s5Z>E3)zZ*lP0^N=O?ny}PFPG4t`eUa<5 z6ODNh;_&=+s=zmd@4^P|I%O*61O%vimpxVGPh+p&mpOjG6vJbOTs@SXIEn|>TOOYK zh<@?v`c?c&I(pW7@LOqCGRSoH_l%kBa3s@$=U)Nd*m8wNH`EzI!9Q=svPKH%|2_xV zEt|3RK9PoKmD=uE6s@RC_9zP=gUi~l%#pzJG#UIM+2ut z+4tI$?BZxvBmhDaRevOE`K}}&;>`S;8%L#P@ldZKe5wiEU#>^GXbWE9(v?gRrS8$( zGSJLIufB~0vt%6Bs$)LSH%JomGYa}P?QVa4Di_eP%eExCG4s)MlQ4l@dgMD_?3|tO z7bYgm?O`P*oO8PaGx{wvN53PHB$qee%qck*iu|WGe|y(JBB#8x?v`Y?$L?ClpCNPru^12CTPnvJ4BbKQ2G5yA*@WcehbU_>l#d|Q zgE;#60EPqDC8c}P#VcG!=pKBHfN2HL#$a^y=l3X0fCT1Gu-0#@EPl44{PLx&x;kOQ z*vNMJhOw`{f7dUThm<|fu#Y-7 z#kWW=E@Kv8CU#sI_s(;+=%0t$pdV<*Ju(`L!#h~%0cj;cgeK-{+wPNegd{32H(7%! z&);DmKH6CvA6{s-CdtyPBe_@~agFM3QK4QwgB65yWu~=7<&y-{XMVrgJ7bO2f449G zTQ7v_h<2Zi>=J7mX1iS`Gy`k)$lHoy@TVTMal(&$Tb;k;Z_u4$7_2k;_>rBMZp^@Wzd>Zz{nEhSgqopV15}7(HIg@VX zEUkhzX)o!jvM02np%JLPOz`lau3J zUC)7yau{j(fgsa8Fi(a_P|jS2?I;IaXI{DW5+OfpA6978z=yFlOvph|f#O#0f7qsMY^np#>0XJ&qU zCHcb;iUcZdWE2!Q504tlI8@gL&WD$jE4gFerSvfI>n|<|Y^+%(9$l-&pf8oqyl=V= z3l;ArYkpimaDCg62;=#l5mltl)xATXrOD7ycS!%y*H@N}aHT&|*@qyb@VTt_=B1h< z&f`(xx;H|#G|l8ywv8eY>X__LejGBl6HvE88TDk%-en>YC&b!{F9u^&^|kB6$}2+7 z!js1eYWD zM9+$BFvBi^#)CHzUL1C8PoI8&i}@vI1UEvVK$zs%dZ6N>V8gBfk|=geiuyodz;zb{ zm57LndTbSXsRW73Ai@YLY!rI?%!IX}Uc-+bQ8*Q-q}eI-6^CQr57fL|Sv7woJMkoD zx{mG06bXOXj(NeKH~MIB_t`nyyy1K))5e)V`*s%AU8lPed3&yN$sk8@4fpe3Pf%X& zNpXlFC~?yj3g92dM9q|i;3|0?v;EZ(g@`yvzT+bx8p&&Fj`slGR})x7X~>I;iUPO{ z8kp;K0V%zPw=#IxJY#(hJRQDQ+XX*?aW$%c4I2x~3z(h$YWw>7iWF+5U`VAWCl`Xx zo*Ah5LF_B2dJMh2n|uNFJq6$)b%y)qELjp87Nx zC~s|Up1}Cn);jzx^!NdItblu|C)9N+hU%W!*!Pb2f%*fA8y%5hP!WY_JkxPLKai0P zLR;JAmXzP0t#RHNXU&poMe`?7Kxf?vZDrK4n~C-05-^7b_Vt?+a@P#;Loxn(WY}Kr zchs1=QTCQY@-Ilr{(26E#mmx6y{B!YmM9cH%gH~O_SO`pfT7lY51SiScVZXwm|8Qx zx_C{m(-Xt;tYWv|xETQFQp-1fYvF$kKozKt8wFjAZp|&wBdAdK|NGvl5@P-V#ZRT? zrRvjChy7PEjGeMf)C)C-PAC+<#O@@>9k!XH#|jG2;Io!IQLaVzZ++@^%n~Z4sS{lM zL2{EHm_|H2*sSt=+-j1J_;m)?-v22o?!h=Kgi{g_XwJ=luD-IETNEZNw5OGkqAY&7 z59uA#4-5{r*}3{R5uaV!n)c-gz1D&qRnS|O6uqbmea`Ur#&!P#iFm*tUQ6ArD?+2M zA;*&YP&6Q9M+L4%)YGOCE7(VfNOfVlB2k!!~#IX-e#7hPWz z7>@q^`|ueE@z`Hxe2rHaTRjB&yPtX275H{q(Rn}DHUSD)*poxI_N0mg0$E<4I-d!e zvXQNAkM&HqLXs_jum54Sn4xci?q1RVIcsyEded)hP`;cP4(!kWa+_`Q+li16r55W6 zh=Jk0C%ssUdad|YaWSj+}c|I8D~T?eA+UucOAK_-KD6p0qS(+*Bqo9FHtg7LLs_}*Qo ztiq8ZFO*BNyxb6e7iLZV!H?~RGrh*CP!DTdsbHIvr7W{g#eg$prgT{R{kY*^tHt#- zEv8S=LXc6B$m1ignBbej24yW989ys?%oItx6ZEnA-(%n4VQ5*z5K~P<=X_vH?a3E8 zB)`PiyuAXNmWouN+Yrnx_e%o0lCf!GIhwx=+0ajWFF()l#WjXShQm;cM4;6@W2R2imfAlpjK!JG}s-k+<=Yw zJ$Z^WN>MxvfrR!6^yGa1kz;u$=(=eQ$H~TqUr6d;%kg zf7HTVtvzT)Zi$;We(y5?h7|Ebuyi76TXIpc3+(`ilk@>)bQv0z^~oo=A)oF-?`wNU z$7;nT&=Kh)Bz(kF?&(pA4=sG|Wb$Nvh;?+X_c> zl6{2Cdg@uVmOa9-q6m-vXmuwr_nrmu#(dkC7Wo99m0{J=O-b1tFVh(-l{xjy=6d`1 zSszTtQSxUl37X@H*uL*@+e-UKl7KR-0`TY6ls2}yqD?zn$4P-3FZPRpsD?F$it}K$ zRYW6;qfd%M&uXVJQtE~LPDaRBOWxVkR#ic+-*&b%eD-T^e{Wc=baj>d8dPYzF^<&! z0LBbN6ck>)pA@^d=8s?FX2R%W)`ri$Vr=aYMe~T8*idqqajW)bos$@0vf@54)x17h zqcqMdT>D)+lxEC16>+t2Kd!l9u}Eu!F-2aUwlPm5Z%awd(MQ%XC`HrRI-wH**DTP6 z?M&<^@u^tl>kszd;=(YpemG|`y`L_BYh3y=N?Cf0Rm#s4q^`8eqZd8_MqxOpVQk;p z+Uk?QfY{Rr$Wr=Y?;lmomZ|ZGGY2*S?|a@D*wAtwCrZkZ_;C;m4HTbYcF^%YM^8Sb ze%=`>J@h#KhcN>oD2u^lHnAUa-smI2{;xU2P_*q3;<$yJcw0bDV!re5*zC{J z!&i_SD6x0OlU&4ni!+a*@UhXK_QMktg2h?=T}5bHBwF9K(S)edC86MqI;vIfMc=EC zgszKE?^3K-to*aznA)(N?(aByd_fBWO;qd&WpUh>lr-Dq^xQagSE3inecSBonl>|^ z=X~cXy#ZM^zpx_o(=deltaO0HGf$L`+E9DLZW@!~@MQD}SOH%ymb}}$v>-Us$N6H0 z#c%6v`;=qP(2=~e(Co6frL!eEC8^WgeTlmA6F<)5`Xn+<(jTnugzrfFJy1M3`Q(s? zJ-JYW#th+9OEp>SMzYMyeQWh^V{G_aQaEQw2{MH9b)MiAixEOsZhG0@I8-F%`H-cg z+8I8Ou;4FmDFl;Ox|H*)R1nJ~W<*>$ETxSbjRn_MT90IZ#V#flX8SC`A7I(4MBN$LVd`2z!-wWnzt&wtMwyxo_&==m{NgN{FQYx+f>*&6Z7!t zF%SY(ZqHOP3qg^cfCY$8LKJ{&))E{aPr`+U1`dLPq$gImKo1F4@011v1-cxQT0nn0 z3#47;9O1x80|F&X0mZz$y80(jnT82#XlMXvl-s?m-qj&GhaXab{N&6JT^|&YG-?4b z0{>z*OR+Qi#jG7}%6;(Kj#=g;=c8AIlslU;WWC2VWE7{h$b$I2`y7SBXZfzjuR z+~7^S!c}VA5*RK>vpST+b8yvsBu+;y8Js_A75~Srt@v6o!u@PMry?o`O^7sZs?+5+ zR|NLkm67_CczOQ~MZDeNA*6nijgy7Y$+wu_*bWn8lP8OPzHa6x)HKkYdkCeAH+^p) zg9x2(RjLotis``wp=7S^xGQtyNml=`^m^A)^w;!H?1BUM326(Ie(j{iyRWWhVff38 zpPz zEcVo1l7@G)X9Z_@%k*^=v4|vZ{b;VW8)P+%Cor*PiPVIv!#q81UnA12Wx;70wQ5c2 z$6I6gs~e+8bNah< zgklsJR>^}+Ra1qswuHEzmuN?oeu}l2`2?n8+GW;VE1)lV_^3Gg<-;@Zvlq%)b;6E z1K(j(!84fs5+h*{<lu7; z+9iuW1}8Hf?!8iYCJ!y|!>Us49MPRQ= z6_Id7a)gzNSkT7mg!%C0a>ZHu=WTnjN-iT4ck3aN6b+ic26%v=sQmYrq5D}lHUZd_ zJiHbna+6i!@lOQ$#NjRkEOx)X0P-JCLLa{WU;mjOCM_Z`d2n8WBkI4ud8E23Ge*~e zpOrY$g+Oe6M}^2<{+oe}h2ekx(egb4O&lp}`nn2wR-8KBdf9(oZ2A6qoVS#|tnPD` z|9!1=_&_`1e|`@13qcH!Eb;&UtSZk;Fz^$*yAWt0f5!j$XS7oIy8ruT+^f>U6klUV zvEuM0QUE~x=GdcpEc!{*R(nhPoaHWq}Ja%-$9fXotw3ky;_X2X0 zeienUs~*Ooc%(KND0d@?v295hYMxnBQ{&;{av}_qNAO->Uj8isYCSN6Kg^3;EXMw@ zdu876lI>EnWbFRkIl?VxIlRKcgF{=PtAt~EiBa!%I|u6d2g5COVB-;siUJL0NZndEWfpS$Fb4T+Li(r0c1a$m0>Z( zZ7%wQ&xp&fE}o>Q@8~UhAjoYE1_QCyXPdcNPVG{|P(X=lQhf1358H$yPxD&!6dkdM z_<}&)N;7d2ilqMi+_FvS#tvwTf*t2-l?eg2VRd5z1z^`W{1hi+wZ21|E9|SF#B~Gq zCpm!2GWIxJ6t@7Xm#|Cs^q#NhrHP3;KfFOZ{^3!uGrMwX{CV11{WQ>q$)OT=48bhP zqjP~NuAskBs)MH#@V#-nH{-!jdgxPPcMSf^H4ipKSj?xFg1o#lAS~-m*d6yk6@ys^ zz-Uj#Z(YJsQlaeEV1~&2`NtBdoJ(Iaxe|qULFg=q3iriYXG6i5|)8bHS76a*{-DRwpbzCd1Hf&rIQQ;Z_-T*#KN z+1%X_vzjk|e_=Ut;Edp=@IAEfolL9tM2W3VO*bAzSrl4%*Qas-VNzcL(hjAZ5vQQE zr~26{Fc=_7zXpDq&=1OA9f`y8l}iSOhNw*-tsYhhV_-sSgmZU) z0iH122eI}e81Q2ufT>N;=g&9*Z=0*m3N&|i8K~$_>+0);(1N62aa_2kL;EbexHt(G zAcgR)waXxw58I}JtLR|*E${^(ELXz=u{Q6~(+2}|vCBE2%#qNx#L>hLAQKMAypFjj zy#M_fA&MKt0Yya*urA(UwEyYTt!2rhk%aCHdr!rHo;L&utonfJ`Q6}LyH?h3vYjP`rUZvJ%`t?qjlDB(Mvn=)gX6fQsjyL;ttVPi7`ZS=+e zHK?`k1y@VqL87s51&z4pJLNQ$5MHzHT%Z+K)G0Nzfq+GD2o^!8`{pAJ+P@v-8YAT9 z^qLQ~g7;<}%>IOmHPgQ9)Mp&`UtTJ3%9Y$3?pj>xG(>d1I5^Rgbd{lfu@@6`qrhY=X< z8#g*flLB*cxYVNA@+%X>?^_G0k#{BK)XSqhy<{H9eGvAPZ6UO$+y*y#4j6JBsm{hydZyg$O9oHRju2u zaa#7~-QAxtE*NfYf?5jHhnWITUtSqYM8!b(@ZldX;3D#{v(n|N+Z?}AHzc8Q)E7|< zkj?@Ll=uLwL>}x9@^U2Ypxvy$yM?eDZC^DO~l40v9a*wL9w4pa0V#-8MkIdB?v^P_=EHpHYDHw`hxtbFO#HzS>Otr{CDduDDz)rS=c>>o7ZF|a3~fM!?=uFuoVl7`7Bhq5&>D2 zg5@zTX{ao?pH0Y7d(!9Ns_fFf>gX*8EB=5+Db4WRz0Z_3vmW;hPT0#}MMhTkbmBWJ zFiVlcARzP41q8ihkWn#2fJ7n2x}cq2e{ytW%}N+bN}MMQHxErroJw8wUh}}-wx&FF?m*yYcu@%SEQk4c`TH>Q6uYB$;sSluo`ggZabNNCirU}GNESb71IiZtR729j2V!3k> z_&N`iR^afQ;$nq?;161$Gq0_!RbwIUI`obq*?rv=pVzow(isw!G(D|ry1$NbAtXUc z8iDR9-XxLR?T5cQR%R@T^53gPp!ntlOCS!ASG|eIqid3!l*CX7P1uHXc=GGzsS6|i z0_Ja~pu}$x)%MR5%hjG!I4vd#2|A3{JN$0H6&;X1kjh;3IkH$84ucZ&BduAjs15l7CvW z;9QC#IXjbeQy3EWow-#;7#!}}1eQBwpj$h-?tq?6`P`Mpl)F%qoqSy;UE zFwg^~*XWl{j~8u^+IGqR)4J`YM9>ud(Sg;&LUIa&rg5_<94|nLaG8|t+w`d1c1^|V~g)1dE1+# zVBO4GzPQeDWz0b;!$7zKu2B;`QXnCQlnepqRUO4Zum2@Dbur-Waifz#IF3Ad)ykn( zA8PCBG7wBEvQn{S+P{?rd@w+99zeEcJa<~z5w~BcCxk6)Rq>*pZNIYjc@lV9vlv=+ z3e~Q!$Dx8F;JLPT!h2xZeux18*AY%%4j)_XIJhcBiY9FFrPXop&7b8tEd!~!pZ;y_ z`C`MMwD;H)5q;}oFr(_fH{db0(ft}@T+3imm(y&zLDEN51>~nVS+4(z`4k!14X(p+ zzzCUOVq&0-Ilj?f*!@`lQUxq=T5cai%l}8AP$odCjThdixW@i0K}|Q9}ebi zz&tqsgb;z84=msiC3*jDX!xl? z6#bU&&vYbC;E5VzP%ongcU))inHg|f1wMq!f+;9PAE6GTFh&;{Jn^3cEKiLwq&M$7 zS)Xb!u89QoJci(KnOwmYx3nSUZ{{4QXte=|R=KoIAa-uu5+lZ~q8v|)p_nVXEq=Up z>7zwNIa^b@4GR&?&D#T=yD%NNy7DiapLXsIj46Yruw0ld2LA*pb+Ds+zgm0gHyYmkl4xCAIt+4JT?k#?SzgB_n4p&s#sN$Y*XI1$E6i8-;z&Ul9Cx-C+nf>K&Ams8d6fyt}z6~Fm{=IBu$1= zQU_~CwlC}OuUH-2txJJ*@?Q2hUiqX}o9}h=wL|WKsVy~4{!~mdQ9We_K;nA9iL3|p zbag$@GQmSq1+&K)P%G3FA$L5BP;Q$UK3-ndO8brYa>EU+Y}{xTl8f1)k7tD898J@E z^NEG}o(vfqP=4G_f1?fqp-(L|j7lczMeYB0KRP99D5nuHnH}cczF(X2wO6!+U$8`LfyCfJC1_lNSd82PkExw(9=TJ%C0z)7I0J`?` zg8`DH88CYOng4NWAQRjjRz&BoPCyNB3qnk2KvxTFQkIsM4{6~+K`6kr;0%EPx$U?& z!4e6mgJtlbow}bFuKxFSOO%pxdnP3N`*DMG;`kkDd+5q&|={gKGCE^`G*FCdY zBo5(zZf#jMC3gd9VFpHb!{qez^|gD4hgHXS&%LmoLsp@(eBk;Pv9PdcMm%EAJ5vdg zk;4osF*HR;p8yl?&V>c6xG_3FKhrd$b7ZnsTGl;T_`BUqSH{z<%t6vs;_Vd+nZb{ypZAYn#*5(sn zt_ykSI4X4aepYe-5AlPVAc8`Wix zjfR>F<6|)m%i7IQ)G} zY~one)w=b!%TIp=hHUK4w)vmPf3>wy#Fb;vmw_T2zjS#cN6eo$Ji{X$04v$uq#G+- z%M@LJg?|}jwq8I0{RZL&5MZI9p`a8E1kHq@A>~kpWYk09%9TiwSE;BQyF)0=h4Afb zbhOFJ-X3-ir>@xZmSCx(jUzCfd*GFCgl}1=CgNbC#;NCU=mKtP3y>OO0Z1Q%^M?;; z!>8pH71BoOnBYSPd2<1cjiP{#ib#x2!*~lpB+JPk085i(arN z1uz0!ii%H{m1-J~g}+BA_7hb@XNeu*be)8A2sAtZc=`8mF61niVI1Ju0Ij9{bZgid zIGm4gt?l3!}*O+!1_)0XV~3R!X1&cCqQ|a?uU`E1CLB912FCEH9&5=B4wcD zIV&n_Il0~`Dl6XK-|qr%#ueztJ}?CiWX2tE)wS>l)S2ey)5>DAE7^Ur$Y0ju6{0RL zukJa&zINV!HS}klfA7h1a~7zL<4noH576?I9~}lJSHFgaP&;`*x}aQmF`aXb(`&CM z>e7ZA`LnAX+sw(Ap^qR0nveBt-`803+>cjLK$zvjQt9TX6OYv~j9p&7XPA?Nqh)w- z@b#DI=<)`-Md|+WYmV4g?wwRfaM{&^Vj-XVK3r9$t7zICtYy8wW~TIO2Z%JdZcm~)u3Hj>!~cP$-5J@)h}bO zsymKk5a2(%0oG=~4*`kCaZwDpL^td9OSC<&)cv~9Q5<0mLhRVmx*o7p!(jnrQ8K3y zh7nHNFW!DX?~N-ljY9+wCwWhvGJ)G`ga1!iRwPSjVr2`Kr1T zl{#pzRud6^4M3CD1(GA-Z%%D8)Q~v2HKs~BZ;w9yn;L9K7z@TlvGBKxlBr;3K@Sjl z2L@u85;7&qd3q&^`ehL{d;lT&2Iw8FM{_a2Gy-&ofF%_UpuCx&jiwD;22qQDfD{fe zV;;EFRek8izkjP?DcbDP*~wb~7(YJXi>5>3ULCWuk4sA%@!xr(#of^a;FB`~Ov^3c zjdBr$%BmHfz!TX`EG-dSU6p`#g%$)30QTi1hymD(0v(a$XPly(oE$!8W~+|?Uy@y( zI0r6&2U7q&D2<7isVE1DvZhII{256@m-p7yZW^8L91tKEioiRHyz$EknWAbYdX_?{yitu8fE>0=cujw-dVwbl7 zB*>(an&iC;O_nqnHGAqg%vSf-fG8B2tT+$7piYSZ7&e~$8`hzLSN>Kt?#DZfl`b{Q z!c^I2YcWNe(Fy4R4LBmV-p8w5ju`MNmb@PJJxwP{0NM_H0M-G&8nDH&-3@niAcCU* zIdFI`h1d7JV8z!-9@(aesAnq<*aYIGVK-o6*9I=@?n;ndX`-inoxj1x!*kRK4B?_W zMcQvE{U+jljPw#Xk&Y5XQDe|ExMz5}hYU%nqOAI{d=U7ge4jcwGymkYYNed=YB-N5 zIh8;wZ{b+|^otyfsz_s*BHIpIxe$iKvqqjA9oeFOjzl8}eO301-mu;sg^-}!aTf~4 z>w5?6>&$_meZDxFB4T<88$PW(6tq{%%gyEZNN`uAxUyXZ+{H(a>@;wdAERzg@P6?< zWVOFiEttM1dM0C>%dX_O%H4W=SypF4GOWz1%KP-J@NZ7u=ko&2$5WMQVh64-%(EXC zP$&LIr+sOu)tba~0d(Tw zeU`a^Yz=}q!AJ~V$wOXzV4I%wJ-&&|yEfK1V1mRB}xKtxqH($!_*pOfVZGIO(Bdv_+#3Cf*zWxyfYjzha7;h1= zlc)8;8R^vKhak%~YB!v^$YiM}o-AUA_2C%WVI=6^dC}S)dr7oK6Dk*F+&AGkNd=@hI>~NzR_$2f%fJ_G#4M-gXZE_S8 zUm3tU7wj&Yv_QHqCSYd-y=0OBMqc~Ww6xCWbR#>UYRQS0vq>oFYp^M=m5+k*OCBdl z)}&gM;uq0qV(94N!}K2akWJ;FTEv=r+{(SB=#aLb&EfE8e3Nvo_bB;wm1}jqCns_M z+Jv8+eA_AA`lby`4w1kQE+dJ+_$HURE5I~K{^E$obs&lNwbfvXR?TlH-YV<xU zNZja+;)$kkt=Hc;dL7^1okeNryx6ooh2?8-i$bEpk>LRC=g}$cxNPfoo!%hhdryBY zf~KM$ZZ>1}BNvWVK6ZC|e=WR4@2vn`a!9WqFRib)^4lnvq{NPhBXf4pBsWCwJtj6=(EwQ9t1B3pgYd6#*b$jRWn#RW6}GG*(3Cnpdh92q>KI=~&z z>waYNsp}08^%*w2V=dq#tk!!iVyDg}%<7lXGhae#StJNW4CuYvzHgGJSkB;HKS;HZV*jea~( z5VcND4}BFZGd%9l*x^)erk1q0;tP2m{t=%z4jY7`f{Y0uNo?}IBm`M)Kw=H%PoKiW z*;7sv5o$~&&_R_0RP%4Ljp0w}C@p6~%b_|ox;1B>oyaRn0N{qQ=Ys!7M&0$$A2evmU|vh;=RMZCJ44UB=p+ zk1BZTq*32wRg6syS6hq?GkM>&F@E>YU@a(P>znM*vO!57<)g~7IlGF*J6JeeUoi?0 z_PpWqJbwiHEQef^?#Dxj56OjzxKU(U?l)utgAOLO}84Jsm6E2Gi1A8}p@IdiC?jrjJQe83=`@sTAjz*4l$g?6&d=^kV$gddIwgw~8(ZP_k^OKU3+vnyQ$D14{ zzLNm`qyY~yD`_W~H3DAM6Kg%o7^EI3IvRicq_Q(7^GUgeqS|m5hC|6L@Cx1BPk25@ z-$uzq^8?EmnZW2fm^7Y zLA_4^`bFu2u}9U}aclK;^G}E+rmUR>5RaCcOq@x6e5xq6m_mt(%7BVoG@dBmVXb1q z0NCRx;)>BG>M7HpB`oO%70dGBp=7PoR`A)$E}rk(w5Kw~c_)a}eXi5hj&fNv#V>U0j-}FO zjksI5hw&yMMH8(;_2&+3?PO1xMs197_TOeu9+Ow79*{vS&}YRAeBZ)!g!uO%f;W!8 zPlCUV?}T|BIl7PvR6Bw~mp~`aIe}P@@z&@Em^OeIPLiv3HpYYJTcSwc3>YfaczT0noW!+U%~br*#~_{lE-IMdLt0w^TQIS>{1||L=HV%$k5kQd8z!`pn+UFSDeqp{!EO}m^SDFA? z;|{=3BOmd;35?tF;9_G_#Pb8$G`wJ1yYj%f0YSzfJv0U?DqJ2OI}=56dJt+2Yg3y4(>a|5R--<@Hp zJuM`Hm_>MX;yO3(^+=iXG?maF{Vq6+b_LA`-&gSuT%`-1fz<l)Tm~lVd6H$y>kqqWTN%%nyNAR66 zG!Xb!g73=qQzBH#GySm@jl4zJw?F^-B+5+=0*OaPh8M56pJ=?Y{>`VTpLB5gvLGky$zsk;ifBz)04g4U9ie7P~wJEc)W6YSAFp zOTF12VbQ?lhPEsS8eU0IEnPVSsiyv5@{l9;;Fi{vL31QUx82oa+I@!fA8h5x?CcqOWm;oVT|a zP+DMsFb)pGdVGLNG12>*@$~Bl3~>EXh`h5t0TLz;r%ln?5aB8 z3#11CLaWgqu2z@8?Ueyy(KNo-v*C2t+xW%cDkv>aB`;BC2>lrPWt$@XUs(i#zsg@l&I2HaLE=5UB7O!X{APEw>K>T?d zwU;jh!#t?H@3spha2|W30ty)DWK8G2Lt3b(H&)1`vJ6|BRo~_fhO=GTHTpEZ6NKW& z7L0LXM@5vxk+VFeOKmlozt-IB$}ZsRuk5#`d}9YnKtWFZ4WFsq^9s~a?!QOwcE+P! z@i=xP;P4f2?ZO28xT0dWF3EsicqBf7%;I*_qoqTv4`6;k$nfH<>z9Y@h;MXQ8qTwc z%=5rLDG%MAPf;)uhN8jL861Qo&3x}JK@5sBHjIuiR5w&M8zjxq_E*|h%jG<}#hXI% zLWdK=9sx*e2^ObL1ssCIpMksmJu=(-3^lo#Cd6e-c99(`V6bDTUs?!NElQ~G{V zn-=-r6!dStGU&+<*#sAWg4LU+UO1`dtTlb?%%2@`1jTb0aKLlt!Xj^@sxSZAl|{Zq ziaXGvG|Z4?Sh@Tx35MeaM`5;np05=3km?&{{t%m(!>iqkx!SpTe*A3&1 z-~xOwKnxvB`#%HlNT7dKV5V4@#19(k)3yow2b#FV{`i|p*x?y`* ztxy4?J0?&Z62TtBe!%t=4KuVaj7RPh5pHsbUiTNLQHy)c9QjDT%u~$D8CT9?_~E&Rt?v%;87{F}m{Ac=wb z7TZ7AS5-Uw22*jGabcrlV@uaejZold{bB3lMx5V7Wgp`MXNaXB0OX1KMizJS?g`0$FcHjPa~(Al;0Jq0rH zM)GWX`^rDCq!C0aKlgEJ3HTaZ*>Uj&U;VHnjz+TC#A1;ub(&0ngx4AxyF)(u3fDgR za*R^mbaXMC`5T(}8AC7s24G)>n(dPhl%y*eVB%W8+ldKG8nVOy%?JbdTRsy>-fFU@ zW16U<3**9`fPASM>k+zL;02z1-Q<4U(XkX24#ZYt)WDZj{Cf4C687P4n{3-r6!s4P z{|Naspk?o#94~)!*6XU`L&l-o*p(oKKSdb-Q8C`-Y1gkEp4=}zehQ=NE4N2^M9_{K zU!IDB@qdMpORL478Y8Y7iKHVn6usik^%%Y_-WaW>j)+Dz5dk6K|CLGJmS#JK<2q{B1`o?_?^UG@6Y3R}wPr)R9!XFZlw!c%RIqReOo+@6IY71+ zvI)&OYvLH4^^aXj($`kiW4{==o~!sn&E-!t#UOx1xL`&O0~vK-jJGBaR%(NQf9Y6| zn@b5~buZZH#lq3st2+)sUGbzJqp^J|!KJKDy^s=6@3|u&1z+DgPsQ!3`^-!Mgx>}n zq|h5Ht0@Lv-eWJt?LI}9P=uEim6ea}EiAMI#Kpz=L`A*0{Wju8F%!k^dD`ivu;mZ=*En?CCPysacJumGbU8FGsQ4iaU6? z3*w9}Xt?F`!H8KB;SVcmxXjw>YD;EZcMG!v28;r>9UPY<*k@)2yJK-GaPGm^!KQf( zGVjLnOgNkRRcUVz0Xk9+9?$=y?5%^U-lM+J4TypWf&x+o9fBa;AR$O9 z(v1oN(%l=Rqy-7-7LhLL?nb)1Q&O6Dah~U$xifd}ANP!BJVz1t-oJ0G^;w@7x4$$+ zd8VY>+*~ih*z@<5oC`ahAi2X6L>c$U)W)phM|sUSnUS*hI&6LlRS9}jhePT?@nVdx zh6+w^Q7}D>#kI>exOD63l84q2h+r1IKIEZ?p~O|clOdH>3zUWN8s0H z14tHiBa6A|qYlfsFxQ{i&}HUvil0 zRLPU6jXjZl3j(nrh6v-Rf?X;vTpzugKt+9oFeXTFOZj6MY)w|$+UGOb-oD1#$f6YJ z$k}T72WAE+5hi6f!7K25_=ha1K3o_8y|F;oLXS`;p-2mtT6zMth%vO826Xy-&C&J{_!M#cJ3mxSo_+~~+|=XqzlU{U6!k4E zT~0bWGa(7!7wVzFTU+R13!P^fbgmv?0q_oLB+U%~0q+ZE+2bp-BG>>KtbtI!{A%!# z;3fa?(7k!-B!#H^5^E5K*_)OFGfs4rBx?xkd-#6SlqiP&@(OmSTQ|&G*&Me-GA4M$uc| zZ~3WCIvn3SQOo=}{{i_q{XSoPySiHDm+w5M#RT->&OSKAW+!iU)bGjD(!OSpa1b*K z`1bJ`yI{Wgh$@>z;*0WEb2n9tv9-RuO2DaZzH?HhG%&v9Yx9YEFG~q6IV91B*XnXu zK}g~cPh{$ZY&y3KbB&3FOFCxIb$!S3{P~~AD!Fupc8nKi9bW>GDIX0>NJ7OZJSD|w zz?iXA%Gh{aKUA`q5-frnzaNmve_<45G@}dajOWQ2CPaLZiJUVq)moWQE9xThnFF>k zP#xq2ug6g#5Kesa0zf+x&pi*Hsq75eVO0p9dP7nigjZ^*hf2xqoVDVR0>}gLN>E z1fQ>I__bIOj5TR`j;4i*f8|@XJm1GhKM!ooDU`k_Ko+j7^tunN)omR997?tKAof|A zTUk+|H!t_XjRFhLs{)HTkxcODhqnq2)96S+a&kRO@p*q-D+6F3nL$;)d_4r`?%9U< z&3i~l(w*Dhel}6#$_K?(ePOmNcz~Pu+#ybx0$M6QLMTGNydyYihC0kx%Z1eKvzXPd z&c)mwTBcv$-bpKutPgc(4Y9|Y8N6ww;d^H21i!$Q82Gd7z8D77e6{Q$CNCue8Ue%*4I_4L%kr@@p_1qQ3DLs=s;Z)QkhTZQ0~eOCv~ zsV_9N-K2Hgh$46v;|TYhoSZv#=pt8CCVir8v>tsH| z22~L#kQnTqRho>kcExh_ZUP;k8rdT`}U+6;{^{!*Eenqz!CkFJ)Y5@pV_ z&O}<*@uJ9Xi7Z-JbF^k8+C&r^Exh~Jc$f5wz2x88x2SvC$*J->&V?mPXgeOF$ckHS z8^N z10Kv64bGN)yoL-60G)W~26gx_kcK;f*<(f`viF=^=}A=S<8l`sovYLkqNlX9c)gZX zf~@^^OEDZCYrToFi({i{$d5l2PeAtxltwW|LN2#&z6vp77-|&vLf5=-+m`(Q0<(9L z`Mk0NG(h3kz5cDgzv?z~EcA&&S z*B<^Db#m&#Y=a^)C)<@fn&A7fUJg#AV7QIyE(+A^xs8oZs15PJ#GZwVs}-jImix;{ zSqPWw185zGQCb(>4(D8Mx=8uyj89@+R|9dZ{Z{>e^MtyQjeLy;dyj3Ie}_bwV{Grw z{+~gnLF13>i{@PUIP902H}ifm5k4K9Sbi2D|5RENMRgn&BntF3zfs)*Y$pfa$yH2QeZ*2kQW#2Ydj}_{iYWdW zn2z3g#7~6igAwKtupl$UMOXmY_y=OmhxF;CQVaNgV!vRpA`{O`z^qeq?vHy9U6}k^ zyZ>3U7j7aPI(Z4~M)xQvC~!$goGJ@Ne}pUabarl(Yv-9aAqyEHW&+6nseoC&dPhXV z2y$VfboP3TtO(HVX+!43;L$@~8(|9z762f=KzE-6hRdqIP1Is77h1XzET#DVN7qx^ zR!j40QV67g6AVZWjj(mc(T1Mn27lJ_~V1MZ{I$D?m?bFU=3SAWMpz%hw*EYj38NC>w?Vo zY3$lA&SV*?hSdGnjX9W`*^{B)V|+g$lWB2}Ho1TCI=`Dge&&CIWxrkUJ9j-abeEzs z+k$ZZTTn(r{SS%H(gBF5`&Ym7i~b2W{?5&}&wKXxx#cu1;$?WtD|%UwVpL0twcHb# z-O*WT2Ifd{I(2m|GXB9G%3tdF*a3!Uz1FV?y!JVsQ+{jDAo%_-o)RWN- zhIrUzTre$Jfc(;Xot>#QUJhl-dDBMqC7%>iM!p?Ploqkwzc<bZIpKq4vx*yav zHT6&>wljt#sD}Vm)I%tDX`Az`h7{x(pp3Ln; zUw(2W5&0+~Je<9#$|4deYgodY*c{N;lBfDezpSvh+urYVJ0qF8?IA4Q z2b;8^zyIE~u{OX;5DhN|_2Tt@oo^19TU+x3S06D6i3t!dRu*zIL+2p$biTpfZ&5L- zyYgsupWJg+j51GEnRcJ=(1gdAbz4BDdqds%?4OsSfsf_DGCBX^cUw2PzbakK#_ZY=bp~PcETrhQYWI47dgmfstkEsd!gO@phN`_1N z%JWrMuB0pW45@Sl=p$k;z$gbqIzAa0v|uTYK@PFG`evR6lH6!$e%u^A6;bIChbrL; zmdeU4FCVi0lMs8oB}DM=u7WO}2wi$OzH3DV1>bc`TA$hT=vKzK_nDPn15pbva`Mk} zAyR}5WAkCY%nc#=rqmTbmI%_{vOzCf3A2mR@Yg46c{3}{?-<&k5AYPnxO_z>oEJ83Qxq<-oX< z&9-9aX5VGT4C1?~q{GfrN#L2_~avUtYTxNc4)UMAl?(r z=ufdxf&!J4thCg-tt_SY+6e-mq-AC1;jD;`kBxOsiX;Di-tU7h?O9Y*^t+fxeTn_X z7=JqN#xL#F!5ZHZhsYsZkwWY_IG+08P+C`2RR!;9aATmL zrbbuK0awT|WZ&|K7qJoE5^tFQu(IHyRoMJ0x%m4BjL4%}H?9lXC1Y)ZiP{#IcdP-; z!}8cwF;WozqQL9!0MdQ` zWfVJJ9=uUKh%Op&`!MAHy=ydSO^I}-^vrnuu4<*tvxMo2xb4-@>K-q{-<(^jb`JY{ zdxP*^CbCdiA3=ct2knYbYT5qYj`_b5#0eUvvM~{Mma6v98IBk}mE}nvnmmy*7 zrYf@Gb*e?J2m(Gm*&>Whwf8=NtmQdG5nM~YM)Gu!rnQ|g^Se>4U0V`Y)eU2Lm__zh zKUK+9g-{!G#?DA5(47%;nNP>b(qm^WvM6?gQ_e^6KH?F${Me8fSnayY>^8ia)ZSD{QTzde%r^Rxa1(}CgL#0 zhpHMVrb)_K$s-#9;{1VRZbwI)r36UP)AA7c4L>xRgM52COYaD8GWi6r-~7n!&0e>f zquRgf7tDIhY^hfs$JIZ?1^dVwF5}{-E(goFqvfFYe4thWG*u+dD7tb6bM_O%IlZL1 zertzI_8TfaWZqhCWC}Wix6*8rl=NTZ3=td+bMsf(Z@-U?3Y%Sf;QbtedQ*0NV&<+Z-gvod!18qp1tF5ywsCq|#Bp2Zt6bj542zfa zv#5WNrxec()+&%CbWKgt)YSCwCVz@nkyczToEk_v({s9>wm#6+%DuH)z z3U74YAAyse-;qXD!6jzj;(9)IX%PzDt=r2T$}%6`jnd)A;xV|`>uEkX{^&Twc|{!k zR*qLe1VbJpxu&K@QdSmbps+bvz{ExrWD9ur@4q$jXf8A$nGxq^luG+%tH0i>6GxD`V~L%Bg}^CbNsEOf_?iabpk z(iwh3A)%ZRo&t&mB7O%JxG;l3%tP_?X~6XyeFqUqJYn(RM;_9=*6kt}&ZYrgCMIlP z*g%&%T5A4S{kI7wIC*W37I>zIKYHpbt*5VVI}eM+0|G6D4Grm_`1XY;uj{$zXucjH zDW}PC3~nLF|GRcZ@*Z;sH^TI_ACX4-w}%pHBxuk8`Jg`u#zSbpERDws^7MXcSD(5d zMcRBi%;+v^Z|LZ3jI+KJe8CVgYVhF${>Vc(ph<$3IXWX08467M>-Oc9+}j4>Y^7r-p^@*=mS2K?y)~J!gY!373ejdW zl_QaVHq7N7a&1rg%rzpd&6bu)cs;75=KB82%ZjV-Gi3kN5_p-t;2jV(ndMLslgML# zk}UI#KxzM13v4j|+C;tqvD823CQr1OV2!|lX&!>8;EzE~G`qi_)ZOOA`ShV!&gZy= zBsp1;2xBFWT4f^TLH7uTe1Aa#LPDU+y`TyusxsmsN2cikPI~l++d>%J;SxEiy|UB8 zU*d_3L)^;Q5%g|LPz4`p0o#}s$VZ#TB~ClnrcQ$c0|Rrw$^j(>=p{hNg6=-g3Q=)y zBh+)`a4-P@^!M*?a92WFtF+F1=da7jOZ~PX>-~y=ImWrRcM-)*T4ggpDKYR1vMu^T zsifJFr(Q>`d?}aDk+J`)Qcba;T18F{6WkfVG6$J6qVCThJUCI7aPT6j^9zfLz$4Wg zg2SMPy>?9mxe$5)J__&&pp~Dfg1)fmOSondukqhPOCLR&YbO|3%s|_00Y)w@YS{-9 z$Bgi4DlZ2i7vymtYMlg7f5yi_DG9_kOkks7-N3~WM%R5a*U}Ntp)vbr)n5fYFSAH05H*lNAUO$00=N{ z-)?}L5n5WY0~MbJJ%}1gSQZqD8&Tt61#7aWVvA{N9t|;?{ww z&f5(6g)C;F7TU&-!nZ!nHW=GPvrsiL^XedVORo6d>_RjBCKkGg@AM$QtY!q<~{DA>lAOL5yrVIX{n{ z$K0a!MUUdlM32rS{;+I7> zIPS>3#aFK-B_%@|lxzrcF4f(j$qEMiBO93TMhXgH*KDL$k`Aso`(XHq&k(^7vT`Cy z_jf@t`6{^`Z4!TE=RMLTwnu4Qb#zFa*SWT*+ZS_z_O69S(L0^&aj0tVJ!{d*er?Xi zQkxkc|Bx=d%=L^DjH&%$(Ni)otTSi*PN(ik5D55fIzh6p-2j1eurx*iD~9G;iT_VE z20+Ph&8il>^Hu|MK;(_Sc42bO5?~2W0b+7}yCcCj@WzcB2e296Na-jSu7+%Zmh1en z+wnCUAJSwRK>U3q=zL@n0ZHb^KwjbD<>h@hTj%iuaT+NOnQldfP$`Q7*7dA^%_aw^ zm?1F1c#$>qSziqhd0ohg!i2lSlrA0brq`zy7|@On{!+qf4S6g9+688$s+!sfD8EL= znw!xf^v@GSUl8VJ0%b~HuKmt5H(BQuaenp%JzVK%(6@q8?zI$%9e`kiS}o_vTaxu|BC=UhP7XyZ ztt*p53@PRlbY6BhS5qJeoJ1(Nxbgz!N>MpnjO&M*QJxn(e?l>O5pQ`BatH4cWSUt@ z*O(sk4@}>HYnrg~hv5lgfmW`mAf9h-%7*33@SW`be5E_aN`mJk#dYo;p12PQyn6&r zU*z;KCj`9yP~UHC3n2il@F@@lk{p)Fyg?>?L-&>VsbTPId*L*GtIx>h=i85*HdRby zlQr(zNTM;$dg!@stqXolEPA$ok( zGRuXV+EosgRAAR~=K3KwHdbQFi)#mj?sF#FK`1v`-@nLLXP6Q0-`(bM-}md7v4dkqIJ#( z9c9ndl$PR$a#X0G8KGGe&KqeQ9wy|C&&|bKGCt2pbdv(C72-A7u3JU84r!vEA+<>E z>ZTMdX@LPwJj@2e;qruQYmyt<4!aB}?z z#2`z!#-x3a*rYdsnBoPAq;M)+6MW_3xIKE|MW$%y?Pv!-&W>AL{Ll%7FC~E30L8%q z^J#{IwHmsTY|s|1+0VFU#Bp0vz_ap(W=Iz{@pb=l2_;eI)m9LD?=Hf@p*(i(pn$3D zAIrUek9>q_n7>cvDlDbGh$lfBj{n4*zd!%C^@u6Iz?!M_QF6El!}9CSR!qK9^QPVV zEBO~8TFutuP46(*xeWbZ2BG4fP@sYdiF>tYCCjqP7v`Cfy{qJPJKgp@6*-OE>qo2T%q25U%>6gavb-UJK(@jerm!}0^ze=%*8lF zS*JSt)7$Io>MFpO__qaR+!UbY*Xnh+=UT17_atlS_S0xaCN7?_j;>B=6H~KC$h{`a zUYv(~VXLc#Y3b=Na+DX~;8Sd1DQIdCIXJj<#iRU|PK-CGLXb_Nsi^iTva-nbu$-+` zQ7LQa5^$btW3nzl*Fh& zH(u_?z#5>N$pdR&8hQ_$&=JJBnY*Mu^}TlPNd1S4R^>g@)7lkqw!bUIJ49}b z_`)USgPVeefUD@bTW^N(dRS!3iblrr;IC|3((9@ftFq$f`Vk_%0r#OmoQ2IZ04Wm*+2`WQbGP?@ifKnfc5sMcUlPjo7Pt;&ju&(thhSI)SW{45 z%e+#01}0|x_vi2XL4S+0HC6eq2>NG#UifGYuK{LDrW4Q!=VhD#Mgk!_d z@#55WetSC@CTpO?yhh-@vm5pAAi|(fZfY(46aQC ztr$t?Tc@DHW^JVR%<^nm*}X>wOfWgtCkeXEn8p0&EuK3<;rZ;Q0>Se?&lS^^br?%; z{dkkdYh^f7M#zM=S@HV{#TTddm4M*xfb4sIjJ3$!_QR zfVx_gSbH&eHjwwDp{a#R~CK*!l~ zl=)Twa$mw(gC|(#?0Z+^hTD0;&|rcd0~q=2~;8yh?03Ui+Ka4pD0v!X-c z4x|7{DJcb7Dyk+B1y-S2VAL6i(w-DDZdgD!j`)gNca0o@bPmMEA3lD34_@PYFuzA! zdsaWCkI~g6c{Jr*$jIhv&^LMJ+CO$?3m5K-)<=|m>9p$VnQSM0G?@~`>Y3X(-;(Z z0U8j%P5<^s72>a&o@3%63bDumZ#*F(r&4GvaZvd8jn^@J$<~!lZ7N2Vn{6mJgq$!y zk|jZFuc|gd&VNpf@QUos^end}STtxBj&-?9V}OGsI+QMq z0Wp#tIi0=m?T4E=Ytq%t8$#IP&o*vIq0nl)9n9mzw%ny3y*R6I(as=M?!TpM6o;7o ze!KQC*6neL<5|y6hMT~6fy#{D*K}Wz$H==%r1t2c8got2`(-v+vBS#=(e`E#HPT?s!7+|INd^Hx7HOMaC(>Q z`|k0&(zgxYyRmJmN7~|ZE|2L#AnW`n%-;5{$y608Z~RS6OLU*C!D7a6+FWorB14|< zoK3~?aMi}L|H-sH!};QNjHo!k#}&ZB#G_^p(xjB#=C8PJ9%*>v_4dRzV{SOFuFJUm-xp)q$OK!wI4RoVU z`+5xyh=8nNi`J8Y7iCtLr-25S=P_oDBv(I8_$-Wbd=j4<5cZ7P{YC6APDi4joP_*B zJN}VvaZf~;-nEn3Q!1TRQZqs&l8!FIAWRMI<{d*P5X@Ku&vX@O!~0t5O|_FP6xQeG z`@N1(3>0C{v2$=d904vr?2tLwFSqE@>%G3BL38;Sn#ZT-muEW*9rslAE%*3!`d8jK z>5aK!Bt;ikGTRW2-$MYkD=^4cM+9l-VWa zKw(100{bupYFBRLC1ebb79=i|6(CsY)8n2yD$)^oZVYC!4Z^4$I_?pOwU&o?=F1K! zbK782!*m-5XZh*39i&9{K@B%O`Hb7q$+3>$mC4VPH;t!ly}{lLT$m?3e#egc#JCin ztE<__;wHiGC+HJ0p>KI9OS%2v967(oQ~PYzZaGppwro}SX=AMtawg_4z* zmU8+O3Kw?*&yaGufN01Nf#2Q)Or9nR89U)3c*4No56*;0c!1kpQUZz;Kr`7jod8e& zBd~Il@raH(uQJ>9 zgWbgF-?vx4NW7?BsM{5AG!C-M46oml$Yh@xWrt$?lq)0n=aBJ5r2!DZG(x|B{~6%t zhxtzJ=xg{asj~Yx?-^CSBOKVt)5ea?Yx%f;TA!(3 zCMYc)X)Eb2FM1V+<7-y$D+-zS)_)bT)c>kO1fndJ@{&X(%R?_ccMEU|D4 zh{%=zF8GNu7f9`O0I2?GImD(0Kvk!C1>&)tVlu6~kxGKwIVR}}^pAL~sII$aXgUE8 z1y=$?2*`fIjE{2)QPWDQ$n4PvSqc1gra?i+L$jNMy3C}zSyA2RCmc_Yntvg`f8Y>0 zL=L6@^{N`EHQ{q`KS`4p>gnDbyW@>EHIw_%JE%`XPJE^w?ebIK+N$gI_yb%%qDvs} znGNa=C?tU-p$nVU5jr_6x^#Q&xjk?oy%*3t3X>W{HWPpK5xiv2>xNS?Q=vHomm=e3 zl|*>|{2T9ollc+=B#jRt+uQx17!A`WT2`etB-|P;Nag9>-@3kNARGW+jo%Wotp&(h zv7gGT5`Tubs0ln@Vt&YHUb_~u!>OV62)w`g`ua2;zoUG3#AxaqZycPl(yjA6!-*sB zdFo4?4=z=oD4CxU{ABudOARrxpd?2S%`U_B*768i1 zx&k+4`vR7|YdR!9BNnFVMQH{JbE!17W`88t{fY<;eeR(UWBl_TtvRm{DT}bb&{Z~8 zbxm|cxubK(eh_eSKXQWDRPafXcUMEhXE6C$`Jiv0{@{SIUMVdmfYX_fEewY&BkL{h zus@eGl2go2#hU8q-6LypufRq6i+F-L-!`h4y=MZkVXq8Oq1l z=xv&Xu}3#gWaVJWRr#)9wEKHh*h1McbnZ8A`dEJfQ^a{t;&_s^$~rw3Fc*=;^3jvC zAp5xY!#hjT3r~c9$?D|Ox5>^0&C~d+xaA!6!*Z}zNzU9C)sB6@UK7%tAzBlY{{cBt zF*GntCUun~vQe12AdZ+87wL2_Hc=$bLJJLRv5T}5TDPfiLO?LO>-U%#-b!{$B|_Rp zmH<#=^UT3XRH+*IP-*^DABcTdfD)*DI&`{Fq@1=7fHPG;Tf15vdJihV_1k?EVs;bu zrrO8HPgQ~!jNeFwEG;f}A=AQ_i926mgra`e1lL{6Yxo%SD$fDMkwy@0e*5*=f^&1C zbSDTFo8;uw6if;|0S4Lt>E39Zg42#@k#2;S4#$~s_#ENje%{d4f}U$z5MQswev55W zOY7r#@f5YWxy;__i2c)ei^(dtc$y~KO*H))tRNY`^9*40CgQ8^q$c5tR&`dCl|5m~ z$rNG4`P#W;3T_2U2ZMuo*aWIqP0|Y0yrB^#w!-NQyIeFsReT1Ba71}J$2X%#4ChVN zjG^H7RaIm|Z41F7$Vc4SY>$yt}?$W&Mjrr^D zR^nd*lJO~-AY;qj1=B9HarB-Vr_1>e>yfk-7eh;0uP;*f3B^DC30ex5O0R{_adAJE z%lxvVaPz@cmL>D#xa7;AA}dmS(1VJ?nC0x`gaaEJySmwO(todM$oI(X)Nz6{rFc~B z=re8afLSexHQ2aiSCQb*L}{G)>PD?+}}3I?|Btw4*eL zm*eumWgYuIm>`Tm8Ro; zAq4{oM66dpKtVy^-xe=a&v{n9f}poVAeeYNV)H>{J46-qazVFl0X$ynDMD9)vO0DG zUHKy}nr%3FN$Xj!~^fPVWu#*6*o7WI_Soc9q^q6A4$%iP~E zZ`{tMzQqrzCvCOL%8Bu81YRHO-3^N4YZ-{@Qh}y23qWTTJ0}~lj~dbfG}j-c=;4B` zLe$Mrfc4OxLD0Gux1DYj1(yJ(mJ{~)3k>2H^a6ilRM%gU`4PRX)hzpl0%(bkoW@Xe zcCjC3&9=BW9%Gq(Rr?LAz{6$)_V6t+f^bh=omQIZe zkL1s1|C!g~loM-d3M@6)_@rIYXp4kNfIe~B|X}ZQ0=?oq>3E4We zHPbK@ST`Lj6qmp_iB~xN$P=_y1_vs$R*^wa6#&|BCN*Edcqi0Q#yc$UNMQRa}*I?)KJG~ee!A(0k1KzY>)+4 z;QJWlGdg7!dIQeSxMXV+A+dOufyhsfi^Wmc-Dz<5%%gG^e zxJ%YAAgtY5%bB)UOUB0qp?UvbjCu^w$J)he$j#5%!CQN*-v|)8#!E>Fw%ofez_OfM zUZxQMsXQG587a!P0r#Ah5B*F?WKQZa~yVK?$bi>Yu)U9iwv>5jI!9Serd~`6>tZrPv0L`1juq z=$0$&VhFRiO8|Xe-uV9faM#F2*Xb+KZtPc`uu@JTS5mp&k_=LN^7R^TN&|Vk6ZE`2 z=&u>`&oMFwdc9BP&$y4Wq%ep;6iQls>bR>J@UmNdZp>TgYeIr&HYn)%uZDYS-^=%< z9SXGfAF}z%(Nf@Lj(j9R3R-oL$YVI(5vBmbcqch|Q!{v<83oDZmx0r`Xeny`@GVO%dG_O~E ziW9bEV31|29uHH=uwVOwJVwN0zdSsJ1_UbXt%=-AZwyx=(=z@$vRR0NP)5-tQ7l%1 zX6Vj?72GmXbk##lF>@91Wp)ZAJVJUV5UkVo?wINL-ZNsLMEZ-$EZz_N&V5(@ZO2j4R5i^XjgBXrQK$;(5e9AZ10$py#%T#dF9%)! zoT7FPFES&2Qclt?GGJP!2KsgvSdB^HM|2r_vK{5tQ{>qaSnRJDTuBrmJOeDR0|ARw z%u>b%;7965IB#V0Sh{qSv~(n+QMJp--Ym=oOVWxDs&8IkJkL>SUh9bzAIJ**Rx7=i zn%KA=<{wV6ZRm2YWAyJ^2%8L3x1Olhy0SSktD!do8?(T|`ge7u^OA|mpA&)G zYb~T{6qW=;L=LWCfH@46J#ZLAA{dmey!WA6NyHDn^aB^8e?eGJIG#0u=G_*#8(dmc z#P%}eQBYHp*lVf!eV1MT0H6@ogGnXjO=LK;eC-1V#=-oHX$6KvU8ox`45qBl}eaRkzY_sez<)b zGs9Q#kp8%fu5J*M;hj&h7oC?D&+8=gr*(;XiXs?1{}$Vk_W@!cr=bBW&b^!sXo;?+ z8E`$2;$!}Dol>)~5S9PVVeUCd{@wy;*i^K%q6`rtG~Yb*$8Mj9QQ*;c-MF2k$lT@O z^<~PWD>x^SuU^__p-hb6f^63qN7+YpyGtgSU5V!Vce)us`bq9lJm+{zcIJBdfp+wMs^j7@eV%<@4?PBps6W&^_Sn56Z1Wcw0p<4!Lh?TEk;S>j5S_}{0%tH; z`GHJzzajhA81*b#ySM7l{m*p5mSRCMC#}8M^-yHy;4FZI6f$PtbQG7(KzOsD}0PJXzkQfuj~d5b*P#J=q%{qO9LLsA2Ls_=|z z`aM>8b~YV@UQ&V-;?r&wBVrcGy}@xKqGH0Y;lK$V^!Ygp~7U^{HAN6hNQs~lJ(Gy3(cw>6ayCQw!!-&33n z^MLo;Fz7frJeo<{qTLK1P_*JO{njKvsulL>i>2RChG0Pp)`L$TEY~i(&JL}SZc19> z*DkxU;IbXYf*`1HzY&DD}v>B7m) zCBWO2{)#JtN>09=pg9x&FGNz5q#Wh+vc`1BF~N0P3pkT(eAdfsY>8`xNX3TPH4(XL z9EI}DY8i6oXSoyz;knsA&LefhIp@X|&ri{^@V;erCY(rRVRt4=Nc%OSgB(p&*VL2= zyglO`;X(v&M2_a>h{>AeI<&?b!}U4c_EnrKe>&=@N=}*5PpK&L9W9!cdJBc-A8788 z0|i6*+>YqM&JDX)PL{|`RClbzuRAYo*ZP;DfY%_JF`x%_p$&^tHOp|BQLy{M0!mh8;KF|Fy`?O z$V0_a`g1WqvXXeEK}h`oA2X?bVBsW=%2VvErOgpl#dGW@->1SnB+W9{D~|hz`g0>X zmu_n0JCyw5uU8}oE;S>HMZ(I7vp9OBw`g~y^+y@)f$V<|WEw^;C3}^#YVY>%|0&lG zKxXkP{lel3eX1?F^f<86{{|x3HOPl8L*_iEyDpc?NRurs{prwv&ibpsup{i01NB!n zFpwI%q5Br}mG>5{cz_Ig6?PMS&UE|?i$+h8GHuy#Xr^|MQn`JHSzdEY{k!&P*#YUd z(NzpE$fCo)tyyt_`pTnKNL&@}Q12oLvD0R8J9mH?>ny}3uMTG32O*Zq63CEhi_NA; z7(3@79|4TKlGD>Z_5xKxerKwZ>pFS1tgP%VqYAhYp@FA#=`?6qm(+9pll3@CD^k?< z-F$et-h9QkzG{h(?y3f{$$bRzW70(UjITdv6L)&q0IH>cj5K7}Q2<6(*wL%!Sy4Ym zPd;9KBxLlcWThcLMVHB_n-w+Vo1mM8J%1Q(% zexNtMgIL108;(7E6zGE{F&`R0q?o}}{K1q=@Ek1^ym4-~xJ9Up2|n=>gN`6XL2ARX z>{)2XQsc%5(yr*_DE3XmUonnc&e#aI<5psSx?e(%6dX$ zBx}t!H|AKZ*SQ-0-ry)7|9jR&DdcLthx20~)o`2xE$rh9AWadzmZI<7-$x`FI%LQl zs}m9CHAEO#_XnSIH?rT>_Z|6d*Zbor(%=E-Gg9+=50Lwh?)lvSrtBA~Huu+c3_{dJ zcp_8~$q~2P%{6n)pd{il)71R%Vet=~oq@4J$eJVoGq0!m9T87$VUDVOQ&->bmH`2Ff_GxOqjVlYr?~h z1zxSgVByyLF3*GVtLxS9Em~q9q=yU*c$@y`oqf2jgzfIVgyC@utSDis>zgvErB!1% zlr)z%R%8%!bE@KtW9RTb$GUx&YQc_!vQLWD#N_B~#?7krqIdHQ!&y#CoR_v6E+7IT zD~c+8rgte%npvq+8JHLx*CxZ6IsPL0?|L%1r2`xzvItIs%?EdPkX_B697AsEq~(m- zQ_&6-TU8b|d|H{xdPOafg;jgWGE5~%a}S;n2x~(v*HrVDb%P^UYLA=FX`XX%M8FLB zTAu`9>1BAoq)1!K<;7WEmQq&a3e2lSK_u4tR?1VFvLHYIZ)r&hHJI8p0%E`cgfe{W zhrHoHBtp7oFWpAK?7qLyd4kX)LYo_*%t98HYl<|ikErPoeJBj#&mJ%WP+!A;Jp?`5QgUk@8k z#2br@Ok)>UlNx@!yNc+#4lLfq#C~Dar!D1)JnD!4Li(xe-hW~B`N5AmY7m{l#R@o zpgBkh`sAEZ=1_tYIqt}LK04GXeJ3yPW1(vhjl49L`J0|~?6deU!LmsJIwt}8k`Aa! zO6A?SqzKZ3?%$b1scRXzg*bKBo_p-2B#Uld;E;c zeh@1qrRQ(Zw%l|4hJWMneL3WaanDmHJJTAAhS6yzAr8T-D3u&8D-xcdxR*Uw96iVh zY09dyBT!LioyBCRAs=AbpB>HjWKEh6@t8{(+l==q~V2_|tR2T|yE z)Y#%OY9TotjY}uUkd-?c1W1X!=UMOA{d|C73}Zxl#y|h7jZoN^YmAFsm2oFp^J={ znCEH|ZQE;Oi`}KOJGgs)(9(re92OEEBR^tznHEAAg$LKk1*rpbTVbz(}oQ z(4eF0qe3i9O|}h|nrALsqo+`H4%7PomOxavv7?9-i+u|1k=iW`9cVLJWdFb0 zgm49!d3aT7$|9%7@jt&NN0|X%a`JeRD7A_GzwbM5zClAS7FJt#CK1oo@CC_mma3rTTveGHncLLMN!zJdZ82DBojaA{#bq( z^y*wl>#uTX^jHGbou|tO>K43A?m|(r^NttJ)h~w%iq9Ty9Q?{&S-tIk735AVQGX>z z_kRdG%c!clFWevc0FqK7il87REeKLlBB*qChe3C2S{js+kPuP2yHh$OO+W$Z25GpH z_y6U7xMN($(KA4lqi656=9=?)eh*(1??L1y4WZvlrrowB%-2RwS7W7=&ynDJ_q`6d zk6HKkp~={RBL=#B#gw;iYvNrDp|zq1{PGpV-RC*Rj3!E~^C=G2+sCYp+qpwlG9fM3 zX>MXR;i2wqs$!Nb9a$!4YzY}zTDq#ynd_f_mm10QEou(PPh*TkoCX z9x51+Nj7E0ooT$@kws{>im9{$Nl8$5cB-j>K~yr-(}Tfq3!~);N)YukBQDr03RTKc zZv)egQ9$Nv)yVC@SyQ1Y!LP4!RCD#ZC=!Xgb~H!Gf!iJVaK(j4tSaViWkrRaG|G@to$r|P)*3Qt*)a;v9#QODS1=Ri%N*5^?7HHTs;VaV+P(LL+6%9m zJI-bH_dL9vzy{`x^+&Q7Egg$bR*Bc{iNeNyj2^P)-11n{krCbb7crQbcy-%${86;KVG|0p1tzV1|#C+tsU{U-JqX=p~H&K4W)B3@|)+)2X?Q( zP^g=$CUyvoAxdYFR8#pnW+t)ELaWX#k2B>oijVu>4fXv2u+(@!K)^5eG$3MtAuOmF z9Eu>qIpDZ#f@aXi;OITpDuv1A=H(g+Og|$eOpD`X?&L}%N`i%=NhN<=aM$CMD{f?! zK&1#K?OPfw6vH-^L4@t)94p$j4)a8)pW=I`YkoXWlJDx?clyq+;l9H>@p8HeHz^5K zlG)%1GFzNr<2}srN>~%Ofy1?~>Le=VVa@84<^-=o9$3dZl06nt` z(m>AwNkvh;J0eo(E8RN{H_ngZ17p_WR4Pkt1pXM_fvJooM#b~t48P|9k-t!h!zdOy zDmw%laTLce5Bpc|zGKl0$R9t__tZ3tZTFh>#tiHMoG`EM9_Wb+qZe(mCnb0ZqXSd7K&;`{R~>t@Hu zh{G2^)Hd(^`^UK}Tm&-X$(0M4aY8~cbe4bd>Si?KVs6wW+#)9b}?&;wKI2y!O&0 zt?A8(?ybuYov1lZ&BM+9gsitQi5C`2p-Vr+eT@ICsYCmqIPrump#@W7L2N;mj5+yRn@3;lhU{xWDDJ_bZqo@Q~> z*w|Pw6uf+R zDqVe(k&%~;mY#9uICJ!4X;=uFB~7$FqyKShwEIMX0}d6S=3F+We{)iW6ZU0~2t>_h zj9Zodc@~Z zqhWdi4uDm;1^fi~V~x2Q`Sr^3dRxQ2|L{vk@z}wq^fn| zg`&~3T#4!H?{37(Z_XCq-)t|yw{tD@fATCL!K1#m_V7<#rHH;Ook(=Ton*Aj^#)&! zJIMqt@Uh076hfEl7thJ~uJHVM?^*4yC+~gB!v3IX9$79mD1K;S!uUv0@e{x&MF(w@y$ekFn$=Kl|5lU6LHX)I z=az~;f4Vmp9V>Y7;1~FlN=>vH#k`NO<2v#+^4me8C$)2aU*Q(Ha;eDgx%KrkYW7MD z{a4Q}It9RgzY0?eSD5>lF(>xfpPjh7xw{_%8D8|B(_)Mr0^T7XP~zkHhT_f*xq!5P z3IP^zuG}qumD~<^t1j3mrCJft%PEH;Y~{=Gyz$p3vc9c+$!lowZg=b{TOurS9{IM*la3wNM`P5?e&K6Dsc^= z_0U8pd%sq(;;MirrL!m`CUsh(g3DYSM}pKh8MV4SB#Iexq>W9*5J+{%LcmS|_HQNwl86zVha8ir;J;U;mwX(W(St2cn#RjLEK1 zHCb(PKQD`o9sLVpMJ36QmdQ!i3$RA1$DU2j`0_YYD3bp^RnTyGc|lWtbUzh&#(O|m z{S&@eoiZ};4-Pa~%37bzZ;3=hvy4|L92E81^;3-OH!&1^equrHF!&Mu77p9)h>HHo zuu~~|tL)eF1C2$Bp;U{crG@-#z8;7fh^4gJ80JVW`Jq70#prkR3J0ctmi-@jR7Da` zh$jO1nKR$bZV=~b^XIJv+b*1#3GM%2z(X^n$crLAnFze$x!S|osnhB#BP)CBILNPH z@Oj!)(n5V_+UMb_pwRajz9$-uZUGT|fll?yNVueYN&SJ&M`mklYwX~_E9|lw0^6(r zE0-7~bvx909bZIDUTVJqZ5ZIV!SE39;y`V_2%e3)E*b^`$_oQo^*ho(>J`UL5&ZAj z;==&o1RQWVBwIx;TLr|wX8FEfnj19BRjy8bddgS*J2rtQ|8Has!AxML`}OXtj+HK5 zQO*Ipyfmn<^6291-P=-4uBdL6?5wa9!l+g8s3|OuIF_P7Niu0khR21Ed*=a)_OG?I zbwV<;WS9{U800V{wEO{@;!!xK^MHf=?~CWp9T13%BCpgbbOzoU(cn(p$TXN2RQI7v za?@fk_3+{>rVy592$k0#u;*wjeJfvBhk6HUXWlv0KKGjo=hrQ*b#BrB3yc|+8FXd+ znhwT?Rbb0C-wI6S^k|r=^I9KeT3eWY29|Sn1q=Wa*1dg%;WaA=;-#dTot>OG=mJzKQk04(VQ%@}s2~hR5a4^* zgGdW=JI1+rbtJH@d@HpJ!`5th-y=vf zrO)^Lktd9qauzYKj{Mi#pxvL_VI<~CKGN0L4ccUvP+_&zQIW_C#(kK0r#Z< zm*?=|wA-R)s6tUuKLA$&xQ=8)Q=`g-!T zIQ@9O)YQc_>e}qaJCQ4Q1_r0hxc#C!kE_4rXck{j6LI$krx_)s0%>?Bp!A=_cx|Tfj9I4yeX}}8dr_25Mp9tfbJLStm;;-j^|U4 zjEo3FD>YyHtn@7yt4VNC5D6M=e2-=;{h_R0p()T8LAI@bq^h-@T z%NT$54sD6~zwa$=Xafk^?Gl2`xt`1K%FA~WhCh+L_+?Ws$(-nPBk+XnwcJNyhg>RfwYgzYoyNp}s}_C|;#bYO2|7>%A!}Wt;yAk9jt+1DEjig2fyADty?AnWM`w zvH2(E+k@0vz?@s0Za&AODgf1jRGgT`yL)~LuZS~a)9IsNHb5!W)#1?YV2>Y!VbdO}$>~}1(@M+8SR=r# zURB6>OU_UGq}Ja8AOk}e=gjHe-sP7$HylZRv|I58r#I{ z%>#5T-sNu9Alw<>;B8#>TbF5y-ULUqs#MVcAbq%QM%H0!sa3z!FNb;JEUbQuzv`=X z^2dWQCE(kL{#*aWPE3Fh_=E3m6F74}@EOdBy{N-G3xRRb0=si_NIooAMqr%U+}wmv zI2b$2Lh~>Pem*nLXh~jOTB;>*FGq(b1Qnya5^aA)ZH#y>_WfP+7%$dopDY!T^z=N| zzSO=u>z)QNDiI^3D(&?)>c<~NJ#I*`m`xhgw%syAEZI>sW8*nv=2>C7Q%X&+jL(3+ zcag8;HpnZmF^#9HS$iS<`|DfUkKdf?n&;HzS>f10;K@r6wd7RC%Px*u$D z6qxZS6S44?BQ<;V;YcN_?-ka3U&h9quA#0BS++lg8tEHHQ1;HAb>9m}83Fr|6#waYPBaLXW4 zHeg|6dRAK+8+W3JZDxdcI3hB7e(j#nfvkzEFdL1+3UUiIpH*5R)d&V6h2J8X0v9_J? z-6NM5(G?LKTDotqP*lSK3Wh*&@h)ee_3C}^U$DwQ!f^W`ex(jkp)5(^Q zoJNi4pBQKET}^BFg|e^YE(dSzRE_i8==IHzF5kx1@MB>iVv0OumoXCsFNId)cOM_c zqspD*Lz$Vruhf2A=ZJ$oB}wz9t;T9PGeytx6}BQ@l6pdMvhwn>G8=XZ0&vGciV3OY zl#={2tQN4kP7z>ZY9^SMf)I|86m4^Od_06}R}vANnwXorgf{`%*MT4lG651t&>yHV zjNwwxF>Ds&r;SYXV>}@9{fn!0AlJmgr5U)qcVx_poF0w0L|(O8US8HOHW0O{L}$W{GeEg1;MCcL8|Q+NTN;C=nR4I~d2te3whhdTnW zVPK;mAFBuMrb5_@pzu|#B{GDa!i9K+1od`$J-iL~%b`p;0|mhsm!s9@InOj?L7T>y zLKD~O^$=50m~IKIt!EA}MMg@4y#)vp7?=?$-3Of)^)eWr^7{#_e$_dDg*CuN-dam0 zeLDMvKK+TqYIgoB5)9wYX%}+`2M4=_!E0|*QfA?e3uZ3Kh4UL@u<=n@=fi)A92`Pv z3nXA9id+8Zry`L*dK0;=i369IZL=Zl&k0!4`90(n&wq2V5BQG`S2KMkNjT3QvDne` z%Y542P??Q&9ot{UcNTT^J|HR19g~zZ77k7(xL-ZLi&y+vpY(KDHnUTXqj!at3O{Iu zwP$BaDH%oHm-nGFsMc2O6f>)StnGK-(3em8FZ4V~11BOIwh&%^OtE$KQsZL=rLcl& z%%=G15KkQ9EDsJ(<6?6pIdX;$~&KVr8qhJB+Wxm z>@RyHgDTg3IcJGNVYqm zIP84z;K5CLaUYR4q-Dt}!iD@#@2FEowJr)*ccrZz6AUSy`tU+68Ys!Y!NGCK zBjvrhD|qZ24>pYxVY7pn#p_Q{MzAeI{%fJ`JV>u8Af=@%o}I1od-De#25iYpQpQsB zj61319O&%yPGFV7g<~xEsie>h7_#D8vT>he$1@LyMfG5AYBTGi zdoQa4kMP+$6Pk}dIoqH%ZyOt{s0e%21R+8!oSZNDvYk%58oHO*F}SFaCre2|Crw~{ z4W9#5wi(v&b&&((0IfoeL>+su0&{(bW59>&q8{9x`ZyG8pV_}U310&c@I7ldII|2a zt1G!L{AJ1Pr=K|y*euBma?kxlk?_>ceqO#%nnrnwhT#>PPf*w6C)qQ-Gq(cq!$TsR zi{^}is+Av=6zdRL^B~CQ0ErgKx6?9K#>@{@Oc-f`@2HZVmk6RrFmKw;ZL31%o}-9j%IC|7ldNbLK4x-;Yk z)AG$9HDr%d1a1UE`u8jh&SQGaTFoi`MxsuzGg!}7sXn0AQ3q)%M;U?JQ5dMGg+7IX z;*W@8dX!Tp>Eh2T?@PF0oO^J545BX)MY^-IGg35m4n$@{Rx`+cgNrwR_b-$56+OQ; z)f^ez+>B&q=fO!Ph>9aqNz1B-k?xt2xrUn2l9Mn5?_k4>o(W{C?}gt*QHM(RgUPWQ z?k61i?6RM@HMT=dZ>PnE&__~t5nZ&5WQYvoW0EM&$JFKTjyu^k3KnOVmXaoa5u+n~ zN+MXgT4L26(^-eD0(|B0_>oMY8u_*bwg8LEi&pn1rPKa9LtjI+G3f;kWr7|jWNu&B|1oY<@Rz~5dKMil|ffXHC2>Njy+sPSF= zNa!Td_6`oT92A5{^+y^n@zc(iwtIdM_IZ$LlB7RJ^)i;DHN77Pa$g#)2CVjDXhMJ* zI~uU$aUK_1tWtQNb{D?{B;9?cF%7#g+KdSr?Zoly67Jhc?r_ zmBh7>q{(LpCyt2E;`9d@U1c>%VYf!wyn;D#-I^u*3=c|aW(~U%o~~F=>bp9T%PQKb zu^tCADMbdT`7e&&1yT*fOG`XIX>at@IM@}onjVBnu~2}$l)87MKojo271b3*_AKJs zTKPFP_4GTDXof0afH&)EYd=yTR|+K6h2Xd8LZq-TJJ^LRfw^e=)I{_;?2$pz3DS(Y zRJ61@i)IxChOjup5qSU?|!|_6`z>f_2A^(exc%S4?rb< z==W#BY4u_r0Az%VJn0MShQSV`q61T^1r9Y{gxB)}QY`O=1Tvy!+8PWqxskqOL%V_& zOJf-hEmVdQ!a}f(V+hVKkn`Moh;%_3>9uR# zlr1z;^mNqJuIB@z!*LVd$y&$!xz=Qqw7(FVmS0}>l`m$-p0?}m+n`@-h2#isoli3c znrkPJ`a`9E)#(&k!gjNtiQ>lJbyI7VIH-3k`!s$2cJL^G$7f_llFV3+S|P1QR4KS+ zq)5oyXmqiT=rn(9KQ|aJI^AUBvv?%I4@5tLzS>ZR$y328D^=ePOtZQpq&p!yO17gwa$-TR$vmLFiHVUr1jhHDnISud`r zG=L3&ew7jUD}kg?b5ma`XK^eDVtyFi@iwkmD?e-_T$(YbQzu{q;*M#eug{N*!=(&s z<`ImPATp7bh6W8v!=uyvX-7;y3HmEntgWVo$~ET0+5O}W{J3Y`#a6z7{wxchVF;fA zXG$p&7P|w@2THQ+bJu)b0%M9H(yqw^>a8k(#a?7d=c(mhghK;plNMAUPyXI}Nt^AY zh)=IwKjLMsB%cd?P6lU}e}a2D9>14cb^ESeyViB@{(a>BbC>hL#zh{ps zD!x68l}TZC=00E0AGWCuFuu}#i*fAPR|<}?1Mf~(WT`gEIv|WIX@`2S%tM8xWlMx} z+RJLQo_b=N4$n`*7rK8e3dy3~W$wR{F15#fT|VQEbYrA=q?{Wj$iKWg^ad7HmuVpW z_1Cq`U&yE)pxxCwXt#fX9=0G}o(XJ2gb9Hj>aRC)S{&lz;-mpk1^x0i5#&q{8dk_! z7mH_hu;kNtc}nH)2XgW9^BnQ=L7nT)4z8{wtW)Y*D);z!d9TCJC2NWr{_{4PjycDn zOR)=0H0lx#1?Iohg4Lh6S z0_ziqfB8ndJQ+DTh~AO9dFW_Iaf%6)p>Hz;Dy1#(*iJP_etM7dRQ8EEcFHG>M8&B$ z4Cgjy2@I%~rM;gkEqJ!BMd`?sTjakuZb$xooF;O3k;Kpk^f913+e7hvL4<++#w)n2 zD=Y7UcZ!Uf`qj*g5tFZwxqaBYWX%M}+n(c3dwF(-w~#=k&4tI3Qrjvp<{1WN3Fhy1 zC^y8O7HY&Ynuvdt2)Uq7Hp9KCL$z=^aMjMIhwfs#_M}v2sdA~zCCt>qE-q>epTKG+ zldM`e*Sz{>K|Hh7bnb+H;baJ1z)0U>AlY48+WO=}{v1vc?H;?^o-Eo#PNSC}df(=*eb;RM11)jS>FZCs2ErlAx%k_M zmy;D1TMyPJ1OZT1w8$X|X9|#}+p54)@)jVwXXgFtetcpukX;&Kf|}+6qPyVU7I}^Je;>fJ@N--p!G9P$9b>znYW@JCAH=J>9*B2n5iPXe%-Q1Q zAF)Dip?PvJ%jUPyklB0108j!M#SG{fot8$jAq?$NPyi21TQvbC4zgE!z`oU)bcTHZ zOZGR)!(ce^c|-T{-km#<7u`oE7|X&8l050L#irx}%-;>;Tm}aQ?tnzB0=LUvW|D;> zSB(wX2f886NF|>;2#)UoZ@eA48?77D&C@s;nG!cz00Cu~tCn{WIrTj$A>kjY#SE)2 zawjn60h~5}P~Xw{0BdFT1qK|n8xpV}Lti5c^sv(o7uk$T@?7!nR&PLu-=wt04x|at z8|+q5i8vB^ocro=t;g?0gpcCJma=hA=$10X{Ru*b7@vG7U#Wa{-t6Kc%ZPzmKYZAsSL1u4&Lm&?{+*aN^4%Bv4?{wT_#)M0KmIzX4eVTkJ>|g>?qyLCoP#Me0e)fl<(eL_= zruMJlsP`L*1^(eLuF-6z*ahaU_dqVo(y8D5o`>Mx+PlOOB&xdIXKhY?S8y@+iHe5OJNzF8MUw3+W z&fYfsV-)b3q`a(2*D>Lq#l5oNeXvyDqgA&~(vPHzpuL-D2UXjC3hat%C5Se|tILGS zoh>y&g7q{*VsgnzK5e1YepdE+%VF7p*yEd$eY7OzRr#WhWdRRg&)Xts zhCW)TI-N=vG*Qc%{7P{n3J@9t*t#dL<+BSN9UVnc5}b*zpda`QEK-Rl4*49!k)ffF zLJW%cD=RApQW#RW%1|?Nrt3V}M+C*R2;?^A0eb%$gh#Sur$JZzB86w_K3v)!pw(|$ z{aMQgk$@Lj;a2kUy$BhqoG3|X0PgO1cJ`_&Blk#FSODN}(N5tazl@_Ha^8BW>kYGB zgU>0gO=aEV+Y!qV{1r*OSl#IZ+P)%vlsMxwdvRpvL@~|gw2nAWLZA(In(feYz;->V z(zKmCpp4gHzoWDB#rrr1`aW&4hgq_G8`E8fpXfP=;~X*&5u9uhx3oUpkmT(Qx`*i2 z7tSv~vq-f+LYG#QmTEs{Jq3>G$DFPF#dEK|@k5ZQA9mg;JnuLV0pfV*`{`lrK*-fN^nd=;>sJvf zG&U#hrZgO&CIu7HK_c3Kv$7%k{P`*d3Qz2|rFGi($b<9n)Uldorfb`sBZ22SUR3B0 zsx=QyR{&SJG_UmOvRy&5YDDD=~yz^ zlgSpEtd{?Y4ndgrXU899r77R{*=UrW;lrU z-5Za>`7fnrX zu1c~lllzj+SgQ~q8u|0Y!(m13I}H1p2X;EAQ(+Ef4cU%N`i;q!4UGcSEs32&E9xVe zafM?tkFegOPEJDq^ma^4{5u4MiykZ~EGS=)Zj->ysc=;?ge#kW=UlEp0p}8*0S86Z z!o4CYR0+qiB$73%KeBUzE9ISc)a{~B&>n=T_rIH$r+d1(EQcUHM;eCZAOvp#82JGlHz|W1SXM=K_;?Tf&H|bQ zHm0)cO3E7Vpe{EMPYMdTZrKEw;<jR@Cj$KG6Z~}DK*VYPgedF0RO~85m2lBL? zzC$k9ZOLw0`K2Dk9`Nf~SOvGM)gj^O(Bvnti| z+1nOQPF@VCQ>^DfO2ZBz3OU@-lewzME3lPj?||ul0!8!kM*1s|wc$j~jscGGI!@Qx ziO1bif%xht@_ltlC))=^ShckBGVgER-Y;-280}71{`&O+<>m0_@2Y-P-rv`ayncQ< zcf#*sRbT?^m3X8|Ww*Gt5yN@V8D^-oh+}K&m0O}r`niL>6N~C>OgHD$hYXQM1vBjD zM`Mp-A6xdP@m+4YA=McVg>pOWPv7C)V7Pe`3to%c!6pMsHpCw$eozj;bzT@uag8SZ zV;j=_M)#YMd3nQKlZA&LC`9m5j$K$AEbN_dQ9$LT;-oks+qC^rRftB(M$siD#m86D zwHU}-M?gOJ=PygU8&@@vUdTh0${&SEH3zmNVNFd4x0jNqaX7PvfI{MPv76OZ2)ux1YF55%mb)X+3_k(> z`EfEoKI&t<>{y;@e(jqggMnug5D1ravugFe@1&y3UCn2P1NvgE?j>*JgKKM21`BkW zvk_;a^p`m*TrIMlzdQtO8&(MX)GD8~=6#K8Zg8A#FR-;JQJ-P@pj78OM6D5oL-z1X zAtWvZ;ZuY12xd`STwJnQUn&H+4Mag+Xm<=oiwQ7Y&~yCyWAx(7*5@yGV-t!_+eZiM zEj>(zOR48W^FKze=!>~JMf;mQeDM4=a%qzl{iB(vql4hI>j`DW%O9U>PZJxtAb(ax zp8m=T4am8=3a)Q7EdYnXmU!D>f7W}op%ED zWuAA*6c4{My{1mjdjy+U(&{3NGuL1c;Fbp0_MNu&_Sb1?QP8k!@ZKXBXG1jG+LHL_ zZV$Y5k0VuSwsJLoG%7CiuF4HFzN%&eui4x_!GE*6TMnFa2S-P2pm24}2Lw~$>ndf7r6AYnVX_`g`wLLRGsZ#hrIG zF_TD1`wIDiBOEj#QK%6P3YfO(>E?OpM)j&m1%LiTbzr>~b!`RL+>9Gl5>INNu%sCL zm+Aif->-KTTz-^1<}T<*I@(`tWRCw05`?JV%Uza|xA;3lFC&PSr~BReZ>D8FCtiNK z1f?Rk{U2#;92}uij&R`YUF55PlI?=1AFIdN1yJeNF)XK*Q zz34eyymAnd>X*~MJQCT&^ZuyW_G6)j&MCBtFx%|@;!N~H?_&lIwy-b*L?5)=Ou?go zh>b8PPESuCybtZ2hj6`h)#bEsmgr@FwEXzXdv|+pjK^E&R|7qb`R~b_yr|QqG;?ih)2<8#{ z^Mjw}zv5~Ki7n^2gPCz1b$oKp+I^MQ6zj$n_db_zSi>k%>e^2SK3|@NZ&076zd4`g zJl`kt9gC*Y%FchptU9zqURqe_A>HiKM9n4c!&WUo?PR52Jl{@jyTN1R6v&MmiL3w+ z;2eU1Y(VMjx8M$g!wb+iXx2gJt7K^|nGzprsZ3_|y^PWW`O>-)J$w5Y>#HGEvFch~ zP(psEdf_?0jC3}2SRwsNozw@VjMK5C^f#LrCZz{@&<<#VW|{D1XuPJ8j>M_xyxh;x zU_AYoVq34J!^T3aFC2?+EDnEBus_+%UpjC+ z88Ups4Dmc5hzBPqJQhc*xm-5B2f^eOpu$%Cw03lO!Nzt=yA0Beo!QZChM-jYm@7mv(mP3$APRtqyY#>Xipk@MorSP<3c^dR6!p!>1-rK|Pd zw5ng0{U|Zce}($0O}zIL;&lJHxVpL$qtQ2@z~fE21P^!t@J|3Hv6s5Ac35U*LJKrnnX$7X6)MP?_Mh) zTd+L?l{18&XEHfJo43KBn5*=MHj+O+7#$jFuf`UC@F$#$89MRu1|`9CUH0@^MLq}S z`$4t~wlyxs=h08a`{};e3N*+IGXxI_cMl;>GQ6uP~vqODWZjlP!}o;pr#<(iJ+W|8{s@8 zs=Ii?nVg&ahJ53ysXFl4ItTT{wl?UCcoF3M6o}#8`#hN8tV$6whWHlH*p(%v>`xC;UI$l4)4#7u$-jk=dbziKlI~MeR!I0dMnSHs8bja$p;~pi zIyzIg1N#SxBR&tk<++)(;0~PcvB#N8bc}&=y|X-(=Jf}YTju`l=~+qBN^WW!ft%P& zZ^|p=9#6i15N@bEZcD~Ct{tVhq56Anbx`64t0SWP7bFfO|MoY2yaGR1O>M0)j59#z zfQw5^hlXR`rR7N?LMjdk7_hiMQ1^6m%gI;EeP5)K9R^Y!MgWz71G;n8(;=vt7}Pf4 zVj5aoTQii;9w}GE$Jfv-w3)7WNb=`bG5u9*6Umn-0;!tk1%dB$s}EID)2gmXAZf}r z9d^1un|=q}uUnJPlJ+Q^gF`OSVdRJ%r3m}|GQV*fHl&tu1JQ2{ zT9uMej?j2OtF8!CcsXjht9Q4fZ=#AX8;w4?x$;a*LBw>Ui`4u(4YcQed)_z!ly9lHn|sdTvbs; zf`V+ph%0=uFD)#Bfs!am$b#x%%5JFHVc~XL{@QfMam;2fXeHXv9jVu}X9!FXZk2{p zN%3?JnS!-&NCxlJx=v{SftnffM}NxR%vadL2A9IW6OnDRpa!e{VTLMM>HXnungg~YdK7%FG(zS3MY(&7ViEuA-K&1JK)&4TC<5Y4 zW0M5)R@UuKPLRFZf*WE!>f@cC6PEcCKx4ci=@1`Gy#24NwA4={zY~amFu@{%Yt{QH z@z@evs@Z;hJ^mrH8IR=yD?=#`9D|MBC3B?x)Hm7h@&$B^U5ZfBGTAp~P2Gb-m>V}Y zcZo7UuMh?MKB$JsrI=Mt6j!tsD zV+=g{;ZK^6X1gbXYrH=QVRBVGtQ*82__Usp`uP*bAmpH!fROuZjr~m@xHSP_b{$e) zHuv^q%*<{BfHJ|}pRA|9-98&m3* z5e@6^5rvkHu%F5w-KV4rOiWC*0BTFZCn0&I#)jh?0^`l1^TUPofP%upT4Kr}Lh-HJ>MFhB`lylHc{+uk6$vdOoI`rzK31nYaULul zzWNsM3Mr%)^6+2&d8p9kmR79({Sx%bFQx&&VqpYf$fHNdBcPtjYG`N}SHFLx@i%Gj z{!_>^GGmUksnzr$C5>ZA?0Nh%U;W<=Gv&~EbeDbQ2WDOr_L86A>vsu}tGmz5vMrA0o5;`R=~filQy2(EesETCPfz zz843ED_Dquj{V>kg}*9WE30G1V+D*Xb*T>f65iLDVX;_w-|y3O9R6MIY{OWSsmIY2 z*!9;c^8KpjXZzF;4+RtmqbYJJ@-L9CdN?Vyt3{%j5)i~~R{-ba9ceRyLDo@4=zH}u**m-&8OIBGI2}!nV_^v9eYs?BVgnLeTdk_?7*I1{z6hFxG6NE})#)fG__rae0}>(f zS+ki)7(cZn@$GZFJSTngX8W@-{n!0Z*NKo%oz(AkJc>a5Q{qus{9voco(@K(dSCCL zQJ8)iOCTfijCb;mq($yZ&)Yv;TVeD*G7y+*kX5JWOZhJM1?K>_qvJ{H_et}CWvMT0 zSClty>8UZn(WozmyGgYAsj0H_LD9j7exb`vXT9J1+c+&(j^-0C^$o{HS1ySaO;G*1 zT0C(5zPW*~Ed5;!<=axd4(dRV1Lw`_xVS(#PXNhk0XgnLkfczZR)5moZn*~WDoS-c z64?Nz@YXF%7Du6imm^fxSLActF+X`c+1&f4Ys7;0{JT-X12|hZv!}_AGj;|IgD|Py zYkh&5QX59MNG)K{6g@O*U(!NY2rEl}o&4HYI`gW~ca4#<4Dp*+l7ybOgj;@Jtr09{ z-)zu?HyLSy$w-LT`E?I-Vwy@^wfJzCfn*5+iC)qWw>#JcG}_;iP@8!_<&{4jhcktf zVwUEzb~p%i5R8&==mcw70Y-BQ6uCme_wSoRU&PMdeycz|U*jb-)XYI`vH9<|G<)N~SSm9G_mPcFUPo`Q zygsQb?7``bWlhOY`HlohW;j}gw6#Gf%I}Sh=%c+AEEM>tLF}$n@A3j1YX~TNhzv91 zv^_4hsy2#sj*gF4Dgo5_U7&B*+JhUP>-G>2^Bl-J`ZL=mfhOX(9ic!+NB0+WAa!Se zvM2x*2PE?3Sz20Z4hUW`ohZRd7C98b@Ep6x8aVsDFNFBZd zuMkmYS8YX5HYjtVZ;#m6-V@XjDR@5RnSz6mxywGOWQbuQ+f#OGulcr>y}OrVFYjXd zNo)1!UD14vyaKVzC@jb8Uz)r7a^ETfOAS7Euqb2mUblVvJMu2=aBGbja~{Qy^=l6)zcVPWoBs*xWAGhk2w zgR{eBV=59ztZT%+*XA`$JO<_o6N?1sc#xd%&DEvx;b-?)LJ1uloVq98`j%h6bSo8u zJ*KVM#X0q!ml`27fEnKBv4G+1J>yN%Q)0sb)V|3GX>JYT4<|NVfB0W z-n~8KwfYE&J=*x! zNhb}-@>jm7-jXXvyqY+f2)4Op#%g3T%1=XTz{0U-C)UfyH-MA9oqV~dNnO2 zJY1n~5m{Wk8hkz1y9ri{QHt2gqdR{`@(tcmRUMl$N z$sGe{XLYWcFvE>zRdTh;&=k0PN%a&t#d|bw|sa&E7`llZ}JF;}G z#^X0{0XEt17|VAG#EOFvefHCf>b4YD-#Hr3eppW^$hwJG{k6TaWd1>rDKKU%L-cmE zveUCa(>cMm<`3<492iBt{^(^0oOI`68mmv`q2oq6`7Dva)bw*?0or;G3$;qy1i;j1 zcS*yxVLqR zDN^r7BrF?Pnn*8EI3JUi>d$_&OUl?bbh?QC5#-Uhno>eBc&;Cp38LZIH%2Ya(U)cp zb&ZDOkUEe!bfgH<&m1k$+s*EhxLw)2RLVo!aVy8j!osEa64Uo0x9k|m<9)W?aJZ$C zgs)Taf)G#l{@aj1qdgHVMroHfI8fA@eEugI`mMIMF-()VQz)Dcj{%#UPc?+{W6axR z?_qrwIGRA<5RA1xv~D85`v(Wte?b$mA_9rH6hV8J0Mv@;8oS^Aa3u|yL677vOE$z^ zrpRB`>=aT}owiVJtUKR6oMuz^c(!}Z1LeR>;1Pv~Gh@aiJL;kklVk0Vbv5ztw$6CQ zd$E!*M-};8U?Spev~gd$fc`akdt{joT`wv8OHl9fZrFZI>mse}QhN)SY!Iw)S>?fZ z7-}{9LQJ0Ns%5kIlqi}q(09?Fo}3h2EGv}0XEL+(a#~bWl?L%|WF46m(+VyT5e0#` z)u6ZwjD(wzKl^(j9g&rgK*3Q1*ul8qsRw~7D@H%-O|Gp+kB+8bU6zAUm{66iAqn0q zW>NyW8>HVQi#Cyti96zd`nXp9%!LNz_OKpJbv70yl0O}Xdj*_;ve0qA{Si3Zda|;z znK=1I@w-8Xrrl#Ul^^&Am8Y9S4%c6`bmDLEMB3`r?~jiYCT?-=vK1NBMCfX63_cEt zw$`i8e3dhqgFn3{>=CH`R>)-X%gxo6&}q)X>C%DJZDiZaM|fnlBT&0f<21Q&GVg8t zGra(8sFeI;rHUIYNS%4#=GEgwEDT5?cT1yS#7k>w9Vc z;AfSI4}OXR<0-_3(Gl_oSuJ=PtkxfTHS#?67w_J?E&7D$+}6@RkuBpd>Y91xZOn!P z_hwvCHbGj&FJm*dFGO%YOgy;|D+)(ICQs2VEC~kkA!ye@YeNM$X*zLT*7bssy?h zFiJG~R%Q;O)gXi7XnyX(dnoGdYLdX`57@IB)*nE&^8YQ$vEpyH97vx3|B7;w)t(+q zkxJ4kChrb>q1TMC*UZ%oEi8b|P83LXG4bxm!+JA70ON<&8N`h!VZ~avf;!IkB-^2_ ztu4*N-Mu!^qLmjrpF}1fwW=$W-4oY8x3I3^AF}zm>7;J_)qC~uk6I@&boMuIaW1rd z)_)jXBIWt-uO3AvU$)DxT}sjXN0LI22{TEma)InUavlsumx)CP|Er@})83zH>81O-f11=}zl7N1xO@ z5Ax3M8O3IpEW%19-mulfyZvP|f5Sk&d)UU4wy_4fj9)y|6Q~X!5)^D-$bZ`h#^+7s ziy#Mmk;-nbx;!6e+cgU zO9kSp1>^&!1WFp4&qcGczuoGzr^_F=$)@WnMWNfdJu;PYggth142ma_hk4`6Jn2Um zG-0sxX#hEARRX;v#k$wu+p9A4?*9H1Fc0}adAcnFwOeR>JSE6vrBzi_h_T*Eu@dD= zxV51fd`v%|iM90Fs9MVZ#v_oVY3S~r8T$Lz0huF|kviP%ws+gIe0XE>y27uQXnm+@^{)gkk+e)c zePhtBk=jZose8HYE6NSV(cZKYyAMA)qJ7yqqi;8f*psw05;%z73LJaO>%Ht&s`T|b zou+5cmeg3y*K#1pZ53A=UGc9r{&EeYrM*2MI5^m+tgRoRRytOWO8mDSlbWjce~9`H za4i3*|HsM}vJx2~du7k;E!kwRgzT(vOGrdy?__1~mA$gEGZV5)GDBs&$M5?8-?yu) zx=MJS`@YZjoX`1;3m5&*{~(4UJ^c^5gWLI0>w4W=>QTJ(!s z(#^*npp+-Sdu~8LB|1ayIUol35|cdH@lxk~uDhtCb(gGvw8vtiq8hbzbzVA!x>mqM zWiL9j?Sl-HM1PsTx+2mw%5oKeQOJ z_>b!D^u=#)-~pBX6ZKIHxL~}}UjJLo(A~G=!)H#^V(l+|zF|236w#4zfpz)+I58Jo zydPQr^Sk=*my>3ClxjMzR%}9*w4IQQ@9F;%Z7yxEE&|dou9JPL`X?@g+J5zaB%J^L z%`vT=l@IK+!Y|k%dfjRCT^2^`;+#TuMS4<3N~P6B5lJszG}ukOxbyKH0$1ifsVcc) zSy@8!^=KDWwl3|kAIkar?O#5BzB-Ss3ud3PeQ!Ckbv1ED_BcImb8@oxjlQ@h+YKDA zYx0cu#UUS~lUKdQxU@ArEv>1wp{wIU4TypsOOQLx1&gJ8!1MedEC~X(npeRgTpfXS zPictP)62`b`U$c%^#jPm@=?@+?x5x1**`v}gg^fcSEHS?%A26o4cSgP$z42epi+_^A7uNhg1p&X##%uhhnZE zD^iD*YzhsPp?Q3WFsFyae1n~=BMKIJ4_NcW*%6v#4Kp%SGlF*og&DAeD|h^SLC;ml zjcuee*(SYWqp)~@xaBI|YUz>|i$BgI9=lm* z>gXnNOd53himEDVR*J|6fEOt}yGvX!X76lgWAig7{)d!kP)E0R8a{UCMI+G-+qV=c z^vKOjfzpx(Mv10tKYvPyNlHqlSyHL)$I#V=4yWRd9Pk1A>$fz2R4$5w(M6-aHa?Ly zU%T^9DM$-PfGKK{X!|I3mjq=&6}BspmHg%nf45<65)teT6q!f~ZK>>P&C1JfUca7l z1qC$iK}q46bwYk8_Pz_va(}C352u{@kK-BwA84`0dEP_)u zoH-~8FSOI<(*H#mMlZTDE!JExN}?Qw-3$2A@dQgGXz==Q$#!B_*HiMl#PDz&t~R z^rbvNhfJ48+)PBs#N6Bmpillr)`2*IhJui5Ax{sFf3@v&#;vY$t*oD*)p`ylFXzkc zQ~wGq{DqN?_MP>O?VSN>vjr*MPfN`^rjq5au1lZQclfsX_97!!e}w%A(U&hFk^NBr zXu|FrAnAw;xYfJ@dDM)8g2I_HPN9HBdywTNp*%A_-t)u*RHleBBLl%Rbq6cEzTdK8 z-`(q<9+%fQ2bvyFFD?BLjgF22E~yRJzw_jSq6VhxsNb2APn+wUX2;`*`BSw2p6hh$ zX^J@%3cgok<2-+LD_5-sCk8u?GVdj)Y#$FOzv$dgPuzOoKaoLr*|U}wNgReH5h4jN zocMEEEAzM{1Z!3G^$)>)n>R(hF3Q$u z^Y>pzNS1mm5)EFjjaN=nkaHd_lgLv?fVmV5D(pmBzt8ZkC|^9oSY8ZiS;3OsYd@gm zPKG?-J3oGJW#3Z`b{>dl0hDO!H?4>vn@vB_^p8n(qMu)OTo3!c<)eZJs!c>iM1DdB z!3PhpPq?Ibgooq6X!REM&z+z`5`%jCP?#Y%B|8yrz5qhXj_+9;#|I}!m7Gqa2ea^~ z5Ba-=E5afHXXi}b_$;d$SGHx@G~U}YG2gz8EJAB=3#^Iiz~%=maTwuLR)e#}^bq$t z?w?ZbvQ3vgTYrL($h2hac6zP`S4-^^onzxmGvcA$odxZ}>!WS%H81=`|ZoTDPDE1Yf(o|4IlNX=|__(ugq2(JkyC zrWX~R?FKxM5|uQ55=KNzZ64dquX`5Pp9B%sK(=Az z{0$U;K@@009v=boz8Nmr=5+a@1PTmV+~OzDgXGy`F|o0)-Mcr!Ps`xwd%l-AUA~2^ ze4nLH*l-MQJ>`E2pRXSX6o9S-!OjjU*bK;gMWI%>&@$u-=jl2Ikv~iTH;m0!uU`E` z=ZH2C)RBo4^HbSIsKqM7CnG;-e(Ue~&D2{h=8O@|}c;JfwbRy_2zg0z++fID=If zBGF&e*(A-bOy|NUtCxnZ^O20m6ERwN*BD4&(j#D|*7e6F#E>&gmp$|@Ju0upB4Bh& zEW?>J$QzD$bz|ey?5GF&^u#6HZ|Z8{vt>_jaX8i*A6$eUa}_C^e}B|VrW0MdZx&-| zl-SW!fn&Ng_4ox$tL%^;*o_k^y9(JplQ~L|k^`wl1-rm>wX?&kzW;5fv)V8b4ark) zw5Eo;_V%Yt$uAvWztZ}(w2oqcVWpC;E*WTQU~Oad(8`Lxqg`ERvTKri>F=z@@BHX( zreoelOyAEotV9S#`OHD`Y)D$^`T3J7t5Br_ zfOI2J>~b4Ky^|pSkes~pFh+~jl&WBP@=9QT*HDH{C0Y&IGlx1l#Pyr~{{&{%*DECKx)x^?>(7#LW|mHThh$YO2%sjQ7U%>2KLS4b zi_`Izr^nymbwvP-C<3I$&urY>!+Qg3_;rgKX%-G;#F2<~+&-p*59eyf&gd&`L$Yn5 z)3tQdgs1zOFHw;knaQ3=k_-2la`Oic7Z4}mS%OwHpo zlddt6ayePUfm6}Uw>5>Sq%U*9@1jK&A-9673%2`lF}AZ_%r-HDJ*3Y?X5Z)-M02`% zl3}B{Cg6K#u)jka~D3QBb`{HWE5!Zy*(ZQd~IU zd@cg6;ui>~26@EaD5)^(MmW{HtK-(=-O_o@PHF zmKN!C0Ski<`n@jzJ#HO=8&eyUzY*@&)$oX|fM=qIpp?{tG$JTCdAvE6bIb4O=O5=w zB{e>mq1e}jJGWoI^{6*{|9z#&ZRV$B?Z9$w{CHCPI<1?V%2U0f`9Rt1m;KMN^mf;eaVC%MXP3JMf7^r}BX-a;b}l!||@4pV(Y<|HpH2v&8cJ4A~iDt}7mmOpe6P|wk5+WcE>=c#Zg`uO?1yO$+ZwSb&mVVT1V#U{{t zAB}akaZB-4I}d0yJN|&ql?Wt(7!2JV#9f2A3X&$A#SfT9gG^;RQw^U9qEV61+aAbM zbjhBrId=1Q5(MHP*j6#4+ccTEa@pC87Lwx?d%dMC@4M})F!?3AYJC?#7dN1-n4l9 zZE1#`nRyKjB{wt}Xzst)bI^2e(bf7zU6~~#Vil6l&&F{LA2&OG;)lTb4KLF#zaY!w z@%xv_#M%YmE?|(^>i4>UXF>6caf%@_mj7rd_@MTN&`qt?eb47o1kc*bL2y2XTPRvl z&3|!M`N7;wEk;oKt5<}eHrpq|!JH%@dga0PhUhRZ9@cZ&2wfv8<((ul6g1`P=8iQIOVWFUi&f;vjkELDr0%3Lp% zI3gJ$E!xlyyFBn>$CPFsz3Ty-(*VzrFerauO9fA}6Ie1@KLF7;U zbm@a>ClJJ55~rZ+tVc>qHUL#bz5$-^0WWu@I$55*{F-NQp$;2H66$6tsqLMV~k%rqGSmJkkN< za1gy+`hCKJ1j8*MB_lfF3k754`jZ-I+^~xF>b$#CY1&DiKR$phkrJr2p-g^*G>|rJ z)#}JCTGdAqgH_^zf4>)8hQmR8NO~{GX8cgd8gs~7I03W@b-_T8_s*T?ip7-35v{~r zZA4nR&1{kFtCj>5`bWI%orHBqYxdvdmOGXs|Oh4Jv*WIX+`0 z#lZy7M5Dg4QZzF?-6>{t**9}Vg!@6kL>}0J(a46wD}V|S{ckau_`$-yV*=YlCDSqlG7U<%??OHl-9c@3 zU|LL!?On{k-DcoxSVE7D3IdrEMe68Fw2X5+56>Snd96nArv`T(Uo-WZtj|AQo2~k5 z(T%Qbv}>FpB~ZDsQlD+MQ1v<9VcXx>YAf$+20LQ~ILA^Wsi~>Uz$Pk$S>awmd@7Go zRrg15DEW5#{h_O@awLq7nif>~v?B*eAUU1VQSBo96taTiyc_Gr0wisMt|09QFsZmC zek_0+e>=2_rQiYQokjeH$bu=aMwi1#RTb}&q6d>Q{D7+}3r>*0{@Mf9;;tCtzN+l( zXT=z6Yy19XZ7rE*LL1dowE_LU-8E{=MiXboFtNyQx}OF@Z(y=8lEg+}#_Tr!{7EjY z#g^Uazr`*XuLEA5t5!u6s#F=ca?)zj#fF>|Dj}i++C7|daEvpPe~a(8VGK>yN&0(} zz%a~Gb?xVt+-5dzsHtD5<-`{9+kU2k;V7#itlHoghFj#nMg6M~-$3|;y6?kzMrkn7Wm1bv?@O8H5I*Qt4EH}1*eQGUv~w61*6*M!$&wv45+uM*W4wFSA-ap3kW{jt}2O$h}@+o zUi!ZEf>%RW4w1}Kgr}izpuhb@FJS3hj?}>yeE@T*Lw9p|$LfhQnNYl}QN8=x04%0v zs%-Ixcyd&We{P%t_eT!;mk}ZRQ55P&JX6K~AOUzyP~x?n%k_SUP7%|es+M!a!4y&+ z8Dn5p!&bY2Wv9N)(PFaL*pdGPNoNWXc&nfhc7falq6&l(g;^#yat@x;6XS?&WDP)q zU#zW>c5Ky~jXxcJErGR)IeZ)y;chh8QR^3h%jX4UZl}_Y9e>q?Gc^r#THJ2AbDM{q zEGy7>x)10V>Q1oc-TxE%wO-uoSM$X7g5(_yS6&nI=AhBecbWNp#IfzePI9X=|)W%DYGEhJ?EP zjjqnd80a{udQ7jd^10oWR^5?-ufV`_10Tv=c*vf(F!Ay<8X>tq0#$b(jK`e>4%&Y`8^LaL%sF$ zJWkHdfBn6wo9T{$!8DGX2n4BD@9w(BLW~cuz~K>TX=BXB?|uCA2pf;KiXB6XbS$9jqzx)+EQ{Q)4hZ0tC~BEx8m6H#`5+~ zhwo9PCt>HiaQU4gFy=KJozQ+VB9b*F`b8%hZg#C8{vQ_>VBznPxee2R8SGBBa{SRs zc?R9GcJ`}j&1IC=jKZV1np|lG>_^`Lx=5zE>;wLzaLi$#3~TI3F8zT4$-6`#L8R6T zzcF(TszQKaGeP_8esB%2qh3+*y~{jfZu4gS!7A z?OlZgStP@+wQql;$rH#U>sV)w>%XL~jgF2ULn0@C>x&R*-kGa7w>E$NBtRvoImR4F zn2QWM952WTJuz-j{UUtuu}nv8Ph;^3aTO*_LC+6C)AqvZvHCCe<5d|=i)%Wm_fd7H zaU74L6g_~Us>u*yQ^_f=!b&!GhX7d_cAF=b?Zb~%)}0(1;}e9az#NIP_;@lri>K#y z-HQY)(irtjAzHG^gR%)~Y~}Yfu=F+r0|5cT(((*@^D-1faUU9jl=rFU$xfVv6f=f- zr+Fo?Ddh2u<=Z!uaTDiidYJYkx+A$F0>^?fgE2<*c|`&Q0_a zX@MIrKy!tAjRp0`^bwpbkT?rPXVhK*5?*M*zx?f({qFvnnr^unE$5(E;>3q%&?eE) z(q<3$$J5O==O5gQw3{XH%=uLJMEU?;2AhGiPOt=hTcP^?zfly=oz(HP~l*EFKq zhBBJva3nr>keZfZ{wHG&m>lU0v&w}&M6H9Y+tO- zA?yb$jA=NW>E?1J!AMJ~Hx5Ea?IAQ|6qG0SHsjS)Mj`oU1uYxO-o zjXZUao$AX}tFcApW4P*K82S0}XilDz<7TPm4fOT*%VdZ>DFK(rpX(bN4-=5nZ@2AO z5a6+ZX(jhJ_`Y92oHBVs0P+QJ{q`zO3T~5d5QV~F3>Fjg{QRWw0FI4~K~$U|g!Q4&f_gWiBD2F9kxqa=Ns>DcrZoD(U zuKl_=d&~Cs@3Z#suUs3YGwgh})$eC?J0mrEbbroLhJt*>qE$rWBf#Zh;@<%|*zw$YxB3mr;8ezIX*>>CW_m z!b!FT1upsp1zt8al>85YwhY>we z+uAL)6!x+JXkib4ov)-4<_aFK(Uw#&C-<$n1I&nl@iYJpTl|jC=aQHD)-20F#|Nux zFuo$_@~@IplMB)EW!3Oc=+$78dj~!3z)#{C-S3CrjXJHHwfIMil(b@hj@MA7pPUy-iU8kE#_Iq~X z8=-dwyX%Pi0vLE72W_~>i&@H1(-++{Pgt{wCq~cQK)?(3e!Zej^K6`V^GA!f3uR<8 zg8f?*{%zw#i%}++3>@PL8$vHO{v?449qvxBVs@nuAv4U=hY&iyJqX$kMBjaUeo%Y} zb`C1Vlgq$ZLha_hs^Li&OisPdP`Iv(A82L`>falDh1A{o4i&$TZ~C}zVN0}%VD7A} zAPgRxxSHihX9Wi1D!y7Q%*@~6+1Ab(YX;+=*Q|MEmlhnl?1JEE^oSv8(A&qy2ging zmguFt_PYuJVd2~0o>c;iiMP3>OJblP|FO2F5D*Yh`1V8b3gN-xLqmt^hEoSn2pvSv{z%TsYB?Rir+nDL zk^)!!3eeF8HF=~TK^37=lQR1QVIF)+ssCgbLfJN^Jif6rf@j@{DEKk__S-~8s`sT`(3;J)&8Og z_u(w*#Z^EA-$64x4n~n`vFcOu_6`dOzmVu`5g4(#gk7Z@4j_1_tQ`IxhI9b{%E!Cs z>MHx@>Ux?Qd(U8P z6zoXLJ2`QJWiAFR$#FtEM@R14Q!!SlZb==MX_h4k4i`!M0zCc|58~Rx3rRtjAf=-a z%%Z5fpeozzx+*OId&OVdaC5wS{H4zI$rG;WEUNzkwWvf~=@0#YzV?O~9NgeiJlAH& zLMh!&`U^VS5%imD!#8F(U*ie9Qyz2SfIcVSW0YES+5KBjtliyzv8t)XIqWPxNO2Gt zwv7_yVn@OvJ}|SklB;X+kzu7h{(5?MG3X9cXfaUjWRzBS+msw|#Goh>hPCo@B} zea~thSLAi1@YP!qEVw(@^n%)Hiqh@v6Zl4vTx@!s$NS}5?y4FZYogH;t~3Q}zOC%2 zJCOeXEpCds5OfYqAcH3aP?32dD>haJ{O}rHy&?!udC>6$tF_*S|2h*XE>Llr@6uC2 zs(pCdthC;JuKjyTD$$BELpEnuT~59>@3eP_LP<}AnoS?_R%s+N_jlBdd|Bl7Z9~{3 zZAu>R=cxfj$A36wr8iya74;;!LWbmp;65ho%|l0`!1zu1F6u4_8Jr$J1_c{72H~xy zheOTMcPhuye?+N=u9|2{h^R6!(Y(zabqg|9y5C0a_~d?Jy~NqlrZ}pJ!@lE#BF^=$ zgHub?r>GmkClHIh7e=Iv@ZbUdhpj;8+v_FCN-f0rhj~%q1JoO`Q zw3!)f40LrrpIjlNrWX_>H!h{PmnreAsY(2%bRfait5+{WYJgh7naod^xiPr?F)GTh zocDe~N{^ICVaD6q)AJcmZ}wKcOX z@K<{M44JhtVeg|ZjGmFUqcRH}uEmQ>rIViajHqbt@f{21Wy zY^=%KWxfqTNCv2yO-f{m;jH>Tc+D)#eG$&>e&E^*I)b++!zJb~s=|C*2cQuo*+Dm>iKHhdD%FQ2vst^gqQ*l=aPt*&Cq_SHgnes%@LX{msE zt6w;onMp`cH}m1c2a3ceFcgH|xe)XJt+zi#&awMK`{n(_M3ymtmv1k&(rVz$nxrZ; zv`6S%S?t&%6I9_+OM&?3>^{-Zi$@=I$)grj%D|#^Q*`>NFJ)&w zytl{^64Q242|YM0nYSMpZbIsV40n$gLq=wr={CZ!S$3J%#?j|^14ae6J}zEUnHHh?nnwl(cnM&C|w3T`DdFnV421FLwbHlFsxS>%gSAeC)u|0)hE1bfrAv z9Acs_^}5hnEs6Y6_x*ObUz(A@P@z2IyN@@lU|-F_UKZg#<*NJHv!b%K#(kFbOO5b7 zAlGW}q)U6;Q+cHB$C8nhsNuL?R9KSD!N~JCRc50uh-kIkv`axWfQDQ!<8diZiCJx@ zfaD?H^74w?(Wk-!RaL~AHBX5(ugf>Hyyw85OZEHixV)NzXsz*Mu2TJfMxq?l!;E)u zDj}e4baQjF5*HV@1-}k5=5B&Fk11FjinAew4w-Rr)=3EoYwva0w{%pqs8XdPbL_Eh z+_=%iDgTpn798Tka^U(^MiIB&RQqA!ob*f&E4q1fBFkD$b>dToC2- zrB1`N+g*=MLZVql#3Ykv`tu1LjK?#c#Z}!g0vITRDAKG z>Q)1f-Yn~IQXod37tNntvxVRkRW=79$Heqs8%ZA|Z{6~?EH$>vk(7M#6z#d%GE<1Z zMGqU&8t|#!CZrM|K3y^PaQv)tJvw@*DH~P@S3u722s)G*pqd@P5oeB^ z2|}vUTp6^eBv8#sV9W*p`Sn#bP0e59Pz7@H^R1vwnS*z!RiW37;_Aa^I_lud`zzy1 z-ud~KL+j(gJ>J+9ncF2HpPdlead%dMH;TlOOq-iK&;L<+t-GhDo6@CiNDE0_AgkJ5%EY z;(im2Ub$cDCpZzl+xHtP&gZXJ!(~;$&qR;p0(0A1aR@zbo7K@^ZNYMowIi zd4}JF9*I{HJbUR?d=LBFlh}|Nj^8>ODTG_-Z;MK;gEPB_n%cQFrvZxIE;&@1JH;jG z^oJB~vv-2@p#;PIk+CYZaRv!*_uyl_3I zqjw22=L9$OcUY!A%(x}{TH41;z3y#KkDZOc3^e~mSlG?|qobSnZ>x+;HM5{u8h}PA zN}$^v3kALmhIe4ybO3!_M#q8wHY52sSRpsbzBW<8-MiEKibmv)xcHET^bEi1LK9_v8 z@dq=^GIjmm0{=A}OarR0O0>5Z;tRzMP|Q6^0^gb$tq*@hG};hfi^V|fL|dALuu#b# zQ^of_!D&+>zrIe0wwqdMz4K^t;Pb?7P2EEM(jxP7tC9GJDdM)0yzqu@0L;?}9wm(T z@85q4wj2N8GH8wgS<=?kb(aJi`^7I9?uEeR^aJRVp9Wx&vV;>a|8_kuD!+Mt`1C2x zOuiO^k7nkLJy)WJI?`5^X4ip%SGv(88g@?kaBeH-Xcx-Eb6%S`xE7cd6KfBLmro`o zivCaA5=X24a1c0uWr+CfTD*Wqt7~$STr7hK?607v1MvC+JPF<@M8?F%@=eAlga8G* z+ltS@@6S4%3jQSk;xxv%1t0-_;-orn{yZNcC3UYg=^gD(PwFWjT#K3TJISR&X&v-& z$LSDEPZtQ^V&J=ujlMkYQFBUJuC`R7C33-#9x#oaGbtQq{?z_c0XZ?#>cIjE5dQTK|b(wlfARjno z4ja4m(9G`-YCY?Njf^a;ex<%Q6~y0U3TbwL;IFZ7T`#8XKffoDkdTN;O^w*xw7=}p z!CM0fe5=cTo1(TPF$8RU+c}ty`J%+-#^30zJ~1n&Z5;=b7`a7 zj@2%3$!!IP2@@-)g-%mbELd{J&)T z_vs-wCfbmTCvaYS=;-KV85RydWSZLI*%c zkp&xW{SI&aYqB4XfxK9(#p*Q3OYqG%lR^}P!6MP(MrO@0&iw?Ag7*C~Jyp(Op@uhO zu8Ze^zt`LoqO~RO^)_qvvAN;Rc1?fowa_HL*#3YoGdL-hIep;i^eCOYhyd;y6mPUq z8+O_hC6N!pvnj;cdeL~_;*qREGv`K=H4gQGuxk>19eV@}h^LQNRBDX3)8Rhnssv_7 zN__m`=gv;XzKMy02bmkwtLy8T{DOkpbHLIs1jX0a>oVVms~SY2BiSmJQE#!P3eeH+ z>nd-0ez2G8>~%AFm6b)u<}k#5{(vlOpTZIRpMfiviyI__Iz`!_`&?bRnRj@qgfC*N z%E^$sP#pBYS}qv9l|7lOuWI?OW?GY4f%=!fJd_5?>gxV@ZwD4TO7)AeNo9kL67v8k z;YhSC-#fjq-ubYSRfJ2dtCL1$HGD8 zF}W1bnjf5`F7JbpfV=cRdWKx3C%qi|7Jj^v$v4%n=3`Gh_r2f+7=|3B9zr}&Rr1D? z%0;#C*~T9UP$7YXGs!O{sf%mWoUeV5?prta!j&ZU7s)a=BB2q*LhbJDu`z`tvqE-! zJcNOhNC>VnR$^(bYoNT7AL%(?(+%6{IQ+k_buiX-Iuia>aU+lkB`NX$zyA0CKIFpj z<(`)MYoGu3MV4cKkiRBOOtXq)J7y2+K>fgIK(1Ka4$^bRl<@jEfl9ve79;2bstiMf zU@1Vga6xCqHnOelLL5AY@Z&{#sxO`d4juSAo0%;H|NDH^P?c>*(=6j){dC%@a=zZ* zFZbi{Eka2AtAopJ89zRlNxj#X!-R&0W<6wg;8|%XA${wX^=~B8f<$&16{J0fh5GD( z{N@X@{4tk_hDw)cNc>|!9I^#2cdwI7TtO5_b z9$^X@ZV+8dOH1V9)14MQIA;mfR8%SfAjvy`25mBlct2j8DUx_Rleh|)Y>A5?#PNR$ z{R=aE_8*`boq}!I#3R{0gxA|tPXZGk-yl=EDk3w1B33z9LseD#%iof&gNh!jXFXOj zmX-`4w!gpq=PD6VG)qWH_^Ve=8x z_gfe~xSXNbrk9kISXIyZ)8D@RkTFl7?aiJWHl^<-ZX(yOd(+}KT}|u(NDDG9y)tq@ zw2cG>@OgOcSR7P`z{)U%!^pl9kR5d0BE*C%WylVU0CC}dMa#p$O;cwH2@9KIGG{6O zdvdZ0FmjVZ<(R~A!o|~n8J5qp4yC+)ChvaMxpy5R^~|uA-gxNBhEp=wOaNZ9-bY5g z_`H{!N_cxdW4_9gmLE(8k09sg0^t%9^TTIg`bevhXk2;@TL(oL$l$wIE139QB7<+O zhI)v@Fcv>9Z5p5-YxD47mj&;90>q94|L~HL#rXy@$yW0QSIg3x&$|8%PDbLWVpNUC z+67=VzXl!x8(@i~e$HYJ!saMicRTTyd~aTP&aev1EDbo~rDBMY@i6UF*ViZK&?xO) zV^QA)`)@+0`^>U%!^}IwW#S=`rG|*C_W*@fVg`!KJ?ml+`^83|mvSNA( zHYBoC=H`pjXcACTFxy{3o9i2|U0u-YlgqewaPYM8?OTgH5U2n%NiJJ!#+rC4Q8lkN zPy12UZ6wpj>J*T1j>GT^AJ0)`UK?&TDhgDp{9lLW=4M{+UnaJICnTU;A}QXRlpv+%RDEPp7z_>!)-c*a^kFpXFWVO29DC(S+f4_-QH>9c9{AKpV=1yH zEVn+7ql>3`SL z;u8sPMAU=aBp(R%&rO*PQTaXH-Tp%ZEvI3xsYLw+dXvqm52jAP6dHvBk#+Hs0@ww% z_?~WndrqL5w;awv+u04c!7VJAcI(%Y`qrIZ3Bk3}WAU$sFh zq{!2H@-B;;1D}rjf!#%eo^5aFQO@1C{*Z@R0Y?g%8=~TW?m&Deyfan>X<{kyZ3{V`i6rsn)ozFiqg~(%G zxx!7wZ-e8tgDgbB2HgnOZG&-d7kPrwE}bsgm9DW z!}}Y&B9i63;Jd+wy0No{?J4%PxqiXVaRR#0NgyEi0vvpLDSlAG`M%8F56*OG%|vf+ z3|3_*zM`@`YrFU-P141i2vzA%xjE7n_&zJk+!LCw-cN7QEsdr)ae{GzUTHg&{5;Fi z^@7{V4Q7Ml;NW0lDk`68V@CmMhPeK2$Uw^?q~g7M_|^Fa1^UbPPJ$FWT{rPc|oTJIJ@b}+WuOHs1(y3bT-TNNiM{nN9FMMm{HhU3e zdM9>6%*Zed9gC-fJ1^xCmTQrsiR4fGOR`;(DYx>jG&|om5d|c=uNQRw^ZglBcL*>b zjpY(&uDoMRIcR38t=Qz@g`PL@y#i)2Si2k(Ffh#>CESVEUftNZ1=u8{4nxgg+*s)x zPxj&}%21D@;#*cIo*WR>Aj*3=Xu8@nS@j|$SOau8UgIzs0olor(Uvam&FwVyPQe;< zD;H!8xhmh^u5;Htoq(4|330*Y>Yd41StEi@GZpwjAqd(XHc82V_PBdeqC#9;Tni4h znpnu_r;(AJPtZO=l37!uYz4c+aZpgu`D^KO5pb}324=gz-^Smh5Ahrs8CksebZ6vl z@gxyzq($Rg5)K35rHjWb%#V|>=~D#fH$d^g9WXZt_+_+=A)d8yCHuU%3>u)s`Us;? z5!5|{dz=(^K!@-g*mZ7hm5As0>7UpAYx`|de>ZcYP*)^3_srPKeNh6anqM^K`dUX4 zDDB=Ql9%*x{g*!zRNY|zbDi|1&GiACHEjx(KM%(oWN<{mWIc38EiFi5^KZ?XXgqNh z&E5JpY*{a%Q+|4ji)%Z-I2k;XFEPFxNMeEKPi!h0c2gaQRVBToBrROK^>x{7EqcJo za=;kxrwJ%Eyi$_UDJ1WB{#8%3y^gXFO>pS^a#vm+^OE1Pyll0)ww4Xmnuftfq>C3^ zxE)l#cPOQ_f1%73%^LxWdSXm8n%=K66{@$zuUGxn(N1CiV#6=mmjG6_&(n=cr}lC5 z^^y@^4;kVgq_R^Ds#U6kz*yU<+DI00v(komxqvzYeB0B7_|JbA*c;o7O_kQSbB2b8 zrHJlseY__CEQMH?zw55!94_4c<$99l8V6d^JM=t_@;x!KDU)wjS5~eWh0+@q3qQdkk2pk$QP~x1+dPuk zU51lF4OrmGmQ>1l<7NQbZGcpC7WtWE9;o7pRnXAjQw>Kn7A7VN1=P4P(BqL&P~d?e zY1EVaBC) zU=Sf_4+k>_E<+bvp1Fw3kngHf1#4b4E`#ZSal6w-<(fko^0S|u(dMfBbx6w!l|>7c z{e~klaBymRQb*hJB~+U|!RK2jrS_dIlHXeGxt{riy9=9*wWgi0?E{TuhrI z8qRvwyByE zzny(^3$tPl!bf>Gv?E23dT2zuP$2!1S&uI*EzP5P8AAsd=6V3FB#B02bnyaME$lMi zFjidk%J=Eh3rLCT+U}4uN_=9XT+wD{L=i$vMo!)sqQZ6-M@;&)-o+fdf3C@!$M5(T ztY1vhrICdclSWU8O{dSAY@x8m1CZyJ$OokEcCE4Ln#}Ubiib^K48zIK>XG+c15Iy; z$L9wJx5nYzHmUN+j_-6j-zYwk`X$jiPe0ZI4Xm=6S!RZan2;>zpcPc4eNeurC-vLJ z^;o&J_E^p8o0v#sX{SDjW61)rv&9##Lm<%Fn|?iOzC5SXP<=*;gohgjkOF7!{5DQOdhg>!^zP%Q+P5tG;9UR zDDd??An*^7!HI?VEd8}U4Gem72;okDnE;-0KyF@0=(nNkjJn&Mw?eLe)Ov-uWX-D5 z@W;x^EidDO9`*!07_2x@hi;YgTrhLd96SXklPkPTmxKL%vw{Ec*|h6n*X=jZpnm}G zF-N1DW-pSLD(OFGcQ}le?t9qRtY>&cdQt!83n^85FNn;gpJAufRlF*c)}jpaQUbzL1#O z_;C)s(p*z>7eW&Ok2&?M7_r|V=d zrfI@0>GKoo(eCM9>-7gNr@1c=j zBzi4*L?sDS7NFMOmN@uyXB8Hv!UqyOz_Rx;y1{}Ie5?HE&s>UOqgq9Yez7rQ?AwNh z8Mly~^dDdfm!a9awz1&>ERqQL{>~Ob!4`}rae=sK3PGblgsdePIJ?m(Jw5()whYw< z8w9U(Comx;q1$hAXTlUtN7EZxq|3esb~v0^SXj%@C3uQw*G|{=Sg8yQ4mz&k!AG^7 zKzC6IV^ZYv;NbCX5r7(-t$T^o0s~tO;r)qCOMAd(rmsI$0e~ExlII$s$S;S@XyqtKuf#6<;%_ zYBc7uW~3Z#T!A|&QVlWG)nx+6@z?5=Z@&`;)yUN0aqSx%T+v{e7=<_F0g4_{=2%A# zdi0AEK!?rB$ti#LZjei35JCQV#bYzAM>k5KvyfL(>arJLgf7s{&5a^+qs;^|N0xSW zq<_pl%(8`%?~FP~m}8mos$fSI-$ywV@?j2t!(ZMocD*S6N~A9TsC(R-H{iB3zLx@% zKaer#anRY$#E<-S^}v1LF9drHn?e|tn(LUBf3IUyMIl+^U(d05@+{8G4Ufk=8-~Yw zq!7IJx3c%8$3D4sR*iXY68#ZyhmHFaU^&R{v>VQ`9rVUA;NP69BLM zsH(xK`W^B|dfg5;@54#A3^$Gpz~VB!5eOS?7% z0<;^PAZR)RO2H8k^bP+YYCzG?7x6s{fNsPW>=xcHpAc!NsNlMuD-&aePC7gxo`cFM z;5hZkwi)tPSWyBF?0c|;$mV|YY%nB76CO*EI+sPM9XOuBTJ;uq zJV72?doUJ09(17MGs=_4+!W&7U%ou>+?wKoB7W(~2m@y)0xQX}5~Dj%omXJ%4YHt| zdPB~@qeU|dCndwR{G#wlhsi#hDu2j|tNdaP44=l*7Wajd#)DRtn8|TK#)!$tR{4P< z$$ZoZlr2Ucp4R{qdC{!E@EGQ#FI1C`bUei2@FYw5^Dc0o{8AHM*cx{0j znf(bLcm>KB+^>mOrB3LXg@wJ*QNO^??533M02!$7-@cge_obxtB@-}w!J5}?r=|I` zJ51Y;vXK3?>#TrbZdJ#}D$dKIgiTVh$e0`d?gMUOdAW-vJh6fx-&`=(8=5SLTrcxM z7M!wvM)t83^1PyS8G2OoGIdl zj$E7xzf!zq7Wl_@CK?;*Xj=Tpo?sY*Rv>{6 zEGv*_pmevi%=QKj#%mH;u_W&r4K`-5!)u2-{;CWyFI)mR@WsL>p$0)TrNpkpYZ$Jw zLGuQqF~9feE4_O4bdkNe`o+MeW2kudxQuJw<1@%7OZe{pqlTbp%K7wWbdwK$6EZ=n zw-IT&`n@uyd9PFH5%HD1-QUQbmvE#4MP%Nkh36csK~sU$j{+2--bFRCXepJ!s9-{& zijxBxVs>Dmj@CVX@F`204z}+V#-(7EM9fJscs;KF@Jm}uyNF{-`UHFmF+G;J`>5Nf z289Z?ynLWuFFrFR-<}L$k~!YCvvPHHO*bwD)9*Ns7Zk+^_(HC?x3_ndEx*?-qJd2^ z8kjg-hjSx6CZ-~Wn4b^@%HL|Of{B+~GwTzORFbTo?>?j#ouTrNrhP-x(ZvB8F@K<- z{e@NymSe)`B9LLRwfmf$ge3Mh=}Z3_pc34E-_+2TbGPExhtdsoKNAL{GJ6Ib23{%x zZ^T~iXFbj!qhVcWv#L^vkUR4t+&@Wlz~a7da4|A_#c^o-m}0hna`x80-2i{Hsrb;r zM1$I@v=fdrY^=Yue=WW}O?7-K-FqZRH(p(!Su6VF$7eNI$Cp3e(h@@=l%V`zj7(*(_1?R~d3P zLU-h4Ukx)FCMq2AjOUgtTxnh`QgU}UQQ)sf&fgh&1W~z?PkxY*Ub|*lYdi+jpoi{j zRe+neJOS0>1+YP=0Y0-L!+ZuGnI{G@7=uYko;ff@5$WWscObwjfC4^RsB=3IT23^8 zAbkj#r*{X9E$l%b?h1+ZkSq<&Exq^`w?=GmZ2q6NzB`)g`2YV}AtNIrWMpI~BYReo zkv+5b$Rv)uL!M{x&;`eucY`g9CmV z0towHfIWhX_sMPcwz$ho6GUw(SXm)#fHmX1>B5(nclSFCGJ@9(KH2KI_87K+<6m$T z&%wRG1~4M10rUmDCSuv|d=1=LqV$D8P?+l1Y%7eN>;c7?B9xvGO`!>Dm%qr;u`)OxU29hUsdxLcDlb<Kmvs~xvyi}i z0r~74dYkBJmu(1?giNxMfo|6#E%k2$tc=}i2e6^5`HjoxjP!*b!i4(LB&~~yUe*@` z(@yZF%{#xPlzWUWYsw!5J#td2vQeM+C&P>X=1g$Ne7F(1CpJnK!!9O37I-gJ%JuyY z?h_siCi8psfV1iy--kb5Lq`j@8Zy$QFN*S68QFZ5W(!O;19TyNwN5o^KVHA7$o%OJ zNm~wA522`S+4^lAgcu!RTUHX|mZ$t*LM&cEY5_Ba6PNLoD3#E?NhS9V{57 zkEyq>#OfU+Z(1b)oXG+C4qsjj-Z?f=yxP^-ChtugABK7jy6YVVIqH1FOKY2)! zG>RZA5c9FmilcasAD!BqVvpdMI}lYewH_*Tg6 z18~kV{eWx_F{p=3A^L{iFhk#97jleDqaa@=WXtS25h{9`Bv&Jl&i7jKyi@6y!@qn) zAx}zK1>g))eKXoEq~=lz1sge{NTDS?Ldf-o_+iUTHVdeo zcm@>d>MH};9f5G(R@ez&5*ASlp&k*7+Wq$#NNyNIM<;0U<#-AnHT61L&XsZX5z728 z#E#4XlVbyDL}q+3qDNddse$KtN`j(|oZp3eAcS#lu9Ph-6XvUXM6)?o_mnZh{KMUG zcLPNV-W|!d?c-I@WSv_Zuhz76S9w>K3nRe3!szABEV5Y%ayaS@pn&R`R5JS#RBQ6k zy)jKQXm(L{`k>NfoX2o>R(Ana6&O@fYU9~^+(t6}W2_5f=rHIN85L9=`S!L$VVxq$ z`SVn()db+=DM}d}SP>@*4Gl&5GJm=%9#w#+r!Kt~%|(e1b}vaTLci5wBDSBwwq}oH z^lpQ-B2hg0@BM3d^jlA@KPUw29033LuE6L7GDdPVa3J)naA*d3kvyA9CbM z@RrurD!Of4dD8SLQc#?Q_(fNhQ9SPcyFcW02v20&d9&cEafXjB;&HB7 z&HfufFUd+;`_mRK*1o^IR09(YzgG-|&lB7n(a_qDa5F>~U(7hq}25V34R3ChSEr$Ljzb@eJC z#KDpxEv($!MDR#%L%fy;yZ`~HG>d-bnZwwEzsCHDhomh(@w8%eOkyZ>E*6@xxi$H7#Q!VTU%`F^8E=o8C-e??fA&9CcQ z=boZjhOfx7lUStP?covHG`r?Nn_kCqpsB9DVx}woE=naKV8?JkgpTtE!JYSS6Xs$@ zRA}>ax6;|eWaNU6_b)*}6&VW9xs!Alk&%9qXld6ctMkQ(KQSj4iOOE_ef-Sj+~Tl7 zp;*`D`f`ud>1~+|y%)3rI&gN6LX(AFpR5~Zo~i20w=h*E_@N?Bo#YIBmfbL2<=Pq<_Qr_?yLM zbi*C9T3Gu-KkSmZF0WmU=cd6&CgqFHxgN@ z(YW;=QY!`L#P3#6Rgmw`YCQfUIaxqRDqap&$FYB%6pOZ!Wb`!f!|iYR-(QhSxXr8!!GyUDQE~gNK7hWv z>#80lBK`DZdpL`2=()1yEzqI-_vOUQq6JKAN*#ZF4SyKAtBz{TZRq~^;?n6b5iJ`> z*ss=WFIxxQGL>{usFw6ajkZRUqJ?YRXdXe!_<&iy^NvjU35fe#z-AHdkJoCP(M#Qf zQ~FCAu0(8?ZK=AhQ599GuZQGLnBFYw`iXcGqVLE)p8g*dj1Upqtv?WL`@|~QBd?SQ{6AEThf;rolx}@D%AaTTxNC zloiK(`e2O2gxo+ze!Zt5WXkkNwX0G)$qs(z`o}@R=JoCwrjzA%PS)oXDKh1~mF0^3 z)-#?_4EEeCXYRVot&%;U4&=JoH+%0INH_$QjOo35-@R0w%JU**e#feIXw~AhpM9H| z1wnt|nI%2f&w$P9BM1IfWO1NtdiLMS%1Q?xx4SHaGU=mC3>TJ0sv6~i;xwSh= z1Z|`2GYa7_t7KKY)AJ!sx~hJVFw^@!o;H3@*4=&m1c;d;JX~B}Up1Rb6HkCR&Y)#D zK9@Og((3apQbrWNXJ|z5b}21>eT~&=VWp0{d6AfX^H4+-a(vNj7M70biQ)^>lban^ z4}BT;4msvC76pGL-Ry|9aK!Hs>Mx*yln6QFs$G}HK6$e$z2d=Lu_f;e&pZY5^J{55 zc;noUANwoJY#L)s?4KA+(K^F8_rpt0$(Q}CczO9g@^<**N-Cl5W+0%z|Go_Nrw?X^So6yV12TG7f z63_SxmohmdC2Q}%xo&{FWK8b#b{nuWO$3IuzBOC6i8RsL66fP1fzHwIID(aE1b~xe z(AVGtTF4#f56SYEL~^YyZbA{#4zk%zC`GA3DpZssS4i+fUvNu{l0QkBlV-Q~{uj5M z3Chb|5#oWjqEGzKHo4fgzSHTDR-5&kMmY~3IW@klMVbB>X+|42&I!YRFoY2Cg)suM} z-MZEK1g1YX!D{^o##)wF%Cn2{I=`5gKS`o2#_!})B9xSiz$(RRM-$pml#u3Ji z^MH^-r^`?mCF9`ju@Z|sg$!iPNyQxAN4uE-7TdtR1e*>1V12%hjvrO$m+m5pFr-TFX==gv z@B!%eA}EA&u7ubPUu6O|FZIOvbTyU*riY^B6NkZ-<< zDViko$~O`;5|}Bn-=L+I_?qpoZTYFBP$5^4#bzkASM%PDD%m76kJ^y#3)(Jtr-we< ze!-1QF&zgmvcrD8Kp1HppFMDL9IO{(cA*ICvLSS^bIAF`-NRM*iEL=rd2@lLhhV_!UY-+OrzcY8xe{h+w0%_INQ(wo_idFaqbU@1JmPXC&dDyyvR zH>+_is$7y>(SYxz7z6&}6EXjY=1)@%WbZV%!V42hbn=Cb6Onm%kacpT96id#`{A7f`ll%U0VQq)J4Fjln0Ofan%fgF~?o)$1GXL80V~DZ0Pc z2Vlw(Op*qym>J|nFjEQJBauPZov(Mk%;*)!qa7vzTNOj^NSJzdRaQ()Y$@0}vEw%LBeFzSGbDf;V=DcN&u4p6R|#xpq(HLFe<~$8UtU zVpG!z6AwB%oP1&^XN=BWMFh3=uJcFME3te1vnOS~-n>|0C-Mx(NKaca1vgehzu@V& zln4>W*XMQI4T)bMQpchu3;3l`!Lg)2>5}PE35)f@*aw{F|0W8QjSSO0COv05DvAL$2hqP5UcKYNcF5<#NcWs=;1Uc6N54B~jr}($S%s^QvVZsa4_l z3YhUaR=i1!;?hgB$k&sy21_Ct(4uX?@rGcP2RikjLVOP&8_+kj;~F9J_bxxb_1+40 znd=B(UV?IR%52){`JD9)m#Og>6E9a)wAPSs0%j}V(Cn-4`acwQ{er8Nl#B9eSi zlfE-a`9@M&9j$IWr^R1lV$Q_U)&yszVvUB1%tIsQ3<}7ZIu!rRKkFc@2kTYl;NjDa z2;^rfDM|EvCZ7=NdpA5~-Zy@QuPg%sUKreCKCF2aYlp)|m6vaX+g^=&^XN{u4YD7| zxy3(eR)EmgwRbzWxl?mx9*tG*Uw%TQ&^uOHbCEF;6-l6j`Zz%3k}ncSN5@P`FN6Zr z|0(1Wx+UCAG!;Axp%}cwLG_lH&62*IGIjiP?7@vlgv5LIMfJu z6I3DGx6Y(90Ti~6K|E902(yMWh}as;I1yuX7Y5o{Z=f8`-fnBNqD2!Z%ClgFm$bLH zJL9~%EMiZ}%We#!Wf!nLK|Bf*H4MEY0HviWAO#?*!P2c#QYk7h<*RtkxX57d5*Wn& zfK&vfPIFHW3Dj~jeY1d#Q34@<%;QIFU}R);2205s^0PV+XyPqJ89ZU!6y){S?+mJ8 zqblWB1)FjE`C)d~m9k+B&gR7&pwzg}iF2LAo_`cwlD<&kiuNxvyXdd`uAu);UNCRhQDiVXpKxHb{c z!BhZwJWvMK`KH3!zu`9VJYP3gqBFr&H!8D9VgK*|^ln)?Aqj8Zh+wbK51pNl;h*T? z@5*b%b8qa7K};fZFb6pvrWS##VjV7N_rL?S>Z@qlCaPumWF@2TP(5YNKP@3aUvMEi zvyxXgR6o(Qi`%q0_9rb##~zcmbQ6hQ2Kgp+#fD)nlUm{`4yyj25})Y$^$WRuf!0ca z23yu~p2ANq`CX96(snGOIQCs-l1L11?YUqs_mtuz*PPu%Qx@WGfQuS>Fo6?c)#ShQufQOQF{M+mrRTC=R_LTE%%F9Eezctc%p)t;$@Gt`9#H-&Ff=?+Ntah-%#?FeWr@Wro ze)HfmgyZ;tQ31u4BdW+&rqDcCq9y?%{? zI)g$9*OaHCu@TAavi%C|Ac$q;7m%00=9drWXVm?phYv>~dMp)lk&X`V@xV1n@YBKf zgQtI>pA~Qn3CZ`1BQHiN+d$xj+X`3i`VUR{w0aQU*G2!mmo9VgDki2c7<#w}H|z7? zZB_Ycrxi;fE}TAsa$~875VcZ0W`O6Y9V%)}9#;w3d7`dk$VKR0p2Hb4+?7DhhST90 z{jCgQXnlM>g_=?-X@PbndUj>IQtgce)UqL=A<#Y!unJQdx^6!|sf2yVhHp?O#4L4IF0~WXvoWqGc=|6d+TJIr!tv57iZKfH<-O}`)I!fr(19W6mYNN)(c2DhY-&vxMV?>?`Kqk3v&Yx*)9dCXCia>*#+*$vcKX zjx{z=;MHYmT6n{f!D22E?ai_H2Ia@WDpdM)@gdB*UQnxqLYpbVDxy?SkEw6Fo|Q-% zm`q-uAC}@OerSQz<;*yweoDmN*mTZ{Ht-MmsGj$;)Go}CO_$Ea-8~PyZ!mdLq=)&20=&pj1etw?ZrP% z`7;s=Isx+Iui7#d$y%=9;&CWcoIj`V3S_WUJ6j3i;x^YmP<_SCN1`lgP(o1*;Y*b+ zo{~3c#jS0$9ac>&e{vJ;FB-5}5RfG{u#dgyhf01Bko{-+p4I-6U_@L7`u<&dLIOd! z(o^UK0%L9H(GwM7soe%$zvT>mK!k%NedVqBEXLO$$gp`L=4F=uOz>; z)We;IXlMQiJm5Mv@j-EXwVfaXlIz9IqW$CQZoxJVZyt48D zXsuZQUH?Z`fg4}rOOk(NWt0JSpjUHP4KJX zxdB<^0UK=wSl5QN`FXJpjMxVtX#7_zhnbw(UeZKEenb`$f7$J$i*`j4lBvn%n?ewU$vb;h`! zPn>NkCxv^^fc@sN1%ePOhyJoOP98ul@+AdrDU~b;<1gdX?qrPa9nR?R;Sq}J+Srzt z99urxy!u{g`vQu8e%1M>4$n)J?TcHEjX{#dt?fz;R(MA7M%qW$ETSP0r`f0|Q+QO? zsT7inHz&ONCaEdChHRnES?dS>1Q)sxZP#RIQ)PGNlPr*PL-2gN(=@;mN{O#n2VT)n zK)1gC)Q}uCqf%+IN`;!_eUc(=-%Ee}N!bmJAse{+B$av6%nO1YN{lNOB=fRcHF5Y$ zxML0u4hpeonResJ?z;?iE<84Th${dYRH>7>8mT!CI$6|7$3R&*Ld^}70JH5-zdsZ~ z=t+M8%ykj0N$jA*2UT^J6Fj|Yh^n2eOb7ubtpsG~6~j=7H5fL+|GlRtwAr!=^1LpK1Aq!PTm5BYg{yS2G5qALS$Su3!xEMQ9Ab1=BaJglxZ>n z<&9~kkGHz6KC=}z_CspiUtI%1wzQ}L+QOS@uhRt-($BPhAHG+<>*VEodK}=hY#^Ki zIf5ZT?#+O{VQHjnw()On^Sx4u=$7q1c_5D;VZCqBo@)>0*2ud+7Xz5yrB__kt=46; zL~*kc`-J#d#zxSols@8;FpxkCp!A}b^5Oon{~L+)YCHm^5;og_UdR%)4Sby8Qf{-G z>6+@>m1Q40hWfu>eHO07kTyenQTXT6m$9-89{Z;=EXhYFMNu;7=^$^e#g6>TsO@OF z{-BM8I2%QjQhPwMUp>+Ljh0`wlv|_=lXiX*+jP^e#s~Iw`j<~a@#-^sL?l#(-rkf( za8RM`y@VZ!OqZSYgge{#zfA3DCytt$+Lut>>K#d9ai4)iucutUr5W?rzSq4lP;=i; z>uV{gsLv*Q$yCvcxa-hRhAnmqrQC6*u_*Y!q)YiaUu3hTL5pGxs&N1$3PxY7E!d%DL+^m8?U6eqJ8Z*U zTTssU37h^7f%||5$@JMk+i?i@H|KnSr6At0Dp7zZ7*De05pbOZ^YVwp9}El1 zrO+#~+u%YA?33$3Fp&|DK7tsYsWE6+>PXMsObBuTo|)ep8tY*=ff&OhA{IcK_omC% zdfuy6IbTm1Pl9~ry>v2YEbkrd{LrL^a_whcM(`t}>;Wd$Fp4sx6#=l?;5^6kzzARv z=@z2zV+Dh|hEy-+8m&Y1XImF?f03duLa&7#h?-`48&9Dl`f}gM-61f>Q&LlVM^J1v zO^Qmml&;(=z^=Q!?_FKzdN_XtFvE6(`H~VGt(*7bbxgsN3LrLTNLx9-8c{P)g=UA7 zXD92(^TI|y!dQt&(6?G)+_+-%8qw@~Lh z<&tYy(m?ri1hifIb~2hS%gEJSQ^o!~xAhMLCNG2=FP7uy*A*5)w6P*>QU!g^bGw&+ z-VHr2_t~krTd+<1r}GD6bNQ?79O7u3EbVRz+PUy+@<*katnz-!0iFnP3+DI8TG6r^ zr5@46o+rN%DZZ1!Mpyl7=p5&QHr?v;cGHu*uLL43Y2K;JP6z+Z&saR!&wf83KFxYE z>Octy43Eb%sNl*_=H{J;zez4`$|OcJ8S6c`vFD|W$F??zR;!HVb5Oz;U#&6aGzK|| z#4VnLp(kl|X|``Q(-5hD-JnIL_HbzGn*iI?RV;L43%*N6RId+aGuOQ2>{cP>JxCQq z=mbrd#tZcMU=A^aSE1nfw!^GUA2{|%yuG{vpY{(m<9)w?7K;h?adB|i z9vvN3(?qt#WVL?3O4fAF@5O5~kO3YU0uXFagqT#0jS5ww;&46|;@WqE?u>Hmv#$$G zZ_`e+gGf&94$q(V;x}W2NKzRB+C$sal=KVL!orG97F?eF ze|)0VWFUhwdL4|o)kKAtMRG@Y*y=i`R#+%DmKB~X-EXn+BCi0Up zfP-u5mc24B{a4l+1MaUa?5s&b`_`+2Uqw2|nFKnA{|R0w%rNkJFj{eW3{#lLRceBo z!Zi|jVtM3pre0G~Vpj87ZTeJq?6erjg^X(UvYPT>+zP>L!v?2z6ih7g|w@FV0QE?{Jr)|Zh;4-P(0b?n4k8k z(X3FPV1fui&Z;j(IBD|yv!my_LlHI$Xm=zxdRRv7Pvg+kL(R2>G(!iJKb`^(T693y z`$B!139dw_up5cN&WhrTl9Kfopp2^32iNi?2XBJ966vGsv>gdcYzX9MiZ8?FjDhac zSMY*v_Q3HLn2zM%CMEgN#d__oxFHsxcZX=f)t3CS2*M=yo6E`0 zQ_*AwMdKnj>50D4D{&aS?8)4}-Aq#?m8N7Sb%mPm;w*-D-8eL&VS!QmS{(klVO*Th zolmwC^}*r6b#`_St-iS3(~b?cyDbq#ly9NQJ|*~TfMVAx{w0g=Fge~6<5ttp=9ZTj zESj%4T{RZ*ThsHPu@GjAbvpRSaw|5;L)lYfhJNR8x*pITQ~)f7UVn zq5WJSR~R?AO2|w38Qq4PB*yU*D3>I!%gQ!Lqd$GX?S152`G~V`+trkKx3_$y3(TpT zGz5WPSgMKsGqf4ri1ZVKPunKOpP8YA#1t+8hW-u8^yk2!WLz=AOw`_N)xmhYFx^GM zEX$OiqEc0Sy7V4MIEpTbC;0IjrEE;9F*|aGvnZ($<{KSHj`XOR4;dC697I@G)aE@i z4ft=M0rQpLL|)&sC^twD3-|KN95h!-EF@eqTKKT0iWmrzrQQVHfQ+7F<;~F>9rs`tD=W z)YZ5tLW?&87Z6biwd{4&c zCw-T|VAj{g?R}%rgUOhI^&aQFqY-6HLZ9;`wY}^7?P^Ga3yx-GuJXn!G*E7dHImuXs&gh`URab>l*n7;{C+xMLNW_d_x3hegFVKC_%m zUaI)Kp*E{`M>-)qpaeM(xSD}6-wj;dyKo-9_Jc{g4o`0}rk;4|?@sVTUu%P5BVP85 zy@`8vR#Ps)JzWl!Nexm%uaClygoq5Og+1k;zkb}We|7hy|M$c-jr+b%p50ARg~~NI zF=?9jPdl^cK7JQTl(G3^#jIxck5To{1EtQ7DL?zvYz*iqc|m)!Cz_~w<_^D&s!-Pn zH{u(Um%^>C(e*qEGkEl5xROh}>2bHi@UyIyJ@$;S*Q0y+D;Lz#9<|3g@MCJq^a?Z| z772dS@^#NqwK3>$m$1<@WNDbTEBRjLBR_U(6??{lDt1h0S1rvaN5RM4+xKo2D_Ms8 EKgPSs6#xJL diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 485fd0d0973..36e6e20aaf0 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -611,7 +611,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): class OBJECT_PT_constraints(ConstraintButtonsPanel): - bl_label = "Constraints" + bl_label = "Object Constraints" bl_context = "constraint" def poll(self, context): @@ -764,7 +764,7 @@ class BONE_PT_iksolver_itasc(ConstraintButtonsPanel): class BONE_PT_constraints(ConstraintButtonsPanel): - bl_label = "Constraints" + bl_label = "Bone Constraints" bl_context = "bone_constraint" def poll(self, context): diff --git a/source/blender/editors/datafiles/blenderbuttons.c b/source/blender/editors/datafiles/blenderbuttons.c index aef50e4fd94..28d6e2c70c4 100644 --- a/source/blender/editors/datafiles/blenderbuttons.c +++ b/source/blender/editors/datafiles/blenderbuttons.c @@ -1,6087 +1,6103 @@ -/* DataToC output of file */ +/* DataToC output of file */ -int datatoc_blenderbuttons_size= 194590; +int datatoc_blenderbuttons_size= 195097; char datatoc_blenderbuttons[]= { -137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 2, 88, 0, 0, 2,128, 8, 6, 0, 0, 0, 64, - 11, 6,158, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 10, 79,105, 67, 67, 80, - 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83,103, 84, 83,233, 22, - 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74,136, 33,161,217, 21, - 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142,131,163,136,138,202, -251,225,123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, 81, 53,128, 12,169, - 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0,248,126, 60, 60, 43, - 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, 1,192,116,145, 56, - 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98,227, 0, 80, 45, 0, - 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0,104, 59, 0,172,207, - 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, 16, 11,178, 0, 8, - 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43,174, 16,231, 42, 0, - 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, 2, 97,154, 64, 46, -194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, 54,142,182, 14, 95, - 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, 59, 6,128,109,254, -162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, 69,161,144,185,217, -217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245,224,190,226, 36,129, - 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, 29,211, 34,196, 73, - 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226,223, 44,251, 3, 62, -223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187,111,193,212, 40, 8, - 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84,202,179, 63,199, 8, - 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36,196,194, 66, 16, 66, - 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147,112, 14, 46,194, 85, -184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, 35,142, 8, 23,153, -133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29,242, 61,114, 2, 57, -135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, 26,132, 70,162, 11, -208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, 48,192,232, 24, 7, - 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187,137,245, 99,207,177, -119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, 17,218, 9, 55, 9, - 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, 19, 47, 16,123,136, - 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169,155, 52, 72, 26, 35, -147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10,157, 98, 64,113,164, -248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, 17, 53,143, 90, 66, -173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104,247,105,175,232,116, -186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, 40, 25,155, 24, 7, - 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, 42,182, 42,124, 21, -145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, 83,125,174, 70, 85, - 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63,164,126, 89,253,137, - 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134,117,129, 53,196, 38, -177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, 63, 7,227,152,113, -248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107,170,150,151,150, 88, -171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, 71,103,143,206, 5, -157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167,238,152,158,190, 94, -128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, 6,219, 12,206, 24, - 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, 60,163,213, 70,141, - 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77,185,166, 41,166, 59, - 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90,120, 90, 44,182,168, -182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, 37,214,187,173,187, -167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182,109,182,125, 97,103, - 98, 23,103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126,115,180,114, 20, 58, - 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196,105,157, 83,155,211, - 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116,245,113, 93,225,122, -210,245,157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115,208,195,200, 67,224, - 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215,176,183,165,119,170, -247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79,195,111,158, 95,133, -223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, 33,191,142, 63, 58, -219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33,247,231,152,206,145, -206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, 88, 26,209, 49,151, - 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, 60,218, 55,186, 52, -186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243,135,226,157,226, 11, -227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56,148,240, 65, 16, 42, -168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78,242, 72, 42, 77,122, -146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154,118, 32,109, 50, 61, - 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197,110,139,183, 47, 30, -149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191,205,137,202, 57,150, -171,158, 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, 29, 88,230,189,172, -106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87,151,174,126,189, 38, -122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, 89,223,181, 97,250, -134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148,180,169,171,196,185, -100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180,237,245,246, 69,219, - 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84,250, 84, 54,238,210, -221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, 77,213,102,213,101, -251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, 14,182,215,185,212, -213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198,226, 35,112, 68,121, -228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242,154, 70,155, 83,154, -251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201,105,218,233,130,211, -147,103,242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, 16,116,225,210, 69, -255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, 60,254,147,211, 79, -199,187,156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, 22,255,214,213,158, - 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, 79,188, 95,244, 64, -237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131,207,254,145,245,143, - 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, 38,158, 23,254,162, -254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192,235, 25,175,219,198, -194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, 40,255,104,249,177, -245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0,122, 37, 0, - 0,128,131, 0, 0,249,255, 0, 0,128,233, 0, 0,117, 48, 0, 0,234, 96, 0, 0, 58,152, 0, 0, 23,111,146, 95,197, 70, 0, - 2,237, 73, 73, 68, 65, 84,120,218,236, 93,119,116, 20, 85, 31,189,111,118,182,111,178,233, 61,180,208, 33,128, 52,165,247, 34, - 29,145, 34,124, 40, 34, 42, 29, 69, 65, 80, 68,165, 5, 16,233, 82, 20,149,162,116, 20, 68,165, 41,189, 10, 72,239,157, 16,210, -251,102,235,204,188,239,143,236,172,155,101,147,221, 64, 64,196,185,231,204,217,157,118,231,245,119,223,239, 53, 66, 41,133, 4, - 9, 18, 36, 72,144, 32, 65,130,132,146, 3, 35, 5,129, 4, 9, 18, 36, 72,144, 32, 65,194, 63, 44,176, 8, 33,180, 24,207,182, -241,150,211,126, 52,127,218, 57, 31,163,223,105, 9,114, 54,183,115,126,250, 47,113,103,243,167,149, 83,244,175,183,188,197,225, -244, 54, 77, 21,211,157,180,164,221,249,184, 56, 75, 42, 31,185,113, 39,125, 12,241,254,233,191,196,157,205,159, 54, 78,215,244, -227, 13,111,113, 57,189, 73, 83, 15,225, 78, 90,210,238,124, 92,156,143,154,143,138,112, 39,125,212,180, 84, 72,220,127,138,255, - 0,216,199, 37,174,138, 3, 74, 41,113,226, 39, 79, 43,167,115, 56,136,252, 37,233,214, 18,196,158,146,230,116, 9,207,146,194, -167,148, 82, 66, 8,217, 11,160,121, 73,250,189, 36,226,221,197,175, 37,194, 91, 92,113, 85, 92,206,146, 74,247,143,155,179,164, -242,146, 43,103, 73,164,123,119,241,254, 24,227,168,164,220, 89, 34,121,233,113,164,121, 55,233,231,145,121, 93, 57, 75, 34, 47, -185,114,150, 68,186,127, 18,156, 37,145,151,220,113,150, 68,186, 47, 44,238, 37, 11,214,147, 17, 2,174, 25,187,197,211, 44,132, - 30,151,200,244,214,226,242, 52,112,150,112, 28,125,106,231, 44,201,214, 76,139,146,138,163,199,145,222,157, 57, 75,138,223,149, -167, 36,226,201, 29,231,163,186,183, 16,119,150,184,223, 31, 53,221, 63, 41,206, 18,142,163, 18,201, 75, 46,156, 45, 74,184, 17, -208,194,233,252,211,146,228, 44,169,188,228,198,157,143, 28, 79,238, 56, 31,213,189,133,184,179,196,253, 94, 18,117,200,227,226, -125,230, 44, 88,143, 83, 92, 61,174,202,172, 36,185, 31,135, 21,231,113, 89,218, 74,202,138,227,134,119,111, 9,210,237, 41,105, -119,218,221, 71, 30,151,181,245,105,135,148,151,164,188,244,180,229, 37,119,233,134, 82,250, 41, 33,228,147,167,173,241,236,204, - 89, 82, 66,200,141,223, 31, 41, 47,185,190, 91, 18,121,201, 3, 39,121, 28,254, 47,233,252,244, 52,226,169, 25,228,238,237,248, -158,135,224,107,241, 52, 71,192, 99,114,103,139,127,131,223, 31,135, 59, 9, 33,159, 62, 38,191,255, 91,194, 84,202, 75, 82, 94, -122,234,242,146, 75,154,108, 81, 82,150,161,146,110, 72,185,114,150,196, 55,156, 57, 74, 42,141, 62,110,191,151,100, 94,122, 28, -113,255,111, 65,177, 45, 88,143,187,219,228,105,230,124, 28,220,143,201,239,123, 31, 71,235,224, 49,140,235, 42,113,119, 82, 74, - 63, 69, 9,118, 57,138,126, 46, 73,183, 62,206,110,194,199,145, 54, 31,103,122, 47,201,113, 30,143,201,239,255,150,120, 47,113, -119,150, 84, 94,114, 19,231,143,236, 86,119,225, 87,210, 93,216, 37,153, 54, 31, 39,103, 73,112, 63, 14,119, 62,174,184,255, 55, - 65, 90,166, 65,130, 4, 9, 18, 36, 72,144, 32,161,132, 65,164,133, 70, 37, 72,144, 32, 65,130, 4, 9, 18, 74, 22,133,118, 17, - 70, 69, 69,109,213,106,181, 21, 10,187,111, 48, 24,238, 39, 36, 36,180,148,130, 80,130, 4, 9, 30, 91,114,132, 48,248,219, 98, - 46, 0,160, 84,106,221, 73,144, 32,225,191, 40,176, 84, 42, 85,204,197,139, 23, 43, 9,130, 0,158,231,193,113,156,227,215, 98, -177,160, 89,179,102,197, 30,191, 21, 30, 30,190, 79, 38,147,149, 45,206, 59, 60,207,223, 73, 76, 76,108, 82, 68,193,125, 8, 64, - 12, 33,196,249, 90,145,191, 0, 18,172, 86,107,157,162, 56, 9, 33, 49,174,124,133,112,137,255,139,228,244,247,247, 63,206,178, -108,180, 59,174,194,254, 11,130,112, 35, 57, 57,185,145,148, 76,159, 12,194,195,195,247,177, 44, 91,236,244,121,255,254,253, 66, -211,103,100,100,228, 95, 12,195, 68, 22,131, 82, 38, 8,194,229,251,247,239, 55, 41, 76,128,136,105,222,131,160, 41,240,159, 16, - 18,207,113, 92, 61, 79,249,168, 40, 46, 55,105,180, 72, 78,103,113,197,178,236,244,208,208,208, 33,121,121,121, 38, 0, 84, 38, -147,209,160,160, 32,209,109, 0, 0,142,227, 82, 50, 50, 50,106, 72, 41, 81,130, 4, 9,207,180,192, 18, 4,129, 49,155,205,184, -114,229, 10, 10, 41,231,249,135,248, 94,165, 19,191,239, 12,245, 13, 13, 3,103,181, 66, 23, 28,226,224, 78,186,112, 14,156,205, - 10,206, 98, 65,233,250, 13,196,202, 11,213,171, 87,151,121,224,140,158, 49, 99, 70,168,175,175, 47, 76, 38, 19, 76, 38, 19,204, -102, 51, 76, 38, 19, 44, 22, 11, 44, 22, 11,172, 86, 43,172, 86, 43, 56,142,131,217,108,198,174, 93,187, 60,185, 61,122,234,212, -169,161,122,189,222,193, 39, 30, 34,167,200,107,179,217, 96, 50,153,240,199, 31,127, 20,201,201,178,108,116, 66, 66, 66,168, 66, -161, 0,165, 20,130, 32,128, 82, 90,224,112, 69,249,242,229,173, 82, 18,125,162,168, 52,117,245, 47,161,126, 26, 21, 56, 65, 64, -231, 90,229, 29, 55,110, 44, 91, 15,202,241, 16, 56, 14, 21,135,247, 7,242, 77, 48,168, 86,173, 90,145,233,147, 82, 90,102,234, -234, 95,252,189,229, 76, 77, 77, 53, 86,173, 90, 53, 1,249, 3, 65, 11,179,240, 68, 27,141,198, 80,209, 13,174, 66,136, 97,152, - 2,199,246,237,219,209,185,115,103, 79,126,143,126,247,221,119, 67,109, 54, 27, 44, 22, 11,204,102, 51,108, 54, 27, 56,142,115, - 28, 60,207, 59, 14,139,197,130,163, 71,143,122,107,185,154,209,182,109,219,129,191,252,242,139,238,167,159,126,210,149, 45, 91, - 22, 10,133, 2, 50,153, 12, 50,153, 12, 12,195,128,101, 89,188,240,194, 11, 68, 74,130, 18, 36, 72,120,230, 5,150,217,108,190, - 89,187,118,109,106,255, 31,165, 82,169, 20, 46, 5,103,100,165, 74,149, 46,187,190,231,169,235,208, 55, 52, 12,227, 75, 5, 2, - 0, 38,222, 78,115, 84, 12, 51, 27, 61,231,120,102,210,189, 44, 0,128, 70,163, 1,113,110, 54, 23, 2,157, 78,135,182,109,219, - 66,169, 84,162, 94,189,122,144,203,229,110, 15,133, 66, 1,185, 92,238, 77,165, 0, 31, 31, 31,124,246,217,103,162, 56,130, 78, -173,194,136, 70,245,160, 6,197, 87,231,174,194, 34, 80,176, 44,235, 56,188,225, 84, 40, 20, 56,123,246, 44, 88,150,133, 76, 38, -115,252,138,255,183,108,217,130,158, 61,123,130,101, 89,104, 52, 26,224, 63, 52,219,226,105,129,159, 70,133,215, 22,255, 8, 0, -184, 59,103,184, 35,238,142, 14,157,232,120,166,204, 91,189, 65, 8,129, 92, 46, 7,195, 48, 37,198,153,158,158,110,124,229,149, - 87, 14,248,250,250,110,207,206,206,134, 7,225,134,187,119,239,130,101,217, 66,211, 59,195, 48,152, 61,123, 54,174, 93,187,230, -149,223, 77, 38, 19,190,254,250,107,240, 60, 95,128, 87,252,239,122,205, 75,113, 53,165, 93,187,118,253,127,249,229,151, 0, 66, - 8, 22, 46, 92, 8,185, 92,142, 78,157, 58, 33, 40, 40, 8, 59,118,236,128, 66,161,192,216,177, 99,165,196, 39, 65,130,132,162, - 32, 7,240, 28,128, 16,187,129, 39, 7,128,191,211,253, 20,251,111,136,211,249,159,110,120,234,219,159, 17,239,139,231, 22, 0, - 74, 55,215,211, 0,104,236,135, 25,192, 33, 0,177, 78,223, 17,223,131,235,119, 89,123, 65,216, 28,192, 30, 0, 45,196,197,239, -238,223,191,223,193,201,146,114,241,242,229,203, 85, 68,173, 99,239, 42, 84,112, 28, 87, 73,236, 54, 20,173, 67,109,218,180, 41, -178, 69,207, 89,173, 15, 8, 15,119, 26,202, 93,183, 68, 97,194,197,106,181,162,119,239,222,249, 49, 80, 72,101,227,124,120,161, -217, 96,177, 88,192,178, 44, 42,151, 10,193,199,237,107,227,121,106,131, 33,151,128,203, 50,160,155,143, 13, 23,171,213,193,210, - 59, 41,184,157,157, 11,150,101,189,226, 20, 4,161, 80,113, 37,147,201,176,120,241, 98,188,242,202, 43,144,201,100, 94,241, 73, - 40,121,112,130,224, 54, 29, 22,150,102,189,137, 39,111, 56,211,211,211,141,157, 59,119, 62,162, 82,169, 86,132,133,133, 37,196, -199,199,123, 20, 88,174,162,199,181, 49,241,197, 23, 95, 96,254,252,249,104,217,178,165, 87,238, 52,155,205, 32,132, 96,233,210, -165, 15,220,155, 60,121,242, 3,223, 43,138,211,222, 48, 98, 34, 35, 35,135,110,219,182, 77, 47, 62, 27, 28, 28, 12,185, 92,142, - 26, 53,106,192,215,215, 23, 7, 14, 28, 0,207,243, 94,231, 75, 9, 18, 36, 60,187,112,167, 69,156,208,108,252,248,241,245,166, - 79,159, 62,173, 97,195,134,107, 14, 29, 58,180,154, 16,178,213,169, 76,236,108,231,216,234,116, 94,223, 69,100,201, 1,132, 16, - 66,182,138,207, 59,159, 59, 93,111, 3, 64, 41,158,143, 31, 63, 62,118,250,244,233,211,198,141, 27,247, 97, 92, 92,156, 98,252, -248,241, 53,167, 79,159, 62, 77,252,142, 59,119, 56, 91,176,138, 92, 5, 88,236, 46,188,116,233, 18, 60,141, 75,245,180,126,134, - 46, 56,196, 97,185,154, 84, 38,200,113,253,179,248, 76, 71,197,181,160,110, 5,232,116, 58,180,159,244,185, 87,150, 33,139,197, -130,228,228,100,135, 85,193,211,225, 45,167, 86,163,198,174,119,107,224,110,154, 18,159, 30, 78,199, 47,167,174, 65, 46,151,227, -197,106, 53,208, 65,225,139, 9,101,148,120,247,234, 45,216,188, 28,171, 75, 41,117, 43,172,196,255, 98, 87,137, 36,176,254, 57, -116,174, 85,222, 97,101, 58,234,219,218,113,189,167,225,172, 35, 78,222, 91, 60, 19, 0,208,178,206, 11,240,102,156,182, 39,206, -180,180, 52, 99,147,214, 45,246,242, 70,203,242,254,253,251,223,220,189,123,183,198,171,230,156, 27,129, 37, 90,105, 69,113,197, -178, 44, 44, 22,139, 87,126,183, 88, 44,133,230, 15,133, 66, 81,108, 11, 22, 0, 24, 12, 6,203,230,205,155,177, 96,193, 2, 4, - 5, 5,161, 93,187,118,136,136,136,192,250,245,235, 65, 41,197,240,225,195,161,209,104, 68,107,181,148, 0, 37, 72,248,111,163, - 40, 45,162,154, 62,125,250, 52,103, 1,227, 42,104,156,133,147,139,136,114, 22,105,177, 30,234,255,173,174,162, 73,252, 46, 33, -100,107, 92, 92, 92,103, 15,238, 72,113, 21, 88, 69, 46,179,111, 54,155,111,214,170, 85,203, 43, 21,145,151,151,151,232, 73,100, -184,107,197, 59, 91, 5,124,124,124,160,211,251,128,241,178,188,181,217,108, 14,129,178,115,231, 78,104, 52, 26,116,236,216,241, -145, 44, 88, 86,171, 21, 74,133, 28, 76,112, 24, 94,155,179, 27,105, 57, 70, 71,197,178,231,198, 77,156, 76, 74,198,187, 13, 91, - 67,167, 73, 70,174,197,226,149,165, 77, 16,132, 7,196, 21,203,178,232,221,187,183,195,122,224, 60, 46, 5, 82, 23,225, 63,217, -146,114,123,238,124, 93,112,177, 76, 61, 12,103, 90, 90,154,177,115,231,206, 71,120,163,101,249,189,123,247,142, 0, 80, 63,255, -252,243,197, 22, 88,162,176,146,203,229,152, 61,123, 54,230,207,159,239,184,239,173,192,226, 56,174,128,112,186,122,245,106,129, -111,185, 10,186,162,186, 71,105,126, 41, 41, 0, 16, 98, 98, 98, 28,239,132,135,135,195,223,223, 31,130, 32, 64, 16, 4,168,213, -106,104, 52, 26, 40, 20, 10, 41,209, 73,144, 32,161, 40, 45, 98, 28, 55,110,220,135,132,144,173,118, 75,210,185, 34,132,148, 59, -212,119, 17,105, 41,133,148, 93,157,221,137, 44,231,255, 34,198,143, 31, 31,235,198, 29,127, 62, 32,176,156, 84,227, 3,112,238, - 46, 44,169,202,171,168, 10,204,199, 95, 15,141, 78, 7,153,140,241,184,191,146,216, 69, 40, 22,248, 67,134, 12, 41,114, 92,138, -183,227,165,172, 86, 43, 24, 86,134,251,225,229,192, 51,251, 29,239,138, 7,195,202,113, 59,188, 10,100,151,254,130,220,203,138, -214,213,130, 53,124,248,112,124,253,245,215, 96, 24,198, 17, 38, 44,203,162, 98,197,138,184,121,243,166,148,211,158, 18,113, 85, -216,117,158, 23,188,182,186,184,123, 46, 45, 45,205,216,171, 87,175,189, 89, 89, 89,203,171, 87,175,126, 21,249,203, 24, 48,222, -242,177, 44, 91, 64, 88,137,226,106,222,188,121, 5,196,144,205,102,243,170, 1, 96,179,217, 30, 16, 58,179,102,205, 42,240, 11, - 0,141, 26, 53,242,202, 18, 12,128, 50, 12, 67, 21, 10, 5,218,182,109,139,154, 53,107,226,167,159,126,130, 32, 8, 24, 54,108, - 24, 52, 26, 13,230,206,157, 11,142,227, 48, 99,198, 12,201,130, 37, 65,130,132,162,180,136, 57, 46, 46,238, 92, 92, 92,156,195, -146,228,106,193, 42, 4,157,236, 98, 42, 68, 20,103,200, 31, 75,245,103, 17,110,232, 92,152,240,114,190, 54,125,250,244,105,110, -220,225,232,150,124,226,155, 61, 39,158, 63,139,207, 27,215, 6, 80,176, 91,112,241, 11, 85,160,243,209, 65,231,235,131, 94, 91, -246, 3,128,189,176, 31,231,149, 5, 75, 20, 88,105,105,105, 69,138,171,226, 88,176, 24, 37,139, 13,209, 25,160, 74, 57, 88,139, -173,128,192,146,177,114,220, 13, 42, 7, 70,174, 0,203,115, 94,113, 82, 74, 31,232, 18, 28, 48, 96, 0, 8, 33,142, 25, 95,181, -106,213,114,230,146,106,156, 39,157, 62,143, 47,195,197,141, 67, 1, 0, 77, 12, 6, 71, 92, 76,173,245,247,188,141, 57,103,247, - 58,172,141,147,240,254, 67,113,166,165,165, 25,159,175, 26,123, 68, 17,232,183,252,206,157, 59, 71, 0, 48,125,250,244,241,175, - 85,171,150, 87,121, 82,156, 52,225, 42,174,156, 45, 87,226,175,205,102,243,202,239,226, 88, 40, 79, 16,187, 11, 61,165,121, 74, - 41, 13, 12, 12, 4,195, 48,208,235,245,240,241,241,113,204,160, 85,171,213,208,106,181,142,241,155, 94, 10, 54, 9, 18, 36,252, -119, 17, 32, 10, 28,187, 72, 42, 96, 89,162,148,118,118, 22, 65,133,117, 21,218, 45, 78,251, 60,124,235, 23,187, 48,115, 11,209, -146,230, 82, 38,111,117, 21,103,172,168, 24,157,127, 35, 34, 34,126,243,241,241, 41,231,173,175,139,179,232, 40,111,179, 62, 96, -201, 34,132,192,199,215, 7, 26, 31, 29, 52,190, 62,133, 90,185,138, 18, 88,162,101, 72,172,108, 86,172, 88, 1, 31, 31, 31,188, -254,250,235,197, 30,131,229, 16, 88, 10, 6, 59, 84,127, 64,166,100, 11,136, 43,150,101, 33,147,203,145,232, 19, 1, 70, 46, 7, -203,121,103, 21,203,202,202, 2,203,178,248,248,227,143, 29, 45,118,103,113, 85, 28, 63, 75,120, 76,173, 39,222,246,128,213,169, - 48,107,235,195,114,138,150, 43, 69,160,223,242, 42, 85,170, 56, 44, 87, 90,173, 86,156, 61,234, 17, 12,195,184, 21, 87,174, 51, -254, 88,150,205, 79,203, 30,102, 59, 58, 91,176,226,226,226, 28,188,206,150, 43, 17,197,201, 71,162, 91,247,238,221,139,147, 39, - 79, 98,200,144, 33,208,104, 52,152, 63,127, 62, 56,142,195,228,201,147,161,209,104,160, 84, 42,165,196, 39, 65,130,100,189, 42, -106, 95,209, 20,151,113, 78,196,197,210,148,226, 78, 88, 57,119, 7, 58,253,183,185,225,181,184,116, 29,186, 94, 23,127,211,226, -226,226,118,139,150, 43,167,235, 5,220, 81,168, 5, 75,165, 82,149,187,114,229,138, 99,145,209,162,126, 45, 22, 11, 90,182,108, -233,181, 37, 76,156, 69,200,178,178, 2,130, 66,235,235, 3,173,222, 23, 26, 31, 31, 87,161, 65, 60, 21,222, 98, 11,216, 89, 96, -125,242,201, 39, 96, 89, 22, 95,127,253, 53, 0,224,253,247,223,247,122, 12,150,200, 9,158, 32,158, 94, 71,237, 57, 61, 97,249, -222,134,164,131,167,193,178, 44, 66, 27,116,128,240,124, 79,228,105,124,192,242,156,215,179, 8,211,211,211,113,243,230, 77,200, -100, 50,140, 30, 61,186,192, 90, 69,174, 51,211,118,238,220, 41, 89,176,254,137, 12, 46,112, 94,137,169,226, 88, 25,157, 57,197, - 49, 87, 89, 89, 89,203,239,220,185,115, 20, 0,211,191,127,127,127,173, 86,139,111,190,249, 38, 15,128,114,253,250,245, 26, 79, - 98, 72, 76, 55,158,196,149, 92, 46,207, 79,203,222, 21,110, 5, 26, 17,158, 6,188,123,147,230, 69,183, 18, 66,192,243, 60, 52, - 26, 77, 1,203,149, 90,173,134, 74,165,146, 18,158, 4, 9, 18, 60,225,207, 98, 60, 91,223, 73, 44,253,249,144,188,127, 62,170, -131,217,194, 4,134,217,108,198,133, 11, 23,188,229,241,122,209,209, 82,245, 94,192,164,123, 89, 32,132,224,171, 70,213,161,211, -251, 64,171,211,225,229,159,246, 58, 10,236,179,211,222,135, 74,231,131,200,166,237,188, 42,192,197, 46, 66,103,129,149,153,153, - 9,185, 92,142, 41, 83,166,128, 97, 24,204,152, 49, 3, 81, 81, 81,184,127,255, 62,214,175, 95,239,149, 5, 75,198,203, 16,241, -106, 85,104, 7,248, 65,255,106, 51, 4,180,253, 4,247, 44, 44, 14,153,180,104,102, 58, 15,229,142,121,176, 8,188,215, 51,170, - 56,142,195,222,189,123, 93, 7,178,131, 82,234, 88, 37,223,102,179,193,106,181, 98,198,140, 25,144,118, 18,121,242,136,104, 48, - 28, 33,245, 6, 3, 0,182,196,189,225,184,254,241,217,191,211,231,236,239,243, 23,236,175, 82,182, 93,177, 56,211,210,210,140, - 47,182,108,180,207, 36,200,191,171, 81,163, 70, 1,203,149, 90,173, 38,246,115,175, 68, 53,195, 48,144,201,100, 15,116, 11, 22, - 38,178,188, 25,131,197,113,156, 99, 1,208,162,198, 43, 62,140, 5,235,141, 55,222, 64, 68, 68,132,195,114, 53,105,210, 36,104, - 52, 26,140, 31, 63, 30, 54,155, 13,243,230,205,147, 18,159, 4, 9, 18,254, 9, 49,246,216,224,182, 4, 53,153, 76,183,106,214, -172,137, 66,238, 69,169,213,106,185, 75,225, 28, 89,169, 82,165,203,174, 93,133,132,144, 54,148,210, 93,238, 10,115, 66, 8,124, -245,190, 80,251,232,160,117,177, 90,169,125,245, 80,249,248,128, 81,200,221, 85, 4, 15,112,138, 99, 71,156, 5,150,120,100,101, -101, 65, 46,151, 99,193,130, 5,208,235,245, 48,155,205, 30, 57,197,202, 70, 38,147, 33,239,110, 14, 46, 78,219, 5,165,250, 16, - 42,180,123, 5, 17,114, 13, 20, 7, 54,193,200,219,138, 92,104,212, 29,103,165, 74,149, 48,113,226,196, 7,150,103, 40, 12, 81, - 81, 81, 30,253,254,168,144, 56,221,115, 22, 53,203, 85,132, 64,121,119,207,185,229, 20, 45, 87, 38, 65,254,221,205,155, 55, 69, -203,149,159, 86,171,197,146, 37, 75,242, 0, 48,147, 39, 79,214,150, 41, 83, 70,230, 77, 90,146,201,100,152, 51,103,142,219, 49, - 87,238,196, 86,113,242,145,243,187,205,155, 55,119,187,208,168, 59,209,230,142, 83,116,107, 80, 80,144,195,114,197,243,188, 99, -246,160,184, 90,124, 97,141, 9, 41,125, 74,156, 18,231,127,135,243, 89,131,219,218, 61, 33, 33,225,197,194, 94,168, 80,161,194, -149, 43, 87,174, 84, 20,183,204,176, 23,152, 10,147,201, 84,169, 81,163, 70, 30, 77, 57,130, 32, 64,165, 82,129, 82,138, 86, 19, -167,131, 48, 0,131,130,149, 87,104,227,214,144,201, 88, 8,249, 91,114,120,156, 69,104, 52, 26, 11, 84, 10,238,142,220,220, 92, -152,205,102,175, 87,223, 54,153, 76, 5,150, 82, 32, 84,192,237,223,215, 61, 48,155, 80, 60,188, 29,151,163, 86,171, 11,116,241, - 20, 5, 79,107,138, 73, 40,121,136, 19, 17, 0,160,114,163,142, 16, 4, 30,148,231, 11,108,103, 84,181,220,139, 16, 40, 15,171, - 45, 15,102,179,217,147,153,145,164,166,166, 26,123,245,234,181, 23,192,183,221,186,117,187,140,252, 25, 44,212,199,199, 71, 37, -151,203, 5, 0,233, 0,104, 70, 70,134,223,189,123,247, 4,147,201, 84,218,147, 59,127,249,229, 23, 92,184,112, 1, 77,155, 54, - 45,176,109,147,104, 5,117, 94,141,221,155,244, 41,118,139,187, 91,193,189, 48, 1,231, 45,100, 50, 25,252,252,252,160, 80, 40, - 48,101,202, 20, 40, 20, 10,104,181, 90, 0,192,188,121,243, 28,139,166, 74,144, 32, 65,194, 51, 47,176, 60,149,151, 69,116, 31, - 22,217, 85,200,113, 92,124,153, 50,101,138,245, 49,158,231,147, 60, 8,182,248,245,235,215, 43,156,173, 14,158,126, 41,165, 73, - 30, 42,217,248, 45, 91,182, 40,220, 89, 51, 10,219,248,217, 19, 39,207,243,241,101,203,150, 45,212, 66,226, 14, 54,155,237,158, -148, 68,159, 28,120,158, 47, 34,125,126,244,176,233,243,106,229,202,149,239,249,251,251,255, 26, 22, 22,150,118,240,224,193,160, -250,245,235, 7, 57, 63, 83,191,126,253, 8,151,215, 44, 40,124, 31, 66, 16, 66,226,187,117,235,230, 54,205,139, 98,201, 77,250, -140,247,148,230,143, 29, 59,166,112,126,191, 48,126,167,124, 20,239,133, 96,189, 93,187,118,109,198,153,167,176,180,111,179,217, - 82,164, 84, 40, 65,130,132,255,172,192, 50, 26,141,119,107,214,172,201, 21,114,239, 78, 81,239,166,166,166,214, 43,105, 15, 88, -173,214, 70,255, 6,206,148,148,148,122, 82,114,123,186,241, 56,226, 40, 41, 41,233,249,146,230,228, 56,174,196,211,167,205,102, -107,244, 56,194, 52, 45, 45,173,161,148,178, 36, 72,144, 32, 9, 44, 47,224,237,114, 12, 18, 36, 72,144, 32, 65,130, 4, 9,255, - 85, 48, 82, 16, 72,144, 32, 65,130, 4, 9, 18, 36,148, 44, 8,242,119,141,126, 0,197,153, 29, 64, 8,105, 83,220, 15,123,226, -151, 56, 37, 78,137, 83,226,148, 56, 37, 78,137,243,217,227,244,196,253,204,204, 78, 20,103, 71, 61,142, 3, 64, 27,137, 83,226, -148, 56, 37, 78,137, 83,226,148, 56, 37,206,255,218, 33,117, 17, 74,144, 32, 65,130, 4, 9, 18, 36,148, 48, 88, 41, 8,254, 25, - 16, 66,100,148, 82,190, 4, 41, 3, 0, 20,182,161,155, 5, 64,198,195, 56, 19,128,194,126,136, 11, 21,217, 0, 88,237,135, 23, - 75,205,127,198, 36, 36, 4,196, 82, 94, 94,159, 18, 34, 23, 4,156, 42, 93,186,212, 95,192,139, 22, 0,240, 9,175, 86,205, 71, -167,105, 99,182, 90,202,169,228,202, 11,153,134,220,157,166,164,203,183,164, 20, 34, 65,194, 63, 82, 46,117, 1,240,153, 61,239, -199, 81, 74,215, 73,161, 34, 65, 66, 9, 11, 44, 95, 95,223,227, 12,195, 68,123, 90, 95,199, 41, 99,130,231,249,248,244,244,244, -122, 94,102,100, 22, 64, 47, 31, 31,159,150,114,185,188, 49, 0,216,108,182,131,185,185,185,187, 1,172,167,148,114, 15, 89, 64, -232, 1,244, 6,208,207,126,233, 7, 0,235, 40,165,217, 15,201, 87,211,207,207,111,163, 92, 46,167,169,169,169, 13, 0, 32, 40, - 40,232,136,205,102, 35,217,217,217, 47, 83, 74,207, 20,147,143, 81, 40, 20,211,155, 54,109,218,132, 16,178,146, 82,186,184,132, -226, 82,197, 48,140, 91, 97, 34, 8, 66,217,135,224, 83, 0,240, 91,176, 96, 65,208,170, 85,171,106,199,199,199,215, 0,128,232, -232,232,179,253,251,247,255,107,196,136, 17,105, 0,178,236, 66,171, 80, 36, 36, 4,196, 38, 39,222, 24,146,148,124,161, 55, 0, -132, 71,212, 88, 39,147, 49,138,168,168,147,135,181,193,253,130, 43, 87, 41, 63,120,205, 55, 11, 20,101,203,149,194, 31,135, 78, - 62, 55, 98,212,135,177,234,176,202, 95, 72, 34,235,201, 65,175,215, 31,103, 24, 38,186,168, 60,238, 46,207,243, 60, 31,159,150, -150, 86,175, 48, 78,150,101,163,139, 42, 47,220, 93, 19, 4,225, 70, 74, 74,138,219, 37, 35,252,252,252, 14,179, 44, 91,206, 91, - 46,241,151,227,184,248,194,150,136,241,243,243, 59, 46,147,201,162,139,242,167,187,123,130, 32,220, 72, 78, 78, 46,204,157, 15, -248,189, 36,220,249, 48,156, 69,185, 83, 44,143, 0,204, 11, 10, 10,122, 33, 45, 45,237,127, 0, 62,204,206,206,174, 37,147,201, - 16, 24, 24,248, 33, 33,228,154,159,159,223,178,172,172,172, 67, 0, 70, 81, 74, 5, 41,199, 72,144,240,136, 2,139, 97,152,232, -123,247,238,133,234,116, 58, 0,127,239,151, 39,110,242, 44, 8, 2, 40,165,142, 95,142,227, 80,181,106, 85,111, 69, 70, 13,189, - 94,191, 97,252,248,241,165,123,245,234,165, 20,183,132, 73, 72, 72,168,180,113,227,198,255, 77,153, 50,229, 19, 66, 72, 79, 74, -233, 89,111, 69, 11,128,214, 0, 6,212,174, 93,187,199,164, 73,147, 20,173, 90,181, 2,207,243,248,245,215, 95,155, 78,158, 60, -121, 1, 33,100, 19,128,229, 0,126,247,182,144, 32,132, 52, 9, 15, 15, 95,125,224,192,129,136,155, 55,111,242,189,122,245, 90, - 11, 0,199,143, 31,143,225,121,158, 52,104,208,224, 23, 66, 72, 95, 74,233,129, 98,132,121,183, 17, 35, 70,244, 28, 62,124,120, -200,235,175,191,254, 42,128,197,246,111,137,187,136, 23,119, 3, 66,135,229,138, 82,170, 40,226,185,240, 98, 88,178,116, 55,111, -222, 12,104,212,168,209,208,228,228,228,119,157,121,147,146,146,112,226,196, 9,235,180,105,211,230, 28, 58,116,104, 81,185,114, -229, 50, 0, 24, 10, 35,162,188,188,126, 82,242,133,222,205, 26, 46,240, 3,128,245, 91,134,190,114,236,175, 20,223,173,219,150, -254, 79,169, 86,152, 87,125, 53, 71, 81,177, 66, 89,236, 57,126, 21, 71, 47,164,147, 26, 77, 58,179, 89, 91, 87,182, 5,176, 84, -202,158, 79, 6, 50,153, 44, 42, 62, 62, 62, 84,171,213,186,221,208,221,101,220,133,184,112, 41, 42, 85,170, 84,120,193,194,178, -209,247,238,221, 11, 85,171,213,142,178,195,181,204, 16,203, 21, 71, 90,161, 20,149, 43, 87,182, 22, 81, 38,149,185,115,231, 78, -168, 86,171,117,240,184,115,159,171,208,168, 92,185,114, 81,126, 47,224, 78,111, 56, 41,165,168, 88,177, 34,239,201,239,226,142, - 21,158,252, 45,114,150, 43, 87,142, 22,135,211, 27,119,150, 47, 95,222,234, 33,250,231, 93,190,124,121,120,169, 82,165, 80,177, - 98,197, 67, 47,188,240,130, 94,167,211, 97,219,182,109,168, 86,173, 90,172, 94,175, 63,186,126,253,122,249,216,177, 99,159,251, -238,187,239, 0, 96,132,148, 99, 36, 72,120, 68,129, 69, 8,129, 78,167,195,218,181,107, 11,221, 54,195,249,127,233,210,165,189, -250, 32, 33,164, 94,185,114,229,246, 30, 56,112, 64, 19, 17,241,247, 2,214, 22,139, 5, 1, 1, 1, 24, 54,108,152,178, 75,151, - 46, 21,219,181,107,119,132, 16,210,156, 82,122,220, 3, 95,143,144,144,144,133, 31,127,252,113, 88,159, 62,125, 16, 20, 84, 96, -145,108,244,234,213, 11, 47,191,252,178,226,242,229,203,175,172, 88,177,226,149,197,139, 23, 39, 18, 66, 70, 80, 74, 55, 21,197, -171,213,106,187, 85,168, 80, 97,201,129, 3, 7, 66, 67, 67, 67, 17, 19, 19,195,140, 29, 59,182, 98,165, 74,149, 52,209,209,209, -204,253,251,247,241,211, 79, 63, 69,245,237,219,119,131, 82,169, 28,108,177, 88, 54,123,225,119,101, 96, 96,224,152,183,223,126, - 59, 40, 59, 59,155, 59,121,242,228, 85,241,186, 74,165,154,216,160, 65,131, 58,132,144,181,148,210,229, 15, 99,185,178, 91,233, - 92,247, 28,177,137,247,189,180,100, 41, 79,157, 58, 21,216,176, 97,195, 77,102,179,185,206,144, 33, 67,238, 76,155, 54, 77,163, -215,235,245, 0, 72,118,118,118,198,103,159,125,102,153, 59,119,238, 7,213,170, 85,107,125,248,240,225, 30,207, 61,247,156,205, - 46,222, 30, 20, 88,132, 56,220,115,247, 94, 10,246, 30, 18,148, 19,199,191, 31, 61,115,106,185,219,127,158,191, 43,176, 26, 61, -126,222,119, 14, 73,105,185,248,237,240,121,132, 7,249, 18,133, 74, 30,235, 31, 29,219, 60,235,222,249,125, 84,218,241,250,177, -131, 16, 2,173, 86,139,159,127,254,249,129, 45,166,220,109, 63,197,178, 44,252,253,253, 61,238, 70,160, 86,171,177,115,231, 78, -183,123, 35,186,219,122,199,207,207, 15, 40, 98,179,107, 66, 8,212,106, 53, 14, 30, 60, 8,134, 97,220,110,225,227,122, 77,167, -211,129, 41, 98, 79, 42,145,115,223,190,125, 30,185,196, 95, 31, 31, 31, 0,144, 21,153, 41, 85, 42, 28, 56,112,160, 80, 63,187, -254,247,177,239,199,234,137,243,224,193,131, 5,182,232,114,221,186,203,249, 92,167,211, 57, 26,110,133,182,206, 2, 2, 26, 68, - 71, 71,227,216,177, 99, 88,191,126,125, 96,108,108, 44,174, 94,189, 10, 66, 8,166, 77,155, 70,170, 87,175, 46, 79, 76, 76, 68, -211,166, 77,241,227,143, 63, 54,146,114,139,132,127, 16,114, 0,207, 1, 8, 65,254,174, 49, 57, 0,252,237,117,143, 18, 64, 26, - 0,141,253, 48, 3,200, 5, 16,108,127, 55,213, 94,182, 56, 11,132, 20, 20,220, 20,186,190,157, 91,220, 81, 34,196,233,158,248, - 13,215,115,215,223, 2,220,172,189,144, 17, 43,177, 22,148,210,189, 5,124,228,133,184, 18,247, 17,115,205,203,110, 54,126, 85, -233,116,186,141, 71,142, 28,209,132,132,252,237,118,179,217,140,156,156, 28,228,230,230, 34, 39, 39, 7,190,190,190, 88,191,126, -189,166,117,235,214, 27, 9, 33,149, 40,165,230,194, 56, 1,204,185,127,255,126, 24,199,113, 80, 42,149,133,181,124, 81,181,106, - 85,124,248,225,135,104,223,190,125,120,203,150, 45,231, 0,216, 84, 4, 39,180, 90,237,146, 19, 39, 78,132,106,181, 90, 92,185, -114, 5,241,241,241,120,239,189,247, 74, 9,130,128,187,119,239,226,234,213,171,184,119,239, 30, 86,172, 88, 17,218,189,123,247, - 37, 0, 54, 23,229,119, 59,222, 28, 61,122,116,165,192,192, 64,230,243,207, 63,207,202,205,205,253,202,126,125,252,188,121,243, -250, 54,107,214, 44,100,208,160, 65, 32,132,172,161,148, 62, 32, 88, 92, 56,221, 89,174,120, 0, 23, 93, 94,171,234, 98,217, 10, -183, 39,190, 76, 55,156, 4,128, 95,187,118,237, 70,155,205,230, 58, 7, 14, 28,184,214,184,113,227, 50, 0,238,139,137,206,207, -207, 79, 55,103,206,156,176,206,157, 59, 95,110,213,170, 85,157,118,237,218,141, 78, 73, 73,153,102,191, 79, 93, 57, 5, 1,167, -194, 35,106,172,219,119,120, 68,239, 61, 7, 45,138,247, 71,125,114,167,116,169,178, 89,167,174,164,243,231,111,164, 32,199,200, -225,165, 86,249, 27,139, 55,168, 81, 26, 11,215, 30,192,176,119, 62,146,111, 90,183,242,229,107, 20, 58, 0,191, 20, 17,158,143, - 4,137,243,111,145, 33, 8, 2,228,114, 57, 58,116,232, 0, 66,200, 3,123,109,202,229,114, 28, 62,124, 24,173, 90,181,130, 92, - 46,199, 27,111,188,225, 21, 39,203,178,104,215,174,157, 99,159, 67,103, 62, 87,177,224, 78, 11,184,250,157, 82, 10,150,101,193, - 48, 76,161, 27, 92,187,114,122, 42,151, 68,119, 22,197,229,124,207,147, 59, 69,235,145,183,226,202, 91, 78,209,157, 44,203,162, - 81,163, 70,248,235,175,191,138, 20, 91,238,116,165,171,223, 51, 50, 50, 94,171, 84,169,210,190, 5, 11, 22, 4, 2, 64, 90, 90, -154, 99, 35,122,153, 76,134, 75,151, 46,193, 98,177,224,211, 79, 63,181,102,103,103, 15,146,242,145,196,249, 56, 57,139,210, 34, - 0,154,141, 31, 63,190,222,244,233,211,167, 53,108,216,112,205,161, 67,135, 86, 19, 66,182, 82, 74, 59,139,191,227,199,143,143, -157, 62,125,250,180,113,227,198,125, 24, 23, 23,119,142, 16,178, 21, 0, 92,207,237,238,239,236, 34,222, 66, 68, 30,187, 91, 10, - 60,235,238,220,245,215,149,155,117,186, 64,236,158, 35,206,133,153,183, 2,203,155,189,245, 88,150, 29, 62,109,218,180,176,162, -196, 85,110,110, 46, 18, 18, 18, 80,166, 76, 25,188,241,198, 27, 97, 11, 22, 44, 24, 14, 96, 86, 17,180, 10,153, 76,134, 99,199, -142, 33, 57, 57, 25, 53,107,214, 68,185,114,229, 10, 60,112,253,250,117,252,250,235,175,200,204,204, 68,221,186,117,129,252,241, - 69,110,241,220,115,207,125, 90,181,106,213,118,237,218,181,227, 52, 26, 13, 78,157, 58,133, 58,117,234, 96,237,218,181, 40, 93, -186, 52,180, 90, 45, 46, 95,190,140,154, 53,107, 98,239,222,189, 8, 9, 9, 65,237,218,181,185,186,117,235,238, 79, 79, 79,223, -125,235,214,173, 79, 11, 73, 56,138,168,168,168, 15,223,126,251,109,101, 66, 66,130,176, 98,197,138, 67,148,210, 67,132,144,193, - 31,125,244,209,171,237,219,183, 15, 57,121,242,100,246,159,127,254,249,167, 59,113,229,165,229,138,115,173,140,120,158, 55, 27, -141, 70,139,217,108,182, 49, 12,115,139, 16, 98,225,121,190,176,190, 29,245,128, 1, 3,202,167,166,166, 14,123,231,157,119,110, -218,197,213, 37,228, 15,108, 7, 0,112, 28,103,206,205,205,205,110,216,176, 97,153,190,125,251, 94, 91,189,122,245,176, 1, 3, - 6,172, 95,190,124,121, 46, 0,163, 43, 97,233,210,165,254,146,201, 24,133, 33, 39,240,198,134,245,203,222,253,117,203,240, 82, -119,239,222,171, 24, 20, 28, 98, 80,248,132, 36,172,255,225,187,227, 0, 44, 9, 41,217, 56,115, 61, 17,114,185, 12, 23,238,102, -161,217,139,189,228,215,174, 76,109, 34, 10, 44, 9,143, 21, 84,220, 28,122,207,158, 61, 69, 90,176, 14, 31, 62, 12,185, 92, 14, -141, 70,131,185,115,231, 22, 73, 42, 10, 2,209, 58,228, 73,196, 48, 12, 83,100, 57, 34,138, 12,113, 3,118,215,227,203, 47,191, -196, 59,239,188, 83,224, 27,118,145, 65, 60,113, 22,230,190, 50,101,203, 34, 57, 41,169,192, 53,111, 54,139,231,121, 30,114,185, - 28, 95,127,253, 53, 58,119,238,140,173, 91,183, 22,249,219,161, 67, 7, 48, 12, 67,189, 9,207, 70,141, 26,193,106,181, 58,220, -124,233,210, 37,183,188,139, 23, 47,246, 84,153,117, 1,240, 89,157, 58,117,244, 45, 91,182,196,190,125,251,240,242,203, 47,155, -173, 86,235, 21, 0,232,212,169, 83,229, 5, 11, 22, 40, 79,156, 56,129,160,160, 32,249,157, 59,119,190, 37,132, 72, 3,223, 37, - 60,222,194,200,141, 22, 17,235,188,233,211,167, 79,115, 17, 70, 5, 32,222, 39,132,108,141,139,139,235,236, 44,134,156,207,157, -172, 76,206,226, 45,214,217, 2,229, 44,158, 10, 17,101,174,238,118,126, 62,165,128,192,178,123,168,133,179,213, 71, 44,116, 61, -137,171,194, 90,138,174,240,243,243,235,248,210, 75, 47, 57,196,141,201,100,114, 8, 43, 81, 92,137,231,151, 47, 95, 70,189,122, -245, 20,126,126,126, 29, 61, 8, 44, 81,188, 33, 50, 50, 18,169,169,169, 56,123,246, 44,202,148, 41, 3,155,205,134,237,219,183, - 35, 43, 43, 11,114,185, 28, 10,133, 2, 86,107,209, 67, 18,170, 86,173,218, 97,213,170, 85,245, 86,174, 92,153, 33,182,224,126, -248,225, 7, 80, 74, 17, 18, 18,130,188,188, 60, 36, 37, 37, 97,247,238,221,224, 56, 14, 62, 62, 62,136,137,137, 81,118,235,214, -173,201,103,159,125, 38, 7,240,105, 33,212, 47,188,252,242,203,122,189, 94,143, 81,163, 70, 81,171,213, 58,139, 16,210,160, 71, -143, 30, 31,142, 24, 49, 34,240,214,173, 91,150, 55,223,124,243,184,213,106,157, 99,143, 15, 57,165,212,230, 33, 33, 22,106,185, -178,217,108, 98,152,222,204,205,205, 69,112,112,112, 25, 15, 99,180, 0, 64,113,240,224,193, 70, 0,100,147, 39, 79, 86, 3, 72, -114, 22, 87, 22,139, 5,185,185,185, 48, 24, 12,182,172,172,172,228, 49, 99,198,112,171, 87,175,150,217,223,185,224, 78, 96, 1, - 47, 90,170, 87,215, 41, 41,149,125,180,116,233, 82,159,246,237,219, 51, 62, 62, 62,200,201,201,209,255,182,109,155, 79,235,150, - 77, 98,166, 77,159,185, 67, 31, 93, 51,233,224,169, 27,184,151,152, 5,139,205,134,152, 8,191,124,251,151,132,199, 14,251, 4, - 21,135, 5,203, 89, 76,236,219,183, 15, 47,190,248,162, 35,175, 43, 20,138, 2,150, 46, 79,156, 44,203,226,197, 23, 95,124,192, -162,179,103,207, 30,183,214, 38, 79,112, 22, 67,174,162,200,157,240, 98, 24, 6,158,122,153, 69,235,157, 59,145,229,108,197,119, - 17,109,158, 42, 9,176, 44,139, 17, 35, 70, 64, 46,151, 99,236,216,177, 96, 89, 22,181,107,215, 6,203,178,104,216,176, 33,228, -114, 57, 90,181,106, 85,108,191, 31, 57,114, 4,117,234,212,113,184,169,118,237,218,168, 95,191, 62, 88,150, 69,211,166, 77, 33, -151,203,209,174, 93, 59,111, 56, 63,204,201,201,169,229,227,227,131,203,151, 47, 67, 38,147,129, 16,114,149, 82, 90, 11, 0,222, -126,251,237,107,121,121,121,229, 77, 38, 19,222,126,251,109, 98,177, 88,106,142, 29, 59,246, 35, 0,146,192,146,240, 56,203,163, - 2, 90,196, 9,198,113,227,198,125, 72, 8,217, 42, 90,164, 92, 45, 77,238,206,221,240,139, 34, 72,236, 30,172,239, 34,222,196, -174,195, 78, 69,188,107,113, 17, 84,174, 93,132,127,122,180, 96,137,133,174,183, 2,203, 19, 76, 38,211,115,161,161,161,133,138, - 43,231, 95,139,197,130,114,229,202,193,100, 50, 61, 87,220,202, 34, 34, 34, 2, 86,171, 21,203,150, 45,131, 66,161,128, 66,241, -183,174,176, 88,138, 54, 14,157, 63,127,254,230,145, 35, 71,234,212,173, 91, 55,224,199, 31,127, 76,105,222,188,121, 72,251,246, -237,161,209,104, 96, 52, 26, 97,179,217,208,160, 65, 3, 84,173, 90, 21,241,241,241,248,237,183,223, 82, 43, 85,170, 20,124,244, -232, 81, 33, 49, 49,241,118, 17,212,173, 91,183,110, 13, 66, 8,126,251,237,183, 52, 74,233, 9,141, 70,243,227,180,105,211,252, - 45, 22,139,240,234,171,175,222, 77, 79, 79, 31, 3,192,166, 82,169,102,181,111,223,254, 5,153, 76,182,150,231,249,133,197, 77, -160,174, 97,107, 48, 24,160, 86,171,189, 89, 18, 66,158,158,158, 94, 3, 0,116, 58, 93, 32,128,107,142,148,109, 52, 22, 16,193, - 22,139,197, 20, 24, 24,168, 3, 0,251, 59,242, 66,226, 35, 68,171,213,110,184,125,251,134,175,243,248, 56,127,127,127,244,235, -219,151,105,220,168,145,178,214,115,207,181,155,240,197,202,181,145, 65,122, 75, 76,100, 16,108,188, 13,187,118,108, 23,168, 96, -219, 33, 21, 55, 79, 70, 96,137, 34,195,213,130, 37,151,203,177,119,239,222, 7,174, 41, 20, 10,124,245,213, 87, 94, 9, 2, 81, - 76, 21,214, 69,230,210,165, 69, 60, 9, 23,185, 92, 14,153, 76,134,175,191,254, 26,130, 32,224,221,119,223, 45,208,109,232,204, -239,101,139,217,241, 78,213, 79, 4, 0, 22,196,207, 86, 57,222,119,117,175, 88, 94,122, 99, 21, 91,176, 96,129, 87, 22,172, 78, -157, 58,121, 20,172,206, 61, 10,206,238,250,235,175,191,220,242, 46, 93,186,212, 99,120,242, 60,143, 95,126,249,197, 33, 78, 69, -124,252,241,199,111, 71, 71, 71,135,237,223,191, 31,137,137,137, 48, 24, 12,200,205,205, 69,131, 6, 13, 98,218,180,105,115, 42, - 49, 49,241,214,249,243,231, 95,146,114,143,132, 39,104,193, 50,199,197,197,157,139,139,139,115,107,161,114,181, 36, 21,101,105, -114, 18, 86,127,194,222, 53, 56,110,220,184, 15,145, 63,124,230, 79, 47,222, 85,186,118, 17,186, 53,252,184,168,198,207,220, 21, -186,222,116, 19,122,105, 54,103, 9, 33, 48,153, 76,110,133,149,179, 40,176, 90,173, 72, 79, 79, 7,207,243,236, 35, 68,212, 3, -215, 60, 9,172,179,103,207,190, 62,112,224,192, 4, 63, 63,191, 90, 41, 41, 41,201,130, 32,180, 58,124,248,112, 8,203,178,208, -235,245,208,235,245,248,245,215, 95,161,213,106, 49, 98,196,136,100,158,231,247,249,250,250, 6, 25,141,198,211,137,137,137, 19, - 10, 85, 46,114,121,235,102,205,154,225,196,137, 19,200,204,204,252,131, 16, 82,107,208,160, 65,109, 75,149, 42, 69,166, 78,157, -106,186,118,237,218,151, 0, 82,116, 58,221,178, 85,171, 86, 53,175, 91,183,174, 79,255,254,253, 65, 8,249,134, 82,106,242,214, -207, 6,131,161,128,176,202,206,206, 70, 78, 78, 14,116, 58, 29,231,101,152,201,145, 63,150, 74, 28, 79,229,136, 27,187,245, 74, -140, 31,202,178, 44,205,127,132,202, 11,227,211,233,116,147, 87,174, 92,169,113,157,124,192,243, 60,146,146,146,160,215,235,241, -241,132, 9,138, 73,239, 13,170, 35,243, 9, 59,204, 48, 4, 22, 43,205,164,130,101,187, 33,169,207,126,169,184,121, 50, 16, 5, - 65,215,174, 93, 31,232, 22, 84, 40, 20,216,185,115, 39,186,119,239,238,104,176,212,173, 91,215, 99,163, 74, 20, 4, 93,186,116, -113, 88,130,182,111,223,238,182,123, 79,180, 64,121, 35, 4,197,103, 71,142, 28, 9,150,101,177,112,225, 66,140, 30, 61, 26, 12, -195, 96,246,236,217, 96, 24, 6, 19, 39, 78,244, 90, 92, 58, 11,151, 91, 51,243,127,163, 71,103, 35,109,113, 24, 0,192, 87,175, - 23, 61, 84,172,178,135,101, 89,135,229,234,185,231,158,131, 92, 46, 71,195,134, 13,193,178,172,195,114,213,177, 99, 71,231,112, -164,222,112,178, 44,139, 43, 87,174, 56,220,220,176, 97,195, 2,150, 43,150,101,209,169, 83, 39,111,156, 57,205,223,223,255,179, -170, 85,171, 86,155, 51,103,142, 92, 38,147,161,117,235,214,149,223,124,243,205,219, 65, 65, 65, 65,147, 39, 79,214,186,121, 71, - 3,160, 86,181,106,213,116, 82,174,145,240, 24, 45, 88,159,185,185, 21,224, 60,166,170, 24,124, 91,157,159, 23, 57, 92, 69,145, -221, 34,182,207, 19,151,187,119, 11, 3, 91, 84,107,172, 56, 2,203,110, 94, 46,242, 99, 90,173,246, 76,114,114,114, 67,141, 70, - 83, 64, 92,185, 19, 90, 50,153, 12,137,137,137,208,106,181,103, 74, 50,242, 60,117, 17,218,197,204,123, 78, 1,218,166, 99,199, -142,203,119,238,220, 25,177,107,215, 46, 28, 61,122, 20, 33, 33, 33, 88,176, 96,193,253,164,164,164,215, 41,165, 59,189,249,110, -249,242,229,171,235,116, 58, 28, 58,116, 8, 0,246, 3, 24, 48,108,216, 48,194,113, 28, 22, 45, 90,148, 7, 96,167,159,159,223, -166,141, 27, 55, 62, 87,179,102, 77,229,174, 93,187,114,142, 30, 61,186,199, 75,113,197, 11,130,240,128,176,114, 14, 83, 95, 95, - 95,111, 44, 88, 54, 63, 63,191,179,217,217,217,189,140, 70, 99,182, 74,165,242,205,206,206, 54, 59, 11, 43,145,159,101, 89,249, -149, 43, 87, 18, 0,196,248,249,249,157,133, 83, 87, 98,129, 4,198,178,173, 91,183,110,205,186,198, 65, 82, 82, 18, 18, 19, 19, - 97,181, 90, 81,183,110, 93, 34, 35, 54, 89,250,157,211,111, 75,197,203, 63, 83,160,137,121, 93,156,245,231,110,230,224,246,237, -219, 29,231, 12,195,192, 62,109,223,163, 24,218,185,115,103,145, 3,209, 93,186, 8, 61,154,194,197,231, 23, 45, 90,148,191, 29, -133,221,114,197, 48, 12,198,141, 27, 7,149, 74,133,169, 83,167, 98,220,184,113, 96, 89,214, 99, 23,161,179,112, 41, 59, 54,207, -185, 81,148,159, 41,236,227,157, 8, 33,206, 34,139,120, 43,218,138,178,222,121, 99,249,119,230, 20,223, 83,171,213,133, 14,112, -119,225, 36, 69,248,251,103, 66,200,141,136,136,136,131, 13, 27, 54,244, 59,126,252, 56,102,207,158,173, 48,155,205,165,119,237, -218,229,248,174,187,240, 50, 24, 12, 26, 41,231, 72,120, 28,214,171, 34,110,167,184,140,159, 34,206,221,117, 69,252,186, 62, 15, -167,107,206,188, 41, 46,245,152,243,117, 87, 81,229,250, 13,231,103, 82, 30,176, 96,121, 42, 36, 60, 9, 45,111, 44, 88,121,121, -121,191,111,219,182,173,126,223,190,125,217,162,186, 7, 13, 6, 3,194,194,194,112,238,220, 57, 46, 47, 47,239,119, 47, 44, 99, - 37, 38,176,220, 68,248,174,240,240,112,153,205,102, 67,197,138, 21, 17, 21, 21, 5,147,201,132,204,204, 76,153,183,226,138, 16, -162,168, 87,175,158, 12, 0, 50, 50, 50,128,252,233,164,149, 42, 85,170,132, 19, 39, 78, 32, 35, 35, 99, 51,128, 54,147, 38, 77, -170,253,194, 11, 47, 40,214,174, 93,155, 55,100,200,144,205, 54,155,109,170,151,214, 7, 11,199,113,229, 24,134,177,102,102,102, -222,115, 14,207,176,176,176, 64,157, 78, 71,146,146,146,108,222, 8,172, 90,181,106, 29,187,115,231, 14, 38, 79,158,156, 50,109, -218,180, 74, 57, 57, 57, 25, 89, 89, 89,156,179,200, 50,153, 76, 76,112,112,176,106,241,226,197, 26, 0,168, 85,171,214,177,194, - 4,150,193, 96, 40,165,213,254,221, 16, 54,155,205, 72, 76, 76, 68, 98, 98, 34,146,146,146,144,147,147,131,152,152, 24,228,229, -229,149,145,138,151,127, 76, 96, 21,232, 38,115,206,223,206, 21,120,113,242,186,179,112,233,218,181,171, 99,236,150,104, 17, 19, -143, 13, 27, 54,184, 14, 28,247, 74, 96, 45, 90,180, 8, 35, 71,142,132, 90,173,198,156, 57,115, 10,116, 17,186,138, 2, 65, 16, -136, 55,126, 47,247,129, 17,137,243, 3, 33,151,203, 17, 52, 36,169, 64, 87,156, 27,161,225,149, 59,167, 77,155, 86, 34, 93,132, -206,156,101,202,228,103,149,175,191,254, 26,189,122,245,194,254,253,251, 31,186,139, 48, 54, 54,246,135,173, 91,183,250,157, 63, -127, 30,217,217,217, 72, 73, 73,129,217,108, 70,124,124,124,161,189, 0,246,178, 92, 45,229, 28, 9, 79, 24,127, 62, 97,222, 71, -254, 30,235,161,226,246, 90, 96,121, 99,193, 50,155,205,115, 70,141, 26, 53,172, 77,155, 54,129,190,190,190, 72, 72, 72,120, 64, - 92,229,230,230,194,199,199, 7, 70,163, 17, 91,182,108,201, 54,155,205,115, 60,137, 2,155,205,134,208,208, 80,164,166,166, 66, - 40,100, 92, 52,195, 48,208,104, 52,200,205,205, 69, 97, 98,160,168,138,194,106,181,194,102,179,193,102,179,193,106,181,162,152, -203, 51,105,196, 5, 91, 13, 6, 3, 0, 24, 34, 35, 35,203,171,213,106,220,188,121, 19, 0,174, 0,104,217,190,125,123,121, 90, - 90, 26,125,243,205, 55, 15, 83, 74, 71,120, 88,205,222,178,111,223,190,114, 0,160,209,104, 46, 3, 64,124,124,188, 45, 51, 51, -179,128,101, 80,171,213,210,238,221,187, 71, 80, 74,177,111,223,190,114, 10,133,130,162,144, 53,171, 0,152, 54,111,222,124,222, -207,207,111,245,244,233,211,251,118,238,220,249, 92,141, 26, 53,202, 25, 12,134,100,163,209,104, 52,153, 76, 84, 38,147, 41, 2, - 2, 2,212, 59,118,236,184,118,248,240,225, 54,122,189,126,245,230,205,155,207, 3,112,107,105,211,233,116,241,121,121,121,101, -197, 56,117, 22, 87,137,137,137,160,148,226,198,141, 27,208,106,181,119,164,242,227, 31,109, 57, 62, 32,172,220,137, 45,111,197, -149,179, 32,216,177, 99, 71,145,107, 96,121,203,233, 44,134, 70,143, 30,141,249,243,231, 63, 96,193,154, 58, 53,191, 77, 50, 97, -194, 4,175,199, 96,137,214,170,196,249,129, 8, 31,153, 94,192,237, 0, 64, 68,247, 21,115, 73, 54,150,101, 49,121,242,228, 7, - 6,159, 59,119,225,121,217,149, 87,192,157,201,201,201, 96, 89, 22,129,129,129,232,215,175, 31,218,181,107,231,232,106, 44, 46, -239,197,139, 23, 15,126,240,193, 7, 53, 99, 99, 99, 49,101,202,148,116,127,127,127,223,183,222,122,139,205,204,204, 36, 69, 89, -176, 36,129, 37, 65,194, 35, 8, 44, 49, 99,121, 59,139,208, 93, 33, 73, 8,105,227,188, 86, 6,165, 52,139, 16,210,175,109,219, -182, 63,174, 91,183, 78, 83,190,124,121, 92,188,120, 17,233,233,233,176, 88, 44, 80, 40, 20,136,136,136, 64,102,102, 38,190,251, -238, 59, 99, 94, 94, 94, 63, 74,105, 86, 81,156, 0, 62,170, 87,175,222,146, 89,179,102,169,107,215,174,141,244,244,116,228,230, -230, 22, 88,117, 90,175,215, 67,163,209,224,216,177, 99,216,190,125,187, 17,192, 71, 30, 56,221,169, 56, 88,173, 86,135,208,242, - 36,176, 92, 56,117,162, 21, 39, 47, 47, 15, 0,184,210,165, 75,135, 1,192,141, 27, 55, 0,224,118, 76, 76,204,132, 10, 21, 42, -144, 85,171, 86, 81, 74,233, 46,119,226,202,133, 51,189,105,211,166, 25, 0,194, 45, 22,139, 2, 0,178,178,178,172,193,193,193, -161, 42,149, 74,208,104, 52,130, 90,173, 22, 18, 18, 18, 56,142,227, 20, 0,208,180,105, 83, 11,128, 68, 56,141,245,112,225, 20, - 0,100, 47, 93,186,244,179,254,253,251, 55,108,212,168, 81,236,208,161, 67,207,190,249,230,155, 76, 84, 84, 84, 64, 78, 78,142, -233,234,213,171, 25, 95,124,241, 69,206,145, 35, 71,218,200,229,242,219, 75,151, 46,253, 12, 64,182,253,221, 7, 56, 57,142,251, -125,215,174, 93,175,119,238,220,153,189,119,239, 30,146,146,146, 28,226, 42, 41, 41, 9, 85,171, 86,197,225,195,135,121,171,213, -186,171, 24,225, 89, 82,150, 27,137, 51,191,241, 65,197,188, 94,152,176, 18, 27, 81,222,114, 58,139,161, 94,189,122, 21,176, 90, - 41, 20, 10,108,220,184,209,109,185,225,102, 69,242, 54,174,235, 65,137,110,250,224,131, 15, 10,136,181,143, 63,254,184, 80,167, -121, 10, 79,145, 39,235,235,168,130,179, 8, 11,201,231, 69,185, 83, 44, 59,229,114, 57, 62,254,248, 99,175, 45, 88,112, 25,131, -229,142, 83,244,123,243,230,205,145,151,151,231, 16,176,133, 89,176, 60,133, 39,207,243, 35,231,207,159, 79,245,122,253, 11,217, -217,217,255,187,115,231,206,138,188,188,188,231,179,178,178,138,180, 96,153,205,102,149,148,143, 36,206,199,177, 22,214,127, 66, - 96,217, 43, 71,148, 42, 85,170,192,222, 86, 12,195, 20, 56,138, 51,142,192,158, 97,119, 16, 66,122, 52,110,220,248,251,145, 35, - 71,250,214,174, 93, 91, 94,182,108, 89, 24, 12, 6,220,188,121, 19,231,206,157,227, 54,111,222,156,157,151,151,247, 63, 74,233, - 14, 47,248, 86, 18, 66,182,183,111,223,126, 98,131, 6, 13, 6,127,242,201, 39,178,202,149, 43, 35, 43, 43, 11, 1, 1, 1, 8, - 13, 13,197,165, 75,151,176,101,203, 22, 62, 53, 53,117, 9,128, 73,148,210,148,226, 54,240,173, 86, 43, 94,121,229, 21, 8,130, -128,185,115,231, 58, 47,136,230, 13,172, 86,171,149, 2, 32,169,169,169, 0,144, 39, 10,174,171, 87,175, 2,192,157,178,101,203, -250, 0,192,174, 93,187, 8,128, 67,222,186,203,217,146, 85,181,106,213,155,174,133,162,104,185, 18,173, 94,240,188, 65,179,169, -119,239,222,201,121,121,121,237, 71,143, 30, 61,113,209,162, 69,125, 23, 45, 90,244,192, 67,122,189,126,245,236,217,179, 39,245, -238,221, 59,185, 48,235,149,221, 98, 55,225,181,215, 94,235,125,230,204, 25, 95,181, 90, 13,131,193,128,180,180, 52, 88,173, 86, -196,196,196, 32, 57, 57, 25, 43, 87,174,204, 49, 26,141,159, 74,217,241,159,129,179, 32, 40,204,138,229, 73, 92, 21,101,197,249, -249,231,159,221,174, 49, 85, 92, 78, 87,145,225,237,218, 84, 69, 53,134,196,229,101,220, 45,253, 80,156,114,205, 29, 47,203,178, -248,252,243,207, 29,139,173,186,179, 92, 21,199,130, 37,114, 6, 6, 6, 2, 0,196,173,141, 58,117,234,244,208,188,246,109,195, - 70, 56,125, 99,218,152, 49, 99, 62,171, 90,181,106,101, 0, 42,231, 48,144, 54, 85,144, 32,161,132, 4, 22,207,243,241, 85,170, - 84, 41, 80,176,121,218,100,212,102,179,197,123,153,169,183, 19, 66, 98,102,207,158, 61, 74,167,211,181,201,203,203,171,105, 47, - 48,206, 24, 12,134, 93,102,179,121, 94,113, 54,103,182, 11,166,225,132,144,185,237,219,183,159,218,170, 85,171,158,239,189,247, - 30,161,148, 98,241,226,197,244,250,245,235, 27, 0,124, 68, 41,189,254, 48,129, 20, 24, 24,120,254,187,239,190, 11,251,241,199, - 31, 97,179,217, 48,111,222, 60,248,250,250,158, 47,142,251, 88,150,253,190, 81,163, 70,125, 15, 31, 62,188,154, 82,122, 86,165, - 82,253,208,180,105,211,126,135, 14, 29, 90, 71, 41,189,192,178,236, 15, 13, 27, 54,236,119,236,216,177, 77,148,210,211,197,112, -158,195,146,197,113,238,123, 20,221, 89,174, 60, 32,123,224,192,129,214,129, 3, 7,190,215,187,119,239,101,127,254,249,231,243, -153,153,153, 53, 1,192,223,223,255, 76,253,250,245,143,173, 91,183,238,146,221,114,101,242,228,119, 66, 72,247,154, 53,107,110, -154, 50,101,138, 46, 54, 54,150,173, 88,177, 34,110,221,186,133,179,103,207,114,223,126,251,109,174,209,104,236, 74, 41,205,144, -178,227, 63, 39,176, 40,165,240,247,247, 47,208,120, 18,167,238, 23,183, 91,208,185, 66, 22,183,212,113,229, 45,140,211,195, 32, - 87, 0,128,143,143,143, 99, 81, 82,111,134, 38, 8, 66,209,235,169, 81, 74, 29,156,226,225,133,184,242, 56,227,207,190, 85,141, -215,156,222, 44,211,160,211,233, 96,179,217, 28,188, 94,204,228, 36,197,140,179,159, 1,252, 92,177, 98,197,171, 0, 42, 72,162, - 74,130,132,199, 32,176,210,211,211,235, 61,206, 15,219, 5,212, 36,251, 81, 82,156,215, 1,244, 38,132,204,250,227,143, 63,196, -254,130,201,158,246, 51,244,132,139, 23, 47,118,150,203,229, 95,173, 94,189,186, 1,165, 20,126,126,126, 71,110,221,186,245, 86, -113, 56, 56,142, 27, 76, 8,121, 87,156, 21,104, 54,155, 7, 19, 66,222,167,148, 26,156,238, 59,206,139,235,117, 0,102, 74,105, -100, 33,247,205,197, 16, 87, 14, 75, 22, 0,203,186,117,235,114, 1,156,194,223,235, 92,217,236,135, 9, 78,221,130, 30,226,101, - 55, 33,164,226,199, 31,127, 60, 77, 38,147,181, 54, 24, 12, 81, 58,157,238, 46,199,113,191,231,229,229,125, 68, 41, 77,147,178, -226, 63, 7,139,197,114,175, 74,149, 42,172,187,134, 83, 81, 21,120, 81, 13, 42,158,231,227, 43, 85,170,228,177, 81,230,134,243, - 94, 17,233,232,118, 76, 76, 12,227, 45,151, 8,171,213,154, 92,148, 59, 99, 98, 98, 80, 92, 78, 79,126, 47, 87,174,156, 91,191, -123, 16,130,247,138, 40, 63, 30,138,179,168,240, 44, 10, 70,163, 49, 35, 36, 36, 36,215,100, 50,201,205,102,179,156,227,184, 2, -230, 70,141, 70,147, 34,229, 28, 9, 18, 30, 82, 96,253,155, 97, 23, 84, 93, 74,144,207, 12,224,213, 18,224, 49,185,156, 27,138, - 58, 47, 38, 30,135, 5, 72, 0,144, 87, 66, 97,152, 10,224, 77, 41,203, 61,125, 72, 77, 77,125,161,164, 57,211,210,210, 74,188, -129,150,146,146,210,240, 49,248,189,222,127,149,179, 40,220,187,119,239, 5, 41,103, 72,144,240,104, 96,164, 32,144, 32, 65,130, - 4, 9, 18, 36, 72, 40, 89, 16, 0,109,220,221, 40,206,236, 0, 66, 72,155,226,126,216, 19,191,196, 41,113, 74,156, 18,167,196, - 41,113, 74,156,207, 30,167, 39,238,103,102,118, 34,165,244,177, 29, 0,218, 72,156, 18,167,196, 41,113, 74,156, 18,167,196, 41, -113,254,215, 14,169,139, 80,130, 4, 9, 18, 36, 72,144, 32,161,132, 33, 9, 44, 9, 18, 36, 72,144, 32, 65,130, 4, 73, 96, 73, -144, 32, 65,194,147, 1, 33, 36,224,105,230,147, 32, 65,130, 36,176, 36, 72,144, 32,225,223, 38,174,106, 0,152, 82,194,180, 83, -236,188, 18, 36,252, 39,242, 16, 33,164,166, 36,176, 36, 72,144, 32, 65,130, 88, 49,116, 44, 95,190,252,100, 0, 62, 37, 76,237, - 83,190,124,249,201,132,144,142, 82, 40, 75,120, 70,243,142,138, 16,242, 42,195, 48,199,106,212,168,113, 38, 54, 54,246, 52,195, - 48,135, 9, 33,189, 8, 33,236,127, 42, 44,156, 54, 69,222, 11, 0,148,210,230, 82, 18,145, 32, 65,194,127,180,114, 96, 1, 12, -238,219,183,111,151,233,211,167, 43, 75,149, 42,117,151, 82,218,191, 4,249, 87,221,189,123, 55,122,192,128, 1,185,187,119,239, -222, 1, 96,137,187,141,221, 37, 72,248, 23,230,157,178, 0, 6,251,248,248, 12,106,209,162, 69, 64,215,174, 93, 17, 20, 20, 4, -142,227,112,247,238, 93,108,221,186, 21,135, 14, 29, 74,176, 88, 44,243, 1,124, 77, 41,205, 44,132,231,153,209, 34,132, 82, 42, -110, 92,220,194,238,169,189, 82, 82,145, 32, 65,194,127,176,130,208, 3, 24, 63,103,206,156, 6,131, 7, 15, 46,103, 50,153,226, - 3, 2, 2,110,148,180,192,178, 90,173,109, 82, 82, 82,142, 79,157, 58, 21,139, 23, 47,190, 0, 32,174, 56,123,175, 74,144,240, - 20,230,157,113, 61,122,244,152, 26, 22, 22,198,212,168, 81, 3, 17, 17, 17, 48,155,205, 48, 26,141,160,148,130,101, 89, 80, 74, -145,149,149,133,125,251,246, 97,247,238,221,230,140,140,140,239, 0,204,163,148, 94,113,226,121,166,180,136, 67, 96, 21,119, 83, - 80, 9, 18, 36, 72,120,134, 42,136,114, 26,141,230,227, 45, 91,182, 84,111,210,164, 73,104, 78, 78,206, 13,155,205,102,136,140, -140,164,200,223,212,220, 29,178, 40,165, 35,220,112, 45, 0,224, 87,200, 59,122,171,213, 90, 63, 53, 53,245, 56, 0,108,220,184, - 17,227,199,143, 79, 51, 26,141,147, 41,165, 55,165,152,144,240, 47,205, 63,151, 47, 94,188, 88,137,231,121,164,166,166,194,108, - 54, 35, 47, 47,207, 33,176,100, 50, 25, 40,165,224,184,124, 99,173, 32, 8, 56,113,226, 4,118,237,218, 69,111,220,184,241, 9, -165,116,178, 40,176,158, 37, 45, 34, 9, 44, 9, 18, 36,252,215, 43,135,198,225,225,225,239,254,241,199, 31,101,203,148, 41,163, -207,205,205,189,198,113,156, 13, 0, 2, 2, 2, 98,101, 50,153,202,245, 29,158,231,205,106,181,250,128, 59,235, 22, 33,100,149, -201,100,106,226,238, 61,251,187, 92, 70, 70,198, 41,241,252,244,233,211, 24, 52,104,144, 53, 49, 49,113, 14,165,244,160, 20, 35, - 18,254,141, 2,235,212,169, 83,149,214,172, 89,131, 58,117,234,160, 90,181,106,200,205,205,117,136, 45,139,197, 2,155,205,246, -192,123,217,217,217,120,247,221,119,175, 80, 74, 43, 63,139, 2, 75, 28,112,246,153, 52, 6, 75,130, 4, 9,255,101, 36, 38, 38, -166,250,251,251,223, 23, 4,129,138,215, 50, 50, 50,206, 61, 12,215,195,190, 39, 65,194,191, 20, 54,139,197,130,122,245,234,225, -230,205,155, 56,113,226,132, 67,104,165,166,166, 34, 33, 33,161,192,195,199,142, 29,195,201,147, 39,209,172, 89, 51, 87,158,207, -158,185, 49, 88,118,229,216,220,238,169,189, 82, 90,145, 32, 65,194,127,172, 5, 94, 78,163,209,124, 28, 23, 23, 23,244,242,203, - 47, 59,174, 63,142, 46,194,132,132, 4, 71, 11, 93,234, 34,148,240,140,228,159,238,145,145,145,223, 14, 27, 54,204,175, 65,131, - 6,136,143,143,199,189,123,247,144,145,145,129,218,181,107, 35, 54, 54, 22,215,175, 95,199,246,237,219,113,242,228, 73,168, 84, - 42, 68, 71, 71,195,103,245, 26,124, 69,112,158, 82, 26,235,196,245,204,104, 17,135,192,146, 32, 65,130,132,255,120, 37,161, 7, - 48,126,200,144, 33,213, 62,250,232, 35, 16, 66, 16, 25, 25,153, 85,210,131,220, 19, 18, 18,252, 40,165,144, 6,185, 75,120,198, -242,143, 47,128, 49, 49, 49, 49,239, 15, 25, 50, 68, 85,189,122,117,196,199,199, 35, 37, 37, 5, 25, 25, 25, 56,114,228, 8, 0, - 32, 42, 42, 10, 81, 81, 81,184,116,233, 18, 14, 30, 60,152,157,155,155, 59,144, 82,250,227, 51, 25, 38,146,192,146, 32, 65,130, - 4, 71, 37,193, 2, 24,220,178,101,203,118,139, 23, 47, 70,165, 74,149, 74, 92, 96, 93,185,114,197,111,200,144, 33,144,150,105, -144,240,140,230,161, 80, 0, 19,170, 87,175, 62,120,208,160, 65,108,153, 50,101,112,239,222, 61,252,241,199, 31,168, 80,161, 2, -238,222,189,139,221,187,119, 91, 82, 82, 82,230, 2,152, 78, 41,205,122, 86,195,130,121,204, 1,221, 70,226,148, 56, 37, 78,137, -243,223,194, 73, 41,229, 40,165, 11,119,239,222,189,164, 99,199,142,194,227,112,103,199,142, 29,133,221,187,119, 47,161,148, 46, - 44, 74, 92, 73,113, 36,113,254, 27, 57, 41,165,201,148,210, 17,231,207,159,175,248,206, 59,239,124, 63,101,202, 20, 65, 16, 4, -132,134,134, 98,253,250,245,194,218,181,107,191, 77, 73, 73, 41, 79, 41, 29,247, 44,139, 43,224,239, 65,238, 18, 36, 72,144, 32, -225,239, 74,226, 87, 66, 72, 60,128,193, 37, 76,157,123,253,250,245,207, 41,165,103,165, 80,150,240,140,231,161, 91, 0,250, 19, - 66,102,158, 56,113,226, 35, 0, 20,192, 20, 74,233,133,255, 74, 24, 72, 2, 75,130, 4, 9, 18,220, 87, 16,103, 9, 33, 19, 74, -152,118, 2,165, 52, 67, 10, 93, 9,255,161,124,116, 14, 64,159,255,162,223,165,189, 8, 37, 72,144, 32,161,240,202, 33,227,105, -230,147, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18, 36,129, 37, 65,130, 4, 9, 18, 36, 72,144, 32,225,225, 64, 0, - 20, 54, 19, 96,151,215, 36, 15, 49, 67,193, 19,191,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,207, 30,167, 39,238,226,232, -143,167, 26,148, 82,143, 7,236,235,101, 21,247, 0,208,230, 97,222,147, 56, 37, 78,137, 83,226,148, 56,255,189,156,246,198, 59, - 65,126, 47, 9, 35,158, 63,205,126,127,152,122,238, 73,249,253,191,194,249,172, 29,172, 7,117,233, 8, 36, 66,136, 0, 64,160, - 37,176, 50, 41, 33, 68,140,128, 18,225,147,240, 24, 76,155,249,113, 68,254,214,225, 82, 60, 73,144, 32,161, 88,101,135,204,169, -146,229, 1,240,132, 16, 60,109,101, 73, 73,214,115,143,195,239,255,101,206,127, 59,216,162, 2, 74, 38,147,237, 8, 14, 14,110, -153,154,154, 42,216,175, 67,169, 84,130, 97, 24,200,229,114, 99, 78, 78,142,254, 33, 34,225,155,176,176,176, 1,105,105,105, 2, -195, 48, 80,171,213, 32,132, 56, 56, 51, 51, 51,245,255,116,160,148, 45, 91, 54,195,104, 52,250,184, 94, 87,171,213,166,219,183, -111,251,254, 23, 10, 72,133, 66,209, 35, 48, 48,208, 63, 37, 37,133, 50, 12, 3,133, 66, 1,153, 76, 6,251,127, 46, 51, 51,115, -185,183,124,129,129,129,199, 2, 3, 3,253,197,247, 9, 33, 72, 75, 75,203, 76, 74, 74,122, 30, 0, 52, 26,205, 65,157, 78, 23, -196,178, 44,100, 50, 25,100, 50, 25,242,242,242,210, 82, 83, 83, 27, 75,213,213,191, 19, 27, 54,108,144,181,143,122,163, 2, 75, -141,181, 24,134,250, 9, 2,201,226,136,230,244,246,123,223, 92,243,230,253,158, 61,123,242,255,112, 30,104,108,111, 89, 28, 44, - 33, 62,231,253, 9, 77, 0, 82, 1, 92, 3,176,158, 82,106,252,167,227, 75,165, 82,205, 13, 11, 11, 27,148,155,155,155, 71, 8, -161,132, 16,228, 87, 3,120,224,151,231,249,248,212,212,212,122, 30, 42, 89,185, 82,169,156, 29, 30, 30,254, 90, 94, 94, 94,158, -157,143, 18, 66, 16, 17, 17, 81,128, 15, 0,108, 54, 91,124, 74, 74, 74, 61,111,220, 26, 26, 26,186, 84,163,209,252, 47, 47, 47, -207, 96, 23, 68,206, 61, 50,206,149,248,245,148,148,148,166,158, 4,129, 82,169,156, 23, 22, 22,246,186,221,239, 32,132,208,144, -144,144, 71,246,123, 88, 88,216,107, 6,131,161,128,223, 67, 67, 67,221,114, 22,230,119,119,156,206,238, 36,132, 32, 36, 36,228, -145,221,249, 52,114, 62,179, 2, 11, 0, 67, 8,217,220,184,113,227, 22,123,247,238,101, 46, 94,188,200, 84,173, 90, 21, 60,207, - 67, 16,242,211,115,116,116,180,246, 33, 10,153, 21, 77,155, 54,125,101,223,190,125,204,230,205,155,153,250,245,235,131, 16, 2, -158,231,193,243, 60,106,212,168,161,121,196, 66,204,135,101,217,119,149, 74,101,115,142,227,170, 1,128, 92, 46,191, 96, 54,155, -247,114, 28, 55,135, 82,154,235, 13,143,213,106,213, 38, 39, 39, 63, 16, 54, 49, 49, 49,202,135,117,155, 94,175, 63,196, 48, 76, -140, 35,128,237, 66,195, 93, 38, 22,127, 41,165, 55, 82, 82, 82, 26, 21,198, 25, 16, 16,224,224, 44,140,195,245,154, 32, 8, 55, -146,147,147, 27,121, 16, 87, 47, 55,109,218,212,111,215,174, 93,228,238,221,187, 68,163,209, 64, 16, 4,240, 60, 15,155,205,134, -234,213,171, 23,107,253, 52,127,127,127,253,184,113,227, 42,116,232,208, 1, 27, 55,110,196,171,175,190,138, 38, 77,154, 92, 17, -239,235,116,186,160,243,231,207, 87, 10, 12, 12, 68, 94, 94, 30,178,178,178,208,182,109,219,127,125,230,106, 80,167,212, 20,194, -144, 64, 71,225,207,241,233, 71, 78,221,123,228,117,149,252,253,253, 79, 42,149,202, 48, 49, 94, 25,134,113, 27,215,206,215, 76, - 38, 83, 82,106,106,106, 29, 15,249,167, 44,128, 46, 50,153,172, 34,203,178, 85, 0,148,229, 56, 46, 12, 0, 20, 10, 69,146, 76, - 38,187,101,179,217, 46, 89, 44,150,171, 0,126,182, 47, 36,232, 22,237,163,222,168, 64,184,188,158, 57,102,161,163,182,252,244, -202,121,215,199, 93,214,170,242,126,109, 31,245,198, 6,111, 69,214, 63, 40,174,202,133,135,135,191,107,255,127,191,132, 54, 97, -246, 51,153, 76, 77,100, 50,153,138,227, 56, 36, 37, 37,165, 46, 89,178,228,246,130, 5, 11, 90, 18, 66,102,121, 90,120,180, 97, -189,210,199, 25,134,137,134, 93, 62, 8,148,143, 63,124,252,110,137, 84, 76, 50,153,108,222, 75, 47,189,244,250,134, 13, 27,180, - 39, 78,156,208, 86,171, 86,205, 81, 62, 9,130, 0, 87,195, 67,185,114,229,138, 12, 62, 0, 44,195, 48,115,123,246,236,217,119, -213,170, 85,218,219,183,111,107, 35, 35, 35, 29,156,206,226, 77, 68,100,100,164, 87,110, 13, 10, 10,250,166, 67,135, 14,253, 87, -174, 92, 41,223,178,101,139, 38, 56, 56, 24, 65, 65, 65, 80, 40, 20, 15, 60,219,184,113, 99, 79, 43,241, 51, 12,195,204,235,214, -173, 91,255,181,107,215,106,143, 30, 61,170,173, 81,163, 6,100, 50,217, 35,251,189,123,247,238,125,215,172, 89,163, 61,115,230, -140,182, 98,197,138, 96, 24, 6, 12,195, 60,192,199, 48, 12, 74,149, 42,229, 21,103,215,174, 93,251,174, 91,183, 78,123,242,228, - 73,109,149, 42, 85, 28,225,233,212, 61, 87,108,119, 62,229,156,207,158,192,178,155, 75, 87, 53,110,220,184,253,222,189,123,101, - 0,112,242,228, 73,164,167,167, 35, 42, 42, 10, 62, 62, 62, 80,169, 84, 48,153, 76,180,152,133,214, 55,118,113, 37, 7,128, 77, -255,235,142, 27,114, 96, 68,178, 5, 10,133, 2,215,175, 95,135, 76, 38,163,143, 80, 40, 54,211,235,245, 43,127,252,241,199,128, - 58,117,234, 48, 41, 41, 41,136,137,137, 65,122,122,250,243,251,246,237,171,251,198, 27,111,188, 65, 8,121,149, 82,186,207, 91, -206, 95,127,253, 21, 58,157, 14, 90,173, 22, 58,157, 14, 22,139,133, 60,116, 64,179,108,244,173, 91,183, 66,125,124,124, 32, 8, -130,227,112,233,191,118, 64, 16, 4, 84,170, 84,201,234,161, 96,140,190,125,251,118,168, 70,163, 1,165,180, 0, 31,207,243, 80, -169, 84,206, 45, 5,240, 60,143,152,152, 24,171, 39,203,149, 40,174, 0, 96,245,234,213, 8, 15, 15, 71,104,104, 40,116, 58, 29, - 52, 26, 77,129, 10,221,203, 2, 28,237,219,183,199,167,159,126,138,233,211,167, 99,204,152, 49, 5, 10, 88,185, 92,142,192,192, - 64,108,219,182, 13,122,189, 30,101,202,148,129, 92, 46,255,247, 91, 2, 25, 18,120,248,248, 29,135, 69,246,197, 86, 85,217, 6, -117,203, 44,178,199, 48, 24, 6, 16,132,252, 42,147, 16, 80,206, 38,100,252,121,250,222, 68, 47,194, 51,242,246,237,219,161, 42, -149,202, 43,119,240, 60,143,168,168, 40,153,135,252,211, 49, 54, 54,118,211,208,161, 67, 21, 21, 43, 86, 36, 10,133, 2, 44,203, -130,101, 89, 49, 61,150,161,148,150, 17, 4,161, 69, 82, 82, 18, 93,176, 96,193, 76, 66,200, 75,148,210, 95,221,166,119,106,172, -149, 99, 22, 58,238,255, 11,207,247,108,243, 1,182,173, 31,247,124,211,218, 2,124,181,198,107,118,203,205,211, 42,174,244, 26, -141,230,227,253,251,247, 87,202,201,201,201,110,210,164,201,199,132,144,119, 74, 98, 51,230,140,140,140,115,226,127,165, 82,137, - 81,163, 70,161, 67,135, 14,254,109,219,182, 29, 77, 8,121,139, 82,106, 45, 92, 9,200,162, 15, 30,187, 25, 42,158,119,109, 95, - 83,209,168,126,153,164,252,134,152,235,211, 20, 2, 47,196, 31,253, 43,190,158, 23,254,157,217,163, 71,143,126, 27, 54,108,240, - 1,128,197,139, 23,163, 71,143, 30, 8, 12, 12,132, 86,171,133, 66,161,128, 92, 46, 47,240,235,193, 34, 36, 3, 48,179, 79,159, - 62, 61, 87,173, 90,229, 11, 0,171, 86,173, 66,247,238,221, 17, 20, 20, 4, 95, 95, 95, 40,149, 74,200,100,178, 98,135, 95, 80, - 80,208, 55, 77,158,127,126,224,202,149, 43, 1, 0, 31,189,243, 14, 58,188,240, 2,124,180, 26,104, 53, 74,136, 97,161,148,201, -241,226,136,145,158,252,205, 0,152,213,163, 71,143,222,107,215,174,245, 5,128, 19, 39, 78, 32, 57, 57, 25, 97, 97, 97,208,104, - 52, 80, 42,149, 14, 63, 19, 66,160,209,104,188,242,123,143, 30, 61,122,174, 89,179,198, 23, 0, 86,172, 88,129,246,237,219, 59, -252,174, 82,169,160, 80, 40, 10, 28,174, 98,211, 29,231, 75, 47,189,212,115,221,186,117,190, 0,176,124,249,114,180,105,211, 6, - 1, 1, 1,142,240, 20,185,138, 19, 71, 79, 51,231, 51, 41,176,196,177, 81, 97, 97, 97,189,247,239,223,207, 56,137, 3,168, 84, - 42,168, 84, 42, 40,149, 74, 71, 55, 97, 49, 10, 45, 18, 22, 22, 54, 96,223,190,125,142,151, 44,244, 1, 19,117,177, 43,110, 39, -254, 54, 45, 91,182, 92,179,117,235, 86,181, 66,161,128,209,104,196,185,115,231,224,239,239, 15,165, 82,137,110,221,186,201, 26, - 55,110, 28,212,162, 69,139,141,132,144,190,222,204, 80,160,148,194,199,199,167,128,192,122,212, 46,100,141, 70,131, 45, 91,182, - 64, 38,147,185, 45,184,156,255,135,134,134,122,227,111,168, 84, 42, 28, 58,116, 8, 50,153, 12,114,185, 28, 44,203, 66, 46,151, -227,151, 95,126,193,123,239,189,135,212,212, 84, 16, 66, 32,151,203,225,235,235,177,119,147, 4, 6, 6,250,139,226, 74, 20, 63, - 26,141, 6,114,185,156,176, 44, 75,196, 46, 60, 66, 8,241,182, 79,157, 97, 24,124,255,253,247,152, 49, 99, 6,198,142, 29,139, -165, 75,151,162, 86,173, 90,206,226, 19,217,217,217, 8, 8, 8, 64, 64, 64, 0,212,106,245, 67,167,133,167, 9,174,161, 51,123, -206,124, 45, 4,138,252, 65, 30, 2, 32, 0, 20, 20, 2, 21,144,116,239, 26, 62,249,244,115,175,107, 29,149, 74,133,131, 7, 15, - 58, 68, 16,203,178, 32,132,192, 89, 24,137, 71,120,120,184, 71, 62,133, 66,241,217, 79, 63,253,164,252,254,251,239,177,118,237, - 90, 71,218,210,233,116,240,247,247, 71, 80, 80,144,227,136,142,142, 38,223,126,251,173,162, 86,173, 90,159, 1,248,213,125,156, - 83, 63,109,249,233,149,123,182,249, 0, 0,208,243, 3,138,140, 43, 83,159, 99, 50, 39,250, 61,197,226,138, 5, 48,126,203,150, - 45,213, 35, 35, 35,213, 58,157,238,118, 92, 92, 92,208,168, 81,163,198, 19, 66, 38, 60,226,166,204, 89,162,149, 70,173, 86,171, -155, 55,111,174,156, 54,109, 26, 42, 84,168,128, 55,222,120, 35,112,241,226,197,221, 0,172, 47,170, 60,114,198,130,133,139,252, - 41,205, 79, 63, 84,160, 5,126,211,147,111,225,157,209,159,120,229,168, 82,165, 74, 13,222,184,113,163,143,179, 37,201,185,242, -119, 46,163,196,163, 48, 65, 96,183, 98, 48,165, 75,151, 30,248,195, 15, 63, 56, 56,131,131,131, 29,229, 18,203,178, 96, 24, 6, -251,247,239, 71,220,103,227, 17, 16, 18,137,249, 11, 23,123,116,103,104,104,232,210,142, 29, 59,254,111,197,138, 21,142,107, 53, -203,151, 71,167,198, 47, 32, 52, 88,143,224,128,252,178,141, 10, 4,167, 47,221,244, 88, 31, 1, 96, 74,149, 42,245,198,250,245, -235,125,156, 27,130,162, 95, 1, 32, 47, 47,207, 97,181,183, 88, 44,168, 87,175,158, 87,126,119,230, 20,173,107,162, 88,115, 45, -235,197, 6, 76, 81,156,165, 74,149, 26, 40, 10, 96, 0, 8, 12, 12, 44,192, 33,151,203,177,126,219,202, 7,234,134, 71,229, 44, -110,188,187,114,222,188,121, 19,211,166, 77, 43, 16,239,162, 53, 43, 42, 42, 10, 11, 22, 44, 40,138,211, 29,234, 3, 8,113, 58, -183, 0, 80, 58,253,166, 0,248,211,205,115,226,117, 57,128,231,236,247,120, 0, 57, 0,252,221,240, 21,198,147,138,252,237,126, - 66, 92,158,119,253, 78, 65,129, 69, 8, 17,115,111, 75, 0, 7, 83, 83, 83,133,139, 23, 47, 50, 39, 78,156,128, 92, 46, 71,104, -104, 40,234,215,175, 47,118,159, 65, 46,151, 67,167,211, 17,127,127,255, 36,177,194, 21, 3,207,185, 47,221, 73,200, 48,233,233, -233,194,206,157, 59,153, 85, 47,181,131,133, 2,181, 63,142, 67,251,206,157,177, 61, 74, 9, 25,128,231, 47,166, 66,171,213,178, -114,185,220, 38, 70,130,200,233, 60, 54,203, 85, 28, 17, 66,124,117, 58,221,183, 63,255,252,179,154, 97, 24,228,228,228, 64, 16, - 4, 52,105,210, 4, 12,195,224,236,217,179,248,232,163,143,176,105,211, 38,252,244,211, 79,154, 58,117,234,124, 75, 8,169, 70, - 41,205,113, 42,188,118,185, 75,156,190,190,190,208,106,181, 14,129, 37,250,217,217,212, 45, 62, 79, 41,189,151,154,154, 90,183, - 40, 78,158,231,209,189,123,119, 16, 66, 32,147,201, 10, 20, 58,206,191, 10,133, 2,103,207,158,125, 32,241,185, 19,134,162, 95, - 1, 64,171,213,194,199,199, 7,123,246,236,113,220,175, 93,187, 54, 44, 22, 11,130,131,131,113,225,194, 5,119, 5,119, 1,206, -148,148, 20,154,144,144, 64, 86,173, 90, 5,185, 92,142,160,160, 32,104,181, 90,178,114,229,202,241, 10,133, 34,218,100, 50, 9, - 22,139, 5, 74,165,114,190,104,205, 98, 89,214,144,149,149, 21, 84, 24,167, 76, 38,195,208,161, 67,241,254,251,239, 99,233,210, -165,120,251,237,183, 31,176,112,153, 76, 38, 4, 7, 7, 59, 68,150, 55,126,127,116, 1,244,152, 57, 5,138,115, 39,183,227,252, -153, 93, 16,120, 1,188, 64, 65, 41, 15,129, 3, 78,236, 60, 82,233,254,141,132, 40, 10, 10,216, 59, 50, 84, 89,185, 92,139, 96, - 85, 21, 0,155,247,164,154,231,122, 74,159, 44,203,194,102,179,225,231,159,127,198,181,107,215,176, 99,199, 14, 24,141, 70, 71, - 56, 54,108,216, 16, 3, 7, 14,116, 43,176, 92, 57, 41,165, 43,238,222,189, 91,187, 73,147, 38, 36, 51, 51, 19,153,153,153, 48, - 26,141,224,121, 30, 28,199,129,101, 89,168,213,106,104, 52, 26,132,133,133,193,100, 50, 81,179,217,188,162, 48, 78, 65, 32, 89, -121,215,199, 93,222,182,126,220,243, 61, 63,160,216, 48,131,160, 66,105, 85,222,239,199,125, 7,110, 62, 48,166, 45, 0, 42,216, - 75, 29, 6,160, 54, 94, 72,125,127,252, 23,195,159,120, 28, 21,196,224, 57,115,230, 52,104,210,164, 73,104,118,118,246, 69, 65, - 16,232,203, 47,191,140,203,151, 47, 87, 91,188,120,241, 96, 0, 11,139,203, 73, 8,105,105,191, 63,194,185,130,223,182,109,219, - 75, 0, 6, 44, 91,182, 12, 61,122,244,192,226,197,139, 99, 93, 5,150, 51, 39,165, 20,183,174,236,199,173,171, 7, 32, 8,212, -201, 10,238,254, 63,245,210,157, 6,131,193,244,215, 95,127,249, 44, 91,182, 12,161,161,161, 40, 87,174, 28,180, 90, 45,212,106, -117,129,202,213,185,194,245,148, 55,141, 70,163,233,214,173, 91, 62,107,214,172, 65, 80, 80, 16,202,150, 45, 11,173, 86, 11,165, - 82,233,104, 8,172, 90,181, 10,171, 63,237,135, 91,151,206,160,123,167,182, 30,221,169,213,106,255,183, 98,197,138, 2, 38,143, -176,128, 0,176,114, 6, 50, 57, 65, 64,235,151,242,173,132,127,252, 88,232,234,142, 46,156, 36, 39, 39,199,116,244,232, 81,159, -227,199,143, 67, 16, 4,148, 45, 91, 22,121,121,121,208,235,245, 14,255,239,220,185, 19,221,186,117,195,247,223,127,143,134, 13, - 27,122,244,123,110,110,174,233,204,153, 51, 62, 63,252,240, 3, 2, 3, 3, 81,170, 84, 41,135,223,197, 67, 46,151, 67, 38,147, - 33, 38, 38, 6, 89, 89, 89,240,241,241,241, 24, 71, 39, 78,156,240,249,225,135, 31, 16, 16, 16,128,232,232,104,135,133, 77, 20, - 69, 51, 22,125, 90,128, 67, 77, 34, 30,153,179,184,241,238,202,249,210, 75, 47,161, 66,133, 10,208,235,245,208,233,116, 14,238, -162, 56,157,180, 72, 11, 74,233, 94,151, 40, 12, 33,132,108,117,250,126,103, 66,200, 86,231,223,194,158,179,255,109, 54,126,252, -248,122,211,167, 79,159,214,176, 97,195, 53,135, 14, 29, 90, 93, 24, 95, 97, 60,227,199,143,143,157, 62,125,250, 52,231,231,221, -124,231, 65, 11, 22,165,148,216, 61,199, 2, 64,213,170, 85,145,158,158, 14,149, 74,133,250,245,235, 35, 53, 53, 21, 62, 62, 62, - 80, 40, 20,160,148, 98,248,240,225,178, 49, 99,198,132, 50, 12, 3,142,227, 28, 5,126, 33,125,233, 2,195, 48,104,212,168, 17, -206,217,123,126,218,119,238,140,232,232,104,136,131, 56,212,106, 53,134, 15, 31, 78,222,123,239, 61, 86,180, 94, 80, 74, 97, 52, - 26, 17, 17, 17,161, 41,162,235,237,157,141, 27, 55,250, 41,149, 74,228,228,228, 56,186,200,100, 50, 25, 46, 94,188,136, 89,179, -102,225,181,215, 94,195,157, 59,119, 16, 25, 25,137,247,223,127,223,103,250,244,233,239, 0,152,228,169, 32,246,241,241,113,136, - 43,173, 86,139,119,222,121,135,109,220,184,113,168,143,143, 15,124,125,125, 33,118,247,241, 60,143,242,229,203,123,148,226,130, - 32, 96,251,246,237, 96, 89,214,163, 5,203,158,240,188,226, 60,122,244,168, 67,156, 57,183,138, 8, 33, 56,119,238,156, 67,204, -121,193, 73, 25,134,129, 78,167, 67,120,120, 56, 52, 26, 13,180, 90, 45, 89,179,102,205,132,114,229,202, 69,188,247,222,123, 76, -118,118, 54,211,168, 81, 35,244,232,209,131, 21, 4, 1, 86,171, 21,177,177,177, 30, 45,109,123,247,238,197,146, 37, 75,240,246, -219,111,187,181, 96,137,131, 32,245,250,127,124,142, 67,137, 65, 0, 96,229,108,200,203, 53, 58,186,112,121,158,199,153, 61,167, - 42,221, 56,117, 37,118,235,154,239,229, 0, 96,218,243,163,243,107, 17, 61, 22,173,171,220, 34, 80,113,116, 79,186,245,168, 39, -203,224,200,145, 35, 49,113,226, 68,244,233,211, 7, 59,119,238,196, 71, 31,125,132, 55,222,120,163,128, 5,203, 27,216,108,182, -175, 94,125,245,213,183, 55,108,216, 80,229,131, 15, 62, 96, 68, 11,150, 86,171, 21,199,112,193,108, 54,195,104, 52,226,210,165, - 75,194,155,111,190,121,217, 98,177,124, 85, 24, 31, 71, 52,167,181,170,188, 95,203, 71, 51, 21, 12, 55, 63,247,109,242, 66, 89, - 35,209,212,205,122,169,114, 27,218,113, 64,217, 0, 80, 10, 42, 0, 2, 5,204,102, 3,134, 15, 31, 37,251, 39,227,138, 16,210, -177,111,223,190, 93, 6, 15, 30, 92, 46, 39, 39,231, 58,199,113, 54,241,222, 71, 31,125,132, 43, 87,174,180, 35,132,220, 42,172, - 75,180, 16,206,232,242,229,203,143,226,121,158, 18, 66,174, 81, 74,227,237,183,230, 3,240,219,187, 55,191,254,136,142,142, 6, -128, 88, 66,200, 42, 0, 89,206, 98,204,217, 28,106,179,113, 48, 26,205, 69, 10, 43,241,156, 82,193, 91, 55,210, 42, 85,170,160, - 75,151, 46,144,203,229,142, 70,154,115,247,152,171,208, 42,170,252, 0, 32, 16, 66, 16, 25, 25,137,142, 29, 59, 66,161, 80, 20, -224, 20, 43,212,142, 29, 59, 98,228,164,143,241,213,200, 86, 88,242,106, 37,180,153,146, 84,164, 59,243,242,242,114,119,239,222, -173,121,255,237,183,241, 92,197,138, 8,214,235, 81, 58, 44, 4, 26,149, 18, 10,103, 55, 17,207, 70,117,154, 95,217, 9, 50,153, - 12, 53,106,212, 64, 82, 82, 18,110,222,188,137,155, 55,111,130, 97, 24, 52,105,210,196, 97, 9,190,122,245, 42, 38, 77,154, 4, -179,217,236,181,223, 43, 86,172,136, 86,173, 90, 65,169, 84, 66,171,213, 22,232, 26, 20,195, 52, 39, 39, 7, 21, 42, 84,192,230, -205,155, 81,185,114,101,143,156, 85,171, 86, 69,243,230,205, 11,132,167, 70,163,113,212, 27, 0,112,247,104,174,227, 27, 81, 81, - 81,197,226,220,113,236, 14,150,237,220, 13,179, 69, 64,118,158,173,192, 11, 17,193,122, 28,248,225, 3,175,252, 46,114,126,245, -213, 87,200,202,202,114,212, 61,162,177, 68, 52, 78,148, 42, 85, 10, 75,150, 44, 41, 44,126, 68, 45, 66, 10,185,223,217,203,134, -148,248,156,152,184, 84,211,167, 79,159,230,250,190, 39, 62,231,251, 46,239, 91, 92, 68, 89, 82,145, 93,132, 98,189, 32,102,130, -168,168, 40,136,227, 60,196, 12,226, 40, 64, 57, 14,155, 54,109, 66,104,104,168,227,240,243,243, 43, 52, 65,139,227,132, 70,166, -228, 15, 51,216, 22,169,192, 45, 0,157, 82,168, 99,156, 8,207,243,216,184,113, 35,156, 5,140,175,175,111,145,221, 69, 74,165, -178, 69,253,250,245, 25,179,217,252,128,184,154, 62,125, 58,250,246,237,139,202,149, 43, 67, 16, 4,228,230,230,162,101,203,150, -242,249,243,231,183, 40,142,192,210,106,243,199,243, 91, 44, 22,236,217,179, 7, 1, 1, 1, 8, 10, 10, 66, 96, 96, 32,124,125, -125,197,153,144,212,147,200,160,148,162,123,247,238,142,138,207,217,106,229, 42,182, 14, 29, 58,228, 85,215, 27,165, 20, 47,188, -240, 2,116, 58, 29,124,124,124,224,227,227,131,237,219,183, 59,158,121,254,249,231, 33, 8, 2, 66, 67, 67,113,248,240,225, 34, -187, 57, 41,165, 84,161, 80, 56,158,151,203,229,100,229,202,149,227, 99, 98, 98, 34, 70,143, 30,205,200,100, 50,156, 60,121, 18, -231,207,159, 71,217,178,101,189, 30,147,149,153,153,121,127,252,248,241,252,248,241,227, 1, 0,177,177,177,200,204,204, 76, 22, -239,103,103,103,167,181,107,215,174,192,184,140,212,212,212,180,127,189,192, 18, 4,112, 86, 14,121, 38, 19,114,115,242, 28,214, -160,228,132, 36,255, 15,222,123, 87, 62,107,248,235, 0,128,247,230, 46, 68,206,210,191, 11,176, 31,223,239, 27,250,210,172, 53, -227, 0,116,243, 80,233,192,108, 54,163, 76,153, 50, 56,118,236, 24,114,114,114,208,166, 77,155, 2, 22, 82, 49, 76, 61,153,226, - 41,165, 22, 66, 72,227,206,157, 59,255, 57,103,206,156,242,213,170, 85, 35, 6,131, 1,121,121,121,112,254, 61,115,230, 12, 93, -189,122,245,141,188,188,188, 70,148, 82, 75, 97,124,219,239,125,115,173,125,212, 27, 27,126, 63, 41,235, 28, 90,225,178,254, 94, - 70,121, 46,237,158,202,144,109,188,100,226,233,121, 80, 30,224, 33,128,114, 2,120,123,247,214, 63, 40,174,106,148, 47, 95,254, -173,249,243,231,135,153, 76,166,123, 54,155,205,224,154,119, 23, 47, 94,140,142, 29, 59,190, 69, 8,137,247, 52, 32,221,254,142, -210,223,223,255,163, 61,123,246,196,222,191,127, 63,177,113,227,198,227, 8, 33,163, 41,165,150, 42, 85,170,248, 29, 63,126,188, -137, 92, 46, 87,102,102,102,158,213,235,245,176, 88, 44, 53,108, 54,155,165, 94,189,122, 7,220,198,143, 0,216,108, 54, 24,141, -102,100,101,229,192, 98,181,217,203, 76, 1, 60,207,217,127, 5,112,246,114, 84,169, 96,125,235,214,140,200,165,148,130, 33, 36, -243,248,153,251,165, 10, 43,151, 10,235,202,242,198,122,229, 6,188, 56,107, 44, 40, 40, 8,114,185, 28,223,127,255, 61, 78, 31, -220, 14,165,140,130,231,108,224,108, 86,240, 54, 11,228, 50, 25,126, 63,121, 19,109,171,250,122, 19, 71, 52, 56, 56, 24,157, 26, - 54, 68,231,134, 13,243,167,171,177, 44,124, 84, 42,104, 21,234,124,203, 21, 0,202, 51,128,119, 73, 73, 16,221, 25, 22, 22,134, -227,199,143, 99,228,200,145,152, 49, 99, 6, 52, 26,141, 99, 54,243,197,139, 23,177,110,221, 58,180,109,219,182,216,126, 23, 45, -118,227,198,141, 67, 66, 66, 2,230,206,157,139,186,117,235, 66, 46,151, 35, 51, 51, 19,141, 26, 53, 66, 82, 82,146, 87,156,206, -221,120, 74,165,178,128,181, 73, 20,126,197,141, 35,103,206,215,187, 71, 96,203,193,213, 32, 32, 56,242,195,187, 5,234,162,197, -107,247, 23,155,243,147, 79, 62, 41,224, 78,111,172, 87,197,200,175, 91,189, 17, 89, 78,207,157, 16,141,171,227,198,141,251,144, - 16,178,117,220,184,113, 31,198,197,197,157,243,134,175,144,251,191,216,127, 59, 57, 93, 59,225, 81, 96, 81, 74,169, 82,169,132, - 32, 8, 5, 68,149,235,128, 90,209,228,231,108, 82,244, 36, 6, 4, 65,112, 36, 6,215,230,170, 76, 38,195,225,195,135,113,248, -240,225, 2,215,151, 45, 91, 86,100, 5,206,113, 92, 53, 95, 95,223, 2,214, 43,133, 66,129,113,227,198,161,127,255,254, 14,113, -165, 80, 40,176,124,249,114,212,171, 87, 15, 22,139,165,154,135,241, 40,121,225,225,225,140, 88, 0,233,116, 58, 50,114,228, 72, - 25,199,113,142, 48, 17, 15,113,108,154,167,196, 34,206, 74,217,177, 99,135, 87, 22, 44,111,199, 32, 81, 74,113,234,212,169, 2, -162, 77,156, 5, 3, 0,167, 78,157,114,140,207,242,134, 83, 38,147,129,231,121,104, 52, 26,162, 80, 40,136, 66,161,136, 22,197, -149, 76, 38,115,196,183,243,152, 60, 79,126,191,119,239, 94,203,162,238, 39, 39, 39, 63,179,203, 49, 88,109, 54, 24,243, 44,200, -201, 53,226,179,184,239,242, 47,126,134,163, 0,142, 54, 30, 60, 18, 67,219,183,109,229,210,207,239, 77, 1,227,168, 20, 55,110, -220, 8,185, 92,142,205,155, 55, 67,175,215,163,107,215,174,208,235,245,248,224,131, 15,208,167, 79, 31,175, 45, 88,246,180,148, - 69, 8,105,252,206, 59,239,252,249,249,231,159,151, 46, 85,170, 20, 44, 22, 11,172, 86, 43, 44, 22, 11,174, 93,187,134,213,171, - 87,223,205,203,203,107, 76, 41,205,242,196,183,253,222, 55,215, 54,237,123, 47,161, 77,159, 30,198,139, 73,219,144,152,152, 6, -142,187, 7,129,231, 96,229,242,103, 36,243, 28, 7,142,227,161, 80,200,244,159, 79,125,119,167, 0, 10,134, 33,150,158, 61,123, -118,120, 66,226, 42, 0,192,224,235,215,175,231, 4, 5, 5,157,177, 95,214, 39, 36, 36, 16, 0,136,140,140,164, 0,156, 7,184, - 15,182,143,199,242,180,105,243,224,159,127,254,185,145,191,191,191,133, 97,152,140,143, 62,250,168,212,167,159,126, 58, 24,192, -188, 75,151, 46,125,247,202, 43,175,248, 57,183,224,211,210,210, 78, 12, 30, 60, 24,151, 46, 93,250,206,189,137,192,110,193, 50, -153,144,146,150,129, 65,131, 39, 56, 76, 7, 0, 45, 32, 42, 40, 40,134,140,128, 26, 0, 82,147,174,225,245, 65, 35, 85,158, 26, - 2,238, 42,192, 98,140,193,113,182, 12, 57,210,168,143,143, 79,126, 55,219,230,213,248,229,139,193, 0,111, 5,181, 25, 1,107, - 30, 96,205,133, 96,201, 3, 81,104, 0,155,209,155,120,162, 62, 62, 62,240,209,104, 16,234,239,159,191,136,163, 76, 6,185,156, -133, 96, 3, 8, 79, 28, 66, 84,224,189, 74,235, 52, 56, 56, 24,130, 32, 64,163,209,224,214,173, 91, 24, 58,116, 40,172, 86, 43, -186,119,239, 14,139,197, 2,147,201, 4,163,209,136,152,152, 24,228,229,229,121,229,119,177,156, 23,123,123,222,125,247, 93,212, -171, 87, 15,147, 38, 77,194,216,177, 99, 17, 19, 19,131, 33, 67,134, 96,245,234,213,136,141,141, 45,146,215, 57, 60, 69, 78, 49, - 94, 92,187,242, 0, 20, 59,142, 92, 57,243,199,253,227,129,120, 31,245,106,235, 98,115,198,197,197, 33, 37, 37,229, 1,203,149, -248, 63, 42, 42, 10,139, 23, 47,126,168, 60,235,100, 45, 10,115,115,187,147, 27,203, 83,125,228,143,141, 50,199,197,197,157,139, -139,139,235, 76, 8,217, 26, 23, 23,215,185, 8, 11, 86, 39, 15, 22,174, 78,200, 31,115, 85, 36, 88,151,190,207, 22,206,150, 17, -177, 2, 21, 43,114,231,194, 93,171,213, 98,211,166, 77, 16,103,116, 56, 63, 83,148,192,250, 53,196,110, 34,182, 91,174,156,207, -187,116,233,130,114,229,202, 21,176, 94,105, 52,154, 34, 19,141, 32, 8,184,125,251, 54,206,158, 61,139,134, 13, 27, 34, 43, 43, - 11,114,134,193,123,103,206,160,250,171,175,194, 98,183,200, 40,149, 74,188,253,246,219, 94, 13, 84,191,121,243,102,128,243,121, -112,112,112,124,211,166, 77,163,142, 29, 59,230, 24,248,110,239, 62,115, 8, 13,111,196, 11,165, 20, 47,191,252,114, 1,171,149, -179,184,114, 62,182,109,219,230, 85, 23, 33,165, 20, 77,155, 54,117, 88,175,124,125,125,241,211, 79, 63, 57,226,170, 89,179,102, -249,227, 21,194,194,188,226, 20,253, 97, 31,216, 14,147,201, 36,228,228,228, 48, 39, 78,156,128, 82,169,116, 88,236, 52, 26, 13, -212,106, 53, 84, 42,213, 67,205, 8,250, 47,128, 82, 1, 22,155, 13, 70,163, 17,185,185,249, 43,132, 92, 59,187,177,160, 0, 51, - 63,252,228, 52,209, 74,149,147,147,131,223,127,255, 29, 63,254,248, 35,234,214,173,251,192, 32,119,111, 44, 88, 78,233, 41,133, - 16,210,100,204,152, 49, 71,166, 76,153, 18, 25, 24, 24, 8,171,213,138, 59,119,238,224,219,111,191, 77,200,203,203,107, 66, 41, - 77,241, 62, 16, 0,155,141,131, 41,207,140,172,236, 28,124, 58,117,121,161, 73, 15, 0,210,147, 47,161, 75,215, 94,202, 39, 23, - 71, 52, 3,192, 80,151,202,124, 21,254, 94,179, 42,155, 82,218,191,152,162,173,229,140, 25, 51,250,212,173, 91,215, 55, 43, 43, -235, 2, 0,188,249,230,155, 56,121,242,100,107, 66,200, 57, 74,233,110, 66, 72,108,157, 58,117, 90,191,249,230,155, 0,128,175, -191,254, 26, 91,183,110,253,157, 82,186,187,176,180, 36,118, 17,230,230, 26,161,247,143,192,189,155,123, 61,186, 69, 33, 51,129, - 10,130,199,134,159, 59,171,149,115,249, 84,140,244, 67,197, 49,127, 98, 69,221,225,229, 87,209, 97,232,116,104,229,192,180,215, - 27, 35,198, 31,128, 38, 16,138,102, 31,128,248,151,201,127,113,232,207, 94,241,143, 93,178, 4, 39,175,228,175,240, 18, 29, 18, -130, 49,125,250,128,218,128, 67,231,207, 99,237,238,221,232,211,178, 37,180,106,181,215, 13, 21,177,241,125,237,218, 53, 28, 58, -116, 8, 85,171, 86,197,213,171, 87, 11, 44, 39, 65, 41,245,202,255,148, 82, 42, 78, 78, 82,169, 84,144,203,229, 72, 76, 76, 68, -231,206,157, 29, 13,252,189,123,247, 98,204,152, 49, 24, 56,112, 32, 90,180,104,225,118, 92,172, 43,103, 72, 72,136,195,112,224, - 58, 1,193,185,219,182, 56,113,228,142, 83,196,195,198,187, 51,231,212,169, 83,221, 78,148,240,134,211, 89,139, 20,129, 19, 46, -214, 35,136,227,161, 68, 65,228,122, 14, 32, 64,188, 54,110,220,184, 15,189,125,207,249, 92,180,128,121,219, 85,201,138,125,158, -238, 42, 89,209, 92,236, 14, 58,157, 14,195,134, 13,195,196,137, 19, 17, 28, 28,236,113,236,140,168, 92,139,194,207, 63, 63,152, -201, 54,111,222,236,169,139,240,162,159,159, 95,189, 86,173, 90, 33, 43, 43, 11,119,239,222,133, 78,167, 67,245, 47,190,192,153, -161, 67,241,220,146, 37, 96, 90,181,114, 44,146,122,230,204, 25,104, 52,154,139,197,181, 24,248,250,250, 34, 32, 32,192,209,167, - 46, 10, 45, 39, 11, 22,245, 34, 17,226,215, 95,127,117,219, 74,124,152, 49, 88, 98,230, 63,114,228, 72,129,241, 87,206,130,231, -200,145, 35, 14, 11,150,248,154, 55, 93, 91, 26,141,134,138,124, 90,173, 22,129,129,129, 80,169, 84,208,104, 52, 5,196,149, 55, -214, 59, 79, 11,137,106, 52,154, 99, 58,157,206, 95,188, 47,151,203,145,147,147,147,153,150,150,246,252,191,186,139, 16, 20,156, -149,131,209,104, 66,110, 78,201,175, 37, 41, 78, 56,217,180,105, 19, 94,120,225,133, 7,196,149, 24,214, 15, 33, 58,226, 9, 33, - 45,230,205,155,119,116,246,236,217, 1,185,185,185,248,238,187,239,178,114,115,115, 91, 56,141, 35,242,142, 75,160,176, 89,173, -200, 51,153, 97,200,205, 15,131,235,231, 54, 62,211,194,186, 74,149, 42,175, 15, 25, 50, 36, 36, 39, 39,231,186, 32,252,109, 79, -153, 61,123, 54,174, 95,191,254, 58,128,221, 0,150, 76,157, 58,181, 98,205,154, 53, 75, 1,192,212,169, 83,239, 2, 88, 82, 84, -217, 97,181,119, 17,230,230,230, 91, 61, 76,134,212,146, 73,167,118,145, 81,216,152,171,135,233,202, 17,103, 46,203,100, 50, 12, - 31, 62, 28,103, 78,159, 70,235,200,108,196,132,251,130,102,223,131,162,213, 39, 56,149,162,193,172, 57,191, 22,155,123,157,211, - 36,158, 89,235,214,185,189,119,189, 91,183, 98,249,253,242,229,203,208,104, 52,224,121,254,129,250,166,184,254,119, 22, 46,115, -230,204,193,152, 49, 99,176,124,249,114,156, 57,115, 6,207, 61,247, 28,218,180,105,131,228,228,100,156, 62,125, 26,102,179,217, -107,119, 58,143,139,187,124,227, 60,118, 29,250, 13,183,227,111, 34, 33,241,238, 67,199,187, 51,167,171,192,218,180,235, 47,188, -220,182,206, 67,113,126,242,201, 39, 72, 78, 78, 46, 96,185,114,158, 24, 86,152, 5,203, 85,139,184, 32,213,101,172,147,120,110, -113, 17, 59,174,231,174,207, 3, 64, 50, 0,153,135,247, 92,207, 83,227,226,226,246,136,150, 47, 59,175,172,176,241, 87,110,187, - 8, 69, 49, 36,102, 16, 87,203,148,248, 95,167,211,193,215,215, 23,190,190,190,208,235,245, 30, 45, 67,162,192,106,122, 35,167, -192, 88, 46,209,146, 5, 0, 3, 7, 14,124,192,130,229,188, 32,167, 59,152,205,230,189,123,247,238,173,221,165, 75, 23,217,197, -139, 23, 33,147,201, 32, 8, 2, 44, 13, 27,226,185, 37, 75,112,246,221,119,209,252,214, 45,152,172, 86,168,213,106,108,223,190, -221,154,151,151,183,183,184,229,133,179,192,210,233,116,240,243,243,115, 8, 12,111, 84,185,152,105,139, 26,223, 32, 30,206,131, -252,189,201,204, 98, 69,234, 60,238,134, 16, 2,163,209,232, 24,172,233,141,149,209,185,139,208, 57,227, 49, 12, 3,127,127,127, - 71,161, 33, 90,176,188,181,222,121, 90, 72, 84,171,213,234, 47, 93,186, 84, 65, 92, 70, 34, 53, 53, 21,173, 90,181,186,242,175, -175,105, 5,192,202,241,200, 53,154,144,107,204, 43,201,110, 45, 0,192,247,223,127,143,107,215,174,193,106,181, 34, 46, 46,238, - 1, 97, 85,156, 65,238,110,210,213,181, 58,117,234, 8, 47,190,248, 34,142, 28, 57, 2,149, 74,101,163,148, 22,123,253, 42,129, - 10,176,114, 28, 76, 70, 35,114, 13,134,255,132,229,242,210,165, 75, 89,190,190,190,135, 1,248, 92,185,114, 69,166,211,233, 80, -190,124,121,152, 76,166, 44, 0, 89,246,240,181, 16, 66,166,191,253,246,219,115, 1,192,102,179, 77, 47,106, 76, 27,165, 20, 54, -206, 46,214, 75, 48, 28,197,180, 84, 88,153,244, 48,203,165, 56, 87,168,130, 32,224,173, 55,223, 68,155,200,108,188, 84, 55, 4, -134,251, 87,160,245, 11, 1,241, 47,139, 89,115,126,197,185, 27, 94, 15,181,164, 0,208,190, 89, 55,212,170,250,224,242, 94, 77, - 90,231,183,197, 14,252,126, 12, 73,169, 9,197,246,187,193, 96, 40,212, 82,229,173, 5, 75,228, 20,151, 75,145,203,229,168, 93, -187, 54, 42, 85,170,132, 61,123,246,160, 78,157, 58,184,122,245, 42,174, 94,189,138, 91,183,110,225,204,153, 51,200,200,200, 40, -118, 28,253,180, 99, 45, 50,114,210,161, 84, 40,145,158,153,138,219,247,110, 34, 44, 40,252,145,227,221,209, 64,232,244, 41, 0, - 32, 50,196,175, 88, 2,203,153,243,243,207, 63,127, 64,180,151,192,210, 59,199, 60,156, 23,247,253,199, 14,182, 16,171,144, 49, - 48, 48, 80,227,220,127,202, 48, 12,252,252,252,200,140, 25, 51,100, 12,195,192,215,215, 23,126,126,126, 16,205,130,158,160, 84, - 42,141,101,203,150,213,136, 9, 80,204,128,122,189, 94, 54, 99,198, 12,178,108,217,178, 66,173, 90, 30,198, 96,205,238,223,191, -255, 27,241,241,241, 1,161,161,161,184,127,255, 62,148, 74,101,126,166,104,217, 18, 77,111,220,128, 53,127, 76, 17, 46, 95,190, -140,175,190,250,202, 96, 54,155,103, 23, 55,160,124,124,124, 16, 20, 20,228,232, 26, 20, 45, 56, 78, 98,209,171,161,149, 69,153, -226,197, 22,223,195,116, 21,185,138,172,193,131, 7, 23, 16, 91,222, 66,161, 80,112,226, 74,237, 12,195,192,106,181,162, 78,157, - 58, 72, 78, 78,118,100, 22,103,203,157, 55, 2,203,211, 66,162, 44,203,194, 98,177,160, 89,179,102, 32,132, 96,225,194,133,207, - 70,183,163, 32, 16, 31,159, 32, 68, 70, 86, 70, 72,168, 9,130, 80,114,187,191,112, 28,135, 33, 67,134, 20,176, 88,137, 51, 21, -197, 46,126, 74, 41,108, 54,219, 67, 47,218, 42,230,235, 71, 89,255,141, 2,142,174, 45,131,193,244,175,139,194,232,232,104,189, -189,203,208, 21,238,103,251,225,239, 37, 25, 8, 33, 83,226,227,227,107, 86,169, 82, 5,205,155, 55,199,182,109,219, 54, 3,248, -209,197, 82,248,165,248,191,232,184,176,135,163,201, 12,131,161,228,173,161, 69, 53,244, 30, 69,184, 77,156,248, 49,218, 68,100, -162,251,115,126, 88,177,245, 32,250,213,214, 0, 22, 85,177,249, 68,183, 4, 69,149, 67,185, 26, 13, 30,184,175,246,203,239,154, - 43, 87,163, 1,100,119,175, 22,219,239,206,110,118,179,116,192, 35,133,231,160, 65,131,240,193, 7, 31,160, 93,187,118,184,122, -245, 42,246,237,219,135,171, 87,175, 98,228,200,145,136,141,141,197,115,207, 61, 87, 44,206, 45,187, 54, 32, 59, 55, 11, 12, 97, -144,158,149, 6,147,217,136,177, 67, 38, 62,114,188,139,184,185, 43, 14, 0,176,113,231,201,135,230,252,240,195, 15,145,152,152, - 88,192,114,245, 40,227,174,254,173,112, 43,176,210,210,210,220,246,247,133,132,132, 36,181,109,219, 54,244,254,253,251,240,241, -241,241, 40,174, 8, 33,109,196,181, 50, 18, 19, 19,221,114,250,250,250, 90,219,182,109, 43,143,136,136, 40, 48,123, 80,167,211, - 61,144,185, 92, 57,237, 5, 83, 14, 33,228,173,198,141, 27,175,216,182,109,155,182, 82,165, 74,200,206,206, 6,165, 20,203,151, - 47,199,240,225,195,161, 86,171,113,249,242,101,116,237,218, 53, 47, 47, 47,239, 45,231, 53,176,220,113, 22,214, 34, 19, 87,177, -119, 35,174,138,244,187,115, 38,157, 55,111, 30,166, 77,155,134, 15, 63,252,176,200,136, 89,186,116, 41,224,210,157,231,142,147, - 82,138, 89,179,102,149, 24,103, 90, 90,218,114, 23,235,211,194,151, 94,122,137,189,123,247,110, 1, 81,229,124,184, 41,144, 10, -112,122, 90, 72, 84, 38,147, 33, 44, 44, 12, 83,166, 76, 65, 80, 80, 16,194,195,195, 31,176,188,120,138,163,135,172, 4, 30, 43, - 39, 79,133, 19,159, 79,255,184,201,119,171,182,200, 85, 74,224,240,190,141,200,206, 72, 44,104,129,181,254, 61, 37, 90, 89,167, - 53, 44, 39,127,247,202,157,102,179, 25, 51,103,206,196,167,159,126,138, 79, 63,253,212,155,120,127, 36,191,123, 35,178,220,114, - 10,148,104,117, 1, 80,235, 34, 81, 61, 54, 0, 66, 49,215,234,252,135,226, 93, 72, 72, 72, 64,100,100, 36,174, 94,189, 90, 67, - 38,147, 21, 80, 4, 60,207,155,213,106,245, 1, 47, 56,207,110,218,180,169,230,132, 9, 19, 48,109,218, 52, 0, 24,176,119,239, -222, 87, 8, 33, 38, 79, 34,205,149, 83,160,148,104,180,254, 80,235, 34, 80,189,134, 63, 4,129, 43, 17,191,139,149,159,171,245, -170,152, 11, 73,187, 45,235, 0,224,207,223, 55, 99,226,187, 53,176,252,151,163,152,127, 12,168,229,159,140,234, 33, 41, 16, 82, - 46,226,253,126,245, 48,235,135,227, 0,128,125,123, 61,198, 81,145,235, 26,155,140,214, 71,242,187,179,165,202,249, 59,158,198, - 96,185,227, 20, 27,135, 57, 57, 57,200,204,204,196,138, 21, 43,240,250,235,175, 35, 57, 57, 25,183,110,221,194,149, 43, 87,176, -102,205, 26,199,236,244,226,198,209,123,111,126,132, 9,179, 70,131,130,162, 74,133,234, 24, 55,244, 83,212,175,213,240,145,227, -221, 21,158,172, 87, 69,113,206,155, 55,239,161,210,210,127, 66, 96, 21,213,138, 96, 24, 6,193,193,193,142,196,225,156,240, 30, -166,165, 43,147,201,192,113,156, 99,108,143,120, 0, 64,151, 46, 93,240,243,207, 63,123, 51, 51, 98, 27, 33,228,127,213,170, 85, -251,246,179,207, 62,243,105,222,188, 57, 27, 25, 25,137,250,245,235,227,242,229,203,248,229,151, 95,108,139, 22, 45, 50,228,229, -229, 13,164,148,238,124,152,114, 73,220,122,198,249, 40, 78, 43,199,106,181,222,189,122,245,106,196,172, 89,179,100, 12,195, 96, -238,220,185,142,204, 40, 46,212,234,140,125,251,246,113,130, 32, 20,217, 37, 99,179,217,238, 94,189,122, 53,226,139, 47,190,144, - 17, 66, 28,156, 12,195,192,121, 99,229,226,112,186, 19,151,226,132, 7,119,135, 59,183,187,139,227,162, 22, 18,101, 89, 22,151, - 47, 95,198,196,137, 19, 65, 8,193,198,141,207,198, 24,157, 51, 23, 83,151, 61, 87, 61, 52,160, 75,135, 38, 53, 65, 8,172,150, - 7,123,128,124, 50,114, 29,226,234,165, 47,214,226,199,247,250,120, 35,118,174, 29, 56,112, 32,112,230,204,153,172, 76, 38,195, -156, 57,115, 10, 44,246,235, 26,239,251,247,239,231, 30,166,123, 79,204,207, 86,171, 21, 70,227,195, 89, 77, 40,165,135,226,166, - 78,104,187,242,251, 95,229,132, 88,112,120,239, 70,100,101,186,159,154,174,148,179, 88,182, 98, 19,167,144,203,238,254,195, 81, - 55,191,103,207,158, 19, 54,108,216,192, 2, 56,247, 8, 60,155,191,249,230,155, 14,189,122,245, 10,172, 88,177, 34,190,251,238, - 59,133,191,191,127, 93, 66, 8,113, 39,210, 60,132,227,230,233, 83, 39,188,182,226,135, 95,149, 12,177,226,240,190,141,200,114, - 17,235, 15, 90,163,229,248,102,249, 38,171, 66, 33,191,228,169, 92,119,182, 94,149,100,133,216,181,255, 80,188, 52,111, 62,202, -215,111,143,233, 51,218,224,155,169,189, 48,251, 69, 5,172,235,251,161, 86,207,149, 88, 61,169, 35, 0, 32,242, 27, 47,173, 35, -172, 2,119,220, 88,168, 50,179,212,118, 81, 83, 60, 43,169,232,247,162,202,240,226, 90,176, 24,134, 65,185,114,229, 80,190,124, -121, 52,110,220, 24,117,234,212, 65,203,150, 45,113,250,244,105,156, 62,125, 26, 35, 71,142, 44, 84, 92,121, 19, 71, 45, 26,181, -197,209,166,151, 30, 57,110, 92,227,189, 36,224, 77, 90, 26, 50,100, 8, 0,252, 39,172, 89,236,195, 4,158,152, 32, 31,117,235, - 24,145,211, 98,177, 56,186,222,156,215, 85, 18, 7,189,123, 57, 67,111, 39, 33, 36,246,227,143, 63,126, 87,173, 86,183,204,203, -203,171,108,183,192, 92, 54,155,205,187,141, 70,227, 28, 74,105,230,163,184,213,121, 89, 6,119, 78, 40,234,221,140,140,140,246, -237,219,183,223,201,178,108, 57,215,141,120,221,101, 96, 65, 16,110, 37, 37, 37, 21, 57, 85, 61, 45, 45,173,125,187,118,237,220, -114,186, 43, 24,188,225,116, 23, 63,130, 32, 20, 42,174,188, 41,128, 60, 45, 36,202,178, 44,116, 58, 29,126,250,233, 39, 4, 7, - 7, 63, 83, 25,236,212,249,228,153, 69,221,111, 17,172,218, 11, 32,228,165, 47,214,222,217,147,106, 41,211, 34, 88,121,251,199, -247, 95, 41, 93,212, 59,169,169,169,237, 94,127,253,245,223, 88,150, 45,231, 26,254,238,226,130,227,184,155,137,137,137,197, 94, -246,128, 82,138, 75,151, 46, 9,131, 6, 13, 74, 77, 73, 73,233,245, 48,254, 31, 55,113,254,236,105,159, 13, 15,122,177,109,131, -250, 96, 0, 75,225,131,122, 41, 1, 40, 43,151,221, 29,243,225,220, 55,255,201, 56,163,148,158, 36,132, 76,169, 95,191,254, 72, - 20,186, 46,120,254, 88, 42, 15, 60, 86, 66,200,236, 14, 29, 58,188, 63, 98,196, 8,255,118,237,218, 89,163,162,162, 78, 56, 91, -231,189, 79, 71, 73,111, 63, 87, 45, 36,250,197, 54, 47,180, 7, 33,212, 98, 49,123,104, 24,129,130, 82,170, 80,200, 47, 29, 59, -149, 80,203,147,117,222,190, 99, 70,137,119,205, 15, 27, 54, 12,195,134, 13,115,164,167,133, 11,155, 98,195,217, 3,232, 89, 43, - 30,230,175,154,128,232, 75,123,221,208, 3,128,143, 62, 30, 84,146,150,204, 2,147,175, 74,106, 12,150, 76, 38, 67,106,106, 42, - 46, 95,190,140,164,164, 36,228,229,229,225,194,133, 11,176, 90,173,200,200,200, 64,141, 26, 53, 30,218,157, 37, 21, 71,255, 36, -231,127,169,155,176, 88, 2,139,227,184,120, 79,187,158,219,108,182, 98,205, 50,146,203,229,166, 74,149, 42, 17,119,179, 13,196, -255, 58,157,206,232,101,193,152, 9, 96, 34,128,137,246,253,166,144,158,158,254,200, 42,144,231,249,132, 50,101,202,200, 10, 19, - 46,246,176, 73,242,224, 54, 3,128,134, 37, 92, 17,148, 56,167,155,248, 49, 84,173, 90,213, 49,150,203,117, 77, 19,251, 38,168, - 69,142,186,245,180,144,168,193, 96,184,223,190,125,123,222,249,190,243, 66,164,207, 52, 8,189,221,241,149, 55,202,236, 73,181, -148, 1, 0, 81,100,129,210,219, 69,196,187, 17, 64,243,199,237,180, 27, 55,110, 88, 94,120,225,133,239,115,114,114,134, 82, 74, - 31,122,148,254,135,159, 44,252,240,223, 22, 45,148,210,147, 0, 94, 43, 1,158,179,132,144,193, 51,103,206,236, 53,115,230,204, - 10, 0,130, 1,168,189, 21,105, 5, 68,214,133,148, 18, 95, 27,140,227,184,248,242,229,203, 23,203, 82,227,169,140,183,217,108, - 69,214, 19,231,224,135, 15,143, 0,249,219,184,165,121,197,105, 50,153,210, 27, 54,108, 40, 47,166,223,146,189,245,123, 68, 68, - 4, 34, 35, 35, 29,191, 34, 92,175,123,114, 39,199,113,241,209,209,209, 8, 14, 14, 46,116,133,118,215, 49, 87,222,112,150,116, - 28, 21,197, 25, 25,185,178,196, 57, 75, 74, 47, 60,211, 2, 75,220, 99,176, 36,145,148,148,244, 88,246, 70,161, 37, 97, 94,251, -219, 82, 84, 31,255, 81,164,165,165, 5, 61, 42,135,167,133, 68,147,146,146, 90,254, 87,195,119, 79,138,101,192, 3,215,236, 98, -235,159,134,193, 96, 40, 77, 41,125,168,145,249, 61,123,246,228, 33,193, 89, 16, 47,127, 26,221,150,154,154, 90,226,101,250,227, -168, 39,210,211,211,107,254, 87,253,254, 56,220,249,111,225,252,183,131,145,130, 64,130, 4, 9,133, 8, 3, 73, 36, 73,144, 32, - 65,194, 67,130, 0,104, 83, 72,225,234,245,204, 29, 66, 72,155,135, 40,188,119, 73,156, 18,167,196, 41,113, 74,156, 18,167,196, -249,223,226,244,196, 93,210, 51,135,255,201, 86,234, 99, 59, 0,180,145, 56, 37, 78,137, 83,226,148, 56, 37, 78,137, 83,226,252, -175, 29, 82, 23,161, 4, 9, 18, 36, 72,144, 32, 65, 66, 9, 67, 18, 88, 18, 36, 72,144, 32, 65,130, 4, 9,146,192,146, 32, 65, -130, 4, 9, 18, 36, 72,144, 4,150, 4, 9, 18, 36, 72,144, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18, 36, 60, 60, - 72, 9,174,199, 41, 65,130, 4, 9, 18, 36, 72,144, 32, 1,246,149,220, 9, 33, 14,149, 69, 41, 37, 82,176, 72,144, 32, 65,130, - 4, 9, 18,158, 36,158, 53, 45,194, 74,194, 74,130, 4, 9, 18, 36, 72,144,240, 52,224, 89,210, 34,140, 59,229, 40, 65,130, 4, - 9, 18, 36, 72,144,240,164,241, 44,105, 17,230, 89, 84,141, 18, 36, 72,144, 32, 65,130,132,127, 31,158, 89, 11,150,100,197,146, - 32, 65,130, 4, 9, 18, 36,252, 83,120,150,180,136, 52,139, 80,130, 4, 9, 18, 36, 72,144, 32,161,132, 33,173,131, 37, 65,130, - 4, 9, 18, 36, 72,144,240,111, 18, 88,132,144, 54, 18,167,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,146,192,146, 32, 65, -130, 4, 9, 18, 36, 72,144, 32, 9, 44, 9, 18, 36, 72,144, 32, 65,130, 4, 73, 96, 73,144, 32, 65,130, 4, 9, 18, 36, 72, 2, - 75,130, 4, 9, 18, 36, 72,144, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18,254, 33, 16, 0,110,103, 2, 80, 74,119, -121, 77,242, 16,179, 9, 60,241, 75,156, 18,167,196, 41,113, 74,156, 18,167,196,249,236,113,122,226, 46,142,254,120,170, 65, 41, -125,108, 7,128, 54, 18,167,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,255,181, 67,234, 34,148,224,169,133,193, 18, 66,216, -135,189,255,164, 56, 37, 72,144, 32, 65,130,132,167, 9,108, 33, 21, 92, 69, 0, 31, 2,240,115,186,124,140, 82, 26,231,242,220, - 15, 0,180, 78,151, 12, 0, 38, 81, 74,175,122,241,109,133,157, 95,101, 63, 4, 0, 38, 0,102, 0, 57, 0,108, 82,244,252,227, -226,170, 33,128,206,246,255, 91, 41,165,135,139,115,255, 73,113, 62, 41, 68, 70, 70,106, 2, 2, 2,218,157, 60,121, 82,121,225, -194, 5,236,223,191,159, 46, 91,182,204,154,145,145,177, 35, 33, 33,193, 40,165,152,103, 34,205,183, 7, 48,206,126, 58,157, 82, -186,253, 17,249,136, 86,171, 29,169,211,233, 58,170, 84,170, 72,142,227, 72, 94, 94, 94,130,193, 96,216,201,113,220, 23,148, 82, -225, 33, 56,235, 7, 7, 7, 15,142,141,141,173,116,227,198,141,187,119,238,220, 89, 5, 96, 59,128,246,165, 75,151,238, 31, 19, - 19, 83,234,220,185,115, 87, 82, 83, 83,151, 80, 74,255,252,167,220, 41, 65,130, 36,176,220, 99, 34,165,180,159, 75, 6,124,224, -161, 86,173, 90,117,221,177, 99,135, 86, 16, 4,136,135, 70,163,225, 0, 12,240,240,221,160, 67,135, 14,149, 25, 58,116,232, 75, - 9, 9, 9,245,114,114,114,158, 7, 0,173, 86,123, 52, 52, 52,244,207,121,243,230,173,105,215,174, 93,188, 93,104, 21,203, 50, - 34,151,203, 95, 15, 8, 8,232,200,113, 92, 29, 74, 41,228,114,249,201,140,140,140,237, 54,155,237, 27, 74,169,237, 33, 10, 51, - 37,203,178,195, 84, 42, 85,123,142,227,106, 2, 0,203,178,103,204,102,243,118,142,227,190,164,148, 90, 30,130, 83,173, 84, 42, -135,233,245,250,182, 22,139,165, 38, 0, 40,149,202, 51,217,217,217, 59, 45, 22,203,151,148, 82,211, 83, 80,209,176, 0, 58, 83, - 74,229, 0, 32,147,201,186, 53,108,216,176, 12, 33, 68, 32,132, 80, 74, 41, 97, 24,166, 54,207,243,140,253,249,206,132,144, 63, - 41,165, 92,113, 56, 95,120,225,133, 82, 44,203, 82, 74, 41,161,148, 50, 12,195,212, 42, 14,103, 73, 33, 36, 36,100,154, 32, 8, -145, 69, 61,227,231,231, 87,239,228,201,147, 85,214,173, 91,199,127,245,213, 87,153, 3, 7, 14,244, 25, 58,116, 40,187,112,225, -194, 47, 1,140,114,125, 62, 56, 56,120, 54,195, 48,193,222,124, 95, 16,132,212,212,212,212,209, 82,145,244,143, 99,220,162, 93, - 57,205, 40, 5,134,181,245,101,236,194,229,161, 17, 21, 21,181,226,181,215, 94,123,165,102,205,154, 44,165, 20, 54,155, 13,102, -179,185,202,225,195,135, 91,108,220,184,177, 30,128, 94,197,204,151,157,199,141, 27,247,245,164, 73,147, 66,228,114, 57,177,217, -108, 13,214,173, 91,247,226,224,193,131, 79, 45, 89,178,228,185,222,189,123,251,138,215, 63,249,228,147, 14,132,144,119, 41,165, -107,158,180, 59, 37, 72,144, 80,184,192,210,217, 51,115, 18,128, 99,162, 5,203,245,161, 63,254,248, 99, 11,203,178,162, 5,235, -121,131,193, 16,230, 98,245,114,135,178,253,251,247,111,184, 97,195,134,105,189,123,247, 78,212,106,181,149,122,244,232,145, 67, - 8,145,173, 91,183,174,118,249,242,229, 53, 93,186,116,233,223,170, 85,171,247,126,251,237,183,253, 0, 82,188, 44,120,170, 7, - 6, 6,110,154, 57,115,102,153,246,237,219, 43,130,131,131, 65, 41, 69, 66, 66, 66,212, 47,191,252,242,226,103,159,125,246, 30, - 33,164, 59,165,244,124,113, 90,138, 26,141,102,195,103,159,125, 22,241,226,139, 47,178,225,225,225, 48,153, 76,184,112,225, 66, -155,237,219,183, 55, 91,186,116,233, 40, 66, 72, 79,111, 91,137,118,206,231,253,252,252, 54,126,247,193, 7, 97, 13, 94,127,157, - 13, 12, 12, 4,165, 20, 41, 41, 41,109, 14,172, 92,217, 98,200,204,153,163, 8, 33, 47, 83, 74,143, 61, 77, 9, 69,169, 84, 50, -171, 86,173,122, 78,169, 84, 2, 0, 44, 22, 11, 98, 99, 99,201,163,112,202,229,114,230,139, 47,190,168,195,178, 44,172, 86,171, -144,147,147, 67,123,244,232,241,143,116, 91, 19, 66,162, 19, 18, 18,252, 20, 10,133,219,251, 60,207,163, 89,179,102,229, 20, 10, - 5,190,248,226, 11, 91,106,106,106,237, 5, 11, 22,156, 92,189,122,117,240,151, 95,126,217,211,157,192, 98, 24, 38, 56, 62, 62, -222, 45, 39,207,243,176, 90,173,224, 56, 14, 22,139, 5,213,170, 85,147, 74,163,167, 3,101, 0,224,215,211, 38, 0, 8,124, 84, - 50,157, 78, 87,181,111,223,190,108, 74, 74, 10,228,114, 57,172, 86, 43, 18, 19, 19, 17, 27, 27, 43,251,254,251,239, 43, 23,151, -175, 74,149, 42,131,227,226,226, 66,127,253,245, 87,235,247,223,127,111,110,211,166,141, 98,224,192,129,250,102,205,154, 53,141, -142,142,102,190,253,246, 91,243,174, 93,187,172,255,251,223,255, 84,211,166, 77, 11,253,237,183,223, 94, 1,176,230, 73,187, 83, -130, 4, 9,133, 11, 44, 17,199, 40,165,221, 0, 64,161, 80,212, 46, 85,170,212, 10,142,227,194,237, 86,156, 68,185, 92,254,133, -213,106,253,203, 94, 65,109, 22, 4,161,171, 39,203, 85,255,254,253, 27,254,246,219,111,179, 14, 31, 62,156,149,150,150, 22,190, -101,203, 22,211,123,239,189,119, 11, 0,110,220,184, 17,211,165, 75,151,168,225,195,135,199,183,107,215,110, 94,203,150, 45, 71, -236,222,189,123, 39,242,187, 30,139, 20, 87,177,177,177,135,246,237,219,231,235,239,239, 95, 80,205,149, 45,139, 17, 35, 70, 40, -186,118,237, 90,190,117,235,214, 7, 9, 33, 77, 41,165,103,189, 17, 66, 21, 43, 86,220,245,199, 31,127,248, 4, 4, 4, 32, 51, - 51, 19,137,137,137,200,203,203,131, 94,175, 71,239,222,189, 21,205,155, 52, 46, 53,124,228,168, 93,132,144, 54,222,136, 44, 66, -200,243,141,171, 87,223,181, 58, 46,206,199,118,231, 14, 52, 26, 13,114,115,115, 1, 0,190,190,190,168, 87,174, 28,123,124,229, -202,168,126, 99,199,138,156, 79, 92,100, 17, 66, 84, 0, 64, 41, 53, 19, 66,182,202,100,178,110, 74,165,146,233,214,173, 27,118, -237,218, 69, 76, 38, 19, 11, 0,106,181,154,235,214,173, 27, 52, 26, 13, 44, 22,139, 0, 96,107, 97,150, 38,119,156,114,185,156, -105,217,178,101,222,177, 99,199,210, 69, 78,173, 86,107,107,217,178,101,144, 82,169,212,112, 28, 71,139,226,124, 76, 34, 18,215, -174, 93, 43,112, 45, 39, 39, 7, 41, 41, 41, 72, 75, 75,131,217,108, 70,102,102, 38, 4, 65, 32, 26,141, 38, 69, 16, 4, 48, 76, -190,177,173, 48, 78,133, 66,129,203,151, 47, 23,184,198,113, 28, 12, 6, 3,204,102, 51,172, 86, 43,114,114,114, 52,190,190,190, - 21,171, 87,175, 30, 15, 96,115,122,122,250, 23,137,137,137,183,165,226,233, 31,193,157,173,127,153, 74, 3,176, 0,184, 89, 2, -124, 2, 0,236,223,191, 31, 73, 73, 73, 72, 77, 77, 69, 74, 74, 10,162,163,163,241, 48,221,110,151, 46, 93,154, 87,187,118,109, -114,234,212,169,159, 1,124,189,118,237,218,151,210,211,211, 23,143, 25, 51, 38,240,243,207, 63, 79, 31, 59,118,236, 16, 0, 63, -174, 93,187,246,245,154, 53,107,118, 57,115,230,204,220,127,194,157, 18, 36, 60, 6,212, 7, 16, 98,255,159,106, 47,119,131,156, -206, 79,219,243,173,248,156, 5,128,210,205,175, 8,241, 60, 5,192,159, 78,239,137,231,143, 12,177, 43,134,138,135,187,135,194, -194,194, 70,182,106,213,106,214,137, 19, 39,170,221,191,127, 63,224,254,253,251, 1, 39, 78,156,168,214,170, 85,171, 89, 97, 97, - 97, 35,197,231,236, 51, 11,224,116,238, 60,213, 82,113,232,208,161, 50,155, 54,109,154,190,107,215,174,172,218,181,107, 91,254, -248,227, 15,174, 93,187,118,201, 0, 56, 0, 92,187,118,237,146,119,239,222,205, 55,104,208, 64,243,219,111,191,221, 61,120,240, -224,236, 13, 27, 54,132, 1,144, 21,194, 9, 66,136,220,223,223,255,167,189,123,247, 62, 32,174,156, 81,170, 84, 41,108,221,186, - 85,239,239,239,191,153, 16,162, 40,194,157, 32,132,168,213,106,245,198,221,187,119,251,248,250,250, 34, 57, 57, 25,114,185, 28, -161,161,161,200,202,202, 66,226,253,251,184,125,229, 10, 24,139, 5,115,166, 78,246,213,104, 52, 27, 8, 33, 74, 79,156,126,126, -126, 27, 87, 79,155,230,147,182,107, 23, 78, 77,153, 2,171,213,234,232, 90,181, 90,173, 56, 56,116, 40, 82,126,255, 29,223, 78, -156,232,227,231,231,183,145, 16,162, 46,138,179, 36,224,204, 73, 8, 25, 10, 32, 29, 64, 58, 33,100, 40,165,244,112,108,108,236, -137, 11, 23, 46,160,105,211,166, 88,191,126,125,173, 49, 99,198, 12, 29, 51,102,204,208,245,235,215,215,106,218,180, 41, 46, 92, -184,128,216,216,216, 19,206, 99,165,188,225,220,187,119, 47, 90,181,106,149,177,126,253,250,152,137, 19, 39, 78,155, 56,113,226, -180,181,107,215,150,111,213,170, 85,198,220,185,115,205, 69,113, 62, 14,191, 59, 91,150,156, 15, 65,248,187,110,137,140,140, 76, -222,180,105, 19,122,247,238,205, 40,149,202,251,125,250,244, 81, 29, 56,112,128, 2,216, 90, 28,119,154, 76, 38, 24,141, 70, 24, - 12, 6,220,184,113, 67, 51,115,230,204, 38,159,126,250,105,133, 93,187,118, 69,125,248,225,135, 67, 66, 66, 66, 78,134,135,135, -151,121,210,126,151, 56, 1, 0,137, 0,172,246, 70,221,237, 71,225,108,221,186,117,141, 10, 21, 42,132,173, 59, 23,128, 12, 69, - 21, 8, 10,127, 8, 10,127,240, 65,245,113, 77,217, 1,165, 75,151, 14,243,245,245,109, 88, 28, 78, 74,233,206,191,254,250,171, - 3,165,116, 9,165,148,167,148,110, 24, 59,118,236, 32, 66,200,198,177, 99,199,190, 77, 41,221, 96,191,190,236,244,233,211, 93, - 40,165,187,255, 9,119, 74,105, 73,226,124,200, 6,126, 81, 90, 36,132, 16,178,149, 16,178,117,252,248,241, 45, 1, 4,185,156, - 55,114,126, 14,128,210,221,175,120, 56, 93, 15, 1,208,201,233,189,144,146,242, 15,227, 20, 88,132, 82, 42,182,196,143, 17, 66, -182, 0, 56,166, 80, 40,106, 63,247,220,115,221,182,109,219,230, 27, 18,242,247,119, 67, 66, 66,176, 97,195, 6,223,234,213,171, -119, 83, 40, 20,181, 1, 28,211,235,245, 91,224,166, 43,209, 14,255,161, 67,135,190,244,234,171,175,102,215,174, 93, 27, 0, 50, -207,159, 63,175,109,208,160,129,129,227, 56,194,113, 28,105,208,160,129,225,252,249,243, 90,155,205,150, 83,191,126,125, 93,235, -214,173,111,141, 30, 61,186, 63, 0,117, 17,126,232, 59, 99,198,140,232,128,128,128,162, 18, 2,114,114,114, 16, 22, 22,134,161, - 67,135,134,203,229,242, 55,138, 52,235,177,236,176, 25, 51,102,132,250,251,251, 35, 35, 35, 3,209,209,209,176, 88, 44,184,124, -249, 50, 76,134, 92,216,114,178, 97,203,206, 68,202,245,171,240,151,179,232,223,181,115, 24,203,178,195, 60, 88, 71,134,125, 51, -118,108,152,229,214, 45,220, 88,191, 30, 60,247,160, 97,134,179, 90,113,230,235,175, 97,138,143,199,244, 65,131,194,148, 74,229, -176, 39,108,185,250,156, 82,170,161,148,106, 8, 33,243, 26, 53,106,244,189, 70,163, 25, 26, 23, 23,215,126,199,142, 29, 47,238, -219,183,175, 5,199,113,114,142,227,228,251,247,239,111,106, 50,153, 88,149, 74, 5,150,101,169,183,156, 13, 27, 54, 92,161,209, -104,134, 44, 94,188,184,253,238,221,187,251, 31, 63,126,124, 24,207,243, 74,158,231,149,199,143, 31,127,219,104, 52,202, 41,165, -124, 97,156, 79, 26,114,185, 28, 10,133, 2, 26,141, 6, 77,154, 52,185,190,108,217, 50, 91,116,116,180,124,227,198,141, 1,145, -145,145,186,133, 11, 23,102,230,228,228,204,240,150,207,106,181,194,108, 54,195,104, 52,194,100, 50,225,143, 63,254, 40, 55,124, -248,112,214,100, 50,241, 93,186,116, 73,183,217,108,230,177, 99,199,234, 3, 3, 3,223,147, 26,172,255, 8, 56, 0,185,118,129, -101,118, 78,203,132,144,154,162, 53,214, 27,100,102,102, 46,253,230,155,111,162, 25,149, 63, 14, 88, 58, 98,141,240, 25,118,248, - 45, 68,114,153,247, 17, 26, 93, 1,175,188,242, 74, 40,165,116, 97, 9, 84,116,155, 41,165, 61, 41,165,155, 30,230,253,199,237, - 78, 66, 72, 25, 31, 31,159,245,122,189,254,128,143,143,207,122, 66, 72,153, 71,245,115,187,138,164, 77,183,106,178,248,118, 21, - 8,237, 86, 77, 22,223,174, 98,241,215,106,146,240,116,194, 69,139, 56, 35,133, 82,218,153, 82,218,121,250,244,233,211,156,158, - 23,207, 53, 94,242,119,166,148,118,118, 73,163, 91, 31,135, 95, 88,103,229, 40,122,202,121,182, 96,169, 82,165, 86,172, 88,177, -194,215,245,197,251,247,239, 35, 59, 59, 27, 19, 38, 76,240,125,245,213, 87, 71,221,189,123,247, 53, 15,223, 82, 38, 38, 38,214, -233,215,175,159,218,106,181,102, 8,130,192,100,103,103,179,126,126,126,188,248,128,159,159, 31,159,149,149, 37, 55, 24, 12, 50, -158,231,205,175,190,250,170,114,208,160, 65,245,156, 45, 88, 15, 72,218,144,144,182, 29, 59,118, 84, 22,118,223,102,179,193, 96, - 48,192, 96, 48,192,106,181,162, 73,147, 38,170,101,203,150,181, 3,176,184,176,119, 84, 42, 85,219,182,109,219,202,211,211,211, -225,231,231,135,219,183,111,227,230,205,155, 48,231,230,194,154,155, 13,107,110, 14,184,156,108,208,236, 44,164, 93,189,132, 6, - 85,171, 40,126, 80,169,218, 3,152, 93, 24,167, 94,175,111,219, 96,192, 0, 86,167,211,161, 69,191,252,249, 3,191, 85,173, 10, -202,243, 16,120, 30, 60,199,161,253,229,203,176,217,108, 96, 24, 6,245,211,211, 89,253,202,149,109, 1,204,250, 39, 18,185, 74, -165, 98, 87,173, 90,213, 87,169, 84,130, 82, 74, 44, 22, 11,118,236,216,241,200,156, 43, 87,174,236, 47,114, 90,173, 86, 90,163, - 70,141, 7, 50,146,217,108,166, 79, 75,102, 87, 42,149, 80,171,213,176, 90,173, 40, 91,182,172,177, 95,191,126,135,166, 78,157, - 90,154, 97, 24,157, 66,161,216,150,150,150, 54, 45, 33, 33,225,134,183,124, 54,155, 13, 22,139, 5, 22,139, 5, 70,163, 17,215, -175, 95, 15, 47, 87,174, 28, 25, 58,116, 40,159,151,151, 23, 51,127,254,252,107, 59,118,236,208,206,152, 49,163, 7,128, 17, 82, -113,251,228, 96,183, 66,251,149, 14, 98, 13,114, 25,114, 1,248,218,197, 64, 15, 66, 72,131,106,213,170, 5, 92,184,112, 33,131, - 16,114, 4,192, 26, 74,233,253,162,248, 4, 65, 32,130, 32,224,237,231, 51, 49,180,161, 12, 54, 91, 22,178,178,178,112,251,246, -109,156, 63,127, 30, 71,143,158,127, 40,119,170,213,234, 55,124,124,124,218,169,213,234,178, 28,199, 49,185,185,185,183,243,242, -242,118, 9,130,176,148,186,118, 35,120,129,199,229, 78, 17, 58,157,110,230,135, 31,126,216,216,207,207, 15,127,253,245, 87,204, -218,181,107,103,226, 17, 7,205,171,229,204,183,179,231, 46,140,138, 10,245,199,233,125, 63, 71, 77, 91,178,238, 91, 0,209, 82, - 42,126, 38,242, 33, 45, 68, 96,253, 9,160,147,125,118,121,231, 71,224,127,164,247, 31, 74, 96, 21,226, 33,112, 28, 23,238,108, -185,162,148,226,254,253,251,184,119,239, 30, 82, 82, 82, 16, 16, 16, 0,171,213, 26,238, 77,253,154,147,147,243,124, 80, 80, 80, -158, 92, 46, 55, 27,141, 70,104,181, 90, 65, 46,151, 83,251,119,136,125, 22, 34,111, 54,155, 9,203,178, 54, 95, 95, 95, 31,179, -217, 92, 5, 69,140, 21,163,148, 62, 31, 20, 20,228,246,158,217,108, 70,110,110, 46, 12, 6, 3,114,115,115, 97, 54,155, 17, 22, - 22, 6,142,227,234, 20,217,132,229,184,154, 33, 33, 33, 72, 72, 72,128, 70,163, 65,124,124, 60, 44,185, 57,176,230,228,128, 51, -100,131,207,202,130,144,157, 13,193,144, 13,155, 37, 15, 81,149,170, 66,156, 97, 88, 24, 44, 22, 75,205,160,160, 32, 24, 12,127, - 15, 39,163,118, 97,197,113, 28, 56,251,160,103,177,219, 48, 56, 56, 24,226, 12,195, 39,212,106, 48, 19, 66,198, 48, 12, 51, 79, -165, 82,177, 67,134, 12,193,253,251,247, 11,164,137, 33, 67,134, 56,198, 92, 53,107,214,108,191, 90,173,230, 82, 82, 82, 96, 54, -155,229,222,112,150, 45, 91,246,246,132, 9, 19,142, 89, 44,150,232,200,200, 72,127,179,217,108,172, 92,185,114,164, 70,163, 9, -179, 88, 44,124,189,122,245,150,106, 52, 26, 91,110,110, 46,229, 56,142, 60, 37,153, 29,132,144,252, 56,226, 56, 4, 7, 7, 27, - 82, 83, 83,143,102,100,100,244,125, 24, 62,155,205, 38,206,208,130,209,104, 4,165, 20,127,253,245, 23,212,106,181,156,231,249, -115, 28,199,105,229,114, 57, 24,251,224, 46, 9, 79, 44,158, 91, 84,241, 87,206,142,107, 16,234,255, 92, 23,157, 65,171,148, 25, -132,219,207,149,253,238,243,243,107, 95,237,255,134,239,164, 73,147,202, 4, 7, 7,171,175, 93,187,102,154, 60,121,114,185, 85, -171, 86, 17, 79,141,159,187,119,239,110,252,240,195, 15, 3, 59,118,236, 24,163, 82,169, 72, 86, 86, 22, 82, 82, 82,144,148,148, -132,155, 55,111,210,211,167, 79, 95, 55,155,205,235,139,227,206,200,200,200,101,195,135, 15,127,181,110,221,186,114,209, 34,106, - 48, 24,106,239,221,187,183,235,111,191,253,214, 20, 64,177,211,229,221,187,119,215,127,244,209, 71,186, 14, 29, 58, 84, 81,169, - 84, 76, 73,184,211, 25, 12,195,132,249,248,248, 96,215,174, 93,240,247,247, 7,195, 48, 97,143, 26, 95, 38,171, 16, 21, 25, 30, - 4,211,193,217,168, 18, 82, 6, 38,171, 16, 37,165,226,103,199,130, 85,200,173,250,162, 5,202,131, 72, 50,142, 27, 55,238, 67, - 66,200,214,113,227,198,125,232,206,130,101,255,203, 59, 63,231,244,188,185,196, 5,150,151, 45, 29,220,187,119, 15, 9, 9, 9, -184,119,239, 30,210,210,210,192, 48, 76, 81, 1, 82,192, 95,132, 16, 97,231,206,157, 1,135, 14, 29, 50,212,175, 95, 63, 83, 28, -223,194,113, 28,177,217,108,196, 62,238,133,220,190,125, 91,113,224,192, 1,255,139, 23, 47,134, 33,127, 32,154,224, 33, 66, 30, -184, 38, 10, 43,231,195,100, 50, 65,173, 86,123,229, 87,177, 2,252,235,196,137,124,113,149,155, 99,239, 26,204, 2,159,157, 5, -106,200,129,146,183, 65, 9, 10, 98,202,243, 58,252,156, 33,138, 43,171, 93, 96, 89, 44, 22,216,108, 54, 8,130, 0,142,227,254, -137,132,189,168,118,237,218,117,126,252,241,199,129,247,238,221,123,224,126,247,238,221, 49, 98,196, 8, 12, 31, 62,252, 98,167, - 78,157, 78,255,252,243,207, 24, 54,108, 24, 4, 65,120,142, 16,146, 69, 41,253,173, 40,206,113,227,198, 29,191,123,247,238,158, - 43, 87,174, 12, 9, 13, 13, 85,213,172, 89,243,106,205,154, 53,101, 63,254,248, 99,216,155,111,190,121,226,197, 23, 95,188,245, -251,239,191, 7,238,218,181, 75, 45, 8, 66, 93, 66,200,189,127,122, 29, 44,179,217,236,176, 56,153, 76, 38, 88,173, 86,160,136, - 65,237,158,210,166, 24,183, 28,199,137,220,228,199, 31, 55, 97,255,254,253,204,249,243,231,162,135, 12, 25, 42, 14,164,151, 74, -218, 39, 35,172, 58, 40, 25,242,213,152,231,130,212,239,213, 10, 50, 40, 89,146,123,249,171, 15,115,111,150,214, 27,194, 74,105, - 45,209,229,252, 35,167, 77,155, 26,113,241,226, 37,243,132, 9, 19, 46,244,233,211, 39,244,189,247,222,171,182,113,227,198,166, -132,144,111, 40,165,153,133,240, 42, 6, 14, 28,120, 52, 52, 52,180,252,146, 37, 75,146,239,222,189, 27, 96,179,217,180, 54,155, -205,106, 48, 24,174,229,229,229, 29,176, 90,173,187, 40,165, 39,138,227, 94, 95, 95,223, 90, 3, 6, 12,144,103,102,102,194, 62, -251, 22,201,201,201,104,220,184,177,108,203,150, 45,213, 31, 38, 12,210,211,211,103, 19, 66,246,172, 94,189,186,157, 94,175,175, -171, 82,169,194, 1,240, 57, 57, 57, 73, 6,131,225,212,195,184,179, 64, 57,199,243, 73, 39, 78,156, 40,175,215,235,113,231,206, - 29,240, 60,159,244,168,241,166, 86, 48,119,207,236,219, 82,170,106,112, 57, 28, 56,116, 4,106, 5,115, 87, 74,205,207, 60,196, - 49, 82,112, 22, 78,110,132,209,161,184,184, 56,205,244,233,211, 17, 23, 23,119,206,157, 5, 75, 20, 90,113,113,113,231,196,231, -156,158,223, 87,162, 2,171, 40,129,196,178,108, 98, 74, 74, 74,128,191,191,191, 67, 88, 37, 36, 36, 32, 33, 33, 1, 74,165, 18, -183,111,223,134, 82,169,188,239, 77,163, 67,163,209, 28,175, 93,187,118,229, 27, 55,110, 40, 38, 79,158, 92,234,196,137, 19,250, -198,141, 27,215,208,104, 52, 60,165, 20, 38,147,137,185,112,225,130,207,172, 89,179,162,158,127,254,121,203,243,207, 63,127,114, -221,186,117, 70, 20,177,232, 40, 33,228,216,253,251,247, 99,202,150, 45, 43,138,181, 2,162,202, 89,104, 1,249, 93,155, 44,203, -158, 44, 50, 80, 88,246,204,229,203,151,219,104,213, 42, 88,114,178, 97,205,205, 6,151,147, 3, 62, 39, 11,124, 86, 22, 96,200, -134,146,227, 32,231,109,208,168,213,184, 23, 31, 15,150,101,207, 20,197,169, 84, 42,207, 36, 37, 37,181,241,247,247,119, 84,158, - 54,142,203, 63,120, 30, 22,142,115, 88,176,228,114, 57,238,222,189, 11,165, 82,121,230, 73,167, 96,134, 97,120,113, 41,134, 66, -252,129,176,176, 48,161, 65,131, 6, 24, 54,108, 24,120,158,183, 71, 3,105, 65, 8, 57, 64, 41,205, 45,140, 83, 16, 4,230,194, -133, 11, 47, 93,187,118, 77, 38,151,203,153, 23, 94,120, 33,182, 73,147, 38, 22,165, 82, 9,133, 66,193,230,230,230,250,238,218, -181, 75,109,179,217,136,157,243,137,173,131, 37,166,157, 7,154, 66,246,193,232, 70,163, 17,185,185,185,200,200,200, 96, 53, 26, - 77,229, 26, 53,106, 28,177, 88, 44,235, 57,142,251,246,198,141, 27,217,133,113,218, 5,153, 67,108, 9,130, 0, 74, 41,120,158, -135,205,102,131, 66,161, 16,246,238,221,135, 89,115,102, 98,197,183,171,104,215,174, 93,201,150, 45, 91, 32, 8, 66,188, 84,158, - 62, 17,124,145,185,102,170, 26, 28,111, 48,239, 93,157,251,253,149,108,195,164,239,231, 30,183, 40,101,217,245,154,135,213,140, - 41, 87, 89,230,239, 31,192, 44, 94, 58, 47,237,135, 85, 27,174,221,185,115, 39,251,203, 47,191,108, 88,185,114,101,191, 83,167, - 78, 69, 1,112, 43,176,124,124,124,202,190,254,250,235,175,103,100,100, 40, 86,173, 90,181,252,222,189,123,123, 41,165,215, 93, -202,174, 58,132,144,207, 1,200, 1,132, 33,127,252,215, 78, 74,233,202,162,218,105,132, 16,236,222,189,251,129,217,126,194,163, -169,242,140,154, 53,107,214,186,114,229,202,230,196,196,196,239, 93,111,106,181,218,174,177,177,177,175, 28, 59,118,236, 99, 74, -233,181,226, 16,231,229,229,141,221,176, 97,195,231, 50,153, 44,146,231,249, 4,163,209, 56,246,145, 45, 88, 54, 97, 80,220,226, -181, 95, 27, 45,124,105,141, 82,118,199,100, 19,222,148,146,242, 51,109,189, 2,236, 99,176,196,255, 0,136,203,249, 41,251,127, -139,211,179, 41, 78, 86, 43,139,139,213,203,221,189, 20,148,224, 34,231,133,173,228, 62, 30,192,243, 0,142,201,229,242,121,175, -190,250,234,172, 31,126,248,193, 55, 59, 59, 27, 73, 73, 73, 72, 78, 78, 6,203,178,208,235,245, 88,180,104,145, 49, 41, 41,105, -158,243, 59,174, 43,190,139,121, 34, 56, 56,248,248,170, 85,171,194,191,250,234, 43,246,181,215, 94,187,221,169, 83,167, 42,139, - 22, 45,186,161, 80, 40, 40,207,243,196,108, 54,147,183,223,126,187,252,156, 57,115,110,201,100, 50,109,239,222,189,137, 78,167, - 59,102, 47,120,220,135,120, 74,202,206,159,126,250,233,165,209,163, 71,171, 44, 22,139, 91,203,149,120,205,223,223, 31, 7, 15, - 30,180,100,100,100,236,240, 96,181,216,185,237,215, 95,154,253,175, 79, 31,133, 45, 39, 27,182,156,108,112,217,217,224,115, 50, - 65,114,179, 33,231, 57,104, 20, 2,194,163,213,224,140, 62,248,229,207, 83, 54,179,217, 92,228,130,132,217,217,217, 59, 15,172, - 88,209,226,249, 50,101,216,131, 35, 71,194,106,179,161,195,229,203, 14, 81,101,181, 90,177,185,102, 77,240,132,224,185,183,222, -194, 85,142,227,178,179,179,119, 62,141,153,224,244,233,211,201,253,250,245, 59, 33, 8, 66,157,226, 88,115,156, 42,159,156,220, -220, 92,164,166,166,242,105,105,105, 38, 0, 72, 78, 78,206,216,178,101,203, 5, 65, 16,158,127, 24,206,146,128,205,102,123,192, -250,196,243,124,190,149, 49,223, 82,160,252,229,151, 95,154, 93,184,112, 65,113,246,236, 89,236,223,191,255,185, 31,126,248, 97, -124,153, 50,101,106,222,190,125, 59,209,147,104,115,183, 88, 47,236,227, 11,215,173, 94,143,193,131, 7,147,196,196, 68,172, 89, -179, 6,158, 22, 61,149, 80, 98, 48,128,227, 53,150,189,171,115, 59,253,122, 39,231,240,125,227,100, 0,219,169,145,163,165, 74, -149, 58, 93,183,110, 64, 48, 0,152, 77,124,120,197,138, 21,155,179, 44,171,180,167,225,186, 65, 65, 65,139, 0, 52,113, 71,218, -189,123,247, 70,161,161,161,181,127,251,237,183, 83,247,238,221,219,231, 42,174, 0,160,114,229,202,159,157, 61,123,182,131, 92, - 46, 39, 78,105,132, 2,112, 43,176, 90,180,104, 81,185, 76,153, 50, 65,191, 94,241, 67,182,162, 2,168, 44, 11, 96,213,224,253, -107,225,182,162, 26,162,163,143, 4,249,251,251, 63,151,153,153,121,170,152, 86,188,210,189,123,247,254,101,217,178,101, 85, 95, -124,241, 69, 37,128, 7, 4, 86,213,170, 85,123,252,254,251,239, 61,135, 12, 25, 82,139, 16,210,197,203,221, 58,196,124,116, 27, - 64,207,146,140,180, 29, 87,233, 46,216,215, 44,147,240,159,193,159,143,233,217,199,134,194,186, 8,159, 23, 4,161, 43,195, 48, -176, 90,173,113, 97, 97, 97,155,123,247,238,221,125,252,248,241, 62, 65, 65, 65, 14,203,213,162, 69,139,140, 55,111,222,220,104, -181, 90,255, 34,132, 76, 76, 72, 72,232, 26, 25, 89,104,189,144, 51,127,254,252,181, 93,186,116,121,237,173,183,222, 50,214,172, - 89, 83, 95,165, 74,149,188, 67,135, 14,249,180,109,219, 54, 91, 38,147,209,131, 7, 15,250,150, 47, 95,222, 68, 8, 81,253,254, -251,239,105, 71,142, 28, 41, 31, 23, 23,247, 13,242,167, 77, 23,134,213, 83,166, 76,153,208,181,107,215,242, 65, 65, 65,200,206, -206, 46, 32,178,196,255,106,181, 26,137,137,137,216,180,105,211,125,155,205,246,141, 7, 75,198,151, 11, 23, 45, 30,213,178,193, - 11, 81,122,173, 6,137,241,183,193,103,101, 0,134, 92, 40, 57, 27, 52, 74,138,168, 10, 90,176, 50, 29,174, 37,230, 98,197,161, - 63, 19, 57,142,251,178, 40, 78,139,197,242,229,136, 57,115, 70, 29, 94,188, 56,170, 76,175, 94, 56,191,114,165,163, 75, 80, 20, - 88, 60, 33, 40,221,186, 53, 24, 63, 63, 76, 91,178, 36,201, 98,177,124,249,164, 19,132, 32, 8, 50,139,197, 82,148, 63, 32, 8, - 66,252,249,243,231,215, 18, 66,114, 8, 33, 45,236,183,246,184,179, 94, 57,115, 50, 12, 35, 84,171, 86,237,199,176,176,176,151, - 0, 24,170, 85,171,246,163, 74,165,106,101,177, 88, 94, 16, 4, 33,254,175,191,254,218, 68, 8, 73, 36,132,136,173,140, 39,186, - 14,150,205,102,195,196,137, 19, 49,125,250,116,140, 27, 55,206,225, 95,177,155, 48, 51, 51,179,220,129, 3, 7, 20,123,247,238, -165, 75,150, 44, 73,123,237,181,215,252,223,122,235, 45,255,175,190,250,234, 93, 0, 99, 11,227, 28, 59,118, 44,150, 44, 89,130, -193,131, 7, 63,168,174,100, 50, 33, 62,254, 46, 76, 38, 19,157, 63,127,126,130, 92, 46, 15,248,230,155,111, 52,111,190,249, 38, -145,202,211, 39,130,143, 52,253, 62,126,199, 94,198,204,163,148,238, 17,111,232,245,122,205,143, 63,254,196, 2,192,198, 13,155, -228,148, 82, 63,113, 97,216,239,191,255, 94,221,184,113,227,208,194, 72, 55,108,216,144, 57,121,242,228,160, 65,131, 6,189,184, -103,207, 30, 45, 33,228, 87,123,161,159, 10,128, 7, 16, 12,224, 96, 72, 72, 72,196,218,181,107, 43,180,107,215, 78,231,201,161, - 57, 57, 57,223,172, 93,187,182,236,156, 3,126,248,213,240, 18,238, 10,189, 64,253, 41, 2, 67,115, 80,205,231, 14,250,246,237, - 27, 57,111,222,188,175, 1,212, 45,134,184,170,254,242,203, 47,255,180,108,217,178,114,111,189,245, 86,252,193,131, 7,239, 18, - 66, 62,115,243,104,218,128, 1, 3,110, 47, 95,190,188,130, 32, 8,219, 9, 33, 47, 82, 74,175, 72,201, 71,130,132, 34,242,151, -187,241, 75,132,144,205, 28,199,117,101, 89,118,139,243, 66,163, 97, 97, 97,163, 44, 22, 75, 4, 33,132, 42, 20,138,196,164,164, -164,121,206, 11,141,198,199,199,119,141,142,142,118,188, 99, 95, 44,211,121,173, 12,125,135, 14, 29,218, 28, 62,124,120,193,214, -173, 91,147,115,114,114,124, 54,108,216,160,153, 62,125,250,109, 65, 16,232, 7, 31,124, 80,166,125,251,246,121, 60,207,223,127, -235,173,183,202,151, 43, 87,238,173,139, 23, 47,238,114, 22, 88,110, 56, 65, 8,169, 94,161, 66,133,131, 27, 55,110,212,251,251, -251, 35, 57, 57, 25,233,233,233, 48, 24, 12,224,121, 30,114,185, 28, 41, 41, 41,152, 60,121,114,118, 66, 66,194, 3, 11,141, 22, -194,249,124,217,168,168,157,243, 62,155,232,235,207, 50, 72,187,116, 1, 92, 70, 26,228,156, 13,165,170,251, 65,161,212,224,234, -229, 28,188,187,122, 83,206,157,244,204, 7, 22, 26, 45,140,179, 94,197,138,187,150,140, 25,227, 99,186,123, 23, 17,175,191,142, -188,188, 60, 88,173, 86, 48, 12,131,235,243,230, 65, 17, 18,130, 9,235,214, 25,206,221,185,211,218,117,161, 81,119,156,143,156, - 0,156, 56, 9, 33, 67, 9, 33,142, 65,238,221,187,119, 47,240,236, 79, 63,253,132,197,139, 23,195,108, 54,115,148,210, 81,148, -210, 69,132, 16, 31,123, 43, 53,215, 19,103,217,178,101,239,196,198,198,254,201,243, 60,107, 23, 23,244,252,249,243,117,111,222, -188, 89,202,133, 83,236,186,230,158,148,223,131,130,130,230,253,246,219,111,101, 67, 67, 67,137,243, 10,235,118,129, 8, 0, 24, - 54,108, 88,235, 35, 71,142,168,106,215,174,109, 78, 77, 77,173, 31, 18, 18,242,199,170, 85,171,130,123,247,238,157,112,238,220, -185, 40, 87,206,224,224,224, 89, 27, 55,110,172, 80,161, 66, 5, 70,180,130,185,118, 67, 14, 28, 56,176,205,170, 85,171,148, 47, -189,244,146,217, 96, 48,132,249,250,250, 94,219,184,113, 99,112,183,110,221, 18,207,157, 59, 23,241, 36,252, 46,113,186, 71,108, -108,236,213,115,231,206, 85, 16,207,141, 70, 35, 82, 82, 82,144,154,154, 10,127,127,127,180,109,219,246,250,205,155, 55, 43,184, -227,180, 91,133,230, 46, 93,186,244, 69,157, 78,167,216,183,111,159, 97,215,174, 93,166,219,183,111,115, 54,155,141, 70, 68, 68, -176, 77,154, 52, 81,119,236,216, 81,167, 82,169,152,143, 63,254, 56,117,234,212,169,193,132,144,185,148,210,119,221,113,214,169, - 83,231,232,182,109,219,158, 39,132, 64, 38,147,193, 98,177, 34, 51, 51, 19,247,238,197,227,252,249,243, 56,124,248, 48,118,236, -216,113, 42, 55, 55,183,182,183,126, 39,132,252, 97, 54,155, 91, 40,149, 74,175, 5, 61,207,243, 96, 89,118, 55,128, 54,148, 82, - 65, 74, 75, 18,167,132,226, 89,176,196,193,185,207, 19, 66, 54,219, 47, 29,115, 93,138,129, 16, 50,158, 16, 50,209,201,234,229, -233,123,217,191,253,246,219,254, 54,109,218, 12,107,221,186,245,156,118,237,218,221,191,127,255,126,204,236,217,179,163, 57,142, -179,158, 63,127,158,185,118,237,218,237,227,199,143, 87,168, 84,169,210, 91, 23, 47, 94,220,235,193,122, 37,186,245, 60, 33,164, -113,203,150, 45, 55,189,245,214, 91,165, 27, 52,104,160,244,247,247, 7,203,178,184,113,227, 6, 78,157, 58,101, 89,183,110, 93, -124,102,102,166,215, 91,229, 80, 74,143, 17, 66,218,246, 30, 62,106,227, 91,221,187, 4,191, 80,165,178, 50, 34, 34, 2, 48, 26, -113,233, 78, 34,142, 92, 58,101, 93,182,255, 72,138,217,108,126,217,219,173,114,236,156,109, 90,141, 25,179,113,210,255,254, 23, -134,251,247,217,136,136, 8, 40,149, 74,220,188,121, 19,215, 4,129,155,177,116,105, 82,118,118,246, 19,223, 42, 71, 92,179, 74, - 16, 4, 22, 0, 52, 26, 13, 70,140, 24, 1,231,173,113, 22, 47, 94, 12,163,209, 8, 0, 44, 33,228,115, 66,200,183,133, 89,173, - 10,225, 44,253,235,175,191,150,118,230,172, 90,181,170, 59, 78,243,147,206, 8,233,233,233, 19, 58,116,232, 16,199,178,108,161, -171,213, 6, 4, 4, 32, 39, 39, 7, 28,199,241,247,238,221,187, 20, 16, 16, 0,185, 92, 14, 74,169,219,124,148,150,150, 54,225, -229,151, 95,158,194, 48, 76,161,150, 14,189, 94,127,251,143, 63,254,168,248,230,155,111, 50,223,125,247,221,141, 65,131, 6,169, -254,248,227, 15,254, 97,215, 52,146,240,248,224,220, 24,181, 55,222,104, 17,207,222, 33,132,140, 61,113,226,132,122,240,224,193, -117,255,247,191,255,233, 91,182,108,233,227,252,140,209,104, 20,126,254,249,103,195,146, 37, 75,210,246,237,219,247,231,192,129, - 3, 95, 66,254,248, 17,183,184,115,231,206, 47,211,166, 77,243,235,216,177, 99, 37, 0,142,241, 87, 41, 41, 41,184,125,251, 54, -206,158, 61,123,219,106,181,110, 41,166,183,134,245,235,215,239,215,229,203,151,151,121,235,173,183,226,215,172, 89,179, 5, 64, -150,155,231,124,122,244,232,209,117,249,242,229,101,222,126,251,237, 59, 0, 70, 74, 43,188, 75,144,240,112, 2, 43, 75, 16, 4, -152, 76,166, 48, 65, 16,186, 10,130, 0, 31, 31, 31,119,207, 61,159,144,144,208,213,121,179,103,120,216,214, 6, 64,202,174, 93, -187,118,174, 94,189,186,245, 7, 31,124,240,191,204,204,204,231, 79,159, 62,221, 0, 0,228,114,249, 97,157, 78,119, 52, 46, 46, -238,245,177, 99,199,166,120, 35,174, 92, 68, 86,181, 89,179,102,149,216,102,207,118, 65, 84,241,203,245,155,134,125,163, 82,181, -117,217,236,121,167,125,179,103,211,195,112,142,249,250,235, 97,250,245,235,159,218,205,158,205,102, 51,247,210, 75, 47,125,195, - 48,140, 96,111,181,178,102,179,249,117, 20,115,230,169, 43,103,247,238,221,191,147,201,100,156,221, 50,196,152,205,230, 55, 30, -133,179, 4, 43,207, 92, 0,195,139,122,166, 70,141, 26,171,182,108,217,210,175,107,215,174,188,213,106, 77,238,210,165, 11,123, -244,232, 81,202, 48,204,174, 66, 56,205, 0,222, 47,138, 51, 60, 60,188,204,194,133, 11, 79,142, 28, 57, 82,191,122,245,234,192, - 3, 7, 14,240,243,231,207,207, 78, 79, 79,255, 66, 42,158,158, 46,200,229,114,104,181, 90, 88, 44, 22,164,164,164,192,211,146, - 83,148,210,107,132,144, 78, 99,198,140,105, 58,102,204,152, 78,209,209,209,213, 75,151, 46, 93,154, 97, 24,230,254,253,251, 41, -119,239,222,189,101,181, 90,127, 7,240, 11, 0, 69,249,242,229,255, 2,176,170, 48,190,180,180,180, 41,132,144,221, 43, 87,174, -236,164,211,233,170,169,213,234, 64,155,205,198,228,228,228,164, 27,141,198, 11, 38,147,105, 43,165,244, 80, 49,211,253,101, 66, - 72, 75,150,101,127, 89,182,108, 89,213,251,247,239,151,221,187,119,111, 23,215,231,234,214,173,187,124,249,242,229,101,134, 12, - 25,114,109,245,234,213,197, 26,131, 37, 65,130, 36,176, 10, 98,154, 82,169,100, 97,223,244, 89,180, 96,185,121,238,152,203,152, -171, 44, 0,211,188,248,174,161,111,223,190, 55,251,246,237,251,185,221, 13, 50,228, 47,197,192, 33,127, 4,191, 21, 30,150,102, - 40,164,176,224, 0,124,109, 63, 74,170,226, 53, 33,127,189,155, 89, 79, 51,103, 9,184,201, 76, 8, 25, 99,159,213, 4, 0, 99, -254,250,235,175, 69, 46, 22,169,211,206,247, 61, 89,154,220,113,158, 58,117,202,149,243,108,113, 56,255, 73,100,102,102,142, 90, -184,112,225,177,113,227,198,169, 6, 12, 24,128,179,103,207, 98,250,244,233,230,204,204,204,213, 15,203,153,152,152,120, 59, 60, - 60,188,206,220,185,115,223,155, 51,103, 78, 55, 66,136,180, 23,225, 83, 2,163,209,120,189, 86,173, 90, 32,249,179, 19, 40,199, -113,142,217,159,246, 21,249,175,123, 89, 38,237,182, 31,158,240,185, 23,124,135, 1, 28, 46,225,188,127,135, 16,210,233,214,173, - 91,211, 46, 95,190,188,205,221, 51,231,206,157,251,169, 93,187,118,218,195,135, 15,127, 88,220, 89,132, 18, 36, 72, 2,171, 96, -134,187, 10,224,127, 94,100,204,184, 71,248, 54,239,133,181, 75,194,147, 21, 89,139, 8, 33,223, 58, 89, 95,138,117,255, 73,113, -254, 83,136,143,143,207, 0,224,216, 50, 36, 38, 38,230,129,113,106, 15, 43,178,144,191,106,187,180,114,251, 83,132, 27, 55,110, -116,248, 15,229,253, 59, 0,250, 21,118,223, 98,177,108, 1,176, 69, 74, 21, 18, 36, 60,162,192,146,240,159, 22, 89,230, 71,185, -255,164, 56, 37, 72,144, 32, 65,130,132,167, 25, 4, 64,155, 66, 42, 61,175,103, 7, 16, 82,252,141, 54, 61,241, 75,156, 18,167, -196, 41,113, 74,156, 18,167,196,249,236,113, 58,113,207, 41,228,214, 37, 23,190,175,254,173, 22,139,199,118, 32,127, 26,175,196, - 41,113, 74,156, 18,167,196, 41,113, 74,156, 18,231,195,124,231,173, 39,241,157,199,113, 72, 27,202, 74,144, 32, 65,130, 4, 9, - 18, 36,148, 48,220,142,193,218,176, 97,131, 76,252,255,202, 43,175, 12,228,121,222, 49,125, 93, 38,147, 45, 92,179,102,205,183, - 69,145,246,236,217,147, 47,138,211, 29, 60,125,199, 29,103,108,101,191, 33, 65,126,218, 81,153, 89,121,115,111, 36,240,251, 77, - 38, 83, 53,241,158, 90,173,190,240,237,183,223, 94, 41,105,119, 14, 28, 56,176,146,235,119,202, 70,203, 91, 4,250,170, 71,164, -103,230,206, 62,123, 37,231, 43, 41, 89, 61, 94,244,234,213, 75, 86,156,231,111,222,244,103, 78, 34,226, 11,189, 78,209, 37,215, - 96,251,130, 63, 49,113,193,179, 16, 14, 17, 17, 17, 85,244,122,125,127, 0,213,243,242,242, 66,181, 90,109, 50,128,243,217,217, -217,171,238,223,191,127,201, 91,158, 22,229,200,109, 0,165,237,167,119,246,220,164,101,188,185,231, 9,237, 43, 16, 19, 5, 84, -132,192,186,253, 42,117,108,112,249, 98, 69, 98, 18,232,131,215,219, 87, 36, 22, 74,161, 32,128,121,251, 53,170,126, 86,210, 43, - 33, 68, 15,160, 45,128, 88, 0,167, 1,236,160,148,230, 73, 57, 89,130,132,255,160,192, 26, 56,112, 96, 51, 37, 75, 23, 64,160, -254,160, 52,200,108, 54,203,149, 74, 37, 44, 22, 11,180, 26,205,151,131,223, 24,240, 25, 8, 50,173, 2, 51,226,219,111,191,125, -232,157,167,139,243,157,158, 61,123, 62, 48,205, 57, 64,175,153,178,231,231, 15, 2,154,117,138,155,110,185,153, 62, 54, 39, 39, -135, 81,169, 84, 48,155,205,240,243,243,107, 60,252,173, 65,117, 41, 67, 44, 10,181,238,208,156, 57,115, 18, 31,214,157,239,190, -251,110, 56,103, 53, 52,162, 54,170,180, 88, 44, 42,215,239,248,107,117, 51,246,252,252,129,182,121,231,233,159, 1,144, 4,214, - 83,132,124,113, 21,254,213, 59,125, 95, 24, 48,115,100, 27,248,183,152, 49, 22,192,191, 90, 96, 17, 66,100, 49, 49, 49,195,202, -148, 41,211,103,233,210,165,138,152,152, 24,168,213,106, 24,141,198,136,235,215,175, 71, 12, 25, 50,164,121,249,242,229,215,222, -184,113,227, 75, 74, 41,239, 5,101,233, 61,203, 63, 6, 0, 52,238, 63,185, 52, 33,228,125, 0,121, 0,208,188,236,223,247, 90, - 12,152, 92,154, 16, 50, 6, 5,103,255,222,167,148,186,157, 93, 70, 1,229,214,149,179,208,245,213,247, 89, 66,200, 16,241,122, -199, 74,192,182,239,231,225,197, 87, 70, 21,184,222,190, 60,216,159, 87,206, 66,231, 87,223, 47,116,183,241, 23, 43, 49, 54, 65, -160,133, 78,206, 97, 24,194,109,191, 74,221,109,252,155, 68, 41,221,238, 38, 44,219, 35,127,163,101,183,207,119,174,202, 38, 89, -109,188,219,133, 98, 21,114, 89,242,214,139,220, 3,239, 14,168, 67,108, 54, 62,191,108, 85,176,224,253,252,252,246,124,244,209, - 71,108,231,206,157,177,108,217,178, 38, 95,125,245,213, 91,132,144,223, 1,108,145,150, 60,144, 32,225, 63, 38,176,148, 12, 93, -178,125,245,226, 10,137, 41,233,232, 51,100, 60, 86,175, 94,141,140,140, 12, 4, 4, 4, 64,169, 84,200, 23, 77, 27, 27,238,239, -171, 13,239, 61,124,226, 18, 0, 85, 30,246,227,197,252, 78,197, 7, 10, 71,251, 66,164,172,140,149, 43,149,114,102,237,218,181, -200,204,204,132,191,191, 63,148, 74, 57, 51,111,242,104,141,191, 94,167,249,223,168, 73, 77, 0,172,127, 88,119,114,198,220, 38, - 63,127,191, 80,159,148,146,134,126, 35, 38,192,245, 59,114,133,130, 23, 43, 20, 41, 73,253,115, 72, 77, 77, 37, 0, 16, 28, 28, - 76, 11,138,171, 6, 3,230,140,110,135,119,103,239, 64,158,201,242,253,191,221,159, 49, 49, 49,195,122,245,234,213,103,202,148, - 41, 10,134,201,239,229, 55, 24, 12, 48, 26,141,136,138,138,194,158, 61,123, 20, 19, 38, 76,232,243,211, 79, 63, 1,192,252,226, -242,159, 59,119,174,108,233,210,165, 77, 0,208,165,166,175,235,189, 50,226, 61, 0,240,245,245,245,200, 23,228,175, 51,159, 59, -119,164,186,248,222,176,214, 81,124, 33,215, 77, 0,180, 69,113, 9, 2,101,119, 44, 24, 82,232,253, 55,167,252,192,157, 94,191, -191, 74, 76, 76,140,209,249,122, 33, 11, 37, 3, 64, 88,110,110,110,105,215,139,226,243, 86, 27, 31, 90,216,247,218,141, 88,236, - 86,120,217,120,176, 63,252,240, 3, 0,224,139,247,251,201,190, 62,154,202,178,108,126, 81,251,249,231,159, 99,210,164, 73,202, -237,219,183,119, 92,185,114,101, 71,251,214, 56,210,242, 7, 18, 36,252, 87, 4, 22, 33,240,213,251,234,208,245,181, 17,248,109, -219,118, 52,107,214,204,113,175, 92,185,114,120,165, 71, 23,252,180, 52, 14, 12,136,239,163,124,252, 81,191,147,145,101,248,164, - 67,159,249,147,239, 36,230, 30,222,186,245, 87, 52,109,218,180,192,251,255,235,253, 18, 54, 46,154, 10, 66,169,226, 81,220, 41, - 48, 84,161,215,235,240,242,160, 81,112,247,157,193, 3,186,110,125,177,231,188, 54, 73,105,134, 57, 82,146,122,178,184,120,241, -162,204,108, 54,191,162,215,235, 27,200,229,242, 48,149,127,105, 33,129,125, 62, 45,133,196,220, 72, 14,205,107, 54,186, 77,216, -139, 95,188,211, 18,239,206,222,129,185,171,143, 44,175,131,196,137,255,102,255, 70, 68, 68, 84, 41, 83,166, 76, 1,113,149,147, -147,131,220,220, 92,100,103,103, 35, 39, 39, 7, 12,195, 96,236,216,177,138,189,123,247,246,137,136,136,216,229, 69,119,225,157, -198,253, 39,231,139, 12,153, 60,119,226,196,137,230,208,208, 80,179, 86,171,165,172, 66,149,211, 98,192,100, 95, 0, 96, 88, 69, -206,220,185,115, 45, 81, 81, 81, 38,150,101,149,163, 70,141,242,106, 12,167,217,108,166,206,156, 22,139,217,113,125,198,140, 25, -150,176,176, 48,179, 86,171,165, 86,171,197,235,112, 56,115, 51, 29, 42,133, 12, 42,133, 12,106,165, 28,190,101,235, 67,149,113, - 22, 28,199, 97,230,204,153,214,240,240,112,139, 86,171,165, 74,165, 82, 49,114,228, 72,143,238, 28, 56,112, 32,245,247,247,183, -106,181, 90,197,164, 73,147, 30,216,151,239,143,211,247,160, 81,202,161, 85,177,168, 88, 46, 26, 42,106,244,218,173, 50, 89,193, - 30,109,149, 74,133, 38, 77,154,160,122,245,234,216,188,121,115, 11, 72,235, 75, 73,144,240,236, 10, 44, 66, 72,115, 0,123, 0, -128, 82, 74, 0,128, 1,197,167,131, 94,196, 91,175,246, 2,207, 11,249,163,226, 1,200, 8,193,251,125,154, 65,224, 57, 8,240, -184, 85,132,199,169,154,197,253,142, 51, 39, 37,140, 12, 0,170,148, 14,162,131, 95,239, 11,129,207,239, 13,225, 1,200, 1,188, -215,171, 9,120,222, 6,193,195,162,240,222,185, 83,192,199, 3,219,193,221,119,170,148, 15, 99,204, 60, 7,226,180, 25,227,227, -216, 4, 83,226, 44,136, 67,135, 14, 69,104,181,218,217,253,250,245,139, 28, 57,114,164,146,103,253,217, 13,135,211,252, 62, 88, -116, 56, 50,207,108,149,245,109, 89, 22,163,255, 87, 19,163,231,254, 33,138,171,183,202,149,203,252, 87,199,145, 94,175,239,191, -116,233,210, 7,196, 85, 82, 82, 18,147,155,155, 11,171,213, 42,228,228,228,128,231,121,140, 27, 55, 78, 62, 97,194,132,254,132, -144, 73,118, 30,179, 59,206, 61, 55,105, 25, 66,200,152,115,231,206,149,249,232,163,143,172,173, 90,181,186, 83,174, 92, 57,131, - 76, 38, 67, 68, 68,196,188,182,109,219, 6, 78,153, 50,197,218,177, 99,199, 91, 50,153, 12, 21, 43, 86, 52,156, 61,123,182, 12, - 0,141,183,126,119,230,252,246,143,133,212, 94,238,160,109,219,182,183, 43, 86,172,104,144,201,100,184,242,243, 12,234,109,120, -202, 89, 6,149,162,252, 28, 45, 53,104,124,128,140,252,211,182,109,219,198, 87,169, 82, 37,151, 97, 24,156, 57,115, 38, 26,128, -218, 19,167, 70,163,177,245,237,219,247,206,165, 75,151, 30,120, 30, 0, 88, 25,131, 6, 85,236, 6,171,168, 58, 64,252,129, 66, -221, 41,151,129,155, 48,172, 31,235,175, 6, 84,190,193,230,236,236,108,232,245,250,124,139,152,213,138,191,254,250, 11, 13, 27, - 54,108,190,126,253,250,189, 82,126,151, 56, 37, 78,103,163,203,131, 90,228, 89,176, 96,237,113,245,140,192,115,168, 16, 21,132, - 69,239,191, 12,142,227,193,243,130,253,224,193,113, 2,108, 86, 11, 60,232, 43,239,172, 67,143,240,157, 0,189,102,202,111,107, - 71, 6,180,238,246,121,235, 5,239,245,216, 41,216,108,224, 5,128,227, 5,240, 54, 30,130, 32,192,102, 41,153, 53, 44, 5, 27, -143, 10,145, 65, 88,240, 94, 15,184,126,103,225, 47, 59,186,252,177,101,172,182, 89,231,233,239, 1,152, 41,233,246, 39, 99,185, -210,106,181,179, 87,173, 90, 85,166,126,253,250, 12, 0,236,191,204,169, 62, 88,116, 56,114,123, 92, 99,210,184,122, 16,146, 51, -205, 24,245,229, 41,252,118, 56,121,155,171,184,250, 23,163,122, 76, 76, 76, 1,113, 53,107,214,172,224, 69,139, 22, 69, 1,192, -203, 47,191,124,175,117,235,214,169,151, 47, 95, 70, 68, 68, 4, 73, 77, 77,237, 4, 96,148,189,240, 26, 67, 41, 93, 84, 8,175, -161,116,233,210,166,144,144, 16,179, 40,132, 24,134, 1,203,178, 40, 93,186,180, 41, 52, 52,212, 92,177, 98, 69,131, 66,161, 0, -195, 48, 16, 5,158,151,133, 38,100, 50, 25, 68, 78, 87,235,142,200, 89, 28,200, 89,167,231,233,131, 22, 35,134, 97,220,126,175, - 48,168,213,106, 10,160,208,231,101,140, 83,241,200, 22, 61, 18, 96,249, 73, 42, 39,132,236,161,148,226,228,201,147,184,113,227, - 6, 20, 10, 5,194,195,195, 49,105,210, 36,152,205,249,101, 82,175, 94,189,154, 3, 56, 35,229,102, 9, 18, 28,216,243, 44, 8, - 43, 87,129,229, 80,143,148,210,189, 0,192,115, 54,240,188,224, 86,244, 88,109, 28,108, 86,107,137, 56,160,168,239,240, 60, 95, -228,119,196, 49, 88, 2,165,172, 91,113, 37,228,239, 27, 86, 34,238, 20,108,176,241,128,187,239, 16,194,240,246,130, 94, 33,229, -143, 39, 3,179,217,220,183, 95,191,126,145,162,184, 2,128,212, 28, 27,155,103,182,201, 26, 87, 15, 66,221,150,189,112, 98,247, -122,172,219,119, 15,229, 67,180,251,202,233,158, 9,113,133,188,188,188, 80,181, 90, 13,131,193,224,176, 92, 45, 90,180, 40,202, - 98,177, 48, 0,192,178,242,232, 20, 33, 74,205, 11,128,159,254, 62, 50, 50,178,130,196, 2,139, 16,242, 57, 33,228,219,162, 86, -206, 87, 40, 20, 14, 97,226, 44,124, 84, 42,213, 67, 9, 23, 17,162, 40, 83, 40, 20,110,175,187,118,163,121,130,194, 89, 96,129, -230, 91,177, 92, 68,150, 76, 38,131, 56,246,201, 19,148, 74,165,195,239,110, 11, 74,153,211,247,100,197, 31,106,105,181, 90,145, -155,155,139,204,204, 76,168,213,106,209, 2, 0, 66,200, 40, 0,239, 72, 57, 90,130, 4,247, 90,228,153, 17, 88,200, 55,205, 17, - 0,224,108, 86,183,162,103,229,142, 19,184,150,102, 67, 84,192,121,136,207,122,139, 62,125,250, 44,143,136,136,104,224, 40, 36, -181,190, 65,253,223,159, 1,222,106,129,191,138,226,157,158, 77, 11,136, 43,158, 23, 96,181, 22,110,129,202,200, 50,124,242, 98, -175,121,147,131,116,190,135, 93, 69,207,132, 13,151,122,166,101, 89,162, 9,123, 17,153, 36,138,239,245,246,167, 3,157, 10,245, -211,107, 23, 79, 28,237,173,187, 41, 97,228, 93, 70,126,245, 22,175,240,173,166,167, 25,251, 38,189, 82,237, 71,103, 17, 23,234, -227,179,181,253,203,115,218, 36,165, 75, 99,176,158, 20,148, 74,101,155,145, 35, 71, 22,168,233,130,125,229,156, 86, 37,231, 15, -158, 79, 37, 39,118,175,103,246,159, 75, 21,212, 10, 25, 13,161, 55, 98,158, 21,127,107,181,218,228,188,188,188, 8,163,209,136, -236,236,108,100,103,103, 23,204,208,114, 57,121,107,240,240, 96,185, 66, 9,155,213,130,223, 86, 77,245,200,217,162, 28,185,221, -188, 44, 74,119,169,233, 11,153, 92,153,115, 62, 38,102, 30,203,178, 96, 24, 6, 63,127,249,193,168, 77,179, 71,248, 2,192,233, -173, 95,102,191, 50,118,225,124,134, 97, 96, 54,155, 85,197,113,247,221,187,119,163,205,102,179,201, 46,204, 68,193,135,155, 55, -111,150, 50,155,205, 70,231,235,222, 64,163,245, 5,252,203, 1,218,208, 7,172,101,183,110,221,138,180,217,108,121, 44,203,194, - 98,177,120,165,134, 24,134, 81,156, 57,115, 38, 90, 16, 4,183,207, 87, 47, 31, 9,132,215, 4,148,126, 94,251,217,190, 72,162, -199,103, 8, 33,244, 89,106,181, 75,144, 80, 18,150,172,226,234,139,167, 89, 96,181, 32,132,208,191, 51, 61,192, 89,173, 14, 97, -149,111, 97,202,255,127, 51, 75,192,165, 43, 87, 49,119,238, 92,236, 61,254,158,223,148, 41, 83, 84, 19, 38, 76, 48,247,233,211, -103,182, 32, 8,181, 24,134, 57,221,179,103,207, 81,238, 62, 38, 8, 66,169, 19, 39, 78, 56, 42, 59,155,205, 6, 95, 95, 95,248, -250,250, 34, 54, 38,252, 1,113,197,217, 45, 88,180,112,225, 35, 3, 5, 64, 65, 57,222, 6,222, 6,135,232, 73,203,178, 68,255, -180,251, 84, 5,167,199, 43,139,127,154,212,175, 86,184, 8, 28, 50,201,225,143,181,139, 39,142,158,178,108,153, 42,131, 15, 27, -249, 74,239, 65,177,189, 94,233,143,126, 61, 94,108,110, 50,217, 54,179, 12, 4,155,192,131,183, 9, 16, 40,101, 40, 80, 96, 12, -150,132,199,135,212,212, 84, 98, 52, 26,203,250,251,251, 23,168,168, 34,116, 6,243,216,222,149, 18,218,126,112, 32,210,100,229, -161,146, 51,116, 84,183, 50, 9, 71,127, 90, 23,148,106, 78, 37,226,236,194,127, 57,206, 95,187,118, 45,162, 84,169, 82,200,206, -206, 6,199,113,194,203, 47,191,124,143,101,229,209,172, 92, 78, 58,191, 50, 92, 72, 76, 76,176, 49,140, 12,148,242,232,208,107, - 40, 81,169, 53, 10,171,197,194, 1, 24, 83,136,245,202,121, 41, 6,223,182,109,219, 6,138, 51,251, 54,205, 30,225,235,116, 79, - 95,183,110,221, 64,231, 89,132, 94,138, 97,210,167, 79, 31, 77,233,210,165, 9, 0,252,185,234, 35,209, 90, 70,186,116,233,162, - 46, 93, 58,127,124,253,239, 95,122,191,215,117,176,150, 2, 89, 55,129,172, 91, 15, 88,174,186,116,233,162,138,137,137, 41, 86, - 94,180, 15,108, 47,116,237, 45, 29,203, 1,137, 39,189,226, 26, 80,135,216, 62,106, 6,118,118, 7, 6, 74,159, 32,115,131, 15, -182, 31,149, 68,150, 4, 9, 94,161,128, 22,121, 38, 4,150,221, 20, 87, 32,115,115, 54,235, 3,226,138,231, 5,168,121, 3,230, -206,157,139,119,222,121, 7, 0, 20,163, 71,143,254,113,202,148, 41, 47, 9,130, 80,139, 82,218,148, 16, 82, 84, 43,113, 79, 68, - 68, 68, 18,165, 84,206, 48, 76,211, 47,191,252, 50,176, 67,135, 14,240,245,245, 5, 21,232, 3,226,138,231, 5,216,204,150,124, -197,231, 6, 1,122,205,148,109, 27, 70, 5,180,234, 54,179, 53,111,195, 78, 81, 92,241,182,191,135,197,167, 37,197, 99,199,182, -205, 88,178,120,105, 6, 8,189, 8, 10,129, 97,152,211,133,185, 81, 16,132, 90, 7,254,188,208,180, 73,253,106,152,178,108,153, -234,220,137,251, 63, 14,127,247,163,216, 94,175,244,199,250, 53,171, 32,179,102,156,100,153,176,191,197, 21,207, 35, 37, 39,187, -203, 31, 63,127, 32,141,193,250,135, 96,179,217,144,145,145, 1, 91,110, 6, 87, 47,194,144,245,105,175, 80,115, 82,134,137,149, - 11,121, 92, 85,125,178,121,119,250, 45,153, 86,171,125, 38,252,154,157,157,189,106,200,144, 33,205,247,237,219,167, 96, 24, 6, -217,217,217,104,217,178,101,106,138, 16,165,126,107,240,240,224,132,132,123,156, 94,195,154, 21, 10, 57,146,147,147,133,230, 29, -251, 26, 95, 25, 56, 42,242,157, 15,167,125,149,112,104,241, 34,111,190,225, 60,179,207,245,222,215, 95,127,109,137,138,138, 50, -169, 84, 42,229,128, 1, 3,188,234, 39,180, 88, 44,116,198,140, 25,102,215,217,130, 22,139,133,206,157, 59,215, 18, 29, 29,109, -214,104, 52,212,102,243, 60,236,128, 97, 8,247,230,148, 31, 56,142,227, 10, 88,173, 68,113,101, 19, 72,238,130, 5, 11,172,209, -209,209, 22,173, 86, 75, 85, 42,149,194, 27,119, 14, 31, 62,156, 6, 4, 4, 88,117, 58,157, 98,236,216,177,143, 52,139,208,198, -131,157,242,165, 99,153, 6,149,175,175, 47,114,114,114, 28,110,141,136,136,144, 68,150, 4, 9,238, 27, 27,123,159, 5,203,149, -171, 5,171,160,200,160, 66,110, 82,114,106,168,127,100, 5,216,108, 28,120,206, 6,206,198,193,198,217, 48,230,245,238,136, 91, -156,223, 19,102, 23, 89,109, 71,143, 30,253, 35,224,121,219,157,181,107,215, 78, 30, 61,122,180, 62, 41, 41,105,251,242,229,203, - 3,251,245,235,135, 49, 99,198,224,243,207, 63, 7,171, 84,195, 47,188,140,227, 59,156,141, 3,111,227,144,156,150, 1, 74,105, -174, 59, 62,113, 12, 22,165, 96,245,225,229,192,243,226,187, 54, 48,178,252,153,233, 59,182,109, 70,191,215, 71, 64,174,242, 11, - 88, 56,119,166, 49,182, 94,196, 75, 19, 6, 13,242, 60,242,157,128, 57,119,226,254,143,195,223, 25,219, 86, 20, 87,155, 86,126, -121,241,203, 81,109, 87,107,149,172,227, 59,188,205, 6,134,145, 73, 99,176,158, 32,130,131,131,105, 74, 74,202,173,204,204,204, -202, 58,157, 14,105,105,105, 72, 79, 79, 71,102,102, 38,204,217, 25, 92, 16,159,105, 32, 92, 58, 88,150, 69,242, 93, 14, 60,207, - 39, 62, 35,214, 43,220,191,127,255, 82,249,242,229,215,126,248,225,135,175,140, 27, 55, 78, 46, 8, 2, 46, 95,190, 12, 10, 80, -185, 66, 9,134, 97, 32,151,179,200,202,202, 22,180, 62,254,247,173, 84,166,149, 43,148, 96,100,138,162, 22, 28,189,211, 98, 64, -254, 50, 13, 12,171,200, 17,103,246, 41, 20, 10, 28, 89, 63, 43,187,197,128,201,122, 0, 80,168, 52, 25,237,218,181,187, 93,173, - 90, 53,195,241,227,199,203,192,101, 22,161,155,252,201,117, 31, 48, 86,166,213,168, 13,109,219,182,189, 35,114,222,218,185, 48, -187,255,208,143, 8,145, 41, 13,157, 59,119,190, 29, 27, 27,107,144,201,100,184,176,121,102,118,247, 1, 99,213, 36,127,130,174, - 91,108,191, 74,223, 60,189,126,127,149,169, 83,167,218, 58,118,236,120, 87, 28, 15,118,235,214,173,200, 78,157, 58,169,230,204, -153, 99,235,212,169, 83,124,141, 26, 53,114, 25,134,193,137, 19, 39,162,139,178, 76,137,208,104, 52,182, 55,222,120,227,206,217, -179,103, 31,106, 22,161, 39,148, 42, 85, 10,130, 32,160,101,203,150, 48,153, 76,146, 37, 75,130,132,255, 0,220, 10, 44,171, 32, - 12,127,245,131, 89, 11, 9,136,143, 0, 90, 96,150, 14,205, 47, 9,200,251,239,191,167, 3,160, 17, 69,214,187,239,190,155,225, -233, 99, 78,226,170, 94,191,126,253, 48,126,252,120,124,241,197, 23,252,231,159,127, 46,187,112,253,174,181,231,232,207, 51, 93, -190, 3, 74,105, 46,207, 99,184, 59,190,140, 44,195, 39, 77, 59, 77,255,236, 94, 82,222,129, 94,239,197, 21, 40,181, 50, 73,254, - 98,134, 75, 22, 47, 49,200, 85,126,186, 94,175,244, 7,128,182, 11,231,206,252,113, 10,150,121, 22, 89,148, 84, 29,254,238,216, - 0, 81, 92,125, 57,103,234,217, 0,146,180, 96,208,199,231, 31, 24, 53,239,231,131, 31,155,118,154,222, 62, 57,221, 48, 79, 74, - 82, 79, 6, 22,139,101,215,252,249,243,203, 78,152, 48, 65,153,158,158,142,212,212, 84,100,100,100, 56,142,220,220, 92,132,135, -135, 99,219,182,109,214,236,236,236, 35,207,146,223,111,220,184,241,229,150, 45, 91,176,119,239,222, 62,227,198,141,147,135,135, -135, 19, 63,191, 68, 98,179, 90, 0, 80,154,146,146, 34,104,125,252,239, 7,135, 69,223, 73, 72, 76,174,106,179, 90, 32,240,214, - 66, 71,145,219,151,105,120,255,220,185,115,101,103,205,154,101,113,158,217,247,202,216,133,243,235,214,173, 27,184, 96,193, 2, - 75,231,206,157,111,139,131,210,189, 25,228,190,227, 58, 70,157, 59,119,166,186, 43,103,139,183,102,125, 35,114, 58,207, 46,236, -242,222,210,111, 42, 86,172, 24, 24, 27, 27,123,187, 40,222,152,152, 24, 99, 68, 68,132,165, 74,149, 42,185,114,185, 60,223,114, -101,179,229,197,196,196, 8, 97, 97, 97,150,106,213,170,229, 22,119, 48,190, 70,163,161,162, 21,204, 29,138, 51,139, 80, 46, 3, -215,175, 95, 63,199, 74,238,239, 87,172,120,191,127,255,254, 17,163, 71,143,198, 55,223,124,131,131, 7, 15,166,187,190,211,188, -121,115,236,219,183,239, 51, 0,159, 72,185, 91,130,132,103, 88, 96,125,247,221,170,223,225, 52,102,201, 29,166, 76,153,162,178, - 91,174,218,190,243,206, 59, 48, 26,141, 1, 15,180, 96, 9,105, 35,174,149,225, 78, 92,205,156, 57,115, 53,165, 52, 26, 64, 19, -142, 23,142,126,245,237,138,150, 30, 13, 75, 78,156,148, 48, 50,134, 33,185, 74, 57,253,107,241, 87,223, 21, 88,161,219, 62,168, -189, 50, 8, 78, 47,156, 59,211, 8,160,173,171,200,234,217,179,103,158, 43,167,136,193, 67,222,118,136,171,133,115,103,238,140, -173, 87,250,165, 9,131, 38,187, 21,101,147, 63,121, 91,199, 48,164,145,243, 24, 44,119,156,143, 10,137,243,111, 78,149, 74,181, -122,205,154, 53, 29,155, 54,109, 90,166, 86,173, 90, 76,122,122, 58,114,115,115,145,155,155, 43, 90,185,112,225,194, 5,225,246, -237,219,247, 84, 42,213,154,103,201,239,246,237,111,230, 71, 68, 68,236,154, 56,113, 98,255,212,212,212, 78, 25, 25,153, 65,191, - 44,159,130, 23,123, 13, 33,205, 59,246, 53, 88, 40,171,142,191,159, 84,101,207,175, 63, 4,254,182,246, 75, 88, 45,150,183, 8, - 89,114, 65, 92,166,193,141, 59,243,196,229, 24,170, 84,169, 98,112, 22, 40,165, 75,151, 54, 69, 70, 70,154, 99, 99, 99, 29,215, -221,205,206,115,231,247,226,114,218,199,119, 25, 60,133,167, 40,214, 92,151,127,208,106,181, 16, 69, 87,113,220,233, 60,123,210, -109, 65,233, 97, 22,161, 51,231,242,147, 84,238,124,111, 57, 33,178, 85,171, 86,181, 89,181,106, 85, 61, 0,127, 1,216, 1,192, -102,127,207, 49, 24,158, 82,250, 41,128, 79,165,252, 46,113,254, 87, 57,255, 19, 2,203, 19,196, 1,237, 0,152,119,223,125, 55, -195,104, 52, 6,244,239,223,191,200,119, 18, 19, 19,191, 89,177, 98, 69, 1,113,213,163, 71,143,215, 55,108,216,176, 43, 57, 57, -249,161, 28, 31,160,215, 76,217,251,243, 7, 1,205, 59, 79,127, 7,192,231,238, 45, 81, 16, 98,235, 69,188,180,112,238,204, 31, - 93, 68,214, 74, 0, 61,220,165, 27, 0,104,247, 98, 55,252,240,221, 2,113,236,150,230,236,241,123,191,245, 57, 57,201,237,236, - 67,127, 31,213, 36,187, 59, 70, 67, 26,131,245, 68, 80,181,106, 85,254,208,161, 67,163,135, 12, 25, 50,187,117,235,214, 81,221, -186,117, 83,148, 42, 85, 10, 42,149, 10,215,175, 95,199,254,253,251,173, 55,110,220,184,151,151,151, 55,186, 86,173, 90,252,179, - 24, 6,247,239,223,191,100, 95, 68,116,148,216,173,164, 82,107, 20,125, 7,190, 19,237,152, 69,184,246, 75,152, 77, 70, 0, 96, -189, 89,166,129,101, 89,197,169, 83,167,202,136, 86, 42,171,213,170, 18,175, 31, 63,126,188,140,184, 54,150,201,100,242,122, 22, -225,227,226, 60,115,230, 76,180, 56,219, 81,156, 45,200,178,172,226,196,137, 19,209, 34,167,217,108,246,106, 22,161, 82,169, 84, -156, 58,117, 42,154,231,249, 18,155, 69,232, 34,136,183,219, 15,177,114, 18,197, 21,177,119, 11, 74,221,131, 18, 36, 72, 2, 43, -127, 32, 56,165,180,105, 49,148, 46, 91,182,108,217,118,175,188,242, 74, 1,113,213,179,103, 79,126,211,166, 77,123, 34, 34, 34, -146, 24,134,185, 84, 92,119, 56,198, 96,229, 47,168, 94, 0, 12,195,156,110, 82,191, 26, 24,134, 57, 61, 97,208, 32,243, 20, 44, - 43, 32,178, 54,255,184,174,253,255,217, 59,235,240, 40,174, 54,138,159,187,238,113, 39, 36, 4, 66,132, 4,119,151, 6, 45, 86, -138,107, 75,177,182,208, 66,113, 40, 86,172, 88,241, 66,129, 2,197,161, 20,119,119, 11,154,144, 0, 33,238,110,235, 50,247,251, -131,132, 47,164,145,221, 64, 91, 74,231,247, 60,243,236,238,157,153, 51,119,252,236,123,173,180,231, 33, 0,216, 59,187, 99,224, -103, 99, 49,240,179,177,182, 0,154, 3,165,183, 62, 44, 43, 31, 44,127, 29,205,154, 53, 75, 10, 11, 11, 27,120,246,236,217, 1, - 87,174, 92, 9, 82,169, 84, 85, 8, 33,144, 72, 36,209, 58,157,238,156, 72, 36,218,253,161,154,171,210,208,235,245,198,169,115, -151,109,231,114,249, 38,134,209, 19,189, 94,255,153, 37,247,249,212,169, 83, 57, 40,161,110,213,216,177, 99, 75, 76,255,167, 52, -167, 79,159, 94, 98,171,191,177, 99,199,150,217, 26,176, 52,190,251,238,187,119,214,138,208, 76,211,197, 26, 41, 22, 22,214, 96, -253, 25, 14,135,243,168,132,214,130, 4, 0, 45,169,133, 30,165,212,200,229,114,231,218,216,216,140, 82, 42,149,167,122,245,234, - 53,190,119,239,222, 38,224, 85,197,247,138,102, 62, 43, 71, 57,187, 77,183, 31, 39,100,231,107,215, 20,159, 87, 60,210, 84,104, -178,214,173, 90,178,254,143, 3,123,122, 39, 39,198,175, 47,109,223, 74, 51, 82,165,181, 62,204,201, 85,207,109,211,237,199,111, -179,114,213,108, 29,172,127, 32,146, 5, 96, 7,128, 29,197, 7,123,254, 47, 64, 41,213, 18, 66, 38, 17, 66, 10, 35,184,147, 34, - 47,174, 90,255,255, 63, 55,107, 30, 21,157, 87, 70,244, 42,201,156,129,155, 75, 90,175,172,121,127,129,102, 74, 25, 3, 55,151, - 69,138,133,122, 41, 0, 32,224,115, 83, 75, 27,212, 89,192,231,166,190,163,115, 72, 10,154,166,207,101,239,104, 22,150, 15,220, - 96, 21,154,159,210, 40,173,159,171,178, 48,153, 76, 63, 2,248,241, 93,102,254,201,243,188, 95, 0,252, 98,238,242, 5,117,174, -134, 22, 76, 37,231, 51, 35,196,226,125,235,221,187,247, 6, 0, 27,216,203,233,239, 97,255,254,253, 38,246, 40,188,241,130, 94, - 79, 8,249,181,208,112,153, 59,175,216,114, 71,254,130,124,253, 21,154,167,255, 78,189, 99, 97, 70,231,191,233, 28,178, 17, 45, - 22,150,255,130,193, 98, 97, 97,249,215,153, 44,109, 69,230,177,176,176,176,176,252, 53, 16, 0, 65,165, 60,148,205,110, 29, 64, - 8, 9,170,192, 11,225, 28,171,201,106,178,154,172, 38,171,201,106,178,154,255, 45,205,242,180,139,174, 79, 8, 25, 73, 41,253, - 5,255, 70,232,171,190,166,254,146, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,102, 5,183, 51,242,239,216, -206, 95, 49,113,192,194,194,194,194,194,194,194,194,242, 78, 97,235, 96,153, 9,169,220,243,123,128, 78, 43,136, 89, 46,161,177, -135,230,176, 71,165,130,199,146, 16, 7, 0, 93, 21, 98, 65,247, 0, 27, 65,211, 39, 25,154, 27, 74,189,233, 40,128,195,148,210, - 44,246, 8,177,176,252, 13,247,161,109, 64,101, 16,242, 57, 64,255,223,140,146,161,161, 52,251,233,214, 55,150,179,169,241, 25, - 56, 36,160, 72,146, 26, 20,155,104, 86,104, 92, 41,247,119, 97,133,125,155,136,136, 8, 79,111,111,239, 24, 0,217,197, 22,251, -211, 60, 74, 41, 45,227,153, 65, 28,170,214, 27, 34, 21, 75,191,212,233,116, 94,114,133, 34, 53, 51, 35,109, 67,102,236,227,117, - 69, 22,179,186,125,251,182,107,227,198,141, 19, 1,228,149,167,201,194,242,222, 27, 44,226,243,169, 23,140,156,161,160, 24, 4, -130,135, 52,114,255,167, 21,210,241,238, 85, 9, 12,175, 17,128,122, 0,173, 39,147,136,235,170,117,250, 84,134,210, 33, 52, 98, -239, 3,139,245,170,246, 57, 14,160, 75, 41,115,231,210,200,125, 22, 26, 36, 58,253,238,149,131, 34, 27, 41,129,119,253, 79, 38, -163, 72,143,203,239,153,121,145, 0, 24, 70, 8,249, 72, 42,149,250,168, 84,170,104, 74,233, 99, 0,235, 41,165,137, 21,212,228, - 0, 24, 46,151,201, 58,121, 42,132,245, 98,211,115, 18,242, 12,166,171, 0,150, 90,106,136, 8, 33, 66, 79, 91,217,229,149,253, -219,248, 55, 13,168, 14, 38,244, 10, 52, 58,125,247, 75,241,249,221,103,223, 76,156, 64, 8,169, 71, 41,213,153,169,229, 10,128, - 71, 41,141, 43,248, 45, 3, 16, 8,160, 42,128, 72, 0, 33,148, 82,229, 91, 30,207,127,133,166,187,187,187, 27,195, 48, 95, 56, - 59, 59,127,156,146,146,114,156,195,225,108,142,143,143, 79,252,135, 47,199,141,133,245, 39,204,253, 4, 48,202,146, 13, 72, 36, -146, 20,141, 70,227, 4, 0, 98,177, 56, 85,173, 86,255,101,173,254,254,206,109,253, 61, 15, 11,140, 56,115, 45,164, 83,209,164, - 14, 45, 2,254,188, 28,135, 4,156,185, 22,218,234,205,229, 2, 77, 37, 61, 3, 11,122, 77,197,220,185,115,201,188,121,243, 62, -171, 86,173, 90,117, 14,135,243,108,214,172, 89,111,116, 97, 83,124,222,236,217,179,255,223,227,106, 9,154,238,190,205, 14,247, -235,223,167,205, 87, 35,135,201, 43, 57,202,145,148,174,180,255,121,203,142,101, 59,118,236,234,250, 69,191,246,157, 0,224,135, - 31,126,232, 89,185,114,229, 42, 92, 46, 55,234,251,239,191,255,173, 44, 77, 22,150,247,214, 96,145,128, 62, 50,104,104,111,128, - 12,107,221,180,126,139, 81, 67,186, 17,202, 21, 99,192,136, 41, 70,139,181,170,124, 38, 2, 87, 61,191, 86, 96,192,248, 62,221, -130, 56, 13, 2,171,192,213,209, 26,224,240,177,241, 68,180,253,154, 37,223,175, 7,208,184, 2,217,236,242,242,230,110, 36,101, -155, 64, 8, 64, 8,192, 33, 64,190,134, 65,135,158, 67,103, 91,110,144, 8,199, 70, 74, 48,126,183, 6, 0,225,190,167,230,170, -158,163,163,227,186,113,227,198,217,214,170, 85,203, 85, 44, 22, 75,213,106,117,245,136,136, 8,175,153, 51,103,182, 39,132, 44, -166,148, 30,180, 80,211,195,219,221,109,223,154,241,195, 27,213,174,234, 9,190, 46, 31,140, 86, 89,249,121,196,139,166,163,215, -239, 31, 65, 8,233,111,225,112, 9, 51, 54,142, 29,226, 95, 83, 1,232, 67,174,131,207,229, 66,106,109,139,246, 60, 46,184, 4, - 53,134,158,142,158, 14, 51,198, 99, 43,232,193,124,122,193,243,119, 23,151,203, 61, 27, 20, 20,228,245,197, 23, 95,144,250,245, -235, 35, 56, 56,184,234,238,221,187,131,120, 60, 94,148,201,100,122, 12,224, 25,165,212, 96,230, 62,243, 1,248,114,185,220, 90, -239,179,166,155,155,155, 68,167,211, 13,117,119,119, 31,217,189,123,247, 90,221,186,117, 35,190,190,190, 8, 15, 15,175,127,242, -228,201,217,117,234,212,121, 28, 31, 31,255,139, 80, 40,220,158,152,152,168, 54, 71,179, 95, 77, 18,190,247, 9,245,171,232,252, - 98,251, 60, 18,128, 91, 65, 64, 99,174, 25,159,137, 0,230, 82, 74,147,204,189,152, 52, 26,141, 83,225,251,147, 16,226,244, 87, -222, 95,150,108,139, 16,242,148, 16, 98, 87,240, 29,101,125,114, 56, 28, 24,141, 70,165,209,104,172, 86,142,166, 47, 96, 81,181, - 14, 74, 41, 45,171, 3,103, 9, 0,116,104, 30,144, 9,130,208,194, 8,214,159,150, 98,104,232,107,227, 69, 17,112,230,122,168, -221, 27, 81,175, 98,204,157, 59,151,204,158, 61, 27,115,230,204,233, 6,160, 37,195, 48, 87,253,253,253, 87,191, 33,201, 48,175, -231,205,158, 61,123,213,220,185,115, 9,222, 24,245,246,255,216, 85,169, 51,248,147, 79,122,180, 89, 48, 99,172, 60, 33, 67,143, -135, 81,106,216,201, 5,152, 61,105,140, 80,171, 53, 52, 93,255,219,142,145,107, 23, 79,217,100, 50,153,218, 1,104, 96, 50,153, -238, 1,248,173, 44, 77, 22,150,247,202, 96, 17, 66, 8,170,125,218, 10, 38, 12,243,172,236,220,123,220, 23,125, 37,129,254,222, -208, 64,142,232,116, 19, 78, 28, 59, 9, 0,123, 45,139, 50,245,107,192, 19, 96,251,146, 57,147,252, 90, 54, 10,196,147, 4, 3, -238, 37,152,160,138, 50,128,203, 49,192,196, 80,128, 66, 83,209,157,139,207, 50,226,218, 51, 29, 56, 4,224,114, 0, 14,135,128, - 91,209, 90,103, 38,221,243, 31,182, 6, 7,166,167, 48,128, 73,247,252, 61, 52, 87,237,124,124,124, 86,206,155, 55,207, 37, 37, - 37,197,238,222,189,123, 16,137, 68,176,181,181,229,185,185,185,249,173, 92,185, 50,103,236,216,177,147, 8, 33, 15, 40,165,209, -102,106,250,119,105, 80,235,198, 47, 75,126,176, 54,220, 62,137,236, 61,191,131,203,161, 16,200,228,240,146, 72,112,242, 19,111, -187,222,199,162, 14, 18, 66,252, 41,165, 9,230,104,122,187,216,119,168,229,239,143,172, 63,214,226, 97,150, 6, 39, 19,213,248, -188,125, 19,212,180,147,160,165,209, 4, 23, 25,191, 93,121, 6,139, 16, 98, 11, 96,138, 78,167,227, 8, 4, 2, 34, 22,139, 7, - 47, 88,176, 64, 63, 96,192,128,248,194,101, 90,182,108,137,150, 45, 91,146,188,188,188,170, 23, 47, 94,172,186, 99,199, 14, 35, - 33,228, 41,165,244,112,233, 17, 10,105,172, 70,163,174, 44,150, 72, 84, 63,175, 95,191,188, 85,171, 86,140, 72,244,255,209, 91, - 42,162, 9, 0, 54, 54, 54,155,124,124,124,200,180,105,211, 18,223,149,166,151,151,215,153,150, 45, 91,182,237,208,161, 3,175, -121,243,230,112,115,115,123, 61,207,193,193, 1, 45, 91,182, 36,113,113,113,181,175, 94,189,186,254,204,153, 51,171,189,188,188, - 46, 70, 69, 69,117, 40,247,141, 92,206, 24,164,229,205, 47,246,118,255,165, 96, 56, 24,115, 13,211, 47, 37,116, 96,252,239, 12, - 14, 17, 34,223,184,113,163, 83,225,152,137, 6,131, 1, 38,147,233,245,103,225,196, 48, 12, 76, 38, 19, 22, 44, 88, 96, 50,243, -152, 42, 81,208,169,115,145,137, 41,233, 83, 40, 20, 58,152, 25,201, 10,117, 21,101,215,144,201,100,158, 0,186,248,248,248, 76, - 41, 58,187,186,227,171, 79,165, 82, 25,147,164,181, 9, 5,208,170,172,203,125,222,188,121, 67,231,204,153,211, 3,255, 31, 83, -178, 86,159, 62,125, 46, 22, 91,174, 86,193,167,146, 16,114,137,195,225, 28, 5,176, 21,192,159, 34,226, 82,169,124,212,184, 47, -191,144,199,167,235, 49,255, 96, 58,182, 94,201,197,208,150, 10,140,239,108,141,129, 3,250,201,246,255,126, 96, 20,128, 77, 69, - 86, 9,247,247,247, 39, 97, 97, 97,172,185,250,176,104, 8,192,177,200,111, 29,128,194,161,173,210, 11,238, 11,251, 98,233, 69, -151, 43,252, 76, 43, 72,119, 44, 88,143, 22,209, 77, 3,112,247,157, 26,172,194, 49,176,202, 28, 11,203,171,247,137,225, 3,186, -119,250,248,163,102,224,136,109,241, 60, 21,184, 25, 75,193,227, 24,192, 1,197,237,235, 23, 41,120,204,246, 98, 15,131, 82, 35, - 27,196,171,247,119,181,106, 6,254,184,121,201, 55,220,167,169, 60,108,189,170,130, 94,147,143,180,228, 88,164, 38,198, 32, 41, - 62, 18, 9,177,145,143, 1, 50,219, 92,205, 63, 63,140, 0, 19, 83,240,159,143, 41,120, 61,128,148,244,208, 42, 95,211,160, 12, -171,230, 87, 51, 48, 75,104, 2, 12,202, 48, 51, 30,132,239,124, 16,204,210, 52, 9, 33,237,189,189,189,151,206,152, 49,195, 61, - 36, 36,196, 74,169, 84, 42, 79,158, 60,121, 57, 38, 38,198,217,197,197, 37,110,204,152, 49,205, 42, 85,170,228,212,179,103, 79, -233,190,125,251,102, 0,248,194, 12,205,192,238, 77,234,222,220,178,250, 39, 89,198,254, 53,208, 69, 60,194,137, 36, 37,174,167, -168,104, 85,107, 17,249,186,182, 35,228, 34, 30,126,104,238, 38,239,242, 71,196,143, 0, 6,154,179,239, 1,149, 93,171, 25,212, - 42,104,212, 6,108, 15,207, 84,159, 77, 80, 58, 17,155,232,180,213,189,155,136,185,105,137,240, 84, 8,171, 87,228,120,138,197, - 37,143,114, 98,107,107,139,214,173, 91,195,223,223,159,215,170, 85,171, 90, 0, 14,151,166,169,215,235, 92, 25,134, 66,161, 80, - 72,236,237,237,109, 21, 10, 69,134, 94,175,127, 43, 77, 0,176,179,179,251,180,117,235,214,188,221,187,119,167, 71, 69, 69,221, - 30, 48, 96, 64,164,149,149,213, 27,209, 94,153, 76,134,234,213,171,227,251,239,191,231,117,234,212,169, 92, 77,103,103,231,246, - 59,118,236, 0, 33,228,245,203,186, 56,158,158,158,112,113,113, 65,151, 46, 93,120,159,126,250,105,251,178,142,103,191,154, 36, -188,208, 60,245,173, 73,202,124, 49,245,173, 73, 40, 1,158, 21,143,100, 21,215, 44,136, 96,205,125,211,196,150, 94,204, 86,210, -242,102,156,247,212,194,104,146, 88, 44, 78,125,155,251,168,128, 82,139, 53, 69, 34,209,235,168, 83,241,109,149,164,201,225,112, - 48,115,230, 76, 16, 66,192,231,243, 33, 16, 8, 74,252,108,211,166,141,165,249,140, 35,132,112, 4, 2,193, 20, 30,143,247,133, - 86,171,117, 23,139,197,137, 38,147,105,155, 86,171, 93, 80, 16, 1,181, 41,233,218, 45, 77, 83, 38,147,121, 62,127,254,220,167, -180,131,162,213,106, 81,171, 86, 45, 64,139,167,101,105, 70, 68, 68,120, 86,171, 86,205, 23, 64,225, 80,106, 87, 40,165,173,138, -252, 46,202, 21, 74,105,231,130,239,207, 94,190,124,233, 89,104,176,138,106, 26,244,122, 47,119, 39, 43, 60,140, 86, 99,235,149, - 92,156,159,225,134,143, 22, 36,162, 87, 61, 30,252, 61,228, 48,234, 13,190,125,250,244,217,142, 87,215,239, 93, 0, 61,251,244, -233,227,199,229,114, 47, 0, 56, 4, 32,231,239,126, 38,179,154, 21,254, 99, 82,150, 23,113, 36,132, 28, 43,178,253,174,133,191, -167, 78,157, 58,125,209,162, 69, 33,132,144, 99, 69,211,139, 46, 87,244,179, 96, 91,199, 40,165, 93,167, 77,155, 22,184,120,241, -226,133,133,203,254, 35, 17, 44, 0, 86,105, 26, 25,174,198, 90,129,199, 53,129,199, 33,224,113, 1, 80,130,152,232, 8,228,229, -102, 95,163,145,191, 71,153, 23,185,234,211,188, 78,221, 90, 75,118,173,156,204,249,245,170, 10,217, 74, 13,194, 30, 92,194,221, - 75,135,146, 77, 70,211, 33, 16,122, 15,224, 4, 35,146, 9,167,180,226,189,118,191, 50, 88, 5,166,234, 13,147,245,225, 64, 8, -233,236,231,231,183,104,230,204,153,158, 15, 30, 60, 80,228,230,230,166,237,220,185, 51, 92,171,213, 62, 0,176, 42, 54, 54,182, -245,170, 85,171,164,203,150, 45,235, 80,171, 86, 45,223,253,251,247,171,204,208,172, 61,105,216,192,155, 95,140,251, 86,252,116, -223, 58, 8,159, 6, 99,230,163,116,211,249, 36,213, 12, 0, 43, 17,151,223, 60, 77, 99, 60,251, 83,235,202,156, 42, 10, 1,188, -109,132,109,204,205,175, 88, 40,226, 81,158, 24, 58,157, 17,121, 58, 70, 71, 41, 85,246,110,228,175,167, 50, 7, 49, 0,240, 56, -132,103,198,141,157, 69, 8,249, 81, 40, 20,206, 36,132,208,134, 13, 27, 62,172, 89,179,102,190,173,173, 45,212,106, 53,180, 90, - 45, 4, 2, 1,212,106, 53, 98, 98, 98,112,251,246,109,216,218,218, 90,116, 92,243,243,243,161, 80, 40,192, 48,204, 91,107,154, - 76, 38,178, 97,195, 6, 89, 72, 72,136,236,192,129, 3,206,227,199,143,207,168, 81,163,198,189,126,253,250,189,112,114,114,210, - 62,122,244, 8, 55,110,220, 64, 86, 86, 22,154, 52,105, 98,150,166, 78,167, 3,143,199,131, 90,173,134, 72, 36, 2,143,199,131, -209,104, 4,195, 48,175, 77, 87,126,126, 62, 50, 51, 51, 33, 16, 8,160,211,149, 93,173,173,208, 44,245,173, 73,232,190, 83, 55, - 82, 97, 98, 0,125,174, 1,218,156, 87,147, 46,199, 0, 77,182,161,239,132,229,181,247, 61, 49,175,215,241,194, 8, 86, 81,202, - 42,102, 43,105,249,242,120,215,245,160,202, 42,214,204,206,206,150,216,216,216, 76, 49, 39, 34, 71, 8, 1,151,203,133, 64, 32, - 0, 33, 4,173, 90,181,194,240,225,195, 81,175, 94, 61, 68, 68, 68, 96,207,158, 61,184,123,247, 46,248,124,254,235,229,205,165, - 77,155, 54, 92,177, 88,124,163,123,247,238,129, 51,102,204, 16, 87,169, 82, 5, 79,159, 62,245, 88,188,120,241,148,115,231,206, -245, 32,132, 52,160,148, 50,229, 10, 21, 22,253,189, 42, 22,236,162,213,106,241,244,233, 83, 75,214,249,115,132,218,219, 59,134, -195,225,188, 96, 24,230, 42,128, 90,148,210, 86,132,144,147, 0,100,197, 22, 85, 82, 74, 59, 19, 66,114, 1, 60,230,112, 56,207, - 24,134,137, 41,169,186,148, 66,161, 72,139, 79,205,117,182,151,139, 49,164,133, 28, 31, 45, 72, 68,239, 6, 34,136, 4, 4,225, - 81,201,240,174, 86,133, 60,188,118,184, 65,129,185,106,152,148,148, 4, 0, 13, 0, 68,197,197,197,185, 22, 26, 44,150, 15,131, -226, 38,168,208, 56, 45, 90,180,168,107, 73,166,170,132,123,243,141,244,197,139, 23, 47, 44,242,251,157, 54,178,226, 21,117,142, -101,223, 88,232,117,236,224,238, 91, 31,233,137,103, 96,253, 22, 69,162, 65, 20,193,183,111, 0,160,219,204,122,128,185,117,147, -112,164,178,109, 27, 22,142,229,108,188,164, 66, 92, 98, 42,110,156,216,134,180,164,232,173, 0, 29, 79, 35,247,231,190,245, 67, -178,106,159, 64, 39, 7,123,104,244, 20, 12, 5,240, 39,147,245,193,152,171,110,190,190,190,243,110,222,188,233,169,209,104, 20, -215,175, 95,207,222,177, 99,199, 11,157, 78,183,153, 82,186,179, 96,153, 35,233,233,233, 63, 80, 74,161, 80, 40,120,124, 62, 95, - 82, 86,197, 79, 66, 72,189, 73, 95, 12,189,246,227,134, 45,226, 23, 79, 30, 98,213,129, 19,200, 86,169, 76,151, 82,213, 61, 41, -165,133,255, 10, 46,120,219,136, 18, 40,104,101, 62,135,192, 85,198,119, 33,132,136, 41,165,229, 22,231,186, 86,246,228, 24, 60, -188,112,213,168, 65, 37,123,145, 16, 0,170,250, 6,112, 31,168, 13,184,254,232, 41, 28,228, 86, 2, 51,111,178, 89,132, 16,231, -237,219,183,115, 12, 6, 67,126, 68, 68, 4, 92, 92, 92,224,236,236, 12,107,107,107,132,133,133,225,252,249,243, 8, 15, 15, 7, -195, 48,168, 83,167,142, 69,199, 54, 35, 35, 3,143, 30, 61, 66,151, 46, 31,143, 79, 75, 75,181,178,181,179, 87, 94,187,122,101, - 89, 69, 52, 25,134, 33, 0, 16, 24, 24,136,192,192, 64,113, 66, 66,130,251,177, 99,199,156,230,207,159, 31,235,233,233,185, 75, -173, 86,191, 17, 41, 48,215, 96, 21, 24,150,215,230, 79, 44, 22, 67, 32, 16, 32, 55, 55, 23, 41, 41, 41,200,203,203,123, 85,102, - 99, 99, 83,174,193,122,211, 17, 50,192,142, 22,247,254,148, 94,115,152,147,133,215,231,159, 34, 82,239,114,249,191,232,225, 93, -106,177, 38, 33,100, 16,128, 41,102,238, 11,140, 70, 35, 4, 2, 1, 26, 55,110,140, 53,107,214,224,238,221,187, 56,116,232, 16, - 60, 60, 60, 48,108,216, 48,112, 56, 28,132,132,132, 88,154, 69,230,230,205,155, 83,122,246,236, 25,184,125,251,118,113, 76, 76, - 12,194,195,195, 97, 99, 99,131, 53,107,214,136, 70,142, 28,233,125,241,226,197, 89, 0,150,150,187,175, 69, 90, 11,186,185,185, -245,173, 85,171,214,159,150,113,113,113,177, 62,125,250,180, 83,161,241, 42,222,194,176, 4,178,103,205,154,245,147,191,191,255, -202,130, 98,193,150, 0,100,148,210, 54, 7, 14, 28, 32, 0,208,187,119,111, 74, 8,185, 84,176,252,227,253,251,247,183, 13, 11, - 11,163,115,230,204, 41,241,153,148,150,154,180,225,167, 53, 27,127,250,113,238, 36,225,132, 46,214,232,221,128, 15,177,128,192, - 74,202,199,130,213,155, 12,247,111, 95,121,228,234,234,122, 12, 64,207,164,164, 36,184,186,186,230, 3,120,198,229,114,163, 76, - 38, 83, 34, 91,199,253, 95,247, 94, 43,169,161,195,200,194,123,178, 52,227,100,137, 65, 43, 26,225, 42,100,218,180,105,129,139, - 22, 45,186,243, 46,247,133, 83,100,163,101,255,133,226,113, 92, 93,156, 29,236,166, 14,107, 14,134, 1,140, 38,192,104,162, 80, -170,212,120,250,228,174, 10, 98,114,192,172, 45,138,132, 75,230,207,248,182,234,195,120, 14, 18,179,244,184,124,120, 35, 77, 75, -138,254,148, 70,238,251,252, 93,153, 43, 23, 39,135, 75,187, 55,254,128,187,145, 58,152,152, 87,254,138, 97,232,235,239, 31,200, - 69, 88,221,193,193, 97,217,173, 91,183,170,136, 68, 34,197,243,231,207, 77,251,247,239, 79,212,233,116,235, 11,205, 85, 1,131, -234,215,175,111,144,201,100,200,207,207,215,234,245,250,252, 50,204,149,123,155,122,181,175,252,184, 97,139, 88,163,211, 33, 71, -173, 5,215,222,169,184,185, 2, 33,164, 89, 91,159, 74,149,136, 88, 1, 10, 32, 58, 87,159,104,142,185, 2, 0,185,181, 13,199, -189, 65, 27, 52,248,102, 13,114,137,130, 2,128,189,107, 37, 78,219, 47, 23,160,211,170,203, 80,114, 20,150, 88,224,196,129, 3, - 7,198, 7, 4, 4,228,248,251,251,231,100,100,100, 32, 52, 52, 20, 89, 89, 89, 88,181,106, 21,158, 62,125, 10,134,121, 37, 87, - 82,113,137, 25,198, 8, 89, 89,153,114, 74, 41,178, 50, 51,100, 51,102,204,176,174,136,166,201,100,122,227,222,170, 84,169, 18, -198,140, 25, 35, 80,169, 84, 54,177,177,177, 86, 69,231,153,171,169,211,233, 10, 59,225, 3,165, 20, 58,157, 14, 57, 57, 57,208, -233,116,120,241,226,197,107,115, 85,176,125,203, 12,150, 62,183,228, 74,246,234, 12,131,133, 15,178,215,189, 47, 75, 36,146,148, -194, 7,167, 88, 44, 6, 33,164,164, 98,182,119,210, 91,115,225,182, 8, 33, 84, 34,145,164, 84,192, 20,150,187, 63,102,158,119, - 8, 4, 2, 12, 31, 62, 28,119,238,220, 65, 68, 68, 4,184, 92, 46,148, 74, 37, 84, 42, 21,218,183,111, 15,161, 80,104,105, 4, -139, 10, 4,130, 65,211,167, 79, 23, 71, 69, 69, 33, 61, 61,189,176,146, 60, 76, 38, 19,198,143, 31, 47, 17,137, 68,131, 44, 13, -213, 39, 38, 38,118,124,254,252,185,111,241, 41, 57, 57, 57,167,104,157,193,138,114,224,192, 1,210,187,119,111,218,187,119,111, - 90,104,180,204, 37, 59, 62,116,195,161, 35,199,206,126,247,253,146,124,149, 50, 15,213,220, 36,200,207,203,193,130, 69, 63, 26, -110,222,188,122,105,202,248,209, 77,247,239,223,191, 24,192,179,130, 85,158,237,223,191,127,232,247,223,127,255, 27, 10,186,107, - 96,249, 87, 69,168, 72, 89,247,222,187, 40,198, 43, 73,163,160,152, 80,242,151, 68,176,202,124,232,120,247,171,235,236, 96,127, -113,251,218,185,242, 99, 79,128,248,184,104,164, 37,197,160, 65,211, 54,120,250,228, 33, 24,131,233, 32,125,190,191,220,102,230, -196,171,143,143,127,141,128, 47, 91, 55,173,137, 37,199,242,241, 60,248, 52,178,211,146,214,210,168,125, 7,223,197,206,144,170, -125, 2,157, 29, 29, 46,253,182,110,158,221,201, 80, 14,226,226,162,113,248,183,149, 48,232,255,244,238, 63, 97,241, 67,155,209, - 9,243,179, 83,160,203, 51, 65,204, 81,137,223,131,139,240,133,163,163,227,246,159,126,250,105,116,211,166, 77,165, 3, 6, 12, -120,158,149,149, 53,159, 82,186,175,200,203,162,157,175,175,239,196,181,107,215,122,199,197,197,225,252,249,243,207, 1,220, 43, - 67, 51,158,203,229,174, 63,255,219,166, 73,146,170,126, 88, 53,253, 59,227,129,187,161,221, 41,165, 39,139,104,250, 7,213,242, - 57, 54,127,226, 87, 28,230,254, 41, 60,138, 73, 65,100,142,246,188,185,249,142,200, 86, 26,248, 34, 9,228, 46, 85,240, 60,223, - 36,224,241,120,119,190,248, 98,184,128,195,229,129,195, 19, 32, 52, 75, 99,201, 75, 92,126,231,206, 29, 14,151,203,125,195,152, - 23,141, 8, 89, 26, 25,178, 4,115, 53,139, 27,172, 66,140, 70, 35,169,168,166, 86,171, 69, 73, 62,185,164,186, 88, 12,195, 88, -182,255,186,156,146, 93,158,198, 50,131, 85, 52, 34, 85,180,104,176,176,190,156, 70,163,113,146, 72, 36, 41,133,197,124,239, 42, -130,245, 54, 45, 11,203, 42,166,180, 36,127, 28, 14, 7, 12,195, 64, 32, 16,160, 78,157, 58, 56,118,236, 24,236,236,236, 96,101, -101, 5, 43, 43, 43, 72, 36, 18,216,219,219,191, 54, 88, 28,142,217,173,111,168, 86,171,245,240,240,240,192,139, 23, 47, 32, 22, -139, 95, 79, 34,145, 8,129,129,129, 80, 42,149,149,240, 65,197,234,129, 17,253,130,122,172,219,241,199,144, 99,199,142,127,169, -215,106,106,250,249,249,210,123, 55, 47, 62,154, 50,126,116, 39,214,146,252,231, 34, 92,199,138,154, 36, 66,200,177,169, 83,167, - 78,175,168,222,212,169, 83,167,151, 20,209,122,103, 6,171,208, 49,150,228, 28, 11,205,213,214, 53,115,172,254,120, 0,196,199, - 71,225,236,190,213,121, 6,189, 46,139, 97, 12,158,145,225, 15, 1, 14,182,153, 23, 47,163,141,122,116,105, 75,206,134,232,144, -155,157,134,103,247, 78, 71, 67, 45,156,246, 46,205,213,246,117,115,237,142, 62, 33,136,139,139,198,201, 61, 43,115, 12, 70,125, - 59, 26,185,255,193,219,104, 15, 22, 10,123,244,171, 97,211,117,120,139, 68,152, 90,154, 48,232,105, 88,103,183,150,164, 71,226, -213,178, 91,122,253,213,164,165,165, 45,144,203,229,156,165, 75,151,126,174,209,104,230, 80, 74, 15, 20,185, 8,219, 87,171, 86, -109,201,134, 13, 27,220, 99, 99, 99,133,215,174, 93,203,188,116,233, 18, 5,176,168, 28, 51, 48,153, 16,194,173, 87,165,210,216, -251,209, 9,221, 41,165,167,138,104, 6,118,173, 31,112,125,203,162, 89, 10,195,245, 3,200, 79,138,195,180,235,241,185, 0,166, -153,121, 99,216, 57, 56, 56,144,193,131, 7, 51,121,121,121, 16, 8,133,140,193, 96,224, 54,107,214,204,244,237,183,223,114,146, -147,147,145,155,151,207, 35,132,216, 81, 74, 51,203,209,154, 7, 96,124,179,102,205, 72,227,198,141,111,175, 92,185,242, 76, 89, - 38,165, 34, 17,172,114, 3, 61,102,106, 50, 12, 83,226,219,211, 96, 48,144,138,106, 22,141, 96,149,103,176, 44,142, 96,105, 75, -139, 96,165, 89, 28,193, 42,201,172, 20, 53,135, 69, 13, 80, 69,234, 96,253, 5, 15,239, 82, 77,148, 37,249, 43,172, 7, 39, 16, - 8,240,240,225, 67, 84,174, 92, 25,122,189, 30, 10,133, 2, 10,133, 2,114,185, 28,121,121,121,224,243,249,176,112,159, 25,177, - 88, 28, 27, 26, 26,234,235,232,232, 8,147,201,244,134,201,122,254,252, 57,100, 50, 89,130,165, 17, 44, 55, 55,183,211, 5,173, - 8,223,192,197,197,197,250, 93, 28,215,162,145,171,222,189,123, 87,168, 28, 97,221,162, 73, 59, 0,236,232,211,167,207,246,199, - 55,143, 55,112,117,117, 61,238,239,239, 79, 0,128,109, 49,248, 97, 69,175, 74, 41, 81, 75, 43, 22,121,210, 21,249,157, 6,128, - 20,252, 78, 43, 98,192,138,126,215,149,144,150,177,104,209,162,139, 69,234,111,165,253,109, 17, 44,226,221,175,174,147,189,221, -197,205,171,230, 88,237, 11, 6, 18,226,162,112,249,224,154, 28,163, 73,223, 14, 12, 77,186,121,238,224, 1, 16,168, 16,121,224, - 50,176,207,140, 71, 3,234,213,171,225,137, 67, 33, 6,164,197, 63, 7,165,204, 86,154,242,155,234,173, 31,138, 5,230,106,235, -154, 57,118,127, 60, 36,136,143,139,194,217,125,171,115,140, 38,125,187,138,116, 82, 90,200, 23,132,216,114, 20,210,159,135,116, -108,212,199,179,106, 37, 48,212, 0, 70, 64,209,107,178, 3,239,217,125,213, 33,143, 14,220,125, 76, 62,243,101,252,205,127,174, -247,241,252,252,252, 31, 8, 33,127, 80, 74,159, 22,121,184,119,246,246,246, 94,248,243,207, 63, 87, 73, 72, 72, 80,220,191,127, - 63,247,151, 95,126,137, 98, 24,102, 30,165, 52,213,140,139,252, 59, 66,200,230,162,125,232, 16, 66,106, 79,250,124,224,205,129, -159,125, 33,142, 58,183, 3,182, 81, 79, 49,241,122,162,233, 89,150,110, 0,165, 52,217, 28,115, 37, 18,137, 14,156, 56,113,226, - 69,189,122,245,136, 82,169,132,193, 96, 64,122,122, 58,254,248,227,143, 80, 74, 41,108,109,109,113,226,196, 9,102,224,192,129, - 7, 8, 33,189, 75, 51, 89, 69,186,105, 32, 5,221, 52, 52, 57,117,234, 84, 88,167, 78,157,226, 75, 50, 41, 34,145, 8, 26,141, -101,189,125,148,214, 42,177, 34,154,165, 69,176,138,167, 91,162, 89, 88, 76, 89, 88,185,189,120,122, 33, 92, 46, 23, 12,195,252, - 41,189,108,131,149, 93,178,145, 82,166, 86, 56,130, 85,180,181, 95, 69,204, 77, 81,202,235,240,179, 34, 45, 11,223,117, 4,171, -240, 92, 8, 4, 2, 28, 57,114, 4,159,125,246, 25, 76, 38, 19,164, 82, 41,228,114, 57,100, 50, 25, 14, 30, 60,136,194,110, 28, - 44,201,162,193, 96,216,185,104,209,162,233, 27, 54,108,144, 80, 74, 33, 20, 10, 95, 27,172, 57,115,230,168,245,122,253, 78,115, - 12,214,235, 30,218, 25, 26, 90,221,177,236, 86,132, 37,173, 83, 74,125, 44,155,121,243,230, 13,101, 24,166, 7,138,117,197, 80, -252,106, 42,248,172,213,167, 79,159,139,101,117,211, 0,192,118,222,188,121, 35, 24,134, 41,236, 5,245,141,214,130, 69,150, 43, -124,151,248,246,233,211,103,123,241, 86,132, 44,255,122,238,254,219, 50,204, 43,221, 92,245,241,119,178,119,184,184,105,229, 28, -171, 93,119,128,196,184, 72,220, 56,178, 54,199,196, 24,138,154,150, 22, 22,254, 61,172,231,230,100,131,204, 91,106,228,166,199, - 2, 20,247,223,222, 92,245,171,238,228, 96,127,105,203,234, 57,118,251, 31,112,144, 16, 27,133, 75, 5, 38,240,109,204,213, 96, -161,176, 71,160,143,251,150,254,157, 91,216, 90, 19, 3,140, 49, 97,216, 60,172, 47,130,187,233,209,188,159, 53, 26,117, 81,192, -187,174,184,239,137, 77,153, 31,185,181, 36, 95,252,147,209,172, 98,230,170, 91,149, 42, 85,230,222,190,125,219,147, 97, 24,197, -229,203,151,243, 54,108,216, 16,169,209,104, 86, 83, 74,143, 91,160, 89,212, 92,213,155, 58,114,216,181,133, 63,111, 22,135, 6, -223,197,146,157, 71,161, 54,232, 76,167,227,243,251, 20, 45, 62, 44, 11,161, 80,248,195,133, 11, 23,100,181,106,213, 34, 25, 25, - 25,175, 35, 45,122,189, 30, 57, 57, 57,200,203,203,131, 86,171, 69,253,250,245, 57,171, 87,175,150,141, 29, 59,246, 7, 0, 95, -154,155, 95,133, 66, 1,129, 64, 0,189, 94,255, 58,130, 37, 18,137, 96,109,109,141,140,140, 12,236,221,187, 23, 0,202,140,138, - 9, 4,194, 36, 14,135, 84,150, 72,165, 90,177, 88,204,184,186,186,150,104,172, 44,209, 44, 32,190,115,231,206,238,243,230,205, - 19,215,175, 95,255, 79, 17,172,138,104, 82, 74, 85, 29, 58,116,144,174, 94,189, 26,158,158,158,208,233,116,111, 24, 41, 14,135, - 3,129, 64,128,184,184, 56,204,159, 63, 31,148, 82,243,255,200,104,178, 12,168, 53,212, 17,234, 12,195,171, 41,221, 0, 85,170, - 1,122,149,201,194,235,242,181, 89, 41,106,130, 10,234, 72,253,201, 0,153, 27, 33, 42,175, 8,208,210,150,133, 69, 13,155, 72, - 36, 66,118,118,182,132, 16, 50,168,148, 30,231,205,142, 96, 21, 26,172,167, 79,159, 98,251,246,237,232,210,165, 11,108,109,109, -145,149,149,133,125,251,246, 33, 44, 44, 12, 66,161, 16,132, 16, 75,162, 88, 76,227,198,141,127,188,122,245,106,183, 1, 3, 6, - 4, 76,156, 56, 81, 82,179,102, 77, 60,123,246, 12,243,230,205,211, 4, 7, 7, 71,168,213,234,121, 48,167, 67,210,130, 30,218, - 11, 59, 17, 53,171, 21, 97,177,117,138, 83, 74, 55, 13,157, 75, 81, 43,218,133,195, 27,221, 52, 20,229,198,141, 27, 94, 85,170, - 84,241,199,171,150,129,133, 47,218,162,173, 5,223,120, 9, 39, 37, 37, 53, 4,219,138,144,229,125, 54, 88,160,100,252,128, 97, - 35,173,118,222, 33,136,139,137,192,189, 19,235,139,155, 43,115, 30, 50, 65, 69,251,202, 16, 75,100, 53, 25,242,170, 89,114,110, -122, 28, 64,185, 22, 27,172,226,154,160,204,119, 3,134,142,180,219,125,143, 32, 49,238, 37,174, 31, 94,103,177,185, 42,170, 57, - 68, 40,156,197,231,113,102,124,220,170,158,160,101, 93, 95, 72, 83,163,144, 28,159,136,189, 79,211, 50, 35,178,180, 95, 92, 39, -122,196,188,212,110,238, 50,194,206,206,214,133,143,174,163,237,237,110, 29,205, 61, 84,169, 29, 71, 79,245,116, 81,226, 53, 58, -167,196,124,190, 3,202,211, 36,132, 84,183,178,178, 90, 26, 28, 28,236, 40, 22,139,173,238,221,187,103,218,184,113, 99,156, 70, -163, 89, 70, 41,221, 83, 65, 77,247,134, 62,213, 46, 47, 92,183, 73,156,175, 84, 65,169,211, 67,228,236,106,250,227,230,147, 79, - 75,235, 12,179,184, 38, 33,164,237,231,159,127, 94,187,113,227,198,156,162,230, 74,167,211, 33, 55, 55, 23,121,121,121,200,205, -205, 69,110,110, 46, 18, 18, 18,208,186,117,107, 78,237,218,181,107, 18, 66,218, 82, 74, 47, 22,215, 44,210, 77,195,116, 0, 28, - 66,200,221,135, 15, 31,230,119,234,212, 9, 18,137, 4, 74,165, 18, 30, 30, 30, 48, 26,141, 56,113,226, 4,130,131,131,149, 12, -195, 92, 6,240,176,172,124,170,213, 42, 15, 66, 8, 71,173, 82,213, 25, 58,116,104,235, 9, 19, 38,188,209,180,220,201,201, 9, -118,118,118, 22,105, 2, 64,102,102,102,141, 83,167, 78,125,251,240,225,195,239,186,116,233, 98, 61,125,250,116,145,151,151, 23, - 76, 38, 19,167,162,154, 89, 89, 89,214,247,239,223, 95,214,162, 69,139,175, 58,117,234,196, 91,184,112, 33,172,173,173, 97, 50, -153, 32,145, 72,144,155,155,139,121,243,230,225,218,181,107, 70, 74,233,186,156,156,156,137,101,105,190,209, 15,214,132, 21,101, - 54,143, 44,173, 31,172, 18,206,123,137, 17,159,210, 12, 80, 73,203,255, 29,247, 81, 49,195, 6, 27, 27,155, 41, 0,166,148,210, -227,188,217,247,102,161,193,226,114,185,136,142,142,198,198,141, 27,255,212, 15, 86, 97, 55, 14, 37,105,151,178,239,244,210,165, - 75, 38, 66, 72,211,123,247,238, 77, 25, 50,100,200, 23, 74,165,210, 93, 38,147, 37, 26, 12,134,109,106,181,186,176, 31, 44,129, - 37,247,187, 82,169,140, 41,169, 21, 97,241,101, 0,155, 50, 53,139,117,211,240, 70, 87, 12,197, 86,123,163, 11,135,226,221, 52, - 20,213,108,214,172, 89, 20,135,195, 9, 47, 40,106, 15, 71,177,214,130, 69, 52,125,147,146,146, 26,186,186,186, 94, 6, 32, 45, -222,138,240,159,120, 38,179,154,172,193, 42,197, 96, 65,124,238,118, 52,132,146, 76, 60, 58,191,213, 98,115, 85, 98,201,131, 70, - 21, 49,107,119,108, 93,157, 86, 3,101, 78,202, 51, 26,181, 39,245,237,207, 50,100,231,238,198, 64, 44,203,198,131,115,191,102, -155, 76,154,118, 52,226,247,135, 21,151,195,212,245, 39,246, 11,136,181, 29, 30,125,251, 25, 18,179,149, 56, 25,153,181,143,170, -180, 95,238, 40, 24,119,207,189, 41,185,186,101, 70,242,250,150,189,172,251, 58, 84,226, 99,197,164,109, 16, 79,181, 23, 52,250, -168,213, 63, 58, 70, 97, 97,197,247, 85,171, 86,141,105,217,178,165,188,111,223,190,207, 51, 51, 51,223,168,248, 94, 1,205,120, - 66,200,207,199, 55, 44,159,100, 95,171, 9,214,126, 63,217,180,251,230,147, 55, 90, 21,150,135, 64, 32,104, 51,117,234, 84,129, - 82,169,252,147,185, 42,110,176,114,115,115,241,232,209, 35, 12, 27, 54, 76,244,240,225,195, 54, 0, 46,150,146,175, 89,132,144, - 13,120, 53, 22, 97,242,142, 29, 59,154, 30, 62,124,184,233,248,241,227, 5, 93,186,116,193,173, 91,183,112,246,236, 89,189, 94, -175,191, 9,224,166,185,195,207, 20,244, 31,116,159, 16,242,100,201,146, 37, 77,185, 92,238,172,194,121,161,161,161,216,186,117, -107, 69, 52,141, 0,150, 17, 66,126,222,177, 99,199,172,115,231,206,125, 62,116,232, 80, 43,131,193,128,167, 79,159,226,215, 95, -127,173,168,230,183,142,142,142, 51, 79,156, 56,177,237,204,153, 51, 61, 7, 15, 30,204, 25, 55,110, 28,214,172, 89,131,223,127, -255,157, 49,153, 76,135,249,124,254,208,180,180,180,114, 27,160,188,209, 15, 86, 25,253, 92,149, 55,191,132, 8, 86, 34, 94,245, -208,110,238,152,132,229,234,190, 77, 17,160,153,249, 78,122,235,199, 82,193,126,180,105,211,230,117, 84,145, 82,250, 70,189,185, - 66, 99,101,105, 17, 33, 0,155,130,235,116, 29,128, 53,120,179, 23,119, 46,254,223,211,187,185,138, 1, 73, 90,155, 80,104,241, -180,236,193,158,109, 0,138,128,114,212,178,103,205,154,245,211,236,217,179,127, 42,222, 21, 67,209,133,138,119,225, 48,119,238, - 92,148,214, 77, 3,128,172, 89,179,102,253, 8, 0,254,254,254,164,160, 88,176, 1, 10, 90, 11, 22,209,220, 94,144, 46,157, 51, -103,206, 16, 0,101,105,178,176,252,131, 6, 11,116,122,232,213,221, 6, 0,246, 32,156,105,244,229,222,208,183,126,112, 49,116, -234,133, 93,115,214,128, 34,139,154,140, 83,222,201, 30, 48,220, 25,161, 87,119, 49, 0,177, 1,225, 76,165, 47,127,127,235,124, - 18,107, 59,228,205, 27,131,223, 67, 18,105,178,210,240,201, 14,157,238,141, 72, 77, 65,157,171,126,110, 45,201, 94, 91, 55,254, - 31,223,182,179, 39,199, 51,135,188, 23, 39, 52, 45, 45,109,161, 92, 46,231, 46, 91,182,236,115,181, 90,253, 70,197,247,183,120, -225, 76, 38,132,112, 27, 85,247, 28,123,231, 69, 76, 15,115,139, 5,139,188, 72,132,110,110,110, 79, 52, 26, 13, 8, 33,208,106, -181,175,141, 85, 94, 94, 30,114,114,114, 94,255,214,235,245, 72, 75, 75,131,135,135, 7, 8, 33, 2, 11, 94,132, 87, 8, 33,193, -243,230,205,107, 53,111,222,188, 58, 5, 81,160, 43, 22, 21,141,189,169,109, 0,112, 69, 34,145, 38, 18, 66,220, 5, 66,145,242, -198,141, 27,231,222, 82, 83, 85, 16, 25, 89,177, 98,197,138, 5, 50,153,172, 97,104,104,232,249,183,209, 44, 48, 79,159,218,219, -219,187,109,223,190,125,255,150, 45, 91,154,240,120,188, 91,132,144, 62,217,217,217, 22, 15,246, 76,222,140, 8, 88, 60,191, 24, -163, 96,222, 24,132,229, 70,136,204,137,128, 85,148,191,194,176,153, 76,166,252,153, 51,103,166, 22, 55, 92,197,163, 85,133,191, -245,122,189,198,204,123,201,146, 86,145,229,152, 11,146, 15, 0,175,198, 22,124, 53,252,141,185,131, 61, 3, 40,117,108,203,217, -179,103,211,185,115,231, 18, 14,135,115, 24,192, 51, 14,135,243,162,120, 37,244,162,243,230,206,157,139,217,179,103,211, 57,115, - 74,255,111, 90,168, 25, 22, 22, 70,185, 92,238,121, 0, 81, 92, 46, 55,186,168,110,209,244,194,117,202,210,100, 97,249,199, 12, - 22,141,220, 31, 7,224,179,119,250,207, 48,106,255, 57, 88, 48,150,153, 89,154,209,123, 98, 0, 12,126,103,122,192,210, 17,141, -218, 76, 42,248, 23,184,162,184,185, 42, 74,226, 85,122,216,181, 57, 89,212,232,163, 86,227, 11, 94, 62, 11,223,135,147, 90, 82, -197,247,119, 96,178,254, 84,241,221,130,151,205, 25,137, 68, 66,148, 74, 37,212,106,245, 27,209,170,220,220, 92,168, 84, 42,228, -231,231,191,174,156,158,159,159, 95, 88,220, 69, 45,204,163, 10,192, 73, 66,200, 25, 74,169,233, 93,236,183, 90,173,170, 92,240, - 98,227,190, 43,205,130,134, 6, 95,188, 75,205,140,140,140, 68, 0,205,188,189,189,133, 17, 17, 17,186,138,234,148, 55,144,179, -185, 3, 61,191,203,104,208, 95,205,187, 54,108, 0,160,215,235,107,252, 5,145,181,103,239, 88,240,215, 14, 45, 2,184, 40,218, -247, 79,121,131, 61, 23, 26, 51,138, 95, 75,201, 35, 37,175, 28, 36, 5,176,253,229,203,151,158, 12,195,196,148, 16, 73,122, 99, -222,156, 57,115, 80, 90,255,124,197, 52, 1,224, 80, 92, 92,156,155,201,100, 74, 42,166,251, 70,122, 89,154, 44, 44,255,112, 4, -235,191,201,111, 58,221,108,148, 51,216,112, 81,146,174,211, 25, 0,102,188,111,251,241, 46,205, 85, 17,205,240,138,172,103, 48, - 24, 46, 0,128,163,163, 35, 28, 29, 29, 45, 89,175,162,249, 52,253, 5,251,254,175,208,124, 27,115,197,242,223,130,102,133,198, - 1,248,190,220,229,202,239,189,253, 79,134,168,224,107, 22,128,172, 82, 60, 78, 89,243,202,210, 4,128, 92, 0,185, 37,172, 91, - 90, 58, 11,203, 63, 2,135, 61, 4, 44, 44, 44, 44, 44, 44, 44, 44,239, 22, 2, 32,168,148,127, 12,102,183, 14, 32,132, 4, 85, -224,223,251, 57, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53,255, 91,154,229,105, 23,111,141,252,174,134,209,250,219, 41,108, -217,242, 87, 76, 0,130, 88, 77, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 43,184,157,145,127,199,118,254,138,137, 45, 34, -100, 97, 97, 97, 97, 97, 97, 97,121,199,176,149,220,255,165, 16, 66,170, 3,152, 14,192,186, 72,242, 29, 74,233,162, 98,203,237, - 2, 32, 45,146,164, 4, 48,143, 82,250,194,146,237,113,185,220, 69,173, 90,181,250,242,218,181,107,203, 13, 6,195,188, 10,228, -215,211,213,213,245, 71, 66, 72,125, 0,124, 66,200,203,148,148,148, 69, 6,131,225,220, 91, 28,131,170, 46, 46, 46,139, 1,212, -229,112, 56,124, 66, 72, 68, 74, 74,202,124,131,193,112,233, 45, 52, 21,206,206,206,205, 41,165, 46, 0,184,124, 62, 63, 35, 33, - 33,225,118, 69, 91,195,245,153, 27, 38,200, 85, 26,249, 0, 96, 37,227, 25,246,207,246,215,155,155,198, 94,229, 44, 44, 44, 44, - 31,168,193,234,239, 75, 92, 77, 60,240,246,135,210,184,194,151, 15,128, 58, 0,170, 3,120, 1,224, 33,165, 52,239, 45,141,194, -191, 66,243, 61,100, 22,165,116, 96,177,253,254,211, 66,237,218,181,235,126,230,204, 25,105,225, 48, 42, 12,195, 64, 34,145, 24, - 1, 12,179,224,120, 58, 13, 24, 48, 96,234,230,205,155,209,183,111,223,153,132,144,159, 40,165,249,230,174,111,103,103,215,187, -106,213,170,107, 54,109,218,228,216,164, 73, 83, 34, 20, 10,241,242,101,132,251,168, 81,163,106, 58, 59, 59, 31, 78, 73, 73,249, -194,210,157,183,183,183, 31, 84,173, 90,181, 21, 27, 55,110,116,104,209,162, 5, 8, 33, 8, 14, 14,118,255,246,219,111,235,184, -184,184,236, 73, 78, 78,254,202, 82, 77, 7, 7, 7,159,106,213,170,181, 93,187,118,173,164,121,243,230, 16,139,197,120,248,240, -161,124,244,232,209, 46, 46, 46, 46, 79,147,147,147, 47, 91,106,174, 30, 7, 31,237,105,212,107,151, 0, 0, 79, 32,154,220,244, -167,220,163,153,193, 87,186,149,151,214,103, 46, 14,177, 38,139,133,133,133,229, 3, 52, 88,189, 3,200, 60,240, 48, 29, 0,233, - 92,157,236, 57, 27,197,189,218,190,125,123,239,225,195,135,147,122,245,234, 33, 56, 56,216,103,207,158, 61, 31,243,120,188, 8, -147,201, 20, 12, 32,196,220, 94,168, 9, 33,124, 0,129, 92, 46,183,254,251,172,249,158, 35, 43,216,239, 20, 0,119, 10,210,238, - 20, 95,232,194,133, 11, 71,120, 60, 94, 97, 4,171,145, 82,169,116,198,155, 81, 47,115,168, 98, 48, 24, 16, 30, 30, 14, 14,135, -195, 7,224,133, 63, 15,125, 81,218,121,113,119,119,119, 95,127,243, 78,176, 61,225, 73,144,165, 1,160,209, 67, 40,119,198,230, -173, 59,236, 38,124,243,213,167, 86, 86, 86, 87,115,115,115,127,179,192,240,121,121,120,120,252,244,232,209, 35,123,169, 84, 10, -134, 97,144,151,151, 7, 23, 23, 23,108,218,180,201,102,194,132, 9, 3, 37, 18,201, 37,181, 90,253,187, 37,166,188, 90,181,106, -109,159, 60,121, 34, 41, 28,232, 89,167,211,193,221,221, 29,187,118,237, 18,141, 27, 55,174,134, 72, 36,138,215,106,181,145,230, -106,230, 42,141,124,163, 94,187,100,251,186, 57,149, 1, 96,232, 87,115,150, 8,243,172, 78,152,147,150,171, 52, 30, 7,192, 26, - 44,150,191, 21, 66, 72,125, 7, 7,135, 3,233,233,233,151, 1,124,241, 46,186, 18, 33,132,184,241,120, 60, 47, 74,169, 77,193, -239,108,163,209, 24, 69, 41, 77,172,168,166,131,119,219,110, 16, 73, 63, 3,101,234,112, 0, 16, 14,231,161, 73,175,218,154,254, -236,226,209,183,210, 20, 74, 62, 7,104, 29, 14,192, 16, 14,231, 17, 99, 84,109, 74, 11,187,120,146,189, 50, 88,222,153,193,234, - 19, 64,108, 1, 76,217,179,102, 58,135,199,229,146, 1,223, 44, 26,184,101,221, 50, 78,251,110,125, 94, 23,147,180,108,217, 18, - 45, 91,182, 36, 75,150, 44,169,126,254,252,249,234,187,118,237, 50, 18, 66, 30, 81, 74,247,150,182,177, 78,222, 68,205, 0,226, -143,253,120,202, 1,223,255,182,177,113,227,198, 16,137, 68,120, 27, 77, 0,232, 80,157, 27,217,165,177,247,163, 1, 99,103,197, - 52,105,210,140,190, 11,205,127, 17,119, 40,165, 61, 10, 30, 92,182, 30, 30, 30,205,141, 70,163, 24, 0,120, 60,158, 6,192, 88, - 90, 48,196, 15, 33,228, 48,195, 48,221, 45,120, 48,114, 0,204,238,222,189,251,204,175,191,254, 26, 30, 30, 30, 24, 55,110, 28, - 12, 6, 67, 48, 33,100, 22,128,197,229,117,228,231,228,228, 52,107,253,250,245,118, 60,161, 12,245,166, 68, 33, 41,219, 8, 0, -144,139,128, 35, 99, 40,198,141, 27,103,117,239,222,189,249, 0,204, 54, 88, 78, 78, 78,243, 54,109,218,100, 39,149, 74, 65, 41, - 69,126,126, 62,242,242,242,144,159,159,143,252,252,124,124,245,213, 87, 86, 79,159, 62,253, 17,128,217, 6,203,217,217,185,249, -218,181,107, 37, 98,177, 24,249,249,249, 2,189, 94, 79,242,242,242,160, 82,169,168, 78,167,211,143, 29, 59, 86, 20, 18, 18,210, - 6, 64, 36,251,216,120,111,204, 0, 23,192, 39,124, 62,191,151,183,183,119,131, 23, 47, 94, 60, 48, 26,141, 7, 1, 28,124,219, - 63, 81,132,144,143,220,220,220, 22, 36, 38, 38,174,165,148,238,248,175, 28, 83,103,103,231,131, 55,110,220,168,188,126,253,250, - 97,203,151, 47, 63, 97,201, 61, 84,202,159,222,166,141, 26, 53,114,232,213,171, 23,223,197,197, 5, 42,149, 10, 17, 17, 17,210, -115,231,206, 57,138,197,226, 12,173, 86,123,211,146,115,229,224,219, 92, 14,158,213,158,166,109,131, 90,244,253,244, 19,133,179, -189, 53,212, 58, 19, 94,196, 36,121,156, 58,113,164,181, 91,205,143,111,232,245, 57,253,211,159, 93,207,183, 84,179,109,167,174, - 45,130, 62,250, 72, 97,109, 99,141, 28,165, 30, 47,163, 19, 60, 47,158, 61,218,210,181,230,199, 87, 24, 98, 24,156,242,248,140, -138,189,235, 88, 44,193,236, 74,238, 82,169,180,196,116,107,107,107,180,109,219, 22,139, 22, 45,226, 1,168, 95,116,222,159, 6, - 63, 5, 68,199, 54, 76,131,181, 76,196,241,240,240, 80, 88, 89, 89,189,181,230,171, 68,198,171,153, 7,237,124,247,183,233,195, -206,237, 90, 17,168,204,203,230, 23, 95, 68, 46,151,195,215,215, 23, 51,103,206, 52, 79,243, 45,249,187, 53, 93, 93, 93,253, 90, -182,108, 89,255,194,229,203, 54,137,137,137,162,196,196, 68,209,153, 11, 23,108,154, 54,109, 90,223,213,213,213,175,136,134, 37, -249,252, 97,221,186,117,179, 14, 31, 62,204,105,217,178, 37,108,109,109,209,182,109, 91,156, 56,113,130,183,124,249,242,133, 0, -102,150,151, 79, 14,135,211,162,101,203,150, 4,148, 34, 57,199,136,219,139,252,240,112,153, 63,242, 52, 20,153, 57,185, 80,171, - 53,144, 74,165,226,130, 98, 93,115,247,189, 89,211,166, 77, 9,128,215,166, 42, 47,239,213,148,159,175,132, 78,167,135, 72, 36, - 82, 16, 66,196,230,106, 82, 74, 93,154, 55,111, 14, 0,208,235,245,175,203, 90,179,179,179, 73, 78, 78, 14,116, 58, 29,248,124, -190,128, 16,194, 51, 87,211, 74,198, 51,240, 4,162,201, 67,191,154, 19, 55,244,171, 57,113, 60,129,104,178, 78,145,107, 50, 39, -205, 74,198, 51,252,147,215, 39, 33,196,145,203,229,254,234,237,237,253,148,203,229,110, 39,132,184,188,141, 38, 33,164, 33, 33, -100,161, 84, 42, 61, 87,163, 70,141, 56,153, 76,118,129, 16,178,152, 16,210,180, 34,154,132, 16,161, 84, 42,189,176,112,225,194, -253, 15, 30, 60,232,123,254,252,121,175,199,143, 31,127,186,100,201,146, 61,114,185,252, 42, 33, 68,250, 54,247,166,151,151,215, -150,219,183,111, 55,108,214,172,217,102, 66,136,232, 93,220,239,132, 16, 46, 33,164, 46, 49,115, 76,160,191,251,188, 19, 66,220, -234,213,171, 87, 89, 44, 22, 35, 40, 40, 8, 0,218,188,165,102,211,209,163, 71,187, 76,152, 48,129,255,240,225, 67,108,222,188, - 25,135, 15, 31, 70,106,106, 42,186,118,237, 42,104,215,174,157,139, 72, 36,106,106,145, 38,207,106,207, 55,223,142,239, 52,105, -220, 8,197,163, 88, 61,182,158,139,197,161,155, 73, 72, 85, 9,209,237,211,161,214, 29,123,244,235, 40, 20, 89,239,177, 84,115, -234,148, 41,157, 70,126, 62, 80, 17,154,196,224,200,173,100,220, 10,207,129,145,111,131, 46,159,126, 97, 91,167,121,167,143,121, -224,111,123, 31,206,209,135,174,249,193, 70,176, 8, 33,148,210, 87,131,184,238, 15,165, 89,189, 3,200,143,253,190, 94, 56,147, -112, 8,173, 18,216, 44,180, 82,181, 0,165,189,189, 61, 84, 42, 21,180, 90, 45, 4, 2, 1, 52, 26, 13, 98, 99, 99,113,235,214, - 45,216,218,218, 90,180,225,220,220, 92,200,229,114,200,229,242,119,162, 57,109, 88,144,232,101, 92,154,232,244,173, 75,173, 87, -125,249,123,147,106,117,219, 60,254,168,223,184, 39, 86,142,110,154,199,143, 31,227,198,141, 27,200,202,202, 66,227,198,141, 63, -148,115,119,167,224, 57,125,135, 16, 98,219,178,101, 75,247,211,231,174,216,230,107, 24,171,232, 20, 3,159, 97, 24, 72,165,174, -198,189, 7,142,228,244,253,180, 27, 33,132,164, 2,184, 83, 96,106,239,148,243, 34, 16, 3,240,235,221,187,247,212, 47,191,252, - 18, 17, 17, 17, 24, 49, 98,132,250,206,157, 59, 25,205,154, 53,179,223,180,105,147,100,194,132, 9,184,124,249,242,108, 66,200, - 31, 0,162, 40,165,154, 82,110, 66,129, 64, 32,128,177,192, 46,232, 77,204,107, 95,159,155,155, 11,170,206,130, 64, 32,224, 2, -112, 4, 96, 86, 61, 57,134, 97, 4,124, 62,255,181,185,138, 77,201, 69,108,170, 10,185,249, 58,168,213, 70,232,212, 20, 92,169, - 61, 15,136,118, 6, 16,109,230,241,228,138,197, 98, 24,141, 70,228,229,189,202, 70, 97,100, 76,167,211, 33, 39, 39, 7, 92, 46, - 87, 14,192, 10, 64,166, 57,130,175, 42,175,227, 80, 65,113, 31,238,238,236,238,240,226,248, 52,125,239, 57, 79, 95,167, 89,201, -120,134, 3, 19,106,112,237,221,235, 92,171,219,119,155,127, 97,218, 63, 89,255,138, 16, 34,114,116,116,188,184,127,255,254, 26, -213,171, 87, 71, 84, 84,148,127,159, 62,125, 26, 19, 66,234, 90, 58,102, 34, 33, 68,202,225,112,126,252,236,179,207,190, 28, 48, - 96, 0,241,241,241, 1,143,199,131,209,104,116,143,136,136,104,187,111,223,190, 41, 60, 30,111,147,201,100,250,206,220,122,125, -132, 16,142, 80, 40,220,187,113,227,198, 86,141, 27, 55,198,246,237,219,113,231,206, 29,166, 97,195,134,156, 33, 67,134,192,211, -211,179,241,144, 33, 67, 14, 17, 66,186, 84, 36,146, 69, 8,241, 28, 52,104, 80,101, 46,151,139,102,205,154, 9,110,220,184, 81, - 15,192,141,183, 60,166,114,119,119,247,203,109,218,180,169,123,238,220,185,251,132,144, 54,150,212, 99, 36,132,244,112,115,115, - 91, 98,109,109,109,107,193, 51, 86,149,144,144, 48,209,130,241, 72,155,212,175, 95, 31, 49, 49, 49,240,243,243,131, 64, 32,104, - 74, 8, 25, 5,160, 19,128, 25,150,140, 14, 65, 8,113,107,218,180,169, 67,155, 54,109,200,226,197,139, 1, 0,124, 62, 31, 38, -147, 9, 28, 14, 7,124, 62, 31,254,254,254, 36, 50, 50,210,142, 16,226,102, 78,113,161,131,119,219,110,205, 62,234,212,162, 85, -227,218,156,229, 7, 94,192,196,152,192, 37, 70,240, 8, 3,198, 32,130, 72,192,133, 79, 96, 3,110,120,200,163,198, 14,190,237, -187,165, 63, 59,123,212, 28,205, 78,221,186,183,172,225,231,195, 89,117,232, 37,178, 19,158,154, 18,194,174,164,115,184, 28,212, -168,223,206,193, 39,160, 46,183,110,227, 54,252,196,168,144,182,118,213, 91, 7,101,190,184,204,154,138,191,254,249,243,218,139, -124, 48, 6,171, 56, 7, 66,233, 44, 43, 33,241,218,183,111, 55, 39, 45, 79,175,140,136,136,128,131,131, 3, 92, 93, 93, 97,109, -109,141,208,208, 80, 92,184,112, 1,207,158, 61, 3,195, 48,168, 83,167,142, 69, 27, 78, 79, 79,199,163, 71,143, 96,107,107,251, -206, 52,171, 85,118,196,215,149, 29, 5, 41, 25,185,130,115,119,158, 53,254,101,218,167, 1, 28,255, 79,183,104, 52,255,127,247, -235,116, 31,198, 72, 34, 69, 91, 11,122,120,120, 52,223,186,117,171, 64,107,132,194,103,212,205,165, 74,141, 73, 6, 0, 50, 49, - 87, 25,188,196,247,187, 31,126,248, 65,249,249,231,159,251,199,198,198, 46, 42, 79, 87, 40, 20, 46,232,220,185,243, 36, 74, 41, -255,155,111,190, 1, 0, 12, 29, 58, 52,247,214,173, 91, 62,148,210, 84, 66,136,219,240,225,195,159, 95,188,120, 81, 58,126,252, -120,174,209,104, 12,229,241,120,148, 16, 50,143, 82, 58,231, 79, 33, 82, 14,231,222,253,251,247,171,184,121,250,194,211,158,131, -150, 51, 95, 13,167,102, 47,101, 16, 31,253, 18, 97,143,239,192,197,197,197,218,213,213,245,169,159,159,159, 62, 33, 33, 97, 74, -126,126,254,250,178,242, 40, 16, 8, 30, 6, 7, 7,187,122,122,122, 34, 63, 63, 31,241,105, 42,140, 59, 40, 69,174,250, 85,208, -130, 15, 53,234, 86,246, 85, 72, 56,186, 59,206,206,206,122,157, 78,247,125,118,118,118,153,195,125,240,249,252,140,199,143, 31, -203, 61, 60, 60,160,209,104,104,102,102, 38, 81, 42,149,200,203,203, 35,199,143, 31,239,153,148,148,212,208,203,203,139,184,187, -187,207,171, 94,189,186, 58, 33, 33, 97,132, 57,117,188,246,207,246,215, 19, 66, 76, 60, 30,111,249,200,145, 35,251,254,241,199, - 31,247, 14,204,169,209,131, 82,170, 47,120,152, 88, 7, 6, 6,158,174, 93, 59,192,109,199,178, 90,171, 41,165, 75,223,131,203, -235,179,233,211,167,215,176,179,179,195,232,209,163, 49,119,238, 92,204,154, 53,171,250,232,209,163, 71, 2,248,201,130, 7,165, -196,197,197,229,238,170, 85,171,252,155, 55,111,142, 19, 39, 78, 96,247,238,221,136,140,140, 52,122,121,121,241, 26, 55,110,140, -217,179,103,163, 99,199,142, 35,198,142, 29,219,154, 16, 82,207, 76,211,241,249,236,217,179,123,180,104,209, 2,195,134, 13,211, - 94,186,116,169, 47,128, 51,103,207,158,109,119,249,242,229, 3, 59,119,238,148, 44, 92,184, 48,104,194,132, 9,163, 1,172,169, -192,254,247,108,213,234,213,216,198, 45, 90,180,192,146, 37, 75, 58,190,141,193, 34,132, 8,237,237,237,143,111,223,190,189,174, -175,175, 47, 6, 15, 30, 92,175,111,223,190,199, 9, 33,237, 41,165,102, 61,144, 42, 85,170,244,227,225,195,135,189, 75, 43, 73, - 40, 9,173, 86,107,247,201, 39,159, 44, 6, 96,145,193,218,181,107, 23, 38, 78,156,136, 58,117,234,212,110,210,164,201,134, 81, -163, 70,161,119,239,222, 31, 17, 66,156, 41,165, 74,179, 94, 44, 60,158, 87,215,174, 93,249, 7, 15, 30, 4, 0,180,106,213, 10, - 65, 65, 65,120,242,228, 9,174, 93,187, 6, 46,151, 11,153, 76,134,230,205,155, 11, 19, 19, 19,189, 0,148,107,176, 56, 34,233, -103, 61,186,118, 81, 28,185,149, 4, 19, 99, 68, 3,111, 43, 52,246,119, 66,120,124, 46,130,159,198,195,164, 19,192,202,206, 30, - 77, 91,119,176, 75, 78,136,252, 12, 64,249,245,177, 68,210,207,122,245,248, 88,126,228,102, 34,178, 19,195,232,139, 59,127, 92, - 48,104,148, 35, 0,224,222,249, 61, 27, 92,236, 37,237,125,234, 55,224,182,105,223,221,246,224,238,228,207, 0,176, 6,139,229, -237, 13, 22, 0,228,233,145,242,209,199,159,226,254,253,251, 0,128,140,140, 12,100,100,100,192,219,219, 27,107,214,188,249,220, -170,136,113, 97, 24,230,157,107, 2,128,179,189, 21, 6,119,105,196,187,246,104,183, 88,153,150, 38,150,203,229,154, 15,205, 96, - 21,197,104, 52,138,189,188,188,144,171, 6,201, 81, 25,228,233,123, 94, 69,246, 29,250, 95,146,235,116, 58,142, 92, 46,135, 86, -171, 21,155,241, 34,224,247,232,209, 99,210,222,189,123,249, 97, 97, 97,168, 86,173, 26,244,122, 61,110,221,186, 21, 95, 48, 64, - 49, 40,165,137, 92, 46, 55,145, 97,152,234,117,234,212,193,162, 69,139,224,239,239, 79,186,116,233, 50,165,192,100, 49, 69, 53, -147,146,146,126, 28, 53,106, 84,187,125, 7,254,176,219,216, 79,141,220,156, 92,228,231,231,227,225,131,123,200, 76,209,224,151, - 95,126,129, 88, 44, 33, 0, 4,169,169, 41,130,241,227,199,175,118,119,119,239, 20, 31, 31,223,181,180,124, 38, 38, 38, 46,248, -234,171,175,154,238,217,179,199, 38, 47, 47, 15,106,181, 6,153, 74, 41,158,174,124, 53,190,110,141,111,159, 98,221,218,245,156, - 90, 85,100, 14, 42,149, 10, 95,126,249,229, 10, 55, 55,183,230,137,137,137,195, 75,211, 76, 72, 72,184,253,245,215, 95, 59,239, -220,185, 83,172,211,233,244, 38,147, 9,106,181,154,179,103,207,158, 41, 85,170, 84,177,221,180,105, 19, 17,139, 37, 5,203,198, - 11,198,140, 25,179,215,197,197,101,103,114,114,242,176,114,142, 41,151,203,229,174,220,177, 99,199,144,126,253,250, 41,146,146, -146, 2, 14, 31, 62, 44, 2,160, 46, 88,196,181,125,251,246, 85,150, 45, 91,230, 24, 24, 24, 56,133, 16,194,167,148,254,163,131, -134, 59, 56, 56,140,237,209,163, 7, 22, 47, 94,140,163, 71,143, 78,176,179,179, 91, 49,119,238, 92,184,185,185,125, 77, 8, 89, -105,193, 0,186, 75,127,250,233, 39,127,127,127,127, 12, 29, 58, 84,119,238,220,185,233, 0, 14, 1,136,185,122,245,170,199,182, -109,219,186,237,221,187,119,241,170, 85,171,196,107,214,172,241,254,244,211, 79, 87, 2, 24, 94,238,253,237,236, 60,126,192,128, - 1, 88,182,108, 25, 46, 93,186,244, 41,165,244, 68,193,172,147,132,144,110, 11, 23, 46, 60, 63,115,230, 76,252,244,211, 79,223, - 88,106,176, 8, 33,242, 26, 53,106,124,223,169, 83, 39, 92,189,122, 21, 45, 91,182, 68,211,166, 77, 39, 16, 66, 86, 83, 74,211, - 43, 96,174, 56,114,185,124,239,214,173, 91, 91, 86,169, 82, 5,243,231,207,199,164, 73,147,176,101,203,150,150,131, 7, 15,222, - 75, 8,233, 85,252,158, 41, 9,107,107,107,185, 84, 42,197,148, 41, 83,104,100,100,100, 86,121,203, 87,174, 92,217,118,197,138, - 21,196,214,214,214,218, 92, 51, 44, 22,139,155,213,172, 89, 19,179,103,207,198,217,179,103, 49,115,230, 76,212,172, 89, 19, 49, - 49, 49,232,223,191,191,116,198,140, 25,189, 1,152, 53, 46, 33,165,212,218,222,222, 30,169,169,169,224,243,249,104,222,188, 57, - 14, 29, 58, 4,173, 86, 11, 39, 39, 39,100,103,103,163, 81,163, 70,133,102,204,218,188,163, 73,107, 58,216, 89, 35, 53, 36, 1, - 60, 24, 81,223,199, 1, 23,159,100, 64,111, 96,224,100,111,131,228,212, 20, 52,169,233, 14,157,206, 3,148, 50, 53,205, 81, 20, -114, 57,245, 69, 98, 9, 50,243,210,145,240,244, 82,134,222,164, 29,149, 29,121, 45, 14, 0,236,170,181, 26,117,239,218,217,123, -125, 62,110,229,148,175,172, 12, 66,153, 70,172,101, 96,177, 4,142, 25, 55,202,159,210, 84,170, 63,151, 18,188,173,113,249, 43, - 52, 75,226, 67, 52, 88,133, 20, 14,142,172, 51, 48,208, 25,152,194,127,177, 80,171,213,230, 70,197, 12,167, 79,159,222, 62,110, -220, 56,172, 88,177, 2,207,159, 63,135, 64, 32, 64,205,154, 53, 93, 9, 33,242,194,136, 75,253,250,245,157, 56, 28, 14,194,195, -195,177,124,249,114,124,254,249,231,244,198,141, 27, 91, 74,122, 81, 80, 74, 31,100,102,102,174, 29, 53,226,243,236,172,148, 88, - 24,212, 89, 72, 77,120, 9,173, 50, 27,243, 23,253, 8,149,129,135,228, 28, 61,146,115,244,224,136,236,176, 97,211, 86,110,141, - 26, 53, 58,241,120,188,174,101,228,243, 86, 74, 74,202,166, 49, 99,198,100, 39, 39, 39,191,222, 63,157,129, 66,103,120,243,122, -149, 74,165, 88,185,114,165,181,143,143, 79, 15, 62,159,223,182, 12,205,164,184,184,184,176, 49, 99,198,232, 82, 82, 82,144,147, -147,131, 35, 71,142,116,171, 82,165,138,237,226,165, 43,136, 82,207, 67,114,182, 30,201,217,122, 8,229, 78,216,123,224, 15,174, -175,175,239, 64, 62,159,223,180, 60,115,181,115,231,206, 33,253,250,245, 83, 44, 93,186, 52,243,240,225,195,235, 40,165, 69, 79, - 72,248,202,149, 43,247,237,221,187, 55,111,210,164, 73,118, 75,150, 44,153, 64, 8,153,254, 15,134,231,219,246,235,215,207,143, - 97, 24,236,223,191,255, 49,165,244,167, 63,254,248,227,174, 86,171, 69,255,254,253,189,240,170,184,200, 28,157,134, 3, 7, 14, -252,178,101,203,150,248,246,219,111,245,231,206,157,171, 79, 41, 93, 65, 41,141,166,175,136,161,148,174,190,124,249,114,157,177, - 99,199,106, 27, 53,106,132, 97,195,134,125, 78, 8,105, 89,142,110,179, 1, 3, 6,248, 51, 12,131, 61,123,246, 60, 42, 98,174, - 10,207,227,133, 3, 7, 14,220,210,233,116, 24, 52,104, 80, 85, 66, 72, 59, 11,246, 93, 32, 18,137,246,255,240,195, 15, 54, 9, - 9, 9, 24, 50,100,136, 54, 60, 60, 28,115,230,204,145, 88, 91, 91,159, 40,188, 7, 44, 65, 36, 18,253,242,243,207, 63,247,168, - 85,171, 22,198,140, 25,163, 91,191,126,253,184, 47,191,252, 82, 87,191,126,125,172, 91,183,174,135, 80, 40,180,104, 8,144,196, -196,196,236,208,208, 80,251,242,166,248,248,248, 20, 51,247, 89,170, 80, 40,110, 6, 6, 6,230,214,172, 89,179,129,209,104, 68, -104,104,232,203,237,219,183, 51, 53,107,214,196,218,181,107,177,100,201, 18,116,237,218, 21, 92, 46,183,183, 37,121, 85, 42,149, - 16,139,197, 16, 8, 4, 8, 14, 14,134, 86,171,133, 84, 42,133, 88, 44, 6,151,203,133,141,141, 13, 20, 10, 5, 0, 80,243,242, - 10,154,171, 50,128,207,231,128,199, 97, 16, 22,147, 3,189,129,129, 88,192, 5,159, 71, 0,202,192, 70,198,135, 88,200, 5,135, - 16,198, 76, 77,228, 40,245, 16, 10, 56,224, 11,132,132, 99, 52, 73, 94,191, 28,121, 38,137, 68, 34, 36, 14, 86, 34,136, 5,108, -159,220, 44,239, 56,130, 85, 24,101, 50,199,164,104,181,218,119,110,124,222, 86,179, 36,115,248,182,154,239,229, 73,228,241, 52, -207,158, 61, 19, 90,217,187, 49,246, 10,126, 86,149,207,175, 89, 3,128,157,156,151,163, 55, 25,152,196,196, 68,136, 68, 34,141, - 57, 90, 26,141,102, 4, 33,100, 62,128, 0, 30,143,119,108,235,214,173,100,199,142, 29,182, 3, 6, 12,136, 32,132, 36, 4, 6, - 6,122,110,221,186,213, 10, 0, 86,175, 94, 77,247,238,221,219, 17,175,186,190, 72, 46, 77, 51, 57, 57,121, 14,159,207,191,241, -213, 87, 95,173, 17, 10,133,182, 50,153,204,254,234,213,171, 68,163,167,104, 56, 61,230,117,203, 66, 43, 9, 7, 87,166, 89, 97, -228,200,145,220,167, 79,159, 46, 2,112,172, 12,205, 41, 34,145,232,234,243,231,207, 87, 88,187,215,117,148,121, 78,183,110, 60, - 45, 28, 0,224,233,192, 7,167,224,121,152,157,157,141,180,180, 52,124,249,229,151,182, 17, 17, 17, 83, 0, 92, 44, 77, 51, 62, - 62,254,178, 72, 36,138, 15, 9, 9,105,195,231,243,133, 50,153,172,225,205,155, 55,137, 70,199,160,246,148, 24,100,230,191,202, -167,157,156,135,123, 63, 56,227,235,175,191,230,189,120,241,226, 71, 0, 45, 74,252,247,194,225, 44, 41,106,174, 38, 79,158,252, - 16, 64, 85, 66,200, 27, 69,160, 38,147,137, 12, 26, 52,232, 9,128,154,147, 38, 77,178,163,148, 78, 32,132,100, 82, 74, 55,254, -221,215,146,149,149,213,226, 81,163, 70, 97,239,222,189,200,202,202, 90, 9, 0,185,185,185, 63,237,218,181,107,207,136, 17, 35, -240,219,111,191, 45, 38,132,156, 50, 35,138,213,185,127,255,254, 56,121,242, 36,206,159, 63,255, 61,165, 52,180,148,123,244, 57, - 33,100,202,225,195,135, 87, 13, 24, 48, 0,191,254,250,107, 39, 0, 87,203,208,109,223,177, 99, 71,156, 56,113, 2, 25, 25, 25, -235, 74, 90, 32, 59, 59,123,253,145, 35, 71,154,116,236,216, 17,139, 22, 45,106, 15,224,130, 25, 70,195,223,218,218,122,235,170, - 85,171, 26,214,170, 85, 11, 3, 7, 14,212,232,245,250, 78,147, 38, 77, 58,186,123,247,110,197,246,237,219, 27,140, 28, 57,242, - 54, 33,228, 11, 74,233, 45,115,142, 37,151,203, 93,184,102,205,154,225,109,218,180,193,132, 9, 19,140,167, 79,159,238, 78, 41, - 61, 67, 8,137,152, 60,121,242,241,229,203,151,115,151, 45, 91, 54,156,203,229,166,153, 76,166,127,202, 84,255,176,122,245,234, - 38, 29, 58,116,192,203,151, 47,113,235,214, 45,232,245,250,223,110,222,188,121,165,122,245,234, 63,232,116,186,163, 50,153,108, -168, 66,161, 8,172, 91,183,110, 59, 66,136,212,156,122,120,132,144,236,136,136, 8,153,147,147, 19,248,124, 62, 30, 61,122, 4, - 39, 39, 39, 0, 64,106,106, 42,106,214,172, 9, 46,151,139,236,236,108, 0,200, 49,207, 12,113, 30, 71, 68, 39, 86,181, 83,200, - 0,147, 24, 15,194,227,225,232, 96, 11, 19,225, 32, 57, 57, 9,117,253,220, 65, 8, 65,118, 70, 50, 8, 33, 79,204,209, 52, 81, - 38, 56, 54, 49,181,146,189, 66,132, 90, 77, 58,216,223, 60,149,182,195,186, 90,139,145, 60, 46,225,138,196, 86, 27,135, 15, 27, -230,192, 48, 20,217, 25, 41,224,113, 56,119, 88,203,192, 82,161, 8, 86,105,149,202, 94, 85,150,150,150,105, 82,196, 98,241,235, -232,137, 5,255,236,222,185,102,121,252, 21,154,255, 96,164, 97, 26, 33,228, 48, 33,100, 90, 92, 92, 92,216,240,225,195,245, 70, -189, 54,239,198,252,170, 83,239, 47,170, 50,230,230, 28,215, 49,135,198, 89, 79, 85,229,100,230,173, 94,189,218, 16, 23, 23, 23, - 86,116,157,114,140,105, 44,165,244,196,182,109,219,214,239,223,191, 31, 53,107,214, 68,104,104,168,147, 82,169,172,247,228,201, - 19, 59,127,127,127,236,216,177, 3,123,247,238, 93, 65, 41, 61, 91,150,185, 42, 18, 93, 59,151,148,148,228, 27, 19, 19,227,109, - 99, 99, 99,176,177,177, 65,241,150,133,185,106, 6, 25,217, 57,176,179,179,135,149,149,149, 87,121,154, 90,173,246, 68, 82, 82, -146, 15, 99,235,215,202, 39,125,101, 78,240,194,202, 8, 94, 88, 25, 39,166,184,193,213, 70,136,172,172, 44,164,165,165, 33, 45, - 45, 13,132, 16, 24, 12,134, 26,102,104, 70, 38, 38, 38,110,142,141,141, 61,236,236,236, 12,133, 66, 1, 10, 32, 57,219,128,135, -203,252,241,112,153, 63,146,179, 13,200,205,203, 67,149, 42, 85,160, 80, 40,106,150,114,126, 56,149, 42, 85,234,210,175, 95, 63, - 5, 0, 20, 24,167,143, 40,165, 99, 74,152, 70, 27,141,198,230,133,203, 78,156, 56,209, 14, 64,199,191,249,122,226, 18, 66,190, - 26, 49, 98, 68, 3,177, 88,140,181,107,215, 70, 2,216, 89, 48,123,255,250,245,235,195, 1, 96,220,184,113,129, 0, 38, 20,116, -145, 80, 42, 2,129,160,126,141, 26, 53,112,243,230, 77, 0,248,163,156,205, 31,184,113,227, 6,170, 87,175, 14,177, 88,220,176, -156,101,189, 42, 87,174,140,240,240,112, 0,120, 80,202, 50, 15,194,195,195, 81,185,114,101, 16, 66,188,204,216,247, 30, 29, 58, -116,120,124,241,226,197,134,205,154, 53,195,240,225,195,117,183,111,223,238, 66, 41,189,242,224,193,131,182,131, 6, 13, 82,250, -248,248,224,242,229,203,254,131, 6, 13,186,193,229,114,231,155,161,249,249,188,121,243,166,245,236,217, 19,243,230,205,163,251, -246,237, 27, 72, 41, 61, 83,112,127,157,222,179,103,207,144, 5, 11, 22,208, 94,189,122, 97,238,220,185,211, 8, 33, 99,202,137, - 6,229,152, 76, 38, 40,149, 74,179, 66,240,230, 46,239,224,224,208,185, 67,135, 14,152, 57,115, 38, 42, 85,170,132,163, 71,143, - 82, 0,199, 40,165, 87,181, 90,109, 43, 74,233,114,165, 82,121,232,230,205,155,104,223,190,189, 0,192,199,230,108,223,104, 52, - 70, 95,188,120, 81,111,111,111, 15,119,119,119,120,120,120, 64,169, 84, 34, 59, 59, 27, 53,107,214, 68,147, 38, 77,160, 84, 42, -113,236,216, 49,125,118,118,182, 89, 13, 81,140, 58,229,246,179,199, 15,230,216, 43, 68,112,119,178, 70,149, 74,118,200,207, 78, - 71, 90,114, 34,234,215,240, 64,235,250, 85,144,158,163,195,233, 99, 7,179,242,242, 84,219,205,138,250,107, 85, 91,207,157, 58, -154, 99,171, 16,192,215, 47, 16,131,134,143,171, 91,183, 94,227,179,141, 26, 53, 63,189,116,241,194,218, 31, 53,173, 65,226,211, - 53, 56,121,236,143,172,156,220,220,173, 96,249,203,249, 80, 42,184,191, 97,176, 74, 33,125,194,132, 9, 16,137, 68,112,117,117, -125,109,138, 10, 77,138, 80, 40,132,171,171, 43,140, 70, 35,246,236,217, 3, 0,233,229,108, 76,219,125,204, 34, 70,107,160, 42, - 62,159,255, 78, 52, 11, 34, 5,218, 79, 39,255,202,156,186, 81,114, 35,151,138,104,254, 11,104, 84,208,167, 85, 35, 74,105, 86, -116,116,116,124,223, 79,187,231,196, 68,132, 36, 43,179, 19,147,114, 51,226,146,226, 34,159, 36, 79,159, 50, 33, 39, 62, 62, 62, -174,160, 47,172, 70,137,137,137,221, 1,152, 91,151, 96, 66,223,190,125,127, 30, 49, 98, 4,125,248,240, 33, 0, 32, 56, 56, 24, -195,134, 13,163, 67,134, 12, 89, 9, 96,106, 5,242,173, 84,171,213,111, 68, 63,244, 38,230,117,209, 94,110,110, 46, 18, 19, 19, -161,211,233,204,118,194,207, 79, 47,123,150, 25,125,207, 16,232, 41, 67,160,167, 12,254,149,165, 32,198,252,215,230, 42, 45, 45, - 13, 41, 41, 41, 0,160,177, 32,159,185, 90,173,246,141,124, 22, 45,130,204,205,205, 69,114,114, 50, 76, 38,147,174,148,135, 4, -147,144,144,112,122,239,222,189,121, 0,176,116,233,210, 76, 66,200,121, 66,200,207, 37, 76, 27,120, 60,222,245,194,101,151, 45, - 91,150, 9,224,196,223,104,174,122,214,170, 85, 43,107,218,180,105,107,191,249,230, 27,108,216,176, 1, 73, 73, 73, 83, 41,165, -198,194,125, 73, 79, 79,159,188,110,221, 58,124,246,217,103,152, 53,107,214,178,122,245,234,229, 18, 66, 6,149,166,233,232,232, -232,206,227,241,112,255,254,253, 92, 74,233,203,114, 30,168,201,247,239,223, 79, 33,132,192,213,213,181, 90, 89,203,218,217,217, -121, 43, 20, 10, 36, 36, 36, 0, 64, 84, 41,139, 69, 39, 38, 38, 82,161, 80, 8, 55, 55,183,234,229,237,191,173,173,237,228,205, -155, 55,243, 66, 66, 66,240,209, 71, 31,197, 95,190,124,185, 61,165,244, 82, 65,222,238, 7, 7, 7,183,108,219,182,237,179,179, -103,207,226,199, 31,127, 36,117,234,212, 25, 83,158,166,167,167,231,232,207, 63,255, 28,107,214,172,193,198,141, 27,199, 80, 74, -247, 23,219,231,221,235,214,173, 27,183,113,227, 70, 12, 31, 62, 28, 94, 94, 94,131,202,210,139,137,137,153,210,166, 77,155,224, -231,207,159,155, 53, 66,129, 57,203, 19, 66,218, 54,110,220,216, 91,173, 86, 99,235,214,173, 47,189,189,189,239,238,223,191,127, - 2,165,244, 81,177, 69, 15, 29, 60,120, 16,131, 7, 15, 70,157, 58,117,182, 18, 66, 6,152,241,146, 76,140,137,137, 73,127,244, -232, 17,195,229,114,225,238,238,142, 46, 93,186,160,127,255,254,168, 83,167, 14, 82, 83, 83,113,229,202, 21, 38, 34, 34, 34,221, -220, 14, 71,211,159, 93, 60, 26, 21,245,236,250,253,219, 87, 12, 60, 46, 7, 30,174,118,248, 36,168, 46,190,232,221, 28,245,253, - 43, 33, 38, 85,141, 11, 23,206, 26,162,162, 94,222, 52,167, 5, 97,161,102, 88,232,163, 27, 33,247,175, 25,249, 60, 2,127, 63, - 31,204,156, 62,217,118,193,236, 41, 54, 62,213, 60,240, 40, 50, 7,103,207,156, 52, 36,198,199, 93,100, 91, 16,178, 88, 74,121, - 69,132, 75, 55,108,216,208,104,243,230,205,237, 39, 76,152, 32, 31, 58,116, 40,196, 98, 49, 84, 42, 21,220,221,221, 97, 50,153, -112,234,212, 41,220,187,119, 47,159, 97,152,179, 40,214,252,159, 16, 18, 84,180,175,140, 83, 17, 84,242,170,243, 74, 85,163,195, -125,250,188, 19, 77, 0,144,191, 96,172, 50,170,232,118,172,222,127,173,215,174,211,247,201,183, 3, 90,115,234,251, 85, 6, 0, - 56, 59, 59,195,202,202,202, 98,205,119,240,210,250,203, 53,139, 22,223, 38, 37, 37,133, 19, 66, 82, 71,140, 24,225, 95, 88,161, - 93, 36, 18,105,226,226,226,194, 10, 59, 26, 45,190, 78,121,249, 44,104,233,246, 37, 33,228, 72, 78, 78,206,233, 73,147, 38, 97, -193,130, 5, 56,122,244,104, 75, 74,233,245,138,236, 59,165,212,228,229,229,149,125,231,206, 29,231,234, 53,234,161,170, 19, 31, -173,190,127, 14, 74, 41,236,165, 20,121,217,153,120,240,224, 62,242,242,242,110, 91,146, 79, 55, 55,183,236,212,212, 84, 7, 39, - 39, 39,100,102,102, 34, 61, 61,253,181,185,202,202,202, 66,102,102, 38, 37,132, 92,181, 64, 83,233,237,237,173, 10, 11, 11, 19, - 58, 87,174,142,106, 78, 2, 52,158, 30, 14, 80, 10, 15, 59, 14,242,114,179,113,243,230, 77,228,228,228, 92, 42, 77,147, 97,152, -239, 6, 13, 26,196, 5, 48,100,210,164, 73,118, 0,234, 76,158, 60,249,108,241,150,130,124, 62,255,167, 29, 59,118,212, 44, 44, - 74,156, 50,101,202, 10, 74,233,230,191,235, 90,178,183,183,255,238,248,241,227, 10,189, 94,143,213,171, 87, 99,197,138, 21, 91, - 40,165,191, 23, 59, 30,199,185, 92,238, 58, 14,135,243,213,215, 95,127,141, 81,163, 70, 73, 27, 52,104, 48,161, 72,148,235, 13, -205,132,132,132,153,245,235,215,159,149,154,154,106, 86,133,253,231,207,159,143,172, 95,191,254,204,212,212,212, 37,101,157, 35, -153, 76, 38, 51,153, 76,136,138,138,202,162,148,230,148,114,238, 52, 62, 62, 62, 9, 38,147,201, 93, 42,149,218,149,119,125,102, -101,101, 45,108,208,160,193,156,148,148,148, 51, 0,230, 23,239,114,132, 82,250,144, 16, 18,248,205, 55,223,140, 93,188,120,113, -175,228,228,228, 61,229,105,198,196,196, 44,108,219,182,237,247,207,158, 61,219, 86, 90, 81, 47,165,116, 45, 33, 68,191, 99,199, -142, 49, 81, 81, 81,139,202,210,164,148, 30, 67, 25, 69,230, 37,104,151,184,124, 81, 77, 46,151, 59,121,241,226,197,156, 13, 27, - 54,128, 82,186,204,104, 52,150,150,207, 71, 92, 46,119,123,243,230,205,135,238,223,191, 95, 28, 24, 24, 56, 10,192,238,242,174, - 79,173, 86,123,235,198,141, 27, 77,162,163,163, 29,218,182,109, 43, 40,252, 99,146,157,157,141, 99,199,142,233, 35, 34, 34,210, -149, 74,229, 45, 75,158, 33, 70, 93,238,128, 27, 23, 14,239,142,126,254,164,105,155, 78, 61,108,117,122,119,136, 50,184,200,206, - 72,198,169, 99, 7,179,162,162, 94,222, 84,169,178, 7, 88,162,169,215,230,244,191,121,241,200,158,248,168,176, 38,173,218,118, -177,213,232, 60, 33, 18,112,144,145,146,128, 83,199, 15,103, 70, 69, 69, 94,213, 24,180,195,254,169,231,252,127, 73,243, 67, 12, -199,149, 59, 1, 16, 0, 8,146,203,229, 11,102,205,154,181,236,246,237,219,203,186,118,237,186, 76, 36, 18, 45, 0, 16, 4, 64, - 80,202,122, 65,127,167,102, 67, 55,216,181,173, 70,174,116,240, 38,204,232,150,182,166, 97,141,101,186,118,237,218,173,123, 27, -205,138, 78,127,181, 38,128,195, 6,131,129, 2, 72, 6,112,184, 96,154, 86,194, 58,211,138,204, 79,142,141,141,165, 0, 14, 91, -146, 79, 0, 14,253,250,245, 99,242,242,242,104,223,190,125, 41, 0,235,183,217,119,145, 72,212,182, 85,171, 86,134,148,180, 76, - 26, 30,153, 64,111, 5,135,210,211, 23,110,208, 61, 7,143,211, 53,235, 54,210,218,181,107,235, 0,120, 90,162,201,227,241,218, -181,109,219, 54, 35, 37, 37,133,134,133,133,209, 43, 87,174,208, 3, 7, 14,208,141, 27, 55,210,159,127,254,153, 86,174, 92, 57, - 5,128,179, 37,154, 18,137,164, 71,231,206,157, 13,217,185, 42, 26,149,144, 65, 31,135, 69,209,235,119, 30,211, 83, 23,174,211, -157,187,247,211,128,128, 0, 77,121,154,175,222, 99,220, 53,123,246,236,201,165,148,210, 30, 61,122,196, 3, 16, 23,153, 95,245, -187,239,190, 75,165,148,210, 37, 75,150,100, 0,152,254, 15, 92, 75,157, 42, 85,170, 20, 46, 16, 8,142, 3, 24, 82,206,122,253, -121, 60,222, 81, 23, 23,151,187, 0, 62,249,187,239, 35, 0, 93,157,156,156,110, 1,232, 94,206,122,133,203,245,252, 16,238,247, -191,232,188,183,227,241,120, 87,240,170,143, 43,115,222, 1, 63,112,185,220, 19, 0, 62,178, 36,159, 0,220,228,114,121, 11,185, - 92,222, 77, 46,151,119,179,177,177,105, 1,192,237,109,246,221,222, 39,168,155, 71,189,238,135, 42,215,249, 56,198,163,110,215, - 24,175,250, 61, 14,217,251, 4,117,123, 91, 77,207,250, 61, 14,123,212,237, 26,235, 81,183, 91,116,213,134, 61, 14, 57,248, 5, -117,254,208,206,251,251,172, 89,202,118, 70,254, 29,219,249, 75,242,110,225,142,202, 0,124, 2, 96, 81,193,167,236,109, 79,192, - 95,161,217,196, 21,190, 65,222, 36,172,139, 31, 47, 19, 64,239,119,161,249, 30, 62, 28,183,233,116, 58,170,209,104,168, 74,165, -162,249,249,249,111, 24,167,162, 70, 44, 49, 49,145,198,199,199,211,216,216, 88, 26, 29, 29, 77, 1,236,180, 52,159, 86, 86, 86, -155,251,244,233, 99,226,243,249,107,222,197,190,219,217,217, 45,106,220,184,177,126,213,170, 85,244,208,161, 67,116,211,166, 77, -244,235,175,191,166, 53,107,214,212,218,216,216, 12,168,136,166,139,139,203, 76, 63, 63,191,140, 45, 91,182,208,157, 59,119,210, -149, 43, 87,210, 25, 51,102,152,220,221,221,147, 21, 10, 69,199,138,104, 58, 57, 57,253,210,162, 69, 11,253, 47,191,252, 66,207, -158, 61, 75,119,237,218, 69,191,251,238, 59,234,239,239,175,149,201,100,159,154,163, 9,128,203,227,241,150,143, 30, 61, 58,217, -205,205,237,120,177,121,210,128,128,128,187,131, 6, 13, 74, 4, 48,133,125,224,178,154,172, 38,171,201, 26,172, 15,195, 96,241, - 44,140,118, 41, 1,252, 65, 8, 57, 90, 88, 63,227, 29, 68,208,222,185,230,205, 68,250, 12,128, 63, 33,132,247,174, 52,223, 67, - 22, 10,133, 66, 94,129, 65, 45,164,164, 86, 46,119,220,220,220,138,254,206, 1, 96,113, 63, 75, 57, 57, 57, 95, 16, 66,198, 21, -235, 98,160,194,100,100,100, 76, 35,132,236,141,140,140, 92,100, 99, 99, 83,223, 96, 48, 24,114,115,115,175,100,101,101, 77,161, -148,198, 87, 68, 51, 41, 41,105, 62, 33,228,200,204,153, 51, 39, 81, 74, 27,113, 56, 28,141,193, 96,184,148,158,158,190,136, 82, -154, 86, 17,205,148,148,148,145, 2,129,224,215,136,136,136, 69, 18,137,164, 54,195, 48, 58,149, 74,117, 41, 61, 61,125, 60,165, - 52,197,204,107,220, 4,224, 59, 66,200,114, 0,169,197,230,169, 8, 33,205, 67, 67, 67,237, 41,165, 73,108, 76,157,133,133,133, -229,191, 81, 7,171,180, 23,198, 59, 55, 45,255, 22,205,247,168,104,247, 5,128, 65,102, 44,183,232, 29,110, 83,253,142,247,225, - 49,128,206,239, 88, 51, 4,192,144,119,169,169,215,235,111,195,204,113,217,202,201, 91, 82, 41,233,122, 0,172,185, 98, 97, 97, - 97,249,128, 96,123, 79, 99, 97, 97, 97, 97, 97, 97, 97,121,199, 16,188,170,252, 93,210,191,106,179, 91, 7, 16, 66,130, 42,240, -111,254, 28,171,201,106,178,154,172, 38,171,201,106,178,154,255, 45,205, 34,218,165,141,109, 26, 94, 76,239, 23,252, 27,249,139, - 43,167,177, 21, 0, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,207, 77,108, 17, 33, 11, 11, 11, 11, 11, 11, 11,203, 59, -134, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44,172,193, 98, 97, 97, 97, 97, 97, 97, 97, 97, 13, 22, 11, 11, 11, 11, 11, 11, 11, 11, -107,176, 88, 88, 88, 88, 88, 88, 88, 88, 88, 42, 14, 41,104, 13,240,234, 7, 33,148, 82, 74,216,195,194,194,194,194,194,194,194, -242,143, 24,147, 15,196,139,176, 17, 44, 22, 22, 22, 22, 22, 22, 22, 22,214, 96,177,176,176,176,176,176,176,176,252, 11, 12, 22, - 33,132,178,135,130,133,133,133,133,133,133,229,159,226, 67,243, 34,133, 17,172, 54, 5, 59,214,134, 61,197, 44, 44, 44, 44, 44, - 44, 44,255, 0, 31,148, 23,121,163,146, 59, 11, 11, 11, 11, 11, 11, 11, 11,203,219,195,214,193, 98, 97, 97, 97, 97, 97, 97, 97, - 97, 13, 22, 11, 11, 11, 11, 11, 11, 11,203,127,216, 96, 17, 66,130, 88, 77, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 89, -131,197,194,194,194,194,194,194,194,194,194, 26, 44, 22, 22, 22, 22, 22, 22, 22, 22,214, 96,177,176,176,176,176,176,176,176,176, - 6,139,133,133,133,133,133,133,133,133,133, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44,255, 16, 4, 64,137, 45, 1, 40,165,231,204, - 22,169, 64,107,130,242,244, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,240, 52,203,211,182,196,127,188,215, 80, 74,255, -178, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,230,127,109,226,177, 65, 60, 22,150,127, 57, 7, 8, 23, 89, -126, 94,160,212, 13, 92, 97, 18,146, 30,191,196,108,202,188,181,102, 74,128, 39, 36, 6,103, 24,197,105, 72,121, 20,249,214,154, - 44, 44, 44, 44,255, 33, 88,131,197,194,242,111, 39,205,223, 23, 60, 44, 2, 7,174,160,250, 8, 56, 6, 44, 2,240,228,173, 53, - 5,204,124,152, 56,238,160,250,103,112,242, 91, 12, 32,148, 61,216, 44, 44, 44, 44,230,241,143, 84,114, 23,139,197,193, 66,161, -240, 7, 66,136,136, 61, 5, 44,127, 21,132, 16,145, 80, 40,252, 65, 34,145, 4,127,176, 59,185,163,150, 20, 28, 83,103,157,129, -169,116,234,113,182,147, 74,107,242, 5,199,216, 5,191,250,202,223, 74,147, 71, 58,104,244,140,199,206, 59, 42,103,165,206, 88, - 3, 20,111,167,249,255,115, 98, 35, 20, 10, 79, 17, 66, 28,216, 43,244,195, 36,128,144, 6, 13,249,252,137, 53, 8,105, 71, 8, - 33,236, 17, 97, 97, 13,214,223,136, 86,171,173, 87,175, 94,189, 9, 66,161, 48,134, 16,210,253,191,116,192, 21, 10,197, 13,107, -107,235, 20, 27, 27,155, 20,107,107,235,251,229,165,127,160,198,199,215,201,201, 41,198,222,222,254, 89,209,116,167, 58,189,154, -249,180, 24, 58,219, 33,176,103,235,119,176,141,238, 34,145, 40,166,113,227,198,227, 53, 26, 77,189, 15,246, 96,106, 24,103,112, -184,109, 67,146, 84,210,164, 92,131,115,112,180, 74, 1,112,219, 64, 7,215, 10,107,230, 48,206, 0,109,247, 48, 94, 45,187,145, -233,232,124,245,165,214, 10, 28, 78, 91,104,136,203, 91, 63,112, 56,156, 49, 12,195,180, 23, 8, 4,223,178,143,223, 15, 19, 33, -135,211,252, 70,247,238,243,167,212,174, 61,214, 31,232, 86,146,201, 34,175, 24, 87,163, 70,141,147,132,144,254,239,240,217,242, -163,191,191,127, 2, 33,228, 27,246, 76,176,252,107, 12, 86,159,170,164,249,192,106,228,114,191,170, 36,175,127, 53,146, 63,164, - 26,185,214,187, 42,105, 87,209, 13, 95,185,114, 69, 18, 22, 22,230,212,186,117,235, 61, 18,137,228, 26, 33,196,167, 34, 58, 98, -177,248, 20,143,199,235, 83, 52, 77, 42,149,158,226,241,120,253,138,165,133, 72,165,210, 28,137, 68,242,210, 76,221, 23, 66,161, - 80, 41, 22,139, 95, 20, 77,231,241,120,253,100, 50,217,169, 98,105,125,138,167,149, 6,159,207,119,143,139,139,115,138,143,143, -119, 18, 10,133,206, 69,211, 99, 99, 99,157,226,226,226,222, 72,183, 20, 62,159,223, 78, 46,151, 31, 40,158,166, 80, 40, 14,152, -171, 33,151,203,127,231,243,249,237,138, 25,195, 63,165, 85,212, 92,117,232,208,225, 90, 82, 82,146,135,141,141,141, 77,209,121, -118,214, 54, 29,127,219,178,110, 66,143, 46, 29,198, 56, 5,124, 82,171,130,250, 62, 82,169,244, 90,163, 70,141,246, 92,184,112, -193,105,231,206,157,210, 15,246,238, 61, 16, 32, 0, 97, 90, 49,148, 58, 62, 77,208, 56,126,220,189, 15,239, 65,156,218,209, 96, - 50,217, 1,220, 54,216, 86, 69, 84, 33, 77,158,161, 37, 67,169,243,249,104,190, 99,219,190, 99,185, 23,162,121,142, 6,147,201, - 30, 28,180,174,144,230,255,207, 13,159,203,229, 78, 88,190,124, 57, 7,192,215,132, 16,225,127,233, 97,219,184, 18,169,244, 81, -117,222,157,250,110,164,249, 59, 52, 20,129, 50,153,236, 30, 33,196,247,125,217, 79, 29,195,132,239,137,140, 60, 61,216,219,187, -235,148,218,181, 63, 43,110,178, 10,190, 79, 89,188,120,241,144,144,144, 16,199,170, 85,171,142, 34,132,112,222,193,177, 88,185, -120,241,226,201, 33, 33, 33,110, 94, 94, 94,115,223,133, 38,203,251,229,221, 1,180, 5,240, 49,128,143, 0, 52, 42,248,222,176, - 96,250, 24,175,122, 69, 40,250,217,176, 96,221,194,249,141, 75,209,248,184,132,245, 26, 22, 73, 47,250,187,248,247,210, 41,104, - 13, 64,139,126, 22,159,250,121, 97,206,216,102,149, 84, 79,143,238,162,249,113,145, 52, 43,236, 1,125,240,203, 66, 58,182,161, -163,106, 96, 85,252, 88,129,214, 7,148, 82, 74,131,131,131,169, 90,173,166, 39, 78,156, 96,156,157,157, 53, 66,161,112, 37, 0, -153, 37, 90, 66,161, 48,223,209,209, 49, 79, 34,145,108, 5, 32,164,148, 66, 36, 18,229,187,184,184,228,137,197,226, 29, 0, 68, -148, 82,116,236,216, 81, 77, 41,165, 34,145, 72,105,142,110,231,206,157,149,148, 82, 42, 20, 10,149, 5,121, 22,137,197,226,223, - 26, 52,104,144, 43, 18,137,242, 11,210,132, 82,169,116,107,195,134, 13,115,197, 98,113,190, 57,186,118,118,118,113, 38,147,137, - 30, 61,122,148, 58, 57, 57, 37, 22,166,219,218,218,198,153, 76, 38,122,248,240, 97,234,232,232,152, 88,129, 99,202,145,203,229, - 75, 27, 53,106,148, 45,151,203, 51,138,164, 45,107,210,164, 73, 78, 97,154, 57,147, 76, 38,203,240,240,240,200,146,203,229,203, - 0,112, 40,165,144,203,229, 25, 85,170, 84,201,180,178,178, 90, 90,152,102,206,228,230,230, 54,202,201,201, 41,209,201,201, 41, -209,198,198,102,129,171,171,107,114, 90, 90, 26,165,148,210,106,213,170,165, 82, 74,225, 88,251,147,102,213,155, 15,153,237, 20, -216,125,252,134,253, 55,111, 95,121,146,145, 86,187,253,152,165,214,181,123, 88, 91,176,255, 50,161, 80,184,210,197,197, 69,115, -248,240, 97, 83, 74, 74, 10,125,244,232, 17, 77, 74, 74,162,165, 93,215,255,250,105, 93,128, 59,221,232,183, 39,116,150, 71,216, -149,197,157, 12, 52,250, 2,221,245,153,163,225,242,248, 74, 17,244,103,255,223,233,198, 26,149, 43,164,249,115,141, 93,143,102, -120,132,175,153, 59,206, 16, 19, 19, 67, 39, 14,237,100, 60, 51,182,210, 75,186,193,127,127,133, 52,255,127,142, 6,124,242,201, - 39,249,177,177,177, 52, 32, 32, 64,201,229,114,135,255, 87, 90, 19, 53,114, 67,165, 32, 95, 97,194,163,157, 19,153,110,129,210, -140,122,174,104,254, 14, 90,113, 5, 58, 57, 57,165,111,219,182,141, 42, 20,138, 84, 0,190,239,195,190, 2, 32,254, 64,247,237, -181,107, 31,102,122,247, 54,109,175, 93,251,176, 63,208, 29,175,186, 5, 34, 0,166, 46, 89,178, 36,216, 96, 48, 4,111,221,186, - 53,184,123,247,238,193, 0, 38,190,229, 54, 87,253,248,227,143,212, 96, 48,208,173, 91,183,210,238,221,187, 83, 0,171,205, 93, - 95, 46,151, 87,175, 85,171,214,142,128,128,128,216, 58,117,234,232,106,212,168,161,241,245,245,141, 14, 12, 12,220, 38, 18,137, -188,216, 22,113,127,219,181, 83,150, 23,105, 52,117,234,212,105, 0,232,212,169, 83,167, 81, 74, 63, 46, 88,238,227,162,223,139, -127, 82, 74,131,138,254, 46, 73,163,112, 42, 73,179,164,109, 20,251, 94,250,254, 20,238, 12,128,214, 0, 46, 23, 95,160, 79, 85, - 52, 27,219,172,146, 90,157,150, 68,159, 44,252,150, 94,108,235, 78,175,183,113,161,207, 38,124, 66,147,118,174,164, 95,214,181, - 85,245,174,138,182, 21, 49, 88,135, 15, 31,166,103,206,156,161, 47, 95,190,164, 41, 41, 41,244,251,239,191,215,201,100,178, 44, - 46,151, 59,200, 92, 45,137, 68,146,147,144,144, 64,191,255,254,123,109, 65,180,169,170, 84, 42,205, 73, 78, 78,166, 11, 23, 46, -212, 73, 36,146, 72, 0, 62, 34,145, 40,255,229,203,151, 84, 44, 22,155,101,176,164, 82,105,206,147, 39, 79,168, 72, 36, 82, 2, -240,113,116,116,140, 60,127,254,188,129, 97, 24,234,238,238,158, 11,160,170,163,163,227,139, 11, 23, 46,188, 78, 51,215, 96,169, -213,106,122,230,204, 25,234,236,236,156, 88, 60,253,228,201,147,111, 24, 47, 51,143,167,179,171,171,235,131,194,252,121,121,121, -165, 1,112,118,115,115,123,120,249,242,101, 67,129,153, 73, 51, 87,207,197,197, 37, 53, 53, 53,149,174, 94,189, 90,171, 80, 40, -238, 3,112,118,113,113, 73, 77, 75, 75,163,107,215,174,213, 90, 89, 89, 5, 3,112, 54, 71,203,193,193, 33, 81,167,211,209,236, -236,108,218,184,113,227,252,235,215,175,211,220,220, 92, 74, 41,165, 85,170, 84, 73,165,148,194,175,245,240, 31,110, 63,207,207, -253,124,242,186,125, 94,141, 6, 46, 60,125, 39, 33,126,243,161,123,193, 14,129, 61, 58,153,179, 13, 46,151, 59, 72, 38,147,101, -253,244,211, 79,250,172,172, 44, 26, 25, 25, 73,111,221,186, 69,111,221,186, 69, 83, 82, 82, 62, 76,131,181, 31, 92,186,209,175, - 7,221,232, 23,188,109,176, 67,122,222,253,221,148,158,253,134,190,252,161, 42,157,213, 73,145,199,108,244, 11,166, 27,253,123, -211, 57,173,121, 22,105,254, 82,163, 27,221,232, 23,252, 99, 31,207,140, 7,193,119,233,229,203,151,233,250,149, 75,232,216,160, - 74, 74,102,163, 95, 48,253,185, 70, 47,139, 52,139, 76, 34,145,232,249,181,107,215,232,149, 43, 87,232,220,185,115,169, 84, 42, -141,125,251,227, 80, 67, 64,127,246,245,164,235,124,218,208, 45, 62,174,244, 82,197,242,246, 87,155,171,246,190,194,248,244, 7, -135, 40,205,124, 65,147,151, 5,208, 78,126,252,183, 50, 89, 5,230, 42, 45, 58, 58,154, 38, 39, 39,211, 21, 43, 86, 80, 43, 43, -171,247,218,100,249, 1, 61, 0, 76, 91,186,116,233,107,115,181,110,221,186,224,199,143, 31, 7,123,120,120,156,120,139,109,173, - 94,186,116,233,107,115,181,110,221, 58,250,248,241, 99,234,233,233, 25, 87,222,186,131, 7, 15,150, 54,107,214, 44,120,208,160, - 65,170,109,219,182,209,232,232,104,250,248,241, 99,186,116,233, 82, 58,123,246,108,250,235,175,191,210, 94,189,122, 41, 27, 55, -110,124,187,119,239,222, 98, 11,243,198,163,148, 10, 11, 38, 62,165,180,208, 96,242, 0,240, 1,112, 89, 83,245,103,111, 80,154, - 23, 41,205, 68,149,102,172,138,207, 43,195,128,149,105,212,202,219, 94, 89,251, 83, 52,132,122,137, 82,250,167,186, 47, 60,138, -121, 35,191,251, 65, 28,181,109, 5, 82,246,174, 5, 55, 59, 5,252,188, 12,104,175, 29,135,225,218, 17, 12,105,218, 84, 34, 33, -100,126, 69,226,125, 18,137, 4, 60, 30, 15,137,137,137, 72, 76, 76,196,168, 81,163, 4,215,174, 93,179,105,217,178,229, 47,114, -185,252, 33, 33,164,182, 25, 97, 97,184,185,185, 97,236,216,177,194,237,219,183, 87, 83, 40, 20,247, 77, 38, 19,223,217,217, 25, - 99,198,140, 17,236,223,191,191,138,141,141,205, 93,147,201, 36, 16, 10,133, 48,183,206, 37, 33, 4, 2,129, 0, 70,163,145,223, -168, 81,163,123,161,161,161, 94,173, 91,183,230,133,133,133, 33, 61, 61,157,215,176, 97,195,135,161,161,161,222,173, 90,181,226, - 69, 70, 70, 34, 39, 39,135,154,171,171,211,233, 32, 18,137,192,225,112,222, 72,215,106,181,176, 36,143,133,197,127,205,155, 55, - 15,121,244,232, 81,157,214,173, 91,243,158, 60,121,130,244,244,116,126,227,198,141, 67, 30, 62,124, 88,187, 69,139, 22,188,103, -207,158, 33, 39, 39,199,236, 38,246, 98,177, 24,142,142,142, 24, 50,100,136,112,255,254,253,117, 28, 29, 29, 31,241,120, 60,161, -131,131, 3, 6, 13, 26, 36,220,191,127,127, 93,103,103,231,135,102, 22, 25,114, 1,192, 96, 48, 96,212,168, 81, 50, 43, 43, 43, -196,197,197,129, 97, 24,152, 76, 38, 0, 64, 70, 86,198,227,135,143,159,132, 13, 25,208,167,181, 90,175,213,222,188,115,239,105, -181, 42,158,238,132,208, 42,229, 28,203,218, 82,169,244, 97,255,254,253, 55,197,198,198,218, 12, 26, 52,136, 31, 29, 29,141,140, -140, 12,240,249,124,136,197,226, 55,142,241, 7, 69,110,128, 61, 24,180,143, 73,211,137, 68, 54,238, 10,185,171, 47, 16,123, 5, - 85, 29, 69,224,114,184,226,187,145, 42, 25, 64,219,195, 35,221,222, 50, 77,166,125,100,170, 78,100,176,171, 41,119,115,247, 64, - 70, 70, 6, 42, 87,243,135, 70,232, 40,188,241, 66, 41, 7,177, 80,243,255,231,170,165,143,143,143, 75,245,234,213,145,158,158, -142,122,245,234,193,214,214,214,150, 16,210,190,194,199, 96, 91, 21, 17,114,209, 28,132, 44, 7,151, 51, 23, 6,222, 34,188, 72, -171,135, 95,234,243,223,167, 98, 65, 43,185,240,214,238, 61,123, 43,217,123,212, 0,142,127, 14,103, 27, 17,182,140,169,103,231, -104, 45, 58, 92,145,226, 66, 66, 72,160,179,179,243,133,219,183,111, 59,136,197, 98,220,191,127, 31, 1, 1, 1, 88,177, 98,133, -163,173,173,237,149,247,161,184,144, 82, 74,195,128,163, 63, 62,122,180,117, 71, 68,196,177,193,222,222, 93, 7,249,250, 46, 24, -221,191,255,240,113,227,198, 97,201,146, 37, 56,124,248, 48,154, 55,111,142,145, 35, 71, 26, 98, 99, 99,183, 87,176, 88,112,237, -178,101,203,198,126,243,205, 55,197, 53,245, 49, 49, 49, 63,150,181,110, 96, 96,160,251,243,231,207, 19, 38, 76,152, 80,111,199, -142, 29, 18,169, 84,138,236,236,108,252,242,203, 47,152, 54,109, 26, 8, 33,160,148,226,215, 95,127,149,126,246,217,103,141, 34, - 34, 34, 18,170, 84,169, 98, 78,245, 13, 2, 64, 12, 64, 90, 48,201, 0, 72,119,239,222,109,221,163, 71, 15,171,130, 52, 9, 0, - 9,219,208,171, 68, 74,244, 34, 69,206,249,177, 98,215, 90,215,226,105,197,231, 81, 74,187,150,165, 97,225,181,221,213,220,245, -139,190,125,218, 16, 66, 46,255, 73, 12,168,237,226,229,135,156,179,251, 33,225, 17, 72,184, 5, 19,143,128,243,242, 49, 42,139, -249, 48, 80, 26, 88,193,250, 83,144, 72, 36,144, 72, 36, 32,132, 32, 43, 43, 11, 86, 86, 86,216,187,119,175,120,245,234,213,181, -164, 82,233, 77,107,107,235, 69,229, 25, 22, 0,120,246,236, 25,234,214,173, 75,142, 29, 59,102, 53,122,244,104, 30, 0,196,196, -196,160, 86,173, 90,228,226,197,139,138, 73,147, 38, 17,145,200,178,107, 89, 32, 16, 96,242,228,201,228,250,245,235,114,169, 84, -138, 39, 79,158, 32, 63, 63, 31,147, 38, 77,226,221,184,113, 67, 46,147,201, 16, 17, 17, 1,141, 70, 99,145,113,211,233,116, 16, - 8, 4,111,172, 67, 8,129, 94,175,135, 80, 40, 52,219, 20, 56, 56, 56,204,110,208,160,193,129, 75,151, 46,217, 75, 36, 18, 60, -126,252, 24, 42,149, 10,243,231,207,151, 94,187,118,205, 94,161, 80, 32, 60, 60, 28, 42,149,202, 34,211, 86,184,253, 23, 47, 94, -192,199,199,135, 28, 63,126,220,105,228,200,145,226,194, 99,234,235,235, 75, 78,156, 56,225,236,239,239,191,223,201,201,105, 86, - 89, 90, 12,195, 32, 41, 41, 9, 33, 33, 33,120,249,242, 37,210,210,210,144,158,158,142,188,188, 60, 24,141,198, 87,245,227,242, -114,143,239,222,119,244,161, 68, 34,145, 6,248,250,120, 60,126, 18,154, 42,145, 72,164,158, 30, 30,190,132,204, 45,241, 96, 40, - 20,138, 69, 18,137,228,230,145, 35, 71,106,111,218,180, 73,148,158,158,142,152,152, 24, 16, 66, 32, 22,139, 95, 79, 92, 46,247, -195,123,252, 16, 66, 64,116, 62, 32,164,222,173,151, 74,187,150, 93, 7, 8, 16,121, 10, 96, 12, 0,135,135, 54,181,221,121,135, - 31, 43,157, 65, 81, 27, 90,248, 3,102,156,124, 66, 8,160,175, 14,144, 6,103,158, 27,237,155,127, 50, 70,144,144,144, 0,129, - 64, 0,145, 72,132,122,237, 62,229,237,126,104,112, 1, 65, 29,232,225,103,150,230,155,127,166,190,159, 61,123,182,172,168,230, -240,225,195,101,214,214,214,179, 43,108,174,148,210,166, 48,209,111, 67, 18,212,158, 11,142, 39,251,191, 76, 85,251,131,226, 59, -192, 80,247,109, 77, 22, 33,164,141, 88, 44,142, 36,132,180,120, 43,115,165, 16,222,220,179,103,111, 37,187,202,175,204, 21,140, - 26,128, 47,129,139,163, 13,182,140,111,107,231,104, 35,177,200,100, 21,152,171,243,183,110,221,114, 16,139,197, 8, 14, 14,134, - 64, 32,128, 88, 44, 70,173, 90,181,176,113,227, 70, 71, 59, 59,187,247,202,100, 45,126,244,104,219,162,144,144,103, 83, 3, 3, -253,123,202,100,118, 95, 13, 26,100, 61, 99,198,140, 99, 71,142, 28,217,250,241,199, 31,167,223,185,115,231, 39, 74,233,126, 11, -207, 15, 33,132,172, 91,190,124,249, 87,133,134,109,198,140, 25,191, 30, 57,114,100,209,199, 31,127,156,116,231,206,157, 9,148, -210,117,101,105,228,231,231, 31,153, 57,115,166,245, 39,159,124, 82,248, 27,215,174, 93,195,246,237,219, 33,147,201,222, 88,182, -123,247,238, 24, 49, 98,132,173, 78,167,251,189, 44, 77, 39, 39,167,160, 91,183,110, 5, 0, 16, 0, 16, 21, 26,172, 39, 79,158, -216,228,230,230,218,200,229,114, 27, 87, 87, 87, 69,161,201,250,228,147, 79,108,248,124,126, 75,214, 83,189, 65,137, 94,164,168, -193, 49, 39,173,162,203,155,107,178, 44, 50, 88,148,210,203, 0, 90,149,180,144, 62, 51, 5, 34,152, 32,225, 18, 72,185, 69, 76, - 22, 24,240,114, 82, 81,209,134,184, 69, 95,132, 18,137, 4, 98,177,248,117, 36, 39, 39, 39, 7,132,144,114,205, 70,161,113,144, -203,229, 80,171,213,208,235,245, 16,139,197,175,211,140, 70, 35,140, 70, 35, 36, 18, 9, 68, 34,145,197, 17, 44,131,193,128,144, -144, 16, 68, 68, 68,128,195,225, 64, 38,147,193, 96, 48,224,233,211,167, 72, 72, 72, 0,143,199,131, 84, 42,181,200,192,152, 76, - 38, 8,133,127,174,223,107, 48, 24, 44,138, 96,113, 56, 28,168, 84, 42,250,252,249,115, 68, 71, 71, 67, 32, 16,192,202,202, 10, - 66,161, 16,105,105,105,136,143,143,127,157,102, 73,254, 10,151,149, 72, 36, 80, 42,149,133,117,221, 94,167,105,181, 90, 16, 66, -192,229,114,203, 61, 63, 38,147, 9,137,137,137, 72, 75, 75, 67, 92, 92, 28,210,211,211, 95,155, 44,134,121,251,126, 43,239,221, -187, 71, 67, 67, 67,161,213,106, 33, 18,137, 32, 22,139,223,248,228,241, 62,192,174,222,214, 7, 90,195,192,239,144,158,111, 16, -165,233, 5,214,206,129, 65, 64,228, 73,128,195, 3,196,182,104, 82,179, 42, 98,178, 76,178,240, 20,157, 24, 4, 29,177,206,215, -214, 44, 77, 19,191,125, 90,158, 65, 20,173,119,180,170, 81,187, 62, 82, 82, 82, 32, 18,137, 32, 18,137,208,160,121, 16, 34, 51, - 76,210,208, 4,181, 20, 20, 29,204,210,252,255,245, 84, 77, 46,151, 55,109,209,162, 5, 41,170,217,165, 75, 23, 16, 66,106, 17, - 66,252, 45,218,255, 53,222, 66,232,165, 77,192,167,223,134, 38,169,220, 14, 63,209,248,118,235,249,169,221,202,115,169,254, 97, - 73, 26, 47, 48,198,137,160,250,250, 21, 53, 89,132,144,214, 10,133,226,216,154, 53,107,188,196, 98,241, 73, 66, 72,133, 94,128, -114, 9,119,195,247, 95, 13,168,100, 91,104,174, 12, 42,128, 39, 1,248, 18,128, 39,129,139,147, 3,230,143,104,111, 39, 21,243, - 15, 90, 96, 84,119,175, 91,183,206,177,184,185, 42,156,234,213,171,135, 89,179,102, 57,218,217,217,237,250,135,255, 3,116,176, -177,177,217, 17, 20, 20,116, 43, 81,161, 24,145, 84,191,190,240,188,181,117,206, 71, 57, 57,214,158, 79,158,232,253,128,199, 0, -214,199,197,197,117, 50,215, 92, 17, 66,250, 91, 91, 91, 7, 7, 5, 5,233, 21, 10, 69,236,138, 21, 43,190,252,250,235,175,177, -100,201, 18,204,156, 57,115, 19,128, 47, 40,165,211,227,226,226,220,202, 51, 87, 0,144,156,156, 60,112,202,148, 41,233,233,233, -233, 0,128, 90,181,106, 33, 59, 59, 27, 19, 39, 78,196,183,223,126, 11, 0,168, 91,183, 46, 40,165, 72, 73, 73,193,178,101,203, - 82,146,147,147,135,149,243,135, 50,110,255,254,253,141,244,122,189,123, 65, 49,160, 40, 59, 59,219, 42, 51, 51, 83,161,215,235, -101, 12,195,200,108,108,108,228, 0,164, 67,134, 12,225,133,132,132, 4, 24,141,198, 4,214, 83,189, 97, 94, 74,245, 34, 21,228, -248,219, 68,170, 74,138,128,153, 29,172, 40, 16, 34, 69, 63,139,194, 37,120, 20,123,239, 10,236, 2,235,191, 17,189,146,114, 9, - 36, 86,214,136,140,139,129, 0, 36,228,109, 13, 86,161,201, 10, 13, 13,197, 71, 31,125,164,154, 51,103,206, 99,165, 82,217, 52, - 43, 43,107,154, 57,102,192,218,218, 26,215,175, 95,167,189,122,245,202, 93,181,106,149,177, 48,237,214,173, 91,180,125,251,246, -121,243,230,205,163,197,139,229,204, 49, 88,171, 86,173,162,109,219,182,205,185,125,251, 54,149,201,100,144, 74,165, 88,181,106, -149,177, 85,171, 86, 57, 23, 47, 94,164, 50,153,236, 79,255,118,202, 51, 69,133, 6,171,168,233,225,112, 56, 96, 24,198, 34,131, -149,154,154, 58, 55, 44, 44,172, 79,187,118,237, 82, 66, 66, 66,168,149,149, 21,172,173,173, 49,117,234, 84, 85,221,186,117, 83, - 31, 61,122,244, 58,205,146,162,178,194,237, 43, 20, 10,132,132,132,208,174, 93,187,166,174, 95,191, 94, 83,152,246,228,201, 19, -218,185,115,231,148,144,144,144, 62,201,201,201,243,202,139, 96,189,124,249,242,117,196, 74,163,209, 32, 61, 61, 29,113,113,113, -175,139, 8,213, 50,171, 78, 3,250,118,171,163, 86,171, 85,161,207,158,199,214,170, 25,224,164, 86,171, 85, 49,177,177,207, 40, -157, 93,162, 11,203,203,203,155,166, 86,171,155, 46, 88,176,224,113,159, 62,125, 84,225,225,225,127, 50, 87, 98,177,248,195, 52, - 88, 28,198, 5,132,182,184,250, 60,223,166,125,183,126, 66,146,124, 7,208,231, 3, 34, 91, 64,100, 11,158,204, 30,157, 91,214, -229,110,187,149,235, 2,202, 52,131, 64,228, 94,174, 38,159, 58, 3, 76,203,179,207, 52,182, 45,122,143, 21,102,102,102,130,203, -229,190, 54, 67, 82,153, 12, 31,245, 28,194,249,245,142,214, 5,160,205, 65,184,238,230,102, 87, 40, 20, 78,254,254,251,239, 5, - 89, 89, 89,224,112, 56,255,215,148, 74, 49,122,244,104,145,149,149,213, 76,179,247,253, 64,128, 0,124, 81, 19, 48,244,219,240, -100,181,219,145, 71,106,223,239, 22,109,145, 4,214,109,132, 81,109,156, 36,139, 78,164, 6, 60, 76, 80,121, 1,166, 9, 48,234, - 26, 88,106,178, 8, 33, 45, 21, 10,197,241,123,247,238, 73,187,116,233,130,101,203,150,201, 36, 18,201, 73, 66,136,197, 15,124, -101,190,233,235,121,171,127, 75,121,244, 83, 71, 64,175,124,101,172,138, 76,169,249, 12,102,109,185,144, 99, 48,208, 1,230,106, -170,213,234,161, 95,124,241, 69,198,193,131, 7,255,100,174,196, 98, 49,162,162,162,176, 96,193,130,204,204,204,204, 97,255,164, -185,250,250,235,175, 23,196,199,199,251,157, 61,123,150,151,150,150,230,180,124,243,230,156, 3, 57, 57,153,139,158, 60, 9,159, - 94,179,166,207,212,218,181,135,149,214,133, 67,105,230,234,171,175,190,218, 29, 31, 31, 95,239,220,185,115,252,180,180, 52,247, -175,190,250, 10, 75,151, 46,197,204,153, 51, 55, 2, 24, 85, 88, 59,218, 92,116, 58, 93,120, 86, 86, 86,215,142, 29, 59,102,103, -101,101,161,118,237,218,232,214,173, 27, 92, 92, 92,224,230,230,134, 30, 61,122,192,215,215, 23, 25, 25, 25, 24, 48, 96, 64,102, - 90, 90, 90, 71, 74,105,153,173,208, 51, 50, 50, 94,236,218,181,235,249,215, 95,127, 93, 63, 62, 62,190, 6, 0,251,188,188, 60, - 89, 94, 94,158, 72,167,211, 73,108,109,109,109,235,214,173,235, 48,114,228, 72,249,253,251,247, 3, 18, 18, 18,242, 0, 68,179, -182,234,181,169, 41,213,139, 0, 72, 43, 48, 58,186, 98,159,105,229,204, 51,119,221, 18,191,155,177, 92,249, 17,172,210,208, 3, -179,182,239,223,166, 17,122, 84,135,181, 95, 29, 72,197, 98, 72,132, 66, 72,108,237,161,101, 24,108,142, 74, 86, 41, 41,157, 89, -129, 3,249,186,120, 80, 44, 22, 35, 63, 63, 31, 99,199,142,213,244,237,219, 55, 59, 42, 42,106,116,110,110,110, 29, 74,233, 35, -115,204,128, 82,169,196,156, 57,115,212, 83,167, 78,125,153,151,151, 87, 79, 32, 16, 24,244,122, 61,190,255,254,123,205,152, 49, - 99,162,179,179,179, 27, 10, 4, 2,189,165, 47, 91, 62,159, 15, 30,143,103,200,201,201,169, 55,101,202,148,136, 5, 11, 22,168, - 5, 2, 1, 4, 2,129, 33, 55, 55,183,214,180,105,211,194,167, 77,155,166,230,243,249, 22, 69,198, 10, 35, 66,197,139, 8,139, - 70,138,204,197, 96, 48, 92, 72, 77, 77,173,243,205, 55,223, 60, 88,181,106,149, 74, 46,151, 67, 36, 18,233, 82, 83, 83,107,127, -249,229,151, 15,151, 45, 91,166,146,203,229, 22, 69,176,244,122, 61, 24,134,193,154, 53,107, 84,223,124,243,205,195,180,180,180, -218, 5, 23, 36, 86,173, 90,165,250,242,203, 47, 31,164,164,164,212, 49, 24, 12, 23,204,136,214,153,114,115,115,193,227,241,240, -228,201, 19,173, 64, 32, 0,135,195,193,139, 23, 47, 94, 27, 44, 59, 59,187,128, 58,181,106,250,255,182,123,255,101,137, 64, 36, -106,218,168, 65,141,151,209, 49,241,148,146,232,114,174,161, 71, 74,165,178, 78, 92, 92,220,232,225,195,135,103,127,247,221,119, -154,252,252,252, 55, 94, 56,124, 62,255,195,123, 10,113, 32, 5,129,228,121,170, 86, 33,230, 24, 9,158, 29,122,101,174,196, 54, -128,216, 22, 16,219,162, 82, 37,119,220,137, 82, 41,192,129, 16, 38,131,147, 25, 55,164, 12, 4,210, 39, 41, 80,240,133, 18,146, -156,156,252,218, 8, 21, 78, 94,213,107,224,126, 76,190, 28,132,138,192,133, 37, 93,137,116,181,183,183,231, 37, 37, 37,253, 73, - 51, 32, 32,128,107, 48, 24, 58,154,173,148,104,114, 5,152,175,159,165,106,220,254,120,168,242, 29,191,232, 87,137,196,148, 13, -220, 91,141,192,106,110, 24,223,187,174,112,198,225,180,192,187,209,170,106,224,209,209, 96,242, 29, 45, 48, 6, 45, 20, 10,197, -201,187,119,239, 74, 21, 10, 5, 94,190,124,137, 70,141, 26,225,151, 95,126,145, 74,165,210, 19,132,144, 54,150,156,166, 91,201, - 52, 38, 63,207,212,116,242,254,216,228, 71, 73,198, 55,204, 85,154,146,226,139, 31,143,100,103,229,106, 62,189, 25, 91,254,125, - 84,228,154,127,144,157,157,221, 97,230,204,153, 25,105,105,105,111, 92,235, 49, 49, 49,133, 70,160, 13,165, 52,228,159,186, 60, -173,173,173, 7, 45, 90,180, 8,119,239,222, 69,151, 46, 93,112,229,202, 21,100,102,102, 98,207,201,147,207,119, 61,127, 62,189, -176, 78, 86, 73, 93, 56,148,134,149,149,213,119,139, 22, 45,194,189,123,247, 94,107,102,100,100, 96,209,162, 69,241, 0,198, 88, -106,174, 10, 73, 73, 73,185, 19, 30, 30,222,177,118,237,218, 79,215,172, 89, 19,239,234,234,202,140, 28, 57, 18, 95,124,241, 5, - 28, 29, 29, 77, 43, 87,174,140,109,217,178,229,147,136,136,136, 32,165, 82,249,216,140,243, 67,211,211,211,175,111,218,180,233, -102,187,118,237,100,131, 7, 15,118, 58,124,248,176,189, 74,165,114, 19, 8, 4,206, 58,157, 78, 24, 26, 26,202, 59,112,224,128, -235,211,167, 79,163,212,106,245,157,138,230,253, 63,200,221,130,104,212,185, 98,159,119,203,153,103,238,186,165,125, 47,111,185, -178,141, 78,121,211,160,106,152, 51,186,166, 66,117, 99,112, 19,154, 60,178, 5, 77,233, 87,131, 94,107,109, 71,135,123, 19,229, -208, 10,118,211, 96, 50,153,104, 74, 74, 10, 77, 73, 73,161,243,231,207, 55, 74, 36, 18,181, 84, 42, 93, 9, 11,187,105,144,203, -229,249, 62, 62, 62,121,214,214,214,175,187,105, 80, 40, 20,249,126,126,126,121, 54, 54, 54,175,187,105,144,201,100,249,148, 82, - 42,151,203,205,106, 69,104,101,101,149,147,159,159, 79,165, 82,105, 97, 55, 13, 2,107,107,235, 77, 62, 62, 62,121,114,185,188, -176,155, 6,190,173,173,237, 6, 95, 95,223, 60,133, 66,145,111,102, 11,189,184,248,248,120, 26, 31, 31, 79, 43, 87,174,156, 88, - 52, 61, 38, 38,134,198,196,196, 80,119,119,247, 10,117,211,224,232,232,184,180, 97,195,134,153,142,142,142, 25, 69,210,150, 53, -108,216, 48,171, 48,205,204,150,127, 25, 13, 26, 52,200,114,116,116,124,221, 77,131,163,163, 99, 70,129,182, 69,221, 52, 72, 36, -146, 81, 98,177, 56, 81, 44, 22, 39,138, 68,162, 5, 85,170, 84, 73,221,183,111, 31, 93,185,114, 37, 85, 40, 20,175,186,105, 8, -232,222,180,122,179, 97,211, 29, 3,122,124,247, 54,221, 52, 72,165,210,149, 18,137, 68,189,112,225, 66,163, 82,169,164, 6,131, -129, 22, 60,188, 62,172, 86,132,191,248, 86,167, 63,251, 31,137,152,231, 21,250, 77, 43,169,230,241,252, 58,148,254,254, 9,165, - 39,190,160,244,194,100,122,103,227, 72,218,204, 75,100,186, 62,177,242, 51,186,193,239, 15,179,186, 86,248,165, 86,117,250,179, -255,137,231,115,189, 66,135,182,116,211,108, 94,191,146,222,190,125,155, 62,121,242,132,190,124,249,146,158, 56,180,143, 54,171, - 38,125,165,249,179,255, 17, 75,186,107, 0,208, 92, 36, 18,229,175, 88,177,130,222,186,117,235,181,230,145, 35, 71,168, 84, 42, - 85, 1,102,182, 66, 6, 8, 93, 23,240,137,113,189,223,181,153,237,229,249, 25,199, 38, 83,250,120, 27,165,191, 4, 82,186,181, - 49,165,251, 62,166,244,232, 48,122,107,101,111,218,220, 75, 96,160, 27,252,174,210, 45, 1,237,205,205, 39,159,207,207, 61,120, -240, 32, 77, 76, 76,164, 87,174, 92,161,247,238,221,163, 97, 97, 97, 52, 54, 54,150, 30, 63,126,156,242,249,124, 13, 0,139, 91, - 41, 54,118,134,103,144,143, 32,233,225,226,230,148, 30, 30, 64,211,118, 13,162, 93,107, 42, 50,155, 84,230,181,123,139,214, 86, -117,237,237,237,211,143, 31, 63, 78,163,162,162,232,229,203,151,169,147,147, 83, 58,128,192,127,250,250, 12, 10, 10,186, 77, 41, - 13,238,210,165, 75, 48,128, 83, 65, 65, 65,193,145,145,145,193,141, 26, 53,186,133, 50,186,112, 40, 75,243,163,143, 62,210, 83, - 74,105,151, 46, 93, 40,128,196,160,160, 32, 26, 25, 25, 73, 27, 53,106,164,123, 71,173,215,184, 0,134,241,249,252,205,118,118, -118, 23,109,109,109, 47,112,185,220, 95, 0, 12,182,228,121, 87,130,102, 37, 0, 1,120,213, 95, 82,131,130,239,110, 96, 91, 16, -254, 55, 90, 69,154,187, 96,111, 47, 52,255,172, 26,185, 60,176, 42,242, 6, 84, 69,254,231,222,228,218,167, 94,104, 87,145,209, -182, 11, 13,214,209,163, 71,105,229,202,149,149, 10,133,226, 26, 0,159,138,140,224,109,107,107,123,138,203,229,246, 41, 33,173, - 95,209, 52,107,107,235, 16, 27, 27,155, 28, 43, 43,171,151,230,228,211,202,202, 42, 76, 42,149, 42,173,172,172,194,138,117, 9, -208,195,222,222,254,120,177,180,238,197,211, 74,219,119, 23, 23,151,184,196,196, 68,154,150,150, 70, 61, 60, 60, 18,139, 27,175, -228,228,228, 55,140,151,165,163,151,243,120,188,118,142,142,142, 7,202, 75, 43, 75,211,217,217,249,119, 30,239,205,135,127, 73, -105, 21, 25,101, 29,128,111,165, 74,149, 82,151, 47, 95, 78,229,114,121,106,209,121,126,173, 62,255,254,246,243,252,220, 47,166, -252,188,207,177, 70,207, 90, 21, 25,185, 29,128,143, 66,161,184,230,233,233,169, 60,127,254,124,153, 6, 11,255,214, 81,235,247, -215, 16,208,141, 53,154,211, 13, 53,142,135,205,246,124, 58,172,177, 76, 27,188,188, 11,165, 23, 38,211, 91, 63,127, 65,155,122, - 9, 95, 25,161,141,254, 39,233,175,190,173,232,234,106, 66,179, 52, 55,123,183,164, 27,253, 79,134,206,242,124,250, 73,125, 71, -221,238,109, 27,233,139, 23, 47,232,145, 3,187,104,147,170, 5,230,106, 67,141, 51,244,231, 26,109,205,210, 44,193,100,109,217, -178,133,190,120,241,130,254,241,199, 31,102,153,171, 55, 52, 1, 66,127, 14,232,105, 92,239,119,109, 90,144, 60,251,139,198, 98, -237,128,186, 66, 93,143, 64,129,190, 67,117,129,177,153, 39,207, 84,199,149,195,212,112, 4,237,224, 39,209,210, 13,126, 87,233, -134, 26, 29,205,205,167, 80, 40,140, 69,145, 62,113,138, 79, 34,145, 40,173, 52,131, 85,222,121,111,236, 12,207, 32, 95, 81,210, -249,121,237,104,183,218,138, 12,115,204, 85,121,154, 0,234, 58, 56, 56,164,111,221,186,149, 58, 59, 59,167,153, 99,174,254,142, -235,211,218,218,122, 71,126,126,126,240,233,211,167,131,131,130,130,130,119,236,216, 17,124,237,218,181, 96,169, 84,186,163,180, - 46, 28,106, 0, 29,203,210,180,178,178, 10,206,203,203,163,167, 79,159,166, 65, 65, 65,116,199,142, 29,244,218,181,107, 84, 42, -149, 6,191, 87,247, 38,171,201, 78, 21, 49, 88,239,242, 4, 0,160,131, 7, 15, 86, 73,165,210, 20, 0,221,255, 75, 23,159,131, -131,195, 13,103,103,231, 20,103,103,231, 20, 71, 71,199,251, 37,165, 59, 56, 56,220,255,144,111, 60, 0,190, 2,129, 32,134,207, -231, 63, 43,154,238, 24,208,189,169,119,243,161, 51,157, 3,187,119,126,219,124, 2,232, 46,149, 74, 83,122,245,234,165,252,224, - 12, 22,165,160,171,171, 9, 11, 77,214,227,153,158, 97,221,106, 74,245,191, 76,232, 64,155, 86, 41,102,174,182,122,138, 44,210, - 44, 48, 89, 15,102,120,132,181,245,149, 27, 23,205, 28, 79,155, 84,149,188,105,174, 44,209, 44,102,178,164, 82,105,222,236,217, -179,205,142, 92,253, 73,115,179,159, 7,253,217,127,231, 43,243, 84,222, 84, 99, 51, 93,235,231,241,190,156,247,198,206,240,252, -200, 87, 20, 98,110,228,202, 28, 77, 0,117,109,109,109,159,154, 27,185,250, 59,246, 29, 64,135,209,163, 71, 7, 71, 70, 70, 6, -191,124,249, 50,248,218,181,107,193, 61,123,246, 12, 6,208,161,164,126,178,244,189,122,105,235,114, 56,227,203,209,236, 63,122, -244,104, 26, 25, 25, 73, 95,190,124, 73,175, 93,187, 70,123,246,236, 73, 1,244,103,141, 11,107,176,222,215,233, 31,169, 1,172, - 80, 40,238, 31, 60,120,240,148, 90,173, 94, 64, 41,213,254,151, 10,145,211,210,210,154, 89,146,254,129, 86,100,124, 6,192,243, - 79,149,246, 67, 14,223, 4,112,243, 29,109,227, 8, 33,228,204,169, 83,167,102, 40, 20,138, 78, 31,220, 65, 28, 27,161,195, 26, -239,123, 16, 10, 23,215,172, 36,157,250,125, 23, 74, 22,157,190,225,185,164,151, 83,108, 51,111, 89, 20,248,204,143, 32,218, 59, - 24, 22,173,181, 80,243, 14, 36,134,197,117, 42, 75,167, 46,236, 1,242,227,201,109,158, 75,123,218,199, 54,171, 38,143, 5,197, -143, 16,169,110, 90,164,249,230, 57,185, 78, 8,233,188,124,249,242,237, 42,149,106, 4,165,244,162,229, 15, 15, 78, 50,148,134, - 89, 48,112,107,130, 66, 88,198,198, 84,224,224, 9, 50, 56, 41,239,203, 41,187,149, 76, 99, 0, 4,190,227,123,233, 1,128, 26, -239,217,253,125,134, 16,130, 93,187,118, 13,242,247,247,175, 22, 26, 26,250, 82,165, 82,237,164,148,158, 41, 90, 87,137, 16,114, -244,199, 71,143,148,107, 67, 67,175,235, 24,230,122, 57,154,123, 10, 52,191,243,247,247, 15, 12, 13, 13, 13, 81,169, 84,203, 41, -165,123,216,170, 73, 44,239, 43,255,136,193,202,205,205,173,207, 30,122,150,191,225, 65,175, 5,240,125,193,244,225, 81,196,100, -213,247,144,140, 61, 56, 90,162, 2, 37,241,224, 51, 43, 45, 54, 87, 37,152,172, 70,158,146,111,255, 24, 37, 81,129, 34, 25, 20, - 63,189,141,185, 42,106,178, 0, 84,173,176, 64,239, 80, 61,128, 40, 16, 18,141, 57, 40,189,114,244, 28,188,254,155,205,242,207, -152, 44, 0,103,202, 89,134, 2,184, 80, 48,153,163,185, 7, 0,107,168, 88, 88,131,197,194,194,242, 55,153,172, 3, 1,119,145, -206,157, 8, 14,170, 2,198, 24, 40,141,201, 24, 27,173,123, 75,205,219, 72, 39,223,128, 11, 95, 8,141, 17,200,215, 37, 99,244, - 91,104,254, 5,111,112,188,170, 27, 85, 50,179,217, 75,131,133,133,133, 53, 88, 44, 44, 44,111,195,171,168, 78,124,193,244,254, -106,178,176,176,176,252,135, 32, 0,130, 74,249,131,120,206,108, 17, 66,130, 42,240, 7,244, 28,171,201,106,178,154,172, 38,171, -201,106,178,154,255, 45,205,242,180, 45,241, 31,239, 53,255, 68, 43, 66, 86,147,213,100, 53, 89, 77, 86,147,213,100, 53, 89,205, - 15,121,226,128,133,133,133,133,133,133,133,133,229,157,242,143,214,193,146, 58,248,186,130,199,169, 77, 24,234, 15, 0,148, 67, -194, 96,100, 30,169,210,159, 37,189,173,182,162,146,159, 29,133,112, 63,129,174, 79, 94, 66,120,230,219,234,213,242,179,238,229, -236,160, 24,148,156,145,179,253, 73, 88,222, 97, 75,214,181,177,169, 98, 45,182,179,237,173,213, 27,106, 10, 5,130, 88,125,118, -238, 47,153,153, 17,121,236,229,199,194,194,194,194,194,242, 31, 51, 88, 85, 2, 91,222, 21,139, 37, 94, 0,192, 80, 10,134, 2, -202,220,236,224,164,136,187, 29, 1,192,209,171,254,105,190,216,170, 62, 67, 95,205, 55, 49,128, 81,175,137,202,137,190,213,208, -156, 13,203,157,252, 62, 9,234, 16,212,171,107,215,143,253,106,213,172,229, 13, 0,143,159, 60,142, 56,118,236,120,184,220,201, -239, 96,126,106,248, 31,111,179, 99, 20,226, 31, 26, 52,168,219,226,222,189,251,243, 0,124,245,182, 7,202,222, 94, 62,246,204, -239, 19, 91,125,212,107,153, 12,128, 69, 6, 75,108,103,219,187, 71,183, 78,117, 39,141, 27,205,249, 98,226, 66,175,187,215, 47, - 45, 81,184,213,204,166,140,225,140, 50,165,223,213,210, 6, 52,102, 97, 97, 97, 97, 97, 97,249,192, 12,150, 88, 44,241,186,117, -233,152,221, 31,215,226, 0, 0, 65,245, 92, 48,125,254,154, 14,132,144,112, 0,232,254,197, 28,223,121,211,198,225, 70, 72, 42, - 40,165,168, 91,221, 30,157,123,244, 49,107,163, 18,151,128,134,253,250,246, 29, 56,113,226,119,221, 95,188,120, 17,189,123,247, -238,171, 0,208,178, 85,171,234, 11, 23, 46,236,187,204,214, 78, 36,113, 9, 72, 80, 39,135,222,173,200, 78, 73, 42,121, 87, 10, -240,169, 61,104,239,175,107, 56,109, 58,126, 58, 64, 82,201,123,145, 58, 33, 34,193,156,117, 29, 29, 29,191,225,243,249,214, 0, -192, 48,255,247, 61,213, 42,115, 93, 0,192,104, 98, 20,118,149,252,243,184, 2,177, 73, 36, 18,132,230,229,231,111,207,137, 15, -221, 92,150,166,214, 96, 8,252,118,204,103,156, 7, 47, 51,224, 21,216,146,187,114,209, 12, 48, 38,131,237,248,105,243,123,223, -187,189, 23,192,236,203,236,165,200,194,194,194,194,194,242, 31, 48, 88, 0, 32,151,240, 16, 30,153, 12, 0,176,145, 0, 99, 71, - 13, 69, 70,122,154,175,206,200,224,243,161,131,113, 63, 44, 9,225, 81,105,160,148,194,215, 93,106,246, 70,185, 96, 26,124, 62, -252,243,214,167,207,156,185,243,253,204,239,127, 35,228, 85,239,221, 27,127,217,212,116,214,236, 89, 35, 6, 15, 29,220,254,192, -129, 3, 33, 40,111,164,234,210,118,138, 40,214, 44, 93,188, 64, 24,159,174,209,124, 51,113, 42,243,221,132,111, 86, 2,248,212, -156,117,249,124,190,117,124,124,188,156,195,121,179,122,218,143, 11,166, 94,105,223,107,217,243,232,216,236, 7,167,143, 28,105, - 24, 16, 16,128,248,132,228,230, 75, 86,109,168,227,234,221,240,179,188, 92,117, 47,101, 90,104,137,189, 70,139,248,252,144,185, - 75,126,174,203,216, 84,231, 76, 31,209, 5,129,222,110, 72, 72,205, 70,171,142,221,121,193,119,239,118, 0,192, 26, 44, 22, 22, - 22, 22, 22,150, 15, 8, 14, 0, 16, 66, 74,236,176,207,100,162, 8,143, 74, 66,120, 84, 18,238,132,165, 65, 79,249, 88,185,100, - 46,150, 47,154,141, 76, 53, 7,127,220,136,195,179,168,100, 60,139, 74, 70,122, 86,254,159,214, 47,222,212,114,249, 98,105,189, -149, 43,173,151,118,104, 37,107, 99,103,107,107,251, 60,228, 55,229,172, 9, 41, 53,230,126, 27, 39,224,235, 68,241, 50,185,172, -217,254,253,251, 2,156, 29,157,100,114,185, 98,178,204,189,238, 22, 27,155, 58,214,101,105, 22, 71,234, 92,163,123,247,143, 59, -181,115,113,113,102, 70,175, 12, 14,171, 89,195,223,224, 83,221,167,185,212,217,183,123,105,235, 20,213,100, 24, 6, 28, 14, 7, - 41, 41, 41, 72, 76, 76, 68,100,100, 36,158, 61,123,134,184,184,232, 20,134, 82,190, 9, 12,199,213,213, 29, 60,158, 16, 94, 85, - 60,241,243,202, 69,210,249,115,166, 55, 18,203,132,135, 9, 33,164, 36, 77, 77,102,214,129, 19,167,206, 36,156,220,253,179, 9, - 0, 82,179,242,113,225,238, 11,220, 15,141,179,232,100,253, 21, 77, 87, 89, 77, 86,147,213,100, 53, 89, 77, 86,243,125,208, 44, -205,139,252,171, 13, 86,105, 68,196,101, 34, 60, 50, 25,245,253, 43,193,187,138, 43,238, 60,203,194,206, 11,113,216,114, 58, 6, - 23, 30,166,129,225, 41,144,156, 11, 60,143, 78,193,243,152,244,178,250, 85, 6, 0,112, 69,252,126,223,126,155, 51,177, 86, 64, -110,147, 75, 39,199,162,146,227,243,128, 41, 83,178,199,114, 69,252,126,182,149, 21,187,167, 78, 28, 63, 72, 33,149, 10,117, 90, - 29,170, 85,245, 20,143,251,122,236,103,196, 86,180,219,220,157,177,114, 15,176, 21, 73, 36,155,231,207,153, 44,250,233,143,231, -177, 74, 29,148, 7,111,166,188,252,110,234,172, 76, 30, 95,252,179,149,123,128,173,185, 90, 6,131, 1, 90,173, 22, 58,157, 14, -122,189, 30, 9,113, 79,187,159,255, 99, 82,199,170,149,237, 58,138,196, 98, 80, 0,185,106, 35, 34,147, 84,104,251, 81,123,110, -253,122,245, 2,229,174, 53,134,151,164,149,157, 29,157,195, 80,174,226,216,161, 93,220,125,103, 31,224,183, 99,119,113,248,226, - 3,220,185,124,210, 72, 25,195,235,225, 36, 20,110, 62,190, 10,183,218, 49,138, 74,117, 82, 94, 79,238,181,238,177,255, 3, 88, - 88, 88, 88, 88, 88,254, 93,148, 90, 68,168,209,168,163, 62,237, 55, 24,174, 78, 46,242, 30,109,134, 9,130, 35,178,145,150, 20, -131, 23,207,158, 64,165, 49, 64, 96, 91, 21, 16,187,160,138,151, 39, 30,133, 31,214,175, 94,122, 60,159, 49,106,163, 74,211,235, -209,195,205,221,213, 81,198, 89,186,196,227,214,179,240,172,250,187,102,110,197,192,129,114,135,165, 75, 60,110, 69,191,148,113, -164, 98,218,236,179,161, 3, 8,135, 80, 76,153, 50, 17, 61,186,118,194,231,159, 13, 33,219,183,111,107, 98,238,206, 48,224,175, -157, 54, 99,174, 48, 37,219,168,187,243, 44, 95, 43,149, 73, 36,215,159,231, 43, 3,189, 60, 36, 93,122, 13, 75, 60,190,127,243, - 79, 0,134,154,163, 85,104,172, 12, 6, 3,244,122, 61, 0,152, 0,128,195,121,245,153,145,167, 67,106,182, 22, 41,217, 90, 24, - 77, 12,122,245, 27, 42,185,123,239,225, 80, 0,165,212,199, 98, 24,131,209,128,131,103,239, 35,225,238, 1,134,112,184, 57,133, -149,220, 11,205,149,139,139,199,149,174,189,134, 56, 10,197,175,138, 91,243,148, 90,108,223,176,132,189, 74, 89, 88, 88, 88, 88, - 88, 62, 20,131, 21, 29,114,181, 33, 0,248, 53,236,152, 33, 23,243,236,120, 28,130,148,248, 8,108, 95,246, 13, 24,134,162,203, -136,165, 80,120,185, 64, 34,224, 66,155,159,145,159,241,226,146,125, 89, 27, 34,196,208,126,221,198, 4,175, 47,199, 84,179,218, -181, 43,159, 15, 0,187,118,229,243,199,140,174,108,181,126, 99,148, 87,227, 22,245, 65, 77, 38,116,237,241, 41,250,245,239,135, -232,100, 21,126,191, 18, 11,165, 90,103,214,248,103, 82,199, 26,117,156,220, 42,117,250,118, 88, 39, 25,143, 75,136,143,167, 53, - 55, 46,205, 96,228,114,249,166,163,119,115, 18,123,245,234,239,112,225,196,190,118, 82,199, 26,117, 84,105, 79, 31,150,167,167, -213,106, 97, 50,153,160,213,106, 97, 48, 24, 96,231, 80,245, 68,251, 79,151,197, 39, 37,231, 29, 79,206,210, 52, 86, 26,140, 72, -201,214, 34, 53, 91,139,108,165, 30, 46, 10, 91, 24, 13,186, 90,165,233, 81, 74,127,235,249,233,224, 33, 0, 56,132, 99,220,154, -151,248,244, 89,225,188, 66,115,213,169,199, 64,199, 43,193, 17,120,113,239,100, 22,101,140,134, 87, 7,142, 97,135, 42, 97, 97, - 97, 97, 97, 97,249,151,193,249,191, 1, 34,180,180,242,207,132,148, 76,216,203,121,112,116,243,194,160,111,150, 3, 0, 76, 38, - 3, 40, 5,140, 38,243,122, 24,160,148,127,246,171, 49, 94, 81, 85,188, 72,206,160,129, 82, 53, 0, 12, 26, 40, 85, 87,241, 34, - 57, 95,141,241,138,202,211,200,245, 70,147, 9,215, 67, 82,177,116,239, 83,204,218,246, 24,167,238,153,223, 29, 22, 87, 40, 24, -179,100,241, 34, 1,143, 75, 72, 72, 76,126,126,124,134, 49,159,203,231,235,165, 82, 33,213, 81,158, 54, 58,157,102,124,212,243, -179, 23, 28, 46, 25, 94,150, 78, 97,203,193,194, 34,194,194, 8, 22,165,148, 18,128, 97,136,201, 20,159,174, 65, 92,154, 26,113, -169,255,159, 82,178,180,165,150,144, 42,220,124,124,173,173,228,167,108,109,172, 62,179,177,182, 26, 42,147,216,158, 86,184,249, -248, 22, 55, 87,183, 66, 18, 17,241,224, 92,138, 73,175,234,155,151,240,208, 57, 47,225,161,115, 94,252,227, 6,236,101,202,194, -194,194,194,242, 95,160, 44, 47,242,175, 52, 88,148, 82, 82, 56,253,217, 24, 1,207, 99,210, 33,228, 49,112,175,226, 13, 90,196, - 70, 80, 0, 70,147,121,199,225,240,225,196,248,106,213,149,204,228,201,177, 77,107,214,178,127, 52,102,116,229,176,154,181,236, - 31, 77,158, 28,219,180, 90,117, 37, 99, 48,242, 77,180,160,191,173,194,190,181, 10,186,227, 55,119, 87, 26,213, 9,168,202,157, -187,235,121,236,151,235,159,133, 11, 4, 2,131,187,131,148,120, 58, 75,185, 30,142, 18,161,214,192,209,250, 6,214,211,129, 67, -234,153, 99,176,116, 58,221, 27, 83, 70, 90, 68,247, 51,191, 79,236, 81,201,217,118, 88, 66,154, 26,177,169, 42,196,165,169, 16, -155,166,130, 74,107,196,227,167, 47, 1,174,224, 73, 73,154, 86, 10,187,211,187,119,254,230, 81,167, 70, 53,167, 0,223, 42, 78, -155,183,253,230, 33, 22,219,156, 86,184,249,248,122,120,249, 5,223, 62,183,207,241, 86, 72, 34, 98,194,239, 37, 27,181,185,187, -149, 41, 97,231,217,219,140,133,133,133,133,229,191, 68, 89, 94,228,223,136, 89, 61,185,123,186, 59,227,246,147, 40,212,242,175, - 10,107, 43, 5,194, 34,226,193,229,240,193, 33,128,193,104,190, 9,162,122,195,222, 21, 43,172, 17, 19, 37,227,172,255, 57,202, -235,171, 49, 94, 81, 43, 86, 88,223,164,122,195, 94, 0,131, 41,125, 53, 54, 98, 97,199,166, 38, 11,186,223,164,140,161,178,179, -157,148,123,239,165, 50,131,195,225,106,237,173,197,140,189,181,136, 99,175, 16,242, 5,124, 46, 99,164, 28,189,187,147,151,134, - 50, 76, 29,115,244,138, 22, 17,154, 76, 38, 16,194, 49, 21, 24, 48, 89, 92,134, 26, 57, 26, 46, 82,178,181,200,202,211,195,167, -146, 12,231, 46, 28, 80,153, 12,234, 93, 37,105,113,249, 2,107,111, 47,119, 76,255, 97, 5,212, 90, 19,158, 39,228, 67, 32, 18, -185, 56,187, 4, 62, 28,252,229, 84,209,184, 95, 34, 48,188,157, 61, 38, 92,141, 72, 80,165,136,167,178,183, 25, 11, 11, 11, 11, - 11,203,127,192, 96,201,165, 98, 80,174, 24, 87,131, 35,224, 23, 80, 27,219,142,220, 65,245, 90, 77,144,148,103, 4, 5,167,220, -214,131,133,124, 55, 85,117, 31,192,253, 30, 61,220,220, 63,249,164, 82,123, 74,249,103,215,111,200,137, 7,128,159,247,180, 6, - 5,192, 48, 20,148, 2,148,121,101,180,204,134,240, 98,162,146,114,171,120,185,200, 16, 26,175,215,202, 68, 2,142,173, 76,200, -117,180, 22, 10, 4, 60, 30, 76,148,104,147,146, 34,180, 4,136, 54, 71,174,176,104,176,240, 83, 42,119, 61,241, 81,207,165,105, -209,177, 57,247,124, 50, 85,117,114,244, 66, 80, 10,248, 84,146,225,201,173,227,166,148,132, 23,207,213, 41,225, 27, 74,210, 98, - 24,112,245, 70, 6, 15, 95,230, 32, 91,105, 64,118,190, 30,205,219,118, 19, 52, 15,234,142,171, 79,210,193, 24, 13, 88,178,233, -120,158,137, 26,250, 81, 26,106, 96, 47, 75, 22, 22, 22, 22, 22,150,127, 55,102, 13,246,108, 98, 40, 28,236,237, 32,150, 89, 33, - 42, 69,143, 60,226,132, 44, 21,133,201,244, 42,130, 85, 90,160,137, 16, 18, 84, 82,250,225,195,137,241,135, 14,165,109, 57,124, - 56,177, 72, 5,238,255, 71,174, 94,127, 50,212,108, 77, 66, 77,231,142,156,188,148,211,189,177,163, 45,135,203, 85, 11,248, 28, - 45, 79,192,213, 11,120, 28,131,128,199,209, 57, 91,241,185,151,142,238, 17, 82,130, 75,229,105,106, 52, 26, 4, 5, 5,161, 75, -151, 46,232,209,163, 7,250,244,233, 3, 95,223, 26, 78, 28, 46,209, 81,194, 48,142,194, 60,120, 59, 18,240, 52,113, 56,191,231, - 71,213,147,235,135, 30,154,180,154,110,180, 72,153,230, 27,154,148, 50,153, 57, 90,104,244, 38,100,229,235,145,165,212,195,232, -216, 20,135,110, 36, 66,173, 51, 33, 38,248,128, 58, 45, 57,254, 27, 77,202,243,168, 50, 61,100, 41,251,254, 54,176,154,172, 38, -171,201,106,178,154,172,230,251,160,249,161, 97, 70, 4,139,162,154,171, 12,213, 43,201,160,209, 59, 65,163, 51, 65,169, 49, 33, - 87,165, 71,174,202,128,168,100, 21,158, 28,121,251,140,188,138, 90, 1,164,224, 59,200, 43, 99,103,110, 12, 75,168,215,253,176, -124,201,194,190,123,234,213,213,141,251,216,181,242,163, 40, 93, 34, 33, 28, 53,135,203, 51,216, 41,120,252,176,176, 71,105, 55, -175,156,104, 37, 54,154,134,148,165, 99, 52, 26,115, 42, 85,170, 4,224,205,161,114,106,120, 75,122, 92, 63, 62,165,106,235,238, - 75, 28,127, 90, 48, 81,197,225, 10, 24,194, 19, 60, 49, 25,212,187,213, 41,225, 63,211, 50, 42,140,113, 4,226,167,183, 31,132, - 54,177,177,171,140, 23, 9, 74, 40, 53, 70,232,141, 12,108,229, 2,196, 63, 62,173,143, 10,187,183, 47, 47,225,225, 54,246,114, -100, 97, 97, 97, 97, 97,249,143, 24, 44,141, 70, 19,213, 34,168, 27, 24,134,194, 68, 1,198, 84, 16,105, 98,254, 31,109, 50, 25, - 52, 81,111,155, 17,134, 49,221, 89,251,203,150, 46,245, 26,181,230, 6,120,200,145,155,145,140, 91,215, 47, 26,193,208,155,230, -172,159,158,254, 44, 95,234,226,243,105,223,222,159,236, 31,250,249,232,236, 86,109,219,202,156,156, 92,180,241, 9,241,170, 95, -119,236, 52,156, 62,113,184, 21, 3, 99,255,244,244,231,249,101,233,100,103,103,175, 42, 41,253,163, 22,149,155, 3,168,202,229, - 17,157, 42,245,153,204,146,125, 75, 79,136,235,181,240,135, 57,209, 3, 71,140, 23, 86,171,228,141,212, 28, 46,162,226,147, 17, -118,229,176, 54,225,217,221, 63,114,227,239, 15,103, 47, 69, 22, 22, 22, 22, 22,150,255,144,193,138, 13,125,213, 31,214, 95, 77, - 94,114,234,224,109,219,126,155,255,219,142, 61,205, 53, 58, 93, 37, 10, 65,156,201,168,187,156,111,194, 44,115, 53, 84,201,207, -239, 57, 56,248,214,252,117,211,218, 25,191,110, 89,223, 26,140,201,159, 0,209,148,224,146,216, 96, 26, 90,158,185, 42,219,192, -229,109,108,255,233, 50,117, 70, 70,254,111,150,174,171, 74, 15, 75,150, 59, 87,171,188,113,229, 15, 75, 57, 28,110, 7,147,137, -225, 51, 38,195, 11,147, 94,243,163, 58, 45,252, 8,181,172,185, 36, 11, 11, 11, 11, 11, 11,203,191,221, 96,253, 93,100,102, 70, -228, 1, 24,247,182, 58,233,233,207,242, 1,188,243,150,120,143,159,229,252, 14,224,247,138,174,159,159,242, 50, 13,102,246, 34, -207,194,194,194,194,194,194,242,239,134,195, 30, 2, 22, 22, 22, 22, 22, 22, 22,150,119, 11, 1, 80, 98, 75, 0, 75, 70,202,174, - 72,107,130,242,244, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,240, 52,203,211,182,196,127,188,215,208,130, 30,211,255, -138, 9, 64, 16,171,201,106,178,154,172, 38,171,201,106,178,154,172,230,127,109, 98,139, 8, 89, 88, 88, 88, 88,254,115, 56, 56, -248,202, 29, 28,124,229,230, 46, 47,115, 12,112,150, 57, 6, 56,179, 71,142,197, 92, 88,131,245,150, 16, 66,136,159,151,124,108, -135,214, 85, 15,249, 87,147,246,248,167, 52,229,206,213, 28, 21, 30, 13,175, 91,185,215,236,252, 23,236,163, 40, 48, 48,176,105, - 96, 96, 96, 83, 66,136,232, 93,104,202,156,253, 6, 84,246,105,122,197,217,187,222, 69,185,139,111,239,119,157,103,133,155,143, -189,194,163,193,239,138, 74,117,178, 20,110,117,114, 21,149, 27, 92,182,114, 12,168, 86,222,122, 30, 61, 22,249,207,219, 19,178, -219,163,199, 34,255,146,230,219,117, 94,163,152,179,247,197, 2,135,238, 75,228,236,213, 95, 49, 60, 90, 12,180,113,107, 51,209, -222,210,245,220,253,154,134,120,213,108,149, 90,201,183,201, 19,115,215,169,236,223,236,126,149,192, 22, 41,149,253,154,221, 99, -143,188,121, 72,156,170, 53,149,216,121, 30, 23,219,121,158, 16,219, 87,107,251,182,122,110,110,110,146, 26, 53,106,116,106,218, -180,233,168,160,160,160,111,235,213,171, 55,178, 74,149, 42, 29, 8, 33,255, 88, 35, 43,153,179,223, 52, 45,159,164,107,249, 36, - 93,230,236, 55,173,252,231,171,255,124,194, 49, 37, 18,142, 41, 81,238,236, 63,255,125, 57, 87, 98, 23, 63, 79,153,179,223, 10, - 43,215,192, 59, 82,103,223,110,150,174,111,103,103,215,193,201,201,169,103,225,100,103,103,215,129,189, 3,222, 29, 22, 95,224, -132,212,231,203, 93, 13,223, 10,197,146, 97, 28, 14,172, 82, 95,220,170,244, 62,239,160, 99,181,198,247,184, 28,174,123,209, 52, - 19, 99,138, 79,123,121,187,193,187,208,247,171, 34, 25, 62, 99,242,224, 9, 3,250, 6,121, 6,117,253,134, 0, 56, 92,226, 11, -223,163,225, 13, 66, 56, 85, 57, 4,224,112, 8, 56, 4, 0,104, 98,250,203,219,245, 42,170, 89,136,181,147,119, 85,161,220,241, - 74,139, 30, 95,185, 4,159,219,185, 77,230, 24,208, 94,153, 22,250,232, 29, 24, 43, 71,111,111,239,134,190,190,190,246, 99,199, -142, 21, 0,192, 79, 63,253, 84,189,122,245,234, 25, 17, 17, 17,119, 41,165,105, 21,122,184, 57,249, 15, 94,181,108,222,111,157, - 59,119, 65, 98,186, 18, 75, 86,172,107, 35,119,241,237,147,159,252,236,192,187, 56, 39,182,182, 85,173,120, 86,182,143,191,153, - 60,207,169, 83,155,134,220,124,141, 17,167,174, 60,104,185,115,221,188, 59, 86,142, 1,141,114,211, 66, 95,150,182, 46,163,202, -153,233, 44,167,157, 24, 85, 14, 0, 12, 40, 62,191,146,220, 16,228, 40, 49,117,114, 21,241, 30, 0, 56, 88,110, 94,188, 90,156, -230,139, 68,158, 28, 14, 7,133,231,158, 75, 94,157,127,131, 94, 29, 19,255,244, 74,199,247,225, 62,177,242,108,156, 12, 46,207, -158, 67,254,159, 63, 82,112,157, 18, 74,115,147,158, 93,181,127, 7,215,147,117,205,234, 54,129, 31, 55,111,241,235,229,200, 76, -153, 71,235,241,199, 9,229,172,143,185,178,252,161, 89, 47, 19,177,216,246,232,209,163,142,157, 58,117,178,118,174,217,243,178, - 89,127, 60,132,226,128, 99,199,142, 8, 58,117,234,104,193,245,233,215, 30, 28,206, 14, 2,240, 25,134,254,196,101,232,190,252, -140,103, 17,150,118,167, 34,117,246, 31,206, 1, 53,251, 57,195,128,220, 83,165,132,109,169,224,177,229, 74,156,252,134, 73,196, -226,137, 62,126, 53,124,163, 34, 35,158,229,230,230,172, 80,167, 62,219, 66, 41,101, 44, 18, 51, 24, 39,157,187, 26,220,153,199, -231,147, 78, 31, 53,230, 2,184,248, 54,231,221,217,217,185,231,154, 53,107,170, 53,109,218, 20, 0, 96, 52, 26,173,246,239,223, -239,242,195, 15, 63,200,204,185,135, 74,217,223, 74,142,142,142, 30, 66,161,176, 18, 0,232,116,186,132,180,180,180, 88, 74,105, - 66,185,215,132,139,183, 3, 1,111,222,213, 43, 87,120, 0,208,178,101,171,249,158, 45,199,218,114, 5,114,117,137,135, 67,151, - 39, 3, 48,254,214,237,155, 4, 0,154, 52,110, 58, 85,230, 24,176, 86,153, 22,154,242,143,153, 96,103,255,198, 28, 96, 66,243, - 86,237,123,245,235, 63,152, 19,232,227,129, 14,237,219, 77, 1,112,212, 34, 3,192,227, 73,238,220,185,227,205,225,112,184, 70, -163, 81,211,164, 73,147,216,183,201, 87, 37,191,102, 55, 8, 56,149,245, 70,221,166,180,151,247,230, 23,191,246, 8, 33, 92,235, -202,245,102,128,203, 27,193, 48, 76, 92,110,204,221,102,172,193, 42,114,112,172,220,235, 94,235,219,111, 80,205, 31, 38,143, 20, -175,222,113, 22,118, 85, 27,133,102, 70,222, 9,120, 95,119,144,203,225,186,159, 57,115,218, 73, 34,226, 2, 0,242,213, 38,116, - 54,227, 97,107,227,213,248, 18,135, 16,191,194, 33,189, 77, 70,189,152,199, 23,106, 8, 0,144, 87,173, 3, 28,220,170, 92,112, -117,181,147, 14,232, 27,228,185, 99,207,217,248,216,248,140, 82, 31,250, 28, 14,215,253,240,145,163, 78,149,236,197,224,113, 9, -242,213, 70,116,234,210,205, 84,210,178,174,174,118, 31, 15,232, 27,228,185,107,239,185,216,164,164,204,227,101, 62,196, 93,125, -235,203,172,157, 79,245, 26,245,131,189,134, 99,135, 89, 11, 86, 57, 92, 57,185,235,114,235,143, 7, 51, 49, 49,113, 26, 74, 72, -104, 86,102,210,183,249, 73, 47,194,205, 61,199,114,185,188,154, 92, 46,175,211,185,115,103,241,196,137, 19,249,109,218,180,121, - 61,127,228,200,145,130, 75,151, 46,185, 46, 91,182,172,139,155,155,155, 38, 63, 63,255, 97,126,126,254, 75, 74,169,201,220,115, -226,226,226,248,245,167,159,116, 67,187, 94, 95,193,196, 16,140,252,114, 60, 78,159, 60, 56, 26,192, 59, 49, 88, 6,169,213, 15, - 35, 70, 77,116,108,210,176, 46,119,222,174,112, 72,132, 60,116,108,224, 71, 62, 27, 59,211,102,203,234,121,155, 1,180, 46, 41, -114,197,168,114,102,214,116,208,245,239,222,180, 42,142,236,214,245,119, 15,154, 2,142,212,122,126,236,225,105, 97, 0,224,221, -121,156,194, 86, 34, 89,227,102,195,117, 18,153,210,214,120,119, 30,119, 46,226,228,234,188,178,242,194, 23,137, 60,247,236,222, -229, 99, 43, 23,128,203, 37,224,113, 56,224,114, 9,180,122, 19,122,247,233,255,174, 34,140, 92,137,147, 79, 23, 14,240,217,171, - 23, 53,182,170, 83,159,159,176,228,156, 16,174,192,254,216,145, 63,120, 78,214, 34,112,185, 4, 92, 14,192,229, 16, 68,167,168, - 49,124,248,103,214,111,107,212, 59, 55,119,106,120,105,109,235,142, 77,106,218,213,222,123,147, 88, 55,233,220,207, 62, 93, 35, - 29,182,231,240,197,254, 30,173, 38,220,166,148, 89, 26,119,117,229,153,178,116,180, 90,109, 74,199, 78,157,173, 8, 79, 38, 61, -119,104, 91, 43, 30,135,192, 96,162, 48,154, 40, 76, 5, 99,151,190,186, 95, 9, 56, 28, 2,202, 80,140, 24, 49, 28, 29, 59,117, - 86, 49, 70, 38,222,236, 12,115, 56, 59, 78,157,187,238,168, 53, 48, 88,182,102,203, 60,101, 78,218,188,200, 48,251,104,169,179, -239,120, 85,202, 51,179,199,173,224,128, 54,136,123,249,100,212,174, 99,183, 80, 51,160, 6, 76,204,171,124,250,185,203,176,235, -248, 45,248,251,249,191,202, 55, 67,225, 91, 89,142,134, 13, 26, 2,192, 22,203,143,111, 27,158,204,217,127,119,247,222, 67,123, -247,234, 61, 0,118,182, 86,208,233,181,190,231, 79,159,248,229,231, 53, 75,154, 19, 66,134, 89,100, 14,169,233,245,123,129, 50, -204, 91, 71,153,220,220,220, 28, 27, 54,252,127,119,138, 70,163, 17, 94, 94, 94, 72, 72, 72,240,171,192,181, 36,117,117,117,253, -120,227,198,141, 78, 93,186,116,225,187,184,184, 0, 0,146,147,147, 43,157, 58,117,170,158,155,155, 91,106, 82, 82,210,113, 74, -169,170, 52, 13,147,129, 35,224,240,192, 21,139,165,175,246, 17,132, 51,241,235, 33,181,157, 93,221,180, 37, 45,159,150,150, 44, -156,252,213, 69,194,227, 9, 10,150, 7,135, 82,134,148, 17, 21, 10,226,243,249,146,146,230,233,185, 86, 77, 40,223,250, 11, 14, -151,243,234, 98, 53, 26,210, 50, 99,130,107, 88, 16,121, 11,228, 11, 5, 63, 15, 28, 58,170, 89,239, 94, 61,224,234,104,141,115, -215, 30, 97,244,215, 19, 12, 70,189, 97, 69,133,222,145, 92, 46, 47, 53, 53, 53,218,214,214,214,229,237,223,183,164,234,217,211, - 39,157,206,157,191, 48,117,249,202,213, 99,220,124, 91, 26, 24, 74, 95,143, 51,236, 81,179, 29,191,125,215,190, 86, 78,222, 77, -196,171,103,127,193,103, 35, 88, 69,157,191, 91,192,183,125,250,246,173,249,213,232,145,226,111,215, 92,195,249,221, 63,165,191, - 43,115,165,112,242,107, 74,184,188, 81,132,203,149, 17, 14, 17, 50, 38, 38,206,168,211,205, 87,165, 63, 75,122, 91,109, 19, 3, -252,126, 61,213,178, 27,153,162,250,142,125,135,156,156,109, 68,208,232,140,232, 55, 96, 48,118,236,248, 77,225, 96, 37,132, 70, -103,196,210,229,203,243,242,163,143, 59, 69,199,101, 37, 4,117,155,112,230,101, 84,234,147,216, 36,205,190,210, 31, 12, 28, 56, - 89,139,176, 96,207, 51, 88, 73,248,176, 85, 8,192,225,144,162, 15, 14,226, 91, 69,246,117,229,202,142,109, 19,147,178,114,138, -104,238, 44,245,102,115,173,213,209,218,214,109,247, 39,163, 22,216, 60, 79,229,129, 66,143, 8, 43, 49,250, 14, 27,103, 85,205, - 69, 2,153,152,107, 19, 25,147,224, 58,113,210,164,107,214, 78,222,141,114, 82, 35, 34,203,219,239, 42, 85,170,244,234,218,181, -171,244,187,239,190,227, 87,174, 92, 25, 91,119,237,247,108,217,177, 79,183,196,164,148,202,148, 82, 56, 59, 57,197,141,248,172, -207,209, 19, 39, 78,196,196,197,197,241,151, 44, 89,210,248,143, 63,254, 8,176,228,159,168,137, 82,104,180, 38,152, 10, 94,140, -105, 57, 90, 75, 31,178,164, 82,165, 74,162,132,132, 4,109,225,139,131, 16,242,250, 96,202, 43,213,237,248, 81,235,198,188,141, - 39,163,144,175, 49, 65, 38,230, 35, 42, 69,133, 6,117,107,145, 77, 38, 99,157,146, 52,135,247,253,120,166,179,156,118,234,222, -180, 42,156,108,165,248,117,237, 2, 28,185, 25,217, 41, 37,159,192,161,251,146, 81,174, 34, 94,123, 71,169, 96, 77,155, 6,222, - 46,237,234,123,226,110, 3,111,151, 43,193,225,207,106,245, 93, 49, 54, 33,159,127, 46,243,228,216,188,146, 31, 56, 28,216, 41, -132,216,124, 42, 26, 82, 49, 15, 50, 49, 15, 50,209,171,207,162,231,191, 66,255, 98,221, 2, 42,115, 25,211,112, 43,183,128,225, -253,251,246,113, 27,216,191, 15, 5,151,131,253,191, 31,237,177,115,231,142, 36,185,139,223,102, 19,135,187, 69,157, 24, 26, 87, -238, 49,229, 0, 78,214, 66, 76,218,252, 4, 86, 18, 62, 20, 82, 62,172,164,124,180,171,237, 8,110, 5, 43, 18, 16, 66,108, 71, -247,168,214,229,209,111, 65,109,253, 60,228, 62, 15, 35,114, 66,135,207,191,183,242, 82,118,219,111,215,254, 20, 96,159,159,173, -227,205,154, 56,130, 23,159,152,216,118,255,209,203,237,220, 26, 13, 15, 55,234,149,211, 83, 31,238, 43, 49, 98, 27, 23,118,163, -158,123,211, 62, 98,125,190,225,241,195,240,120,239, 44,173, 8, 33,209,185,144,137,121,144, 23, 30, 91, 49, 15, 50, 49, 31,114, - 49, 15,137,241, 81,200, 84,114,175, 37,216,115,218,210, 75, 55,140,150,228, 93,163, 55,225, 65,100, 62,170,248,213,133,171,171, - 27,116, 93, 6, 85,185,125,225,247,195, 50,215, 26,139,148, 73, 79,167,155,171,179,235,216, 45, 76, 29, 63, 42,152, 0,247, 11, - 94,206,245,102, 45, 94, 87,127,222,212,175,222, 72,155, 56,119,117,253,138,154,107,169,179,223,206,214, 31, 15,238, 93,171, 73, - 7,188,140,138,194,201,163,247,240, 81,251,206,232,210,173, 23,116, 58,237,144, 45, 27, 87,223, 5,176,238, 79,207, 92,215, 26, - 45,106,213,172,177,179,146,155, 91,101,134,121, 53, 42, 7,165, 64,139,214,237, 48,249,219, 17, 96, 40, 69,157,122,141,218,117, -233, 63,150,210,130,209, 59,210, 51,210,149,225, 97,161, 65,234,148,176,219,102, 31, 75,141,198,144,150,150,134, 7, 15, 30,224, -217,179,103, 8, 9, 9, 65, 70, 70, 6,172,173,173,243, 45,220, 87,171,218,181,107, 15,188,112,225,130,216,214,214,246,117,186, - 78,167,131, 66,161,192,192,129, 3,249, 29, 58,116,168,244,241,199, 31, 15, 37,132,236,162,148,230,150,164,163,206,120,158,104, -229,226,191,161,117,155,214, 99, 0, 64, 98,229, 26,185,102,235,209,144, 50,239, 53,107, 55,207,102,205,154,123,131, 82, 16,208, - 85,202,244,240,228, 50,162, 66,178, 91,183,110, 85,227,114,185,175,223,175, 12,195, 96,253,175,123,253,207, 94,125,220,107,241, -210,101, 98, 43,153, 8,105, 57, 58,124, 49,232, 19,179,223,193, 82, 23,255, 46,205,155,183, 62, 60,111,238,247, 60,185, 76,134, - 51,183, 95, 98,236,183,147, 52, 73,209, 79,150, 81,134,191, 78,153, 26,158,250,150,175,202,119,210,225,181,143,187, 28,138,238, - 29,197,163,135,116, 23,235, 12, 38,100, 43, 13,208,234, 77, 48, 49, 20, 57, 74, 3, 66, 99,243,224, 96, 37,172,136,116, 67, 0, -142, 0,210, 0,220, 45,246, 27, 5,223, 81,194,239,244, 87, 97, 17,216, 3,208, 1, 40,186,241,194,223,165,165, 23,174, 31, 10, -160, 70,129,166, 9,192, 29, 0, 89,229, 26, 44, 66, 8,165,148,146, 34, 23,241, 27,191,139, 34, 16,202,251, 78, 29, 59, 88,252, -195,174, 96,156,223,189, 48, 61, 45,226,102,225, 14,192,201,187,241,253,212,136, 55,139,187,204,105,106, 41,113, 11,168,204, 35, -220, 21,173,219,180,234, 48,230,203, 47,225, 87,205, 93, 96, 50,153,232,147,103,145,134,109, 91,126, 29,102, 93,185,214,202,220, -248, 39, 51, 11, 67,141,150, 54,223, 52, 49,166,248,226, 17, 43, 19, 99,138, 47, 47,159,132, 0, 54, 50, 1, 54,156,136, 4,165, - 0, 1,133,149,148,143, 61,151,226, 17, 25,124, 48,183,107,157, 92,229,192,197,115,218,181,237, 50,238, 66,104,132,102, 95,106, -170,230, 52,165, 52,185, 52, 77, 14, 1,120, 92, 2, 43, 41, 31,214, 82, 1,108,100, 2,144, 34, 47,174,162,197,130,109,186,140, - 59,123,225,122,204,116, 0,105,148, 82,109, 73,154, 18, 23,159,134, 86, 54,238,251,122,141, 89,162,120, 28,111, 4,143, 11, 84, -117,145,192, 78, 33,128,206, 72, 16,157,166, 47,184, 99,108, 48,118,226, 92,187,169, 19,198,156, 32, 36,160, 38,165,161,250,178, -246, 93,165, 82, 9, 7, 15, 30,204, 55, 24, 12,250,129, 95,124,211, 33, 57, 57,173,199,250, 85, 63,138,156,156,156,161,210, 24, - 17, 28,242,162,198,188,121,115,171, 30, 61,117,233,208,156, 73,163, 15,119,234,212,201,122,239,222,189,140, 37,231, 61, 45, 37, -125,237,175, 59, 15,252,246,211,178,133, 8,143,201,194,150,141,235, 64, 77,198, 13,101,222,249, 69, 52, 41,165,116,250,244,233, -146, 67,135, 14,185,203,100,178, 92,149, 74,149,246, 70,252,129, 67,120, 41,153, 42, 56, 40,132, 16,240, 56,112,182, 21,195,201, - 90, 4, 62, 23,224, 16, 98, 42, 73,115,203,190,227,243, 25, 85, 14,142,236,214,245,255,117,237, 2,124,254,245, 12, 60, 73, 23, -158,226, 72,173,231,127,213,191,215, 84, 71,137,169,147,155, 13,199,169, 93,253, 42,144,137, 5,152, 54,110, 48, 26, 5, 71, 59, - 37,100, 51, 51,210,212,220,186, 0,102,148,120,222, 57, 4, 60, 46,129, 66,202,199,169,157, 75, 83,149, 57,105, 57,133, 69,111, - 58,173, 38,198,172,167, 94, 9,199, 83,230,236, 55,181,126,221,218, 11,198,140, 28,206,105,222,180, 17,229,112,248, 72,207,211, - 17, 74,129,111,199,142,198, 87,163, 71,184,196, 37,166,206, 90,183,110,195, 76,185, 83,141, 31,242, 83,159,206, 41, 75,147, 67, - 94, 69,125,228, 98, 30,228,146, 87,134, 69, 46,230, 65,163, 51,129, 16,112,109, 61,235,231,144, 87,145,219,196,140,232,146,255, -113, 23,215,180,243, 8, 60,127, 54, 82,225,159,181, 47,235,102, 84, 98,200,252,224, 71, 41,119, 40,165,153, 30,173, 39, 12,213, - 27, 41,242, 53, 70, 68,165,168, 96,212, 83,242,121,103, 79,120,245, 38,126, 11,127,189,255, 27, 33,196,170,208, 56, 23,215,140, -191,185, 95,227, 80,171, 87,191,159, 86,111,188,187,108,193, 12,110,122,142, 14, 12,165, 16, 11,185,144, 8,121, 5, 19, 23,106, -101, 14,214,253,188, 41,217, 8,210,139, 94,186,100,180,232,185,196,208, 65,159,116,105,181,135, 0, 66,194, 17,196,187,121, 86, -241,252,168,219, 48,241, 71,221, 7,195,100,212, 77,149, 57,251, 95, 84,166,132,157, 55, 71,179,102, 64, 13, 16,224,126,126, 74, -248,104, 0,144, 59,251,109,240,247,243,175, 95, 60,173,122,117,191,250,230,156,247,130,103, 52, 71,226,232, 51,178,186,127,173, -201, 99,190,223, 88, 37, 42, 73, 5,187,202, 62, 8,121,252, 0, 39,247,174,189,175,206,203, 90,118,242,200,193,201, 63,252,184, -170, 78,183,158,125,113,248,143,189,223, 17, 66,214,211, 87,156, 43, 18,157, 26,180,109,243, 47,149,249, 66, 17, 12, 70, 6, 6, - 19,125,245,105, 52, 33, 51, 51, 11, 6, 35, 3,177, 84, 1, 35, 67, 96, 48, 49, 48, 24, 25,104,117, 70,217,232,193, 31,127, 9, -224,118, 73,249,116,175,209,230,180, 64, 36,242,164,120, 53,182, 44,165, 20, 92,163,142,227,234,234,186, 11, 0, 68, 34, 17, 68, - 34, 17, 24,134, 65,112,120,218,215,142,254, 65, 99, 80, 96,236, 76,122, 93, 76, 86,212,181,142,165,237,187,139,139, 75,183,226, -230, 74,163,209, 32, 63, 63, 31, 87,111,222,181,222,252,219,129, 78, 81, 49,241,213, 24,106,173, 85, 56, 85,235, 8,160, 91,105, -199, 51, 55, 57,236,203,202, 77, 71,114,190,251,106,104,245,213,219,142,221,121,126,234,135, 50,235, 97, 85, 13,154,170,251,110, -212,167, 13, 22,175,218,242, 60,243,218,207,227,203, 59, 71, 60, 30,143,159,150,150,246,250,254, 94,179,105,119,131,251,225, 9, - 61, 87,254,180, 82, 28,252, 50, 15,143,163, 18, 49, 52,200, 3,111,188, 4,202,208,148,187,120, 59,120,123,251,239, 90,183,106, - 49,239,121,162, 6,107, 15,222,193,133,195, 27,174, 38,167,222,238, 68,147, 19,213, 21,121,134,188,173,193, 42, 75,243,226,163, -116,228,107,140,208,234,140, 48, 48, 20,185, 42, 3, 82,179,117,200, 85,233,145,175, 54, 98,104,123,143,210, 76,116, 89,126,196, -145, 16,114,140, 82,218, 21,175,186,151, 18, 22,249, 13, 66,200,177,130,124,189,241,123,234,212,169,211, 23, 45, 90, 20, 82,184, -108, 97,122,225,178,101,165, 23, 89,223,126,218,180,105, 53, 23, 47, 94,188,176,105,211,166,123,110,220,184, 17,105,150,193, 42, -186, 19,132,144, 50, 15,176, 72,192,115,147, 42,108, 95, 25,142,255, 7, 12, 80,165,102,155,140,149, 75,230,217,185,250, 52,137, - 73,122,126,203,211,252,168,149,111, 51,137, 68,122,124,249,242,229,232,223,173,165, 36, 54,221,144,255, 40, 86,157,162,212,193, -232,228,232, 43,156,191,112,177,124,241,146,165, 95, 29, 59,194,100, 3, 88, 90,114, 81, 94,195,123, 92, 82,164,142, 21, 33,160, -140, 41, 62, 51,234, 78, 3, 0,120,155,186, 86, 74,141, 17,220,130,186, 51,132, 0, 42,173, 9, 92, 46, 73,205, 14,223, 23, 58, -240,135,249,237,118,236, 57,155, 72, 57, 54,121, 74,101,148,148, 82, 26, 95,118,132,128, 32, 87,101,128,181,148, 15, 27, 57, 31, -214, 50, 1,184, 69,110,174,194, 98,193, 29,187,207, 36,196,196,100,220, 45, 48, 87,165,106,242,184,156, 72,106, 50,104, 40, 53, - 41,186, 54,116,132,147,141, 16,174,182, 34,136,132, 60, 24,140,128, 90,199, 64,163, 51, 33, 58, 85,141, 60,181, 4,181, 90,247, -169,106,239,122, 79,107,239,217,240, 80, 70,204,221, 94,101,154, 82,147, 9,219,118, 29,168,158,152,152,210,227,196,161,157,162, -180, 92, 3, 30, 69, 43,145,154,173, 5,184,142,152,189,112,173,104,202,248,145, 61,183,237,254, 61,230,163,150,141, 99, 44, 62, -174,169, 97, 59,106, 53,251,120, 67,215,174, 61, 37, 33,183, 79,224,249,131,243, 11,242, 83,204,175,127, 69, 8,225,236,223,191, -223, 56,114,228,200,188,133, 11, 23, 86, 62,114,228,136, 87, 90, 90,218, 3, 0, 6, 27, 27, 27,127,223,234,158, 15,207,156, 58, - 89,233,227,158,125,248,241,233,106, 88, 75, 5,240,116,146,226,230,213,211, 6,161,144, 95, 98,125,146,130, 98,192, 1,238, 65, - 83,112,228,102,100,167,144, 12,241,165, 17,195,135,198,156,185, 18,158,177,230,183, 51, 63, 86,146, 27, 30,136,153,180, 53,247, - 26,120,187, 76, 29, 59, 24,139, 86,239,192,229,224,240, 84, 37,199,117, 65,146,214,120,118, 78,191,201,165,132,204, 95, 25,107, -133,132, 15,101,110, 90,206,139,224,147,190,239, 40,250, 60,244,204,161, 29,156,204, 60, 3,226,210, 53, 36, 49, 51, 15, 38,134, -194, 70, 42,128,145,161,200,206, 76, 39, 59,119,252,134,187,119,111,114,192,229,124, 1, 96, 78,153,197, 89,228, 85,145,160, 92, -204,127, 21, 1,146,188,250, 52,152, 24,248, 85,247,198, 47,107, 86, 88, 57, 56, 57,163, 69, 43,243,235, 60, 43,236, 61,235,236, -217,186, 6,151,110,220,111,115,121,229,218,134,114, 55,199,213, 86,238, 1,203,172,189,218,107,180,122, 19,114,178,179, 32,212, -197,161, 81,165, 52,216, 73, 77,136,206,117,197,147,228,231,242,242,138,179,210, 31, 31,124,224, 88,243,147,153, 7,142, 94, 88, -212,177,125, 27, 60,137,206,133, 68,200,131, 88,200,133, 88,200, 5,159,152,176,226,231, 13,134,172,156,188,174,233, 79, 14,165, - 87,224,250, 60, 87,240,111,247,213,203,205,185,154,227,142,213, 51,183,143,152,188,164, 99,167, 79,134,145, 39,119, 47, 78, 7, -112,222,188, 63,120,212,172, 52,134,161,102, 95,251, 78,222, 13,118,109,221,182,187, 95,128, 79,101,164,100, 27,144,152,165,199, -213,251, 17,216,190,121,102,118, 86,202,203, 65,208,231,231, 51,196,152,115,250,212,209, 83, 95,127, 51, 25,129, 53,235, 84,201, -141,207,181, 2,144,243,198, 54,185,100,227,144,225,163,250, 57, 59, 59, 43,254, 31,193,162,240,245, 11, 64,151,238,159,226,244, -225, 63, 16, 26,242, 8, 12,125,101,148, 24,134, 34, 59, 43, 35,217,104,208,109, 43, 45,127, 66,177,216,243,215,173,191,249,112, - 56, 4,122, 3, 3,157,145,193,248, 47, 63,211,141,254,118,122,139, 46, 29, 90,135, 8,185,200,141,142, 77,178,185,121,255,105, - 45,134, 47,175, 60,124,226, 10,129, 70,107, 66,142,202,128, 19, 91, 74,247, 56, 18, 59,207,166,117,154,245, 28, 62,250,251, 95, - 68, 34, 46, 71, 31,232, 91, 57,178,117,147,192, 56, 15, 55,135,188,121,139,215, 54,186,118,251,126,151,190, 3,135,139,135,250, -215, 39,110,246, 18,197,103, 3, 63,169, 45,179,247, 24,162,204,136, 45,117,104, 51,190,212, 54,219,195,171,186,234,255, 17, 34, -191,131,132,162,234, 27, 38,130, 32, 82,149, 28,222, 11, 0, 92,221, 60, 52,124,145, 85,158, 5, 6,132, 2,192,234, 77,187, 27, - 60,124,150, 56,226,167,159, 86, 74,131, 95,230,225,193,203, 28,136, 4, 28,232, 13, 12,136,153, 65,108,134,114, 71,205,152, 54, -213, 42, 75,105,194,165, 71,105, 8,185,119,145,234,242, 53, 3,165, 70,171, 94, 50,103,191, 33, 0,188, 1, 68, 16, 66, 55, 42, - 83, 92, 14, 83,122,201,104,233,117,207, 48,175,254, 39, 91, 59,121, 87, 53,241, 68, 93,248, 66, 89, 83, 66,104, 32,161,176, 5, -104, 66, 70,193, 59,213, 92,135,166, 76,121,134, 37, 11,103, 97,213,230, 63,144,152,161,129,181, 41, 14,135,183,204,199,119,139, -118, 65,173, 53,149,117,141,151,233, 71, 74, 50, 68,197,141, 86,225,247,194,229, 22, 45, 90,212,181,216,185,233, 90,202, 57,251, -211,114,133,235, 47, 94,188,120, 97,145,249, 42,179,139, 8, 11,119,166,172,157,178,114, 12,168, 38,176,146,139,172, 36,124,120, -121,184,162,255,152, 57, 14, 46, 62,205, 83, 69, 66, 30,247,208,238, 95,236,210,213, 34, 16, 14, 71,105,118,241,134,179,127, 99, -133, 66,113,226,224,239,127,160,154,135,147, 96,231,213,204,168,251,145,234,215, 33,221,220,180, 24,161,151,149,138,215,235,147, - 79,164,231, 47, 92,252,182, 52,131,197, 37, 92,247, 77,191,253,238,164,144,240, 65, 8,144,167, 54, 98,196,144, 79,223,254,245, - 69, 25,238,231,195,134,128, 20,152,171,220,140,100, 76,159, 60, 70, 35, 51, 60, 15,141,141,142, 77, 8,234,246,221,249,220,124, -162,233, 55,248,203,187,161,207, 22,101,149,127,245, 26,226,187,124,220, 69,240, 42, 82, 0,112, 9, 1, 67,153, 20, 63, 47,249, -216, 63, 21, 11, 38,107, 55,149,103,216,242, 18,194, 51, 21,174,181,122,239, 88,254,245, 38, 55,103, 39,123,185, 76, 66,229, 82, - 17, 9,244,247, 17, 52,105,210, 76,232,229, 87, 91,112,245,169, 26,177,105,106, 68, 38,230, 64,228, 92,151,215,191, 93,103,236, - 88, 57,177, 13, 33,132, 83, 94,197,215,179,151,110,117,219,252,243, 79,162,148,108, 61,194, 98,243,145,156,165, 65, 82,150, 22, -201,153, 26,200, 37,124,180,234, 62, 82,116,252,240,198,110, 31,181,108,188,186, 34,135, 55, 50, 50,234,120,116, 66, 82,159,218, -245, 26, 97,199,246,173, 45,109,109,171, 90,101,101, 69,230,154,123,118,230,207,159, 47, 92,188,120, 49,111,205,154, 53,185, 77, -154, 52,113,153, 54,109, 90,199,212,212,212, 59, 85,170, 84,241, 59,125,112,219,133,186,173,122, 52, 4,163,119,108,217,186,173, - 64,196,240,112,230,216, 49,253,190,189, 59, 51,212,234,188,209,101, 26, 13,169,245,252,148,124, 2,199, 74,149, 66,228, 66, 83, -123, 30, 39,251, 89,230,201,177,191, 1, 56,232,253, 63,246,206, 59, 60,138,170,109,227,247,153,173,217,146,222, 59, 16, 8,161, -132,222,123,239, 93,170,160,162, 82,196,130, 20, 21, 68, 65, 80,138,136, 82, 20,165, 73, 71,233, 85,122,239, 53,116, 72, 2, 33, -149,244,178, 37,219,203,156,239,143,148, 55, 96,202, 6,241,243,125,241,252,174,107,175,108,118,103,238, 61,103,230,204,153,123, -158,211,122,126,116,252,212,245,232,152, 38, 55, 18,124, 78,222,120,148,153,171,183,212,124,124,104,114,185, 21,174,128, 16, 8, - 5, 28,156,101, 66,112,133,181,169,115, 96,131, 71, 32,196,187, 40, 82, 74, 64, 10,255, 2,132, 32, 53, 55, 49,202,129, 62, 25, -132,242, 20,136, 78,209, 33,223, 88, 16,130, 15,242,146, 35, 43, 35, 5, 63, 47, 91,143,168,235,215,208,173,103, 63, 44, 95,189, - 25, 99,222, 24, 98,172, 72,141,227, 10, 35, 88, 37,162, 87, 74,153, 16, 0,129, 74,103,197,206,243,201,168, 94,141,115,248,134, - 0, 0,206, 74, 57,212, 90, 3, 56,177, 51, 30,223, 56, 40, 63,116,234,202,244, 47,190, 94,252, 73, 94,218,237,164, 71,119,206, - 33,194, 75,141,106,129, 22,220, 75,119,193,245,156,170,136,168, 17, 6, 78,124,205, 33,237,236,123,245, 22,238,229,118,246,105, -210,176, 78,203, 80, 31, 55, 24,204,246,194, 40,150, 0,235,214,110, 68, 66,124,202, 59,217,247,246, 68,189, 12, 39,155,159, 17, -151,229,228, 27,254,254,157, 43, 39,158, 12,124,253,125,248, 7,134, 52,112,252,166,229,152,153,178, 59, 96,176, 8, 33,156, 71, -149,134, 27, 54,108,218, 62,172, 90,136, 31,142, 93,137,199,213,152, 28,120,121,121, 66, 32,247, 67,120,251,209,110,119, 14, 47, -125,205,144,157,191, 65, 36,150,191,219,188, 69,107, 80, 74, 17,253,224, 94,174, 90,237,250,167,186, 89,159,250,240, 38, 0,151, -103,154,161,188,107, 55, 80,186,122,220, 52, 89,236,120,250, 52, 5, 23, 46,158,110, 84,184,157,195, 72,197, 2, 28,141,202,132, -197,202,195, 98,227,209,174,125, 87,179,152, 51,181,157,187,120,109,139,180,212, 52, 78,225,226,197,123, 4,214, 22,251, 75, 45, -166, 91,113,106,177,197,202, 35, 44, 64, 81,174,166,119, 64,141,121, 83,167, 78,170, 45, 16,203,160,213,153,204,105,169, 79,253, - 86,253,118, 42,255,193,195, 59,129, 65, 62,174, 46,223, 46, 89, 41,214, 24, 9, 50,213, 38,228,106, 53,228,245,113,159, 6,172, -249,105,254, 72, 0, 14,175, 29, 75, 40,170,253,113,244, 92, 45,119,103, 49,201, 55,218,248, 28,141,197,254,250,128,191, 54,136, -178,208, 92,141, 93,252,195, 18,121, 84,156, 22,183,226,212,112, 18, 11, 32, 17,115, 48, 91,121, 56,114, 57, 17, 66,184,106,145, -237,199,183,106, 82, 15, 71,110,102, 67, 32,224, 96,208,230,233,133,200,137,105,210,161,155,188,113,179, 22,232,216,161, 61, 30, -197, 68,135, 28,216,183,179,243,165, 11,103,210,149, 62, 17, 31,228,103, 70,239,174, 84, 57,215,235, 5, 86,137,223,104,255,192, - 42,173, 7, 13, 31,237, 26, 26, 18, 72,124,188, 60, 97,163, 66,140,125,227, 53,135,175,252, 2, 67, 14, 44,248,122, 58, 76, 38, - 51,188,221, 36,160, 20, 88,187,236, 43,152,205,102, 4,120, 74,161,214, 89,203, 51,166,229,250,145,178,162, 78,149,108,110, 62, - 80,154,201,122,254,115, 66,200,129,105,211,166,125, 14,128, 78,155, 54,237,243,162,255,231,207,159,111, 0,144,234,144,193, 42, -202, 84,153, 21,101, 64,120, 77,119,159,128,243,219, 54,252,228,158,151,111,129,147, 88,128,160,224, 80,124, 54,103,169,119,207, - 38, 94,200, 50,202,177,125,199,186, 92,179, 81,191,213,177,182,228,240, 38,206, 10,151, 35, 27, 54,109,229,189, 60, 61,185,159, -143,102,197,229,104,109,197, 77, 87, 49, 87,246,241,215,143,172,242,167, 32,135,157,156,156,106,152,205,102,247,138, 78,232,218, -163,137,133,157,115,201,203,168, 83, 65, 4, 2,251,230,205,155,224,233, 34,129,201,202, 99,218, 39, 19, 13,111,118, 83,170, 94, - 31, 58,188, 83,199, 94, 31,157, 20, 41,194, 79,180,106, 20, 78, 27, 54,108,168, 18, 8, 4, 21,234,229, 60,185,250,167,209, 18, -181,170,202,223,157,241,233,155, 51, 74,105, 22,116,168, 67,174, 54,237,206,121, 0,207, 68, 68, 72,245,234,146, 45,219,247, 78, - 28, 60,116,216, 23,129, 13, 6, 40,227,211,212, 16, 19, 11,154,214,246,199,169,195,187,105, 74, 66,204, 36, 71, 70, 21,101,102, -229, 6,123,123,251, 34,234, 73, 62,158,230, 24,144, 94,104,174,210,242, 76,208, 26,180,168, 31, 26, 0,149, 90, 29,252,194,199, - 23,216,125,228,200,145, 33,189,250, 15,195, 71,159,204,110,243,235, 47,139,110, 43,253,106,190,157,159, 30,115,218,145, 39, 67, - 66, 72,238,103,159,125, 86,125,245,234,213,220,200,145, 35, 13,245,234,213,115, 26, 53,106, 84,155,141, 27, 55, 58,201,229, 78, -134, 91,231,246,125,241,238,135,211,250,175, 90,250, 77,131,188,188, 60, 98,179, 90, 15, 89,242,242,166,105, 43, 48,113, 73,123, -167, 63, 36,117,102,191,213,181,173,247, 62, 15, 57, 87, 87, 74,205,195, 73,157,217, 91,233,253, 89,150,199,135,150,105,235, 13, -253,225,195, 84, 21, 63,195,200,249,204,173,200, 92, 1, 0, 39, 32, 48, 91,121, 56,203, 68,224, 56,174,200,188,251,175,219,122, - 72,238,237, 42,129, 72,192, 65, 40, 40,136,110,102,107, 44,120,127,116,127,135,159, 0,108,118, 10,131,217, 6,125,225,211,160, - 86,147,141,233,159, 76, 70,207,190, 3,241,238,248,201,200, 51, 0,215,159,104, 97,177, 90, 43,188, 40, 56,194, 65,111,178,225, -237,110,161,200,205,183, 64,103,176,193,108,227, 33,151, 8, 33, 18,114, 80, 56, 9,225, 34, 23, 1,148,138, 9, 33, 99, 1, 64, - 36, 18, 25, 45, 22,203,166,114,206, 19,170, 6,251,194, 96,229,208,108,216, 34,116,105, 89, 19,247,206,239, 20,158,185,124,167, -218,199,159,204,192,196, 49,125,177,227, 97,117,120,248,132, 66,169,144,193, 74, 57, 0,212,161, 14,121,148,206,226,253,107, 13, - 26,177, 98,245,218,232, 57, 51,167, 57,169,116, 4, 82,177, 0, 39, 79, 28,199,165, 43,215,151,102,221,219,179, 9, 47, 17, 17, -229,124, 93, 92, 92,224, 36, 17,192,108, 49,153, 29,239,162, 64, 65,129, 70, 74,223,136, 21,133, 79,248,141,236, 60, 74,249,140, - 86,116, 67, 32,174, 1,145,235, 86,172,217, 60, 50,192,207, 7,187, 79,220,198,186,213, 63,162, 90,195, 62, 56,255,199, 58,184, - 86,109, 1, 69, 72, 27, 72,156,183,143,229, 4,194,122, 31,124,252,249,160,198, 77, 91,226,194,185,147,200, 76, 79, 91, 65,233, - 67,135, 34, 26, 2, 17,249,168, 83,215,190, 48,154,237,104,219,185, 15, 14,239,223,253, 33, 10, 7, 79, 56,126,243,122,174,126, - 6,103,155, 60,233, 35, 81,166,218, 44,202, 86,155,145,156,109, 64, 66,186, 14,123,126,255,149, 58, 94, 95,152,155,182,171, 31, - 36, 26,187,240,100,114,112,144,191, 73,100, 50,200, 98, 30,199,213,122,119,244,155,162,106, 53,106,113,153,106, 19,178,212, 38, -100,171, 77,200, 55,218, 80, 35, 40,156,179,218, 72,203,202,158,103, 47, 87,137,104,249,254, 39,112, 81,136,208,170,214,139, 15, -156,229,121,254, 63,230,106,113,129,185,186,253, 68, 13,169, 88, 0,169,152,131, 84, 44,128,205, 78, 29,122, 96,145,249,212,236, -245,254, 7, 19, 2,204, 54, 32, 71,109,134, 80, 64,224,227,229,174,104,218, 96, 4,214, 46,250, 16, 0, 48,230,179,159,241,238, -219,163, 80,187,110, 61,168,242,242,252, 70, 12,238,181, 24,192,110, 71,211,122,240,232,233,144,163,103,163, 62,123,127,234, 44, -229,208,190, 29, 5, 55,227,212, 72,203, 53,225,113,140,182, 82,145, 54, 0,176,217,121, 80, 80,172,223,122, 0, 50,137, 16, 89, -106, 11, 40,165,248,230,199,109,112,150,137,144,150, 87,208,172, 95, 65, 29, 79, 42,248,190,207, 95,138,159, 20,236,159,133,255, -244,211,170, 48,130, 53,127,254,252,123,243,231,207, 47, 53, 34, 86,161,193, 42,207, 92,185,185,251, 95,216,183,117,181,199,238, - 40, 51, 46,111,191,142,222,205,253, 33, 22,114,144,187,122,227,214, 19, 29,142, 28,254, 77,117,112,223,142,167,185, 34,253,119, - 21,154, 43,255,136, 70, 10,153,203,241,229,171, 54,216,188,124,124,176,233, 92,110, 74,158,206,102,253, 79,243,148,149, 92, 63, -178,170,154,141,183,246, 48,164,199, 86,248, 56,203, 83,136,231,255,178, 23, 0, 5,207,243,160, 60, 15,145,147, 82,225, 93,189, -101, 70, 97, 5,231, 36,228,136,177,228,149, 79,121, 91, 74, 86, 92,249,225, 78, 2,192, 69, 46,194,214, 51, 79, 1, 32, 67,160, -189,241,224,245,161, 5,205,130, 70,179,147,166,110,245,234,180,105,211,166, 42,153, 76,246,194, 39,185,178,205,130, 14, 21,156, -199,143,205, 0, 22, 6, 68,180, 29,216, 93, 89,191,153,132, 19,163,113,132, 63, 78, 29,217, 67, 47, 31, 94, 59, 70,159, 17,189, -193,193, 2,136,124,163, 21,169, 57, 70, 60,205, 49, 34, 61,207,136,244, 92, 19,210,243,140, 32,132,192,104,182,253,165, 27,150, - 46, 51,122,251,166, 13,107,250,153, 44, 24,222,174,219, 64, 76,158,181, 60,116,211,138, 5,199,101,190,181, 90, 59,210,129,150, - 82,106, 39,132, 36,140, 30, 61,186,193,111,191,253, 38,136,140,140, 52, 60,120,240, 64, 14,128, 7, 96, 81, 42,229,178, 95,127, -154,127,164, 89,179,102,191, 63,141,121,120, 18, 64,158, 35, 35,169,170,116, 24, 45,173,229,146, 59, 54, 68,209,170,123,152,159, - 28, 33, 10,109,247, 90,202, 91,223,249,116,254,120, 94,230,137, 37,153,105, 38,219,177, 44,131,160,225,211,124,145, 67,125, 1, -173, 38, 99,226,160,193,195, 32, 32, 28, 44, 70,125, 98, 81,225,242,113,149,224,171,205, 15,161,116, 18,193, 89, 38,132, 82, 38, - 66,155, 58, 30,168, 68, 61, 70,173,118, 30,122,147, 29, 6,147, 13, 70,179, 13, 94,193,238, 88,189,105, 59,146, 50, 13,216,123, - 45, 27,209,137, 90,132, 7, 41, 64,105,197,213, 35,111,183,234,250,190, 54,210, 89,192, 17, 8, 56,194,213,169, 85, 19,185,249, - 22,136,133, 28,196, 78, 50, 40,164, 66,184,200, 68, 16,139, 69,200,204,204,132,201,100, 66, 72, 72,136, 83,249, 22,144,194, 89, - 41, 67,120,181, 0, 88,172, 54, 28, 60,123, 31,115, 39, 13, 66,215,118, 77, 64, 68, 74, 60, 52, 53,130,179,135, 51,120,142,131, -197,198,195,108,177, 3,224,202,140,182,133,132,132,116, 82, 40, 20, 10,189, 94,175, 77, 76, 76, 60,157,246,112, 87,146, 79,221, - 1, 99, 15, 31, 61,185,169, 79,207,174,136,186,125, 15, 59,118,239, 59,151,237,169,158, 90,180, 79,100,100,100, 11, 47, 47, 47, -101, 78, 78,142,230,206,157, 59, 87, 95,240,105,151, 40,124,107,125,220,178, 77, 7,228,171, 50,145,145, 28,239,240, 83,115,237, - 80,103,124, 57,127,121,227,136,154, 17,141,237,180,192,112,213, 9,113,198,148, 89,203, 26, 87, 15,175,217,184,104,160, 71,237, -144,242,167, 85, 83,248, 70, 76,152,251,195, 47,111,132, 4, 7,227,208,133,135,152, 63, 99,124,148, 66,238, 92, 53,200,215,221, - 77, 92,183, 9,110,222,188, 8, 31, 72,224,226, 27, 30, 52,188,223,184,160,238, 61,251,225,206,173,235, 88,178,240,235, 75, 58, -129,108,158, 35,105, 85,250,134,121, 55,108,218,238,117,103, 15, 95,168,212, 90, 56,187,251,160,118,253,166,175, 43,125,195, 62, - 43, 92,172,254,197,204, 6,165, 48, 89, 40,242,180, 22, 36,101, 21,152,171,248, 12, 61,120,190, 18,125,126,236, 60, 81, 58, 9, -133, 30,214, 71, 33,119,142,159,164,161,193,190,100,225,215,159, 8, 44,112, 66,150,170,192, 92,101,105,204,200, 82,155,145,111, -180,194, 67, 33, 4,111,231, 43,253,180,157,151,111,129,115, 97, 63, 89, 59,255,226,125,190,127, 89,183, 53,226, 86, 76,234,128, - 31,126, 88, 34,191,249,164,132,185, 18, 21, 68,175,164, 98, 1,236, 60, 95,120,167,169,192,220, 11, 69, 31,245,239,213, 5,201, -217,134,194,145,200, 4,225,245,154,193, 75,198,163,243,176,105, 0,128,190,189, 10,250, 25, 63, 73,211, 97,255,229, 44,224,217, - 14,219,229,215,197, 6,131, 96,213,230, 63, 62,222,190,237,119, 87,163, 93,136,149,135, 18,160, 55,217,224, 36, 22, 64, 42, 22, - 64, 38, 22, 60,211, 37,168, 98,131, 85,208,167, 46, 41,219, 10,189,209, 8,141,193, 10, 10,224,234,163,124, 24,204, 54,168,117, - 86,180,168,229,254, 87,159,121,254, 0,208,251,121, 35,244,188, 73, 42, 17,129, 42,141,107, 37, 53,138,182, 47,203,192,149,236, -147, 5,192,161, 7, 65,225,243, 78,177,228,255,206, 1,225, 53,221,220,252, 47,236,251,125,181,199,174, 40, 19, 78,221,202,193, -224,182, 65,208,171,211,177, 96,254,167,185, 4,212,204, 9, 56,149,201,104,216,149, 35,183,204,165,247, 31, 91,202,173, 36,188, -235,212,151,201,229, 39,191, 93,178,210,226,227, 27,200,239,186,172,202, 84,235,237,207,196, 10,237, 38, 19, 71,121, 42,118,196, - 92, 21, 54,109, 88,102,125, 56, 16, 60,165,248,106,201,118,204,155, 58, 12, 74,217, 72, 57, 33, 68,174, 51,218, 48,105,246, 26, -124,255,229, 59,206,114,169, 16,132, 0, 70,179, 29,111, 12, 31,232, 88,193, 51,218,240,248,202,111,249,218, 39, 7, 30,148,108, - 22,108,222,166,231,245,230,205,155,171,220,221,221, 33,147,201,254, 19,153,112,176,178, 46,109,180, 96,166, 10, 41,206,206,206, -237, 93, 92, 92, 74,234,233, 84, 42,213,158, 23, 41,125, 90, 85,246,201,244,132, 59,205, 90,119,236,139,211, 71,246,208,203,135, -126, 29, 83,153, 57,118,220, 61,220,147,111,220,121, 92,155, 16,143,130, 8, 86,161,185, 50, 91,121,132,250,202,145,156,240, 24, -110,174,174,201,142,234,201,125,106,245, 39, 28, 29, 79, 64,215,230,167,199,108, 47, 52, 59, 35, 20,126,181,110,223,187,123,115, -110,159,215, 63, 18,118, 27, 60, 65,176, 98,254, 7,159,227,185,206,169,229, 96,137,142,142,190,255,206, 59,239,180,186,116,233, -146, 29,128,158, 16, 98, 21, 8, 4,114,179,217, 44,238,216,177,163,250,225,195,135,103,224, 64,103,196,182,111,239,240, 34, 82, -109,207,234,225, 77, 71,132, 58,107,187,118,108,219, 18, 45,235, 6, 35,185,109, 75, 0,248, 40, 49, 95, 25,209,230,189, 95,183, - 86,243, 14, 58,184, 98,221,254,121, 99,134,117,153, 20,208,119,246, 15,169,251,103,149,219,193, 52,233,254,233,238,165,217,247, -130,102, 67, 17,148, 50, 33,156,101, 34, 56, 59,137, 96,181,209,202, 60, 41, 82,171,141, 47,136, 96,153,109,200, 55,216,112,242, -102, 6,210,213,102,168,180, 22, 24, 44,118, 80,208,130,167, 79, 7,106,241,204,216,243,110,197,231, 62,180,177,122,213,143,139, - 92,118,158, 79, 41, 30,161,231, 42,151,192, 89, 94, 48,170,250,236,217,179,240,244,172,248,233,158,231,121,236, 56,124, 21, 63, -172, 63,137,195,107, 63,133,147, 88,128,250,253,103,227,173, 1,205,193, 83, 30,143,163,239,101,132,215,105,224,203,113, 50,112, -132,192,100,229, 1,208, 50,143,167,217,108,246, 76, 74, 74,210,212,168, 81,195, 47, 48, 48,112,176, 64, 32,160, 82,192,180,231, -247, 92,253,137, 3, 91,228, 58,131,201, 46,183,169,215,214, 72, 51,244, 14, 15, 15, 7, 33,132,122,121,121,137, 79,158, 60,153, - 95,175, 94, 61,239, 23, 52, 87,156,204,167,230,210,119,223,251,120,112,245,176, 48,108,223,178, 22,148,146,157,142,238,191,121, -255, 37,124, 61,253,217, 17,131, 83,102, 45,107,252,253,236,143,158,249,236,189,233, 63, 52, 46,175,206, 8,138,236,244,105,173, - 90,117,112,233, 94, 10, 22,126,241, 94,148, 49,243,201, 8,179,210,115,156, 37, 63,109,114,195, 70, 77,224,231,233,130,212, 92, - 19,250,141, 28,128,214,109,218,226,206,173,235,248,250,203, 79, 46, 65,111,238, 70,179,238, 27, 28, 73, 43, 79, 69,227, 59,118, - 31, 32, 50,152, 44, 88,182,112, 38,198, 77,157,139, 22,157,250,138,238,222,188, 60, 30,192, 28, 71,243,108,178,216,209,177,158, - 87,129,105,182,242,216,247, 68, 32, 44,173, 4, 10, 5,132,107, 24,230, 6,131,217, 6,141,222, 90,254,141, 74, 44, 74, 87,169, - 53, 85,126,154,247,177, 64,103,180, 33, 75,109, 70,166,218,132,108,213,127,140, 85,182,218,132, 44,181, 25, 34, 33, 65, 76, 92, - 34, 56,145,176,210,253,239,242,242,173,104, 86,211,189,224, 26,125,193,214, 16,171,208,165,249,225, 51,183, 6,253,240,195, 98, -167, 91,241, 90,220,126,162, 41,140, 92, 9, 32, 21,113,144, 20,190,183,243, 64, 69, 63,225,234, 83,189,218,155,239,140,233,236, -162,148, 33, 53, 54, 19, 66, 1,129, 64, 64,224,234, 19, 12, 87,169, 17, 31,188, 55, 22, 94,158,110, 72,202, 54, 97,233,238, 24, -220,190,255, 8,188,161,114,217, 94,182,242,247, 30,239,190, 63,197,141, 19, 73,176,241, 72,124, 65, 58, 5,118, 60,188,188,223, -152,250,248,142, 46, 95,147, 67, 65,237, 14, 62,248, 19,106,179, 23, 24,211,121, 95, 77,195,239,235,127,198,145, 27,153,197,157, -179,206,239,252, 30, 31, 79,255, 6,217, 26,115, 97,209, 47, 63,114,245,220,255, 89, 37, 34, 79,127,250,191,132, 41, 42,237,127, - 82,248,191,185, 12, 13,243,115,166,202,252,220,231,230,231,244, 28,154,187, 79, 88, 94,228,202,213,221,239,194,222,173,171, 60, -118,221, 48,227,244,237, 2,115,101, 51,169,240,203,194,233,105,122,149,166, 93,121, 19, 54,254,201, 92,249,212,140,148, 42, 20, -103,190,248,102,169,201, 55,176,138,237,224, 77, 77,142,214,104,255, 83, 24, 68, 44, 87,216, 21,174,222, 70,183,208, 70, 63,136, - 12,230,153, 89, 89,247,117, 21, 69,154,120, 74,113,224, 74, 58, 40, 45,120, 36,218,118,246, 41, 10,159,196, 97,231, 11,154, 79, -142,221,204,132,176,176,159,137,163, 97,238, 95, 86,254,172,233, 93, 79,173,123,125,222, 87,197,205,130, 45, 26, 20, 68,174, 92, - 92, 92,224,230,230, 6,165, 82, 9, 71,154, 8,139, 40,107,180,160,179,179,115,251,155, 55,111, 58,185,184,184, 64, 32, 16,192, -100, 50,161,110,221,186, 47,116,129, 43,253,106,189,223,172,211,192,207,219,116,234,139,147,135,119,209,203,135,215,141,173,236, - 4,134,189,187,180,218,255,245,215, 95, 85,251, 98,238, 79, 82,103, 39, 33, 30,228,155,193, 17,130, 80, 95, 57, 60, 21, 28, 78, -239,217,104, 28,214,183,149,195,147,218, 5, 7, 7,110,250,254,199, 85,138,239, 23,204,238,232, 28, 24,113, 82,251, 52, 58, 23, - 0,116,233, 15, 23,202,253,106,221, 15,186,120,244, 96,131,246, 3,225, 27, 16,214,181, 18, 97, 94, 74, 8,209,199,197,197, 61, -249,226,139, 47, 34, 22, 44, 88, 64, 5, 2, 1, 15, 64,186,100,201, 18,125,108,108,236, 77, 20, 12,177, 69, 69,209,171,206, 93, -235, 78, 82, 74,236, 45, 60,228, 92,221, 48, 63, 57, 90,214, 45,104,253, 28,214,187, 13,130, 67, 66, 16,151,174,111,152,171,231, - 69,249,102, 65,216,242,149,183,175, 85,245, 18,140,177, 25,204,247, 81,193, 36,176,101,149,217,162,142,239, 69,209, 43,103,153, - 8, 60, 80,153, 39, 69,106,181,241, 48, 89,236, 48,152,236, 48,152,109,208,153,237,208,155,237,224,105,193, 53, 65, 8,129,197, -198,195,161,199,228,231,202,190,139,135, 23,194,170, 22,140,122,117,150, 21, 76,217,224, 34, 23, 21,140,117,246,244,132,143,143, -143, 67, 81, 80,179,165,224, 18, 55, 91,249,226,230,123,179,197, 6, 74, 41, 98, 98,162, 63, 77,120,242,164,127,141,240, 26,237, -234,212,111,224, 33,151,114, 0, 80,166, 25,208,235,245,118,103,103,103, 31, 15, 15, 15,238,233,211,167,197,166,185, 70,195,142, -182,221,187,118, 98,208,160,129,249, 15,174,222, 42, 30,170,110, 48, 24, 72,235,214,173, 93,130,131,131, 57,147,201,164,169,220, - 49, 32, 68,225, 93,115, 64,112,173, 86,115,223, 24, 61,174,102,199, 46, 61,112,234,196, 81,236,221,245,219, 6, 93,102,244, 81, -135,175,247,136, 90,127, 26, 69, 88, 61,188,230,159, 70, 17, 86,169, 22, 94,166,193,114,117,173,239, 82,191,105,135,224,132,108, - 11, 14, 29, 58, 8,157, 58,253, 75,179, 57, 95, 15, 17, 93,115,224,183,229,239,188,251,241,108,151, 14,237,219,194,221, 69, 14, -161, 80,128, 27,215, 46, 97,193,156,207, 47, 65,111,238, 86, 81,253, 89,156,223, 58,117,196, 53, 66,170, 76, 12,169, 30,137, 27, -151,207,225,113,204,221,123,183,174, 93,170, 91,163, 94, 11,120, 7,132, 78, 36,117,234, 44,160,247,239, 91, 42,210, 49, 27,141, -137,111,189, 57, 10, 37, 71, 17,182,108, 20,225, 73,158,191, 0, 0,232,181,153,150, 95, 23, 77,138, 45, 26, 69,200, 91,204,137, -101,233,170,243,178,118,156,190,112,101,106,255,222, 61,184,108,141,185, 32, 98,165, 54, 23,190, 76,200, 46,122,175, 49, 33, 60, - 64,137,232,123, 55,120,163, 58,123,103, 37,175, 75,227, 91, 67,186,223, 47, 42,187, 60, 79, 65, 0, 99,101,175,111, 42,114, 25, -187,240,187, 31,156,110, 61,201,199,237,120, 77, 65,147,160, 72, 80, 96,172, 68, 92,177,217, 42, 24,157, 94, 65, 52,136, 8,230, -189,253,230,112,100,107, 44,224,121, 64, 40,224, 10, 95, 98, 36,105, 9,146,181,122,100,231,101,225, 73, 66, 34, 84,233,143,193, -113, 28,188, 2,106,194,209,112,163,157, 74,252,245,102, 90,111,112,239,118,194, 93, 23,211, 32,151, 10, 97,210,102,224,208,214, - 69, 89,166,124,205, 92,131, 62,127,151, 33, 39, 54,213,209,188,115,132,100,105,242,141,190, 82,145, 0,219,215,255,132, 33,111, -189, 87,120, 80, 10,254,124, 58,227,107,128, 35,200,205,211,130, 16, 82,217,168,232,181, 10,254,127, 17, 94,134, 70,229, 13,150, - 92,238,121,124,239,239,171, 60, 46, 62,225,112, 53, 58, 15,131,219, 6,193,106,204,195,210,111, 38,167,107, 52,153,157,180, 89, -177,113,149,250, 37,142,235, 62,236,237,169,247,194,106,214, 49,157,186,155, 31,175,210, 89,203,236,199,208,114,240, 23,247,174, -255,241, 99, 47,181, 53,110,130, 50,160,174,157,183,217, 22,234, 51,163,103,151,209, 68, 40,153,189,116,123,113,243,224,103, 11, - 54, 22,188,183,219, 97,167, 60, 40, 15,124,240,229, 47,176,241,118,240,118, 59,120, 59,133,213, 78,229, 21, 37,215, 39,160,202, -174,188,135,219,106,189, 62,231,207,205,130,110,110,110,240,244,244,132,167,167, 39,138, 12,209, 95,109, 22,116,113,113,129, 82, -169,196,185,115,231, 32,147,201,160, 80, 40, 42,165, 91,194, 92, 77,104,218,161,255, 79,157,250,189,131, 99,187, 86,210,107,103, -247,143,211,103, 68,175,113, 56, 18,111,183, 19,171,213,138,222,221, 58, 36, 70,221,123,116,120,198,212,241, 61, 90,245, 25, 39, -109, 25, 17, 8,163,217,142,148,132,199, 56,189,103,157,177,102, 53,255, 35,157,219, 54, 79,180, 90,173,176,219,237, 21,222,192, -141,102, 75,182, 64, 36, 83, 12, 31,254,186,232,218,213,171, 59,149, 62, 53,183,219, 9,119,139, 80,190, 62, 33,100, 80,253,250, -181, 97,177,242,208,235, 53,121,149,205,179, 86,171,125,178,118,237,218,106,111,190,249,166,188, 78,157, 58,162,199,143, 31,227, -251,239,191,207,209,106,181, 79, 28,213, 56,122, 54,122,137,144,228,197, 74,120,203,136, 80,103,109,215,164, 54, 45, 49,188, 79, - 27,252,254,199,121,156, 62,119, 9,137,249,202,155,249, 54,225,158,228,196, 84, 83, 93, 15,205,206,126, 45,171, 8,182,175,207, -219,233,211,113,250, 80, 74,165, 71,179, 78,207,210, 57,126,243, 6,180, 6, 43, 92,228, 5,243, 53, 21, 69,178, 4,132, 56,236, -132, 8,240,228,220,165, 27,145, 77,194,235, 32,234,137, 26,153, 42, 19, 12, 38, 27,120,158,130, 7,133,167,179, 4, 78, 98, 14, - 73, 9, 79,192, 83, 75,124, 37,111, 17, 89,237,219,181, 23, 2, 4,132, 80,161, 72, 40, 4, 69,193,188,136, 50,153, 44,223,199, -199,199,161, 8,150,197,102,195,160, 30,205,209,162,105,125,244, 31,183, 8, 0,112, 98,195, 52,184, 43, 69,248,125,211, 26, 36, -157, 89,188, 41,172,213,123, 71,239,222,185,247,218,189,168,139,175,247,108, 44,107,232, 39, 76, 21,151,165,151,159,159,191,147, - 16, 34, 17,139,197, 61,218,181,107,231,177,115,231, 78,149,151,151, 23, 47, 17,139,179,250,245,237,195,139,196,226,220,162,109, - 47, 92,184, 32, 26, 55,110,156,115, 94, 94, 94, 82, 70, 70,198, 37, 74,169,181,252, 7,192, 90, 93,192,225, 55, 16,226,164,148, -201, 19, 91,118, 25, 30,208,180, 69,115,215, 1,131,134, 64, 42,145,226,216,209,195, 88,182,120,193,182,252,180, 7,111, 87,230, - 72,190,140, 81,132,106,181,171, 46,246,254,173,188,248, 76,179,187,200, 45, 28, 34,169,243, 56,226, 26,176, 84, 32, 85,206,242, -110, 48,192,101,199,190,131,184,115,247, 46, 60,100, 86,196, 61,142,213,223,189, 25,245,179,158,136,102,211,172,251,122, 71,211, - 41,207,177,191,214,114, 84, 15,119,147,197,142,179, 39,255, 48,242, 54,190,199,165, 51, 7, 31, 7,213,108,234, 20,217,180,179, -123,246,222, 53,131, 0,252, 94,145, 78,202,131, 63, 71,108, 67, 34,154,197,159, 56,121,220,213, 55,180,174,128,128,192, 98, 50, - 34, 43,238,154, 77,159,241, 80,163, 78,185,227,208,168,218,156,100,124, 57,125,214,183, 19,154, 54,105,162,160,112,122, 38, 98, - 85,100,172,178, 53,102,120, 57, 75, 96,208,100, 33,246,218, 97,163, 62, 75, 80,238,124,101, 54,179, 78,158,157,153, 81,220,148, -150,159, 17,221,162,188,237,179, 51, 51, 36, 54,179, 78, 94,241,173, 78, 0, 23,133, 4,119,226,159, 22,119,104,151,138, 10,250, - 94, 73, 68,130,226,126, 88, 69,117, 65, 5,116, 16, 59,185,225,105,142, 17, 4, 20,188,221, 6,155,213, 12,173, 70,131,167,169, -233,200, 72,207,128, 86,171,130, 92,233,142,200,134,205,224,172,112,194,173,211,219, 64, 41,117,104, 94, 66, 43, 17, 69, 52,109, -209, 86,122, 55,161,160,175,149,147,136, 98,255,111, 11,114,242, 53,153,109,181,169, 49,177,149,173,139,109,118,251,241,219,247, - 99,235, 6,249, 87, 37, 55, 31,171,177,105,245,143, 48, 23, 70, 50,173, 86, 59,238, 38,233,144,150,171, 71, 82,220, 3,202,219, -237,199,241,138, 83,166,193, 18, 75, 68, 50, 23,143, 0,124, 61, 98, 36,126,254,249, 23,196, 39, 63,197,178,175, 39,165,107,180, - 89, 29,181,169,177, 49, 14, 62, 5,118, 41,154, 43, 67,151,254,112,225,219, 63,199,167,236,139,202,229, 12,102, 90,110, 7, 30, - 39,239, 80,180,125,251,251, 35, 6,109,174,196,110,210, 11,247,111,122,251,183,210, 52, 11, 28, 51,204,115,167, 12,131, 82, 38, - 4, 33, 4, 69,205,130,203,191, 30, 11,185,180,160,237,216, 96,178, 97,228,164, 31,176,233,135,201,160, 0, 70, 12, 57,175, 47, - 43,157, 37,154,240,130, 18, 19, 50,159,118,233, 59,229,132,209, 34, 53,245, 25,248,230,245, 38, 77,154,168,100, 50, 25,100, 50, - 25, 92, 92, 92,224,238,238, 14, 55, 55,183, 10,243, 94,230, 36,162, 37, 70, 11,114, 28, 7,142,227,160, 80, 40,160, 84, 42,161, - 80, 40,202,213, 44,211, 92,181,239,183,188,115,255,119,113,108,215, 42,122,237,236,254,241,250,140,232,213,142,158,163,194,102, -157, 91,131, 6, 13,170, 55,110,220, 56,241,172,169,227,142,252,113,244,116,204,246, 3,171,250,230,229,169,130, 41,165,112,115, -117, 77, 30,214,183,213,254,142,173,155, 38,158, 56,113,130,255,237,183,223, 76,132,144, 59, 21,165, 51, 59, 51,115,195,137,227, - 39,191,106,219,190, 3,214,172,255,173,253,189,251, 15,218, 63,126, 28,139,224,208, 48, 84,173, 22, 14, 61,113,199,201, 51,231, -144,175,202,220,224, 72, 58,159,139, 98,145,188,188,188,139,195,134, 13,235,118,254,252,121,110,216,176, 97,250,236,236,236, 11, - 69,207, 77,101, 69,175, 74,106, 94,252,101, 64, 22,128, 13, 85, 58,140,222,246,212,162,154, 8, 96, 65, 72,104, 8, 78,159,187, -132, 75,231,175,252,146, 45, 15,153,253,246,200,209, 99,171,244, 19,188,219,175,101, 21,129,143,187, 28, 91, 86,125, 47,216,119, - 41,225,135,132, 28,251, 26, 0, 95, 59,114,142,138,111, 24, 90, 11, 90,215,246,128,213, 78,193,211,130,138,214,217, 73, 84,106, -133, 91,154,166,208, 44,125,123,252,184,113,143, 35,235, 55,252,120,228,232,241,226,134, 97,193,184,250, 72, 5, 16, 2, 15, 63, - 5,210,210,210,112,118,199, 42, 91,222,211,135,191, 8, 4,252,156,202,148,165,220,132,168, 26, 37,182, 27,155,157,157,141,211, -167, 79,163,200, 88,121,123,123,151,106,176,158,215,204,201, 72,189,240,245,119, 43, 91,143,121, 99, 32,250,116,168,139, 51,215, - 30,195, 92, 56,223, 82,209,144,240, 39,151, 86, 72, 38, 14, 11, 51, 79, 24, 84, 83, 99,176, 74, 18,190,140, 87,159, 45, 57,202, -245,121, 77, 74,169,153, 16,178, 47, 58, 58,186, 77,131, 6, 13,170, 28, 60,120, 48,247,222,149, 35, 31,149, 76,199,148, 41, 83, -148, 63,255,252,179,156, 82,122,193,100, 50,197, 57,148,119, 14, 91,110, 92,191,238,105,177,242, 56,119,229, 86,237,206,173, 27, -130,167,192,181,107,215,176,230,215, 53,198, 59,183,111, 46,210,101,248,205, 41,107,128, 72, 89,199,211,254, 23, 70, 17, 22,105, - 82,122,218,166,244,173,245,203,133,115,103,102, 72, 3,154,160, 86,175,207,251, 61,189,181,175,159, 95,157,238,240, 10,107,133, -212,219,251,112,225,200,230,131,188,205, 54,205,137,231, 18,117, 89, 15,117,142, 94,239, 69, 72,101,242, 15,235, 52,110,143,164, -196, 4,196,199,222,221, 96,200,137, 77, 85,250,213,218,144,154,146, 56,190, 90,221,214, 56,127,228,247,143,202, 50, 88, 21,149, -249, 96,111,217,170,131, 7,246, 13, 79, 73, 89,225,167, 51, 24,165,148, 82,163, 84, 34, 76, 87,114,218,173,142,166,147,210,251, - 22,133, 71,213, 65, 67, 70,142,255, 99,217,178,197, 34, 95, 55, 57,210,243,140,208, 24, 44,208,234, 45,224, 8, 65,141, 0, 5, -244,218, 92,156,217,241,157,213,156,159, 55,140,210, 71,150,178, 52, 11,214, 19,164, 31, 76,121,239, 20, 36,174,193, 1,213, 58, -127, 94,110,116, 78,155,122,187,239,148,247,246, 71, 80, 74, 59, 43,125,107,105,243, 51, 30,126, 81, 86,222, 9, 41,184,190, 95, -239, 24, 12,139,173, 96,254, 48, 27, 15,216,121,190, 48,170, 7,208,226,118,123, 82, 65,222, 9,191,245,143, 11, 72,205, 80,193, - 96,182,194,100,182,193, 98,181,131, 19, 8,224,230,238,134,240,170,141,224,234,230,130,140,244, 84, 92, 58,177, 15, 49,183,207, - 92, 32, 20,179,245,153, 49, 39, 28, 57, 71, 98,153, 91,132,127,128, 31,151,166, 49, 67, 38, 17,224,230,153,131, 22,171,217,180, -200, 17,115, 85,154,166, 42, 39,247,135,143,167,126, 50, 98,221,218,245,126,245,170,185, 32, 37,219,128,148, 44, 35,180, 70,107, -161, 1,227, 97,202,207,198,237,147,235,211,237, 70,237, 15,255, 90,131,197,219,236,230,232, 71,113,152, 54,251, 59,196, 37, 36, - 98,217,252, 79, 50,242, 43, 97,174, 74, 99,237,132,170,191, 87,110,143,194, 41, 73,230, 36,148,255,188,253,124,179, 32,229,193, - 83,138,253, 87,210,139,155, 5,249,194, 30,149, 81,143, 85,149,106,194,187, 29,173,221,108, 48,100,184, 62,124,180, 40, 15, 0, - 4, 2, 65,241,171,168,175,148,209,104, 52,191, 72,179,224,243, 29,218,121,158,135,139,139, 11,100, 50, 89,165,155, 30, 21,190, - 17,195,155,118,232,255, 83,231, 1, 99,112,124,247,106,122,237,204,190,247,244,153,209,171, 42,221, 7, 33, 47,239, 30, 33, 36, -118,209,162, 69, 13,215,172, 89, 83,109,234,212,169,113, 27,127,250,106, 25, 0,228,228,228, 0, 0,162,162,162,232,123,239,189, -103, 50, 26,141, 79,242,242,242,110, 80, 74, 43,108, 58, 48,100,201,231,173, 89,190, 32, 50,249,105,218,192,176,200,102,240,174, -214, 12,126, 53,154, 35, 79,107,193,213, 71,169,136,123,112, 2, 15,206,237, 56,168, 87,218,190,170,108,154, 27, 52,104, 16,204, -113, 92,213,252,252,124,191, 58,117,234, 52, 80, 40, 20, 81, 13, 26, 52,104, 36, 20, 10, 83,174, 95,191,158, 80, 25,173,132,211, -235, 76, 85, 58,140, 94,154,168,117,238, 24,151,174,111,148,168,117,142,210, 75, 93, 39,103,158, 88, 98,242,237,182,232, 7,106, -201,190,183,125,189,102,231,150, 85,223, 11, 70,142,157, 98,191,171,118,159, 40,148, 73,142,205,127,171, 94, 37,154,159,184,180, - 9,111,246,255,207, 52, 13,133,145,171,194,247, 14,133,227, 85,170, 91,106, 0,159,201, 2,234,254,116,119,226,184,175,235, 55, -109, 61,170, 93,207, 97,156, 77,172,196,145,221, 43,232,147,219, 39,183, 11,169,125,134,222,129,217,251, 43,108,246, 49,155, 43, - 52, 87,165, 70, 94,146, 21, 29,182,255,246,235, 91, 59,119,239,154, 63,160, 95,127,207,229, 95, 14,197,119, 43,247, 64, 33,147, -130,242, 60,134,117, 10, 25,252,224,183,238,125,131,125,157, 2,119,158, 74, 57,251,193,226,187,159,233,245,150,152,138, 70,185, - 22, 26,230,115,206,206,206, 89,109,218,180,105, 33,149, 74, 73,118,118,182,208,199,199,199,230,234,234,106, 78, 73, 73,209,155, - 76,166,157,148, 82, 93,101,242,105,177,242,136,207, 48, 98,239,174,157,184,117,229, 4, 30, 60,136,214, 62,184,255,224, 71, 34, -164,139,243,211, 99,114, 95,228,216,241,165,142, 34,164,149, 30, 69,168, 19,200,230, 69, 29,248,174, 67,120,167,143, 90,122, 86, -111, 13,247,208,130, 49, 58,234,148,187, 72,190,182,125,175, 54, 85, 60,132,210,187,214, 23, 61,199, 1, 65,213,194,169, 64,130, -139,167,255, 0,229,249, 95, 0,128,242,252, 47, 81,231, 15,142,111,222,235, 93,120,248, 84,105, 80, 52,118,190,178,218, 98, 33, -167, 59,180,115,221,238,248,248,120, 60,124,248, 16,143, 30, 61, 66,110,110, 46,182,108,137,175,212,249,209,229,198, 31, 83,122, -134,117,127,109,232,235,251, 7, 15,127,195,169, 90,120, 61, 46, 34,200, 29,158, 74, 33,162, 31, 37, 32,230,250,109, 62,250,234, - 65,163, 69,147, 57, 64,159, 27, 95,166,225, 83,120,215,241, 37, 28,157, 86,180,182, 96,203,150,173, 35, 62,153, 59,191,133,167, -183, 79,169,245,120, 78, 86,166,228,211, 15,246, 69, 92,186,124,209,161,181, 8,121,187, 61,103,236, 91,195,120, 65,193, 66,158, - 40,142, 75,147,130,147, 93,240, 16, 85,240, 57,229,109, 21, 70,236, 71, 15,108, 11, 27,207, 67,103,176, 64,163, 51, 65,173, 53, - 34, 45, 51, 7,183,110,223,198,153,253,251,240, 56,250,214, 19,171,217,124,148,227,200, 14,125,122,244,153,202,181, 44, 9,171, -121,122,120,224, 73,110, 62,156, 36, 66, 36,196, 92, 55,233, 52,234,205, 47, 90,142,244,217, 49,105, 10,223,136,110,195,134, 13, - 63,220,169,123, 63,215,166,173,186,200,189, 92,220, 32, 22, 82,196,198,167,226,198,133,195,186,184, 91,103, 53, 86,115,126,143, -151,177, 74,203,255,172,193,210,104,179, 58,190,243,246,184, 35,156, 80, 32, 5,229,141,122,125, 94,143,191, 98,174,254, 46, 40, -181,167,188, 53, 98,224, 51,207, 2, 54,158,202, 70, 12, 57, 98, 40,249,108, 96,181, 83,249,136, 33, 23,244, 5, 21, 71,217, 29, -246,138,155,240,126, 63,150,146,152,152,115, 45, 55,215,116,234,175,142,236, 43,185,182, 96, 57,163, 5,117,181,106,213, 42, 54, - 85, 2,129, 0,118,187,221,225, 10, 72, 44,149,141,233,212,239, 29,114,124,207,106,122,245,244,158, 9,250,204,152,149, 47,126, - 76,169, 5,192, 21, 66,200,221, 25, 51,102, 52,245,245,245,245,157, 57,115,166,147, 70,163, 17, 45, 95,190,220,152,157,157,157, -174,209,104, 46, 81, 74, 13,142,107,222,176, 2, 24,164,244,173,217,145,238, 92,221,213,205, 43,176,155,171,119, 80,117, 85,214, -211, 39,234,172,212,163, 0,142, 23, 78,240, 88, 41, 26, 53,106, 20,198,113,220, 48, 0,145, 10,133,162,134, 82,169,148, 82, 74, -107, 17, 66,238,241, 60,127,187, 78,157, 58, 7, 0, 84,234,252, 37,156, 94,103,106, 55,225,215,223,114,245,188,216,204,137,127, - 75, 56,189,206, 4, 0, 25, 71,167,234, 1,236,245,237, 56,109,208,190, 75, 9,203,238,229,185,126,148,121,106,222,190,202,166, - 89,149,124,179,198,203, 42,255,134,212,123, 41, 0,222, 82,248, 70,124,127, 39,234,210, 44, 66, 33,178,195,246,141, 62, 35,246, -250,203,208, 23,137, 68,198,192,192,192, 82, 71, 11, 74,165, 82, 99,249,231,252,180, 13,192, 26, 66, 58,172,223,181,109,253, 91, -123,246,237,157,223,174,243, 0, 79,167,160, 32, 84,245, 33, 88, 63,173,241, 71, 39,162,178,174,246,251,228,236,207,113,169,198, -219,148,210, 74,245,119,209,106,181, 49,132,144,188,252,252,252,254,148,210,100, 66, 72,112, 94, 94,222, 77,171,213,122,167,210, - 70,128,199,235, 45, 91, 54,219, 66, 8, 17, 82, 27,191,240,146, 72,240,155, 49,237, 65,202,139, 24,138,146,212,171,234,130, 73, - 51,151, 54,174, 94,163,102,227,162,181, 8,235, 86,113,198,184,207,190,111, 92,165, 90,120,227,255,172, 79, 88,254, 40, 66,154, -122,195, 64,124,235,117,141, 62,186,232, 75,207,199, 23, 38,200, 60,130,148,186,236,132,220,188,132,235,139,244,153,190,139, 94, -100, 98,201,146,196, 63,186,183,120,205,162,207,166,166, 61,125,178, 70,151, 25,115, 23, 0,116,153, 49,119,229,190, 53,191,204, - 78, 79,153,154,147, 25,183,232, 69,143,133, 78,167, 75,221,188,121,179, 91,235,214,173, 57, 95, 95, 95,100,101,101,225,212,169, - 83, 60,207,243, 79, 43,171,149,159, 19,119,138,144,234, 30, 27, 86,254,180, 80,172,112,238,101,179,217, 2, 40, 5,132, 66, 97, -154, 89,175, 57,172,229, 20,159,208,220,248, 10,202, 37, 79, 0,112, 69,107, 11,242, 60, 79, 22, 46, 91,159, 32,114,114, 46,181, - 73,213,106,212,202,121,158,119,120, 45,194,188,196,235,213, 95,214,245, 77, 40,157,221,160, 73,139,207,173, 86,139, 17, 5,253, -193,140, 0,140,148, 34,135,227,200, 25, 1,111, 61,162,254, 11, 15, 81,132,192,133, 18, 33,156,101, 66, 16, 16,228,171,115,105, -101,250, 92,149,122,190, 51,162,239, 17,210, 33,244,144,121,219,155, 39,143, 29, 28, 98,183,219,171, 22,150,156,120,147, 65,183, - 61, 63,205,125, 3,165,215,108,248, 23, 32, 44, 59, 36, 26, 27, 3, 32,244,191, 61, 3, 57, 79,174, 54,121,153,122,105, 25,185, -235,187, 15,152, 74,227, 19, 50,175, 38,165,155, 54,148, 92,254,230,175,106, 38, 39,103,157, 42,108, 22, 52,253, 57, 34,241, 98, -163, 5,139,159,190,141,134,111,151,204, 24, 14,163, 65,183, 81,159, 25,179,254,229,152, 87,106, 0,112,134, 16,226, 58, 97,194, -132, 70, 74,165, 82,148,157,157,125,133, 82,170,126, 81,205,252,140,152, 83, 0, 78, 1,152,246, 50,210, 24, 21, 21, 21,215,176, - 97,195, 77, 28,199, 85,165,148,250, 82, 74, 93, 11, 13,108,182, 80, 40,124,122,255,254,253,167, 47,148,119,147,243,161,124,179, - 32,220, 70,221, 15,255,201,116,120,250, 28, 75,204,181,175, 22, 40,156,254,107,250, 16,232, 50,162,239, 1,120,237,101,235,150, - 55,207,149,227,229,232, 63, 70,235,244, 31,235,222,226, 36,174,223,116,142, 48,234,187,125,252,244,235,115,119,178,174, 80, 74, -181,127,161,140,102, 73, 36, 18, 3, 33, 36, 88, 44, 22, 27,204,102,243,237, 23, 58,126, 5,230,222,251,101, 30, 59, 30,228,122, -227,198, 77, 42,181,125,185,121,205,184,163, 7, 48,141,212,169, 51, 83,254,248,154,187, 62,219, 43,135,210,232,151,114,163,202, - 79,127,248, 53, 10,155,185,159,137, 72,100,196,124, 3,224,155,191,162,125,237,218,181,253,139, 22, 45, 82, 47, 91,182, 44,196, -110,183,203,205,102,179,222, 96, 48,196,167,164,164, 92,124,177,115,254,216, 12, 96, 98,225,235, 5,162, 44, 15,211,149,190, 53, -151,182,106,217,106, 98,193,131, 57, 93, 26,127,102,233,164,242,246, 81,250,214, 52,148,220,190,188,181, 8, 95, 38,249,153, 49, -191, 0,248,229,239,139, 80,240, 89,175, 15,238, 15, 20, 78,168,205,219,108, 89, 47, 69,182,224,154,255, 21, 47,176,120,249, 43, - 5, 45, 92, 30,225,239,120, 1,232,194, 52,153, 38,211,100,154,165,108,203,177,227,201, 52,255, 73, 77, 39,255,218,193, 78,254, -181,131, 29,221,191,180,237,217,241,164, 96,175,178, 95, 66, 48, 24, 12,198,255,255,131, 29,207,142, 2,227,159,196,144,122, 63, -249,239,220,158,193, 32, 40, 88,149,186,180, 10,208,225,230, 15, 66, 72,151, 23,168, 96,143, 51, 77,166,201, 52,153, 38,211,100, -154, 76,243,223,165, 89,145,118,101,252,199,127,251,147, 36,107, 34,100,154, 76,147,105, 50, 77,166,201, 52,153, 38,107, 34,124, -137, 47, 14, 12, 6,131,193, 96, 48, 24,140,151, 10, 51, 88, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96, 48, -131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6,227,197, 33,148, 82, 20, 46, 49, 69, 0, 60,243,158,193, - 96, 48, 24, 12, 6,227,255,197,144,188, 98, 94,132, 43,153, 49,118,122, 25, 12, 6,131,193, 96,252,147, 38,235, 85,201, 75,177, -193,162,148, 18,102,178, 24, 12, 6,131,193, 96,252, 83,188, 74, 94,132,123, 62, 99,236,244, 50, 24, 12, 6,131,193,248, 39, 77, -214, 43,103,176, 24, 12, 6,131,193, 96, 48, 24,127, 29, 82, 56,229, 61,131,193, 96, 48, 24, 12, 6,227, 37,193, 34, 88, 12, 6, -131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96,252,139, 13, 22, 33,164, 11,211,100,154, 76,147,105, 50, 77,166,201, 52, -153, 38, 51, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, 6, -139,193, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12,198, 63, 4, 1, 80,234, 72, 0, 74,233,113,135, 69, 94, 96, - 52, 65, 69,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,245, 52, 43,210,174,140,255,248,175,134, 82,250,183,189, 0,116, - 97,154, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,183,189, 88, 19, 33,131,193, 96, 48, 24, 12,198, 75,134, 25, 44, 6,131, -193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6, -131,241,226,144,194,209, 0, 32,132, 80, 74, 41, 97,135,132,193, 96, 48, 24, 12,198, 63, 98, 74, 94, 33, 47,194,149,204, 16, 33, -132,178,211,203, 96, 48, 24, 12, 6,227,159, 50, 87,175,138, 23, 97, 77,132, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6, -131,193, 96,252,119,195,250, 96, 49, 24, 12, 6,131,193,248,239, 48, 37,175,144, 23, 41, 54, 88, 12, 6,131,193, 96, 48, 24,140, -151, 3,107, 34,100, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227, 95,108,176, 8, 33, 93,152, 38,211,100,154, - 76,147,105, 50, 77,166,201, 52,153,193, 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, - 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,254, 33, 8,128, 82, 71, 2, 80, - 74,143, 59, 44,242, 2,163, 9, 42,210,103,154, 76,147,105, 50, 77,166,201, 52,153,230,171,167, 89,145,118,101,252,199,127, 53, -148,210,191,237, 5,160, 11,211,100,154, 76,147,105, 50, 77,166,201, 52,153,230,191,237,197,154, 8, 25, 12, 6,131,193, 96, 48, - 94, 50,204, 96, 49, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, - 12, 6,131,193, 96, 48, 24,140, 23,135, 80, 74, 65, 8,161,133,255,119,160,148,158, 97,135,133,193, 96, 48, 24, 12,198,255,171, - 33,121,197,188,136,176,232, 13,165,148, 20,102,142,176,211,204, 96, 48, 24, 12, 6,227,255,155, 87,201,139,112,207, 57,199, 14, -236,244, 50, 24, 12, 6,131,193,248, 39,120,149,188,200, 51, 17, 44,118,106, 25, 12, 6,131,193, 96,252, 83,188, 74, 94,132,117, -114,103, 48, 24, 12, 6,131,193,120,201,144,194, 41,239, 25, 12, 6,131,193, 96, 48, 24, 47, 9, 22,193, 98, 48, 24, 12, 6,131, -193, 96, 6,139,193, 96, 48, 24, 12, 6,227, 95,108,176, 8, 33, 93,152, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,153,193, - 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131, -193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,254, 33, 8,128, 82, 71, 2, 80, 74,143, 59, 44,242, 2,163, 9, 42,210, -103,154, 76,147,105, 50, 77,166,201, 52,153,230,171,167, 89,145,118,101,252,199,127, 53,148,210,191,237, 5,160, 11,211,100,154, - 76,147,105, 50, 77,166,201, 52,153,230,191,237,197,154, 8, 25, 12, 6,131,193, 96, 48, 94, 50,204, 96, 49, 24, 12, 6,131,193, - 96, 48,131,197, 96, 48, 24, 12, 6,131,193, 12, 22,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24,140, 23,135, - 20,142, 6, 0, 33,132, 82, 74, 9, 59, 36, 12, 6,131,193, 96, 48,254, 17, 83,242, 10,121, 17,174,100,134, 8, 33,148,157, 94, - 6,131,193, 96, 48, 24,255,148,185,122, 85,188, 8,107, 34,100, 48, 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227, -191, 27,214, 7,139,193, 96, 48, 24, 12,198,127,135, 41,121,213,250, 96, 1, 0,235,131,197, 96, 48, 24, 12, 6,227,159,228, 85, -242, 34,197, 17, 44, 6,131,193, 96, 48, 24, 12,198,203,129,245,193, 98, 48, 24, 12, 6,131,193,248, 95, 50, 88,132,144, 46, 76, -147,105, 50, 77,166,201, 52,153, 38,211,100,154,204, 96, 49, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, - 6,139,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24,255, 16, 4, 64, -169, 35, 1, 40,165,199, 29, 22,121,129,209, 4, 21,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,213,211,172, 72,187, 50, -254,227,191, 26, 74,233,223,246, 2,208,133,105, 50, 77,166,201, 52,153, 38,211,100,154, 76,243,223,246, 98, 77,132, 12, 6,131, -193, 96, 48, 24, 47, 25, 97,105, 31,138,154,207,205,176,217,108, 62, 0, 32, 20, 10, 51,173, 87,191,240, 47, 79, 68, 4,116,182, - 1,171, 11, 5,199, 88, 41, 61, 86,138,230, 49,155,205,230, 94,168,153,103,189,250, 69,247,114, 53,155,125,115,228,153,237,175, -204,232, 90, 74,124, 81, 32,106,246, 77,234,115,105, 13,168, 68,248,206,254,255,145,206,255, 21,205,127, 51,226, 22,115, 51,172, -214,130,114, 36, 18, 9, 51, 45, 87,202, 47, 71,226,230,223,164, 62,179,253,229, 25,190,229,105,202,101,210,156,234,129,222, 63, -148,167, 25,151,154, 61, 89,167, 55,122,150,167, 89,217,107, 51,216,223,191,179,189,240,218, 20, 0, 99,146, 83, 83,143,253, 55, -149, 37, 66, 72, 19, 0, 95, 0,112, 41,241,241,109, 74,233,199,172, 84, 50, 24,140, 87,206, 96,217,108, 54,159, 27,187,103, 65, -103, 2, 58,191,241,141, 79,216,128,149, 91,254,180,141, 49, 79,162,186,183,181,158,192,170,113,247, 22, 90, 92, 82, 83, 83, 73, - 97,133,185, 26, 64, 72, 41,154,238, 55,118,207,130,222, 12,180, 27, 62,219, 61, 4,112,201, 18,139,167,200, 20,138,142, 6,131, -161, 46, 0,200,100,178,123, 6,157,238,148,183,197,242,253,243,219,151,149,129,146,105,237, 52,234, 27,159, 90, 3, 86,126,100, -231,121,201,211,107, 43,218, 25,179, 99,133, 34,155,105,249,231,192,161, 89,128,221,145, 3,242,204,239, 14,153,238, 41, 2, 58, - 73,156,156, 26,184,185,187,183,229, 41,173,205,243, 60,177,219,108,247, 53,106,245, 57,222,102,187,101, 51,235, 60,111,236,155, -207,151,151,206,231,243, 50, 4, 16,238, 6, 6, 43,148,202,142, 2,145,168, 21, 0,216,173,214,139,186,252,252, 83, 3,129, 29, -142,228,221,209,227,243,162,219,255,219,176, 90,109, 62, 79,142,204,130,201, 10, 52,122,109,190, 79,253,215, 55,108, 1, 0,115, -230, 45,223,252,216,125,205, 1, 64, 81,189,207, 21,169, 95,163, 12, 0, 16, 38,166,249,196, 28,152, 1,147, 21,168,221,103,182, - 79, 69,154,163,103,110,243,252,116,236, 32, 41, 0, 28,221,249, 83,205,147,187,126,233, 9, 0,157, 6,189,119,168,219,107, 31, -196, 0,192,194, 85,187, 60,127,159, 63,180, 92, 77,199,174, 77,181, 88, 29,123,160,134, 89,147,230, 22,172, 16,250,197,198,198, -114, 0, 16, 16, 16,224,208,181, 25, 4,184,166, 1,239,115, 2, 65,219,234, 53,106, 52, 2, 64,227, 30, 63,142,178,219,108,231, -253,129,229, 47,185, 44,125, 68, 41,237,251,156,233, 98, 5,146,193, 96,188,154, 6, 11, 0,116, 38,224,204, 35,160,125,139,250, - 24,251,122, 47,101,201,239,118,172,156, 29, 18,123,109,111,173, 95, 55,124,207,213,175, 95, 31, 79,158, 60,113,232,199,244,102, -224,116, 44, 0,213, 3,231, 60,133,226,241,226,239,190,115,233,218,181,171, 48, 32, 32, 0,132, 16,164,167,167,183, 56,126,252, -120,147, 73,147, 38,141,135,234, 65,158,222, 12,237,233,216,138,117,139,210, 90,183,102, 21,124,241,193, 80, 87, 0,248,252,141, -229, 77,174, 69,103,120, 60,126,252,184,243,103,159,125,150, 35, 56,117,234, 23, 47, 96, 93, 6,144,236, 72, 58, 55,238,191,226, -228,154,246, 91,216,200, 15, 62,216, 89,163, 70, 13,101,104,104, 40,113,118,118,134, 64, 32, 64, 94, 94, 94,200,221,187,119,123, - 94,189,122, 85,119,252,204,106,201,245,171,253,226, 50,157,154, 27, 29,202,187, 33,213,233,168,179,243,189, 81, 3, 7, 6, 13, - 29, 58,212,169,122,245,234, 0,128,199,143, 31,135,239,216,177, 99,248,206,157, 59,103,194,144,106,211,155, 97,172, 40,239,197, -154, 0,156,128, 86,110, 62, 62, 35, 5, 34, 81, 93,155,205, 22, 88, 24, 93,120,106,183, 90,239,169, 50, 51, 55, 63,191, 61,227, -207,152,172,192,131, 52,160, 75,219, 70, 24, 53,168,139, 2, 0, 62, 27, 54,183, 69, 98,252, 35,177,217,108, 70,205,136,218,173, -191,158,255,195, 17,112, 28, 54,237, 58, 94,188,189, 35,154,183, 31, 60,193,172,175, 23, 35,245,206,142, 22,118,245,163,142, 90, -141, 90, 0, 0, 46,174,174,131,118,108,253,237, 84, 64,189,193,151, 31,101, 91, 28,210, 44,239,218, 60,188,245, 71,255,148,187, -167,234,252,124,116,173, 40, 36, 36, 4,119,238,220,169,220,181,169,142,118,230,253,253,239,127,255,201, 39,126,237,218,181,131, - 82,169,132, 80, 40,132,205,102,235,114,254,252,249, 46,179,102,205,122, 15,234,104,157,163,215,166, 3,124, 79, 8,233, 56,122, -236, 71,254,189,250, 15,198,160, 30,173, 89, 65,100, 48, 24,175,174,193, 18, 10,133,153, 93,223,156,231,211,182,121, 36,174,221, -138, 81, 39, 36,165,229, 23,125,151,123,111, 71,205,254,173, 3,235,156, 61,123, 6, 38,147, 9, 23, 47, 94,196,173, 91,183, 16, - 31, 31,143,113,227,198,153,132,192,152, 50, 52,243,218, 13,159,237, 14,117,172, 50, 92, 18, 93,245,248,195,135, 2,163,209,136, -179,103,207, 34, 47, 47, 15, 18,137, 4, 65, 65, 65,232,214,173,155,240,225,195,135, 30,157,187,246,112,109,215, 99,196, 19,184, -134,231, 11,133,194,188, 50, 51, 32, 20,102,118,126,227, 27,159, 58,225, 85,240, 56, 33, 85,253,197,252, 95,243,121,158, 10,227, -226, 19, 45,103,206,156, 65,163, 70,141,112,236,216, 49,207,220,220,220, 47,151, 47, 95,254,133,232,219,159,151, 90,205, 57, 83, -203,209,203,107, 55,124,182,187,103,230,246,208,147,135,247,136,239,221,187, 39, 94,177, 98, 5,114,114,114, 32,145, 72,224,230, -230, 6, 63, 63, 63,212,172, 89,147,124,254,249,231,202, 62,125,238,225,195, 49,131, 67, 45, 97,239, 70,151,149,206,226,188,231, - 39,202,189, 52, 71,171,239,250,227, 15,174, 77,155, 54,207, 60,166, 87,171, 86, 13,221,187,119,119, 26, 57,114,100,245,161,195, - 95,231,219,245, 30,253, 24,202, 80,125,133,154,186,100,153,167,254, 82, 64,151,225,195,247,205,158, 61,219,205,207,207, 15, 10, -133, 2, 0,160, 86,171,131, 18, 18, 18, 90,204,156, 57,243,181, 43,183,183, 10,219,245, 73, 78,133, 34,216, 80,222,241,252,183, - 34, 18, 9, 51,139,162, 70,206, 10, 89, 94,114, 74,134, 14, 0,204,102, 51,204,102, 51, 76, 38, 19, 38,188, 55, 78, 48,230,181, -102, 53, 66,219,126,116, 51,254,105, 70,110,237,227,151, 61,138,246,173, 72, 83,168,143, 87,169,146, 78,140,153,245,201, 39,126, -190,190,255,105,249,219,180,113,163, 32, 55, 55,183,203,172, 89,179,234, 80,121, 7, 85,237, 62,179,221,202,211, 44,239,218, 84, -197,252, 81,245,235, 15,186, 55, 88, 57,255, 0,236,118, 59, 46, 93,186,132,179,103,207,226,135, 31,126,160,135, 14, 29, 82,187, - 40, 20, 21, 92,155,209,206,109,252,211,195,190,253,118, 39,145, 74,165,216,187,119, 47, 30, 62,124, 8,142,227, 80,191,126,125, -140, 26, 53, 10, 93,186,116,241, 27, 59,118, 28,109,215, 99, 88, 28, 92, 35,180,127,165, 44, 17, 66, 56, 0, 31, 77,159,245,173, -255, 27,239,190,143,133, 95,127,206, 12, 22,131,193,120,117, 40, 28, 13, 64, 11, 95,237, 41,165,160, 0, 87,109,192,202,223,183, - 95,231,255,168, 54, 96,229,239, 20,224, 40,192,185, 0, 85, 26, 54,108,104, 85,169, 84,244,234,213,171,116,194,132, 9,186,165, - 75,151,158,250,227,143, 63,118,216, 44,150, 53, 1,254,254,139, 40,192,149,218,163, 30,224, 66, 1, 87,185, 92,158,149,148,148, - 68, 15, 30, 60, 72,191,250,234, 43,186,121,243,102,122,232,208, 33,122,252,248,113,122,232,208, 33,250,251,239,191,211,219,183, -111,211,152,152, 24,170, 80, 40,178, 66, 1,215,114, 52, 5, 20, 16,212, 28,176, 98,234,206,107,214,217, 17, 3, 86, 78,162,128, -192, 29,168,213,176, 97, 67,251,142, 29, 59,232,166, 77,155,232,134, 13, 27,232,237,219,183,105,118,118, 54, 21, 74, 21, 89, 69, -251,149,149, 78, 10,112,129,129,129, 89, 42,149,138, 6, 7, 7, 83,137, 68, 66,125,125,125,105,205,154, 53,105,139, 22, 45,104, -207,158, 61,233,235,175,191, 78,191,252,242, 75,170, 82,169,168,147,147, 83, 70,209,126,101,105, 54, 2,100, 10,133, 34,233,198, -141, 27,180, 44, 12, 6, 3,205,206,206,166, 71,142, 28,161, 10,133, 34,169, 17, 32, 43, 79, 83, 6, 52,174, 87,175, 94, 86,118, -118, 54,181, 88, 44, 52, 41, 41,137,222,189,123,151, 62,124,248,144, 38, 37, 37, 81,131,193, 80,172, 29, 19, 19, 67,195,194,194, -178,100, 64,227, 50, 53,255,205,175,162, 50,241,220, 43,196,215,183,167,159,159,159, 97,231,206,157,244,233,211,167,116,253,250, -245,148, 3,230,254,105,219,114, 52, 37, 64,183, 54,109,218,216, 47, 93,186, 68,111,222,188, 73,167, 77,155, 70,187,119,239, 78, -123,244,232, 65,103,205,154, 69, 83, 82, 82,104, 74, 74, 10,237,217,179,167, 93, 2,116,171,168,124,150,118,109,186, 2, 33,125, -250,244, 49, 88, 44, 22, 26, 23, 23, 71,235,214,173,155, 34, 0, 70, 42,128, 58,237, 1,105, 69,229, 51, 16,112,247,247,247, 79, -187,116,233, 18,221,181,107, 23, 13, 13, 13,205, 18, 0,163, 93,128,106, 46, 64, 53, 1, 48,186, 90,181,106, 89,151, 46, 93,162, - 57, 57, 57, 52, 36, 36, 36, 45, 16,112,127,209,178,132,130, 57,248,214, 78,159,245, 45,141, 78,209,209,233,179,190,165, 0,146, -104,193,151,199, 88,153,100, 47,246,250,247,189,254,228, 69,254,199, 95,194, 18, 70,139, 16, 66, 40, 10,230,198, 42, 21,131, 64, - 48,111,225,194,133, 66,163,209,136, 95,127,253, 85, 59, 98,216,176, 93,110,110,110, 54,145, 72, 4,194, 85, 60, 32, 49, 75, 42, -157,248,221,194,133,110,102,179, 25,215,175, 95, 71,147, 38, 77, 32,149, 74, 33, 22,139, 33, 18,137, 32, 18,137,224,239,239,143, -204,204, 76,212,173, 91, 23,159,126,250,169,235,130,121,243, 38,194,100,250,186, 60, 93,158,167, 66, 0,176,243,188, 68, 12,140, -109,208,180,233,162,207, 63,255,156,115,113,113,129,209,104,132,201,100,194,195,135, 15,225,233,233, 9,185, 76, 46,132, 73, 87, - 97, 90, 57,142,227,148, 74, 37, 78,158, 60,137, 85,171, 86, 33, 62, 62, 30,105,105,105,112,118,118, 70,221,186,117, 81,187,118, -109,180,111,223, 30,113,113,113, 32, 14,116, 26,185, 47, 20,190, 63, 97,204, 24,159, 70,141, 26,149,250,189,209,104,132, 74,165, -130, 90,173, 70, 80, 80, 16, 6, 15, 30,236,243,219,166, 77,239,195,102,251,190,180,237, 61, 1,191,160,240,240,125, 87,175, 94, -245,162,148, 98,211,166, 77,200,207,207,135,217,108, 6,199,113,112,114,114,130,187,187, 59, 58,117,234, 4,111,111,111,132,135, -135, 99,219,182,109, 94, 61,123,246, 60,224,153,153,217, 56, 7, 72,101,143, 23, 21,147,152,145,113,180, 27,224, 53,242,245,215, - 15,221,186,125,187,237,200,145, 35,145,145,145,241,185,104,218, 52,149, 21, 88, 92,209,254, 17,128,171,135,191,255,186,111,191, -253,150, 75, 79, 79,199,148, 41, 83,178, 83, 19, 19,167,185, 2,231, 0,224,196,225,195,109, 55,111,222,188, 96,211,166, 77, 94, - 27, 55,110,228, 26, 53,106,180, 46, 34, 41,169,110, 52,160,174, 76, 58,181,192, 71, 75,150, 44,113, 50, 26,141,232,218,181,107, -156, 83,124,124, 3, 27, 96,112,116,255, 52,224,253, 31, 62,253,212, 79, 42,149, 98,202,148, 41,217,250,196,196, 72, 27,144, 85, - 98,147, 4,239, 39, 79, 14,191,241,198, 27,119,111,223,190,237,181,120,241, 98,191,215, 6, 14,124, 31,192,220, 74, 68,172, 74, -118,104, 15, 31, 61,246, 35,223, 70,205, 90, 98,227,154,229,152, 63,251,179,117, 0, 86, 18, 66, 62, 0,240, 29, 43,121, 12,198, -191, 54,232, 83,161, 23,249,159,107, 34, 44,204, 80,135,242, 54,118,247,244,108, 18, 25, 25,137,179,103,207,162, 94,189,122, 87, -221,220,220,108, 98,169, 20, 34,145, 8,148,231, 43,252, 49,153, 66,209,185, 75,151, 46,194,203,151, 47, 35, 44, 44, 12, 50,153, -172,216, 88, 21,189,196, 98, 49,252,253,253,161,209,104,208,185,115,103,209,178,101,203, 58, 87,100,176, 0, 32, 49,246,174, 50, -235,242,183,175,175, 94,191,174, 90,187,118,237,160, 86,107,192,243, 60,228,114, 57,204,102, 51,132, 66, 97, 65, 83,143,149,106, - 28, 57, 48,118,187,221, 46, 16, 8, 16, 22, 22,134,121,243,230,193,104, 52, 66, 44, 22, 3, 0, 52, 26, 13, 84, 42, 21,238,222, -189,139,132,132, 4, 20, 62,117,151,139,179,171,107,175,161, 67,135, 74, 74,251,206,100, 50, 65,173, 86, 67,173, 86, 67,165, 82, -193,104, 52,162,101,203,150,146, 63, 14, 28,232,133,156,156, 82, 13,150,201,201,233,181,141, 27, 55,250, 72, 36, 18, 24, 12, 6, -104,181, 90, 36, 39, 39, 35, 49, 49,209,152,153,153,105,115,118,118,230, 66, 67, 67, 57,169, 84, 42, 29, 48, 96, 0,209,104, 52, - 32,132,160, 79,159, 62,158, 91, 54,109, 26, 10,224, 7,118, 41, 59,198, 81,192,212,216,108,238,219,188, 89,179,147, 87,175, 93, -107, 52,113,226, 68,220,190,125,251, 91,249,214,173,103,244,192,173,242,246,141, 3,222, 95, 84,194,184,208,196,196,122,150,231, -140, 75,104,129,113,185, 83,100, 92,134, 84,210,184, 20,150,175,166,254,254,254, 56,116,232, 16,146,226,227, 63,171,140,185, 2, - 0, 78, 32,104,211,174, 93, 59,236,221,187, 23, 41,137,137,159, 61,103,174, 10, 30,144,128, 44, 97, 92,220,103,235,214,173, 91, -251,246,219,111, 67, 32, 20,182,129,205, 86,153,159,249, 83,135,246,183,199, 77,196,186, 85,203,214, 1,120,151, 82,202, 3,184, -202, 74, 28,131,241,239,197, 17, 47,242,191, 2, 87,210, 53, 2, 56, 93,222,198, 62, 62, 62,129, 74,165, 18,169,169,169,168, 93, -171, 86,166, 84, 42,133, 68, 36,130,147, 68,226,208,143,233,245,250,122, 1, 1, 1, 80,171,213,240,242,242,130, 88, 44, 46,126, - 73, 36,146,226,247,206,206,206,224, 56, 14, 33, 33, 33,208,235,245,245, 42,212,205,184,235,179,117,217,123, 19, 46,157, 57, 84, -109,224,192, 65,112,119,247, 64,112,112, 16,124,124,124, 32,147,201, 16, 28, 28,140,234,213,171,211,239,191,255, 30,114,159,250, - 14, 85,224, 37, 77,147, 80, 40,132,221,110, 71, 70, 70, 6,162,163,163,113,251,246,109, 92,186,116, 9, 55,111,222,132, 86,171, -133, 3,254, 10,122,131,161,129, 80, 40, 44,213, 92,169, 84,170,226,232,149, 74,165, 66, 86, 86, 22, 18, 18, 18,144,175,211, 53, - 44,199,236, 14,138,140,140, 20, 0,128, 76, 38, 67,195,134, 13,177,114,229, 74,219,254, 61,123,134,213,185,116,201, 35,248,200, - 17,183,213, 43, 86, 12, 27, 60,120,176,253,242,229,203,208,104, 52,120,240,224, 1,188,189,189,133, 18, 39,167,161,236, 50,174, - 28, 55, 0,157,151, 86,219,163, 85,171, 86, 79,212,106, 53,190,251,238, 59, 78,228,236,188,106, 54, 32, 40,119, 71,129,160,117, -187,118,237,176,111,223, 62,164, 38, 38, 78, 75, 44,197,184, 36, 2, 89, 73,113,113,211,214,173, 91,135,110,221,186,129, 8,133, -149,238,136,212,162, 69,139, 72,158,231,113,231,206, 29,184, 1, 87, 42,187,127,245, 26, 53, 26, 41,149, 74, 60,124,248, 16,138, -194,232, 90,105, 40,128,115, 81, 81, 81,144,201,100,168, 93,167, 78,227, 74,254,204,247,132,144,180,183,199, 77,196,174,195, 23, - 0, 0,235, 86, 45,203, 40, 97,174, 24, 12, 6,139, 96, 85,232, 69,254,231, 12,150,131, 25, 7, 0,136, 68, 34, 72,164, 82, 72, - 36,146, 2, 99, 36,149, 86,198,157,194,201,201,169,216, 80,149, 52, 86, 37,223,203,229,114,135,140, 11, 0,228, 61, 58,220,246, -221,119,222,150, 72,165, 82,152,205, 38, 80, 74, 33,149, 58,193,205,205, 13, 97, 97, 97,208,104, 52,104,213,186,189, 41, 89, 37, - 62,224, 89,123,192,237, 23, 57, 80, 54,155, 13, 58,157, 14,121,121,121,200,205,205,133, 70,163,129,193, 96,112,120, 72, 57,207, -243,130,228,228,100,252,246,219,111,200,201,201, 1, 80,208,129,186,200, 84, 21,253,125,242,228, 9, 54,109,218,132,248,248,248, - 74,157,159,182,109,219,226,192,129, 3,130, 14,157, 59,175, 57, 22, 26,154,122, 44, 52, 52,181, 67,231,206,107,246,237,219, 39, - 8, 12, 12, 68, 66, 66, 2,174, 95,191,142,188,188,188,162, 2,204,168, 36,143,129, 60,125,110,238,219,159,127,254, 57, 85, 42, -149,248,110,209,162, 6,115,129, 17,142, 26, 23,215,114,140,139,235, 95, 51, 46,160,148,130,231,121,216,237,246, 23,202, 27, 33, -132,136, 68,162,202, 78,145, 64, 42,161, 95,220,161,253,211, 47,231,225,224,222, 29, 69, 95,197, 50,115,197, 96, 48, 94, 69,132, - 37, 28, 99,133, 55,222,140,140,140,167, 58,157,174, 90,104,104, 40, 82, 82, 82,124, 66, 66, 66, 18, 37, 34, 17,196, 18,137, 67, -125,176,228,114,249,157,212,212,212,214,129,129,129,176,217,108,197,102,234,249, 38,194,162,168,204,205,155, 55, 33,151,203,239, -192, 88,238, 12, 8,176,155,243,170, 52,110,220,184, 56, 18,228,230,230, 6, 55, 55, 87, 72,165, 78,152, 49, 99, 6,191,248,251, -239,151,135,116,154,173,126,107,210,231,244,243,185,107, 94,234, 1,116,244,134, 36,151,203,239, 4, 7, 7,183,116,117,117,197, -174, 93,187,144,144,144,128,188,188, 60,232,245,122,152, 76, 38,232,245,122,152,205,102, 56, 57, 57,161, 78,157, 58,112,113,113, -193,241,227,199,239,192,100, 42,221, 84,230,228,236,186,115,231, 78,203,102,205,154, 21, 71, 80, 58,118,236, 72, 58,118,236,232, - 85, 28, 53,211,235,145,157,157,141,171, 87,175,226,248,241,227, 32,132, 32, 54, 54,214,110, 50, 24,126,103, 69,255,197, 48, 2, - 23, 5,235,214,173, 29, 63,126,252, 59,173, 91,183,134, 29,232, 9, 96,211, 63,101, 92,138,184,116,233,210, 93,187,221,222,186, -102,205,154, 80, 1,205, 1,236,173,148,121,124,244, 40,202,102,179,117,110,208,160, 1,118,109,223,222, 22, 64, 66,105,219,233, -128,182,141, 26, 53,130,193, 96,192,131,251,247,111, 84,194, 92,173,153, 62,235,219,209,111,188,251, 62, 54,174, 89,142,117,171, -150, 37,175, 93,185, 52, 24,128,133,149, 42, 6,131, 81, 25, 47,242, 74, 70,176,212,121,121, 55,162,162,162,208,184,113, 99, 60, -126,252,184, 25,229,121,161, 88, 34,129, 68, 44, 6,231,192, 13,196,160,211,157, 56,113,226,132,173, 97,195,134,200,207,207,135, - 80, 40,124, 38,122, 37,145, 72, 32, 18,137, 32, 20, 10, 33,151,203,177,123,247,110,139, 65,167, 59, 81, 97,116,200,206,219, 57, -142, 43,190,137,169, 84, 42,232,245, 6,204,155, 55, 15, 63,126,255,253,235,118, 96,146, 72,225,109,248, 39, 15,180, 81,175, 63, -121,240,224, 65,107,181,106,213, 48,122,244,104, 76,154, 52, 9,147, 38, 77,194,248,241,227, 49,122,244,104,140, 26, 53, 10, 3, - 7, 14, 68,243,230,205,225,237,237,141,232,232,104,171, 81,175, 63, 89,150,158,212,104,220,249,230,155,111,102, 22, 25, 51,157, - 78, 7,173, 86, 11,181, 90,141,172,172, 44, 92,184,112, 1, 27, 55,110,196,247,223,127,143,221,187,119,195,100, 50,193, 98,177, -224,230,205,155,121, 10,171,117, 59,187,148, 95, 28, 17,176,235,252,249,243,240,240,240, 64, 64, 80, 80,123, 7,140, 11, 26, 52, -104, 0, 53,208,182,204,107,235, 5,140,203, 51,198, 71,171,189,246,228,201, 19,116,232,208, 1,254, 65, 65,223,214, 1,100,149, -217,223,110,179,157, 59,127,254, 60,222,120,227, 13,132, 86,171,246,173, 55,224,253,252, 54,222,128,119,213,234,213,191, 29, 61, -122, 52,142, 30, 61, 10,187,205,118,174, 28, 83,213,132, 16,178,143, 16,114, 6, 64,194,232,177, 31,141,126,174, 67,251, 16, 66, -200,102, 0, 83, 89,137, 98, 48, 24,175, 34,149, 50, 88, 50,187,125,250,212,169, 83,173, 28,199, 97,208,160, 65,206,123,247,237, - 27,124,243,214,173,176,204,204, 76, 55,187,221, 94,161,150,183,201,180,116,234,212,169, 42,179,217,140,136,136, 8,228,230,230, -194,110,183, 67, 40, 20, 66, 40, 20,130, 16, 2,142,227,160, 84, 42, 17, 21, 21,133,181,107,215,106,188, 77,166,165, 21,222, 28, -236,246, 59,155, 54,109,130, 64, 32,160, 78, 78, 78, 32,132, 64, 40, 20, 98,241,226,197,153, 63, 2,187, 0, 64,192,113,102, 0, -224, 56,226,104,175,220, 10,219, 39, 37, 18, 9,248,130,206,253, 21,110,235,110, 50, 45, 89,184,112,161,246,193,131, 7,208,233, -116,197,209,182,252,252,252,226, 78,243, 42,149, 10,132, 16,232,116, 58,236,219,183, 79,235,110, 50, 45, 41, 75, 47, 7, 72, 79, -137,141,237,215,172, 89,179,156, 39, 79,158, 64,173, 86,227,206,157, 59, 56,126,252, 56,182,109,219,134,163, 71,143,226,209,163, - 71,176,217,108, 8, 12, 12, 4,165, 20,123,246,236, 81,219,180,218,158, 57, 64, 58, 43,250,101, 83,197,207,175,179,175,143, 79, -146,183,151, 87, 74, 21, 63,191,206,207,127,239, 10,196,196,196,196,192,102,179, 33, 44, 44,204,163,188,126, 88,212,102, 59, 95, -100, 92,130,171, 85, 91, 16, 90,138,113, 9, 5,188, 67,171, 87, 95, 80,100, 92,168,205,118,190,178,105,118, 6,150,125,242,201, - 39, 6,177, 88,140,173, 91,183,134, 89,107,212,120, 40, 4, 70, 40,129, 90, 29, 0,113, 69,251,251, 3,203,191,252,242,203,116, - 66, 8, 54,111,222,236,229, 90,189,250, 93, 33,240,166, 43, 80,197, 21,168, 34, 4,222,116,173, 94,253,238,214,173, 91,189,108, - 54, 27, 38, 77,154,148,238, 15, 44, 47, 71,242, 35, 74,105, 95, 74,105, 59, 74,105,240,218,149, 75,113,112,239,142, 34,115,245, - 46,165,244, 42,165,116, 20,165,244, 46, 43,113, 12, 6,227, 85,132,148,214,207, 73,212,124,110, 6, 64,125,218,183,168,143,107, -183,162,213, 94,238, 46, 71,138,190,203,189,183,163,102,167,122, 46,245,127,254,249,103,136, 68, 34, 36, 39, 39,227,254,253,251, -112,113,113,193,235,175,191,110, 50,104,181,253,138,214, 34, 36,132,116,161,148, 30, 47,212, 44, 88,239, 76, 29,171,172, 46,188, - 93,237,240,193, 3, 2, 87, 87, 87,228,231,231, 23, 79, 43, 32,151,203, 33,147,201,112,253,250,117,244,238,219,223,158, 37,111, - 87, 60,209,104,209,122,103, 37, 53, 65,136, 0, 0,154, 3,242, 40, 96,138, 79, 64,192,212, 47,190,248, 66,214,189,123,119,136, -197, 98, 4, 85, 9, 79, 15,235,241,221, 50,142, 35,182,148, 28,205,140,234, 85, 2, 92,239,199, 38, 0, 32, 5,107, 22, 22,174, - 69, 88, 90, 58, 67,204,103,194,118,111,248,222,165, 97,195,134,197, 81,177,140,140, 12,100,102,102, 66,165, 82, 65,167, 43,152, -234,225,192,129, 3, 56,120,246,161,198, 16, 52, 56,174,172,116,254, 39,239,209,206, 1,150, 43, 85,183,108,218, 32,240,246,246, - 70, 70, 70, 6,178,178,178,160, 82,169, 96, 48, 24, 96,183,219,145,155,155,139, 95,215,109,176,231, 40,219,197, 23, 77,228, 88, -174,166, 46, 89,230,145,127, 33,176, 81,157, 80,250,206, 59,239, 56,187,184,184,128,231,121,228,229,229, 33, 41, 41, 9, 79,158, - 60,193,217,179,103,117,153, 42, 51,116, 94, 93, 83,138, 38, 26, 45,245,120,190,172, 66,245,191,168, 89, 88,150, 0, 32,192,223, - 63, 53, 49, 49,209,199,110,183, 35, 48, 48,208,166,202,205, 93, 32, 1,142, 58, 3,105, 0,104, 54,240,197,146,101,203,222,238, -223,191, 63,154, 54,109,154,156,158,145, 81,181,180,178, 4, 66, 4, 17,128,171, 62, 40,232,222,213,171, 87,253,146,146,146,240, -198, 27,111,100, 39, 62,126, 92, 60, 77,131, 26,104, 27, 90,189,250,130,173, 91,183,122, 85,171, 86, 13,245,234,213, 75,119, 42, -154,166,161,244,242, 89,230,181,169,138,249,163,234,123, 3, 35,155, 78,152, 48, 1, 54,155, 13,103,207,158,197,149, 43, 87,144, -152,152,136, 11, 23, 46,168, 92, 20,138, 97, 69,107, 17,150, 85, 62,123,134,235,194, 54,111,222, 68,196, 98, 49,214,173, 91,135, -168,168, 40, 0, 64,163, 70,141, 48,122,244,104,216,108, 54,140, 28, 57,138,254, 17, 45,139, 43,175,124, 18, 66, 34, 1, 44, 66, -129,185,107, 74, 41,117, 34,132,164, 2, 8,174, 76,159, 43, 86, 62,153, 38,211,252,247,104,190,106, 84,184, 22,225, 55,191,192, -245,217,229, 56,198,164,238, 88, 57, 91,216,166,109,187, 90,179,191,154,197, 53,107,214, 12,193,193,193,104,212,168, 17,146,146, -146,164,110,110,110, 21,173,119,150,223,174,199,136, 39,245,235,215,119,155, 54,109,154,107,183,110,221, 68,193,193,193,160,148, - 34, 42, 42, 10,187,118,237,178,172, 89,179, 70,163,247,237,171,186,113,234,183,124, 71,214, 59,187, 2,232, 1,204, 9, 74, 77, - 93,245,254,123,239,205,106,216,184,241, 59, 95,125,245, 21,167,148,203, 68,243,102,188,235, 4, 0,223,252,180,205,181,255,224, -215,177,164, 6,208,126, 68,233,235,188,149, 76,103, 82,202,152,196, 94, 3, 59,215,152,242,193,219,246,161, 67,135, 42, 92, 92, - 92, 16, 28, 28, 12,119,119,119,196,197,197, 33, 37, 37,133,238,223,191, 63,255,210,205, 24,209,158,163,215, 18,157, 92,253, 29, - 89, 55, 80,219,174,251,144,248, 94,189,122,185,191,249,230,155,206, 77,154, 52, 17, 73,165, 82, 72,165, 82,100,100,100,224,209, -163, 71,150,253,251,247,231,235,125,122,230,221, 56,181, 85,235,224, 90,132,134,118,195,103, 63, 58,119,236,171, 73,247,238,220, - 25,197, 3, 13, 44, 22, 75,160,221,110, 39, 28,199,165,241, 60,127,199,162,213,174, 53, 53,250,106, 49, 91,139,208, 49,236,118, -187,216,110,183, 67,165, 82,225,216,177, 99,194,199,143, 31,127,113,235,214,173, 47, 82, 83, 83, 97,181, 90,241,218,107,175,161, - 81,163, 70, 56,117,234, 20,178, 50, 50,246,151,167, 21, 13,168,165, 41, 41,163,199,140, 25,115,104,211,166, 77,220,173, 91,183, -188,214,173, 91,247,107,105,198,101,212,168, 81,124, 70, 82,210,104, 83, 57,115, 96, 85,112,109,102, 31,222,250,227,173, 1,131, - 6,215,249,106,230, 23,162, 86,173, 90,193,203,203, 11,109,219,182,133,197, 98,113,171, 93,187,118, 69,215,166,182, 93,143, 97, -113, 13, 26, 52, 80, 44, 94,188,216,239,237,183,223,198, 7, 31,124, 0, 0, 48, 24, 12, 56,122,244, 40, 38, 77,154,148,158, 36, -108,174,171,168,124, 22, 70,166,138,140,215, 25, 0,237, 0,196,177, 14,237, 12, 6,227, 95,109,176,128,255,172,119,118,238,202, - 93,148, 92,142,163, 0,255,251,182,144, 55, 31,143,155,186,160,158,192,170,113, 23, 17,163, 75,108, 76, 12,169,104, 77,194,226, -245,206, 92,195,243, 61,159,252,222,108,222, 55,223, 76, 92,178,100, 73,231,162,169, 24,228,114,249, 29,131, 78,119,194,219,100, - 90,170,119, 13, 63, 81,217,181,243, 82,128, 12, 0,239,185,223,184,177,172, 79,255,215, 22, 58,121,132,137, 62,159,187,198, 40, -224, 56,243,163,212, 44, 44,169, 1, 40, 28, 24,240,168, 55, 3,247, 84,254,182, 12,207,193,209, 95,126,242,201,148,111,230,204, -105,166, 84, 42,219, 91,108,182,112,158,231, 1,158,143,213,235,116,103,168,197,114,213,212,104,230,247, 78,174,254,212,225,117, - 3,221,106,107, 61,226,119, 52, 91,191,118,237, 71,219,183,111,255, 83,222, 61, 77,166,101,122,183,218,199, 29,201,123,201,109, -140,192, 69,100,102, 94, 44,243,105, 3,108, 45, 66,135, 47, 10,158, 31,235,238,238,190,177,115,231,206, 78, 93,186,116, 65,239, -222,189,209,170, 85, 43,240, 60, 15, 74, 41,180, 90, 45,182,109,219,134,133, 11, 23,198, 86, 5,230, 84,164,103, 2, 78, 72, 15, - 30,236,217,160, 65,131,117,229, 25,151, 66,115, 85, 97,159,195,242,175, 77,105,172,205,181, 95,194,240,247,231,213, 48,107,210, -220, 60,229, 54,191,123,119,239,112,142, 95,155, 17, 90,123,212,182,230,175, 13, 28,248,190, 64, 40,108, 91, 56,162,145, 62,184, -127,255, 70,209, 98,207,104, 52,250, 88, 37,203, 82,209,220,115,172, 67, 59,131,193,248,119, 27, 44,161, 80,152, 89, 20,229, 17, - 10,133,153,113,123,198,189, 94,158,136, 8,232, 92, 24,185, 66,133,107, 17, 22,190, 79, 0,180, 48,153,190,126,102, 18,209, 18, -163, 5, 69,207,109, 95,153, 76,229, 1,209,176,153,250, 32,243, 62,176,239,189, 2,189,102,223,124, 86, 50, 79,101, 30,144,103, -126, 87,156,107, 4,206, 33, 63,255, 28,242,243, 75,157, 93, 90, 36, 20,231, 86,148,206,231,243,158, 4,104,254,106,222,133,149, - 60, 62,194,191,112, 60,255,109, 60,205,206,222, 3, 64, 25,116,224,128,239,225, 3, 7,134, 78,153, 60,249, 53,255,128,128,234, - 94, 94, 94,238,206,206,206,220,229,203,151,159,216,140,198,101, 13,129,245,133,209,211, 10, 49, 1, 39, 34,146,146,234, 14, 25, - 56,240,125, 34, 20,182, 41,105, 92,168,205,118, 33, 12, 88,110,114, 96,246,246,202, 94,155,193, 82,255,206,133,145, 43, 8, 28, -188, 54, 83, 10,210, 49, 23, 54,219, 92,220,190, 93, 74,153,175,116, 89,250,134, 16,162, 5,155,161,157,193, 96,252,155,248,155, -215, 21,234,194, 52,153,230,171,162, 89,224, 81,224,194,142, 39,211,100,154, 76,147,105,190,124,205, 87,237, 37,100, 22,147,193, -112,248, 97,196,142,255, 52,119, 49, 24, 12, 6,131, 81, 38, 4, 64,151, 50,110, 38, 14,143, 14, 32,132,116,121,129,155,213,113, -166,201, 52,153, 38,211,100,154, 76,147,105,254,187, 52, 43,210,126,101, 70, 39,178, 38, 66,166,201, 52,153, 38,211,100,154, 76, -147,105,178, 38,194,151,251,226,192, 96, 48, 24, 12,204,158, 77, 56,128, 16, 96, 54, 7,236, 16, 0, 67, 4, 5,255,191, 56, 67, -134,144, 82, 39,161,253,232, 35,226,204,142, 56,131,241,106,195,250, 96,253,131, 16, 66, 66,252,252,252, 86, 2, 32,233,233,233, - 99, 41,165, 73,236,168,252,247,225,233,233,217,217,102,179, 65,173, 86,159,120, 21,243, 87,183, 6, 25, 72, 57,212,254, 79, 88, - 27, 73,247, 99,233,198,210,182,173, 19, 78,222, 0,249,207, 92, 90,132,199,131,123,143,232,238, 74,148,121,110, 64, 79,239, 69, - 0,176,231, 80,214,212,191, 99, 94, 44, 66, 72, 77,111,111,239, 35, 66,161, 80,104,183,219,223,203,200,200, 56, 80,182, 1, 26, - 34, 0, 0,111,217,174,233,110, 30, 94,211,190,156, 66, 68,102,211,119, 42,147,209,168,230,132,194,120,137, 88,126,222,198, 41, - 14,165,100,244,188, 95,218,254,219,183,111, 47,115,117,237,200,112,210,179, 86,157, 58,125, 27,215,147,197, 45, 90,218,108, 73, -251, 48, 47,209,147,228,155,202, 95, 54, 38,173,244,118, 15,236, 59,241, 93,225, 1, 41,181,143,250,246, 87,154,207,174, 50,199, -153, 79,136,135, 5,168, 39,146, 74,131,237, 54,155, 47, 1,168, 64, 40,204,176,154, 76,201, 98,224,246, 52, 74, 85,175,186,166, - 88, 42, 13,178,219,108,190, 0,240,223,152, 78, 70, 5, 6,203,217,217,249, 58,199,113, 65, 37, 23,169,229, 10, 23,116, 46,250, -172,228,119,132, 16,216,237,246,148,220,220,220, 38,149,168, 8, 93, 0, 12, 5, 80, 52,212,124, 11,128,109,148, 82,205, 11, 86, -172, 46, 98,177,120,170, 66,161,232,100, 48, 24,234, 2,128, 76, 38,187,167,211,233, 78, 90, 44,150, 69, 47,162, 75, 8, 17, 2, - 24,162, 84, 42, 59,114, 28,215,145, 82, 74, 40,165,167,242,243,243, 79, 2,216, 78, 41,181,189,128,166,204,199,199,103,110,173, - 90,181, 70, 76,159, 62, 61,199,211,211, 51, 98,210,164, 73,215,188,189,189,127,203,206,206,158, 65, 41, 53,252, 55, 20, 14, 66, - 72,117, 63, 63,191, 45, 34,145, 72,144,156,156,220, 17, 0,130,131,131, 79,153,205,102,123,102,102,230,235,148,210,199,149,212, - 83, 0,104,161, 84, 42,155, 40,149,202,118,118,187,189, 54,207,243,224,121,254, 65,126,126,254, 89,139,197,114, 29,192,101, 74, -169,238,191,200, 4, 59,251,248,248,108, 34,132,128, 16, 18, 78, 41,213,190,106,149, 0,229, 80,251,254,189,135, 17,197, 38,170, -110,173,114, 14, 8, 66, 74,217,214, 97,131,213,171,179, 91,143,190,125, 27,112, 0, 96,177, 92,235, 1,224,224,203, 54, 87,131, - 6, 13,186,184,105,211, 38,119,147,201,132,177, 99,199,110,113,117,117, 93,174, 86,171,167,151,183,159,179,179,243,164, 57, 95, -255, 36, 47,172,211,124,120,158,247, 73, 75, 75, 14,143,126,120,167, 71,116,244,221,121, 22,221,238,203, 22, 42, 24,167,210,247, -123,232, 72, 58,234, 84, 39,125,250, 15, 25,216,123,206,156,175, 48, 98,216,136, 42,247,238, 25,101,129, 46,113, 18,141, 69, 81, -195,203, 43,168,223,103,159,127, 75, 46, 95, 58,221,111,251,182, 53, 39, 63,123,135,116, 98, 38,203,161,115, 75,190, 17, 10, 91, -184,215,170,213,110,216,158, 61, 80, 6, 7, 11,133, 82, 41, 7, 0, 54,147, 41, 56, 63, 57,217,127,107,191,126,205,103, 19,114, -122, 22,165, 87,152,230,255,191, 38,195, 65,131,197,113, 92,208,211,167, 79,125, 20, 10, 69, 65, 37, 76, 41,236,118, 59,236,118, - 59, 10,111,138,160,148, 22,255,181,217,108,168, 85,171,150, 67, 79,176, 0, 58, 1,120,171, 67,135, 14,131, 23, 45, 90, 36,170, - 87,175, 94,209,210, 30,109, 63,255,252,243,159, 8, 33, 59, 1,172, 7,112,194,209, 39, 92, 66, 72,119,133, 66,177,249,187,239, -190,115,233,218,181,171, 48, 32, 32, 0,132, 16,164,167,167,183, 56,126,252,120,147, 73,147, 38,189, 71, 8, 25, 73, 41, 61, 82, -137, 11, 58,210,217,217,121,199,192,129, 3,131,218,183,111,239, 84,167, 78, 29,216,237,118,220,188,121,243,237,235,215,175, 15, -223,185,115,231, 44, 66,200, 96, 71,215, 83, 35,132, 16,165, 82,249,102, 96, 96,224,220,153, 51,103,122,140, 28, 57, 82,114,247, -238,221,188,176,176, 48,114,254,252,121,239,109,219,182,189,183, 96,193,130, 33,206,206,206, 51,242,243,243, 55,208,210,214, 49, -122, 14, 23, 23,151,235, 28,199, 5, 57, 98,128, 1, 56,108,130, 9, 33, 13,171, 86,173,186,237,220,185,115, 85, 19, 18, 18,236, - 3, 6, 12,216, 8, 0, 39, 79,158,172,103,181, 90, 73,183,110,221, 14, 17, 66,134, 82, 74,111, 58,152,247,250, 30, 30, 30,123, - 71,140, 24,225, 81,189,122,117,121,213,170, 85,137, 66,161,128, 64, 32,128, 90,173, 14,184,123,247,110,151, 43, 87,174, 24,142, - 31, 63,158, 75, 8,233, 71, 41,189, 93,137,243,212,202,199,199,103,148, 72, 36,138,180,217,108,129, 0, 32, 20, 10,159, 90,173, -214,187,153,153,153,155, 40,165, 23, 95,244, 2,241,245,245,253,113,238,220,185, 94,153,153,153,116,193,130, 5, 63, 2,120,243, - 85,173, 12,182,252,182, 29,215,175, 93, 1, 0, 49, 33,132, 60, 95,254, 8, 33,164,118, 56,196, 31,127, 60, 25, 77,154, 54,199, -235, 35,134, 84,168, 57,160,183,215, 28,137, 64,232,169, 55,155,174,100,171,185,189, 33, 62,146,129, 35,135, 52,137, 3,128,195, -135,238, 12,108,222,220,227,188,151, 43,223, 95, 46,145, 54, 55,219,109, 57,123,254,200,158, 89, 25, 51, 21, 24, 24,120,196,221, -221, 93,158,155,155,155,158,149,149,245,203,160, 65,131,190, 89,191,126,189,251,147, 39, 79,144,156,156,140,137, 19, 39, 42, 83, - 82, 82,222,151, 74,165,151, 76, 38, 83,153,145, 44,173, 86,187,116,238,215,147,103, 58,187,184, 11,228, 50, 5,148,206, 46,168, - 90, 53, 28, 77,155,181, 69,151,174,253, 16, 23, 23,221, 98,219,239,107,162, 4,105, 59,230,219, 37,141,190, 81,169,170,150, 89, - 47,213,141, 32,237,139,204,213,204,153, 95, 33,230,225, 67,109, 66, 60,247,225, 31,123,132,242,158,157,107, 73,205,150,252,132, -203,151, 78, 87,109,209,178, 3, 0, 52,217,190,109,205,201,217, 35, 73,231, 89,155, 95, 61,243,254, 50,205,213, 28,145,232,205, -238,139, 23,251, 52,122,239, 61,113,126,124,188, 37,110,197, 10,125,198,217,179,118,161, 84, 74,131,123,244, 32,222, 29, 59, 58, -189,247,224,129,248,194,130, 5,237,230, 73, 36, 97,159,155,205,155,153,230,255,159, 38,163, 18, 6,139, 16, 2,133, 66,129,173, - 91,183, 66, 36, 18, 65, 40, 20, 66, 36, 18,149,249, 62, 36, 36,196,145,139,100,144,159,159,223, 79,203,151, 47,247,237,222,189, - 59,156,156,156,138,191, 19, 8, 4,232,218,181, 43,186,116,233, 34, 74, 77, 77, 29,190,117,235,214,225,243,230,205,203, 32,132, -124, 64, 41,221, 85,129,110,199,136,136,136, 93, 71,143, 30,149, 25,141, 70,156, 61,123, 22,121,121,121,144, 72, 36, 8, 10, 10, - 66,183,110,221,132, 15, 31, 62,244,232,218,181,235, 46, 66, 72, 31, 74,233, 41, 7,210,218,196,199,199,231,204,246,237,219,157, - 26, 52,104, 64, 30, 61,122,132, 70,141, 26, 1, 0,212,106, 53, 6, 12, 24,224, 52,114,228,200,234,195,135, 15,191, 76, 8,105, - 79, 41,189, 94,129, 94, 99, 63, 63,191, 13, 3, 7, 14, 12,152, 55,111,158,139,179,179, 51, 18, 18, 18,210,252,252,252,194,139, -142,247,240,225,195, 37,125,251,246,245, 95,184,112,225,210, 29, 59,118,124, 66, 8,121,147, 82,122,163, 60,221, 34, 35, 44,151, -203,145,145,145,129, 45, 91,182,224,253,247,223,135, 64, 32, 64,102,102, 38,182,109,219,134, 15, 63,252,176,200,200, 56,100,130, - 21, 10, 69,151, 6, 13, 26,252,122,242,228,201, 32, 55, 55, 55, 4, 4, 4,112, 95,126,249,101,100, 88, 88,152,172, 74,149, 42, -130,180,180, 52,236,218,181, 43,108,212,168, 81,123,157,156,156,222, 54, 26,141, 21, 54,157,249,250,250,174,253,227,143, 63, 66, -238,221,187,135, 21, 43, 86, 32, 55, 55, 23, 18,137, 4,110,110,110,240,243,243, 67,120,120, 56,153, 54,109,154,188,111,223,190, -242, 15, 62,248, 96, 45,128,134, 14,156,163, 6, 62, 62, 62, 43,135, 15, 31, 30, 54,123,246,108, 55, 63, 63, 63, 20, 61, 16,168, -213,234,160,132,132,132, 22, 51,103,206, 28,236,235,235,251, 36, 51, 51,115, 28,165,244, 86, 37, 43,245,134,157, 59,119,238, 51, - 96,192, 0, 65, 90, 90, 26, 54,109,218,212,135, 16,210,208, 81, 83,249,191,198,245,107, 87, 48,118,194,196,252,128,224, 96,241, -254,125,191,247,207,207, 95,117, 94,201,185, 9, 1, 32,159, 87,217, 90,183, 80,182,233,219,111,184,184, 87,239, 1,249,171,126, - 94,170,116,196, 96, 73, 4, 66,207,173,155,199, 39,159,189, 16, 91,251,200,241,132, 46, 3,250,117,225,132,226,136,234, 0, 48, -101,242, 24,201,158,125,199,151,119,239, 82, 37,173, 93,235,240,228, 97, 35, 87, 4, 87,198, 92,213,172, 89,243,116, 84, 84,148, -175, 84, 42, 69,110,110,174,231,170, 85,171,126,104,211,166, 13, 23, 23, 23,135,135, 15, 31, 34, 62, 62, 30,106,181, 26, 93,187, -118, 85,222,184,113,227, 23, 0,101, 26,172, 44,195,160,185, 97, 62,217,203, 2, 61,221,171, 26, 45,106, 31,187, 45,167,206,201, -227,183,234,239,220,174,111,228,227, 23, 20, 62,124,248, 88,124, 54,253, 91,209,238,157, 27,102,158, 57,123, 20, 64,213,178,103, -240,167,104,245,249,140,233,208,104, 77, 24, 57, 98, 12, 70,141, 24,227, 73, 97,246,167,118,163,194,108,200,115,115, 21,223, 59, -176,225,247,237, 3, 1, 4,149, 48, 89, 39,152,201, 42,155, 57, 66, 97,243, 62, 63,253,228, 29,249,238,187,210, 91,179,103,235, -178,207,158, 53,212,232,213, 43,175,209,248,241, 38, 0,208,198,199,139, 99,102,205,146,123,183,107, 39,107, 57,117,170,187,221, -108,246,251,154,144,102, 95, 82,122,181,178,154, 33, 67,135,218,103,174, 91,215,244,236,228,201, 29,136,213, 42,232,209,178,229, -205, 5,155, 54, 61,253, 43,154, 47, 51,157,169,103,206,152,114,195,194,208,104,192,128,156, 16, 31, 31,211,203,204,251, 95, 73, - 39,163,148,122,138, 82, 10, 66, 72,123, 0,167, 1,204,166,148,126, 5, 0,110,110,110, 25, 42,149,202,103,215,174, 93, 21,154, - 43,145, 72, 4,127,127,127,132,135,135,103,102,100,100,248,150, 83, 41, 38,243, 60, 31, 68, 41, 45,142,182,148,133,201,100, 66, -108,108, 44,234,215,175,159, 66, 41, 13, 46,175, 9, 71, 46,151,199, 61,124,248,208,235,254,253,251,184,126,253, 58,194,194,194, -224,238,238, 14,145, 72, 4,171,213, 10,141, 70,131,136,136, 8, 72,165, 82, 52,110,220, 56, 91,167,211,133,149,215,212, 67, 8, -145, 42, 20,138,216, 51,103,206, 4, 55,106,212, 8, 87,175, 94, 69,112,112, 48,252,252,252, 0, 0,241,241,241, 56,127,254, 60, -122,245,234,133,168,168, 40,188,246,218,107,201, 58,157, 46,156, 82,106, 42, 75,211,211,211, 51,237,228,201,147, 41,245,234,213, - 51,234,116, 58, 46, 35, 35, 67,116,246,236, 89,155, 86,171, 85,170,213,106,145, 74,165, 18,105, 52, 26,161, 78,167, 19,113, 28, - 39, 54, 24, 12,162, 19, 39, 78, 8,204,102,179, 75,121,199,169,232, 60,237,219,183, 15,245,234,213,195,174, 93,187, 48,101,202, - 20, 92,184,112, 1,193,193,193,216,190,125, 59,166, 78,157,138,232,232,104,120,121,121,161, 78,157, 58,229,158, 35, 0,168, 81, -163,198,163, 59,119,238, 84, 23,139,197, 69,235, 46, 22,173,103,135,172,172, 44, 60,126,252, 24, 79,159, 62, 69,141, 26, 53, 48, - 98,196,136,199, 41, 41, 41, 53, 42, 42,104, 65, 65, 65, 89,247,238,221,243,170, 95,191, 62, 50, 50, 50,224,230,230, 6, 87, 87, - 87,184,185,185, 21,191, 15, 11, 11,195,228,201,147,225,231,231,151,105, 48, 24,124, 43, 50, 63,245,234,213, 59,114,226,196, 9, - 47, 23, 23, 23,164,167,167, 67,163,209, 64, 40, 20, 66, 46,151,195,203,203,171,216,192,199,198,198,162,119,239,222,217,113,113, -113,221, 43, 17,113,227,124,125,125, 31,222,190,125, 59,156, 82,138,164,164, 36, 68, 71, 71, 99,194,132, 9,177, 70,163,177,214, -171,180,166, 94,137,126, 85,226, 55, 71,143, 21, 15,232,215, 95,127,243,250, 97, 94,134, 51,104,214, 80,166, 2,128,171, 55, 13, -110, 6,180, 71,195, 38, 61,184, 61,251,246,202, 55,172, 95, 37, 2, 15, 95, 16, 68,223,143,161, 95,151,165,221,167,187,219, 27, - 83, 39,246,168,221,174,117, 59,161, 70, 67,253,126,221,184,186, 89,226,147, 56, 95, 0, 8,173, 22,150,241,206, 27, 99,174,186, -184,144,244,179, 23,206,218, 22, 45, 61,252,224,192, 17,213, 70, 7,206, 77, 88,120,120,248,165,125,251,246,121,249,248,248,192, -213,213, 21, 58,157, 14, 22,139, 5,247,239,223, 55,110,221,186,213,234,226,226,226,156,158,158, 14,149, 74, 5, 66, 8,246,237, -219,151, 68, 41, 13,125, 94,171,168, 15, 22, 0, 76,232, 89, 91, 84,167, 83,184,187, 88,106,147,201, 68, 49,254, 32,118, 41,161, - 74,223,147, 39, 47,213, 63,117,230,220,235,189,250, 12,243,110,217,178, 35,190,157,247,153, 53, 41, 61,163,145, 74,223,239, 97, -105,125,176,106,135,147, 78, 3, 94, 27, 56,100,206,156,175,240,213,204,217, 56,176,111,143, 90,169,224, 76, 46,110, 34,215,118, - 45, 90, 27, 39,191,223, 63, 89,159,159, 18,252,195,242,213, 35,186,118, 31, 18,212,162,101, 7, 92,190,116, 26,219,183,173,185, - 46,182, 91, 89,115,225,115,204, 38,196,221, 45, 44,108,220, 71,177,177,226, 91, 95,125,149,111, 75, 77,205,107, 50,105, 82,118, -105,219,166, 28, 59,166,144, 4, 4,184,184,247,235,231,177, 52, 52,148, 90, 51, 51, 87,150,214,135,168, 52,205,227, 74,165,219, -239,135, 14,117,166, 34, 81,251, 79, 63,251, 76,214,167, 79, 31,104, 52, 26,236,220,185, 19, 43, 87,172, 48,249,251,251,223, 9, -184,123, 55, 42, 82,163,249,194, 81,205, 38,147, 38,101,219,237,118, 50,100,234,212,174,247,226,227, 59,165,103,102, 86, 1, 0, -127, 15,143,228, 38, 97, 97,215,215, 30, 56, 16,253, 99,213,170,188,163,233, 92,125,248,176,239,142,132,132,119, 61, 60, 60,100, - 25,153,153, 66,169, 68,146,211,162, 78,157,237, 63,207,152,113,218,118,251,182,216, 41, 40,200,197,181, 79,159, 74,231,189,201, -164, 73,217,185, 90,173,240,163,111,190,105,157,152,145, 81, 37,223,100,170,161,210,106,253,236, 86, 43,231, 34,151,231, 84,139, -136,200, 52,156, 61,155, 86, 77,175,159,184,154,210,204,191, 49, 82,249, 39, 47,242, 42, 68,176, 78, 83, 74,255, 52, 90,134, 82, -234, 80,244, 74, 36, 18, 61,211, 28, 85, 14, 98, 66, 8,110,220,184, 1, 79, 79, 79,248,249,249, 65, 42,125,118,113,192,172,172, - 44, 92,184,112, 1, 15, 30, 60, 64,131, 6, 13, 0, 64, 92,158,160, 84, 42,253,120,225,194,133,110,102,179, 25,215,175, 95, 71, -147, 38, 77, 32,149, 74, 33, 22,139,159, 49,127,153,153,153,168, 91,183, 46, 62,253,244, 83,215,121,243,230,125,140,114,214,144, - 19, 10,133, 31,140, 25, 51,198,167, 40, 98,149,156,156,140,198,141, 27, 23,127,239,237,237,141,155, 55,111,162, 73,147, 38, 8, - 10, 10,194,224,193,131,125, 54,109,218,244, 1,128, 69,101, 62,201, 75, 36, 92,189,122,245,154, 22, 70,136,192,113, 92,140,139, -139,139,183,175,175,175,194,197,197,229, 79,121, 92,183,110,157,138,227, 56,107, 69, 7,148,227, 56,164,167,167, 35, 50, 50, 18, -106,181, 26, 0,160,211,233, 80,163, 70, 13,104, 52,154, 98,179, 26, 16, 16, 0,131,161,252,174, 93, 13, 26, 52,248,170, 86,173, - 90,221, 58,116,232, 32, 21,137, 68,184,117,235, 22, 26, 53,106,132,173, 91,183, 34, 36, 36, 4,114,185, 28,177,177,177,168, 87, -175, 30,206,156, 57, 3,111,111,111,212,173, 91, 87,218,184,113,227,115,185,185,185,167, 18, 18, 18,190, 42, 39,157,156, 82,169, -196,153, 51,103,176,118,237, 90,196,199,199, 35, 53, 53, 21,206,206,206,104,216,176, 33,234,212,169,131, 86,173, 90, 33, 54, 54, - 22,164,130,194, 68, 8,241, 11, 15, 15, 63,112,245,234, 85, 47, 74, 41, 54,109,218,132,252,252,124,152,205,102,112, 28, 7, 39, - 39, 39,184,187,187,163, 83,167, 78,240,246,246, 70,120,120, 56,182,109,219,230,213,179,103,207,131,133, 17,168,244,138,142,171, -187,187,251,196, 89,179,102, 5,251,248,248, 32, 33, 33, 1,106,181, 26,190,190,190,232,208,161, 67,224,241,227,199, 39, 2, 88, -252,170,220,192,138, 58,180, 19, 66,200,254,125,191,247, 15,241,151,212,110,214, 72, 27,122,231,134,176,250,193,227,143,234, 23, - 28,143,208,219,205, 26,107, 31, 95,189,126, 56,113,255,190,223,175, 60,136,193, 94, 71,154,176,179,213,220,222, 35,199, 19,186, -212,175,219, 86,176,108,249,172,254, 99,223,233, 46,245,112,111, 75, 52,153,219,112,225,202,157,208, 47,191,154,230,243,245, 87, - 11,246, 31, 57,158, 96,207, 86,115,115, 29, 73,111,221,218,254, 63,158,222,227,227,149,111,249, 25, 55,175,184, 2,162,150,168, - 22, 86, 19, 26,141, 6, 78, 78, 78, 78, 35, 70,140,176, 79,159, 62, 93,239,226,226, 34, 39,132,224,212,169, 83,153, 0,186, 87, -164,107,244,113,167,118,139,213, 70, 37, 2,158, 18,103, 3,177,231, 74,238,222,127,130,246,237,123,102, 52,109,210,104,222,130, -239, 22,127, 30, 22, 22,225, 61, 98,228, 56,209,162, 69, 95,172, 0,208,182, 52,157, 7,177,244,100,157,234, 68, 6,160,247,156, -175,191, 66, 92, 92,172,251,216,183, 84,179,133, 82, 89, 64,173,208,214,206, 43,214,158,234, 81,163, 70,213, 42, 99, 71,191,253, -199,170,117,107,123,151,140,100,253,254,219,170,189,132,144,206,142, 28,219,127, 17,245, 71, 29, 56,128,252,164, 36,107,238,185, -115,198,206, 63,253,148, 29,220,189,251, 98,179,197,226, 85, 84, 85,112,132,128, 20,117,145,224,121, 34,252,244, 83,142, 10,133, -176,186,187,191, 53, 13,168, 89,145,230,148,180,180, 65,175,191,251,110,239,189,135, 15,163,106,213,170,197,247, 51, 55, 55, 55, - 76,157, 58, 21,147, 38, 77,146,222,188,121,179,217,142, 29, 59,154, 45,250,238, 59,223,105,192, 32, 71,210,121,244,242,101,247, -241,115,230,204,104,208,164, 73,200,198, 45, 91,164,213,171, 87, 7, 0, 60,126,252, 56,252,219, 5, 11, 66, 35,235,213,203,152, -247,241,199,235,239, 77,159, 94, 23,192,185,242, 52,211,207,158, 53,239, 72, 72,120,247,228,169, 83,110,145,145,145, 0,128,232, -232,104,159,165, 75,151,142,169, 59,120,240,200, 57,239,189,247, 69, 31,163, 81,229,146,149, 37,237,243,227,143,194,223,135, 12, -169, 80,179, 40,157, 0,208,225,237,183, 63,110,219,177, 99,157, 65,239,190,235, 17, 18, 18, 66,148, 74, 37, 44, 22, 11, 82, 83, - 83,221,239,221,187, 87,253,128, 86,171,217,125,249,242,166,213,133,139,184,255, 77,148,234, 69,254,215, 13, 86, 7, 66, 8, 5, -208,129, 82,122,166,232,198,109,183,219, 29, 50, 87, 66,161, 16,133,157,128, 29,250, 81, 74, 41,178,179,179,145,157,157, 93,220, - 68,148,153,153,137,147, 39, 79, 34, 54, 54, 22, 34,145, 8, 98,177, 24, 22, 75,197,107,195, 42, 20,138, 46, 93,186,116, 17, 94, -190,124, 25, 97, 97, 97,144,201,100,197,233, 42,122,137,197, 98,248,251,251, 67,163,209,160,115,231,206,162,101,203,150,117, 41, -207, 96,185,186,186,246, 26, 58,116,168,164,232,255,252,252,124, 8, 4,130, 98,179,146,159,159,143,220,220, 92,168, 84, 42, 24, -141, 70,180,108,217, 82,114,224,192,129, 94,229, 25,172,146,232,245,250,252,204,204, 76,183,182,109,219,186,175, 95,191, 62,186, -101,203,150, 17,207,148,176,211,167,141, 70,163, 81,196,113,156, 67,235,220,109,222,188,185,248,216, 63,125,250, 20, 43, 86,172, - 40,254, 46, 54, 54, 22,203,150, 45, 43,158,151,163,188,115, 84,171, 86,173,158,155, 54,109,106,178,113,227,198, 60,129, 64,128, -232,232,104,108,217,178, 5,148, 82,120,123,123, 67,175,215, 35, 35, 35, 3,167, 78,157,130,205,102,131, 82,169, 68, 96, 96,160, -211, 7, 31,124,208,102,246,236,217, 34, 0,101, 26, 44,187,221,110, 23, 8, 4, 8, 13, 13,197,204,153, 51, 97, 52, 26, 33, 22, - 23,248, 74,141, 70, 3,149, 74,133,168,168, 40, 36, 36, 36,160,162,155,139,147,147,211,224,141, 27, 55,250, 72, 36, 18, 24, 12, - 6,104,181, 90, 36, 39, 39, 35, 49, 49,209,152,153,153,105,115,118,118,230, 66, 67, 67, 57,169, 84, 42, 29, 48, 96, 0, 41, 50, -154,125,250,244,241,220,180,105,211,176,138,204, 17, 33,196,187,118,237,218,159,143, 25, 51,198,169,100,153, 77, 79, 79,199,160, - 65,131,228, 23, 47, 94,156, 78, 8,217, 66, 41,205,122,149,238, 98,148, 82,154,159,191,234,252,217,189, 63,213,190,115, 67, 88, -221,108,206,107,217,181,215, 68, 33, 0, 92, 60,179,174,229,157, 27,119, 33, 35,182,196, 67, 71, 23,157, 87, 42,199,210,138, 34, -128,189, 58,187,245, 8,241,145, 12, 28,208,175, 11,247,235,198,213,205,198,190,211, 93,234, 83,109, 53, 1, 0,119,113, 16, 90, -217,167,112, 70,147,206,233,215,141,171,155, 13,232,215,235, 74,252,147,196,197,189,187,184,239, 62,120, 66,117,184,188, 8,161, -191,159, 40,208,195, 37, 7, 30,206,141, 16, 26,230,140,168,155,183,177,119,215, 57,132,215,106, 3,147,201, 4,155,205,166,232, -219,183,175,126,235,214,173,198,152,152, 24,173,193, 96,104, 79, 41,141,169, 40,255, 41, 41,247,249, 8,191, 22, 22,177, 76,106, -211,170,197,250,105, 95,236, 24,210,184,121,183, 38,238,254,129, 34,111, 5,191,191, 99,251,182, 91,126,219,188,114,210,148, 79, -190, 70,195,134, 45, 91, 62,120,116,168, 14,128, 59,165,154,214,199,244, 64,100, 56,177,197, 61,122,212, 59, 49, 33, 33,165,166, -175,159,249,177,138, 90, 39, 78, 91,221,181,109,251,193,245,171,215,110, 39,185,119,255, 12,153,252,254,152,223,126, 88,190,122, - 68,145,201, 58,123,246, 72,251,175,190, 74,144, 0, 48, 49, 95, 85,248, 84, 46,149, 6, 41, 67, 67,133,241,235,215, 27,194,250, -246,205, 3, 0,179,197,226, 21,159,144,224, 42,151,203, 65, 41,133,213,106,125,166,143,112, 81,191,224,200,136, 8, 95, 71, 52, -227,191,252,178,254,167,159,126,138,244,244,116,216,108, 54,136, 68,162,231,235,108,232,116, 58,188,245,214, 91,248,241,187,239, - 90, 56,162,105,183,219,201,248, 57,115,102,124, 54, 99, 70,245,113,227,198,113, 37,235, 94, 15, 15, 15,236,216,185, 83,178,124, -249,242,160,207,127,252,241,173,215,165,210,184,138, 52,179,107,212,128, 71, 70,134,172,200, 92, 1, 64, 68, 68, 4, 86,172, 88, - 33,125,231,157,119, 36,125,251,246,253,254,102,131, 6, 75, 23,183,105,243,200,179,102, 77, 23,137, 84, 26,228,232,241, 4, 0, -173,209, 24,185,120,233, 82,247, 43, 87,174, 32, 35, 35, 3,233,233,233, 69,215, 50,154, 54,109, 74, 70,141, 26,229, 90, 45, 56, -184,217,223,124,186,255,228, 69,254,231, 13, 86, 97, 70, 72, 97,198, 72,137,155,226, 51, 70,165, 34,131,245, 34,168, 84, 42,168, - 84, 42,172, 89,179, 6, 98,177,184,248,166, 11, 0,102,179,217, 17,179, 82, 47, 32, 32, 0,106,181, 26, 53,107,214,124, 38,114, - 37, 22,139, 33, 20, 10, 33, 22,139, 33,149, 74, 97, 50,153, 16, 18, 18, 2,189, 94, 95,175, 60, 77,131,193,208,208,195,195,163, -248,198,106, 50,153,138,205, 85, 81,122,205,102, 51,242,242,242,144,159,159, 15,173, 86, 11,157, 78,215,200,145,252,242, 60,143, -187,119,239, 62,142,136,136,104, 40, 16, 8,160, 84, 42, 21, 58,157,174,184,239, 80,110,110, 46, 54,108,216,160,123,227,141, 55, -188,246,237,219, 87,161,193, 34,132,224,195, 15, 63,132, 84, 42,133, 94,175,199, 47,191,252,130,143, 62,250, 8, 98,177, 24, 90, -173, 22, 43, 86,172,192,228,201,147, 33, 20, 10, 97, 54,155,177,116,233,210,178, 35, 25,247,239,199, 95,190,124,185, 81,227,198, -141,221,119,239,222,157,213,181,107, 87,239,238,221,187, 67, 38,147,193, 96, 48,192,106,181,162, 69,139, 22,168, 85,171, 22, 50, - 51, 51,113,232,208,161,236,240,240,112,175, 43, 87,174,240,233,233,233,137, 21,221,188, 75, 68, 8, 97,183,219,145,145,145, 1, -149, 74,133,172,172, 44,164,166,166, 34, 37, 37, 5, 66,161, 16, 21, 61,188,123,122,122,190, 22, 25, 25, 41, 0, 0,153, 76,134, -134, 13, 27, 98,198,140, 25, 54,131,193, 48, 20,192,161,194,205,122,174, 94,189,122,247,249,243,231,133, 1, 1, 1,120,248,240, - 33,188,189,189,133, 78, 78, 78, 21, 26, 44, 63, 63,191,117,251,247,239,247, 40, 50,213, 69,199, 89,175, 47, 56, 29,131, 6, 13, -242,216,184,113,227, 58, 0,189, 94,181,155,153,146,115, 19, 54,107, 40, 83, 29, 60,254,168,126,215, 94, 19,133,254,213,103, 1, - 0, 90, 1,194, 99, 7,151,214,239,213,165,198,246,162,126, 89,229, 49,160,167,247,162,190,125, 27,112, 35,135, 52,137, 19,138, - 35,170,111,222,184,212,215,195,189,237,127, 42, 9,129, 7, 20, 50,160, 86,117, 59,119,233,247, 56,223,201, 19, 35,204, 91,214, -191, 27,183,121,251,245, 46, 98,241,173, 78, 0, 38,151,165,125,251,158,105, 95,158, 54,176,182,187,248, 52,129, 83, 63, 52,106, - 24, 14,111,111, 21,126, 89,181, 17,129, 33,173, 97, 50,153,224,226,226, 34,183,219,237, 22,129, 64,176,217, 17,115, 5, 0, 39, - 78,168,248,186,117, 85,102,129,150,183,189,255,209,162,129, 93,123,246,171,211,169, 83, 23,254,232,177,163,150,214,141, 44,105, -157, 58,181,204, 56,117,250,108,108,122,250,211,240, 90,181,234, 35, 38,250,102, 15,128,220, 5, 74, 47,176,119, 99,233,225,234, -213,201,169,173, 91,199,242, 6, 62, 74,246,205,220, 59, 61,123,247,126, 51,178, 93,219,118,252,177,227, 39,205, 18,100, 63, 80, -182,105,245,244,205,225, 67,119,111,221,181,187,219,169,147, 7,106,168, 53, 25, 7,190, 91, 78,153,185, 42,249,112,102,179,249, - 10,165, 82, 46,235,212, 41, 91,189,119,222, 49, 21, 93,143,114,185, 28,123,247,238,133, 68, 34, 41,126,137,197,226,226,247,190, -190,190, 69,131,170, 28,210, 4,128,180,180, 52,164,167,167,195,213,213, 21,222,222,222, 72, 79, 79,199,197,139, 23, 17, 19, 19, - 3,145, 72,132, 30, 61,122,128, 43,163,239,242,243,154, 67,166, 78,237, 90,187, 94,189,144,231,205, 21, 0, 88, 44, 22,228,230, -230,162,127,255,254,220,161, 67,135,252, 14, 39, 37,245,251, 18,216, 92,158,102,163,222,189,115, 50,118,236, 40,245,183, 27, 55, -110, 76, 46, 92,184, 32,237,209,189,251,164, 41,115,231, 46,255,113,227,198,100,187,205,230, 87,153,188,115, 28,199, 17, 66, 16, - 28, 28,140,220,220, 92,228,231, 23,180, 84, 43,149, 74,184,187,187,195,106,181,130,167, 84,244, 55, 63,228,149,234, 69,254,167, - 13, 86, 97,102, 0,160, 67,201, 27, 10,207,243, 14,153, 43,145, 72, 84, 97,159, 42, 71,162, 90,207,227,136,193, 42, 74,171,147, -147, 83,241, 5, 86,210, 88, 21,165,147,227, 56, 8, 4, 2, 56, 18,121,231,121, 94,160,213,106,177,115,231, 78,180,111,223,190, -184,249, 73,173, 86, 67,165, 82, 65,173, 86,195,104, 52, 34, 62, 62, 30, 39, 78,156, 64,141, 26, 53, 0, 56, 54,105,107, 92, 92, -220,245,170, 85,171, 54, 41,186,121,119,236,216, 49,104,253,250,245,169,189,122,245, 10,160,148,226,139, 47,190,200,110,209,162, -133, 87,201,155,123, 69, 8, 4, 2, 92,188,120, 17, 53,106,212, 0,165, 20, 98,177, 24,209,209,209,240,241,241, 1,207,243, 16, - 10,133,200,202,202,130,179,115,249,115, 27,222,189,123,119,244,219,111,191,157,234,234,234, 90, 63, 39, 39, 39, 77, 42,149,182, - 61,123,246,108,176,197, 98,129,139,139, 11, 92, 92, 92,112,240,224, 65,184,185,185,225,227,143, 63, 78, 50, 24, 12, 23, 21, 10, -133,175,193, 96,184,157,158,158,254, 69,101,206,183,205,102,131, 78,167, 67, 94, 94, 30,114,115,115,161,209,104, 96, 52, 26, 43, - 76, 99,105,180,109,219, 22, 7, 14, 28, 16,204,159, 63,255,215,184,184,130, 7,193,176,176, 48,124,252,241,199,130,192,192, 64, -196,199,199,227,250,245,235,176, 88, 44,168, 40,252, 44, 18,137, 58, 78,153, 50,165, 77, 72, 72, 8,177, 88, 44,224,121, 30, 38, -147, 9, 69,239,147,146,146, 80,187,118,109, 46, 52, 52,180, 37, 33,164,163, 35, 3, 38, 24, 5,104, 50,183,193, 93, 28, 4, 8, - 60,192,107,150, 67,247,130,147,145,100,102,102,206, 29, 49, 78,240,206,193, 45,249,190,209,143,156, 17, 28, 54, 10, 65,213,250, - 99,204,219,118,124,245,205, 1, 4, 6,215, 65, 98, 98, 34, 58,118,236, 40, 78, 77, 77,125, 27,192, 84, 71,181,143, 29,187,108, - 63,122,240,208,224, 33,195,222,108,210,165, 75, 47,219,145, 35, 7,113,247,246,145,123,111, 15,123, 45,147,242,249,196,205, 77, - 30,245,232,209,131,240,200,200,198,176, 88,173,109,129,175, 22, 2, 40,179, 82,121,252,152,154,103,207,158,205,253,177,103,221, -168, 17, 35,223,106,208,185,115, 55,235,145, 99,251,113,253,210,177, 91,223, 47, 28,115,102,254,210,109, 29,187,246,120,173,174, -147,203,229,131,145,117, 13,239, 6,187,132, 60,102, 37,165,140,155,149,147, 19,143,194,122,145, 35, 4,148,210,103,204,213,243, - 6,139,227,184, 10, 31,252, 75,106,150,188, 23, 21, 61, 72,175, 92,185, 18, 82,169, 20, 18,137, 4, 34,145,168,194,110, 22, 37, - 53,239,197,199,119,218,176,121,179,180, 52,115,149,147,147,131,156,156, 28,228,231,231, 99,248,240,225,226,217,215,174, 53,174, - 72, 51,196,223,223,164,144,201, 50,238,223,191, 31, 80,167, 78,157,103,210,171,209,104, 32,147,201,176,121,203, 22,113,159,222, -189, 39,116, 62,120,240,123, 0,170,202,230,157, 16, 2, 31, 31, 31,184,187,187,131, 16, 2,155,205,134,244,244,116,220,187,119, - 15,215,174, 93,131,128, 16,219,223,121,142, 75,243, 34,175, 66, 4,139,148, 21,109,113,212, 96, 9, 4,130, 23,142, 98,149,133, - 35, 77,132,114,185,252, 78,106,106,106,235,192,192, 64,216,108,182, 98,131,245,124, 19, 97, 81,180,227,230,205,155,144,203,229, -119, 42,210,164,148,182,108,214,172, 25,118,237,218,133, 83,167, 78,225,201,147, 39,208,235,245, 48,153, 76, 48, 24, 12,184,119, -239, 30,120,158, 71,100,100, 36, 20, 10, 69,133,154, 0,160,211,233,210, 68, 34, 81,132, 76, 38,251, 79,115,135,191, 63,114,114, -114,120,171,213,138, 13, 27, 54,104,252,252,252, 20, 50,153,204, 97,195, 74, 8, 65,102,102, 38,130,130,130,138,251, 96,105,181, - 90,248,248,248, 20, 25, 10,152, 76, 38, 56, 59, 59, 87,216, 68, 72, 41, 53, 2,152, 82, 66,187,233,144, 33, 67,126,219,186,117, -107,181,227,199,143,227,202,149, 43,240,246,246,198,188,121,243,158, 36, 36, 36,140,160,148, 94,251, 27, 46,176, 10,183,201,201, -201,217,121,231,206,157,150,205,154, 53, 43,174, 29, 58,118,236, 72, 58,118,236,232, 85, 50,164,159,149,149,133,171, 87,175,226, -248,241,227, 32,132, 32, 54, 54,214,110, 48, 24,126, 43,231,183,197,161,161,161,235,103,204,152,161,180,217,108,197,101, 91, 38, -147,193,201,201, 9, 98,177, 24, 2,129, 0, 9, 9, 9,232,223,191,191,235, 79, 63,253,180,142, 16, 82,157, 82,106,193, 43, 66, - 62,175,178, 93,189,105,112,115,119, 15,189,125,241,204,186,150,173, 10,235,136,139,103,214,217,220,221, 67,111, 95,189,105,112, -107, 23,172,178, 41, 43,208,217,115, 40,107,170,197,114,173,199,225, 67,119, 6, 78,153, 60, 70, 18, 90, 45, 44,227,194,149, 59, -161,173,236, 83, 56,133, 12,208, 25,128, 92, 21,240,240,177,128, 15,173, 22,150,113,237, 70,180,228,251, 31,214,132,233, 13,230, -221, 7, 79,168, 14, 87,240, 48,102, 36,132, 12,248,240,115,209,153, 55, 71,251, 72, 36, 78,193,208,230,221, 64,149, 80, 79, 12, -125, 45, 2,203, 87,221,128,139,139, 7,124,125,125,193,113,156,194,209,188,103,103,103,147,157,191,159,123,231,141,183,198,180, -232,222,173,183,237,240,145, 63,132,167,142,238,187,184,110,213,231,187,169, 64, 39, 39, 84, 43, 11, 14, 9,186, 29,255, 36,102, - 68,187,118,221, 32,147,200,107, 0,181, 74, 45,176,197, 3, 7, 40,146, 56, 14, 78,111,188, 53,182, 85,247,238,253,108, 71,142, -236,193,145,131, 27, 47,207,154, 85,229,224,147,167, 91,196,151,174,165, 56, 13, 24,252, 94,222,129, 67, 15,204,175,245,173, 26, - 19,160,104,104, 0,227,217, 7, 72,161, 48,195,102, 50, 5, 7,117,239, 46,208, 39, 38,138,148,190,190, 54, 0,176, 90,173, 21, - 26, 44, 0,188, 35,154,142,166, 69,175,215,131, 7,108,142,104,166,103,102, 86, 41,124,248, 46,198,106,181, 22,155,171,156,156, - 28,168, 84, 42, 40, 20, 10,100,153, 76,190,142,104,118,107,222,124,195,236,175,190,154,186, 99,231, 78,113, 73,115, 85,244, 18, -137, 68,248,118,225, 66,241, 71,159,124,242,222, 4,161,112, 98,101,142,103,209,195,186, 64, 32,128, 80, 40, 68, 98, 98, 34,146, -146,146,144,152,152,136,196,196, 68,200,100, 50,208, 50,142,231, 75,140, 96,145, 87,169,236,150, 59, 77, 67,101, 58,185, 59,106, - 8,236,118,251, 75, 53, 88, 58,157,238,248,137, 19, 39,154, 15, 24, 48, 64,120,249,242,101,248,249,249, 21, 27,172,162,191, 69, -205, 78,114,185, 28,187,119,239,182,232,116,186,227, 21, 92, 68, 39, 14, 30, 60,216,100,230,204,153,162,209,163, 71,227,254,253, -251, 24, 55,110, 28, 84, 42, 21, 52, 26, 13,114,114,114,160,215,235,209,188,121,115, 56, 57, 57,225,246,237,219, 86,189, 94,127, -162,130,130, 67, 51, 51, 51,243,189,189,189,253,159,255,110,240,224,193,190, 63,255,252,179,254,225,195,135,214,214,173, 91,187, - 56,106, 52,138,248,253,247,223,139, 35,115, 49, 49, 49,248,249,231,159,139,251, 92,221,184,113, 3,139, 22, 45, 42,158,187,172, -146,133,253, 90,221,186,117,109, 86,171, 21, 53,106,212, 64, 96, 96, 32,140, 70, 35,150, 44, 89, 98,251, 59,204,149,163, 24,141, -198, 29,111,190,249,230,103, 81, 81, 81,254, 66,161,176, 32,116, 93,152, 63,139,197,130, 71,143, 30,225,222,189,123,120,248,240, - 33,114,115,115,139, 31, 0,110,222,188,153,103,181, 90,183,149,165,235,237,237,253,197,218,181,107,253,228,114,249, 51,229,185, - 40,250, 89, 20, 21,205,202,202,130,155,155, 27, 58,119,238,236,115,226,196,137, 47, 0,204,124, 21, 42, 3, 66, 8,105,221, 66, -217,230,195,247,222, 66,179,198,218,199,119,110,220,197,177,131, 75,235, 3, 5,157,220,235, 53,142,124,124, 53,202, 25, 61,187, - 77,109,115,225,242,184,114, 59,185, 23,246,161, 58,216,188,185,199,249, 61,251,142, 47,159, 54,121,204,213, 47,191,154,230, 99, - 52,233,156,106, 85,183,115, 64,129,185,186, 20,165, 48,126,253,213,152,171, 11,126,216,192, 39,101, 90, 38, 93,185,146, 87,230, -232,222,146,166,165,110, 77, 56,249,133,246, 78, 13,173,214,177,234,237, 27,107,224,229,154, 7,231, 26,173,209,179,123,115, 28, - 63,113, 7,137, 79,141, 72, 75, 75,131,201,100, 42,119,218,131,135,183,119,143,162,132,134, 16, 74,146, 8, 71,157, 70,189,249, -110,219,222,189,251,209, 3, 7,246,217,246,236,222,124,126,219,166,101, 59, 56,177, 72,104, 48,187,154, 9, 49,170,121,206,249, -190, 78,151, 83, 80,121,138,197,101,135, 91, 11, 39,100,173, 83,183,150,223,168, 55,199,185,246,234,217,159, 30, 60,184,135,223, -182,117,195,169,109,107,234,109,230, 57,141, 56, 45, 89, 47, 85,107,172,106, 74, 36,110,249, 26, 94,159, 17, 87,221, 24,208,123, -176, 5,140,103,239, 3, 38, 83, 74,126,114,178,191, 71,251,246,210, 71, 95,125, 37,247,109,222,220, 72, 10,251, 8,151,103,176, - 4, 2, 1,192,113,188, 35,154,142,166,197, 96, 48,128, 7,172, 47,162,105,179,217,158, 49, 87, 69, 6,171, 40,158,225,136,230, -170, 89,179, 46,135,116,239,158,123,250,244,105,223, 14, 29, 58, 16,173, 86, 11,173, 86,251,140,201, 10, 8, 8, 32,117, 34, 35, -229,191,159, 58, 21, 54,211,193,227,233, 72,222, 57,142,251,219, 13,214, 43, 23,117, 45,239,203,162, 8,150, 35, 6,203,193, 8, -150,213,106,181,194,199,199, 7,217,217,217,101,222,240, 57,142,131, 76, 38, 43,106, 3, 46,119, 36,157,201,100, 90, 50,117,234, -212, 15,122,246,236,233, 21, 17, 17,129,172,172, 44,248,250,250,194,201,201,169,184,111, 88,145,222,141, 27, 55,176,118,237, 90, -141,201,100, 90, 82,129,230,226,133, 11, 23,190, 63,104,208, 32, 15, 63, 63, 63,184,187,187,227,246,237,219,112,119,119,135, 70, -163, 65,116,116, 52,156,157,157,139,251,229,236,219,183, 79,107, 50,153, 22, 87, 96,218,232,217,179,103, 45,206,206,206,183,179, -178,178, 4,185,185,185,194,188,188, 60,161, 70,163, 17,169,213,106,209,225,195,135,189, 92, 93, 93,245, 39, 79,158,204, 10, 9, - 9, 17, 60,121,242, 68, 96,181, 90, 57, 7,110,138,152, 56,113, 34,196, 98, 49, 76, 38, 19,150, 44, 89,130,169, 83,167, 22,247, -185, 90,184,112, 33,102,204,152, 81,108,152, 87,175, 94, 93, 89,147, 5,139,197, 2,171,213, 10,171,213,234,144,233,253, 43, 56, - 98,212, 41,165,233,132,144, 62,205,154, 53, 59,186,125,251,118,207,194, 57,197,144,145,145,129,140,140, 12,100,101,101, 33, 63, - 63, 31, 54,155, 13,129,129,129,200,200,200,192,158, 61,123,212, 90,173,182,123,121, 35, 8, 5, 2,193,155,109,219,182, 21, 62, -159,134,162,167,186, 34,211, 46,149, 74,145,154,154,138,142, 29, 59, 74, 78,159, 62,253,230,255,186,193, 42, 50, 46,181,195, 33, -238,219,111,184,184, 97,147, 30,250,171,215, 15, 39,202,136, 45,177, 87,151, 26,219,129,130,105, 26,174, 70, 57,163, 97,147, 30, - 92,223, 52,115,115, 85,222,170,134,117,106, 18, 75,121,203,234, 0,128,151, 43,223,191,123,151, 42,105, 46, 46, 68,248,245, 87, - 11,246,255,186,113,117,179, 75,191,255,103,154,134,175,191, 42,152,166,161,123,151, 42,182,251, 15, 99,250, 3,216,232,168,105, -233,211,167,111,212,170, 53,155,144, 18,183, 47, 96,249, 2, 55, 9,140,121,128, 40, 2,109, 91,184,224,202,143, 73,184,117,235, - 86,186,217,108,238, 88,110, 89, 34, 52,228,222,253,187, 53,235,213,173,227, 55,234,205,177, 46,125,250,244,199,129, 3,123,177, -105,195,154,179,175, 13, 31,244,235,211, 60,141,192, 71, 36, 23,203, 41, 47, 17,136, 93,133, 78,114,121,166, 37, 53,181,160,242, - 20,138, 92,128, 33,124, 57, 45,132, 24, 63,118,164,107,167, 46,253,241,199,193,189,216,180, 97,213,153, 47,235, 14, 94, 83,181, - 81,109,210,188,241,119,239, 85,173, 86, 53, 84,151,159,161,225,136,196, 98, 52,242,206,223,109, 72,248, 33,110,198,155,113, 81, -119,135,124,207, 70, 17, 62,195,237, 77,189,122, 53,251,232,241, 99,177,119,155, 54,178,212, 83,167,228,133, 43,135,148,107,176, -132, 66, 33,104,217, 77, 90,207,104,146,141, 27, 57, 0,229, 14,174, 18,139,197,208,235,245,176, 2, 22, 71, 52,253,143, 28, 73, -126,252,248,113,184,135,135,199, 51,230, 42, 55, 55,183,248,189,209,104,132, 94,175,135, 76, 38,187,231,136,102,198,217,179,198, - 5, 19, 39,206, 28, 49,124,248,178,227, 39, 78, 56,121,122,122, 66,173, 86, 63, 99,176,204,102, 51, 58,117,238, 44, 94, 24, 21, - 53, 10,192, 44, 71,142,167,111,199,142, 21,246,247, 21, 8, 4,224,255,230, 38,194, 87, 13,174,162,166, 26, 71, 71, 17,150,118, - 99, 36,132,116,121,238,163, 25, 77,154, 52, 49,198,196,196, 32, 36, 36,164,216,164,148,252, 77, 23, 23, 23,184,185,185,225,198, -141, 27,152, 59,119,174, 1,192,140,242, 52, 41,165, 90,189, 94, 63,172,107,215,174, 6,161, 80,136, 90,181,106, 21,207,127,197, -243, 60, 36, 18, 9, 20, 10, 5,162,162,162,208,183,111, 95,189, 94,175, 31,246,252, 28, 88,165,104,170,245,122,253,235,221,186, -117,211,223,191,127, 31,109,219,182,197,173, 91,183,144,159,159,143,252,252,124,196,199,199,163, 78,157, 58,208,235,245,248,249, -231,159, 13,122,189,254,117, 74,169,186, 60, 77,173, 86,219,119,234,212,169,130,223,126,251,173,106, 96, 96, 96,221,166, 77,155, - 70,116,238,220,185,250,192,129, 3, 67,123,245,234,229, 31, 30, 30,110,236,222,189,187,119,207,158, 61,189,245,122,189,232,194, -133, 11,105, 86,171,181,103, 5,199,179,216,148,196,196,196, 20, 55, 9, 10,133, 66,100,103,103, 23,207,180, 95, 84, 25,149,102, -128,203,210, 44,105,178,139,140, 85,145,209,170,168,238, 47, 67,179,194, 27,134, 68, 34, 41,138,112,210,138, 52, 41,165, 55, 31, - 60,120,208,181,125,251,246, 55,223,121,231, 29,109,122,122, 58,156,157,157, 17, 22, 22,134,154, 53,107,194,203,203, 11, 22,139, - 5,187,119,239,214,237,217,179,231,142, 90,173,238,248,252, 28, 88,207,107,114, 28, 23, 95, 90,229, 90, 20,189, 42, 50, 88, 78, - 78, 78, 8, 12, 12, 44, 58,182,241,149, 57,158, 47, 24, 89,250,123, 53, 11,141, 75,231, 78,221,171,245,234, 61,192,117,207,190, -189,242, 31,127, 89,255,160, 93,255, 15, 86,120,133, 78,217,229, 21, 58,101, 87,187,254, 31,172,248,241,151,245, 15,246,236,219, - 43,239,213,123,128,107,231, 78,221,171,221,191,247, 48,226,153,117, 9, 75, 73,167, 92, 34,109,222,174,117,184,234,236,133,179, -182, 5, 63,108,176,183,110,213,235,202,178,101, 43,182, 45, 91,182, 98, 91,235, 86,189,174, 44,248, 97,131,253,236,133,179,182, -118,173,195, 85,114,137,180,185, 35,121, 31, 63,118,164,107,239, 94,253,113,224,192,110,219,142,223,127, 94,184,122, 83,106,251, -142, 3, 83, 50,226,227,174, 81,232,215,195,203,249, 54, 30, 60,120,160, 54,155,205, 29, 75,235,224, 94,154,230,184, 49, 35, 75, -154,171,115,158,126,109, 87, 63,120, 0,251,177, 99,251,173, 39, 78, 68, 25,206,221,204, 84, 95,191,159,157,155,163, 49, 62,209, -105, 53,102,158,231, 65,121,187, 96,246,236,130,142,184,101,157,163,214,173, 59,224,228,241, 45,216,176,126,165,154,231, 97, 28, -188,125,187,125,200,144,175,104,104,149, 42,161,155,127,223, 66,250,244, 27,224, 74, 1,190,239,160,254,110,191,109,253,141, 84, -171, 81,173, 74, 88, 88,193,212, 52,255,147,101,233,111,208,156, 69,105,158, 38, 49,241,204,141,159,126, 50,249, 14, 27,230, 33, -241,245,117,129,221, 78,138,234,247,178, 94, 66,161,240,153,136, 75,121,154,129, 94, 94, 79,247,237,219,135,154, 53,107, 34, 48, - 48, 16, 37,251,192, 22, 77,164,237,233,233,137,157, 59,119,130, 2,215, 29,209,108, 84,181,234,141,111, 23, 44, 48,243, 60,143, -188,188,188, 63, 69,175,242,242,242,192,243, 60, 14,254,241,135, 89,147,159,191,193,209,188,119, 20, 8,242, 71,180,107, 55,191, -119,239,222,150,199,143, 31,131,231,121,148,140,100,101,102,102, 66,169, 84,194,104, 50, 5, 19, 66,228,142,104,102, 30, 62,172, - 64, 5,245,250,243, 17,172,191,227,188,255,171, 34, 88, 54,155, 13,193,193,193,207, 44,189,194,113,220, 51,175,202,140, 32,164, -148,110, 36,132, 28,233,222,189,251,204, 22, 45, 90,140,159, 57,115,166, 32, 34, 34, 2,106,181, 26,238,238,238,240,241,241, 65, -116,116, 52,246,237,219,103,207,206,206, 94, 1, 96,142, 35, 67,225, 41,165,167, 8, 33,125,234,215,175,191,117,218,180,105,174, -221,186,117, 19, 5, 7, 7,131, 82,138,168,168, 40,236,218,181,203,178,102,205, 26, 77,161,185, 58,229, 96, 90,143, 18, 66, 94, -235,217,179,231,230, 55,223,124,211,217,110,183,139,226,227,227, 97, 50,153, 96,181, 90,145,148,148,100, 57,112,224, 64,190, 94, -175, 31, 73, 41, 61,234,128,222, 13, 66, 72,157, 99,199,142,189,121,225,194,133,185,239,188,243,142,103,231,206,157,197, 54,155, - 13,231,207,159,207,106,212,168,145, 79,102,102,166,101,231,206,157, 57, 70,163,113,134,221,110,119,104,169, 28, 66, 8, 52, 26, - 13,188,188,188, 96, 50,153,192,243, 60,204,102, 51,148, 74,101,241,242, 70,148, 82, 84,166,211,252,115,101, 64, 96,177, 88, 48, -124,248,112,240, 60,143, 37, 75,150,192,102,179, 85, 90,204,213,213,245,250,205,155, 55,251, 52,108,216,176,216,180, 20,149, 33, -169, 84, 10, 47, 47, 47,120,122,122,226,192,129, 3, 16,137, 68,215, 29, 60, 71,183, 0, 52, 34,132,180,186,115,231,206, 27, 0, - 26, 90, 44,150, 64,187,221, 78, 56,142, 75,163,148,222,214,104, 52,191, 58,186, 84, 78,102,102,230,220,183,222,122,171,209,150, - 45, 91,148, 66,225,127, 46, 13,161, 80, 8,169, 84,138,162, 73, 45, 41,165, 48,155,205,248,226,139, 47, 52, 58,157,110,238,171, - 82, 25, 52,105,218, 28,171,126, 94,170, 60,113,242, 72,214,131, 88,236, 45, 57, 21,131, 18,192,133,203,227,246,170,242, 86, 53, - 76, 77, 78, 86, 54,105,218,220, 33, 77,179,221,150, 51,108,228,138,224,194,165,114,230,198, 63, 73, 92,188,101,253,187,113, 0, -240,253, 15,107,194,146, 50, 45,147,238, 63,140,233,255,203,138,211,205,205,118, 91,142, 35,154,255, 49, 45,155,213,160, 48, 82, - 74,175, 16, 66,170, 70,180, 50,206,136,172, 37,238,151,154, 97,125,154,159,111,254,144, 82, 26,231,104,222,219,180,110,143,147, - 71,127,195,166, 13,155, 53,148, 23, 24,189,188,188, 40, 0, 60,120,224, 69, 31, 60, 80,209,255,244, 23,118,211,121,203,179,230, -204,152, 62,126,178, 86,171, 93,188,252,187,242, 39,156,173,223,160, 5,234, 55,104,129, 15, 62,252,220,181, 78,221, 90, 33, 0, -176,125, 59,181, 71,134,147,253, 51,191,252,170,223,156, 57, 95, 65,163, 53, 97,206,156,130,101,117,162,239,222,255,227,241, 99, -106,102,183,166,103,153,105,179, 93,193,228,201,225,250,220, 92,239, 54,159,125,230, 37,252,228, 19,174,188, 78,238, 37,175, 95, - 71, 52,175,221,190,253,199,184,119,223,125, 58,107,230,204,238, 43, 86,174,148,213,171, 87, 15,233,233,233,168, 85,171, 22, 2, - 3, 3,113,236,216, 49,236,220,182, 77,167,210,106,103, 0,248,197, 17,205,141, 7, 15, 70, 71,212,173,155,189,114,229,202,128, -222,189,123, 19,157, 78, 7,181, 90, 13,181, 90, 13,147,201,132,194,137,156,105, 76,108,236, 3,171,213,186,194,209,188,219,179, -178,156,230, 52,111,158, 34,230,249,111, 95, 27, 52,104,234,156,175,191,150, 86,171, 86,141,152, 76,166,226, 40,150,197, 98,129, - 82,169,180,152,205,102, 79, 0,122, 71, 52,165,107,214,216,178,178,178,224,237,237, 93, 60,237, 82,201,121, 5,181, 90, 45, 40, -101,147,224, 86,234, 65,161,172,123,184,135,135,199,117,161, 80, 24, 84, 50,154, 85,218,218,118, 37, 63,179, 90,173, 41, 89, 89, - 89, 77, 74, 58, 92, 74,233,241, 50,140, 65, 24,128,121,157, 58,117,122,109,202,148, 41,228,244,233,211,216,179,103, 15,141,139, -139,219, 1, 96, 70, 89,149, 99, 5,154,206, 82,169,244, 99,133, 66,209,165,104, 42, 6,185, 92,126, 71,167,211, 29, 55,153, 76, - 75,202,154,189,189, 2, 77, 23,169, 84, 58, 81,161, 80,116,213,106,181, 13, 1,192,217,217,249,166, 78,167, 59,102, 50,153,150, -150,181,128,116, 5,154, 50, 87, 87,215,185, 94, 94, 94,175,127,242,201, 39,158,103,207,158, 77, 59,121,242,164, 88,165, 82,109, - 49,155,205,101, 46,246, 92,154,166,167,167,231,117,129, 64, 16,244,119,156, 35, 0,104,208,160,193,129,190,125,251,246, 30, 57, -114, 36,172, 86, 43,126,249,229, 23, 28, 59,118,236,143,216,216,216, 62,229, 61,125, 62,175, 73, 8,241, 10, 10, 10, 58, 61,126, -252,248,208,225,195,135,203,221,221,221, 33, 20, 10,161,211,233,240,232,209, 35, 68, 69, 69,209,189,123,247,230,223,184,113, 35, - 69,175,215,119,160,148,102, 59,122, 60,255,202, 83,242,243,154, 34,145,168,125,112,112,240,239,179,102,205,114,238,218,181,171, -204,211,211, 19, 2,129, 0, 86,171, 21,105,105,105,184,123,247, 46,142, 28, 57,162,219,177, 99,135, 46, 39, 39,103,248,243,115, -181,252,127,165,243,101,106,214,169, 73,190,124,110, 1,231, 50,103,103, 47,111, 91, 71,210,217,187,139,123,175,215, 94,107,218, - 5, 0,118,238,188,118,252,143,227,121, 7, 95, 52,157, 21,165,213, 17,205,218,225,130, 89,247,238,223,125,102, 34,202,186,117, - 34, 99,106,215, 27,244,141, 35, 90, 69, 51,185, 63,159,247, 18,179,227,151,140,225, 62,211,156, 90,180, 32,244,231, 51,166, 99, -222,220,249,216,187,125,247, 31,247, 31,211, 3,255,203,101,233,239,212, 44, 90,156, 88,238,239,223,110, 9,207, 79,191,117,247, -174,178,228,131, 90, 81,164,185,228,195,100, 64, 64, 64,102,106,106,170,175, 35,154,125,126,252,209,162, 87, 40,164,211,191,253, -182,125,190,209,216,126,206,156, 57,194,107,215,174,225,231,159,126,178, 25, 83, 82, 54,103, 1, 19, 75,107,253, 40, 79, 51,116, -226, 68,167, 79,127,254,121,116, 88,141, 26, 62,111,188,241,134, 72, 36, 18, 65,167,211, 33, 57, 57, 25, 71,143, 28, 49,223,127, -240,224,190, 70,163,233, 71, 41, 77,117, 84,179,207,143, 63, 90,220,194,194, 32,247,246,166, 39, 78,157,114, 29,247,241,199,227, -171, 84,173,234,218,189, 71, 15,145,139,139, 11,242,242,242, 16, 31, 31,143,221,187,119,103,230,231,231, 7, 80, 74,237,142,104, -110,190,112,161,254,193, 51,103, 6,127,243,205, 55,146,200,200, 72,184,186,186, 66,171,213,226,238,221,187, 56,115,230,140,105, -197,138, 21,106,181, 90, 61,222,102,179,237,251,187,206,251,191,198, 96,253,127, 93,120,132,144, 38, 0,190, 44,252,247,107, 7, -214,244,123,101, 42, 29, 66, 72,136,135,135,199, 42,163,209, 72, 13, 6,195, 56, 74,105,210,127, 91, 58, 9, 33,194, 38, 77,154, -252,156,153,153,217,138, 82, 10, 87, 87,215,139,247,238,221,155, 64, 41,181, 85, 86,147, 16, 34, 0,208, 74,169, 84, 54,119,118, -118,110,111, 50,153,106, 23, 54,179, 61,208,233,116,103, 44, 22,203, 21, 0, 23, 41,165,246,127, 50,239,133,233,236, 26, 16, 16, -240, 46,207,243, 53, 8, 33,110,118,187, 29, 86,171, 85,197,243,252, 35,181, 90,189, 6,192,177,127, 58,157, 47, 75,179,110, 13, - 50,144,114,168, 93,150, 17,120,198,208, 60,103, 28, 8,143, 7,247, 30,209,221,149, 40,243,220,128,158,222,139,128,130,145,134, - 21, 45, 57,244,140,193,114,192,180, 84,218, 92,214, 16,190, 69, 9, 13,121,182, 82, 36, 73,181,234, 15,220,244, 87, 12,150,163, -212,141, 32,237, 65,209,138,167,184,242, 32,150,158,124, 85,235,186,151,169, 57,159, 16,143,159,220,221, 47,114, 66,161, 31, 0, -174, 48,218,194,243,132,216, 41, 33,182,146,205, 88, 37, 31, 40, 43,210,180, 0,245, 68, 82,105,176,221,102,243, 77, 7,148, 7, -237,246,198, 70, 74,243,131,128, 47,163, 40,141,126,145,116, 90,128,122, 2,169, 52,228, 32,165,253,179, 20,138,250,153, 6,131, - 55, 0,170, 84, 40, 30,104,116,186, 13, 70,163,113,121, 41,139,170, 87,168, 41,150, 74,131,236, 54,155, 47, 0,112, 66, 97,230, - 86,147, 41, 56,197,197,229, 13,163,201, 20,170, 84, 42,173,102,179, 89, 99, 52, 26, 71, 90,173,214, 19,149,201,251, 35,155,173, -206, 5,142,107,107, 81, 40, 60, 45,132, 40,204, 54,155,197,108,177, 36, 27,141,198, 59, 0,126,160,148, 62,254, 59,207,251, 43, - 71,209,104,179,191,227, 5,160, 11,211,100,154, 76,147,105, 50, 77,166,201, 52,255,126, 77, 0,114, 0, 33, 0, 4,255,139,121, -127,213, 94, 66,102, 49, 25, 12, 6,131,193,120, 37, 2, 38,122,148,210,231,138,241, 15, 53, 17, 2,232, 82,198,137,114, 56,244, -247, 34,163, 9, 28,104, 74, 96,154, 76,147,105, 50, 77,166,201, 52,153,230, 43,166, 89,145,246, 43,211,244,200,154, 8,153, 38, -211,100,154, 76,147,105, 50, 77,166,201,154, 8, 95,238,139, 3,163, 44,103,237, 75, 8,241,125,217,219, 50, 94,237,178, 80,202, -190,129,132,144,192, 74,110,239,207,142, 58,131,193, 96,252,111,243,255,110,176, 28,189, 89,253,197,155,218, 95, 50, 60,132,144, -249,132, 32,181,224, 69,230,191,172,109, 29,248,221, 0,111,111,239,143,234,214,173,187,217,207,207,239, 3, 66,136, 79, 37,247, - 15, 87, 40, 20, 75,149, 74,229,105,165, 82,121, 90,161, 80, 44, 37,132,132,191,164,243, 70, 8, 33,227,156,156,156, 78, 5, 4, - 4, 60,149, 74,165,167, 8, 33,227,201, 11, 46, 64, 73, 8,169, 78, 8,153, 76, 8,153, 66, 8,137,168,204,190,190,145, 3,182, -249, 68, 14,184,237, 19, 57,224,174, 87,189,126,225, 62,145, 3,238,250, 68, 14,184,237, 27, 57, 96,219,223, 80, 94, 95,248,252, - 22,238,155, 84,240,170,120, 95, 66,200, 15, 4, 72, 38, 4, 41,127,181, 44, 49, 24, 12, 6,227,159,165, 82,157,220,131,130,130, -122,242, 60, 63, 2, 0, 56,142,251, 45, 37, 37,229,208, 11,220,112, 62, 45,124,191,144, 82, 58,253,175,108,231,192,190,139, 41, -165, 83, 43,111,206,240, 41,207, 83,174, 32,159,228, 51, 95, 95, 95,185, 64, 32,248, 83,199, 65,187,221, 46, 39, 4, 31,240,124, -193, 2,149, 28, 71, 62, 37,132, 44,165,148,102,188,136, 41, 28, 53,106,212,226,165, 75,151, 58,201,229,114, 36, 38, 38,118, 27, - 63,126,124,107, 66,200,100, 74,105, 90, 69,251,203,100,178, 17,205,154,183,154,252,237,119,223, 43,125,125,124, 20, 54, 59,111, -137, 79, 72, 80,124, 49,125,106,115,153, 76,182,180,188, 69,142,159, 55, 82, 0,198, 10,133,194,161, 78, 78, 78,213,141, 70,227, - 99,155,205,182, 67, 32, 16,116,159, 59,119,110,100,175, 94,189,156, 52, 26,141,196,102,179,213,216,180,105,211,228,181,107,215, -246, 36,132,244, 47,111,184,125, 81, 4,135, 82,250,180,196,199, 61,147,146,146,234,137, 68, 34, 84,175, 94,157, 0,136,174, 96, -251, 98, 40, 16,126,239,252,246,122, 0, 80,183,205,144,152,123,231,183,163,240,253,223,240, 48,240,108, 89,144,201,100,191, 24, - 12,134,228,162,239, 11,211,153,225,200,190,132,144,101,133,203,252, 68, 2, 24, 84,184,233, 46, 74,233, 93, 66,136,159,147, 84, -250,177,193,104, 36, 0,200, 95, 41, 75, 12, 6,131,193,248, 31, 51, 88,148,210, 55, 30, 61,122, 36,231,121, 30, 17, 17, 17,163, - 0, 56,108,176, 74,187,225,116,238,220,185,145, 76, 38,123,102,214, 98,131,193, 32, 33, 4,157, 95,196,180, 20,253,134,217,108, -226, 68, 34, 9, 56,142, 76,174, 95,191,126,149,236,236,236,179, 28,199,109, 78, 73, 73,201,123,129,155, 44, 86,175, 94, 93,211, -223,223,255, 79,179, 43,167,165,165, 73,250,247,239, 87, 41,189,209,132, 72, 77, 82,105,115, 49, 33,254,118,155,205, 13, 0,132, - 66, 97, 94,132,171,107,147,121,223,124, 35, 39,132,240, 57, 57, 57, 48, 24, 12,152, 52,105,146,236,254,253,251, 3, 0, 44,175, - 32,141, 53, 91,180,108, 61,233,200,145,195,181, 53,185,121,198,213,139, 87, 69, 25,132, 34, 93,181, 58,181, 37, 63,175,218,224, - 54,118,244,200, 15, 9, 33, 55, 75, 91, 54,228, 57, 29, 14,192,238,143, 63,254,184,110,159, 62,125, 36, 90,173,214,201, 96, 48, - 84,217,188,121,243, 23, 77,154, 52, 81, 54,108,216, 80,242,251,239,191, 19,181, 90, 13, 74,169,188, 86,173, 90,116,232,208,161, -198,173, 91,183,126, 0, 96,153, 35,134,215,223,223,127,102,161, 65, 47, 89,246, 68, 1, 1, 1,178,194, 99, 58,135, 16, 76, 42, -207, 92, 19, 32,182,110,155, 33, 0, 65,141,123,231,183, 59,213,109, 59,196, 8,138, 71, 4,136, 5,128,192,192,192, 57, 64,137, -121,157,158,229,193,211,167, 79, 95,104,237,192, 62,125,250,130, 82,250, 75, 96, 96,224,129,140,140,140, 72, 66, 48,206,209,135, - 0, 66, 8, 60, 61, 61, 95, 3,240, 35,128, 97, 15, 31, 62,172, 11, 0,181,106,213, 18, 1,184,235,230,230,214,216, 84, 96,174, - 24, 12, 6,131,241, 47, 52, 88, 98, 0, 56,123,246, 44, 40,165,146, 23, 9, 10,148,188,225, 76,156, 56, 17,254,254,254,207,155, - 22,156, 62,125,234,175,228,233,153,223,248,250,235,175,149, 42,149,170,203,175,191,254,218, 46, 48, 48,112,209,211,167, 79, 47, - 87,144,199, 12, 66,200,194,194,136, 3,164, 82,167,152,241,227,199, 71, 21,126, 93,101,255,254,253,242,190,125,251,234, 1, 36, - 0,128, 84,234, 20, 40, 16,112, 53, 11, 58,181, 97, 97,121, 70,112, 8, 33, 97, 18,137,164,211,184, 31,127,180, 53,238,219, 87, -168,240,246, 38, 0,144,240,240,161,231,194,239,190,107,157, 23, 23, 39, 49,120,122,230,228,232,116,134,152,152, 24, 72,165, 82, - 34, 16, 8, 26, 87,148, 97,133, 66,241,209, 55,243, 22, 42, 52,185, 42,131, 73,147,111, 22,216,173, 38,103,153,204,158,158,158, -145,173,148,203,245,211,191,156, 45,126,111,204, 27, 31, 1,152, 80,129,212, 7,147, 39, 79,174,221,172, 89,179,192,109,219,182, - 17,181, 90, 13,161, 80,168,108,216,176, 33,154, 52,105, 98, 63,121,242, 36,169, 90,181, 42, 34, 35, 35,113,254,252,121, 92,188, -120,145, 52,106,212, 72,190,107,215,174, 81,165, 25,172, 82, 76,245,228,150, 45, 91, 6, 43,149, 74,163, 70,163,193, 59,239,188, - 3, 0,232,218,181,107, 77,133, 66,241, 75,126,126,190,211,190,125,123, 95,171,200, 92,103,220,221, 51, 20, 0,124, 34, 7,220, - 6, 80, 15, 20,143, 50,239,238,169, 95, 98,147,218,209,209,209, 45,242,242,242,138, 59, 27, 22, 45, 44,222,174, 93,187,202,148, -247, 12, 66,200,194,126,253,250,126, 6, 16,116,232,208, 33, 99,226,196,137,244,238,221,187, 3,135, 12, 25,220, 57, 54,246, 81, -153,233,124,190, 28,141, 24,241,250, 19, 15, 15,143,174, 1, 1, 1,177, 0,132, 34,145,168,104, 83, 65, 96, 96,160, 71,100,100, -228,112,165, 82, 25, 47,224,184,170, 20,148, 86, 84,150, 24, 12, 6,131,241, 63, 96,176, 8, 33,180,196,141,129,148,243, 20,158, -125,243,230, 77,127,163,209, 8, 66, 72,182, 3, 55,168,227, 37,111, 56, 2,129,224,103,142, 35, 19, 8, 33,136,140,172,247,100, -201,146, 37,165,173,185,101,142,140,172,247, 68, 32,224,170, 81, 74, 65, 8,247, 11,207,219, 51, 74,211, 44,235,134, 40,145, 72, - 63, 5, 0, 63, 63,255,184, 67,135, 14,153, 7, 15, 30,140,239,190,251, 78, 60,109,218,180,169,161,161,161, 31, 36, 38, 38,166, -151,149,206,194,255,167,251,250,250,202, 87,175, 94, 93,115,252,248,241, 81,169,169,169,211, 1, 32, 32, 32, 96, 62,128, 58, 0, - 18, 74,124,134, 21, 43,182, 62, 29, 51,102, 76, 76, 70, 70,198,244,178, 52, 95, 35,164,122,104,173, 90,157,230,156, 61, 75, 57, -147,137,100,159, 59,167,201,202,200,176, 62,206,202,146,175,191,126,189,207, 23,243,231,139,130, 67, 66,112,122,223, 62,175,108, -189, 62, 75,109, 50, 25, 51, 50, 50,168,205,102,187,232, 64,222,235,250,120,123,203, 87,254,240,203, 53,103,145,128,247, 13, 12, - 36, 66, 15, 55, 17, 39,119,149,112, 66,161,177, 90,104, 13, 49,128,186, 21,157, 35,177, 88, 60,170, 91,183,110,242,173, 91,183, -146,200,200, 72,184,185,185,225,220,185,115,184,121,243, 38,172, 86, 43,151,151,151,135,166, 77,155,226,219,111,191, 69, 72, 72, - 8, 84, 42, 21,146,146,146,188, 36, 18,137,119, 57,199,243, 25,195, 59,117,234, 84, 4, 7, 7,195,102,179, 33, 55, 55, 23, 54, -155, 13, 10,133, 2, 0,144,144,144,128,253,251,247, 85, 88,150, 28, 52, 71,104,217,178,165,150, 16,242,224,249, 8, 86,101, 52, -253,253,253, 55,100,102,102, 53,234,216,177, 35,212,106,181,121,214,172, 89,168, 95,191, 62,106,214,140,112,164,204, 79,151, 74, -165,107, 66, 66, 66,190,252,228,147, 79, 60, 60, 60, 60, 96, 50,153, 62, 76, 75, 75,195,248,241,227, 1, 0,189,123,247,174, 37, - 20, 10,215,191,243,206, 59,168, 82,165,202, 67,173, 86, 27,125,243,230,205,105,249,249,249,247, 95, 52,239, 14, 30, 31,166,201, - 52,153, 38,211,252,175,210,116,212,139,252, 79, 25, 44, 74, 41, 33,132,208,138, 50, 68, 41,205, 11, 12, 12,244,151,201,100,160, -148, 86,186,185,205,110,183,127,224,229,229,149, 57,125,250,244, 54, 53,107,214, 52,127,240,193, 7,119,227,227,227,103,148,220, -166,106,213,170,115,127,250,233, 39,196,196,196, 36,204,159, 63,255,124,118,118,246,215,149, 60,233,211, 8, 33, 75, 10,163, 97, -217,251,246,237,171,127,246,236,217, 9,139, 23, 47,246,126,255,253,247,197, 31,125,244,209, 72, 0,223, 85,164, 35, 16, 8,244, -165, 53, 11,150,113, 19, 54,151,214, 71,171,136,190,132,200, 92, 36,146,142,115,206,158,165,230,132, 4,253,218,239,191,119, 94, -121,245,234, 44, 43,165,190, 62, 62, 62,104,219,186,117,190,147, 64,144,157,153,158,206,251, 84,175, 46,136, 63,116,200,203, 32, -145,164,110,221,186, 85,157,147,147,179,199,129, 66,169,177,243,188,197, 57, 48,216, 54,120, 96,183,186,215,174,220,124,232,236, -237,197, 53,105, 20, 89,239,126, 76,194, 13,106,183, 91, 9, 33,154,138,116, 92, 93, 93,107,230,228,228, 64,163,209,192,219,219, - 27, 75,150, 44,129,159,159, 31,244,122, 61, 46, 93,186, 68,131,130,130,200,217,179,103, 17, 20, 20,132,172,172, 44,152,205,102, -104,181,218, 76,147,201,100, 40,203,240, 10,133,194, 53, 28, 71,222, 5,128, 42, 85,170, 62,248,229,151, 95,140, 0, 80,187,118, -109, 12, 28, 56, 16, 59,119,238,196,253,251,247,193,243, 60, 40,165,198,160,160,224, 7, 28, 71,106, 23,122,164, 23,142,226, 20, - 45,193,243,244,233,211, 65, 47,120,161, 19, 63, 63,191,129,181,106,213, 26, 57, 98,196, 8,179, 72, 36,130, 94,175,135, 94,175, -199,131, 7, 15,204,221,186,117,203,232,215,175,175,239,129, 3, 7,202, 77,167,201,100,122, 18, 16, 16, 48,117,242,228,201, 75, - 86,172, 88,225,242,197, 23, 95,192,110,183,131,231,249,226,191, 69,239,247,236,217,131,184,184,184,165, 37,205, 21,131,193, 96, -252, 91,112,212,139,252, 79, 25,172,255, 79, 4, 2,193,202,163, 71,143, 54,108,215,174,157,176,115,231,206,145, 65, 65, 65,145, - 41, 41, 41,119, 1, 32, 40, 40, 40,178, 71,143, 30,145, 62, 62, 62, 88,186,116,169, 94, 32, 16,172,124,193,147, 84,242,102, 23, -229,239,239,191,104,215,174, 93, 11,199,141, 27, 7, 63, 63,191, 58,255,223,121,118,145, 74, 27,189,179,100,137, 77,100,181,114, - 63, 46, 90,228,242,253,169, 83, 11,183,109,223, 46,108,217,178, 37,161,148,226,206,237,219,178,111,151, 45,147, 15, 31, 48, 32, - 33, 58, 46,206,182,247,200, 17,107,198,211,167,185, 79,179,178,102, 82, 74,115, 43,210,183, 90,173,151, 98, 31,197, 6,182,233, -216, 42,224,220,213,123, 55, 7, 13,232,213, 73, 36,228,200,163,132,167,215,253,253,188, 92, 79,159, 58,102,180, 90,173,151, 42, -210,209,233,116,241, 54,155,205,131, 82,234,125,250,244,105,120,123,123, 35, 47, 47, 15, 86,171, 21,102,179,217,172,215,235,157, -114,114,114, 96, 52, 26, 97, 50,153,224,226,226,130, 59,119,238,100,216,108,182,147,101,105,218,108,182,177, 78, 78, 78,243, 40, -165, 34,147,201,148,122,252,248,113,136,197,226, 96, 87, 87,215,233, 86,171, 21,169,169,169,184,112,225,194,124,139,197,146, 92, -180,143, 68, 34,245, 54,153, 76,182,178, 58,185, 59, 26,193,122, 81,130,130,130, 2,170, 86,173, 58,121,218,180, 79,107,212,175, -223, 16,217,217,217,224,121, 30, 74,165, 18,122,189, 30, 46, 46, 46,104,213,170, 85,212,220,185,115,115, 41,197,180,138, 76, 96, -106,106,106, 78, 72, 72,200,204,241,227,199, 79,174, 81,163, 70, 8, 0,132,135,135,163, 91,183,110, 56,116,232, 16, 98, 98, 98, -144,159,159,111,191,118,237,218,254,212,212, 84,182,182, 23,131,193, 96, 48,131, 85,121, 50, 50, 50,178,130,130,130, 14,223,184, -113,163,207,208,161, 67,113,250,244,233,183, 0, 76, 6, 0,169, 84,250,214,208,161, 67,113,227,198, 13, 60,124,248,240,112, 70, - 70, 70,214,203,248, 77,137, 68, 98, 52,155, 11,130, 81, 78, 78, 78, 78,149,220,189, 74, 97,211, 32, 0, 84, 41,231,179, 50,225, -132, 66,255,122, 61,122, 8,243,110,222,212,172,190,114,229,235,205,155, 55, 11,219,180,105, 67,172, 22, 11,236, 60,143,176,176, - 48,210,185, 75, 23,197,186,205,155, 61,236, 58,221,217,111, 62,251,236,220,170,119,222,201,143,161, 52,193,145, 4,154, 76,166, -101, 31, 78, 24,219,245,196,169,179, 1,181,106,133,121, 30, 62,118, 42,202,211,195, 85, 94, 51, 60, 92,145,155,151,103,159, 49, -237, 83,161,201,100,250,177, 34, 29,131,193,176,251,248,241,227, 3,130,131,131,189,239,222,189, 11,179,217, 12,187,221,142,206, -157, 59,131, 82, 42, 5,192, 11,133, 66, 60,124,248, 16, 22,139, 37, 51, 54, 54, 54,245,209,163, 71, 82, 0, 11,202,211, 53, 26, -141,137, 37,255, 15, 9, 9,105,211,187,119,111,216,108, 54,244,232,209, 3,251,246,237,107,147,154,154,186,186,196, 38,137, 47, -225, 73, 8,148,210,218,129,129,129,187, 10, 63,114,168,115,187,191,191,127, 68,120,120,248,220,249,243,231,139,130,131,131,193, -243, 60, 60, 60,220,160,211, 25,144,147,147,131, 58,117,234, 32, 56, 56, 24,223,126,251, 45, 80, 48, 2,208,161, 8, 91, 82, 82, - 82, 60,128, 15,234,212,169, 35,214,106,181,145, 6,131, 97, 86,231,206,157, 17, 21, 21,133, 75,151, 46,125,168,211,233,114, 21, - 10,133, 53, 32, 32, 96, 4,199,113, 10,139,197,178, 47, 51, 51, 51,147, 85, 81, 12, 6,131,241,138, 27, 44, 95, 95, 95,185,147, -147,211,235,239,190,251,174, 27,207,243, 16,139,197,245,188,188,188,230,101,103,103,231, 87,246, 71,245,122,253,182,205,155, 55, -119,251,225,135, 31,196,189,122,245,170, 30, 20, 20,212, 12, 0, 6, 13, 26, 84,221,217,217, 25,155, 55,111,182,232,245,250,151, - 54,167,145,213,106,109,215,180,105, 83,228,230,230, 34, 33, 33,225,110,101,246,221,191,127,191, 28, 5,253,174,202,253,172, 60, -108,102,179,187, 91, 96, 32,247,244,212, 41, 75,174, 70,227,223,174,125,123, 98,181, 88,192,113, 28,114,114,114,144,148,148, 4, - 87, 55, 55,242, 48, 54, 86,185,230,211, 79,247, 87,105,208, 64, 98, 55,155, 61, 43, 97, 38,116,132,144,183, 62,252,224,253,221, - 91,182,252,230,165, 82,105,226,156,100, 50,179, 84, 34,242,253,232,131,247,237,185,185,185,111, 82, 74, 29, 57, 79, 11,182,108, -217,210,163, 71,143, 30,183, 67, 66, 66,124,178,178,178,252, 84, 42,149, 61, 55, 55, 87,128,130,190, 84, 4, 0, 78,157, 58, 5, -141, 70, 99,179,219,237,103, 1,204,161,148,154, 29, 77,171,135,135,135,115,199,142, 29, 91,248,250,250, 66,163,209,192,203,203, - 11,141, 26, 53,106,225,225,225,177, 45, 55, 55, 87,251, 50, 11,247,177, 99,199,156, 41,165, 45, 40,165,232,209,163,135, 67,251, - 16, 66, 6,247,238,221, 91,196,113, 28, 12, 6, 61,164, 82, 39, 40,149, 46,112,118,118, 69,205,154, 53,145,154,154,138,238,221, -187, 91, 98, 99, 99, 55,165,165,165,253, 81,217, 52,169,213,234,174, 45, 91,182,124,119,194,132, 9,176,219,237,232,223,191, 63, -146,147,147,191,140,143,143,223,239,229,229, 53,224,237,183,223,246,240,244,244,196,148, 41, 83,100, 0,150,176, 42,138,193, 96, - 48,254,199, 13, 86,121,109,158, 65, 65, 65, 77,189,188,188, 62,116,118,118,118, 59,121,242,164, 2, 0,218,180,105, 3,158,231, - 87, 6, 4, 4,252,156,154,154,122,161, 50, 63,154,151,151,167,241,247,247,223,123,233,210,165, 33,131, 6, 13,194,177, 99,199, -222, 44, 52, 88,184,116,233, 18,158, 60,121,178, 55, 47, 47, 79,243, 50, 50, 24, 20, 20,212,179, 67,135, 14,131,154, 54,109,138, - 3, 7, 14,192,110,183, 95,172,204,254, 37, 71, 12,162,148, 81,132, 69,159, 57, 36, 38, 16,128, 16, 2,155,205, 6, 0,200,206, -202, 66, 76,116, 52,114,243,242, 96, 50, 26,161,211,235,237, 53,171, 86, 53,168,205,102, 17, 1, 42,213,198, 69, 41, 77, 84, 42, -149, 73,122,189,206,199,195,203,221,160,112,114,130, 74,163, 22, 95,191,118, 89, 75, 41,125,236,160,134,153, 16,210,254,208,161, - 67, 51, 5, 2,193, 80,165, 82,137, 9, 19, 38, 8, 58,116,232, 0,177, 88, 12,147,201, 4,149, 74,133,205,155, 55,103,217,108, -182,106,133,134, 68,169, 80, 40, 54, 8, 4,130, 20,141, 70,243, 69, 69,191, 33,149, 74, 59,244,235,215, 79, 96, 50,153, 48,103, -206, 28,204,156, 57, 19, 61,122,244, 16, 92,189,122,181, 3,128,125, 47,171, 96,243, 60,143,174, 93,187,150,236,228,254,192,145, -253, 68, 34, 81,205, 26, 53,106, 32, 43, 43, 11, 89, 89, 89,240,246,246, 70, 64, 64, 0,124,125,125,177,120,241, 98,186,100,201, -146, 51,118,187,125, 83,122,122,122,246, 11,148,197, 17,111,189,245,214,240, 33, 67,134, 64,167,211,225,228,201,147,104,221,186, - 53,190,253,246, 91,239,115,231,206,189,219,180,105, 83,136, 68, 34,156, 57,115, 6, 22,139, 37,149, 85, 79, 12, 6,227,223,198, -171,210,255,170,194, 8,150,187,187,187,139,147,147,211,184, 62,125,250,180, 25, 48, 96, 0,230,205,155, 91,252, 29,199,113,216, -184,113,163,114,247,238,221,159, 5, 7, 7,183,231,121,254,151,167, 79,159,230, 58,250,195, 60,207,239,222,178,101, 75,175,150, - 45, 91,202, 59,118,236, 24, 86,120,243, 53,111,217,178, 69,207,243,252,238,202,102,228,249, 73, 31, 3, 3, 3,235, 11,133,194, - 65,125,250,244,169, 63,122,244,104,220,187,119, 15,155, 55,111,126, 84,179,102,205,243,149,148, 78,168, 96, 20,225,252,138,162, - 89, 2,137, 36, 71,149,158,238,166, 12, 9, 17,185, 59, 59,167, 29, 56,112, 32,184, 75,151, 46, 36, 57, 57, 25,121,121,121, 48, - 26,141,184,118,237, 26, 47, 4, 18,133,238,238, 36,241,210, 37, 34,144, 72,114, 42,123, 12,130,253,221,195,191,156, 54,190,138, -209,104,172,171, 86,171,109, 34,145, 72, 20,228,231,150, 92,201,194,109, 82, 40, 20, 77, 0, 8,121,158,215,123,120,120,200,143, - 30, 61, 10,137, 68, 2, 66, 8,234,213,171, 7, 39, 39, 39,177, 66,161, 72, 2, 0, 63, 63, 63,201,202,149, 43, 93, 71,142, 28, -121,174, 34,237, 14, 29, 58, 8, 67, 67, 67,187,213,172, 89, 19, 23, 47, 94,196,131, 7, 15,158, 94,190,124, 57,176, 73,147, 38, - 8, 12, 12,236,214,161, 67,135,131,167, 79,159,182,189,164,139,244,133, 58,185,219,237,118, 74, 8, 1,199,113,224,121, 30, 89, - 89, 89,168, 86,173, 26,150, 47, 95,142,197,139, 23,255,248,162,125,164,234,212,169, 35,110,216,176,225,160, 33, 67,134,224,241, -227,199,152, 63,127,126, 94,102,102,230,197,163, 71,143,246,156, 48, 97,130,160,117,235,214,200,201,201,193,218,181,107,109, 81, - 81, 81, 59, 50, 50, 50,118,179,170,150,193, 96, 48, 94, 65,131, 21, 24, 24,216,219,195,195,227,221, 97,195,134, 9, 34, 34, 34, -144,145,145, 1,173, 54,223, 88,191,126, 36, 15,112, 84, 34, 17, 91, 20, 10, 5,198,142, 29,139,122,245,234, 53,251,236,179,207, -154,250,249,249,109, 76, 79, 79,223,233,200, 15,103,100,100,232,253,253,253,119, 76,152, 48, 97,193,205,155, 81,213, 0,224,234, -213,171, 79, 82, 83, 83,167,101,100,100,232, 43,105,174,138, 38,179, 36, 50,153,236, 74,120,120,120,124,207,158, 61, 93, 6, 12, - 24, 0,111,111,111,220,184,113, 3,223,126,251,109,172,217,108,158,249,178,110,224,149,193,102, 50,165, 95,223,179,199,185,195, -235,175,187, 76,236,221,123,209,251, 19, 38,252,240,229,151, 95, 10, 35, 34, 34,136, 94,175,199,149, 43, 87,232,206,157, 59,173, -235,190,254,122, 9, 20, 10,209,165,157, 59, 37,102,179, 57,177,146,209,145,246,189,122,180,143, 88,244,195, 50, 24, 13,249,184, -114,241, 15,228,229,101, 97,229,170, 93, 17, 65, 65, 65,237, 83, 82, 82,206, 84,226,120,214, 60,118,236,152, 15,165, 20, 18,137, - 4,115,230,204, 65, 64, 64, 0, 92, 92, 92,160,213,106, 49,121,242,100,215,143, 63,254,216, 21, 0,238,221,187, 7,165, 82,233, -144,110,116,116,116,227,241,227,199,203,237,118, 59, 14, 31, 62,108, 17, 8, 4,139,142, 29, 59,182,176, 65,131, 6,226, 14, 29, - 58,200,215,173, 91,215, 4,192,229,151,101,176, 94, 4,187,221,158,112,244,232,209,122, 67,135, 14,165, 66,161,144,168, 84, 42, -184,186,186, 98,249,242,229,250,180,180,180, 23,158,160, 45, 39, 39, 71, 84,183,110, 93, 49,207,243,216,177, 99, 7,158, 62,125, -250, 73, 70, 70, 70, 86, 64, 64,192,225,169, 83,167,142,139,136,136, 8,122,248,240,225, 83,131,193,176, 34, 53, 53, 53,133, 85, - 77, 12, 6,131,241,234, 70,176, 94, 63,124,248,176,128,231,121,172, 90,181, 10, 55,110,220,160,217,217,217, 51, 9, 33, 27, 92, - 92, 92,236,217,217,217,175,143, 25, 51,102,192,204,153, 51, 73,219,182,109,113,233,210, 37, 82,173, 90,181, 65, 0,118,150,184, - 81,119, 41,111,174, 12,181, 90,125, 45, 35, 35,189, 90,137,137, 37,171, 73,165, 78,215, 42,184,249, 63,163,249,252,100,150, 2, - 1,215,124,206,156, 57, 58,127,127,127,243,221,187,119,177, 98,197, 10,254,250,245,235,167, 36, 18,201,202,212,212, 84,147, 35, -154, 47,131,146,154, 18,155,237,198,166,169, 83,107, 55,238,223,159,127,119,202,148,124,177, 76,246,209,162,101,203, 62, 85,105, -181, 1, 32,132,122,186,186, 38,174,154, 51,103,126,143,126,253,242,239,157, 57,227,116,243,216, 49,145,183,213,122,171, 50,233, - 76, 73, 73, 57, 19, 94, 61, 4,235, 87,255, 0,139,197,132,180,167, 5,254, 44, 59, 71,141,242,204, 85,105,154, 54,155, 77,253, -218,107,175,137, 1,200, 70,141, 26, 37,201,204,204, 68,245,234,213, 1, 0, 26,141, 6,127,252,241, 7,106,213,170, 5, 0,184, -115,231, 78,241,251,138,210,233,236,236,220,165, 93,187,118, 72, 76, 76,196,253,251,247, 47, 62,125,250, 84, 21, 24, 24,120, 49, - 41, 41,169, 67,211,166, 77,177,115,231,206,206,101, 25,172,202,158, 35, 71, 12, 86, 25,121, 95,176,123,247,238, 33,151, 46, 93, -234, 51,101,202, 20, 97,167, 78,157, 0, 0, 58,157,206, 72, 41,181,191,136,102, 73,172, 86,107,209,164,167,122, 0, 40, 52, 83, - 95,252, 21,205,191, 90, 62,153, 38,211,100,154, 76,243,191, 65,243,223,100,176,108, 60,207,227,244,233,211,216,181,107,151,221, -108, 54, 79, 79, 75, 75,139, 46,241,253,186,224,224,224,115,131, 6, 13,250, 62, 38, 38, 70,112,255,254,125, 56,114, 3, 42,137, -209,104,180, 62,191, 84,176,209,104,180,254,213, 76,173, 95,191, 30,233,233,233,150,228,228,228,227, 54,155,109,247, 95, 28,141, -248,151, 71, 17,174,163,212,244, 58, 33,199,103,181,105,211,117,230,177, 99,210,119, 63,255,220,244,214,232,209,159,216,205,102, -171, 64, 44,230, 37, 10, 5,103,151, 74, 69,247,206,156,113, 90,250,222,123, 30, 6,147,233,240,166, 74,116, 28, 47, 17,193,194, - 91,239, 78,130,161, 68, 4,235,210,181, 24, 84, 54,130,101, 52, 26,235, 2,128, 76, 38, 75, 2,224,247,198, 27,111,128,231,121, - 24, 12, 6,104,181, 90,164,166,166,170, 71,143, 30,109, 7, 0,133, 66, 33, 28, 52,104,144,139, 67, 7,178, 74, 21, 63,129, 64, -128,131, 7, 15, 66, 42,149,158, 4, 0,169, 84,122,242,216,177, 99, 29, 70,140, 24,129,224,224,224,144,162, 73, 80,202,211,241, -141, 28,176,141, 2,225, 32,168, 81,112,165,163,134, 79,228,128,219, 4,136, 45,156,229,253, 65,163, 70,141, 0, 7,251, 93,149, - 36, 43, 43, 75, 7, 96,173,175,175,239, 31,159,124,242,201, 27, 45, 90,180,104, 59,115,230, 76, 66, 41,253,203, 11,163, 83, 74, - 97,183,219, 89,173,195, 96, 48, 24,255,102,131, 69, 8,249,189, 99,199,142,195, 41,165, 2,142,227, 54, 63,103,174, 0, 0,201, -201,201, 79,130,130,130, 86, 85,173, 90,181,120, 1,232, 74,222,112, 50, 8, 33,223,114, 28,249,180,224,255,202, 79, 44, 89, 98, - 73,146, 79, 1, 16,142, 19,108,136,138,138,250, 60, 41, 41, 41,171,178,134,175, 52, 94,198, 40, 66, 0,216, 66,105,252,112, 66, -142, 76,137,140,236,210,227,189,247, 80,191, 71, 15,151,128,208, 80,187,193, 98,225,239,156, 63, 79, 46,238,216, 33,190,121,236, -152,200, 96, 50, 29,222, 69,105, 82,101,211,153,146,146,114,166,122, 88,208,209,193,131,122,117, 11,171, 26, 0, 0,136,139, 79, - 69,118,174,250,104,101,204,213,115, 70,171,255,242,229,203,247,137,197, 98, 97,201, 37,103, 44, 22, 75,110,145, 9, 35,132, 4, -172, 90,181,234,119,142,227, 18, 43,210,139,142,142, 62, 58,107,214,172, 30, 79,158, 60, 57,155,156,156,156, 2, 0,113,113,113, - 41, 1, 1, 1,187, 82, 83, 83,123, 38, 37, 37, 29,162, 14,132,158,158, 91,236, 25,247,206,111,119, 2, 80,175,104,177,231, 23, - 93,107,176, 36,133,166,124, 81, 80, 80,208,222,158, 61,123, 14, 39,132,164,255, 21, 61,165, 82,105, 51, 24, 12, 54,158,231,133, - 22,139,133, 42,149, 74, 27,171,126, 24, 12, 6,163, 82, 52, 5, 80,180,114, 72, 81,224,196,251,185,247,102, 0, 37,151,242, 43, -250, 63, 11,192,181, 18, 26, 37, 63,175,104, 95, 0,200, 6,112,187,240,179,191,102,176, 82, 82, 82, 14,193,129,197,156, 29,221, -174, 28,131, 52,157, 16,178,180,200, 44,253, 85, 13,155,205,246, 82,214,111,227, 56, 46,190,111,223,190,149,218,190,162,109,126, -167, 52,241, 35, 66, 54, 30,248,241,199,134,135, 87,172, 8,180,219,108,158, 4,160, 2,137, 36,199,108, 54, 39,120, 91,173,183, - 42, 27,185, 42,201,227,184,148,238, 0, 80,179,102, 77, 26, 27, 27,251,151, 71, 99, 80, 74,111, 1, 8,174, 96,155, 84, 0,109, - 29,209, 75, 78, 78,222,135, 82, 70, 10,166,166,166,238, 7,176,223,209,116, 21, 47,246, 12,112, 60,225, 7,215,109, 51,100, 7, - 0,190,104,177,231,151, 73, 74, 74, 74, 28,128,175,255,170,206,227,199,143,205, 85,171, 86,221,179, 96,193,130, 1,183,111,223, - 62,144,156,156,108, 6,131,193, 96, 48, 42,101,174, 8, 33, 7, 10,239, 61,125, 10, 31,242, 15, 60,255,190,104,155,162,237, 74, -110, 83,164,241,252,231,229,237, 11, 0,211,166, 77,251,124,254,252,249,114, 0, 14,247,197, 21,254, 55, 28,181,151,177,168,237, -203, 94, 24, 55, 37, 37,101,245,223,145,215,101, 5, 6,234,242,223,121, 60, 99, 98, 98,200,171,124,149, 21, 45,246, 92,130,200, -255,133,116,199,199,199,111,236,208,161,195,111,201,201,201, 44,122,197, 96, 48, 24,149,195,187, 52, 67, 84,134, 31,232, 83,222, -247,207, 60,176,151,178, 93,105,255, 19, 66, 14,204,159, 63,191, 79,101, 18,204,177,115,198, 96,252,255,241, 79,140, 98,101, 48, - 24, 12, 70,233, 60, 31,181, 42, 50, 93,207,255, 63,109,218,180,207, 81,137,230, 65,160, 96,102,238, 46,101,252,168,195,163, 3, - 8, 33, 93, 94, 32, 83,199,153, 38,211,100,154, 76,147,105, 50, 77,166,249,239,210,172, 72,187,140,253,123,151,213,164, 87, 94, -115,225,243,239, 43,218,215,129,109,255,168,204,129,248,219, 94, 0,186, 48, 77,166,201, 52,153, 38,211,100,154, 76,147,105,254, -197, 87, 83, 74,105,111, 20,172,114, 66, 41,165,189, 41,165, 61,166, 77,155, 54,189,232,179,105,211,166, 77,167,148,118, 46,218, -174,112,155,226,125,138, 62,123,254,239,243,159, 85,176,173,195,105,254,175,232,131,197, 96, 48, 24, 12, 6,131, 81, 14,215, 0, - 52, 45, 17, 93,202, 2,112,103,254,252,249,121, 37,250, 70,101, 1,184, 5,160, 65,225,118, 89,133,129,164,146,125,167,204,133, -255,155, 75,217,198,236,200,182,142,194, 12, 86, 25, 52,244, 23,124, 29, 18,228,211,164, 56,202, 87, 48, 57, 36,248,194, 89, 4, -138,167, 19,224,121, 80, 74,145,154,169,186,113, 59,131,126,249,162,191, 23, 17, 72, 60,124,156,156,150,240,148,182, 41,252,232, -140, 58,199, 52,233,174,154,170, 28,213,168,237, 71,106, 59,113,248,132,167,168, 15, 0, 28,193,109, 35,143,239, 30,164,211, 7, -127,245,120, 16, 66, 72, 93,111,140,149,200,228,195, 92,221,220,107,228,229,101,199, 90,140,166,237,247,179,176,146,190,192,180, -233,213, 61, 72, 11,158,226,115, 0,156,136,195,247, 49, 57,244, 20, 43,117, 12, 6,227,255, 9,193, 95,220,191,180, 41,128,254, -234,224, 34,202, 78,139, 67, 38,235,121,174, 58,184,221,255, 59,149, 50, 88,117,125,200,123, 32,248, 10, 0, 5,197,236,123,153, -244,151, 74,237, 31, 64,186, 56, 9, 4,107, 0, 8,140, 22,251, 20,202,227,108,169, 55,115, 14,237,156,196,130,239, 1,240, 70, -187,253,157,123,169,142,247, 7,139, 12, 34, 61,132, 60,183,137,167, 84,100,231,233, 6, 80, 28, 80,138,113,225, 82, 10, 53, 86, - 38,173, 33, 65, 62, 77,246, 92, 77,235,246,127,236, 93,117,120, 20,199,255,126,231,246, 52, 23,119, 79, 8,146, 4, 66,112, 39, - 64,112, 47,238,180, 80,218, 66, 41, 69,139,182, 64, 75,177,226, 80,164, 72, 91,160,184, 75,209,224,238,132, 16, 66, 32, 1,226, -238,114,186,187,243,251, 35,210, 0,145,187, 64,251,251,150,238,251, 60,251,220,221,222,238,187, 99, 59,243,206,103,102, 62,115, - 97,195, 4, 52,173, 91, 29,148, 99, 1, 94, 15,101,171,169, 56,183,242, 99, 52,173,229, 1,202,235, 1,158,133, 89,215,101,232, -234,111, 89,233,151,195,215,149,216,120,218, 57,132,108,222,188,197,201,165,154, 31,225, 89, 29,158,222, 62, 51,108,226,180, 57, -237,252, 45,137,191, 33, 34,171,158, 11,249,172,122, 85,223,169,147,190, 95,193,184,184,184,155,114,172,134, 77,124,241,164,193, -154, 37,115, 14,212,115, 33,203, 31,198,211, 45,134, 10, 41, 63,123,140, 22,203,101, 3, 76, 20,166, 53,242,243,115,158,115, 58, -253, 62,127, 23,113,151,165,203, 86,213, 15,236,216,205,140,203, 73, 20,233,121,248,237,221,179,219,243,231,117,235,187, 17, 66, - 62,162,148,242,198,196,153,167,152, 22,190,253,139,110, 18, 49, 67,106,125,186,153,129, 17, 75, 95, 75,194,207,145, 12, 33,180, - 98, 55, 17,148,224, 74,104, 18,221, 85,153,103,212,114, 36,191, 18, 10, 31, 16,236, 39, 20,187, 31, 39,211,100,161,158, 19, 32, -224,195,130, 72, 36,186,192,243,124,219,247,201, 73, 8,105, 70, 41,189, 41,164,238,127, 19,198, 89,176, 8,230, 63,142,136,177, - 6,167, 67,109,159,106, 63, 2, 48, 74, 96, 41, 24,102,219,157,103, 73, 78, 96,117,216,188, 96,236, 30,173, 30, 96,245, 58,112, -172, 30, 28,171, 7,203,234,192,233,245,160,122, 13,230,252,118, 1,208,230,160,145,191,247, 54, 0,206,134, 62, 67, 66, 69,127, -220,187,122,198,134,104,179,176,107,195,162,175, 99, 82,114,191, 14, 10,142, 79,173,237, 72,102,134, 38,227,119, 99,132,192,133, - 95, 38, 96,199,161, 63, 99, 87,255,154, 23,198, 83, 10, 27, 11, 19,223, 97, 61, 30,187,111, 63,114, 33,102,213, 54,117, 24, 0, - 88,154,202,124, 63, 9,126,230,241, 46,153,224,160, 80,172,218,184,254,103, 39,103, 91, 19,194, 94, 95, 12,150,227,224,238,217, -157,153, 57,110,152,243,252,149, 91, 86, 2, 24, 81,222,253, 53, 29,137,159, 79,245, 90, 83,182,253,121,221, 35, 63, 39, 89,123, -102,199,172, 8,170,129,222,201,181,150,228,199, 69, 43,152,111,167, 79,152, 92,211,145,220, 10, 75,162,161, 21, 84, 6,162, 90, - 14, 56,178,104,241,178,186,237,186,246, 48,227,115, 83, 24,117, 94,174,207,230,223,182,124, 95,179,110, 19,101, 43,127, 55,105, -242,190, 49, 68,149,147, 14,157, 72, 33,111, 87,187,131,133,106,248, 96,253,230,173, 59,198, 1, 88, 99, 84,247,175,196,240, 52, -207, 87,190, 55, 73, 40, 90, 61,184,121, 97, 52, 23,127, 7,148,211, 3,156,174,248, 19,156, 30,148, 47,248,108, 58,230, 55, 0, -168,148,192, 18, 81,116, 10,186,122,199, 57, 41, 49,161,241,202,101, 11,103,250, 57,144,147,224,240,199,147,116, 92, 50, 86, 88, - 10, 16, 32,224,127, 23,132, 16,150, 82, 42,126,207,156,221, 40,165, 39,222,145, 99, 42,128,207, 10,127,110,161,148, 46,125, 15, -225,114, 3,224, 84,248, 51,145, 82, 42,236,129,250,255, 42,176, 0, 5, 40, 15,236,239, 13, 0, 38,198, 62,140, 2, 10, 16, 6, -208,231,161, 87,215,142,176,115,112, 2,244,249,128, 46, 31,208,171, 0,125, 30,160, 87, 33, 53, 33, 10,208,229, 1,145, 39,193, - 82, 42, 55, 58, 86,154, 44, 32,124, 31,218, 55,240,128,189,165, 2, 19,122,249,217,109, 58, 21,190,101,203,153,167, 29, 0, 12, - 50, 40,172,148,162,105,157, 26, 88,189, 37, 47,236,232,189,228,206, 0,208,189,190,221,169,166,126,158,238,171,182,169,195,254, - 12, 78,239, 2, 0, 93,253, 45, 79, 54,241,117,246,224,223,193,186,203, 83,218,202,165, 74, 13,194, 61,216, 8, 62, 59, 22,217, -217, 42,196,190,220, 14,107,215,134, 34,142, 71,155,138,238, 55, 97, 48, 99,252,119, 63, 73,242,179,147,180,156, 46,133,179, 19, -101,136,197,114,158, 32,254,146, 38,143,207,228, 38,126, 62,156,251,102,206,194, 25, 0,134,149,107, 13,114,192,184,229,203, 87, -213,105,217,168,166, 67,226,129, 9, 36, 55, 35, 9, 44,163,148,247,106,222, 18, 86,222,126,124,210,197,229, 68, 86,173, 3,172, -108,171, 33,238,250, 78,188,186,121,144, 4, 52,232, 43,255,125,151,116,120, 89, 2,203,219,158, 4,116,110,221,100, 79, 53, 15, - 23,103, 74,121,240, 60, 5,229, 57,124,218,191, 19,102,238,141, 4,199,113,232,215, 57,160,253, 79,163,219, 81,158,231, 65, 41, -143,152,196,180,252,243,183,194,218, 71,164,211, 91,134, 88,166,234, 53,107, 27, 16,124,239,102, 77,125,248, 49, 52, 26,182, 40, -140, 0, 87, 75,148,185,128,251,167,127,175, 9,252, 86,217, 74,136,212,114, 0,247,234,212, 98,120,180,254,130,217,184,235,148, -125, 86, 74,220, 39, 7,182,175,239,191, 97,227,198, 29, 0,198, 8,213,136, 0, 1, 31, 6, 40,165,239, 93,100, 69, 68, 68, 36, -188,139,200,114,115,115,107, 13, 96, 73,209, 76, 12, 66,200, 18, 47, 47,175, 57,127,117, 80, 95,235,227,101,113, 28, 55, 44, 54, - 54,246,114,121,156, 61,122,244,112, 1,224, 85,130,211,139, 16,226, 85,218,181, 86, 86, 86, 92,139, 22, 45, 94, 29, 63,126, 60, - 94, 40, 33,127,175,192, 10,139,222, 55,161,129, 38, 33, 23, 0,194, 12, 40,172,175, 13,237,169,245,220,226,173,223,127,188,184, -118, 21, 27,228,228,105,113,230,238, 43,112,156, 30, 28,203, 22, 90,178, 88,112,172, 30,157,235,217,161,133,122, 12,214, 28,127, - 10,150,227, 23,149,199,249, 38,116,148, 31, 82,191,195,192,189, 60, 79,101,114,137, 40,203,199,221,214, 97, 74,191,122,162, 9, -189,106, 67,165, 99, 7,250, 57,146,243,161, 73,116,179, 65,156,252,219, 46,139,104,105,231, 56,182,194,184,151, 99,125,106, 58, -184, 71, 71, 11,170,201,130, 62, 53, 18, 57,249,122, 68,166,233,145,168,206,132,156, 36, 24,196,201, 83,212,117,117,118, 54,189, -182,103,250, 75, 91,113,182,216, 65,204, 74,100,148,149,112, 60,101,144, 25,170,177,173,217, 81, 92, 52, 47,171,188,112,154, 40, -205, 63,110,221,169,187,101,244,206, 47,136,137, 79,103, 56, 52,112,199,203,203, 91,145,124,247, 56,114,115,179,137, 60, 43, 19, -142,182,213,209,117,216, 32, 44, 29,212, 24, 57,217, 57, 96, 18, 34, 44,101, 18,185, 85, 89,156,148,195,176,229, 63, 45,112, 22, - 51,162,130,244, 44, 58, 56, 61, 84, 26, 13,192,177, 80,136,121, 16, 90,244,159, 30,156, 94,167,172,219,119,250, 88, 0,183, 42, -138,123,104, 18,221, 85,219,129,180, 2,175,175, 73,245, 42, 16,224,234,227,100, 90, 44,122,252, 28,201,144,134,157, 71,182,162, - 4, 87, 42,147, 71,254,182,232,209,200,203,204,212, 52, 59, 12,177,251,191, 70, 4, 20,212,177,229,103, 24,242,233, 56,229,166, - 77,155,122, 18, 66,190, 44, 57, 7,237,239,216,252, 84,224, 20, 56,255,173,156,150,150,150, 85,171, 84,169, 50, 71,175,215,183, -150, 74,165,142, 58,157, 14, 60,207, 39,202,100,178, 43,175, 94,189,154,151,149,149,245,226,127, 45,238,193,193,193, 6,139, 44, - 67, 56, 37, 18, 9,158, 62,125,250,220, 80,145,245, 38,167, 68, 34,249,227,234,213,171,216,187,119, 47, 0, 32, 60, 60, 28,222, -222,222,166,165,221,251,242,229, 75,211,192,192,192, 63,240,198, 14, 28,111,114, 62,122,244,168,234,177, 99,199,176,127,255,126, - 0,192,211,167, 79,225,227,227, 83,106,120,174, 94,189,202, 12, 29, 58,180, 42,128,248,191, 59,143, 62, 72,129, 85,184,191, 46, -121,243,123, 41,136,244,176,150, 53,128,154, 3,128, 72, 99, 31, 22,154, 72,127,170,231, 44,233,114,110,255,186,214, 10,169, 8, -115, 55, 79,137, 73, 73,207,105, 38, 38,224, 1,128,165, 16, 89,155,201,110, 44,250,164,158, 71, 70,174, 26, 71,111,199, 93,126, -156,100,156, 41,244,113, 60, 61, 11,192,234,175, 6,146,248,124,178,244,236,238,221, 51,186,212,157,212,171, 46,142, 92,127, 53, - 9, 64,133, 94,218, 41,207,131,242,108,241,164,246,194,174, 2,192,179, 40, 57,167,155, 7, 45, 56,199, 27,103,193, 10, 36, 68, -156,225,128,174, 54, 74,217,218,209,163, 63,183,208,167, 60, 67,186, 86,138,152, 12, 53, 18, 85, 18,228,138, 29, 16, 23,246,136, - 19, 17,156,173,216,202,130,108,112,106, 43, 27,153,153,200,191,227, 88,215,236,211,179, 50,100,148,101, 44,122,207,183, 74, 61, -183,226, 21,171, 74,201, 35, 4, 21,110,162,109,105,105,229,173, 78,123,197,100,101,164,194,202,169, 54,186, 12,236,129, 31,186, -251, 33, 39, 59, 15, 41,215,255,164, 53,156, 45, 72,212,149, 29,248,182,107, 45,164, 37, 37, 64,163, 7, 72,158, 38, 93,173, 85, -231,150,153,142, 34,108,156,248,205,180, 33,158,206,246,166, 69,139, 5, 40,207,161, 94,173,106,232,216,186, 41,206, 94,189,134, - 59,143,194,193, 23, 46, 22,160, 60,143,216,228,140, 36,181,142,219,106, 84,130,114, 44,168, 94, 93,170, 0, 67, 37,134, 6,235, - 56, 18, 37, 7,204,110, 86,195,124,212,140, 30,158,230,166,114, 2,181,158,131, 90,171, 71,206,181,181,176,173, 82, 7, 74,133, -130, 52,128, 74, 12, 64, 47, 84, 37, 2, 4,252,133, 1, 3, 6, 40,146,146,146, 46,118,239,222,221,175, 99,199,142,202, 86,173, - 90, 33, 47, 47, 15,103,206,156, 65, 94, 94,158,167,187,187,187,231,153, 51,103,250, 54,107,214, 44,212,205,205, 45,112,223,190, -125,198,204,145, 21,227,175, 73,234, 60, 0,150, 16,130,194,115, 4, 0,255, 46,251,208,202,100, 50, 68, 69, 69,189, 55, 75,150, - 84, 42,133, 90,173, 70, 92, 92,220,243,202, 88,178,114,115,115,165,174,174,174,176,183,183, 7,199,113,200,203,203,195,225,195, -135,145,149,149, 5,158,231, 97, 98, 98,130,249,203, 55, 35,236,254, 69,220,186,117, 11, 89, 89, 89,210,138, 56, 99, 99, 99, 73, -189,122,245,160,209,104,192,178, 44,212,106, 53,130,130,130,138,127,139,197, 98, 76,251,113, 37,194,239, 94,196,131, 7, 15, 16, - 27, 27,251,143,236, 14, 98,132, 22,249, 32, 45, 88,239, 12,142, 99,103,110,218,182,251,198,204, 49,131, 48,110,112, 7,247,121, -235, 14,118, 8, 77,161,219, 0,192,207,158,124, 50,188,109, 13, 15, 43,165, 4, 63,236,188, 11, 80, 58,243, 93,159, 23,146, 70, -195,107, 59,145, 73,135,110, 69, 93,156, 53,168, 1,170, 57, 91,120, 87,175, 78,100, 17, 17, 6,236,249,199,179,176, 54,147,251, -118,175,111,119, 10, 60, 15, 43,115,121, 77,112, 44,172,204,228,190, 93,253, 45, 79, 2,128,149, 82, 90,179, 52, 75, 87, 89,104, -236, 33,253, 66, 41, 23,127, 97,218,208,217, 99, 68,207,142, 38,221,122,246, 53, 49,147,176, 72,187,117, 6,217, 18, 55,232,109, - 60,161,209,167, 35,246, 69, 4,119,238,230,147,184,212, 28,205,148, 10,131, 73,113, 57,238,197, 83,251,170,117, 59, 90,167, 30, -255, 54,185,234,200,157, 94, 34,240,162,156, 29,125,146, 76, 29,154,152,220,126,254, 34,151,167,111, 91,112,222, 68,118, 86,214, - 43, 61, 7,103, 21, 39, 54,143,184,240, 59,102,116,173,131,140,244,100,168,117, 44,178, 84,172,206,201, 74, 33,215,188, 8,129, - 70,199, 66,171,231, 33,177,114,197,153, 27,143, 82,121,189,190,204,189, 40, 35, 82,233, 3, 0,102, 37,207, 85,183, 39,245,166, - 91,152, 60,128, 94,133,168,216,120,108,251,243, 70,131,194,235, 42,223, 59,229,217,130, 97,230, 18,150, 43, 66,209,170, 50,147, -219,107, 57,146, 38, 38, 10,233,207, 75, 38, 13,245,107,238, 99, 35,231, 99,111,128,240, 58,152,114, 98,168,100, 28, 44,221,171, -129,215,230,208,124,181, 58,243, 49, 32,120,102, 23, 32,160, 4,106,214,172,233,100,105,105,249,248,155,111,190,177,233,211,167, - 15, 14, 29, 58,132,236,236,108,108,221,186, 21,171, 86,173,194,247,223,127, 15,189, 94,143, 77,155, 54, 41, 15, 28, 56,208,100, -253,250,245,177,158,158,158,181,163,162,162, 42,218, 80,157, 0,144, 3,144, 20,182, 93, 4, 0,127,226,196, 9,116,235,214, 13, - 39, 78,156,224, 11,207,113,132, 16, 61,165, 84, 83, 89,129, 37,147,201,144,149,149,245,222, 68,150,153,153, 25,100, 50, 25,114, -114,114,140, 22, 89, 44,203, 50,177,177,177,200,202,202, 66,199,158, 61,177,114,209, 34,180,109,219, 22, 29, 59,118, 4,165, 20, - 65, 65, 65,232,208,210, 31,131, 62, 10,196,147, 39, 79,192,178,172, 65,225, 77, 76, 76, 68, 82, 82, 18,186,244,236,137,205,235, -215,163,105,211,166,240,245,245, 5,203,178,184,120,241, 34,250,119,110, 9, 69,239, 14, 8, 15, 15, 23, 10,245,191, 69, 96,133, - 36,211,155,126,246,228,248,224,206, 77,122,244, 12,240,195,230, 61,231, 22,248,249,145,221, 0, 96,107, 46,159,255,113,219,106, - 8,141,206,192,185, 7,241,199, 67, 83,222,207,234, 11,158,131,157,173,133, 18, 96,100, 80,233,120,214, 34, 18, 21, 78, 76,230, - 41,133,178,245,116, 12,239, 25,234,222,212,207,221,189,104, 21,161, 89,183, 21,248,228,209,115,143,198,190, 78, 30,224,244, 0, -167,135,197,160,157,192,143,166, 21,134, 35,160,170,252,236,244, 41,147, 90,116,237, 61,208, 68,166,180, 4,151, 29, 3,125,226, - 35,164, 61,187,140, 60,165, 55, 18,163, 34,177,247,244,173,172,103,177,105,217, 34, 17,206, 36,101,105,166, 70,164,211,220,138, -120,213,122, 44,154,243,237,148,238,123,119,239, 49,151, 87, 11, 32, 17,107,187,101,201,196,172,220,190,106, 67, 81,190,194,142, - 46,220,186,199, 34, 79,139,197, 21,241,228,231,101, 31, 12, 58,115,106, 80,141,170, 1,230, 47,239,252, 9,149, 90, 3,141, 30, -168,221, 36, 16, 28, 71,101, 68, 68,120, 11,134, 33,201,105, 25, 32,122, 46,233,202,195,151, 9, 87, 31, 70, 50, 26,243,138,185, - 95, 43,116,132, 25,223, 51,176, 62,160, 87,225,163,214,117,176,114,199,185,175, 1,140,124,183, 76, 46,176, 96, 81, 32,160,182, - 3,249, 5, 64,192,221,195,171,106, 54,234, 61, 17,198, 88,176,252,237, 73, 87,255,234, 46,191,175,156, 63,221,198,214,205,155, - 33,188, 30,212,169, 46,144, 29, 75, 73,236, 13, 88,186, 54, 5,231,210, 18,155,214, 44,203,229,121,186,187, 50, 46, 42, 4, 8, -248,144,161, 86,171, 15,254,244,211, 79, 54, 61,122,244, 40,178,192,224,198,141, 27,216,178,101, 11, 76, 77, 95,175, 39,187,117, -235, 6, 74,169,205,220,185,115, 15, 2,104, 94, 22,103,179,102,205,122,174, 91,183, 46,190,126,253,250,145,133, 34, 75, 10, 64, - 20, 18, 18, 34,138,137,137, 33,214,214,214,212,197,197, 69, 31, 31, 31,207, 3,224, 62,253,244, 83,198,204,204,172, 70,110,110, -238,165,202, 10, 44,153, 76,246, 94,230,100, 73, 36,146, 98, 94,169, 84, 10, 74,169, 81, 34,139,227, 56,241,137, 19, 39,112,247, -238, 93,124, 95,191, 62, 38,185,186,194,198,198, 6, 23, 47, 94, 4,165, 20,166,166,166, 72, 79, 79,199,238,221,187,209,174, 93, - 59,176, 44, 43, 53,132,119,255,254,253,184,119,239, 30,126,108,212, 8,147, 44, 45, 97,102,102,134,160,160,130, 81, 63,185, 92, -142,168,168, 40, 4, 5, 5, 33, 48, 48, 80, 40,212,127,183,192, 10, 36, 68, 76, 28,225,164,211,170, 64, 89, 10, 16,184,248,249, - 17,105,104, 40,213, 25,251, 80,145, 8,223,174,217,118,188,251,138,137, 61,201, 23,189, 26,184,204,251,253,194,151, 0, 48,170, -159,143,171, 82, 46,198,234, 35,161, 84, 36,194,183,239, 35,130,126,126, 68, 42, 18,225,203,142, 77,125, 17,159,169, 69, 68,124, -230,249, 80, 74, 13, 26,210, 57,183, 98, 56,182, 31,189, 24,179,106,187, 58,140, 82, 10, 43, 51,185,239, 39,193, 17, 30,191,159, -184, 23,189,124,175, 58,140,242, 20, 86, 74, 73,205,145, 79, 90, 86,184,138,176,177,135,244,139,153,211,167,182,236, 53,242, 27, - 5, 27,182, 15,218,136,211,224,117, 42,100,235,164,200,100,156, 16, 27, 29,141,133,155,142,199,100,231,105, 7,133, 36, 27, 39, - 44,195, 83,105,174,159, 61,233,179,240,135, 89,103, 23,205,159,107,150, 31,121, 49,151, 33,172,138,241,108, 35,158,255,253, 10, -146,163,209, 14,140, 72,167, 57, 21,241,104,204,177,248,167,229,107,186,127, 62,172,111,152,143,119, 27, 91, 46,254,133,173, 58, - 59, 59,121,231,169,123, 78,133, 61, 67, 2, 0, 17,177,105, 72,201,202, 99, 57, 86,127,201, 92,130,121,143, 13,177, 6, 22,162, -154, 35,177,239,211,170,238, 80,123,115, 41, 84,185,153,112, 48,151,160,115,211,234, 67,171, 57,146,233,145, 73, 52,165,210, 25, -205,235, 65,245, 42,220, 92,220,174, 38,229,244, 53,193,233,161, 11,254,195,120, 75, 24,193,164,113,173,205, 44,172,181, 47, 69, -200, 51, 5, 76,236, 64, 44, 60, 1, 75, 47, 34,169, 53, 16,241,145,143,217,175,135, 14, 75,123,241, 42,246, 87, 59, 19, 44, 21, -170, 16, 1, 2, 94, 71, 84, 84,212,199, 51,103,206,188,218,180,105, 83, 71, 59, 59, 59,212,169, 83, 7, 71,143, 30,197, 55,223, -124, 83,124, 77,253,250,245, 65, 41, 69,122,122, 58,126,250,233,167,196,248,248,248,143,203,227, 12, 11, 11,123,186,125,251,246, - 86,126,126,126, 58,169, 84,154, 9, 64,158,153,153,169, 72, 79, 79, 39,106,181, 26, 60,207,243,150,150,150, 92,124,124,188,126, -208,160, 65,154,235,215,175, 87,207,203,203,139,126, 23, 11,150,187,187,123, 72, 90, 90, 90, 22, 33,228,157, 92, 56, 72, 36, 18, -136, 68, 34, 72,165, 82,216,217,217,217,231,230,230,242, 0, 50, 42,227,194,129,101, 89, 52,106,212, 8,167, 47,223,199,137,115, -215,145, 29,255, 20, 95,126,254, 49,234,212,169,131,211,167, 79, 87, 58,207,234,213,171,135, 83, 65, 87,113,245,238, 67, 68,133, - 7,227,235, 47, 63, 71,237,218,181,113,234,212, 41,161, 64,191, 7,129, 21, 72, 8, 41,234,137,191, 37, 87,107,217,147,122, 46, - 53,100,127,204,237, 90,189,150,164,227, 92, 16,137, 9,246,121,159,106,249,237,194,181, 97,117, 28,201,176, 71, 73, 21,175,246, -122,205,138,149, 68, 31,215,118, 32,187, 30, 62,169, 57,244,163,166,238,216,124, 84, 57, 27, 0, 6,182,170,138,219,207, 82,112, - 43, 60,121,215,227,100,250,248, 93, 35, 87,199,145, 40, 65,177,235,167,241,189, 2, 61,221,156,176,229,208, 85, 16,130,131, 6, - 53,180,148,210,166,126,158, 88,181,253,205, 21,131, 78, 30,203,247,170,195, 78,135,100,119, 5,128, 78,181, 76, 79, 54,174,110, -237, 81,145, 37,195, 68, 38, 30,221,181,239,112, 5, 27,126, 20,120, 21, 4,194,106,160,210,241, 72, 72,205, 65,190,165, 59, 46, -222,120,168,202, 82,107, 39, 62, 78,174,156,213, 46, 52,133, 70,214,119, 38,209,121,121, 42,103,165,125,117,181,152,240, 52, 87, -205,227,118,232,171,172,199, 9,244,169, 33, 28, 17, 17, 84,219,220,141,180,250,101,219,222, 57, 18,169,108, 32, 67, 64, 28,172, - 76,237,127, 89,241, 35,204,205,205,192,107,115,129,188, 20,244,249,106, 97,202,163, 56, 93, 85, 0,240,177, 35,102,173,171, 73, -183,137, 69, 36,246,252,115,237,119, 21, 61,131,232, 49,102, 88,231,250, 18, 94,155,135,241, 63,237,193,198,233,189, 48,188,125, - 45,201,159,215,194,199, 0,152, 87,217,188,166, 28, 11,170, 87,161,249,172,203, 97, 4,184, 74,129,128,187,123,231,215, 4,238, - 27,204,209,144, 16,137,216,153,212,170,235, 97, 42,229, 99,175,129,143,189, 70, 25,247,150, 32, 30,173, 9,113,106, 68,127, 94, -242,125,222,230,205, 91,206,240, 34,252, 80,145,203, 11, 1, 2,254,171,160,148, 70, 90, 89, 89,117,233,214,173,219,185,211,167, - 79,219,248,251,251, 3, 0,238,222,189, 11, 0,104,212,168, 17,124,124,124,144,148,148,132,193,131, 7,167, 38, 36, 36,116,161, -148,150, 59,167, 55, 39, 39, 39,114,255,254,253, 14,185,185,185, 13,102,207,158,157,228,233,233,153,173, 86,171, 73,102,102, 38, -207,178, 44,172,173,173,101,245,235,215, 71,139, 22, 45,114,175, 95,191,238, 21, 19, 19,147, 13,224,101,101,194,223,171, 87, 47, - 92,190, 92,176, 8,239,125,248,197,146, 72, 36,240,247,247,119,141,140,140,140, 43, 76,159,155,149, 72,211,226,239, 15, 31, 62, -196,165,251,177, 16,107, 85,144,165,196,227,230,161,253,232, 57,122, 44, 88,182,242,179, 21, 30, 62,124,136,195, 65, 55, 97, 42, - 23,227,233,211,199,216,191,127, 63,190,252,242,203,119,226,172, 36,202,213, 34,255, 74,129, 69, 41,189,132, 82,188,208, 86,175, - 78,100,242, 92,204,237,220,200,117,218,192,128,234,140, 62, 59, 30, 60,199,131,145, 0, 14,118, 22,248,227,143, 93, 85,119,237, -217,115,163,158,171,100, 13,207,178,223, 62, 74,162,249, 70, 60,123,238,138, 61, 87, 7,254, 49, 37, 80,252,101,215,154, 54, 0, - 32, 21,139,176,250,232, 99, 22,192,220,119,137, 84,115, 55,162,200,213,227, 11, 39, 91,203,217, 51, 63,235,110, 19,216,200, 7, -151,110,133, 96,205,254, 27,151,101,201,216,110,112,161,230,245,120, 83, 55,149,182,138, 16,124,197,243, 41, 57,142, 58, 73, 77, -173,161,123,117, 1,208,169,161,214,232, 16,147,198, 33, 38, 93, 13,177, 82,138,187,225,177, 42,219, 68, 28,175,108,156, 9, 33, - 36,160,154,194,101,246,130,229,110,106, 85, 46,155,157,145,202, 74,101, 55, 37, 74, 19,121,130, 49, 60, 55, 98,169,186, 77, 85, -105, 67,128,103,100, 10,154, 63,107,242, 8,211,184,208,211,168, 33,138, 7,161, 20, 38,181,186,195,220,132,145,182,242,146, 70, - 3,128,151,147,165,236,167, 31,190,177,156, 56,253,135, 10,231,120,249, 17, 34,173,211,216,105,162,191,167, 53, 46,223, 11,195, -229, 71, 81,143, 47,223,125, 90,187,109, 29, 23,248,184, 89, 77,240, 35,100,113, 40, 53,222, 34, 90,144, 49, 44,160, 87, 23,175, - 34,244,115, 36, 67, 26, 15,252,174,212,213,131,101,193, 11,224,195, 57, 10,194, 48, 0, 17, 21,172,104,140,185, 6,177, 85, 53, -186,107,239,225,252, 45, 91,182,255, 24,154, 66, 5,171,149, 0, 1, 21, 32, 51, 51, 51, 88,169, 84,118,174, 91,183,238,214,241, -227,199,155, 15, 27, 54,204,229,243,207, 63, 23, 1, 64, 82, 82, 18,191,106,213,170,248,159,127,254, 57, 43, 53, 53,117,164, 78, -167,123,100, 72,135,151, 16,114,253,183,223,126, 75,185,116,233, 82,237,102,205,154, 41, 26, 53,106,196, 89, 91, 91,139,229,114, - 57,167,213,106,213,225,225,225,124,100,100,164, 75,102,102,230, 51, 0, 17,149, 25,190, 47,180, 86,205, 99, 24,102, 14,165,212, -255,125,204,193, 82, 42,149,206, 0,158, 19, 66,106, 24, 59, 60,248, 86,131, 45, 22, 35, 35, 35, 3,249,137,143,161,136,125,134, -186,166, 34,248, 89,155,193,194,194,226,157,196, 80, 86, 86, 22,144, 23,135,171, 87, 31, 2, 44, 11, 75, 75, 75, 88, 90, 90,254, -227, 2,171, 44, 45,242,111,183, 96,189,133,218, 14,228, 75,107, 25, 86,141,238, 94, 93,234,229,225, 6, 77,236, 93, 60,140,201, -197,183,205,154,132, 50,114,115,245,232,143,123, 53,234,219,191, 10, 2, 91, 52, 38, 94,206,150, 19, 22,175,216,240, 85,109, 71, -242,205,227, 36,186,218,144, 7, 63, 78,166, 47,106, 57,144, 45, 23,130, 99,199,184, 41, 85,224,121,138, 11,143, 18,240,232, 85, -198,150, 39,201,244,133, 49,145,168,237, 66, 58,136, 33,218, 67, 41, 85, 88,154,154,230,212,175, 87,211,174, 67,243,122,162, 46, -109, 26, 65,202, 0, 87,111, 63,196,164, 21, 7,111,242, 60,237,126,207,192,225,193,130, 21,131,175, 11,167,130, 21,131,250,215, - 86, 12, 82, 74,105,193, 42,194,242,167,117, 49, 12, 73,204,143,186,227, 36,177,245,134, 42,226, 2, 94,101,240,136, 74,206, 65, -182,216, 9,154,184, 56,128,242,209, 23, 41,173,116,105,182,179,179,115,168,234,231, 83,125,237,182,253,208,229,103,225,197,197, -173,200,205, 72,192,252, 95,142, 86,119,115,115,107, 19, 27, 27,123,201,136, 74,198,231,220,241, 93, 14,160, 0, 35,145,227,207, -245,123,145,106,107, 2, 59,165, 20,188, 42, 5,163, 39, 14,179,236,218,113,152, 37, 0, 68, 61,125, 0, 79,165,202, 32, 94,157, - 45,250, 14,108,235,107, 5,189, 10,219, 78, 61, 80,139,128, 46,219,207, 60,142,104, 91,211, 74, 49, 48,192,211,122, 94,124,102, - 63, 84,210, 25,104,145, 5,171,216,162, 87,137,213,131,251, 40,229,106,217,147,136, 61,215,147, 77,251,119,108,168,148,138, 9, -161,185,113,160, 38,118,216,176,109, 95,174, 76,143, 77, 66,211, 41, 64,128, 97,200,207,207,191, 71, 8,169, 51,117,234,212, 33, -179,102,205,106,109,106,106, 90, 21, 0,242,242,242, 94,232,245,250,203, 0,118, 25,179,218,175, 80, 48, 61, 39,132,188,120,249, -242,165,211,206,157, 59, 45,241,151, 63, 70, 21,128, 44, 20, 56,204,172,244, 10,194, 34, 49, 69, 8,153,243, 30, 69,195,137, 66, -206, 26,149,185, 95, 36, 18,113,132, 16, 16, 66, 32,151,203,113,229,202, 21, 12,232,222, 17, 79,254,204,132,191,149, 25,154,140, - 28,141, 61,103,207,130, 97, 24, 16, 66,192, 48,140, 81,237,136, 88, 44,198,213,171, 87, 49,124,112,127,200,197,128,165,165, 37, -166, 78,157,138, 35, 71,142, 64, 44, 22,118,211,251, 91, 4, 22, 8,230,157,221,186, 80, 10, 78,143, 99, 91,151,225,120, 72,174, -246,105, 10,190,245, 77,193,170,253,200,225, 83, 86,108, 31,115,246,106,200,210, 79, 7,245, 80,182,107,219, 17,237, 2,219,138, -107, 55,110, 51, 27,192,234, 18, 13,117,135,242,124,101,112, 60,126,220,116, 42,108,244,158,139,225, 4,186, 28, 12,234,212,152, -114, 60,126,172,160,241,127,139,211,210,196,108,207,213, 27, 55,172,161,203,197,171, 7,231, 21, 85,170, 86, 7, 56, 29,158, 63, -127,134,159,183, 29,226, 47,222,126,250,135,150,197,248,136,116,154,103, 40,103,129,162, 98, 97,105, 42,243,237,234,111,121,146, - 7,133,149, 82, 90,147,242, 28,172,148,146,154,157,106,153,158,164,148, 82,115, 19, 73, 77,202,233, 43,228, 84,105,217,141,219, -126,219,178,124,212,168, 81,166,169,177,137,136,207, 14, 65,174,204, 21,122,165, 59, 34, 30, 92, 86,229,107,216, 10, 27,239,242, -210, 51, 53, 53, 53,249,222,173,116,236,249,101, 17,244, 90, 13,146, 99, 11, 52,106,124,106, 54, 44,236, 92,111, 24,195,169, 99, -249,172,190,195,190,144,154,152,195,100,120,223, 30,178,136, 52, 13, 26,184,152, 23, 84, 22,185, 41,120, 18,116, 21,129,121, 5, -122, 45, 50, 70, 4,207,122, 46, 6,133,211, 92, 33, 29,223,181,161, 43, 94, 68, 39,224,202,227,184,109,145,105, 52,190,154, 45, -217, 22, 17,159, 57,166, 87, 51, 15,172, 60, 18,250,117, 89,162,168, 44, 78, 63, 71, 50, 4, 64, 64,193, 36,119, 21, 40, 16,224, -231, 72,134, 24,178,114,176, 52, 78,177, 20, 67,151,159,140,250,110,223,157,212, 94,211,134,182,178,104,209,162,155, 12,172, 22, - 57, 42,141, 62, 52,131,102,191, 75, 30,189,131,117, 82,224, 20, 56,255,149,156,133, 98,231,143,194,227,125,114,198, 21, 30,239, - 45,238, 37,135, 3, 41,165,226, 66,235, 85,185,147,220, 43,226, 44, 57, 28, 72, 41, 61, 81,104,189, 42,215,138,245, 38, 39,207, -243,241,141, 26, 53,178,233,217,179, 39, 56,142,195,179,103,207, 16, 21, 19,131, 14, 99,190,134,149,149, 21, 46, 7, 7,227,233, -211,167,152, 51,103, 14,244,122, 61, 14, 31, 62, 28, 91, 17,167, 88, 44,214, 85,175, 94, 93,218,187,119,111,176, 44,139,200,200, - 72,196,197,197, 97,210,164, 73,176,180,180,196,189,123,247,138, 57, 83, 83, 83, 33, 22,139,117,255, 68, 89,250,239, 8, 44,128, - 3,167, 71,214,217,185, 88,125, 5, 58,157, 30, 53, 31, 39,211,146, 99,218, 27,234,218,146, 99,193, 33, 97, 47,238, 93,107, 39, - 67,242,163,130,123,140, 64,120, 42, 77,104,236, 46,206,129, 46,199, 2,145, 39,241, 50, 41, 39, 55, 60,149, 38, 24, 27, 9,202, -115, 4,186,124, 32,225, 46,174, 95,190,132,139, 55, 31,226,206,163, 48,238,250,189,240, 61, 34, 30, 63,134,166,210,103,149,232, -117,192,172,251, 74,140,120,244,220,163,177,143,163, 7, 56, 22,148,215,195,114,208, 46,140, 12,109,225,209,184,154,149, 71,129, -229, 74, 15,235,207,206, 3,203, 21,229,242,221,137,214,109, 10,168, 42,239,151,147,153,214,172,125,155,230,166,150,181,186, 34, -245,121, 56,158, 61,188,170,186, 23, 18,113,253, 78,180,238,157,172, 35,174,174,174,173,219,183,241,197,160,209, 51,161,203,207, - 66,228,197,223,144,155,158,136, 43, 55,204, 16,150,157,221, 28,128,193, 22,172,235, 81,250,218, 0, 16,224, 37,141, 54,135,198, -233,227, 30, 61, 33, 39,106,240,154,108,144,252, 84, 68,196,105,179,250,253, 18,195, 1,128, 82, 78,196,166, 52,203,194, 16, 94, - 63, 79, 91,111, 37,163,199,246,179,143,193,243, 5,219, 44,241, 60, 54,108, 63, 31, 49,230,199,225, 13,224,231, 97, 93,143, 20, - 58, 63, 49,184,210,164,104,117,103,207, 15, 53,213,231,102, 3,188, 14, 87, 39,216,212,108,181, 58,189, 85,101, 45, 97,143,226, -104, 28,128, 49,181, 92,200,198, 9,171, 79,205,110,116, 54, 52, 96,202,103,189, 44, 64,133,141,209, 5, 8, 16,240,207, 35, 55, - 55,119,244,200,145, 35, 55, 74, 36, 18,123, 0,132,231,121,240, 60, 47, 94,186,116,169,132,227, 56,145, 72, 36,226, 24,134, 97, - 79,156, 56,161,231, 56, 46, 69,173, 86,143,174,136,147,101,217,136,177, 99,199, 86,175,104,197,225,238,221,187, 33, 22,139,117, - 44,203, 70, 8, 57,241, 62, 5, 22,197, 15, 45,135,207,157, 11,128,128,226,251, 55,196, 21, 0, 32, 56,141,198,215,118, 32,147, -106, 55,110, 51,183,232, 30, 99, 3,160,230,184,254,141,235,248,236, 6, 0, 13,229,134, 87, 38, 18,217, 26,213,192,250,141,155, -239,225, 41, 21,179,148,110, 17,241, 56,160,102,241,196,144,149,115,101, 33, 62, 57,243, 94,209, 6,206, 60,232, 95,195,130,133, -238, 24, 40,165,180,120, 88,112,153, 2,169, 89,154, 10,253, 56, 93,125,161,233,216,216, 67,250,197,153,107, 15, 70,115, 28,117, - 98, 24,146,168,210,178, 27,223, 85, 92, 1, 64,108,108,236, 37, 63, 7,114, 38,184,158, 99, 39, 59,101,161, 85, 43, 31, 72,205, -199,153,216,228,156, 75,149,225,204,200,211,247,154,181,234,200, 81,153,132, 17,131,210, 2, 71,160,148, 66,173,227,210,139, 68, - 88, 93, 91,226, 50,245, 48,187,155, 97, 72, 84, 69,124,183,158, 38,172, 28,180, 56,232,155,199,175, 50,182,188,204,160, 33, 0, -240, 50,131,134,212,176, 37,179, 35, 18,115,190, 9,137,202, 88,102,236,188, 9, 74,112,165,241,160,185,111,157,123,215,244,124, - 18, 79, 31, 2,232, 83,219,129,116, 28, 52,229,231, 41,132, 64,216, 38, 66,128,128,255, 16,138,172, 88, 34,145,104,222,123,228, - 60, 65, 8,233, 6,224,185, 17,247,220, 2, 80,231, 61,199, 45, 13, 64,154,144,203,255, 79, 2,235,113, 50,221, 0, 3, 54,115, - 54,244,186, 50,239,143,167, 65, 0,108,223, 37, 18,133, 28, 54,239, 51, 97,130,147,232,236,191, 35,193, 11,197,212,223, 50,151, - 39, 52,153,118, 6, 0, 31, 31, 31,250,236,217, 51,188,171, 23,220, 39, 41,244, 33,222,216,114,161, 52,145, 13,160,149, 33,124, -225,169,244, 71,224,237, 33,224,231,105,116, 62,128,249,149,138,115, 37, 61,181, 27, 92,182,146,233, 89,160, 98,111,250, 2, 4, - 8,248, 48, 69,214,223,192,121, 66, 72,217,255,184,192, 18,240,239, 69,120,120, 56, 17, 82, 65,128, 0, 1, 2,202, 4,247, 55, -112, 10, 78,135, 5,188, 6,145,144, 4, 2, 4, 8, 16, 32, 64,128, 0, 1,239, 23, 4, 64,135, 82,165,184, 17,171, 3, 8, 33, - 29,140,150,250, 21,240, 11,156, 2,167,192, 41,112, 10,156, 2,167,192,249,225,113, 86,196,253,193,172, 78,164, 37, 38, 47,191, -239, 3, 64, 7,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5,206,255,218, 33, 12, 17, 10, 16, 32, 64,128, 0, 1, 2, 4, -188,103, 8, 2, 75,128, 0, 1, 2, 4, 8, 16, 32, 64, 16, 88, 2, 4, 8, 16, 32, 64,128, 0, 1,130,192, 18, 32, 64,128, 0, - 1, 2, 4, 8, 16, 4,150, 0, 1, 2, 4, 8, 16, 32, 64,128,128,202,131, 24,185, 51,137, 0, 1, 2, 4, 8, 16, 32, 64,128, -128, 10, 32, 2, 0, 66, 8, 45,249, 41, 64,128, 0, 1, 2, 4, 8, 16,240, 79,226, 67,211, 34,194, 16,161, 0, 1, 2, 4, 8, - 16, 32, 64,128, 32,176, 4, 8, 16, 32, 64,128, 0, 1, 2,254, 29, 2, 43,176,208, 36, 23, 40, 36,137, 0, 1, 2, 4, 8, 16, - 32,224,255, 1, 31,148, 22, 41,158,228, 78, 8,161,148, 82, 34,228,175, 0, 1, 2, 4, 8, 16, 32,224,255, 69,148,124, 64, 90, - 68, 88, 69, 40, 64,128, 0, 1, 2, 4, 8, 16,240,158, 33,204,193, 18, 32, 64,128, 0, 1, 2, 4, 8,248, 55, 9, 44, 66, 72, - 7,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5, 78, 65, 96, 9, 16, 32, 64,128, 0, 1, 2, 4, 8, 16, 4,150, 0, 1, - 2, 4, 8, 16, 32, 64,128, 32,176, 4, 8, 16, 32, 64,128, 0, 1, 2, 4,129, 37, 64,128, 0, 1, 2, 4, 8, 16, 32, 64, 16, - 88, 2, 4, 8, 16, 32, 64,128, 0, 1,255, 79, 32, 0, 74, 93, 9, 64, 41, 13, 50,152,164, 18,171, 9, 42,226, 23, 56, 5, 78, -129, 83,224, 20, 56, 5, 78,129,243,195,227,172,136,219, 24,253,241, 63, 13, 74,233,223,118, 0,232, 32,112, 10,156, 2,167,192, - 41,112, 10,156, 2,167,192,249, 95, 59,132, 33, 66, 1,134, 90, 41, 29, 9, 33,142, 66, 74, 8, 16, 32, 64,128, 0, 1, 21, 67, -252, 62,201,106, 17,210,110,108, 93,199,125, 95, 61, 76,180,169,232, 90, 7, 7,135,141, 74,165,114, 88,126,126,126, 30, 33,132, - 47,105, 81, 3, 80,114,255,158,200,228,228,228, 86, 21,241,201,229,242, 85,142,142,142,159,229,230,230,230, 19, 66, 40, 33, 4, -132,144, 34,113,240,218, 39,199,113,177,169,169,169,141,254,213,130, 7, 96,236, 28, 29,111, 75, 24,198,213,216,123, 57,158,127, -153,148,152,216,220, 8,113,181,136, 16, 76, 43,252,190,132, 82, 58,243, 3, 84,144,140, 33,151,249, 3,230,225,192, 32, 78, 36, -250, 90, 2,172,211,240,252, 47,133, 5,151,171,236,163,181,183, 73,117, 66, 81,143, 16, 88, 82,138, 44, 74,240, 80,214,132, 70, -252, 63, 9,233,102, 18,137,100,160,181,181,181,121,114,114,242, 57, 0, 71, 1,124,228,224,224,208, 62, 35, 35, 35, 71,175,215, -239,165,148,222,172, 12,119,235,250,100,186, 76, 42,249, 84,173,211,255,116,245, 1,253, 45,176, 33,177,101,121, 44, 86, 72,197, -173, 52, 90,118,201,149,135,116,139,145, 97, 37,111, 88,227,141,222,247,107,191,129,249, 14, 0,135,173,173,125,228,246, 22,231, - 36, 50,230,101,102, 82,238,176,254,201,201, 49,253,223, 33,223,255, 23, 97,111,111, 63, 66, 36, 18, 45,160,148,130,227,184,111, -211,210,210,182,190,167,114, 53, 4,128,105,225,207, 60, 74,233, 46, 35,238,141, 2,224, 81,248, 51,154, 82,234, 89,222,121, 1, - 70,231,205,134, 67,135, 14,141,105,219,182, 45, 86,174, 92,137, 13, 27, 54,188, 74, 73, 73, 89, 12, 96, 27,165, 84,251, 79,243, - 8, 2,171, 20,248, 17, 82,103, 84,151,230,127,142, 30,208, 69,102,192, 75,252,107,151, 46, 93,134,111,219,182, 77, 18, 30, 30, -110,226,229,229, 5,145, 72, 84, 44,128, 74,214,147, 85,170, 84,225, 43,226, 99, 24,102,117,159, 62,125, 70,238,223,191, 95,121, -239,222, 61,101,173, 90,181,138,249,120,158,199,155,245,174,151,151, 87,185,124,150,150,150,119, 25,134,113, 43, 77,156,149,245, -157,227,184,216,180,180,180, 70, 6, 20,194,206, 0,102, 24,144,164,139, 41,165,167,203,187, 64,194, 48,174,241,241,241, 14,198, -230,149,187,187,187,206,136,151,198,145, 16, 76,227,121, 42, 2, 0,145,136, 76, 55, 49, 49,217,160, 82,169, 98,138,254, 47,204, -179, 36, 99,194,224,230,230,214,149,231,249, 33, 5,156,162, 93,177,177,177, 39,141,185,223,194,194,226,174, 76, 38,115, 19,139, -197,164,180,124,121,243, 55,199,113, 84,167,211,197,166,167,167, 27, 45,172, 47, 1,164, 11,208,154,101,152,137,182,118,118,173, -238,157, 57, 99,234,239,239, 47, 98, 24,102, 38,128, 95,222,229,189,209,222, 38,213, 57, 61, 6,168,244,242, 30,114,207,239,125, - 52, 81,223,135,155, 72, 52,199,181,183,201,190,127, 90,100, 17, 66,186,124,242,201, 39, 11,127,250,233, 39, 59,153, 76, 38,218, -187,119,111,243, 73,147, 38,125,186,114,229, 74,215,129, 3, 7,154,107,181, 90,126,250,244,233,173, 9, 33, 63, 80, 74,143, 24, -195,221,162, 62,105,230,235,229, 60,103,220,176,118,248,102,209,238,113, 1,117, 72,170,137,169,116, 67,191, 86,213,173,106, 87, -181,198, 15, 27,175,143, 7,176,197,136,176, 18,137, 68, 82,223,201,201,201, 75,163,209,112,133,157, 54, 90,162, 78, 0, 0,104, - 52, 26, 93, 70, 70,198,137,119, 77,155,111, 20,138,166, 77,173,204,206,206, 29,242,137, 73,118, 70,186,227,234, 63,143, 6,239, -135, 67,221,254,192,171, 15,169, 65, 16,137, 68, 11,226,226,226,156, 41,165,112,118,118, 94, 0, 96,235,123,162, 54, 45,170,135, - 9, 33,166, 70,222,235, 81,226, 94, 15, 3,206, 87,166,236, 43,196, 34,209, 88,153, 68,210,137,227,184, 58,133,101,232,145, 86, -175, 63,203,242,252, 58, 74,169,250, 3,214, 1,211,198,140, 25,211,113,214,172, 89, 94,211,166, 77,195,180,105,211,170,108,222, -188,121,227,194,133, 11,167, 19, 66,234, 82, 74,115,255, 97, 30, 65, 96,189, 33,174,220, 59,215,247,185,248,245, 39, 3,164,252, -254, 85, 4, 35,190, 43, 87, 92, 53,111,212,232,211,109,219,182, 1, 0,134,245,234,133, 78, 77,154,192,220,204, 20, 50, 89, 65, -112, 8, 37,144, 74,164,232, 61,105,178, 33, 47,198,146,190,125,251, 14,221,191,127,191, 25, 0,108,216,176, 1,125,251,246,133, -141,141, 13,148, 74, 37,164, 82, 41, 36, 18,201,107,159, 6, 8, 54,183,184,184, 56, 7,133, 66, 81, 44,248,120,158,127,237, 40, - 49, 14, 13,150,101,225,237,237,109,104,114,205,200,202,202,106,157,151,151, 87,238,216,109,213,170, 85, 1,224,180, 33,132, 11, -230,255, 8,158,205,131, 88, 12,176, 44,160,209,137,192,151,210,151,119,113,113,193,216,177, 99,241, 46, 27,124,247,232,209, 19, -148,210, 13,174,174,174,199,147,146,146,252, 9,193,232,202, 88,182, 40,165, 31, 63,127,254, 92,201,243, 60,124,125,125,135, 3, - 48, 74, 96,137,197, 98,183,224,224, 96, 7,185, 92, 94,166,165,178,132,248,133, 78,167, 67,131, 6, 13, 88, 99,158,225, 8,120, -164,139, 68,159,215,111,216,240,139, 57,189,122,153,220,189,123, 87, 46, 18,137,192,178, 44,150, 46, 93,202, 82, 74,173,252, 0, -139, 80, 32,187,156,242, 57, 11,192,136, 66,171,236, 22, 74,233,210,215,254,167,168,167,210,203,123, 68,230,246,110,210,180,202, -116,132, 62,126,212,164,154,217, 97,152,139, 53, 17, 0,254, 81,129,101,105,105,217,127,229,202,149,246, 91,182,108,201,126,250, -244,169,238,151, 95,126,177, 31, 61,122,116, 77,157, 78,135, 49, 99,198,164,248,250,250, 74, 87,174, 92,105,127,232,208,161,206, - 0,140, 18, 88, 98,130, 31, 7,247,234, 4,181, 94, 4,189,158,181,119,182, 55,255, 99,194, 39,129, 18, 74,181,216,126,228, 30, -244, 44,255,155,145,150,171,250,253,250,245,243,220,181,107,151,248,201,147, 39,226, 90,181,106,129,227,184,226,131,231,121,112, - 28, 7, 31, 31,159,119, 78,151, 79, 1, 31, 59, 71,155,179,205,187,117, 53,113, 86,200, 97,147,145,130, 81, 82,177,249, 86,165, -102, 7,128, 22, 31, 82,131, 64, 41,133, 88, 44, 70, 76, 76, 12, 28, 28, 28, 76,108,108,108, 18, 0,124,159,158,158,190,233,111, - 18,245,149,182,108,189,199, 48, 52,145,137,197, 7,182,255,182,218,169,105,139, 22,140,163,179, 3,194,159, 69, 67, 76,184, 14, -193,119,238, 5,126,250,229,148, 9,132,144,126,148,210,219, 31,154, 0,112,110,249, 85, 31,231,128,175, 55, 16,202,227,135,181, - 71,115, 22, 45, 89,165, 28,243,249, 39,204,164, 73,147,224,238,238,238,213,167, 79,159, 37, 0,190,172,144,167,217, 87,125,156, - 90,140,219, 0, 74, 49,247,231,163, 57, 11,151,172, 82,126, 89, 9, 30, 65, 96,189, 1,127, 66,172,234,122, 58, 94,154, 63,109, -180, 25, 61,249,187, 40, 63, 45, 25,101, 73, 24, 7, 7,135,141, 93,187,118, 29,182,117,235, 95,157,162,230,254,254,232,211, 46, - 0, 14,182,150, 80,154,202, 10,154, 33,158,224,225,211,151, 6, 9, 1,119,119,247, 49, 7, 14, 28, 48, 43, 41, 34,164, 82,105, -241, 81, 82, 92, 21, 29,111, 90, 58, 74,131, 66,161, 64, 80, 80, 16,196, 98, 49, 24,134,129, 88, 44, 46, 62, 74,254,102, 24, 6, -142,142, 70, 77, 77, 90,108,105,105, 89, 55, 39, 39,199, 34, 51, 51, 19, 30, 30, 30,217, 0,130, 75,252, 95, 55, 37, 37,197,194, - 24, 66,158,205,195,164, 81,181, 32,209,222,132, 86,210, 4, 42,113, 75, 92,191,243, 4,199, 79, 95, 66, 92,124, 34, 2,154,213, -199,199, 67,250,227,236,217,179,224, 56,206,216, 10, 55,137, 16,178,228,163,143,122, 78, 7, 8, 2, 3, 3,147, 38, 76,152, 64, - 67, 66, 66,250, 12, 24,208,191,253,179,103,207, 73,161,101,107, 26, 33,100,181,161,150, 44, 74,169, 20, 0, 46, 95,190, 12, 74, -169,172, 50,101, 79, 46,151,227,198,141, 27, 40, 26, 14, 22,137, 68, 16,137, 68, 96, 24, 6,199,158,219, 33, 79, 43, 66,126, 82, - 8,190,238,225,129,170, 85,171, 66, 36,170,120,202, 97, 32,160,184, 14,244, 33, 18,201, 36,103, 23, 23,175, 54,213,170, 41,131, -130,130, 24, 0,240,244,244,164, 9, 9, 9,153,135, 15, 31,206, 17, 3, 27, 60, 41,221, 86,158,184,242,240,240,104, 41, 18,137, - 22, 20,165, 57, 33,100,137,151,151,215,156,226,124,227,121, 12,233,104, 35,153, 48, 97,162,180,105, 96, 65,167,164,105,207, 93, -200,142, 92, 84,139,164,207,178,252,167, 43,131,172,172,172, 63,124,124,124,152,148,148,148,243, 0, 94,232,245,250,181,127,252, -241,135,195,168, 81,163,146,119,236,216, 49, 14,128,251,210,165, 75, 59,231,230,230,238, 49,134,183, 85, 61,210,173, 81,125,255, -102, 30,238,238,184,116,253, 54,164, 50,137,213,216, 17, 61, 96,102, 38,198,178, 45,127,242, 81,177,233,227,174, 60,164,219,140, - 16, 87,117,251,247,239,239,190,107,215, 46, 41, 0,132,132,132, 32, 57, 57, 25,182,182,182, 80, 40, 20,197,239,124,145, 21,235, - 93,197,149,165,187,237,173,195,135,143,152,216,216, 88, 97,237,228, 9,248, 56, 62, 22, 22,140, 8,122, 61,188, 62,164,198,128, - 16,226,211,175, 95, 63, 5,199,113,200,203,203,195,197,139, 23, 45, 77, 76, 76, 44,221,220,220,230, 2, 48, 88, 96,153,152,152, - 36,169,213,106,135,194,122, 52, 89,165, 82, 57, 2,200, 87, 40, 20, 38,133,151,168,140,180,108, 69,151,176, 80, 69, 27,112,222, -152, 56, 55,110,210,184,110,208,193,253, 59,205,178,114, 18, 97,101,157, 12, 17,178,176,105,211, 58,152,152, 88, 96,238,220, 89, -226,151, 29,218,185,118,238,214, 47,136, 16,210,225,131, 19, 89,148,108,234,208,115,152,141,137,210,188,176, 45,209, 99,235,230, - 9, 16,137, 68,152, 51,103, 14,106,215,174,253, 5, 33,228, 59, 74,105,122,249, 52,216, 84,167,245, 64, 27,153,162,160, 41,230, - 57, 61,126,217,253, 77, 1,207,204,209, 24,220,179,234, 23, 15,119,144, 83,181,171, 33,167,160,254,135, 74, 34, 66, 52,154,208, -228, 18,121,209,134, 82,122,169,172,223,255, 74,129, 69, 8,161,148,210,146,195, 44,175,253, 46, 15, 85, 8,145,123, 91,155,157, - 94,255,253, 4, 23,230,198,159, 98, 85,244,115,196,171, 57, 88,253,213,136,190,182,212, 82,169, 84, 14,219,186,117,235,107,250, -203,195,209, 1, 82,169, 4, 18, 41,129, 85,171, 30, 0,128,204, 43,199, 65, 8, 45,171, 97,126,141, 51, 47, 47, 79,253,224,193, - 3,179, 45, 91,182,192,193,193, 1, 94, 94, 94, 80, 42,149,197, 21,109,201,163, 72,104,189, 41,176,222,228, 44,250, 95, 44, 22, - 67, 36, 18,225,236,217,179, 96, 89, 22,253,251,247,127, 75, 92,137,197,226, 82, 5, 91, 89,203, 76, 41,165,167, 9, 33,193,148, -210,214,133, 13,111, 48,165,180, 77,137,103,119,182,183,183,159, 1, 96,177,161,156, 12, 67,193,168,175,131,119, 91, 5,113,204, - 4,104, 37,245,112,225,234, 61,108,221,184, 18, 0,224, 85,179, 49, 6,244,233, 81,108,125, 51,132,243,181,222,137,179,243,182, -228,228,148, 6,109,219,182, 69, 86, 86,150,118,238,220,185,168, 91,183, 46,124,124,124, 13,202,163, 50, 42,182,212,135, 15, 31, - 58,171,213,106, 16, 66, 82, 13, 16,100, 65,165,112,224,143, 63,254,128, 90,253,182,245,222,186,205, 66,124,211,215, 19, 35,191, -222,134, 37, 79,247, 98,253,250,245,229,198, 93, 9,212, 85, 91,214, 88, 45, 99,216,186, 63,125, 59, 78, 62,124,248,112,102,228, -200,145,136,142,142,198,168, 81,163,212,103,207,158,213, 38, 38, 36, 28,145,241,252, 90,221,235,130,184, 76, 78,185, 92,190,253, -244,233,211,216,187,119, 47, 0, 32, 60, 60, 28,222,222,222,175, 53, 34,124,250, 62,228, 68,173,197,173, 99, 97,104,218,115, 23, -110, 29, 27, 2, 46,243, 79, 73, 35,111,100, 25,147,158,149,176, 84, 4,149,114,238, 34,128,139, 37,210,247,187, 29, 59,118, 12, - 0,112,144, 82,122, 29,192,117, 0,187,141,225, 44, 32,194,200,129,125,123, 67, 44, 53, 71,216,243, 88,180,105,222, 0,142, 14, - 14, 8,126, 18,129,168,184,244, 36, 66, 48,162, 75, 75,249, 98,149, 74,251,221,229, 7,244,215,138, 56,221,221,221,171,238,219, -183, 79, 82,194,226, 12,134, 97, 94,235, 80, 21,157,171,108,249, 44, 18, 87,230,110,102,183,126, 92,215,210,244,214,163, 29,240, -246,236, 6,139,206,221,176, 98,247, 46,196,166,102,169,217,124,182,253, 63,157, 71,127, 23, 39, 33,196,167,111,223,190,215,119, -238,220,105, 21, 19, 19,131,203,151, 47,195,203,203, 11,249,249,249, 21,118,116,223,228, 84,171,213, 14, 37, 68, 83,209, 20,134, -221, 26,141,166,168,162,164,198,132,179,172,185, 85,198,206,185, 42,165,158,151, 41,164,210,125,135, 15,238, 54, 11, 13,187,140, -250,245,154,193,204,210, 15, 60,151,136,180,244, 92,100, 60,143,199,252,249, 75, 48,247,251,111,113,244,208,126, 51,223, 90,245, - 14, 16, 66,106,148, 28, 46,252,183,231, 59, 8,253, 34,232,216,142, 13,132,242, 80, 37,133,201, 37,121, 47,148,195,134,244, 99, - 6, 13, 26,132,163, 71,143,226,241,227,199, 27,202, 18, 87, 37, 57, 9,197, 23, 33,151,247,110, 0,165, 80, 37,135,201,165,170, - 23,202, 79,134, 14, 96, 62, 30,220, 9, 55,207,175, 70,167,250, 47, 66, 92, 28,208, 39,163,112,144, 80,204, 32, 77,174,192, 53, -147,219,228,102, 9,145,117,177,176, 15, 85, 36,172, 46,162,192,149,212,191,223,130,101,140,176, 42,188,158,105, 40, 19, 31,252, -109,238, 87,254,138, 87, 33, 82, 77,200, 13,196,107,120,186, 37,154,205, 88, 85,198, 61,249,249,249,121, 17, 17, 17, 38, 35,250, -244, 65, 11,127,127, 56,219,218,162,134,155, 27, 76,228, 50,200,164,146, 18,245,177, 81, 61, 16,234,235,235,139,158, 61,123, 66, - 34,145, 64,169, 84,194,204,204, 12, 50,153,172, 84,235,149, 68, 34, 49,216, 84,206, 48, 12, 66, 66, 66, 16, 21, 21, 5, 43, 43, - 43, 92,187,118, 13,237,219,183,127,203,138, 85, 82,148, 25, 99,138,127,179,193, 47, 18, 96, 48,112,104,176, 8, 28, 71,144, 75, -235, 65,241,106, 28,242, 73, 3,104, 52, 44, 52, 26, 13,126,189,170,195,237,136, 60,232,116, 90,104, 52,154, 50,159, 89,158,181, -192,201,201,169, 79,205,154, 53,135, 13, 25, 50, 68, 43,145, 72,144,159,159,143,252,252,124, 60,121,242, 68,219,169, 83,167,164, -143, 62,234,233,120,252,248,113, 74, 41,150, 24, 51, 15,139, 82,154,225,226,226,226,172, 80, 40, 64, 41,205,168,100,239,179, 88, -188,188,137, 17, 43, 66, 33,102, 10,242,100,195,134, 13,224, 56, 14,229,149,111, 53, 33,231,190, 95,184,220,242,167, 85,191,193, -210,198, 17,151, 46, 93,226, 78,157, 58,149, 67,128,240,103,143, 31,175,248, 8, 56,177, 15,208, 25, 19,190,140,140, 12, 19, 47, - 47, 47,184,185,185,129,231,121,232,245,122, 4, 7, 7, 35, 49, 49, 17,105,105,105, 80,169, 84,176, 49,205, 68,117, 91, 55,176, - 57, 23,145, 16,242, 3,156,205,194,176,237,180, 86,223,208, 7, 15,255,223, 59,183,148,158, 0,112,226,221,137,224,234,224,228, - 14, 17,213, 35, 62, 57, 13,189,187,119, 2, 35, 53,195,203,152, 84,212,243,171,230, 60,244,163,150,206, 12, 97, 49,109,241,174, -177, 0,126,173,136, 46, 63, 63,159,123,242,228,137,228,225,195,135, 96, 24, 6, 22, 22, 22,197,211, 1, 74,138, 43, 67,166, 3, - 84, 36,174, 22,110,104,111, 42,146,228, 33,155, 11,194, 47,191,223,132,183, 71,123,108, 13,123,166, 22,103,230,118, 88,166, 86, -135,255,171,135,135,156,157, 71,243, 60, 63,151, 82,154,217,183,111, 95,199, 93,187,118, 89,199,197,197,225,222,189,123,152, 51, -103, 78, 10,199,113, 44,165,148, 80, 74,127,120, 15,101,137, 47,105,217, 50, 49, 49, 41,178,108,229,149,176, 92,229, 85,162, 14, -144, 40, 21,248,218,206,130,244, 18,139, 44,188,216,236,220,151,169, 90,122, 36,159,229,127,166,148,234,203,187, 87, 36, 18,125, -182,127,207, 6, 23, 59,123, 30,129,246,237,144,144,164,195,194,201,159, 32, 45, 45, 7,191,110, 94, 4, 64, 6, 29,203,160,117, - 96, 63, 56, 56,184,226,139,207,191,112,218,176,241,151,175, 0, 44,251, 80, 12, 88, 9,215,214, 29, 34,132, 4,217,219,219, 63, -254,234,139, 47,236,189,188,134, 67,161, 80, 96,247,238,221,216,181,118, 45,183, 10, 24,176,145,144, 11,163, 41, 61, 84, 46,207, -205,191,120, 38,140, 25, 99, 95,171,214, 24,200,229,114,156, 63,245, 59,212,137,127,228,116,111, 1, 93,190, 26,221,171,244,164, - 54,175,142,145,116,137, 4,207, 1, 64,162, 64,130, 4, 72,126,131,238, 95, 47,172,222, 18, 88,198,162,154, 84,121,125,243,228, -129, 13,236,121,149, 88,123,245, 24,226, 52, 60,187,244,185, 78,119, 55,147, 14, 43,167, 64,243, 30, 30, 30,104,215,168, 17,250, -180,106, 5,177, 88, 12,133, 76, 10,115,133, 9, 40, 87, 96,185, 42, 26, 34, 52, 84,235, 21, 9, 27, 91, 91, 91, 72,165,210, 98, - 97,101,168,245,170, 44, 78,158,231, 33, 22,139, 17, 28, 28,140,128,128, 0,184,187,187, 99,239,222,189,232,220,185,243, 91, 67, -134,198,138,171, 34,129, 85,114,184,174,196,228,247, 10, 39,183,191, 37, 14,180, 4,169,218,122, 32,196, 31, 44, 11,112, 20,208, -168,213,160, 20,160, 20,208,235,180, 80,171,213,197,207, 52,100,232,213,205,205,205,197,203,203,107,242,140, 25,211,106,212,173, - 91, 31,169,169,169,224,121, 30,102,102,102,200,207,207,135,133,133, 5, 90,180,104,113,127,193,130, 5,233,148, 98,134,177,147, -220,223,195,112, 6, 0,224,204,153, 51,175, 13, 15, 22, 29,121, 9,177, 24, 57,126, 7,100, 98, 32, 56, 56, 24, 53,107,214,172, - 72, 92,138,218,182,110,137,235,247,195,217, 81, 83, 87,105, 36,105,247, 22, 59,241,252,214, 88, 32,233, 29, 26, 21,164,166,166, - 34, 41, 41, 9,189,122,247,198,174,157, 59,241,234,213, 43,248,249,249,161,109,219,182,112,112,112,192,171, 87,175,112,251,138, - 6,154,140,116,164,107,239, 65,105,222, 20,135, 47, 69,104,102,175,215, 70,252,127, 85, 10,132,144,198, 0, 70, 89, 90, 90, 86, -201,207,207, 79,212,235,245,123, 11, 69,127,103,137, 68, 50, 80,169, 84, 58,101,101,101,189, 2,240, 43,165,244, 78,133, 67, 70, - 10,133,173, 92, 97, 1,158,213, 64, 44, 22,195,221,221, 11,148,211, 34, 35, 91,133, 17,131,122,226,126,240, 19,156,186,112,147, -213,235,249, 53,134,134,209,199,199, 7,105,105,105, 96, 24, 6, 74,165, 18,166,166,166,240,245,245, 69, 76, 76, 76,177,184,170, -236, 16,225,167,128,143,133,135,217,205, 5,235, 10,196, 85, 98,124, 2,226, 94, 81,200,101, 50,108,220,180, 33, 47, 63, 49,163, -233,111, 64,248,191,189,242,231,121,254,135,184,184, 56, 7,177, 88,236,196,178, 44, 98, 98, 98,112,247,238, 93,140, 27, 55, 46, - 41, 45, 45, 45,144, 82, 90,169, 56, 42, 20,138,228, 34,203,149, 66,161, 72, 46,207,178,245, 46,115,174, 8, 33,213,188,220,204, -207,110, 94, 57,201,163,113,211, 22, 34,165,216, 34, 35,247,121, 98,192,213,203,151, 90,140, 91,249,235, 87,132,144, 78,148,210, -200,178,238,151, 75, 36, 93,155,181,108, 41, 6, 77,130, 88, 22,128, 37, 63, 13, 66, 74,106, 54, 50,210,115, 32,149,154, 66,171, -103,192,241, 4, 45, 2, 90,225,247,109,123, 80,251,243, 81,140, 76, 34,233,248, 33, 9,172, 66, 44,250,249,231,159, 61,124,125, -125,177,117,235, 86, 92,216,190, 29, 31,103,101,225,146, 72,196,232, 37, 18,187, 19,122,253, 38, 0,135, 12,229,169, 93,187, 54, -126,251,237, 55,252,241,199, 31,209,195,218, 39, 31,152, 52, 12, 14, 58, 29,186,220,123, 10,155, 42, 61,129,123, 79, 97,211,208, - 23, 53, 88, 49,158, 19, 2,147, 55,242,180, 77,201,207, 15, 65, 96, 5,146,130,241,184,226,207,138,110, 50,117,244, 29,178,115, -120,199, 70,126, 85,221, 68,250,189,171, 17,151,207,170,231, 60,213,241, 79,115,104,191,208,114,196,129, 72, 36,162, 12,195,192, -220,196, 4,246, 86, 86, 5, 61, 77,145, 8,224, 1, 94, 15, 16,174,224,229,163, 60,129, 49,139,159,121,158,135, 76, 38, 43,117, - 66,187,177,115,175, 74,114,230,228,228,224,229,203,151,248,226,139, 47,160, 84, 42, 1, 0,137,137,137,240,244,244,132, 88, 44, - 70, 92, 92, 28,206,159, 63,143,170, 85,171, 66, 46,151, 27,165,178, 74, 88,147,234, 18, 66, 46, 1,168,155,144,144, 96,225,236, -236, 12,163, 45, 88, 60, 69,190,134, 64,171,229,240,236,217, 51,196,199,199,227,229,139,231,104,156,151, 13, 10, 6,148, 82,163, - 44, 88,206,206,206,190,222,222,222, 11, 22, 45, 90, 36,113,119,119, 7,207,243,176,177,177, 66, 94,158, 10,105,105,105,240,243, -243,131,187,187, 59,150, 44, 89, 2, 20, 12, 31, 37,253,127, 21,224,162,213,162, 37, 63, 69, 34, 17,198,127,228,129,244,116, 51, - 48,204, 95,171, 73, 43,152,131, 37, 5,128,192, 78,125,197,103, 79,157, 48,101,129,121,137, 12, 51, 79, 92,113, 62,234, 57,158, - 87,150,245,127, 76, 76, 12, 36, 18, 9,246,239,219,135,244,164, 36,212,171, 87, 15, 77,154, 52,193,243,231,207,113,255,254,125, -216,218,218,194,222,173, 57, 46,189,208, 33, 52, 94, 5, 75, 75, 75, 68,196,138,254,223,150,254, 19, 66,122,116,232,208, 97,237, -138, 21, 43,156,156,156,156, 36, 41, 41, 41,236,186,117,235, 58,175, 91,183, 46,244,171,175,190,242,251,234,171,175,172,237,237, -237,197,137,137,137,250,201,147, 39,119, 38,132,204,160,148,238, 46,183,190, 48, 53,183, 97,164,166, 32, 68, 12, 43, 75,107,136, -101,166,224, 89, 49, 56, 30,176,176,180,199,245,251,251,113,237, 81,206,232,228, 52,236, 51,224,189,161,182,182,182,148, 97, 24, -216,218,218,190, 54, 52, 8, 0,142,142,142,200,206,206, 6,195, 48,144, 72, 36, 70,139,172, 34,113,181,112, 93,123, 51, 82, 66, - 92,229,166,218,226,194,233, 39,153,249,137, 25, 1, 31,130,184, 42,170,227, 40,165,120,241,226, 5,242,243,243,113,229,202, 21, -252,240,195, 15, 41,111,138, 43, 71, 71,199,207, 45, 44, 44,190,207,205,205, 93,146,144,144,176,186, 34,222, 66,203,212,251, 44, -147, 81,120,195, 29, 3, 33, 68,226,238,172, 56,125,255,202, 14, 79, 75,250,144, 32,234, 11,224, 89,246, 99,243, 91, 14,173,187, - 53,238, 46,106,176,254,199, 42, 77, 70,207, 60, 77, 8,241, 45,203,146,197,115, 92, 3, 83, 51,115, 0,201,184,119,247, 98,177, -184, 74, 75,207,130, 70,199, 64,163, 37, 80,235, 68,104,215,161, 11,214,254,242, 7,226,146,211, 81,180,194,240, 67, 1, 33,196, -198,223,223,127,204,128, 1, 3, 48,111,222, 60, 4,173, 88,161,253,146,144,108, 49, 64,255,228, 56,240,148, 18,145, 1,147,211, -223,228, 89,182,108,217, 33, 0,131, 23,143, 67,243,140, 92,140,112,233, 73,109,170,244, 44,184,182,255,116, 10, 0, 54, 41, 65, -111, 77,213, 33, 69, 35,105,198,142,168,253,207, 10, 44, 74,233, 37, 66, 8, 74,126,150,119,131,149,147,111,155,239,166, 79, 88, -213,178, 87, 7, 81,226,151, 1,200,204,214,104,167, 63,209,139, 98,243,105,159, 80, 3, 45, 47, 83,215,173,195,253,240,130,247, -215,205,193, 1,211,134, 14, 5,101,129,107,143, 67,177, 39, 40, 8,131, 58,116,128,105,225, 10, 62, 67,173, 77,165, 89,173, 74, - 90,175,140,181, 50,101,102,102, 98,223,190,125,104,210,164, 9,148, 74, 37,196, 98, 49,234,214,173,139, 39, 79,158,160, 90,181, -106, 32,132,224,240,225,195,232,211,167, 15, 34, 35, 35,209,188,121,115,179,202, 8,172,208,208, 80, 11, 74,105,235, 34,107, 71, -101,161,209,104, 16, 22, 22,134,158, 61,123,194,218,218, 26,174,174,187, 16,116,122, 7,148,254, 31,131, 16, 24, 37,176, 8, 33, -253,187,119,239, 46, 17,137, 68, 80,169,242, 33,151, 43, 96,102,102, 1,115,115, 75,248,248,248, 32, 62, 62, 30,157, 59,119,214, - 61,123,246,236,143,132,132,132, 63,141, 13,171,163,163,163, 50, 39, 39,103,130,151,151,151,162,176,151,219,206,206,206,110, 97, -106,106,106,174,145,149, 67,177,176, 34,132,128, 97,152, 98,129, 37, 22,137,224,236,228, 80,252,187,112,254, 25, 41,135, 43, 59, - 46, 77, 35, 7, 0, 15, 15, 15,172,221,120, 84,212,189,123,119, 76,152, 48, 1,122,189, 30,235,215,175, 7, 0, 12, 25, 50, 4, - 58,157, 14, 7, 14, 28, 40,120,129,196,226,114,199,156,239,222,189,139,123,247,238, 65,175,215, 35, 43, 43, 11, 39, 79,158,196, -165,203,151,177,251,240, 57,188,122,241, 28,117,125, 61, 49,106,212,167,144, 72, 36,216,182,109, 27, 2, 2, 2,254, 95, 43, 4, -169, 84,250,201,230,205,155, 93,183,110,221,154,121,228,200,145,172,166, 77,155,154,174, 90,181,202, 97,237,218,181,109,181, 90, - 45, 38, 78,156,152,124,235,214,173,188, 94,189,122, 89,110,218,180,201,181, 70,141, 26, 31,161,148,121, 89,133,195, 62,131, 0, - 12, 15,108, 98, 41,206,204, 81,129,103,181,120,241,234, 37,178,114,181,224, 57, 29,162, 99,227,145,171,230,144,150,158,131,186, - 13, 58,253,124,241,226,197,111, 9, 33,179, 40,165,199, 43,236, 84,112, 28,110,222,188,137,107,215,174,225,242,229,203,136,138, -138, 42,254,207,194,194, 2,103,207,158, 69,219,182,109,223,139,184,202, 73, 41, 16, 87,153,209,233, 31,140,184, 42,172,131,230, - 58, 59, 59,207,117,118,118, 86,156, 57,115,198,178, 74,149, 42, 96, 89, 86,251,166,229, 42, 48, 48,240,187,205,155, 55, 59, 87, -171, 86,109, 28,128,213,149,125, 94, 89,150, 45, 3,240,150, 59, 6,145, 8,159, 47,217, 48,198,206, 92, 22, 29,143,103,203, 11, -125, 1, 50, 64,126, 54,112,113, 39,196, 45,103,191, 28,215,123,186,245,140,173,243, 62, 7,176,190, 44,226,136,200, 24,108,216, -176, 22,147, 38,142,192,239,191, 46, 1,207,139,161,209, 51,240,240,106, 6,141,142, 7, 17,137, 81,175, 65, 35, 92,184,120, 5, - 18, 17,176,111,235,134, 15,202,116, 69, 41, 77, 39,132,172, 63,124,248,240,215, 19, 38, 76, 0,207,243,178,239, 55,108, 80,165, -164,164, 44,130, 17,254,171, 74,225,233,179, 97,195,134,240, 25,107, 83, 14, 77, 26, 6,230,213, 49,146,126,239, 41,108,250, 79, -167,216,255, 19, 65, 67, 95,164, 43, 75,111,226, 47,191,241,249,175,183, 96, 21,207, 77, 41, 79, 49, 54,244,169,246,163,165,141, -245,167, 45, 26,215,178,157, 60,238,115, 73,100,162, 26,167, 27, 77,206, 58,186,114,182, 89, 52,111, 58, 49,138,102, 27,101,117, -217,115,254,124,241,247,165,187,118,149,250, 95, 66,255,254, 6,247,196,202,178, 90, 25,107,185, 2, 0,165, 82,105,213,177, 99, - 71,180,111,223, 30,253,250,245, 43,158,115, 85,191,126,125,236,222,189, 27,125,251,246,197,131, 7, 15,224,236,236,140,154, 53, -107,162,102,205,154, 56,113,226,132,177, 5, 27, 28,199,193,223,223,191,104, 21, 97,221,216,216, 88,139,202,102,164, 70,163, 65, - 90, 90, 26,108,108,108, 32,147,201,208,180,105, 19,124, 61,190, 41,236,156,127,131,127, 45, 95,228,229,229, 21, 47, 93,175, 8, - 18,137,196,167, 70,141, 26, 72, 73, 73, 65, 74, 74, 10,236,237,237,225,226,226, 2, 71, 71, 71,172, 92,185,146,174, 90,181,234, - 18,199,113,127, 36, 38, 38, 26,173, 8,221,220,220, 26,219,217,217,125,157,156,156,172, 40, 81,105, 42,234,213,171,183,209,197, -197,101,125,124,124,252, 53, 99, 4,150, 78,167, 3, 33, 4,127,190,112, 65,158,150, 32, 59,246, 30, 38,124,228,249,154,224,146, - 72, 36,134, 76,212,205, 27, 60,120,176,131,187,187, 27, 98, 34, 30, 99,255,126,138, 21, 43, 86,224,242,229,130,247, 60,188,176, - 67, 80,244,187,109,219,182,240,242,242, 50,202,185, 37,207,243, 8, 14, 14,198,174, 35,151,224,236, 89, 11,209,207,194,112,255, -196, 49, 84,177,183, 65,237, 6,141,160,215,235,223,201,133,198,251,128, 78,167,219,228,237,237, 13,173, 86,123, 14,192,230,224, -224,224, 62, 9, 9, 9, 43,143, 30, 61,234, 50, 96,192,128,248, 99,199,142, 77, 2,112, 40, 56, 56,120,228,130, 5, 11,218,235, - 11,134, 15,222, 2,195, 48,191, 79,158, 60, 57,112,192,128, 1, 68, 42,210,107,207,156,222, 38,102, 89, 61,153, 58,107, 11,119, -241,234, 37, 17,203,234, 73,191,193,147,249, 19,231, 31,137, 70,143, 95,202,213,111,214, 29, 33, 33, 33, 78, 61,122,244,152, 15, -160, 92,129,197, 48, 12, 56,142,131, 68, 34, 41, 22,208,165, 93, 99,140,245,106, 20, 80,205,194,211,236,230,194,117, 29,204,136, - 56,247,131, 23, 87, 0,144,154,154,186, 17,192, 70, 27, 27,155, 36, 83, 83, 83,228,228,228,188, 85,254, 8, 33, 10, 95, 95, 95, -133, 76, 38, 67,167, 78,157,108,156,157,157,195, 69, 34,209,234,184,184, 56,163,149, 70,105,150,173,202,186,105,176,182, 71,143, -166,173, 26,152, 63,181,156,103,174, 16,171, 31, 84, 9, 87, 88, 16, 0, 89, 26,199, 23,215,163, 6,101,147,100,121,253, 70,109, - 27,194, 66,108,218,163, 44,129, 37, 98,152,251, 89, 25,153, 93,179,115,180,184,122, 45, 4,131, 7,213,128, 70, 71,192,243, 34, -228,230,105, 0, 70, 2, 17,128, 33, 67, 63, 1, 37, 98,164, 39,197,131, 97,152, 71,248,240, 48,115,204,152, 49, 93,103,205,154, - 85,181,208,127,149,103,161,255,170,105,132,144, 58,148,210,252, 74,242, 84, 57,182,123,246,148, 35, 87,126,201,234,222, 66,245, -172, 97,193,154, 40,155,134,190, 72,151, 72,240, 92,204, 32,141,210,215, 86,148,162,104,193, 87,201,133, 95,255,122,129, 85, 17, -188,171,185,117,105,211,184,209,248,111,103,125,107,254,236,246,101,124, 59,255,103,190, 70,163,206, 89,203, 15,157,202,201,178, -168,210, 46, 63, 62,236,129,161,186, 2, 0, 58,183,237,139,186,126, 77,222,250, 51,160,109,129, 15,200,171, 23,238, 34, 41, 37, -206,224, 70,182, 80, 20,148, 58,231,202,144,165,249,165, 84, 4,153, 33, 33, 33, 14,177,177,177,175, 77,104,247,242,242, 2, 33, - 4,183,110,221,194,205,155, 55, 49,120,240, 96,136,197, 98, 72, 36, 18, 92,186,116, 41,167, 50, 22, 44, 20,174, 34, 36,132,116, -118,115,115, 43,117,245,160, 33, 92, 42,149, 10, 89, 89, 89, 56,125,250, 52,106,212,168,129,133, 11, 23,194,197,217, 17,223,126, - 59, 5, 60,207, 35, 59, 59,187,216, 63,144, 1,214, 1, 90,100, 29,226,121, 30, 41, 41, 41,168, 90,181, 42,214,173, 91,135,149, - 43, 87,254, 28, 31, 31,111,244, 42, 23,107,107,107, 11,133, 66, 49,186, 71,143, 30, 1,189,123,247, 70,231,206,157, 95,251,127, -199,142, 29,102,135, 14, 29,154,238,238,238,222,134,231,249, 13,113,113,113,233,134,240,254,246, 91,129,251, 36,101,179,185,152, - 49,160, 10,134,143,221,134,229,203, 15, 66, 46,151,191,214,216,206,155, 55,175, 92,241,194, 83,234, 45, 77,189, 30, 63,101,250, - 50,135, 69,139,130, 16, 20,148, 12,145, 72, 4,103,103,103,136, 68, 34,188,124,249, 18, 34,145, 8,158,158,158, 16,137, 68,136, -139,139, 43,154,243,151, 1,181, 97, 62, 8, 69, 34, 17,212,106, 53, 98,162, 95, 33, 54, 34, 28,102,217,137,176,183, 80, 34,227, -113, 48,234,142,250, 28,122,189,254,127,161, 71,123, 22,192,217, 18,167,246, 19, 66,244,132,144,161, 0,246, 80, 74, 15, 22,158, -223,130,114, 28,131, 54,107,214,172,254,172, 89,179, 36, 69,110, 51, 92, 60, 22,176, 58,157,142, 7, 0,223,186,173, 95, 83,249, -207,159, 63,199,242,229,203,145,151,151, 7,169, 17, 51,211, 59,116,232, 80, 60, 39, 82, 42,149,194,206,206, 14, 58,157, 14, 44, -203, 26, 61, 52,104,235,233,246,243,173,123,151,184,135, 17,191,168, 30, 61, 61,105, 18,251,146, 71,110,170,221, 7, 43,174,222, -180,100,185,185,185,205,229,121,158, 82, 74,103,151,168, 91,229, 30, 30, 30, 87,206,156, 57, 99,203,178, 44,214,172, 89, 99,149, -152,152,104,213,186,117,235, 25, 0,202, 20, 88,101,184,105, 40, 11,149,114,211,192,113,240,177, 48,183, 66, 6, 98,161,177,211, -215,207,180,101,211,207, 38,124,254,192, 37,170,129,159, 41,167,175, 42,202,214,194, 85,105, 5,158,210, 50, 29,161,105,244,250, -147, 15,238,221,239,228,225, 94,131, 57,122,252, 50,122,245, 25, 0,141, 70, 4,181,158,128, 48, 18, 16, 70,138, 58,117, 27,160, -102,237,186,160, 0,238,222,190,206,106,245,250,179, 31, 82,222,187, 4,140, 31,236, 18,240,245,106, 80,158,150,226, 7,171,106, -159, 62,125, 22, 1, 24, 95,225,168, 68,243,241,131,157, 90, 20,240,148,244,131, 53,249,235, 49,120,124, 91, 98,121,249,222, 79, -210,206,205,240,103, 74, 16,129, 82,241,215, 42, 66,137,168,114,238, 53, 62, 24,129,229,225,225, 97,229, 96,166,252,237,171, 81, -159,154, 71, 61,188,129,216,224, 27,184,118, 53, 60, 99,231,129, 35,113,217, 89, 41,163,140, 16, 87,197,195,121,118,206, 85, 80, -181, 20,129,101, 98,110, 15, 0,168,234,215, 4,226,104, 75,163, 34, 82,154,245,170, 50,226,170,100,163, 92,154, 15,172,209,163, - 71, 99,243,230,205,104,217,178, 37,188,189,189,139,123,202,198, 90,201,222,180, 38, 85,102,245, 96, 73,228,228,228,192,211,211, - 19,155, 54,109,194,163, 71,143, 96,110,110,142,193,131, 7, 35, 39, 39,167, 88, 88, 25, 58,201,157,227,184, 87,103,206,156,169, - 51,112,224, 64, 42, 22,139, 73,102,102, 38, 44, 45, 45,177,110,221,186,252,132,132,132, 11,198,134,205,213,213,181,187,141,141, -205,103,131, 6, 13, 98,124,125,125,145,148,148, 4, 11, 11,115, 45, 33, 68, 6, 0,150,150,150, 90, 83, 83, 83,124,241,197, 23, -168, 83,167, 78,147,233,211,167, 55,118,114,114,218,158,152,152,120,160,188,178, 68, 8,193,238,221, 5,163, 83,163, 86,135, 65, -171, 45, 16, 40,235,215,175, 71,225, 92,182,191,134, 2, 34, 34, 0, 3, 86,166,152,153,153,193,219,219,187,212,188,111,213,170, - 21,238,222,189, 91, 48, 4, 41, 22,195,193,193, 1,215,174, 93, 51,104, 89,102,145, 3,199,144,144, 16,212,242,178,195,163,160, - 51,176, 83, 74, 80,207,197, 9,110,173,218, 32, 60, 60,252,255,213,122, 69, 8,233, 5,160, 7,128, 19,148,210, 67,132,144,254, - 0, 58, 23,253,134,145,142, 69, 89,150,165, 34,145,136,196,196,196,232,148, 74, 37,177,177,177, 17,203,229,114,104, 52,154, 98, -161,245,252,249,115, 28, 63,126, 28,177,177,177,176,177,177, 17, 89, 90, 90, 66,167,211, 25,180,162,148,227,184,183,220, 51, 20, - 62,215,104,113, 53, 2,240,223,188, 96,113, 21,185,136,177,172,101,215, 5,145,143,159,171,114, 83, 51, 77,254, 11,226, 10, 0, - 50, 50, 50, 54, 2,216, 88,244,219,222,222,126, 36,195, 48,223, 90, 90, 90, 90, 94,186,116,201,202,222,222,158,108,219,182, 77, - 63,123,246,236, 76,134, 97, 50, 8, 33, 43,203,227, 43,195, 77,195,187, 8, 64,207,183,207, 33, 52, 53, 43,194, 83, 98,237,194, - 63, 84,211,235, 19, 99,102,212,204,144,212,176, 39,181,253,209, 39,249,201,213,145,108, 68,139,164,132, 68, 17, 5, 31, 90, 78, - 29,188,101,198,172,121, 83,195,195,238,123, 40, 44, 20, 24, 61,102, 22,254, 60,117, 1, 68, 36,193,149,235,183,160,213,113, 72, - 77,207,194,160, 33,195,224,230,108,135,208,155,167, 83, 88,158, 95,247, 97,137,107,126,109,167, 94, 35,173,229, 38,202,194, 52, -225,240,199,175, 83, 32, 18,173,198,156, 57,115,224,239,239, 63,182,112,231,134,244,242,235, 15,126,109,157, 54, 67,172,165,242, - 2, 30,202,115,216,180,111, 70,161, 31,172, 73, 88,183,241, 64,157,218, 94, 47,190, 47,207, 15,214,127, 74, 96, 85,169, 82, 69, -110, 42,193, 23, 54, 38,210,105, 95, 13,237,109,159, 28,241, 24,177, 79,238, 23, 40,127,141, 74,159, 16,126,169,158, 1,149,118, -135, 55,252,111,208,242,134,168,212,234,138,123,240,111,114, 22, 53,180,111, 90,175,140, 17, 87,165,113,150, 20, 89, 37,253, 94, -185,187,187, 99,209,162, 69, 21,250,193, 42, 37,238, 69,231, 59, 3,168, 91, 36,178, 80, 48,201,189,179, 33, 43, 7,203,226,180, -183,183, 71, 90, 90, 26, 0, 32, 48, 48, 16,129,129,127,173, 83,208,233,116,197, 86, 43,115,115,243,183, 44, 88,165,113,178, 44, -187,248,208,161, 67, 3,110,220,184,209, 99,202,148, 41,226,118,237,218, 21,216,239,243,242,212,212,128,189,215, 74,225, 28,122, -234,212, 41,134,231,121,108,218,180, 9,247,238,221,163,166,166,102, 19,205,204,204,183, 89, 88, 88,112,153,153,153, 67, 63,255, -252,243,222,223,127,255, 61,105,213,170, 21,110,220,184, 65,170, 86,173,218, 23,192,129,138,226,126,235,214, 45,136, 68, 34,176, -233,209, 24, 59, 99, 15, 76, 77,196, 8, 11, 11, 67,122,122,250, 91,206, 71, 13, 73, 79,158,231,139, 27,238,162,163, 85,171, 86, -197,195,141, 77,155, 54, 5,195, 48,120,240,224, 65,169,195,173,111,112, 82, 91, 91,219,226,242, 33,149, 74,113,225,194, 5,252, -248,227,143,240,176,177, 66,198,147, 71,112, 10,108,135,142,159,126,142,193,131, 7,131, 97, 24,216,216,216, 20, 91,122, 43,138, -251, 59, 10,170, 98, 78, 66, 72,207, 90,181,106,205, 12, 13, 13,117,171, 83,167,142, 31, 33, 36,208,223,223,191,241,163, 71,143, -138,126, 75, 40,165,123,141,225,188,115,231,206,254,181,107,215,142, 25, 49, 98,132,148,231,121, 46, 42, 42, 74, 15,128, 56, 57, - 57, 49,119,238,220,225,143, 30, 61, 10,149, 74, 5, 55, 55, 55,145,171,171, 43, 57,123,246, 44,255,228,201,147, 91,148,210, 89, -134,198,189,104,165, 96,209,100,118,149, 74,101,144,184,122,147,179, 74, 77,159,133,237, 91,251,186,167,198, 63, 64, 66, 92, 4, -212,233,214,250, 11,167,175, 25, 37,174,254,238, 60,250,135, 57,231, 61,123,246,204, 85,163,209, 64, 38,147, 97,253,250,245,186, - 69,139, 22,133,166,166,166, 6, 80, 74, 85,149, 13,167, 49, 14, 72, 43,226,204, 74,195,159,135,143,220,105,108,214,103, 11,198, -198,167, 20, 79, 92,164,132,216, 28,116,244, 11, 80, 54,169, 19, 39, 58, 49, 87,148,195,229,255, 89, 22, 39,165, 84, 75, 8, 25, -208,167,239,144,115,187,119,239, 50,155, 61,119, 46,174,221,122,132,180,204, 92,240,148, 1, 79, 8,190,253,118, 54,156,236,108, -144, 29,255, 44, 95,163,211,245,121,115,203,156,127,123,190, 19, 34, 26,119,246,232,182,213, 34, 2, 62, 47,233,169,156,201,137, - 80, 14, 31,220, 71, 60, 96,192, 0, 28, 60,120, 16, 33, 33, 33,191,148, 37,174, 74,114, 82, 42, 26,247,232,210,158,213, 4,224, - 85, 41, 79,229,226,220, 23,202, 79,134,246, 17, 15, 30, 60, 24,135,142, 95,199,238, 99, 47, 54,236, 58, 74,143,225, 63,134, 50, - 5,150,185, 24, 33, 1,126,213, 92, 91, 53,168,173, 16,115, 42,196, 62,137, 64,122,158, 26,103, 31, 71,101,138,168,232,247,202, - 62,176, 96,238,132, 20,209,209,207,222,250, 47, 51, 83, 81,104,141, 49,110,219, 39,145, 72,244,154,245,234, 93, 44, 87, 37,195, -233,232,232,248,218,182, 43, 37, 27,236,162, 57, 62,149,112,209, 48, 35, 58, 58,218, 34, 58, 58, 26,148, 82,220,186,117,203,162, -105,211,166, 51,222,197,122, 53,101,202,148,215,182, 7, 41,249, 89,218,185,138,144,146,146,146, 7,224, 55, 71, 71,199, 63,167, - 78,157,250,113,179,102,205, 90,205,153, 51,135, 80, 74, 43,155,176, 44,207,243,184,120,241, 34, 14, 30, 60,200,105,181,218,153, - 9, 9, 9, 79, 75,252,255,187,187,187,251,149,222,189,123, 47, 15, 15, 15,103, 66, 67, 67, 97,136,144, 83,169, 84,240,246,246, - 6,203,178,248,105,172, 59,114,114,234,128,101, 89,112, 28, 7, 83, 83,211,215,246,161, 52, 36,159, 68, 34,209,107,150,145,162, -227,214,173, 91, 96, 24, 6, 1, 1, 1,184,127,255,126,177, 5,171, 34,139,147, 78,167,139,118,116,116,116,156, 55,111, 94,113, -184, 82, 82, 82,112,230,204, 25, 52,107,222, 2,126, 95,140, 70,124,124, 60, 86,174, 92, 9, 23, 23, 23, 44, 92,184, 16,233,233, -233, 96, 89,246,159, 54,155,119, 9, 13, 13,117, 27, 58,116,104,242,163, 71,143,220,142, 31, 63,110,213,163, 71, 15,211, 33, 67, -134, 36, 63,122,244,200,141, 16,210, 26,192, 94, 35,223,159,153,132,144, 83, 11, 23, 46,156, 49,126,252,248,166, 35, 70,140,144, - 72, 36, 18, 62, 46, 46,142,221,181,107, 23,241,246,246, 22, 73,165, 82,114,250,244,105,254,246,237,219, 55, 89,150,253,137, 82, -122,197, 88, 43,115,145,184, 50,118,206, 85, 17, 38, 58,200, 63, 49, 23,165, 4,172, 93,191, 72,228,235,229,166,219,190,235, 76, -204,149, 27,207, 34, 25, 13, 59,241, 55, 32, 18,255, 65, 48, 12,179,183, 86,173, 90, 35,199,141, 27,103,210,185,115,103,249,247, -223,127,159,149,147,147, 83,170,184, 42, 13,198,184,105,128,145, 14, 72, 75,224,215,153,223, 28,159, 56,185,206,200,106,159, 57, - 85, 65, 80, 94, 50, 50,196,140,200,194, 74,132, 6,158, 12,114, 82,159,219, 31, 59,183,245, 37, 42,240,171, 70, 41,189, 67, 8, -233, 80,187, 78,253, 3, 63, 45,252,201,225,187,233,211, 36, 7,142,159, 4,101,117,184,117,233, 18,204,164, 28,125,114, 47, 40, - 73,163,211,246,254, 16,183,202,137,191,186,102, 55, 33,228,136,141,141,205,195, 79, 71,140,240,174, 85,107, 8,148, 74, 37,246, -239,223,143, 63,214,172,225, 86, 1, 3, 55, 18,114,127, 52,165,229,182,249, 73, 55,138,121, 30,124,254,233,167, 62, 13, 26,124, - 6,165, 82,137,125,251,246, 97,219,170, 85, 6,243,252,103, 4, 22, 68, 36,231,230,179,168,220, 91,207,162,114,193, 83,202, 83, -170, 17,137, 16,147,167,211, 45, 12,143,140,173,148, 24, 40, 26, 34,156,191, 96,220,251, 84,230,197,162,167, 50,203,178,203,104, - 28, 98,107,212,168,129, 55, 45, 90,229,125,215,235,245,177, 6,210, 47,246,240,120,107, 95,210,197,149, 13,107,209,176,159,161, -226,202, 80, 63, 88, 0,144,148,148,148, 2, 96,153,155,155,219,145,174, 93,187, 14, 38,132, 36, 86, 50,143,118,183,109,219,118, - 48,165,148, 17,137, 68, 59,222, 16, 87, 0,128,152,152,152, 23,110,110,110,155,188,188,188,138, 55,128, 46,143,147,231,249, 23, -117,234,212,209,149,150, 23,101,253,230,121,190,194, 60,202,204,204, 68,147, 38, 77,222,218,115,146, 82,138,168,168,168, 34, 11, - 83,113,218,151, 39,220,114,115,115, 71,127,253,245,215, 27, 37, 18,137, 7, 0, 82, 36,110, 57,142, 99,126,254,249,103, 5,199, -113, 12, 0, 34, 18,137, 88,137, 68,162, 62,120,240, 32,203,178,108,180, 70,163, 25,253, 15,215, 3,123, 8, 33, 18, 0, 25,161, -161,161,173, 11, 45, 87,177, 33, 33, 33, 65,187,119,239,118, 4, 42,118,159, 80, 70,217,188, 2,224, 10, 33,164,213,250,245,235, -103,142, 30, 61,186,201,224,193,131,197,129,129,129,248,243,207, 63,185,139, 23, 47,222, 82,169, 84,139,141, 21, 86,132,144, 92, - 79, 79,207,130, 10, 76, 92,254, 44, 7,150,101,203,237,173,217,122,202,215, 14,251,210, 69,177,105,241,153,220,212,120,237,117, -125,174,118,214, 86, 32, 4,255, 97, 36, 38, 38,126, 67, 8,153,189,114,229,202,248,122,245,234,201,165, 82,169,214, 80,113, 85, -216,241,113, 52,162,140,240,149, 44, 91, 44, 33,164,219,138,142,253,143,180,249,246,107,175,142,109, 3,148,238, 85, 28, 92,159, - 68, 36,225,249,141, 63,243, 30, 30, 91,240,138,106, 50,122, 81, 74, 89, 3,184,110, 19, 66,106, 76,153, 54,165,104,179,231,186, -237,207, 30,166,255,161,205,158,231, 47, 93,186,212,187, 86,173, 90,216,191,127, 63,206,238,216,129, 65,169,169,184,192, 48,140, - 72, 42,181, 61,166,211, 45, 3, 96,136, 48,154,191,124,249,114, 31,127,127,127,236,221,187, 23,167,183,109,195,192,202,241,148, -133,198, 0,236, 11,191,167, 2,120, 10,160, 33, 0, 19, 0, 26, 0,185, 0,236, 74, 92,159, 86,248, 95,209,255,151, 1,252,163, - 19, 93,203,172,157, 30, 61,123,217,240,125, 63, 76,165, 82,165,123,123,123, 75,140,185, 71,175,215, 39, 87, 80,129,198, 86,171, - 86,205, 96, 43,133, 33, 98, 40, 45, 45,173,209,223,149,224,239, 58,215,234, 53, 33,200,243,175,156,157,157,249,162,198,190, 52, -241, 85,218, 57, 10,188, 52,230, 57,177,177,177,145, 0,126,172,108, 56, 99, 99, 99, 79,194,128,205,156, 13,189, 14, 0,210,211, -211,223,251, 38,187,132,210,184,239,191,255,222, 40, 97, 13, 74,227,202,201,235, 71, 0,154,254,175,215,174,148,210,203,133,149, - 15, 8, 33,125, 8, 33,221, 0,156,166,148,238,127, 79,252,197, 66,107,211,166, 77, 19, 41,165,200,206,206, 94,101,172,176, 42, - 33,252,207,191,175,184,167, 39,105,207,239,250, 37,182,157, 42, 83, 55,113,115,174,118, 27, 4, 20,229,153,218,193,193,225,247, -225,195,135, 55, 3,176,245,125,112,190,131,155,134,178,194,248,146, 16, 82,239,194,148, 31, 63,189, 96,101,222, 29,156,216, 23, - 90,209, 49,104,211,254, 4,240,155, 33, 86,240,146,241, 5,176,188,240,248,207,160,208,127,213,196,145, 35, 71, 98,246,236,217, - 56,189,108,153,238, 75, 66,178, 36, 0, 61, 85,208,193, 20, 17, 96,186,161, 60,159,124,242, 9,102,207,158,141, 19, 63,253, 84, - 41,158, 10, 96, 79, 8, 57, 14, 0, 51,102,204,152,181,104,209, 34,235,153, 51,103,214, 93,188,120,241,194,194,223,143,139,254, - 47,204,211, 30, 51,103,206,172, 93,226,255, 28, 0,119,254,233, 23,233,111, 59, 0,116, 16, 56, 5, 78,129, 83,224, 20, 56, 5, - 78,129, 83,224,124,199,163,123,129,100, 41,251,179,172,239, 37,206,253,147,225,133, 72,232,171, 9, 16, 32, 64,128, 0, 1, 2, -254,165, 86,184,227,239,242,255,223, 26, 54, 0, 29,202,176,108, 5, 25, 17,193, 14,149,176,156, 5, 9,156, 2,167,192, 41,112, - 10,156, 2,167,192,249,223,226,172,136,187,140,251,187, 19, 66,142, 83, 74,123,148,245, 89, 36,168,222,252, 94,226,156,209, 59, -143,188, 19,132, 33, 66,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255, 13, 67,132, 0,232,140, 25, 51,102,254, 27,134, 8, -203, 89,130,179,159,137,139,131,133, 76,166,148, 2,128, 86,155,175,115,117, 69, 54,208,255,255,109, 35, 90, 1,255, 90, 19,174, - 99,161,152, 79,122,159,215, 10, 16, 32, 64,128,128,255, 12, 82,138, 44, 83, 0, 82, 0,144,194,223,218,194,207,148,194,182,227, -205,239,175,253,255, 79, 66, 92,150,184, 74, 77, 85,218,137,197, 25, 62, 28,167,174, 9, 0, 98,177, 40, 44, 53,213, 58,220,206, -110,127,106,101, 68,150,189,163,227, 61, 9,195,184, 26,114,173,158,227,226, 82,147,146, 94,115,245, 78,129,127,189,176, 51, 84, - 60,188,139,200,248, 39, 4,138,189,189,189,163,163,163,227, 71, 22, 22, 22,205, 51, 51, 51,111,167,164,164, 28, 74, 73, 73, 73, - 42, 35, 60,139, 8,193,180,194,239, 75, 40,165, 51,203, 9,187,193,215,150,114,175,183, 82,169, 28, 75, 8,241, 47,140,127, 72, -126,126,254,122, 74,233,179,255,160,160, 53, 1,208, 91, 44, 22,127, 98,103,103,215, 36, 49, 49,241,123, 74,233,202, 74,114,137, - 1, 76,177,178,178, 26,108,101,101, 85, 53, 61, 61, 61, 50, 59, 59,123, 47,128,229,148,210, 10,151, 60,255, 48,193,165,121, 96, -231,192,239, 46,158,190, 56,127,238,234,248, 27,111,253,255,141,139,109,167,142, 45,103, 95, 60,118,125,222,204,181,134,109,143, - 84, 34,108, 34,160,120, 30, 41, 95,216, 75,165,255,195,249,210, 12,192,172,194, 48, 47,167,148, 94,248, 31, 47, 71,166,142,142, -142, 63, 1,232, 41, 22,139, 67,227,226,226,190,160,148,198,190, 39,110, 9, 0, 27, 0,233,134,148,163, 55,202, 99, 99, 0,254, - 40,112,167,113,199, 16, 87, 12, 31, 26,228,114,249, 42, 39, 39,167,207, 84, 42, 85, 62, 33,132,150,244,215,200,178,108,108, 74, - 74, 74,163, 15, 48,218,119,254,109, 1, 46, 85, 96,197,197,193, 66, 44,206,240, 73, 78,124, 52, 40, 62, 33,120, 32, 0,184, 56, -215,221,235,224, 84,103, 79, 92,156, 76,215,184, 99, 95, 51,137, 82,188,158, 97, 36,245,213, 90,141,157, 68, 44, 73,213,177,250, - 7, 34, 45, 29,155, 16,118,176, 84, 39,137, 18,134,113,125, 21,126,193,129,213,165, 67,162,112,129,196,196,163,204, 64,185,184, -184, 84, 42, 50, 54, 54,213,205,117,114,197, 68,137,132,233,200, 83,214,159,242,128,136, 72, 66, 88, 78,127, 78,170,209,172, 72, - 79,143,200,169,108, 66,213,180, 35, 78, 20, 24, 12,130,142,160, 56, 75,128,221, 97,169, 52,209,136,138,193, 32,241,240,142, 34, -163,228,189, 43, 41,165,223,188,239, 2,227,230,230,102,221,175, 95,191, 85, 63,254,248,163,137,153,153, 25,137,142,142,238, 60, -125,250,244,214,110,110,110,147, 99, 99, 99,227,223, 20,123,132, 96, 26,207, 23, 56, 40, 21,137,200,116, 71, 71, 71, 37,195, 48, -111,109, 30,202,113,156,146, 16,140,227,249,130, 13,199, 69, 34, 50,141, 16,178,218, 16,161,104, 98, 98, 50,164, 73,211, 22,147, -127, 90,186,220,204,209,193,193,148,229,120,221,203, 87,175, 76,191,155,249, 77, 83, 19, 19,147,213, 42,149,106,151,177,241, 36, -132, 16,134, 97, 6,201,229,242, 30, 0,106, 21,158,126,162,209,104,142,115, 28,183,199,208,134,220,201,201,233, 50,195, 48, 85, -140,121, 54,199,113,209,137,137,137, 1,149,108,184, 6,120,120,120,252,214,166, 77, 27,101,147, 38, 77, 32,147,201, 48,123,246, -236, 41, 0, 86, 26, 34,164,148, 74,229, 32, 83, 83,211,106,185,185,185, 17, 42,149,234,128, 76, 38,235,176,122,245,106,247,150, - 45, 91,154, 39, 37, 37, 17,134, 97, 28,143, 31, 63,254,241,154, 53,107, 58, 19, 66,218, 87,212,184,101, 69,208,239,228, 61,107, -181,202,138,184,240, 29,128,174,111,254,207,170, 21,159, 80,198,189,135,138,222,143,129, 17, 75,228, 9, 33, 34,137, 68,178,218, -201,201,105,164, 90,173, 86, 3,160,132, 16,234,232,232, 88,220,208, 0,128, 86,171,205,200,200,200,240, 45,247,221,174, 89,243, - 46,195, 48,110,229,228, 71,108, 88, 88,216,251,104,176,166, 37, 38, 38,118,147, 72, 36,196,221,221,157, 1,112,193,136,248,250, - 0,248,182,176,145, 89, 79, 41,229, 8, 33,109,129,130,247, 29,192,146, 34,193,198, 48,204,122, 95, 95,223,143,158, 60,121,178, -129, 82, 58,191,178,129,117,114,114,218,184,110,221,186,129,189,122,245, 98, 82, 82, 82, 92,235,213,171,183, 19, 64,171,119, 20, - 86, 50, 0, 51,157,156,156,190, 10, 8, 8,176,189,127,255,126, 58, 33,100, 29,128,197,229,249,154, 34,132,184, 1,232, 96,101, -101,213,254,219,111,191, 53,235,209,163, 7, 54,109,218,212,109,243,230,205,185,132,144,115, 0,130,222,151,248,251, 95, 7,195, - 48,171, 7, 13, 26, 52,114,231,206,157,202, 87,175, 94, 41, 93, 93, 93,139,157, 94, 19, 66, 42,221,126, 10,248,135, 4,150, 76, -166,148,114,156,186,102,124, 66,240,192,214,109,126,182, 4,128,203,151,190, 30,232,224, 84, 59, 68, 38, 83,134,203, 45, 20, 7, -251,246,236, 80,191,127,143, 54,196,205,217, 1,177, 9,201,142,191,238, 62,221,229,248,233, 11, 7, 81,224,248,171, 84,176,186, -116,152,232,130,240,244,234, 26,216, 5,198, 99,237,137, 88,220,120,248, 18,249, 89,169,168,226,100,130,165, 19, 59,193,201, 90, - 89,169,136,152, 57,250,180, 21, 41,148,123,134, 14, 25,110,249, 81,239, 90, 18, 79, 39, 39, 80, 42, 71,120, 68,110,139,147,103, - 46, 52, 62,176,111,215, 88, 51, 71,159, 65,185, 73,225, 6, 87,106, 13, 93,136, 73,158, 14,189,197, 12,249,184, 85,211,218,237, -135,116,107, 37,242,171, 85, 3,161,143,159,116, 58,114,254,214, 82, 63, 71,209, 57,150,163,219, 77,165, 56,124, 47,190,108, 71, -124,165, 9,141,246,237,219, 55, 48, 49, 49,209,150,188, 78,165, 82,201, 8, 65,251,202,136,140,162,103,104,181, 26,145, 68, 34, -131, 72, 68, 38,215,173, 91,183, 74,106,106,234,101,145, 72,180, 35, 54, 54, 54,195,152,244, 28, 79,136, 44, 67, 44,110, 40,146, -203,157, 57,173,214, 22, 0,136, 76,150,225,102,109, 93,231,219, 89,179,204, 24,134,225,211,210,210,144,159,159, 79, 62,255,252, -115, 69, 68, 68, 68, 95, 0,107, 42, 8, 35, 54,111,222,236,227,236,236,172,125,243,191,132,132, 4, 89,175, 94, 31, 85,166,194, -246,105,214,188,229,164,211,167, 79,213,202, 78,207, 80,111, 94,185,233,190, 94, 97,162,246,170,233, 35, 93,191,105,155,197, 23, - 35,135,125, 77, 8,121, 64, 41, 13, 55,130,211,195,196,196,228,224,178,101,203,252,219,182,109, 43,113,112,112, 64, 82, 82, 18, -158, 60,121,226,127,254,252,249,222,219,182,109,155, 66, 8,233, 75, 41, 53,196,227,186,247,185,237,191, 57,152,218,216,130,211, -235,225, 82,183, 65,177,127,178,231,231,207,128,213,233,192,235,245,168,213,163,119,129, 25,134,231,225,231,231, 87, 41,111,185, -132, 16,151,218,181,107,255,177,112,225, 66,169, 70,163,193,173, 91,183,112,225,194, 5, 62, 33, 33, 97,113, 69,226,138, 16,114, -102,238,220,185,110, 1, 1, 1,230,169,169,169,224, 56,206,238,240,225,195, 99, 27, 52,104, 96,225,238,238, 46,219,190,125, 59, -114,115,115,193,178,172, 77,181,106,213,108,134, 12, 25,162,221,190,125,251, 20, 0, 63,149,101,185,202,142,160,223, 37,146,106, - 93,124, 27,126,130, 68,114,170,203,228,174,206, 39, 45,170,147, 98, 75, 86,215,234,213,205,171,213, 52,157,110,102, 81,199, 38, - 59, 46,104,122,215,234,213, 55,159,140,168,184, 19, 68, 8, 17,137, 68,162,213,125,251,246, 29,186,123,247,110,229,147, 39, 79, -148,181,106,213, 2,207,243,197, 30,243,139, 28,197,122,123,123, 27,210, 96,185,157, 59,119,206,193,196,196,228, 45,167,188,121, -121,121,232,213,171,215,223, 81,223, 26,155,199, 63,188,120,241, 98,192,193,131, 7,135, 77,155, 54,205, 27,192, 56, 0,179,211, -210,210,218, 0,128,173,173,173, 12,192, 5, 66,200,167, 83,167, 78,253,114,198,140, 25,232,214,173,219,108, 66,200,130,202, 88, -245, 8, 33,140,157,157, 93,183, 94,189,122, 49,122,189, 30,166,166,166,208,235,245,213,223, 81, 92,201,165, 82,233,209,101,203, -150,117, 28, 50,100, 8,196, 98, 49,120,158,183, 57,115,230,204,156,145, 35, 71,182, 34,132,116, 45, 77,100, 17, 66, 62,249,242, -203, 47,251, 13, 31, 62, 28,141, 26, 53, 42,118, 46,187,108,217, 50,204,155, 55,207,236,204,153, 51,189,183,111,223,222,155, 16, -114,128, 82,250, 65,251, 50, 35,132, 44, 25, 52,104,208,208,157, 59,119,154, 1,192,210,165, 75, 49,105,210, 36, 56, 58, 58,194, -204,204, 76, 80, 52,255, 6,129, 85, 17,242,243,243, 27,204, 28,255, 49, 68,162,130, 94, 98,141,170, 30, 88, 52,235, 11,114,228, -248,233, 6,229,221, 39, 81,184,224,233,213, 53,144,187, 79,132, 70,207,226,230,195, 23, 56,187,180, 51, 0,192,167,235,183,208, -232,218, 3, 0, 40,165, 54, 50, 19,147, 37, 90,142,187, 6, 39,167, 91,136,138, 74,169, 72, 92,217, 59, 57, 30,255,229,151,159, - 76,252,171,251, 66,199,234, 17,151, 28, 7, 66,228,112,115, 53,199,167,159,116,149,180,105,227, 98,247,195, 15, 27,255, 52,181, -247,233,147,151, 18, 94,161,163, 79, 95,123,178,181, 85, 3,239,129, 67,186, 7,200,235,248,215,134, 84,110,242,151,240,106,212, - 8, 13, 27, 53, 18,205,200,205,233,120,251,206,189,142,251,207,220,212,248,218,147,189, 79, 83,232,136,242,222,141,146, 66, 99, -194,132, 9,111,109, 72,156,144,144,128,139, 23,223,105,212,224,181,103,252,248,227,143,102,153,153,153, 29,126,253,245,215,214, -174,174,174,203,226,226,226,110, 26, 66,242, 49, 33, 85, 32,151,183, 31,185,124, 57, 95,255,163,143, 24, 43, 39, 39, 17,207,113, - 36, 62, 50,210,118,229,154, 53,129,233,207,159,155,228,217,216,164,103,168, 84,249,225,225,225, 80, 40, 20, 68, 44, 22, 55,126, -147,135, 82,154, 68, 8, 89, 34, 18,145,233,132, 16,200,229,138,240, 49, 99,198,220, 47,252,187,202,177, 99,199,148, 61,123,246, -204, 7,240,170,192,236,173,112,101, 24,145, 79,193, 4, 65, 44, 49, 68, 88,154,154,154,142,159,191,112,137,105,118,122,166, 74, -151,151,167,119,176, 48, 35, 48, 51, 99,114,178,115,179,227, 19, 83,212,223,126, 63, 79, 60,250,211,225,227, 1,140, 53, 84, 92, -213,171, 87,239,246,193,131, 7, 29,108,109,109,145,153,153,137,180,180, 52,220,190,125, 27, 60,207,163,111,223,190,242, 22, 77, -155, 52,152,245,237,119, 55, 8, 33,205, 13, 17, 89,166, 54,118, 88, 26, 80, 31, 0, 48,231, 85, 90,113,254,108, 26,208,163,248, -154,121,177, 89, 0, 0,133, 66,241, 46, 91, 61, 53,111,223,190,189, 20, 0, 70,141, 26,149,157,147,147,179, 8,192, 78, 90,142, - 51,212, 66, 76,249,238,187,239, 92,171, 86,173,234,185,115,231, 78,228,230,230, 2,128, 67,213,170, 85,225,235,235,203, 93,188, -120, 17, 62, 62, 62, 48, 55, 55,199,229,203,151,113,243,230, 77, 52,108,216,208, 92, 42,149, 14, 44, 75, 96, 5,118, 14,252, 78, -222,179, 86, 43,223,134,159,192,204,194, 25,155,119,237,193,211,123,219, 90,105,116, 79,190, 91, 52,206,117,184,138,202, 71,184, -121,155,207,168,210,168,141,109,141,218, 31,193,179,225,125, 59, 53,119,229,197,236,175,170, 45, 22, 43,212,219,230, 46,139, 79, - 43, 75, 92, 1, 88,218,183,111,223, 1,187,119,239,182, 2,128, 71,143, 30, 33, 41, 41, 9,246,246,246, 80, 40, 20,144, 72, 36, -197,251,135, 26, 10, 19, 19, 19, 36, 36, 36, 64,167,211, 21, 89,173,144,147,147, 3, 39, 39,167, 2,117,243, 3, 17,205,157,107, -152,215,113, 66, 72, 64,211,166, 77,119,120,122,122,186,151, 60,223,189,123,119, 12, 30, 60, 24, 0,208,166, 77,155,246,253,251, -247,167, 69, 66, 48, 33, 33, 33,247,206,157, 59, 29, 41,165,183, 74,227, 20,137, 68,170,184,184, 56, 76,157, 58, 21, 47, 95,190, -252,138, 16, 18, 5, 64, 33,147,201,138,251,197,132, 16,159,218,181,107,175,158, 52,105, 18, 34, 34, 34, 16, 26, 26,122,187,178, - 67,166,148, 82,206,203,203,235,185, 94,175,111,196,178, 44, 84, 42, 21,250,244,233,163,176,177,177, 73, 98, 24, 38, 44, 53, 53, -117, 24,165, 52,193, 8,171,149,167, 88, 44, 94, 59,117,234,212,246, 29, 58,116, 64,112,112, 48, 14, 30, 60,136, 33, 67,134,160, - 75,151, 46, 88,182,108, 89,155,113,227,198,205, 0, 48,183, 20,138,246,235,215,175, 7,199,113,111,189, 27, 10,133, 2, 1, 1, - 1,240,243,243,195,145, 35, 71,218, 3,248,160, 5,150,167,167,231,152,221,187,119,155,149, 28,237,145,203,229, 40, 81, 14, 4, -252,175, 11, 44,173, 54, 95, 39, 22,139,194, 92,156,235,238,189,124,233,235,226, 33, 66, 64, 20,166,213,230,235, 0,128,227, 41, -178,243, 89,152,200, 69,120,149,152,131,199,145,169,165,189,164,175, 45,181,148,152,120, 64,222,228, 21, 40,165,208,234, 56,104, -178, 18,177,232,207,124, 60,137, 85, 67,155,151, 1,173,174, 96,154,149,157,157,157,248,244,233,147,147,130,130,206,127,249,251, -239,191, 51,177,150,150,161,200,202,106, 80, 26,167,141, 77,117,115,177,169,201,222, 13,191,204, 54,161, 76, 36,194,163,243, 80, -195,173, 9,236,172,220,145,152,154,135,107,161, 39, 16,246,236, 56,170, 58,123, 98,226,248, 46,138,249, 11,119,238,177,182,174, -234,145,145,241, 34,187,172,112, 22,226,147,141,167,194,193,166, 71,130, 75,139, 0,151, 19,255,182,176,179,247, 64,195,182,174, -176,119,175, 46, 31, 49,113,222, 39, 0, 70,148,198, 73, 41, 77, 98, 24,102,189, 72, 68,198, 18, 66,224,239, 95,231,197,170, 85, -171,180,165, 37,189,191,127,157, 23, 12, 35,170, 90,176, 13,139,104, 3,207,115, 73, 21,132,243, 53, 49, 35,147,201,167, 21,152, -247,157, 35, 79,158, 60,169,237,223,191, 63,150, 46, 93, 42,157, 49, 99,198, 55,158,158,158,227,162,162,162, 18,203,203,163,190, -132,120,184, 86,175,222,105,193,181,107, 84,162,215,147,244,219,183,179, 51, 19, 18,216,196,156, 28,217,190,176,176,110,159,125, -243,141,204,221,221, 29, 87,143, 31,183, 77,201,203,163,153, 26,141, 42, 51, 51,147,178, 44,123,187,140,184,207,116,116,116, 84, -110,222,188,217,103,204,152, 49,247,227,227,227,103, 22, 86, 12,139, 0,248, 1,120, 85,226, 28,126,249,101, 79,220,231,159,127, - 30,158,148,148, 52,179,188,112,150, 64,109, 7,123,123,229,174,141,219,131,109,204, 77, 68,118,110,206, 34,137,165,165,132,149, - 43,165,148, 66, 93,181,106,117, 37,128,218,101,164, 89,208, 27, 13, 1, 49, 49, 49, 57,120,244,232, 81, 7,137, 68, 2,142,227, - 96,111,111,143,151, 47, 95, 34, 51, 51, 19, 57, 57, 57,120, 17,246, 4, 94,238,238,248, 97,198,116,231,113,211,103, 28, 36,132, - 52, 42,217,136,149, 22, 78, 78,175,123,203,146, 87,198, 6,225,175,125, 26,146,239,111,224,101,116,116, 52,204,204,204,224,239, -239,111,118,237,218,181, 43,101,137,171,146,156, 10,133, 98, 96,203,150, 45,205,119,237,218,133,134, 13, 27,194,210,210, 18, 23, - 47, 94,196,163, 71,143,160,211,233, 68,185,185,185, 48, 55, 55,199,226,197,139,225,233,233,137,236,236,108, 68, 71, 71,219, 74, - 36, 18,187,178, 56, 47,158,190, 56, 63, 43,226,194,119,137,228, 84,151,205,187,246,224,243, 33,131,224, 68, 35,175, 88, 86, 39, -243, 59,245,108, 57,135, 50,238, 61, 76,205,235, 90,123,251,247,132, 84,102,134,113,211,230, 33, 60,228,152,117,126, 78,240, 87, -132,139,113, 7, 48,225, 77, 78, 82,144, 48, 34,119,119,247,207,246,237,219,103, 94,194, 2, 85,188, 15,105,201,205,217,203,218, -136,189,212, 60,226, 56,232,116, 58,232,116, 58,112, 28,135,212,212, 84,228,228,228,192,202,202,170,224,130,185, 0, 1, 33, 20, -165, 11,150, 55, 56,135, 5, 5, 5,185,155,154,154,190,121, 13, 82, 83, 83,193,178, 44,148, 74,101,241, 51,245,122, 61,212,106, -181,153,159,159,223, 88, 0,183, 74,227,228,121,126,242,192,129, 3, 91,222,186,117,171,218,154, 53,107,160,213,106,151, 38, 38, - 38,162, 95,191,126,224,121, 30,237,219,183,111, 70, 41,125,250,237,183,223, 2, 0, 38, 77,154,164,207,203,203, 27, 99, 72,220, -203, 16, 69,126,253,251,247,175,118,238,220, 57,180,106,213, 10, 26,141, 6,203,150, 45,179,248,229,151, 95, 44,182,111,223,110, - 63,109,218,180,223, 0,116, 46,143,179, 80, 88,205,234,210,165,203,228, 94,189,122,153,198,197,197,193,202,202, 10,123,246,236, -193,226,197,139, 47,107,181,218, 89,219,183,111, 95,116,240,224,193, 86, 67,134, 12,193,178,101,203,190, 34,132,204,167,148,234, - 75,227,124,241,226, 5,236,237,237, 97, 97, 97, 1,160, 96, 35,251, 7, 15, 30,224,236,217,179,168, 89,179,166, 33,162, 49,232, -125, 55,160,255, 52,167, 74,165, 82, 71, 71, 71,155,253,244,211, 79,112,118,118,134,167,167, 39, 20, 10, 5, 8, 33,208,235,245, -101,110,131,102, 72, 56, 3, 3,137, 56, 53,206,186,151,165,149,245, 87,148, 82,113, 86, 86,198, 70, 29, 50,247, 71, 68, 80,237, - 63, 21,247, 15, 82, 96, 17, 66, 40,165,148, 20,125,186,186, 34, 59, 53,213, 58,220,193,169,206, 30, 7,167,218,133,251,114,137, -194, 24,198, 58,220,209, 49, 63, 27, 0,116, 44,197,245,176, 76, 4, 63, 79,196,163,231,137, 48,149, 27,182, 77,141, 70,199, 22, -172,179,164, 20,234,220,191, 58,169,186,252, 12,104,116, 5,211, 57,180,154,124,100,165,132,146, 1,125, 58, 42,190,252,114, 52, -156,157, 93,237,203,226,211,201, 21, 19,199, 77,234,102,101, 99, 37,193,241,107,167,208,172,102, 31, 40,228, 18,164,101,169, 1, - 2, 60,139, 60, 11,240,230, 8, 9,143, 70,211,218, 74,116,238, 84,203,236,208,254,167,223, 0,152,109, 72,120,217,216,219,144, -122,119,133,132,211, 67,159,250, 20,124,102, 20, 96,234, 4, 21, 49, 67, 90, 66, 20,194,174, 28, 48,104,139, 82,142,227,198,217, -217,217, 37,207,156, 57, 51,192,199,199, 71, 59,110,220,184,144,151, 47, 95,126, 91,242, 26, 47, 47,175, 5,107,215,174, 69,120, -120,248,171, 69,139, 22, 93, 77, 77, 77,253,209,200, 23,115, 6, 33,100, 85,161, 53, 44,245,232,209,163,117, 47, 95,190, 60,118, -229,202,149,246, 95,125,245,149,116,252,248,241,195, 0, 44, 45,111, 88,208, 84, 46,239,176,224,242,101,202,198,198,106,254,248, -249,103,217,186,235,215,191,213,241,188,139,157,131, 3,105,209,180,105,158, 82, 36, 74, 77, 75, 74, 98,237,171, 85, 99, 94,158, - 61,107, 75, 77, 76,226, 79,158, 60,153,157,155,155,123,160,156, 33,152,252,210,134, 5, 75,131,179,179,179,182,180, 57, 90,229, - 52, 4,217, 60,165, 58,235,170, 94,232,212,190, 69,141,231, 79, 35, 35,229,150, 86,140,183,119, 21,223,208,176, 87,183,120,150, -213, 16, 66,178, 13,225, 98, 24,102,208,170, 85,171,234, 88, 88, 88,128,231,121, 88, 90, 90, 34, 37, 37, 5, 90,173, 22,217,217, -217,208,230,100, 65,155,149,133, 71, 81, 47,209, 50, 48, 16, 3,186,116,170,181,253,240,209, 65, 0,118,151,199,235, 82,183, 65, -177,229,106, 94, 21,219,191,198,124, 98, 50,139,197,214, 79, 13,188, 33, 53, 51, 67,199,201, 51,222,165, 98,190, 47,147,201, 78, -244,237,219,183,219, 55,223,124, 35, 74, 72, 72, 56, 69, 8,105, 73, 41, 13, 45,215, 2,108,102, 86,189, 72, 80, 88, 90, 90, 98, -213,170, 85,112,116,116, 68,126,126, 62,238,220,185, 67,221,220,220,200,133, 11, 23,224,230,230,134,212,212, 84,232,116, 58,228, -229,229, 37,106,181,218, 50,135,197, 11,135, 1,187, 78,238,234,124,242,233,189,109,173, 92,201,139, 59, 3,167,180,121,254,244, - 81, 88,244,153,179,215,126,100,213,138,152,204,216,160,233, 85, 27,223,183,251,106,234, 15, 88,187,116, 46,158,222,186,156,238, -232,145,189,206,132,104,182, 54,237, 88,118,120,243,242,242,212, 79,158, 60, 49, 15, 14, 14, 6, 33, 4,150,150,150, 80, 42,149, -165,138, 44, 67,193,113, 92,241,103,106,106, 42, 82, 82, 82, 16, 30, 30,142,109,219,182, 33, 62, 62,222,110,165,165, 69,162,157, - 76, 26, 44,205, 36,179,116, 58,122,191, 2,186,141, 29, 59,118, 28,228,225,225, 97, 94,242,100,227,198,141, 49,122,244,104,108, -216,176, 1,215,175, 95,127,109,191,203,196,196,196, 4,189, 94,191,181,156,188,205, 36,132,116,233,211,167,207,189, 43, 87,174, - 88,108,217,178, 5, 44,203,150,122,108,222,188, 25, 55,111,222,156, 77, 41, 13,171,228, 48, 84,205,126,253,250, 93,222,177, 99, -135, 85, 74, 74, 10, 82, 83, 83,145,155,155,139,188,188, 60,112, 28, 7, 95, 95, 95,194,178,172,111, 69,195,129,246,246,246, 39, - 46, 93,186,212,214,215,183,224, 82,189, 94,143,107,215,174,225,163,143, 62,202,214,106,181,253, 40,165,105,132,144,153,251,247, -239,191,222,180,105, 83, 52,110,220,216, 38, 42, 42,202, 6, 64,169,150,235,220,220, 92,228,230,230, 66, 34,145,192,201,201, 9, -243,231,207,135, 86, 91, 80,173,248,248,248,148,180,112,174,172, 89,179,102,159,176,176,176,197,148,210,117, 31,216, 16, 33,145, - 72, 36, 24, 53,106, 20,196, 98, 49, 76, 76, 76,160, 86,171,161,215,235,139, 69, 60,140, 28,126,246,246, 54,183, 21, 67,250,185, -143, 79,235,137, 3, 38,244,176,119,118,113,133,149,133, 28, 79,158,132,182, 60,127,238,236,207,126,190,246,191,240, 90,253, 47, - 97, 47, 51,163,255,129,248,189,166, 69, 62,208, 33,194,254,156,157,221,254,212,184, 56,153, 78, 38, 83,134, 23, 89,181, 10,196, - 85,127, 14,216, 5, 86,167, 47,172, 32,104,225, 97,160,192,210,115,120,254, 52, 4, 87,206, 28,133, 93,126, 28, 82, 95,212, 7, -164,117,160, 85,101, 65,173,213, 21,246,214, 56, 60,188,119, 14,217, 89,233,240,111,212, 3, 16,137,202, 28,218,178,180, 37, 61, - 90, 52,172,203, 60,143, 14, 65, 99,159,254,168,230,214, 10, 81, 9,217,200,204,213, 32, 35, 91,141,250,254, 51,144,146,161, 66, -118,190, 26,161,207,183,195,213,165,154,136,136, 35,219, 27, 42,176, 52,161, 7,161, 9, 59, 2,169,103, 75,200,124, 63, 2,227, - 25,128,232,224, 11,120,120,114, 37, 98, 31, 95, 5,229, 57, 56,251, 52, 49, 40,238, 12,195,108, 60,115,230, 76,253,214,173, 91, -139,219,183,111,239,239,230,230,230, 31, 27, 27, 27, 2, 0,110,110,110,254, 93,186,116,241,119,112,112,192,234,213,171,243, 25, -134,217, 88,201, 70,182,100,229,116,223,217,217,121,217,193,131, 7,151,140, 30, 61, 26, 78, 78, 78,126,229,221,155, 34,145,212, - 27,177,112, 33,149, 48, 12,221,189,118,173,244,135, 83,167,150,255,190,117,171,180, 93,219,182,132, 82,138, 7, 15, 30, 40,127, - 90,187, 86, 57,180, 87,175, 87, 81,201,201,236,165,235,215,117, 9,177,177, 57,201,121,121, 63,196,199,199, 39,254,127, 20, 96, -189, 94,127,227,229,139, 72,183, 6, 77,234,219,223, 15,125, 17,218,185,125,139,230, 34,145, 72, 20, 22, 25,117,195,222,222, 66, -121,238, 76,144, 78,175,215,223, 48,132, 75, 46,151,247,104,215,174,157, 56, 35, 35, 3, 46, 46, 46, 72, 73, 73, 65, 92, 92, 92, -129,133, 33, 43, 3,186,172, 44,232,179, 51,193,229,229,226,197,157,219,168, 95,173,170,124, 95,193, 36,248,221, 21,228, 73,169, -150,169,146,150, 44,153,185, 57,100,102,102, 32, 70, 14, 15, 18, 66,122, 89, 89, 89, 77,207,204,204, 60, 65, 41,157,175,211,233, -198, 77,159, 62,189,241,154, 53,107,236, 22, 44, 88, 96,241,197, 23, 95,236, 35,132,212,167,148,106,202,226,200,205,205,141, 96, - 89,214, 14,128,195,185,115,231,224,224,224,128,172,172,172, 34,203,138, 54, 63, 63, 95,145,150,150, 6,141, 70, 3,173, 86, 11, - 11, 11, 11,220,189,123, 55,131,101,217,163, 21,133,207,162, 58,153,175,209, 61,249,206,182,150,105,188,142,181,110,147,156,206, -103,204, 93, 22, 63, 15,192,242,174,213,171,111,214,241,151, 95, 60, 11, 57,102,253,242,206,197,244,248,103,121,213, 54,255, 25, -153, 83, 78, 58, 82, 66, 8, 79, 8,161,190,190,190, 72, 77, 77, 5,195, 48, 80, 42,149, 48, 51, 51, 67,205,154, 53, 17, 19, 19, - 83,105,129,197,178,108,177,184, 58,126,252, 56, 18, 18, 18,176,107,215, 46,184,187,187,139, 0,216,199,196,196,116, 28, 48, 96, - 64, 83, 91, 91,235, 69,105,105, 25,139,203, 9,231, 3, 0, 22,111,228, 83, 91, 59, 59,187,243, 26,141, 6,145,145,145, 56,124, -248,112, 32,165,244,146,145,239,118, 36, 33,164, 75, 64, 64,192,182,134, 13, 27, 86,167,148,162, 78,157, 58, 24, 60,120, 48,182, -111,223,142,135, 15, 31, 34, 43, 43,139, 63,123,246,236,239, 0,150, 25,219,112, 23,166,175,111,191,126,253,174,238,220,185,211, - 58, 45, 45, 13, 42,149, 10,121,121,121,216,183,111, 31, 90,182,108, 9, 59, 59, 59,236,216,177,131,165,148, 30, 43,135, 75, 97, -101,101,117,226,234,213,171,129, 53,106,212, 64,104,104, 40,206,157, 59,135, 42, 85,170, 64, 38,147, 97,216,176, 97, 22, 27, 54, -108,248,154, 16,178, 88, 34,145,204,239,215,175, 31, 56,142,195,181,107,215,210, 0,164, 27,240,206, 35, 51, 51, 19,153,153,153, - 48, 49, 49, 41,249,142, 17, 0, 91, 86,174, 92, 57,114,226,196,137,168, 94,189,250,124, 66,200,134,202,110, 40,253,191, 4, 95, - 95,235,218, 50, 70, 62, 65, 42,149,216,102,100,100, 20,215, 29, 90,173, 22, 26,141,230, 53,203,149, 84, 42,177,109,210,192,243, - 79, 85,126,206,172,199,225, 25,101,110, 92,238, 87,195,170,174,210,212,114, 98,247, 46, 3,134,117,234,210,155, 97,245,122,156, - 62,125, 12,191,254,186, 30,109, 3,124, 80,173, 70, 29,124, 61,126,130,165, 70,203,206, 56,123,246,212,244, 22, 77,170,158,202, -201,206,156, 89, 30,167,128, 82, 4, 86,233,138,177, 63,231,234,138,140,194, 23,198,206,218,218,122, 45,199,113,109,129,207, 33, - 49,115, 66,232,221, 91, 72,207,144, 64,163,226,192,211, 2,145,101,144, 96,209,104,113,249,244, 17,172, 90,185, 28,105,105,105, - 8,104, 29,136, 92,177, 59, 60,220, 61,160, 86,229, 23,190, 44,128, 78,171,135,189,163, 39,238,223,127,168,207,206,203, 43,179, - 34,146, 42,116,181, 60, 28,125,160,209, 53,135, 66, 38, 67, 86,142, 22, 25,133,226,106,199,254,129,208,228,171,192,106,117, 96, -181,122,216,123,244, 67, 77,199,118,224,185, 99,181,141, 74, 37,158,131,238,229,101,232, 94, 94,134, 73,243,241, 56,186,104,200, - 27, 21,159, 97,239,111, 82, 82, 82,138,155,155,219,169,123,247,238,245, 24, 56,112, 32, 46, 94,188, 56, 2,192,228,194,198,125, -196,192,129, 3,113,239,222, 61,132,133,133,157, 74, 74, 74,122, 47, 62, 59,100, 50,153,186,168,151,167, 80, 40, 20, 21, 92,235, -218,184,111, 95, 81,214,253,251,217, 43,175, 93,155,187,121,203, 22,105,135,246,237,137,158,101,193,115, 28,106,120,123,147, 78, -157, 58,153,110,223,187,215,150,209,235,111, 78, 29, 55,238,220,134,225,195,115,110,229,230, 26, 58,129,188, 74,225,208, 32, 0, - 84, 41,231,156,193,208,104, 52,107,198,140,254,172,227,133,139,151,220,171,120,186,154,159, 57,119,249,161, 76, 46, 21, 85,243, -170,198,100,102,102,138,191,159, 59,211, 68,163,209,252,108, 32, 93, 45, 59, 59, 59, 36, 38, 38,226,249,243,231,208,104, 52,208, -235,245,224,243,243,160,205,200,132, 54, 43, 29, 68,173,130,156,227,160, 78, 77, 66,149,106, 85,129,191, 86, 24, 86,212,128,149, - 42,176,138, 62, 21, 22, 22,144,154,154, 65, 36,145, 24,188,105, 57, 33,164, 97,147, 38, 77,246, 30, 56,112, 64,250,233,167,159, - 54, 37,132,172,165,148, 70, 17, 66,218,207,158, 61,251,246,218,181,107,229,163, 71,143,246, 93,182,108,217, 39, 0,202, 20,236, -106,181,122,239,159,127,254, 57,212,211,211,211,225,209,163, 71, 80,171,213,224,121, 30, 93,187,118, 5,128,226, 50,243,244,233, - 83,149, 90,173, 78, 14, 9, 9,201,142,138,138,210,194,128, 85,127,115, 87,199,223,152, 60,192,173,175,163,147,235, 77,133, 73, - 21, 47,154,123,191,207,228, 1,110, 75, 87,236,139, 85,159,140,136,200,153,253, 85,181,197,121, 57,193, 95, 89,185,229,174, 59, -121, 44,210,144, 85,190,180,104, 89,186,173,173, 45,196, 98, 49, 36, 18, 9,164, 82, 41, 0,192,209,209, 17, 89, 89, 89,229, 14, - 17,150, 37,176,178,179,179,145,149,149,133,176,176, 48, 36, 36, 36,224,198,141, 27,224, 56, 14, 5,139, 20, 1, 55, 55, 55,220, -190,125,219,188,113,227,198,179,136,148, 92,160, 58,106,240,178,113,134, 97, 38, 14, 31, 62, 28, 90,173, 22,131, 7, 15,198,230, -205,155, 39, 2,184,100,108,121,167,148,222, 36,132,120, 63,124,248,208, 2,192, 71,131, 6, 13,218,218,175, 95, 63, 92,186,116, - 9,199,142, 29, 11, 4, 16, 14, 64, 5, 96, 81,225,198,202,139,202, 91,224, 81,232,138, 97,189,189,189,253, 71,181,107,215,126, -216,175, 95, 63,255,157, 59,119, 90, 37, 39, 39, 23, 45,106,192,203,151, 47,241,219,111,191, 37,108,217,178, 37,155,227, 56, 91, -145, 72,244,103,102,102,102, 89,171,160, 21,166,166,166, 39,175, 94,189,218,166, 70,141, 26, 8, 10, 10,194,172, 89,179,208,166, - 77, 27,236,218,181, 11, 53,107,214, 68,157, 58,117,224,224,224,240, 85,122,122,122,139, 77,155, 54, 5, 54,107,214, 12, 59,118, -236, 64, 66, 66,194,250,178, 92, 54, 84, 52,149, 76,175,215, 19, 0, 77, 87,174, 92, 89,117,226,196,137, 56,112,224, 0, 26, 52, -104, 96, 25, 25, 25,185,172,168,142,253,183,162,166,183,237,226, 38,141,219, 76,119,118,173,129, 29, 59,119, 33, 61, 61,189, 56, - 77,138,210,133, 82,138,156,156, 28, 36, 38, 38,194,210,194, 28, 75,151,205,239, 54,246,139,145,238, 40,112,103,241,118, 69, 87, -221,102, 89,255,193,159, 77, 25, 60,116, 36, 30, 61,188,135,237, 91, 55, 34,228,209,131, 98, 62, 86,175, 67,248,147,187, 8,127, -114, 23,142, 78,158,232,212, 33,144, 12, 25, 50,164,235,240,161,131,236, 1,252,109, 46, 32, 62, 36,235, 85,153, 67,132,111,188, - 48,118,214,214,214,143,247,236,217, 99, 27, 16, 16,192,176, 44,139, 83,167, 79,227,171, 47, 63,198, 39,195,103, 64, 7,107,176, - 90, 41,120,169,194,160, 7,170, 84,249,160,160,200,203,203,195,245,235,215, 65,121, 22,219, 55, 45, 7,165,124,177,192, 2, 40, -180, 58, 29, 92, 61,124,177,126,243, 2, 22, 18, 73,153, 21, 89,118, 26,195,233, 89,138,184,228,104, 68, 39,132,192,210,220, 3, - 98,137, 7,210, 50,243, 33, 22, 57, 65,175,126, 10,174,208,124,154,159, 23, 11,149,238,221,242,141,203,122,219, 74, 74,121,195, - 59, 72,249,249,249,123,119,236,216,209,105,197,138, 21,210,110,221,186, 85,119,115,115,107, 2, 0,125,251,246,173,110,110,110, -142, 29, 59,118,232,242,243,243,247,190, 71, 11, 79,235,198,141, 27, 35, 61, 61, 29,175, 94,189, 42,183,231,193,105,181,182,102, - 14, 14, 76,242,133, 11,250,148,140, 12,247,118,237,218, 17, 61,203, 66, 68, 8,210,179,178, 16,245,234, 21,172,172,172,200,227, -167, 79,205,126,254,250,235, 67, 62,254,254,226,162, 21,134,134,224,216,177, 99, 74, 20,204,187, 42,247,156,145, 47,100, 30, 33, -100,196,215, 95,127,125,232,143, 63,118, 88, 38, 38, 37, 61,147,203,228,172,153,153,137,243,240, 97,131,196,153,153,153, 67, 41, -165,185,134,242,101,100,100,224,197,139, 23, 48, 49, 49,129, 84, 34, 1,175,202, 7,151,151, 11,117,122, 10, 24,157, 22, 50,142, -131,141, 82, 14,119, 71, 71,120,216,219, 25,196,249,252,252,153,226, 9,237, 37,135, 5,151, 54,169, 5,153,169, 25,100,230,102, - 24,123,252, 98, 97,239, 83, 10,204,174,120,100,152, 16, 98,231,234,234,122,116,231,206,157,210,148,148, 20, 60,120,240,224, 33, -165, 52,139, 16, 98, 14,128,127,242,228, 73, 80, 72, 72, 72,143,194, 85,116, 21,173,254, 90,126,240,224,193,142, 1, 1, 1,172, -151,151,151,105, 82, 82,146, 71, 90, 90, 26, 73, 72,120,125, 14,243,137, 19, 39, 20, 42,149, 42,143,231,249, 67, 40,240,227, 84, -161,255,161,201, 3,220, 20,215,239, 99,124,155,206, 85,234, 88,216,213, 69, 58,123,191,206,205,135, 9,227, 39, 15,112, 91,179, - 98, 95,172,218,132,104,182, 18, 46,198, 93,172, 80,111, 51, 48,191,169,157,157, 29, 40,165,184,125,251, 54,174, 94,189,138,203, -151, 47, 35, 42, 42,234, 47,171,182,165, 37,206,158, 61,139,182,109,219, 26,243, 94,194,217,217, 25,214,214,214,216,190,125, 59, -118,237,218, 85, 60,209,189, 8,169,169,169, 80, 42,149, 88,177, 98,133, 89,255,254,253,127, 4,208,201, 64, 33, 92,181, 99,199, -142,221,157,157,157,145,150,150, 6, 39, 39, 39, 4, 4, 4,244, 36,132,120, 81, 74, 95, 86,178,232,143,237,220,185,243,252, 31, -126,248, 1,122,189, 30,163, 70,141,194,179,103,207,246, 62,123,246,108,149,135,135,199,248,105,211,166, 57, 58, 58, 58, 98,224, -192,129,166, 0,250,150, 69, 98, 99, 99,179,104,227,198,141, 67,187,119,239, 46,210,233,116,173,207,159, 63,143, 87,175, 94, 65, -171,213,130,101, 89, 68, 68, 68, 96,220,184,113, 9,105,105,105,109, 40,165, 17, 6,132,107,198,153, 51,103,218,212,170, 85, 11, -199,143, 31, 71,223,190,125, 47, 88, 89, 89,249,212,173, 91,215,217,197,197, 5,251,246,237,131,133,133, 5, 60, 60, 60,108, 22, - 44, 88,208,174,119,239,222, 56,126,252, 56, 38, 77,154,116, 17,192,226,202, 36, 4,207,243,100,229,202,149,254, 43, 87,174,116, - 43, 18, 87, 34,145, 8,123,246,236,193,195,135, 15,123,253,219, 5, 22, 35, 34, 35, 22,206,155,138, 59,247,159,226,224, 65, 41, -238,220,185, 3, 71, 71, 71,200,229,114, 80, 74,161,209,104,144,146,146, 2,189, 78,131, 58,181,171, 98,219,150,197, 72, 78, 78, - 1, 68,164,204,169, 53, 68, 68,134,141,252,184, 15,174, 92, 61,141, 13, 27, 54, 34, 55, 55,175,140, 78,183, 2, 53,124,106,193, -213,197, 1, 49,177, 49, 32, 34,216,253,157,113,253,143, 12, 17,254, 5, 43, 43,171, 85,187,119,239,182,109,219,182, 45,147,151, -151, 7,158,231,209, 42, 32, 0,227, 39, 78,196,177,157, 59,225,221,116, 48,136,214, 12,172,210,176, 85, 12,106, 85, 62,252, 26, -180,192,128,129,131, 16, 29, 21,133,206, 61,250, 65,173,206, 47,158,139, 80,100,193,210,106,117,176,115,112,199,153, 51,103, 24, -140, 26,245,184, 76, 81,160,147, 5,135, 71,168, 91,102,170,238,227,250,157,237,208,105,116,168, 83,103, 54,116,188, 45, 28,220, -190,128, 94,127, 24,217, 41,231, 11,134, 43,108,219, 34, 54, 58, 26, 34, 70,250,184,178, 9,198,231,165, 24,221,187,122,163, 1, -207,118,118,118, 62,114,227,198,141, 1,125,251,246,197,217,179,103, 63, 41, 20, 88,184,113,227, 6, 94,188,120,113, 36, 35, 35, - 35,251,125,100,174,155,155, 91,215,192,192,192,190,141, 27, 55,198,241,227,199,193,113,220,117,131, 94,104,137,132,138, 68, 34, -240, 60, 15, 2, 32, 45, 51, 19,207,158, 61, 67, 90,106, 42,244,122, 61,242,114,115,249, 90, 62, 62,185,148,231,205,141, 9, 79, -201, 21,131, 40,101, 21, 97,209,185, 74,136,172, 40, 51, 51,179,232,156,220, 92,123, 11,107,155, 28,133, 76,198,101,101,102,101, -133, 62,126,164, 53,176, 81, 40,194,147,144,144, 16,255,248,248,120, 68, 71, 71,131,205,203, 1,163,209, 66,164,201, 71,251, 22, -205, 97, 2, 10, 5,120, 72,120, 61, 36,140, 4, 57, 5,171,237,158, 84, 40,202,245,250,183, 44, 89,132,144,130, 97, 65, 83, 83, -200,204,204, 95,179,104, 25, 82,158,228,114,249,206,125,251,246, 57,187,186,186, 98,222,188,121,112,115,115,171, 89,167, 78,157, -252, 86,173, 90,153, 56, 58, 58,194,207,207, 15, 45, 90,180,192,201,147, 39, 1, 32,162,130,244, 99, 9, 33,157,174, 92,185, 50, -229,218,181,107, 3, 8, 33,100,198,140, 25,232,210,165, 11, 20, 10, 5,242,243,243,145,145,145,129, 77,155, 54, 17, 74,105,131, -194,176,122, 42, 20,138, 93,132,144, 88,149, 74, 53,240, 77,206,237, 43,235,186, 36,167,243,163, 28,157, 92,251,180,233, 92,165, - 78,187,206, 29, 80,213,187, 29,218,117,142, 6,128,197, 54,226, 87,131,151,126,231,127,200,206,221,230,183, 51,167,206,206, 13, -104,211,238,219, 25,163,173,231, 47,222, 88,113,217, 39,132,128,227, 56,136,197, 98,136, 68,162, 82,173, 84, 98,177, 24, 12, 99, -216, 84, 20,142,227, 98,123,247,238, 93,252, 59, 62, 62,222,206,221,221, 93, 84,100,185, 2,128,172,172, 44,196,196,196, 64,175, -215,195,214,214, 22, 58,157,174,174, 17,229,106,252,167,159,126, 74, 84, 42, 21, 62,251,236, 51,108,222,188, 25,131, 7, 15, 38, -151, 46, 93, 26, 15, 96,162,177,229, 93, 36, 18, 45,157, 54,109,218,148,113,227,198, 33, 61, 61, 29, 39, 78,156, 64,215,174, 93, -177,103,207, 30,251, 19, 39, 78, 44,108,219,182, 45, 24,134,193,241,227,199,193,178,236,211,242,184,164, 82,233, 71,221,187,119, - 23,197,196,196, 64, 42,149,162, 81,163, 70,136,141,141, 69,126,126, 62,226,226,226, 48, 97,194,132,196,180,180,180, 64, 67,222, - 35, 66,136,164, 70,141, 26,227,106,214,172,137,179,103,207,162,127,255,254,151,244,122,125,247,148,148,148,113, 25, 25, 25, 75, -134, 13, 27, 6,127,127,127,132,135,135,163, 99,199,142,104,217,178, 37, 78,156, 56,129,207, 62,251,236,162, 94,175,239, 94,142, - 31,172,156,228,228,100,203,234,213,171, 35, 41, 41, 9,185,185,185,184,113,227,134,197,197,139, 23,189, 92, 92, 92,172, 34, 35, - 35,233,119,223,125,167,156, 56,113, 34, 86,173, 90,133, 7, 15, 30, 96,251,246,237,104,215,174,157,254,249,243,231,203,255,237, -141, 52,207,241, 0,120,120,185,155,225,244,177, 45,184,247, 48, 18,247, 30,134, 64, 38, 47,152,220,174, 82,229,163, 65,157, 26, -104,218,168, 9,226, 19,226,240,199,246, 45,176,177,115, 45,183, 30,161,148, 66, 42,230, 80,203,199, 9, 59,183,111,196,241, 19, -231,176,253,143, 93,197,115,218,196, 98, 9,234, 55,104,138, 70,141, 2, 16,249, 34, 2, 91,182,108,128,189,131,187, 48,230, 87, -217, 33,194,146,159,111,244, 14,218, 5, 4, 4, 48,185,185,185, 80,171,213, 72, 76, 76,196,171, 87,175, 96,101,109,133,200,248, -151, 8, 84,234,144,200,103,227,201,195,199, 28, 97, 36, 15, 42,122, 96,247, 54,245,129, 54,245,241,213,167,131,203,206,124, 80, -152, 90,216, 65,163,209, 64,167,215, 63,199,154, 53,101,246,148, 89, 78, 31,116,250,236,249, 38,159,126,242,145,228,204,249,205, -208,107,121,168,244,150,200, 83,107,145,167,147, 64,100,217, 21, 72,189, 4, 70, 44, 71,179,122, 53,112,232,224, 73, 29,101,245, -231, 12, 78, 32, 71,127,176, 73, 33, 37, 4, 86,242,107,255, 43,204,109, 96,236, 16, 63,207,243,135,118,238,220,217,173,121,243, -230,202,182,109,219, 86, 43,108, 48,181, 59,119,238,204, 47,180, 14, 24,171,250, 95,243,222,238,234,234, 90, 87, 44, 22,247,237, -209,163, 71,221,145, 35, 71,226,241,227,199,216,177, 99,199,115, 31, 31,159,171,229, 10, 43,153, 44, 45, 55, 57,217,202,204,203, - 75,108,109,110, 30,127,242,196, 9,207, 14, 29, 59,146,232,232,104,164,165,165, 65,173, 86,227,193,195,135, 84,194, 48,177,196, -194, 66,244,244,254,125, 17, 35,147,165, 25, 17,212, 87, 21,172, 34, 92, 84, 89,107,150,187,179,117,245,185, 51,199, 84, 85,171, -213,254,217,217,217,172, 88, 34,145,184, 57, 89, 69, 25, 57,220,120, 60, 40, 40,168,119,135, 14, 29,228,225,193, 15,192,102,101, - 65,155,149, 1, 41,207,193,166, 65, 61, 48, 58, 13,160,213,195,181, 22,133, 58, 83,137, 75,183,158,234, 53, 26, 77,133, 59,181, - 23, 9, 44, 81, 9,103,128, 0, 32, 51, 51,131,220,220, 2,114, 51,179, 55,135, 16, 73, 5,249,173,252,232,163,143,218, 55,107, -214, 12,148, 82,108,218,180, 9, 58,157, 78,166,211,233,160,213,106,161,211,233,144,157,157,141,237,219,183, 99,253,250,245,215, - 0,252,110,128, 72,101, 37, 18,201, 56,150,101, 29,228,114,185,206,222,222, 94,186,119,239,222, 98,183, 17,245,235,215,135,169, -169,169,134, 16,162, 3, 0, 39, 39, 39,253,214,173, 91,197,189,122,245,146,150,198,231, 91,167,230,212,170,172,117, 27,133, 73, - 21, 47, 11,187,186,168,234,221, 14, 0,208,177,199,167,168, 90,195, 3,217,169,193, 94,106,213,171, 62, 82,113,134,245,227, 53, -113,161, 38,221,253, 71,230, 37, 95,124, 6, 96,139,129,239, 16, 58,116,232,128,206,157, 59, 23, 15, 7, 58, 56, 56, 64,171,213, -150,186,156,191, 60, 20, 57, 17,253,225, 7, 34,194, 92, 96,165,165, 69, 34, 0,251,146,226, 42, 58, 58, 26,209,209,209, 69, 86, -225, 10,243,168, 68, 94,153,120,123,123,143,104,208,160, 1, 78,156, 56,129, 59,119,238,196,157, 62,125,218, 53, 32, 32, 0, 94, - 94, 94, 35, 9, 33,179, 40, 45,219,135, 94,105, 67,122,173, 91,183,254,122,220,184,113, 8, 9, 9,193,152, 49, 99,210, 98, 98, - 98, 14,237,221,187,247,179,185,115,231,138, 58,119,238,140,132,132, 4, 44, 93,186,148,187,122,245,234, 50, 0,243, 42,200,247, -176,152,152, 24, 55,181, 90,141,244,244,116,176, 44,139,252,252,124,156, 60,121, 18,219,183,111, 79, 42, 20, 87,207, 13, 12,158, - 77, 64, 64,128,245,179,103,207,176,101,203, 22,104,181,218,111, 41,165,106, 66,200,239,211,167, 79,159,229,232,232,104,217,177, - 99, 71, 52,104, 80,224, 11,110,207,158, 61,152, 48, 97,194, 69,173, 86,219,189,130, 52, 88,225,228,228,244,197,152, 49, 99,106, - 78,158, 60, 25, 81, 81, 81, 22, 39, 78,156,104,121,253,250,117,226,238,238,142,180,180, 52,216,218,218, 98,213,170, 85,152, 52, -105,210,239, 0,146,110,221,186, 53, 34, 34, 34,226, 71, 74,233,134, 15,161,161,166,148, 67,126, 70, 8, 56,141, 53,234,215,241, - 69,125,255, 42, 56,125,254, 30, 0,160,125,191, 0,228,231,229, 96,235,214, 77,120,254,252, 25,196, 18, 9,172,108,156, 12,122, -135,180,217, 97,200,212, 37,160, 67,219, 70,232,218, 57, 16,191,111,219, 3, 86,175,195,103,159, 14, 69, 70,102, 38,182,109,219, -130,200, 23, 17, 16, 75, 36,176,181,115,249, 7,226, 89,182, 22,249, 32, 45, 88, 69, 21, 10,207,243,136,139,139,195,221,187,119, -241,242,229, 75, 40,149, 74,168, 88,142,223, 16,116,149, 39, 68, 26,203, 83,122,141,178,197, 94,133,223,230,224,184,184, 18, 30, -102, 45,173,173,173,101, 26,141, 10, 44,171, 47, 81, 83, 17,128, 0, 82, 49,224,236, 82, 21, 49,209, 49, 84,165, 86, 95, 44,183, - 7,166, 81,175, 58,114,104,223,184, 22, 45, 3,236,186,182,255, 1,135, 14,207, 70, 70,118, 54,212, 58, 9,242,212, 58,228,171, - 1, 43, 27, 31, 52,174, 83, 23,241,241,105, 8,190,115, 41, 87,172,201, 55,100, 2,232,179,159,191,253,212,251,211,175,166,194, -196,179, 37, 52, 79, 14,129,207, 77, 42,182, 96, 41,204,172, 97,227, 81, 11,153,121, 26,236, 59,119, 15, 0, 12,222,146, 37, 41, - 41, 41,223,217,217,121,255,216,177, 99, 23, 63,120,112,191, 42, 0,220,190,125,251, 69,124,124,252,140,164,164,164,124, 99, 50, -176,132,247,118, 98, 98, 98,114,203,219,219,251,101,215,174, 93, 45,122,247,238, 13,123,123,123,220,187,119, 15, 63,253,244,211, - 51,173, 86, 59,231,226,197,139,229, 14,233,104,181,218,184,123,135, 15, 91, 4,126,252,177,213,212,158, 61,151,142, 27, 55,110, -213,188,121,243, 36,222,222,222, 68,175,211,225,209,163, 71,116,231,142, 29,250,245, 51,103,174,148,153,154,138,111, 31, 57, 34, - 97, 53,154,184,255,239, 66,236,230,230,214,166, 91,151, 54,181,150,173, 88, 3,181, 42, 23,183,174,255,137,140,140, 20,108,220, -116,176,150,155,155, 91,155,216,216,216, 75, 6, 90, 50,246,252,246,219,111, 83,154, 54,104,208,160,154,187, 59, 30, 69,189,132, -140,231, 32,101, 89, 48, 58, 13, 68,172, 26,238,254, 20, 68,100,142,132,196,108, 44,216,189, 63,132,227,184, 61, 21,241,214,236, -246, 17,230,197,102,129, 16,130,229,205,253, 33, 51, 55,131,212,212, 12, 99,143,158, 47, 22, 85,199,231,205,132,204,204, 12,213, -155, 6, 24, 82, 9,229,155,155,155,223,125,244,232, 81, 99,127,127,127, 76,153, 50, 5,175, 94,189, 2,207,243, 72, 74, 74, 82, - 39, 36, 36,196,165,164,164,188, 2,112, 8,192,102, 67, 39,249,178, 44,235,112,239,222, 61, 0,144, 2,192,185,115,231,224,226, -226, 2, 75, 75, 75,100,103,103, 99,234,212,169,242, 57,115,230, 0, 0,238,222,189, 43, 41,154, 96, 92, 26, 30,221,123,178, 44, - 51,135,102,208,220,251,125,210,217,251,117,218,117,142, 65,199, 30, 35,113,246,248,239, 56,127, 58, 8, 54,226, 87, 47, 97,154, -115, 50,245,101,106,118,108,158,247, 47,181, 26,126,198, 36,228,157,254,101,124, 47,107,198,217,153,223, 55, 99,125, 86,102, 5, -105, 0,134, 97,138,231, 96, 21, 77,104, 55, 86, 92,149,196,220,185,148, 39, 32,196, 78, 38, 13,142,137,137,233,232,230,230,134, -164,164, 36,196,196,196, 32, 58, 58, 26, 49, 49, 49,168, 81,163, 6, 34, 35, 35, 33,149, 74, 31, 24, 72, 59,116,224,192,129,230, - 90,173, 22,187,118,237, 98, 1,244,216,183,111,223,221,198,141, 27,139,187,116,233, 98,190,110,221,186,161, 0, 54, 27, 17, 76, - 83, 11, 11, 11,169, 78,167,195,186,117,235, 16, 19, 19,211,134, 82,250,132, 16,242,203,192,129, 3,215,251,251,251,215, 8, 9, - 9,121,150,155,155, 59,150, 82, 26,108, 64, 93,244,105,163, 70,141,246,241, 60,239,217,161, 67, 7,211, 21, 43, 86, 88, 60,125, -250, 20,110,110,110,224,121,254,145,145, 91, 77,165, 7, 5, 5,101,180,104,209,194,186,112, 66,251, 2, 66,200,143, 12,195, 44, -238,219,183,175,229,206,157, 59,113,226,196, 9,104,181, 90,132,133,133,165,132,132,132,252, 12, 96, 89,121, 11, 48, 10,243,250, - 5,128,233,132,144,186,191,252,242,203, 96, 87, 87,215,161,215,175, 95, 39, 87,174, 92,193,242,229,203,217,217,179,103,139, 91, -181,106,133, 41, 83,166,188, 0,240, 89, 97,121,159,245, 1, 25, 66,244, 58,157, 22, 22, 54, 85,145,155, 25,141,148,152,235, 80, -154, 59,161,115,187,122,200, 87,105,113,236,200, 1, 4, 63,122, 8,145, 72, 4, 71, 39,119, 88, 89,219, 33, 60,252, 25, 0,132, -150,207,169,131,185,117, 21,228,102,197, 64,155,124, 15, 38,102, 14, 24,249,113, 31,228,171,116, 56,120,232, 0, 66, 66,130,193, - 48, 12,156,156,221, 97,105, 85,192, 73,104,185,156, 2,140, 21, 88, 12,195, 92, 56,117,234, 84,255,166, 77,155,138,159, 63,127, -142,231,207,159, 23, 13,117,177, 4,220,254,164,224,195, 67,202,105,252, 59, 20,249,202, 40,185,183,160,153,185,121,220,211,176, - 39,142, 25,233, 73,120,120,255, 42,158,135, 63,194,203,200, 39,208,233,212, 96, 68, 34,136, 24, 17,170, 84,173,141,171,215,174, -107,181, 28,119,163, 44, 78, 0, 72, 79,143,200, 49,115,244, 25, 52,127,222,172,227,147,166,126,111, 50,160,255, 6, 4, 63, 13, - 69, 46,235, 4, 74, 1, 39, 91, 83,212,175, 54, 13,113,241, 41,216,253,251,186,124, 94,167, 27, 86,210, 7, 86,105,156, 0,224, -152, 10,191,245,155,126, 31,181,121,251,206,239,167,126, 61,218,177, 87,223, 97,144,165,135, 66, 31,127, 15, 85, 27,119, 5,145, - 91,225,196,153,243,184,116, 55, 52,137,231,232,247,142,105,248,181, 34,206,146,200,202,202,186,147,148,148, 88,181,132,215,246, -170,114,185,226, 78, 5, 98,170,195, 27,126,129, 94,243, 16,207, 48,162,166,243,230,205,203,115,118,118,214,134,132,132,224,151, - 95,126,225,239,222,189,123, 65, 38,147,109,140,143,143,215, 84,196,105,175,215, 63,220, 57, 99,134, 95,147,190,125,233,144,175, -191,206,135, 92, 62,126,233,242,229, 51, 82, 50, 50, 92, 40,207,195,222,198, 38,118,233,204,153,139,250, 15, 28,152,241,248,234, - 85,147,235,135, 15,155,200, 88,246, 94, 69,225,124, 31, 40,143, 51, 54, 54,246,146,119,117, 15,108,221,188, 2, 58,157, 6, 9, -113, 5,134,171,212,180, 44,148, 39,174,222,228, 44, 28,252,239,251,221,156, 57, 55,191,155, 52,209,169,117,251, 14,136,126,248, - 0,186,244, 20, 16, 61, 11, 9, 17, 35, 47, 89,137,228,164, 92, 76,255, 99,111,114,110,126,126,223, 55, 29, 57,150, 21,206, 34, - 11,149,220,194, 28, 82, 83, 51,200,204,204, 95,179, 90, 41, 44, 44, 32, 51, 53,131, 88, 38, 43,109, 50,252, 91,156,185,185,185, -253,250,247,239, 31,124,251,246,109,235,207, 62,251, 12, 45, 90,180,184,175, 82,169,218, 82, 74,115, 42,155,158, 98,177, 56,185, - 97,195,134, 14, 18,137,132, 29, 53,106,148, 56, 53, 53,181,216, 19,122,110,110, 46, 78,158, 60,137,162, 37,247,143, 31, 63, 70, -237,218,181,203,228,252,108,218,163, 56, 0,243, 38, 15,112, 91,122,243, 97,194,120, 0,139,171,214,112,199,249,211, 65,184,114, -254,250,140,102,254,252,154,110,195, 26,255,168,108, 59,112,106,173,134,159, 49,102, 22,206,216,118,240, 0,243,228,222,150, 5, -249,249,143,170, 3,248,166,172,112, 18, 66, 64, 41,125,203, 37,131, 74,165, 50, 72, 92,149, 87,150, 40, 40,149,102,146, 89, 3, - 6, 12,104,122,235,214, 45,115, 51, 51, 51,232,116, 58, 80, 74, 81,189,122,117,136,197, 98,252,252,243,207,121,169,169,169,179, - 13,225, 52, 53, 53, 29,215,185,115,103,132,133,133,225,206,157, 59, 7, 40,165,193,132,144, 3,207,159, 63, 31,212,170, 85, 43, -252,254,251,239,227,202, 18, 88,101,113,242, 60, 95,210,231, 81,122, 97,217,125, 8,160,153,177,113, 47,116, 22,218, 18, 0,108, -109,109, 99, 28, 29, 29, 45, 30, 62,124, 8, 15, 15, 15,232,116,186,166,198,148, 37, 74,169,158, 16,178,246,226,197,139,115, 90, -182,108,137,113,227,198,181,185,120,241, 98,155,150, 45, 91,162, 86,173, 90, 56,127,254, 60,118,236,216,177,159,227,184,177, 0, - 50, 41,165,156, 49,121, 84, 40, 24,131,235,212,169, 51,212,221,221, 29,203,151, 47,215, 5, 7, 7, 79,152, 63,127,254,202, 7, - 15, 30,200,107,215,174, 45, 10, 14, 14,230, 43,147,239,127, 71,189,244,190, 56, 41, 33,223,126,246,249,248, 95, 62,255,108,168, -162, 81,195,250,200,207,142,133, 42, 55, 9,249, 57,137,248,121,243, 25, 16, 34,130,189,189, 51, 28,156,220, 16, 21, 21,141,107, -127,158,208,230,229,171, 86,201,244,252,226,242, 57,191, 46,224,108, 80,192,153,159,151, 12, 85,110,114, 49,167,131,131, 75, 33, -103, 20,174, 94, 63,161, 86,229,229,173,208, 82,178,228,239,140,251,127, 78, 96,101,100,100, 76, 24, 61,122,116,219,233,211,167, -219,178, 44,203,216,216,216, 32, 42, 42,138,221,191,127,127,122,110,110,238,132, 74, 61, 84, 34, 9,246,246,241,109,219,171, 87, - 47,246,163,143,122, 74,135,127,218, 69,108,239,224,128,172,204, 52,132,135, 61,192,211,208,123,240,246,173,135,185,243, 86, 2, - 86, 86, 21,174,212,201, 77, 10,191, 96,230,232,211,227,135,239,190,217,211,178, 77, 39, 11,223,218,245,164,245,171, 91, 66,167, -103, 17, 27, 27,139, 35,135, 31,234, 66,238, 94,201,230, 89,237,160,188, 20,195,182,202,185, 88, 48,129,119, 99, 29, 71,178, 99, -225,210,159,167,172,219,184,117,234,244,241,159,153,182, 10,232,136, 71, 65,191,227,192,241, 61,121,106,141,118,169,148,193,242, - 71,169, 52,223,216, 52, 80,171,213,250, 55,167,142,168,213,106,253,187,102,232,214,173, 91,145,152,152,168,139,137,137, 9, 98, - 89,246,144, 49,171, 17,215, 80,170,237, 75, 72,208,119, 1, 1, 93,190, 59,125, 90, 49, 98,218, 52,237,176,225,195,191,129, 70, -163,131, 76, 70,197,166,166, 34,200,229,146,199, 87,175,154,172,254,242, 75, 27,162,213,158,253,189,130,222,231, 27,120,239,171, - 8, 75, 88,176, 48,226,179, 73, 80,149,176, 96,221,184, 19, 14, 99, 44, 88,133,149,120, 52, 33,164,217,248,111,191, 59, 56,168, -115,251, 90,254,158, 85,228,246, 94, 85, 96,230,228,132,180,148, 20, 92,189,243, 84, 63,111,207,193,144, 66,113,101,144, 95, 24, -158,231,139, 87,185,181,159, 48, 29,132, 97,128, 66, 33, 80,180, 18,200,171,113, 11, 16,177, 24, 28,229,161,209,104,168, 1,225, -140, 37,132,244, 27, 54,108,216,185,227,199,143,139, 58,119,238, 92,255,208,161, 67,239,180, 28, 93,175,215,187, 21, 10,173,108, -165, 82, 41, 30, 57,114, 36,244,122, 61,242,243,243,145,149,149,133, 39, 79,158,104, 6, 12, 24, 32, 47, 20, 14,250, 65,131, 6, - 85, 88,127,172,216, 23,171,158, 60,192,109,141,141,248,213,224,236,212, 96, 47, 27,241,171,151,205,252,249, 53, 43,246,197,170, -127,152,100, 53, 63,245,213,165,240,132,188,211,191,108, 59,120,128,249,164, 79, 63,206,205,236,217, 12,133, 3,221,223,174,103, -133,141,208, 91, 78, 69,223,193, 3,254,107,208,233,232,125, 91, 91,235, 69, 77,154, 52,153,181, 98,197, 10, 51,123,123,123,176, - 44,139, 23, 47, 94, 96,237,218,181,121, 25, 25, 25, 11, 40,165,119, 13,225,242,241,241,241, 18,139,197,216,189,123, 55, 0,172, - 45, 60,189,246,208,161, 67,131, 62,251,236, 51, 84,169, 82,197,143, 16, 34,167, 70,188, 71,148,210,226, 81,133,247,220,176, 71, -174, 94,189,218,213,201,201,137,156, 60,121,146,101, 24,230, 88, 37,104, 22,237,216,177,163, 57,207,243,237, 91,181,106,133, 26, - 53,106, 20, 89, 60,113,248,240,225, 61, 28,199, 13, 43, 79, 88, 25,130, 39, 79,158, 92,137,137,137, 25, 60,101,202, 20,233,138, - 21, 43, 86, 78,158, 60, 89, 30, 19, 19,131,208,208,208, 91, 31, 98, 35, 29,246, 44,109,123,157,106,142,167,231,205, 95, 49,167, -122, 53,175, 49,163, 70, 14,100,124,188,107, 35, 47, 43, 22,182,118,142,112,115,175,138,148,228, 84,156, 58,117,146, 75, 77,205, -252,141, 19,145, 31,158, 61, 75,139,127, 23, 78, 87,183,170, 72, 78, 78,198,137, 19, 39,184,204,140,236, 77,208,139,230,133,190, -202, 72,130, 0,227,222, 41, 67, 38,212, 22,174, 36, 92, 93,224,166,161,192,170,149,145,145, 49,129, 82,154,106,168, 18, 39,111, - 58, 63, 27, 48, 64,138, 63,255,172, 11,189,190,153,149,185,121,123,202,243,141,235,213,171,103, 54,112,224, 64, 62, 32,160,133, -204,194,194,130,248,249,249,231,100,101,102, 90, 23,244, 44,193, 85,164,154,139, 54,123, 22, 51,146, 14, 28,167,171, 83, 16,214, -138, 55,123, 54, 68,137, 87,115, 36,246, 98, 30,115, 69,132,140,228, 41,253,157, 21,225,135,200, 36,154,242, 46, 61,155,146,155, - 51, 23,110, 13, 51,211,216,222, 82,201, 33, 66,145,136,217,230,234,234, 58, 43, 58, 58, 58,197,208, 74,172, 52,206,162,173,114, -122, 76,156,168,111,216,169, 19,107,227,238,206, 83, 74,185,151,247,238,145, 27, 71,142, 72,110, 28, 57,162,208,107, 52, 23,246, - 81, 26,105, 8,167,139,139,203,162, 99,199,142, 25, 60,183,170,103,207,158,161, 69,243,178, 12, 77,207,234,213,220, 78, 87,243, -114,237, 84,205,171, 96, 24, 58,242,101, 60, 34, 95,198,157,137,136,140,237, 92,153, 60, 42,185,217, 51, 41,116,197, 64, 13,216, -236,249, 77, 78, 59, 59,187,187, 98,177,216,205,152,151,146,227,184,248,148,148,148, 6, 6,134,115,136,151,151,215,226,168,168, -168,131, 28,199, 77,122, 31, 61,111, 66, 72, 11,134, 97, 78,112, 28,103,242,166,133,171, 72,132, 17, 66, 60,229,114,249,107,147, -220,203,227, 92,250,157,255,156,230,173, 90,245,185,113,229,202,161,169,243, 67, 94,155, 23, 52,190,143,205,167, 67,190,154,176, -100,215,186,213,211,214, 28, 74,255,173, 66,235,178,163,227, 69, 0,222, 69, 66,203,128,180,108, 84, 25,171, 3,145,146,198,118, -150,118, 63,234,116,186,122, 0,168, 84, 42,125,152,154,154, 58,187, 52,113, 85, 22, 39,195, 48,139,107,214,172, 57,225,233,211, -167,187, 88,150, 29, 85,226,250,101,213,171, 87,255,234,213,171, 87,107,245,122,253, 84, 35,222,119,139, 86,173, 90,101,172, 94, -189, 90, 52,105,210, 36, 92,186,116,201,134, 82,154,241,158,242,221,201,218,218,250, 87,142,227,106, 81, 74,143,229,228,228,204, -164,148,230, 25,203, 73, 8,145, 2,152, 92,173, 90,181, 9,110,110,110,142,177,177,177, 49,145,145,145, 75, 0, 24,236,147,170, -130,112, 54,236,219,183,239,141, 21, 43, 86, 72,220,221,221, 17, 19, 19,131,201,147, 39,235, 15, 30, 60,216,156, 82,122,239, 67, -179, 96,149,132, 95, 53,251,106,148,225, 22,212,243,175,213,255,227, 97,125,200,141, 59,207,112,243,198,117,196,198,199, 31,226, - 69,162, 89,225,225,169,207,222,149,243,250,157,112,220,188,126,157, 38,196, 39,236, 3,101,190, 11,141, 76,137,252,167,226,254, -159, 20, 88,239,163,160, 16, 67,188,203,186,184,184, 32, 45,173,169, 66, 44, 14,144,203,229,109, 69, 34,209,229,244,212,212,175, - 13, 21, 88,255,196, 75, 82,189, 58,145,149,181,117, 64,165, 42,241, 55, 38,168, 87,134,211, 24, 14, 67, 57,203,218,236,153,215, -104,226,109, 89,246,238, 26, 90,118, 26,188,201,233,230,230,246, 57,207,243, 94,134,134, 73, 36, 18,189,140,141,141,221, 92,153, -244,244,241,241,161,207,158, 61, 51,104,146,228,135, 80,225,254, 91, 56,183,175,172,235,226, 91,167,230,212, 71,247,158, 44, 43, - 28, 62, 44,198, 15,227,109,204, 3,218, 5,206,190,122,254,226,143,115,215,164,231,124,104,113, 39,132,136, 74, 19, 22, 69,107, -209,141,229,148, 74,165,191, 52,105,210,228,243,155, 55,111,254,202,178,236, 23,255,171,113, 47,220,218, 72, 70,141,179,114, 27, - 20, 78, 66, 72, 67,134, 97, 38,251,249,249, 53, 13, 13, 13,189,197,113,220,138,242,196,213,135,246,110,250,121,219, 54,162,180, -216, 89,246,130, 39,207,211,110,191, 55, 78,202,115, 60,101,230, 63,141, 76,189,255, 79,199,253, 67,131,248,159,122, 80,145, 64, - 42, 23,241,241, 49, 0, 98, 0,236,251, 95, 77, 48, 67,196,149, 81,233, 82, 9, 81,244,119,112,188,137, 66, 1,117,253,125,112, -189, 41,150,254, 78,132,135,135, 19,225,181,254,223,195,199,147,130,227, 1, 76,108, 84,138,107,170, 66, 81, 53,181,237, 71, 31, -102,220,203,178,218, 84,118, 35,102,157, 78, 55,134, 16, 50,217,152,213,135,255, 79,241,166, 0, 52,127, 19,247, 61, 0, 67,254, -171,239, 83,232,179,180,187, 0,122,254,175,115,254,215, 33, 18,146, 64,128, 0, 1, 2,254,117,162, 77, 37,164,130, 0, 1,255, -219, 32, 0, 58,148,241, 2, 27,108,250, 35,132,116,168, 68, 5, 17, 36,112, 10,156, 2,167,192, 41,112, 10,156, 2,231,127,139, -243,191,212, 19,250,219, 14, 0, 29, 4, 78,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255,107,135, 48, 68, 40,224,111,199, -207,125,137,235,207,125,137,235,223,117,189, 0, 1, 2, 4, 8, 16,240,191, 6,241,255,119, 0, 8, 33, 46, 40,112,144, 87, 29, -192, 83, 0, 87,140, 89,118, 92, 10,159, 29,128,129,132,144, 1,133, 22,186,125, 0,246, 86,228, 82,162, 8, 38, 38, 38, 73,106, -181,218, 1, 0, 20, 10, 69,178, 90,173, 46,185,231, 0, 41,113, 0, 0, 45, 58,202,155,176, 90,181,106,213, 36,141, 70,227, 96, -192,227,179, 40,165,193, 34,145,232,145,153,153,217,249,167, 79,159, 30, 55, 38,238,237,218,181, 27,193, 48,204, 2, 0,224, 56, -238,219,243,231,207,111,253, 27,243,173,169,187,139,211,239, 58,189,142, 77, 74, 73,159, 77, 41, 61, 82,218,117,235,123,146, 69, - 98,130,169,133,223,151,142, 61, 86,190, 43, 10, 99,175, 47, 39,124,141, 36, 18,201, 56, 71, 71,199,174,177,177,177,119, 1, 76, -163,148, 86,232,133,216,195,195,227, 99,177, 88, 60,140,227,184,106, 12,195, 68,178, 44,187, 35, 58, 58,122,187, 80, 85, 8, 16, - 32, 64,128,128,191, 77, 96,213,180, 35, 78, 20, 24, 12,130,142,160, 56, 75,128,221, 97,169, 52,209,208,251,187,215, 36,122, 61, - 91,240, 76,169, 8,220,201, 8,209,166,238,221,187,187,125,253,245,215,104,209,162, 5,110,222,188,217,252,183,223,126,251,148, - 97,152, 96,158,231, 47, 0,184, 73,169, 65, 46, 17, 76, 1,244, 2, 48,180,107,215,174, 29, 22, 44, 88,192,212,174, 93, 27, 42, -149, 10, 23, 47, 94, 12, 88,186,116,233, 42, 66, 72, 16,128,157, 0,142,148,231,219, 69,173, 86, 59, 20,105, 37, 66,136, 67,191, -126,253,238,148,220, 35,142, 16, 2,145, 72, 4, 74,233, 13, 0, 55,120,158,191,177,111,223,190,152,154,132, 52, 29,237, 37,221, - 63,225,133,246, 45,159, 71, 26,141,198,225,240,146,133, 16,203,229,208,228,100,163,249,200,191, 86, 86,159,157, 51, 21,132,103, -193,128,102,180,157,191, 42, 24,192,163,248,248,248,224, 54,109,218,188, 52, 54, 51, 25,134, 89,112,234,212, 41,103, 74, 41, 58, -119,238,188, 0,192,223, 34,176, 8, 33,242,102,141,234, 93, 56,118, 96,151, 34, 55, 61, 9, 93,122, 13,218, 65, 8, 25, 65, 41, - 61,240,154, 88,234, 70, 28,137, 24, 83,191, 92,184,147, 1,128,245,179,134, 78, 91,213,153,172,153,120,154, 38, 18, 66,218, 2, -197, 91, 43, 45,161,148, 94, 88,223,141, 56,130,193,244, 47, 23,238, 36, 0,176, 97,214,208,169,235,187,145,213, 99, 79, 24,183, - 74,146, 16, 50,118,196,136, 17,107, 22, 44, 88,192, 56, 59, 59, 35, 46, 46,174,139,159,159,159, 15, 33,196,175,188,201,193, 94, - 94, 94,123,218,118,234, 93,173,239,128,193, 38,118,182,214,136, 75, 72,177,220,187,235,183,209, 94, 94, 94, 93, 95,190,124, 57, - 72,168, 46, 4, 8, 16, 32, 64,192,123, 19, 88, 13, 93,136, 73,158, 14,189,197, 12,249,184, 85,211,218,237,135,116,107, 37,242, -171, 85, 3,161,143,159,116, 58,114,254,214, 82, 63, 71,209, 57,150,163,219, 77,165, 56,124, 47,190,252,149, 45,122, 22,226, 51, -135,119, 2, 0,198,126, 58,148,185,125,251,118,141,134, 13, 27, 22,239,160,222,190,125,123,180,111,223,158,172, 95,191,190,222, -153, 51,103,234,109,217,178, 69, 71, 8,249,157, 82,250,103, 57,141,233,184,234,213,171, 47, 93,179,102,141,188, 77,155, 54,144, -203,229,197,255,153,153,153,161,103,207,158,232,217,179, 39, 19, 31, 31,223,249,216,177, 99,157,151, 44, 89,162, 37,132,124, 67, - 41, 93,107, 72, 2,205,153, 51,167, 97, 41,167, 79, 17, 66, 34, 88,150,189, 95,183,110,221, 24, 95, 66,106,140,233,214,226,236, -216,150,222,166,101, 38,180, 76,134,109, 35, 10,218,232,146, 2,235,229,249,147, 48,179, 48, 79, 83,154,155, 7, 3,120, 4, 32, -152, 82,250, 40, 34, 34,226, 73, 45, 66,234, 53,179, 22,253,190, 37,157,171,107,132,200, 66, 76, 76, 12, 44, 45, 45, 77, 2, 3, - 3, 19, 8, 33,223, 95,184,112, 97,211,123, 46, 55, 77,191,159, 58, 86,154,241, 42, 24,137, 97, 55, 48,121, 64,128,114,226,207, - 71,127, 4,112,160,124,225, 35, 18, 45,185,206,207,152, 8, 76, 0, 48, 59, 45, 45,173, 13, 0,216,218,218,202, 0, 92, 88,121, - 11,221, 38,181, 36,149,118,179, 64, 8,145, 50, 12,179,110,219,182,109,159,125,252,241,199, 5, 91, 60, 92,189, 10, 51, 51, 51, -204,155, 55,175,202,148, 41, 83, 22,161,224,217,165, 90,174, 2, 59,246,174,186,106,233,143,181,114,210,179, 52, 27,215,237,189, -227,234,239,203,140, 25, 55,197,124,173, 94,235,228,225,225,241,177, 96,201, 18, 32, 64,128, 0, 1,239, 69, 96,249,218,147,173, -173, 26,120, 15, 28,210, 61, 64, 94,199,191, 54,164,242,191, 28, 59, 55,108,212, 8, 13, 27, 53, 18,205,200,205,233,120,251,206, -189,142,251,207,220,212,248,218,147,189, 79, 83,232, 8, 67, 31, 94,180, 89,236,130, 94,142,237,242, 50,147, 21, 0, 96,106,229, -160,158,117, 56,241,124,203,150, 45,225,230,230, 38, 61,119,238,220, 40, 0,127,150, 67, 51,235,233,211,167,114,134, 41,223,143, -169,139,139, 11,250,247,239, 15, 95, 95, 95, 89, 96, 96,224, 44,252,181,109,197,107, 80, 40, 20,201,132, 16, 7, 0,176,177,177, -225,190,255,254,251,135,180, 16, 0,192,243,252, 13,134, 97,110,240, 60,127,235,200,145, 35,177,181, 9,113,232,209,208,247,202, -216,225,253,149,116,255,170, 50,197,129, 58, 59,187,212,243, 74, 51,211, 20, 19, 83,211, 96,185, 82,241, 8, 64, 48,128, 71,174, -174,174, 79,106, 19,226,214,204,215,235,204,250, 73, 67,205, 13, 73,203,134, 13, 27,250,180,109,219, 86,193,113, 28,242,242,242, -176, 97,195, 6, 75, 19, 19, 19,203,174, 93,187,206, 5, 80, 44,176,252, 8,169,211,207,133,249,226,251, 56,246,171, 74, 8, 24, -171, 86,205, 27,189,250,121,241, 92,139, 70,205, 90,225,217,133, 63,144,158,158,131,172,204, 92,240, 60,255,214,206,191, 99, 79, -208,164,245, 61,201,210,245, 51,135, 78, 39, 34, 17,169,215,103, 26, 62,114,202, 26, 79, 8,121, 12, 64, 34,147,201,138,203, 33, - 33,196,197,223,223,127,105,141, 78,173,176,225,219,225,160, 60, 79, 1, 44, 53,212,122, 69, 8,113, 48, 55, 55, 63,114,230,204, -153,166,141, 27, 55,198,205,155, 55,241,226,197, 11,140, 29, 59, 86,251,213, 87, 95, 73, 63,249,228, 19, 50,121,242,228,175, 9, - 33,251, 41,165,215,222,122, 17,196,226, 97,189,250, 14,146,229,102,102,171,117, 90,157,214,214,214,146,170,243,212, 57,105, 25, -217,170,129,131, 63,211, 61,186,119,115, 24,128,183, 4,214,187,164,167, 0, 1, 2, 4, 8, 48, 24,141, 1,216, 3, 72, 1,112, -231,141,223, 40,252,142, 82,126,167,162, 96, 90,143,109, 9,174, 84, 20, 76,239,177, 71,129,143,206,219, 0, 50,222,119,128, 9, -165, 20,133, 14,133,139, 28, 11,147, 18, 2,139, 62, 77,161, 96,211, 35,193,165, 69,128,203,121,123,123, 35,162,176, 66,150,138, - 67, 76,228, 19,140,152, 56, 15, 79, 83,202,246,160,221,189, 38,209, 91,202, 32, 54,151, 2, 82,165,149,102,200,226,211,215, 27, - 53,106,164,158,213, 70,212,125,209,250, 2,203,214,228, 47,134,162,249,164,253,167, 35, 35, 35, 89, 23, 23, 23,124,252,241,199, -160,148,246, 40,167, 97, 77,202,185,115,221, 33,172, 71, 11, 52, 73, 42,125, 26, 84,120,120, 56, 46, 95,190,140,232,232,104, 84, -171, 86, 13,163, 70,141, 74,166,148, 58,150,197,217,165, 75,151, 75, 75,150, 44,105,189,124,249,242,224,109,219,182,181,164,180, -244,189, 6,253, 8, 49,173, 87,197,233,206,150, 69,211,171,145,147,191, 75,242,163,159,195,234,146,138,148, 34,238,104,124,252, - 95,105,247,147,143, 51, 76, 45,205, 97,106, 97,150,244,201,153,187,197,150,171,194,207,167, 13, 9,177,112,115,182,189,187,123, -229,108, 87,209,249, 61, 10,233,198, 27,164, 34,113, 21, 24, 24,120,125,193,130, 5,214,241,241,241, 8, 10, 10, 66,149, 42, 85, -144,159,159,143, 21, 43, 86, 36, 92,185,114,197,165, 48,188,142, 77,124, 61,131, 55, 76, 25,105, 41, 29, 53, 71,110,108, 97,145, -138,197,107,175,159,218,243,149,165,156, 34, 51,254, 5, 34,158, 60,198,237,208,151,250,237,103,131,185,108,149,166, 59,165,244, -124,105,247,141, 11, 32, 53, 46,196,219, 31, 59,117,241,142,183,179,179, 51, 70,143, 30,141,196,196, 68, 80, 74,193,243,124,241, -138,139, 89,179,102,193,199,199, 7, 35, 6,127,148, 47, 79,191, 23,120, 44,212,176,253,222, 8, 33,254,158,158,158,103, 46, 92, -184,224,232,234,234,138, 43, 87,174, 32, 49, 49, 17, 78, 78, 78, 56,119,238, 28, 22, 47, 94,188,237,203, 47,191, 28,176, 96,193, - 2,197,144, 33, 67,226, 78,159, 62,237,254,230,156,185, 42, 85,170, 60, 57,118,250,138,217,185, 67,167, 35,173,205, 77, 97,230, -104, 3,198,220, 90, 5, 10,149,163,189,165,116, 80,239, 14,213, 95,189,122, 85,235,141,252,127,167,244, 20, 32, 64,128, 0, 1, -175,213,229,165,106,145, 34, 9, 65, 8, 57, 94,168, 7,180, 0,100, 37,126,131, 16,114, 28, 0,222,252, 61, 99,198,140, 89,139, - 22, 45,122, 92,244,187,232,154,153, 51,103,214, 94,188,120,241,194,230,205,155,239,190,126,253,250,247, 0,158,255,163, 22,172, - 34,176,177,183, 33,245,238, 10, 9,167,135, 62,245, 41,248,204, 40,192,212, 9, 42, 98,134,180,132, 40,132, 93, 57, 80,160, 5, - 43,192,159, 97, 84, 66, 8, 57,247,228,201, 19,132,133,133, 33, 38, 38, 6, 74,165,242,173,235,174, 94,189, 10, 19, 19, 19, 56, - 59, 59, 27, 20, 9,170,125,221, 89,112,112, 67, 79,152, 53,111,131,212, 33, 99,112,238,220, 57, 36, 39, 39, 67, 42,149, 66, 38, -147,129,101,217, 10,249, 68, 34, 17, 41,204, 4, 10,160, 84, 47,204,129,132,136,221,108,204,142,173,159, 59,193, 75,116,227,184, - 68, 21,253, 28,241,106, 14, 86,134, 88,238,204, 76,161, 52, 85, 38,152,152, 40,223, 20, 87,207, 26, 18, 34, 49, 53, 83, 28,251, -125,254,100, 39,230,254, 57,133,234,121, 48,164,165,112,116,236,216,113, 52,128,185,148,210,204,192,192, 64,199, 5, 11, 22, 88, -199,197,197, 33, 52, 52, 20,123,247,238, 77, 97, 11, 34, 74, 40,165, 63, 0, 64,115, 66, 20, 30,246, 86,167,215,206,153, 96,142, - 11,123,100, 24, 53,199,232,194, 98, 89,171,231,159,253, 62,249,242,171, 53, 19,122, 34, 47, 71,133,157,103,239,227,212,189,136, -143, 0, 92, 45,111, 94,219,218,171,244, 57, 33,164,125,223,190,125, 31, 92,190,124,217,110,203,150, 45, 96, 89,182,212, 99,203, -150, 45, 8,186,114,111,188,161,155,233, 18, 66, 92,188,188,188,130,110,221,186,101,175, 84, 42,113,246,236, 89,100,102,102, 22, - 91,174, 70,140, 24, 65, 50, 51, 51, 7,111,216,176,161,223,171, 87,175,150, 93,185,114, 37, 13, 5,219, 54,189, 86, 16, 24,134, -137, 96, 89, 93, 77,151, 90,222,204,128,158,173, 90,229,166, 5,195,204,182, 46,110, 62,136, 56,158,149,153,174, 98, 24, 38,162, -228,245,239, 35, 61, 5, 8, 16, 32, 64,128,209, 34,236, 56,165,180, 71, 73,193,244,166,208, 42,250, 94,116,221,162, 69,139,122, -148, 20, 95, 0,176,120,241,226,133, 37,126,231,255, 29, 97, 21,255,165, 23, 8, 5, 16, 88,218, 69,154,208,131,208,132, 29,129, -212,179, 37,100,190, 31,129,241, 12, 64,116,240, 5, 60, 60,185, 18,177,143,175,130,242, 28,156,125,154, 24,250, 76,117,205,154, - 53,161, 86, 23, 76,189,210,104, 52,144,154, 90,171, 39,127, 49, 84, 1, 0,188, 88,161, 41,161, 50, 13, 34, 52,111,217, 22, 77, -146, 40,110, 59, 22, 8,222, 34, 75,214,252,145, 35, 33,149, 74, 33,149, 74,139, 55,133, 53, 68, 96, 21,238,161, 85,180, 91, 61, - 45,237,255, 70,114,201,206,221,115,199, 53,145,191,122, 36,211,132,220, 64,188,134,167,199,146,184, 63, 13,217,209, 88,105,170, -140, 51, 81, 42, 31,153,152,153,150, 20, 88, 17, 0, 64, 37,146,237,127,252, 48,174,174,105, 82,164,169,250,206, 57, 36,168,121, -157, 69,233, 52, 63,156, 60,121,210, 65, 44, 22, 59,113, 28,135,232,232,104, 60,126,252, 24,171, 87,175, 78,202,201,201, 9,188, -119,239, 94,120,137,240,138, 26,155,200,246,110,159, 55,161,170, 56,248,146, 66, 19, 17, 82,170,104, 43, 15,246,117,250,116,254, - 40,176,222,159,163,135,127,139,222,221, 58,225,147, 64, 63,250, 50, 62, 93, 13,224,172, 33, 27, 75, 83, 74,227, 8, 33, 29, 91, -183,110,189,163,126,253,250,181, 40,165,168, 83,167, 14, 6, 15, 30,140,237,219,183,227,225,195,135,200,206,206,214,157, 57,115, -102, 21,165,244, 55, 3, 95, 52,165,181,181,245,169,243,231,207,219, 43,149, 74,156, 57,115, 6, 42,149, 10,206,206,206,248,234, -171,175,100,139, 23, 47,222,150,157,157, 61, 96,209,162, 69,138,151, 47, 95,174, 61,125,250,116, 21, 0, 34, 74,233, 91,133, 64, -171,213,110,218,185,125,235,154,175,198,125,237,122,254,102,232, 57, 77, 94,142,165,187, 71, 76,142,157,141,153,217,202, 37, 63, -184,107,181,218,209,165,167,231,197, 74,165,167, 0, 1, 2, 4, 8, 40,205,118, 81,182, 22, 41, 41,154,222, 20, 89,198,136, 51, - 0,170, 25, 51,102,204, 34,132, 28, 47,180,112,169, 0,196,255, 45, 2,139, 82,122,137, 16, 2, 74,233,165, 50,175,228, 57,232, - 94, 94,134,238,229,101,152, 52, 31,143,163,139,134,188, 17,105,190,210,129,232, 57,239,236,121,141, 70, 35,222,186,117,107,241, -188, 44, 0,224, 56,238,189,231,158, 33, 2, 11,133, 91, 8, 21, 10,172,183, 2,225, 37, 55,187,180,105,210,128,102,182, 92,190, - 68,123,245, 24,226, 52, 60,187,236,185, 46,255, 78, 38, 93, 50,171, 12,194,195, 19, 71, 35,230, 74, 16,148,102,102, 49,159, 93, -126, 84,210,106, 21, 12,224, 5, 0,120, 41, 44,206,237,157, 60, 36,192, 73, 10,169,246,207,125,136,215,240,154, 95, 94,233,127, - 91, 93,122, 33, 3,165, 20, 47, 94,188, 64,126,126, 62,174, 95,191,142, 3, 7, 14,164,188, 41,174, 10,195,123,241,215,105,195, -154, 90,228, 36, 74,181,119,130, 16,175,225, 53, 62,134,136,170,186,125, 90, 74, 69,228, 12, 17, 49, 38,221, 90,249, 97,226,231, -125,176,242,215,163,172,214,161, 85,143, 53, 71, 78, 12,204,213,232,102, 25, 34,174, 74,132, 57, 24,128, 31, 33, 68, 14,160,237, -224,193,131, 79,244,235,215, 15,151, 46, 93,194,177, 99,199,188, 1, 36, 20,190, 4,243, 0, 56,162, 96,117, 97, 89, 59,185,139, -164, 82,233,238,160,160,160,218, 46, 46, 46, 8, 10, 10,130, 74,165,194,151, 95,126,169, 29, 55,110,156,116,196,136, 17, 36, 43, - 43,171,216,114,117,253,250,245,180,178,196, 21, 0,196,198,198,158,172, 82,165, 74,203,214,173, 91,247,174,234,237,107, 17,153, -147,157,108,166, 84,152, 92,185,116, 65,122,239,206,141,181,177,177,177,183, 75, 79,207,115, 6,167,167, 0, 1, 2, 4, 8, 40, -183,141,168, 88,139,188, 97,137, 50,146,191,232, 62,201,162, 69,139, 30, 47, 90,180,232, 53, 11,215,223,101,193, 50, 10, 92, 86, -244,219, 1,231,121, 99, 34,249,214, 57,107,107,107,214,196,196,228, 53,129,197, 27,200,153,126,104, 23, 34,199, 14, 45,182, 92, - 21, 89,178,208,101, 68,165, 4, 86,145, 5,171,112, 50,244,107,129, 48,117,244, 29,178,123,120,199,150,126, 85, 93, 69,250,189, -171, 17,155,207,170,231, 62,213,169,195,114,232,255,177,247,213,225, 85, 28,255,215,103,118,175,231,222,184, 11,154,144, 16,131, -224, 4,119, 90,220,165, 56, 20, 41, 86,164,197,189, 72, 11,165, 64,161,197,181,184,187,187, 75,144, 16, 66, 2, 33, 33,238,158, - 92,223,157,247,143, 72, 67, 26,185, 1,250,254,190,109,239,121,158,125,238, 93, 59, 59, 59, 51, 59,115,230, 51, 51,159,233, 22, - 84,194,224,233, 66, 78,189, 14, 82,185,236,189, 76, 33, 47, 46,174, 34, 0, 64,225,224,209,123,215,192,214,173,252,106,186, 49, -250, 3,171, 17,147,171,203,158,249, 74,171, 13,203,161, 71, 75,137,195, 5, 29, 58,116, 88, 96,109,109, 45, 93,183,110,157,121, -149, 42, 85,160,215,235, 53,197,197,149,220,190,230,192, 3,195,190,104,234,225, 96,201,232, 14,255,138, 40, 37,151,187, 54, 76, -183,107,163, 1,226,202,198, 92,113, 97,227,178,111,100, 38, 18, 33, 84, 42, 21, 86,252,118, 24, 23,239, 4,118, 73,122,113,236, - 2,128, 11,159,144,239, 70,117,233,210,229,151,197,139, 23, 67,167,211, 97,228,200,145,120,251,246,237,197,215,175, 95,175,173, - 92,185,242,244,239,191,255,222,201,193,193, 1,253,250,245, 19, 1, 24, 86, 10,199,143,123,247,238,237,226,231,231,135, 27, 55, -110, 32, 61, 61, 29,142,142,142,152, 48, 97,130,120,249,242,229,187, 50, 51, 51,251, 46, 91,182, 76,250,238,221,187, 50, 45, 87, -197,242,198,146, 77,191,124, 51,173, 65,227,102,204,155, 55, 33,250,200,134, 45,153,107,151, 79,221,180,180,180,220,245, 65,124, - 14,255,178,194,241,105,132, 17, 70, 24, 97,196,103,195, 25, 0,157,139, 91,181,138,139,175, 2, 11, 85,209,253,226,215,231,159, -255, 91, 22, 37, 23, 20, 9,160,193,211,227,249,156, 36,131, 68, 83,113,116,246, 36,186, 49, 13, 32,152,221,146,129, 72,110,169, -234,186,248,210,213,210,174,149,203,229, 6, 91,176,120,181,170, 60,193, 84, 33,129,197,178, 44, 1,112,158,231,249,123, 69, 5, -150,133, 67,205,150,115,103, 76, 94,211,172,247, 23, 76,194,215,254, 72,207, 86,171,191, 15,210,243,209,185,101,139,171, 60, 85, -170, 11, 55,145, 43, 94, 72,229, 31,140,187,138, 4, 0,153,125,141,134, 51,167, 76,252,173,205,192,174, 36,105, 92, 51,164,165, - 43,213,211, 95,234, 73,140,146,246, 13,162,244, 90, 73,116, 87,174, 92,217, 4, 96, 83,171, 86,173, 18,228,114, 57,178,179,179, -255,146, 6, 5,225,109,218,251, 11, 38, 97, 84, 35,164,230,104,213,223,191,212, 35, 86,201,239, 47, 79, 92,217, 90,152, 94,216, -184,244, 27,147,216,232, 8,136, 68, 34, 40, 20, 10, 92,186,253, 2, 73,129,199, 63, 69, 88,129,101,217,133,179,103,207, 94, 48, -126,252,120,164,164,164,224,212,169, 83,232,212,169, 19,246,237,219, 87,229,236,217,179,191,180,110,221, 26, 44,203,226,244,233, -211,208,233,116,161,165,164,103,207,209,163, 71, 79,239,221,187, 55, 30, 62,124,136,184,184,184, 15, 44, 87,233,233,233, 3,126, -251,237,183,222,225,225,225,229, 90,174,138,161, 97, 53,183,186,162, 89,243,126,134, 58, 55, 81,144, 20,115,255,198,149, 75,204, -189,212,212, 84, 19, 0, 25, 31, 27,159, 70, 24, 97,132, 17, 70, 24,108,128, 41, 77,139, 36,229,139,167,164,146,246,139, 8,171, -146,246, 73, 49,171,151,166,216,249,103,255,103, 22, 44,129,189, 47,244, 9,129, 69, 4, 86,226, 7,231,165,166, 86, 6,117, 17, -234,244, 16,108,220, 94,232, 7, 75,154,146,146, 34,181,177,177, 81, 21, 21, 6, 38, 38, 38,112,114,114, 66, 90, 90, 26, 54,111, -222, 12, 0,229, 13,118,214,155,245, 30,140,134, 3, 71,226,145,139, 24, 84,167, 45,180,100,109, 28, 62,252, 3,145, 37, 18,137, - 10,198,126,149, 87,217, 62, 32,132, 68,240, 60,127,143, 82, 74,235,121,184, 46,145,202,229,195,235,215,118,179,249,246,155, 81, -194,240, 68, 53,174, 54,155,149,126,248,199, 25,138, 40,170, 24,255,158,166,223, 41,135, 47,172,251,239,123,138, 91,174,162,235, -122,184,206,145,154, 72,191,110,236,235,225, 48,115,234, 55,194,240, 4, 53,185,218,240,251,204, 35, 63,125,111,242, 14,166,211, -163,104,218, 53, 3,146,103, 65,167, 78,157, 22, 80, 74, 41,207,243,243, 0,160,104,120,167, 78,248, 90, 24, 22,175,194,149,102, -115,210,142,252, 56,195, 52, 10,101,135,215,182,118,207,166,246,150,102, 23, 54, 46, 27,111, 18, 23,243, 30, 18,137, 4,166,166, -166,136, 74,200,128, 80,192, 42, 63, 37,179, 17, 66, 36, 45, 91,182,156,241,205, 55,223,224,197,139, 23, 24, 55,110, 92, 92,100, -100,228,209, 3, 7, 14,140,155, 63,127,190,160, 99,199,142,136,139,139,195,202,149, 43,117,183,111,223, 94, 6, 96,101,137,249, - 81, 32, 24,181,100,201, 18, 26, 27, 27, 75,222,189,123, 7, 71, 71, 71, 76,156, 56, 81,188,108,217,178,194, 49, 87, 21,177, 92, - 21, 32, 58, 58,250,134,187, 91,101,116, 59,183, 6,122,157,250, 70,122, 74,228,205,224,176,180, 27, 86, 98,241,180,102,245,106, -127, 84,124, 26, 97,132, 17, 70, 24,241, 89,240,168,156,253,255, 57,148, 39,176, 66,127,157, 51,194,125,196,248,239, 32,171,210, - 20,234, 87,199,192,103, 39, 20, 90,176,164, 10, 75, 88, 85,246, 66,122,142, 26,135,174, 60, 1,128,208,138, 60, 60, 43, 43, 11, -245,234,213,195,134, 97, 30,109, 84, 89, 41, 82, 25, 0,181,196, 76,117, 92,220,252,234,217,179,103,115,121,158,223, 15,224,108, - 57, 52, 11,125,124,124,214,255,252,243,207, 98,175,129, 35,144,125,255,214, 7, 39, 25,134,129, 76, 38,131, 68, 34,193,243,231, -207,113,245,234, 85, 13,128,133,229, 8,129, 7,122,189,254,217,161, 67,135,162,220, 93, 93,190,104,213,160,225,164,217,179,102, -154, 6,221,186,136,121,203,214,243, 53,234,119,204, 88,177,239,120, 86,134,162,114,219,220,216,224,167, 6,188,234,179, 98,226, - 42,214,171,122,229, 54,254,117,235,124, 55,111,222, 28,179,151,183, 46, 97,254, 79, 27,169,187, 95,187,140,159,142,156,200, 76, - 54,169,218, 65,153,240,234,161, 33,113,120,253,250,245, 77, 0, 54, 21,236, 23, 15,239,204,197,107,121,143, 6, 95,164,173,216, -119, 36, 39,211,180,114,187,178,194,107,231,221,171, 73, 37, 71,171, 11,191,254, 48,214, 36, 62, 38, 18, 18,137, 4, 10,133, 2, -145,113,233, 88,176,230, 96,142,150,231,191,248,196,252, 38, 49, 53, 53,149,104,181, 90,108,216,176, 1,145,145,145,254,148,210, - 72, 66,200,198,254,253,251,175,171, 85,171,150,231,203,151, 47, 67,179,179,179,199, 83, 74,131, 75, 35,177,176,176,240,183,181, -181, 37,247,238,221,195,216,177, 99, 53, 19, 39, 78, 20, 13, 29, 58,148,164,165,165,125,172,229, 10, 0,224,226,226,210,178,123, -231, 38,104,218,126,220, 13,141, 42,253,102,120,240,174, 27, 12,189, 35,173, 87,167,246, 71,197,167, 17, 70, 24, 97,132, 17,255, -109,115, 92,169, 91, 75, 64,224, 97,141, 49, 62,206,162,248,221, 63, 78,164, 89, 97,119,169,242,225, 38,154,121,236,107,122,102, -229, 80,122,246,215,111,233,184,206, 62,212,211,142,196,123, 88, 99, 76, 75, 64, 80,214,106,219,157,106, 66,215,222, 13,180,189, - 27,104,103, 15,232, 0,204,174, 91,183,238,241, 9, 13, 65,105,208, 94, 74,131,246,210, 9, 13, 65, 1,140, 5,160, 48,116, 5, -111, 0,142, 0, 54,215,171, 87, 79,127,237,218, 53,250,186,111, 59, 26,224,105, 67,199,143, 31, 79,231,207,159, 79,191,250,234, - 43,106,107,107,171, 71,158,195, 77,199,242, 56,187,117,235,230, 66, 41, 69,165, 74,149, 44,234,123,213,136,127,126,229, 20,189, -185,123, 29,221, 54,161, 23,109, 84,203, 43,217,193,179,197, 51,153, 99,205, 58,134,174, 52,238,224,224, 48,139, 82,250, 5,165, -212,145, 82, 10,119,119,107, 69, 93,207, 26,177,207, 46,159,162,183,246,172,167,219, 38,244,162,141,107,123,167,184,120,181, 14, -150,218,121, 54,252,216,213,203, 75, 12,175,175,103,178,125,141, 38, 79, 75, 11,111, 81,206,234, 13,251,157,136,142, 77,160, 15, - 30, 60,160,103,207,158,165,183,110,221,162,187, 15,156,160,149, 27,244,205,182,169,213,163,233,167,174,178, 14,192,188,115,231, -206, 52, 52, 52,148,126,249,229,151, 20,128,249,199,112, 2, 56, 30, 30, 30, 78, 3, 3, 3,233,236,217,179, 41,128,157,223,124, -243,141, 50, 35, 35,131,182,107,215, 46, 18,121,147, 20, 4, 31, 19, 78,215,106,206, 43,122,118,109,190,112,194,216,222, 45, 63, - 53, 62,255,151, 87,173, 55,114, 26, 57,141,156, 70,206,255, 53,206,127,219, 86,166, 5,235,122, 94,235,127, 83, 45,123,242,199, -178,149,191, 78,219,176,105,231,119, 51, 38,141,146, 55,111,214, 30, 47, 46,239,192,145,211, 7,114, 84,106,205, 74, 17,139,159, - 95, 36,211,114,253, 72,156, 9,166,194, 18,172, 69, 38, 86,110, 40,244,161,244, 38, 13,160,148,110,172,160, 72,140, 3, 48,154, - 16,242,115,235,214,173,151,126,221,180, 97,175, 9, 77,218, 64,167,211, 97,247,238,221,120,255,254,253, 81, 0,115, 40,165, 6, - 89,216, 94,188,120,145,236, 83,163,234,100, 43,153,232,187,241, 95,245,180, 77,122, 27,132,232, 87, 1, 0, 0,181, 90,169,139, - 11,185,225, 87,145,240,201,100,178, 7,182,182,182,175,109,109,109,211, 56,117,246,104,169,192,108,222,184, 1,221,237, 82,194, -131, 17,245, 50,175, 7, 84,173,202,213, 70,133, 92,245,252, 24,145, 92,181,106, 85,137, 92,136, 49, 37,134, 87,163,210,197,135, -190,170, 99, 8, 79,174, 90,179,108,209, 47,187, 59,252,240,221,112,137,153,153, 25,158, 4,190,193,188,213,251,114,148, 26,221, - 23, 73,207,143,221,249, 92,130, 94,167,211, 25, 60,129,161, 20,204,240,243,243,171,185,116,233, 82,247, 97,195,134,225, 83, 45, - 87, 69,241,246, 93,244,204, 86,173, 90,121,191,121,253,164,181,149, 76,244,199,167,196,167, 17, 70, 24, 97,132, 17,255, 93, 24, - 52, 6,235, 69, 2,205, 5,176,216,213,158,108,156,181,244,151, 5, 12, 89, 51,156,167,116,135,158,193,162,176,100,154,244,137, - 21,110,110,103, 79,162,239,208,227, 43, 1, 0, 8, 5,208,127, 2, 87, 40,128,222,132,144, 6, 91,238, 60,156,155,127,248, 7, - 74,105,133,250,106, 77, 5, 8,108,230,237,234,220,188,174,143,148,229,148,136,126,245, 22,169, 57, 42, 92,122,249, 62,157,161, -204,142,138,134, 43, 44, 44,236, 58, 0,248,214,168,250,170,185,183, 91,229, 22,245,124, 76,132, 68,131,232,160, 39,200, 80,106, -112,241,229,251, 12, 16,242,209, 3,165, 63, 87,120,227,159, 31,127,100, 91,187,103, 59, 66,200,229,217, 19, 6, 74, 22,172,222, -255, 89,197, 21,128,220,152,152,152,148,220,220, 92,235,216,216, 88, 13, 62,210,185, 27,165,244, 13, 33,164,214,183,223,126,187, -120,250,244,233,223,253,248,227,143,162,143, 25,115, 85, 26,210, 98,222, 31,107,225,243,249,210,223, 8, 35,140, 48,194, 8,163, -192, 42, 91, 40, 36,208, 36, 0,227,221,220,200,212,183,111,169,230,115, 5,162, 36,203,214, 39,138,182, 71, 0,186,126, 52, 1, - 67,178,238,135,190,207,126, 16,250, 62, 27, 60,165, 60,165,106,134, 65, 84,142, 86,187, 44, 36, 44,250,227,103,209, 17,194, 61, -122, 19,169,124,252, 54, 74, 69,121,158,242,148,106, 8, 65,188, 78,199, 47, 11, 12,139, 56,241,191, 16,222,164,231,199,238, 56, -120,247,106,126,231, 65,224,212,156, 28,237,250,164,160, 99,119, 63, 99,186,232, 8, 33,131,252,253,253, 71,112, 28,183,145, 82, -170,251, 4, 46, 13,128, 25,132,144,163, 47, 94,188, 56,120,247,238,221,184,207, 33,174,254,214,244, 55,194, 8, 35,140, 48,194, - 40,176,202,194,231, 20, 87,255,139,120, 17, 26, 94,239,239,224, 13, 12, 13,247,253, 39,132, 55, 62,232,232, 99, 0, 3,254,142, -176, 82, 74, 47, 2,184,248, 57,197, 52, 33,164, 26, 0,246,179,136,171,191, 49,253,141, 48,194, 8, 35,140, 48, 10, 44, 35,140, -248,199, 32,127,205, 72,189, 49, 38,140, 48,194, 8, 35,140,248, 95, 1, 1,208,174,148, 74,235,178,193, 36,132,180,251,136, 74, -241,178,145,211,200,105,228, 52,114, 26, 57,141,156, 70,206,255, 22,231,127,169,245,255,183,109, 48, 78, 97, 53,114, 26, 57,141, -156, 70, 78, 35,167,145,211,200,249, 31,220, 24,163,196, 52,194, 8, 35,140, 48,226,111,235, 38, 33, 68,146,191,192,251, 71,157, - 55,194,136,127, 42, 4, 31,241,177,212,200,183,124,189,249, 27, 63,200, 9,142,142,142,163,107,215,174,237, 37, 18,137,152,172, -172,172, 69, 87,175, 94, 93, 88,252,186, 22, 62,194,199, 44, 3,151, 34,119, 2,132, 5, 24, 6, 28, 69,244,205,103,185,245,141, - 73,252, 63, 93,240, 86,145,153,217,158, 36, 12, 43,230,244, 90,112, 58, 45,128, 63,151, 77,226,121,253,123,189, 70,213,177,180, -251, 29,235,244,170,172,231,232, 10,128,255,141,128, 25, 71,193,255, 78, 40, 51,142, 50,248,141,240, 24, 11,129,110, 37,244,194, -233, 2,145, 96, 78,236,147, 67, 81,255,134, 56, 59,124,248, 48,251, 41,247,247,233,211,167,196, 5, 62,157,157,157, 79,155,152, -152,184,149,118, 95, 78, 78, 78, 92,108,108,108,235,127,121,126,108, 1,224, 87, 0, 62,197, 78, 5, 3,152, 76, 41,189,242,169, -207,104, 69,136,192, 30, 24, 35, 2,190, 7, 0, 45,240, 83, 2,176,233,250,103,154,160,241, 57, 96,103,103,119, 83, 32, 16,184, -231,228,228,228,100,102,102,186,154,153,153,133,201,229,114,185, 94,175, 15, 77, 76, 76,108, 81,193, 56,253, 6,249, 75, 94, 17, - 66,190,163,148,254, 86,145,243, 70, 24,241,175, 22, 88,132, 16, 15, 0, 45,243,183, 22, 13, 26, 52,176,207,201,201, 1, 33, 36, - 1,192, 77, 0, 55, 0,220,160,148,134,124,142, 0,177, 44,187,106,237,218,181,211, 38, 78,156, 88,184, 72,243,243,231,207, 75, -190,150,129,203,181,211, 87,236, 30, 61,127,141, 6,237,250,228, 11, 44, 6,200,141, 71,235,118, 13, 62,182,144, 53,181,180,180, - 92, 68, 8,233,203, 48, 76,185,149, 25,207,243, 28,165,244, 80, 90, 90,218, 2, 74,105, 86, 69,158,165,144, 75,117,122,142, 43, -241, 25, 2,150,229,178,115, 84,165,186,175,176,182,182,190,203, 48, 76,245,162, 11, 89,231,135,191,196,255, 69,247,245,122,125, -116, 82, 82, 82,125, 3,226, 66,202, 8, 68,147, 9, 17,181, 7,195,123, 0, 4, 4, 76, 8,207,105, 46,241,122,237, 90, 74,169, -234, 83,196,149, 99, 37,215, 91, 83,230,172,112, 9,124, 21,140,217, 19,190,194,143,191,238,196,172,201, 35,176,118,243, 62, 76, - 30, 61, 16,222,222, 62,101,114,112,148, 44,154, 55,121, 80,235,165,107,247, 54,152, 51,249, 43,249,210,181,123, 27,204,249,246, - 43,197,210,117,123,235,207,249,118,144,226,135,117,127,212,159,251,237, 32,179,165,235,246,106, 1,140,252,152,112, 14,242,112, -206,129, 94, 95,114,235, 90, 32, 80,255, 17, 18, 35,255,191,248,112,135, 13, 27, 86, 91,169, 84, 62,249,170,125,221, 21,117, 60, -156, 99, 74,186, 38, 37, 62,198, 57,236,117,192, 76,161, 72, 86,175,251,204,157,207,203,226,147, 72, 36,213,131,131,131,221,121, -158, 7,199,113,208,235,245,133,191, 26,141, 6, 45, 90,180,248, 44, 19, 98, 8, 33, 93, 1, 44,202,251, 88,177,156, 82,122,240, - 19,184, 20, 2,129, 96,138, 88, 44,110,169,215,235,189, 0, 64, 40, 20,190, 82,171,213, 55,244,122,253, 47,148,210,236, 10, 82, -174,137,137,137,241, 86, 40, 20,208,106,181,133, 11,195,179, 44,235, 89,185,114,229, 13, 0,220, 63,245,253,237,129, 49, 77,154, - 53, 91, 59,116,218, 52, 86,121,243, 38,214,110,223,190, 6,153,153, 0,176,161,188,123, 37, 18,201, 5,134, 97,170, 84,228,121, - 60,207,191, 87,171,213, 29, 43, 84, 41, 8, 4,238,177,177,177,118, 78, 78, 78, 0, 0,185, 92, 46, 47,186, 95, 17,203, 21,128, -149,148, 82, 25, 0, 48, 12,179,182, 73,147, 38,254,132, 16, 61, 0,202,243, 60, 67, 8, 25,200,243,188, 32,255,250,149,132,144, -237,148, 82,181,177,106, 54,226, 95, 45,176, 8, 33,103, 1,180,108,208,160,129,108,192,128, 1,104,217,178, 37,220,221,221, 33, -149, 74,243, 10,239,148, 20,251,167, 79,159,246,187,121,243,102,191, 83,167, 78,129, 16,162, 4,112,155, 82, 90,226,199,220,174, -107,243,137, 82,133,100, 29, 0, 36, 69,167,196, 69,191, 75, 92, 23, 23, 23,183,146, 22, 89, 37,154, 16,226, 58,116,232,208,169, -147, 38, 77,194,233,211,167,177,111,223, 62,168,213,106,100,101,101,225,234,213,171,165, 52,173, 19,145,118,117, 5, 32,143, 0, - 34,175, 3, 38,118,128,220,254,163, 35,196,210,210,114,209,228,201,147,191,245,246,246, 46,244, 58,174,211,233,160,215,235,161, -211,233,144,150,150,134,169, 83,167, 34,223,138, 7,158,231,113,238,220,185,137,163, 71,143, 6,128, 41, 37,113,250,215,175,252, -152, 33,140, 75,129,109,134,114, 92,244,189,128,168,250,122,142, 99, 85, 42,109,137, 43,135, 75,165,162, 50,197,157, 80, 40,116, - 9, 58,121,210,142, 17,139, 65, 57, 14,224,121, 80,158, 7, 80,100,163,121,199, 40,199,131,234, 56,240,122, 30,122,165, 26, 13, -191,249,198,144,194,177,137, 80, 44,219, 55,232,235,105, 14,141, 26, 55, 22, 86,173,228, 4, 61,199,227,109,120,180,195,147,199, -247,155, 30,218,181, 97, 28, 33,100, 32,165,244,163,252,100,137, 77,204, 46,174,255,125,139,203,163,167,129,184,114,237, 38, 46, - 95,189, 1, 0,184,112, 45,143,142, 97,152,242,194,103,105,237,222,186,246,196, 17, 61,228, 63,252,188, 85, 50,113, 68, 15,193, -159,191, 91, 36, 19, 71,116, 23, 44,253,101,139,100,226,136,238,194, 37, 63,173,175, 67, 8,177,164,148,166,149,198, 87, 90, 26, - 65,175,151,252, 17,150,192, 2, 64,210,198,141,208, 37, 38,194,105,193,130, 60,241,229,106,111,112,183,134,173,173,237, 99,161, - 80,232, 82,222,117, 58,157,174, 92,241, 59,108,216, 48, 63,165, 82,249, 88,175,215, 83,129, 64, 48,243,171,158, 29,142,127,209, -220, 47,165,232, 53,207,159, 63,179, 94,182,236,100,143,131, 79,178,104,191,122,166, 79, 78,175, 26, 86,191,203,244,157,207,202, -168,136, 25,181, 90,141,208,208, 80, 20, 93,124,189,168,158,253, 72, 17,196, 0, 88,107,109,109,221, 40, 37, 37,101, 16,128,217, -153,153,153,181, 89,150,133,149,149,213,108, 66,200, 91,115,115,243,173, 25, 25, 25,119,243,173, 68,188,129,188, 45,204,204,204, -118, 31, 59,118,204,178,110,221,186, 76, 82, 82, 18,170, 87,175,142,212,212,212,134, 55,111,222,172, 55,114,228,200,145,132,144, - 33,148,210,155, 21, 8,110, 77, 19, 19, 19, 58,116,232, 80,194,113,127,190,238,182,109,219,208,209, 87,239, 54,246, 11,121,174, - 74, 67, 51,174,132,154,143, 21,137, 68,183, 35, 34, 34, 50, 42, 26, 31, 34,224,251,161,211,166,177,138,136, 8, 40,158, 61,195, -160,204, 76,193,143,121,214,172,114, 5, 22,195, 48, 85,118,239,223,225, 46, 22,139, 11,203,165,210, 54,142,227,160,213,104,177, -226,135,149, 31, 93, 22,154,152,152,152, 56, 57, 57, 37,152,152,152,152,124,142,202, 70, 34,145, 8,118,237,218, 53, 80, 44, 22, - 3, 0, 52, 26, 13,124,125,125,137,177, 26, 54,226,191,104,193,250, 50, 51, 51, 19, 28,199,193,212,212, 20, 44,203, 22,183,160, -160,125,251,246,104,209,162, 5, 6, 12, 24,128,160,160, 32,217,128, 1, 3,218,151, 70,246,213,180, 46,168,228,110,159, 95,137, -240,142,119,206, 60, 93,177,109,201, 97, 91, 0,211,138, 92, 54,114,204,152, 49, 36, 37, 37, 5,125,251,246,189,169, 86,171,187, - 81, 74, 51, 75,181, 96,240,136,110, 61,224, 43,240,148,200,126,121,176,153,104, 84, 74,202, 48,140,178,160,139,240, 35, 43,132, -190, 78, 78, 78,216,191,127, 63, 52,154,191,186,251, 50, 51, 51,195,203,151, 47,139, 90,220,208,184,113, 99,150, 16,210,183, 52, -129, 69, 8,227,114,231, 81,132, 93,193,126,151,246, 62, 34,255,250, 85, 18,108,173, 77, 41, 0, 50,103,206,156, 66,193, 6, 0, -139, 22, 45, 50, 36,156, 96,132, 66, 36,221,184,241,103, 1, 44, 96,192,136, 8,136, 16, 96, 4,121,189,165,160, 0,229, 0, 94, - 15,240, 58, 64,234, 88,201, 16,238,134,206,149,221, 79, 47, 91,253,155,133, 90, 71,177,255,196, 21,132,135,191, 3,203, 48,112, -117,115, 71,135, 86,205,133,245, 26,248, 87,250,105,225,180, 83,132,144, 47, 41,165, 15, 43, 28,209, 60,149,186, 85,182,193,214, -109, 79, 96,107,169, 64,223, 30,157, 32,147, 74,240,227,175, 59,240,195,172, 9,112,119,173,130, 77,107,150,150,122,187,185,185, -249,226,186,181, 60, 93,119, 28, 60,143,150, 45,154, 8,118, 30,188,128, 86, 45,154, 10,118, 28, 60,143, 86, 45,155, 11,118, 30, - 60,143, 86, 45,154, 9,119, 30, 60,143,198,245,107,185,221, 77,121,190, 24,192,132,210,223,185, 88, 26,117,200, 75, 35,119,129, -168,176, 2,136, 24, 55, 14, 0, 10, 5, 86, 69, 32, 20, 10, 93, 98, 99, 99,237,202,187,174, 60, 43, 65,190,229,234,177, 94,175, - 71, 98, 98, 34, 73, 79, 79,167, 22, 22, 22, 61,206,111,154,125,172, 99, 51,191, 84, 0,120,246,236,153,213,242,229,203,122, 28, -120,156, 9,229,253,245,228,143,147, 55,248, 65,221, 90, 62, 62,177, 98, 88,189, 62,125,250, 4,148,196,171, 86,171,195,235,212, -169, 67,243,255, 59, 75, 36, 18, 81,177, 60,225,228,238,238,254, 23, 43,181, 1, 93,135,107,239,221,187, 55,193,219,219, 27,158, -158,158,119, 27, 53,106,100, 38,151,203,113,254,252,121,120,121,121,249,152,153,153, 61, 56,116,232,144,112,198,140, 25,126,219, -183,111, 7,128,137, 6,228,207,118,173, 91,183,222,127,250,244,105,169, 72, 36,130, 82,169,196,203,151, 47, 97, 97, 97, 1,177, - 88,140,238,221,187,179, 77,155, 54,181,110,213,170,213,145,252, 70,128,193, 51,154, 84, 42, 21,157, 61,123, 54, 76, 76, 76, 96, - 98, 98, 2,185, 92, 14,185, 92, 14,133, 20,100,227,228,202,178, 73,155,211,101, 83, 22,108, 92,177,251,183,133,215, 42, 87,174, - 60, 63, 50, 50, 50,189,162,121, 65,121,243, 38, 20,207,158, 1, 69,190, 93, 67, 97,110, 98,133,153, 51,103,150,103,129,130, 72, - 36, 66,147, 38, 77,202,229,179,182,182, 62, 42, 16, 8, 62,104,145, 82, 74,165, 51,103,206,228, 66, 66, 66,228, 12,195,200,121, -158,199,204,153, 51, 57,189, 94, 47,181,183,183,191,203,243,124, 66, 82, 82, 82,175,242,184, 41,165,106, 66,200,119, 12,195,172, -149, 72, 36,130,170, 85,171,190,159, 55,111,222,189,124,235, 37, 40,165, 76,213,170, 85, 27,202,100,178, 42,106,181, 90, 15,224, - 59,163,245,202,136, 50, 80, 47,207, 8, 92, 8, 13, 0,113,129,193, 62,175,182,131, 77,177,227, 0,144,156,223, 64,180, 47,101, - 63, 5, 64, 16,128,154, 0,236,242,207, 61, 2,144,250, 89, 4, 22, 33,132, 22,249, 40, 10, 43, 20, 83, 83, 83, 60,122,244, 8, -132, 16,152,154,154,194,204,204, 12,230,230,230,200,204,204, 68, 80, 80, 16,130,131,131, 17, 17, 17, 1, 66, 8, 92, 93, 93, 81, -240,225, 20,225, 42, 44,216,246,254,124, 26, 82,133, 4,132, 0,117,219,212, 70,237, 22,190,104,240, 48,108,178,147,147,211,230, -216,216,216, 80, 66,136,192,215,215,119,100,227,198,141,177,122,245,106,168,213,234,213, 37,137,171,162,156, 55, 95,234,234,231, - 87, 74,211,247,156,127,107, 50,248, 11,183,220,216,216,216, 85, 21,141,132,226, 5,112,114,114,178,193,107,229,241, 60,143,180, -180,180, 50, 57,139, 91, 4,126, 89,187,222, 34, 43, 35, 1, 75,126,220, 3,157, 78,135,105,211,166,129,231,249,194, 45, 61, 61, -221,160,112, 82,174,152, 81,129,201,219, 8, 3, 16, 1, 80,185,127,158,158,136,220,191, 30,132, 2,132, 3, 80,236,189,138,115, - 18, 66,164,172, 72,118, 96,225,143,235, 44, 2,130,163,113,226, 74, 0,180,153, 49,136,123,118, 12, 0,224,218,100, 32, 14,170, - 89, 52,170,237,134,111,231,252,100, 57,247,219, 33, 7, 8, 33,158, 69,187, 11, 13,169,208, 40,229,176,100,241, 98,108, 94,183, - 26, 63,173, 94,135,204,140,116, 8,133, 54, 0, 0,189,158, 3, 87,236,221,254,242,238,148,126, 49,119,250, 24,178,118,203, 17, -248,214,112,192,169, 75,119, 81,223,167, 10,206, 93,125,136,198,181,170,225,194,141, 39,104, 92,187, 58,110,220,127,137,105,227, -135,146, 59,231,118,126, 81,145, 52, 90,179,102,189, 69, 86,102, 2, 78, 47,221,133,196, 13, 27,240,126,194, 4, 52,204,191,230, - 33, 33, 16,185,184, 0,162,242,211,168, 56, 94,189,122, 5,181, 90, 93, 82,235, 30, 94, 94, 94,229,166,187, 82,169,124,162,215, -235,105, 66, 66, 2, 73, 72, 72,128, 92, 46, 39, 47, 95, 6,114, 62, 62,190, 61,105,240,225, 45, 0,176,124,249,178,158, 7,159, -100, 34,247,238, 58, 40,239,253, 10, 81,181,231,204,230, 69, 99,180,163, 23,108,122, 82,164,114,251, 32,156,113,113,113, 95, 22, -252,119,117,117, 13, 14, 9, 9,169, 89,208,165,156,223, 85, 40,210,235,245,238, 5,221,134,122,189, 30,106,181, 26,237,218,181, - 99,203,122,119, 75, 75,203,198, 94, 94, 94, 8, 8, 8,192,186,117,235,172, 90,183,110,141, 55,111,222,128, 16,130,101,203,150, - 17,111,111,111, 97,114,114, 50, 58,118,236,136,163, 71,143, 54, 41, 47, 62, 9, 33,166,114,185,124,251,169, 83,167,164, 12,195, - 32, 43, 43, 11, 60,207,163, 89,179,102, 96, 24, 6,129,129,129,152, 51,103, 14,142, 30, 61,138,227,199,143,203,234,213,171,183, -157, 16,226, 85,180,251,190,140, 52,162, 42,149,138, 74, 36, 18, 72, 36, 18, 72,165, 82, 72,165, 82,136,197, 98,100,171,128,209, -191,188, 87,179, 82, 27,222,167, 78, 51,183,225,147,150, 49,171,230,141,184, 10,224,132,161,121, 30,200, 27,115,181,118,199,142, -117,131, 50, 50, 24, 0,216, 74, 8,175,165,244, 39, 67,190,119, 0,200, 82,165,163,138,155, 11,142,236, 63,142,222, 3,122,148, - 40,174,132, 66, 17, 68, 66, 33, 76,173, 76,202,229, 20,137, 68,246,193,193,193,214, 66,161,176,208, 34,175,211,233, 18,230,205, -155,103,219,185,115,103,211,115,231,206, 49,157, 59,119,230,109,108,108,114, 2, 2, 2, 18,181, 90,173,117,211,166, 77, 13,206, -243,148,210,223,234,212,169, 83,247,216,177, 99, 35,102,206,156,249,120,250,244,233, 75,138,158, 95,185,114,229,226,179,103,207, - 86,233,217,179,231,238,167, 79,159,254, 86,145, 50,228, 83,203,121, 35,231,255, 30,103,105, 90, 36, 31,246,132,144,211, 69,206, -119, 41,216,159, 57,115,230,236,229,203,151,191, 36,132,156, 46,122,188,224,186,124,238,211, 37,237,231,223,107, 53,107,214, 44, -223, 21, 43, 86, 44,243,247,247,223,127,247,238,221,119,159, 77, 96, 21,188, 72,209,151, 43, 22,145,200,204,204, 68,102,102, 38, -162,162,162,176,113,227,198,252, 15, 89, 8,129, 64, 0,129, 64, 80, 56, 94,161, 52, 92, 62,117,235, 87, 0,191,214,171, 87, 79, -248,226,222,161,115,223,111,158,212,182,126,187,186,236,147, 43, 47,250, 0,248, 1,192,151, 67,135, 14,181, 1,128, 93,187,118, - 37, 3, 56,247,127, 33,145, 41,165,135, 66, 67, 67,191,117,116,116, 44, 28,131, 82,180,155, 80,175,215, 67, 42,149,162, 96,172, -138, 74,165,194,198,141, 27,245,148,210, 67,101,112, 34,228,229, 85,132,190,188,150,119, 31,207,131,231,254,188,127,225,194,133, - 69,167,190, 98, 92,190,165,164, 92,113, 87, 82,156,211, 98,191,197,142,255, 69,148,253,165, 27, 66, 52,169,207,144, 9,142, 60, - 17,224,228,213,167, 16, 10,133,224,139, 88, 47,133,108, 94,235,248,229,155, 88, 56,217,251,160,219,192, 49, 14,199,118,175,159, - 4,224,199,138,198,181,167,159, 63, 38,127,251, 45,182,108,222,140, 57, 11, 22, 23,170,115, 61,199, 65, 95,110, 56, 25,166,105, -125,111,100,167, 68,131,101, 89, 52,169,227, 6,150,101,209,188,190, 7, 88,150, 69,179, 6, 53, 33, 16, 8,208,170,177, 55,106, -212,168, 1,129, 64,192,148,147,238, 8,121,121, 5,161, 47,175, 23, 17,187,121,105,162,141,139,251,203,245,186,184, 56,208,202, -214, 21,205, 91, 24, 57,114,100,122, 84, 84,148,182,248,185, 74,149, 42,137,110,222,188,105, 81, 74,247, 92, 33,100, 50, 89, 61, -129, 64,240, 36, 53, 53,149, 55, 49, 49, 97,120,158,227,125,124,124,217,243,155,102, 31, 43,184,102,214,172,217,199,250,213, 51, -235,185,231,208,105, 42,170,218,140, 16,161, 68,255,245,130, 77, 34,161, 72,102,144,135,250,130,238,194,215,175, 95,163,188,240, -148, 80, 8,126,128,180,180,180,161, 94, 94, 94, 55,127,253,245, 87, 43, 66, 8,110,221,186, 5,150,101, 11,183,176,176, 48, 48, - 12,131,239,191,255, 94,155,153,153, 57,170,220, 2, 75, 32,248,246,200,145, 35,230, 98,177, 24, 89, 89, 89,133,223, 13,203,178, - 8, 14, 14,198,170, 85,171, 48,116,232, 80, 68, 70, 70,194,201,201, 9,211,166, 77, 83,172, 88,177,226, 91, 0,139, 13,120,245, -231, 26,141,166,190,137,137, 9,164, 82, 41, 10,132, 22, 0, 92,124, 41, 12,204,205,205,173,101, 99, 99,227, 96,123,227,244,201, - 38,173,187,249, 89,219, 58,250, 23, 8, 44, 67,241, 22,216,252, 78,175,159,251,229,177, 99,118,119,142, 29,227,239,157, 60, 25, - 45,205,206,222,100, 48,129,142,197,251,183,209,168, 87,175, 30,158, 60,121,130,122,245,234, 21, 21, 75, 16,139,197, 16,137, 68, - 16,137, 68,176,177, 48,104,168, 4,101, 24, 6,119,238,124,184,220,104,243,230,205, 83,175, 93,187,166, 0,128,247,239,223,211, - 46, 93,186,164, 7, 5, 5,193,221,189,236, 97,104, 14, 14, 14, 55, 89,150,173, 90,236, 91,181,236,213,171, 23,210,210,210, 58, -245,234,213,171, 89,254,177,152,195,135, 15, 15, 6, 0,177, 88, 12,134, 97, 56, 24,241,159, 71,121, 90,164,168, 64, 42, 46,180, -150, 47, 95,222,165,248,177,162, 98,170,164,255, 69,239, 93,177, 98,197,178, 34,220,202,207,241, 62,130,162,202,177,188,194,178, - 44,148, 39,176, 10,240,228,201, 19,157,179,179,243,150,208,167, 17,109,221,106,187, 66, 38,151,116, 32,132,252, 42,145, 72,166, - 14, 25, 50, 4,247,239,223, 71, 96, 96,224,182, 79, 93,246,164, 86,173, 90, 23, 36, 18, 73,149, 82,186, 67,222,191,120,241,162, - 99, 41, 21,194,130,252, 49,101,165, 14,114, 47, 58, 30,172,232, 32,247, 82, 51, 4, 79,161,211,234,144,147,171,252,179,242,206, - 23, 88, 57, 57, 57,232,223,191,255, 7, 22,172,196,196, 68, 67,148, 62, 86,157, 56,129, 75,135, 14,161,147,159, 31,142, 62,124, -136, 21, 67,190,130,103, 21,103, 80,142,128, 18, 32,114,223,122,164,100,102, 99,239,149, 59, 72,205,202,197,160,230,205,225,110, -102, 83, 54,175, 80,212,190, 97, 99,127,209,229,187, 65, 16, 10, 5, 96,192,131,234,114,225,228,213, 10, 44,195,192,220,190, 26, - 68, 66, 33,132, 66, 1,194,162,146,225,229,219, 64,124, 90, 44,109,255, 49, 2,171,114,149,234,224, 57, 14, 67,135, 14,197,254, -253,251, 97,237, 80, 5,230,149,124,241,195,234,205,232,212,174,121,185,239, 95,208, 98, 23, 8, 4, 96, 89,246, 47,191, 5,255, - 13,177, 70, 82,158, 66, 91, 60,141,120, 10, 10,192,101,233, 82,184, 44, 93,138,135,249,207,244,206,201,129, 82,169, 4, 26,249, - 84, 72, 92,105, 52, 26, 68, 69, 69,105,227,226,226,236, 75,168,152, 18, 52, 26, 77,185,130,102,231,206,157,207,135, 13, 27, 86, -223,202,202,234,241,243,103,207,116,181,253,252,132,231, 54,206, 62, 94,208, 61, 8, 0,126,126,126,169,179,103,207, 62, 62,184, -111,151, 30,191,205, 28,192,125,179,120,183, 64, 34,147,213,239, 50,189,236,129,238, 69,190,143,240,218,181,107, 83, 67,174,205, -205,205,141, 47, 35,141,186, 2, 88, 84,183,110, 93,179,214,173, 91,227,230,205,155,232,221,187,183, 90,171,213,134, 2, 64,231, -206,157, 61,246,238,221, 43, 14, 10, 10,130,173,173,173,240,253,251,247,219, 9, 33,101, 14,124, 23,139,197,173, 26, 52,104,192, -168,213,234,191,136,171, 21, 43, 86, 96,224,192,129,240,240,240, 0,207,243,200,206,206, 70,235,214,173,133,235,214,173,107,101, -160,192,154,236,233,233,185, 10,121,179, 8,139,150,133,175, 0,124,151,111,221,142,239,210,123,232,203,230,237,122,213,175, 90, -195,215,177, 60, 66,123,123,251, 89, 12,195,244,227,121,158,205,204,204,140,210, 16, 82,195,187,106, 85,251,166, 61,122, 32, 67, - 40,100,215, 94,185,194, 36,100,103, 43, 0, 24,212,213,168,212,101,163,138, 91,222, 80,190,222, 3,122,224,201,147, 39,232, 51, -176, 39, 68, 34, 17, 4, 2, 97,222,183, 41,202,179, 96, 89,216,152, 26,166,217,116,186,191,228, 85, 74, 41,204,204,204, 10,123, - 50, 10,142,233,116,186, 50, 43, 63, 0,238, 7, 23,207,179,147,153,153,131,211,233,224,211,163, 79, 97,158,126,176,245, 55, 25, -120, 94,150,254, 62, 28, 19, 15,157, 18,194, 8, 35, 74,177, 98,149,165, 69,138, 10,164,207,240,172,211, 51,103,206,156, 13,128, -206,156, 57,115,118,193,254,242,229,203,149, 0, 98, 62,139,192,250, 84,113, 85,208,141, 80, 22,218,180,105, 51,209,212,212,116, - 29, 0,212,175, 95, 31, 81,247, 99, 16,117, 63, 6, 94, 53,125,154,214,245,171,159, 49,112,224, 64, 88, 91, 91, 99,250,244,233, - 20,192,182,138, 62, 63, 44,228,165, 2, 0,117,114,114,154, 14, 0, 78, 78, 78,126, 15, 31, 62,180,125,244,232, 17, 26, 52,248, -115, 70,161, 86,171, 69,179,102,205,202,170, 8,179,144, 55,150,106,202,231, 83,229, 60,180, 90, 45,114,115,149,208,104,180,208, -235,120,232,245,122,212,243, 49,197,238,205, 51,243,142,233, 11,172,101,121, 86, 50, 23, 7, 83,212,171,229,160, 99, 24,162,124, -244, 44,206,172, 36, 94,141, 70,131,231,239,223,227, 89, 68, 4, 0,160,219,242,159,202, 12,199,238, 43, 55,225,237,237, 93, 94, -104,221, 92,156, 28, 16,123,233,121, 94,161,173,140,194,163,219, 7, 97,106,170, 0, 0,248,180, 28, 4,145, 40, 79, 96,229, 40, -181,176,169, 89, 9,132,210, 82,167,247,203,173, 28, 47, 8, 68,210, 42,148,227, 65, 41, 15,202,115,160,148,135,196,212,218,100, -194,216,225,224,121, 14, 13, 27, 54, 4, 97, 89,112, 58, 53,250,118,109,143,180,140, 44, 88, 91,152, 25, 20,183, 34,145, 8, 45, - 91,182,148,149,118,254,205,155, 55,202,162,130,172,236, 52,210, 33, 39, 71, 9,181, 90, 13,173, 70, 15,173, 78, 15,190,186, 8, - 75,230,126, 5,189, 86,143,220, 1,254,121,199,190,237, 9,173, 70,135, 72, 19,134,241,243,182,213, 49, 32,202,128,160, 68,179, -242, 4, 86,129, 40, 40, 13, 37,141,249, 43, 69,100, 61, 27, 54,108, 88,189,218,126,126, 79,250,181,243,251,249, 69,224,203,216, - 23,129, 47,255,114, 93, 21, 15,191,240,111, 86,236,159, 38, 20,201,234, 25, 42,174,128, 15,187, 11, 63, 17,179,179,178,178,106, - 43, 20, 10,132,132,132,128,101, 89, 16, 66,222, 80, 74,107, 3,192,152, 49, 99,222, 10, 4, 2, 87,150,101,177, 97,195, 6, 34, - 16, 8,106,249,251,251,207, 6,112,176,140,134,156,151,169,169,233, 7,214, 43,145, 72,132,153, 51,103, 98,240,224,193,133,226, - 74, 36, 18, 97,231,206,157,168, 95,191, 62, 52, 26,141,151,129, 34,248, 17,128,230, 6, 88,248, 72,190, 40, 47, 87,132,234,245, -250, 97, 41,253,250,213,192,141, 27,104,234,234,234, 93,175, 94, 61,104,181,127, 26, 48,171, 87,175, 94, 41, 43, 43, 43,158, 16, -242, 7,128,223, 40,165, 79,203,228, 83, 81,188,127, 27, 93,208, 88, 69,195,134, 13, 11, 45, 86, 69,173, 87, 34,145, 8, 50,145, -162,194, 2,139, 82,138,156,156, 28,230,252,249,243, 54, 94, 94, 94, 4, 0,188,189,189,201,253,251,247,173,100, 50, 89,178,147, -147, 83,185, 13, 95,153,153, 57,118, 14,235, 15, 0,152,223,238,139,194, 6,209,249, 69,179, 33, 20, 10,209,118,250,236,191,228, -123,158,231, 89, 24, 97, 20, 87, 6,104,145,207, 37,174,138, 91,176,150, 47, 95,254,114,249,242,229,127,177,134,125, 54, 11,150, - 33, 38,127, 67, 91, 65,197,177,122,245,106,212,170, 85,171,204, 10,104,221,186,117,216,179,103,207,106, 74,105, 88, 69,159,223, -165,109, 93, 31,252,114,236,165,171,135, 15, 1,128,197,223,118,101,114,114,114,112,231,206, 29,152,155,155,227,205,155, 55,134, - 38,176,169,185,185,249, 34,134, 97,250,178,197, 71,246,151, 44, 44, 57,158,231, 15,101,100,100,148,234,166,129, 82, 64,171,211, - 35, 39, 87, 5,141, 70,131,111,191, 95, 95,110, 56,150, 3, 68,171,201, 18,180,108,225, 47, 43,205,130,211,208,183, 37,198, 15, -150,255,165,210,102,243, 92,129,161, 78,195,188,181,165, 3, 30, 4,130, 82,128,227, 0, 27, 59, 43,108,219,255,115,153, 81,160, -231,248,252,214, 48,135,108, 53, 7,175,198, 93, 16,253,234, 70,161,197, 72, 44,202,235, 26, 22, 9,133,224, 41,201,243,222, 80, -154, 0, 18,203,170,164,197,133,185,111, 62,253, 2,163,187,212,194,225,203,207,209,167, 93,109, 92,123, 16,132,214,141,188,241, - 50, 52, 2, 62,238, 85,177, 97,251, 33, 80,138,172,223,127,249, 33,254,207,138, 76,255,222, 16, 11,214,253,251,247,149,197,173, - 86, 69,127,105,249,245, 96, 94, 87, 96,190, 5, 75,169, 82, 99,250, 44,131,220,241,228,165, 81,243,198, 50, 67, 46, 46,203, 66, -101,136, 0, 43,110,201, 66, 57,110, 86,170, 3,168, 15,204,248,191, 44, 48, 57,142,195,153, 51,103, 10,211,163,164,116, 44,154, -118, 6,136, 27,188,127,255, 30,129,129,129,240,247,247, 71, 70, 70, 6,132, 12,131,105, 47, 94,192,123,200, 16,104, 68, 34,240, - 60, 15,177, 88,140, 49, 99,198, 24, 28,159, 21, 44,149,243,199,177,113,180,156,178,228,231, 46, 93,186,212, 8,201,201,193,203, -224, 96,180, 91,184, 16, 0,112,230,204,153, 15,242,196,212,169, 83,197, 65, 65, 65, 35, 31, 63,126, 60,146, 16,178,154, 82, 58, -173, 52, 78, 45, 85, 21,142,193,234, 55,168, 55,106,120, 85,199,158,237,251, 10,207, 79,253,126, 50,132, 66, 17,132, 66, 33, 44, - 44, 44, 12,122,155,162,101,119,110,110, 46,115,248,240, 97,151, 86,173, 90,137, 70,143, 30, 77, 0, 96,243,230,205,204,214,173, - 91,229, 23, 47, 94, 20,153,155,155,199,149, 43, 42,181,218,191,164, 49, 33, 4, 66,161, 16, 34,177, 8,224,121, 16, 66,228, 43, - 87,174, 92,252,242,229,203, 6,158,158,158, 80,171,213, 67, 8, 33, 1, 70, 63, 88, 70,148,167, 69, 74, 26, 75,149,111,133, 42, - 13, 73, 69,199,101,149, 38,208,138,142,201, 2,240, 89, 38, 91, 8,202, 19, 85, 44,203,150,107,157, 98, 24,166,220, 46,194,169, - 83,167,194,212,212,180,180,138,135,190,120,241, 34, 40, 46, 46,110, 51,165,116,253,199,188,200,233, 43, 1, 47, 23, 77,233,153, -133,252,190, 83, 11, 11,139,228, 54,109,218,100, 3,208, 30, 60,248, 97,131, 88,173, 86,151, 90,113,155,155,155, 47,218,186,117, -235,164, 30, 61,122, 48,197, 93, 5, 20,237,198, 43,216,116, 58, 29, 14, 30, 60, 56,105,198,140, 25, 40,205,234, 85, 80,121,231, -230, 40,161,204, 31,224,252, 54,240,176,161,133,121,169,167, 20,150, 78,112,113,229, 74,173, 68, 24, 81,222, 24, 33,135, 42,126, -133,199, 76, 77,165,224,202,224, 36,132, 9,139,136,140,117,174,228, 96,133,183, 81, 73,176,175, 90, 11,105, 49,127,198,131, 64, -192, 66,152,223, 69,104, 97, 38, 71, 82, 98, 34, 24,134, 45, 83, 16,255,176, 55, 0, 15, 2, 35,112,228,242, 83,104, 85, 57,248, -101,215,121,104,213,217,208,170,114,160, 85,229,253, 46,155,241, 53, 8, 65,188, 86,149,237, 81,161, 12, 44, 16,160, 81,163, 70, -165, 10,156,152,152, 24, 3, 45, 88,180,208,130,165, 84, 85, 48,141, 12,107, 41,149,105,161, 42, 56,255,177,130,160,192,117,131, - 76, 38,171,191,115,103,233,238, 24, 74,130,163,163,227, 57,133, 66, 81,205,208,235, 43,224,116,116,153,133,133,197, 34, 79, 79, - 79,175, 95,126,249, 69,200,178, 44,218,182,109,235,241,245,215, 95,191, 7,128, 90,181,106, 57, 21,148, 49,223,124,243, 13,189, -127,255,126, 96, 94,219,162,116,136,197,226, 96,115,115,243,250,109,218,180, 65, 70, 70, 6,162,162,162, 32,151,203,225,253,243, -207,120,241,205, 55,240,219,184, 17, 76,155, 54, 32,132, 64, 44, 22,227,197,139, 23,144,201,100,193,101, 20,230,141, 0,252, 4, -160, 41,254,236, 22,164, 0,238, 0,248,158, 82,250,160,132,242,142, 1, 0,142,231,203, 75,172,175,166, 79,159,142,116,161, 16, -232,220, 25,162,176, 48,104,181, 90,248,251,251,163,126,253, 60, 79, 28,254,254,254, 16, 8, 4,168, 93,187, 54,156,156,156,176, - 97,195,134,175,240,225,204,234, 15,203,174,108, 29,222,191,141,134,191,191,127,161,165,170,115,231,206,133, 22, 44,161, 80, 88, -104,201, 34, 28,107, 80,101, 86, 84, 96,233,116, 58, 34, 18,137, 4, 99,199,142, 37,163, 70,141,162, 58,157,142, 23,137, 68,204, -150, 45, 91,200,253,251,247, 5, 74,165,178,220, 6,184,111,207,190,152,223, 62,207, 8,250, 67, 53, 91, 8, 69, 66,136, 69, 34, - 76, 15,142, 46, 76, 23,179,157,251,197, 43, 86,172,232,227,233,233,153,215,221, 14, 8,140,126,176,140, 40,199,192,147, 84, 76, - 28,105,138,236, 39, 1, 32,249,251, 73, 69,132, 84, 18,242,102, 4, 54, 40,118,109,193,121, 77,177,223,130,243,207, 62,199,251, -148,213, 2, 14,189,119,239,158,123,189,122,245, 16, 25, 25,249,151,153,109, 5, 21,150, 92, 46,135, 76, 38,195,221,187,119, 1, - 32,180, 52,178,171, 87,175,254,138, 60, 47,201, 0, 0, 39, 39, 39,255,214,253, 90,221,109,248, 69, 3,236, 93,190, 47, 35, 46, - 46,174,118,129, 15, 28, 66, 8,113,114,114, 26, 44, 20, 11,250,187,250, 86,110, 9,158,255,233,242,201,219, 11,203,122, 17, 87, - 15,159,108, 0,202, 34,179, 8, 87,125, 76,132, 48, 12,211,183, 71,143, 30, 76, 80, 80, 16,250,247,239,143, 61,123,246,148,122, -237,224,193,131,177,127,255,126,244,232,209,131,153, 53,107, 86,223,242, 4, 86,158,117, 68,243,217, 50, 99, 72,232, 51,236,222, -183,165,212, 49, 70,118,118,182, 0,128,196,196,164,194, 99,245,235,151,237,136,153,215,107, 46, 5, 60,126,232,223,164, 69, 91, - 81, 84, 66, 58,120,189, 26,170,172,228, 63, 91,184,233, 9,160,122, 21, 68, 38, 86,112,176, 49,199,147,123, 23, 53, 90,141,234, - 82, 89,156,147,122,248,224,155,174, 94, 0,229,209,115,218, 54,156, 94, 63,177,176,123,167, 89,239,201,184,114,112,173,193, 99, -248,138, 67, 40, 20,226,197,139, 23,202,210,172, 87, 44,203,150,235, 83,235, 79, 43,163, 14,185,185, 74,228, 42, 85,159, 45,141, - 8, 33,182,246,246,246,191, 91, 89, 89, 73, 75, 18, 80,132, 16, 91, 91, 91,219,223,173,173,173,165,134,118, 17,150, 38,174,242, -253, 98, 61, 30, 54,108, 88,133, 68,150, 68, 34,169, 22, 26, 26, 90,232,100,180,172, 95,141, 70,131,214,173, 91, 11, 12, 44, 44, - 79, 17, 66,222, 57, 58, 58,222,241,246,246, 54,127,251,246, 45,246,237,219, 39, 18, 10,133,149, 11,202,143,172,172, 44,176, 44, -139,196,196, 68, 29,128, 17,229,117,145,169,213,234, 27, 55,110,220,168,211,181,107, 87, 54, 56, 56, 24, 44,203,230,133,203,223, - 31,126, 27, 55, 34,112,202, 20,180,140,136,128, 74,171,133, 84, 42,197,133, 11, 23,180,185,185,185, 55, 74,227,147,201,100,155, -195,195,195,125,164, 82, 41,180, 90, 45,120,158, 7,195, 48, 68, 32, 16, 52,179,176,176, 88, 7,160,193,135,223,148,157,221,152, -169, 63,214,228,244,122, 46, 46,242,109, 82,121,113,144,146,146,130, 83,167, 78,161,113,227,198,104,217,178, 37, 98, 98, 98, 16, - 22, 22,134,206,157, 59, 23, 94,243,236,217, 51, 4, 4, 4,192,205,205,173,124, 11, 30,171,131,155,103, 53,136,132, 34, 8, 69, -194,188, 95,161, 48,127,203,251, 95,112,172,192,103, 97, 69, 44, 88, 0,160, 80, 40, 10,242, 5, 95,173, 90,181,184,184,184, 56, - 71, 0,108,129, 3, 86, 67, 26, 43, 5,117, 68,129,184, 18,137, 69,133,150, 44, 0, 72, 79, 79, 87,245,232,209,227, 15,181, 90, - 61, 28, 31,177,162,136, 17,255, 73, 60,250, 63,186,247,111, 17, 88,157,154, 52,105,178,113,224,192,129,109,215,172, 89, 3,133, - 66,129,184,184,184,194,138, 80, 44, 22,163, 82,165, 74, 72, 77, 77,197,166, 77,155, 16, 29, 29,125, 21,192, 24, 67, 31, 28, 23, - 23,119,255,205,211,208,148,214,125,154, 88,251, 52,169,105, 17, 21, 26,221, 24,192,221,124,113,181,109,224,212, 78,195, 91,247, -106, 8,145, 88,136,168, 55,241,255,223, 34,132,101, 89,150, 16,130,254,253,251, 27,116,253,128, 1, 3,112,227,198, 13,148,213, -157,200, 23, 88,176,114, 85,200, 81,126,190,198,217,248, 73,131, 49,126,210,224, 66, 17, 97, 72, 23, 75,158,184, 61, 80,134,192, -210,174, 57,125, 96,211,232,186, 13,253,171,212,247,169,134, 7,143,159, 98,239,198, 63,141, 10,219,127, 93,140, 31,183, 95, 69, - 37,123, 75,104,213, 57, 56,119,120, 75,188, 86,157,187,230, 35,141,112,121,162,150, 16, 24,232, 95,242, 3,171,105,129,192,242, -245,245, 45,213,130,149,154,154,170, 44,175, 66, 40, 76, 35,141, 14,217, 57, 74, 40,115, 63,143,192, 34,132,248, 53,107,214,236, -210,161, 67,135,172,237,236,236, 16, 27, 27,251,129,192, 34,132,248, 53,109,218,244,210,161, 67,135,172,237,237,237, 17, 21, 21, -101,176,123,144, 18,196, 21,146,146,146, 72, 90, 90, 26,111,105,105, 89, 33,145,197, 48, 12,212,106, 53, 94,189,122,101,232, 99, - 13,158,241,101,110,110,190,115,255,254,253,230,201,201,201, 96, 89, 22,175, 94,189,250, 96, 22, 97,193,182,109,219, 54, 81,207, -158, 61,183, 2,168, 83, 22,159, 94,175, 95, 61,120,240,224,145, 49, 49, 49,150,118,118,118,136,139,139,131, 88, 44, 6,165, 20, -164,117,107, 52,127,247, 14, 90,142,131, 76, 38, 67, 72, 72, 8, 54,111,222,156,163, 86,171, 87,151,146, 62, 98, 19, 19, 19,119, -145, 72,132, 65,131, 6,125,112,110,215,174, 93,232, 86,159,173, 63,186,189, 36, 91, 15,169, 58, 65,246,229, 57,150,101,201,152, -233, 63,121, 52,106,209,217,247,117,224,131,183, 73, 9,209,119,202,121,125,157, 70,163,129,167,167, 39, 30, 61,122,132,203,151, - 47,163, 77,155, 54,104,217,178, 37,158, 63,127,142,139, 23, 47, 34, 32, 32, 0,132, 16, 88, 91, 91, 23, 12,179, 40,115,172,133, - 38, 71,143,196,152,148,191, 88,171,138,239,139, 68, 34,168,197, 90,131,210, 40, 56, 56, 24,143, 30,229,213, 63,185,185,185, 16, - 8, 4,250,233,211,167,131, 97, 24, 26, 24, 24, 8, 59, 59, 59,250,253,247,223,115, 2,129, 64, 31, 25, 25,105,104,222,207,179, - 86,229,139, 43,129, 72,248,129, 48,227,121, 62,235,217,179,103,163, 9, 33,207, 9, 33, 5,222, 80,141,126,176,140,248, 87, 65, - 80, 70, 43,228, 29,128,118,132,144,175,142, 31, 63,190,122,221,186,117,182, 93,186,116, 65, 90, 90, 26,170, 84,169, 2, 71, 71, - 71,156, 62,125, 26,103,207,158, 77,230, 56,110, 26,165,116, 79, 9, 31, 89,187,210,124,101, 80, 74,169,147,147,211, 33,117,118, -246, 55,245, 90,122,225,234,193, 91,203, 29, 29, 29,199, 56, 59, 59,127, 59,108,118,247,225,173,122, 52, 64, 72, 64, 56,238, 95, -124,129,132,200,100, 12,107,254,125,153,156,197, 7,185, 91, 88, 88,140, 52, 49, 49, 17, 3,208,150,208, 10,254, 96, 22, 97, 81, - 78,142,227, 56,141, 70,131, 3, 7, 14, 24, 36,178,246,237,219, 7,149, 74, 5,174, 88, 63,106, 81, 78,202, 83, 34, 16, 74,224, - 84,201, 19, 90,109, 14,120,254,227,172, 53, 69, 57, 9, 33, 96, 24, 6,111,197, 98,216, 37, 39,227,193,131, 7, 6,113, 20,109, - 57,151, 20,159,148, 82, 21, 33,100,208,218,165,211, 79, 79,152,249,147, 69,155, 38,117, 48,255,231, 93,208,106,183,131, 97, 25, -200, 36, 34,212,107,216, 20, 44,212,248,125,197,119,233,185,153,105,131,138, 47,153,243, 23,206,178,122, 82, 40,192,241, 60, 46, -223,124,104,240,187, 23,214,242, 28, 7,129, 64,128, 55,111,222, 40, 75,154, 61,200,178,121,221,153, 12,195,148,216,234,254, 48, -141,120, 34, 20, 73, 81,169,138, 55, 52,234,236,207,146, 70,118,118,118,223, 29, 59,118,204,186,192,229,193,243,231,207, 65, 8, -121, 85,196, 26,242,221,177, 99,199,172,149, 74, 37, 2, 3, 3, 11,150,132,122, 85,145,239,168,192,114,149,148,148, 68,226,226, -226, 96, 98, 98,194, 60,127,254, 92, 93,187,118,237,199, 40,123,165,134, 66, 78,149, 74, 21, 81,218,248, 72,149, 74,229, 44,149, - 74,133,197,238,117,114,119,119, 15, 41,222, 85, 88, 82, 56, 51, 50, 50, 30,204,152, 49,163,222, 23, 95,124,129,239,190,251, 46, -213,210,210,210,244,247,223,127, 23,176, 44, 75, 38, 76,152,192, 37, 38, 38,102,111,217,178,197,252,248,241,227, 72, 79, 79,191, - 91,222,187, 83, 74,179, 8, 33,163,155, 52,105,178,235,252,249,243, 38,238,238,238,200,204,204, 4,165, 20, 59,119,238,196,132, - 9, 19, 32,149, 74, 17, 18, 18,130,110,221,186,229,230,230,230,142, 46, 62, 54,178, 8, 39, 33,132, 80,158,231, 49,111,222,188, - 66,167,162, 5, 78, 70, 77,101, 4,155,167, 86,151, 79,222,146, 33,255,106,254,150, 33, 0,192,233,245,220,235,192, 7,111,119, -174,159,127, 77, 36, 18,221, 44, 39,141,230, 76,158, 60,249,247,206,157, 59,203, 20, 10, 5, 82, 83, 83,113,231,206, 29,220,187, -119, 15,247,239,223,135, 70,163,129,181,181, 53, 44, 45, 45, 17, 23, 23,135,224,224, 96, 37,128, 57,101,113,138,229, 66,184,214, - 44,152,201,251,167,245,170,112, 95, 36,132, 80,240,231, 76, 66, 67,242, 82,139, 22, 45,208,168, 81,163, 2,225,195,189,127,255, - 62, 78,173, 86,147, 34, 98, 63,166, 64,136, 87,174, 92, 89,191,109,219, 54, 90, 22,231,253,205, 27,112,126,201, 28,136, 69, 34, - 76,123, 21, 85, 40,182,118,181,169, 11,161, 88, 4,175,174,189,139,214, 3,191, 17, 66,182,231,255, 87, 27,146,231, 63,161,193, - 99,228,252, 31,231,252,207, 8,172, 34, 31,192, 94, 66,200,185,175,191,254,122,133,159,159,223,215,191,252,242, 11, 17,137, 68, - 88,184,112, 33,141,141,141,221,145,223,234, 72,251,152,135, 83, 74,119, 92, 63,122,119,220,208,153, 61,200,212, 53,195,154, 61, -190, 18, 24, 92,171,137, 59,106, 53,113,199,227,171, 65, 88, 63,123,223, 30, 78,199,205,139,139,139, 43,175,217,164,110,215,180, -102,241, 65,238,214, 55,174, 93,177,174,232, 44, 66,158,231, 15,237,219,183,111, 82,175, 94,189,152,135, 15, 31,254,101,204, 85, -129, 51, 62,158,231,113,233,210, 37,104,181, 90,236,216,177,131,231,121,190,116, 63, 88,160, 39,214,174, 89, 49,116,199,238, 19, - 98,177,136,224,222,205, 35,200, 72, 43,219, 42, 39, 18, 9,177,109,231, 81,173, 72, 36,124, 93,210,121,173, 86, 27,117,229,202, - 21,251,142, 28, 39,100, 24,230, 47,194,169, 52, 28, 58,116, 72,199,243,252,251,114,210,229, 46, 33,194,174, 63,124, 55, 98, 95, -231,126, 95,219, 55,105,210, 76,104, 99,103, 15, 66, 8, 18, 19, 18, 17, 18,248, 80,119,238,200,214,132,156,220, 44,131,150,202, - 25,177,234,122,225,152, 43, 0,232, 50, 97, 93,225,248, 43, 0,232, 58,108, 6, 90, 55,246, 1, 49,196,212,244,167,184,226,245, -122, 61,228,114, 57,244,122,125,137,174, 26,204,205,205,101, 42,149, 74, 73, 41, 5,199,113,101,154,134, 40,240,217,211,136,227, - 56,175,180,180, 52,228,228,228,224,222,189,123,116,233,210,165, 73, 73, 73, 73,133,131, 49,117, 58,157, 87,106,106, 42,178,179, -179,113,247,238, 93,186, 98,197,138,164,148,148,148,217, 21,249,134,100, 50, 89,125,129, 64,240, 56, 45, 45,141, 55, 49, 49, 97, -116, 58,157,174,118,237,218, 18,153, 76,102,240, 66,231,177,177,177, 95,148,118,206,205,205, 45, 52, 52, 52,180, 6,199,113, 69, -215, 40, 20,169, 84, 42,247, 38, 77,154, 24,210,181, 51,121,251,246,237, 56,122,244,104,195,204,204,204,193,239,223,191,223, 5, -160,161, 64, 32,192,211,167, 79, 95,169, 84,170,129,189,122,245,218,153,150,150,246, 0,192,100, 3,203,141,243,132,144, 65, 94, - 94, 94,219, 23, 45, 90,164,104,217,178,165,192,201,201, 9, 13, 26, 52, 64, 72, 72, 8,206,156, 57,163,251,237,183,223,114,114, -115,115, 71, 80, 74, 47,149,157,236, 32,122,189, 30, 98,177,184,112,147, 72, 36, 16,137, 68,200, 82, 82,140,250, 57, 76,169,135, - 76,185,122,225,232, 51, 20, 32,241, 81, 97,201,137,241, 81, 15, 8, 33, 55, 99, 99, 99, 51, 74,137, 51,177, 74,165,170,227,232, -232, 40, 32,132,172,209,106,181,195, 39, 78,156,232,176,108,217, 50,212,172, 89, 19,201,201,201,144,203,229,112,119,119, 71, 82, - 82, 18, 30, 62,124,200,229,230,230,110, 4,176,152, 82, 90,102,183, 99,122, 82, 38, 92,236, 43,127, 96,233,164,148,130,234, 1, - 29,199,129,211, 82,104,136, 14, 66,161, 14, 34,145,200,144, 74,146,242, 60,143, 52, 71, 71,196, 92,184,128,252, 85, 37, 74,181, -162,157, 62,125,218,128, 4,226, 33,150,136, 63,232, 22, 36,132, 64, 36, 22, 67, 40, 22,253,101, 70,140,209,106,101,196,127, 86, - 96,229,127, 0,233, 0,198, 16, 66,118,181,106,213,234, 52,165, 84, 8,160, 51,165,244,214,167, 60, 60, 46, 46,238,137,147,147, -211, 44,123, 23,203, 21, 95, 14,110,134,154,117,170,128,211,115,184,115,246, 41,118, 44, 59,190, 63, 38, 42,102,152, 33,107,147, -241, 60,127,173,105,253,154, 12,138,248,214,118,114,114,226, 63,102, 22, 97, 70, 70,198,130,105,211,166,225,187,239,190,171,240, - 44,194,210,174,121,254, 42,113,140,159,151,173, 75,215, 47,155,119, 4, 97,168, 70,163, 46,163,192, 67,161,199, 81,145, 72,248, -250,225,179,216,218, 37, 93,151,148,148,212,113,248,240,225,151, 4, 2, 65,181,138,196, 57,207,243,239, 19, 18, 18,218,150,159, -230,186, 59,132, 16,247, 83,251, 55, 77, 57,127,116,123, 71,158,231,220, 8, 0, 86, 32,122,171,211,106, 47,168,149,153,191, 24, -186,216,243,202, 49,254,152,188,246, 34, 54,124,215, 21, 19, 87, 28,196,214,121,163, 48,235,231,125,248,233,187,201, 88,186,238, - 15,204,159, 60, 8,125,190, 26,206, 83,194,220, 54,244, 61, 88,150, 61,191,105,211,166,161,163, 70,141, 42,156,140, 64, 41,253, -160, 64,215,233,116, 74,158,231,177,113,227, 70, 30,192,249,178,248, 62, 76, 35, 66,203, 26, 15,101,104, 26,101,102,102,142,240, -247,247,223, 9, 64, 66, 41,125,147,150,150, 54,150, 82, 90,184,132, 83,118,118,246,136, 38, 77,154,236,164,148, 74, 8, 33,127, - 57,111, 8,242, 93, 54,212,183,180,180,124,156,111,185,146,124,204, 64,247,178,162,186,140,238, 67,206,128,178,131, 71,145,229, -111, 8, 33,203, 26, 54,108, 88,116,177,231, 87, 0,234, 87, 52, 80,148,210, 75,132, 16,159,121,243,230, 77,145, 74,165,173,115, -115,115, 61, 0, 64, 46,151,135,168,213,234,107, 74,165,242,151,252,114,171, 44, 14,141,137,137, 73,136, 94,175,247,181,181,181, -205,155, 33,155, 47,178, 0,224,228, 99,238, 49,165,250, 10,175, 26,127,246,236,217,170,150,150,150, 29, 8, 33,125, 40,165,158, - 89, 89, 89,234,185,115,231,222, 59,122,244,104,122,149, 42, 85,190,236,220,185, 51,177,178,178,194,163, 71,143,104, 74, 74,202, - 17, 0,179, 13,153, 57,205,243,252,251,149, 43, 43,182,182, 96,121,141, 41,173, 86, 27,127,246,236, 89,155, 47, 18, 19, 5, 86, - 60,255,193, 12,199,146, 38, 92,188,126,253, 26,106,181,186, 76, 39,140,234,140, 52,180,153, 50, 3,200,159,205, 89,128, 60,203, - 21, 5,213, 24,245,148, 17,255, 13,144,191,101, 26,115, 5, 77,136, 78, 78, 78,253,165,114,201,248, 42, 30,142,181, 99,195, 18, -131,178, 50,114,247,196,197,197,109,162,148,114, 31,203, 89, 17, 71,163, 70, 51,239,223,199,249,167, 31, 44, 14,148,114,160, 60, - 5,165, 60,120,158,203, 91,136,154,242,160, 28, 71, 8,193,109,117,110,198, 40, 67,195, 73, 8,177,180,177,177, 89, 76, 41,253, -130,101, 89,166,168,241,171,232,255,124,203,213,249,164,164,164,249,197, 45,173,255,196,248, 60,124,248,112,137,162,223,208, 89, -132,125,250,244,225, 42,248,109, 94,147,203,229, 37, 58,212,204,201,201,137,140,141,141,237,240,191, 16,159, 5,214, 79,106, 64, -129, 86,172,171,189,194,179, 8,203,227,172, 90,181,170, 68,171,213,214, 5,224, 1,192, 2, 64,170, 78,167, 59,159,148,148,148, - 64, 8,169, 15, 96, 94,254,109, 75, 40,165,143,255, 47,191,119, 66,136,204,198,198,102, 59,195, 48, 46,134,220,175,215,235, 53, -169,169,169, 67,139, 54, 4,138,114,218,216,216, 60, 22, 8, 4, 46, 6,240, 68, 39, 39, 39,215, 55,150,159, 70,206,255,188, 5, -235,239, 70,108,108,236, 1, 0, 7, 62, 39,103,105,158,218,141,248,255,139,156,212,184,191, 37, 29,242,197,210,132,255, 90,124, - 22, 8,164, 18,142, 63, 1, 64,254,134,111,179,245, 63, 33, 94,232, 71,182, 20,243, 5, 84,243,207, 25,150,136,136, 8, 53,128, -187,249, 91,241,231, 61, 6,208,245,127, 40,222,148, 0,250,127, 46,190,178, 68,147, 17, 70,252,215,192, 24,163,192, 8, 35,140, - 48,194, 8, 35,140, 48,226,243,130, 0,104, 87, 74,203,198, 96,211, 31, 33,164,221, 71,180,156, 46, 27, 57,141,156, 70, 78, 35, -167,145,211,200,105,228,252,111,113,254,103, 80,224,240,241,239,216, 0,180, 51,114, 26, 57,141,156, 70, 78, 35,167,145,211,200, -105,228,252,175,109,198, 46, 66, 35,140, 48,194, 8, 35,140, 48,194,136,207, 12,131, 5,150,194,193,203,203,182,170,223, 78,171, - 74,181,159, 91, 85,170,253,220,182,170,223, 78,133,131,151,215,127, 49,210, 8, 33, 50, 66,200, 87, 66,161,240,146,163,163, 99, - 38, 33,100,202,191,244, 61,205, 8, 33,125, 8, 33,139, 9, 33, 61, 9, 33, 38,159,147,191, 21, 33,130, 1,132,140, 31, 74, 72, -228, 80, 66, 34, 7, 16, 50,190, 21, 33,255,186,101, 51, 22, 77,118,242,191,117,126,208,185, 69,147,157,252, 75, 60, 63,221,201, -250,193,165,126,107,151, 79,112,182,250, 76,233,102,106,111,111,191,217,193,193, 33,194,222,222,254,189,189,189,253,118, 66,136, -185,177,184, 51,194, 8, 35,140,248,255, 7, 65,126,129,220, 18,192,117, 0,173, 40,165, 55,138, 95,100, 85,165,214, 40, 47,207, -154,223,253,176,112, 14,177,181,177,148,233,116,156, 54, 42, 58,206,123,193, 15,203, 15, 91, 85,169,181, 58,245,253,139,173, 31, - 81, 9, 16,150,101,251, 75, 36,146, 46, 0, 10,132,218, 43,181, 90,125,154,227,184, 3,134,206, 10,114,112,112,184,201,178,108, -213,138, 60,155,227,184,200,248,248,248,102, 31, 89,121,245,173, 92,185,242,246,150, 45, 91,154, 52,108,216, 16, 98,177, 24,243, -230,205,155, 6,224, 23, 67, 57,172,172,220, 76,181, 18,233,183, 2,177,184, 61,213,105,124, 41, 40,192, 72, 2,121,189,250,138, - 72,173, 94,157,154,250, 54,203,192,176,204, 6, 48, 12,121,211,202,183, 82, 74, 87,126, 74,102, 24, 86,151,232,116, 92, 94,158, - 16, 9,192,153,155,155, 95,159, 51,103,142,160, 75,151, 46,216,186,117,107,179,205,155, 55,143, 38,132, 92, 1,112,146, 82,250, -246, 83, 51,159, 61, 48,166, 73,179,102,107,135, 78,155,198, 42,111,222,196,218,237,219,215, 32, 51, 19, 0, 54, 84, 52, 47,137, - 68,232, 99, 99, 35,236, 66, 41,234, 18,128, 16,224,105, 82, 10,127, 86,171,229, 14,208,138,174,195,243, 33,247, 87,248,112, 90, -253,222,138,114,100,188,165,115, 37, 93,189,154,103,188,189, 54, 23,192,151,197,207,235, 85,210,161,148,173,212, 69, 73, 3,162, - 0,252,252,137,226,202,196,214,214,246,249,137, 19, 39, 92, 26, 54,108, 40, 0,128,199,143, 31, 15,233,210,165, 75, 27, 66,136, - 47,165, 52,243,255, 72,172, 75, 5, 12, 51, 94, 44, 20,182,231, 56,174, 22, 0,176, 44,251, 66,163,211, 93,210,243,252, 6, 67, -125,170, 25, 97,132, 17,255,106,227, 69,153, 90,228, 31, 41,176, 0, 92,167,148, 18, 66, 8, 69,177,169,222, 10,123, 79,111, 31, - 31,175,105,231,143,237,170,148,145,154,174,250,245,231,221, 1,217,172, 40,199,195,203, 93,252,235, 47, 43, 45,198, 79,158,250, -173,194,222,243, 65,118, 66,112, 80, 5, 34,177,178, 76, 38, 59,186,106,213, 42,223,214,173, 91, 11,237,236,236,144,144,144,128, - 87,175, 94,249, 94,189,122,181,199,174, 93,187,166, 17, 66,122, 81, 74, 13, 89,248,202,253,202,238,237,118,114, 43,107,112, 58, - 29,156,106,215, 45,116,144,247,230,234, 69,232,181, 90,240, 58, 29,188,186,244, 0, 0,240, 60, 15,111,111,111,246, 35, 19,223, -201,199,199,103,207,178,101,203, 68,106,181, 26, 15, 30, 60,192,181,107,215,248,184,184,184, 21,134,114, 40,236, 61, 90, 51, 50, -249,129,254,131,190, 54,239,222,165,186,176,178,189, 45, 0, 19,188, 14,215, 55, 57,119,241,106,131, 99, 7,118,124,163,176,247, -232,159,157, 16,114,173,108,145,102,213,152, 16,178,180,192,163, 51, 33,228,167,106,213,170,205, 47,122, 77,241,117,237, 40,165, - 16, 8, 4, 9, 89, 89, 89,253,147,147,147, 3,138,115,234, 56, 8,246,238,205,211, 15,115,199,127,197,222,190,125, 91,238,237, -237,173, 6,128,149, 43, 87, 98,241,226,197,226, 11, 23, 46,116,218,189,123,119, 39, 66,200, 26, 74,233,201, 79,201,124, 34,224, -251,161,211,166,177,138,136, 8, 40,158, 61,195,160,204, 76,193,143,192,247, 21, 17, 88,132,144,234, 14, 14,194,195,211,166, 14, -247,114,117,107, 44, 18,137,108,242, 22,215,214, 36,123, 68, 70, 6,244, 89,241,227,230,153,132,144,222,148,210, 55, 6,242, 9, - 0, 44, 2, 32, 5, 48, 23,192,188,164,164, 36,119,142,227,224,224,224, 48,143, 16,114, 28,192, 15,182,182,182, 52, 41, 41,105, - 6,165, 84, 95,150,229, 42,243, 45,157, 27, 79, 92,191,168, 89,111, 40,226,201,249, 47,166,126,233,120,206,204,141,252,176, 96, -109,236, 61, 0,248,210,205,205,212,213, 83, 62, 67, 97, 86,203, 42, 51,230,242,140, 47,221,220,182,156,123,107,152,192, 46, 46, - 50, 1,192,201,201,105,229,238,221,187, 43, 53,106,212,168, 48,143,215,169, 83,135, 93,185,114,165,243,148, 41, 83,214, 0, 24, -110, 32,159,135,173,173,237, 5,142,227,212, 41, 41, 41, 30, 5,199,237,252,122, 53,177, 54,149,183, 77, 74,203,186,153,252,242, -248, 13, 3,185, 26, 74, 69,162, 35, 39,247,172,117,172,211,200,159, 81,216,216, 65, 21, 19,139,108,157,182,221,181, 59,247, 91, -141, 30,255,253,228,252, 52,122,104,172, 98,140, 48,226, 63,141, 82,181,200, 63, 89, 96, 33,255,133,254, 2,137, 68, 60,115,193, -156, 25, 36, 61, 37, 93,169,206,202,214,232, 85, 42, 37, 35,228, 85,207, 95,189, 75,100, 4,108,250,212, 73,147, 76,103,204,158, - 51, 19,192, 32, 67,197,149,159,159,223,195,163, 71,143,218, 89, 89, 89, 33, 35, 35, 3, 41, 41, 41,120,248,240, 33, 40,165,232, -213,171,151,164, 81,131, 6,117,231,206,155,119,143, 16,226,111,136,200,146, 91,217, 96,101,179,188, 53, 98,231, 71,164, 20, 60, - 7,155,251,118, 41,188,102,113,116, 6, 0, 64, 42,149, 22, 46, 20,252, 17,240,111,219,182,173, 8, 0, 70,142, 28,153,153,149, -149,181, 28,192, 94, 74,105,140,161,226,202,198,209,233,244,239, 27, 87,202,106,185,185, 67,171,211,227,125,124, 44, 4, 66, 11, -184,184,136, 48,124, 80,123, 97,139, 38, 86, 54, 75,151,108, 62, 35,183,245,232,153,147, 20,114,161, 52, 46, 11, 11,139, 93, 7, - 14, 28,192,193,131, 7, 1, 0, 33, 33, 33,112,119,119,151,151, 23,134,192,192, 64,215,110,221,186,237, 7, 80,163,188,107,139, - 59,178,151, 72, 36,104,214,172, 25,188,189,189,113,226,196,137, 86, 0, 78,126,106, 6, 84,222,188, 9,197,179,103,192,141,138, - 55, 86, 8, 33,213,235,213,171,114,255,236,153, 61, 54,103,206,190,194,207, 63,111,199,219,183,121,134, 53, 87, 87, 87,124, 53, -176,175,240,197,139,187, 62,125,250,124,117,151, 16,210,140, 82, 26, 98, 0,237,162, 45, 91,182,204,174, 86,173, 26,250,244,233, -211,215,199,199,199,193,204,204, 12,155, 54,109,130,163,163,163,171, 70,163,121,115,226,196, 9,167,248,248,120, 76,154, 52, 9, - 0,166,149, 70,212,170, 99,171,185,146,174, 94,205,107,214, 27, 10,133,153, 35,182,236, 59,128,215, 79,118, 53, 87,107, 95,205, - 93, 62,193,121,176,146, 74,134,185,184,155,206,172, 90,191,165,117, 13,159,110,168, 82, 47,192, 70,197,221,122, 55,111,188,235, - 10,129, 84,181,107,193,170,216,148,191,188,115,223,195,172,111,102,176, 85,224, 37,164, 80,186,128,207, 23, 86,133, 5, 17, 71, -209,173, 69,139, 22,133, 9, 23, 17, 17, 1,181, 90, 13, 47, 47, 47, 70,163,209,180, 54, 48, 94, 61, 58,116,232,112,251,236,217, -179,214, 30, 30, 30, 31, 44,221,226, 96,109,209,241,198,209, 53,147,150,174,253,195,211,206,187,103,122, 98,208,177, 23,229,137, -171,166,141,235, 93, 62,119,116,143,130,100, 71, 65,108,145, 12,240, 41, 8,219,191, 13,196,196, 10,253,199, 77, 21,180,110,219, -198,185,253,151,189, 47, 19, 66,218, 82, 74, 31, 25,235, 24, 35,140,248, 79, 91,177,232,191,229, 93, 4, 69,172, 27,164,164, 23, -227, 41, 95,219,193,206, 90,182,102,213,206, 71,172, 86,163, 49,177, 48,211,154,155,153, 83,152,154,177, 90,157, 54,187,178,123, - 53, 17, 79,249,218, 37,145, 23,159,170, 73, 8, 33, 50,153,236,232,201,147, 39,237,132, 66, 33,120,158,135,173,173, 45,194,195, -195,145,158,158,142,172,172, 44,188,125,245, 10,213, 42, 87,194,194,153, 51, 28, 39,205,152,121,148, 16, 82,191,104,119, 97, 73, -211, 63, 57,157,182,120, 2,149,182,184,239, 7,191,101,113,150,130,240,200,200, 72, 40, 20, 10,248,250,250, 42,238,220,185,115, -171, 52,113, 85,156,211,202,202,205, 84,160,144, 29,252,237,247,121, 50,173, 46, 16, 65, 97,169,168, 89,173, 57,236,173, 43, 35, - 54, 85,131,251, 15, 79, 34,240,249, 94,184, 57, 87,198,132,113,109,164, 43, 86, 30, 62, 96,105, 89,189,114, 90,218,187,204,146, - 56, 51, 51, 51, 21,213,171, 87, 71,229,202,121,235,146,113, 28,135,160,160, 32,112, 28, 87,184, 95,244,119,231,145,171,208,103, -190,199,208, 33, 67,144,146,146,162, 40,137, 83,200, 66, 63,117,244, 87, 2,153, 16, 16,203,173, 52,217,217,217,133,214, 64,173, - 86,139,167, 79,159,194,223,223,191,229,161, 67,135,202, 84, 67,134,198,167, 22,248,105,237,142, 29,235, 6,101,100, 48, 0,176, -149, 16, 94, 75,233, 79,134,230, 37, 59, 59,225,145,243,231,118,219,176, 76, 48,172,204,127,196,195,135,239,161,213,230,133, 55, - 37, 37, 17, 19,199,103, 66, 36, 52,197,137, 19,127, 88,123,121, 53, 59,146,223, 69,198,151, 19, 78,233,185,115,231, 48,113,226, - 68, 4, 5, 5, 57,177, 44,139, 7, 15, 30, 64, 38,147, 97,213,170, 85,172,151,151,151,147, 92, 46,199,249,243,231,145,144,144, - 64,202, 10,231,245, 11,215,127,200,120,123,109,110, 60, 57,255,197,150,125, 7,240,245,192,254,112,160, 97,183,204,221,200, 15, - 29,186, 54,157, 79,217, 74, 93,228,166,181, 45,221,125,187, 66, 36, 86, 96,194,247,139, 17, 18,120,202, 50, 55,235,249,120,194, - 69, 85, 66,254,218,124, 31, 44,118,124,168, 15,183,110,223,221,122,151, 42, 63,170,226, 84,111,204, 3, 0,207,255, 20, 88,174, - 2,194,112,230, 5,214,202, 55,111,222,224,237,219,183, 16, 8, 4, 80, 42,149,208,235,245, 37,134,211,217,217,121,140, 94,175, -159,159,159,206, 59, 29, 29, 29, 71,236,217,179,199,186,168,192, 46,176, 92,165,166,103,166,221,125,244,242,245,212, 49,125, 90, -221,188, 31, 24,101,225,215, 35, 50,253,217,241,140, 82,210, 72, 42, 19,139,143,156, 63,246,135, 66,247,238, 42,228, 94,173, 32, - 84,184,131,211,197, 32, 55, 45, 7, 89,111,227,160,254,125, 61,234,140,159,130, 83,199, 15, 43,124,106,213, 63, 68, 8,113,167, -148,106, 62,226,219, 52, 24, 70, 78, 35,167,145,243,127,147,179, 44, 45, 2,160, 30, 0,251,252,255, 41,200, 27, 26, 99, 3, 32, - 25,121,203,118,217, 3,208, 0, 16, 23,185,167,248,126,209,107,139,239, 23,253,159,146,255,223, 46,255,247, 17,128,212,143, 22, - 88,165,171, 73, 38, 83,207,243, 18,177,173,173,122, 68,191,118,190, 23, 47, 63,126, 42,183, 54, 23,116,104, 93,175,229,195, 23, -111,239, 49, 96,116,132, 48, 6,141,235, 96, 89,182,255,154, 53,107,106,153,153,153,129,231,121,152,155,155, 35, 41, 41, 9, 26, -141, 6, 25, 25, 25, 80,103,101, 66,155,149,137,103, 81, 17,104,218,178, 21,122,127,209,193,235,143,227, 39,251, 3,216, 95, 22, -175, 83,237,186,133,150,171,197, 85,173,255, 52, 69, 68,165, 23,138,173, 31,235,186, 67,164, 80,160,253,212,153,159,146,240, 1, - 98,177,248, 92,175, 94,189,190,156, 62,125, 58, 19, 23, 23,119,158, 16,210,148, 82, 90,110,247,168, 86, 34,253,246,155,111,187, - 88, 90, 42, 40, 14, 93, 58,137, 22,117, 7,194, 68,204, 34, 37, 83, 11, 66,128, 87, 47,143,130, 16, 43, 60, 15,137, 67,243, 58, -102,232,208,209, 75,113,252,240,171,233,248,115,252,207, 95,146, 38, 45, 45, 13,137,137,137,208,233,116,208,233,116,232,211,183, - 47,118,239,218,133,156,156, 28, 40,149, 74,104, 52, 26,112, 28, 7,134, 97,112,233,244, 33, 68,189,123,133, 38,254,254, 40,205, -244,186, 51,128, 10, 9, 33,247, 95,191,126,141, 87,175, 94, 33, 58, 58, 26, 82,169, 20, 14, 14, 14, 88,188,120, 49,212,234,188, - 53,196,250,246,237,219, 18,192,139, 79,253,144,222, 2,155,223,233,245,115,191, 60,118,204,238,206,177, 99,252,189,147, 39,163, -165,217,217,155, 12,185, 87, 36, 66,159,149, 63,141,171, 41,151,203, 17, 29,185, 6,158,158, 34, 76,155, 98,141,229, 63, 38, 3, - 0, 38, 77,116, 65,131,250, 54,200, 76, 63, 12, 27,187,217, 88,183,110,178,219,176, 97,171,135, 0,216, 89, 14,245,220,147, 39, - 79,246,118,119,119,119, 14, 8, 8, 32, 98,177, 24, 50,153, 12, 50,153, 12, 82,169, 20,137,137,137, 8, 15, 15,167, 43, 87,174, -140, 65, 94, 23, 98,169,200,239, 6,252,114,234,151,142,231, 94, 63,217,213,220,153,125,247,172,247,132,102, 17,207,239, 7,100, - 93,188,116,103,137, 94, 37,141, 74,143,190, 60,163,122,131, 0,155,241,223, 45,194,250,149, 11,240,250,193,205, 84,251,202,153, - 27,100, 68,189,179, 81,251, 18,172, 98,173, 22, 9,198,207,235,167, 31, 51,172,183,197, 41,251,187, 99,206, 10, 72, 82,124,242, -147, 85, 8, 15, 80, 74,106,212, 29,236,225,202,104,174, 94,189, 42,107,209,162, 5, 84, 42, 85,161, 37,114,207,158, 61,188, 94, -175, 47,177,219, 89,171,213,206,143,137,137,113, 84, 42,149,248,226,139, 47, 38,173, 90,181, 74, 94,176,134, 28,199,113, 31, 88, -174,126,248,101,247,133,111,231,111,184,118, 97,255,143, 78, 63,204, 28,209,106,208,132,165,215, 80,202, 58,143, 2,134, 25,127, -234,216,118, 7,169,165, 14, 50,171, 14, 80, 37, 40,241,122,243,215,200,205, 84,161,193, 15,139, 0,136,161,209, 49,216,212,181, - 15,132,214, 78, 88, 48,106,132,211,156, 77, 91,198, 1, 88, 99,108,199, 27, 97,132, 17,197, 96, 79, 8, 57, 13, 0, 51,103,206, -156,189,124,249,242,151,132,144,211,148,210, 46,249, 13,186,211,148,210, 46, 5,215,228,215,217,127,217, 47,184,182,248,126,241, -255,179,102,205,242, 89,177, 98,197, 50,127,127,255,253,119,239,222,125,247, 49, 2,139, 41, 80,140, 69,127, 63,176, 96,241,252, -205, 55, 97, 17,185, 29,219, 55,118, 62,117,253,197,227,225,195, 59,183,237,215,173,121,135,119, 81,137,193,110, 85, 28,108, 2, - 95, 62, 51,227,121,254,166, 33, 15,147, 72, 36, 93,218,180,105, 35, 72, 75, 75,131,137,137, 9,146,146,146, 16, 19, 19, 3,173, - 86, 11, 85, 70, 58,212, 25,233, 80,165,167, 65,155,145,134,183,143, 31,162,182,155,171, 36,127, 16,124,121,194,167, 68,203, 84, - 81, 75,150,216,212, 20, 18, 83, 83,144, 10,118, 15, 18, 66,186, 91, 90, 90,222, 39,132,204,205,175,140,198,207,152, 49, 35,153, -231,121, 44, 93,186,212, 76,161, 80, 28, 34,132, 72,202,227, 49,181,101,187,248,215,241,101,130,195,159,163,153,223, 80,120, 84, -239,132,240, 4, 37,146,179,180, 72, 76,215,162, 65,139, 95, 81,213,111, 17, 42,213, 89,142, 87,239, 83,225,228,236,206, 64, 32, - 41,115, 81,230,132,132,132, 15,246,247,239,219,135,220,220, 92,184,185,185, 97,224,192,129,152, 49, 99, 6, 6, 14, 28, 8, 39, - 39, 39, 12,234,215, 13, 11, 22, 44, 64, 98, 98, 98,121, 65, 85,123,120,120,168,171, 84,169,162,174, 82,165,138, 90,171,213, 34, - 59, 59, 27,233,233,233,197,227,123,114,133,191, 14,123,251, 89,142,142,142,207,237,237,237, 95, 74,165,210,179, 79, 9, 9, 86, - 87,173,106,223,180, 71, 15,226,221,175, 31, 27,105, 98, 66,110, 0, 10, 67,184,108,172,132,157, 91,183,249, 82,156,158,182, 29, - 64,158, 81,106,196,112, 91,220,190,225,131, 59,183,234, 99,226,120, 55, 16, 70, 10,194,136,145,155,115, 21,141, 26,250,139, 44, - 44, 72,151,114,210,250, 43, 0, 79,155, 54,109,234, 52, 97,194, 4, 34,145, 72, 48,105,210, 36,237,168, 81,163, 66, 7, 14, 28, - 24,122,229,202, 21,174, 74,149, 42,168, 84,169, 18,169, 84,169,146, 35,128,167,249,247,148, 9, 51, 55,242,131, 90,251,234,150, -133,187,252, 29, 7,155, 38,217, 58, 73,159, 5,171, 98, 83,150,108, 8,251, 57,252,117,174,235,235, 7, 55, 83, 66, 3, 79,241, -225,143,174, 39,199,134,102,185, 46,217, 16,246,243,172,245, 49, 37,126,204, 55,110,128, 63,122,250,134, 54, 55, 39, 87,208,163, -107,235,220, 49, 35,251,123, 88, 41,124,246,192,185,131, 95,213,202, 46,131, 22, 44, 91,167, 29, 53,238, 91,237,214,109,219,105, - 86, 86, 22, 50, 51, 51,177,110,221, 58,253,169, 83,167, 98, 56,142,251,182,180,182, 15, 0,232,116, 58,140, 25, 51, 70,110,102, -102,134,168,168,168, 66, 11, 40, 0,196, 37,165,188,184,243, 40, 48,120,234,216,190, 45,115,212,106,245,133,235,143, 95,121,187, - 87,113, 33,132,150, 58,193, 68, 44, 20,182,175,223,168, 17, 75,105, 58,136,160, 50,222,238, 90,137,204,248, 84,100, 38,166,130, - 21,202,161,135, 4, 58, 94, 12,139,218, 13, 17,242, 40, 0,206,182,246, 2,137, 80,104, 92,226,202, 8, 35,254,163, 40, 75,139, - 20, 21, 73, 43, 86,172, 88, 86,214,249, 34,191,154, 98,251,133, 2,170,184,248, 42,250, 31, 0, 86,172, 88,177,140, 82,218,229, -238,221,187,251, 0, 40, 63,230,125,202, 85, 27,172, 74,179,124,250,140,185, 48, 55,147,153, 55,170,235,238,112,252,252,245, 39, - 55,239, 62,126, 85,213,197,198,150,234, 52,150, 63,173, 94,239, 66,114,149,134, 14,242,246,178,177,177,129, 86,171,197,155, 55, -111, 16, 29, 29, 13,173, 86, 11,125, 78, 14,212,233,233, 80,165,165,129,203,201,130,136,227,160, 76, 74,132,181,137, 20,248,115, -134, 97,121, 66,168, 68,129, 85,240, 43, 53, 51,131,196,212, 12,140, 80, 88, 98,247, 97, 41,156,245, 26, 54,108,120, 48, 48, 48, -176, 81,187,118,237,150, 16, 66,204, 41,165,239, 99, 98, 98,218,206,155, 55, 79,109,111,111,143, 49, 99,198,212, 4, 48,180, 92, -113, 41,214,120, 85,113,168, 9, 15,215,161,168, 90,169, 13,210,115,116, 72,202,212, 33, 49, 93,139, 77,191,250,227,200,214,134, -184,125,164, 57, 2, 47,180, 71,186,206, 1, 10,167,238,160,156,198,167, 44,206,187,119,239, 98,227,198,141,216,184,113, 35,126, -255,253,119,172, 95,191, 30,105,105,105,240,245,245, 69,100,100, 36,206,157, 59,135,184,184, 56,216,216,216,224,233,211,167,216, -180,105, 19, 30, 62,124,104, 72, 38, 55,232,154,138,246,149,235,245,250, 97,113, 61,122,212, 74,176,178,242,174, 91,183,238,151, -147, 38, 77,114,109,218,180,105,225,249,234,213,171, 87,150,201,100,241,132,144,173,132,144, 58,101,113,241, 64, 93, 91, 91, 95, -104,212,193,249,105, 37, 4, 33, 82,180,105,255, 10, 77,155, 63,134, 86, 39, 2, 67, 36, 96, 24, 41,244,250, 20, 88, 90, 58,129, - 82,226, 91, 78, 16,231, 37, 37, 37,185, 95,190,124,153, 9, 15, 15,135, 84, 42, 5,128,136,133, 11, 23,174,255,249,231,159,131, -172,173,173,185,211,167, 79,227,248,241,227,232,210,165, 11, 59,106,212, 40,247, 74,149, 42,109, 44,239,189, 23,172,141,189,183, -119,245,185, 1, 66,157,101, 29,169,172,106, 53,228, 40,186,143,111,101, 43, 7,128,115,111,223,102,217, 85,206, 92,145,147,245, - 60,210,194, 37,251,199,242, 6,184, 83,186,128,127, 18, 26,124,127,239,177,243, 25,137, 9,105,194,186,181,124,148,203, 23,127, - 39,170, 90,173,198, 79, 11,102,140,117,136,201,148,166,183,159,116, 46,248,232,249,135,217,131,135,127,173, 31, 57,122,130,234, -220,249, 75,199,120,158,175, 85,218, 12, 66,158,231, 17, 23, 23,135,151, 47, 95, 34, 44, 44, 12, 73, 73, 73, 72, 78, 78, 70, 86, - 86, 86, 97,183,162, 73, 86,230,153,245, 59, 78, 61,147,203,100, 38,141,106,185, 87,126, 16, 16,148, 40,151,201, 76,220,171, 85, -246, 32,100, 81,137,229, 8,199,113,181,164, 38, 50, 0, 4,233,129, 55,145,157,150,141,236,244,108,100,165,102, 67,173,101,161, - 82, 51, 80,106, 24, 84,105,217, 1,217, 57, 42,100,167,100,128,231, 56, 63, 99, 53, 99,132, 17, 70,148, 81, 47,159,158, 57,115, -230,108, 3, 47, 55,184, 27,179,184,224,154, 57,115,230,108, 66,200,233, 89,179,102,249,192,128, 49,203, 37,161, 92, 55, 13,201, -201, 33,217,102,182,222,189,166,124, 63,255,220,190,109, 27,108, 53, 26,101,164,141,165,130, 51, 53,145, 88,142, 26,179, 20, 89, -217,105, 61,179, 83, 13,159,245,148,150,150,134,119,239,222, 65, 38,147, 65, 36, 20,130, 83, 42,193, 41,115,160, 76, 75, 1,163, - 85, 67,196,113,176, 50,145,161,138,147, 3,170,218, 59, 24,196,249,230,234,197,194, 1,237, 69,187, 5, 87, 54,244,130, 88,174, -128,216, 84,129,111, 78, 95, 7, 0,136, 68, 34, 96,222, 18, 67, 18,209,198,217,217,249,228,222,189,123, 69, 73, 73, 73,120,250, -244,233, 51, 74,105, 6, 33,196, 20, 0,255,234,213,171,203,129,129,129, 93,220,221,221, 1,192,173, 60,190,204,100,134,211,233, - 41,162,226, 35, 16, 30, 29, 0, 43,243,234, 16,154,120, 32, 49, 93, 11,137,172, 58,116,234, 63,123, 25, 85,153,239,161,212, 26, - 54,209, 81,171,213, 66,171,213, 66,167,211, 65,173, 86, 99,240,224,193,184,115,247, 46,246, 31,191,130,119,111, 67, 80,179,154, - 3,134, 12, 25,140, 58,117,234,224,209,163,178,199, 15, 15,171, 75,116,115, 90, 64,176,250, 75, 6, 98,133,181,186,241,140, 11, - 15, 12, 17, 89,101,181, 54,138,196,231,207, 93,186,116,169, 17,146,147,131,151,193,193,104,183,112, 33, 0,224,204,153, 51,133, -215,104, 52, 26, 76,157, 58, 85, 28, 20, 20, 52,242,241,227,199, 35, 9, 33,171, 41,165, 37, 15, 34,167,192,153, 51,247, 48,118, -108, 16,146,146,242,198, 97, 31,216,247,167, 30, 13,127,167,197, 23,157,243,122,174, 44, 44, 44,176,122,181,175, 65,241,201,113, - 28, 54,111,222, 92,216, 45, 8, 0, 2,129,160,233,212,169, 83,123,149,116,125,141, 26, 53, 68,229,113, 78,237,235, 34,125,250, - 94, 54,222,188, 70, 85, 31, 51,155,218, 72,209, 5,248, 6,196,196, 77,156,218,215,101,205,234, 67,209, 42, 25, 81,239, 36, 92, - 84, 37,129, 84,181,203,144, 48,190, 61,183, 78, 99, 81,117,248,174,248,164,204, 57, 19,190,254,202,218,204,194, 46,103,235,250, -229,150, 12,203,208,147,143,181,233, 62,174,214, 22,221, 27,175,205, 30, 59,101, 94,128, 70, 31, 53, 1, 81, 39, 67,202,114, 85, -193,113, 28, 98, 99, 99,145,148,148,132,200,200, 72, 36, 39, 39,231,127,251,201,127,153,137, 90,193,130, 16,202,200, 72,188, 63, -182, 21, 85, 7, 15, 70,131, 37,139,193,241, 2, 40,115, 57,172,110,210, 22,105, 25, 74,168,121, 2,167,122, 77,240,245,217, 91, - 96, 40, 7,108,218, 96,172, 65,140, 48,226,191, 43,158, 74,213, 34,197,133,208,242,229,203,187,124,238,231, 23, 21, 89,203,151, - 47,127,185,124,249,242, 79,122, 86,185,110, 26, 0, 32, 51, 41, 40,204,186, 74,237,216, 28,101,182,137,157,189,141, 70, 33,149, -240, 25,153, 57,108,192,139,103,218,236,184, 55,175, 43,240,188, 87,129,129,129,190,177,177,177,136,124,255, 30,122,101, 14, 24, -181, 6, 84,149,139,118,205,154, 64, 10, 64,202, 16,136,120, 45, 4,172, 24, 89,217,153, 0,240,170,220, 74, 81,167,251,139, 37, -139, 16, 2,177,169, 41,196,114, 57,196, 10,211, 15, 44, 90,134, 88,104, 36, 18,201,222, 67,135, 14, 57, 58, 59, 59, 99,241,226, -197,112,113,113,241,172, 85,171, 86,110,243,230,205,101,246,246,246,240,246,246, 70,147, 38, 77,112,238,220, 57, 0, 40,215, 39, -148, 78, 47,125,254, 58, 2, 77,147, 83,239,226,214,245,223,161, 81,170, 81,183,229,239,208, 10,170,194,214,103, 17,248, 55,123, -144, 27,127, 34,207, 90,224,208, 21,209,145, 17, 32,172,248,101, 5, 51, 7,158, 63,127,142,125, 39,110,192,177,138, 23, 34, 67, -131, 17,124,237, 50,238,216, 90,163,170,183, 15,116, 58, 93,153,239,174,227, 32,248, 97, 67,161,155, 6, 73,106,106,170,196,202, -202, 74, 93, 16,119,142,142,142,159, 34,178,190,154, 62,125, 58,210,133, 66,160,115,103,136,194,194,160,213,106,225,239,239,143, -250,245,235, 3, 0,252,253,253, 33, 16, 8, 80,187,118,109, 56, 57, 57, 97,195,134, 13, 95,161,148, 89,122, 12,193, 83,189, 62, -197,211,213,213,181, 80, 96,237,218,157,132,128,199,237, 65, 32,198,186,245,127,122,101,168, 92,185, 50,226,227,194, 64, 8, 13, - 44, 39,140, 75, 28, 28, 28,230, 57, 58, 58,186,254,252,243,207,172, 84, 42,197,184,113,227,170,103,103,103, 87,205, 55, 25, 99, -214,172, 89,121, 86,169, 5, 11,176,112,225, 66,168,213,234,220,210,200,118,255, 82,219, 41, 49,149, 31,105,239,224,220,179,181, - 77,213, 90,109, 58,182, 67,117,247, 54,104,211, 49, 18, 0,150, 89, 9, 34,250,173,156,235,123,204,166,146,213,246,139,231, 47, - 45,104,214,178,205,156,153, 99, 44,127, 88,177, 41,173,220, 49,141, 25,239,119,102,189, 22,247,255,229,215,141,187,127,153, 63, -107,178, 52, 50, 73,147, 22,147, 70,179, 21, 18,129,194,205,158, 40, 38,126,191,228, 93,108,108,216, 52, 68,157, 47,119,230, 36, -207,243, 8, 11, 11, 43, 28,179,167, 82,169,144,147,147,131,168,168,168,194, 46, 66,165,220,236,139, 9,195,187,250,229, 40,149, -185, 15, 94,132, 70,206,157, 52,200, 63, 71,169,204, 13, 13,143, 12,161,116,109,137, 42,140, 97,152, 23,185, 89,185,237,114,211, - 85, 72,122,250, 26, 46,109,171, 64,167, 39,208,232, 57, 36,165,100, 65,173, 7, 56, 70, 8,159,126, 67,192, 17, 1,146, 99, 99, -192,176,236, 51, 99, 53, 99,132, 17,255, 89,148,235,166,129, 16,114,218,223,223,127,127, 81, 43, 83,193,127, 0,106, 0,101, 13, -217, 73, 42, 42,162, 10,186, 13, 75,123, 78, 49,222,143, 22, 88,101,118,247, 16, 66,136, 95,173, 42, 78, 43, 23,124,229,194,235, -245, 53, 19,147, 19,244, 2,129, 68, 88,201, 92, 25, 87,145,135,169,213,234,211,151, 47, 95,238,209,190,125,123, 73,232,139,103, -208,100,100, 64,147,145, 14, 33,175,135,149,172, 62, 24,173, 26, 68,163,129,179, 39, 15, 85,150, 12, 55,238, 4,234,212,106,245, -105, 67, 5, 22,195,178, 31,142,187, 82, 40, 32, 49, 53,131, 68,161, 40,222,133, 72,202, 81,209, 38,221,186,117,107,219,184,113, - 99, 80, 74,177,121,243,102,104,181, 90,177, 86,171,133, 70,163,129, 86,171, 69,102,102, 38,118,239,222,141,223,126,251,237, 14, -128, 29,229, 86, 98,122,205,229, 11,151,174, 54, 28, 49,168,139,240,236,233,213,208,107, 56, 40,137, 11,114,114,116,200,214,152, -128,179, 30, 12, 36,156, 1, 43,144,194,191,118,117,156, 56,124, 84, 11,189,250,138, 33,162,170, 40, 84, 42, 21,162, 34, 35, 16, -253, 54, 4,138,204,120,216,154,153, 32, 55, 44, 4,117,134, 12,133, 70,163,169,112, 6,169, 84,169, 18,120,158, 71,235,214,173, - 11, 7, 77,127,172,200, 74, 73, 73,193,169, 83,167,208,184,113, 99,180,108,217, 18, 49, 49, 49, 8, 11, 11, 67,231,206,157, 11, -175,121,246,236, 25, 2, 2, 2,224,230, 86,182, 81, 48, 57, 85,119, 54, 58,234,105,223,238,221,187,139,238,223,191, 15, 74, 41, -220,221,205, 96,102, 42, 7, 97, 36,240,242,178, 3,144,167,253, 91,181,106,133,204,204, 48,125, 90, 26, 61, 91, 78, 92,238, 37, -132, 28,215,104, 52,111, 90,180,104,225,244,246,237, 91, 76,153, 50, 69,112,224,192,129, 2,147, 49,102,206,252,112,146,132, 82, - 89,122,215,124,205, 90,158,223, 85,215, 91,182,148,202,170, 86, 51,179,169,141,234,238,109, 0, 0,237,187,140, 64,245, 26,149, -145,153,252,188,154, 74, 25,209, 83, 36, 72,179,124,190, 46, 38, 72,214,217,119,184, 42,241,122, 40, 0, 67, 28,247, 82,101,232, -129,132, 72,225,224,131,199, 79,158, 27,211,169, 75, 55,161,142,211,235,125,171, 8, 45, 14, 29, 59,147, 24,243, 62,114, 45, 34, -207, 7,254,105,239, 43,211,106,199,101,102,102, 66, 46,151, 35, 48, 48, 80,221,185,115,103, 9,195, 48,120,243,230, 77,161,192, -178,179,177,242,110,218,192,215,243,135, 95,118, 95,144, 75, 36,146,142,173,234,123, 5,133,190,143,166,148, 68,148,198,171,209, -233, 46,189,120,250,172,181,173, 83, 13, 54,236,250,125, 88, 55,239, 4,181,154,129, 82,195, 67,173, 7,244,172, 8,142,117, 26, -193,194,205, 11, 20,192,163,251,119,116,106,157,238,130,177,142, 49,194,136,255,180, 21,139,150, 37,142,242,255,167, 2,136, 88, -190,124,121,114, 17,235, 82, 18,128,103, 0,252,242,175, 75, 42,118, 95, 18,242,102, 3, 54, 40,194,147, 84, 68,104, 21,253,175, - 41,118,205, 71, 53,252,202,117,211, 0, 0, 54, 54, 54,118,117,235,214,119,219,178,237, 32, 40,165,120, 29,176, 10,105,137,193, -152,183,236,158,155,139,139, 75,203,232,232,232, 27,134, 60,140,227,184, 3,219,183,111,159,214,168, 94,221,186,213, 92, 92,240, - 44, 34, 28, 34,202, 65,196,113, 96,180,106, 8, 56, 13, 92,124, 57, 48, 68,129,216,216, 12,172,216,123, 48,144,227,184, 3,229, -241,122,118,234,134,197,209, 25, 32,132,224,103,127, 95,136, 77, 21, 16,201, 21,248,230,228,213, 66, 81,117,122,241, 44,136, 21, - 10,184, 53, 42,223,129, 59,165, 52,215,212,212,244,241,139, 23, 47, 26,248,250,250, 98,218,180,105,136,136,136, 0,207,243, 72, - 72, 72, 80,197,197,197,197, 36, 37, 37, 69, 0, 56, 6, 96,139, 33,158,194, 69,106,213,154,211, 71,118, 77,240,111,214,210,166, -123,207,223,112,252,240, 84,164,103,100, 34, 87, 47, 67,142, 74,143, 28, 53, 11, 43,235, 90,104, 84,187, 54, 98, 99, 18,241,242, -254,133,108,129, 58,119, 85, 69,172, 87, 12,195,224,217,179,103,112,117, 50, 69,200,173, 27,176, 49, 17,194,207,201, 1, 78, 77, -155, 33, 44, 44,172, 92, 14, 33, 11,253, 87, 95,125, 85,232,201,189, 67,135, 14,225,131, 7, 15,118,156, 58,117, 42,182,109,219, -134, 59,119,238,252,101,224,117,203,150, 45,113,243,230,205, 69, 0, 22,148,103,196,211,104, 52,240,244,244,196,163, 71,143,112, -249,242,101,180,105,211, 6, 45, 91,182,196,243,231,207,113,241,226, 69, 4, 4, 4,128, 16, 2,107,107,107,232,242, 68,179,174, - 52, 50,173, 22,135,126,252,105,251,236, 95,126,249,205,103,208,160, 65, 56,114,100, 63, 70, 12,175, 9,194, 72, 64,136, 4,221, -186,214,196,226, 37,143,208,168, 81, 43,216,216, 8,241,203,234, 19,239,148, 74,110,183, 1, 81,249,195,197,139, 23,157, 84, 42, - 21,210,211,211,169, 66,161, 32, 41, 41,121, 51, 84, 75,178, 96,229,230,230, 74, 75, 35,122,241,228,213,170,244, 44,154, 70,179, - 3,122,166,234, 3,106,181,233, 24,133,246, 93,134,227,210,233, 29,184,122,225, 50,172, 4, 17,225,144,103,157, 75, 14, 79,206, -140,203,113,223,232, 85,111, 20, 27,157,115, 97,227,164,238,150,172,163, 35,127,104,230,111, 25,233,101,164, 55, 37,132,144,212, -160, 61, 39,143, 81,116,107,226,223,168,134,111,101, 71,113, 90,114, 34, 61,124,226, 92,160, 54,252,200,169, 2, 97, 85,222,170, - 8,148,210,197, 51,103,206,156,159,255,127,231,220,185,115, 71,173, 88,177,194, 54, 62, 62,190,112, 12, 86, 98,114,234,213, 38, -157, 39,114, 41,233, 25,154,237,191,124,223, 71, 38,149,136,231,174,216,126, 93,199,226,126,105,188,122,158,223,208,111,202,188, -201,161,175, 3,156,171,202,196, 56,241,253, 2, 60,187,120, 13, 58, 70,132,177,151, 31, 64,173,229,144,158,156,130, 43, 35,199, - 67, 97,111,137,223,174, 31, 73,224,121,254,119, 99, 21, 99,132, 17,255, 93,148,161, 69, 74, 26,227,146, 96,192,117,143, 12,224, -249, 91, 96,208,148,186,228,228,228,196,155, 55, 31,224,250,233, 31,112,227,244, 15,120, 25,240, 12,177, 49, 26,196, 36,168, 96, -102,102,118,175, 12, 37,218,174,120,165,144,155,155,219,107,238,188,249,241, 82,153, 9, 90,180,109, 11, 7, 91, 59,152,136,132, - 96,245, 60, 88, 34, 68,118,146, 5, 66,158,231, 98,198,246, 61,137,217,185,185,189,138, 87, 14,197, 57,139, 28, 7, 33, 4, 18, - 51, 83,136, 21,166,144,152,154,125,208, 93, 40, 53, 51,131,212,212, 12, 2,177,184,164,193,240,127,225,204,206,206,238,221,167, - 79,159,180,140,140, 12,140, 26, 53, 10, 55,110,220, 8,184,112,225,130,217,179,103,207,100,137,137,137, 53, 40,165, 29, 40,165, -155, 74, 19, 87,197, 57, 83, 83,223,102, 81,189,186,255,242,249,223, 42, 85,122,107,244, 29,122, 0,114, 38, 10,122,142, 7, 5, -224,100, 37, 70,211,118, 75,144,168,105,130, 3, 27,151,230,242, 90,213,160,162, 62,176,138,115, 82, 74,169,181,181,245, 7,239, -194, 48, 12,174, 95,191,142,190,125,122,163, 99,207, 30,176,173,230, 10,187,118,157,208,113,212, 88,108,218,180, 9, 12,195,192, -202,202,234, 3,139, 70, 81,206,157, 1, 84,184,247, 57, 37,123,159, 83,178,227, 9, 21, 0, 24,178,103,207,158, 31,253,252,252, -174,221,185,115,103, 21,128,254, 69,227,187, 72, 88, 22, 22,181, 94,149,146, 70,115, 38, 79,158,172, 12, 13, 13,133, 92, 46,135, - 94,175,199,157, 59,119,240,219,111,191,225,231,159,127, 70, 64, 64, 0,172,173,173,225,230,230, 6,181, 90,141, 71,143, 30, 41, - 1,204, 41, 35, 47,241, 73, 73,250,222,235,214,173, 72,233,210,165, 57,182,111, 95, 15, 7,135, 38, 16, 10, 28, 32, 16,218, 66, -174,240,196,214, 45, 63,226,203, 47,235,226,228,137,131,169,201, 41,250,222,197,189,174,151, 18, 78,213,131, 7, 15,176,113,227, - 70,244,233,211, 39,166,111,223,190, 92, 70, 70, 70,161, 5,171, 96,149,244,133,249, 99,200,212,106,181,164, 52,206, 81,223,191, -136,249,238,135,192,197, 9,241, 49,141,111, 92,187,247,213,213, 11,151,241, 46,244, 42,174, 94,184,140, 91, 87,239,206, 76,136, -143,105, 92,183,161,135,168,215,168, 9,223,237, 58,122,132, 85,152, 57, 98,215,209, 35,236,192,137,223, 46,173,223,177,205,156, -242,242,124,126, 58,210,236,196,132, 89,203, 86,253,154,173,215,170,152,149,107, 55,196, 42,147,226,230,160, 96,106,101, 41,214, -171,162,156,185,185,185,155,148, 74,165,147, 82,169,116, 82,169, 84,115, 34, 34, 34, 90, 76,155, 54, 45,137,227,184, 66, 11,105, -226,203, 19,247, 94,221,218,177,204,206,198, 82,214,164,129, 79,205,213,155, 14, 95,143,140, 74,248,163,192, 7, 86, 41,105,164, -202, 86,170,122,247,232, 53, 56, 39, 61, 77, 13,255,111,103,130,151, 42,160,230, 0, 29,101,161, 39, 2,188,248, 97, 53,100, 86, -166,216, 27,254, 36, 55, 67,167,237, 93,212, 7, 86, 57,239,254, 41, 45,100, 35,167,145,211,200,249, 63,200,249,111,131,160, 64, - 49, 22,253, 45, 14,103,103,231, 22,221,187,181, 67,171, 46,115, 65, 41, 69,240,147,159,144,150,244, 26,206, 14, 18,132, 69,102, -250, 3,184, 97,232, 3, 41,165,145,132,144,198,147,231,204, 61,218,183, 67, 91, 47,223,106,213, 36, 85,171, 86,129,220,206, 14, -201,201, 73,184,125, 63, 72,183,116,223,161,192,124,113,101,200, 82, 57,224,121, 62,111,240, 58,128,182,147,103,128,176, 44,144, -239,142,161,160, 66,172,214,160, 9,136, 64, 0,142,242, 80,171,213,212,128,112, 70, 19, 66,122, 15, 26, 52,232,202,233,211,167, -153,142, 29, 59,214, 57,118,236, 24,255, 41,145,157,157, 16,114, 77, 97,239,209,101,233,172, 49, 7, 26,183,233, 97,230,238, 83, - 95, 84,191, 42, 11,173,142, 32, 54,230, 61, 78, 31,125,168, 13,122,112, 33,147,234, 85,253,115,146,202, 94, 42, 71,171,213, 70, -218,219,219,219, 47, 90,180, 8,122,189, 30,122,189, 30, 28,199, 33, 57, 57, 25,247,238,221, 67,173, 6,141,224, 53,124, 36,146, -146,146,176,110,221, 58,184,184,184, 96,217,178,101, 72, 77, 77,133, 94,175,143, 52, 48,173, 56, 0, 23,242,183, 15,132,108, 65, - 43,163,188,238, 65, 55, 55, 55,177, 74,165,170,227,232,232, 40, 32,132,172,209,104, 52,195,103,205,154,229,176,108,217, 50,212, -172, 89, 19,201,201,201,144,203,229,112,119,119, 71, 82, 82, 18, 30, 62,124,200,229,230,230,110, 4,176,152, 82,154, 84, 78,248, -222, 16, 66, 26, 79,154,244,205,209, 31, 87,140,113, 87,169, 91,137,173,172,154,129, 82, 61,146,146, 34,144,149,121, 71,187,100, -241,142,183, 9,137,186, 94,148,210, 80, 3,147,105,193,132, 9, 19,128,252,165,114,194,194,194,158,122,121,121,185,151,102,193, - 50, 4,171, 15, 69,171, 0,236, 91, 57,165,201,148,204,228,231,238, 86,130,136,240,198,190,252,186,213,135,162, 85,139,166, 88, -252,144, 28,113, 35, 36, 46,231,194,198, 93, 71,143,176, 67,123,246,230, 92, 20,161, 51,165,118,244,112,155,174,229,166, 15,173, - 83,167, 78, 37, 66, 82,171, 39,166,188,126, 60, 98,212,152,126,230, 34,229, 89, 63,151, 20, 55,166,114, 93,105, 64, 64, 64,184, -161,107,122, 22,227, 13, 33,132,180,152, 53,107,214, 5, 74,233, 7, 99, 15, 18,147, 83,175,250,119,153, 64,211,211, 51,158, 38, - 6,157,120, 97, 0,215, 67, 66, 72, 91,223, 90,117,143,252,184,108,133,125,171,201,211, 4, 33,215,174, 3,156, 14,239,111, 92, - 7, 39,209,240,171,239, 94, 74,200,208,106,123, 26,189,184, 27, 97,132,209,122, 85,150, 22,249, 71, 10,172,242, 16, 29, 29,125, -195,205,213,229, 98, 72, 72,139, 14,149, 93,108, 1, 0, 97,225,177,136, 73, 80, 95, 52,180,123,176, 4,145, 85,127,207,169,179, -253, 37, 18, 73, 23,146,239,138,129,126,196, 98,207,122,189, 62,186, 90,181,106,165,156, 45,217, 85, 19,199,113, 9, 6,134,243, - 58, 33,100,176,155,155,219,138,247,239,223, 31,165,148,230,124,106,132,103, 39,132, 92,179,178,114,115,189,123,249,200,183,247, -175,159,110, 71,245,154, 90, 0, 64, 4,226, 10, 45,246,156,157,157, 61,102,220,184,113,155,132, 66, 97,101,228,143, 41, 43,152, -241,197,113, 28,171,213,106,165, 28,199,177, 0, 8,195, 48,122,161, 80,168, 58,122,244,168, 94,175,215, 71,170,213,234, 49,159, -250, 1, 24,138,179,103,207, 86,181,180,180,236, 64, 8,233, 67, 41,245,204,202,202, 82,207,157, 59,247,222,209,163, 71, 51,170, - 84,169,242, 69,231,206,157,137,149,149, 21, 30, 61,122, 68, 83, 82, 82, 14, 3,152, 67, 41, 13,171, 64,120,194, 8, 33,126, 99, -198,254, 62,192,202,106, 83,103, 74,225, 7, 10, 66, 24,188,200,200,224,207,230,230,114,127,228, 11, 69, 67,249,244,197, 44,103, - 75, 2, 3, 3,119, 0, 16,150, 52, 6,171, 66, 48,201, 62,169, 82, 70,244, 38,138,220, 99,171,215, 70,171, 0, 96,193, 47,233, - 25, 0,182, 78,234,105,197,191,122,178,245, 39,103,179,208,239,215, 30, 75,221,110, 8, 93,221,186,117, 93, 25,134,233, 15,192, -215, 78,146, 94,195, 86,156,193, 17, 66, 91, 19,194,216, 0,120,238,237,237,125, 26, 64,244, 71,166,115, 8,128, 42,197,143, 39, -190, 60,113, 15,192,189, 10,114, 61, 36,132,212,152, 50,125,234,120,177, 80,216, 30, 28, 87,123,201,241, 67,212,184,216,179, 17, - 70, 24,241,175,183, 96, 25,130,183, 97,209, 29, 1,192,195,195,131,134,134,134,126,178,194,204, 23, 80,251, 81,142,151,246,242, -144,156,156, 92,255,111, 86,212,251, 0,236,251,156,156,249, 2,106,113,254,246,177,225,122, 1,160,209,255,117,107, 35,191,175, -124, 81,105,215,116,232,208,225,189, 86,171,189,156, 95,209, 91, 0, 72,213,233,116,231, 53, 26, 77, 2, 33,164,254,234,213,171, - 11, 60,213, 47,161,148, 62,254,200,112,240, 0,246,230,111,159,251, 29,247, 58, 57, 57, 77,181,182,182,118, 83,169, 84, 98,149, - 74, 37, 42,170,253,101, 50, 89,146,161, 92, 22,166,100,167, 72,144,102,109, 97, 74,254, 34,160,172,156,113, 68,153, 19, 88,211, -202, 25, 71, 12,229, 11, 8, 8, 8,171, 83,167,206, 30,134, 97,170, 81, 74,237, 1,106, 78, 41,146, 40,165,201, 2,129, 32, 38, - 40, 40, 40,230,127,165,160,201, 23, 80,171,242, 55, 35,140, 48,194, 8,163,192, 42,142,144,144, 16, 98,140, 54, 35,138,138,172, -178,206, 71, 68, 68,168, 1,220,205,223,138,223,251, 24, 64,215,255,245,119,140,141,141,173,251, 57,120, 70,125,255, 34, 6,192, -183,245, 75, 88,114,121,193,186,212, 44, 0,223,181,238, 86, 49,206,167, 79,159, 70, 2,136, 52,230, 68, 35,140, 48,194,136,255, - 45, 48,198, 40, 48,194, 8, 35,140, 48,194, 8, 35,140,248,188, 32, 0, 74,156, 9, 80,145,149,178, 63,102, 54, 65,121,252, 70, - 78, 35,167,145,211,200,105,228, 52,114, 26, 57,255,125,156,255, 25, 20,204,178,251, 59, 54, 0,237,140,156, 70, 78, 35,167,145, -211,200,105,228, 52,114, 26, 57,255,107,155,192, 40, 49,141, 48,194,136,255, 42, 14, 31, 62,108,208,162,159, 3,190,223,218, 69, -161,176,156,151,157,153,177, 98,255,170, 17,199, 10,142,247,233,211,135, 51,198,162, 17, 70, 24, 81, 18, 74, 21, 88,174,174,149, -188, 25,142,111, 74, 41,195, 82,134,234, 72,166,242,192,219,212,212, 15,220, 7, 84,174, 92,217, 66,200,160, 43,161, 84, 78, 8, -207,241, 44,115, 39, 44, 44, 42,200,208,135, 19, 66,196,150,150,150, 19, 68, 34, 81, 59,141, 70,227,194, 48, 76,180, 90,173,190, -156,155,155,187,190,184,195,193,255, 75,212,172, 89,115,224,245,235,215, 45,154, 53,107,166,150,201,100,122,165, 82, 41, 56,127, -254,188,228,203, 47,191, 76,127,243,230,205, 71,205, 48,116,118,118,110,179,117,235,214,234, 29, 59,118, 68,141, 26, 53,114,250, -247,239, 47,242,247,247, 23,141, 26, 53,234, 93, 76, 76,204,213,138,112, 17, 66,188, 9, 33,187, 9, 33, 44,207,243, 67,242,103, - 24,126,118, 16, 66, 24, 0,163, 1,244, 0,224, 10, 32, 12,192,113, 0,155, 13,241,102, 95, 2, 95,111, 0,157, 0,248,229, 31, -122, 6,224, 44,165,244,200, 39,132,177, 55,128, 78,132,144, 58,249, 22,218,167,159,139, 83, 40, 20,214, 1, 0,157, 78,247,244, -127, 37,156,132,144,225, 50,153,236,107, 0, 80, 42,149, 91, 40,165, 59, 42, 28,152, 77, 94, 20, 0,188,127, 10, 6, 0, 4,125, -239, 9, 67,247,131,222, 85,112, 54,113, 41,207,194,152, 87,228, 19,226,178,211,160, 65,131,150,253,241,199, 31, 11, 40,165, 39, -254,142,188,239,224, 80,105,253,207,107, 55, 59,125, 59, 97,228, 10,228,173,224, 80, 38,124, 8,105, 47,102,217,110, 26,142,187, - 21, 4, 28, 2, 32,176,178,178, 26, 40, 22,139, 91,104, 52, 26, 71,129, 64, 16,167,209,104,110,102,100,100,236,163,148,234, 62, - 57,128,193,196, 82,155, 11, 7,194,255,185, 14, 27,101,160, 22,153, 32, 30,158, 52,173,172, 91, 89,150, 93,229,236,236, 60, 58, - 61, 61, 61,155, 97, 24, 74,242,144, 31,181,133,206,154, 9,207,243, 49,169,169,169,245, 63, 50,141,164, 0, 22, 34,111, 77,183, -181,148,150, 29,166, 82,194,249,173,147,147, 83,207,204,204,204, 92,150,101,105,145,240, 17, 0, 96, 24,134,240, 60,159,152,146, -146, 50,196, 88,181,151, 14, 39, 39, 39, 70, 36, 18, 13,101, 24,102,181, 94,175,175, 30, 25, 25,153, 6, 0,118,118,118,126,137, -137,137,198,181, 64, 63,183,192, 42,226,150,190, 21,165,244,134,171,107, 37,239, 62, 61,122, 45, 27, 59,102, 28, 97, 89, 6,129, - 47, 95, 10,190, 26, 50,188,131,149,149,149,179, 66,173,246, 2, 33,124,174, 84, 26,168,211,105, 99, 14,237,251,195,212,179,102, - 77,142,227,120,108,220,244,251,151,174,174,149,102, 27, 34,178, 8, 33, 30, 14, 14, 14,187,103,206,156,233,208,173, 91, 55,214, -193,193, 1, 17, 17, 17, 22,251,247,239,175,249,235,175,191,246, 35,132, 12,201,247,197, 83,209, 15,185,185,131, 21,211,193, 84, - 70,218, 34,139, 67,150, 14, 87,226,149,184, 72, 41,189,245,177,145,148,155,155, 59, 49, 55, 55,183, 81,131, 6, 13,232,182,109, -219,200,176, 97,195, 40, 33,132, 40,149,202,157,248, 72, 23, 14,114,185,124, 67,199,142, 29,221,221,221,221,195,222,190,125,219, -233,224,193,131,103,135, 14, 29,234, 42,151,203, 67, 1,120, 84,144,110, 71, 74, 74,138,159, 82,169,132,139,139,203, 54, 0,245, -254, 6,113, 69, 0, 28,177,178,178, 82, 45, 94,188,120, 75,171, 86,173,156, 99, 99, 99,185, 25, 51,102, 52,125,250,244,233, 23, -132,144, 30,134,138, 44, 66,136, 37,128,141, 10,133,194,100,198,140, 25, 55,219,183,111, 31,174, 80, 40,164,207,159, 63, 23,206, -152, 49, 99, 52, 33,164, 47,128,177, 21, 41,132, 11, 56,109,109,109, 45, 22, 44, 88,240,162, 73,147, 38, 55, 68, 34,145,232,245, -235,215,194,153, 51,103,142,255, 20, 78,119,119,119,211,249,243,231, 63,170, 83,167, 78,130, 84, 42, 21,189,125,251, 86, 56,123, -246,236,177, 44,203,246,229,121,254,163, 56,173,172,172,204,102,207,158,253,184,101,203,150, 73, 18,137, 68, 28, 20, 20, 36,152, - 53,107,214,216,138,132,211,218,218,186,181,181,181,245,230,248,248,120, 1, 0, 56, 58, 58, 54,116,115,115,251,181,192, 31, 90, -190,112, 67,190, 40,204, 82,169, 84,131, 82, 82, 82,254,226,192,214,251,167, 96,124, 55,127,231,192,239,230,231,237,239,202, 63, - 94,222, 62, 48,204,224,188,239, 93, 61,175,140, 25, 63,253,183,193,121,191,121,199,127,207, 15,234,134,234,132, 86, 68,172, 17, - 66,186,183,105,211,102,225,213,171, 87,127,111,213,170,213,140, 61,123,246,216, 69, 69, 69,253, 72, 8,169, 52, 96,192,128, 97, - 87,174, 92, 89,158,148,148,116,248,115,229,127,177, 72, 34, 33, 12,129, 76,106, 98,102,200,245, 66,134,233,114,183,123,247,175, -183,188,126, 93,247,215,224,224,234, 57,142,142,141, 38, 77,154,100,223,171, 87, 47,166, 82,165, 74,120,243,230,141,245,158, 61, -123,188,182,108,217,210,147, 16, 50,153, 82,250,254, 83,196, 85, 78, 58,106,169, 53,168, 75, 41, 44,254,140, 35,164, 75,180, 8, -144, 7,147, 23,165,137, 44, 66,200, 47,221,187,119, 31,114,252,248,113,197,158, 61,123, 20, 77,154, 52,129,189,189, 61, 8, 33, -224, 56, 14, 60,207,131,231,249,252,181, 62,221, 63,101, 6,249,154, 91,183,110,141,126,243,230, 13, 70,141, 26,197, 2,152, 91, -193,242,103,106,207,158, 61, 59, 31, 61,122, 84,118,232,208, 33, 89,131, 6, 13,224,224,224, 0, 0,133,225,163,148,162,122,245, -234,255,186, 74,218,213,213,149,138,197, 98,176, 44, 11, 74, 41,120,158,135, 78,167,131, 70,163,137, 82,171,213, 61, 19, 19, 19, - 3, 12,229,178,183,183,103,164, 82,233, 48,153, 76,182,141,101, 89,232,245,250,107,110,110,110,109, 56,142,131, 68, 34,185, 6, -252,153,127,254, 47, 80, 92,139,252,107, 44, 88, 69, 87,176,102, 56,190,233,216, 49,227, 72,255,129, 3,226,223,132,189,227, 5, - 66,241,192,243, 23, 46,152,120,123,123, 51,234,245,235,161, 79, 74,130,110,202,148, 38,151, 47, 95,214,245, 29, 56, 88, 41,100, -201, 14,215,234,213, 76, 14,236,219,239,112,244,200,225,166, 0,130,202,179, 92, 57, 56, 56,236,190,126,253,186,115,245,234,213, -145,158,158,142,136,136, 8,228,228,228,160, 95,191,126,194,166, 77,155, 58,247,233,211,103, 55, 33,164,153,161,150, 44, 66,136, -125, 13, 23,193,233,159,231,247,243,248,178, 67, 83,185,115, 37, 55,208,120, 21,162,222, 6, 55, 56,125,253,254, 36,119, 11, 38, -228, 77, 6,237, 66, 41, 77,168,104, 36, 37, 39, 39,127,223,179,103,207, 35,173, 91,183,182,149, 72, 36,112,114,114, 34,221,186, -117, 75,140,141,141, 93,244, 9, 25, 9,249,173, 46,174,232,111,241,101,124, 12,132,139,165,165, 37, 44, 45, 45, 1,192,249, 83, - 50, 68,223,190,125,217,200,200,200,175,121,158,247, 42,122,220,206,206,174, 38,199,113,105,239,223, 71,214, 84,106,180, 94,227, - 38,204, 94,216,191, 79, 59,139,187,119,239,242, 29, 59,118, 84,223,188,121,115, 52,128,141, 6, 62,102, 99,237,218,181,223,174, - 89,179, 70, 29, 26, 22, 94, 45,240, 85, 40,228, 82, 17, 87,169, 82, 37, 73, 80, 80,144,122,222,188,121, 57,107,215,174,221, 8, -160,111, 5,130,190,241,203, 47,191, 76,155, 59,119,110, 98,200,219,112,199,103, 65, 33, 84, 33, 17,233,236,237,237,216,199,143, - 31,171,126,252,241, 71,126,249,242,229, 21,230, 28, 60,120,112,236,140, 25, 51,194,147, 82,210,157,211,210,179,168, 56, 55, 87, -235,226,226, 34,184,118,237, 90,246,111,191,253,166,158, 49, 99, 70,133, 57, 91,181,106, 21,191,100,201,146,200,224,208, 48,167, -128,192,215, 80, 72,132, 58, 7, 7, 59, 54, 32, 32, 32,119,249,242,229,218,159,126,250,201, 32, 78,185, 92,190,235,224,193,131, -130, 19, 39,242,140, 54,247,238,221, 99, 92, 93, 93, 77,138, 94,163, 84,169,193, 16, 32, 57, 57,217,196,223,223,127, 23, 0,151, -210,248,134, 14, 29, 26, 95,145,188, 50, 84,253,147,193, 86,171, 2, 97, 53,110,220,184,210,124,115, 13,246,174,128,200,234,212, -169,211,156, 51,103,206,184,237,217,179,103,245,222,189,123, 53, 0, 32,149, 74,109,246,239,223,191,188, 95,191,126,232,215,175, -223, 60, 0,159, 77, 96,113,148,211, 2,128, 68, 42,145, 4, 7, 7, 19, 79, 79,207, 50, 29, 33,107,121,254,241,150,215,175,235, -127,227,233,217, 32,149,231,107,136,190,252, 50,123,234,212,169,201,153,153,153,136,136,136,128, 86,171,197,176, 97,195,216, 86, -173, 90, 57,245,235,215,111, 29, 33,164, 55,165, 84,107,128, 21,103,149,179,179,243,232,140,140,140,236, 2, 43,142, 87, 53, 83, - 65,139, 58,122, 73,237, 26, 58,177,136,213,139,186, 78,225,201,197,245, 36,199,179, 58,110, 3,128, 40, 23, 73, 34, 32,173,132, - 50,232,167,238,221,187,247, 59,126,252,184, 37, 0, 28, 62,124, 24,185,185,185,168, 82,165, 10, 68, 34, 17,132, 66, 33,132, 66, - 97,225,255,138,148, 77,132,144,233, 10,133,162, 83,118,118,246,113, 74,233, 58, 0,238,205,154, 53,131,171,171, 43, 0, 52,205, -191,102, 8,203,178, 3, 56,142,219, 76, 41, 61, 94, 6,215,164,238,221,187,183, 63,122,244,168,105, 65, 56,117, 58, 29, 92, 93, - 93, 33, 18,137, 32, 22,139, 11,195,249,111,132, 88, 44,134, 84, 42,133, 64, 32, 0,165,180, 96,125,208,235, 58,157,110, 18,128, -119,150,150,150, 76, 90, 90,154,161,141, 91, 86, 32, 16,172, 46,146,182,181, 56,142,219,161,215,235, 43,107,181, 90,243,255,133, -247, 45,170, 69,254,233,105,199, 20, 83,142,173,242, 94,144, 97, 89,150,193,187,176, 8, 93,235,214,109,135, 70, 70, 70, 42, 26, - 53,106,196, 8,133, 66,228, 92,189, 10,213,163, 71, 80, 40, 20,232,217,179,167,240,230,205,155,102,102, 10,179, 81,225,239,194, -179, 88,150, 1,165, 76,185, 99, 26, 44, 45, 45, 39,204,158, 61,219,193,221,221, 29,122,189,190,208, 3,185, 94,175, 71, 84, 84, - 20, 20, 10, 5,134, 12, 25, 98,103, 98, 98, 50,193,192, 76, 83,213,195,213, 46,224,250,217, 77,245,166,142,237, 36,247, 48,185, - 4,121,212,100, 40, 14,127, 3,175,216,243,152,217,163,145,252,226,134,121,117,221,156,172, 2, 8, 33, 85, 43, 26, 73, 42,149, -234,118, 96, 96,224,168, 27, 55,110,240, 0,112,237,218, 53,250,234,213,171, 49,159,210,234,228,121, 30,233,233,233,224,121,158, -205,223, 47,248,253, 63,203, 12,125,251,246,101,163,162,162,198,120,121,121,121, 60,120,240, 0, 39, 79,158,196,229,203,151,113, -225,194, 5,136,197,226,202,125,250,244, 73, 74, 74, 73,183, 76, 79,207,144,198, 69,191,109,184,127,243,102,167,216,240,240,187, -127,252,241, 71, 54,242,186, 13, 13, 73,171,222, 10,133, 66,182,122,245,234, 28, 83, 11,135,206,141, 26, 55,111, 32,148,154,217, -136, 36, 10,219,140,140, 76,237,179,103,207,130, 87,174, 92,233, 81,179,102, 77,203,252,110, 52,131, 56,109,108,108,204,231,204, -153,163, 53, 49,181,109,222,160, 81, 99, 95,177,212,204, 74, 40, 54,177,106,218,180,105,207,224,224,224,240, 5, 11, 22, 56,215, -169, 83,199,174, 34,156,213,171, 87, 55,157, 49, 99,134,218,204,220,170,189,183,151,119,221, 38,254, 13,251,215,171, 87,111,136, - 64, 32,224, 18, 18, 18, 66,167, 78,157,234,220,178,101, 75,235,138,112, 90, 90, 90,154, 46, 89,178, 68, 83,205,181,102,239,174, - 93,187,180,150,154, 88, 88,137,101,166, 86, 74,165,146,123,245,234,213,155,197,139, 23, 59,251,249,249,217, 24,194,153,155,155, - 43,180,177,177,129,175,175, 47,188, 93, 93,145,145,145,129,163, 71,143, 98,199,142, 29,216,186,117, 43,246,237,219,135,250,205, - 58,192,212,212, 20,177,177,177,200,204,204, 20,150,196, 83,216, 77,247,119, 96,147, 23,253,157,159, 48,120,220,184,113, 49,101, -136, 43,140, 27, 55, 46,102,252,244,223, 6, 23,116, 33,150,101,185,106,219,182,237,243,179,103,207,190,221,179,103, 15,188,189, -189,209,177, 99, 71, 49, 0, 76,152, 48, 65,220,175, 95, 63, 28, 60,120, 16,135, 15, 31, 14,242,240,240,184, 67, 8,233,110, 72, - 48,135, 12, 25,210,172,111,223,190,183,250,246,237,251,180,127,255,254,155,199,140, 25,227, 84,244,124, 92,108,244, 99,141, 70, - 3,191,186, 13, 76,150,108,123, 48,168, 60,190, 87,192,158,205,193,193, 59, 86,188,124,249,126,158,183,183, 69,149,240,112,171, -157,171, 86,217, 20, 44,158,173,211,233, 16, 21, 21, 5, 75, 75, 75, 12, 26, 52,200, 70, 34,145, 12, 49, 32,255,252,210,189,123, -247,225,145,145,145,138, 45, 91,182, 56, 62,125,250,212, 41, 46, 46,206,241,202,229, 11,182,223, 77,155, 96,106,174, 16,139, 99, -147,242, 4,106,120, 44,228,193,239,208,140, 82, 88, 20,237, 54,252,160, 85,230,226, 50,250,248,241,227, 14, 69,202,229, 15, 4, - 85,241,255, 96, 40, 99,229, 67,182, 87,237, 78, 18, 45,188,201,183,101,132,179,243,161, 67,135, 86,134,135,135,183,236,210,165, -203, 90, 66, 72,149, 18,174,177,109,221,186,245,150,215,175, 95,119,236,222,189,251, 49, 66, 72,135, 82, 91,143, 46, 46, 61,143, - 31, 63,110, 93,176,111, 99, 99, 3,169, 84,250, 23,113, 37, 18,137,192, 48,255, 62,207, 67, 44,203, 66, 32, 16, 20,166,131, 64, - 32, 0,203,178, 23, 25,134,137, 98, 24, 70,107,168,184,202, 23, 47, 44,199,113, 3,121,158,207, 38,132, 64, 40, 20, 66, 34,145, -116, 17,139,197,190, 66,161,240,127,226,125,139,106,145,127,141,192,202,119, 24,121, 29, 0, 40, 33, 57,207, 3, 3,133,172, 88, - 60,248,143,189,123, 37, 34,145, 8,239,223,191, 71, 80, 80, 16,114,175, 92,129,242,238, 93, 36, 36, 36, 32, 59, 59, 27,246,246, -246,216,180,109,155, 92,195,209, 17,175, 67, 66, 88,202,252, 57,158,160,180,169,154, 18,137,164, 93,175, 94,189, 74, 21, 98,177, -177,177,232,212,169,147,144,101,217,118, 37,100,144,203,197, 18,131, 56,217,146, 83, 87,142, 44,113,116, 20, 7, 1,111,166, 2, - 89, 1, 0, 85, 3,122, 13, 16,243, 2, 56,179, 8, 85,178,131,201,133, 37, 67, 29,156, 77, 4,167, 72,177,166,152, 1,211, 84, - 93, 61, 61, 61,183, 14, 30, 60,152, 1,128, 54,109,218, 16, 79, 79,207,205,132, 16,215, 50, 50,242,229,114, 42,199,251,105,105, -105,232,215,175,159,181,155,155,219,229,126,253,250, 89, 23, 28,255, 88,206,130,158, 35, 31, 31,159, 20,153, 76,182,143, 16, 34, - 49,224,131, 43,228,140,140,140,252,218,211,211,179,198,150, 45, 91, 88,150,101,177,101,203, 22, 28, 56,112, 0,183,111,223, 70, - 74, 74,138, 98,234,212,169,230,167, 47,223, 63,127,231,246,195,147,171,230, 78,183,238,217,182,149,171,101, 70, 82,166,179,179, -115, 59,228,141,201, 50, 36,156,157, 38, 78,156,120,241,233,171, 48, 59, 86, 40, 18,137,133, 2,153,173,141, 69, 21, 7, 91,203, - 26,206,214,150, 53, 76,197, 66,139,204,204,204,119, 7, 15, 30,204, 70,222,248, 44,131, 56,231,207,159,255, 44, 56, 44,202,154, - 17, 10, 4, 34,129, 72,108, 97,174,176,238,214,165, 67,107, 0,144,177, 68,146,153,153, 25,181,107,215,174,156,138,112,206,155, - 55,239, 94, 92, 82,154,157, 72, 42,101, 37, 18, 97, 97, 92, 90,154, 41,236,229, 18,137, 44, 55, 55,247,253,214,173, 91, 51, 42, -194, 57,107,214,172, 71, 47, 67,223,219, 16, 6, 44, 3, 34,180,180, 52,181,179,181, 48,117,176, 51, 83, 56, 72, 25, 72, 51, 51, - 51, 35,118,237,218,149,105, 8,167, 86,171, 21, 38, 38, 38, 34, 56, 56, 24,149, 26, 52,192,229,203,151, 81,185,114,101,244,235, -215, 15, 3, 6, 12,128, 76, 38, 67, 27,255, 90,152, 61,123, 54,222,190,125, 11,189, 94, 47,174, 96, 94,130,147,147,211,245,210, -206, 21,140,163, 42,141,211,187, 58, 41, 20, 87,134,112,151,116, 93,113,206, 78,157, 58,205,185,114,229,138,219,238,221,187,187, - 13, 25, 50,228,246,238,221,187,209,184,113, 99,188,122,245, 10,213,170, 85,195,206,157, 59, 49, 96,192,128,219,235,214,173,235, -246,228,201, 19,191,234,213,171,207, 46,143,179,127,255,254,227,235,212,169,115, 53, 62, 62,222, 63, 53, 53,213,247,232,209,163, - 35,122,246,236,249,110,224,192,129,109, 11, 45, 88, 58,221,222, 51, 39,143,160,115,183, 94,168,233,227,187,113,216,236, 61,181, -202,226,164,148,210,151,192,230, 29,113,113, 73,123, 85,170,220,126, 66,161,137,201,131, 7, 86,135,127,255,221,166,232, 74, 0, - 49, 49, 49,232,218,181,171, 80, 36, 18, 53, 47, 43,156,132,144,159,122,244,232,209,239,232,209,163,133,214,166,187,119,239,226, -197,139, 23,136,136,136, 64,122,122, 58,218,142,201,198,184,229,121,220,227,150, 83,116,152, 64,229,101,113,102,103,103, 43,143, - 29, 59,134,190,125,251, 98,244,232,209,168, 94,189,122,161,200, 42, 46,174,110, 60,188, 4,177,111,170, 85,179,205, 24,222,254, - 4,108,229, 46,152, 85, 74, 56, 69,237,218,181,219,212,173, 91, 55,112, 28, 7,149, 74,197, 3, 72, 45, 73, 55, 84,171, 86, 77, - 88,169, 82, 37,252,240,195, 15,176,176,176, 88, 67, 8, 97, 75,226,204,201,201, 81,159, 61,123, 22, 67,134, 12,193,228,201,147, - 81,163, 70,141,194,112,238,218,115,192,102,192,136,177, 30,245,154,181,240,243,174,215,184,118,150,154,109, 32, 50,177,250,154, -148, 96,110,251, 59, 92, 7,252,255,224, 44,232, 22, 44,216, 8, 33, 96, 89,118, 5,203,178,125, 24,134,161, 21,225,228,121, 94, -175,215,235, 31,232,245,250, 97, 5, 34,139,101, 89,176, 44, 91, 97,113,250,119,185, 98, 40,170, 69,254, 53, 93,132, 69,151, 60, -209,241, 56, 53,120,232,136,174,151,175, 92, 49, 17,139,197, 8, 15, 15, 71, 66, 66, 2, 14,236,219,199, 29,178,179,203, 21, 10, -133,116,208,142, 29,166, 35,191,254,154, 8,133, 66,120,122,122,162, 79,159, 62,178,222,253, 6, 38,218, 10,133, 7, 12, 80,168, -142, 5,253,231, 35, 70,140,192, 47,191,252,242,193,249,239,190,251, 14,251,246,237, 3, 33,196,193, 16,195,203,164, 69, 61, 92, - 44,171, 91, 36,208,128, 93, 66,194,154, 88,129, 53, 1, 24, 17, 32,101,243, 68, 22,195, 66,253,228,106, 42,211,248, 96,102,175, -230,185,206,107,207,111,234, 11,224,160,161,145,228,228,228, 52,239,234,213,171,182, 83,167, 78,165,153,153,153, 36, 46, 46,142, - 46, 91,182,204,118,252,248,241,243, 0, 12,253,152,136,143,141,141, 93,210,185,115,231,142,103,206,156,177, 31, 58,116,168, 57, - 0,116,238,220, 57, 33, 54, 54,118,201,167, 36,168, 72, 36, 98, 95,190,124,105,181,122,245,234, 1,211,166, 77,243,241,245,245, -117, 72, 79, 79,143,136,137,137,233, 83,158,197,141,231,121,175, 45, 91,182,128,101,243,202, 57,134, 97, 32, 22,139, 33, 22,139, - 97,102,102,150, 22, 22, 22,198, 87,181,151,137,115, 18,226, 50, 44, 5,150, 66,226,232, 96,109,225,224,216, 42, 37, 37,229, 1, - 0, 67,205,203,126, 95,124,241,197,243,187, 79,223,112, 99,135,182,174, 97, 34, 98,132,166, 50, 41, 43, 19, 11, 9,161,148,211, -234, 52,254, 27,118, 93,219,238,225,225,225,109,168,137,152, 16, 82,167,113,227,198, 87,158,190,122,143,167, 47,222, 70,219, 90, -153, 88,127,209,166,105,205,130,243,181, 27, 54, 30, 80,228,242,116,131, 62, 12,129,192,175, 65,131, 6,209, 9,169, 57,176,179, - 50,255, 64, 72, 91,218,216,181, 3,128,156,140,140, 13,149, 42, 85,242, 20, 8, 4,213, 12, 13,103,243,230,205,227,158, 4, 69, -194,193,214,202, 42,255,240, 7, 99,122,146,227,226, 54,186,187,187,123, 26, 98,105,213,104, 52,146,227,199,143,227,201,147, 39, - 88,226,227,131,239,170, 86,133,173,173, 45,174, 92,185, 2, 74, 41, 20, 10, 5,210,211,211,113,240,224, 65,180,109,219, 22, 26, -141, 70, 94,154, 80, 42, 24, 95, 85,154, 16,138,141,141,253, 91, 90,148,197,185,189,127, 10, 70, 80, 25, 43,101,158, 61,123,118, -207,158, 61,123,150,123,123,123,227,219,111,191,109,182,102,205,154,219,190,190,190,205,218,180,105,131,171, 87,175, 98,196,136, - 17,183,215,173, 91,215,108,236,216,177,216,184,113, 35,222,189,123,183,173,172,231,247,239,223,127,225,168, 81,163,230,174, 95, -191, 30, 5, 45,248, 30, 61,122, 20,148,141,219,251,246,237,155, 82,112,237,161,173,209,119,171,187,186, 55, 25, 63,105,186,120, -194,216, 33, 51, 1, 12, 40,167,162,160, 78, 78, 78, 89,250, 22, 45, 82, 15,222,187,135,254, 34,145,201,222,167, 79,113, 74,165, - 66,243,158, 61,147, 1, 96,214,172, 89,216,189,123, 55, 0,216,151,197,229,226,226, 50,250,216,177, 99,133,121,197,218,218, 26, - 98,177, 56, 79, 4, 9,132, 96, 57, 22,151, 55,202, 17, 22,153,139,113,203, 41,126,159, 69, 80,205, 9, 57,117,106,150,153, 31, -209,180,105, 83,100,102,102,130,101, 89,152,154,154,194,202,202,234, 3,113,149,153,157,142,149,219, 22, 34,177,230,117,180, 63, - 9,134,176,192,179,165, 64,214,155, 82,151,116,234,186,122,245,106, 71,149, 74,133,107,215,174,225,202,149, 43,191, 82, 74,179, -139,235, 29, 74,105, 60,203,178, 59,126,250,233,167, 17, 78, 78, 78, 24, 55,110,156,199,178,101,203,122, 0,127,229, 37,132,160, -126,253,250, 80,169, 84, 16, 10,133, 48, 51, 51,131, 70,171, 23,246, 29, 60,218,181,138,155,175,100,217,170,101,140,189,149, 0, - 2,198, 10,161,239,149,230,107,127,249, 97,237,253, 91, 55, 71, 18, 19,155,158, 52, 55, 57,238,159, 94, 73,115, 28, 7,157, 78, - 87,176,238,170,107,129, 40, 18, 8, 4, 91, 89,150, 77,183,177,177, 57,158,156,156,108,144,208,226,121,158,227, 56, 46, 91,167, -211,165,233,116,186, 28, 66,136,130,101, 89,112, 28, 7,142,251,223,152, 16, 91,222,242,107,255, 56,129, 85,124,185,147,200,200, -200,116, 43, 43, 43,231,154, 53,107, 50, 26,141, 38,175,235,225,240, 97,110,235,246,237,103, 84, 42,213, 36, 0,162,245,191,253, -182,209,217,197,165,245,224, 33, 67,136, 78,167, 67,231,206,157,197,167, 79,159,182,126,155,144,144,101, 64, 4,126,240,188, 97, -195,134, 97,205,154, 53, 0,128,137, 19, 39, 22,154,208,137, 1,157,254, 10,115,116,234,216,165,190, 89,148,252, 87, 51,109, 19, - 93,118,213,183,166,247,229,217,178,250, 96,196, 2, 72, 89,240, 90,157, 62, 52,177,231,227,183,161, 94,222,178,212,148,106,237, -124, 90, 98,235,165,221,157, 42, 34,176, 76, 76, 76, 26,154,154,154,226,241,227,199,169,245,235,215, 79,167,148,154, 47, 89,178, -196,198,196,196,164,225, 39,168,244,112, 66, 72,139,166, 77,155, 78, 96, 24,166, 29,207,243,151, 19, 18, 18,214, 83, 74,195, 13, -204,132,227, 0, 44, 64,145,113, 38, 26,141, 6, 12,195,128, 82,138,254,253,251, 99,214,172, 89,222, 47, 94,188,192,213,171, 87, -173,218,181,107,119,159, 16,146, 14, 96, 36,165,180, 84, 43, 89, 74, 74, 10,126,255,253,119,176, 44, 11, 11, 11, 11,152,154,154, - 66, 42,149,162, 89,179,102,241, 43, 86,172,240, 58,114,228, 72,110,122, 98, 34,145,101,101,168,137,181,181, 20, 78,149,191, 24, -214,179, 87, 32,242,102, 19, 26, 4,185, 92,110, 34,134, 58,139,225, 84,204,202,133, 27, 4, 38, 34, 17,145,138, 4,144,240,185, -236,236, 21, 63, 80, 41,161,194,124,235, 42, 53,148, 83, 42,149,138,228, 98,170, 22, 74, 24,157, 9, 67, 63, 75, 63,171, 88, 44, - 22, 73,132, 57,202, 82,197, 44, 67, 88,150,101, 37, 21,225,148,201,100, 34,133,152, 83,151,250, 30, 12, 88,134, 97, 74,229,236, -235, 67,232,161, 9,133, 93,122,133, 97,211,235,245,104,216,176, 33,246,159,184,134,179, 87,238, 34,249,253,115, 76, 26, 55, 2, -238,238,238,184,112,225,194, 39,197, 67,108,108,108,137, 34,171,204,174,197,252,113, 87,101,117, 11,126,192, 61,223,188,220, 89, -137,132,144,238,205,155, 55, 31,191,119,239, 94,205, 23, 95,124, 33,238,223,191, 63,124,125,125,155, 13, 31, 62, 28, 0,208,174, - 93, 59,172, 89,179,166,217,240,225,195,113,224,192, 1, 28, 61,122, 84,221,170, 85,171, 25,132,144, 24, 74,233,217, 82, 42,156, -174,155, 54,109, 42,110, 25,132, 94,175,135, 78,167,115,212,235,245,142,249,101, 17,214,174, 93,151,124,241,194,105,204,152,189, - 8,118,182, 14,117, 12,236,222, 33,195,166, 79, 79,222,185,106, 21, 86, 29, 56,128,233,213,170,153,236, 14, 10,194, 69,149, 10, - 7,175, 94, 77,206,127, 78,185,227,155,114,114,114,148,103,207,158, 53, 59,120,240, 32, 44, 44, 44, 80,163, 70,141, 66, 49,196, -176, 50,176, 34, 75,212,244,105, 8,224, 33, 0,160,154, 19,114, 60,171,227, 54, 33, 72,167, 12,212,101,228, 71, 56, 56, 56, 64, - 32, 16,224,233,235,135, 48, 77, 55, 67, 61,159, 70, 16, 10,133,200,202,201,192,248, 85,125,224,254, 67, 18,106,121, 2,202, 4, -224,193, 84,232,226,239, 98,117,110, 20, 54,148, 66, 89,183,114,229,202, 80,171,213,216,178,101, 11,205, 47,163, 74,171,236,231, -252,252,243,207, 67,231,207,159,207, 54,104,208, 0, 0,234,148, 36,176,242,203, 12, 56, 59, 59, 23, 10,191,254, 67,199,186,142, -153, 58, 86,214,179, 67,107, 8, 4, 54, 72,207,209, 33, 37, 75, 7, 75, 27, 5,102, 76,237, 43,189, 92,223,185,193,166,117,127, -156, 36,132, 52,160, 69, 77,134,255, 64,104,181, 90,240, 60,127,134, 97,152,185, 44,203,254, 32, 16, 8, 58,231,159,202, 98, 24, - 38,145,101, 89, 82,145,178,146,231,249,193,122,189,126,181, 70,163, 49, 43,176,136,113, 28, 7,141,230,255,126,226,254,167,174, -113,252, 63,107,193,250, 75, 55,158, 78, 87, 83,189,113, 35,114, 46, 95,134,248,226, 69, 28,116,114,202, 86,169, 84,211, 40,165, - 81,249,133,221,183, 59,118,238,188,211,237,222, 61, 51, 77,112, 48, 92, 95,188,128,208,194,162, 78, 69, 3,176,125,251,118,100, -102,102, 34, 35, 35, 3, 0,240,235,175,191, 34, 51, 51,179, 96, 32, 95,249, 47, 32, 66, 51, 7,187,106,136, 71, 40,120, 1,163, -136,168,153,219, 88,161, 50,141,117,142,180,207,201, 96,156, 17,252,190,145, 92,153,162,105, 76, 88, 13, 84,201,185,112,110, 90, - 3, 2, 8,154, 85, 36,140, 5,166, 83,129, 64,144, 26, 18, 18,210,213,195,195,227, 20, 0,155, 79,237,239,167,148,190, 1, 48, -233, 99,238,101, 89,118,193,187,119,239,236,182,109,219, 54, 97,201,146, 37,180,168,192, 42,248, 95, 48, 40,210,220,220, 28, 66, -161,208,254,238,221,187,246,141, 26, 53,218,144, 95,144,149, 38, 38, 97,111,111, 15,161, 80, 8,115,115,115,228,100,166,201,127, - 95, 54,183,149,137,165,189,213,244,233,211,153, 97,195,134,189,221,176, 97, 67,101,135,154, 53, 61,159, 63,127,254,190, 91,159, -190, 79,206,158, 61, 11, 0,155, 13, 12,250,179, 23, 47, 94,136,221,221,170, 10,120,157,146,151,139, 0,233,179,181,188,216,212, - 1, 82,150,133,128,128,202, 76,228,118,111, 34, 34, 98, 1, 36, 26, 24,143, 79, 67, 67, 67,133, 46, 78,246,130,172, 28, 85,186, - 92,192,139,223, 61,122,248,170,122,131,134, 94, 0,160,122,116,247,152,164,166,143,233,187,196, 36, 51, 87, 87,215, 8, 67, 56, -245,122,253,179,240,240,112,145,179,179,179, 48, 52,244,205, 31,214,102,166, 78, 86,246,246,173, 0, 64,147,154,116,147, 40, 85, -177, 66,161,208, 57, 54, 62, 62, 73,175,215,199, 26, 26,206,144,144, 16,145,139,147,189,224,212,153,179,251, 29,228, 38,142, 22, - 50,137,185,148, 1,145, 82, 62, 67,172,215,199,203, 76,228, 78,239, 34, 35,147, 41,165,209,165,241,252,206, 79, 24,156,151, 7, -166,111, 45,122,252,246,237,219,184,246,248, 29,204, 89, 14, 66, 93, 14,238, 31, 61,136, 94, 19,167,148,251, 45, 5,125,239, 9, -168,127,218,231, 93,125,216, 7,194, 41,175, 11,208,177, 68, 33, 84,174,192, 42, 15,155,188,174, 23, 19, 89,136,141, 45,187,112, - 29, 52,104,208,162, 61,123,246, 20, 78,226,120,245,234, 21,218,180,105, 3, 0, 88,180,104, 17, 58,118,236,136, 70,141, 26,225, -213,171, 87,112,119,119,199,213,171, 87, 37, 44,203, 74, 6, 15, 30,188, 12,192,217,242,130,180,121,243,102,140, 24, 49,162,164, - 1,211,111, 1,168,136,165,103,246,172, 21,187,108, 82, 83,146,145,152, 20,255,180, 2, 45,114, 12,155, 62, 61,121,147, 70,131, -189, 15, 30, 96,136, 92,110,178,243,205, 27,116,110,212, 8,181,218,180, 73, 54,164,172, 43,201,138, 99,109,109, 13,145, 72, 4, - 86,232, 4,129,216, 15,140, 72,132,186,205,253,176,106,154, 60,119,232,151, 88, 71, 8,210, 37, 98, 4,136, 76, 16, 95, 26,167, - 94,175,135, 80, 40,196,193,243, 59,241,220,226, 15, 32, 11,184, 19,208, 29, 83, 70,204,193,247,107, 70,195, 99, 89, 18,204, 61, -128,196,251,192,195,169, 12,159, 17,206,143, 82, 39,225, 28,165, 52,165, 20,193,230, 37,147,201,144,147,147,131,208,208,208,247, -148,210,204, 50,190,135,132,118,237,218, 37,178, 44,235,232,236,236, 12, 0,149, 75,107,144,243, 60, 95, 56,206,106,247,222, 67, - 54,117, 90,184, 74,219, 55,243,198,174, 83, 75,241, 77,223,117, 16,178, 4, 28,167,197,234, 53, 93,192,169,179,209,183,219,104, -210,178,157,187,223,229, 83,154, 81, 0,182,252,147, 43,105,141, 70,115, 66,171,213, 78, 33,132,100,177, 44, 59, 73, 40, 20,218, - 51, 12,227,206,113,220, 16, 66,200, 11,145, 72, 84,213,209,209, 49, 53, 46, 46, 46,163, 60,174,148,148, 20, 10, 96,123,254,102, -196,223, 12, 38, 63, 3,183, 36,132, 80, 66, 72,203, 66,149, 75, 41,175, 79, 77, 5, 85,231, 53,126,132, 66, 33, 5, 80,116,134, -146,137,133,133, 5, 17,186,184,128, 72,242, 26,220, 20,248,108, 54, 70,157,206, 48,215, 48, 60, 7, 22, 68, 11, 90, 68,192,231, - 72, 9,150,218,180,197, 36,241, 60,196,139, 45,138,126,209,128,158,130, 3,207, 86, 48, 56, 52, 59, 59, 27,122,189,222,210,205, -205,237,140, 94,175,183, 44,232, 2,248, 63, 52, 27,135,177, 44,139, 9, 19, 38, 0,249, 93,105, 26,141, 6,241,241,241, 80,171, -213,208,104, 52,120,247,238, 29, 50, 50, 50,160,209,104,240,242,229, 75, 84,175, 94, 29, 44,203, 58,150,211,186,129,173,173, 45, - 28, 29, 29,161,206,201,148, 31,217,188,166,243, 79,139,102,217, 12,116,163,204,182,117, 63,243, 46, 46, 46, 41, 62, 62, 62, 14, - 18,137, 68, 91,175, 94, 61,245,169, 83,167, 46, 2,232, 85, 1, 63, 88,103, 23, 47, 94,220,168, 81,163, 70, 85, 45, 20,114,173, - 68,204, 66,162,207,161, 18,117, 10, 21, 40,147,105, 21,151,170, 90,200, 21, 13,251,247,239, 47, 54,164, 82, 44,224,252,254,251, -239,107,120,121,121,217, 88,152,201, 51, 5, 12, 98, 68, 28, 23,147,246,248,238, 37, 0, 16,217,216, 41, 33, 87, 52,204, 31, 67, -103, 48,231,140, 25, 51,124,156,157,157,173, 25,134,164,235,181,218,247,133, 5,190, 74,153,192, 74,164, 57,144, 72,155,143, 28, - 57, 82, 88, 65, 78,175,218,181,107, 91, 91,154,155,165, 11, 25, 18, 41,226,244, 81, 50,202, 69,139,117,218, 36,137,157,125, 54, -228,138,166, 3, 7, 14, 20,148,198, 89, 96,189, 42,110, 25, 18, 8, 4,136,137,137, 65,110,236,115,136, 98,130,225,167, 16,162, -177,131, 13,228,114,121,249,141,149, 49,175, 8,198,188, 34, 65,239, 40, 9,122, 71, 73,209,253,191, 88,155, 22,103,224,131,235, - 74, 65,241,241, 89,127, 17, 87,197,238,205, 23, 89,101,126, 79,127,252,241,199,236,214,173, 91, 39,118,236,216, 81,115,230,204, - 25, 16, 66,112,245,234, 85,196,196,196,160, 99,199,142,160,148,226,254,253, 60,227,236,211,167, 79,209,174, 93, 59, 77,139, 22, - 45, 98,254,248,227,143, 5,134, 36,206,136, 17, 35,160,211,233,144,157,157,141,212,212, 84,156, 62,125, 26,126,126,126,212,196, -196,164, 23, 91,169,195,210,190,163,102, 55,241,173, 93, 7, 27,214,173,210,136, 5,194, 21, 21,236,246,192,208,105,211,146, 51, -234,214, 77,221,157,147,147, 59,204,204,204,196, 45, 42,202,234,241,133, 11, 54, 90,173,214, 32,142, 2, 43,142,139,139, 75,161, -184, 18,137, 68, 16,136,109,193,202,107, 65,108,221, 17, 38, 14,189,112, 45, 64,162, 54,151,227,152,169, 2,231,229, 22,120, 81, -134, 31, 44,162,215,235, 33, 18,137,112,253,201, 57,248,205, 1,252,230, 0,177, 13, 79, 96,192,148, 47, 96, 51, 41, 4,230, 30, - 64,252, 45, 32,125,149, 31,116,239,204, 51,213, 73, 56, 88,154,184, 2, 0,181, 90,173,226, 56, 14,132, 16,136, 68, 34,113,145, - 83,119,174, 95,191,142, 43, 87,174, 0, 64,104,193,193,180,180, 52,202, 48, 12,228,114, 57, 0,200,203,234, 38, 43, 24, 15,118, -253,254, 77,235, 1,189,187,144,187,207, 46,161,169,223, 64,164,100,107,145,144,161, 69,122, 46,224,211, 96, 46,124,219, 29,195, -243,119, 89,168, 83,219,151,101,197,242,161,248,135, 67,163,209,140, 81,171,213, 73, 42,149, 42, 75,165, 82, 37,231,230,230,142, - 84, 42,149, 93,245,122,253,109,129, 64,224, 41,149, 74,159,152,152,152,156,168, 92,185, 50, 3, 0,206,206,206,140,147,147,211, -206,127,226,187,150,164, 69,254,241, 2, 11,192,245,226, 3,203,244, 18,201, 75,253,248,241,176, 56,121, 18,194,208, 80, 12, 31, - 58,212,204,196,196,100, 29, 33,164, 30, 33,164,169, 66,161,216,176,112,225, 66, 83,155,229,203,225,116,243, 38, 34, 78,159,134, - 78, 40,124,244, 49,129, 80, 42,149, 16, 8, 4,133,150, 23,185, 92, 94,208, 31, 92,174,128,225,244,184, 23,147, 16, 12, 49,170, -130, 7,205, 62,159,217,226,193,192,176,185,118,167, 51,171,187,191,201, 17,185, 47,182,109,108,183,174, 74,179, 7, 57, 68,144, - 45,182,144, 34, 50, 50, 10, 28,248,123, 21, 9,159, 74,165,202,200,201,201, 65,157, 58,117,172, 31, 63,126,236,230,231,231,103, -149,127,252,225, 39,102, 38,127,103,103,231, 67, 46, 46, 46,225,206,206,206,135, 8, 33,254, 21,184,125,219,173, 91,183,192,178, - 44, 22, 46, 92,136,172,172, 44,104,181, 90,164,164,164, 32, 50, 50, 18, 26,141, 6,209,209,209,120,253,250, 53, 52, 26, 13, 34, - 34, 34,160, 86,171, 13, 18,182,166,166,166, 72, 79, 73,148, 31,248,253,231,206, 75, 23,205,147,101,188,121,130,232,216, 4,240, -156, 50,118,229,202,149,175,221,221,221,175,104,181,218, 74, 60,207,183,164,148,110, 50, 84,104,230, 59, 42,189,237,233,233,217, -104,229,202,149, 45,231,173,216, 42, 49,101,179,168,216, 84,194,139, 77,197, 84,236,217, 24,163, 22,172,151,174, 88,182,228,233, -179,103,207, 82, 13,113,186, 89,192,217,184,113, 99,159,248,248,248,102,126,126,126,117, 28,106,120, 72, 37,206, 78,201, 98,167, - 42, 41, 84,153,123,153,169, 92,173,235,186,117,235, 30,223,191,127, 63,161, 34,156,206,206,206,181,126,251,237,183, 6,149, 43, - 87,110, 32, 53, 55,151,101,167,167,111, 86,167,167,110, 21,218, 56,200, 24,107,155,190,187,119,239,190,119,241,226,197,228,138, -112,122,123,123,251, 46, 91,182,172, 94,221,186,117,235, 57,122,212,148,202,156, 93,146, 68,206, 85, 18,101,181,235, 75,153, 42, -174,125,214,172, 89,243,224,209,163, 71, 73,134,112, 10, 4, 2,142, 97, 24, 8,133, 66,200,229,114,220,184,113, 3, 3,123,125, - 1, 7, 59, 51,120,212,172,137, 86, 99, 38,226,204,153, 51, 16,139,197, 96, 24, 6, 12,195,124,178, 67, 75, 67,132, 80,121, 40, - 77,124,149,199, 77, 41, 61,123,253,250,245, 31,135, 13, 27, 38,238,212,169, 19, 30, 60,120,128, 17, 35, 70,220, 62,122,244, 40, - 0,224,193,131, 7,152, 50,101,202,237, 43, 87,174, 96,236,216,177,104,211,166,141,248,214,173, 91, 27, 12,113, 62,170,215,235, -177,125,251,118,232,245,122, 40, 20, 10, 88, 89, 89,161, 75,151, 46, 8, 12, 12, 28,187, 99,199,142, 96, 86, 40,252,170,115,183, -222, 56,115,242, 40, 94,191, 12, 28,187,115,217,224, 10, 59,243,101, 24, 6,157,134, 14, 77, 78,246,241, 73,221,153,153,153, 59, -210,210,210,196, 51, 62,222,234,218,161, 67, 54, 6,228, 31,194,113, 92,161,168, 42, 16, 27,133, 51,203,196,182, 16,200,125, 33, - 48,109,128,231,111, 68, 58, 97, 67, 26, 32,170, 79, 95,149,229,100,148, 16, 2,158,231, 33, 20, 10, 81,183, 70, 83,188,217,147, -119,188,198, 96,160,222,174, 20,216, 53,201,235, 22,124,191,210, 14,223,141, 92, 4, 33, 43,210,149,231, 54,135,231,249,151, 41, - 41, 41, 16, 8, 4,240,240,240,112, 32,132, 20, 88,165, 86,183,110,221,122,241,144, 33, 67,126, 2,240,109,254,243,171,244,237, -219,215, 73,171,213,226,233,211,167, 0,240,164,140,180, 47,156, 53,152,154, 25, 33,169,230, 84, 11,126, 94, 99, 96,105, 89, 27, - 49,169, 26,196,166,106,176,245,247, 30,120,114,235, 7, 60,190, 56, 4,239,227,227, 33,115,232, 9, 78,175,246,253,167, 87,210, - 73,121, 80, 38, 37, 37,233,181, 90,173, 82,163,209,188,209,106,181,143, 40,165,174, 66,161,240,146, 84, 42, 53, 55, 49, 49,105, - 33,151,203,119,120,120,120, 8,100, 50,217, 14,137, 68, 82,162,176, 52, 55, 55, 39,230,230,230,172,185,185,185,160,164,173,224, - 58, 87, 87, 87,234,229,229, 69,125,125,125,169,143,143, 15,173, 89,179, 38,173, 90,181,106,166,163,163,227, 24,107,107,107,246, -111,124,221,235,255,166, 65,238,197,221, 52, 0, 0,220,172,172, 76,117, 58,109,244,165, 75,151,180, 12,195,192,196,196, 4,195, - 70,140, 96,126,255,237,183,230, 3,253,253,175,142,110,223,254,220,213, 43, 87,234, 54,106,212, 8,148, 82, 48, 12,131, 3, 7, - 14, 40, 85, 42,101, 74,229,202,149, 45, 12, 41, 44,138,126, 56,153,153,153,133, 2, 43, 35, 35, 3,246,246,246, 6,119, 17,230, -100,226,242,149,243, 79,210, 40,247, 77,100,167, 55,191,104, 87,196,247,104,148,206,115,130, 12, 78,135, 12, 37, 69,150, 10,130, - 7,140, 85,163, 97,238, 61,181,239,218, 53,122,125, 35,248,110,138,138, 83, 85,104,246, 67, 98, 98,226,156,190,125,251,166, 56, - 58, 58, 18, 51, 51, 51, 56, 59, 59, 51,221,187,119, 79,142,138,138, 90,252,177, 17,111, 99, 99, 51,160,117,235,214,167, 98, 98, - 98,250,220,184,113,163,234,205,155, 55,251,180,110,221,250,148,141,141,205, 0, 3, 41, 14,206,158, 61, 59, 71, 44, 22,163,113, -227,198,200,202,202,130, 70,163, 41,119, 43,215, 34,200,243,144, 74,165, 56,180,117, 77,135,165,139,230,201, 82, 94,221,195,243, -219,151,112, 62, 92,157,187, 96,197,218,251, 82,169,244,163,222,215,221, 78, 94,171,150,147,233,171, 41, 35,250,199,206,154, 57, -211,244,197,139, 23,178, 73,147,191, 69, 68, 66, 58, 21,119, 90,205,162,229, 60,230, 89,142, 13,233,252,101, 27,252,184,108,126, - 75, 0, 99,203,173,168,237,228,181,124,157, 76,131,166,143, 30, 24, 54,121,242,100,217,138, 21, 43, 84, 13, 27, 54,212,197,197, -197,153, 43,108,236,234, 11,173,109,252,195,227, 19, 44,234, 55,104,240,102,242,228,201,170,138,114,206,159, 63,223,228,206,157, - 59,162,182,109,219,210,196,196, 68, 75,145, 76,214, 68,104,106,222, 50, 54, 57,217,170, 93,187,118,111,134, 15, 31,206,125, 12, -103, 72, 72,136,168,126,253,250, 52, 46, 46,206,210,196,218,182,177,200,218,182,197,187,184,120,203, 58,117,235,134, 78,153, 50, - 69, 87, 22,103,223,245,127,138, 19,133, 66, 17,231,231,231,135, 5, 11, 22, 96,201,146, 37,232,215,175, 31,194, 35,194,209,114, -248,104, 84, 31, 54, 22,167,239, 63, 68,108,108, 44,230,204,153, 3,119,119,119, 8,133,194,208,207, 81,104, 24, 34,178, 74,235, - 62,244,174, 78,174,151, 53,206,170, 60,238, 62,125,250,140, 47,112,197, 48,114,228,200,219,235,214,173,107, 54,114,228, 72, 0, - 64,227,198,141,241,195, 15, 63, 52,155, 59,119,238,237,165, 75,151,162,109,219,182,112,117,117, 45,215,159, 24,199,113,208,235, -245, 24, 56,112, 32,244,122, 61,146,146,146, 16, 18, 18,130,205,155, 55,131, 82, 42, 5, 0, 71, 39,151,250, 98,177, 24,207, 2, - 30,229,206, 27,217,232,143, 10, 52,162, 72,209,111, 43, 59, 59, 27,125,198,141, 75,142,174, 81, 35,117, 99,114,114,238, 40, 75, - 75,147,106,239,223, 91,153,106, 52,206,101,141, 57, 45, 42,134,138,186, 37, 40,190, 21, 76, 80, 49, 20, 5,156, 99, 7, 78,129, -244,124,243, 66,145,165,168, 2,240,122,224,201, 76, 33, 38,244, 92, 0,191, 90,117, 96,224,140,181,251, 15, 30, 60,128, 88, 44, -198,148, 41, 83, 8,203,178,107, 8, 33,132, 82,154, 70, 41, 93, 64, 41,157, 65, 41, 85, 17, 66,136, 68, 34,217, 52, 98,196, 8, -168,213,106,220,190,125, 27, 0,174,148, 38, 76, 41,165,133,239,158,157, 74,192,241, 98,220, 9, 56,143,139, 55, 15, 35, 60, 38, - 9,239, 19, 85,128,192, 28,170,156,104,104,149, 49,208,164, 7, 32, 83,109,242,175,235,114, 74, 77, 77,229, 57,142,211,112, 28, -167,229,121,190, 42, 0, 51,129, 64, 0,145, 72, 4,153, 76, 54,196,196,196, 36, 64, 38,147, 13, 17,139,197, 37,222,159,145,145, - 65, 51, 50, 50,184,140,140, 12,125, 73, 91,193,117, 5,190,183,100, 50, 25, 36, 18, 9, 68, 34, 81,188, 64, 32, 24, 66, 8, 57, -136,191,217, 63, 85, 81, 45,242, 79, 71, 73,142, 70, 65,205,100,253, 15,111,248,221,188,239,192,193, 57,126,126,126,150,206,206, -206, 32,132,160, 71,207,158,164,245,141, 27,166, 66, 39, 39, 88,215,171, 87,232, 61,247,242,165, 75, 56,127,254,124,206,153,227, -199,156, 71,140, 26,213, 21, 69,157, 61,255, 53,242, 4,110,110,110,133,207,141,139,139, 43, 72, 64, 0, 64,102,102, 38,108,109, -109, 17, 23, 23, 7, 3, 13, 35,187,103,205,188, 63, 51,177,209,156,234,141, 76,133,228, 92, 78, 60, 56, 74, 33, 36, 28,160,164, -208,113,128, 90, 71, 81,191, 26,107,117, 81,169,183, 60,253,224,232, 59, 0,187, 43,104,193,186, 70, 8, 25,195,243,252, 97, 0, -204,141, 27, 55,248,160,160,160,241,134, 14, 72, 47, 9, 38, 38, 38,223, 95,189,122,213,234,251,239,191, 79, 59,125,250,116, 70, -151, 46, 93,204, 55,111,222,108,213,166, 77,155,239, 1,236, 47,183,207,146, 82, 37, 33,100, 87, 84, 84,212,248, 6, 13, 26, 32, - 53, 53, 21, 90,173, 22, 79,158, 60,129,187,187, 59, 30, 63,126, 12, 15, 15, 15, 60,122,244, 8, 53,107,214, 44,152, 50, 13,158, -231,203,237,198,141,141,122,175, 48, 81,167,153,197, 62, 56,139,215,207, 31,227,108,152, 58,119,229,246, 3,103,107,213,169,159, - 83,209, 2, 28, 0,106,218,203,125,156,237,172, 47,174, 88, 52,223, 46,226,218, 1, 28,221,190,158,191,126,238,156,183,216, 20, - 99, 90, 13,152,220, 91,163, 67,101, 0,146, 38,141, 26,208, 47, 45, 66,120, 89, 85,196, 95,121, 89,182, 39,243,154,246,114, 31, - 39, 91,235, 11, 43, 87, 44, 49,125,123,110, 7, 14,110, 90, 77,143,236,217,231,167, 2, 26,213,170, 85,171, 19, 33,196, 17,128, - 62, 63,141, 12, 90,130,166, 36,206, 43,167, 79,215, 85, 1,141,220,220,220, 58, 9,133,194,170,249, 86,190,152,207,193, 89,187, -118,237, 78,249, 45,124,154, 63,230,170, 66, 75,229,140, 28, 57,114,213,244,233,211,167,232,116, 58,235, 34, 22, 72,118,243,230, -205, 2,142,227, 24, 74,169,150, 97, 24,237,133, 11, 23, 56,189, 94, 31,171, 82,169,198,125,106,129,209,187,119,111,220,191,127, -127, 17,202, 24,188, 92,172, 66, 16, 88, 89, 89,233,203, 19, 94,134,114,223,184,113, 99,201, 87, 95,125, 53,107,255,254,253, 33, -235,214,173,235, 54,118,236, 88, 28, 56,112, 0, 53,106,212,192,179,103,207, 48,103,206, 28, 0,104, 54,119,238,220,147,219,182, -109,115,141,136,136, 88,101,136,213, 86,175,215, 99,223,190,125,232,209,163, 7,108,109,109,225,228,228, 4, 66,200,181, 81,163, - 70,253, 6, 0, 44, 97, 69, 0,160, 86,169,213,158,158, 13, 12,182,216,186,186,186, 22,150,117,241,241,241,133, 51,255, 58,124, -245, 85,242,214, 21, 43,240,135, 82,137, 81,150,150, 38,209, 46, 46,142, 39,223,190, 29, 77, 8,217, 92,154, 69,184,192,138, 83, -158,184,170,128, 69, 25, 5, 99,155,236,237,237, 49,119,194,114, 44,255,125, 46,222,224, 58,106, 12, 2, 94,254, 2,244,112,157, -136, 6,126,141,225,228,228,100,104, 22,185,246,205, 55,223, 60, 10, 10, 10,106, 80,187,118,109, 44, 94,188,184,251,194,133, 11, - 47, 18, 66, 70, 23,204, 98, 38,132, 84, 99, 89,118,205,165, 75,151,218,155,153,153,225,213,171, 87, 56,116,232,208, 27, 20,140, -208, 47, 33,156, 5,149,190, 80, 40, 68,229, 74, 30,170,215, 17,217, 38,137, 49,119,112,251,214,113,212,240,251, 22, 50,135,174, -176,242, 92, 10,109,240, 90,104, 82, 46,194,170, 82, 23, 68, 71,188, 5, 43,144, 4,254,219, 68, 86, 90, 90, 26,181,182,182,230, - 57,142,187,192,113,220, 28,142,227,150, 10, 4,130,130,241,183,190,122,189,254,147,103, 4, 22,248,222, 42,224,165,148,202, 5, - 2, 65, 38,203,178, 74, 66,200,223, 58,221,176,168, 22,249,215, 88,176, 62,200,208, 60, 17,214,244,240,224, 68, 12,118,244,232, -218, 53,247,233,211,167,133,173, 60,213,195,135,200, 57,127, 30, 28,199,129, 82,138,155, 55,110, 96,200,224,193,217, 66,150,108, -173, 86,173, 42, 37,244, 79,223, 43,132,144,191,248,177, 18,137, 68,125,251,246,237, 91, 88,232, 68, 69, 69, 65, 46,151, 67, 44, - 22,131,231,121,232,245,122,176, 44, 11,115,115,115,232,245,122, 77, 9, 31, 91,187, 98,137,161,227, 82,115,250,108,235, 60, 40, -206, 41, 91, 75,199, 88, 84, 67, 21,145,172,240,163,116, 48, 35,232,230, 39,132,141, 32,145, 94, 89,213, 62,150, 87,167,244, 41, -190,246, 87, 73,225, 44,118,222,163,118,237,218,191, 13, 25, 50,132, 1,128,118,237,218, 49,181,107,215,254,149, 16,226, 81,198, - 61,101,114, 74,165, 82, 9, 0,156, 58,117, 42, 53, 36, 36,228,139, 83,167, 78,165, 22, 61,110, 32,231,230,159,126,250, 9, 38, - 38, 38,208,235,245,208,104, 52,133,227,175,138,254,106,181, 90,216,216,216,224,204,153, 51,224, 56,238, 76,121,225,244,242,173, -157,157, 33,176, 72,216,121,242, 10,206, 69,104,179, 43, 42,174,138,114,214,112, 84,212,116,176,177,190,180,114,217, 18,219,180, - 55, 79, 16, 29, 29, 77, 47,156, 63,115, 79, 73,105, 76,122, 38,157,151,150, 77,107,230,170,169,172,161, 43, 34, 47,109,154, 65, -231,182,128, 14,228,175, 93,195, 69, 57,125, 28, 21, 53,157,109,173, 47,172, 94,181,194, 52, 61,244, 49,226,226,227,113,246,204, -169,167, 74, 74, 99, 40,165, 71, 40,165,195,121,158,175,197,243,124, 45, 74,233,240,210, 68, 75, 69, 57,181, 90,109, 45,173, 86, -251, 89, 57, 43, 26,206, 34, 51, 8,177,104,209,162,208,232,232,232,177, 9, 9, 9,189, 11,182,212,212,212, 30, 89, 89, 89, 93, -114,115,115, 59, 41,127,169,106,158,147,147, 99,151,149,149,229,168, 84, 42,235, 83, 74,159, 24,154, 63,139,163,104, 5, 27, 27, - 27,187, 48, 54, 54,150,148,153, 63,199,188, 34, 27, 86,125,179,231,208,161, 67,246,159,194, 93, 60,156, 73, 73, 73,135,247,237, -219, 87,167,122,245,234,174,195,135, 15,199,198,141, 27,177,110,221, 58, 53, 0,108,219,182, 77, 93,196,114, 85, 41, 60, 60,188, - 65, 73,221,131, 69, 57, 25,134,217,221,161, 67, 7,122,243,230, 77,244,232,209,163,208, 1,232,150, 45, 91,160,215,235, 51,219, -182,109,203, 3,128, 82,149,155, 73,121, 10,141,182,228,126,246,146,226, 83, 44, 22,127, 89,212,223, 95,129, 19,101,177, 88, 12, - 74, 41,106, 54,107,150,156,238,231,151,186, 61, 35, 35,119, 97,173, 90,102,163, 61, 61,135,123, 1,131, 75,226, 36,132,124, 96, -197, 41,190,125,204,183, 89,128, 2, 14, 23, 23, 23, 44,153,182, 26, 46, 15,123,227, 90,115,107,212, 73, 25,142,142,205,187,161, -102,205,154, 6,115, 82, 74,105, 98, 98,226,216,249,243,231,243, 98,177, 24, 95,127,253, 53,142, 30, 61,218,174, 75,151, 46, 17, -206,206,206, 17, 62, 62, 62,241,227,199,143, 15, 75, 78, 78,238,210,184,113, 99,164,166,166, 98,220,184,113,218,212,212,212,190, - 69,199,113, 22, 15,103,129, 83, 76,145, 72,132,238,157,219,165,254,254,235,106,190,109,203,241, 48,145,153, 65, 39,172,132,212, -108, 29,210,114, 40, 52,146, 70, 16,139, 36,232,232,239,131,251, 23,118,230,114,154,156, 93, 31,155,231, 63, 54, 62,255,127,112, - 82, 74, 41,199,113, 42,189, 94,191,141,231,249,121, 5, 61, 73, 5,254,172,138, 27, 67, 43, 26, 78,158,231, 11, 93, 55,228,115, - 43, 4, 2,193, 9,150,101,125, 10, 38, 82,253, 29,239,254,111,195, 7,110, 26, 10,126, 9,225, 57,142,227, 81,173,122, 53,211, -136,240,200,245,253,250,245, 29,217,169, 83,103,147,206,157, 59, 75,125,130,243,186, 40, 78,157, 58,133,163, 71,143,230, 94,188, -120, 49, 83, 34,100,183, 85,170, 92,201,158,227,120, 16, 82,182,133,196,212,212,116,242,236,217,179,101, 25, 25, 25, 88,183,110, - 29, 95,167, 78, 29, 70, 46,151, 67,171,213, 98,219,182,109, 58, 31, 31, 31, 33,195, 48,200,200,200, 0,195, 48,175, 13, 84,188, -207, 9, 33, 29,127,107,221,235,104,131, 9, 35,172,189, 91, 55,177,108, 85,201, 25,186,122, 20,177, 81,225, 8,185,114, 49,237, -229,133, 53, 41, 80, 37,244,162,148, 6, 85, 52,146,156,156,156, 22, 92,188,120,209,110,226,196,137, 84,165, 82,145,200,200, 72, -186,108,217, 50,187,175,191,254,122, 1,202,241,133, 83,214,119,148,158,158, 14, 66, 8,159,159, 89, 11, 10, 23,131,205,175,148, -210, 64, 66,200,137,158, 61,123,118,111,219,182, 45,130,131,131, 11,187, 2,139, 10,172,130,217,132,203,151, 47, 79, 7,254,116, - 16, 88, 26, 36, 18, 9,182, 28, 62,127, 46, 54,250,189, 73,181,106,110, 42,115, 75, 75,254, 99, 44, 87, 0, 32,102,152,133, 63, - 46,153,111,151,252,234, 62, 9,188,119,149, 63,244, 60, 33, 81,207,209,146, 61,244,103,197,210,124,213, 95,118,235,133, 97, 23, -254,180,124,137,121, 65,247,229,254,128,184, 76,194,209,137,159,214,212,248,135,112,254, 31, 32,111,134, 95, 44,113,114,114,162, - 5, 93,120, 37, 9,172,242, 80, 82,247,224,199,114,191,123,247,110, 89,189,122,245,166,135,134,134, 30,242,246,246, 30, 11,160, -178, 90,173, 78,159, 59,119,238,202,109,219,182,141, 52,196,114, 5, 0, 7, 14, 28, 88, 51, 98,196,136,243, 93,187,118,157,193, -243,124,237, 34, 21,210, 59, 59, 59,187, 66,143, 92, 73, 9,241, 51,199,140, 28, 56, 51, 59, 59,205, 96, 63,117, 10,133, 98,244, -220,185,115,165, 57, 57, 57,216,176, 97, 3,239,227,227,195, 20, 52,134,246,236,217,163,247,240,240, 16,244, 29, 63, 62,249,151, -248,120,252,112,235, 86,206, 76, 95,223, 58,219, 67, 66,234,151,100, 97, 47,168, 48, 75,178, 92, 21, 12,175,248,136,138,252, 3, -129, 85, 32,178, 22, 76, 89,129,152,152, 24,136, 68, 34,184,187,187,163,180,238,166, 50,202,165,103,132,144,129,145,145,145,187, - 54,108,216, 32,110,220,184, 49, 26, 54,108, 8,161, 80, 88,165, 32,188, 26,141, 6,207,159, 63,199,236,217,179,233,195,135, 15, -191, 46,107,129,122,142,227, 18, 61, 60, 60, 10,187,143, 8, 33, 41,153,106, 98,126,208,171,145, 98,248,152, 67,228,246,163,187, -136,213,242, 80,235,120, 84,171, 94, 23,173,190,248, 5, 39,207,189,224, 98, 35,130,130,116,202,180,173,255,198,138, 59, 53, 53, -149,218,217,217,233,243,141, 18, 77, 11,134,212, 20,204, 12,253, 84, 11, 86,126,131, 61,140,231,249, 4,134, 97,154,230,251,222, - 50, 19, 8, 4, 87, 24,134,177, 1,160,255, 59,222,171,184, 22,249,215,116, 17,126,160, 94, 89,230,206,198, 77,191,127,121, 96, -223,126, 7,150,101, 28,222,134,133, 61,234,214,171, 79,204,165, 75,151,172, 68,230,230, 13, 1,240,154,177, 99,239,105,213,202, -212,211, 39, 78, 84,169, 86,173,170, 95,254, 98,207,148,103,153, 59,101, 61, 48, 59, 59, 59,231,214,173, 91,185,179,102,205, 34, - 81, 81, 81,123,237,237,237,251,159, 59,119, 78,209,171, 87, 47,101,112,112,240, 17, 7, 7,135,238,173, 91,183, 54,157, 62,125, -186, 58, 59, 59,123,125, 5, 18, 38,136, 16,226,245,112,254,170,175, 30,254,244,123,123, 8,216,166, 80, 11, 1, 94,119, 7,218, -172, 75, 0,246, 82, 74, 63, 42, 83,200,229,114, 63,185, 92,142,167, 79,159,166, 53,106,212, 72,163, 82,169, 68, 75,151, 46,181, -150,203,229,126,159,144,145,104, 90, 90, 26,120,158, 23, 0, 32,249,191,224, 43,190, 86,206,128,110,221,186,157, 56,120,240, 96, -135,206,157, 59,195,213,213, 21, 58,157, 14, 30, 30, 30,208,104, 52,112,119,119,135, 90,173,198,162, 69,139,144,145,145, 49,213, -144, 69,132,165, 82, 41,196, 98, 49,106,122,249,230, 74,165, 82,124,172,184, 2, 0,185,144,113,125,125,122, 59, 18, 83,146,249, -131,207, 18, 18,114,181, 92,199,208,196,156,151,197,175,203,229,144,211,122,248,164, 24, 0, 80,243,200, 46,147, 83, 12,215,215, -167, 55, 35, 33, 49, 25, 7, 2,226,210,115,180,252, 23,175, 75,224,172, 80, 56,255, 33,156,125,215, 7,163,213, 55,134, 95,123, -104,204,167, 21, 16, 31, 35,164, 10, 16,244,142, 18,108,242,162,216,180,190, 68, 31, 87,159,194,157,111,153, 58,145, 95,169, 68, - 13, 28, 56,112,102,120,120,248,146,124,127, 87,155, 42,194,181,125,251,246, 80, 0, 35,202,186,102,255,170, 17,199, 0, 28,171, - 8,111, 86, 86,150,234,201,147, 39,170,233,211,167,147,168,168,168,115, 14, 14, 14, 29,206,159, 63,111,210,171, 87, 47,117, 96, - 96,224, 21, 39, 39,167, 22,237,218,181, 83,156,125,240, 32, 38,247,237,219,211,167,195,195, 93,116, 60,127,186, 44, 65,244,185, -196, 85, 1, 95, 81,203, 80,129,200,114,114,114, 66,149, 42, 85, 62,233,187,167,148, 30, 36,132,188,106,214,172,217,209,225,195, -135,215,104,212,168, 17, 60, 60, 60,144,154,154,138,232,232,104,220,190,125, 27,155, 55,111,126,160, 84, 42, 39, 22,181,172,150, -132,148,148,148,191, 44, 35, 68,100,214, 78, 59, 55, 44, 60,245,232,118, 67,143,230,157,135,201,124,157,120,104,180, 20, 81,239, -223, 98,209,188,173,185,113,239, 67,131,180,122,109,207,127,186, 15,172,114, 80,155,227,184, 99, 58,157,174,114,190, 53,246,179, -249,180,210,104, 52,217,122,189,126,152, 64, 32,224,132, 66,225, 46,150,101,107,228, 47,107,247, 3,165, 84,240,119, 9,172,127, -165, 5,171, 56,194,194,162,130, 92, 93, 43,205, 62,122,228,112, 83, 74, 25,150, 18,146, 99, 97, 97,121, 42, 50, 50,242, 3, 47, -216,110, 86, 86,166, 35,190, 30,209,159,240, 68, 72, 8,207,241, 44,115, 39, 44, 44, 42,168,156,132, 27,211,191,127,255,117, 38, - 38, 38,115, 83, 83, 83,159, 90, 88, 88, 60,243,243,243, 91, 66, 41,157,167, 84, 42, 79,152,154,154, 62,104,210,164,201,210, 42, - 85,170,172,161,148, 62,174,224, 71,173, 71,222,248,175, 93,159,217,100,187, 24,128,185, 64, 32,200,120,241,226,197,190,154, 53, -107, 14,164,148,154, 19, 66, 50, 62,150, 83,165, 82, 77, 76, 79, 79,183, 25, 61,122,180,110,243,230,205, 53,135, 13, 27, 54,243, -229,203,151, 66,149, 74, 21, 86,193,119, 86, 19, 66,186,247,235,215,111,171, 80, 40,108,203, 48, 12,225,121,158, 22, 57, 15, 74, - 41, 56,142, 59, 89, 94,188, 8,133,194,236, 47,191,252, 82, 81,174, 85, 74, 44,206, 54,184,146,209,112,223,254,126,245,229,114, -149,142, 82, 61, 79,199,188, 78,200, 41,113, 10,217,195,215,212,199, 96, 78, 21,255,237,186, 11, 65,203,213, 58,158,215,243,116, -108,105,156, 21,170, 12,255, 33,156, 0, 48,142, 89,191, 7,155,214, 23, 14,120, 47,232, 54, 44,190,255,185, 81, 96,105, 66, 69, -188, 44,231,187, 99, 8, 26,243, 55,112,151, 32,182, 42,138, 62,125,250,252,109,227, 73,180, 90,237,156,110,221,186, 45,177,176, -176, 88,153,148,148,244,212,194,194, 34,200,211,211,243, 91,158,231,215,228,230,230,158, 50, 53, 53,237,218,160, 65,131,169, 85, -171, 86,221, 25, 65,233,206,178,184, 56,142,139, 41,176,226, 0,160, 5,214,167, 2, 1, 81, 84, 72,232,116,186,104, 67,194,199, -113, 92,140,159,159, 31, 41,106,205, 42,254, 91, 20,134,242, 22,107,244,122, 46, 89,178,164, 9,128, 54, 0,252, 0,100, 2,120, - 15,224, 30,165,244,252, 71, 11, 56,101, 74, 44, 33,164,222,171,128, 91, 99, 67,130, 2,190, 42,152, 45,200,178,226, 64, 78,155, -187, 75,167, 76,219,250, 47, 23, 87, 72, 76, 76,124, 10,160,202,223,193,173, 86,171, 7, 18, 66,130, 89,150,165, 66,161,240, 43, -150,101,175,241,252,255, 99,239,186,227,155,170,222,247,115,238,189,217,171,233, 30,180,180,172, 82,150, 64,203,148, 45, 8, 8, - 40, 67,144,175,162, 44, 45, 32,254, 20, 65,134,202,150, 33, 8,130,202, 16, 4, 4, 68, 16,112, 34,160, 50,164,178, 4, 4, 69, - 70, 89,133, 2,221, 35, 93,105,211,172,123,207,239,143, 38, 49,148,142,164, 20, 44,152,247,243, 57,159, 38,185,233,147,179,207, -115,222,243,158,247, 21, 62, 48,153, 76, 91,248,154,226,242,253, 33, 16,114, 63,251, 32, 33,164, 71,117,199, 43,242, 96,122, 48, - 61,152, 30, 76, 15,166, 7,211,131,121,255, 48,125,125,125, 21, 0, 76,132, 16,202,178,172,146, 97, 24,111, 74,169,129,231,249, - 60,171,213,106,201,201,201, 17,238, 71, 62,255, 19, 26, 44,143,120,196, 35, 30,241,136, 71, 60,242,223, 20,158,231,139,115,115, -115, 5, 0,240,241,241, 41, 36,132,152, 40,165, 60,165,148,207,201,201, 17, 60, 53,228, 34,177, 5, 80,230, 77, 0,119,152,105, - 85,110, 19, 84,134,239,193,244, 96,122, 48, 61,152, 30, 76, 15,166, 7,243,209,195,252,207,136,221, 70,231,126, 36, 0, 61, 60, -152, 30, 76, 15,166, 7,211,131,233,193,244, 96,122, 48,255,107,137,241, 80, 76,143,120,196, 35, 30,241,136, 71, 60,226,145,234, - 21,143, 13,150,155, 98,139, 41,247, 42,128,193, 0,234, 3,184, 6, 96, 39,128, 85,110, 4, 60,118,198,211, 0,152, 6,160, 3, -128,186, 0,174, 3, 56, 12,224,125, 74,169,222, 83,227,101,139,191,191,255, 59, 34,145, 72, 11,148, 56,197,179,255,117,126,205, -243,124,110, 94, 94,222,130,251,212, 15, 88, 74, 41,239, 78, 94,157,243,230,252,215, 98,177,220,183,124,122,164,198,206, 35, 13, -125,124,124,182,232,116,186, 97,148,210,203,158, 26,241,200,163, 36, 1, 1, 1, 99,205,102,243,116,177, 88, 60, 63, 35, 35, 99, -245,127,158, 96, 17, 66,226, 0,128, 82,218, 5, 0,212,106,245, 49,134, 97,234,218,158, 1, 0,156, 60,184,150,249, 87, 16,132, -235,217,217,217,143,151,247, 99, 10,133,226, 24,203,178,117, 9, 33,246,224,179, 96, 24, 6, 22,139, 69,205,178,108, 65, 57,152, - 73, 58,157,174, 85, 13,153, 20, 9,128, 31,189,189,189,139,223,123,239,189, 85, 93,187,118, 13, 75, 73, 73,177, 78,153, 50,165, -243, 95,127,253,213,151, 16,242,148, 59, 36,139, 16,210,158, 16,178,177,101,203,150,223, 14, 31, 62,124,123,219,182,109, 37,217, -217,217,234,157, 59,119,214,218,180,105,211,105, 66,200, 48,119, 93, 85, 60, 4, 11, 11, 87,158, 63,178,138,158,149, 22,145, 72, -164, 77, 74, 74, 82,219,250,172,195,243,176,197, 98,129,197, 98, 65, 97, 97, 33, 90,180,104, 81,237,249, 15, 14, 14,142, 38,132, -172,136,140,140,108, 21, 18, 18,114, 10,192,248,148,148,148,191,220,201,171,213,106, 5,165,212,145,207, 38, 77,154,120,102,100, -247,250,208,203, 18,137,164,119,100,100,100, 27,163,209,152,115,253,250,245,147, 60,207,207,164,148,166, 85, 19,190, 23,128,153, - 82,169,180,109,253,250,245,195,174, 92,185,114,219,108, 54,159, 0, 48,151, 82,154, 87, 29,228,170, 75,151, 46, 71, 86,174, 92, -233, 59,110,220,184, 35,132,144,142, 30,146,229,145,127, 75,106,215,174,173, 45, 44, 44, 92, 7, 32, 90, 36, 18, 5,217, 98, 16, -166, 73,165,210, 63,229,114,249,232, 35, 71,142,228,186,139,201,243,252,204,196,196,196,160,118,237,218, 45,110,214,172,217,156, -172,172,172, 98,179,217,124, 32, 39, 39,103, 34,165, 52,191,146,241,113, 7, 23,121,232, 9,150, 45,238, 79,215, 59, 30,112, 92, -104, 98, 98, 98,128, 90,173, 6,207,243, 14,237,128,125, 49,115,118,239, 96,243,179,132, 70,141, 26,153, 43, 89,104,194,146,146, -146, 2, 84,170,127, 92, 45,153,205,102, 4, 5, 5, 9,201,201,201, 1,165, 3, 9,155, 76, 38,132,134,134,214, 36, 95, 38,175, -250,248,248,228,221,186,117,187, 69,177,209, 60,247,149,255,123,251,157, 97,131,159,244, 62,118,236,152,240,212, 83, 79, 25,227, -226,226, 94, 5,224,146,115, 84, 66,136, 23, 33,100,211,148, 41, 83,230,200, 20, 26,223,131,199, 46, 24, 55,237,220,157,220,178, - 97, 29, 50,113,226, 68,246,245,215, 95,255, 45, 58, 58,122, 11, 33, 36,198, 29, 77,150, 90,173,254, 73, 42,149, 70,176, 44, 11, -179,217,124, 75,167,211,245,172, 65, 11, 99, 75, 0,103, 8, 33,209,148,210, 63, 93,125, 86,145,100,103,103,195, 96, 48,220,149, -154, 52,105,130,234,118, 65, 66, 8,225,194,194,194,190, 95,184,112, 97,173,180,212, 84,124,184,108, 89, 59, 0,171, 0,180,115, -229,255, 51, 50, 50,238,202,103,163, 70,141,224, 17,183,218, 96,218,156, 57,115, 22,190,240,194, 11,224,121, 30, 6,131, 33,228, -234,213,171, 77,167, 79,159, 62,144, 16,210,134, 82,154,112,143,248,254,145,145,145,241, 19, 38, 76,240,105,211,166, 13,108, 81, - 37, 66, 14, 31, 62,220,110,253,250,245, 47, 17, 66, 26, 81, 74, 51,239,229, 55,124,124,124,182,124,246,217,103,190, 10,133, 2, - 63,252,240,131,111,247,238,221, 15, 19, 66, 58, 85,149,100, 17, 66, 24, 95, 95,223,215, 1, 60, 33, 8,130, 4,192,137,156,156, -156,121,148, 82,179,167,199,120,164, 34,241,243,243,123,185,160,160, 96,165, 84, 42, 21,123,123,123, 67,161, 80,216, 99, 16,214, -150, 74,165,181,165, 82,105,159, 39,158,120, 98,252,193,131, 7, 43,244,136,255,120,116,208, 72, 48,100, 46, 75, 24, 22, 0,154, - 68,250,106,188,188,188, 48,119,238, 92,101,255,254,253,149, 0,112,228,200,145,225, 35, 70,140,232, 78, 8,105, 86, 30,201, 42, -139,139, 60, 18, 26, 44, 74,105, 92,169,130, 66, 46,151, 99,251,246,237, 96, 89,246,142, 40,238,101,189,174, 93,187,118,165, 63, -102,215,128,237,218,181, 11, 26,141, 6, 94, 94, 94,142, 5, 70, 42,149,226,192,129, 3, 16,137, 68,224, 56, 14, 34,145, 8,173, - 90,181, 66, 5, 1,230,239,139, 12,105, 90, 18,100,178, 44,231,141,157,234,203, 49,248,245,217, 67,139,138,205,173, 1, 20,230, -230,228,228,156,250,230,155,148,150, 13, 27,138,183,108,217,210,166, 86,173, 90,131, 93, 37, 88, 0,166,197,196,196,124,205,202, -189,252,134,143, 24, 57,124, 52,199,152, 95, 26,243,214,252,219,169, 89,133,177,177,177,223,252,240,195, 15,195, 23, 45, 90,116, -113,242,228,201,211, 0,188,235,106,254, 37, 18, 73,196,213,171, 87, 35, 5, 65,192, 99,143, 61, 86, 99,194, 13,216, 9, 20,165, - 20,132,144, 59,136, 84, 69,207, 42, 19,187,198,170,172, 84,221, 82,171, 86,173, 70, 47,190,248,162,159, 46, 43, 11, 31, 46, 91, -102,255,184, 85,101,199,133,246,163, 64,147,201,132,103,159,125,246, 69,158,231, 57, 59,249, 51, 26,141,166,188,188,188, 98,167, -155, 58,153,148,210, 39, 93,168,207,186, 74,165,242, 3, 0,209, 6,131,161, 22, 0, 40,149,202,100, 65, 16,190, 45, 44, 44,124, -151, 82,106,168, 98, 59,133, 1,104,138,242, 67, 54,209,133, 11, 23, 94,153, 54,109, 90,194,131,198, 36,132, 68, 4, 6, 6, 46, - 24, 50,100, 8,118,239,222,141, 61,123,246, 88,228,114, 57, 55, 98,196, 8, 50,126,252,120,239, 9, 19, 38,244, 1,240,209, 61, - 54,115,159, 57,115,230,248, 52,110,220, 24, 59,119,238,196,217,179,103, 13,145,145,145,242,174, 93,187,130,227, 56,159,119,222, -121,231, 41, 0, 27,239,229, 7,116, 58,221,188,183,222,122,107,211,214,173, 91,213,215,175, 95,199,138, 21, 43,252,134, 14, 29, - 26, 71, 8,233,226, 42,201, 34,132, 72, 1,188, 14,160, 27,203,178,157, 70,140, 24, 97,253,191,255,251, 63, 17,195, 48,150,101, -203,150,249,175, 95,191,126,168,159,159, 95,116, 86, 86,150,199,204,160, 2, 97, 89,214, 44, 8,130, 8,128,140, 82,106,172,236, -253,163, 84,118, 95, 95,223,113, 57, 57, 57,171,130,130,130, 16, 24, 24,120,215, 90,107, 52, 26, 33,147,201,196, 65, 65, 65,159, - 13, 24, 48, 64,244,221,119,223,149,123,212, 71, 88, 50,243,135,109,239,213,242,241, 86, 3, 0,150,127,250,115, 17, 0,124,247, -221,119, 72, 73, 73,129,183,183, 55,154, 53,107,198,190,247,222,123,193, 19, 39, 78,252, 16,192,232,242,176, 74,115,145, 71,130, - 96,149,183, 48,216, 3,137,218,137,148,157,252,148,126,109, 39,101,165, 42,106,127,169, 73,129,232,245,122, 7,185,210,104, 52, -176, 45,170,176, 88, 44,119,225,242, 60,143,210, 81,181, 93,185,254, 73, 8, 25, 7,224, 0,165,244,154, 43,149,224,140,185,227, -181, 70,216, 36,157,242,188,221,229,121,159,183, 74,254,110, 2,112,236,198,232, 21, 43,187,116,169,245,250,140,143,103, 27,178, - 83,178,222,121,241,233,136,200, 32, 95,185, 50, 55, 35,207, 39, 42,170, 23,156,194, 7,184,144,207,206,195,135, 15,223,252,203, -239,137, 68, 38, 19,139, 57,150, 21,117,124,172,161,111,152, 23,235,165, 6,188,110, 39, 92, 57, 54,114,228,200,199, 38, 79,158, -220,201,157,178, 51, 12, 3,141, 70,131,205,155, 55,131,177, 51, 90, 23,203, 94, 93, 82, 70,187,115,118, 2,165,211,233,176,123, -247,110,244,237,219,247, 12, 33, 36,218,246,149, 51,148, 82,228,231,231, 35, 53, 53, 21,193,193,193,103, 8, 33, 34,231,227,194, -210,152,118, 45,170,157, 76,141, 24, 49,226, 69,171,213,202, 57, 77, 14,165,137,203, 93,228,197,213,178,135,132,132,252, 2,224, - 73,150,101, 97, 42, 46, 54,125,176,116,169,243,227, 63,156,201, 85,121,152,246,188,242, 60,207,157, 57,115, 70,100, 31, 51, 0, - 68, 0,148, 0,252,108, 65, 85,255,118,161, 62, 27, 41, 20,138, 99,187,118,237,210,180,106,213,138, 72, 36, 18, 88,173, 86,156, - 59,119, 46,108,209,162, 69, 99,246,239,223,255, 20, 33,164, 73,233,160,230, 46,182,123,211,195,135, 15, 23,214,171, 87,175, 76, -194,152,159,159,207, 53,108,216,176, 11,128,132,127, 1, 51, 41, 61, 61,125,192,147, 79, 62, 57, 54, 45, 45, 45,222,106,181, 78, - 5,208,204,207,207,239,204,160, 65,131, 32,151,203,187,185, 66,176, 42,106,247,128,128,128,254,143, 63,254, 56, 86,172, 88,129, - 69,139, 22,245,160,148, 30, 32,132,116,207,207,207,223,255,204, 51,207, 64,171,213, 14, 40,139, 96,185,218,151, 8, 33, 13, 59, -119,238,252,217,220,185,115,213,187,119,239, 70,100,100, 36, 10, 10, 10, 48,105,210,164,128, 89,179,102, 29, 34,132,116,181,147, -172,242, 48, 9, 33, 77,164, 82,233,198,173, 91,183,170,234,213,171, 87, 79, 44, 22, 51,245,234,213,131, 78,167, 67,113,113,177, -116,254,252,249,143,201,229,242,191, 62,250,232,163,141, 0, 6, 61,232,241, 94, 42,175,121, 0, 52, 0,180,238, 28,175, 86, 80, -246, 60, 0, 82,199,224, 17,137, 32,147,201, 32,147,201, 32,149, 74,113,229,202,149, 25, 18,137,100, 25,202, 8,229, 82, 22, 38, -249,103,209,106, 65, 8, 57,201,178,108,133,239, 75,155,128, 60,232,250,180,229, 57,148, 16,178, 28, 64,183,146, 41,159,137,243, -243,243,123, 35, 45, 45,237,166,171,152, 33, 33, 33,190,122,189,254,163,224,224, 96, 4, 6, 6, 58,214,142, 90,181,106,193, 98, -177, 32, 61, 61, 29,148, 82,228,230,230, 66,161, 80, 32, 36, 36,228,163, 49, 99,198,236, 92,179,102, 77,118,153,152, 2, 22, 61, - 51,116,250, 76,150,101, 25, 0, 96, 57,149,106,194,219, 64, 68, 68, 4, 58,118,236,136,226,226, 98,228,229,229,161,105,211,166, - 28, 33,100, 56,195, 48, 26, 74,233,106, 74,233,193, 71,153,192,219, 23,164, 57,165,207, 61, 9, 33, 16, 4, 1, 28,199,221, 65, -176, 74, 39, 59, 25,178,245, 83, 82,153, 42,219,100, 50, 57,200,149,151,151,151,131,156, 89,173,214,242, 8, 86, 85,152,121,115, - 65, 16,234, 18, 66,214,184, 74,178, 74,203,240,225,195,239,178,231,152, 56,113, 98, 82, 70, 70, 6,125,182, 87, 11,101,252,222, -148,212,250,222, 42,185,191, 90, 93, 71,230,237,163,205,206,206, 62, 14, 64,235,198, 79, 52,136,137,137,145,111,250,230,112,210, - 43,111, 46,124,175, 85, 61, 95, 77,243, 80, 63,239, 32, 47,185, 68,197,144, 66,153,213,146,228,227,227, 19, 89,133, 29, 25, 0, - 64,171,213,130,227,184, 26,161,193,162,148, 90, 9, 33,209,132,144, 51,187,119,239, 70,219,182,109, 29, 36,203, 78, 62,242,242, -242,112,238,220, 57,116,238,220, 25, 0,162, 93,177,197, 18, 4, 1,102,179, 25,102,179,217, 65, 92,196, 98,241, 93,196,197,254, - 93,150,101,255,174, 98, 17,222,243,246,246,238,220,173, 91, 55,201,182,237,219, 37,148,210, 66,148, 4,164,214, 83, 90, 78,224, -234, 82, 98,181, 90, 29, 90, 53,145, 72,132, 91,183,110, 57,180,192,118, 77,112,233, 35,242,242, 68, 42,149,190,245,213, 87, 95, -105,218,180,105, 67,178,179,179, 33, 8,130, 99,114, 92,181,106,149,108,240,224,193,181, 78,159, 62,253, 14,170, 16,118, 6, 0, - 41,143, 8, 1,128, 70,163,177, 2,110,223, 62, 46, 19,211,106,181,146, 14, 29, 58, 76,206,202,202,122,204, 96, 48,204,119,165, - 31, 1,248,193,150,236,115,202, 95,241,241,241,134,231,158,123, 78, 94,167, 78,157,182,247,218, 87, 27, 54,108,216, 94, 36, 18, -225,196,137, 19, 70, 0,246,157,116,220,217,179,103,141,131, 6, 13,146,134,133,133,181,119, 67,115,215,176, 81,163, 70,251, 2, - 2, 2,228,118,141,229,144, 33, 67, 68,107,215,174, 85, 39, 39, 39,195,108, 54, 99,218,180,105,232,215,175, 31,252,252,252, 48, -113,226,196,192,197,139, 23,111, 1, 16, 83, 1,166, 76, 34,145,108,190,122,245,106,100,112,112,176,252,247,223,127, 71,243,230, -205,145,149,149,133,180,180, 52,232,245,122,164,165,165, 97,244,232,209, 1, 31,126,248, 97, 72, 13, 90,107,114,197, 98, 49, 20, - 10,133, 54, 55, 55, 55,239, 30,112,164, 0, 36,206,228, 74, 42,149, 66, 42,149, 66, 38,147, 65, 16,132, 71, 34, 72,112, 5,237, - 95,139, 16,114, 65, 44, 22, 75, 21, 10,133,152, 97, 24, 72,165,210, 94, 62, 62, 62,231,123,246,236,217,236,151, 95,126, 73,116, - 5,167,184,184,120,179, 84, 42, 21, 5, 4, 4, 0, 0, 34, 35, 35,209,188,121,115, 20, 22, 22, 10,121,121,121,208,106,181,204, -205,155, 55, 97, 48, 24,144,154,154,138,240,240,112, 17,195, 48,155, 1, 60, 85, 22,222,209,211,169,159, 2,248,212,254,222,223, -223, 63, 29,128,220,254, 94, 38,147,161, 86,173, 90, 72, 78, 78,134, 90,173,102,103,205,154, 53,104,251,246,237, 3, 9, 33,195, - 41,165, 95, 56, 65,205,121,228,108,176, 40,165,179, 9, 33, 93,202, 90,192,108,231,177,229,106,174,236,201, 21, 34,100, 15, 68, - 25, 24, 24, 8,133, 66, 1,133, 66,225, 8, 56,202,243,252, 93,248,182, 29,189,219,133, 82, 42,149,120,225,133, 23,232,234,213, -171,199,218, 72,214, 85, 87,255,119,200,138,120,135,214,170,180, 52,105,210,228,216, 59,239,188,211,255,215, 95,127, 77,110, 85, -175, 14,167, 76,185,169,151,105,180, 90,132,214,238, 59, 98,192,160,179, 40,185, 77,232,170, 92, 45, 40, 40,144,215, 15, 85,152, - 24,166,152,212,150,114,234, 96,165, 88, 26,228,237, 93, 75,108, 50,102,104,188,189, 37, 70,163, 49, 23, 64,133,193,153, 53, 26, -205,207, 82,169, 52,156,101, 89,176, 44, 11, 63, 63, 63, 47, 74, 41,180, 90, 45, 66, 67, 67, 85, 81, 81, 81,151, 57,142, 3,195, - 48,208,235,245, 55,111,220,184,209,171,178,140,121,123,123,255, 44,149, 74,195,237,193, 67, 89,150,117, 92, 72,176,191,102, 89, - 22,132, 16, 20, 21, 21,185,132, 73, 41,253,147, 16, 18,221,183,111, 95, 7,201,218,187,119, 47,122,247,238,141,220,220, 92,156, - 63,127,222,153, 92,185,116, 60,232,108,212, 78, 41,133, 88, 44,198,165, 75,151,238, 56,186,182, 39,181, 90, 93,229, 65,226,227, -227,115,100,200,144, 33,248,236,179,207,168, 45,202,187,146, 16,210,220,203,203,235,210,133, 11, 23, 92,178,115,161,148,194,108, -254,231,171,246, 62,238, 60,190,220, 32,209,189, 98, 98, 98, 72, 94, 94,158,157, 56, 58, 54, 66, 44,203, 98,229,202,149,242, 54, -109,218, 76,151,201,100,147,197, 98,113,190,197, 98,217, 86, 92, 92, 60,159, 82,154, 91,147, 38,159, 78,157, 58,189,121,251,246, -237,126,225,225,225,187,238,129,188,211,214,173, 91,155, 0,200, 89,150, 21, 85,195, 2,198,218,250, 86,177,157,228, 83, 74,173, - 49, 49, 49,197,182,197,221,229, 8,200,126,126,126, 91,246,236,217, 19, 26, 30, 30, 14,139,197, 2,171,213, 10,189, 94,143,184, -184, 56, 24,141, 70, 88,173, 86, 68, 70, 70, 98,230,204,153,197,111,188,241,134,108,205,154, 53, 25,122,189,126, 88, 37,176,111, -236,220,185, 83, 25, 28, 28, 44, 55, 24, 12, 72, 72, 72, 64, 76, 76, 12, 10, 10, 10, 80, 88, 88,136,162,162, 34,152,205,102,228, -231,231,107,121,158, 55,213,152,133,134,227, 32,149, 74, 33, 22,139,115,195,195,195, 65, 8,145, 37, 38, 38, 86,229,200, 77, 3, - 32, 95, 36, 18, 73,156,137,149, 84, 42,197,137, 19, 39,222,149,201,100, 31,194,141, 64,196,165,227, 21, 86,246,190, 6, 16,172, -229, 98,177, 88,234,227,227, 35,118, 90,167,197, 42,149, 10, 1, 1, 1, 43, 0,244,113,177,220, 45,125,124,124, 28,243,123,139, - 22, 45,112,251,246,237,111,243,242,242, 94,202,200,200, 0,195, 48,155, 25,134, 25,104,231, 1, 57, 57, 57, 8, 11, 11,107, 89, - 30, 94,135,152,224,177, 32,212,161,193,106,210,192, 71, 85,106,157,130, 70,163,193,141, 27, 55, 80, 88, 88, 72,175, 92,185, 66, -198,141, 27, 71, 76, 38,211,231,132,144,227,148,210,235, 21,113,145,135, 93,131, 85,230,185,167,253,136,176, 44, 66, 85,154,112, -185, 66,132, 76, 38,147, 42, 38, 38, 70,176, 47,220,246, 4,128,148, 71,176,108,154, 2,183, 69, 36, 18,169,199,141, 27, 87,176, -122,245,234, 49,132,144,181,148,210, 43, 85,173,164, 93, 95,111, 13, 92, 52,115,218, 76,159,144, 58,245, 39, 79,158,193, 61,253, -244,211,191,111,218,180,137,247,105,220,167,251,193,159,191, 8,252,104,210,148,189,123,246,236, 1, 74, 12,158, 93,149, 35, 63, -254,248, 99,208,196,215,199, 99,230, 91,111,252,164,137,244,147,168,136,143, 82,102, 44,204, 84,129, 26,164, 13, 26,245,251,102, -215,174, 84, 0, 21, 70,154,151,203,229,225, 87,174, 92,137,116, 38, 16,102,179, 25, 90,173, 22,155, 54,109,242, 87,171,213,254, - 42,149, 10, 28,199,161,121,243,230,174,106, 72,194, 47, 95,190, 28,169, 86,171, 81, 84, 84, 4,163,209, 8,139,197, 2, 65, 16, - 64, 8,129, 72, 36,130, 68, 34,129, 82,169,116,235,166,158, 51,201,218,187,119, 47,154, 54,109,138,156,156, 28,196,199,199,187, - 77,174,156,181, 66,206,246, 86, 28,199, 97, 75,189,122,120, 37, 37,197, 65, 92,150,123,121, 97,166, 80,181,232, 14,143, 61,246, - 24, 61,122,244, 40,126,250,233, 39, 60,243,204, 51,228,251,239,191, 55,243, 60, 47, 78, 78, 78,118, 89, 27, 38, 8,130, 35,175, -246,249,218,153, 88,185, 75,176,172, 86,171, 90, 34,145,160,184,184,216,113,132,239,156,234,214,173, 11,157, 78,199,229,231,231, -115, 41, 41, 41,138,121,243,230,253,223,161, 67,135,130, 1, 60,255,111, 78, 54,171, 87,175, 14,127,229,149, 87,110,113, 28, 71, -123,247,238,253,226,205,155, 55, 7, 4, 7, 7, 31,248,245,215, 95,151, 2,104,232, 46,158,191,191,255, 31, 28,199,133,170, 84, - 42,241,142, 29, 59, 44, 5, 5, 5,226,128,128,128,116, 59,161,181,215,181,197, 98, 73,202,203,203,107,229, 10,158,191,191,191, -248,147, 79, 62,177,100,103,103,139,131,130,130,210,237, 56, 74,165, 82,188, 99,199, 14, 75,126,126,190, 88,171,213,254,145,155, -155, 91, 41, 94, 86, 86,214,176,225,195,135, 31, 62,112,224,128, 31,203,178,184,121,243, 38,178,179,179,161,213,106,177,121,243, -102,132,135,135, 99,231,206,157, 58,157, 78,247,242, 7, 31,124, 48, 93,175,215,187,226,178,161,115,219,182,109,195,115,115,115, -161,213,106, 81, 88, 88,136, 63,254,248, 3, 77,154, 52, 65, 74, 74, 10, 24,134,129, 86,171,197,170, 85,171,138, 8, 33,186,154, -176,200,176, 44,235,208, 50, 57,145,162,226,246,237,219,227,224,193,131, 83,221, 33, 69,148, 82,147, 72, 36,186,131, 88,217, 95, -139,197, 98,171,187,121,227,121, 94,108,179, 1, 37,174,188,175, 1,210, 69, 46,151,139, 75,127, 88, 84, 84, 36, 14, 14, 14,238, -228, 6,225,245,149,203, 75, 20, 76,225,225,225,200,203,203,227, 77, 38,211,208,205,155, 55, 91, 0, 32, 38, 38,102, 40,207,243, -197, 86,171,149,149, 72, 36, 40, 44, 44, 68, 64, 64,128,111,185,128, 12,166,254,176,109, 94, 80,105, 27,172,224,224, 96, 68, 71, - 71,195,104, 52, 34, 53, 53, 21,113,113,113, 22,158,231,191, 92,189,122,181,224,239,239, 63,234,217,103,159,101, 79,159, 62,253, - 26,128, 55, 43,226, 34, 15, 53,193,178, 49,198, 67, 0,186,218, 11,231,124, 68, 88,145,230,170,148, 6,139, 84, 50,208,114,147, -146,146,148, 74,165,210,241,153,197, 98, 65, 72, 72,136, 32, 8, 2, 41,253, 59,246,124, 84, 85, 68, 34,145,250,237,183,223,206, - 93,181,106,213, 75,112,209, 80,124,199,107,141,176,169, 20,185,250,116,209,220, 21,159, 44,158,231,115,109,239,231, 88,247,241, - 18,158,231,113,250,177,199, 30,235,164,215,235, 57, 47,165, 5, 89,185,216,139, 18, 63, 88, 46,145, 65,155, 47,173, 13, 39, 79, -158, 60,221,167, 79,159,163, 27,190,250,198, 39, 37, 33,225,184, 52, 63, 43, 85,211, 32,146, 19,215, 10, 31, 88, 80, 92, 44, 30, - 58,116,168, 63,128,103, 43,194, 98, 24, 6, 9, 9, 9, 72, 76, 76,132, 74,165,130, 90,173,134, 74,165,130, 70,163,129, 90,173, -134, 90,173,118,187, 14, 25,134, 1,207,243,248,250,235,175,161, 80, 40,160, 84, 42,239, 72,118,114,117, 47,109,211,187,119,111, -232,116, 58,168, 84, 42,199,177,166, 59, 98,183,193, 50,153, 76, 48,153, 76, 48,155,205, 60, 0, 17,199,113, 24,157,148,228,208, -234,184, 67, 92, 74, 75,243,230,205,233,241,227,199,113,244,232, 81, 20, 22, 22,226,147, 79, 62, 65,112,112,240, 19, 0,102,184, -177,227,172, 23, 20, 20,212,187,103,207,158, 33, 22,139, 5,122,189,158,249,251,239,191, 33,147,201,192,178, 44,146,146,146,176, -117,235, 86,220,184,113,195,174, 61, 12, 37,132,212,161,148,222,168,104, 81,224, 56,206,177,251,180, 39,103, 45, 22,203,178, 8, - 12, 12, 68, 80, 80, 16, 62,253,244, 83,113,157, 58,117,250,253,155, 19,205,226,197,139, 27, 44, 95,190,124,253,166, 77,155,246, - 14, 27, 54,108,251,185,115,231, 70,122,121,121,253,125,240,224,193,121, 82,169, 84,168,226,248, 14, 77, 73, 73, 9,112,254, 72, - 16, 4,133,213,106,117, 16,218,162,162, 34, 52,107,214,204,101,188, 11, 23, 46, 40, 0, 96,222,188,121, 34, 0, 10,187,251, 15, - 59,102, 81, 81,145,168, 73,147, 38,161, 46,146,129,203,132,144, 78, 61,122,244, 56,182,111,223, 62,239,240,240,112, 36, 39, 39, - 35, 57, 57, 25, 13, 26, 52,192,130, 5, 11, 10,243,243,243, 59,216, 72,213,247, 46, 22, 59,196,219,219, 91,116,235,214, 45, 88, -173, 86,180,108,217, 18,171, 86,173,194,208,161, 67,209,172, 89, 51,228,231,231,227,194,133, 11,216,184,113,163,183, 88, 44,126, -246,223, 94, 96,108, 71, 88,229,166,170,136,213,106,213,200,100,178,124,169, 84, 42,177,219, 95,197,197,197,185,173,189,114,222, -248,185,243,190, 38,144,213,210, 34,145, 72, 16, 20, 20,228, 50,142, 84, 42, 37,246,185,209,106,181, 34, 47, 47,143, 15, 14, 14, -118, 28,227,159, 57,115,134,143,136,136,224, 89,150,101, 37, 18, 9, 8, 33, 80, 40, 20,229, 78,248,148,167,115,159, 30, 58,195, -113,139,144, 17, 41, 53, 19,222, 46,217,236,159, 57,115, 6,102,179, 25,113,113,113,150, 15, 62,248, 32, 37, 55, 55,119, 2, 0, -238,231,159,127, 30, 62,101,202, 20, 54, 32, 32,160,135,211,124,121, 23, 23,121, 20, 52, 88,135, 40,165,196,102, 80, 78,236,196, -134, 82,122, 23,169, 42,143,112,217, 52, 88,164,178,193,198,178, 44,126,250,233, 39, 7, 17,176,223, 34,164,148,162,186, 9,150, -175,175,111, 97,219,182,109, 53,183,111,223,222, 90, 85,205,213,167,139,230,174,120,127,222,108,159,236,139,199,145,148,146, 10, - 93,134,229,244,145,191,111,124, 11,224, 91, 0,192,154,198,135, 48,230,226, 74, 87, 49, 27,251, 43, 90, 60, 22,162,254,246,201, - 62,253,194,158,139,125,147,121,245,213, 87, 59, 14, 31, 62, 60,111,216,176, 97,175,171, 84,170,134,102,179, 57,231,155,221,187, - 19,159,123,238,185, 58, 60,207, 15,175,204,103,136,197, 98,185, 57,104,208, 32, 71,221, 6, 5, 5,105,182,109,219, 22,168, 86, -171,241,226,139, 47,102, 38, 38, 38, 58,142,133, 10, 10, 10,110,186,146, 71,179,217,124,179, 69,139, 22,229, 30, 11,218, 53,144, -238, 96,218,218,210,113, 91, 48, 59, 59, 27,151, 46, 93, 2,199,113,104,215,174, 29,142, 28, 57,130,142, 29, 59,186,117,131,176, -184,184, 24,225,225,225, 40, 46, 46, 70, 97, 97, 97, 17, 0,233,230, 58,117, 0, 0,175,101,103,227,143, 15, 62,192,239, 11, 23, - 86,169, 31,181,104,209,130,158, 56,113, 2,127,255,253, 55,140, 70, 35, 94,126,249,101,216,142, 7, 1,160,167,139,229,109,214, -168, 81,163,253, 7, 15, 30,244, 87,171,213,208,235,245,208,235,245, 24, 53,106, 20,198,142, 29, 11,139,197,130,213,171, 87,227, -187,239,190,131, 70,163,129, 94,175, 71, 97, 97,161,119,223,190,125,143, 17, 66, 58,151,119,180, 77, 41, 37, 55,110,220,192,251, -239,191, 15, 65, 16, 48,101,202, 20, 68, 70, 70, 58,136,213,205,155, 55, 49,111,222, 60,240, 60,143, 89,179,102,161, 65,131, 6, -176, 88, 44, 50,119,252,140, 85,183, 76,156, 56,241,218,183,223,126,187,247,246,237,219, 79, 45, 90,180,168, 11, 33, 68,152, 60, -121,242,251, 26,141,134,191, 23,220,156,188, 2, 92,186,122,211, 65,128, 74, 39,127, 63, 31,183,241,174, 36,220,118,252, 63,207, - 59,227,241,240,245,241,118, 55,139, 69, 22,139,165,112,224,192,129,218,175,191,254,154, 52,104,208, 0,215,175, 95,183,111, 74, -139,170,224,154, 33, 89,167,211, 69,178, 44, 43,190,122,245, 42, 34, 34, 34,208,182,109, 91,204,159, 63, 31, 89, 89, 89,176, 90, -173, 8, 8, 8, 16, 44, 22,203, 25,147,201,244,219,191,189,192, 56,107,153,156,211,175,191,254, 58, 85, 38,147, 81, 0, 39, 0, -184, 69,176, 41,165,166,218,181,107,223,129, 93, 21,237,213,125, 36, 65,247,237,102, 98,112,112,112,156, 90,173,238,151,147,147, -115,135, 22,171, 67,135, 14,230,192,192,192,195,174,226,168, 84,170, 28,150,101,125, 1, 32, 57, 57, 25, 74,165, 82,156,144,144, -176,144, 16, 50, 13, 0,234,212,169,179, 80,167,211,137,235,216,230,211,160,160, 32,152, 76,166,114,205, 85,142,157, 73,251, 28, -192,231, 78,107,111,106, 94, 94,158,124,201,146, 37,250,133, 11, 23, 26,120,158, 55, 2, 56,152,155,155,235,240,131, 21, 17, 17, -145, 39, 18,137,124,180, 90,109, 45, 39,168,187,184,200,163, 64,176,238,186,173,231, 76,122, 92, 33, 89,174,104, 33, 8, 33, 48, - 24, 12,119,104, 67,236,183, 8,203, 34, 88,182,133,188, 74, 71,132, 54,114, 37,223,182,109,219,151, 31,127,252,241, 81, 87,255, -207,217, 6,107,205,210,247, 22,217,201,213,217, 35,251,240,125,124, 94,214,148,133,203,150, 87,181,178,155,248, 43,155, 7, 5, -250, 29,250, 96,225,123,154,107,123, 63,199,246, 53, 31,210,179,167, 78,181, 57,117,234,212, 75,227,199,143,175,109,235, 80, 58, - 0,127, 1,120,206,149, 91, 55,153,153,153,119,216, 63, 69, 70, 70, 94,214,106,181,129, 50,153, 12, 9, 9, 9,250,243,231,207, -187,125,244, 82, 26,179, 58,164, 52,185, 58,127,254, 60,186,117,235, 6, 0, 56,114,228, 8, 58,116,232,224, 22,201,178, 88, 44, -185,141, 27, 55,118,104,179,242,242,242, 4, 0,136, 77, 77,197,218,224, 96,112, 28,135,223, 23, 46,196,187, 22, 11,230,139,220, - 51,205,105,217,178, 37, 61,117,234, 20, 18, 19, 19, 97,181, 90,209,191,127,127,103,114,229,178, 4, 5, 5,189,117,240,224, 65, -255,181,107,215, 26,183,108,217, 98, 20, 4,129,105,217,178,165, 58, 58, 58, 26,203,151,151,116,163,231,158,123, 14, 83,166, 76, -193,249,243,231,161, 80, 40,208,169, 83, 39,126,246,236,217, 1, 19, 38, 76,120, 13, 37,215,240,203, 90, 96,104,175, 94,189,112, -248,240, 97,176, 44,139, 54,109,218, 32, 59,219,113,185, 7,129,129,129,101, 61, 99,109,227,253, 95, 89,136, 56,142,163,113,113, -113,139,186,116,233,130,219,183,111, 63, 21, 19, 19,243,201,200,145, 35,147,239, 21,215,219, 75,141, 22, 77,234,193,104, 52,194, -104, 52, 34, 36, 36, 4, 5, 5, 5,184,118,237, 26,140, 70, 35, 2, 3,180,110,227, 69, 55,107,224,192, 11, 8, 8, 64, 97, 97, - 33,110,220,184, 1,147,201, 4, 63, 63,111,119,250,124, 88,175, 94,189,126,253,242,203, 47,125, 55,110,220,104,234,218,181,171, -228,147, 79, 62, 33, 26,141, 6, 25, 25, 25, 85, 45,114,220,145, 35, 71,194,123,244,232, 17,117,241,226, 69,196,197,197,193,100, - 50, 33, 58, 58, 26, 87,174, 92, 65,251,246,237,161,215,235, 79,156, 58,117,234,135,154,176,192,216,143,239,236,233,240,225,195, -239,106, 52, 26, 11,128,101,247,210, 23,111,221,186, 37,109,222,188,185, 81, 38,147, 73,108,100,237,195,127,171,111,151,209,238, -247,116, 51,177,146, 57,101,130,159,159, 95,143,186,117,235, 34, 61, 61, 93, 44,145, 72,208,161, 67, 7,115,235,214,173,205, 65, - 65, 65,175,185,209, 46, 23,197, 98,113,231,146, 77, 4,143, 91,183,110,129, 82, 58,165, 89,179,102,111, 20, 20, 20, 32, 59, 59, - 91,162,209,104, 28,155,233,168,168, 40, 24,141,198,139,110,144,204,185, 17, 17, 17,211,197, 98,241,252,204,204,204,213,101,212, -145,164, 69,139, 22, 26,177, 88, 12,179,217,108, 44,245,172, 70,217,189, 85, 11,193,114, 98,141,165,213,230,149, 30, 15,186,106, -131, 69, 8,129,201,100,130, 82,169,116, 28, 61, 57,123,110, 47,139, 96, 85, 69,194,194,194,208,182,109, 91,249,246,237,219,183, - 44, 89,178,228, 88, 85, 48,118,126,249, 69,176,151, 80, 20,150,114, 98, 15, 46,157,253, 3,223, 94,200,205,154,178,112,217,235, - 79, 63,251,124,122,105, 66,182, 99, 76,229,120, 13, 3,148,205,106, 5,250, 30,250,240,131,247, 53,217, 23,143, 35, 53, 45, 13, -123, 78,156, 58,109,162,244, 2,128, 41,213,213,160,206,183,209,106, 74, 71,117,118,211,144,149,149,133, 11, 23, 46,216,201, 85, - 52, 0,116,236,216,241,140,157,100,157, 62,125, 26, 49, 49, 49,119,185,105,184, 75,211,144,147,179,160,212,111,244, 0,224,103, - 39,250, 28,199,161,195,244,233,110,147, 43, 66, 8,229,121, 30, 58,157,206,190, 51,172, 18,185,178, 97,117, 40, 42, 42,194,150, - 45, 91,178,174, 94,189, 26, 86,183,110,221, 9,159,127,254,249, 50,133, 66,113,167,138,163,168, 8, 61,122,244,192,184,113,227, - 48,115,230, 76, 97,228,200,145, 44,195, 48,229, 70,176,231,121, 94, 92,167, 78,157, 3, 0,158,184,120,241, 34, 0, 28,163,148, -118,176, 63,175,232,153, 11, 34, 20, 20, 20,136,212,106,117,153, 46, 30,196, 37,215, 52,221, 61,210,115, 96, 30, 61,122,244,253, -165, 75,151,126, 59,105,210,164,171,247,136, 89,166, 6,171, 95,191,126, 40, 54, 90,144,148,158, 7,158,183,194, 96,206,112, 27, -207, 89,131,213,175, 95, 63, 24,138, 77,184,149,170,131,213,202,163,192, 96,117,181,237, 21, 79, 62,249,228,207,219,182,109, 11, - 58,126,252, 56,120,158, 23,174, 92,185,114, 99,224,192,129,154,201,147, 39,251, 58,217,152,186, 43, 31, 63,255,252,243,131,143, - 30, 61,170,139,138,138,242, 57,113,226, 4, 50, 50, 50, 96,181, 90,241,196, 19, 79, 64, 34,145,220, 90,184,112,161, 24,192,199, - 53,133, 96, 73,165, 82,252,241,199, 31,213, 66,172,156, 69, 34,145, 84,249,152,241, 97,149, 19, 39, 78, 36,143, 31, 63,190,137, - 70,163, 89,222,169, 83,167,110,190,190,190,140,183,183,119, 92,173, 90,181,222,104,222,188,185,203,167, 9, 34,145,104,164, 82, -169,188,102,181, 90, 89,155,230, 28, 0, 96,181, 90, 37, 12,195,160, 78,157, 58, 14,165, 73,155, 54,109, 16, 20, 20,196,199,199, -199,143,116, 21, 63, 35, 35,227,142, 91,133,101,200,152, 14, 29, 58,112, 70,163, 17,137,137,137, 71, 74,107,232, 31, 21,146, 85, -174,129, 10,195, 48,160,148, 66,214,170, 21, 82,247,237,195,215, 95,127, 93, 33,208,154, 53,107, 80, 90,165, 71, 8,233,225,236, - 43,195,126, 91,240,149, 87, 94,113,124,231,244,233,211, 14, 99,247,254,253,251,223,129,121,242,228,201,187, 72, 86,105,204,114, - 26,247,226,142, 29, 59, 78, 45, 94,188,248,132,139,147,161, 3,211,110,131, 53,248,133, 23, 83, 87,188, 63,243,220,198, 31, 14, - 52, 75, 53,208,212, 41, 11,151, 77, 42, 77,174, 92,197,108, 28,164,106, 28, 26,224, 27,183,244,131,247,189,236,218,176,109,103, -210,242, 96,165, 99,220,105, 44, 87,202,238,172, 73, 36,132, 8,213,129, 89, 5, 98,113, 7,166,179,155,134,212,212, 84, 7,185, -114,114, 52, 26,221,177, 99,199, 51, 54,114,101,127,102,173, 74, 62, 57,142,195, 36,189, 30, 28,199,161,235,156, 57,120,226,189, -247,220, 46, 59,207,243,224, 56, 14,145,145,145,110,147, 43,103, 76, 74,233,209,115,231,206, 69,140, 24, 49, 66, 29, 25, 25,153, - 64, 8, 17,141, 26, 53, 74, 8, 14, 14,102,126,255,253,119, 80, 74,209,177, 99, 71,164,167,167, 67, 16, 4,108,222,188, 25, 35, - 70,140, 32,127,253,245, 23, 21, 4, 97,127, 69,249, 76, 76, 76, 28,211,189,123,247, 53,197,197,197, 92,118,118,246, 24, 87,159, - 85, 86,246, 29, 59,118, 92,141,140,140,236,130,242, 93, 49, 8, 0,142,223, 11,166, 77,123, 23,117, 47,152,229,105,176,190,250, -234, 43, 8,130,128,176, 32, 45,140, 70, 35, 74,147,217,202, 48, 75,107,176,182,111,223, 14, 65, 16, 80, 59,216, 7, 38,147, 9, -118,195,224,202, 48,125,125,125, 63,220,180,105, 83,104,124,124, 60,146,146,146,176,108,217,178,155,185,185,185,125,114,115,115, -165,179,103,207, 62,244,194, 11, 47, 4, 10,130, 96,116,119,108, 82, 74,141,132,144,145,143, 63,254,248,230,121,243,230, 93,111, -212,168, 81,237, 14, 29, 58,104,179,179,179, 51,255,252,243,207, 27,107,214,172, 81, 89,173,214,145,229, 29, 61, 61,136,241,238, - 44,201,201,201,115,108,235,140, 91,196,202,149,124,158, 60,121,242,109, 27,246, 73, 87,176, 31, 84,217,239,245,102, 98,101,249, - 92,185,114,101, 18, 74,249, 55,115, 55,159, 39, 79,158, 76,236,209,163,199,123,129,129,129,179,101, 50, 25, 50, 51, 75,130, 19, -216, 53,141,246,245,186, 85,171, 86,232,213,171, 23, 46, 95,190,252,222,244,233,211, 19,239,165, 62,109, 27,237,122, 0, 94,234, -222,189,251,228,193,131, 7, 99,229,202,149,160,148,174,127, 84, 9,177,221, 77, 3,113,254, 11, 0, 22,139,229,246,181,107,215, -130, 27,228,228,176, 33,132,160, 77,155, 54,112,142, 33,104,183,203,177, 27,202,253,246,219,111, 86, 65, 16, 42,244, 57,197,243, -252,237,163, 71,143, 6,238,219,183, 79,100,111, 72,155,177,166,144,146,146,194, 28, 58,116,200,161, 13,227, 56, 14,113,113,113, - 86,179,217,124,203,221, 66, 93,190,124,185, 90,118,111,191,157, 79,124,227,231, 61,223,249,181,107,219, 41, 87,227,227, 83,230, - 0,182,123,124,175,176, 99,113,204,252,197, 11,223,211,218,201,213, 87,103,210,114,139,141,124,183,139,153, 69,103,171,187, 65, - 11, 10, 10, 18,237,183, 5,245,122,253,173,154,210,209,236, 55, 8,131,131,131,207,160,212,109, 65,251,179,152,152,152,187,158, -185,165, 38, 17, 4,120,121,121, 57, 38, 7,119,237,174, 8, 33,212,126,100, 93,122, 60, 84, 69,210,210,210,150, 76,159, 62,189, -231,130, 5, 11,252,247,238,221,171,177, 97, 98,208,160, 65, 25,231,206,157,235, 4, 64, 90, 88, 88,184,127,193,130, 5,254, 78, -241, 8,185,190,125,251,166,167,167,167,175,168,164, 62,175, 3,232,238,238,179,202,100,240,224,193, 9, 40,195,225,231,189,200, -253,192,180,139, 46, 55, 31, 9,137,201,182, 88,148, 2,248,155,233, 14,187, 41,139,197, 10, 93,126,182,219, 26,172,107, 55,146, -109,161,193,120,240,124,138, 13,175,196,208,157,230, 20,185,162, 29,232,184,124,249,242, 62, 12,195, 48,191,255,254,187,113,241, -226,197,183, 51, 51, 51,251, 83, 74,111,217,250, 89,215,141, 27, 55,110,113,193, 37, 67,121,109,127,129, 16,210,126,234,212,169, -175, 3,232, 8,160, 54,128, 91, 0,142, 0,248,184,134,121, 28, 95,246,144, 98, 87, 89, 30,150,155,137,251,247,239,159, 51, 96, -192, 0, 46, 60, 60,252,157,240,240,112, 38, 39, 39, 7,122,189, 30, 12,195, 32, 40, 40, 8, 77,155, 54, 69, 80, 80,144,112,241, -226,197, 5, 83,167, 78,173,212,167, 94,147, 38, 77,234, 89, 44,150,250, 12,195,212, 3, 80,143, 82, 90,143, 16, 82, 15,128,143, - 77, 19,166,137,136,136,224,218,181,107,135,182,109,219,226,208,161, 67,216,185,115,231,231,148,210,159,157,181, 87,213, 49,247, -214,120, 13, 86, 78, 78, 78,175, 62,125,250,236, 99, 89,182, 78, 89, 11, 86, 25, 65,153, 19,211,211,211,159,170,112,242,202,201, -233,245,198, 27,111,236, 99, 89,182,142, 93, 51,101,181, 90,141, 58,157,238,213,174, 93,187,174, 18,137, 68, 82,103, 92, 65, 16, -110,166,167,167, 63,208, 88,122,165,253, 96,245,234, 51, 32,235, 94, 49, 85, 98,166,254,165, 31,215, 34, 61, 35, 11, 95,157, 73, -203, 41, 48,241, 93, 47,103, 22,158,187, 31,249, 79, 76, 76,236, 93, 83, 59,155,141, 72,149,121,244, 87,209, 51, 23, 37,211, 5, - 71,162,153,149,228,143,216, 72, 22,169,166,242,158, 35,132, 60, 62,126,252,248, 25, 10,133,162, 13, 0, 20, 21, 21,253,158,146, -146,242,158,253,150, 96,101,207, 61, 82,190, 88, 44,150,164,166,141,163,236,117,125,135,107, 6,231,215, 86,171, 53,201, 29,188, -178,112,156,223,243, 60,159, 84,137, 22,121, 82,219,182,109,217, 73,147, 38,165,239,221,187,215, 30,224,182,200,169, 95, 92, 70, - 5,206, 68, 93,236, 91, 70, 0,139,109,201, 35, 53,112,174,115,231,253,191, 37,223,125,247,221,140,161, 67,135,110,244,241,241, -249,162, 94,189,122, 81,129,129,129, 26,185, 92, 14,163,209, 88, 96, 50,153, 46, 93,190,124,121,216,244,233,211,175,187,130,181, -113,227, 70, 22,128, 88, 16, 4, 25,195, 48, 74, 0, 26, 66,136,183,157, 96, 17, 66, 96, 54,155,145,152,152,136,119,223,125,151, - 63,112,224,192, 7, 0,102,185,145,221,214, 0,252,157,230,113,127, 0, 38,148, 56,158,205, 4,112,234,161, 33, 88, 54,111,213, -237,171,185,211, 85,132, 25, 94, 83, 42,101,184,113,241, 86,172, 89,124, 71, 28, 66, 59,249, 42,243,125, 37, 7,125,121, 6,235, -248,143,127, 62,191,196,104,165,130,217, 42,140,186,156, 81,120,225, 63, 60,241, 88,171,242,204, 5,220, 39,171, 41,127,164,154, -203,155, 0, 96,120, 85,159,123,164, 2,182,156,153,217,170, 38,226,153, 76,166, 55, 30,127,252,241,143,120,158, 95,106,177, 88, -142,120, 90,202, 35, 53, 89,190,250,234,171,235,246,117,121,200,144, 33, 44, 0,236,216,177,195,237,219,189, 35, 70,140,224,109, - 1,198,139, 1, 20, 2,200, 71,137,163,108, 2, 0,133,133,133, 57, 41, 41, 41, 23,121,158,191, 8, 96, 75, 21,110,208,250, 19, - 66,126,164,148,246,179, 17,182, 31, 41,165,253,156, 63,123,104, 8,214,127, 85,118,156,255,103,129, 45, 77,156, 42,123, 95,158, - 92, 74,211,199,221,235,142,213, 35, 30,241,200, 67,179,137,184, 5,160,191,167, 38, 60,242,208,173,127, 85, 32, 86,118,185,112, -225,194,125, 51, 5,120, 88,133,241, 84,129, 71, 60,226, 17,143,120,196, 35, 30,241, 72,245, 10, 1,208,163,156, 93,152, 59,183, - 3,122, 84, 97,151,183,223,131,233,193,244, 96,122, 48, 61,152, 30, 76, 15,230,127, 11,179,138,210,183,146, 35,194,221, 53,142, - 97, 57, 27,113, 86,119, 2,208,195,131,233,193,244, 96,122, 48, 61,152, 30, 76, 15,166, 7,243, 30, 83,183,105,211,166,189,141, -146,248,196,116,218,180,105,111, 83, 74,251,150,208, 24,218,247, 1,231,197,165,228,177,193,242,136, 71, 60,226, 17,143,120,196, - 35, 53, 93,142, 45, 92,184,176,104,225,194,133,118,131,246, 76, 0,196,166,189,202,172,137, 25,254,215, 8, 22, 33, 36,132,225, -196, 47,138,196,210,110,160, 66, 83, 0, 0,195,158,231, 77,197,191, 90,173,230, 47, 40,165, 41, 46, 96,148,121,227, 43, 10,104, - 28,169,149,127,111,228,121,241,173, 2,211,144, 75, 37,142,232,202,210,222, 85,232,240,109, 8, 33, 29,100, 18,201, 47, 18,173, -182, 76,239,130,166,220, 92, 67,177,201,212,115, 7,165, 71, 61,125,223, 35, 30,241,136, 71, 60,242, 48, 8, 33, 68,233,237,237, -125,128, 97,152,112,167,207, 80,214,107, 0,224,121, 62, 85,167,211,245,164,148,102, 61, 72,204,210, 75, 46,202, 89,203,107,170, -112,182,130,219,137, 70,165, 17,172, 27, 5,171, 58, 69,213, 11,255, 50, 37, 45,253, 76,126,177,105,244,165,228, 2,157,219, 63, - 42,150,189,162,245, 11,154,255,191,145,111,248, 70, 54,140, 34, 97, 97,181, 0, 10,220,186,157, 20,120,237,234,149,238,219, 55, -125, 60, 81, 44,147,189,107, 46, 46,254,204, 93,236, 72, 64, 25,161,146, 30,254,108,218, 11, 90, 14, 86, 60, 63,239,203,189,130, -222, 92,251, 74,201,181, 81,151,101, 8, 33, 29,188,125,124,126, 94,188,111,159, 92,221,178,101,105, 98, 6, 65, 16,160, 63,115, - 70, 62,173,119,239,159,135, 16,210,203, 67,178, 30,201, 73, 40, 72,163,209, 76, 16,137, 68, 93,205,102,115,184, 68, 34,185,205, -243,124, 92, 78, 78,206,114, 74,105,178,167,134, 60,226,145, 74,199, 80,185, 1,198,255,205,224,227, 0,160, 86,171,255, 96, 24, - 38,212,121,241,183,251,103, 44,237,231,209,201,223,227,245,236,236,236,199, 43, 40,111, 61, 31, 31,159, 85, 0, 90, 87,230,232, -216,182,191, 63,165,211,233, 94,181,185,107, 41, 11, 79,237,237,237, 61,135, 16, 50,132, 97,152, 74, 3,254, 10,130,192, 83, 74, -119,228,228,228,204,162,148, 22,148,247, 61,111,111,239,253,241,241,241,173, 3, 2, 2, 42,117, 75, 99,181, 90,113,235,214, 45, -255, 54,109,218,252, 6,160,209,253,196,116,135,139, 60, 52, 4,203,214,216, 46, 69,176, 22, 4,188,184, 97,254,171,181, 82,111, - 94,173, 53,102,193,214,134,141,252, 20, 93,227,179,138,210, 92,253, 65,137, 92,253, 67,199, 39,250,117, 27,247,250, 36,229,159, -231, 46,225,151, 67,199,145, 95,104, 4,203, 48,208,170, 21,104,216,176, 62, 89,182,246,107,191,207, 63, 93,182, 84,174,210,246, - 53,232,115,159,113,167, 64, 94, 10,238,157, 41, 3,219, 40,125,125,120, 64,224,241, 86,159, 22,202,119,126, 60,243, 14,138,172, -239,184, 77,174,246,239, 87,100,164,167,227, 3, 95, 95,112, 22, 11,100,132, 64, 78, 8,100, 0, 84, 82, 41, 58,125,249, 37,230, -239,222,173,120,183,111, 95, 15,201,122,196, 68,173, 86,143,108,216,176,225,226,117,235,214,249,214,173, 91, 23, 74,165, 18, 58, -157,206,239,242,229,203, 45,223,124,243,205,225, 94, 94, 94,211,243,242,242,214,120,106,202, 35, 30, 41,151,108,180, 4, 80,102, -240,246,138,158, 61, 40, 97, 24, 38, 52, 57, 57, 57, 64,161, 80,128,231,121,155,247,126,193,177,129,118, 62,224,176, 57,152, 69, -163, 70,141,204,149,204, 27, 43, 51, 50, 50,122, 56,135, 44,171,232,160, 36, 57, 57,185, 71,147, 38, 77, 86, 2,232, 89, 14,105, -153,243,250,235,175, 79,104,214,172,153, 93,235, 99,139, 90, 80,242, 55, 43, 43, 11,227,199,143,119,252,134, 32, 8,216,183,111, -223,235, 35, 71,142, 4,128, 55, 43, 40,123,120, 64, 64, 0, 25, 51,166, 98, 95, 67,179,103,207,198,236,217,179,241,241,199, 31, - 19,145, 72,164,173,164, 62,171, 5,211, 85, 46,242, 80, 17, 44,151, 59, 37, 21,246,204, 91,190,110,244,220, 17, 29,201,134, 55, -123, 68,142,253,120,255,241, 38, 33,242,206, 23, 82, 12,183, 93,208, 92,141,106,215,249,169,174,227, 39, 76, 81,110,253,238, 32, - 46, 95, 60,139,248, 35,219,238,248, 78,171,158, 35,145,150, 85,128,145,227,222, 82, 17,150,235, 42,150, 41, 70,153,139,139, 54, -184,146,183, 40, 32, 48, 92, 42,249,191,246,109,155,138, 80, 59, 9,160, 64,199,152, 6,162,176,159,255,254,191, 2, 88, 63,190, - 4, 84, 26, 75,176, 52,185,218,250,236,179,232,109, 48, 32, 16, 37, 62, 45,236,169, 8,192,165, 1, 3,208,232,219,111, 49,231, -251,239, 21,179,250,247,119,155,100, 41, 20,138,207, 13, 6,195,162, 42, 56, 92,251, 55, 39,205,134,106,181,250,221,252,252,252, - 23,107, 80,158,130, 1,100,150, 17,191, 80, 12, 64, 75, 41,117, 43,226,175, 76, 38,123,229,249,231,159, 95,182, 98,197, 10, 69, -122,122, 58, 82, 82, 82,192,243, 60,100, 50, 25, 34, 35, 35,201,254,253,251,125,167, 76,153,178, 68,163,209, 72,243,243,243, 63, -114, 35,159,140, 72, 36, 26,225,227,227, 51, 32, 48, 48, 48, 32, 51, 51, 51, 51, 39, 39,103,151,209,104,220, 80,213,157,188, 13, -115, 88, 68, 68,196,128,144,144,144,192,228,228,228,172,164,164,164, 31,140, 70,227,231,148, 82,225, 30,235,180, 57, 0, 95,219, - 71,169, 17, 17, 17,231,111,220,184,145, 81,141,152, 41, 17, 17, 17, 23,220,197, 36,132, 40, 1,108, 7, 16, 82,201, 87, 83, 0, - 60,103,115,112,236,145,127,129, 92,217, 66, 79,221, 65,164, 42,122,246,160, 69, 46,151, 99,219,182,109, 16,137, 68, 16,137, 68, -200,201,201, 65,104,104,168,227,189, 88, 44,118,188,174, 93,187,118,165,120, 60,207,183, 97, 89, 22,122,189, 30, 60,207, 59, 82, -110,110, 46, 40,165,144, 74,165,224,249,146,176, 75, 78,207,219, 84, 80,143, 67, 66, 66, 66,176,117,235, 86,152, 76,166,187,158, -107, 52, 26,156, 59,247, 79, 80, 16,150,101,209,182,109, 91,134, 16, 50,164, 34,130,101,215, 20,197,198,198,130,101, 89, 71,232, - 59,251,107,123,226,121, 30,179,103,207,134,115, 8,177, 7,137,249,208,143, 3, 91, 33,105, 89, 97, 66, 26, 5,169, 94,237,213, -173,221, 7,114,169, 88, 46, 88, 45,224,173,102,240, 22, 19, 56,194,163,103,243, 96,180,175,171, 64,166, 46, 31, 99,214,156,204, - 79, 78, 54,182, 61,151, 93,112,185,130,202, 15, 81,107, 3,254,250,116,243,119,126,191, 28,143,199,249,179,103,112,102,239,170, - 50,191,219,227,249,105,104,210,188, 53, 30,107, 16,132,201, 99, 7,103,101,103,164,180, 40,203, 38,171,180, 13,214,227,106,241, -230, 21,195,186, 61,223,188,165,150, 65, 23,219,122,181,223,138,211,199,211,248, 55,126,248,115,235,241, 2,243,240, 82, 76,249, -174,173,197,112,169,180,232,147,227,199,229, 25, 25, 25,216,250,236,179,136, 49, 24,144, 37, 18,161,177,197,226, 32, 89,185, 0, -178, 57, 14, 65, 86, 43,138, 53, 26, 4,125,253, 53,120,134,193,180,222,189, 13,155, 77, 38,133,171,149,175, 82,169, 50, 89,150, -229,243,243,243,187, 62, 12, 36,203, 70,174, 14, 17, 66,196,121,121,121, 62, 53, 32, 63, 12,128,185,163, 71,143, 30,117,248,240, -225,107,215,174, 93,235, 97,243, 36, 12, 66, 8, 87,191,126,253,131,157, 58,117,170,183,126,253,250,207, 0,204,117,133,112, 16, - 66,106,213,173, 91,247,207,243,231,207,251, 93,185,114, 5,122,189, 30, 34,145, 8,195,134, 13,195,215, 95,127, 13,177, 88, 12, -169, 84, 10,177, 88,140,206,157, 59,103,221,184,113,163, 53,165,244,166, 11,184,172,151,151,215,231,171, 86,173,106,208,191,127, -127,206,104, 52,130,231,121,236,216,177,195, 50,107,214,172,196,236,236,236,151,220, 37, 89,132, 16, 38, 56, 56,120,195,103,159, -125,214,240,137, 39,158,224, 12, 6, 3, 4, 65,192,238,221,187, 45,239,188,243,206,245,212,212,212,225,148, 82,190, 10,245,218, - 82,161, 80, 52,121,245,213, 87, 51,251,247,239,111, 6,128, 83,167, 78, 49,103,207,158,213,212,173, 91,247,230,140, 25, 51,206, - 84, 1, 51, 70,173, 86, 71,141, 25, 51, 38,171, 95,191,126, 22,177, 88, 44, 28, 61,122,148,187,124,249,178, 38, 34, 34, 34,225, -157,119,222, 57,235, 6,214,158, 99,199,142,117, 9, 13, 13, 21,108,147, 58,181, 79,240, 12,195, 80,219, 95, 92,186,116,137,235, -210,165,203, 33, 74,233, 51,240,200,131, 28,151, 28, 0, 11,165, 20, 58,157, 14, 39, 78,156, 64,223,190,125, 1, 32,218,246,149, - 51,148, 82,228,231,231,195, 96, 48, 32, 56, 56, 24, 0, 68, 15,250,184, 80,171,213,166,103,102,102, 6,124,255,253,247, 16,137, - 68,216,183,111, 31, 86,175, 94,141,109,219,182,149, 73,178,130,131,131, 17, 25, 25,153,148,146,146, 18, 86,193,156,158,167,215, -235, 53,121,121,121,224,121, 30, 39, 78,156,192,186,117,235, 16, 16, 16, 0, 63, 63, 63,248,251,251,163, 77,155, 54, 80, 42,149, - 14,146,213,169, 83,167,124,189, 94,239, 85, 22,158,175,175,111,202,164, 73,147,130, 79,159, 62, 13,139,197, 82, 38,193,154, 48, - 97,130,179, 22, 9, 10,133, 2,237,219,183, 79,205,206,206, 46,119, 3,226,239,239,159,154,153,153, 25,116,246,236,217, 59,200, - 79, 89,132,136,101, 89,168,213,106,212,169, 83, 39, 61, 53, 53, 53,232,126, 98,150,199, 69, 30,122, 13,150,109,162,234,122,135, - 70, 40, 34,232,221,197, 19,134,200,193,155, 65, 45, 6,192, 92, 4,152,245, 16, 76, 69, 32, 98, 57, 96, 49,192, 95,170,195,246, -113, 81,154,169, 91, 19, 46, 54,246,215,244,189,152,153,255, 83,153,154, 47, 78, 60,108,200,136,215,125,147, 50,242,145,156,158, - 7,150,249,199,199,105,116,143, 17,224, 88, 6, 39,127, 46, 81, 84, 49, 44,139,188, 66, 35,114,245,102, 12, 30, 49,193,231,179, -101, 51,135, 1, 88, 84, 81, 65,154, 2,145, 77, 85,170,129,205,154,134, 51,104,144, 10, 82,111, 87, 9,137, 58,252, 52, 90,230, - 4,176,141,126,145, 12,212, 23,152, 23,156, 7,174, 84,132, 35,209,106,229,234,150, 45,177,216,215, 23,125, 12, 6, 92,227, 56, - 60,175,211,225,183, 9, 19,192,109,216, 0, 14,128,113,212, 40,116, 88,190, 28,231,124,124, 16,146,159, 15,243,168, 81,144,156, - 62, 13,177,151,151,220,157,202, 23,139,197,230,117,235,214,133,188,252,242,203,135, 8, 33, 53,154,100, 17, 66, 26,250,248,248, - 28,122,255,253,247, 3,103,204,152,145, 90, 77,152,129, 74,165,114, 71, 97, 97,225, 4,119,119,176, 54,114, 53,111,205,154, 53, - 99, 99, 99, 99,181, 47,191,252, 50,189,118,237,154, 22,128, 93, 27,226,223,169, 83,167,250,235,214,173, 11,106,221,186,245,235, - 99,198,140, 17, 19, 66,166, 87, 70,178, 84, 42,213,184,117,235,214,249,101,101,101, 57,200,149, 72, 36, 66, 82, 82, 18,228,114, -185, 35,216,185, 72, 36,194,251,239,191,239, 59,110,220,184, 9, 0, 38, 84,150, 95,169, 84, 58, 98,213,170, 85, 13,122,245,234, -197, 37, 38, 38,130, 97, 24, 72,165, 82,188,240,194, 11,162,162,162,162,240,185,115,231,198, 2, 88,229, 78, 29,136, 68,162, 97, -107,215,174,109,216,161, 67, 7, 46, 62, 62, 30,237,219,183,199,201,147, 39,241,236,179,207,138, 10, 10, 10,234, 76,153, 50,101, - 52,128,181,238,106,153, 20, 10, 69,179, 95,127,253,245,118, 88, 88,152, 99, 3, 82,167, 78, 29,190,111,223,190,186,248,248,248, -168,227,199,143,103,183,111,223,254,150, 27,152,181, 20, 10, 69,163, 61,123,246,164,206,157, 59,183,251,154, 53,107,250, 3, 64, -155, 54,109,126,120,239,189,247, 14,234,116,186,166,135, 15, 31,214,117,234,212, 41,201, 69,200,144,224,224, 96,126,252,248,241, -170,138,190,180,126,253,250, 92, 0,181, 9, 33,117,109, 1,176, 61,242, 0,132, 82,106, 37,132, 68, 19, 66,206,236,222,189, 27, -109,219,182,197,238,221,187,209,183,111,223, 51,182,231,200,203,203,195,185,115,231,208,185,115,103,160, 36,192,251,191, 98,139, -197,243, 60, 56,142, 67, 82, 82, 18,214,175, 95,143, 5, 11, 22, 32, 50, 50, 18, 22,139,197, 49,246, 57,142,131, 72, 36,178,107, - 91, 92, 90,244,173, 86, 43, 78,157, 58,133, 47, 54,111,198,244,119,223,133, 90,173, 6, 0,152,205,102,232,114,114, 32,147,201, - 28, 26,172, 74,234,114,199,213,171, 87, 39,132,134,134,222,113, 52,104,255,107,155,179, 32, 8, 2,172, 86, 43,138,139,139,177, -108,217, 50, 43,165,116, 71, 37, 99,210,161,241,154, 48, 97, 2,140,198,127,226,131, 55,111,222, 28, 0, 16, 17, 17,129, 22, 45, - 90, 56,222, 51, 12, 67, 93,197,252,236,241,102, 48, 56,125, 59,106,246, 18, 0, 64,104,104, 40,162,162,162,236,164,186, 76,204, -178,184,200, 67, 77,176,202, 99,138, 23,111,164, 45,122,121,202,146, 37, 74, 25, 43,122, 99,192, 99,168,173, 21, 3,114, 31,136, - 59, 79, 5,209,134,151,116, 0,221,117,224,151,169, 88, 58, 80,199,196,110, 41,254,174,190,143,143,255, 53,157,238, 46,227, 58, -145, 88,214,173, 94,131,134,228, 86,170, 14, 28,199, 65,233,229,135,199, 7,188, 9,150,101,160,210,250,129,240,134,127,212,156, - 12, 11,142,229,160, 43, 48, 32,162,110, 3, 70, 42,147,119,171,140, 96,121,121,137, 86, 78, 30,250,184,140,145,101, 1, 33, 18, -167,169, 88, 2,198,183, 0,147,122, 71,202, 99,127,248,123, 37,242, 44,221, 93,170, 24,187,198,202,106,197,111, 19, 38,160,251, -218,181,248, 29,128, 8, 64,204,218,181,184, 20, 27,139, 0,139, 5, 82, 0,172,209, 8,107,169, 51,123, 23, 23, 30, 12, 24, 48, - 0, 89, 89, 89,129,239,190,251,110,149, 73,150, 92, 46,255,130, 16,210, 71, 36, 18,153, 9, 33, 96, 24,198, 17,156,219,254,218, -108, 54,139, 89,150,221,147,149,149,229,246,209, 30, 33,164,161,183,183,247,161, 99,199,142, 5, 42,149, 74,204,158, 61,187, 90, -200,149, 90,173,254,125,244,232,209,181,191,248,226,139,159, 8, 33,189, 93, 37, 89,165,201,213,218,181,107,115,215,175, 95,255, -153,243, 81, 32,165, 52,149, 16,178,161,117,235,214,175,198,198,198,106, 1,140, 29, 51,102, 12, 42, 35, 89, 82,169,180,107,189, -122,245,160,211,233, 28, 19,172, 84, 42, 5, 0, 40,149, 74,120,121,121, 65, 44, 22,195,104, 52, 34, 58, 58,154, 72, 36,146,142, -174,228, 89,173, 86,247, 25, 56,112, 32,119,244,232, 81,164,165,165,193,203,203, 11, 74,165, 18, 60,207,227,149, 87, 94, 17, 47, - 95,190,252, 41,119, 9, 86, 88, 88, 88,255,238,221,187,115,231,207,159,199,141, 27, 55, 96, 52, 26,113,249,242,101,104, 52, 26, -188,244,210, 75,226,197,139, 23, 63,237, 46,193, 2,208, 44, 54, 54, 54,221,153, 92,217, 69,169, 84,146,134, 13, 27,234,124,125, -125, 99, 0,220,114, 7,243,181,215, 94,203, 88,184,112, 97,231,253,251,247, 79,181,127,184,127,255,254, 41, 0,240,209, 71, 31, - 29,246,247,247,143, 1,224, 42,193, 2,165, 84,248,223,255,254,119, 83, 34,145, 64, 36, 18, 65, 34,145,220,145,196, 98, 49, 24, -134, 81,219,167,148, 71, 88, 91,212, 26,192,135, 40,185, 97,245, 46,165,244, 68, 13, 33, 89,127, 18, 66,162,251,246,237,235, 32, - 89,123,247,238, 69,239,222,189,145,155,155,139,243,231,207, 59,147,171,127,203, 6, 11,130, 32, 64, 36, 18, 97,201,146, 37, 48, -155,205,216,178,101, 11,118,238,220,121,199, 28,170,209,104,240,241,199, 31,187,117,156,197,243, 60, 54,110,220,136,169, 83,166, - 56,200,149,109, 83,141,160,192, 64,248,250,249, 33, 33, 33,161, 82,130,149,147,147, 51,107,215,174, 93,168,200,200,125,215,174, - 93,142,215,206, 70,238,174,228,147,101, 89, 24,141, 70, 60,249,228, 63,161, 92, 95,123,237, 53,199,107,157, 78, 7,150,101,237, -117, 65, 92,197, 52, 80, 96,128,236,159,207,250, 76,154,228,120,157,149,149, 85, 46,230,163,160,181, 42, 83,131, 85,150, 92,201, - 40, 92,193,145,212, 22, 11,199,247, 28, 81, 59,192, 11, 84,159, 14,241, 19,179,240, 87,166, 28, 75,150,237, 1, 0,188,245, 66, - 43, 52,239, 49, 15,166,207,123, 98, 66,123, 86,242, 98,146,113, 50,128, 25,119, 15, 56,161, 81,104,173, 16,252,117,237, 28, 56, -150,133,196,203, 15, 94, 62,129, 16,172, 38,228,101,220,192,161,111, 86, 2, 0,214,108,220, 1,134, 97,192,113, 44,140, 38, 30, -145,181, 67, 32, 8, 66,163,138,242,217, 24,120,188,107,160, 95,219,136, 8, 31,130, 38,185,184, 43, 2, 80, 75, 41, 34, 83, 84, -164,189, 74,222, 38, 39, 47,255,241,139,192,177,202, 42, 70,102, 67, 9, 6, 32,222,176, 1,191, 3,104,183,182,100,173,186, 28, - 27, 11,213,134, 13, 80,218,190, 35, 37, 4,249, 60, 95,165, 1, 14, 0, 81, 81, 81, 88,179,102, 77,224,184,113,227,170, 68,178, -138,139,139,231,107, 52,154,238, 27, 54,108, 8, 28, 56,112,224, 93,207,175, 93,187,134,206,157, 59,167,167,165,165,205,191, 23, -114,165,213,106,113,251,246,237,123, 62, 55,183,147,171,125,251,246,133,135,134,134, 34, 58, 58,218,255,173,183,222,114,135,100, -205,112, 38, 87, 99,198,140,249, 27, 64, 0, 33,164, 52, 65, 33,182,103,143, 57,145,172, 60, 0,139, 43,216,121,134, 43,149, 74, -100,100,100, 96,196,136, 17,184,114,229, 31,133,103, 72, 72,136, 99,103,151,144,144, 0,127,127,127, 16, 66, 2, 92, 41,179,191, -191,127,160,201,100,194,168, 81,163,112,251,246, 63,230,138,181,106,213,178,215,169,159,187,245, 24, 24, 24, 24,104, 48, 24,208, -169, 83, 39, 20, 23, 23, 3, 0,158,123,238, 57,136, 68, 34,100,100,100, 64, 36, 18,249, 85,161,121,252,250,246,237, 91,174,139, - 20,141, 70, 99,246,246,246,110,236, 38,166,239,211, 79, 63,157,188,118,237,218,187,142,234, 78,158, 60,249,140,143,143,207,126, - 31, 31,159,134,110, 98, 10,206,100, 74, 44, 22,223, 65,176, 68, 34, 17, 24,134, 17,240,232,203, 7, 0,236,183,218, 86, 3,104, - 81,131, 52, 89, 14,146,181,119,239, 94, 52,109,218, 20, 57, 57, 57,136,143,143,255,215,201,149, 19, 33, 1,199,113,142,205,177, - 76, 38, 67,116,116,180,131, 92, 17, 66, 80, 84, 84, 4,142,227,236,243,181, 75,147, 95,110,110, 46,130,131,130,160, 86,171,209, - 32, 50, 18, 87,109,243,136,253,181, 84, 42, 5, 33, 4, 86,171,181,178, 58, 44, 64,137, 45,213,155,213,221, 60,118, 50, 84,161, -170, 56, 36, 4,130, 32,216,231,124, 90, 29,152,126,126,126,208,235,245,174, 98, 62,252, 4,139, 16,210, 5,192, 33, 56, 93,141, - 36,132, 48,141, 3, 85,235, 23,142,235, 62,162,103, 83, 63, 24, 50,111, 64,166,246, 3,209, 70, 96,201,178, 61, 56,127, 61, 27, - 0,176,228,203, 63,176,117,110, 31, 64,238,131, 40,175, 44, 4,169,185,129,101, 17, 44, 2, 74, 4, 74,193,177, 37,231,177, 28, -199,130,101, 25,232, 50, 83,177,124,214, 88, 27,185,218,137,221,135,227, 17, 90,175,169,227,156, 22,132, 0,180,226, 78,237,239, - 37, 94, 51,110, 80, 59, 57,209,230, 2, 90,209,221, 95,240, 22,131, 68, 48, 24,223, 53, 84,113,106, 87,241,154,139,121,230, 38, -149,106,133, 8,113, 24,180,115, 0,196, 78,207,196, 54, 77, 22, 99,223, 26,219,110,157, 84,129,104, 56, 84,188,129,129,129, 88, -176, 96, 65,224,180,105,211,182,192,205,192,208,148,210,203,132,144,174,175,188,242,202,161,236,236,236,192,168,168, 40,168, 84, - 42,168, 84, 42,164,167,167, 99,240,224,193,233,105,105,105, 85,213,142,109, 30, 61,122,116,160, 88, 44,198,181,107,215,224,227, -227,227, 32,134, 85, 37, 87, 26,141,230,247,253,251,247,135,215,175, 95, 31,151, 46, 93, 66,227,198,141,177,125,251,118,255,231, -159,127,222, 37,146, 37,151,203, 7,216, 8, 19, 98, 99, 99,181,177,177,177, 93, 0,116,169,236,183, 99, 99, 99,181,111,190,249, -230,211, 21, 17, 44,145, 72,116, 91,167,211, 5,201,229,114,124,243,205, 55, 80,169, 84, 80, 40, 20, 8, 9, 9,129, 78,167,131, - 66,161, 0,165, 20, 22,139,197, 62, 73,100,187, 82,238,204,204,204,116,158,231,195,126,250,233, 39,100,102,254,227, 19, 47, 60, - 60, 28, 54,123,141, 44,119,235, 50, 37, 37, 37,157, 16, 18,246,215, 95,127, 33, 49, 49, 17,189,123,247,198,119,223,125,135, 86, -173, 90, 1, 0, 76, 38, 83, 85,156,239,241, 44,203,210, 10,218,143, 0,240,174, 78, 76,219,162,229, 22,166, 32, 8,130,157, 92, - 57,255,117, 38, 93,149,252,230,163, 34, 94,206,251,131,154,154,201,222,189,123, 67,167,211, 65,165, 82, 85,186, 0, 63,104,130, - 37, 18,137, 48,103,206, 28,140, 29, 59, 22,129,129,129,152, 58,117, 42, 56,142,115, 36,231,147, 0,119, 36, 32, 48,176,194,231, -118, 27,172, 74,230, 75,181,151,151,215, 28,134, 97,134,176, 46, 84, 28,207,243,188, 32, 8, 59,242,242,242, 42,116,211, 96, 55, - 72,119,165, 45,156,235,160,146,188,222, 51,102, 89, 92,228, 97, 22,123,233, 14,217, 84,115,135,156,201,213,251, 99,187,141,232, -217,212, 27, 63, 28, 56, 1,177, 57, 23, 48, 21, 84,208,178, 22, 16,177, 18,129, 94,162,208, 50, 43,159, 97, 47, 37, 37,167,192, -215, 91,101, 35, 87,182,196, 48,104,222,180,100,243,186,251,112, 60, 66,235, 54, 5,199,178,224, 88, 22, 42,185, 20,233,105,169, -224, 56,230, 82,121, 63,219,140,197,160, 65, 13,195, 34, 2, 3, 36, 64,179, 10, 6, 64,140, 26,161,193, 18,244,242,149,133, 55, - 99, 49,168, 18,194, 2,169,141, 96, 21, 0, 48,141, 26,133,232,181,107,113, 57, 54, 22, 55, 98, 99, 81,103,237, 90, 96,212, 40, - 8,248,231, 86, 33, 95, 5, 13,150,189, 35,218,137,208,140, 25, 51,210,179,179,179,135, 85,113,183,120, 57, 39, 39,167,235,187, -239,190,155,158,149,149, 5,133, 66,129,212,212,212,123, 34, 87, 0, 96, 48, 24, 94, 90,187,118,109,250,161, 67,135,160, 82,169, -160, 86,171,171, 76,176,236,154,171, 89,179,102,213, 14, 11, 11, 67, 66, 66, 2,188,188,188,224,235,235,139,230,205,155,227,232, -209,163,254, 97, 97, 97, 63,217,110, 25, 85,148,167,239,215,174, 93,155, 11, 0,107,215,174,205, 37,132,196, 17, 66, 62, 37,132, -172, 46,149, 62, 37,132,196, 57,127,215, 96, 48,124, 91, 17,182,201,100,138,139,143,143,167, 10,133, 2, 44,203,194,108, 54, 67, - 38,147, 57,218,203,110,152, 11, 0, 54,195,211, 35,174,148,189,160,160, 96,239,231,159,127,110, 9, 11, 11,195, 99,143, 61,134, -152,152, 24,180,111,223, 30,225,225,225,152, 51,103,142,169,176,176,112,111, 21, 8,214,238,237,219,183, 91,194,194,194, 16, 19, - 19, 3,169, 84,138,230,205,155, 35, 36, 36, 4, 11, 22, 44, 48,229,229,229,237,173, 66, 51,221, 58,119,238, 28, 91, 1,185,213, -192,133,219,184,165,228,246,169, 83,167,216,118,237,218,253, 80,250, 65,155, 54,109,126, 80,169, 84, 94, 0,220,181,235,163,206, -164, 74, 42,149, 58,146,253,115,142,227,254, 11, 26,172, 9, 0,254, 6,144, 0, 96,106, 77,202,152,243,109,193,236,236,108,196, -199,199,227,244,233,211,104,215,174, 29,142, 28, 57, 2,148,184,105,104,249, 47,230, 15,148, 82,136, 68, 34, 68, 69, 69,225,205, - 55,223,196,158, 61,123,112,249,242,101, 88, 44, 22, 7, 1,178,219, 92,186,163,193, 18,139,197, 8, 12, 12,132,197, 98,113,104, -175, 0,224,234,149, 43,224, 56, 14,130, 32,192,100, 50, 85,170,193,242,242,242,154,179,110,221,186,215,179,178,178,130, 51, 51, - 51, 3,156, 83,122,122,122, 64,106,106,106, 64,114,114,114,192,237,219,183, 3,110,222,188, 25,112,227,198,141,224, 69,139, 22, -189,238,229,229, 53,199,213, 53,168,121,243,230,120,237,181,215, 28,105,197,138, 21,142,116,232,208,161,127,148, 29,110,172,107, - 81,179,151,160, 79, 38,117,164, 61,254,196,145,206,191, 53,166, 34,204, 59,184,200, 35,161,193,114,102,159, 0,208, 40, 72, 49, -239,253, 87, 58,143,120,178,177, 23,190, 63,240, 7,230,126,123,253, 82,228, 8,255,168,250,222,153, 16, 50,227,241,214, 11,173, -176,228,203, 63, 0,148, 28, 17, 10, 25,231, 65,115, 18, 64,213, 97,184,161,203, 42,243,120,193,106, 42, 62,120,253,218,149,110, - 81,205, 90, 51,105, 89,250, 59,110, 24, 68,119, 29, 12, 66, 8,106,213,109, 10,150,227,192,178, 12, 56,150,133, 86, 35, 67,252, - 95,127, 9, 70,131,225, 96, 89,152,209, 0,231, 43,151,124,242, 66,175,230, 50, 4,235, 1,185,244,159,217,247,250,224, 82, 43, - 3, 7, 52, 83, 99,100,178,175,252, 96,122,241, 39,162, 66,243, 15, 0, 44,229,237,106,212, 82, 41,138, 0,100,137, 68,104,191, -124, 57,174,196,198, 66,189, 97, 3, 88,148, 88, 81,251, 47, 95,142,130,205,155,193, 88,173,160, 50,217, 61,105,176,210,211,211, -241,220,115,207,221, 19, 17,114,214,100,141, 27, 55,238,208,130, 5, 11, 2,103,204,152, 81,109,152, 83,167, 78, 61,244,229,151, - 95, 6,214,169, 83,167,202,157, 77,165, 82, 77, 17, 4, 65,187,120,241,226,180,165, 75,151,162,180,189,152,141,224, 72,181, 90, -237, 18, 0,221, 42,128,154, 59,102,204, 24, 49,128,177, 54, 77,214, 99, 99,198,140, 57, 70, 41,157, 94,170,126,103,175, 89,179, -230, 57,167,163,196, 79, 1, 44,175, 40,143,249,249,249,171,223,124,243,205, 81,191,253,246,155,159, 76, 38, 3, 33, 4, 98,177, - 24, 13, 26, 52,176,105, 94, 75, 12, 94, 41,165,152, 52,105, 82, 86, 70, 70,134, 75,110, 26,140, 70,227,198,185,115,231,118, 51, - 24, 12,225, 35, 71,142, 20,123,123,123, 35, 61, 61, 29, 31,126,248,161,105,227,198,141,183, 11, 11, 11,221,181,149,130,197, 98, -217, 56,115,230,204,174,122,189,190,238,203, 47,191, 44,206,203,203,131,193, 96,192,228,201,147, 77, 27, 54,108, 72, 50, 24, 12, -110, 59,234,109,223,190,253,181,155, 55,111,118, 44, 42, 42,202, 81, 40, 20,165,181,123, 68,169, 84,182, 6,176,217, 29,204,232, -232,232,132, 91,183,110,181,155, 55,111, 94,156,197, 98, 17,157, 60,121,178,191,157, 92,125,242,201, 39,135,100, 50, 89,119,184, -111,140, 47, 72,165,210, 59, 52, 86,165, 95,115, 28,247,200,107,176, 40,165,135, 80,226,250,162, 70, 73,105,114,117,254,252,121, -116,235, 86, 50,164,143, 28, 57,130, 14, 29, 58,224,200,145, 35,232,216,177,227,191,234,166,193, 78,176, 56,142,195,243,207, 63, -143, 30, 61,122,160,118,237,218,142,113,238,108,228,238, 14,201,176, 90,173,104,214,172, 25,140, 38, 19,196, 98,177,227, 8,146, -227, 56,248, 7, 4,224,218,181,107, 46,105,176, 24,134, 25, 50, 96,192, 0,230,194,133, 11, 24, 58,116, 40,190,248,226,139,114, -191,251,226,139, 47, 98,219,182,109, 24, 48, 96, 0,243,246,219,111, 87,232,166,193,110, 92,238, 74,153,236,235,116,101, 26,188, -234,194,116,230, 34,143, 12,193,114,114,238,133,186,254,138,145, 61, 26,112,248,254,224, 31,152,251,253,173,141, 60,165,223,124, -115, 38,231,199,169, 29, 0,243,142, 23,208,124,240,230,146, 99, 65, 0, 66,198,121,152,119,188, 8,162,240,195,225,100, 17,242, - 12,230,221,101,119, 56,243, 23,223,109, 89,249,102,187, 85, 29,253,131, 3,188,160,203, 51, 56, 72,214,153, 67, 59, 1, 0,131, -198,204, 7,199,150, 28, 29,106, 84, 50,200,197, 44,190,222,244, 81,150,217, 92, 92,102,175, 18, 68,204,216,151, 31,111,224,229, -229, 69,129, 38,226, 59, 27,169,238,206,187,137, 86, 75,111,248,157,207,193, 11,245, 85,154,229, 23,114,199, 2,248,228, 46, 13, - 70,110,174,161,224,244,105,121,167, 45, 91, 16, 63,112, 32,106, 21, 20,224,188,183, 55,252,173, 86,168,236,218,170, 13, 27, 80, -240,197, 23,144, 89,173,128,151, 23,178, 87,174,132,245,220, 57, 88,243,243, 13,238, 18,172,171, 87,175,222,179,150,169, 44, 66, - 52,109,218,180, 45,217,217,217,195,170, 19,243,165,151, 94, 58,116,224,192,129,192,170,226, 20, 20, 20, 76, 4, 48,177, 26,242, - 35, 16, 66,166,219, 28,218,141,141,141,141,213,158, 58,117,106, 20, 33,100, 21,165, 52,213, 86,183, 1,163, 71,143,126,165, 20, -185,170,244, 22, 33,165,244,150, 74,165,122,111,226,196,137,243,151, 46, 93,170,178, 27,180,159, 61,123, 22, 86,171, 21, 34,145, - 8, 60,207, 99,244,232,209,250,236,236,236, 37,229,121, 96, 46, 3,215, 74, 8,121,113,254,252,249,163, 63,250,232,163,126, 44, -203,250,243, 60,159,105, 48, 24,126, 50, 24, 12,107,171,114,139,202, 86, 15,195,103,204,152, 49,124,217,178,101, 3, 24,134, 9, -176, 90,173, 89, 5, 5, 5,187, 12, 6, 67,149,124,107, 29, 59,118, 44,115,213,170, 85,215, 51, 51, 51, 27,133,134,134,230,169, - 84, 42,147,201,100, 98,229,114,185, 70,169, 84, 70, 3, 56, 14,224,162, 59,152,167, 79,159, 78,251,244,211, 79, 19,141, 70, 99, -212,167,159,126,122, 88,163,209, 28, 32,132, 16,177, 88,236, 45,151,203,187, 1,136, 3,112,213, 45,213, 59,195, 8,206,218,170, -210,246, 87, 18,137,228,191, 98,131, 85,227,196,230,166,225, 12,165, 20, 89, 89, 89,184,112,225,130,157, 92, 69, 3, 64,199,142, - 29,207,216, 73,214,233,211,167, 17, 19, 19,115,134, 16,242,192,221, 52, 56,107,176,236, 68,170,118,237,218,142,247,206,201,201, - 6,203, 37,225,121, 30, 98,177, 24, 28,199, 33, 56, 36,196,241, 91,148, 82, 92,187,118, 13, 58,157,206, 37,130,197,178, 44, 75, - 8,193,208,161, 67, 93,250,221,255,253,239,127,136,139,139, 3,235, 34, 27,100, 89, 22, 17, 17, 17, 46,157,180,192, 69,123, 41, -150,101, 17, 26, 26, 90,101, 76,103, 46,242,200, 16, 44,103, 73,200, 48,204,123,241,195,163,111, 95, 76, 43,254, 38, 62,189,232, - 77, 0,116,199,121,197, 47,205,253,217,158, 61, 27, 38,193,184,182, 35,136,166,196,233, 26,213,167,130, 40, 3,145, 36,212,194, -236, 31, 46,165, 89, 65, 22,151,179, 24,164,136,101,138,233,155,214,125,178,116,244,184, 73,170,243, 9,233,200,211, 27,193,178, -140,243,164, 9,142, 99,161, 81,202, 16, 22,228,133, 47, 63,251,176,160, 32, 63,119, 70,121,113, 9,195,213,226,216,238,173,235, - 75, 17, 84, 8, 20,203,128,226,127, 58, 43,253,171,191,109, 85, 47,165,164,106,170,197, 83,183, 10,101,223,221, 42,140, 45,139, - 96, 21,155, 76, 61,223,126,234,169,159,231,253,248,163,162,209, 55,223, 32,253,217,103, 17,146,159, 15, 41,112,135, 77, 22, 99, -177, 0, 94, 94,200,250,226, 11, 20,241, 60,150,142, 28, 89, 84,108, 54,247,114, 83, 3, 33,238,210,165, 75,181,145, 43,103, 66, - 4, 55,237,184, 92, 37, 89, 61,122,244, 56, 68, 41,149,214,128,157,187,157,100,153, 79,157, 58,245,202,225,195,135, 19,112,103, -192,207,220,195,135, 15, 39,188,252,242,203,100,253,250,245, 27, 0,204,116,213,241,166, 94,175,255, 68,171,213,162,115,231,206, - 51, 23, 46, 92,232,219,170, 85, 43, 4, 4, 4,160,160,160, 0,167, 79,159,198,132, 9, 19,116,249,249,249, 11,115,114,114,150, -186,153,103,222,166,169, 89, 91,157,245, 0,224,115, 91,170, 22,121,245,213, 87,207, 38, 36, 36,100,251,251,251,183, 21,139,197, -143,161,196,206, 39, 13,192, 6,119,137,144, 93,198,142, 29,251, 87, 66, 66, 66, 86,173, 90,181,218,217, 48,181, 0,146, 1,172, -171, 2,102,202, 31,127,252, 17,218,186,117,107, 70, 36, 18, 81,150,101, 33, 18,137, 40,199,113,212,102, 55, 67, 1, 96,215,174, - 93, 82, 0, 58,120,228, 65,143, 77,135,155,134,212,212, 84, 7,185,114,114, 52, 26,221,177, 99,199, 51, 54,114,101,127,102,253, -151,242,138,185,115,231, 98,205,154, 53,168,204, 3,185,237,182, 30,169, 12,207,174,193,226,121, 30,102,179, 25,231,207,159, 7, - 33, 4, 60,207, 59,142, 5,237, 46, 26,172, 86,107,133,183,207,121,158,231, 77, 38, 19,190,250,234, 43,151, 72,214,214,173, 91, - 81, 92, 92, 12,190, 18,230,230,236, 82,161, 69,139, 22,208,233,116,142, 75, 60,209,209,209,142,239,153,205,102,183, 8,171, 29, - 51, 42, 42, 10, 89, 89, 89,240,243, 43,185,103, 19,246, 82,236, 63,202,150,194,255,142,223, 95,226,170,107,129, 22, 90,173,151, - 81, 98,249,246,153,166,210,174, 67,162,189, 80, 55, 72, 13,145, 88,134,148,124, 43,246, 95,204,199,186, 67,105,183, 13, 22,190, -223,229,140,194,115, 21,225,200,148, 94, 63,181,122,188, 71,135,151, 94,153,160,212, 27,121, 36, 38,222, 68,102, 70, 42, 24,194, - 32,184, 86, 40,194,195, 35, 32,151, 48,248, 98,237,210,194, 51,199, 14, 28, 45,200,215,245, 46, 15,171,159, 86,114,108,217,179, - 29,218,213,171,167, 38,176, 90, 0,222, 2, 88, 45,128, 96,251,107,255, 76,184,179,175, 93,184,144, 75,223,254, 83,247,251,143, -185,166, 50, 99, 74, 13, 33,164,131,183,183,247,207,115,191,255, 94, 33,152, 76, 48,141, 26, 5,185,209, 8, 57, 33, 32,148,130, - 1, 64,100, 50,100,175, 92, 89, 66,174, 70,140, 40,202,205,203,115, 59, 84,142,191,191,255,231, 89, 89, 89, 15,157, 39,119, 95, - 95,223,119,171,226,238,225, 62,230, 41, 0, 64,174,221,201,104,169,157,180,191, 93,171, 85, 5,220, 8,127,127,255,183, 25,134, -105, 79, 41,245,101, 24, 38, 71, 16,132,227, 25, 25, 25,139, 40,165,215, 60, 75,233,191,214,222,118, 79,238,149,157, 87,103, 0, -120, 3, 64, 1,165, 52,209, 83,115, 15,188,157, 90, 2, 56,131, 50,110, 11, 86,244,236, 65,137,175,175,239,137,159,127,254,185, - 85,221,186,117, 25,103,115, 5,187,175, 59,251, 49, 22,199,149,232, 33,126,251,237, 55,235,208,161, 67,143,167,165,165,117, 46, - 15, 83,163,209,252,242,247,223,127, 63,153,151,151,119, 23,145,114,246,236,110,127, 95, 88, 88,136,113,227,198,237,203,207,207, - 47, 51, 84,142, 86,171, 93,182,116,233,210,215, 7, 13, 26,196,216,221, 74, 56, 39,123, 88, 31,123, 50,155,205,216,188,121,179, -240,209, 71, 31,125,156,155,155, 91,238, 17, 97, 72, 72,200,237,148,148,148, 80,187,203,132,242,146,179, 68, 68, 68,164, 38, 38, - 38,134, 60, 72,204,255, 12,193,178, 13, 10, 18, 21,160,124,142, 2, 67, 24, 8,205, 24, 66, 36, 86,138,203,160,248, 69,193, 21, -173, 58,157, 66, 93, 58, 34, 19, 43, 20,227,213, 42,239, 89,131,134,189,230, 27, 81, 47,146, 4, 6,215, 2, 1,131,244,180,100, -220,188,126,133,126,187,101,101,118, 97,190,110, 78, 81,145,126,101, 69, 56,141, 8,169, 95, 79, 35,222, 46,225,209, 16,246,114, -148,138, 31,117,215, 14, 3,128, 89,196, 92,186, 94, 96, 25, 26, 95,193, 34,105, 39, 89, 51,119,238, 84,112, 77,154,220,229,224, - 77, 16, 4, 88,207,157,195,210,145, 35,171, 68,174, 60,226, 17,143,220,243, 2, 94, 23,149,251,184,178, 0, 72,250, 55,131, 10, -255,199,219,168,198, 6,123, 38,132, 40,125,124,124, 14,176, 44, 27,110,215,192, 56,219, 4,149, 17,232, 57, 49, 61, 61,189, 59, -165,180,168, 2,204,122,106,181,122, 37,207,243,109, 92, 9,246,204,178,236,201,130,130,130,241, 21, 5,123,190, 31,183, 8,253, -252,252,174,221,188,121,179,158,253, 86,180,243, 90, 89,186, 30, 0,224,234,213,171,232,210,165,203,205,212,212,212,136, 7,137, -249,159, 34, 88,213,220,185, 67,196, 82,213,112,137, 92,246,132, 96,177, 70,129, 0,156, 72,116,201, 84,108, 56,104, 52,232, 55, -149,119, 44, 88,154,240,221, 75, 30,104, 37,133, 31, 66, 72, 7,169, 88,252,139,216,203, 75, 94,214, 87,173,249,249,134, 98,179, -185,167,135, 92,121,196, 35, 30,241,136, 71, 30, 34,226,219,208,199,199,231,103,145, 72, 36,117, 38,145,165, 95, 59,214, 58,171, -181, 56, 51, 51,179,119, 69,167, 45,247, 3,243,161, 23, 59,211,116, 53,217,121,137,139,223,237,225, 42,166, 45,117,169,233,152, -247,177,236,180, 26, 49,187,216, 48,103, 63, 36,249,236, 82, 83, 49,157,120,184, 75,184,238, 96,186,218,167,220,204, 39,173,238, -124,222, 47,204,234, 26, 71,101,228,147,222,135,118,159,253,144,228,179, 75, 77,195, 44,221,127, 92,193,117, 23,211,149, 62, 85, -133,124,210,234,206,231,253,194,188,215,113, 84, 65, 62,233,189,246,165,114,218,126,182,187,220,227, 97, 76,156,155,172,151,222, - 39,146, 71,156,240, 73, 77,197,116,174,135,234,116,233,127, 31,194, 3, 28,170,110,204, 82,245, 89, 93, 50,219,118, 99, 36, 14, - 46, 56, 10,117,167,236,213,209,238,165,202, 90, 45,184,206,152,213, 85,151,206, 56,213,213,239,239, 55,102,117,141,165,210,152, -213,209,239,203,106,247,251,216, 70,213,149,207,106, 25, 75,247,163,207,151,209,127,238, 25,183, 52,102,117,140,165,210,152,213, -209,239, 31, 4,102,117,140,165,178, 48,171,163,223,151,215,246,255, 21, 77, 33, 83,149,202,186, 79, 42,203,106, 15,240,120, 63, - 34,114,223, 15,146, 73, 8,161, 54, 15,182, 53, 30,179,154,219,104,182, 13,115,118, 53, 98,118,173,174, 54,186, 31,253,221, 25, -179,186,240, 75,227, 84, 71, 59,149,133,121,175,249, 45, 39,159,213, 94,246,123,237,247, 15, 10,179,154,219,168, 90,198, 82, 41, -204,174,213,188, 9,232,234,244,126,118,117, 98, 86,215, 88, 42, 35,159,247,220, 78,101, 97,222,107,126,203,201,103,181,151,189, - 58,214,144,251,133,251, 48, 8, 87, 19, 50,113, 63,136,144,125,208, 85, 39,246,253,208,226,220, 47, 77, 91,117,105,113,202,192, -141,171, 70,184, 67,213,157, 79, 91,254,200,163,228,172,206, 51,150, 60, 99,233, 97, 30, 75,101,245, 27, 74,233,108, 66,200,172, -154,212,207, 75, 99, 86, 23, 17, 42,163,236,247, 52,150, 74,255,111,117,140,165, 74, 48,201,253, 40,127,117,143,167,154, 40, 76, - 77,201,136,141,213,210,251,128,215,181, 38, 55,192,125,202,103,215,135,161,236,247, 35,159,132,144,217,247,169,236, 15, 75,157, -122,198,146,103, 44,213,184,177, 84,170, 79,118,173, 46,205, 80,117,111,164, 74, 99, 86,199,111, 56, 99, 84, 87, 31,189,223,101, -175,206,177,116, 63,218,254, 97,145,255, 31, 0,174,104,149,198, 74,176,169, 14, 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, 88, 0, 0, 2,128, 8, + 6, 0, 0, 0, 64, 11, 6,158, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 10, + 79,105, 67, 67, 80, 80,104,111,116,111,115,104,111,112, 32, 73, 67, 67, 32,112,114,111,102,105,108,101, 0, 0,120,218,157, 83, +103, 84, 83,233, 22, 61,247,222,244, 66, 75,136,128,148, 75,111, 82, 21, 8, 32, 82, 66,139,128, 20,145, 38, 42, 33, 9, 16, 74, +136, 33,161,217, 21, 81,193, 17, 69, 69, 4, 27,200,160,136, 3,142,142,128,140, 21, 81, 44, 12,138, 10,216, 7,228, 33,162,142, +131,163,136,138,202,251,225,123,163,107,214,188,247,230,205,254,181,215, 62,231,172,243,157,179,207, 7,192, 8, 12,150, 72, 51, + 81, 53,128, 12,169, 66, 30, 17,224,131,199,196,198,225,228, 46, 64,129, 10, 36,112, 0, 16, 8,179,100, 33,115,253, 35, 1, 0, +248,126, 60, 60, 43, 34,192, 7,190, 0, 1,120,211, 11, 8, 0,192, 77,155,192, 48, 28,135,255, 15,234, 66,153, 92, 1,128,132, + 1,192,116,145, 56, 75, 8,128, 20, 0, 64,122,142, 66,166, 0, 64, 70, 1,128,157,152, 38, 83, 0,160, 4, 0, 96,203, 99, 98, +227, 0, 80, 45, 0, 96, 39,127,230,211, 0,128,157,248,153,123, 1, 0, 91,148, 33, 21, 1,160,145, 0, 32, 19,101,136, 68, 0, +104, 59, 0,172,207, 86,138, 69, 0, 88, 48, 0, 20,102, 75,196, 57, 0,216, 45, 0, 48, 73, 87,102, 72, 0,176,183, 0,192,206, + 16, 11,178, 0, 8, 12, 0, 48, 81,136,133, 41, 0, 4,123, 0, 96,200, 35, 35,120, 0,132,153, 0, 20, 70,242, 87, 60,241, 43, +174, 16,231, 42, 0, 0,120,153,178, 60,185, 36, 57, 69,129, 91, 8, 45,113, 7, 87, 87, 46, 30, 40,206, 73, 23, 43, 20, 54, 97, + 2, 97,154, 64, 46,194,121,153, 25, 50,129, 52, 15,224,243,204, 0, 0,160,145, 21, 17,224,131,243,253,120,206, 14,174,206,206, + 54,142,182, 14, 95, 45,234,191, 6,255, 34, 98, 98,227,254,229,207,171,112, 64, 0, 0,225,116,126,209,254, 44, 47,179, 26,128, + 59, 6,128,109,254,162, 37,238, 4,104, 94, 11,160,117,247,139,102,178, 15, 64,181, 0,160,233,218, 87,243,112,248,126, 60, 60, + 69,161,144,185,217,217,229,228,228,216, 74,196, 66, 91, 97,202, 87,125,254,103,194, 95,192, 87,253,108,249,126, 60,252,247,245, +224,190,226, 36,129, 50, 93,129, 71, 4,248,224,194,204,244, 76,165, 28,207,146, 9,132, 98,220,230,143, 71,252,183, 11,255,252, + 29,211, 34,196, 73, 98,185, 88, 42, 20,227, 81, 18,113,142, 68,154,140,243, 50,165, 34,137, 66,146, 41,197, 37,210,255,100,226, +223, 44,251, 3, 62,223, 53, 0,176,106, 62, 1,123,145, 45,168, 93, 99, 3,246, 75, 39, 16, 88,116,192,226,247, 0, 0,242,187, +111,193,212, 40, 8, 3,128,104,131,225,207,119,255,239, 63,253, 71,160, 37, 0,128,102, 73,146,113, 0, 0, 94, 68, 36, 46, 84, +202,179, 63,199, 8, 0, 0, 68,160,129, 42,176, 65, 27,244,193, 24, 44,192, 6, 28,193, 5,220,193, 11,252, 96, 54,132, 66, 36, +196,194, 66, 16, 66, 10,100,128, 28,114, 96, 41,172,130, 66, 40,134,205,176, 29, 42, 96, 47,212, 64, 29, 52,192, 81,104,134,147, +112, 14, 46,194, 85,184, 14, 61,112, 15,250, 97, 8,158,193, 40,188,129, 9, 4, 65,200, 8, 19, 97, 33,218,136, 1, 98,138, 88, + 35,142, 8, 23,153,133,248, 33,193, 72, 4, 18,139, 36, 32,201,136, 20, 81, 34, 75,145, 53, 72, 49, 82,138, 84, 32, 85, 72, 29, +242, 61,114, 2, 57,135, 92, 70,186,145, 59,200, 0, 50,130,252,134,188, 71, 49,148,129,178, 81, 61,212, 12,181, 67,185,168, 55, + 26,132, 70,162, 11,208,100,116, 49,154,143, 22,160,155,208,114,180, 26, 61,140, 54,161,231,208,171,104, 15,218,143, 62, 67,199, + 48,192,232, 24, 7, 51,196,108, 48, 46,198,195, 66,177, 56, 44, 9,147, 99,203,177, 34,172, 12,171,198, 26,176, 86,172, 3,187, +137,245, 99,207,177,119, 4, 18,129, 69,192, 9, 54, 4,119, 66, 32, 97, 30, 65, 72, 88, 76, 88, 78,216, 72,168, 32, 28, 36, 52, + 17,218, 9, 55, 9, 3,132, 81,194, 39, 34,147,168, 75,180, 38,186, 17,249,196, 24, 98, 50, 49,135, 88, 72, 44, 35,214, 18,143, + 19, 47, 16,123,136, 67,196, 55, 36, 18,137, 67, 50, 39,185,144, 2, 73,177,164, 84,210, 18,210, 70,210,110, 82, 35,233, 44,169, +155, 52, 72, 26, 35,147,201,218,100,107,178, 7, 57,148, 44, 32, 43,200,133,228,157,228,195,228, 51,228, 27,228, 33,242, 91, 10, +157, 98, 64,113,164,248, 83,226, 40, 82,202,106, 74, 25,229, 16,229, 52,229, 6,101,152, 50, 65, 85,163,154, 82,221,168,161, 84, + 17, 53,143, 90, 66,173,161,182, 82,175, 81,135,168, 19, 52,117,154, 57,205,131, 22, 73, 75,165,173,162,149,211, 26,104, 23,104, +247,105,175,232,116,186, 17,221,149, 30, 78,151,208, 87,210,203,233, 71,232,151,232, 3,244,119, 12, 13,134, 21,131,199,136,103, + 40, 25,155, 24, 7, 24,103, 25,119, 24,175,152, 76,166, 25,211,139, 25,199, 84, 48, 55, 49,235,152,231,153, 15,153,111, 85, 88, + 42,182, 42,124, 21,145,202, 10,149, 74,149, 38,149, 27, 42, 47, 84,169,170,166,170,222,170, 11, 85,243, 85,203, 84,143,169, 94, + 83,125,174, 70, 85, 51, 83,227,169, 9,212,150,171, 85,170,157, 80,235, 83, 27, 83,103,169, 59,168,135,170,103,168,111, 84, 63, +164,126, 89,253,137, 6, 89,195, 76,195, 79, 67,164, 81,160,177, 95,227,188,198, 32, 11, 99, 25,179,120, 44, 33,107, 13,171,134, +117,129, 53,196, 38,177,205,217,124,118, 42,187,152,253, 29,187,139, 61,170,169,161, 57, 67, 51, 74, 51, 87,179, 82,243,148,102, + 63, 7,227,152,113,248,156,116, 78, 9,231, 40,167,151,243,126,138,222, 20,239, 41,226, 41, 27,166, 52, 76,185, 49,101, 92,107, +170,150,151,150, 88,171, 72,171, 81,171, 71,235,189, 54,174,237,167,157,166,189, 69,187, 89,251,129, 14, 65,199, 74, 39, 92, 39, + 71,103,143,206, 5,157,231, 83,217, 83,221,167, 10,167, 22, 77, 61, 58,245,174, 46,170,107,165, 27,161,187, 68,119,191,110,167, +238,152,158,190, 94,128,158, 76,111,167,222,121,189,231,250, 28,125, 47,253, 84,253,109,250,167,245, 71, 12, 88, 6,179, 12, 36, + 6,219, 12,206, 24, 60,197, 53,113,111, 60, 29, 47,199,219,241, 81, 67, 93,195, 64, 67,165, 97,149, 97,151,225,132,145,185,209, + 60,163,213, 70,141, 70, 15,140,105,198, 92,227, 36,227,109,198,109,198,163, 38, 6, 38, 33, 38, 75, 77,234, 77,238,154, 82, 77, +185,166, 41,166, 59, 76, 59, 76,199,205,204,205,162,205,214,153, 53,155, 61, 49,215, 50,231,155,231,155,215,155,223,183, 96, 90, +120, 90, 44,182,168,182,184,101, 73,178,228, 90,166, 89,238,182,188,110,133, 90, 57, 89,165, 88, 85, 90, 93,179, 70,173,157,173, + 37,214,187,173,187,167, 17,167,185, 78,147, 78,171,158,214,103,195,176,241,182,201,182,169,183, 25,176,229,216, 6,219,174,182, +109,182,125, 97,103, 98, 23,103,183,197,174,195,238,147,189,147,125,186,125,141,253, 61, 7, 13,135,217, 14,171, 29, 90, 29,126, +115,180,114, 20, 58, 86, 58,222,154,206,156,238, 63,125,197,244,150,233, 47,103, 88,207, 16,207,216, 51,227,182, 19,203, 41,196, +105,157, 83,155,211, 71,103, 23,103,185,115,131,243,136,139,137, 75,130,203, 46,151, 62, 46,155, 27,198,221,200,189,228, 74,116, +245,113, 93,225,122,210,245,157,155,179,155,194,237,168,219,175,238, 54,238,105,238,135,220,159,204, 52,159, 41,158, 89, 51,115, +208,195,200, 67,224, 81,229,209, 63, 11,159,149, 48,107,223,172,126, 79, 67, 79,129,103,181,231, 35, 47, 99, 47,145, 87,173,215, +176,183,165,119,170,247, 97,239, 23, 62,246, 62,114,159,227, 62,227, 60, 55,222, 50,222, 89, 95,204, 55,192,183,200,183,203, 79, +195,111,158, 95,133,223, 67,127, 35,255,100,255,122,255,209, 0,167,128, 37, 1,103, 3,137,129, 65,129, 91, 2,251,248,122,124, + 33,191,142, 63, 58,219,101,246,178,217,237, 65,140,160,185, 65, 21, 65,143,130,173,130,229,193,173, 33,104,200,236,144,173, 33, +247,231,152,206,145,206,105, 14,133, 80,126,232,214,208, 7, 97,230, 97,139,195,126, 12, 39,133,135,133, 87,134, 63,142,112,136, + 88, 26,209, 49,151, 53,119,209,220, 67,115,223, 68,250, 68,150, 68,222,155,103, 49, 79, 57,175, 45, 74, 53, 42, 62,170, 46,106, + 60,218, 55,186, 52,186, 63,198, 46,102, 89,204,213, 88,157, 88, 73,108, 75, 28, 57, 46, 42,174, 54,110,108,190,223,252,237,243, +135,226,157,226, 11,227,123, 23,152, 47,200, 93,112,121,161,206,194,244,133,167, 22,169, 46, 18, 44, 58,150, 64, 76,136, 78, 56, +148,240, 65, 16, 42,168, 22,140, 37,242, 19,119, 37,142, 10,121,194, 29,194,103, 34, 47,209, 54,209,136,216, 67, 92, 42, 30, 78, +242, 72, 42, 77,122,146,236,145,188, 53,121, 36,197, 51,165, 44,229,185,132, 39,169,144,188, 76, 13, 76,221,155, 58,158, 22,154, +118, 32,109, 50, 61, 58,189, 49,131,146,145,144,113, 66,170, 33, 77,147,182,103,234,103,230,102,118,203,172,101,133,178,254,197, +110,139,183, 47, 30,149, 7,201,107,179,144,172, 5, 89, 45, 10,182, 66,166,232, 84, 90, 40,215, 42, 7,178,103,101, 87,102,191, +205,137,202, 57,150,171,158, 43,205,237,204,179,202,219,144, 55,156,239,159,255,237, 18,194, 18,225,146,182,165,134, 75, 87, 45, + 29, 88,230,189,172,106, 57,178, 60,113,121,219, 10,227, 21, 5, 43,134, 86, 6,172, 60,184,138,182, 42,109,213, 79,171,237, 87, +151,174,126,189, 38,122, 77,107,129, 94,193,202,130,193,181, 1,107,235, 11, 85, 10,229,133,125,235,220,215,237, 93, 79, 88, 47, + 89,223,181, 97,250,134,157, 27, 62, 21,137,138,174, 20,219, 23,151, 21,127,216, 40,220,120,229, 27,135,111,202,191,153,220,148, +180,169,171,196,185,100,207,102,210,102,233,230,222, 45,158, 91, 14,150,170,151,230,151, 14,110, 13,217,218,180, 13,223, 86,180, +237,245,246, 69,219, 47,151,205, 40,219,187,131,182, 67,185,163,191, 60,184,188,101,167,201,206,205, 59, 63, 84,164, 84,244, 84, +250, 84, 54,238,210,221,181, 97,215,248,110,209,238, 27,123,188,246, 52,236,213,219, 91,188,247,253, 62,201,190,219, 85, 1, 85, + 77,213,102,213,101,251, 73,251,179,247, 63,174,137,170,233,248,150,251,109, 93,173, 78,109,113,237,199, 3,210, 3,253, 7, 35, + 14,182,215,185,212,213, 29,210, 61, 84, 82,143,214, 43,235, 71, 14,199, 31,190,254,157,239,119, 45, 13, 54, 13, 85,141,156,198, +226, 35,112, 68,121,228,233,247, 9,223,247, 30, 13, 58,218,118,140,123,172,225, 7,211, 31,118, 29,103, 29, 47,106, 66,154,242, +154, 70,155, 83,154,251, 91, 98, 91,186, 79,204, 62,209,214,234,222,122,252, 71,219, 31, 15,156, 52, 60, 89,121, 74,243, 84,201, +105,218,233,130,211,147,103,242,207,140,157,149,157,125,126, 46,249,220, 96,219,162,182,123,231, 99,206,223,106, 15,111,239,186, + 16,116,225,210, 69,255,139,231, 59,188, 59,206, 92,242,184,116,242,178,219,229, 19, 87,184, 87,154,175, 58, 95,109,234,116,234, + 60,254,147,211, 79,199,187,156,187,154,174,185, 92,107,185,238,122,189,181,123,102,247,233, 27,158, 55,206,221,244,189,121,241, + 22,255,214,213,158, 57, 61,221,189,243,122,111,247,197,247,245,223, 22,221,126,114, 39,253,206,203,187,217,119, 39,238,173,188, + 79,188, 95,244, 64,237, 65,217, 67,221,135,213, 63, 91,254,220,216,239,220,127,106,192,119,160,243,209,220, 71,247, 6,133,131, +207,254,145,245,143, 15, 67, 5,143,153,143,203,134, 13,134,235,158, 56, 62, 57, 57,226, 63,114,253,233,252,167, 67,207,100,207, + 38,158, 23,254,162,254,203,174, 23, 22, 47,126,248,213,235,215,206,209,152,209,161,151,242,151,147,191,109,124,165,253,234,192, +235, 25,175,219,198,194,198, 30,190,201,120, 51, 49, 94,244, 86,251,237,193,119,220,119, 29,239,163,223, 15, 79,228,124, 32,127, + 40,255,104,249,177,245, 83,208,167,251,147, 25,147,147,255, 4, 3,152,243,252, 99, 51, 45,219, 0, 0, 0, 32, 99, 72, 82, 77, + 0, 0,122, 37, 0, 0,128,131, 0, 0,249,255, 0, 0,128,233, 0, 0,117, 48, 0, 0,234, 96, 0, 0, 58,152, 0, 0, 23,111, +146, 95,197, 70, 0, 2,239, 68, 73, 68, 65, 84,120,218,236, 93,119,116, 20, 85, 31,189,111,118,182,111,178,233, 61,180,208, 33, +128, 52,165,247, 34, 29,145, 34,124, 40, 34, 42, 29, 69, 65, 80, 68,165, 5, 16,233, 82, 20,149,162,116, 20, 68,165, 41,189, 10, + 72,239,157, 16,210,251,102,235,204,188,239,143,236,172,155,101,147,221, 64, 64,196,185,231,204,217,157,118,231,245,119,223,239, + 53, 66, 41,133, 4, 9, 18, 36, 72,144, 32, 65,130,132,146, 3,145, 4,150, 4, 9, 18, 36, 72,144, 32, 65, 66,201,130, 41,182, + 34, 35,132, 22,227,217, 54,222,114,218,143,230, 79, 59,231, 99,244, 59, 45, 65,206,230,118,206, 79,255, 37,238,108,254,180,114, +138,254,245,150,183, 56,156,222,166,169, 98,186,147,150,180, 59, 31, 23,103, 73,229, 35, 55,238,164,143, 33,222, 63,253,151,184, +179,249,211,198,233,154,126,188,225, 45, 46,167, 55,105,234, 33,220, 73, 75,218,157,143,139,243, 81,243, 81, 17,238,164,143,154, +150, 10,137,251, 79,241, 31, 0,251,184,196, 85,113, 64, 41, 37, 78,252,228,105,229,116, 14, 7,145,191, 36,221, 90,130,216, 83, +210,156, 46,225, 89, 82,248,148, 82, 74, 8, 33,123, 1, 52, 47, 73,191,151, 68,188,187,248,181, 68,120,139, 43,174,138,203, 89, + 82,233,254,113,115,150, 84, 94,114,229, 44,137,116,239, 46,222, 31, 99, 28,149,148, 59, 75, 36, 47, 61,142, 52,239, 38,253, 60, + 50,175, 43,103, 73,228, 37, 87,206,146, 72,247, 79,130,179, 36,242,146, 59,206,146, 72,247,133,197,189,100,193,122, 50, 66,192, + 53, 99,183,120,154,133,208,227, 18,153,222, 90, 92,158, 6,206, 18,142,163, 79,237,156, 37,217,154,105, 81, 82,113,244, 56,210, +187, 51,103, 73,241,187,242,148, 68, 60,185,227,124, 84,247, 22,226,206, 18,247,251,163,166,251, 39,197, 89,194,113, 84, 34,121, +201,133,179, 69, 9, 55, 2, 90, 56,157,127, 90,146,156, 37,149,151,220,184,243,145,227,201, 29,231,163,186,183, 16,119,150,184, +223, 75,162, 14,121, 92,188,207,156, 5,235,113,138,171,199, 85,153,149, 36,247,227,176,226, 60, 46, 75, 91, 73, 89,113,220,240, +238, 45, 65,186, 61, 37,237, 78,187,251,200,227,178,182, 62,237,144,242,146,148,151,158,182,188,228, 46,221, 80, 74, 63, 37,132, +124,242,180, 53,158,157, 57, 75, 74, 8,185,241,251, 35,229, 37,215,119, 75, 34, 47,121,224, 36,143,195,255, 37,157,159,158, 70, + 48, 79,139, 67,188, 29,223,243, 16,124, 45,158,230, 8,120, 76,238,108,241,111,240,251,227,112, 39, 33,228,211,199,228,247,127, + 75,152, 74,121, 73,202, 75, 79, 93, 94,114, 73,147, 45, 74,202, 50, 84,210, 13, 41, 87,206,146,248,134, 51, 71, 73,165,209,199, +237,247,146,204, 75,143, 35,238,255, 45, 40,182, 5,235,113,119,155, 60,205,156,143,131,251, 49,249,125,239,227,104, 29, 60,134, +113, 93, 37,238, 78, 74,233,167, 40,193, 46, 71,209,207, 37,233,214,199,217, 77,248, 56,210,230,227, 76,239, 37, 57,206,227, 49, +249,253,223, 18,239, 37,238,206,146,202, 75,110,226,252,145,221,234, 46,252, 74,186, 11,187, 36,211,230,227,228, 44, 9,238,199, +225,206,199, 21,247,255, 38, 48,144, 32, 65,130, 4, 9, 18, 36, 72,144, 80,162,144,214,193,146, 32, 65,130, 4, 9, 18, 36, 72, +120, 82, 2, 43, 42, 42,106,171, 86,171,173, 80,216,139, 6,131,225,126, 66, 66, 66, 75, 41, 8, 37, 72,144,224,177,160, 33,132, +193,223, 22,115, 1, 0,165, 82,235, 78,130, 4, 9,207, 48, 10, 29,131,165, 82,169, 98, 46, 94,188, 88, 73, 16, 4,240, 60, 15, +142,227, 28,191, 22,139, 5,205,154, 53, 43,246,248,173,240,240,240,125, 50,153,172,108,113,222,225,121,254, 78, 98, 98, 98,147, + 34, 10,238, 67, 0, 98, 8, 33,206,215,138,252, 5,144, 96,181, 90,235, 20,197, 73, 8,137,113,229, 43,132, 75,252, 95, 36,167, +191,191,255,113,150,101,163,221,113, 21,246, 95, 16,132, 27,201,201,201,141,164,100,250,100, 16, 30, 30,190,143,101,217, 98,167, +207,251,247,239, 23,154, 62, 35, 35, 35,255, 98, 24, 38,178, 24,148, 50, 65, 16, 46,223,191,127,191, 73, 97, 2, 68, 76,243, 30, + 4, 77,129,255,132,144,120,142,227,234,121,202, 71, 69,113,185, 73,163, 69,114, 58,139, 43,150,101,167,135,134,134, 14,201,203, +203, 51, 1,160, 50,153,140, 6, 5, 5,137,110, 3, 0,112, 28,151,146,145,145, 81, 67, 74,137, 18, 36, 72,120,166, 5,150, 32, + 8,140,217,108,198,149, 43, 87, 80, 72, 57,207, 63,196,247, 42,157,248,125,103,168,111,104, 24, 56,171, 21,186,224, 16, 7,119, +210,133,115,224,108, 86,112, 22, 11, 74,215,111, 32, 86, 94,168, 94,189,186,204, 3,103,244,140, 25, 51, 66,125,125,125, 97, 50, +153, 96, 50,153, 96, 54,155, 97, 50,153, 96,177, 88, 96,177, 88, 96,181, 90, 97,181, 90,193,113, 28,204,102, 51,118,237,218,229, +201,237,209, 83,167, 78, 13,213,235,245, 14, 62,241, 16, 57, 69, 94,155,205, 6,147,201,132, 63,254,248,163, 72, 78,150,101,163, + 19, 18, 18, 66, 21, 10, 5, 40,165, 16, 4, 1,148,210, 2,135, 43,202,151, 47,111,149,146,232, 19, 69,165,169,171,127, 9,245, +211,168,192, 9, 2, 58,215, 42,239,184,113, 99,217,122, 80,142,135,192,113,168, 56,188, 63,144,111,130, 65,181,106,213,138, 76, +159,148,210, 50, 83, 87,255,226,239, 45,103,106,106,170,177,106,213,170, 9,200, 31, 8, 90,152,133, 39,218,104, 52,134,138,110, +112, 21, 66, 12,195, 20, 56,182,111,223,142,206,157, 59,123,242,123,244,187,239,190, 27,106,179,217, 96,177, 88, 96, 54,155, 97, +179,217,192,113,156,227,224,121,222,113, 88, 44, 22, 28, 61,122,212, 91,203,213,140,182,109,219, 14,252,229,151, 95,116, 63,253, +244,147,174,108,217,178, 80, 40, 20,144,201,100,144,201,100, 96, 24, 6, 44,203,226,133, 23, 94, 32, 82, 18,148, 32, 65,194, 51, + 47,176,204,102,243,205,218,181,107, 83,251,255, 40,149, 74,165,112, 41, 56, 35, 43, 85,170,116,217,245, 61, 79, 93,135,190,161, + 97, 24, 95, 42, 16, 0, 48,241,118,154,163, 98,152,217,232, 57,199, 51,147,238,101, 1, 0, 52, 26, 13,136,115,179,185, 16,232, +116, 58,180,109,219, 22, 74,165, 18,245,234,213,131, 92, 46,119,123, 40, 20, 10,200,229,114,111, 42, 5,248,248,248,224,179,207, + 62, 19,197, 17,116,106, 21, 70, 52,170, 7, 53, 40,190, 58,119, 21, 22,129,130,101, 89,199,225, 13,167, 66,161,192,217,179,103, +193,178, 44,100, 50,153,227, 87,252,191,101,203, 22,244,236,217, 19, 44,203, 66,163,209, 0,255,161,217, 22, 79, 11,252, 52, 42, +188,182,248, 71, 0,192,221, 57,195, 29,113,119,116,232, 68,199, 51,101,222,234, 13, 66, 8,228,114, 57, 24,134, 41, 49,206,244, +244,116,227, 43,175,188,114,192,215,215,119,123,118,118, 54, 60, 8, 55,220,189,123, 23, 44,203, 22,154,222, 25,134,193,236,217, +179,113,237,218, 53,175,252,110, 50,153,240,245,215, 95,131,231,249, 2,188,226,127,215,107, 94,138,171, 41,237,218,181,235,255, +203, 47,191, 4, 16, 66,176,112,225, 66,200,229,114,116,234,212, 9, 65, 65, 65,216,177, 99, 7, 20, 10, 5,198,142, 29, 43, 37, + 62, 9, 18, 36, 20, 5, 57,128,231, 0,132,216, 13, 60, 57, 0,252,157,238,167,216,127, 67,156,206,255,116,195, 83,223,254,140, +120, 95, 60,183, 0, 80,186,185,158, 6, 64, 99, 63,204, 0, 14, 1,136,117,250,142,248, 30, 92,191,203,218, 11,194,230, 0,246, + 0,104, 33, 46,126,119,255,254,253, 14, 78,150,148,139,151, 47, 95,174, 34,106, 29,123, 87,161,130,227,184, 74, 98,183,161,104, + 29,106,211,166, 77,145, 45,122,206,106,125, 64,120,184,211, 80,238,186, 37, 10, 19, 46, 86,171, 21,189,123,247,206,143,129, 66, + 42, 27,231,195, 11,205, 6,139,197, 2,150,101, 81,185, 84, 8, 62,110, 95, 27,207, 83, 27, 12,185, 4, 92,150, 1,221,124,108, +184, 88,173, 14,150,222, 73,193,237,236, 92,176, 44,235, 21,167, 32, 8,133,138, 43,153, 76,134,197,139, 23,227,149, 87, 94,129, + 76, 38,243,138, 79, 66,201,131, 19, 4,183,233,176,176, 52,235, 77, 60,121,195,153,158,158,110,236,220,185,243, 17,149, 74,181, + 34, 44, 44, 44, 33, 62, 62,222,163,192,114, 21, 61,174,141,137, 47,190,248, 2,243,231,207, 71,203,150, 45,189,114,167,217,108, + 6, 33, 4, 75,151, 46,125,224,222,228,201,147, 31,248, 94, 81,156,246,134, 17, 19, 25, 25, 57,116,219,182,109,122,241,217,224, +224, 96,200,229,114,212,168, 81, 3,190,190,190, 56,112,224, 0,120,158,247, 58, 95, 74,144, 32,225,217,133, 59, 45,226,132,102, +227,199,143,175, 55,125,250,244,105, 13, 27, 54, 92,115,232,208,161,213,132,144,173, 78,101, 98,103, 59,199, 86,167,243,250, 46, + 34, 75, 14, 32,132, 16,178, 85,124,222,249,220,233,122, 27, 0, 74,241,124,252,248,241,177,211,167, 79,159, 54,110,220,184, 15, +227,226,226, 20,227,199,143,175, 57,125,250,244,105,226,119,220,185,195,217,130, 85,228, 42,192, 98,119,225,165, 75,151,224,105, + 92,170,167,245, 51,116,193, 33, 14,203,213,164, 50, 65,142,235,159,197,103, 58, 42,174, 5,117, 43, 64,167,211,161,253,164,207, +189,178, 12, 89, 44, 22, 36, 39, 39, 59,172, 10,158, 14,111, 57,181, 26, 53,118,189, 91, 3,119,211,148,248,244,112, 58,126, 57, +117, 13,114,185, 28, 47, 86,171,129, 14, 10, 95, 76, 40,163,196,187, 87,111,193,230,229, 88, 93, 74,169, 91, 97, 37,254, 23,187, + 74, 36,129,245,207,161,115,173,242, 14, 43,211, 81,223,214,142,235, 61, 13,103, 29,113,242,222,226,153, 0,128,150,117, 94,128, + 55,227,180, 61,113,166,165,165, 25,155,180,110,177,151, 55, 90,150,247,239,223,255,230,238,221,187, 53, 94, 53,231,220, 8, 44, +209, 74, 43,138, 43,150,101, 97,177, 88,188,242,187,197, 98, 41, 52,127, 40, 20,138, 98, 91,176, 0,192, 96, 48, 88, 54,111,222, +140, 5, 11, 22, 32, 40, 40, 8,237,218,181, 67, 68, 68, 4,214,175, 95, 15, 74, 41,134, 15, 31, 14,141, 70, 35, 90,171,165, 4, + 40, 65,194,127, 27, 69,105, 17,213,244,233,211,167, 57, 11, 24, 87, 65,227, 44,156, 92, 68,148,179, 72,139,245, 80,255,111,117, + 21, 77,226,119, 9, 33, 91,227,226,226, 58,123,112, 71,138,171,192, 42,114,153,125,179,217,124,179, 86,173, 90, 94,169,136,188, +188,188, 68, 79, 34,195, 93, 43,222,217, 42,224,227,227, 3,157,222, 7,140,151,229,173,205,102,115, 8,148,157, 59,119, 66,163, +209,160, 99,199,142,143,100,193,178, 90,173, 80, 42,228, 96,130,195,240,218,156,221, 72,203, 49, 58, 42,150, 61, 55,110,226,100, + 82, 50,222,109,216, 26, 58, 77, 50,114, 45, 22,175, 44,109,130, 32, 60, 32,174, 88,150, 69,239,222,189, 29,214, 3,231,113, 41, +144,186, 8,255,201,150,148,219,115,231,235,130,139,101,234, 97, 56,211,210,210,140,157, 59,119, 62,194, 27, 45,203,239,221,187, +119, 4,128,250,249,231,159, 47,182,192, 18,133,149, 92, 46,199,236,217,179, 49,127,254,124,199,125,111, 5, 22,199,113, 5,132, +211,213,171, 87, 11,124,203, 85,208, 21,213, 61, 74,243, 75, 73, 1,128, 16, 19, 19,227,120, 39, 60, 60, 28,254,254,254, 16, 4, + 1,130, 32, 64,173, 86, 67,163,209, 64,161, 80, 72,137, 78,130, 4, 9, 69,105, 17,227,184,113,227, 62, 36,132,108,181, 91,146, +206, 21, 33,164,220,161,190,139, 72, 75, 41,164,236,234,236, 78,100, 57,255, 23, 49,126,252,248, 88, 55,238,248,243, 1,129,229, +164, 26, 31,128,115,119, 97, 73, 85, 94, 69, 85, 96, 62,254,122,104,116, 58,200,100,140,199,253,149,196, 46, 66,177,192, 31, 50, +100, 72,145,227, 82,188, 29, 47,101,181, 90,193,176, 50,220, 15, 47, 7,158,217,239,120, 87, 60, 24, 86,142,219,225, 85, 32,187, +244, 23,228, 94, 86,180,174, 22,172,225,195,135,227,235,175,191, 6,195, 48,142, 48, 97, 89, 22, 21, 43, 86,196,205,155, 55,165, +156,246,148,136,171,194,174,243,188,224,181,213,197,221,115,105,105,105,198, 94,189,122,237,205,202,202, 90, 94,189,122,245,171, +200, 95,198,128,241,150,143,101,217, 2,194, 74, 20, 87,243,230,205, 43, 32,134,108, 54,155, 87, 13, 0,155,205,246,128,208,153, + 53,107, 86,129, 95, 0,104,212,168,145, 87,150, 96, 0,148, 97, 24,170, 80, 40,208,182,109, 91,212,172, 89, 19, 63,253,244, 19, + 4, 65,192,176, 97,195,160,209,104, 48,119,238, 92,112, 28,135, 25, 51,102, 72, 22, 44, 9, 18, 36, 20,165, 69,204,113,113,113, +231,226,226,226, 28,150, 36, 87, 11, 86, 33,232,100, 23, 83, 33,162, 56, 67,254, 88,170, 63,139,112, 67,231,194,132,151,243,181, +233,211,167, 79,115,227, 14, 71,183,228, 19,223,236, 57,241,252, 89,124,222,184, 54,128,130,221,130,139, 95,168, 2,157,143, 14, + 58, 95, 31,244,218,178, 31, 0,236,133,253, 56,175, 44, 88,162,192, 74, 75, 75, 43, 82, 92, 21,199,130,197, 40, 89,108,136,206, + 0, 85,202,193, 90,108, 5, 4,150,140,149,227,110, 80, 57, 48,114, 5, 88,158,243,138,147, 82,250, 64,151,224,128, 1, 3, 64, + 8,113,204,248,170, 85,171,150, 51,151, 84,227, 60,233,244,121,124, 25, 46,110, 28, 10, 0,104, 98, 48, 56,226, 98,106,173,191, +231,109,204, 57,187,215, 97,109,156,132,247, 31,138, 51, 45, 45,205,248,124,213,216, 35,138, 64,191,229,119,238,220, 57, 2,128, +233,211,167,143,127,173, 90,181,188,202,147,226,164, 9, 87,113,229,108,185, 18,127,109, 54,155, 87,126, 23,199, 66,121,130,216, + 93,232, 41,205, 83, 74,105, 96, 96, 32, 24,134,129, 94,175,135,143,143,143, 99, 6,173, 90,173,134, 86,171,117,140,223,244, 82, +176, 73,144, 32,225,191,139, 0, 81,224,216, 69, 82, 1,203, 18,165,180,179,179, 8, 42,172,171,208,110,113,218,231,225, 91,191, +216,133,153, 91,136,150, 52,151, 50,121,171,171, 56, 99, 69,197,232,252, 27, 17, 17,241,155,143,143, 79, 57,111,125, 93,156, 69, + 71,121,155,245, 1, 75, 22, 33, 4, 62,190, 62,208,248,232,160,241,245, 41,212,202, 85,148,192, 18, 45, 67, 98,101,179, 98,197, + 10,248,248,248,224,245,215, 95, 47,246, 24, 44,135,192, 82, 48,216,161,250, 3, 50, 37, 91, 64, 92,177, 44, 11,153, 92,142, 68, +159, 8, 48,114, 57, 88,206, 59,171, 88, 86, 86, 22, 88,150,197,199, 31,127,236,104,177, 59,139,171,226,248, 89,194, 99,106, 61, +241,182, 7,172, 78,133, 89, 91, 31,150, 83,180, 92, 41, 2,253,150, 87,169, 82,197, 97,185,210,106,181,226,236, 81,143, 96, 24, +198,173,184,114,157,241,199,178,108,126, 90,246, 48,219,209,217,130, 21, 23, 23,231,224,117,182, 92,137, 40, 78, 62, 18,221,186, +119,239, 94,156, 60,121, 18, 67,134, 12,129, 70,163,193,252,249,243,193,113, 28, 38, 79,158, 12,141, 70, 3,165, 82, 41, 37, 62, + 9, 18, 36,235, 85, 81,251,138,166,184,140,115, 34, 46,150,166, 20,119,194,202,185, 59,208,233,191,205, 13,175,197,165,235,208, +245,186,248,155, 22, 23, 23,183, 91,180, 92, 57, 93, 47,224,142, 66, 45, 88, 42,149,170,220,149, 43, 87, 28,139,140, 22,245,107, +177, 88,208,178,101, 75,175, 45, 97,226, 44, 66,150,149, 21, 16, 20, 90, 95, 31,104,245,190,208,248,248,184, 10, 13,226,169,240, + 22, 91,192,206, 2,235,147, 79, 62, 1,203,178,248,250,235,175, 1, 0,239,191,255,190,215, 99,176, 68, 78,240, 4,241,244, 58, +106,207,233, 9,203,247, 54, 36, 29, 60, 13,150,101, 17,218,160, 3,132,231,123, 34, 79,227, 3,150,231,188,158, 69,152,158,158, +142,155, 55,111, 66, 38,147, 97,244,232,209, 5,214, 42,114,157,153,182,115,231, 78,201,130,245, 79,100,112,129,243, 74, 76, 21, +199,202,232,204, 41,142,185,202,202,202, 90,126,231,206,157,163, 0,152,254,253,251,251,107,181, 90,124,243,205, 55,121, 0,148, +235,215,175,215,120, 18, 67, 98,186,241, 36,174,228,114,121,126, 90,246,174,112, 43,208,136,240, 52,224,221,155, 52, 47,186,149, + 16, 2,158,231,161,209,104, 10, 88,174,212,106, 53, 84, 42,149,148,240, 36, 72,144,224, 9,127, 22,227,217,250, 78, 98,233,207, +135,228,253,243, 81, 29,204, 22, 38, 48,204,102, 51, 46, 92,184,224, 45,143,215,139,142,150,170,247, 2, 38,221,203, 2, 33, 4, + 95, 53,170, 14,157,222, 7, 90,157, 14, 47,255,180,215, 81, 96,159,157,246, 62, 84, 58, 31, 68, 54,109,231, 85, 1, 46,118, 17, + 58, 11,172,204,204, 76,200,229,114, 76,153, 50, 5, 12,195, 96,198,140, 25,136,138,138,194,253,251,247,177,126,253,122,175, 44, + 88, 50, 94,134,136, 87,171, 66, 59,192, 15,250, 87,155, 33,160,237, 39,184,103, 97,113,200,164, 69, 51,211,121, 40,119,204,131, + 69,224,189,158, 81,197,113, 28,246,238,221,235, 58,144, 29,148, 82,199, 42,249, 54,155, 13, 86,171, 21, 51,102,204,128,180,147, +200,147, 71, 68,131,225, 8,169, 55, 24, 0,176, 37,238, 13,199,245,143,207,254,157, 62,103,127,159,191, 96,127,149,178,237,138, +197,153,150,150,102,124,177,101,163,125, 38, 65,254, 93,141, 26, 53, 10, 88,174,212,106, 53,177,159,123, 37,170, 25,134,129, 76, + 38,123,160, 91,176, 48,145,229,205, 24, 44,142,227, 28, 11,128, 22, 53, 94,241, 97, 44, 88,111,188,241, 6, 34, 34, 34, 28,150, +171, 73,147, 38, 65,163,209, 96,252,248,241,176,217,108,152, 55,111,158,148,248, 36, 72,144,240, 79,136,177,199, 6,183, 37,168, +201,100,186, 85,179,102, 77, 20,114, 47, 74,173, 86,203, 93, 10,231,200, 74,149, 42, 93,118,237, 42, 36,132,180,161,148,238,114, + 87,152, 19, 66,224,171,247,133,218, 71, 7,173,139,213, 74,237,171,135,202,199, 7,140, 66,238,174, 34,120,128, 83, 28, 59,226, + 44,176,196, 35, 43, 43, 11,114,185, 28, 11, 22, 44,128, 94,175,135,217,108,246,200, 41, 86, 54, 50,153, 12,121,119,115,112,113, +218, 46, 40,213,135, 80,161,221, 43,136,144,107,160, 56,176, 9, 70,222, 86,228, 66,163,238, 56, 43, 85,170,132,137, 19, 39, 62, +176, 60, 67, 97,136,138,138,242,232,247, 71,133,196,233,158,179,168, 89,174, 34, 4,202,187,123,206, 45,167,104,185, 50, 9,242, +239,110,222,188, 41, 90,174,252,180, 90, 45,150, 44, 89,146, 7,128,153, 60,121,178,182, 76,153, 50, 50,111,210,146, 76, 38,195, +156, 57,115,220,142,185,114, 39,182,138,147,143,156,223,109,222,188,185,219,133, 70,221,137, 54,119,156,162, 91,131,130,130, 28, +150, 43,158,231, 29,179, 7,197,213,226, 11,107, 76, 72,233, 83,226,148, 56,255, 59,156,207, 26,220,214,238, 9, 9, 9, 47, 22, +246, 66,133, 10, 21,174, 92,185,114,165,162,184,101,134,189,192, 84,152, 76,166, 74,141, 26, 53,242,104,202, 17, 4, 1, 42,149, + 10,148, 82,180,154, 56, 29,132, 1, 24, 20,172,188, 66, 27,183,134, 76,198, 66,200,223,146,195,227, 44, 66,163,209, 88,160, 82, +112,119,228,230,230,194,108, 54,123,189,250,182,201,100, 42,176,148, 2,161, 2,110,255,190,238,129,217,132,226,225,237,184, 28, +181, 90, 93,160,139,167, 40,120, 90, 83, 76, 66,201, 67,156,136, 0, 0,149, 27,117,132, 32,240,160, 60, 95, 96, 59,163,170,229, + 94,132, 64,121, 88,109,121, 48,155,205,158,204,140, 36, 53, 53,213,216,171, 87,175,189, 0,190,237,214,173,219,101,228,207, 96, +161, 62, 62, 62, 42,185, 92, 46, 0, 72, 7, 64, 51, 50, 50,252,238,221,187, 39,152, 76,166,210,158,220,249,203, 47,191,224,194, +133, 11,104,218,180,105,129,109,155, 68, 43,168,243,106,236,222,164, 79,177, 91,220,221, 10,238,133, 9, 56,111, 33,147,201,224, +231,231, 7,133, 66,129, 41, 83,166, 64,161, 80, 64,171,213, 2, 0,230,205,155,231, 88, 52, 85,130, 4, 9, 18,158,121,129,229, +169,188, 44,162,251,176,200,174, 66,142,227,226,203,148, 41, 83,172,143,241, 60,159,228, 65,176,197,175, 95,191, 94,225,108,117, +240,244, 75, 41, 77,242, 80,201,198,111,217,178, 69,225,206,154, 81,216,198,207,158, 56,121,158,143, 47, 91,182,108,161, 22, 18, +119,176,217,108,247,164, 36,250,228,192,243,124, 17,233,243,163,135, 77,159, 87, 43, 87,174,124,207,223,223,255,215,176,176,176, +180,131, 7, 15, 6,213,175, 95, 63,200,249,153,250,245,235, 71,184,188,102, 65,225,251, 16,130, 16, 18,223,173, 91, 55,183,105, + 94, 20, 75,110,210,103,188,167, 52,127,236,216, 49,133,243,251,133,241, 59,229,163,120, 47, 4,235,237,218,181,107, 51,206, 60, +133,165,125,155,205,150, 34,165, 66, 9, 18, 36,252,103, 5,150,209,104,188, 91,179,102, 77,174,144,123,119,138,122, 55, 53, 53, +181, 94, 73,123,192,106,181, 54,250, 55,112,166,164,164,212,147,146,219,211,141,199, 17, 71, 73, 73, 73,207,151, 52, 39,199,113, + 37,158, 62,109, 54, 91,163,199, 17,166,105,105,105, 13,165,148, 37, 65,130, 4, 73, 96,121, 1,111,151, 99,144, 32, 65,130, 4, + 9, 18, 36, 72,248,175,130,145,130, 64,130, 4, 9, 18, 36, 72,144, 32,161,100, 65,144,191,107,244, 3, 40,206,236, 0, 66, 72, +155,226,126,216, 19,191,196, 41,113, 74,156, 18,167,196, 41,113, 74,156,207, 30,167, 39,238,103,102,118,162, 56, 59,234,113, 28, + 0,218, 72,156, 18,167,196, 41,113, 74,156, 18,167,196, 41,113,254,215, 14,169,139, 80,130, 4, 9, 18, 36, 72,144, 32,161,132, +193, 74, 65,240,207,128, 16, 34,163,148,242, 37, 72, 25, 0,160,176, 13,221, 44, 0, 50, 30,198,153, 0, 20,246, 67, 92,168,200, + 6,192,106, 63,188, 88,106,254, 51, 38, 33, 33, 32,150,242,242,250,148, 16,185, 32,224, 84,233,210,165,254, 2, 94,180, 0,128, + 79,120,181,106, 62, 58, 77, 27,179,213, 82, 78, 37, 87, 94,200, 52,228,238, 52, 37, 93,190, 37,165, 16, 9, 18,254,145,114,169, + 11,128,207,236,121, 63,142, 82,186, 78, 10, 21, 9, 18, 74, 88, 96,249,250,250, 30,103, 24, 38,218,211,250, 58, 78, 25, 19, 60, +207,199,167,167,167,215,243, 50, 35,179, 0,122,249,248,248,180,148,203,229,141, 1,192,102,179, 29,204,205,205,221, 13, 96, 61, +165,148,123,200, 2, 66, 15,160, 55,128,126,246, 75, 63, 0, 88, 71, 41,205,126, 72,190,154,126,126,126, 27,229,114, 57, 77, 77, + 77,109, 0, 0, 65, 65, 65, 71,108, 54, 27,201,206,206,126,153, 82,122,166,152,124,140, 66,161,152,222,180,105,211, 38,132,144, +149,148,210,197, 37, 20,151, 42,134, 97,220, 10, 19, 65, 16,202, 62, 4,159, 2,128,223,130, 5, 11,130, 86,173, 90, 85, 59, 62, + 62,190, 6, 0, 68, 71, 71,159,237,223,191,255, 95, 35, 70,140, 72, 3,144,101, 23, 90,133, 34, 33, 33, 32, 54, 57,241,198,144, +164,228, 11,189, 1, 32, 60,162,198, 58,153,140, 81, 68, 69,157, 60,172, 13,238, 23, 92,185, 74,249,193,107,190, 89,160, 40, 91, +174, 20,254, 56,116,242,185, 17,163, 62,140, 85,135, 85,254, 66, 18, 89, 79, 14,122,189,254, 56,195, 48,209, 69,229,113,119,121, +158,231,249,248,180,180,180,122,133,113,178, 44, 27, 93, 84,121,225,238,154, 32, 8, 55, 82, 82, 82,220, 46, 25,225,231,231,119, +152,101,217,114,222,114,137,191, 28,199,197, 23,182, 68,140,159,159,223,113,153, 76, 22, 93,148, 63,221,221, 19, 4,225, 70,114, +114,114, 97,238,124,192,239, 37,225,206,135,225, 44,202,157, 98,121, 4, 96, 94, 80, 80,208, 11,105,105,105,255, 3,240, 97,118, +118,118, 45,153, 76,134,192,192,192, 15, 9, 33,215,252,252,252,150,101,101,101, 29, 2, 48,138, 82, 42, 72, 57, 70,130,132, 71, + 20, 88, 12,195, 68,223,187,119, 47, 84,167,211, 1,248,123,191, 60,113,147,103, 65, 16, 64, 41,117,252,114, 28,135,170, 85,171, +122, 43, 50,106,232,245,250, 13,227,199,143, 47,221,171, 87, 47,165,184, 37, 76, 66, 66, 66,165,141, 27, 55,254,111,202,148, 41, +159, 16, 66,122, 82, 74,207,122, 43, 90, 0,180, 6, 48,160,118,237,218, 61, 38, 77,154,164,104,213,170, 21,120,158,199,175,191, +254,218,116,242,228,201, 11, 8, 33,155, 0, 44, 7,240,187,183,133, 4, 33,164, 73,120,120,248,234, 3, 7, 14, 68,220,188,121, +147,239,213,171,215, 90, 0, 56,126,252,120, 12,207,243,164, 65,131, 6,191, 16, 66,250, 82, 74, 15, 20, 35,204,187,141, 24, 49, +162,231,240,225,195, 67, 94,127,253,245, 87, 1, 44,182,127, 75,220, 69,188,184, 27, 16, 58, 44, 87,148, 82, 69, 17,207,133, 23, +195,146,165,187,121,243,102, 64,163, 70,141,134, 38, 39, 39,191,235,204,155,148,148,132, 19, 39, 78, 88,167, 77,155, 54,231,208, +161, 67,139,202,149, 43,151, 1,192, 80, 24, 17,229,229,245,147,146, 47,244,110,214,112,129, 31, 0,172,223, 50,244,149, 99,127, +165,248,110,221,182,244,127, 74,181,194,188,234,171, 57,138,138, 21,202, 98,207,241,171, 56,122, 33,157,212,104,210,153,205,218, +186,178, 45,128,165, 82,246,124, 50,144,201,100, 81,241,241,241,161, 90,173,214,237,134,238, 46,227, 46,196,133, 75, 81,169, 82, +165,194, 11, 22,150,141,190,119,239, 94,168, 90,173,118,148, 29,174,101,134, 88,174, 56,210, 10,165,168, 92,185,178,181,136, 50, +169,204,157, 59,119, 66,181, 90,173,131,199,157,251, 92,133, 70,229,202,149,139,242,123, 1,119,122,195, 73, 41, 69,197,138, 21, +121, 79,126, 23,119,172,240,228,111,145,179, 92,185,114,180, 56,156,222,184,179,124,249,242, 86, 15,209, 63,239,242,229,203,195, + 75,149, 42,133,138, 21, 43, 30,122,225,133, 23,244, 58,157, 14,219,182,109, 67,181,106,213, 98,245,122,253,209,245,235,215,203, +199,142, 29,251,220,119,223,125, 7, 0, 35,164, 28, 35, 65,194, 35, 10, 44, 66, 8,116, 58, 29,214,174, 93, 91,232,182, 25,206, +255, 75,151, 46,237,213, 7, 9, 33,245,202,149, 43,183,247,192,129, 3,154,136,136,191, 23,176,182, 88, 44, 8, 8, 8,192,176, + 97,195,148, 93,186,116,169,216,174, 93,187, 35,132,144,230,148,210,227, 30,248,122,132,132,132, 44,252,248,227,143,195,250,244, +233,131,160,160, 2,139,100,163, 87,175, 94,120,249,229,151, 21,151, 47, 95,126,101,197,138, 21,175, 44, 94,188, 56,145, 16, 50, +130, 82,186,169, 40, 94,173, 86,219,173, 66,133, 10, 75, 14, 28, 56, 16, 26, 26, 26,138,152,152, 24,102,236,216,177, 21, 43, 85, +170,164,137,142,142,102,238,223,191,143,159,126,250, 41,170,111,223,190, 27,148, 74,229, 96,139,197,178,217, 11,191, 43, 3, 3, + 3,199,188,253,246,219, 65,217,217,217,220,201,147, 39,175,138,215, 85, 42,213,196, 6, 13, 26,212, 33,132,172,165,148, 46,127, + 24,203,149,221, 74,231,186,231,136, 77,188,239,165, 37, 75,121,234,212,169,192,134, 13, 27,110, 50,155,205,117,134, 12, 25,114, +103,218,180,105, 26,189, 94,175, 7, 64,178,179,179, 51, 62,251,236, 51,203,220,185,115, 63,168, 86,173, 90,235,195,135, 15,247, +120,238,185,231,108,118,241,246,160,192, 34,196,225,158,187,247, 82,176,247,144,160,156, 56,254,253,232,153, 83,203,221,254,243, +252, 93,129,213,232,241,243,190,115, 72, 74,203,197,111,135,207, 35, 60,200,151, 40, 84,242, 88,255,232,216,230, 89,247,206,239, +163,210,142,215,143, 29,132, 16,104,181, 90,252,252,243,207, 15,108, 49,229,110,251, 41,150,101,225,239,239,239,113, 55, 2,181, + 90,141,157, 59,119,186,221, 27,209,221,214, 59,126,126,126, 64, 17,155, 93, 19, 66,160, 86,171,113,240,224, 65, 48, 12,227,118, + 11, 31,215,107, 58,157, 14, 76, 17,123, 82,137,156,251,246,237,243,200, 37,254,250,248,248, 0,128,172,200, 76,169, 82,225,192, +129, 3,133,250,217,245,191,143,125, 63, 86, 79,156, 7, 15, 30, 44,176, 69,151,235,214, 93,206,231, 58,157,206,209,112, 43,180, +117, 22, 16,208, 32, 58, 58, 26,199,142, 29,195,250,245,235, 3, 99, 99, 99,113,245,234, 85, 16, 66, 48,109,218, 52, 82,189,122, +117,121, 98, 98, 34,154, 54,109,138, 31,127,252,177,145,148, 91, 36,252,131,144, 3,120, 14, 64, 8,242,119,141,201, 1,224,111, +175,123,148, 0,210, 0,104,236,135, 25, 64, 46,128, 96,251,187,169,246,178,197, 89, 32,164,160,224,166,208,245,237,220,226,142, + 18, 33, 78,247,196,111,184,158,187,254, 22,224,102,237,133,140, 88,137,181,160,148,238, 45,224, 35, 47,196,149,184,143,152,107, + 94,118,179,241,171, 74,167,211,109, 60,114,228,136, 38, 36,228,111,183,155,205,102,228,228,228, 32, 55, 55, 23, 57, 57, 57,240, +245,245,197,250,245,235, 53,173, 91,183,222, 72, 8,169, 68, 41, 53, 23,198, 9, 96,206,253,251,247,195, 56,142,131, 82,169, 44, +172,229,139,170, 85,171,226,195, 15, 63, 68,251,246,237,195, 91,182,108, 57, 7,192,166, 34, 56,161,213,106,151,156, 56,113, 34, + 84,171,213,226,202,149, 43,136,143,143,199,123,239,189, 87, 74, 16, 4,220,189,123, 23, 87,175, 94,197,189,123,247,176, 98,197, +138,208,238,221,187, 47, 1,176,185, 40,191,219,241,230,232,209,163, 43, 5, 6, 6, 50,159,127,254,121, 86,110,110,238, 87,246, +235,227,231,205,155,215,183, 89,179,102, 33,131, 6, 13, 2, 33,100, 13,165,244, 1,193,226,194,233,206,114,197, 3,184,232,242, + 90, 85, 23,203, 86,184, 61,241,101,186,225, 36, 0,252,218,181,107, 55,218,108, 54,215, 57,112,224,192,181,198,141, 27,151, 1, +112, 95, 76,116,126,126,126,186, 57,115,230,132,117,238,220,249,114,171, 86,173,234,180,107,215,110,116, 74, 74,202, 52,251,125, +234,202, 41, 8, 56, 21, 30, 81, 99,221,190,195, 35,122,239, 57,104, 81,188, 63,234,147, 59,165, 75,149,205, 58,117, 37,157, 63, +127, 35, 5, 57, 70, 14, 47,181,202,223, 88,188, 65,141,210, 88,184,246, 0,134,189,243,145,124,211,186,149, 47, 95,163,208, 1, +248,165,136,240,124, 36, 72,156,127,139, 12, 65, 16, 32,151,203,209,161, 67, 7, 16, 66, 30,216,107, 83, 46,151,227,240,225,195, +104,213,170, 21,228,114, 57,222,120,227, 13,175, 56, 89,150, 69,187,118,237, 28,251, 28, 58,243,185,138, 5,119, 90,192,213,239, +148, 82,176, 44, 11,134, 97, 10,221,224,218,149,211, 83,185, 36,186,179, 40, 46,231,123,158,220, 41, 90,143,188, 21, 87,222,114, +138,238,100, 89, 22,141, 26, 53,194, 95,127,253, 85,164,216,114,167, 43, 93,253,158,145,145,241, 90,165, 74,149,246, 45, 88,176, + 32, 16, 0,210,210,210, 28, 27,209,203,100, 50, 92,186,116, 9, 22,139, 5,159,126,250,169, 53, 59, 59,123,144,148,143, 36,206, +199,201, 89,148, 22, 1,208,108,252,248,241,245,166, 79,159, 62,173, 97,195,134,107, 14, 29, 58,180,154, 16,178,149, 82,218, 89, +252, 29, 63,126,124,236,244,233,211,167,141, 27, 55,238,195,184,184,184,115,132,144,173, 0,224,122,110,119,127,103, 23,241, 22, + 34,242,216,221, 82,224, 89,119,231,174,191,174,220,172,211, 5, 98,247, 28,113, 46,204,188, 21, 88,222,236,173,199,178,236,240, +105,211,166,133, 21, 37,174,114,115,115,145,144,144,128, 50,101,202,224,141, 55,222, 8, 91,176, 96,193,112, 0,179,138,160, 85, +200,100, 50, 28, 59,118, 12,201,201,201,168, 89,179, 38,202,149, 43, 87,224,129,235,215,175,227,215, 95,127, 69,102,102, 38,234, +214,173, 11,228,143, 47,114,139,231,158,123,238,211,170, 85,171,182,107,215,174, 29,167,209,104,112,234,212, 41,212,169, 83, 7, +107,215,174, 69,233,210,165,161,213,106,113,249,242,101,212,172, 89, 19,123,247,238, 69, 72, 72, 8,106,215,174,205,213,173, 91, +119,127,122,122,250,238, 91,183,110,125, 90, 72,194, 81, 68, 69, 69,125,248,246,219,111, 43, 19, 18, 18,132, 21, 43, 86, 28,162, +148, 30, 34,132, 12,254,232,163,143, 94,109,223,190,125,200,201,147, 39,179,255,252,243,207, 63,221,137, 43, 47, 45, 87,156,107, +101,196,243,188,217,104, 52, 90,204,102,179,141, 97,152, 91,132, 16, 11,207,243,133,245,237,168, 7, 12, 24, 80, 62, 53, 53,117, +216, 59,239,188,115,211, 46,174, 46, 33,127, 96, 59, 0,128,227, 56,115,110,110,110,118,195,134, 13,203,244,237,219,247,218,234, +213,171,135, 13, 24, 48, 96,253,242,229,203,115, 1, 24, 93, 9, 75,151, 46,245,151, 76,198, 40, 12, 57,129, 55, 54,172, 95,246, +238,175, 91,134,151,186,123,247, 94,197,160,224, 16,131,194, 39, 36, 97,253, 15,223, 29, 7, 96, 73, 72,201,198,153,235,137,144, +203,101,184,112, 55, 11,205, 94,236, 37,191,118,101,106, 19, 81, 96, 73,120,172,160,226,230,208,123,246,236, 41,210,130,117,248, +240, 97,200,229,114,104, 52, 26,204,157, 59,183, 72, 82, 81, 16,136,214, 33, 79, 34,134, 97,152, 34,203, 17, 81,100,136, 27,176, +187, 30, 95,126,249, 37,222,121,231,157, 2,223,176,139, 12,226,137,179, 48,247,149, 41, 91, 22,201, 73, 73, 5,174,121,179, 89, + 60,207,243,144,203,229,248,250,235,175,209,185,115,103,108,221,186,181,200,223, 14, 29, 58,128, 97, 24,234, 77,120, 54,106,212, + 8, 86,171,213,225,230, 75,151, 46,185,229, 93,188,120,177,167,202,172, 11,128,207,234,212,169,163,111,217,178, 37,246,237,219, +135,151, 95,126,217,108,181, 90,175, 0, 64,167, 78,157, 42, 47, 88,176, 64,121,226,196, 9, 4, 5, 5,201,239,220,185,243, 45, + 33, 68, 26,248, 46,225,241, 22, 70,110,180,136, 88,231, 77,159, 62,125,154,139, 48, 42, 0,241, 62, 33,100,107, 92, 92, 92,103, +103, 49,228,124,238,100,101,114, 22,111,177,206, 22, 40,103,241, 84,136, 40,115,117,183,243,243, 41, 5, 4,150,221, 67, 45,156, +173, 62, 98,161,235, 73, 92, 21,214, 82,116,133,159,159, 95,199,151, 94,122,201, 33,110, 76, 38,147, 67, 88,137,226, 74, 60,191, +124,249, 50,234,213,171,167,240,243,243,235,232, 65, 96,137,226, 13,145,145,145, 72, 77, 77,197,217,179,103, 81,166, 76, 25,216, +108, 54,108,223,190, 29, 89, 89, 89,144,203,229, 80, 40, 20,176, 90,139, 30,146, 80,181,106,213, 14,171, 86,173,170,183,114,229, +202, 12,177, 5,247,195, 15, 63,128, 82,138,144,144, 16,228,229,229, 33, 41, 41, 9,187,119,239, 6,199,113,240,241,241, 65, 76, + 76,140,178, 91,183,110, 77, 62,251,236, 51, 57,128, 79, 11,161,126,225,229,151, 95,214,235,245,122,140, 26, 53,138, 90,173,214, + 89,132,144, 6, 61,122,244,248,112,196,136, 17,129,183,110,221,178,188,249,230,155,199,173, 86,235, 28,123,124,200, 41,165, 54, + 15, 9,177, 80,203,149,205,102, 19,195,244,102,110,110, 46,130,131,131,203,120, 24,163, 5, 0,138,131, 7, 15, 54, 2, 32,155, + 60,121,178, 26, 64,146,179,184,178, 88, 44,200,205,205,133,193, 96,176,101,101,101, 37,143, 25, 51,134, 91,189,122,181,204,254, +206, 5,119, 2, 11,120,209, 82,189,186, 78, 73,169,236,163,165, 75,151,250,180,111,223,158,241,241,241, 65, 78, 78,142,254,183, +109,219,124, 90,183,108, 18, 51,109,250,204, 29,250,232,154, 73, 7, 79,221,192,189,196, 44, 88,108, 54,196, 68,248,229,219,191, + 36, 60,118,216, 39,168, 56, 44, 88,206, 98, 98,223,190,125,120,241,197, 23, 29,121, 93,161, 80, 20,176,116,121,226,100, 89, 22, + 47,190,248,226, 3, 22,157, 61,123,246,184,181, 54,121,130,179, 24,114, 21, 69,238,132, 23,195, 48,240,212,203, 44, 90,239,220, +137, 44,103, 43,190,139,104,243, 84, 73,128,101, 89,140, 24, 49, 2,114,185, 28, 99,199,142, 5,203,178,168, 93,187, 54, 88,150, + 69,195,134, 13, 33,151,203,209,170, 85,171, 98,251,253,200,145, 35,168, 83,167,142,195, 77,181,107,215, 70,253,250,245,193,178, + 44,154, 54,109, 10,185, 92,142,118,237,218,121,195,249, 97, 78, 78, 78, 45, 31, 31, 31, 92,190,124, 25, 50,153, 12,132,144,171, +148,210, 90, 0,240,246,219,111, 95,203,203,203, 43,111, 50,153,240,246,219,111, 19,139,197, 82,115,236,216,177, 31, 1,144, 4, +150,132,199, 89, 30, 21,208, 34, 78, 48,142, 27, 55,238, 67, 66,200, 86,209, 34,229,106,105,114,119,238,134, 95, 20, 65, 98,247, + 96,125, 23,241, 38,118, 29,118, 42,226, 93,139,139,160,114,237, 34,252,211,163, 5, 75, 44,116,189, 21, 88,158, 96, 50,153,158, + 11, 13, 13, 45, 84, 92, 57,255, 90, 44, 22,148, 43, 87, 14, 38,147,233,185,226, 86, 22, 17, 17, 17,176, 90,173, 88,182,108, 25, + 20, 10, 5, 20,138,191,117,133,197, 82,180,113,232,252,249,243, 55,143, 28, 57, 82,167,110,221,186, 1, 63,254,248, 99, 74,243, +230,205, 67,218,183,111, 15,141, 70, 3,163,209, 8,155,205,134, 6, 13, 26,160,106,213,170,136,143,143,199,111,191,253,150, 90, +169, 82,165,224,163, 71,143, 10,137,137,137,183,139,160,110,221,186,117,107, 16, 66,240,219,111,191,165, 81, 74, 79,104, 52,154, + 31,167, 77,155,230,111,177, 88,132, 87, 95,125,245,110,122,122,250, 24, 0, 54,149, 74, 53,171,125,251,246, 47,200,100,178,181, + 60,207, 47, 44,110, 2,117, 13, 91,131,193, 0,181, 90,237,205,146, 16,242,244,244,244, 26, 0,160,211,233, 2, 1, 92,115,164, +108,163,177,128, 8,182, 88, 44,166,192,192, 64, 29, 0,216,223,145, 23, 18, 31, 33, 90,173,118,195,237,219, 55,124,157,199,199, +249,251,251,163, 95,223,190, 76,227, 70,141,148,181,158,123,174,221,132, 47, 86,174,141, 12,210, 91, 98, 34,131, 96,227,109,216, +181, 99,187, 64, 5,219, 14,169,184,121, 50, 2, 75, 20, 25,174, 22, 44,185, 92,142,189,123,247, 62,112, 77,161, 80,224,171,175, +190,242, 74, 16,136, 98,170,176, 46, 50,151, 46, 45,226, 73,184,200,229,114,200,100, 50,124,253,245,215, 16, 4, 1,239,190,251, +110,129,110, 67,103,126, 47, 91,204,142,119,170,126, 34, 0,176, 32,126,182,202,241,190,171,123,197,242,210, 27,171,216,130, 5, + 11,188,178, 96,117,234,212,201,163, 96,117,238, 81,112,118,215, 95,127,253,229,150,119,233,210,165, 30,195,147,231,121,252,242, +203, 47, 14,113, 42,226,227,143, 63,126, 59, 58, 58, 58,108,255,254,253, 72, 76, 76,132,193, 96, 64,110,110, 46, 26, 52,104, 16, +211,166, 77,155, 83,137,137,137,183,206,159, 63,255,146,148,123, 36, 60, 65, 11,150, 57, 46, 46,238, 92, 92, 92,156, 91, 11,149, +171, 37,169, 40, 75,147,147,176,250, 19,246,174,193,113,227,198,125,136,252,225, 51,127,122,241,174,210,181,139,208,173,225,199, + 69, 53,126,230,174,208,245,166,155,208, 75,179, 57, 75, 8,129,201,100,114, 43,172,156, 69,129,213,106, 69,122,122, 58,120,158, +103, 31, 33,162, 30,184,230, 73, 96,157, 61,123,246,245,129, 3, 7, 38,248,249,249,213, 74, 73, 73, 73, 22, 4,161,213,225,195, +135, 67, 88,150,133, 94,175,135, 94,175,199,175,191,254, 10,173, 86,139, 17, 35, 70, 36,243, 60,191,207,215,215, 55,200,104, 52, +158, 78, 76, 76,156, 80,168,114,145,203, 91, 55,107,214, 12, 39, 78,156, 64,102,102,230, 31,132,144, 90,131, 6, 13,106, 91,170, + 84, 41, 50,117,234, 84,211,181,107,215,190, 4,144,162,211,233,150,173, 90,181,170,121,221,186,117,125,250,247,239, 15, 66,200, + 55,148, 82,147,183,126, 54, 24, 12, 5,132, 85,118,118, 54,114,114,114,160,211,233, 56, 47,195, 76,142,252,177, 84,226,120, 42, + 71,220,216,173, 87, 98,252, 80,150,101,105,254, 35, 84, 94, 24,159, 78,167,155,188,114,229, 74,141,235,228, 3,158,231,145,148, +148, 4,189, 94,143,143, 39, 76, 80, 76,122,111, 80, 29,153, 79,216, 97,134, 33,176, 88,105, 38, 21, 44,219, 13, 73,125,246, 75, +197,205,147,129, 40, 8,186,118,237,250, 64,183,160, 66,161,192,206,157, 59,209,189,123,119, 71,131,165,110,221,186, 30, 27, 85, +162, 32,232,210,165,139,195, 18,180,125,251,118,183,221,123,162, 5,202, 27, 33, 40, 62, 59,114,228, 72,176, 44,139,133, 11, 23, + 98,244,232,209, 96, 24, 6,179,103,207, 6,195, 48,152, 56,113,162,215,226,210, 89,184,220,154,153,255, 27, 61, 58, 27,105,139, +195, 0, 0,190,122,189,232,161, 98,149, 61, 44,203, 58, 44, 87,207, 61,247, 28,228,114, 57, 26, 54,108, 8,150,101, 29,150,171, +142, 29, 59, 58,135, 35,245,134,147,101, 89, 92,185,114,197,225,230,134, 13, 27, 22,176, 92,177, 44,139, 78,157, 58,121,227,204, +105,254,254,254,159, 85,173, 90,181,218,156, 57,115,228, 50,153, 12,173, 91,183,174,252,230,155,111,222, 14, 10, 10, 10,154, 60, +121,178,214,205, 59, 26, 0,181,170, 85,171,166,147,114,141,132,199,104,193,250,204,205,173, 0,231, 49, 85,197,224,219,234,252, +188,200,225, 42,138,236, 22,177,125,158,184,220,189, 91, 24,216,162, 90, 99,197, 17, 88,118,243,114,145, 31,211,106,181,103,146, +147,147, 27,106, 52,154, 2,226,202,157,208,146,201,100, 72, 76, 76,132, 86,171, 61, 83,146,145,231,169,139,208, 46,102,222,115, + 10,208, 54, 29, 59,118, 92,190,115,231,206,136, 93,187,118,225,232,209,163, 8, 9, 9,193,130, 5, 11,238, 39, 37, 37,189, 78, + 41,221,233,205,119,203,151, 47, 95, 93,167,211,225,208,161, 67, 0,176, 31,192,128, 97,195,134, 17,142,227,176,104,209,162, 60, + 0, 59,253,252,252, 54,109,220,184,241,185,154, 53,107, 42,119,237,218,149,115,244,232,209, 61, 94,138, 43, 94, 16,132, 7,132, +149,115,152,250,250,250,122, 99,193,178,249,249,249,157,205,206,206,238,101, 52, 26,179, 85, 42,149,111,118,118,182,217, 89, 88, +137,252, 44,203,202,175, 92,185,146, 0, 32,198,207,207,239, 44,156,186, 18, 11, 36, 48,150,109,221,186,117,107,214, 53, 14,146, +146,146,144,152,152, 8,171,213,138,186,117,235, 18, 25,177,201,210,239,156,126, 91, 42, 94,254,153, 2, 77,204,235,226,172, 63, +119, 51, 7,183,111,223,238, 56,103, 24, 6,246,105,251, 30,197,208,206,157, 59,139, 28,136,238,210, 69,232,209, 20, 46, 62,191, +104,209,162,252,237, 40,236,150, 43,134, 97, 48,110,220, 56,168, 84, 42, 76,157, 58, 21,227,198,141, 3,203,178, 30,187, 8,157, +133, 75,217,177,121,206,141,162,252, 76, 97, 31,239, 68, 8,113, 22, 89,196, 91,209, 86,148,245,206, 27,203,191, 51,167,248,158, + 90,173, 46,116,128,187, 11, 39, 41,194,223, 63, 19, 66,110, 68, 68, 68, 28,108,216,176,161,223,241,227,199, 49,123,246,108,133, +217,108, 46,189,107,215, 46,199,119,221,133,151,193, 96,208, 72, 57, 71,194,227,176, 94, 21,113, 59,197,101,252, 20,113,238,174, + 43,226,215,245,121, 56, 93,115,230, 77,113,169,199,156,175,187,138, 42,215,111, 56, 63,147,242,128, 5,203, 83, 33,225, 73,104, +121, 99,193,202,203,203,251,125,219,182,109,245,251,246,237,203, 22,213, 61,104, 48, 24, 16, 22, 22,134,115,231,206,113,121,121, +121,191,123, 97, 25, 43, 49,129,229, 38,194,119,133,135,135,203,108, 54, 27, 42, 86,172,136,168,168, 40,152, 76, 38,100,102,102, +202,188, 21, 87,132, 16, 69,189,122,245,100, 0,144,145,145, 1,228, 79, 39,173, 84,169, 82, 37,156, 56,113, 2, 25, 25, 25,155, + 1,180,153, 52,105, 82,237, 23, 94,120, 65,177,118,237,218,188, 33, 67,134,108,182,217,108, 83,189,180, 62, 88, 56,142, 43,199, + 48,140, 53, 51, 51,243,158,115,120,134,133,133, 5,234,116, 58,146,148,148,100,243, 70, 96,213,170, 85,235,216,157, 59,119, 48, +121,242,228,148,105,211,166, 85,202,201,201,201,200,202,202,226,156, 69,150,201,100, 98,130,131,131, 85,139, 23, 47,214, 0, 64, +173, 90,181,142, 21, 38,176, 12, 6, 67, 41,173,246,239,134,176,217,108, 70, 98, 98, 34, 18, 19, 19,145,148,148,132,156,156, 28, +196,196,196, 32, 47, 47,175,140, 84,188,252, 99, 2,171, 64, 55,153,115,254,118,174,192,139,147,215,157,133, 75,215,174, 93, 29, + 99,183, 68,139,152,120,108,216,176,193,117,224,184, 87, 2,107,209,162, 69, 24, 57,114, 36,212,106, 53,230,204,153, 83,160,139, +208, 85, 20, 8,130, 64,188,241,123,185, 15,140, 72,156, 31, 8,185, 92,142,160, 33, 73, 5,186,226,220, 8, 13,175,220, 57,109, +218,180, 18,233, 34,116,230, 44, 83, 38, 63,171,124,253,245,215,232,213,171, 23,246,239,223,255,208, 93,132,177,177,177, 63,108, +221,186,213,239,252,249,243,200,206,206, 70, 74, 74, 10,204,102, 51,226,227,227, 11,237, 5,176,151,229,106, 41,231, 72,120,194, +248,243, 9,243, 62,242,247, 88, 15, 21,183,215, 2,203, 27, 11,150,217,108,158, 51,106,212,168, 97,109,218,180, 9,244,245,245, + 69, 66, 66,194, 3,226, 42, 55, 55, 23, 62, 62, 62, 48, 26,141,216,178,101, 75,182,217,108,158,227, 73, 20,216,108, 54,132,134, +134, 34, 53, 53, 21, 66, 33,227,162, 25,134,129, 70,163, 65,110,110, 46, 10, 19, 3, 69, 85, 20, 86,171, 21, 54,155, 13, 54,155, + 13, 86,171, 21,197, 92,158, 73, 35, 46,216,106, 48, 24, 0,192, 16, 25, 25, 89, 94,173, 86,227,230,205,155, 0,112, 5, 64,203, +246,237,219,203,211,210,210,232,155,111,190,121,152, 82, 58,194,195,106,246,150,125,251,246,149, 3, 0,141, 70,115, 25, 0,226, +227,227,109,153,153,153, 5, 44,131, 90,173,150,118,239,222, 61,130, 82,138,125,251,246,149, 83, 40, 20, 20,133,172, 89, 5,192, +180,121,243,230,243,126,126,126,171,167, 79,159,222,183,115,231,206,231,106,212,168, 81,206, 96, 48, 36, 27,141, 70,163,201,100, +162, 50,153, 76, 17, 16, 16,160,222,177, 99,199,181,195,135, 15,183,209,235,245,171, 55,111,222,124, 30,128, 91, 75,155, 78,167, +139,207,203,203, 43, 43,198,169,179,184, 74, 76, 76, 4,165, 20, 55,110,220,128, 86,171,189, 35,149, 31,255,104,203,241, 1, 97, +229, 78,108,121, 43,174,156, 5,193,142, 29, 59,138, 92, 3,203, 91, 78,103, 49, 52,122,244,104,204,159, 63,255, 1, 11,214,212, +169,249,109,146, 9, 19, 38,120, 61, 6, 75,180, 86, 37,206, 15, 68,248,200,244, 2,110, 7, 0, 34,186,175,152, 75,178,177, 44, +139,201,147, 39, 63, 48,248,220,185, 11,207,203,174,188, 2,238, 76, 78, 78, 6,203,178, 8, 12, 12, 68,191,126,253,208,174, 93, + 59, 71, 87, 99,113,121, 47, 94,188,120,240,131, 15, 62,168, 25, 27, 27,139, 41, 83,166,164,251,251,251,251,190,245,214, 91,108, +102,102, 38, 41,202,130, 37, 9, 44, 9, 18, 30, 65, 96,137, 25,203,219, 89,132,238, 10, 73, 66, 72, 27,231,181, 50, 40,165, 89, +132,144,126,109,219,182,253,113,221,186,117,154,242,229,203,227,226,197,139, 72, 79, 79,135,197, 98,129, 66,161, 64, 68, 68, 4, + 50, 51, 51,241,221,119,223, 25,243,242,242,250, 81, 74,179,138,226, 4,240, 81,189,122,245,150,204,154, 53, 75, 93,187,118,109, +164,167,167, 35, 55, 55,183,192,170,211,122,189, 30, 26,141, 6,199,142, 29,195,246,237,219,141, 0, 62,242,192,233, 78,197,193, +106,181, 58,132,150, 39,129,229,194,169, 19,173, 56,121,121,121, 0,192,149, 46, 93, 58, 12, 0,110,220,184, 1, 0,183, 99, 98, + 98, 38, 84,168, 80,129,172, 90,181,138, 82, 74,119,185, 19, 87, 46,156,233, 77,155, 54,205, 0, 16,110,177, 88, 20, 0,144,149, +149,101, 13, 14, 14, 14, 85,169, 84,130, 70,163, 17,212,106,181,144,144,144,192,113, 28,167, 0,128,166, 77,155, 90, 0, 36,194, +105,172,135, 11,167, 0, 32,123,233,210,165,159,245,239,223,191, 97,163, 70,141, 98,135, 14, 29,122,246,205, 55,223,100,162,162, +162, 2,114,114,114, 76, 87,175, 94,205,248,226,139, 47,114,142, 28, 57,210, 70, 46,151,223, 94,186,116,233,103, 0,178,237,239, + 62,192,201,113,220,239,187,118,237,122,189,115,231,206,236,189,123,247,144,148,148,228, 16, 87, 73, 73, 73,168, 90,181, 42, 14, + 31, 62,204, 91,173,214, 93,197, 8,207,146,178,220, 72,156,249,141, 15, 42,230,245,194,132,149,216,136,242,150,211, 89, 12,245, +234,213,171,128,213, 74,161, 80, 96,227,198,141,110,203, 13, 55, 43,146,183,113, 93, 15, 74,116,211, 7, 31,124, 80, 64,172,125, +252,241,199,133, 58,205, 83,120,138, 60, 89, 95, 71, 21,156, 69, 88, 72, 62, 47,202,157, 98,217, 41,151,203,241,241,199, 31,123, +109,193,130,203, 24, 44,119,156,162,223,155, 55,111,142,188,188, 60,135,128, 45,204,130,229, 41, 60,121,158, 31, 57,127,254,124, +170,215,235, 95,200,206,206,254,223,157, 59,119, 86,228,229,229, 61,159,149,149, 85,164, 5,203,108, 54,171,164,124, 36,113, 62, +142,181,176,254, 19, 2,203, 94, 57,162, 84,169, 82, 5,246,182, 98, 24,166,192, 81,156,113, 4,246, 12,187,131, 16,210,163,113, +227,198,223,143, 28, 57,210,183,118,237,218,242,178,101,203,194, 96, 48,224,230,205,155, 56,119,238, 28,183,121,243,230,236,188, +188,188,255, 81, 74,119,120,193,183,146, 16,178,189,125,251,246, 19, 27, 52,104, 48,248,147, 79, 62,145, 85,174, 92, 25, 89, 89, + 89, 8, 8, 8, 64,104,104, 40, 46, 93,186,132, 45, 91,182,240,169,169,169, 75, 0, 76,162,148,166, 20,183,129,111,181, 90,241, +202, 43,175, 64, 16, 4,204,157, 59,215,121, 65, 52,111, 96,181, 90,173, 20, 0, 73, 77, 77, 5,128, 60, 81,112, 93,189,122, 21, + 0,238,148, 45, 91,214, 7, 0,118,237,218, 69, 0, 28,242,214, 93,206,150,172,170, 85,171,222,116, 45, 20, 69,203,149,104,245, +130,231, 13,154, 77,189,123,247, 78,206,203,203,107, 63,122,244,232,137,139, 22, 45,234,187,104,209,162, 7, 30,210,235,245,171, +103,207,158, 61,169,119,239,222,201,133, 89,175,236, 22,187, 9,175,189,246, 90,239, 51,103,206,248,170,213,106, 24, 12, 6,164, +165,165,193,106,181, 34, 38, 38, 6,201,201,201, 88,185,114,101,142,209,104,252, 84,202,142,255, 12,156, 5, 65, 97, 86, 44, 79, +226,170, 40, 43,206,207, 63,255,236,118,141,169,226,114,186,138, 12,111,215,166, 42,170, 49, 36, 46, 47,227,110,233,135,226,148, +107,238,120, 89,150,197,231,159,127,238, 88,108,213,157,229,170, 56, 22, 44,145, 51, 48, 48, 16, 0, 32,110,109,212,169, 83,167, +135,230,181,111, 27, 54,194,233, 27,211,198,140, 25,243, 89,213,170, 85, 43, 3, 80, 57,135,129,180,169,130, 4, 9, 37, 36,176, +120,158,143,175, 82,165, 74,129,130,205,211, 38,163, 54,155, 45,222,203, 76,189,157, 16, 18, 51,123,246,236, 81, 58,157,174, 77, + 94, 94, 94, 77,123,129,113,198, 96, 48,236, 50,155,205,243,138,179, 57,179, 93, 48, 13, 39,132,204,109,223,190,253,212, 86,173, + 90,245,124,239,189,247, 8,165, 20,139, 23, 47,166,215,175, 95,223, 0,224, 35, 74,233,245,135, 9,164,192,192,192,243,223,125, +247, 93,216,143, 63,254, 8,155,205,134,121,243,230,193,215,215,247,124,113,220,199,178,236,247,141, 26, 53,234,123,248,240,225, +213,148,210,179, 42,149,234,135,166, 77,155,246, 59,116,232,208, 58, 74,233, 5,150,101,127,104,216,176, 97,191, 99,199,142,109, +162,148,158, 46,134,243, 28,150, 44,142,115,223,163,232,206,114,229, 1,217, 3, 7, 14,180, 14, 28, 56,240,189,222,189,123, 47, +251,243,207, 63,159,207,204,204,172, 9, 0,254,254,254,103,234,215,175,127,108,221,186,117,151,236,150, 43,147, 39,191, 19, 66, +186,215,172, 89,115,211,148, 41, 83,116,177,177,177,108,197,138, 21,113,235,214, 45,156, 61,123,150,251,246,219,111,115,141, 70, + 99, 87, 74,105,134,148, 29,255, 57,129, 69, 41,133,191,191,127,129,198,147, 56,117,191,184,221,130,206, 21,178,184,165,142, 43, +111, 97,156, 30, 6,185, 2, 0,124,124,124, 28,139,146,122, 51, 52, 65, 16,138, 94, 79,141, 82,234,224, 20, 15, 47,196,149,199, + 25,127,246,173,106,188,230,244,102,153, 6,157, 78, 7,155,205,230,224,245, 98, 38, 39, 41,102,156,253, 12,224,231,138, 21, 43, + 94, 5, 80, 65, 18, 85, 18, 36, 60, 6,129,149,158,158, 94,239,113,126,216, 46,160, 38,217,143,146,226,188, 14,160, 55, 33,100, +214, 31,127,252, 33,246, 23, 76,246,180,159,161, 39, 92,188,120,177,179, 92, 46,255,106,245,234,213, 13, 40,165,240,243,243, 59, +114,235,214,173,183,138,195,193,113,220, 96, 66,200,187,226,172, 64,179,217, 60,152, 16,242, 62,165,212,224,116,223,113, 94, 92, +175, 3, 48, 83, 74, 35, 11,185,111, 46,134,184,114, 88,178, 0, 88,214,173, 91,151, 11,224, 20,254, 94,231,202,102, 63, 76,112, +234, 22,244, 16, 47,187, 9, 33, 21, 63,254,248,227,105, 50,153,172,181,193, 96,136,210,233,116,119, 57,142,251, 61, 47, 47,239, + 35, 74,105,154,148, 21,255, 57, 88, 44,150,123, 85,170, 84, 97,221, 53,156,138,170,192,139,106, 80,241, 60, 31, 95,169, 82, 37, +143,141, 50, 55,156,247,138, 72, 71,183, 99, 98, 98, 24,111,185, 68, 88,173,214,228,162,220, 25, 19, 19,131,226,114,122,242,123, +185,114,229,220,250,221,131, 16,188, 87, 68,249,241, 80,156, 69,133,103, 81, 48, 26,141, 25, 33, 33, 33,185, 38,147, 73,110, 54, +155,229, 28,199, 21, 48, 55,106, 52,154, 20, 41,231, 72,144,240,144, 2,235,223, 12,187,160,234, 82,130,124,102, 0,175,150, 0, +143,201,229,220, 80,212,121, 49,241, 56, 44, 64, 2,128,188, 18, 10,195, 84, 0,111, 74, 89,238,233, 67,106,106,234, 11, 37,205, +153,150,150, 86,226, 13,180,148,148,148,134,143,193,239,245,254,171,156, 69,225,222,189,123, 47, 72, 57, 67,130,132, 71, 3, 35, + 5,129, 4, 9, 18, 36, 72,144, 32, 65, 66,201,130, 0,104,227,238, 70,113,102, 7, 16, 66,218, 20,247,195,158,248, 37, 78,137, + 83,226,148, 56, 37, 78,137, 83,226,124,246, 56, 61,113, 63, 51,179, 19, 41,165,143,237, 0,208, 70,226,148, 56, 37, 78,137, 83, +226,148, 56, 37, 78,137,243,191,118, 72, 93,132, 18, 36, 72,144, 32, 65,130, 4, 9, 37, 12, 73, 96, 73,144, 32, 65,130, 4, 9, + 18, 36, 72, 2, 75,130, 4, 9, 18,158, 12, 8, 33, 1, 79, 51,159, 4, 9, 18, 36,129, 37, 65,130, 4, 9,255, 54,113, 85, 3, +192,148, 18,166,157, 98,231,149, 32,225, 63,145,135, 8, 33, 53, 37,129, 37, 65,130, 4, 9, 18,196,138,161, 99,249,242,229, 39, + 3,240, 41, 97,106,159,242,229,203, 79, 38,132,116,148, 66, 89,194, 51,154,119, 84,132,144, 87, 25,134, 57, 86,163, 70,141, 51, +177,177,177,167, 25,134, 57, 76, 8,233, 69, 8, 97,255, 83, 97,225,180, 41,242, 94, 0,160,148, 54,151,146,136, 4, 9, 18,254, +163,149, 3, 11, 96,112,223,190,125,187, 76,159, 62, 93, 89,170, 84,169,187,148,210,254, 37,200,191,234,238,221,187,209, 3, 6, + 12,200,221,189,123,247, 14, 0, 75,220,109,236, 46, 65,194,191, 48,239,148, 5, 48,216,199,199,103, 80,139, 22, 45, 2,186,118, +237,138,160,160, 32,112, 28,135,187,119,239, 98,235,214,173, 56,116,232, 80,130,197, 98,153, 15,224,107, 74,105,102, 33, 60,207, +140, 22, 33,148, 82,113,227,226, 22,118, 79,237,149,146,138, 4, 9, 18,254,131, 21,132, 30,192,248, 57,115,230, 52, 24, 60,120, +112, 57,147,201, 20, 31, 16, 16,112,163,164, 5,150,213,106,109,147,146,146,114,124,234,212,169, 88,188,120,241, 5, 0,113,197, +217,123, 85,130,132,167, 48,239,140,235,209,163,199,212,176,176, 48,166, 70,141, 26,136,136,136,128,217,108,134,209,104, 4,165, + 20, 44,203,130, 82,138,172,172, 44,236,219,183, 15,187,119,239, 54,103,100,100,124, 7, 96, 30,165,244,138, 19,207, 51,165, 69, + 28, 2,171,184,155,130, 74,144, 32, 65,194, 51, 84, 65,148,211,104, 52, 31,111,217,178,165,122,147, 38, 77, 66,115,114,114,110, +216,108, 54, 67,100,100, 36, 69,254,166,230,238,144, 69, 41, 29,225,134,107, 1, 0,191, 66,222,209, 91,173,214,250,169,169,169, +199, 1, 96,227,198,141, 24, 63,126,124,154,209,104,156, 76, 41,189, 41,197,132,132,127,105,254,185,124,241,226,197, 74, 60,207, + 35, 53, 53, 21,102,179, 25,121,121,121, 14,129, 37,147,201, 64, 41, 5,199,229, 27,107, 5, 65,192,137, 19, 39,176,107,215, 46, +122,227,198,141, 79, 40,165,147, 69,129,245, 44,105, 17, 73, 96, 73,144, 32,225,191, 94, 57, 52, 14, 15, 15,127,247,143, 63,254, + 40, 91,166, 76, 25,125,110,110,238, 53,142,227,108, 0, 16, 16, 16, 16, 43,147,201, 84,174,239,240, 60,111, 86,171,213, 7,220, + 89,183, 8, 33,171, 76, 38, 83, 19,119,239,217,223,229, 50, 50, 50, 78,137,231,167, 79,159,198,160, 65,131,172,137,137,137,115, + 40,165, 7,165, 24,145,240,111, 20, 88,167, 78,157,170,180,102,205, 26,212,169, 83, 7,213,170, 85, 67,110,110,174, 67,108, 89, + 44, 22,216,108,182, 7,222,203,206,206,198,187,239,190,123,133, 82, 90,249, 89, 20, 88,226,128,179,207,164, 49, 88, 18, 36, 72, +248, 47, 35, 49, 49, 49,213,223,223,255,190, 32, 8, 84,188,150,145,145,113,238, 97,184, 30,246, 61, 9, 18,254,165,176, 89, 44, + 22,212,171, 87, 15, 55,111,222,196,137, 19, 39, 28, 66, 43, 53, 53, 21, 9, 9, 9, 5, 30, 62,118,236, 24, 78,158, 60,137,102, +205,154,185,242,124,246,204,141,193,178, 43,199,230,118, 79,237,149,210,138, 4, 9, 18,254, 99, 45,240,114, 26,141,230,227,184, +184,184,160,151, 95,126,217,113,253,113,116, 17, 38, 36, 36, 56, 90,232, 82, 23,161,132,103, 36,255,116,143,140,140,252,118,216, +176, 97,126, 13, 26, 52, 64,124,124, 60,238,221,187,135,140,140, 12,212,174, 93, 27,177,177,177,184,126,253, 58,182,111,223,142, +147, 39, 79, 66,165, 82, 33, 58, 58, 26, 62,171,215,224, 43,130,243,148,210, 88, 39,174,103, 70,139, 56, 4,150, 4, 9, 18, 36, +252,199, 43, 9, 61,128,241, 67,134, 12,169,246,209, 71, 31,129, 16,130,200,200,200,172,146, 30,228,158,144,144,224, 71, 41,133, + 52,200, 93,194, 51,150,127,124, 1,140,137,137,137,121,127,200,144, 33,170,234,213,171, 35, 62, 62, 30, 41, 41, 41,200,200,200, +192,145, 35, 71, 0, 0, 81, 81, 81,136,138,138,194,165, 75,151,112,240,224,193,236,220,220,220,129,148,210, 31,159,201, 48,145, + 4,150, 4, 9, 18, 36, 56, 42, 9, 22,192,224,150, 45, 91,182, 91,188,120, 49, 42, 85,170, 84,226, 2,235,202,149, 43,126, 67, +134, 12,129,180, 76,131,132,103, 52, 15,133, 2,152, 80,189,122,245,193,131, 6, 13, 98,203,148, 41,131,123,247,238,225,143, 63, +254, 64,133, 10, 21,112,247,238, 93,236,222,189,219,146,146,146, 50, 23,192,116, 74,105,214,179, 26, 22,204, 99, 14,232, 54, 18, +167,196, 41,113, 74,156,255, 22, 78, 74, 41, 71, 41, 93,184,123,247,238, 37, 29, 59,118, 20, 30,135, 59, 59,118,236, 40,236,222, +189,123, 9,165,116, 97, 81,226, 74,138, 35,137,243,223,200, 73, 41, 77,166,148,142, 56,127,254,124,197,119,222,121,231,251, 41, + 83,166, 8,130, 32, 32, 52, 52, 20,235,215,175, 23,214,174, 93,251,109, 74, 74, 74,121, 74,233,184,103, 89, 92, 1,127, 15,114, +151, 32, 65,130, 4, 9,127, 87, 18,191, 18, 66,226, 1, 12, 46, 97,234,220,235,215,175,127, 78, 41, 61, 43,133,178,132,103, 60, + 15,221, 2,208,159, 16, 50,243,196,137, 19, 31, 1,160, 0,166, 80, 74, 47,252, 87,194, 64, 18, 88, 18, 36, 72,144,224,190,130, + 56, 75, 8,153, 80,194,180, 19, 40,165, 25, 82,232, 74,248, 15,229,163,115, 0,250,252, 23,253, 46,237, 69, 40, 65,130, 4, 9, +133, 87, 14, 25, 79, 51,159, 4, 9, 18, 36,129, 37, 65,130, 4, 9, 18, 36, 72,144, 32, 9, 44, 9, 18, 36, 72,144, 32, 65,130, + 4, 9, 15, 7, 2,160,176,153, 0,187,188, 38,121,136, 25, 10,158,248, 37, 78,137, 83,226,148, 56, 37, 78,137, 83,226,124,246, + 56, 61,113, 23, 71,127, 60,213,160,148,122, 60, 96, 95, 47,171,184, 7,128, 54, 15,243,158,196, 41,113, 74,156, 18,167,196,249, +239,229,180, 55,222, 9,242,123, 73, 24,241,252,105,246,251,195,212,115, 79,202,239,255, 21,206,103,237, 96, 61,168, 75, 71, 32, + 17, 66, 4, 0, 2, 45,129,149, 73, 9, 33, 98, 4,148, 8,159,132,199, 96,218,204,143, 35,242,183, 14,151,226, 73,130, 4, 9, +197, 42, 59,100, 78,149, 44, 15,128, 39,132,224,105, 43, 75, 74,178,158,123, 28,126,255, 47,115,254,219,193, 22, 21, 80, 50,153, +108, 71,112,112,112,203,212,212, 84,193,126, 29, 74,165, 18, 12,195, 64, 46,151, 27,115,114,114,244, 15, 17, 9,223,132,133,133, + 13, 72, 75, 75, 19, 24,134,129, 90,173, 6, 33,196,193,153,153,153,169,255,167, 3,165,108,217,178, 25, 70,163,209,199,245,186, + 90,173, 54,221,190,125,219,247,191, 80, 64, 42, 20,138, 30,129,129,129,254, 41, 41, 41,148, 97, 24, 40, 20, 10,200,100, 50,216, +255,115,153,153,153,203,189,229, 11, 12, 12, 60, 22, 24, 24,232, 47,190, 79, 8, 65, 90, 90, 90,102, 82, 82,210,243, 0,160,209, +104, 14,234,116,186, 32,150,101, 33,147,201, 32,147,201,144,151,151,151,150,154,154,218, 88,170,174,254,157,216,176, 97,131,172, +125,212, 27, 21, 88,106,172,197, 48,212, 79, 16, 72, 22, 71, 52,167,183,223,251,230,154, 55,239,247,236,217,147,255,135,243, 64, + 99,123,203,226, 96, 9,241, 57,239, 79,104, 2,144, 10,224, 26,128,245,148, 82,227, 63, 29, 95, 42,149,106,110, 88, 88,216,160, +220,220,220, 60, 66, 8, 37,132, 32,191, 26,192, 3,191, 60,207,199,167,166,166,214,243, 80,201,202,149, 74,229,236,240,240,240, +215,242,242,242,242,236,124,148, 16,130,136,136,136, 2,124, 0, 96,179,217,226, 83, 82, 82,234,121,227,214,208,208,208,165, 26, +141,230,127,121,121,121, 6,187, 32,114,238,145,113,174,196,175,167,164,164, 52,245, 36, 8,148, 74,229,188,176,176,176,215,237, +126, 7, 33,132,134,132,132, 60,178,223,195,194,194, 94, 51, 24, 12, 5,252, 30, 26, 26,234,150,179, 48,191,187,227,116,118, 39, + 33, 4, 33, 33, 33,143,236,206,167,145,243,153, 21, 88, 0, 24, 66,200,230,198,141, 27,183,216,187,119, 47,115,241,226, 69,166, +106,213,170,224,121, 30,130,144,159,158,163,163,163,181, 15, 81,200,172,104,218,180,233, 43,251,246,237, 99, 54,111,222,204,212, +175, 95, 31,132, 16,240, 60, 15,158,231, 81,163, 70, 13,205, 35, 22, 98, 62, 44,203,190,171, 84, 42,155,115, 28, 87, 13, 0,228, +114,249, 5,179,217,188,151,227,184, 57,148,210, 92,111,120,172, 86,171, 54, 57, 57,249,129,176,137,137,137, 81, 62,172,219,244, +122,253, 33,134, 97, 98, 28, 1,108, 23, 26,238, 50,177,248, 75, 41,189,145,146,146,210,168, 48,206,128,128, 0, 7,103, 97, 28, +174,215, 4, 65,184,145,156,156,220,200,131,184,122,185,105,211,166,126,187,118,237, 34,119,239,222, 37, 26,141, 6,130, 32,128, +231,121,216,108, 54, 84,175, 94,189, 88,235,167,249,251,251,235,199,141, 27, 87,161, 67,135, 14,216,184,113, 35, 94,125,245, 85, + 52,105,210,228,138,120, 95,167,211, 5,157, 63,127,190, 82, 96, 96, 32,242,242,242,144,149,149,133,182,109,219,254,235, 51, 87, +131, 58,165,166, 16,134, 4, 58, 10,127,142, 79, 63,114,234,222, 35,175,171,228,239,239,127, 82,169, 84,134,137,241,202, 48,140, +219,184,118,190,102, 50,153,146, 82, 83, 83,235,120,200, 63,101, 1,116,145,201,100, 21, 89,150,173, 2,160, 44,199,113, 97, 0, +160, 80, 40,146,100, 50,217, 45,155,205,118,201, 98,177, 92, 5,240,179,125, 33, 65,183,104, 31,245, 70, 5,194,229,245,204, 49, + 11, 29,181,229,167, 87,206,187, 62,238,178, 86,149,247,107,251,168, 55, 54,120, 43,178,254, 65,113, 85, 46, 60, 60,252, 93,251, +255,251, 37,180, 9,179,159,201,100,106, 34,147,201, 84, 28,199, 33, 41, 41, 41,117,201,146, 37,183, 23, 44, 88,208,146, 16, 50, +203,211,194,163, 13,235,149, 62,206, 48, 76, 52,236,242, 65,160,124,252,225,227,119, 75,164, 98,146,201,100,243, 94,122,233,165, +215, 55,108,216,160, 61,113,226,132,182, 90,181,106,142,242, 73, 16, 4,184, 26, 30,202,149, 43, 87,100,240, 1, 96, 25,134,153, +219,179,103,207,190,171, 86,173,210,222,190,125, 91, 27, 25, 25,233,224,116, 22,111, 34, 34, 35, 35,189,114,107, 80, 80,208, 55, + 29, 58,116,232,191,114,229, 74,249,150, 45, 91, 52,193,193,193, 8, 10, 10,130, 66,161,120,224,217,198,141, 27,123, 90,137,159, + 97, 24,102, 94,183,110,221,250,175, 93,187, 86,123,244,232, 81,109,141, 26, 53, 32,147,201, 30,217,239,221,187,119,239,187,102, +205, 26,237,153, 51,103,180, 21, 43, 86, 4,195, 48, 96, 24,230, 1, 62,134, 97, 80,170, 84, 41,175, 56,187,118,237,218,119,221, +186,117,218,147, 39, 79,106,171, 84,169,226, 8, 79,167,238,185, 98,187,243, 41,231,124,246, 4,150,221, 92,186,170,113,227,198, +237,247,238,221, 43, 3,128,147, 39, 79, 34, 61, 61, 29, 81, 81, 81,240,241,241,129, 74,165,130,201,100,162,197, 44,180,190,177, +139, 43, 57, 0,108,250, 95,119,220,144, 3, 35,146, 45, 80, 40, 20,184,126,253, 58,100, 50, 25,125,132, 66,177,153, 94,175, 95, +249,227,143, 63, 6,212,169, 83,135, 73, 73, 73, 65, 76, 76, 12,210,211,211,159,223,183,111, 95,221, 55,222,120,227, 13, 66,200, +171,148,210,125,222,114,254,250,235,175,208,233,116,208,106,181,208,233,116,176, 88, 44,228,161, 3,154,101,163,111,221,186, 21, +234,227,227, 3, 65, 16, 28,135, 75,255,181, 3,130, 32,160, 82,165, 74, 86, 15, 5, 99,244,237,219,183, 67, 53, 26, 13, 40,165, + 5,248,120,158,135, 74,165,114,110, 41,128,231,121,196,196,196, 88, 61, 89,174, 68,113, 5, 0,171, 87,175, 70,120,120, 56, 66, + 67, 67,161,211,233,160,209,104, 10, 84,232, 94, 22,224,104,223,190, 61, 62,253,244, 83, 76,159, 62, 29, 99,198,140, 41, 80,192, +202,229,114, 4, 6, 6, 98,219,182,109,208,235,245, 40, 83,166, 12,228,114,249,191,223, 18,200,144,192,195,199,239, 56, 44,178, + 47,182,170,202, 54,168, 91,102,145, 61,134,193, 48,128, 32,228, 87,153,132,128,114, 54, 33,227,207,211,247, 38,122, 17,158,145, +183,111,223, 14, 85,169, 84, 94,185,131,231,121, 68, 69, 69,201, 60,228,159,142,177,177,177,155,134, 14, 29,170,168, 88,177, 34, + 81, 40, 20, 96, 89, 22, 44,203,138,233,177, 12,165,180,140, 32, 8, 45,146,146,146,232,130, 5, 11,102, 18, 66, 94,162,148,254, +234, 54,189, 83, 99,173, 28,179,208,113,255, 95,120,190,103,155, 15,176,109,253,184,231,155,214, 22,224,171, 53, 94,179, 91,110, +158, 86,113,165,215,104, 52, 31,239,223,191,191, 82, 78, 78, 78,118,147, 38, 77, 62, 38,132,188, 83, 18,155, 49,103,100,100,156, + 19,255, 43,149, 74,140, 26, 53, 10, 29, 58,116,240,111,219,182,237,104, 66,200, 91,148, 82,107,225, 74, 64, 22,125,240,216,205, + 80,241,188,107,251,154,138, 70,245,203, 36,229, 55,196, 92,159,166, 16,120, 33,254,232, 95,241,245,188,240,239,204, 30, 61,122, +244,219,176, 97,131, 15, 0, 44, 94,188, 24, 61,122,244, 64, 96, 96, 32,180, 90, 45, 20, 10, 5,228,114,121,129, 95, 15, 22, 33, + 25,128,153,125,250,244,233,185,106,213, 42, 95, 0, 88,181,106, 21,186,119,239,142,160,160, 32,248,250,250, 66,169, 84, 66, 38, +147, 21, 59,252,130,130,130,190,105,242,252,243, 3, 87,174, 92, 9, 0,248,232,157,119,208,225,133, 23,224,163,213, 64,171, 81, + 66, 12, 11,165, 76,142, 23, 71,140,244,228,111, 6,192,172, 30, 61,122,244, 94,187,118,173, 47, 0,156, 56,113, 2,201,201,201, + 8, 11, 11,131, 70,163,129, 82,169,116,248,153, 16, 2,141, 70,227,149,223,123,244,232,209,115,205,154, 53,190, 0,176, 98,197, + 10,180,111,223,222,225,119,149, 74, 5,133, 66, 81,224,112, 21,155,238, 56, 95,122,233,165,158,235,214,173,243, 5,128,229,203, +151,163, 77,155, 54, 8, 8, 8,112,132,167,200, 85,156, 56,122,154, 57,159, 73,129, 37,142,141, 10, 11, 11,235,189,127,255,126, +198, 73, 28, 64,165, 82, 65,165, 82, 65,169, 84, 58,186, 9,139, 81,104,145,176,176,176, 1,251,246,237,115,188,100,161, 15,152, +168,139, 93,113, 59,241,183,105,217,178,229,154,173, 91,183,170, 21, 10, 5,140, 70, 35,206,157, 59, 7,127,127,127, 40,149, 74, +116,235,214, 77,214,184,113,227,160, 22, 45, 90,108, 36,132,244,245,102,134, 2,165, 20, 62, 62, 62, 5, 4,214,163,118, 33,107, + 52, 26,108,217,178, 5, 50,153,204,109,193,229,252, 63, 52, 52,212, 27,127, 67,165, 82,225,208,161, 67,144,201,100,144,203,229, + 96, 89, 22,114,185, 28,191,252,242, 11,222,123,239, 61,164,166,166,130, 16, 2,185, 92, 14, 95, 95,143,189,155, 36, 48, 48,208, + 95, 20, 87,162,248,209,104, 52,144,203,229,132,101, 89, 34,118,225, 17, 66,136,183,125,234, 12,195,224,251,239,191,199,140, 25, + 51, 48,118,236, 88, 44, 93,186, 20,181,106,213,114, 22,159,200,206,206, 70, 64, 64, 0, 2, 2, 2,160, 86,171, 31, 58, 45, 60, + 77,112, 13,157,217,115,230,107, 33, 80,228, 15,242, 16, 0, 1,160,160, 16,168,128,164,123,215,240,201,167,159,123, 93,235,168, + 84, 42, 28, 60,120,208, 33,130, 88,150, 5, 33, 4,206,194, 72, 60,194,195,195, 61,242, 41, 20,138,207,126,250,233, 39,229,247, +223,127,143,181,107,215, 58,210,150, 78,167,131,191,191, 63,130,130,130, 28, 71,116,116, 52,249,246,219,111, 21,181,106,213,250, + 12,192,175,238,227,156,250,105,203, 79,175,220,179,205, 7, 0,128,158, 31, 80,100, 92,153,250, 28,147, 57,209,239, 41, 22, 87, + 44,128,241, 91,182,108,169, 30, 25, 25,169,214,233,116,183,227,226,226,130, 70,141, 26, 53,158, 16, 50,225, 17, 55,101,206, 18, +173, 52,106,181, 90,221,188,121,115,229,180,105,211, 80,161, 66, 5,188,241,198, 27,129,139, 23, 47,238, 6, 96,125, 81,229,145, + 51, 22, 44, 92,228, 79,105,126,250,161, 2, 45,240,155,158,124, 11,239,140,254,196, 43, 71,149, 42, 85,106,240,198,141, 27,125, +156, 45, 73,206,149,191,115, 25, 37, 30,133, 9, 2,187, 21,131, 41, 93,186,244,192, 31,126,248,193,193, 25, 28, 28,236, 40,151, + 88,150, 5,195, 48,216,191,127, 63,226, 62, 27,143,128,144, 72,204, 95,184,216,163, 59, 67, 67, 67,151,118,236,216,241,127, 43, + 86,172,112, 92,171, 89,190, 60, 58, 53,126, 1,161,193,122, 4, 7,228,151,109, 84, 32, 56,125,233,166,199,250, 8, 0, 83,170, + 84,169, 55,214,175, 95,239,227,220, 16, 20,253, 10, 0,121,121,121, 14,171,189,197, 98, 65,189,122,245,188,242,187, 51,167,104, + 93, 19,197,154,107, 89, 47, 54, 96,138,226, 44, 85,170,212, 64, 81, 0, 3, 64, 96, 96, 96, 1, 14,185, 92,142,245,219, 86, 62, + 80, 55, 60, 42,103,113,227,221,149,243,230,205,155,152, 54,109, 90,129,120, 23,173, 89, 81, 81, 81, 88,176, 96, 65, 81,156,238, + 80, 31, 64,136,211,185, 5,128,210,233, 55, 5,192,159,110,158, 19,175,203, 1, 60,103,191,199, 3,200, 1,224,239,134,175, 48, +158, 84,228,111,247, 19,226,242,188,235,119, 10, 10, 44, 66,136,152,123, 91, 2, 56,152,154,154, 42, 92,188,120,145, 57,113,226, + 4,228,114, 57, 66, 67, 67, 81,191,126,125,177,251, 12,114,185, 28, 58,157,142,248,251,251, 39,137, 21,174, 24,120,206,125,233, + 78, 66,134, 73, 79, 79, 23,118,238,220,201,172,122,169, 29, 44, 20,168,253,113, 28,218,119,238,140,237, 81, 74,200, 0, 60,127, + 49, 21, 90,173,150,149,203,229, 54, 49, 18, 68, 78,231,177, 89,174,226,136, 16,226,171,211,233,190,253,249,231,159,213, 12,195, + 32, 39, 39, 7,130, 32,160, 73,147, 38, 96, 24, 6,103,207,158,197, 71, 31,125,132, 77,155, 54,225,167,159,126,210,212,169, 83, +231, 91, 66, 72, 53, 74,105,142, 83,225,181,203, 93,226,244,245,245,133, 86,171,117, 8, 44,209,207,206,166,110,241,121, 74,233, +189,212,212,212,186, 69,113,242, 60,143,238,221,187,131, 16, 2,153, 76, 86,160,208,113,254, 85, 40, 20, 56,123,246,236, 3,137, +207,157, 48, 20,253, 10, 0, 90,173, 22, 62, 62, 62,216,179,103,143,227,126,237,218,181, 97,177, 88, 16, 28, 28,140, 11, 23, 46, +184, 43,184, 11,112,166,164,164,208,132,132, 4,178,106,213, 42,200,229,114, 4, 5, 5, 65,171,213,146,149, 43, 87,142, 87, 40, + 20,209, 38,147, 73,176, 88, 44, 80, 42,149,243, 69,107, 22,203,178,134,172,172,172,160,194, 56,101, 50, 25,134, 14, 29,138,247, +223,127, 31, 75,151, 46,197,219,111,191,253,128,133,203,100, 50, 33, 56, 56,216, 33,178,188,241,251,163, 11,160,199,204, 41, 80, +156, 59,185, 29,231,207,236,130,192, 11,224, 5, 10, 74,121, 8, 28,112, 98,231,145, 74,247,111, 36, 68, 81, 80,192,222,145,161, +202,202,229, 90, 4,171,170, 0,216,188, 39,213, 60,215, 83,250,100, 89, 22, 54,155, 13, 63,255,252, 51,174, 93,187,134, 29, 59, +118,192,104, 52, 58,194,177, 97,195,134, 24, 56,112,160, 91,129,229,202, 73, 41, 93,113,247,238,221,218, 77,154, 52, 33,153,153, +153,200,204,204,132,209,104, 4,207,243,224, 56, 14, 44,203, 66,173, 86, 67,163,209, 32, 44, 44, 12, 38,147,137,154,205,230, 21, +133,113, 10, 2,201,202,187, 62,238,242,182,245,227,158,239,249, 1,197,134, 25, 4, 21, 74,171,242,126, 63,238, 59,112,243,129, + 49,109, 1, 80,193, 94,234, 48, 0,181,241, 66,234,251,227,191, 24,254,196,227,168, 32, 6,207,153, 51,167, 65,147, 38, 77, 66, +179,179,179, 47, 10,130, 64, 95,126,249,101, 92,190,124,185,218,226,197,139, 7, 3, 88, 88, 92, 78, 66, 72, 75,251,253, 17,206, + 21,252,182,109,219, 94, 2, 48, 96,217,178,101,232,209,163, 7, 22, 47, 94, 28,235, 42,176,156, 57, 41,165,184,117,101, 63,110, + 93, 61, 0, 65,160, 78, 86,112,247,255,169,151,238, 52, 24, 12,166,191,254,250,203,103,217,178,101, 8, 13, 13, 69,185,114,229, +160,213,106,161, 86,171, 11, 84,174,206, 21,174,167,188,105, 52, 26, 77,183,110,221,242, 89,179,102, 13,130,130,130, 80,182,108, + 89,104,181, 90, 40,149, 74, 71, 67, 96,213,170, 85, 88,253,105, 63,220,186,116, 6,221, 59,181,245,232, 78,173, 86,251,191, 21, + 43, 86, 20, 48,121,132, 5, 4,128,149, 51,144,201, 9, 2, 90,191,148,111, 37,252,227,199, 66, 87,119,116,225, 36, 57, 57, 57, +166,163, 71,143,250, 28, 63,126, 28,130, 32,160,108,217,178,200,203,203,131, 94,175,119,248,127,231,206,157,232,214,173, 27,190, +255,254,123, 52,108,216,208,163,223,115,115,115, 77,103,206,156,241,249,225,135, 31, 16, 24, 24,136, 82,165, 74, 57,252, 46, 30, +114,185, 28, 50,153, 12, 49, 49, 49,200,202,202,130,143,143,143,199, 56, 58,113,226,132,207, 15, 63,252,128,128,128, 0, 68, 71, + 71, 59, 44,108,162, 40,154,177,232,211, 2, 28,106, 18,241,200,156,197,141,119, 87,206,151, 94,122, 9, 21, 42, 84,128, 94,175, +135, 78,167,115,112, 23,197,233,164, 69, 90, 80, 74,247,186, 68, 97, 8, 33,100,171,211,247, 59, 19, 66,182, 58,255, 22,246,156, +253,111,179,241,227,199,215,155, 62,125,250,180,134, 13, 27,174, 57,116,232,208,234,194,248, 10,227, 25, 63,126,124,236,244,233, +211,167, 57, 63,239,230, 59, 15, 90,176, 40,165,196,238, 57, 22, 0,170, 86,173,138,244,244,116,168, 84, 42,212,175, 95, 31,169, +169,169,240,241,241,129, 66,161, 0,165, 20,195,135, 15,151,141, 25, 51, 38,148, 97, 24,112, 28,231, 40,240, 11,233, 75, 23, 24, +134, 65,163, 70,141,112,206,222,243,211,190,115,103, 68, 71, 71, 67, 28,196,161, 86,171, 49,124,248,112,242,222,123,239,177,162, +245,130, 82, 10,163,209,136,136,136, 8, 77, 17, 93,111,239,108,220,184,209, 79,169, 84, 34, 39, 39,199,209, 69, 38,147,201,112, +241,226, 69,204,154, 53, 11,175,189,246, 26,238,220,185,131,200,200, 72,188,255,254,251, 62,211,167, 79,127, 7,192, 36, 79, 5, +177,143,143,143, 67, 92,105,181, 90,188,243,206, 59,108,227,198,141, 67,125,124,124,224,235,235, 11,177,187,143,231,121,148, 47, + 95,222,163, 20, 23, 4, 1,219,183,111, 7,203,178, 30, 45, 88,246,132,231, 21,231,209,163, 71, 29,226,204,185, 85, 68, 8,193, +185,115,231, 28, 98,206, 11, 78,202, 48, 12,116, 58, 29,194,195,195,161,209,104,160,213,106,201,154, 53,107, 38,148, 43, 87, 46, +226,189,247,222, 99,178,179,179,153, 70,141, 26,161, 71,143, 30,172, 32, 8,176, 90,173,136,141,141,245,104,105,219,187,119, 47, +150, 44, 89,130,183,223,126,219,173, 5, 75, 28, 4,169,215,255,227,115, 28, 74, 12, 2, 0, 43,103, 67, 94,174,209,209,133,203, +243, 60,206,236, 57, 85,233,198,169, 43,177, 91,215,124, 47, 7, 0,211,158, 31,157, 95,139,232,177,104, 93,229, 22,129,138,163, +123,210,173, 71, 61, 89, 6, 71,142, 28,137,137, 19, 39,162, 79,159, 62,216,185,115, 39, 62,250,232, 35,188,241,198, 27, 5, 44, + 88,222,192,102,179,125,245,234,171,175,190,189, 97,195,134, 42, 31,124,240, 1, 35, 90,176,180, 90,173, 56,134, 11,102,179, 25, + 70,163, 17,151, 46, 93, 18,222,124,243,205,203, 22,139,229,171,194,248, 56,162, 57,173, 85,229,253, 90, 62,154,169, 96,184,249, +185,111,147, 23,202, 26,137,166,110,214, 75,149,219,208,142, 3,202, 6,128, 82, 80, 1, 16, 40, 96, 54, 27, 48,124,248, 40,217, + 63, 25, 87,132,144,142,125,251,246,237, 50,120,240,224,114, 57, 57, 57,215, 57,142,179,137,247, 62,250,232, 35, 92,185,114,165, + 29, 33,228, 86, 97, 93,162,133,112, 70,151, 47, 95,126, 20,207,243,148, 16,114,141, 82, 26,111,191, 53, 31,128,223,222,189,249, +245, 71,116,116, 52, 0,196, 18, 66, 86, 1,200,114, 22, 99,206,230, 80,155,141,131,209,104, 46, 82, 88,137,231,148, 10,222,186, +145, 86,169, 82, 5, 93,186,116,129, 92, 46,119, 52,210,156,187,199, 92,133, 86, 81,229, 7, 0,129, 16,130,200,200, 72,116,236, +216, 17, 10,133,162, 0,167, 88,161,118,236,216, 17, 35, 39,125,140,175, 70,182,194,146, 87, 43,161,205,148,164, 34,221,153,151, +151,151,187,123,247,110,205,251,111,191,141,231, 42, 86, 68,176, 94,143,210, 97, 33,208,168,148, 80, 56,187,137,120, 54,170,211, +252,202, 78,144,201,100,168, 81,163, 6,146,146,146,112,243,230, 77,220,188,121, 19, 12,195,160, 73,147, 38, 14, 75,240,213,171, + 87, 49,105,210, 36,152,205,102,175,253, 94,177, 98, 69,180,106,213, 10, 74,165, 18, 90,173,182, 64,215,160, 24,166, 57, 57, 57, +168, 80,161, 2, 54,111,222,140,202,149, 43,123,228,172, 90,181, 42,154, 55,111, 94, 32, 60, 53, 26,141,163,222, 0,128,187, 71, +115, 29,223,136,138,138, 42, 22,231,142, 99,119,176,108,231,110,152, 45, 2,178,243,108, 5, 94,136, 8,214,227,192, 15, 31,120, +229,119,145,243,171,175,190, 66, 86, 86,150,163,238, 17,141, 37,162,113,162, 84,169, 82, 88,178,100, 73, 97,241, 35,106, 17, 82, +200,253,206, 94, 54,164,196,231,196,196,165,154, 62,125,250, 52,215,247, 61,241, 57,223,119,121,223,226, 34,202,146,138,236, 34, + 20,235, 5, 49, 19, 68, 69, 69, 65, 28,231, 33,102, 16, 71, 1,202,113,216,180,105, 19, 66, 67, 67, 29,135,159,159, 95,161, 9, + 90, 28, 39, 52, 50, 37,127,152,193,182, 72, 5,110, 1,232,148, 66, 29,227, 68,120,158,199,198,141, 27,225, 44, 96,124,125,125, +139,236, 46, 82, 42,149, 45,234,215,175,207,152,205,230, 7,196,213,244,233,211,209,183,111, 95, 84,174, 92, 25,130, 32, 32, 55, + 55, 23, 45, 91,182,148,207,159, 63,191, 69,113, 4,150, 86,155, 63,158,223, 98,177, 96,207,158, 61, 8, 8, 8, 64, 80, 80, 16, + 2, 3, 3,225,235,235, 43,206,132,164,158, 68, 6,165, 20,221,187,119,119, 84,124,206, 86, 43, 87,177,117,232,208, 33,175,186, +222, 40,165,120,225,133, 23,160,211,233,224,227,227, 3, 31, 31, 31,108,223,190,221,241,204,243,207, 63, 15, 65, 16, 16, 26, 26, +138,195,135, 15, 23,217,205, 73, 41,165, 10,133,194,241,188, 92, 46, 39, 43, 87,174, 28, 31, 19, 19, 19, 49,122,244,104, 70, 38, +147,225,228,201,147, 56,127,254, 60,202,150, 45,235,245,152,172,204,204,204,251,227,199,143,231,199,143, 31, 15, 0,136,141,141, + 69,102,102,102,178,120, 63, 59, 59, 59,173, 93,187,118, 5,198,101,164,166,166,166,253,235, 5,150, 32,128,179,114,200, 51,153, +144,155,147,231,176, 6, 37, 39, 36,249,127,240,222,187,242, 89,195, 95, 7, 0,188, 55,119, 33,114,150,254, 93,128,253,248,126, +223,208,151,102,173, 25, 7,160,155,135, 74, 7,102,179, 25,101,202,148,193,177, 99,199,144,147,147,131, 54,109,218, 20,176,144, +138, 97,234,201, 20, 79, 41,181, 16, 66, 26,119,238,220,249,207, 57,115,230,148,175, 86,173, 26, 49, 24, 12,200,203,203,131,243, +239,153, 51,103,232,234,213,171,111,228,229,229, 53,162,148, 90, 10,227,219,126,239,155,107,237,163,222,216,240,251, 73, 89,231, +208, 10,151,245,247, 50,202,115,105,247, 84,134,108,227, 37, 19, 79,207,131,242, 0, 15, 1,148, 19,192,219,187,183,254, 65,113, + 85,163,124,249,242,111,205,159, 63, 63,204,100, 50,221,179,217,108, 6,215,188,187,120,241, 98,116,236,216,241, 45, 66, 72,188, +167, 1,233,246,119,148,254,254,254, 31,237,217,179, 39,246,254,253,251,137,141, 27, 55, 30, 71, 8, 25, 77, 41,181, 84,169, 82, +197,239,248,241,227, 77,228,114,185, 50, 51, 51,243,172, 94,175,135,197, 98,169, 97,179,217, 44,245,234,213, 59,224, 54,126, 4, +192,102,179,193,104, 52, 35, 43, 43, 7, 22,171,205, 94,102, 10,224,121,206,254, 43,128,179,151,163, 74, 5,235, 91,183,102, 68, + 46,165, 20, 12, 33,153,199,207,220, 47, 85, 88,185, 84, 88, 87,150, 55,214, 43, 55,224,197, 89, 99, 65, 65, 65,144,203,229,248, +254,251,239,113,250,224,118, 40,101, 20, 60,103, 3,103,179,130,183, 89, 32,151,201,240,251,201,155,104, 91,213,215,155, 56,162, +193,193,193,232,212,176, 33, 58, 55,108,152, 63, 93,141,101,225,163, 82, 65,171, 80,231, 91,174, 0, 80,158, 1,188, 75, 74,130, +232,206,176,176, 48, 28, 63,126, 28, 35, 71,142,196,140, 25, 51,160,209,104, 28,179,153, 47, 94,188,136,117,235,214,161,109,219, +182,197,246,187,104,177, 27, 55,110, 28, 18, 18, 18, 48,119,238, 92,212,173, 91, 23,114,185, 28,153,153,153,104,212,168, 17,146, +146,146,188,226,116,238,198, 83, 42,149, 5,172, 77,162,240, 43,110, 28, 57,115,190,222, 61, 2, 91, 14,174, 6, 1,193,145, 31, +222, 45, 80, 23, 45, 94,187,191,216,156,159,124,242, 73, 1,119,122, 99,189, 42, 70,126,221,234,141,200,114,122,238,132,104, 92, + 29, 55,110,220,135,132,144,173,227,198,141,251, 48, 46, 46,238,156, 55,124,133,220,255,197,254,219,201,233,218, 9,143, 2,139, + 82, 74,149, 74, 37, 4, 65, 40, 32,170, 92, 7,212,138, 38, 63,103,147,162, 39, 49, 32, 8,130, 35, 49,184, 54, 87,101, 50, 25, + 14, 31, 62,140,195,135, 15, 23,184,190,108,217,178, 34, 43,112,142,227,170,249,250,250, 22,176, 94, 41, 20, 10,140, 27, 55, 14, +253,251,247,119,136, 43,133, 66,129,229,203,151,163, 94,189,122,176, 88, 44,213, 60,140, 71,201, 11, 15, 15,103,196, 2, 72,167, +211,145,145, 35, 71,202, 56,142,115,132,137,120,136, 99,211, 60, 37, 22,113, 86,202,142, 29, 59,188,178, 96,121, 59, 6,137, 82, +138, 83,167, 78, 21, 16,109,226, 44, 24, 0, 56,117,234,148, 99,124,150, 55,156, 50,153, 12, 60,207, 67,163,209, 16,133, 66, 65, + 20, 10, 69,180, 40,174,100, 50,153, 35,190,157,199,228,121,242,251,189,123,247, 90, 22,117, 63, 57, 57,249,153, 93,142,193,106, +179,193,152,103, 65, 78,174, 17,159,197,125,151,127,241, 51, 28, 5,112,180,241,224,145, 24,218,190,109, 43,151,126,126,111, 10, + 24, 71,165,184,113,227, 70,200,229,114,108,222,188, 25,122,189, 30, 93,187,118,133, 94,175,199, 7, 31,124,128, 62,125,250,120, +109,193,178,167,165, 44, 66, 72,227,119,222,121,231,207,207, 63,255,188,116,169, 82,165, 96,177, 88, 96,181, 90, 97,177, 88,112, +237,218, 53,172, 94,189,250,110, 94, 94, 94, 99, 74,105,150, 39,190,237,247,190,185,182,105,223,123, 9,109,250,244, 48, 94, 76, +218,134,196,196, 52,112,220, 61, 8, 60, 7, 43,151, 63, 35,153,231, 56,112, 28, 15,133, 66,166,255,124,234,187, 59, 5, 80, 48, + 12,177,244,236,217,179,195, 19, 18, 87, 1, 0, 6, 95,191,126, 61, 39, 40, 40,232,140,253,178, 62, 33, 33,129, 0, 64,100,100, + 36, 5,224, 60,192,125,176,125, 60,150,167, 77,155, 7,255,252,243,207,141,252,253,253, 45, 12,195,100,124,244,209, 71,165, 62, +253,244,211,193, 0,230, 93,186,116,233,187, 87, 94,121,197,207,185, 5,159,150,150,118, 98,240,224,193,184,116,233,210,119,238, + 77, 4,118, 11,150,201,132,148,180, 12, 12, 26, 60,193, 97, 58, 0,104, 1, 81, 65, 65, 49,100, 4,212, 0,144,154,116, 13,175, + 15, 26,169,242,212, 16,112, 87, 1, 22, 99, 12,142,179,101,200,145, 70,125,124,124,242,187,217, 54,175,198, 47, 95, 12, 6,120, + 43,168,205, 8, 88,243, 0,107, 46, 4, 75, 30,136, 66, 3,216,140,222,196, 19,245,241,241,129,143, 70,131, 80,127,255,252, 69, + 28,101, 50,200,229, 44, 4, 27, 64,120,226, 16,162, 2,239, 85, 90,167,193,193,193, 16, 4, 1, 26,141, 6,183,110,221,194,208, +161, 67, 97,181, 90,209,189,123,119, 88, 44, 22,152, 76, 38, 24,141, 70,196,196,196, 32, 47, 47,207, 43,191,139,229,188,216,219, +243,238,187,239,162, 94,189,122,152, 52,105, 18,198,142, 29,139,152,152, 24, 12, 25, 50, 4,171, 87,175, 70,108,108,108,145,188, +206,225, 41,114,138,241,226,218,149, 7,160,216,113,228,202,153, 63,238, 31, 15,196,251,168, 87, 91, 23,155, 51, 46, 46, 14, 41, + 41, 41, 15, 88,174,196,255, 81, 81, 81, 88,188,120,241, 67,229, 89, 39,107, 81,152,155,219,157,220, 88,158,234, 35,127,108,148, + 57, 46, 46,238, 92, 92, 92, 92,103, 66,200,214,184,184,184,206, 69, 88,176, 58,121,176,112,117, 66,254,152,171, 34,193,186,244, +125,182,112,182,140,136, 21,168, 88,145, 59, 23,238, 90,173, 22,155, 54,109,130, 56,163,195,249,153,162, 4,214,175, 33,118, 19, +177,221,114,229,124,222,165, 75, 23,148, 43, 87,174,128,245, 74,163,209, 20,153,104, 4, 65,192,237,219,183,113,246,236, 89, 52, +108,216, 16, 89, 89, 89,144, 51, 12,222, 59,115, 6,213, 95,125, 21, 22,187, 69, 70,169, 84,226,237,183,223,246,106,160,250,205, +155, 55, 3,156,207,131,131,131,227,155, 54,109, 26,117,236,216, 49,199,192,119,123,247,153, 67,104,120, 35, 94, 40,165,120,249, +229,151, 11, 88,173,156,197,149,243,177,109,219, 54,175,186, 8, 41,165,104,218,180,169,195,122,229,235,235,139,159,126,250,201, + 17, 87,205,154, 53,203, 31,175, 16, 22,230, 21,167,232, 15,251,192,118,152, 76, 38, 33, 39, 39,135, 57,113,226, 4,148, 74,165, +195, 98,167,209,104,160, 86,171,161, 82,169, 30,106, 70,208,127, 1,148, 10,176,216,108, 48, 26,141,200,205,205, 95, 33,228,218, +217,141, 5, 5,152,249,225, 39,167,137, 86,170,156,156, 28,252,254,251,239,248,241,199, 31, 81,183,110,221, 7, 6,185,123, 99, +193,114, 74, 79, 41,132,144, 38, 99,198,140, 57, 50,101,202,148,200,192,192, 64, 88,173, 86,220,185,115, 7,223,126,251,109, 66, + 94, 94, 94, 19, 74,105,138,247,129, 0,216,108, 28, 76,121,102,100,101,231,224,211,169,203, 11, 77,122, 0,144,158,124, 9, 93, +186,246, 82, 62,185, 56,162, 25, 0,134,186, 84,230,171,240,247,154, 85,217,148,210,254,197, 20,109, 45,103,204,152,209,167,110, +221,186,190, 89, 89, 89, 23, 0,224,205, 55,223,196,201,147, 39, 91, 19, 66,206, 81, 74,119, 19, 66, 98,235,212,169,211,250,205, + 55,223, 4, 0,124,253,245,215,216,186,117,235,239,148,210,221,133,165, 37,177,139, 48, 55,215, 8,189,127, 4,238,221,220,235, +209, 45, 10,153, 9, 84, 16, 60, 54,252,220, 89,173,156,203,167, 98,164, 31, 42,142,249, 19, 43,234, 14, 47,191,138, 14, 67,167, + 67, 43, 7,166,189,222, 24, 49,254, 0, 52,129, 80, 52,251, 0,196,191, 76,254,139, 67,127,246,138,127,236,146, 37, 56,121, 37, +127,133,151,232,144, 16,140,233,211, 7,212, 6, 28, 58,127, 30,107,119,239, 70,159,150, 45,161, 85,171,189,110,168,136,141,239, +107,215,174,225,208,161, 67,168, 90,181, 42,174, 94,189, 90, 96, 57, 9, 74,169, 87,254,167,148, 82,113,114,146, 74,165,130, 92, + 46, 71, 98, 98, 34, 58,119,238,236,104,224,239,221,187, 23, 99,198,140,193,192,129, 3,209,162, 69, 11,183,227, 98, 93, 57, 67, + 66, 66, 28,134, 3,215, 9, 8,206,221,182,197,137, 35,119,156, 34, 30, 54,222,157, 57,167, 78,157,234,118,162,132, 55,156,206, + 90,164, 8,156,112,177, 30, 65, 28, 15, 37, 10, 34,215,115, 0, 1,226,181,113,227,198,125,232,237,123,206,231,162, 5,204,219, +174, 74, 86,236,243,116, 87,201,138,230, 98,119,208,233,116, 24, 54,108, 24, 38, 78,156,136,224,224, 96,143, 99,103, 68,229, 90, + 20,126,254,249,193, 76,182,121,243,102, 79, 93,132, 23,253,252,252,234,181,106,213, 10, 89, 89, 89,184,123,247, 46,116, 58, 29, +170,127,241, 5,206, 12, 29,138,231,150, 44, 1,211,170,149, 99,145,212, 51,103,206, 64,163,209, 92, 44,174,197,192,215,215, 23, + 1, 1, 1,142, 62,117, 81,104, 57, 89,176,168, 23,137, 16,191,254,250,171,219, 86,226,195,140,193, 18, 51,255,145, 35, 71, 10, +140,191,114, 22, 60, 71,142, 28,113, 88,176,196,215,188,233,218,210,104, 52, 84,228,211,106,181, 8, 12, 12,132, 74,165,130, 70, +163, 41, 32,174,188,177,222,121, 90, 72, 84,163,209, 28,211,233,116,254,226,125,185, 92,142,156,156,156,204,180,180,180,231,255, +213, 93,132,160,224,172, 28,140, 70, 19,114,115, 74,126, 45, 73,113,194,201,166, 77,155,240,194, 11, 47, 60, 32,174,196,176,126, + 8,209, 17, 79, 8,105, 49,111,222,188,163,179,103,207, 14,200,205,205,197,119,223,125,151,149,155,155,219,194,105, 28,145,119, + 92, 2,133,205,106, 69,158,201, 12, 67,110,126, 24, 92, 63,183,241,153, 22,214, 85,170, 84,121,125,200,144, 33, 33, 57, 57, 57, +215, 5,225,111,123,202,236,217,179,113,253,250,245,215, 1,236, 6,176,100,234,212,169, 21,107,214,172, 89, 10, 0,166, 78,157, +122, 23,192,146,162,202, 14,171,189,139, 48, 55, 55,223,234, 97, 50,164,150, 76, 58,181,139,140,194,198, 92, 61, 76, 87,142, 56, +115, 89, 38,147, 97,248,240,225, 56,115,250, 52, 90, 71,102, 35, 38,220, 23, 52,251, 30, 20,173, 62,193,169, 20, 13,102,205,249, +181,216,220,235,156, 38,241,204, 90,183,206,237,189,235,221,186, 21,203,239,151, 47, 95,134, 70,163, 1,207,243, 15,212, 55,197, +245,191,179,112,153, 51,103, 14,198,140, 25,131,229,203,151,227,204,153, 51,120,238,185,231,208,166, 77, 27, 36, 39, 39,227,244, +233,211, 48,155,205, 94,187,211,121, 92,220,229, 27,231,177,235,208,111,184, 29,127, 19, 9,137,119, 31, 58,222,157, 57, 93, 5, +214,166, 93,127,225,229,182,117, 30,138,243,147, 79, 62, 65,114,114,114, 1,203,149,243,196,176,194, 44, 88,174, 90,196, 5,169, + 46, 99,157,196,115,139,139,216,113, 61,119,125, 30, 0,146, 1,200, 60,188,231,122,158, 26, 23, 23,183, 71,180,124,217,121,101, +133,141,191,114,219, 69, 40,138, 33, 49,131,184, 90,166,196,255, 58,157, 14,190,190,190,240,245,245,133, 94,175,247,104, 25, 18, + 5, 86,211, 27, 57, 5,198,114,137,150, 44, 0, 24, 56,112,224, 3, 22, 44,231, 5, 57,221,193,108, 54,239,221,187,119,111,237, + 46, 93,186,200, 46, 94,188, 8,153, 76, 6, 65, 16, 96,105,216, 16,207, 45, 89,130,179,239,190,139,230,183,110,193,100,181, 66, +173, 86, 99,251,246,237,214,188,188,188,189,197, 45, 47,156, 5,150, 78,167,131,159,159,159, 67, 96,120,163,202,197, 76, 91,212, +248, 6,241,112, 30,228,239, 77,102, 22, 43, 82,231,113, 55,132, 16, 24,141, 70,199, 96, 77,111,172,140,206, 93,132,206, 25,143, + 97, 24,248,251,251, 59, 10, 13,209,130,229,173,245,206,211, 66,162, 90,173, 86,127,233,210,165, 10,226, 50, 18,169,169,169,104, +213,170,213,149,127,125, 77, 43, 0, 86,142, 71,174,209,132, 92, 99, 94, 73,118,107, 1, 0,190,255,254,123, 92,187,118, 13, 86, +171, 21,113,113,113, 15, 8,171,226, 12,114,119,147,174,174,213,169, 83, 71,120,241,197, 23,113,228,200, 17,168, 84, 42, 27,165, +180,216,235, 87, 9, 84,128,149,227, 96, 50, 26,145,107, 48,252, 39, 44,151,151, 46, 93,202,242,245,245, 61, 12,192,231,202,149, + 43, 50,157, 78,135,242,229,203,195,100, 50,101, 1,200,178,135,175,133, 16, 50,253,237,183,223,158, 11, 0, 54,155,109,122, 81, + 99,218, 40,165,176,113,118,177, 94,130,225, 40,166,165,194,202,164,135, 89, 46,197,185, 66, 21, 4, 1,111,189,249, 38,218, 68, +102,227,165,186, 33, 48,220,191, 2,173, 95, 8,136,127, 89,204,154,243, 43,206,221,240,122,168, 37, 5,128,246,205,186,161, 86, +213, 7,151,247,106,210, 58,191, 45,118,224,247, 99, 72, 74, 77, 40,182,223, 13, 6, 67,161,150, 42,111, 45, 88, 34,167,184, 92, +138, 92, 46, 71,237,218,181, 81,169, 82, 37,236,217,179, 7,117,234,212,193,213,171, 87,113,245,234, 85,220,186,117, 11,103,206, +156, 65, 70, 70, 70,177,227,232,167, 29,107,145,145,147, 14,165, 66,137,244,204, 84,220,190,119, 19, 97, 65,225,143, 28,239,142, + 6, 66,167, 79, 1, 0,145, 33,126,197, 18, 88,206,156,159,127,254,249, 3,162,189, 4,150,222, 57,230,225,188,184,239, 63,118, +176,133, 88,133,140,129,129,129, 26,231,254, 83,134, 97,224,231,231, 71,102,204,152, 33, 99, 24, 6,190,190,190,240,243,243,131, +104, 22,244, 4,165, 82,105, 44, 91,182,172, 70, 76,128, 98, 6,212,235,245,178, 25, 51,102,144,101,203,150, 21,106,213,242, 48, + 6,107,118,255,254,253,223,136,143,143, 15, 8, 13, 13,197,253,251,247,161, 84, 42,243, 51, 69,203,150,104,122,227, 6,172,249, + 99,138,112,249,242,101,124,245,213, 87, 6,179,217, 60,187,184, 1,229,227,227,131,160,160, 32, 71,215,160,104,193,113, 18,139, + 94, 13,173, 44,202, 20, 47,182,248, 30,166,171,200, 85,100, 13, 30, 60,184,128,216,242, 22, 10,133,130, 19, 87,106,103, 24, 6, + 86,171, 21,117,234,212, 65,114,114,178, 35,179, 56, 91,238,188, 17, 88,158, 22, 18,101, 89, 22, 22,139, 5,205,154, 53, 3, 33, + 4, 11, 23, 46,124, 54,186, 29, 5,129,248,248, 4, 33, 50,178, 50, 66, 66, 77, 16,132,146,219,253,133,227, 56, 12, 25, 50,164, +128,197, 74,156,169, 40,118,241, 83, 74, 97,179,217, 30,122,209, 86, 49, 95, 63,202,250,111, 20,112,116,109, 25, 12,166,127, 93, + 20, 70, 71, 71,235,237, 93,134,174,112, 63,219, 15,127, 47,201, 64, 8,153, 18, 31, 31, 95,179, 74,149, 42,104,222,188, 57,182, +109,219,182, 25,192,143, 46,150,194, 47,197,255, 69,199,133, 61, 28, 77,102, 24, 12, 37,111, 13, 45,170,161,247, 40,194,109,226, +196,143,209, 38, 34, 19,221,159,243,195,138,173, 7,209,175,182, 6,176,168,138,205, 39,186, 37, 40,170, 28,202,213,104,240,192, +125,181, 95,126,215, 92,185, 26, 13, 32,187,123,181,216,126,119,118,179,155,165, 3, 30, 41, 60, 7, 13, 26,132, 15, 62,248, 0, +237,218,181,195,213,171, 87,177,111,223, 62, 92,189,122, 21, 35, 71,142, 68,108,108, 44,158,123,238,185, 98,113,110,217,181, 1, +217,185, 89, 96, 8,131,244,172, 52,152,204, 70,140, 29, 50,241,145,227, 93,196,205, 93,113, 0,128,141, 59, 79, 62, 52,231,135, + 31,126,136,196,196,196, 2,150,171, 71, 25,119,245,111,133, 91,129,149,150,150,230,182,191, 47, 36, 36, 36,169,109,219,182,161, +247,239,223,135,143,143,143, 71,113, 69, 8,105, 35,174,149,145,152,152,232,150,211,215,215,215,218,182,109, 91,121, 68, 68, 68, +129,217,131, 58,157,238,129,204,229,202,105, 47,152,114, 8, 33,111, 53,110,220,120,197,182,109,219,180,149, 42, 85, 66,118,118, + 54, 40,165, 88,190,124, 57,134, 15, 31, 14,181, 90,141,203,151, 47,163,107,215,174,121,121,121,121,111, 57,175,129,229,142,179, +176, 22,153,184,138,189, 27,113, 85,164,223,157, 51,233,188,121,243, 48,109,218, 52,124,248,225,135, 69, 70,204,210,165, 75, 1, +151,238, 60,119,156,148, 82,204,154, 53,171,196, 56,211,210,210,150,187, 88,159, 22,190,244,210, 75,236,221,187,119, 11,136, 42, +231,195, 77,129, 84,128,211,211, 66,162, 50,153, 12, 97, 97, 97,152, 50,101, 10,130,130,130, 16, 30, 30,254,128,229,197, 83, 28, + 61,100, 37,240, 88, 57,121, 42,156,248,124,250,199, 77,190, 91,181, 69,174, 82, 2,135,247,109, 68,118, 70, 98, 65, 11,172,245, +239, 41,209,202, 58,173, 97, 57,249,187, 87,238, 52,155,205,152, 57,115, 38, 62,253,244, 83,124,250,233,167,222,196,251, 35,249, +221, 27,145,229,150, 83,160, 68,171, 11,128, 90, 23,137,234,177, 1, 16,138,185, 86,231, 63, 20,239, 66, 66, 66, 2, 34, 35, 35, +113,245,234,213, 26, 50,153,172,128, 34,224,121,222,172, 86,171, 15,120,193,121,118,211,166, 77, 53, 39, 76,152,128,105,211,166, + 1,192,128,189,123,247,190, 66, 8, 49,121, 18,105,174,156, 2,165, 68,163,245,135, 90, 23,129,234, 53,252, 33, 8, 92,137,248, + 93,172,252, 92,173, 87,197, 92, 72,218,109, 89, 7, 0,127,254,190, 25, 19,223,173,129,229,191, 28,197,252, 99, 64, 45,255,100, + 84, 15, 73,129,144,114, 17,239,247,171,135, 89, 63, 28, 7, 0,236,219,235, 49,142,138, 92,215,216,100,180, 62,146,223,157, 45, + 85,206,223,241, 52, 6,203, 29,167,216, 56,204,201,201, 65,102,102, 38, 86,172, 88,129,215, 95,127, 29,201,201,201,184,117,235, + 22,174, 92,185,130, 53,107,214, 56,102,167, 23, 55,142,222,123,243, 35, 76,152, 53, 26, 20, 20, 85, 42, 84,199,184,161,159,162, +126,173,134,143, 28,239,174,240,100,189, 42,138,115,222,188,121, 15,149,150,254, 19, 2,171,168, 86, 4,195, 48, 8, 14, 14,118, + 36, 14,231,132,247, 48, 45, 93,153, 76, 6,142,227, 28, 99,123,196, 3, 0,186,116,233,130,159,127,254,217,155,153, 17,219, 8, + 33,255,171, 86,173,218,183,159,125,246,153, 79,243,230,205,217,200,200, 72,212,175, 95, 31,151, 47, 95,198, 47,191,252, 98, 91, +180,104,145, 33, 47, 47,111, 32,165,116,231,195,148, 75,226,214, 51,206, 71,113, 90, 57, 86,171,245,238,213,171, 87, 35,102,205, +154, 37, 99, 24, 6,115,231,206,117,100, 70,113,161, 86,103,236,219,183,143, 19, 4,161,200, 46, 25,155,205,118,247,234,213,171, + 17, 95,124,241,133,140, 16,226,224,100, 24, 6,206, 27, 43, 23,135,211,157,184, 20, 39, 60,184, 59,220,185,221, 93, 28, 23,181, +144, 40,203,178,184,124,249, 50, 38, 78,156, 8, 66, 8, 54,110,124, 54,198,232,156,185,152,186,236,185,234,161, 1, 93, 58, 52, +169, 9, 66, 96,181, 60,216, 3,228,147,145,235, 16, 87, 47,125,177, 22, 63,190,215,199, 27,177,115,237,192,129, 3,129, 51,103, +206,100,101, 50, 25,230,204,153, 83, 96,177, 95,215,120,223,191,127, 63,247, 48,221,123, 98,126,182, 90,173, 48, 26, 31,206,106, + 66, 41, 61, 20, 55,117, 66,219,149,223,255, 42, 39,196,130,195,123, 55, 34, 43,211,253,212,116,165,156,197,178, 21,155, 56,133, + 92,118,247, 31,142,186,249, 61,123,246,156,176, 97,195, 6, 22,192,185, 71,224,217,252,205, 55,223,116,232,213,171, 87, 96,197, +138, 21,241,221,119,223, 41,252,253,253,235, 18, 66,136, 59,145,230, 33, 28, 55, 79,159, 58,225,181, 21, 63,252,170,100,136, 21, +135,247,109, 68,150,139, 88,127,208, 26, 45,199, 55,203, 55, 89, 21, 10,249, 37, 79,229,186,179,245,170, 36, 43,196,174,253,135, +226,165,121,243, 81,190,126,123, 76,159,209, 6,223, 76,237,133,217, 47, 42, 96, 93,223, 15,181,122,174,196,234, 73, 29, 1, 0, +145,223,120,105, 29, 97, 21,184,227,198, 66,149,153,165,182,139,154,226, 89, 73, 69,191, 23, 85,134, 23,215,130,197, 48, 12,202, +149, 43,135,242,229,203,163,113,227,198,168, 83,167, 14, 90,182,108,137,211,167, 79,227,244,233,211, 24, 57,114,100,161,226,202, +155, 56,106,209,168, 45,142, 54,189,244,200,113,227, 26,239, 37, 1,111,210,210,144, 33, 67, 0,224, 63, 97,205, 98, 31, 38,240, +196, 4,249,168, 91,199,136,156, 22,139,197,209,245,230,188,174,146, 56,232,221,203, 25,122, 59, 9, 33,177, 31,127,252,241,187, +106,181,186,101, 94, 94, 94,101,187, 5,230,178,217,108,222,109, 52, 26,231, 80, 74, 51, 31,197,173,206,203, 50,184,115, 66, 81, +239,102,100,100,180,111,223,190,253, 78,150,101,203,185,110,196,235, 46, 3, 11,130,112, 43, 41, 41,169,200,169,234,105,105,105, +237,219,181,107,231,150,211, 93,193,224, 13,167,187,248, 17, 4,161, 80,113,229, 77, 1,228,105, 33, 81,150,101,161,211,233,240, +211, 79, 63, 33, 56, 56,248,153,202, 96,167,206, 39,207, 44,234,126,139, 96,213, 94, 0, 33, 47,125,177,246,206,158, 84, 75,153, + 22,193,202,219, 63,190,255, 74,233,162,222, 73, 77, 77,109,247,250,235,175,255,198,178,108, 57,215,240,119, 23, 23, 28,199,221, + 76, 76, 76, 44,246,178, 7,148, 82, 92,186,116, 73, 24, 52,104, 80,106, 74, 74, 74,175,135,241,255,184,137,243,103, 79,251,108, +120,208,139,109, 27,212, 7, 3, 88, 10, 31,212, 75, 9, 64, 89,185,236,238,152, 15,231,190,249, 79,198, 25,165,244, 36, 33,100, + 74,253,250,245, 71,162,208,117,193,243,199, 82,121,224,177, 18, 66,102,119,232,208,225,253, 17, 35, 70,248,183,107,215,206, 26, + 21, 21,117,194,217, 58,239,125, 58, 74,122,251,185,106, 33,209, 47,182,121,161, 61, 8,161, 22,139,217, 67,195, 8, 20,148, 82, +133, 66,126,233,216,169,132, 90,158,172,243,246, 29, 51, 74,188,107,126,216,176, 97, 24, 54,108,152, 35, 61, 45, 92,216, 20, 27, +206, 30, 64,207, 90,241, 48,127,213, 4, 68, 95,218,235,134, 30, 0,124,244,241,160,146,180,100, 22,152,124, 85, 82, 99,176,100, + 50, 25, 82, 83, 83,113,249,242,101, 36, 37, 37, 33, 47, 47, 15, 23, 46, 92,128,213,106, 69, 70, 70, 6,106,212,168,241,208,238, + 44,169, 56,250, 39, 57,255, 75,221,132,197, 18, 88, 28,199,197,123,218,245,220,102,179, 21,107,150,145, 92, 46, 55, 85,170, 84, +137,184,155,109, 32,254,215,233,116, 70, 47, 11,198, 76, 0, 19, 1, 76,180,239, 55,133,244,244,244, 71, 86,129, 60,207, 39,148, + 41, 83, 70, 86,152,112,177,135, 77,146, 7,183, 25, 0, 52, 44,225,138,160,196, 57,221,196,143,161,106,213,170,142,177, 92,174, +107,154,216, 55, 65, 45,114,212,173,167,133, 68, 13, 6,195,253,246,237,219,243,206,247,157, 23, 34,125,166, 65,232,237,142,175, +188, 81,102, 79,170,165, 12, 0,136, 34, 11,148,222, 46, 34,222,141, 0,154, 63,110,167,221,184,113,195,242,194, 11, 47,124,159, +147,147, 51,148, 82,250,208,163,244, 63,252,100,225,135,255,182,104,161,148,158, 4,240, 90, 9,240,156, 37,132, 12,158, 57,115, +102,175,153, 51,103, 86, 0, 16, 12, 64,237,173, 72, 43, 32,178, 46,164,148,248,218, 96, 28,199,197,151, 47, 95,190, 88,150, 26, + 79,101,188,205,102, 43,178,158, 56, 7, 63,124,120, 4,200,223,198, 45,205, 43, 78,147,201,148,222,176, 97, 67,121, 49,253,150, +236,173,223, 35, 34, 34, 16, 25, 25,233,248, 21,225,122,221,147, 59, 57,142,139,143,142,142, 70,112,112,112,161, 43,180,187,142, +185,242,134,179,164,227,168, 40,206,200,200,149, 37,206, 89, 82,122,225,153, 22, 88,226, 30,131, 37,137,164,164,164,199,178, 55, + 10, 45, 9,243,218,223,150,162,250,248,143, 34, 45, 45, 45,232, 81, 57, 60, 45, 36,154,148,148,212,242,191, 26,190,123, 82, 44, + 3, 30,184,102, 23, 91,255, 52, 12, 6, 67,105, 74,233, 67,141,204,239,217,179, 39, 15, 9,206,130,120,249,211,232,182,212,212, +212, 18, 47,211, 31, 71, 61,145,158,158, 94,243,191,234,247,199,225,206,127, 11,231,191, 29,140, 20, 4, 18, 36, 72, 40, 68, 24, + 72, 34, 73,130, 4, 9, 18, 30, 18, 4, 64,155, 66, 10, 87,175,103,238, 16, 66,218, 60, 68,225,189, 75,226,148, 56, 37, 78,137, + 83,226,148, 56, 37,206,255, 22,167, 39,238,146,158, 57,252, 79,182, 82, 31,219, 1,160,141,196, 41,113, 74,156, 18,167,196, 41, +113, 74,156, 18,231,127,237,144,186, 8, 37, 72,144, 32, 65,130, 4, 9, 18, 74, 24,146,192,146, 32, 65,130, 4, 9, 18, 36, 72, +144, 4,150, 4, 9, 18, 36, 72,144, 32, 65,130, 36,176, 36, 72,144, 32, 65,130, 4, 9, 18, 36,129, 37, 65,130, 4, 9, 18, 36, + 72,144, 32,225,225, 65, 74,112, 61, 78, 9, 18, 36, 72,144, 32, 65,130, 4, 9,162,192, 34,132, 56, 84, 22,165,148, 72,193, 34, + 65,130, 4, 9, 18, 36, 72,120,162,130,228, 25,211, 34, 14,129, 37, 9, 43, 9, 18, 36, 72,144, 32, 65,194, 63, 41,176,158, 37, + 45, 82,192,130, 37,137, 44, 9, 18, 36, 72,144, 32, 65,194, 63, 37,176,158, 37, 45, 34, 89,176, 36, 72,144, 32, 65,130, 4, 9, + 79,133,192,122,102, 45, 88,207,146,114,148, 32, 65,130, 4, 9, 18, 36,252,187, 4,214,179,164, 69,164, 89,132, 18, 36, 72,144, + 32, 65,130, 4, 9,146,192,146, 32, 65,130, 4, 9, 18, 36, 72,120,186,241, 88, 23, 26, 37,132,180,145, 56, 37, 78,137, 83,226, +148, 56, 37, 78,137, 83,226,148, 4,150, 4, 9, 18, 36, 72,144, 32, 65,130, 4, 73, 96, 73,144, 32, 65,130, 4, 9, 18, 36, 72, + 2, 75,130, 4, 9, 18, 36, 72,144, 32, 65, 18, 88, 18, 36, 72,144, 32, 65,130, 4, 9, 18, 36,129, 37, 65,130, 4, 9, 18, 36, + 72,144,240, 15,129, 0,112, 59, 19,128, 82,186,203,107,146,135,152, 77,224,137, 95,226,148, 56, 37, 78,137, 83,226,148, 56, 37, +206,103,143,211, 19,119,113,244,199, 83, 13, 74,233, 99, 59, 0,180,145, 56, 37, 78,137, 83,226,148, 56, 37, 78,137, 83,226,252, +175, 29, 82, 23,161, 4, 79, 45, 12,150, 16,194, 62,236,253, 39,197, 41, 65,130, 4, 9, 18, 36, 60, 77, 96, 11,169,224, 42, 2, +248, 16,128,159,211,229, 99,148,210, 56,151,231,126, 0,160,117,186,100, 0, 48,137, 82,122,213,139,111, 43,236,252, 42,251, 33, + 0, 48, 1, 48, 3,200, 1, 96,147,162,231, 31, 23, 87, 13, 1,116,182,255,223, 74, 41, 61, 92,156,251, 79,138,243, 73, 33, 50, + 50, 82, 19, 16, 16,208,238,228,201,147,202, 11, 23, 46, 96,255,254,253,116,217,178,101,214,140,140,140, 29, 9, 9, 9, 70, 41, +197, 60, 19,105,190, 61,128,113,246,211,233,148,210,237,143,200, 71,180, 90,237, 72,157, 78,215, 81,165, 82, 69,114, 28, 71,242, +242,242, 18, 12, 6,195, 78,142,227,190,160,148, 10, 15,193, 89, 63, 56, 56,120,112,108,108,108,165, 27, 55,110,220,189,115,231, +206, 42, 0,219, 1,180, 47, 93,186,116,255,152,152,152, 82,231,206,157,187,146,154,154,186,132, 82,250,231, 63,229, 78, 9, 18, + 36,129,229, 30, 19, 41,165,253, 92, 50,224, 3, 15,181,106,213,170,235,142, 29, 59,180,130, 32, 64, 60, 52, 26, 13, 7, 96,128, +135,239, 6, 29, 58,116,168,204,208,161, 67, 95, 74, 72, 72,168,151,147,147,243, 60, 0,104,181,218,163,161,161,161,127,206,155, + 55,111, 77,187,118,237,226,237, 66,171, 88,150, 17,185, 92,254,122, 64, 64, 64, 71,142,227,234, 80, 74, 33,151,203, 79,102,100, +100,108,183,217,108,223, 80, 74,109, 15, 81,152, 41, 89,150, 29,166, 82,169,218,115, 28, 87, 19, 0, 88,150, 61, 99, 54,155,183, +115, 28,247, 37,165,212,242, 16,156,106,165, 82, 57, 76,175,215,183,181, 88, 44, 53, 1, 64,169, 84,158,201,206,206,222,105,177, + 88,190,164,148,154,158,130,138,134, 5,208,153, 82, 42, 7, 0,153, 76,214,173, 97,195,134,101, 8, 33,130,184,227, 57,195, 48, +181,121,158,103,236,207,119, 38,132,252, 73, 41,229,138,195,249,194, 11, 47,148, 98, 89,150, 82, 74, 9,165,148, 97, 24,166, 86, +113, 56, 75, 10, 33, 33, 33,211, 4, 65,136, 44,234, 25, 63, 63,191,122, 39, 79,158,172,178,110,221, 58,254,171,175,190,202, 28, + 56,112,160,207,208,161, 67,217,133, 11, 23,126, 9, 96,148,235,243,193,193,193,179, 25,134, 9,246,230,251,130, 32,164,166,166, +166,142,150,138,164,127, 28,227, 22,237,202,105, 70, 41, 48,172,173, 47, 99, 23, 46, 15,141,168,168,168, 21,175,189,246,218, 43, + 53,107,214,100, 41,165,176,217,108, 48,155,205, 85, 14, 31, 62,220, 98,227,198,141,245, 0,244, 42,102,190,236, 60,110,220,184, +175, 39, 77,154, 20, 34,151,203,137,205,102,107,176,110,221,186, 23, 7, 15, 30,124,106,201,146, 37,207,245,238,221,219, 87,188, +254,201, 39,159,116, 32,132,188, 75, 41, 93,243,164,221, 41, 65,130,132,194, 5,150,206,158,153,147, 0, 28, 19, 45, 88,174, 15, +253,241,199, 31, 91, 88,150, 21, 45, 88,207, 27, 12,134, 48, 23,171,151, 59,148,237,223,191,127,195, 13, 27, 54, 76,235,221,187, +119,162, 86,171,173,212,163, 71,143, 28, 66,136,108,221,186,117,181,203,151, 47,175,233,210,165, 75,255, 86,173, 90,189,247,219, +111,191,237, 7,144,226,101,193, 83, 61, 48, 48,112,211,204,153, 51,203,180,111,223, 94, 17, 28, 28, 12, 74, 41, 18, 18, 18,162, +126,249,229,151, 23, 63,251,236,179,247, 8, 33,221, 41,165,231,139,211, 82,212,104, 52, 27, 62,251,236,179,136, 23, 95,124,145, + 13, 15, 15,135,201,100,194,133, 11, 23,218,108,223,190,189,217,210,165, 75, 71, 17, 66,122,122,219, 74,180,115, 62,239,231,231, +183,241,187, 15, 62, 8,107,240,250,235,108, 96, 96, 32, 40,165, 72, 73, 73,105,115, 96,229,202, 22, 67,102,206, 28, 69, 8,121, +153, 82,122,236,105, 74, 40, 74,165,146, 89,181,106,213,115, 74,165, 18, 0, 96,177, 88, 16, 27, 27,251, 72,187,157,203,229,114, +230,139, 47,190,168,195,178, 44,172, 86,171,144,147,147, 67,123,244,232,241,143,116, 91, 19, 66,162, 19, 18, 18,252, 20, 10,133, +219,251, 60,207,163, 89,179,102,229, 20, 10, 5,190,248,226, 11, 91,106,106,106,237, 5, 11, 22,156, 92,189,122,117,240,151, 95, +126,217,211,157,192, 98, 24, 38, 56, 62, 62,222, 45, 39,207,243,176, 90,173,224, 56, 14, 22,139, 5,213,170, 85,147, 74,163,167, + 3,101, 0,224,215,211, 38, 0, 8,124, 84, 50,157, 78, 87,181,111,223,190,108, 74, 74, 10,228,114, 57,172, 86, 43, 18, 19, 19, + 17, 27, 27, 43,251,254,251,239, 43, 23,151,175, 74,149, 42,131,227,226,226, 66,127,253,245, 87,235,247,223,127,111,110,211,166, +141, 98,224,192,129,250,102,205,154, 53,141,142,142,102,190,253,246, 91,243,174, 93,187,172,255,251,223,255, 84,211,166, 77, 11, +253,237,183,223, 94, 1,176,230, 73,187, 83,130, 4, 9,133, 11, 44, 17,199, 40,165,221, 0, 64,161, 80,212, 46, 85,170,212, 10, +142,227,194,237, 86,156, 68,185, 92,254,133,213,106,253,203, 94, 65,109, 22, 4,161,171, 39,203, 85,255,254,253, 27,254,246,219, +111,179, 14, 31, 62,156,149,150,150, 22,190,101,203, 22,211,123,239,189,119, 11, 0,110,220,184, 17,211,165, 75,151,168,225,195, +135,199,183,107,215,110, 94,203,150, 45, 71,236,222,189,123, 39,242,187, 30,139, 20, 87,177,177,177,135,246,237,219,231,235,239, +239, 95, 80,205,149, 45,139, 17, 35, 70, 40,186,118,237, 90,190,117,235,214, 7, 9, 33, 77, 41,165,103,189, 17, 66, 21, 43, 86, +220,245,199, 31,127,248, 4, 4, 4, 32, 51, 51, 19,137,137,137,200,203,203,131, 94,175, 71,239,222,189, 21,205,155, 52, 46, 53, +124,228,168, 93,132,144, 54,222,136, 44, 66,200,243,141,171, 87,223,181, 58, 46,206,199,118,231, 14, 52, 26, 13,114,115,115, 1, + 0,190,190,190,168, 87,174, 28,123,124,229,202,168,126, 99,199,138,156, 79, 92,100, 17, 66, 84, 0, 64, 41, 53, 19, 66,182,202, +100,178,110, 74,165,146,233,214,173, 27,118,237,218, 69, 76, 38, 19, 11, 0,106,181,154,235,214,173, 27, 52, 26, 13, 44, 22,139, + 0, 96,107, 97,150, 38,119,156,114,185,156,105,217,178,101,222,177, 99,199,210, 69, 78,173, 86,107,107,217,178,101,144, 82,169, +212,112, 28, 71,139,226,124, 76, 34, 18,215,174, 93, 43,112, 45, 39, 39, 7, 41, 41, 41, 72, 75, 75,131,217,108, 70,102,102, 38, + 4, 65, 32, 26,141, 38, 69, 16, 4, 48, 76,190,177,173, 48, 78,133, 66,129,203,151, 47, 23,184,198,113, 28, 12, 6, 3,204,102, + 51,172, 86, 43,114,114,114, 52,190,190,190, 21,171, 87,175, 30, 15, 96,115,122,122,250, 23,137,137,137,183,165,226,233, 31,193, +157,173,127,153, 74, 3,176, 0,184, 89, 2,124, 2, 0,236,223,191, 31, 73, 73, 73, 72, 77, 77, 69, 74, 74, 10,162,163,163,241, + 48,221,110,151, 46, 93,154, 87,187,118,109,114,234,212,169,159, 1,124,189,118,237,218,151,210,211,211, 23,143, 25, 51, 38,240, +243,207, 63, 79, 31, 59,118,236, 16, 0, 63,174, 93,187,246,245,154, 53,107,118, 57,115,230,204,220,127,194,157, 18, 36, 60, 6, +212, 7, 16, 98,255,159,106, 47,119,131,156,206, 79,219,243,173,248,156, 5,128,210,205,175, 8,241, 60, 5,192,159, 78,239,137, +231,143, 12,177, 43,134,138,135,187,135,194,194,194, 70,182,106,213,106,214,137, 19, 39,170,221,191,127, 63,224,254,253,251, 1, + 39, 78,156,168,214,170, 85,171, 89, 97, 97, 97, 35,197,231,236, 51, 11,224,116,238, 60,213, 82,113,232,208,161, 50,155, 54,109, +154,190,107,215,174,172,218,181,107, 91,254,248,227, 15,174, 93,187,118,201, 0, 56, 0, 92,187,118,237,146,119,239,222,205, 55, +104,208, 64,243,219,111,191,221, 61,120,240,224,236, 13, 27, 54,132, 1,144, 21,194, 9, 66,136,220,223,223,255,167,189,123,247, + 62, 32,174,156, 81,170, 84, 41,108,221,186, 85,239,239,239,191,153, 16,162, 40,194,157, 32,132,168,213,106,245,198,221,187,119, +251,248,250,250, 34, 57, 57, 25,114,185, 28,161,161,161,200,202,202, 66,226,253,251,184,125,229, 10, 24,139, 5,115,166, 78,246, +213,104, 52, 27, 8, 33, 74, 79,156,126,126,126, 27, 87, 79,155,230,147,182,107, 23, 78, 77,153, 2,171,213,234,232, 90,181, 90, +173, 56, 56,116, 40, 82,126,255, 29,223, 78,156,232,227,231,231,183,145, 16,162, 46,138,179, 36,224,204, 73, 8, 25, 10, 32, 29, + 64, 58, 33,100, 40,165,244,112,108,108,236,137, 11, 23, 46,160,105,211,166, 88,191,126,125,173, 49, 99,198, 12, 29, 51,102,204, +208,245,235,215,215,106,218,180, 41, 46, 92,184,128,216,216,216, 19,206, 99,165,188,225,220,187,119, 47, 90,181,106,149,177,126, +253,250,152,137, 19, 39, 78,155, 56,113,226,180,181,107,215,150,111,213,170, 85,198,220,185,115,205, 69,113, 62, 14,191, 59, 91, +150,156, 15, 65,248,187,110,137,140,140, 76,222,180,105, 19,122,247,238,205, 40,149,202,251,125,250,244, 81, 29, 56,112,128, 2, +216, 90, 28,119,154, 76, 38, 24,141, 70, 24, 12, 6,220,184,113, 67, 51,115,230,204, 38,159,126,250,105,133, 93,187,118, 69,125, +248,225,135, 67, 66, 66, 66, 78,134,135,135,151,121,210,126,151, 56, 1, 0,137, 0,172,246, 70,221,237, 71,225,108,221,186,117, +141, 10, 21, 42,132,173, 59, 23,128, 12, 69, 21, 8, 10,127, 8, 10,127,240, 65,245,113, 77,217, 1,165, 75,151, 14,243,245,245, +109, 88, 28, 78, 74,233,206,191,254,250,171, 3,165,116, 9,165,148,167,148,110, 24, 59,118,236, 32, 66,200,198,177, 99,199,190, + 77, 41,221, 96,191,190,236,244,233,211, 93, 40,165,187,255, 9,119, 74,105, 73,226,124,200, 6,126, 81, 90, 36,132, 16,178,149, + 16,178,117,252,248,241, 45, 1, 4,185,156, 55,114,126, 14,128,210,221,175,120, 56, 93, 15, 1,208,201,233,189,144,146,242, 15, +227, 20, 88,132, 82, 42,182,196,143, 17, 66,182, 0, 56,166, 80, 40,106, 63,247,220,115,221,182,109,219,230, 27, 18,242,247,119, + 67, 66, 66,176, 97,195, 6,223,234,213,171,119, 83, 40, 20,181, 1, 28,211,235,245, 91,224,166, 43,209, 14,255,161, 67,135,190, +244,234,171,175,102,215,174, 93, 27, 0, 50,207,159, 63,175,109,208,160,129,129,227, 56,194,113, 28,105,208,160,129,225,252,249, +243, 90,155,205,150, 83,191,126,125, 93,235,214,173,111,141, 30, 61,186, 63, 0,117, 17,126,232, 59, 99,198,140,232,128,128,128, +162, 18, 2,114,114,114, 16, 22, 22,134,161, 67,135,134,203,229,242, 55,138, 52,235,177,236,176, 25, 51,102,132,250,251,251, 35, + 35, 35, 3,209,209,209,176, 88, 44,184,124,249, 50, 76,134, 92,216,114,178, 97,203,206, 68,202,245,171,240,151,179,232,223,181, +115, 24,203,178,195, 60, 88, 71,134,125, 51,118,108,152,229,214, 45,220, 88,191, 30, 60,247,160, 97,134,179, 90,113,230,235,175, + 97,138,143,199,244, 65,131,194,148, 74,229,176, 39,108,185,250,156, 82,170,161,148,106, 8, 33,243, 26, 53,106,244,189, 70,163, + 25, 26, 23, 23,215,126,199,142, 29, 47,238,219,183,175, 5,199,113,114,142,227,228,251,247,239,111,106, 50,153, 88,149, 74, 5, +150,101,169,183,156, 13, 27, 54, 92,161,209,104,134, 44, 94,188,184,253,238,221,187,251, 31, 63,126,124, 24,207,243, 74,158,231, +149,199,143, 31,127,219,104, 52,202, 41,165,124, 97,156, 79, 26,114,185, 28, 10,133, 2, 26,141, 6, 77,154, 52,185,190,108,217, + 50, 91,116,116,180,124,227,198,141, 1,145,145,145,186,133, 11, 23,102,230,228,228,204,240,150,207,106,181,194,108, 54,195,104, + 52,194,100, 50,225,143, 63,254, 40, 55,124,248,112,214,100, 50,241, 93,186,116, 73,183,217,108,230,177, 99,199,234, 3, 3, 3, +223,147, 26,172,255, 8, 56, 0,185,118,129,101,118, 78,203,132,144,154,162, 53,214, 27,100,102,102, 46,253,230,155,111,162, 25, +149, 63, 14, 88, 58, 98,141,240, 25,118,248, 45, 68,114,153,247, 17, 26, 93, 1,175,188,242, 74, 40,165,116, 97, 9, 84,116,155, + 41,165, 61, 41,165,155, 30,230,253,199,237, 78, 66, 72, 25, 31, 31,159,245,122,189,254,128,143,143,207,122, 66, 72,153, 71,245, +115,187,138,164, 77,183,106,178,248,118, 21, 8,237, 86, 77, 22,223,174, 98,241,215,106,146,240,116,194, 69,139, 56, 35,133, 82, +218,153, 82,218,121,250,244,233,211,156,158, 23,207, 53, 94,242,119,166,148,118,118, 73,163, 91, 31,135, 95, 88,103,229, 40,122, +202,121,182, 96,169, 82,165, 86,172, 88,177,194,215,245,197,251,247,239, 35, 59, 59, 27, 19, 38, 76,240,125,245,213, 87, 71,221, +189,123,247, 53, 15,223, 82, 38, 38, 38,214,233,215,175,159,218,106,181,102, 8,130,192,100,103,103,179,126,126,126,188,248,128, +159,159, 31,159,149,149, 37, 55, 24, 12, 50,158,231,205,175,190,250,170,114,208,160, 65,245,156, 45, 88, 15, 72,218,144,144,182, + 29, 59,118, 84, 22,118,223,102,179,193, 96, 48,192, 96, 48,192,106,181,162, 73,147, 38,170,101,203,150,181, 3,176,184,176,119, + 84, 42, 85,219,182,109,219,202,211,211,211,225,231,231,135,219,183,111,227,230,205,155, 48,231,230,194,154,155, 13,107,110, 14, +184,156,108,208,236, 44,164, 93,189,132, 6, 85,171, 40,126, 80,169,218, 3,152, 93, 24,167, 94,175,111,219, 96,192, 0, 86,167, +211,161, 69,191,252,249, 3,191, 85,173, 10,202,243, 16,120, 30, 60,199,161,253,229,203,176,217,108, 96, 24, 6,245,211,211, 89, +253,202,149,109, 1,204,250, 39, 18,185, 74,165, 98, 87,173, 90,213, 87,169, 84,130, 82, 74, 44, 22, 11,118,236,216,241,200,156, + 43, 87,174,236, 47,114, 90,173, 86, 90,163, 70,141, 7, 50,146,217,108,166, 79, 75,102, 87, 42,149, 80,171,213,176, 90,173, 40, + 91,182,172,177, 95,191,126,135,166, 78,157, 90,154, 97, 24,157, 66,161,216,150,150,150, 54, 45, 33, 33,225,134,183,124, 54,155, + 13, 22,139, 5, 22,139, 5, 70,163, 17,215,175, 95, 15, 47, 87,174, 28, 25, 58,116, 40,159,151,151, 23, 51,127,254,252,107, 59, +118,236,208,206,152, 49,163, 7,128, 17, 82,113,251,228, 96,183, 66,251,149, 14, 98, 13,114, 25,114, 1,248,218,197, 64, 15, 66, + 72,131,106,213,170, 5, 92,184,112, 33,131, 16,114, 4,192, 26, 74,233,253,162,248, 4, 65, 32,130, 32,224,237,231, 51, 49,180, +161, 12, 54, 91, 22,178,178,178,112,251,246,109,156, 63,127, 30, 71,143,158,127, 40,119,170,213,234, 55,124,124,124,218,169,213, +234,178, 28,199, 49,185,185,185,183,243,242,242,118, 9,130,176,148,186,118, 35,120,129,199,229, 78, 17, 58,157,110,230,135, 31, +126,216,216,207,207, 15,127,253,245, 87,204,218,181,107,103,226, 17, 7,205,171,229,204,183,179,231, 46,140,138, 10,245,199,233, +125, 63, 71, 77, 91,178,238, 91, 0,209, 82, 42,126, 38,242, 33, 45, 68, 96,253, 9,160,147,125,118,121,231, 71,224,127,164,247, + 31, 74, 96, 21,226, 33,112, 28, 23,238,108,185,162,148,226,254,253,251,184,119,239, 30, 82, 82, 82, 16, 16, 16, 0,171,213, 26, +238, 77,253,154,147,147,243,124, 80, 80, 80,158, 92, 46, 55, 27,141, 70,104,181, 90, 65, 46,151, 83,251,119,136,125, 22, 34,111, + 54,155, 9,203,178, 54, 95, 95, 95, 31,179,217, 92, 5, 69,140, 21,163,148, 62, 31, 20, 20,228,246,158,217,108, 70,110,110, 46, + 12, 6, 3,114,115,115, 97, 54,155, 17, 22, 22, 6,142,227,234, 20,217,132,229,184,154, 33, 33, 33, 72, 72, 72,128, 70,163, 65, +124,124, 60, 44,185, 57,176,230,228,128, 51,100,131,207,202,130,144,157, 13,193,144, 13,155, 37, 15, 81,149,170, 66,156, 97, 88, + 24, 44, 22, 75,205,160,160, 32, 24, 12,127, 15, 39,163,118, 97,197,113, 28, 56,251,160,103,177,219, 48, 56, 56, 24,226, 12,195, + 39,212,106, 48, 19, 66,198, 48, 12, 51, 79,165, 82,177, 67,134, 12,193,253,251,247, 11,164,137, 33, 67,134, 56,198, 92, 53,107, +214,108,191, 90,173,230, 82, 82, 82, 96, 54,155,229,222,112,150, 45, 91,246,246,132, 9, 19,142, 89, 44,150,232,200,200, 72,127, +179,217,108,172, 92,185,114,164, 70,163, 9,179, 88, 44,124,189,122,245,150,106, 52, 26, 91,110,110, 46,229, 56,142, 60, 37,153, + 29,132,144,252, 56,226, 56, 4, 7, 7, 27, 82, 83, 83,143,102,100,100,244,125, 24, 62,155,205, 38,206,208,130,209,104, 4,165, + 20,127,253,245, 23,212,106,181,156,231,249,115, 28,199,105,229,114, 57, 24,251,224, 46, 9, 79, 44,158, 91, 84,241, 87,206,142, +107, 16,234,255, 92, 23,157, 65,171,148, 25,132,219,207,149,253,238,243,243,107, 95,237,255,134,239,164, 73,147,202, 4, 7, 7, +171,175, 93,187,102,154, 60,121,114,185, 85,171, 86, 17, 79,141,159,187,119,239,110,252,240,195, 15, 3, 59,118,236, 24,163, 82, +169, 72, 86, 86, 22, 82, 82, 82,144,148,148,132,155, 55,111,210,211,167, 79, 95, 55,155,205,235,139,227,206,200,200,200,101,195, +135, 15,127,181,110,221,186,114,209, 34,106, 48, 24,106,239,221,187,183,235,111,191,253,214, 20, 64,177,211,229,221,187,119,215, +127,244,209, 71,186, 14, 29, 58, 84, 81,169, 84, 76, 73,184,211, 25, 12,195,132,249,248,248, 96,215,174, 93,240,247,247, 7,195, + 48, 97,143, 26, 95, 38,171, 16, 21, 25, 30, 4,211,193,217,168, 18, 82, 6, 38,171, 16, 37,165,226,103,199,130, 85,200,173,250, +162, 5,202,131, 72, 50,142, 27, 55,238, 67, 66,200,214,113,227,198,125,232,206,130,101,255,203, 59, 63,231,244,188,185,196, 5, +150,151, 45, 29,220,187,119, 15, 9, 9, 9,184,119,239, 30,210,210,210,192, 48, 76, 81, 1, 82,192, 95,132, 16, 97,231,206,157, + 1,135, 14, 29, 50,212,175, 95, 63, 83, 28,223,194,113, 28,177,217,108,196, 62,238,133,220,190,125, 91,113,224,192, 1,255,139, + 23, 47,134, 33,127, 32,154,224, 33, 66, 30,184, 38, 10, 43,231,195,100, 50, 65,173, 86,123,229, 87,177, 2,252,235,196,137,124, +113,149,155, 99,239, 26,204, 2,159,157, 5,106,200,129,146,183, 65, 9, 10, 98,202,243, 58,252,156, 33,138, 43,171, 93, 96, 89, + 44, 22,216,108, 54, 8,130, 0,142,227,254,137,132,189,168,118,237,218,117,126,252,241,199,129,247,238,221,123,224,126,247,238, +221, 49, 98,196, 8, 12, 31, 62,252, 98,167, 78,157, 78,255,252,243,207, 24, 54,108, 24, 4, 65,120,142, 16,146, 69, 41,253,173, + 40,206,113,227,198, 29,191,123,247,238,158, 43, 87,174, 12, 9, 13, 13, 85,213,172, 89,243,106,205,154, 53,101, 63,254,248, 99, +216,155,111,190,121,226,197, 23, 95,188,245,251,239,191, 7,238,218,181, 75, 45, 8, 66, 93, 66,200,189,127,122, 29, 44,179,217, +236,176, 56,153, 76, 38, 88,173, 86,160,136, 65,237,158,210,166, 24,183, 28,199,137,220,228,199, 31, 55, 97,255,254,253,204,249, +243,231,162,135, 12, 25, 42, 14,164,151, 74,218, 39, 35,172, 58, 40, 25,242,213,152,231,130,212,239,213, 10, 50, 40, 89,146,123, +249,171, 15,115,111,150,214, 27,194, 74,105, 45,209,229,252, 35,167, 77,155, 26,113,241,226, 37,243,132, 9, 19, 46,244,233,211, + 39,244,189,247,222,171,182,113,227,198,166,132,144,111, 40,165,153,133,240, 42, 6, 14, 28,120, 52, 52, 52,180,252,146, 37, 75, +146,239,222,189, 27, 96,179,217,180, 54,155,205,106, 48, 24,174,229,229,229, 29,176, 90,173,187, 40,165, 39,138,227, 94, 95, 95, +223, 90, 3, 6, 12,144,103,102,102,194, 62,251, 22,201,201,201,104,220,184,177,108,203,150, 45,213, 31, 38, 12,210,211,211,103, + 19, 66,246,172, 94,189,186,157, 94,175,175,171, 82,169,194, 1,240, 57, 57, 57, 73, 6,131,225,212,195,184,179, 64, 57,199,243, + 73, 39, 78,156, 40,175,215,235,113,231,206, 29,240, 60,159,244,168,241,166, 86, 48,119,207,236,219, 82,170,106,112, 57, 28, 56, +116, 4,106, 5,115, 87, 74,205,207, 60,196, 49, 82,112, 22, 78,110,132,209,161,184,184, 56,205,244,233,211, 17, 23, 23,119,206, +157, 5, 75, 20, 90,113,113,113,231,196,231,156,158,223, 87,162, 2,171, 40,129,196,178,108, 98, 74, 74, 74,128,191,191,191, 67, + 88, 37, 36, 36, 32, 33, 33, 1, 74,165, 18,183,111,223,134, 82,169,188,239, 77,163, 67,163,209, 28,175, 93,187,118,229, 27, 55, +110, 40, 38, 79,158, 92,234,196,137, 19,250,198,141, 27,215,208,104, 52, 60,165, 20, 38,147,137,185,112,225,130,207,172, 89,179, +162,158,127,254,121,203,243,207, 63,127,114,221,186,117, 70, 20,177,232, 40, 33,228,216,253,251,247, 99,202,150, 45, 43,138,181, + 2,162,202, 89,104, 1,249, 93,155, 44,203,158, 44, 50, 80, 88,246,204,229,203,151,219,104,213, 42, 88,114,178, 97,205,205, 6, +151,147, 3, 62, 39, 11,124, 86, 22, 96,200,134,146,227, 32,231,109,208,168,213,184, 23, 31, 15,150,101,207, 20,197,169, 84, 42, +207, 36, 37, 37,181,241,247,247,119, 84,158, 54,142,203, 63,120, 30, 22,142,115, 88,176,228,114, 57,238,222,189, 11,165, 82,121, +230, 73,167, 96,134, 97,120,113, 41,134, 66,252,129,176,176, 48,161, 65,131, 6, 24, 54,108, 24,120,158,183, 71, 3,105, 65, 8, + 57, 64, 41,205, 45,140, 83, 16, 4,230,194,133, 11, 47, 93,187,118, 77, 38,151,203,153, 23, 94,120, 33,182, 73,147, 38, 22,165, + 82, 9,133, 66,193,230,230,230,250,238,218,181, 75,109,179,217,136,157,243,137,173,131, 37,166,157, 7,154, 66,246,193,232, 70, +163, 17,185,185,185,200,200,200, 96, 53, 26, 77,229, 26, 53,106, 28,177, 88, 44,235, 57,142,251,246,198,141, 27,217,133,113,218, + 5,153, 67,108, 9,130, 0, 74, 41,120,158,135,205,102,131, 66,161, 16,246,238,221,135, 89,115,102, 98,197,183,171,104,215,174, + 93,201,150, 45, 91, 32, 8, 66,188, 84,158, 62, 17,124,145,185,102,170, 26, 28,111, 48,239, 93,157,251,253,149,108,195,164,239, +231, 30,183, 40,101,217,245,154,135,213,140, 41, 87, 89,230,239, 31,192, 44, 94, 58, 47,237,135, 85, 27,174,221,185,115, 39,251, +203, 47,191,108, 88,185,114,101,191, 83,167, 78, 69, 1,112, 43,176,124,124,124,202,190,254,250,235,175,103,100,100, 40, 86,173, + 90,181,252,222,189,123,123, 41,165,215, 93,202,174, 58,132,144,207, 1,200, 1,132, 33,127,252,215, 78, 74,233,202,162,218,105, +132, 16,236,222,189,251,129,217,126,194,163,169,242,140,154, 53,107,214,186,114,229,202,230,196,196,196,239, 93,111,106,181,218, +174,177,177,177,175, 28, 59,118,236, 99, 74,233,181,226, 16,231,229,229,141,221,176, 97,195,231, 50,153, 44,146,231,249, 4,163, +209, 56,246,145, 45, 88, 54, 97, 80,220,226,181, 95, 27, 45,124,105,141, 82,118,199,100, 19,222,148,146,242, 51,109,189, 2,236, + 99,176,196,255, 0,136,203,249, 41,251,127,139,211,179, 41, 78, 86, 43,139,139,213,203,221,189, 20,148,224, 34,231,133,173,228, + 62, 30,192,243, 0,142,201,229,242,121,175,190,250,234,172, 31,126,248,193, 55, 59, 59, 27, 73, 73, 73, 72, 78, 78, 6,203,178, +208,235,245, 88,180,104,145, 49, 41, 41,105,158,243, 59,174, 43,190,139,121, 34, 56, 56,248,248,170, 85,171,194,191,250,234, 43, +246,181,215, 94,187,221,169, 83,167, 42,139, 22, 45,186,161, 80, 40, 40,207,243,196,108, 54,147,183,223,126,187,252,156, 57,115, +110,201,100, 50,109,239,222,189,137, 78,167, 59,102, 47,120,220,135,120, 74,202,206,159,126,250,233,165,209,163, 71,171, 44, 22, +139, 91,203,149,120,205,223,223, 31, 7, 15, 30,180,100,100,100,236,240, 96,181,216,185,237,215, 95,154,253,175, 79, 31,133, 45, + 39, 27,182,156,108,112,217,217,224,115, 50, 65,114,179, 33,231, 57,104, 20, 2,194,163,213,224,140, 62,248,229,207, 83, 54,179, +217, 92,228,130,132,217,217,217, 59, 15,172, 88,209,226,249, 50,101,216,131, 35, 71,194,106,179,161,195,229,203, 14, 81,101,181, + 90,177,185,102, 77,240,132,224,185,183,222,194, 85,142,227,178,179,179,119, 62,141,153,224,244,233,211,201,253,250,245, 59, 33, + 8, 66,157,226, 88,115,156, 42,159,156,220,220, 92,164,166,166,242,105,105,105, 38, 0, 72, 78, 78,206,216,178,101,203, 5, 65, + 16,158,127, 24,206,146,128,205,102,123,192,250,196,243,124,190,149, 49,223, 82,160,252,229,151, 95,154, 93,184,112, 65,113,246, +236, 89,236,223,191,255,185, 31,126,248, 97,124,153, 50,101,106,222,190,125, 59,209,147,104,115,183, 88, 47,236,227, 11,215,173, + 94,143,193,131, 7,147,196,196, 68,172, 89,179, 6,158, 22, 61,149, 80, 98, 48,128,227, 53,150,189,171,115, 59,253,122, 39,231, +240,125,227,100, 0,219,169,145,163,165, 74,149, 58, 93,183,110, 64, 48, 0,152, 77,124,120,197,138, 21,155,179, 44,171,180,167, +225,186, 65, 65, 65,139, 0, 52,113, 71,218,189,123,247, 70,161,161,161,181,127,251,237,183, 83,247,238,221,219,231, 42,174, 0, +160,114,229,202,159,157, 61,123,182,131, 92, 46, 39, 78,105,132, 2,112, 43,176, 90,180,104, 81,185, 76,153, 50, 65,191, 94,241, + 67,182,162, 2,168, 44, 11, 96,213,224,253,107,225,182,162, 26,162,163,143, 4,249,251,251, 63,151,153,153,121,170,152, 86,188, +210,189,123,247,254,101,217,178,101, 85, 95,124,241, 69, 37,128, 7, 4, 86,213,170, 85,123,252,254,251,239, 61,135, 12, 25, 82, +139, 16,210,197,203,221, 58,196,124,116, 27, 64,207,146,140,180, 29, 87,233, 46,216,215, 44,147,240,159,193,159,143,233,217,199, +134,194,186, 8,159, 23, 4,161, 43,195, 48,176, 90,173,113, 97, 97, 97,155,123,247,238,221,125,252,248,241, 62, 65, 65, 65, 14, +203,213,162, 69,139,140, 55,111,222,220,104,181, 90,255, 34,132, 76, 76, 72, 72,232, 26, 25, 89,104,189,144, 51,127,254,252,181, + 93,186,116,121,237,173,183,222, 50,214,172, 89, 83, 95,165, 74,149,188, 67,135, 14,249,180,109,219, 54, 91, 38,147,209,131, 7, + 15,250,150, 47, 95,222, 68, 8, 81,253,254,251,239,105, 71,142, 28, 41, 31, 23, 23,247, 13,242,167, 77, 23,134,213, 83,166, 76, +153,208,181,107,215,242, 65, 65, 65,200,206,206, 46, 32,178,196,255,106,181, 26,137,137,137,216,180,105,211,125,155,205,246,141, + 7, 75,198,151, 11, 23, 45, 30,213,178,193, 11, 81,122,173, 6,137,241,183,193,103,101, 0,134, 92, 40, 57, 27, 52, 74,138,168, + 10, 90,176, 50, 29,174, 37,230, 98,197,161, 63, 19, 57,142,251,178, 40, 78,139,197,242,229,136, 57,115, 70, 29, 94,188, 56,170, + 76,175, 94, 56,191,114,165,163, 75, 80, 20, 88, 60, 33, 40,221,186, 53, 24, 63, 63, 76, 91,178, 36,201, 98,177,124,249,164, 19, +132, 32, 8, 50,139,197, 82,148, 63, 32, 8, 66,252,249,243,231,215, 18, 66,114, 8, 33, 45,236,183,246,184,179, 94, 57,115, 50, + 12, 35, 84,171, 86,237,199,176,176,176,151, 0, 24,170, 85,171,246,163, 74,165,106,101,177, 88, 94, 16, 4, 33,254,175,191,254, +218, 68, 8, 73, 36,132,136,173,140, 39,186, 14,150,205,102,195,196,137, 19, 49,125,250,116,140, 27, 55,206,225, 95,177,155, 48, + 51, 51,179,220,129, 3, 7, 20,123,247,238,165, 75,150, 44, 73,123,237,181,215,252,223,122,235, 45,255,175,190,250,234, 93, 0, + 99, 11,227, 28, 59,118, 44,150, 44, 89,130,193,131, 7, 63,168,174,100, 50, 33, 62,254, 46, 76, 38, 19,157, 63,127,126,130, 92, + 46, 15,248,230,155,111, 52,111,190,249, 38,145,202,211, 39,130,143, 52,253, 62,126,199, 94,198,204,163,148,238, 17,111,232,245, +122,205,143, 63,254,196, 2,192,198, 13,155,228,148, 82, 63,113, 97,216,239,191,255, 94,221,184,113,227,208,194, 72, 55,108,216, +144, 57,121,242,228,160, 65,131, 6,189,184,103,207, 30, 45, 33,228, 87,123,161,159, 10,128, 7, 16, 12,224, 96, 72, 72, 72,196, +218,181,107, 43,180,107,215, 78,231,201,161, 57, 57, 57,223,172, 93,187,182,236,156, 3,126,248,213,240, 18,238, 10,189, 64,253, + 41, 2, 67,115, 80,205,231, 14,250,246,237, 27, 57,111,222,188,175, 1,212, 45,134,184,170,254,242,203, 47,255,180,108,217,178, +114,111,189,245, 86,252,193,131, 7,239, 18, 66, 62,115,243,104,218,128, 1, 3,110, 47, 95,190,188,130, 32, 8,219, 9, 33, 47, + 82, 74,175, 72,201, 71,130,132, 34,242,151,187,241, 75,132,144,205, 28,199,117,101, 89,118,139,243, 66,163, 97, 97, 97,163, 44, + 22, 75, 4, 33,132, 42, 20,138,196,164,164,164,121,206, 11,141,198,199,199,119,141,142,142,118,188, 99, 95, 44,211,121,173, 12, +125,135, 14, 29,218, 28, 62,124,120,193,214,173, 91,147,115,114,114,124, 54,108,216,160,153, 62,125,250,109, 65, 16,232, 7, 31, +124, 80,166,125,251,246,121, 60,207,223,127,235,173,183,202,151, 43, 87,238,173,139, 23, 47,238,114, 22, 88,110, 56, 65, 8,169, + 94,161, 66,133,131, 27, 55,110,212,251,251,251, 35, 57, 57, 25,233,233,233, 48, 24, 12,224,121, 30,114,185, 28, 41, 41, 41,152, + 60,121,114,118, 66, 66,194, 3, 11,141, 22,194,249,124,217,168,168,157,243, 62,155,232,235,207, 50, 72,187,116, 1, 92, 70, 26, +228,156, 13,165,170,251, 65,161,212,224,234,229, 28,188,187,122, 83,206,157,244,204, 7, 22, 26, 45,140,179, 94,197,138,187,150, +140, 25,227, 99,186,123, 23, 17,175,191,142,188,188, 60, 88,173, 86, 48, 12,131,235,243,230, 65, 17, 18,130, 9,235,214, 25,206, +221,185,211,218,117,161, 81,119,156,143,156, 0,156, 56, 9, 33, 67, 9, 33,142, 65,238,221,187,119, 47,240,236, 79, 63,253,132, +197,139, 23,195,108, 54,115,148,210, 81,148,210, 69,132, 16, 31,123, 43, 53,215, 19,103,217,178,101,239,196,198,198,254,201,243, + 60,107, 23, 23,244,252,249,243,117,111,222,188, 89,202,133, 83,236,186,230,158,148,223,131,130,130,230,253,246,219,111,101, 67, + 67, 67,137,243, 10,235,118,129, 8, 0, 24, 54,108, 88,235, 35, 71,142,168,106,215,174,109, 78, 77, 77,173, 31, 18, 18,242,199, +170, 85,171,130,123,247,238,157,112,238,220,185, 40, 87,206,224,224,224, 89, 27, 55,110,172, 80,161, 66, 5, 70,180,130,185,118, + 67, 14, 28, 56,176,205,170, 85,171,148, 47,189,244,146,217, 96, 48,132,249,250,250, 94,219,184,113, 99,112,183,110,221, 18,207, +157, 59, 23,241, 36,252, 46,113,186, 71,108,108,236,213,115,231,206, 85, 16,207,141, 70, 35, 82, 82, 82,144,154,154, 10,127,127, +127,180,109,219,246,250,205,155, 55, 43,184,227,180, 91,133,230, 46, 93,186,244, 69,157, 78,167,216,183,111,159, 97,215,174, 93, +166,219,183,111,115, 54,155,141, 70, 68, 68,176, 77,154, 52, 81,119,236,216, 81,167, 82,169,152,143, 63,254, 56,117,234,212,169, +193,132,144,185,148,210,119,221,113,214,169, 83,231,232,182,109,219,158, 39,132, 64, 38,147,193, 98,177, 34, 51, 51, 19,247,238, +197,227,252,249,243, 56,124,248, 48,118,236,216,113, 42, 55, 55,183,182,183,126, 39,132,252, 97, 54,155, 91, 40,149, 74,175, 5, + 61,207,243, 96, 89,118, 55,128, 54,148, 82, 65, 74, 75, 18,167,132,226, 89,176,196,193,185,207, 19, 66, 54,219, 47, 29,115, 93, +138,129, 16, 50,158, 16, 50,209,201,234,229,233,123,217,191,253,246,219,254, 54,109,218, 12,107,221,186,245,156,118,237,218,221, +191,127,255,126,204,236,217,179,163, 57,142,179,158, 63,127,158,185,118,237,218,237,227,199,143, 87,168, 84,169,210, 91, 23, 47, + 94,220,235,193,122, 37,186,245, 60, 33,164,113,203,150, 45, 55,189,245,214, 91,165, 27, 52,104,160,244,247,247, 7,203,178,184, +113,227, 6, 78,157, 58,101, 89,183,110, 93,124,102,102,166,215, 91,229, 80, 74,143, 17, 66,218,246, 30, 62,106,227, 91,221,187, + 4,191, 80,165,178, 50, 34, 34, 2, 48, 26,113,233, 78, 34,142, 92, 58,101, 93,182,255, 72,138,217,108,126,217,219,173,114,236, +156,109, 90,141, 25,179,113,210,255,254, 23,134,251,247,217,136,136, 8, 40,149, 74,220,188,121, 19,215, 4,129,155,177,116,105, + 82,118,118,246, 19,223, 42, 71, 92,179, 74, 16, 4, 22, 0, 52, 26, 13, 70,140, 24, 1,231,173,113, 22, 47, 94, 12,163,209, 8, + 0, 44, 33,228,115, 66,200,183,133, 89,173, 10,225, 44,253,235,175,191,150,118,230,172, 90,181,170, 59, 78,243,147,206, 8,233, +233,233, 19, 58,116,232, 16,199,178,108,161,171,213, 6, 4, 4, 32, 39, 39, 7, 28,199,241,247,238,221,187, 20, 16, 16, 0,185, + 92, 14, 74,169,219,124,148,150,150, 54,225,229,151, 95,158,194, 48, 76,161,150, 14,189, 94,127,251,143, 63,254,168,248,230,155, +111, 50,223,125,247,221,141, 65,131, 6,169,254,248,227, 15,254, 97,215, 52,146,240,248,224,220, 24,181, 55,222,104, 17,207,222, + 33,132,140, 61,113,226,132,122,240,224,193,117,255,247,191,255,233, 91,182,108,233,227,252,140,209,104, 20,126,254,249,103,195, +146, 37, 75,210,246,237,219,247,231,192,129, 3, 95, 66,254,248, 17,183,184,115,231,206, 47,211,166, 77,243,235,216,177, 99, 37, + 0,142,241, 87, 41, 41, 41,184,125,251, 54,206,158, 61,123,219,106,181,110, 41,166,183,134,245,235,215,239,215,229,203,151,151, +121,235,173,183,226,215,172, 89,179, 5, 64,150,155,231,124,122,244,232,209,117,249,242,229,101,222,126,251,237, 59, 0, 70, 74, + 43,188, 75,144,240,112, 2, 43, 75, 16, 4,152, 76,166, 48, 65, 16,186, 10,130, 0, 31, 31, 31,119,207, 61,159,144,144,208,213, +121,179,103,120,216,214, 6, 64,202,174, 93,187,118,174, 94,189,186,245, 7, 31,124,240,191,204,204,204,231, 79,159, 62,221, 0, + 0,228,114,249, 97,157, 78,119, 52, 46, 46,238,245,177, 99,199,166,120, 35,174, 92, 68, 86,181, 89,179,102,149,216,102,207,118, + 65, 84,241,203,245,155,134,125,163, 82,181,117,217,236,121,167,125,179,103,211,195,112,142,249,250,235, 97,250,245,235,159,218, +205,158,205,102, 51,247,210, 75, 47,125,195, 48,140, 96,111,181,178,102,179,249,117, 20,115,230,169, 43,103,247,238,221,191,147, +201,100,156,221, 50,196,152,205,230, 55, 30,133,179, 4, 43,207, 92, 0,195,139,122,166, 70,141, 26,171,182,108,217,210,175,107, +215,174,188,213,106, 77,238,210,165, 11,123,244,232, 81,202, 48,204,174, 66, 56,205, 0,222, 47,138, 51, 60, 60,188,204,194,133, + 11, 79,142, 28, 57, 82,191,122,245,234,192, 3, 7, 14,240,243,231,207,207, 78, 79, 79,255, 66, 42,158,158, 46,200,229,114,104, +181, 90, 88, 44, 22,164,164,164,192,211,146, 83,148,210,107,132,144, 78, 99,198,140,105, 58,102,204,152, 78,209,209,209,213, 75, +151, 46, 93,154, 97, 24,230,254,253,251, 41,119,239,222,189,101,181, 90,127, 7,240, 11, 0, 69,249,242,229,255, 2,176,170, 48, +190,180,180,180, 41,132,144,221, 43, 87,174,236,164,211,233,170,169,213,234, 64,155,205,198,228,228,228,164, 27,141,198, 11, 38, +147,105, 43,165,244, 80, 49,211,253,101, 66, 72, 75,150,101,127, 89,182,108, 89,213,251,247,239,151,221,187,119,111, 23,215,231, +234,214,173,187,124,249,242,229,101,134, 12, 25,114,109,245,234,213,197, 26,131, 37, 65,130, 36,176, 10, 98,154, 82,169,100, 97, +223,244, 89,180, 96,185,121,238,152,203,152,171, 44, 0,211,188,248,174,161,111,223,190, 55,251,246,237,251,185,221, 13, 50,228, + 47,197,192, 33,127, 4,191, 21, 30,150,102, 40,164,176,224, 0,124,109, 63, 74,170,226, 53, 33,127,189,155, 89, 79, 51,103, 9, +184,201, 76, 8, 25, 99,159,213, 4, 0, 99,254,250,235,175, 69, 46, 22,169,211,206,247, 61, 89,154,220,113,158, 58,117,202,149, +243,108,113, 56,255, 73,100,102,102,142, 90,184,112,225,177,113,227,198,169, 6, 12, 24,128,179,103,207, 98,250,244,233,230,204, +204,204,213, 15,203,153,152,152,120, 59, 60, 60,188,206,220,185,115,223,155, 51,103, 78, 55, 66,136,180, 23,225, 83, 2,163,209, +120,189, 86,173, 90, 32,249,179, 19, 40,199,113,142,217,159,246, 21,249,175,123, 89, 38,237,182, 31,158,240,185, 23,124,135, 1, + 28, 46,225,188,127,135, 16,210,233,214,173, 91,211, 46, 95,190,188,205,221, 51,231,206,157,251,169, 93,187,118,218,195,135, 15, +127, 88,220, 89,132, 18, 36, 72, 2,171, 96,134,187, 10,224,127, 94,100,204,184, 71,248, 54,239,133,181, 75,194,147, 21, 89,139, + 8, 33,223, 58, 89, 95,138,117,255, 73,113,254, 83,136,143,143,207, 0,224,216, 50, 36, 38, 38,230,129,113,106, 15, 43,178,144, +191,106,187,180,114,251, 83,132, 27, 55,110,116,248, 15,229,253, 59, 0,250, 21,118,223, 98,177,108, 1,176, 69, 74, 21, 18, 36, + 60,162,192,146,240,159, 22, 89,230, 71,185,255,164, 56, 37, 72,144, 32, 65,130,132,167, 25, 4, 64,155, 66, 42, 61,175,103, 7, + 16, 82,252,141, 54, 61,241, 75,156, 18,167,196, 41,113, 74,156, 18,167,196,249,236,113, 58,113,207, 41,228,214, 37, 23,190,175, +254,173, 22,139,199,118, 32,127, 26,175,196, 41,113, 74,156, 18,167,196, 41,113, 74,156, 18,231,195,124,231,173, 39,241,157,199, +113, 72, 27,202, 74,144, 32, 65,130, 4, 9, 18, 36,148, 48,220,142,193,218,176, 97,131, 76,252,255,202, 43,175, 12,228,121,222, + 49,125, 93, 38,147, 45, 92,179,102,205,183, 69,145,246,236,217,147, 47,138,211, 29, 60,125,199, 29,103,108,101,191, 33, 65,126, +218, 81,153, 89,121,115,111, 36,240,251, 77, 38, 83, 53,241,158, 90,173,190,240,237,183,223, 94, 41,105,119, 14, 28, 56,176,146, +235,119,202, 70,203, 91, 4,250,170, 71,164,103,230,206, 62,123, 37,231, 43, 41, 89, 61, 94,244,234,213, 75, 86,156,231,111,222, +244,103, 78, 34,226, 11,189, 78,209, 37,215, 96,251,130, 63, 49,113,193,179, 16, 14, 17, 17, 17, 85,244,122,125,127, 0,213,243, +242,242, 66,181, 90,109, 50,128,243,217,217,217,171,238,223,191,127,201, 91,158, 22,229,200,109, 0,165,237,167,119,246,220,164, +101,188,185,231, 9,237, 43, 16, 19, 5, 84,132,192,186,253, 42,117,108,112,249, 98, 69, 98, 18,232,131,215,219, 87, 36, 22, 74, +161, 32,128,121,251, 53,170,126, 86,210, 43, 33, 68, 15,160, 45,128, 88, 0,167, 1,236,160,148,230, 73, 57, 89,130,132,255,160, +192, 26, 56,112, 96, 51, 37, 75, 23, 64,160,254,160, 52,200,108, 54,203,149, 74, 37, 44, 22, 11,180, 26,205,151,131,223, 24,240, + 25, 8, 50,173, 2, 51,226,219,111,191,125,232,157,167,139,243,157,158, 61,123, 62, 48,205, 57, 64,175,153,178,231,231, 15, 2, +154,117,138,155,110,185,153, 62, 54, 39, 39,135, 81,169, 84, 48,155,205,240,243,243,107, 60,252,173, 65,117, 41, 67, 44, 10,181, +238,208,156, 57,115, 18, 31,214,157,239,190,251,110, 56,103, 53, 52,162, 54,170,180, 88, 44, 42,215,239,248,107,117, 51,246,252, +252,129,182,121,231,233,159, 1,144, 4,214, 83,132,124,113, 21,254,213, 59,125, 95, 24, 48,115,100, 27,248,183,152, 49, 22,192, +191, 90, 96, 17, 66,100, 49, 49, 49,195,202,148, 41,211,103,233,210,165,138,152,152, 24,168,213,106, 24,141,198,136,235,215,175, + 71, 12, 25, 50,164,121,249,242,229,215,222,184,113,227, 75, 74, 41,239, 5,101,233, 61,203, 63, 6, 0, 52,238, 63,185, 52, 33, +228,125, 0,121, 0,208,188,236,223,247, 90, 12,152, 92,154, 16, 50, 6, 5,103,255,222,167,148,186,157, 93, 70, 1,229,214,149, +179,208,245,213,247, 89, 66,200, 16,241,122,199, 74,192,182,239,231,225,197, 87, 70, 21,184,222,190, 60,216,159, 87,206, 66,231, + 87,223, 47,116,183,241, 23, 43, 49, 54, 65,160,133, 78,206, 97, 24,194,109,191, 74,221,109,252,155, 68, 41,221,238, 38, 44,219, + 35,127,163,101,183,207,119,174,202, 38, 89,109,188,219,133, 98, 21,114, 89,242,214,139,220, 3,239, 14,168, 67,108, 54, 62,191, +108, 85,176,224,253,252,252,246,124,244,209, 71,108,231,206,157,177,108,217,178, 38, 95,125,245,213, 91,132,144,223, 1,108,145, +150, 60,144, 32,225, 63, 38,176,148, 12, 93,178,125,245,226, 10,137, 41,233,232, 51,100, 60, 86,175, 94,141,140,140, 12, 4, 4, + 4, 64,169, 84,200, 23, 77, 27, 27,238,239,171, 13,239, 61,124,226, 18, 0, 85, 30,246,227,197,252, 78,197, 7, 10, 71,251, 66, +164,172,140,149, 43,149,114,102,237,218,181,200,204,204,132,191,191, 63,148, 74, 57, 51,111,242,104,141,191, 94,167,249,223,168, + 73, 77, 0,172,127, 88,119,114,198,220, 38, 63,127,191, 80,159,148,146,134,126, 35, 38,192,245, 59,114,133,130, 23, 43, 20, 41, + 73,253,115, 72, 77, 77, 37, 0, 16, 28, 28, 76, 11,138,171, 6, 3,230,140,110,135,119,103,239, 64,158,201,242,253,191,221,159, + 49, 49, 49,195,122,245,234,213,103,202,148, 41, 10,134,201,239,229, 55, 24, 12, 48, 26,141,136,138,138,194,158, 61,123, 20, 19, + 38, 76,232,243,211, 79, 63, 1,192,252,226,242,159, 59,119,174,108,233,210,165, 77, 0,208,165,166,175,235,189, 50,226, 61, 0, +240,245,245,245,200, 23,228,175, 51,159, 59,119,164,186,248,222,176,214, 81,124, 33,215, 77, 0,180, 69,113, 9, 2,101,119, 44, + 24, 82,232,253, 55,167,252,192,157, 94,191,191, 74, 76, 76,140,209,249,122, 33, 11, 37, 3, 64, 88,110,110,110,105,215,139,226, +243, 86, 27, 31, 90,216,247,218,141, 88,236, 86,120,217,120,176, 63,252,240, 3, 0,224,139,247,251,201,190, 62,154,202,178,108, +126, 81,251,249,231,159, 99,210,164, 73,202,237,219,183,119, 92,185,114,101, 71,251,214, 56,210,242, 7, 18, 36,252, 87, 4, 22, + 33,240,213,251,234,208,245,181, 17,248,109,219,118, 52,107,214,204,113,175, 92,185,114,120,165, 71, 23,252,180, 52, 14, 12,136, +239,163,124,252, 81,191,147,145,101,248,164, 67,159,249,147,239, 36,230, 30,222,186,245, 87, 52,109,218,180,192,251,255,235,253, + 18, 54, 46,154, 10, 66,169,226, 81,220, 41, 48, 84,161,215,235,240,242,160, 81,112,247,157,193, 3,186,110,125,177,231,188, 54, + 73,105,134, 57, 82,146,122,178,184,120,241,162,204,108, 54,191,162,215,235, 27,200,229,242, 48,149,127,105, 33,129,125, 62, 45, +133,196,220, 72, 14,205,107, 54,186, 77,216,139, 95,188,211, 18,239,206,222,129,185,171,143, 44,175,131,196,137,255,102,255, 70, + 68, 68, 84, 41, 83,166, 76, 1,113,149,147,147,131,220,220, 92,100,103,103, 35, 39, 39, 7, 12,195, 96,236,216,177,138,189,123, +247,246,137,136,136,216,229, 69,119,225,157,198,253, 39,231,139, 12,153, 60,119,226,196,137,230,208,208, 80,179, 86,171,165,172, + 66,149,211, 98,192,100, 95, 0, 96, 88, 69,206,220,185,115, 45, 81, 81, 81, 38,150,101,149,163, 70,141,242,106, 12,167,217,108, +166,206,156, 22,139,217,113,125,198,140, 25,150,176,176, 48,179, 86,171,165, 86,171,197,235,112, 56,115, 51, 29, 42,133, 12, 42, +133, 12,106,165, 28,190,101,235, 67,149,113, 22, 28,199, 97,230,204,153,214,240,240,112,139, 86,171,165, 74,165, 82, 49,114,228, + 72,143,238, 28, 56,112, 32,245,247,247,183,106,181, 90,197,164, 73,147, 30,216,151,239,143,211,247,160, 81,202,161, 85,177,168, + 88, 46, 26, 42,106,244,218,173, 50, 89,193, 30,109,149, 74,133, 38, 77,154,160,122,245,234,216,188,121,115, 11, 72,235, 75, 73, +144,240,236, 10, 44, 66, 72,115, 0,123, 0,128, 82, 74, 0,128, 1,197,167,131, 94,196, 91,175,246, 2,207, 11,249,163,226, 1, +200, 8,193,251,125,154, 65,224, 57, 8,240,184, 85,132,199,169,154,197,253,142, 51, 39, 37,140, 12, 0,170,148, 14,162,131, 95, +239, 11,129,207,239, 13,225, 1,200, 1,188,215,171, 9,120,222, 6,193,195,162,240,222,185, 83,192,199, 3,219,193,221,119,170, +148, 15, 99,204, 60, 7,226,180, 25,227,227,216, 4, 83,226, 44,136, 67,135, 14, 69,104,181,218,217,253,250,245,139, 28, 57,114, +164,146,103,253,217, 13,135,211,252, 62, 88,116, 56, 50,207,108,149,245,109, 89, 22,163,255, 87, 19,163,231,254, 33,138,171,183, +202,149,203,252, 87,199,145, 94,175,239,191,116,233,210, 7,196, 85, 82, 82, 18,147,155,155, 11,171,213, 42,228,228,228,128,231, +121,140, 27, 55, 78, 62, 97,194,132,254,132,144, 73,118, 30,179, 59,206, 61, 55,105, 25, 66,200,152,115,231,206,149,249,232,163, +143,172,173, 90,181,186, 83,174, 92, 57,131, 76, 38, 67, 68, 68,196,188,182,109,219, 6, 78,153, 50,197,218,177, 99,199, 91, 50, +153, 12, 21, 43, 86, 52,156, 61,123,182, 12, 0,141,183,126,119,230,252,246,143,133,212, 94,238,160,109,219,182,183, 43, 86,172, +104,144,201,100,184,242,243, 12,234,109,120,202, 89, 6,149,162,252, 28, 45, 53,104,124,128,140,252,211,182,109,219,198, 87,169, + 82, 37,151, 97, 24,156, 57,115, 38, 26,128,218, 19,167, 70,163,177,245,237,219,247,206,165, 75,151, 30,120, 30, 0, 88, 25,131, + 6, 85,236, 6,171,168, 58, 64,252,129, 66,221, 41,151,129,155, 48,172, 31,235,175, 6, 84,190,193,230,236,236,108,232,245,250, +124,139,152,213,138,191,254,250, 11, 13, 27, 54,108,190,126,253,250,189, 82,126,151, 56, 37, 78,103,163,203,131, 90,228, 89,176, + 96,237,113,245,140,192,115,168, 16, 21,132, 69,239,191, 12,142,227,193,243,130,253,224,193,113, 2,108, 86, 11, 60,232, 43,239, +172, 67,143,240,157, 0,189,102,202,111,107, 71, 6,180,238,246,121,235, 5,239,245,216, 41,216,108,224, 5,128,227, 5,240, 54, + 30,130, 32,192,102, 41,153, 53, 44, 5, 27,143, 10,145, 65, 88,240, 94, 15,184,126,103,225, 47, 59,186,252,177,101,172,182, 89, +231,233,239, 1,152, 41,233,246, 39, 99,185,210,106,181,179, 87,173, 90, 85,166,126,253,250, 12, 0,236,191,204,169, 62, 88,116, + 56,114,123, 92, 99,210,184,122, 16,146, 51,205, 24,245,229, 41,252,118, 56,121,155,171,184,250, 23,163,122, 76, 76, 76, 1,113, + 53,107,214,172,224, 69,139, 22, 69, 1,192,203, 47,191,124,175,117,235,214,169,151, 47, 95, 70, 68, 68, 4, 73, 77, 77,237, 4, + 96,148,189,240, 26, 67, 41, 93, 84, 8,175,161,116,233,210,166,144,144, 16,179, 40,132, 24,134, 1,203,178, 40, 93,186,180, 41, + 52, 52,212, 92,177, 98, 69,131, 66,161, 0,195, 48, 16, 5,158,151,133, 38,100, 50, 25, 68, 78, 87,235,142,200, 89, 28,200, 89, +167,231,233,131, 22, 35,134, 97,220,126,175, 48,168,213,106, 10,160,208,231,101,140, 83,241,200, 22, 61, 18, 96,249, 73, 42, 39, +132,236,161,148,226,228,201,147,184,113,227, 6, 20, 10, 5,194,195,195, 49,105,210, 36,152,205,249,101, 82,175, 94,189,154, 3, + 56, 35,229,102, 9, 18, 28,216,243, 44, 8, 43, 87,129,229, 80,143,148,210,189, 0,192,115, 54,240,188,224, 86,244, 88,109, 28, +108, 86,107,137, 56,160,168,239,240, 60, 95,228,119,196, 49, 88, 2,165,172, 91,113, 37,228,239, 27, 86, 34,238, 20,108,176,241, +128,187,239, 16,194,240,246,130, 94, 33,229,143, 39, 3,179,217,220,183, 95,191,126,145,162,184, 2,128,212, 28, 27,155,103,182, +201, 26, 87, 15, 66,221,150,189,112, 98,247,122,172,219,119, 15,229, 67,180,251,202,233,158, 9,113,133,188,188,188, 80,181, 90, + 13,131,193,224,176, 92, 45, 90,180, 40,202, 98,177, 48, 0,192,178,242,232, 20, 33, 74,205, 11,128,159,254, 62, 50, 50,178,130, +196, 2,139, 16,242, 57, 33,228,219,162, 86,206, 87, 40, 20, 14, 97,226, 44,124, 84, 42,213, 67, 9, 23, 17,162, 40, 83, 40, 20, +110,175,187,118,163,121,130,194, 89, 96,129,230, 91,177, 92, 68,150, 76, 38,131, 56,246,201, 19,148, 74,165,195,239,110, 11, 74, +153,211,247,100,197, 31,106,105,181, 90,145,155,155,139,204,204, 76,168,213,106,209, 2, 0, 66,200, 40, 0,239, 72, 57, 90,130, + 4,247, 90,228,153, 17, 88,200, 55,205, 17, 0,224,108, 86,183,162,103,229,142, 19,184,150,102, 67, 84,192,121,136,207,122,139, + 62,125,250, 44,143,136,136,104,224, 40, 36,181,190, 65,253,223,159, 1,222,106,129,191,138,226,157,158, 77, 11,136, 43,158, 23, + 96,181, 22,110,129,202,200, 50,124,242, 98,175,121,147,131,116,190,135, 93, 69,207,132, 13,151,122,166,101, 89,162, 9,123, 17, +153, 36,138,239,245,246,167, 3,157, 10,245,211,107, 23, 79, 28,237,173,187, 41, 97,228, 93, 70,126,245, 22,175,240,173,166,167, + 25,251, 38,189, 82,237, 71,103, 17, 23,234,227,179,181,253,203,115,218, 36,165, 75, 99,176,158, 20,148, 74,101,155,145, 35, 71, + 22,168,233,130,125,229,156, 86, 37,231, 15,158, 79, 37, 39,118,175,103,246,159, 75, 21,212, 10, 25, 13,161, 55, 98,158, 21,127, +107,181,218,228,188,188,188, 8,163,209,136,236,236,108,100,103,103, 23,204,208,114, 57,121,107,240,240, 96,185, 66, 9,155,213, +130,223, 86, 77,245,200,217,162, 28,185,221,188, 44, 74,119,169,233, 11,153, 92,153,115, 62, 38,102, 30,203,178, 96, 24, 6, 63, +127,249,193,168, 77,179, 71,248, 2,192,233,173, 95,102,191, 50,118,225,124,134, 97, 96, 54,155, 85,197,113,247,221,187,119,163, +205,102,179,201, 46,204, 68,193,135,155, 55,111,150, 50,155,205, 70,231,235,222, 64,163,245, 5,252,203, 1,218,208, 7,172,101, +183,110,221,138,180,217,108,121, 44,203,194, 98,177,120,165,134, 24,134, 81,156, 57,115, 38, 90, 16, 4,183,207, 87, 47, 31, 9, +132,215, 4,148,126, 94,251,217,190, 72,162,199,103, 8, 33,244, 89,106,181, 75,144, 80, 18,150,172,226,234,139,167, 89, 96,181, + 32,132,208,191, 51, 61,192, 89,173, 14, 97,149,111, 97,202,255,127, 51, 75,192,165, 43, 87, 49,119,238, 92,236, 61,254,158,223, +148, 41, 83, 84, 19, 38, 76, 48,247,233,211,103,182, 32, 8,181, 24,134, 57,221,179,103,207, 81,238, 62, 38, 8, 66,169, 19, 39, + 78, 56, 42, 59,155,205, 6, 95, 95, 95,248,250,250, 34, 54, 38,252, 1,113,197,217, 45, 88,180,112,225, 35, 3, 5, 64, 65, 57, +222, 6,222, 6,135,232, 73,203,178, 68,255,180,251, 84, 5,167,199, 43,139,127,154,212,175, 86,184, 8, 28, 50,201,225,143,181, +139, 39,142,158,178,108,153, 42,131, 15, 27,249, 74,239, 65,177,189, 94,233,143,126, 61, 94,108,110, 50,217, 54,179, 12, 4,155, +192,131,183, 9, 16, 40,101, 40, 80, 96, 12,150,132,199,135,212,212, 84, 98, 52, 26,203,250,251,251, 23,168,168, 34,116, 6,243, +216,222,149, 18,218,126,112, 32,210,100,229,161,146, 51,116, 84,183, 50, 9, 71,127, 90, 23,148,106, 78, 37,226,236,194,127, 57, +206, 95,187,118, 45,162, 84,169, 82,200,206,206, 6,199,113,194,203, 47,191,124,143,101,229,209,172, 92, 78, 58,191, 50, 92, 72, + 76, 76,176, 49,140, 12,148,242,232,208,107, 40, 81,169, 53, 10,171,197,194, 1, 24, 83,136,245,202,121, 41, 6,223,182,109,219, + 6,138, 51,251, 54,205, 30,225,235,116, 79, 95,183,110,221, 64,231, 89,132, 94,138, 97,210,167, 79, 31, 77,233,210,165, 9, 0, +252,185,234, 35,209, 90, 70,186,116,233,162, 46, 93, 58,127,124,253,239, 95,122,191,215,117,176,150, 2, 89, 55,129,172, 91, 15, + 88,174,186,116,233,162,138,137,137, 41, 86, 94,180, 15,108, 47,116,237, 45, 29,203, 1,137, 39,189,226, 26, 80,135,216, 62,106, + 6,118,118, 7, 6, 74,159, 32,115,131, 15,182, 31,149, 68,150, 4, 9, 94,161,128, 22,121, 38, 4,150,221, 20, 87, 32,115,115, + 54,235, 3,226,138,231, 5,168,121, 3,230,206,157,139,119,222,121, 7, 0, 20,163, 71,143,254,113,202,148, 41, 47, 9,130, 80, +139, 82,218,148, 16, 82, 84, 43,113, 79, 68, 68, 68, 18,165, 84,206, 48, 76,211, 47,191,252, 50,176, 67,135, 14,240,245,245, 5, + 21,232, 3,226,138,231, 5,216,204,150,124,197,231, 6, 1,122,205,148,109, 27, 70, 5,180,234, 54,179, 53,111,195, 78, 81, 92, +241,182,191,135,197,167, 37,197, 99,199,182,205, 88,178,120,105, 6, 8,189, 8, 10,129, 97,152,211,133,185, 81, 16,132, 90, 7, +254,188,208,180, 73,253,106,152,178,108,153,234,220,137,251, 63, 14,127,247,163,216, 94,175,244,199,250, 53,171, 32,179,102,156, +100,153,176,191,197, 21,207, 35, 37, 39,187,203, 31, 63,127, 32,141,193,250,135, 96,179,217,144,145,145, 1, 91,110, 6, 87, 47, +194,144,245,105,175, 80,115, 82,134,137,149, 11,121, 92, 85,125,178,121,119,250, 45,153, 86,171,125, 38,252,154,157,157,189,106, +200,144, 33,205,247,237,219,167, 96, 24, 6,217,217,217,104,217,178,101,106,138, 16,165,126,107,240,240,224,132,132,123,156, 94, +195,154, 21, 10, 57,146,147,147,133,230, 29,251, 26, 95, 25, 56, 42,242,157, 15,167,125,149,112,104,241, 34,111,190,225, 60,179, +207,245,222,215, 95,127,109,137,138,138, 50,169, 84, 42,229,128, 1, 3,188,234, 39,180, 88, 44,116,198,140, 25,102,215,217,130, + 22,139,133,206,157, 59,215, 18, 29, 29,109,214,104, 52,212,102,243, 60,236,128, 97, 8,247,230,148, 31, 56,142,227, 10, 88,173, + 68,113,101, 19, 72,238,130, 5, 11,172,209,209,209, 22,173, 86, 75, 85, 42,149,194, 27,119, 14, 31, 62,156, 6, 4, 4, 88,117, + 58,157, 98,236,216,177,143, 52,139,208,198,131,157,242,165, 99,153, 6,149,175,175, 47,114,114,114, 28,110,141,136,136,144, 68, +150, 4, 9,238, 27, 27,123,159, 5,203,149,171, 5,171,160,200,160, 66,110, 82,114,106,168,127,100, 5,216,108, 28,120,206, 6, +206,198,193,198,217, 48,230,245,238,136, 91,156,223, 19,102, 23, 89,109, 71,143, 30,253, 35,224,121,219,157,181,107,215, 78, 30, + 61,122,180, 62, 41, 41,105,251,242,229,203, 3,251,245,235,135, 49, 99,198,224,243,207, 63, 7,171, 84,195, 47,188,140,227, 59, +156,141, 3,111,227,144,156,150, 1, 74,105,174, 59, 62,113, 12, 22,165, 96,245,225,229,192,243,226,187, 54, 48,178,252,153,233, + 59,182,109, 70,191,215, 71, 64,174,242, 11, 88, 56,119,166, 49,182, 94,196, 75, 19, 6, 13,242, 60,242,157,128, 57,119,226,254, +143,195,223, 25,219, 86, 20, 87,155, 86,126,121,241,203, 81,109, 87,107,149,172,227, 59,188,205, 6,134,145, 73, 99,176,158, 32, +130,131,131,105, 74, 74,202,173,204,204,204,202, 58,157, 14,105,105,105, 72, 79, 79, 71,102,102, 38,204,217, 25, 92, 16,159,105, + 32, 92, 58, 88,150, 69,242, 93, 14, 60,207, 39, 62, 35,214, 43,220,191,127,255, 82,249,242,229,215,126,248,225,135,175,140, 27, + 55, 78, 46, 8, 2, 46, 95,190, 12, 10, 80,185, 66, 9,134, 97, 32,151,179,200,202,202, 22,180, 62,254,247,173, 84,166,149, 43, +148, 96,100,138,162, 22, 28,189,211, 98, 64,254, 50, 13, 12,171,200, 17,103,246, 41, 20, 10, 28, 89, 63, 43,187,197,128,201,122, + 0, 80,168, 52, 25,237,218,181,187, 93,173, 90, 53,195,241,227,199,203,192,101, 22,161,155,252,201,117, 31, 48, 86,166,213,168, + 13,109,219,182,189, 35,114,222,218,185, 48,187,255,208,143, 8,145, 41, 13,157, 59,119,190, 29, 27, 27,107,144,201,100,184,176, +121,102,118,247, 1, 99,213, 36,127,130,174, 91,108,191, 74,223, 60,189,126,127,149,169, 83,167,218, 58,118,236,120, 87, 28, 15, +118,235,214,173,200, 78,157, 58,169,230,204,153, 99,235,212,169, 83,124,141, 26, 53,114, 25,134,193,137, 19, 39,162,139,178, 76, +137,208,104, 52,182, 55,222,120,227,206,217,179,103, 31,106, 22,161, 39,148, 42, 85, 10,130, 32,160,101,203,150, 48,153, 76,146, + 37, 75,130,132,255, 0,220, 10, 44,171, 32, 12,127,245,131, 89, 11, 9,136,143, 0, 90, 96,150, 14,205, 47, 9,200,251,239,191, +167, 3,160, 17, 69,214,187,239,190,155,225,233, 99, 78,226,170, 94,191,126,253, 48,126,252,120,124,241,197, 23,252,231,159,127, + 46,187,112,253,174,181,231,232,207, 51, 93,190, 3, 74,105, 46,207, 99,184, 59,190,140, 44,195, 39, 77, 59, 77,255,236, 94, 82, +222,129, 94,239,197, 21, 40,181, 50, 73,254, 98,134, 75, 22, 47, 49,200, 85,126,186, 94,175,244, 7,128,182, 11,231,206,252,113, + 10,150,121, 22, 89,148, 84, 29,254,238,216, 0, 81, 92,125, 57,103,234,217, 0,146,180, 96,208,199,231, 31, 24, 53,239,231,131, + 31,155,118,154,222, 62, 57,221, 48, 79, 74, 82, 79, 6, 22,139,101,215,252,249,243,203, 78,152, 48, 65,153,158,158,142,212,212, + 84,100,100,100, 56,142,220,220, 92,132,135,135, 99,219,182,109,214,236,236,236, 35,207,146,223,111,220,184,241,229,150, 45, 91, +176,119,239,222, 62,227,198,141,147,135,135,135, 19, 63,191, 68, 98,179, 90, 0, 80,154,146,146, 34,104,125,252,239, 7,135, 69, +223, 73, 72, 76,174,106,179, 90, 32,240,214, 66, 71,145,219,151,105,120,255,220,185,115,101,103,205,154,101,113,158,217,247,202, +216,133,243,235,214,173, 27,184, 96,193, 2, 75,231,206,157,111,139,131,210,189, 25,228,190,227, 58, 70,157, 59,119,166,186, 43, +103,139,183,102,125, 35,114, 58,207, 46,236,242,222,210,111, 42, 86,172, 24, 24, 27, 27,123,187, 40,222,152,152, 24, 99, 68, 68, +132,165, 74,149, 42,185,114,185, 60,223,114,101,179,229,197,196,196, 8, 97, 97, 97,150,106,213,170,229, 22,119, 48,190, 70,163, +161,162, 21,204, 29,138, 51,139, 80, 46, 3,215,175, 95, 63,199, 74,238,239, 87,172,120,191,127,255,254, 17,163, 71,143,198, 55, +223,124,131,131, 7, 15,166,187,190,211,188,121,115,236,219,183,239, 51, 0,159, 72,185, 91,130,132,103, 88, 96,125,247,221,170, +223,225, 52,102,201, 29,166, 76,153,162,178, 91,174,218,190,243,206, 59, 48, 26,141, 1, 15,180, 96, 9,105, 35,174,149,225, 78, + 92,205,156, 57,115, 53,165, 52, 26, 64, 19,142, 23,142,126,245,237,138,150, 30, 13, 75, 78,156,148, 48, 50,134, 33,185, 74, 57, +253,107,241, 87,223, 21, 88,161,219, 62,168,189, 50, 8, 78, 47,156, 59,211, 8,160,173,171,200,234,217,179,103,158, 43,167,136, +193, 67,222,118,136,171,133,115,103,238,140,173, 87,250,165, 9,131, 38,187, 21,101,147, 63,121, 91,199, 48,164,145,243, 24, 44, +119,156,143, 10,137,243,111, 78,149, 74,181,122,205,154, 53, 29,155, 54,109, 90,166, 86,173, 90, 76,122,122, 58,114,115,115,145, +155,155, 43, 90,185,112,225,194, 5,225,246,237,219,247, 84, 42,213,154,103,201,239,246,237,111,230, 71, 68, 68,236,154, 56,113, + 98,255,212,212,212, 78, 25, 25,153, 65,191, 44,159,130, 23,123, 13, 33,205, 59,246, 53, 88, 40,171,142,191,159, 84,101,207,175, + 63, 4,254,182,246, 75, 88, 45,150,183, 8, 89,114, 65, 92,166,193,141, 59,243,196,229, 24,170, 84,169, 98,112, 22, 40,165, 75, +151, 54, 69, 70, 70,154, 99, 99, 99, 29,215,221,205,206,115,231,247,226,114,218,199,119, 25, 60,133,167, 40,214, 92,151,127,208, +106,181, 16, 69, 87,113,220,233, 60,123,210,109, 65,233, 97, 22,161, 51,231,242,147, 84,238,124,111, 57, 33,178, 85,171, 86,181, + 89,181,106, 85, 61, 0,127, 1,216, 1,192,102,127,207, 49, 24,158, 82,250, 41,128, 79,165,252, 46,113,254, 87, 57,255, 19, 2, +203, 19,196, 1,237, 0,152,119,223,125, 55,195,104, 52, 6,244,239,223,191,200,119, 18, 19, 19,191, 89,177, 98, 69, 1,113,213, +163, 71,143,215, 55,108,216,176, 43, 57, 57,249,161, 28, 31,160,215, 76,217,251,243, 7, 1,205, 59, 79,127, 7,192,231,238, 45, + 81, 16, 98,235, 69,188,180,112,238,204, 31, 93, 68,214, 74, 0, 61,220,165, 27, 0,104,247, 98, 55,252,240,221, 2,113,236,150, +230,236,241,123,191,245, 57, 57,201,237,236, 67,127, 31,213, 36,187, 59, 70, 67, 26,131,245, 68, 80,181,106, 85,254,208,161, 67, +163,135, 12, 25, 50,187,117,235,214, 81,221,186,117, 83,148, 42, 85, 10, 42,149, 10,215,175, 95,199,254,253,251,173, 55,110,220, +184,151,151,151, 55,186, 86,173, 90,252,179, 24, 6,247,239,223,191,100, 95, 68,116,148,216,173,164, 82,107, 20,125, 7,190, 19, +237,152, 69,184,246, 75,152, 77, 70, 0, 96,189, 89,166,129,101, 89,197,169, 83,167,202,136, 86, 42,171,213,170, 18,175, 31, 63, +126,188,140,184, 54,150,201,100,242,122, 22,225,227,226, 60,115,230, 76,180, 56,219, 81,156, 45,200,178,172,226,196,137, 19,209, + 34,167,217,108,246,106, 22,161, 82,169, 84,156, 58,117, 42,154,231,249, 18,155, 69,232, 34,136,183,219, 15,177,114, 18,197, 21, +177,119, 11, 74,221,131, 18, 36, 72, 2, 43,127, 32, 56,165,180,105, 49,148, 46, 91,182,108,217,118,175,188,242, 74, 1,113,213, +179,103, 79,126,211,166, 77,123, 34, 34, 34,146, 24,134,185, 84, 92,119, 56,198, 96,229, 47,168, 94, 0, 12,195,156,110, 82,191, + 26, 24,134, 57, 61, 97,208, 32,243, 20, 44, 43, 32,178, 54,255,184,174,125, 97,229, 33, 0, 4,133, 69,255,159,189,179, 14,143, +226,106,163,248,185,235, 30,119, 66, 66, 32, 68, 72,112,119,105,208, 98,165,184,182, 20,107, 11, 45, 20,135, 98,197,138, 21, 47, + 20, 40, 80, 28, 74,113,119,183,160, 9, 9, 16,226,238,182, 46,115,191, 63, 72,248, 66, 26,217, 13,180,165,116,126,207, 51,207, +238,222,153, 57,115,199,207,190,215, 48,240,179,177, 24,248,217, 88, 91, 0,205,129,210, 91, 31,150,149, 15,150,191,142,102,205, +154, 37,133,133,133, 13, 60,123,246,236,128, 43, 87,174, 4,169, 84,170, 42,132, 16, 72, 36,146,104,157, 78,119, 78, 36, 18,237, +254, 80,205, 85,105,232,245,122,227,212,185,203,182,115,185,124, 19,195,232,137, 94,175,255,204,146,251,124,234,212,169, 28,148, + 80,183,106,236,216,177, 37,166,255, 83,154,211,167, 79, 47,177,213,223,216,177, 99,203,108, 13, 88, 26,223,125,247,221, 59,107, + 69,104,166,233, 98,141, 20, 11, 11,107,176,254, 12,135,195,121, 84, 66,107, 65, 2,128,150,212, 66,143, 82,106,228,114,185,115, +109,108,108, 70, 41,149,202, 83,189,122,245, 26,223,187,119,111, 19,240,170,226,123, 69, 51,159,149,163,156,221,166,219,143, 19, +178,243,181,107,138,207, 43, 30,105, 42, 52, 89,235, 86, 45, 89,255,199,129, 61,189,147, 19,227,215,151,182,111,165, 25,169,210, + 90, 31,230,228,170,231,182,233,246,227,183, 89,185,106,182, 14,214, 63, 16,201, 2,176, 3,192,142,226,131, 61,255, 23,160,148, +106, 9, 33,147, 8, 33,133, 17,220, 73,145, 23, 87,173,255,255,159,155, 53,143,138,206, 43, 35,122,149,100,206,192,205, 37,173, + 87,214,188,191, 64, 51,165,140,129,155,203, 34,197, 66,189, 20, 0, 16,240,185,169,165, 13,234, 44,224,115, 83,223,209, 57, 36, + 5, 77,211,231,178,119, 52, 11,203, 7,110,176, 10,205, 79,105,148,214,207, 85, 89,152, 76,166, 31, 1,252,248, 46, 51,255,228, +121,222, 47, 0,126, 49,119,249,130, 58, 87, 67, 11,166,146,243,153, 17, 98,241,190,245,238,221,123, 3,128, 13,236,229,244,247, +176,127,255,126, 19,123, 20,222,120, 65,175, 39,132,252, 90,104,184,204,157, 87,108,185, 35,127, 65,190,254, 10,205,211,127,167, +222,177, 48,163,243,223,116, 14,217,136, 22, 11,203,127,193, 96,177,176,176,252,235, 76,150,182, 34,243, 88, 88, 88, 88, 88,254, + 26, 8,128,160, 82, 30,202,102,183, 14, 32,132, 4, 85,224,133,112,142,213,100, 53, 89, 77, 86,147,213,100, 53, 89,205,255,150, +102,121,218, 69,215, 39,132,140,164,148,254,130,127, 35,244, 85, 95, 83,127,201, 4, 32,136,213,100, 53, 89, 77, 86,147,213,100, + 53, 89, 77, 86,179,130,219, 25,249,119,108,231,175,152, 56, 96, 97, 97, 97, 97, 97, 97, 97, 97,121,167,176,117,176,204,132, 84, +238,249, 61, 64,167, 21,196, 44,151,208,216, 67,115,216,163, 82,193, 99, 73,136, 3,128,174, 10,177,160,123,128,141,160,233,147, + 12,205, 13,165,222,116, 20,192, 97, 74,105, 22,123,132, 88, 88,254,134,251,208, 54,160, 50, 8,249, 28,160,255,111, 70,201,208, + 80,154,253,116,235, 27,203,217,212,248, 12, 28, 18, 80, 36, 73, 13,138, 77, 52, 43, 52,174,148,251,187,176,194,190, 77, 68, 68, +132,167,183,183,119, 12,128,236, 98,139,253,105, 30,165,148,150,241,204, 32, 14, 85,235, 13,145,138,165, 95,234,116, 58, 47,185, + 66,145,154,153,145,182, 33, 51,246,241,186, 34,139, 89,221,190,125,219,181,113,227,198,137, 0,242,202,211,100, 97,121,239, 13, + 22,241,249,212, 11, 70,206, 80, 80, 12, 2,193, 67, 26,185,255,211, 10,233,120,247,170, 4,134,215, 8, 64, 61,128,214,147, 73, +196,117,213, 58,125, 42, 67,233, 16, 26,177,247,129,197,122, 85,251, 28, 7,208,165,148,185,115,105,228, 62, 11, 13, 18,157,126, +247,202, 65,145,141,148,192,187,254, 39,147, 81,164,199,229,247,204,188, 72, 0, 12, 35,132,124, 36,149, 74,125, 84, 42, 85, 52, +165,244, 49,128,245,148,210,196, 10,106,114, 0, 12,151,203,100,157, 60, 21,194,122,177,233, 57, 9,121, 6,211, 85, 0, 75, 45, + 53, 68,132, 16,161,167,173,236,242,202,254,109,252,155, 6, 84, 7, 19,122, 5, 26,157,190,251,165,248,252,238,179,111, 38, 78, + 32,132,212,163,148,234,204,212,114, 5,192,163,148,198, 21,252,150, 1, 8, 4, 80, 21, 64, 36,128, 16, 74,169,242, 45,143,231, +191, 66,211,221,221,221,141, 97,152, 47,156,157,157, 63, 78, 73, 73, 57,206,225,112, 54,199,199,199, 39,254,195,151,227,198,194, +250, 19,230,126, 2, 24,101,201, 6, 36, 18, 73,138, 70,163,113, 2, 0,177, 88,156,170, 86,171,255,178, 86,127,127,231,182,254, +158,135, 5, 70,156,185, 22,210,169,104, 82,135, 22, 1,127, 94,142, 67, 2,206, 92, 11,109,245,230,114,129,166,146,158,129, 5, +189,166, 98,238,220,185,100,222,188,121,159, 85,171, 86,173, 58,135,195,121, 54,107,214,172, 55,186,176, 41, 62,111,246,236,217, +255,239,113,181, 4, 77,119,223,102,135,251,245,239,211,230,171,145,195,228,149, 28,229, 72, 74, 87,218,255,188,101,199,178, 29, + 59,118,117,253,162, 95,251, 78, 0,240,195, 15, 63,244,172, 92,185,114, 21, 46,151, 27,245,253,247,223,255, 86,150, 38, 11,203, +123,107,176, 72, 64, 31, 25, 52,180, 55, 64,134,181,110, 90,191,197,168, 33,221, 8,229,138, 49, 96,196, 20,163,197, 90, 85, 62, + 19,129,171,158, 95, 43, 48, 96,124,159,110, 65,156, 6,129, 85,224,234,104, 13,112,248,216,120, 34,218,126,205,146,239,215, 3, +104, 92,129,108,118,121,121,115, 55,146,178, 77, 32, 4, 32, 4,224, 16, 32, 95,195,160, 67,207,161,179, 45, 55, 72,132, 99, 35, + 37, 24,191, 91, 3,128,112,223, 83,115, 85,207,209,209,113,221,184,113,227,108,107,213,170,229, 42, 22,139,165,106,181,186,122, + 68, 68,132,215,204,153, 51,219, 19, 66, 22, 83, 74, 15, 90,168,233,225,237,238,182,111,205,248,225,141,106, 87,245, 4, 95,151, + 15, 70,171,172,252, 60,226, 69,211,209,235,247,143, 32,132,244,183,112,184,132, 25, 27,199, 14,241,175,169, 0,244, 33,215,193, +231,114, 33,181,182, 69,123, 30, 23, 92,130, 26, 67, 79, 71, 79,135, 25,227,177, 21,244, 96, 62,189,224,249,187,139,203,229,158, + 13, 10, 10,242,250,226,139, 47, 72,253,250,245, 17, 28, 28, 92,117,247,238,221, 65, 60, 30, 47,202,100, 50, 61, 6,240,140, 82, +106, 48,115,159,249, 0,124,185, 92,110,173,247, 89,211,205,205, 77,162,211,233,134,186,187,187,143,236,222,189,123,173,110,221, +186, 17, 95, 95, 95,132,135,135,215, 63,121,242,228,236, 58,117,234, 60,142,143,143,255, 69, 40, 20,110, 79, 76, 76, 84,155,163, +217,175, 38, 9,223,251,132,250, 85,116,126,177,125, 30, 9,192,173, 32,160, 49,215,140,207, 68, 0,115, 41,165, 73,230, 94, 76, + 26,141,198,169,240,253, 73, 8,113,250, 43,239, 47, 75,182, 69, 8,121, 74, 8,177, 43,248,142,178, 62, 57, 28, 14,140, 70,163, +210,104, 52, 86, 43, 71,211, 23,176,168, 90, 7,165,148,150,213,129,179, 4, 0, 58, 52, 15,200, 4, 65,104, 97, 4,235, 79, 75, + 49, 52,244,181,241,162, 8, 56,115, 61,212,238,141,168, 87, 49,230,206,157, 75,102,207,158,141, 57,115,230,116, 3,208,146, 97, +152,171,254,254,254,171,223,144,100,152,215,243,102,207,158,189,106,238,220,185, 4,111,140,122,251,127,236,170,212, 25,252,201, + 39, 61,218, 44,152, 49, 86,158,144,161,199,195, 40, 53,236,228, 2,204,158, 52, 70,168,213, 26,154,174,255,109,199,200,181,139, +167,108, 50,153, 76,237, 0, 52, 48,153, 76,247, 0,252, 86,150, 38, 11,203,123,101,176, 8, 33, 4,213, 62,109, 5, 19,134,121, + 86,118,238, 61,238,139,190,146, 64,127,111,104, 32, 71,116,186, 9, 39,142,157, 4,128,189,150, 69,153,250, 53,224, 9,176,125, +201,156, 73,126, 45, 27, 5,226, 73,130, 1,247, 18, 76, 80, 69, 25,192,229, 24, 96, 98, 40, 64,161,169,232,206,197,103, 25,113, +237,153, 14, 28, 2,112, 57, 0,135, 67,192,173,104,173, 51,147,238,249, 15, 91,131, 3,211, 83, 24,192,164,123,254, 30,154,171, +118, 62, 62, 62, 43,231,205,155,231,146,146,146, 98,119,239,222, 61,136, 68, 34,216,218,218,242,220,220,220,252, 86,174, 92,153, + 51,118,236,216, 73,132,144, 7,148,210,104, 51, 53,253,187, 52,168,117,227,151, 37, 63, 88, 27,110,159, 68,246,158,223,193,229, + 80, 8,100,114,120, 73, 36, 56,249,137,183, 93,239, 99, 81, 7, 9, 33,254,148,210, 4,115, 52,189, 93,236, 59,212,242,247, 71, +214, 31,107,241, 48, 75,131,147,137,106,124,222,190, 9,106,218, 73,208,210,104,130,139,140,223,174, 60,131, 69, 8,177, 5, 48, + 69,167,211,113, 4, 2, 1, 17,139,197,131, 23, 44, 88,160, 31, 48, 96, 64,124,225, 50, 45, 91,182, 68,203,150, 45, 73, 94, 94, + 94,213,139, 23, 47, 86,221,177, 99,135,145, 16,242,148, 82,122,184,244, 8,133, 52, 86,163, 81, 87, 22, 75, 36,170,159,215,175, + 95,222,170, 85, 43, 70, 36,250,255,232, 45, 21,209, 4, 0, 27, 27,155, 77, 62, 62, 62,100,218,180,105,137,239, 74,211,203,203, +235, 76,203,150, 45,219,118,232,208,129,215,188,121,115,184,185,185,189,158,231,224,224,128,150, 45, 91,146,184,184,184,218, 87, +175, 94, 93,127,230,204,153,213, 94, 94, 94, 23,163,162,162, 58,148,251, 70, 46,103, 12,210,242,230, 23,123,187,255, 82, 48, 28, +140,185,134,233,151, 18, 58, 48,254,119, 6,135, 8,145,111,220,184,209,169,112,204, 68,131,193, 0,147,201,244,250,179,112, 98, + 24, 6, 38,147, 9, 11, 22, 44, 48,153,121, 76,149, 40,232,212,185,200,196,148,244, 41, 20, 10, 29,204,140,100,133,186,138,178, +107,200,100, 50, 79, 0, 93,124,124,124,166, 20,157, 93,221,241,213,167, 82,169,140, 73,210,218,132, 2,104, 85,214,229, 62,111, +222,188,161,115,230,204,233,129,255,143, 41, 89,171, 79,159, 62, 23,139, 45, 87,171,224, 83, 73, 8,185,196,225,112,142, 2,216, + 10,224, 79, 17,113,169, 84, 62,106,220,151, 95,200,227,211,245,152,127, 48, 29, 91,175,228, 98,104, 75, 5,198,119,182,198,192, + 1,253,100,251,127, 63, 48, 10,192,166, 34,171,132,251,251,251,147,176,176, 48,214, 92,125, 88, 52, 4,224, 88,228,183, 14, 64, +225,208, 86,233, 5,247,133,125,177,244,162,203, 21,126,166, 21,164, 59, 22,172, 71,139,232,166, 1,184,251, 78, 13, 86,225, 24, + 88,101,142,133,229,213,251,196,240, 1,221, 59,125,252, 81, 51,112,196,182,120,158, 10,220,140,165,224,113, 12,224,128,226,246, +245,139, 20, 60,102,123,177,135, 65,169,145, 13,226,213,251,187, 90, 53, 3,127,220,188,228, 27,238,211, 84, 30,182, 94, 85, 65, +175,201, 71, 90,114, 44, 82, 19, 99,144, 20, 31,137,132,216,200,199, 0,153,109,174,230,159, 31, 70,128,137, 41,248,207,199, 20, +188, 30, 64, 74,122,104,149,175,105, 80,134, 85,243,171, 25,152, 37, 52, 1, 6,101,152, 25, 15,194,119, 62, 8,102,105,154,132, +144,246,222,222,222, 75,103,204,152,225, 30, 18, 18, 98,165, 84, 42,149, 39, 79,158,188, 28, 19, 19,227,236,226,226, 18, 55,102, +204,152,102,149, 42, 85,114,234,217,179,167,116,223,190,125, 51, 0,124, 97,134,102, 96,247, 38,117,111,110, 89,253,147, 44, 99, +255, 26,232, 34, 30,225, 68,146, 18,215, 83, 84,180,170,181,136,124, 93,219, 17,114, 17, 15, 63, 52,119,147,119,249, 35,226, 71, + 0, 3,205,217,247,128,202,174,213, 12,106, 21, 52,106, 3,182,135,103,170,207, 38, 40,157,136, 77,116,218,234,222, 77,196,220, +180, 68,120, 42,132,213, 43,114, 60,197,226,146, 71, 57,177,181,181, 69,235,214,173,225,239,239,207,107,213,170, 85, 45, 0,135, + 75,211,212,235,117,174, 12, 67,161, 80, 40, 36,246,246,246,182, 10,133, 34, 67,175,215,191,149, 38, 0,216,217,217,125,218,186, +117,107,222,238,221,187,211,163,162,162,110, 15, 24, 48, 32,210,202,202,234,141,104,175, 76, 38, 67,245,234,213,241,253,247,223, +243, 58,117,234, 84,174,166,179,179,115,251, 29, 59,118,128, 16,242,250,101, 93, 28, 79, 79, 79,184,184,184,160, 75,151, 46,188, + 79, 63,253,180,125, 89,199,179, 95, 77, 18, 94,104,158,250,214, 36,101,190,152,250,214, 36,148, 0,207,138, 71,178,138,107, 22, + 68,176,230,190,105, 98, 75, 47,102, 43,105,121, 51,206,123,106, 97, 52, 73, 44, 22,167,190,205,125, 84, 64,169,197,154, 34,145, +232,117,212,169,248,182, 74,210,228,112, 56,152, 57,115, 38, 8, 33,224,243,249, 16, 8, 4, 37,126,182,105,211,198,210,124,198, + 17, 66, 56, 2,129, 96, 10,143,199,251, 66,171,213,186,139,197,226, 68,147,201,180, 77,171,213, 46, 40,136,128,218,148,116,237, +150,166, 41,147,201, 60,159, 63,127,238, 83,218, 65,209,106,181,168, 85,171, 22,160,197,211,178, 52, 35, 34, 34, 60,171, 85,171, +230, 11,160,112, 40,181, 43,148,210, 86, 69,126, 23,229, 10,165,180,115,193,247,103, 47, 95,190,244, 44, 52, 88, 69, 53, 13,122, +189,151,187,147, 21, 30, 70,171,177,245, 74, 46,206,207,112,195, 71, 11, 18,209,171, 30, 15,254, 30,114, 24,245, 6,223, 62,125, +250,108,199,171,235,247, 46,128,158,125,250,244,241,227,114,185, 23, 0, 28, 2,144,243,119, 63,147, 89,205, 10,255, 49, 41,203, +139, 56, 18, 66,142, 21,217,126,215,194,223, 83,167, 78,157,190,104,209,162, 16, 66,200,177,162,233, 69,151, 43,250, 89,176,173, + 99,148,210,174,211,166, 77, 11, 92,188,120,241,194,194,101,255,145, 8, 22, 0,171, 52,141, 12, 87, 99,173,192,227,154,192,227, + 16,240,184, 0, 40, 65, 76,116, 4,242,114,179,175,209,200,223,163,204,139, 92,245,105, 94,167,110,173, 37,187, 86, 78,230,252, +122, 85,133,108,165, 6, 97, 15, 46,225,238,165, 67,201, 38,163,233, 16, 8,189, 7,112,130, 17,201,132, 83, 90,241, 94,187, 95, + 25,172, 2, 83,245,134,201,250,112, 32,132,116,246,243,243, 91, 52,115,230, 76,207, 7, 15, 30, 40,114,115,115,211,118,238,220, + 25,174,213,106, 31, 0, 88, 21, 27, 27,219,122,213,170, 85,210,101,203,150,117,168, 85,171,150,239,254,253,251, 85,102,104,214, +158, 52,108,224,205, 47,198,125, 43,126,186,111, 29,132, 79,131, 49,243, 81,186,233,124,146,106, 6,128,149,136,203,111,158,166, + 49,158,253,169,117,101, 78, 21,133, 0,222, 54,194, 54,230,230, 87, 44, 20,241, 40, 79, 12,157,206,136, 60, 29,163,163,148, 42, +123, 55,242,215, 83,153,131, 24, 0,120, 28,194, 51,227,198,206, 34,132,252, 40, 20, 10,103, 18, 66,104,195,134, 13, 31,214,172, + 89, 51,223,214,214, 22,106,181, 26, 90,173, 22, 2,129, 0,106,181, 26, 49, 49, 49,184,125,251, 54,108,109,109, 45, 58,174,249, +249,249, 80, 40, 20, 96, 24,230,173, 53, 77, 38, 19,217,176, 97,131, 44, 36, 36, 68,118,224,192, 1,231,241,227,199,103,212,168, + 81,227, 94,191,126,253, 94, 56, 57, 57,105, 31, 61,122,132, 27, 55,110, 32, 43, 43, 11, 77,154, 52, 49, 75, 83,167,211,129,199, +227, 65,173, 86, 67, 36, 18,129,199,227,193,104, 52,130, 97,152,215,166, 43, 63, 63, 31,153,153,153, 16, 8, 4,208,233,202,174, +214, 86,104,150,250,214, 36,116,223,169, 27,169, 48, 49,128, 62,215, 0,109,206,171, 73,151, 99,128, 38,219,208,119,194,242,218, +251,158,152,215,235,120, 97, 4,171, 40,101, 21,179,149,180,124,121,188,235,122, 80,101, 21,107,102,103,103, 75,108,108,108,166, +152, 19,145, 35,132,128,203,229, 66, 32, 16,128, 16,130, 86,173, 90, 97,248,240,225,168, 87,175, 30, 34, 34, 34,176,103,207, 30, +220,189,123, 23,124, 62,255,245,242,230,210,166, 77, 27,174, 88, 44,190,209,189,123,247,192, 25, 51,102,136,171, 84,169,130,167, + 79,159,122, 44, 94,188,120,202,185,115,231,122, 16, 66, 26, 80, 74,153,114,133, 10,139,254, 94, 21, 11,118,209,106,181,120,250, +244,169, 37,235,252, 57, 66,237,237, 29,195,225,112, 94, 48, 12,115, 21, 64, 45, 74,105, 43, 66,200, 73, 0,178, 98,139, 42, 41, +165,157, 9, 33,185, 0, 30,115, 56,156,103, 12,195,196,148, 84, 93, 74,161, 80,164,197,167,230, 58,219,203,197, 24,210, 66,142, +143, 22, 36,162,119, 3, 17, 68, 2,130,240,168,100,120, 87,171, 66, 30, 94, 59,220,160,192, 92, 53, 76, 74, 74, 2,128, 6, 0, +162,226,226,226, 92, 11, 13, 22,203,135, 65,113, 19, 84,104,156, 22, 45, 90,212,181, 36, 83, 85,194,189,249, 70,250,226,197,139, + 23, 22,249,253, 78, 27, 89,241,138, 58,199,178,111, 44,244, 58,118,112,247,173,143,244,196, 51,176,126,139, 34,209, 32,138,224, +219, 55, 0,208,109,102, 61,192,220,186, 73, 56, 82,217,182, 13, 11,199,114, 54, 94, 82, 33, 46, 49, 21, 55, 78,108, 67, 90, 82, +244, 86,128,142,167,145,251,115,223,250, 33, 89,181, 79,160,147,131, 61, 52,122, 10,134, 2,248,147,201,250, 96,204, 85, 55, 95, + 95,223,121, 55,111,222,244,212,104, 52,138,235,215,175,103,239,216,177,227,133, 78,167,219, 76, 41,221, 89,176,204,145,244,244, +244, 31, 40,165, 80, 40, 20, 60, 62,159, 47, 41,171,226, 39, 33,164,222,164, 47,134, 94,251,113,195, 22,241,139, 39, 15,177,234, +192, 9,100,171, 84,166, 75,169,234,158,148,210,194,127, 5, 23,188,109, 68, 9, 20,180, 50,159, 67,224, 42,227,187, 16, 66,196, +148,210,114,139,115, 93, 43,123,114, 12, 30, 94,184,106,212,160,146,189, 72, 8, 0, 85,125, 3,184, 15,212, 6, 92,127,244, 20, + 14,114, 43,129,153, 55,217, 44, 66,136,243,246,237,219, 57, 6,131, 33, 63, 34, 34, 2, 46, 46, 46,112,118,118,134,181,181, 53, +194,194,194,112,254,252,121,132,135,135,131, 97, 24,212,169, 83,199,162, 99,155,145,145,129, 71,143, 30,161, 75,151,143,199,167, +165,165, 90,217,218,217, 43,175, 93,189,178,172, 34,154, 12,195, 16, 0, 8, 12, 12, 68, 96, 96,160, 56, 33, 33,193,253,216,177, + 99, 78,243,231,207,143,245,244,244,220,165, 86,171,223,136, 20,152,107,176, 10, 12,203,107,243, 39, 22,139, 33, 16, 8,144,155, +155,139,148,148, 20,228,229,229,189, 42,179,177,177, 41,215, 96,189,233, 8, 25, 96, 71,139,123,127, 74,175, 57,204,201,194,235, +243, 79, 17,169,119,185,252, 95,244,240, 46,181, 88,147, 16, 50, 8,192, 20, 51,247, 5, 70,163, 17, 2,129, 0,141, 27, 55,198, +154, 53,107,112,247,238, 93, 28, 58,116, 8, 30, 30, 30, 24, 54,108, 24, 56, 28, 14, 66, 66, 66, 44,205, 34,115,243,230,205, 41, + 61,123,246, 12,220,190,125,187, 56, 38, 38, 6,225,225,225,176,177,177,193,154, 53,107, 68, 35, 71,142,244,190,120,241,226, 44, + 0, 75,203,221,215, 34,173, 5,221,220,220,250,214,170, 85,235, 79,203,184,184,184, 88,159, 62,125,218,169,208,120, 21,111, 97, + 88, 2,217,179,102,205,250,201,223,223,127,101, 65,177, 96, 75, 0, 50, 74,105,155, 3, 7, 14, 16, 0,232,221,187, 55, 37,132, + 92, 42, 88,254,241,254,253,251,219,134,133,133,209, 57,115,230,148,248, 76, 74, 75, 77,218,240,211,154,141, 63,253, 56,119,146, +112, 66, 23,107,244,110,192,135, 88, 64, 96, 37,229, 99,193,234, 77,134,251,183,175, 60,114,117,117, 61, 6,160,103, 82, 82, 18, + 92, 93, 93,243, 1, 60,227,114,185, 81, 38,147, 41,145,173,227,254,175,123,175,149,212,208, 97,100,225, 61, 89,154,113,178,196, +160, 21,141,112, 21, 50,109,218,180,192, 69,139, 22,221,121,151,251,194, 41,178,209,178,255, 66,241, 56,174, 46,206, 14,118, 83, +135, 53, 7,195, 0, 70, 19, 96, 52, 81, 40, 85,106, 60,125,114, 87, 5, 49, 57, 96,214, 22, 69,194, 37,243,103,124, 91,245, 97, + 60, 7,137, 89,122, 92, 62,188,145,166, 37, 69,127, 74, 35,247,125,254,174,204,149,139,147,195,165,221, 27,127,192,221, 72, 29, + 76,204, 43,127,197, 48,244,245,247, 15,228, 34,172,238,224,224,176,236,214,173, 91, 85, 68, 34,145,226,249,243,231,166,253,251, +247, 39,234,116,186,245,133,230,170,128, 65,245,235,215, 55,200,100, 50,228,231,231,107,245,122,125,126, 25,230,202,189, 77,189, +218, 87,126,220,176, 69,172,209,233,144,163,214,130,107,239, 84,220, 92,129, 16,210,172,173, 79,165, 74, 68,172, 0, 5, 16,157, +171, 79, 52,199, 92, 1,128,220,218,134,227,222,160, 13, 26,124,179, 6,185, 68, 65, 1,192,222,181, 18,167,237,151, 11,208,105, +213,101, 40, 57, 10, 75, 44,112,226,192,129, 3,227, 3, 2, 2,114,252,253,253,115, 50, 50, 50, 16, 26, 26,138,172,172, 44,172, + 90,181, 10, 79,159, 62, 5,195,188,146, 43,169,184,196, 12, 99,132,172,172, 76, 57,165, 20, 89,153, 25,178, 25, 51,102, 88, 87, + 68,211,100, 50,189,113,111, 85,170, 84, 9, 99,198,140, 17,168, 84, 42,155,216,216, 88,171,162,243,204,213,212,233,116,133,157, +240,129, 82, 10,157, 78,135,156,156, 28,232,116, 58,188,120,241,226,181,185, 42,216,190,101, 6, 75,159, 91,114, 37,123,117,134, +193,194, 7,217,235,222,151, 37, 18, 73, 74,225,131, 83, 44, 22,131, 16, 82, 82, 49,219, 59,233,173,185,112, 91,132, 16, 42,145, + 72, 82, 42, 96, 10,203,221, 31, 51,207, 59, 4, 2, 1,134, 15, 31,142, 59,119,238, 32, 34, 34, 2, 92, 46, 23, 74,165, 18, 42, +149, 10,237,219,183,135, 80, 40,180, 52,130, 69, 5, 2,193,160,233,211,167,139,163,162,162,144,158,158, 94, 88, 73, 30, 38,147, + 9,227,199,143,151,136, 68,162, 65,150,134,234, 19, 19, 19, 59, 62,127,254,220,183,248,148,156,156,156, 83,180,206, 96, 69, 57, +112,224, 0,233,221,187, 55,237,221,187, 55, 45, 52, 90,230,146, 29, 31,186,225,208,145, 99,103,191,251,126, 73,190, 74,153,135, +106,110, 18,228,231,229, 96,193,162, 31, 13, 55,111, 94,189, 52,101,252,232,166,251,247,239, 95, 12,224, 89,193, 42,207,246,239, +223, 63,244,251,239,191,255, 13, 5,221, 53,176,252,171, 34, 84,164,172,123,239, 93, 20,227,149,164, 81, 80, 76, 40,249, 75, 34, + 88,101, 62,116,188,251,213,117,118,176,191,184,125,237, 92,249,177, 39, 64,124, 92, 52,210,146, 98,208,160,105, 27, 60,125,242, + 16,140,193,116,144, 62,223, 95,110, 51,115,226,213,199,199,191, 70,192,151,173,155,214,196,146, 99,249,120, 30,124, 26,217,105, + 73,107,105,212,190,131,239, 98,103, 72,213, 62,129,206,142, 14,151,126, 91, 55,207,238,100, 40, 7,113,113,209, 56,252,219, 74, + 24,244,127,122,247,159,176,248,161,205,232,132,249,217, 41,208,229,153, 32,230,168,196,239,193, 69,248,194,209,209,113,251, 79, + 63,253, 52,186,105,211,166,210, 1, 3, 6, 60,207,202,202,154, 79, 41,221, 87,228,101,209,206,215,215,119,226,218,181,107,189, +227,226,226,112,254,252,249,231, 0,238,149,161, 25,207,229,114,215,159,255,109,211, 36, 73, 85, 63,172,154,254,157,241,192,221, +208,238,148,210,147, 69, 52,253,131,106,249, 28,155, 63,241, 43, 14,115,255, 20, 30,197,164, 32, 50, 71,123,222,220,124, 71,100, + 43, 13,124,145, 4,114,151, 42,120,158,111, 18,240,120,188, 59, 95,124, 49, 92,192,225,242,192,225, 9, 16,154,165,177,228, 37, + 46,191,115,231, 14,135,203,229,190, 97,204,139, 70,132, 44,141, 12, 89,130,185,154,197, 13, 86, 33, 70,163,145, 84, 84, 83,171, +213,162, 36,159, 92, 82, 93, 44,134, 97, 44,219,127, 93, 78,201, 46, 79, 99,153,193, 42, 26,145, 42, 90, 52, 88, 88, 95, 78,163, +209, 56, 73, 36,146,148,194, 98,190,119, 21,193,122,155,150,133,101, 21, 83, 90,146, 63, 14,135, 3,134, 97, 32, 16, 8, 80,167, + 78, 29, 28, 59,118, 12,118,118,118,176,178,178,130,149,149, 21, 36, 18, 9,236,237,237, 95, 27, 44, 14,199,236,214, 55, 84,171, +213,122,120,120,120,224,197,139, 23, 16,139,197,175, 39,145, 72,132,192,192, 64, 40,149,202, 74,248,160, 98,245,192,136,126, 65, + 61,214,237,248, 99,200,177, 99,199,191,212,107, 53, 53,253,252,124,233,189,155, 23, 31, 77, 25, 63,186, 19,107, 73,254,115, 17, +174, 99, 69, 77, 18, 33,228,216,212,169, 83,167, 87, 84,111,234,212,169,211, 75,138,104,189, 51,131, 85,232, 24, 75,114,142,133, +230,106,235,154, 57, 86,127, 60, 0,226,227,163,112,118,223,234, 60,131, 94,151,197, 48, 6,207,200,240,135, 0, 7,219,204,139, +151,209, 70, 61,186,180, 37,103, 67,116,200,205, 78,195,179,123,167,163,161, 22, 78,123,151,230,106,251,186,185,118, 71,159, 16, +196,197, 69,227,228,158,149, 57, 6,163,190, 29,141,220,255,224,109,180, 7, 11,133, 61,250,213,176,233, 58,188, 69, 34, 76, 45, + 77, 24,244, 52,172,179, 91, 75,210, 35,241,106,217, 45,189,254,106,210,210,210, 22,200,229,114,206,210,165, 75, 63,215,104, 52, +115, 40,165, 7,138, 92,132,237,171, 85,171,182,100,195,134, 13,238,177,177,177,194,107,215,174,101, 94,186,116,137, 2, 88, 84, +142, 25,152, 76, 8,225,214,171, 82,105,236,253,232,132,238,148,210, 83, 69, 52, 3,187,214, 15,184,190,101,209, 44,133,225,250, + 1,228, 39,197, 97,218,245,248, 92, 0,211,204,188, 49,236, 28, 28, 28,200,224,193,131,153,188,188, 60, 8,132, 66,198, 96, 48, +112,155, 53,107,102,250,246,219,111, 57,201,201,201,200,205,203,231, 17, 66,236, 40,165,153,229,104,205, 3, 48,190, 89,179,102, +164,113,227,198,183, 87,174, 92,121,166, 44,147, 82,145, 8, 86,185,129, 30, 51, 53, 25,134, 41,241,237,105, 48, 24, 72, 69, 53, +139, 70,176,202, 51, 88, 22, 71,176,180,165, 69,176,210, 44,142, 96,149,100, 86,138,154,195,162, 6,168, 34,117,176,254,130,135, +119,169, 38,202,146,252, 21,214,131, 19, 8, 4,120,248,240, 33, 42, 87,174, 12,189, 94, 15,133, 66, 1,133, 66, 1,185, 92,142, +188,188, 60,240,249,124, 88,184,207,140, 88, 44,142, 13, 13, 13,245,117,116,116,132,201,100,122,195,100, 61,127,254, 28, 50,153, + 44,193,210, 8,150,155,155,219,233,130, 86,132,111,224,226,226, 98,253, 46,142,107,209,200, 85,239,222,189, 43, 84,142,176,110, +209,164, 29, 0,118,244,233,211,103,251,227,155,199, 27,184,186,186, 30,247,247,247, 39, 0,192,182, 24,252,176,162, 87,165,148, +168,165, 21,139, 60,233,138,252, 78, 3, 64, 10,126,167, 21, 49, 96, 69,191,235, 74, 72,203, 88,180,104,209,197, 34,245,183,210, +254,182, 8, 22,241,238, 87,215,201,222,238,226,230, 85,115,172,246, 5, 3, 9,113, 81,184,124,112, 77,142,209,164,111, 7,134, + 38,221, 60,119,240, 0, 8, 84,136, 60,112, 25,216,103,198,163, 1,245,234,213,240,196,161, 16, 3,210,226,159,131, 82,102, 43, + 77,249, 77,245,214, 15,197, 2,115,181,117,205, 28,187, 63, 30, 18,196,199, 69,225,236,190,213, 57, 70,147,190, 93, 69, 58, 41, + 45,228, 11, 66,108, 57, 10,233,207, 67, 58, 54,234,227, 89,181, 18, 24,106, 0, 35,160,232, 53,217,129,247,236,190,234,144, 71, + 7,238, 62, 38,159,249, 50,254,230, 63,215,251,120,126,126,254, 15,132,144, 63, 40,165, 79,139, 60,220, 59,123,123,123, 47,252, +249,231,159,171, 36, 36, 36, 40,238,223,191,159,251,203, 47,191, 68, 49, 12, 51,143, 82,154,106,198, 69,254, 29, 33,100,115,209, + 62,116, 8, 33,181, 39,125, 62,240,230,192,207,190, 16, 71,157,219, 1,219,168,167,152,120, 61,209,244, 44, 75, 55,128, 82,154, +108,142,185, 18,137, 68, 7, 78,156, 56,241,162, 94,189,122, 68,169, 84,194, 96, 48, 32, 61, 61, 29,127,252,241, 71, 40,165, 20, +182,182,182, 56,113,226, 4, 51,112,224,192, 3,132,144,222,165,153,172, 34,221, 52,144,130,110, 26,154,156, 58,117, 42,172, 83, +167, 78,241, 37,153, 20,145, 72, 4,141,198,178,222, 62, 74,107,149, 88, 17,205,210, 34, 88,197,211, 45,209, 44, 44,166, 44,172, +220, 94, 60,189, 16, 46,151, 11,134, 97,254,148, 94,182,193,202, 46,217, 72, 41, 83, 43, 28,193, 42,218,218,175, 34,230,166, 40, +229,117,248, 89,145,150,133,239, 58,130, 85,120, 46, 4, 2, 1,142, 28, 57,130,207, 62,251, 12, 38,147, 9, 82,169, 20,114,185, + 28, 50,153, 12, 7, 15, 30, 68, 97, 55, 14,150,100,209, 96, 48,236, 92,180,104,209,244, 13, 27, 54, 72, 40,165, 16, 10,133,175, + 13,214,156, 57,115,212,122,189,126,167, 57, 6,235,117, 15,237, 12, 13,173,238, 88,118, 43,194,146,214, 41,165, 62,150,205,188, +121,243,134, 50, 12,211, 3,197,186, 98, 40,126, 53, 21,124,214,234,211,167,207,197,178,186,105, 0, 96, 59,111,222,188, 17, 12, +195, 20,246,130,250, 70,107,193, 34,203, 21,190, 75,124,251,244,233,179,189,120, 43, 66,150,127, 61,119,255,109, 25,230,149,110, +174,250,248, 59,217, 59, 92,220,180,114,142,213,174, 59, 64, 98, 92, 36,110, 28, 89,155, 99, 98, 12, 69, 77, 75, 11, 11,255, 30, +214,115,115,178, 65,230, 45, 53,114,211, 99, 1,138,251,111,111,174,250, 85,119,114,176,191,180,101,245, 28,187,253, 15, 56, 72, +136,141,194,165, 2, 19,248, 54,230,106,176, 80,216, 35,208,199,125, 75,255,206, 45,108,173,137, 1,198,152, 48,108, 30,214, 23, +193,221,244,104,222,207, 26,141,186, 40,224, 93, 87,220,247,196,166,204,143,220, 90,146, 47,254,201,104, 86, 49,115,213,173, 74, +149, 42,115,111,223,190,237,201, 48,140,226,242,229,203,121, 27, 54,108,136,212,104, 52,171, 41,165,199, 45,208, 44,106,174,234, + 77, 29, 57,236,218,194,159, 55,139, 67,131,239, 98,201,206,163, 80, 27,116,166,211,241,249,125,138, 22, 31,150,133, 80, 40,252, +225,194,133, 11,178, 90,181,106,145,140,140,140,215,145, 22,189, 94,143,156,156, 28,228,229,229, 65,171,213,162,126,253,250,156, +213,171, 87,203,198,142, 29,251, 3,128, 47,205,205,175, 66,161,128, 64, 32,128, 94,175,127, 29,193, 18,137, 68,176,182,182, 70, + 70, 70, 6,246,238,221, 11, 0,101, 70,197, 4, 2, 97, 18,135, 67, 42, 75,164, 82,173, 88, 44,102, 92, 93, 93, 75, 52, 86,150, +104, 22, 16,223,185,115,103,247,121,243,230,137,235,215,175,255,167, 8, 86, 69, 52, 41,165,170, 14, 29, 58, 72, 87,175, 94, 13, + 79, 79, 79,232,116,186, 55,140, 20,135,195,129, 64, 32, 64, 92, 92, 28,230,207,159, 15, 74,169,249,127,100, 52, 89, 6,212, 26, +234, 8,117,134,225,213,148,110,128, 42,213, 0,189,202,100,225,117,249,218,172, 20, 53, 65, 5,117,164,254,100,128,204,141, 16, +149, 87, 4,104,105,203,194,162,134, 77, 36, 18, 33, 59, 59, 91, 66, 8, 25, 84, 74,143,243,102, 71,176, 10, 13,214,211,167, 79, +177,125,251,118,116,233,210, 5,182,182,182,200,202,202,194,190,125,251, 16, 22, 22, 6,161, 80, 8, 66,136, 37, 81, 44,166,113, +227,198, 63, 94,189,122,181,219,128, 1, 3, 2, 38, 78,156, 40,169, 89,179, 38,158, 61,123,134,121,243,230,105,130,131,131, 35, +212,106,245, 60,152,211, 33,105, 65, 15,237,133,157,136,154,213,138,176,216, 58,197, 41,165,155,134,206,165,168, 21,237,194,225, +141,110, 26,138,114,227,198, 13,175, 42, 85,170,248,227, 85,203,192,194, 23,109,209,214,130,111,188,132,147,146,146, 26,130,109, + 69,200,242, 62, 27, 44, 80, 50,126,192,176,145, 86, 59,239, 16,196,197, 68,224,222,137,245,197,205,149, 57, 15,153,160,162,125, +101,136, 37,178,154, 12,121,213, 44, 57, 55, 61, 14,160, 92,139, 13, 86,113, 77, 80,230,187, 1, 67, 71,218,237,190, 71,144, 24, +247, 18,215, 15,175,179,216, 92, 21,213, 28, 34, 20,206,226,243, 56, 51, 62,110, 85, 79,208,178,174, 47,164,169, 81, 72,142, 79, +196,222,167,105,153, 17, 89,218, 47,174, 19, 61, 98, 94,106, 55,119, 25, 97,103,103,235,194, 71,215,209,246,118,183,142,230, 30, +170,212,142,163,167,122,186, 40,241, 26,157, 83, 98, 62,223, 1,229,105, 18, 66,170, 91, 89, 89, 45, 13, 14, 14,118, 20,139,197, + 86,247,238,221, 51,109,220,184, 49, 78,163,209, 44,163,148,238,169,160,166,123, 67,159,106,151, 23,174,219, 36,206, 87,170,160, +212,233, 33,114,118, 53,253,113,243,201,167,165,117,134, 89, 92,147, 16,210,246,243,207, 63,175,221,184,113, 99, 78, 81,115,165, +211,233,144,155,155,139,188,188, 60,228,230,230, 34, 55, 55, 23, 9, 9, 9,104,221,186, 53,167,118,237,218, 53, 9, 33,109, 41, +165, 23,139,107, 22,233,166, 97, 58, 0, 14, 33,228,238,195,135, 15,243, 59,117,234, 4,137, 68, 2,165, 82, 9, 15, 15, 15, 24, +141, 70,156, 56,113, 2,193,193,193, 74,134, 97, 46, 3,120, 88, 86, 62,213,106,149, 7, 33,132,163, 86,169,234, 12, 29, 58,180, +245,132, 9, 19,222,104, 90,238,228,228, 4, 59, 59, 59,139, 52, 1, 32, 51, 51,179,198,169, 83,167,190,125,248,240,225,119, 93, +186,116,177,158, 62,125,186,200,203,203, 11, 38,147,137, 83, 81,205,172,172, 44,235,251,247,239, 47,107,209,162,197, 87,157, 58, +117,226, 45, 92,184, 16,214,214,214, 48,153, 76,144, 72, 36,200,205,205,197,188,121,243,112,237,218, 53, 35,165,116, 93, 78, 78, +206,196,178, 52,223,232, 7,107,194,138, 50,155, 71,150,214, 15, 86, 9,231,189,196,136, 79,105, 6,168,164,229,255,142,251,168, +152, 97,131,141,141,205, 20, 0, 83, 74,233,113,222,236,123,179,208, 96,113,185, 92, 68, 71, 71, 99,227,198,141,127,234, 7,171, +176, 27,135,146,180, 75,217,119,122,233,210, 37, 19, 33,164,233,189,123,247,166, 12, 25, 50,228, 11,165, 82,233, 46,147,201, 18, + 13, 6,195, 54,181, 90, 93,216, 15,150,192,146,251, 93,169, 84,198,148,212,138,176,248, 50,128, 77,153,154,197,186,105,120,163, + 43,134, 98,171,189,209,133, 67,241,110, 26,138,106, 54,107,214, 44,138,195,225,132, 23, 20,181,135,163, 88,107,193, 34,154,190, + 73, 73, 73, 13, 93, 93, 93, 47, 3,144, 22,111, 69,248, 79, 60,147, 89, 77,214, 96,149, 98,176, 32, 62,119, 59, 26, 66, 73, 38, + 30,157,223,106,177,185, 42,177,228, 65,163,138,152,181, 59,182,174, 78,171,129, 50, 39,229, 25,141,218,147,250,246,103, 25,178, +115,119, 99, 32,150,101,227,193,185, 95,179, 77, 38, 77, 59, 26,241,251,195,138,203, 97,234,250, 19,251, 5,196,218, 14,143,190, +253, 12,137,217, 74,156,140,204,218, 71, 85,218, 47,119, 20,140,187,231,222,148, 92,221, 50, 35,121,125,203, 94,214,125, 29, 42, +241,177, 98,210, 54,136,167,218, 11, 26,125,212,234, 31, 29,163,176,176,226,251,170, 85,171,198,180,108,217, 82,222,183,111,223, +231,153,153,153,111, 84,124,175,128,102, 60, 33,228,231,227, 27,150, 79,178,175,213, 4,107,191,159,108,218,125,243,201, 27,173, + 10,203, 67, 32, 16,180,153, 58,117,170, 64,169, 84,254,201, 92, 21, 55, 88,185,185,185,120,244,232, 17,134, 13, 27, 38,122,248, +240, 97, 27, 0, 23, 75,201,215, 44, 66,200, 6,188, 26,139, 48,121,199,142, 29, 77, 15, 31, 62,220,116,252,248,241,130, 46, 93, +186,224,214,173, 91, 56,123,246,172, 94,175,215,223, 4,112,211,220,225,103, 10,250, 15,186, 79, 8,121,178,100,201,146,166, 92, + 46,119, 86,225,188,208,208, 80,108,221,186,181, 34,154, 70, 0,203, 8, 33, 63,239,216,177, 99,214,185,115,231, 62, 31, 58,116, +168,149,193, 96,192,211,167, 79,241,235,175,191, 86, 84,243, 91, 71, 71,199,153, 39, 78,156,216,118,230,204,153,158,131, 7, 15, +230,140, 27, 55, 14,107,214,172,193,239,191,255,206,152, 76,166,195,124, 62,127,104, 90, 90, 90,185, 13, 80,222,232, 7,171,140, +126,174,202,155, 95, 66, 4, 43, 17,175,122,104, 55,119, 76,194,114,117,223,166, 8,208,204,124, 39,189,245, 99,169, 96, 63,218, +180,105,243, 58,170, 72, 41,125,163,222, 92,161,177,178,180,136, 16,128, 77,193,117,186, 14,192, 26,188,217,139, 59, 23,255,239, +233,221, 92,197,128, 36,173, 77, 40,180,120, 90,246, 96,207, 54, 0, 69, 64, 57,106,217,179,102,205,250,105,246,236,217, 63, 21, +239,138,161,232, 66,197,187,112,152, 59,119, 46, 74,235,166, 1, 64,214,172, 89,179,126, 4, 0,127,127,127, 82, 80, 44,216, 0, + 5,173, 5,139,104,110, 47, 72,151,206,153, 51,103, 8,128,178, 52, 89, 88,254, 65,131, 5, 58, 61,244,234,110, 3, 0,123, 16, +206, 52,250,114,111,232, 91, 63,184, 24, 58,245,194,174, 57,107, 64,145, 69, 77,198, 41,239,100, 15, 24,238,140,208,171,187, 24, +128,216,128,112,166,210,151,191,191,117, 62,137,181, 29,242,230,141,193,239, 33,137, 52, 89,105,248,100,135, 78,247, 70,164,166, +160,206, 85, 63,183,150,100,175,173, 27,255,143,111,219,217,147,227,153, 67,222,139, 19,154,150,150,182, 80, 46,151,115,151, 45, + 91,246,185, 90,173,126,163,226,251, 91,188,112, 38, 19, 66,184,141,170,123,142,189,243, 34,166,135,185,197,130, 69, 94, 36, 66, + 55, 55,183, 39, 26,141, 6,132, 16,104,181,218,215,198, 42, 47, 47, 15, 57, 57, 57,175,127,235,245,122,164,165,165,193,195,195, + 3,132, 16,129, 5, 47,194, 43,132,144,224,121,243,230,181,154, 55,111, 94,157,130, 40,208, 21,139,138,198,222,212, 54, 0,184, + 34,145, 72, 19, 9, 33,238, 2,161, 72,121,227,198,141,115,111,169,169, 42,136,140,172, 88,177, 98,197, 2,153, 76,214, 48, 52, + 52,244,252,219,104, 22,152,167, 79,237,237,237,221,182,111,223,190,127,203,150, 45, 77,120, 60,222, 45, 66, 72,159,236,236,108, +139, 7,123, 38,111, 70, 4, 44,158, 95,140, 81, 48,111, 12,194,114, 35, 68,230, 68,192, 42,202, 95, 97,216, 76, 38, 83,254,204, +153, 51, 83,139, 27,174,226,209,170,194,223,122,189, 94, 99,230,189,100, 73,171,200,114,204, 5,201, 7,128, 87, 99, 11,190, 26, +254,198,220,193,158, 1,148, 58,182,229,236,217,179,233,220,185,115, 9,135,195, 57, 12,224, 25,135,195,121, 81,188, 18,122,209, +121,115,231,206,197,236,217,179,233,156, 57,165,255, 55, 45,212, 12, 11, 11,163, 92, 46,247, 60,128, 40, 46,151, 27, 93, 84,183, +104,122,225, 58,101,105,178,176,252, 99, 6,139, 70,238,143, 3,240,217, 59,253,103, 24,181,255, 28, 44, 24,203,204, 44,205,232, + 61, 49, 0, 6,191, 51, 61, 96,233,136, 70,109, 38, 21,252, 11, 92, 81,220, 92, 21, 37,241, 42, 61,236,218,156, 44,106,244, 81, +171,241, 5, 47,159,133,239,195, 73, 45,169,226,251, 59, 48, 89,127,170,248,110,193,203,230,140, 68, 34, 33, 74,165, 18,106,181, +250,141,104, 85,110,110, 46, 84, 42, 21,242,243,243, 95, 87, 78,207,207,207, 47, 44,238,162, 22,230, 81, 5,224, 36, 33,228, 12, +165,212,244, 46,246, 91,173, 86, 85, 46,120,177,113,223,149,102, 65, 67,131, 47,222,165,102, 70, 70, 70, 34,128,102,222,222,222, +194,136,136, 8, 93, 69,117,202, 27,200,217,220,129,158,223,101, 52,232,175,230, 93, 27, 54, 0,208,235,245, 53,254,130,200,218, +179,119, 44,248,107,135, 22, 1, 92, 20,237,251,167,188,193,158, 11,141, 25,197,175,165,228,145,146, 87, 14,146, 2,216,254,242, +229, 75, 79,134, 97, 98, 74,136, 36,189, 49,111,206,156, 57, 40,173,127,190, 98,154, 0,112, 40, 46, 46,206,205,100, 50, 37, 21, +211,125, 35,189, 44, 77, 22,150,127, 56,130,245,223,228, 55,157,110, 54,202, 25,108,184, 40, 73,215,233, 12, 0, 51,222,183,253, +120,151,230,170,136,102,120, 69,214, 51, 24, 12, 23, 0,192,209,209, 17,142,142,142,150,172, 87,209,124,154,254,130,125,255, 87, +104,190,141,185, 98,249,111, 65,179, 66,227, 0,124, 95,238,114,229,247,222,254, 39, 67, 84,240, 53, 11, 64, 86, 41, 30,167,172, +121,101,105, 2, 64, 46,128,220, 18,214, 45, 45,157,133,229, 31,129,195, 30, 2, 22, 22, 22, 22, 22, 22, 22,150,119, 11, 1, 16, + 84,202, 63, 6,179, 91, 7, 16, 66,130, 42,240,239,253, 28,171,201,106,178,154,172, 38,171,201,106,178,154,255, 45,205,242,180, +139,183, 70,126, 87,195,104,253,237, 20,182,108,249, 43, 38, 0, 65,172, 38,171,201,106,178,154,172, 38,171,201,106,178,154, 21, +220,206,200,191, 99, 59,127,197,196, 22, 17,178,176,176,176,176,176,176,176,188, 99,216, 74,238,255, 82, 8, 33,213, 1, 76, 7, + 96, 93, 36,249, 14,165,116, 81,177,229,118, 1,144, 22, 73, 82, 2,152, 71, 41,125, 97,201,246,184, 92,238,162, 86,173, 90,125, +121,237,218,181,229, 6,131, 97, 94, 5,242,235,233,234,234,250, 35, 33,164, 62, 0, 62, 33,228,101, 74, 74,202, 34,131,193,112, +238, 45,142, 65, 85, 23, 23,151,197, 0,234,114, 56, 28, 62, 33, 36, 34, 37, 37,101,190,193, 96,184,244, 22,154, 10,103,103,231, +230,148, 82, 23, 0, 92, 62,159,159,145,144,144,112,187,162,173,225,250,204, 13, 19,228, 42,141,124, 0,176,146,241, 12,251,103, +251,235,205, 77, 99,175,114, 22, 22, 22,150, 15,212, 96,245,247, 37,174, 38, 30,120,251, 67,105, 92,225,203, 7, 64, 29, 0,213, + 1,188, 0,240,144, 82,154,247,150, 70,225, 95,161,249, 30, 50,139, 82, 58,176,216,126,255,105,161,118,237,218,117, 63,115,230, +140,180,112, 24, 21,134, 97, 32,145, 72,140, 0,134, 89,112, 60,157, 6, 12, 24, 48,117,243,230,205,232,219,183,239, 76, 66,200, + 79,148,210,124,115,215,183,179,179,235, 93,181,106,213, 53,155, 54,109,114,108,210,164, 41, 17, 10,133,120,249, 50,194,125,212, +168, 81, 53,157,157,157, 15,167,164,164,124, 97,233,206,219,219,219, 15,170, 86,173,218,138,141, 27, 55, 58,180,104,209, 2,132, + 16, 4, 7, 7,187,127,251,237,183,117, 92, 92, 92,246, 36, 39, 39,127,101,169,166,131,131,131, 79,181,106,213,218,174, 93,187, + 86,210,188,121,115,136,197, 98, 60,124,248, 80, 62,122,244,104, 23, 23, 23,151,167,201,201,201,151, 45, 53, 87,143,131,143,246, + 52,234,181, 75, 0,128, 39, 16, 77,110,250, 83,238,209,204,224, 43,221,202, 75,235, 51, 23,135, 88,147,197,194,194,194,242, 1, + 26,172,222, 1,100, 30,120,152, 14,128,116,174, 78,246,156,141,226, 94,109,223,190,189,247,240,225,195, 73,189,122,245, 16, 28, + 28,236,179,103,207,158,143,121, 60, 94,132,201,100, 10, 6, 16, 98,110, 47,212,132, 16, 62,128, 64, 46,151, 91,255,125,214,124, +207,145, 21,236,119, 10,128, 59, 5,105,119,138, 47,116,225,194,133, 35, 60, 30,175, 48,130,213, 72,169, 84, 58,227,205,168,151, + 57, 84, 49, 24, 12, 8, 15, 15, 7,135,195,225, 3,240,194,159,135,190, 40,237,188,184,187,187,187,175,191,121, 39,216,158,240, + 36,200,210, 0,208,232, 33,148, 59, 99,243,214, 29,118, 19,190,249,234, 83, 43, 43,171,171,185,185,185,191, 89, 96,248,188, 60, + 60, 60,126,122,244,232,145,189, 84, 42, 5,195, 48,200,203,203,131,139,139, 11, 54,109,218,100, 51, 97,194,132,129, 18,137,228, +146, 90,173,254,221, 18, 83, 94,173, 90,181,182, 79,158, 60,145, 20, 14,244,172,211,233,224,238,238,142, 93,187,118,137,198,141, + 27, 87, 67, 36, 18,197,107,181,218, 72,115, 53,115,149, 70,190, 81,175, 93,178,125,221,156,202, 0, 48,244,171, 57, 75,132,121, + 86, 39,204, 73,203, 85, 26,143, 3, 96, 13, 22,203,223, 10, 33,164,190,131,131,195,129,244,244,244,203, 0,190,120, 23, 93,137, + 16, 66,220,120, 60,158, 23,165,212,166,224,119,182,209,104,140,162,148, 38, 86, 84,211,193,187,109, 55,136,164,159,129, 50,117, + 56, 0, 8,135,243,208,164, 87,109, 77,127,118,241,232, 91,105, 10, 37,159, 3,180, 14, 7, 96, 8,135,243,136, 49,170, 54,165, +133, 93, 60,201, 94, 25, 44,239,204, 96,245, 9, 32,182, 0,166,236, 89, 51,157,195,227,114,201,128,111, 22, 13,220,178,110, 25, +167,125,183, 62,175,139, 73, 90,182,108,137,150, 45, 91,146, 37, 75,150, 84, 63,127,254,124,245, 93,187,118, 25, 9, 33,143, 40, +165,123, 75,219, 88, 39,111,162,102, 0,241,199,126, 60,229,128,239,127,219,216,184,113, 99,136, 68, 34,188,141, 38, 0,116,168, +206,141,236,210,216,251,209,128,177,179, 98,154, 52,105, 70,223,133,230,191,136, 59,148,210, 30, 5, 15, 46, 91, 15, 15,143,230, + 70,163, 81, 12, 0, 60, 30, 79, 3, 96, 44, 45, 24,226,135, 16,114,152, 97,152,238, 22, 60, 24, 57, 0,102,119,239,222,125,230, +215, 95,127, 13, 15, 15, 15,140, 27, 55, 14, 6,131, 33,152, 16, 50, 11,192,226,242, 58,242,115,114,114,154,181,126,253,122, 59, +158, 80,134,122, 83,162,144,148,109, 4, 0,200, 69,192,145, 49, 20,227,198,141,179,186,119,239,222,124, 0,102, 27, 44, 39, 39, +167,121,155, 54,109,178,147, 74,165,160,148, 34, 63, 63, 31,121,121,121,200,207,207, 71,126,126, 62,190,250,234, 43,171,167, 79, +159,254, 8,192,108,131,229,236,236,220,124,237,218,181, 18,177, 88,140,252,252,124,129, 94,175, 39,121,121,121, 80,169, 84, 84, +167,211,233,199,142, 29, 43, 10, 9, 9,105, 3, 32,146,125,108,188, 55,102,128, 11,224, 19, 62,159,223,203,219,219,187,193,139, + 23, 47, 30, 24,141,198,131, 0, 14,190,237,159, 40, 66,200, 71,110,110,110, 11, 18, 19, 19,215, 82, 74,119,252, 87,142,169,179, +179,243,193, 27, 55,110, 84, 94,191,126,253,176,229,203,151,159,176,228, 30, 42,229, 79,111,211, 70,141, 26, 57,244,234,213,139, +239,226,226, 2,149, 74,133,136,136, 8,233,185,115,231, 28,197, 98,113,134, 86,171,189,105,201,185,114,240,109, 46, 7,207,106, + 79,211,182, 65, 45,250,126,250,137,194,217,222, 26,106,157, 9, 47, 98,146, 60, 78,157, 56,210,218,173,230,199, 55,244,250,156, +254,233,207,174,231, 91,170,217,182, 83,215, 22, 65, 31,125,164,176,182,177, 70,142, 82,143,151,209, 9,158, 23,207, 30,109,233, + 90,243,227, 43, 12, 49, 12, 78,121,124, 70,197,222,117, 44,150, 96,118, 37,119,169, 84, 90, 98,186,181,181, 53,218,182,109,139, + 69,139, 22,241, 0,212, 47, 58,239, 79,131,159, 2,162, 99, 27,166,193, 90, 38,226,120,120,120, 40,172,172,172,222, 90,243, 85, + 34,227,213,204,131,118,190,251,219,244, 97,231,118,173, 8, 84,230,101,243,139, 47, 34,151,203,225,235,235,139,153, 51,103,154, +167,249,150,252,221,154,174,174,174,126, 45, 91,182,172,127,225,242,101,155,196,196, 68, 81, 98, 98,162,232,204,133, 11, 54, 77, +155, 54,173,239,234,234,234, 87, 68,195,146,124,254,176,110,221,186, 89,135, 15, 31,230,180,108,217, 18,182,182,182,104,219,182, + 45, 78,156, 56,193, 91,190,124,249, 66, 0, 51,203,203, 39,135,195,105,209,178,101, 75, 2, 74,145,156, 99,196,237, 69,126,120, +184,204, 31,121, 26,138,204,156, 92,168,213, 26, 72,165, 82,113, 65,177,174,185,251,222,172,105,211,166, 4,192,107, 83,149,151, +247,106,202,207, 87, 66,167,211, 67, 36, 18, 41, 8, 33, 98,115, 53, 41,165, 46,205,155, 55, 7, 0,232,245,250,215,101,173,217, +217,217, 36, 39, 39, 7, 58,157, 14,124, 62, 95, 64, 8,225,153,171,105, 37,227, 25,120, 2,209,228,161, 95,205,137, 27,250,213, +156, 56,158, 64, 52, 89,167,200, 53,153,147,102, 37,227, 25,254,201,235,147, 16,226,200,229,114,127,245,246,246,126,202,229,114, +183, 19, 66, 92,222, 70,147, 16,210,144, 16,178, 80, 42,149,158,171, 81,163, 70,156, 76, 38,187, 64, 8, 89, 76, 8,105, 90, 17, + 77, 66,136, 80, 42,149, 94, 88,184,112,225,254, 7, 15, 30,244, 61,127,254,188,215,227,199,143, 63, 93,178,100,201, 30,185, 92, +126,149, 16, 34,125,155,123,211,203,203,107,203,237,219,183, 27, 54,107,214,108, 51, 33, 68,244, 46,238,119, 66, 8,151, 16, 82, +151,152, 57, 38,208,223,125,222, 9, 33,110,245,234,213,171, 44, 22,139, 17, 20, 20, 4, 0,109,222, 82,179,233,232,209,163, 93, + 38, 76,152,192,127,248,240, 33, 54,111,222,140,195,135, 15, 35, 53, 53, 21, 93,187,118, 21,180,107,215,206, 69, 36, 18, 53,181, + 72,147,103,181,231,155,111,199,119,154, 52,110,132,226, 81,172, 30, 91,207,197,226,208,205, 36,164,170,132,232,246,233, 80,235, +142, 61,250,117, 20,138,172,247, 88,170, 57,117,202,148, 78, 35, 63, 31,168, 8, 77, 98,112,228, 86, 50,110,133,231,192,200,183, + 65,151, 79,191,176,173,211,188,211,199, 60,240,183,189, 15,231,232, 67,215,252, 96, 35, 88,132, 16, 74,233,171, 65, 92,247,135, +210,172,222, 1,228,199,126, 95, 47,156, 73, 56,132, 86, 9,108, 22, 90,169, 90,128,210,222,222, 30, 42,149, 10, 90,173, 22, 2, +129, 0, 26,141, 6,177,177,177,184,117,235, 22,108,109,109, 45,218,112,110,110, 46,228,114, 57,228,114,249, 59,209,156, 54, 44, + 72,244, 50, 46, 77,116,250,214,165,214,171,190,252,189, 73,181,186,109, 30,127,212,111,220, 19, 43, 71, 55,205,227,199,143,113, +227,198, 13,100,101,101,161,113,227,198, 31,202,185,187, 83,240,156,190, 67, 8,177,109,217,178,165,251,233,115, 87,108,243, 53, +140, 85,116,138,129,207, 48, 12,164, 82, 87,227,222, 3, 71,114,250,126,218,141, 16, 66, 82, 1,220, 41, 48,181,119,202,121, 17, +136, 1,248,245,238,221,123,234,151, 95,126,137,136,136, 8,140, 24, 49, 66,125,231,206,157,140,102,205,154,217,111,218,180, 73, + 50, 97,194, 4, 92,190,124,121, 54, 33,228, 15, 0, 81,148, 82, 77, 41, 55,161, 64, 32, 16,192, 88, 96, 23,244, 38,230,181,175, +207,205,205, 5, 85,103, 65, 32, 16,112, 1, 56, 2, 48,171,158, 28,195, 48, 2, 62,159,255,218, 92,197,166,228, 34, 54, 85,133, +220,124, 29,212,106, 35,116,106, 10,174,212,158, 7, 68, 59, 3,136, 54,243,120,114,197, 98, 49,140, 70, 35,242,242, 94,101,163, + 48, 50,166,211,233,144,147,147, 3, 46,151, 43, 7, 96, 5, 32,211, 28,193, 87,149,215,113,168,160,184, 15,119,119,118,119,120, +113,124,154,190,247,156,167,175,211,172,100, 60,195,129, 9, 53,184,246,238,117,174,213,237,187,205,191, 48,237,159,172,127, 69, + 8, 17, 57, 58, 58, 94,220,191,127,127,141,234,213,171, 35, 42, 42,202,191, 79,159, 62,141, 9, 33,117, 45, 29, 51,145, 16, 34, +229,112, 56, 63,126,246,217,103, 95, 14, 24, 48,128,248,248,248,128,199,227,193,104, 52,186, 71, 68, 68,180,221,183,111,223, 20, + 30,143,183,201,100, 50,125,103,110,189, 62, 66, 8, 71, 40, 20,238,221,184,113, 99,171,198,141, 27, 99,251,246,237,184,115,231, + 14,211,176, 97, 67,206,144, 33, 67,224,233,233,217,120,200,144, 33,135, 8, 33, 93, 42, 18,201, 34,132,120, 14, 26, 52,168, 50, +151,203, 69,179,102,205, 4, 55,110,220,168, 7,224,198, 91, 30, 83,185,187,187,251,229, 54,109,218,212, 61,119,238,220,125, 66, + 72, 27, 75,234, 49, 18, 66,122,184,185,185, 45,177,182,182,182,181,224, 25,171, 74, 72, 72,152,104,193,120,164, 77,234,215,175, +143,152,152, 24,248,249,249, 65, 32, 16, 52, 37,132,140, 2,208, 9,192, 12, 75, 70,135, 32,132,184, 53,109,218,212,161, 77,155, + 54,100,241,226,197, 0, 0, 62,159, 15,147,201, 4, 14,135, 3, 62,159, 15,127,127,127, 18, 25, 25,105, 71, 8,113, 51,167,184, +208,193,187,109,183,102, 31,117,106,209,170,113,109,206,242, 3, 47, 96, 98, 76,224, 18, 35,120,132, 1, 99, 16, 65, 36,224,194, + 39,176, 1, 55, 60,228, 81, 99, 7,223,246,221,210,159,157, 61,106,142,102,167,110,221, 91,214,240,243,225,172, 58,244, 18,217, + 9, 79, 77, 9, 97, 87,210, 57, 92, 14,106,212,111,231,224, 19, 80,151, 91,183,113, 27,126, 98, 84, 72, 91,187,234,173,131, 50, + 95, 92,102, 77,197, 95,255,252,121,237, 69, 62, 24,131, 85,156, 3,161,116,150,149,144,120,237,219,183,155,147,150,167, 87, 70, + 68, 68,192,193,193, 1,174,174,174,176,182,182, 70,104,104, 40, 46, 92,184,128,103,207,158,129, 97, 24,212,169, 83,199,162, 13, +167,167,167,227,209,163, 71,176,181,181,125,103,154,213, 42, 59,226,235,202,142,130,148,140, 92,193,185, 59,207, 26,255, 50,237, +211, 0,142,255,167, 91, 52,154,255,191,251,117,186, 15, 99, 36,145,162,173, 5, 61, 60, 60,154,111,221,186, 85,160, 53, 66,225, + 51,234,230, 82,165,198, 36, 3, 0,153,152,171, 12, 94,226,251,221, 15, 63,252,160,252,252,243,207,253, 99, 99, 99, 23,149,167, + 43, 20, 10, 23,116,238,220,121, 18,165,148,255,205, 55,223, 0, 0,134, 14, 29,154,123,235,214, 45, 31, 74,105, 42, 33,196,109, +248,240,225,207, 47, 94,188, 40, 29, 63,126, 60,215,104, 52,134,242,120, 60, 74, 8,153, 71, 41,157,243,167, 16, 41,135,115,239, +254,253,251, 85,220, 60,125,225,105,207, 65,203,153,175,134, 83,179,151, 50,136,143,126,137,176,199,119,224,226,226, 98,237,234, +234,250,212,207,207, 79,159,144,144, 48, 37, 63, 63,127,125, 89,121, 20, 8, 4, 15,131,131,131, 93, 61, 61, 61,145,159,159,143, +248, 52, 21,198, 29,148, 34, 87,253, 42,104,193,135, 26,117, 43,251, 42, 36, 28,221, 29,103,103,103,189, 78,167,251, 62, 59, 59, +187,204,225, 62,248,124,126,198,227,199,143,229, 30, 30, 30,208,104, 52, 52, 51, 51,147, 40,149, 74,228,229,229,145,227,199,143, +247, 76, 74, 74,106,232,229,229, 69,220,221,221,231, 85,175, 94, 93,157,144,144, 48,194,156, 58, 94,251,103,251,235, 9, 33, 38, + 30,143,183,124,228,200,145,125,255,248,227,143,123, 7,230,212,232, 65, 41,213, 23, 60, 76,172, 3, 3, 3, 79,215,174, 29,224, +182, 99, 89,173,213,148,210,165,239,193,229,245,217,244,233,211,107,216,217,217, 97,244,232,209,152, 59,119, 46,102,205,154, 85, +125,244,232,209, 35, 1,252,100,193,131, 82,226,226,226,114,119,213,170, 85,254,205,155, 55,199,137, 19, 39,176,123,247,110, 68, + 70, 70, 26,189,188,188,120,141, 27, 55,198,236,217,179,209,177, 99,199, 17, 99,199,142,109, 77, 8,169,103,166,233,248,124,246, +236,217, 61, 90,180,104,129, 97,195,134,105, 47, 93,186,212, 23,192,153,179,103,207,182,187,124,249,242,129,157, 59,119, 74, 22, + 46, 92, 24, 52, 97,194,132,209, 0,214, 84, 96,255,123,182,106,245,106,108,227, 22, 45, 90, 96,201,146, 37, 29,223,198, 96, 17, + 66,132,246,246,246,199,183,111,223, 94,215,215,215, 23,131, 7, 15,174,215,183,111,223,227,132,144,246,148, 82,179, 30, 72,149, + 42, 85,250,241,240,225,195,222,165,149, 36,148,132, 86,171,181,251,228,147, 79, 22, 3,176,200, 96,237,218,181, 11, 19, 39, 78, + 68,157, 58,117,106, 55,105,210,100,195,168, 81,163,208,187,119,239,143, 8, 33,206,148, 82,165, 89, 47, 22, 30,207,171,107,215, +174,252,131, 7, 15, 2, 0, 90,181,106,133,160,160, 32, 60,121,242, 4,215,174, 93, 3,151,203,133, 76, 38, 67,243,230,205,133, +137,137,137, 94, 0,202, 53, 88, 28,145,244,179, 30, 93,187, 40,142,220, 74,130,137, 49,162,129,183, 21, 26,251, 59, 33, 60, 62, + 23,193, 79,227, 97,210, 9, 96,101,103,143,166,173, 59,216, 37, 39, 68,126, 6,160,252,250, 88, 34,233,103,189,122,124, 44, 63, +114, 51, 17,217,137, 97,244,197,157, 63, 46, 24, 52,202, 17, 0,112,239,252,158, 13, 46,246,146,246, 62,245, 27,112,219,180,239, +110,123,112,119,242,103, 0, 88,131,197,242,246, 6, 11, 0,242,244, 72,249,232,227, 79,113,255,254,125, 0, 64, 70, 70, 6, 50, + 50, 50,224,237,237,141, 53,107,222,124,110, 85,196,184, 48, 12,243,206, 53, 1,192,217,222, 10,131,187, 52,226, 93,123,180, 91, +172, 76, 75, 19,203,229,114,205,135,102,176,138, 98, 52, 26,197, 94, 94, 94,200, 85,131,228,168, 12,242,244, 61,175, 34,251, 14, +253, 47,201,117, 58, 29, 71, 46,151, 67,171,213,138,205,120, 17,240,123,244,232, 49,105,239,222,189,252,176,176, 48, 84,171, 86, + 13,122,189, 30,183,110,221,138, 47, 24,160, 24,148,210, 68, 46,151,155,200, 48, 76,245, 58,117,234, 96,209,162, 69,240,247,247, + 39, 93,186,116,153, 82, 96,178,152,162,154, 73, 73, 73, 63,142, 26, 53,170,221,190, 3,127,216,109,236,167, 70,110, 78, 46,242, +243,243,241,240,193, 61,100,166,104,240,203, 47,191, 64, 44,150, 16, 0,130,212,212, 20,193,248,241,227, 87,187,187,187,119,138, +143,143,239, 90, 90, 62, 19, 19, 19, 23,124,245,213, 87, 77,247,236,217, 99,147,151,151, 7,181, 90,131, 76,165, 20, 79, 87,190, + 26, 95,183,198,183, 79,177,110,237,122, 78,173, 42, 50, 7,149, 74,133, 47,191,252,114,133,155,155, 91,243,196,196,196,225,165, +105, 38, 36, 36,220,254,250,235,175,157,119,238,220, 41,214,233,116,122,147,201, 4,181, 90,205,217,179,103,207,148, 42, 85,170, +216,110,218,180,137,136,197,146,130,101,227, 5, 99,198,140,217,235,226,226,178, 51, 57, 57,121, 88, 57,199,148,203,229,114, 87, +238,216,177, 99, 72,191,126,253, 20, 73, 73, 73, 1,135, 15, 31, 22, 1, 80, 23, 44,226,218,190,125,251, 42,203,150, 45,115, 12, + 12, 12,156, 66, 8,225, 83, 74,255,209, 65,195, 29, 28, 28,198,246,232,209, 3,139, 23, 47,198,209,163, 71, 39,216,217,217,173, +152, 59,119, 46,220,220,220,190, 38,132,172,180, 96, 0,221,165, 63,253,244,147,191,191,191, 63,134, 14, 29,170, 59,119,238,220, +116, 0,135, 0,196, 92,189,122,213, 99,219,182,109,221,246,238,221,187,120,213,170, 85,226, 53,107,214,120,127,250,233,167, 43, + 1, 12, 47,247,254,118,118, 30, 63, 96,192, 0, 44, 91,182, 12,151, 46, 93,250,148, 82,122,162, 96,214, 73, 66, 72,183,133, 11, + 23,158,159, 57,115, 38,126,250,233,167,111, 44, 53, 88,132, 16,121,141, 26, 53,190,239,212,169, 19,174, 94,189,138,150, 45, 91, +162,105,211,166, 19, 8, 33,171, 41,165,233, 21, 48, 87, 28,185, 92,190,119,235,214,173, 45,171, 84,169,130,249,243,231, 99,210, +164, 73,216,178,101, 75,203,193,131, 7,239, 37,132,244, 42,126,207,148,132,181,181,181, 92, 42,149, 98,202,148, 41, 52, 50, 50, + 50,171,188,229, 43, 87,174,108,187, 98,197, 10, 98,107,107,107,109,174, 25, 22,139,197,205,106,214,172,137,217,179,103,227,236, +217,179,152, 57,115, 38,106,214,172,137,152,152, 24,244,239,223, 95, 58, 99,198,140,222, 0,204, 26,151,144, 82,106,109,111,111, +143,212,212, 84,240,249,124, 52,111,222, 28,135, 14, 29,130, 86,171,133,147,147, 19,178,179,179,209,168, 81,163, 66, 51,102,109, +222,209,164, 53, 29,236,172,145, 26,146, 0, 30,140,168,239,227,128,139, 79, 50,160, 55, 48,112,178,183, 65,114,106, 10,154,212, +116,135, 78,231, 1, 74,153,154,230, 40, 10,185,156,250, 34,177, 4,153,121,233, 72,120,122, 41, 67,111,210,142,202,142,188, 22, + 7, 0,118,213, 90,141,186,119,237,236,189, 62, 31,183,114,202, 87, 86, 6,161, 76, 35,214, 50,176, 88, 2,199,140, 27,229, 79, +105, 42,213,159, 75, 9,222,214,184,252, 21,154, 37,241, 33, 26,172, 66, 10, 7, 71,214, 25, 24,232, 12, 76,225,191, 88,168,213, +106,115,163, 98,134,211,167, 79,111, 31, 55,110, 28, 86,172, 88,129,231,207,159, 67, 32, 16,160,102,205,154,174,132, 16,121, 97, +196,165,126,253,250, 78, 28, 14, 7,225,225,225, 88,190,124, 57, 62,255,252,115,122,227,198,141, 45, 37,189, 40, 40,165, 15, 50, + 51, 51,215,142, 26,241,121,118, 86, 74, 44, 12,234, 44,164, 38,188,132, 86,153,141,249,139,126,132,202,192, 67,114,142, 30,201, + 57,122,112, 68,118,216,176,105, 43,183, 70,141, 26,157,120, 60, 94,215, 50,242,121, 43, 37, 37,101,211,152, 49, 99,178,147,147, +147, 95,239,159,206, 64,161, 51,188,121,189, 74,165, 82,172, 92,185,210,218,199,199,167, 7,159,207,111, 91,134,102, 82, 92, 92, + 92,216,152, 49, 99,116, 41, 41, 41,200,201,201,193,145, 35, 71,186, 85,169, 82,197,118,241,210, 21, 68,169,231, 33, 57, 91,143, +228,108, 61,132,114, 39,236, 61,240, 7,215,215,215,119, 32,159,207,111, 90,158,185,218,185,115,231,144,126,253,250, 41,150, 46, + 93,154,121,248,240,225,117,148,210,162, 39, 36,124,229,202,149,251,246,238,221,155, 55,105,210, 36,187, 37, 75,150, 76, 32,132, + 76,255, 7,195,243,109,251,245,235,231,199, 48, 12,246,239,223,255,152, 82,250,211, 31,127,252,113, 87,171,213,162,127,255,254, + 94,120, 85, 92,100,142, 78,195,129, 3, 7,126,217,178,101, 75,124,251,237,183,250,115,231,206,213,167,148,174,160,148, 70,211, + 87,196, 80, 74, 87, 95,190,124,185,206,216,177, 99,181,141, 26, 53,194,176, 97,195, 62, 39,132,180, 44, 71,183,217,128, 1, 3, +252, 25,134,193,158, 61,123, 30, 21, 49, 87,133,231,241,194,129, 3, 7,110,233,116, 58, 12, 26, 52,168, 42, 33,164,157, 5,251, + 46, 16,137, 68,251,127,248,225, 7,155,132,132, 4, 12, 25, 50, 68, 27, 30, 30,142, 57,115,230, 72,172,173,173, 79, 20,222, 3, +150, 32, 18,137,126,249,249,231,159,123,212,170, 85, 11, 99,198,140,209,173, 95,191,126,220,151, 95,126,169,171, 95,191, 62,214, +173, 91,215, 67, 40, 20, 90, 52, 4, 72, 98, 98, 98,118,104,104,168,125,121, 83,124,124,124,138,153,251, 44, 85, 40, 20, 55, 3, + 3, 3,115,107,214,172,217,192,104, 52, 34, 52, 52,244,229,246,237,219,153,154, 53,107, 98,237,218,181, 88,178,100, 9,186,118, +237, 10, 46,151,219,219,146,188, 42,149, 74,136,197, 98, 8, 4, 2, 4, 7, 7, 67,171,213, 66, 42,149, 66, 44, 22,131,203,229, +194,198,198, 6, 10,133, 2, 0,168,121,121, 5,205, 85, 25,192,231,115,192,227, 48, 8,139,201,129,222,192, 64, 44,224,130,207, + 35, 0,101, 96, 35,227, 67, 44,228,130, 67, 8, 99,166, 38,114,148,122, 8, 5, 28,240, 5, 66,194, 49,154, 36,175, 95,142, 60, +147, 68, 34, 17, 18, 7, 43, 17,196, 2,182, 79,110,150,119, 28,193, 42,140, 50,153, 99, 82,180, 90,237, 59, 55, 62,111,171, 89, +146, 57,124, 91,205,247,242, 36,242,120,154,103,207,158, 9,173,236,221, 24,123, 5, 63,171,202,231,215,172, 1,192, 78,206,203, +209,155, 12, 76, 98, 98, 34, 68, 34,145,198, 28, 45,141, 70, 51,130, 16, 50, 31, 64, 0,143,199, 59,182,117,235, 86,178, 99,199, + 14,219, 1, 3, 6, 68, 16, 66, 18, 2, 3, 3, 61,183,110,221,106, 5, 0,171, 87,175,166,123,247,238,237,136, 87, 93, 95, 36, +151,166,153,156,156, 60,135,207,231,223,248,234,171,175,214, 8,133, 66, 91,153, 76,102,127,245,234, 85,162,209, 83, 52,156, 30, +243,186,101,161,149,132,131, 43,211,172, 48,114,228, 72,238,211,167, 79, 23, 1, 56, 86,134,230, 20,145, 72,116,245,249,243,231, + 43,172,221,235, 58,202, 60,167, 91, 55,158, 22, 14, 0,240,116,224,131, 83,240, 60,204,206,206, 70, 90, 90, 26,190,252,242, 75, +219,136,136,136, 41, 0, 46,150,166, 25, 31, 31,127, 89, 36, 18,197,135,132,132,180,225,243,249, 66,153, 76,214,240,230,205,155, + 68,163, 99, 80,123, 74, 12, 50,243, 95,229,211, 78,206,195,189, 31,156,241,245,215, 95,243, 94,188,120,241, 35,128, 22, 37,254, +123,225,112,150, 20, 53, 87,147, 39, 79,126, 8,160, 42, 33,228,141, 34, 80,147,201, 68, 6, 13, 26,244, 4, 64,205, 73,147, 38, +217, 81, 74, 39, 16, 66, 50, 41,165, 27,255,238,107,201,202,202,106,241,168, 81,163,176,119,239, 94,100,101,101,173, 4,128,220, +220,220,159,118,237,218,181,103,196,136, 17,248,237,183,223, 22, 19, 66, 78,153, 17,197,234,220,191,127,127,156, 60,121, 18,231, +207,159,255,158, 82, 26, 90,202, 61,250,156, 16, 50,229,240,225,195,171, 6, 12, 24,128, 95,127,253,181, 19,128,171,101,232,182, +239,216,177, 35, 78,156, 56,129,140,140,140,117, 37, 45,144,157,157,189,254,200,145, 35, 77, 58,118,236,136, 69,139, 22,181, 7, +112,193, 12,163,225,111,109,109,189,117,213,170, 85, 13,107,213,170,133,129, 3, 7,106,244,122,125,167, 73,147, 38, 29,221,189, +123,183, 98,251,246,237, 13, 70,142, 28,121,155, 16,242, 5,165,244,150, 57,199,146,203,229, 46, 92,179,102,205,240, 54,109,218, + 96,194,132, 9,198,211,167, 79,119,167,148,158, 33,132, 68, 76,158, 60,249,248,242,229,203,185,203,150, 45, 27,206,229,114,211, + 76, 38,211, 63,101,170,127, 88,189,122,117,147, 14, 29, 58,224,229,203,151,184,117,235, 22,244,122,253,111, 55,111,222,188, 82, +189,122,245, 31,116, 58,221, 81,153, 76, 54, 84,161, 80, 4,214,173, 91,183, 29, 33, 68,106, 78, 61, 60, 66, 72,118, 68, 68,132, +204,201,201, 9,124, 62, 31,143, 30, 61,130,147,147, 19, 0, 32, 53, 53, 21, 53,107,214, 4,151,203, 69,118,118, 54, 0,228,152, +103,134, 56,143, 35,162, 19,171,218, 41,100,128, 73,140, 7,225,241,112,116,176,133,137,112,144,156,156,132,186,126,238, 32,132, + 32, 59, 35, 25,132,144, 39,230,104,154, 40, 19, 28,155,152, 90,201, 94, 33, 66,173, 38, 29,236,111,158, 74,219, 97, 93,173,197, + 72, 30,151,112, 69, 98,171,141,195,135, 13,115, 96, 24,138,236,140, 20,240, 56,156, 59,172,101, 96,169, 80, 4,171,180, 74,101, +175, 42, 75, 75,203, 52, 41, 98,177,248,117,244,196,130,127,118,239, 92,179, 60,254, 10,205,127, 48,210, 48,141, 16,114,152, 16, + 50, 45, 46, 46, 46,108,248,240,225,122,163, 94,155,119, 99,126,213,169,247, 23, 85, 25,115,115,142,235,152, 67,227,172,167,170, +114, 50,243, 86,175, 94,109,136,139,139, 11, 43,186, 78, 57,198, 52,150, 82,122, 98,219,182,109,235,247,239,223,143,154, 53,107, + 34, 52, 52,212, 73,169, 84,214,123,242,228,137,157,191,191, 63,118,236,216,129,189,123,247,174,160,148,158, 45,203, 92, 21,137, +174,157, 75, 74, 74,242,141,137,137,241,182,177,177, 49,216,216,216,160,120,203,194, 92, 53,131,140,236, 28,216,217,217,195,202, +202,202,171, 60, 77,173, 86,123, 34, 41, 41,201,135,177,245,107,229,147,190, 50, 39,120, 97,101, 4, 47,172,140, 19, 83,220,224, +106, 35, 68, 86, 86, 22,210,210,210,144,150,150, 6, 66, 8, 12, 6, 67, 13, 51, 52, 35, 19, 19, 19, 55,199,198,198, 30,118,118, +118,134, 66,161, 0, 5,144,156,109,192,195,101,254,120,184,204, 31,201,217, 6,228,230,229,161, 74,149, 42, 80, 40, 20, 53, 75, + 57, 63,156, 74,149, 42,117,233,215,175,159, 2, 0, 10,140,211, 71,148,210, 49, 37, 76,163,141, 70, 99,243,194,101, 39, 78,156, +104, 7,160,227,223,124, 61,113, 9, 33, 95,141, 24, 49,162,129, 88, 44,198,218,181,107, 35, 1,236, 44,152,189,127,253,250,245, +225, 0, 48,110,220,184, 64, 0, 19, 10,186, 72, 40, 21,129, 64, 80,191, 70,141, 26,184,121,243, 38, 0,252, 81,206,230, 15,220, +184,113, 3,213,171, 87,135, 88, 44,110, 88,206,178, 94,149, 43, 87, 70,120,120, 56, 0, 60, 40,101,153, 7,225,225,225,168, 92, +185, 50, 8, 33, 94,102,236,123,143, 14, 29, 58, 60,190,120,241, 98,195,102,205,154, 97,248,240,225,186,219,183,111,119,161,148, + 94,121,240,224, 65,219, 65,131, 6, 41,125,124,124,112,249,242,101,255, 65,131, 6,221,224,114,185,243,205,208,252,124,222,188, +121,211,122,246,236,137,121,243,230,209,125,251,246, 13,164,148,158, 41,184,191, 78,239,217,179,103,200,130, 5, 11,104,175, 94, +189, 48,119,238,220,105,132,144, 49,229, 68,131,114, 76, 38, 19,148, 74,165, 89, 33,120,115,151,119,112,112,232,220,161, 67, 7, +204,156, 57, 19,149, 42, 85,194,209,163, 71, 41,128, 99,148,210,171, 90,173,182, 21,165,116,185, 82,169, 60,116,243,230, 77,180, +111,223, 94, 0,224, 99,115,182,111, 52, 26,163, 47, 94,188,168,183,183,183,135,187,187, 59, 60, 60, 60,160, 84, 42,145,157,157, +141,154, 53,107,162, 73,147, 38, 80, 42,149, 56,118,236,152, 62, 59, 59,219,172,134, 40, 70,157,114,251,217,227, 7,115,236, 21, + 34,184, 59, 89,163, 74, 37, 59,228,103,167, 35, 45, 57, 17,245,107,120,160,117,253, 42, 72,207,209,225,244,177,131, 89,121,121, +170,237,102, 69,253,181,170,173,231, 78, 29,205,177, 85, 8,224,235, 23,136, 65,195,199,213,173, 91,175,241,217, 70,141,154,159, + 94,186,120, 97,237,143,154,214, 32,241,233, 26,156, 60,246, 71, 86, 78,110,238, 86,176,252,229,124, 40, 21,220,223, 48, 88,165, +144, 62, 97,194, 4,136, 68, 34,184,186,186,190, 54, 69,133, 38, 69, 40, 20,194,213,213, 21, 70,163, 17,123,246,236, 1,128,244, +114, 54,166,237, 62,102, 17,163, 53, 80, 21,159,207,127, 39,154, 5,145, 2,237,167,147,127,101, 78,221, 40,185,145, 75, 69, 52, +255, 5, 52, 42,232,211,170, 17,165, 52, 43, 58, 58, 58,190,239,167,221,115, 98, 34, 66,146,149,217,137, 73,185, 25,113, 73,113, +145, 79,146,167, 79,153,144, 19, 31, 31, 31, 87,208, 23, 86,163,196,196,196,238, 0,204,173, 75, 48,161,111,223,190, 63,143, 24, + 49,130, 62,124,248, 16, 0, 16, 28, 28,140, 97,195,134,209, 33, 67,134,172, 4, 48,181, 2,249, 86,170,213,234, 55,162, 31,122, + 19,243,186,104, 47, 55, 55, 23,137,137,137,208,233,116,102, 59,225,231,167,151, 61,203,140,190,103, 8,244,148, 33,208, 83, 6, +255,202, 82, 16, 99,254,107,115,149,150,150,134,148,148, 20, 0,208, 88,144,207, 92,173, 86,251, 70, 62,139, 22, 65,230,230,230, + 34, 57, 57, 25, 38,147, 73, 87,202, 67,130, 73, 72, 72, 56,189,119,239,222, 60, 0, 88,186,116,105, 38, 33,228, 60, 33,228,231, + 18,166, 13, 60, 30,239,122,225,178,203,150, 45,203, 4,112,226,111, 52, 87, 61,107,213,170,149, 53,109,218,180,181,223,124,243, + 13, 54,108,216,128,164,164,164,169,148, 82, 99,225,190,164,167,167, 79, 94,183,110, 29, 62,251,236, 51,204,154, 53,107, 89,189, +122,245,114, 9, 33,131, 74,211,116,116,116,116,231,241,120,184,127,255,126, 46,165,244,101, 57, 15,212,228,251,247,239,167, 16, + 66,224,234,234, 90,173,172,101,237,236,236,188, 21, 10, 5, 18, 18, 18, 0, 32,170,148,197,162, 19, 19, 19,169, 80, 40,132,155, +155, 91,245,242,246,223,214,214,118,242,230,205,155,121, 33, 33, 33,248,232,163,143,226, 47, 95,190,220,158, 82,122,169, 32,111, +247,131,131,131, 91,182,109,219,246,217,217,179,103,241,227,143, 63,146, 58,117,234,140, 41, 79,211,211,211,115,244,231,159,127, +142, 53,107,214, 96,227,198,141, 99, 40,165,251,139,237,243,238,117,235,214,141,219,184,113, 35,134, 15, 31, 14, 47, 47,175, 65, +101,233,197,196,196, 76,105,211,166, 77,240,243,231,207,205, 26,161,192,156,229, 9, 33,109, 27, 55,110,236,173, 86,171,177,117, +235,214,151,222,222,222,119,247,239,223, 63,129, 82,250,168,216,162,135, 14, 30, 60,136,193,131, 7,163, 78,157, 58, 91, 9, 33, + 3,204,120, 73, 38,198,196,196,164, 63,122,244,136,225,114,185,112,119,119, 71,151, 46, 93,208,191,127,127,212,169, 83, 7,169, +169,169,184,114,229, 10, 19, 17, 17,145,110,110,135,163,233,207, 46, 30,141,138,122,118,253,254,237, 43, 6, 30,151, 3, 15, 87, + 59,124, 18, 84, 23, 95,244,110,142,250,254,149, 16,147,170,198,133, 11,103, 13, 81, 81, 47,111,154,211,130,176, 80, 51, 44,244, +209,141,144,251,215,140,124, 30,129,191,159, 15,102, 78,159,108,187, 96,246, 20, 27,159,106, 30,120, 20,153,131,179,103, 78, 26, + 18,227,227, 46,178, 45, 8, 89, 44,165,188, 34,194,165, 27, 54,108,104,180,121,243,230,246, 19, 38, 76,144, 15, 29, 58, 20, 98, +177, 24, 42,149, 10,238,238,238, 48,153, 76, 56,117,234, 20,238,221,187,151,207, 48,204, 89, 20,107,254, 79, 8, 9, 42,218, 87, +198,169, 8, 42,121,213,121,165,170,209,225, 62,125,222,137, 38, 0,200, 95, 48, 86, 25, 85,116, 59, 86,239,191,214,107,215,233, +251,228,219, 1,173, 57,245,253, 42, 3, 0,156,157,157, 97,101,101,101,177,230, 59,120,105,253,229,154, 69,139,111,147,146,146, +194, 9, 33,169, 35, 70,140,240, 47,172,208, 46, 18,137, 52,113,113,113, 97,133, 29,141, 22, 95,167,188,124, 22,180,116,251,146, + 16,114, 36, 39, 39,231,244,164, 73,147,176, 96,193, 2, 28, 61,122,180, 37,165,244,122, 69,246,157, 82,106,242,242,242,202,190, +115,231,142,115,245, 26,245, 80,213,137,143, 86,223, 63, 7,165, 20,246, 82,138,188,236, 76, 60,120,112, 31,121,121,121,183, 45, +201,167,155,155, 91,118,106,106,170,131,147,147, 19, 50, 51, 51,145,158,158,254,218, 92,101,101,101, 33, 51, 51,147, 18, 66,174, + 90,160,169,244,246,246, 86,133,133,133, 9,157, 43, 87, 71, 53, 39, 1, 26, 79, 15, 7, 40,133,135, 29, 7,121,185,217,184,121, +243, 38,114,114,114, 46,149,166,201, 48,204,119,131, 6, 13,226, 2, 24, 50,105,210, 36, 59, 0,117, 38, 79,158,124,182,120, 75, + 65, 62,159,255,211,142, 29, 59,106, 22, 22, 37, 78,153, 50,101, 5,165,116,243,223,117, 45,217,219,219,127,119,252,248,113,133, + 94,175,199,234,213,171,177, 98,197,138, 45,148,210,223,139, 29,143,227, 92, 46,119, 29,135,195,249,234,235,175,191,198,168, 81, +163,164, 13, 26, 52,152, 80, 36,202,245,134,102, 66, 66,194,204,250,245,235,207, 74, 77, 77, 53,171,194,254,243,231,207, 71,214, +175, 95,127,102,106,106,234,146,178,206,145, 76, 38,147,153, 76, 38, 68, 69, 69,101, 81, 74,115, 74, 57,119, 26, 31, 31,159, 4, +147,201,228, 46,149, 74,237,202,187, 62,179,178,178, 22, 54,104,208, 96, 78, 74, 74,202, 25, 0,243,139,119, 57, 66, 41,125, 72, + 8, 9,252,230,155,111,198, 46, 94,188,184, 87,114,114,242,158,242, 52, 99, 98, 98, 22,182,109,219,246,251,103,207,158,109, 43, +173,168,151, 82,186,150, 16,162,223,177, 99,199,152,168,168,168, 69,101,105, 82, 74,143,161,140, 34,243, 18,180, 75, 92,190,168, + 38,151,203,157,188,120,241, 98,206,134, 13, 27, 64, 41, 93,102, 52, 26, 75,203,231, 35, 46,151,187,189,121,243,230, 67,247,239, +223, 47, 14, 12, 12, 28, 5, 96,119,121,215,167, 86,171,189,117,227,198,141, 38,209,209,209, 14,109,219,182, 21, 20,254, 49,201, +206,206,198,177, 99,199,244, 17, 17, 17,233, 74,165,242,150, 37,207, 16,163, 46,119,192,141, 11,135,119, 71, 63,127,210,180, 77, +167, 30,182, 58,189, 59, 68, 25, 92,100,103, 36,227,212,177,131, 89, 81, 81, 47,111,170, 84,217, 3, 44,209,212,107,115,250,223, +188,120,100, 79,124, 84, 88,147, 86,109,187,216,106,116,158, 16, 9, 56,200, 72, 73,192,169,227,135, 51,163,162, 34,175,106, 12, +218, 97,255,212,115,254,191,164,249, 33,134,227,202,157, 0, 8, 0, 4,201,229,242, 5,179,102,205, 90,118,251,246,237,101, 93, +187,118, 93, 38, 18,137, 22, 0, 8, 2, 32, 40,101,189,160,191, 83,179,161, 27,236,218, 86, 35, 87, 58,120, 19,102,116, 75, 91, +211,176,198, 50, 93,187,118,237,214,189,141,102, 69,167,191, 90, 19,192, 97,131,193, 64, 1, 36, 3, 56, 92, 48, 77, 43, 97,157, +105, 69,230, 39,199,198,198, 82, 0,135, 45,201, 39, 0,135,126,253,250, 49,121,121,121,180,111,223,190, 20,128,245,219,236,187, + 72, 36,106,219,170, 85, 43, 67, 74, 90, 38, 13,143, 76,160,183,130, 67,233,233, 11, 55,232,158,131,199,233,154,117, 27,105,237, +218,181,117, 0, 60, 45,209,228,241,120,237,218,182,109,155,145,146,146, 66,195,194,194,232,149, 43, 87,232,129, 3, 7,232,198, +141, 27,233,207, 63,255, 76, 43, 87,174,156, 2,192,217, 18, 77,137, 68,210,163,115,231,206,134,236, 92, 21,141, 74,200,160,143, +195,162,232,245, 59,143,233,169, 11,215,233,206,221,251,105, 64, 64,128,166, 60,205, 87,239, 49,238,154, 61,123,246,228, 82, 74, +105,143, 30, 61,226, 1,136,139,204,175,250,221,119,223,165, 82, 74,233,146, 37, 75, 50, 0, 76,255, 7,174,165, 78,149, 42, 85, + 10, 23, 8, 4,199, 1, 12, 41,103,189,254, 60, 30,239,168,139,139,203, 93, 0,159,252,221,247, 17,128,174, 78, 78, 78,183, 0, +116, 47,103,189,194,229,122,126, 8,247,251, 95,116,222,219,241,120,188, 43,120,213,199,149, 57,239,128, 31,184, 92,238, 9, 0, + 31, 89,146, 79, 0,110,114,185,188,133, 92, 46,239, 38,151,203,187,217,216,216,180, 0,224,246, 54,251,110,239, 19,212,205,163, + 94,247, 67,149,235,124, 28,227, 81,183,107,140, 87,253, 30,135,236,125,130,186,189,173,166,103,253, 30,135, 61,234,118,141,245, +168,219, 45,186,106,195, 30,135, 28,252,130, 58,127,104,231,253,125,214, 44,101, 59, 35,255,142,237,252, 37,121,183,112, 71,101, + 0, 62, 1,176,168,224, 83,246,182, 39,224,175,208,108,226, 10,223, 32,111, 18,214,197,143,151, 9,160,247,187,208,124, 15, 31, +142,219,116, 58, 29,213,104, 52, 84,165, 82,209,252,252,252, 55,140, 83, 81, 35,150,152,152, 72,227,227,227,105,108,108, 44,141, +142,142,166, 0,118, 90,154, 79, 43, 43,171,205,125,250,244, 49,241,249,252, 53,239, 98,223,237,236,236, 22, 53,110,220, 88,191, +106,213, 42,122,232,208, 33,186,105,211, 38,250,245,215, 95,211,154, 53,107,106,109,108,108, 6, 84, 68,211,197,197,101,166,159, +159, 95,198,150, 45, 91,232,206,157, 59,233,202,149, 43,233,140, 25, 51, 76,238,238,238,201, 10,133,162, 99, 69, 52,157,156,156, +126,105,209,162,133,254,151, 95,126,161,103,207,158,165,187,118,237,162,223,125,247, 29,245,247,247,215,202,100,178, 79,205,209, + 4,192,229,241,120,203, 71,143, 30,157,236,230,230,118,188,216, 60,105, 64, 64,192,221, 65,131, 6, 37, 2,152,194, 62,112, 89, + 77, 86,147,213,100, 13,214,135, 97,176,120, 22, 70,187,148, 0,254, 32,132, 28, 45,172,159,241, 14, 34,104,239, 92,243,102, 34, +125, 6,192,159, 16,194,123, 87,154,239, 33, 11,133, 66, 33,175,192,160, 22, 82, 82, 43,151, 59,110,110,110, 69,127,231, 0,176, +184,159,165,156,156,156, 47, 8, 33,227,138,117, 49, 80, 97, 50, 50, 50,166, 17, 66,246, 70, 70, 70, 46,178,177,177,169,111, 48, + 24, 12,185,185,185, 87,178,178,178,166, 80, 74,227, 43,162,153,148,148, 52,159, 16,114,100,230,204,153,147, 40,165,141, 56, 28, +142,198, 96, 48, 92, 74, 79, 79, 95, 68, 41, 77,171,136,102, 74, 74,202, 72,129, 64,240,107, 68, 68,196, 34,137, 68, 82,155, 97, + 24,157, 74,165,186,148,158,158, 62,158, 82,154, 98,230, 53,110, 2,240, 29, 33,100, 57,128,212, 98,243, 84,132,144,230,161,161, +161,246,148,210, 36, 54,166,206,194,194,194,242,223,168,131, 85,218, 11,227,157,155,150,127,139,230,123, 84,180,251, 2,192, 32, + 51,150, 91,244, 14,183,169,126,199,251,240, 24, 64,231,119,172, 25, 2, 96,200,187,212,212,235,245,183, 97,230,184,108,229,228, + 45,169,148,116, 61, 0,214, 92,177,176,176,176,124, 64,176,189,167,177,176,176,176,176,176,176,176,188, 99, 8, 94, 85,254, 46, +233, 95,181,217,173, 3, 8, 33, 65, 21,248, 55,127,142,213,100, 53, 89, 77, 86,147,213,100, 53, 89,205,255,150,102, 17,237,210, +198, 54, 13, 47,166,247, 11,254,141,252,197,149,211,216, 10,128,172, 38,171,201,106,178,154,172, 38,171,201,106,254,231, 38,182, +136,144,133,133,133,133,133,133,133,229, 29,195, 26, 44, 22, 22, 22, 22, 22, 22, 22, 22,214, 96,177,176,176,176,176,176,176,176, +176, 6,139,133,133,133,133,133,133,133,133, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44, 44, 21,135, 20,180, 6,120,245,131, 16, 74, + 41, 37,236, 97, 97, 97, 97, 97, 97, 97, 97,249, 71,140,201, 7,226, 69, 88,131,197,194,194,194,194,194,194,194, 26, 44,214, 96, +177,176,176,176,176,176,176,176, 6,235, 95, 96,176, 10,119,134, 53, 88, 44, 44, 44, 44, 44, 44, 44,255,164,177,250, 80,188, 72, + 97, 37,247, 54,132, 16,138,119, 48,160, 45, 11, 11, 11, 11, 11, 11, 11, 75, 5,248,160,188,200, 27, 69,132, 44, 44, 44, 44, 44, + 44, 44, 44, 44,172,193, 98, 97, 97, 97, 97, 97, 97, 97, 97, 13, 22, 11, 11, 11, 11, 11, 11, 11,203,135,206, 95,218,209, 40, 33, + 36,136,213,100, 53, 89, 77, 86,147,213,100, 53, 89, 77, 86,147, 53, 88, 44, 44, 44, 44, 44, 44, 44, 44, 44,172,193, 98, 97, 97, + 97, 97, 97, 97, 97, 97, 13, 22, 11, 11, 11, 11, 11, 11, 11, 11,107,176, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88,131,197,194,194, +194,194,194,194,194,242, 15, 65, 0,148,216, 18,128, 82,122,206,108,145, 10,180, 38, 40, 79,159,213,100, 53, 89, 77, 86,147,213, +100, 53, 89,205, 15, 79,179, 60,109, 75,252,199,123, 13,165,244, 47,155, 0, 4,177,154,172, 38,171,201,106,178,154,172, 38,171, +201,106,254,215, 38, 30, 27,196, 99, 97,249,151,115,128,112,145,229,231, 5, 74,221,192, 21, 38, 33,233,241, 75,204,166,204, 91, +107,166, 4,120, 66, 98,112,134, 81,156,134,148, 71,145,111,173,201,194,194,194,242, 31,130, 53, 88, 44, 44,255,118,210,252,125, +193,195, 34,112,224, 10,170,143,128, 99,192, 34, 0, 79,222, 90, 83,192,204,135,137,227, 14,170,127, 6, 39,191,197, 0, 66,217, +131,205,194,194,194, 98, 30,255, 72, 37,119,177, 88, 28, 44, 20, 10,127, 32,132,136,216, 83,192,242, 87, 65, 8, 17, 9,133,194, + 31, 36, 18, 73,240, 7,187,147, 59,106, 73,193, 49,117,214, 25,152, 74,167, 30,103, 59,169,180, 38, 95,112,140, 93,240,171,175, +252,173, 52,121,164,131, 70,207,120,236,188,163,114, 86,234,140, 53, 64,241,118,154,255, 63, 39, 54, 66,161,240, 20, 33,196,129, +189, 66, 63, 76, 2, 8,105,208,144,207,159, 88,131,144,118,132, 16,194, 30, 17, 22,214, 96,253,141,104,181,218,122,245,234,213, +155, 32, 20, 10, 99, 8, 33,221,255, 75, 7, 92,161, 80,220,176,182,182, 78,177,177,177, 73,177,182,182,190, 95, 94,250, 7,106, +124,124,157,156,156, 98,236,237,237,159, 21, 77,119,170,211,171,153, 79,139,161,179, 29, 2,123,182,126, 7,219,232, 46, 18,137, + 98, 26, 55,110, 60, 94,163,209,212,251, 96, 15,166,134,113, 6,135,219, 54, 36, 73, 37, 77,202, 53, 56, 7, 71,171, 20, 0,183, + 13,116,112,173,176,102, 14,227, 12,208,118, 15,227,213,178, 27,153,142,206, 87, 95,106,173,192,225,180,133,134,184,188,245, 3, +135,195, 25,195, 48, 76,123,129, 64,240, 45,251,248,253, 48, 17,114, 56,205,111,116,239, 62,127, 74,237,218, 99,253,129,110, 37, +153, 44,242,138,113, 53,106,212, 56, 73, 8,233,255, 14,159, 45, 63,250,251,251, 39, 16, 66,190, 97,207, 4,203,191,198, 96,245, +169, 74,154, 15,172, 70, 46,247,171, 74,242,250, 87, 35,249, 67,170,145,107,189,171,146,118, 21,221,240,149, 43, 87, 36, 97, 97, + 97, 78,173, 91,183,222, 35,145, 72,174, 17, 66,124, 42,162, 35, 22,139, 79,241,120,188, 62, 69,211,164, 82,233, 41, 30,143,215, +175, 88, 90,136, 84, 42,205,145, 72, 36, 47,205,212,125, 33, 20, 10,149, 98,177,248, 69,209,116, 30,143,215, 79, 38,147,157, 42, +150,214,167,120, 90,105,240,249,124,247,184,184, 56,167,248,248,120, 39,161, 80,232, 92, 52, 61, 54, 54,214, 41, 46, 46,238,141, +116, 75,225,243,249,237,228,114,249,129,226,105, 10,133,226,128,185, 26,114,185,252,119, 62,159,223,174,152, 49,252, 83, 90, 69, +205, 85,135, 14, 29,174, 37, 37, 37,121,216,216,216,216, 20,157,103,103,109,211,241,183, 45,235, 38,244,232,210, 97,140, 83,192, + 39,181, 42,168,239, 35,149, 74,175, 53,106,212,104,207,133, 11, 23,156,118,238,220, 41,253, 96,239,222, 3, 1, 2, 16,166, 21, + 67,169,227,211, 4,141,227,199,221,251,240, 30,196,169, 29, 13, 38,147, 29,192,109,131,109, 85, 68, 21,210,228, 25, 90, 50,148, + 58,159,143,230, 59,182,237, 59,150,123, 33,154,231,104, 48,153,236,193, 65,235, 10,105,254,255,220,240,185, 92,238,132,229,203, +151,115, 0,124, 77, 8, 17,254,151, 30,182,141, 43,145, 74, 31, 85,231,221,169,239, 70,154,191, 67, 67, 17, 40,147,201,238, 17, + 66,124,223,151,253,212, 49, 76,248,158,200,200,211,131,189,189,187, 78,169, 93,251,179,226, 38,171,224,251,148,197,139, 23, 15, + 9, 9, 9,113,172, 90,181,234, 40, 66, 8,231, 29, 28,139,149,139, 23, 47,158, 28, 18, 18,226,230,229,229, 53,247, 93,104,178, +188, 95,222, 29, 64, 91, 0, 31, 3,248, 8, 64,163,130,239, 13, 11,166,143,241,170, 87,132,162,159, 13, 11,214, 45,156,223,184, + 20,141,143, 75, 88,175, 97,145,244,162,191,139,127, 47,157,130,214, 0,180,232,103,241,169,159, 23,230,140,109, 86, 73,245,244, +232, 46,154, 31, 23, 73,179,194, 30,208, 7,191, 44,164, 99, 27, 58,170, 6, 86,197,143, 21,104,125, 64, 41,165, 52, 56, 56,152, +170,213,106,122,226,196, 9,198,217,217, 89, 35, 20, 10, 87, 2,144, 89,162, 37, 20, 10,243, 29, 29, 29,243, 36, 18,201, 86, 0, + 66, 74, 41, 68, 34, 81,190,139,139, 75,158, 88, 44,222, 1, 64, 68, 41, 69,199,142, 29,213,148, 82, 42, 18,137,148,230,232,118, +238,220, 89, 73, 41,165, 66,161, 80, 89,144,103,145, 88, 44,254,173, 65,131, 6,185, 34,145, 40,191, 32, 77, 40,149, 74,183, 54, +108,216, 48, 87, 44, 22,231,155,163,107,103,103, 23,103, 50,153,232,209,163, 71,169,147,147, 83, 98, 97,186,173,173,109,156,201, +100,162,135, 15, 31,166,142,142,142,137, 21, 56,166, 28,185, 92,190,180, 81,163, 70,217,114,185, 60,163, 72,218,178, 38, 77,154, +228, 20,166,153, 51,201,100,178, 12, 15, 15,143, 44,185, 92,190, 12, 0,135, 82, 10,185, 92,158, 81,165, 74,149, 76, 43, 43,171, +165,133,105,230, 76,110,110,110,163,156,156,156, 18,157,156,156, 18,109,108,108, 22,184,186,186, 38,167,165,165, 81, 74, 41,173, + 86,173, 90, 42,165, 20,142,181, 63,105, 86,189,249,144,217, 78,129,221,199,111,216,127,243,246,149, 39, 25,105,181,219,143, 89, +106, 93,187,135,181, 5,251, 47, 19, 10,133, 43, 93, 92, 92, 52,135, 15, 31, 54,165,164,164,208, 71,143, 30,209,164,164, 36, 90, +218,117,253,175,159,214, 5,184,211,141,126,123, 66,103,121,132, 93, 89,220,201, 64,163, 47,208, 93,159, 57, 26, 46,143,175, 20, + 65,127,246,255,157,110,172, 81,185, 66,154, 63,215,216,245,104,134, 71,248,154,185,227, 12, 49, 49, 49,116,226,208, 78,198, 51, + 99, 43,189,164, 27,252,247, 87, 72,243,255,231,104,192, 39,159,124,146, 31, 27, 27, 75, 3, 2, 2,148, 92, 46,119,248,127,165, + 53, 81, 35, 55, 84, 10,242, 21, 38, 60,218, 57,145,233, 22, 40,205,168,231,138,230,239,160, 21, 87,160,147,147, 83,250,182,109, +219,168, 66,161, 72, 5,224,251, 62,236, 43, 0,226, 15,116,223, 94,187,246, 97,166,119,111,211,246,218,181, 15,251, 3,221,241, +170, 91, 32, 2, 96,234,146, 37, 75,130, 13, 6, 67,240,214,173, 91,131,187,119,239, 30, 12, 96,226, 91,110,115,213,143, 63,254, + 72, 13, 6, 3,221,186,117, 43,237,222,189, 59, 5,176,218,220,245,229,114,121,245, 90,181,106,237, 8, 8, 8,136,173, 83,167, +142,174, 70,141, 26, 26, 95, 95,223,232,192,192,192,109, 34,145,200,139,109, 17,247,183, 93, 59,101,121,145, 70, 83,167, 78,157, + 6,128, 78,157, 58,117, 26,165,244,227,130,229, 62, 46,250,189,248, 39,165, 52,168,232,239,146, 52, 10,167,146, 52, 75,218, 70, +177,239,165,239, 79,225,206, 0,104, 13,224,114,241, 5,250, 84, 69,179,177,205, 42,169,213,105, 73,244,201,194,111,233,197,182, +238,244,122, 27, 23,250,108,194, 39, 52,105,231, 74,250,101, 93, 91, 85,239,170,104, 91, 17,131,117,248,240, 97,122,230,204, 25, +250,242,229, 75,154,146,146, 66,191,255,254,123,157, 76, 38,203,226,114,185,131,204,213,146, 72, 36, 57, 9, 9, 9,244,251,239, +191,215, 22, 68,155,170, 74,165,210,156,228,228,100,186,112,225, 66,157, 68, 34,137, 4,224, 35, 18,137,242, 95,190,124, 73,197, + 98,177, 89, 6, 75, 42,149,230, 60,121,242,132,138, 68, 34, 37, 0, 31, 71, 71,199,200,243,231,207, 27, 24,134,161,238,238,238, +185, 0,170, 58, 58, 58,190,184,112,225,194,235, 52,115, 13,150, 90,173,166,103,206,156,161,206,206,206,137,197,211, 79,158, 60, +249,134,241, 50,243,120, 58,187,186,186, 62, 40,204,159,151,151, 87, 26, 0,103, 55, 55,183,135,151, 47, 95, 54, 20,152,153, 52, +115,245, 92, 92, 92, 82, 83, 83, 83,233,234,213,171,181, 10,133,226, 62, 0,103, 23, 23,151,212,180,180, 52,186,118,237, 90,173, +149,149, 85, 48, 0,103,115,180, 28, 28, 28, 18,117, 58, 29,205,206,206,166,141, 27, 55,206,191,126,253, 58,205,205,205,165,148, + 82, 90,165, 74,149, 84, 74, 41,252, 90, 15,255,225,246,243,252,220,207, 39,175,219,231,213,104,224,194,211,119, 18,226, 55, 31, +186, 23,236, 16,216,163,147, 57,219,224,114,185,131,100, 50, 89,214, 79, 63,253,164,207,202,202,162,145,145,145,244,214,173, 91, +244,214,173, 91, 52, 37, 37,229,195, 52, 88,251,193,165, 27,253,122,208,141,126,193,219, 6, 59,164,231,221,223, 77,233,217,111, +232,203, 31,170,210, 89,157, 20,121,204, 70,191, 96,186,209,191, 55,157,211,154,103,145,230, 47, 53,186,209,141,126,193, 63,246, +241,204,120, 16,124,151, 94,190,124,153,174, 95,185,132,142, 13,170,164,100, 54,250, 5,211,159,107,244,178, 72,179,200, 36, 18, +137,158, 95,187,118,141, 94,185,114,133,206,157, 59,151, 74,165,210,216,183, 63, 14, 53, 4,244,103, 95, 79,186,206,167, 13,221, +226,227, 74, 47, 85, 44,111,127,181,185,106,239, 43,140, 79,127,112,136,210,204, 23, 52,121, 89, 0,237,228,199,127, 43,147, 85, + 96,174,210,162,163,163,105,114,114, 50, 93,177, 98, 5,181,178,178,122,175, 77,150, 31,208, 3,192,180,165, 75,151,190, 54, 87, +235,214,173, 11,126,252,248,113,176,135,135,199,137,183,216,214,234,165, 75,151,190, 54, 87,235,214,173,163,143, 31, 63,166,158, +158,158,113,229,173, 59,120,240, 96,105,179,102,205,130, 7, 13, 26,164,218,182,109, 27,141,142,142,166,143, 31, 63,166, 75,151, + 46,165,179,103,207,166,191,254,250, 43,237,213,171,151,178,113,227,198,183,123,247,238, 45,182, 48,111, 60, 74,169,176, 96,226, + 83, 74, 11, 13, 38, 15, 0, 31, 0,151, 53, 85,127,246, 6,165,121,145,210, 76, 84,105,198,170,248,188, 50, 12, 88,153, 70,173, +188,237,149,181, 63, 69, 67,168,151, 40,165,127,170,251,194,163,152, 55,242,187, 31,196, 81,219, 86, 32,101,239, 90,112,179, 83, +192,207,203,128,246,218,113, 24,174, 29,193,144,166, 77, 37, 18, 66,230, 87, 36,222, 39,145, 72,192,227,241,144,152,152,136,196, +196, 68,140, 26, 53, 74,112,237,218, 53,155,150, 45, 91,254, 34,151,203, 31, 18, 66,106,155, 17, 22,134,155,155, 27,198,142, 29, + 43,220,190,125,123, 53,133, 66,113,223,100, 50,241,157,157,157, 49,102,204, 24,193,254,253,251,171,216,216,216,220, 53,153, 76, + 2,161, 80, 8,115,235, 92, 18, 66, 32, 16, 8, 96, 52, 26,249,141, 26, 53,186, 23, 26, 26,234,213,186,117,107, 94, 88, 88, 24, +210,211,211,121, 13, 27, 54,124, 24, 26, 26,234,221,170, 85, 43, 94,100,100, 36,114,114,114,168,185,186, 58,157, 14, 34,145, 8, + 28, 14,231,141,116,173, 86, 11, 75,242, 88, 88,252,215,188,121,243,144, 71,143, 30,213,105,221,186, 53,239,201,147, 39, 72, 79, + 79,231, 55,110,220, 56,228,225,195,135,181, 91,180,104,193,123,246,236, 25,114,114,114,204,110, 98, 47, 22,139,225,232,232,136, + 33, 67,134, 8,247,239,223, 95,199,209,209,241, 17,143,199, 19, 58, 56, 56, 96,208,160, 65,194,253,251,247,215,117,118,118,126, +104,102,145, 33, 23, 0, 12, 6, 3, 70,141, 26, 37,179,178,178, 66, 92, 92, 28, 24,134,129,201,100, 2, 0,100,100,101, 60,126, +248,248, 73,216,144, 1,125, 90,171,245, 90,237,205, 59,247,158, 86,171,226,233, 78, 8,173, 82,206,177,172, 45,149, 74, 31,246, +239,223,127, 83,108,108,172,205,160, 65,131,248,209,209,209,200,200,200, 0,159,207,135, 88, 44,126,227, 24,127, 80,228, 6,216, +131, 65,251,152, 52,157, 72,100,227,174,144,187,250, 2,177, 87, 80,213, 81, 4, 46,135, 43,190, 27,169,146, 1,180, 61, 60,210, +237, 45,211,100,218, 71,166,234, 68, 6,187,154,114, 55,119, 15,100,100,100,160,114, 53,127,104,132,142,194, 27, 47,148,114, 16, + 11, 53,255,127,174, 90,250,248,248,184, 84,175, 94, 29,233,233,233,168, 87,175, 30,108,109,109,109, 9, 33,237, 43,124, 12,182, + 85, 17, 33, 23,205, 65,200,114,112, 57,115, 97,224, 45,194,139,180,122,248,165, 62,255,125, 42, 22,180,146, 11,111,237,222,179, +183,146,189, 71, 13,224,248,231,112,182, 17, 97,203,152,122,118,142,214,162,195, 21, 41, 46, 36,132, 4, 58, 59, 59, 95,184,125, +251,182,131, 88, 44,198,253,251,247, 17, 16, 16,128, 21, 43, 86, 56,218,218,218, 94,121, 31,138, 11, 41,165, 52, 12, 56,250,227, +163, 71, 91,119, 68, 68, 28, 27,236,237,221,117,144,175,239,130,209,253,251, 15, 31, 55,110, 28,150, 44, 89,130,195,135, 15,163, +121,243,230, 24, 57,114,164, 33, 54, 54,118,123, 5,139, 5,215, 46, 91,182,108,236, 55,223,124, 83, 92, 83, 31, 19, 19,243, 99, + 89,235, 6, 6, 6,186, 63,127,254, 60, 97,194,132, 9,245,118,236,216, 33,145, 74,165,200,206,206,198, 47,191,252,130,105,211, +166,129, 16, 2, 74, 41,126,253,245, 87,233,103,159,125,214, 40, 34, 34, 34,161, 74,149, 42,230, 84,223, 32, 0,196, 0,164, 5, +147, 12,128,116,247,238,221,214, 61,122,244,176, 42, 72,147, 0,144,176, 13,189, 74,164, 68, 47, 82,228,156, 31, 43,118,173,117, + 45,158, 86,124, 30,165,180,107, 89, 26, 22, 94,219, 93,205, 93,191,232,219,167, 13, 33,228,242,159,196,128,218, 46, 94,126,200, + 57,187, 31, 18, 30,129,132, 91, 48,241, 8, 56, 47, 31,163,178,152, 15, 3,165,129, 21,172, 63, 5,137, 68, 2,137, 68, 2, 66, + 8,178,178,178, 96,101,101,133,189,123,247,138, 87,175, 94, 93, 75, 42,149,222,180,182,182, 94, 84,158, 97, 1,128,103,207,158, +161,110,221,186,228,216,177, 99, 86,163, 71,143,230, 1, 64, 76, 76, 12,106,213,170, 69, 46, 94,188,168,152, 52,105, 18, 17,137, + 44,187,150, 5, 2, 1, 38, 79,158, 76,174, 95,191, 46,151, 74,165,120,242,228, 9,242,243,243, 49,105,210, 36,222,141, 27, 55, +228, 50,153, 12, 17, 17, 17,208,104, 52, 22, 25, 55,157, 78, 7,129, 64,240,198, 58,132, 16,232,245,122, 8,133, 66,179, 77,129, +131,131,195,236, 6, 13, 26, 28,184,116,233,146,189, 68, 34,193,227,199,143,161, 82,169, 48,127,254,124,233,181,107,215,236, 21, + 10, 5,194,195,195,161, 82,169, 44, 50,109,133,219,127,241,226, 5,124,124,124,200,241,227,199,157, 70,142, 28, 41, 46, 60,166, +190,190,190,228,196,137, 19,206,254,254,254,251,157,156,156,102,149,165,197, 48, 12,146,146,146, 16, 18, 18,130,151, 47, 95, 34, + 45, 45, 13,233,233,233,200,203,203,131,209,104,124, 85, 63, 46, 47,247,248,238,125, 71, 31, 74, 36, 18,105,128,175,143,199,227, + 39,161,169, 18,137, 68,234,233,225,225, 75,200,220, 18, 15,134, 66,161, 88, 36,145, 72,110, 30, 57,114,164,246,166, 77,155, 68, +233,233,233,136,137,137, 1, 33, 4, 98,177,248,245,196,229,114, 63,188,199, 15, 33, 4, 68,231, 3, 66,234,221,122,169,180,107, +217,117,128, 0,145,167, 0,198, 0,112,120,104, 83,219,157,119,248,177,210, 25, 20,181,161,133, 63, 96,198,201, 39,132, 0,250, +234, 0,105,112,230,185,209,190,249, 39, 99, 4, 9, 9, 9, 16, 8, 4, 16,137, 68,168,215,238, 83,222,238,135, 6, 23, 16,212, +129, 30,126,102,105,190,249,103,234,251,217,179,103,203,138,106, 14, 31, 62, 92,102,109,109, 61,187,194,230, 74, 41,109, 10, 19, +253, 54, 36, 65,237,185,224,120,178,255,203, 84,181, 63, 40,190, 3, 12,117,223,214,100, 17, 66,218,136,197,226, 72, 66, 72,139, +183, 50, 87, 10,225,205, 61,123,246, 86,178,171,252,202, 92,193,168, 1,248, 18,184, 56,218, 96,203,248,182,118,142, 54, 18,139, + 76, 86,129,185, 58,127,235,214, 45, 7,177, 88,140,224,224, 96, 8, 4, 2,136,197, 98,212,170, 85, 11, 27, 55,110,116,180,179, +179,123,175, 76,214,226, 71,143,182, 45, 10, 9,121, 54, 53, 48,208,191,167, 76,102,247,213,160, 65,214, 51,102,204, 56,118,228, +200,145,173, 31,127,252,113,250,157, 59,119,126,162,148,238,183,240,252, 16, 66,200,186,229,203,151,127, 85,104,216,102,204,152, +241,235,145, 35, 71, 22,125,252,241,199, 73,119,238,220,153, 64, 41, 93, 87,150, 70,126,126,254,145,153, 51,103, 90,127,242,201, + 39,133,191,113,237,218, 53,108,223,190, 29, 50,153,236,141,101,187,119,239,142, 17, 35, 70,216,234,116,186,223,203,210,116,114, +114, 10,186,117,235, 86, 0, 0, 1, 0, 81,161,193,122,242,228,137, 77,110,110,174,141, 92, 46,183,113,117,117, 85, 20,154,172, + 79, 62,249,196,134,207,231,183,100, 61,213, 27,148,232, 69,138, 26, 28,115,210, 42,186,188,185, 38,203, 34,131, 69, 41,189, 12, +160, 85, 73, 11,233, 51, 83, 32,130, 9, 18, 46,129,148, 91,196,100,129, 1, 47, 39, 21, 21,109,136, 91,244, 69, 40,145, 72, 32, + 22,139, 95, 71,114,114,114,114, 64, 8, 41,215,108, 20, 26, 7,185, 92, 14,181, 90, 13,189, 94, 15,177, 88,252, 58,205,104, 52, +194,104, 52, 66, 34,145, 64, 36, 18, 89, 28,193, 50, 24, 12, 8, 9, 9, 65, 68, 68, 4, 56, 28, 14,100, 50, 25, 12, 6, 3,158, + 62,125,138,132,132, 4,240,120, 60, 72,165, 82,139, 12,140,201,100,130, 80,248,231,250,189, 6,131,193,162, 8, 22,135,195,129, + 74,165,162,207,159, 63, 71,116,116, 52, 4, 2, 1,172,172,172, 32, 20, 10,145,150,150,134,248,248,248,215,105,150,228,175,112, + 89,137, 68, 2,165, 82, 89, 88,215,237,117,154, 86,171, 5, 33, 4, 92, 46,183,220,243, 99, 50,153,144,152,152,136,180,180, 52, +196,197,197, 33, 61, 61,253,181,201, 98,152,183,239,183,242,222,189,123, 52, 52, 52, 20, 90,173, 22, 34,145, 8, 98,177,248,141, + 79, 30,239, 3,236,234,109,125,160, 53, 12,252, 14,233,249, 6, 81,154, 94, 96,237, 28, 24, 4, 68,158, 4, 56, 60, 64,108,139, + 38, 53,171, 34, 38,203, 36, 11, 79,209,137, 65,208, 17,235,124,109,205,210, 52,241,219,167,229, 25, 68,209,122, 71,171, 26,181, +235, 35, 37, 37, 5, 34,145, 8, 34,145, 8, 13,154, 7, 33, 50,195, 36, 13, 77, 80, 75, 65,209,193, 44,205,255, 95, 79,213,228, +114,121,211, 22, 45, 90,144,162,154, 93,186,116, 1, 33,164, 22, 33,196,223,162,253, 95,227, 45,132, 94,218, 4,124,250,109,104, +146,202,237,240, 19,141,111,183,158,159,218,173, 60,151,234, 31,150,164,241, 2, 99,156, 8,170,175, 95, 81,147, 69, 8,105,173, + 80, 40,142,173, 89,179,198, 75, 44, 22,159, 36,132, 84,232, 5, 40,151,112, 55,124,255,213,128, 74,182,133,230,202,160, 2,120, + 18,128, 47, 1,120, 18,184, 56, 57, 96,254,136,246,118, 82, 49,255,160, 5, 70,117,247,186,117,235, 28,139,155,171,194,169, 94, +189,122,152, 53,107,150,163,157,157,221,174,127,248, 63, 64, 7, 27, 27,155, 29, 65, 65, 65,183, 18, 21,138, 17, 73,245,235, 11, +207, 91, 91,231,124,148,147, 99,237,249,228,137,222, 15,120, 12, 96,125, 92, 92, 92, 39,115,205, 21, 33,164,191,181,181,117,112, + 80, 80,144, 94,161, 80,196,174, 88,177,226,203,175,191,254, 26, 75,150, 44,193,204,153, 51, 55, 1,248,130, 82, 58, 61, 46, 46, +206,173, 60,115, 5, 0,201,201,201, 3,167, 76,153,146,158,158,158, 14, 0,168, 85,171, 22,178,179,179, 49,113,226, 68,124,251, +237,183, 0,128,186,117,235,130, 82,138,148,148, 20, 44, 91,182, 44, 37, 57, 57,121, 88, 57,127, 40,227,246,239,223,223, 72,175, +215,187, 23, 20, 3,138,178,179,179,173, 50, 51, 51, 21,122,189, 94,198, 48,140,204,198,198, 70, 14, 64, 58,100,200, 16, 94, 72, + 72, 72,128,209,104, 76, 96, 61,213, 27,230,165, 84, 47, 82, 65,142,191, 77,164,170,164, 8,152,217,193,138, 2, 33, 82,244,179, + 40, 92,130, 71,177,247,174,192, 46,176,254, 27,209, 43, 41,151, 64, 98,101,141,200,184, 24, 8, 64, 66,222,214, 96, 21,154,172, +208,208, 80,124,244,209, 71,170, 57,115,230, 60, 86, 42,149, 77,179,178,178,166,153, 99, 6,172,173,173,113,253,250,117,218,171, + 87,175,220, 85,171, 86, 25, 11,211,110,221,186, 69,219,183,111,159, 55,111,222, 60, 90,188, 88,206, 28,131,181,106,213, 42,218, +182,109,219,156,219,183,111, 83,153, 76, 6,169, 84,138, 85,171, 86, 25, 91,181,106,149,115,241,226, 69, 42,147,201,254,244,111, +167, 60, 83, 84,104,176,138,154, 30, 14,135, 3,134, 97, 44, 50, 88,169,169,169,115,195,194,194,250,180,107,215, 46, 37, 36, 36, +132, 90, 89, 89,193,218,218, 26, 83,167, 78, 85,213,173, 91, 55,245,209,163, 71,175,211, 44, 41, 42, 43,220,190, 66,161, 64, 72, + 72, 8,237,218,181,107,234,250,245,235, 53,133,105, 79,158, 60,161,157, 59,119, 78, 9, 9, 9,233,147,156,156, 60,175,188, 8, +214,203,151, 47, 95, 71,172, 52, 26, 13,210,211,211, 17, 23, 23,247,186,136, 80, 45,179,234, 52,160,111,183, 58,106,181, 90, 21, +250,236,121,108,173,154, 1, 78,106,181, 90, 21, 19, 27,251,140,210,217, 37,186,176,188,188,188,105,106,181,186,233,130, 5, 11, + 30,247,233,211, 71, 21, 30, 30,254, 39,115, 37, 22,139, 63, 76,131,197, 97, 92, 64,104,139,171,207,243,109,218,119,235, 39, 36, +201,119, 0,125, 62, 32,178, 5, 68,182,224,201,236,209,185,101, 93,238,182, 91,185, 46,160, 76, 51, 8, 68,238,229,106,242,169, + 51,192,180, 60,251, 76, 99,219,162,247, 88, 97,102,102, 38,184, 92,238,107, 51, 36,149,201,240, 81,207, 33,156, 95,239,104, 93, + 0,218, 28,132,235,110,110,118,133, 66,225,228,239,191,255, 94,144,149,149, 5, 14,135,243,127, 77,169, 20,163, 71,143, 22, 89, + 89, 89,205, 52,123,223, 15, 4, 8,192, 23, 53, 1, 67,191, 13, 79, 86,187, 29,121,164,246,253,110,209, 22, 73, 96,221, 70, 24, +213,198, 73,178,232, 68,106,192,195, 4,149, 23, 96,154, 0,163,174,129,165, 38,139, 16,210, 82,161, 80, 28,191,119,239,158,180, + 75,151, 46, 88,182,108,153, 76, 34,145,156, 36,132, 88,252,192, 87,230,155,190,158,183,250,183,148, 71, 63,117, 4,244,202, 87, +198,170,200,148,154,207, 96,214,150, 11, 57, 6, 3, 29, 96,174,166, 90,173, 30,250,197, 23, 95,100, 28, 60,120,240, 79,230, 74, + 44, 22, 35, 42, 42, 10, 11, 22, 44,200,204,204,204, 28,246, 79,154,171,175,191,254,122, 65,124,124,188,223,217,179,103,121,105, +105,105, 78,203, 55,111,206, 57,144,147,147,185,232,201,147,240,233, 53,107,250, 76,173, 93,123, 88,105, 93, 56,148,102,174,190, +250,234,171,221,241,241,241,245,206,157, 59,199, 79, 75, 75,115,255,234,171,175,176,116,233, 82,204,156, 57,115, 35,128, 81,133, +181,163,205, 69,167,211,133,103,101,101,117,237,216,177, 99,118, 86, 86, 22,106,215,174,141,110,221,186,193,197,197, 5,110,110, +110,232,209,163, 7,124,125,125,145,145,145,129, 1, 3, 6,100,166,165,165,117,164,148,150,217, 10, 61, 35, 35,227,197,174, 93, +187,158,127,253,245,215,245,227,227,227,107, 0,176,207,203,203,147,229,229,229,137,116, 58,157,196,214,214,214,182,110,221,186, + 14, 35, 71,142,148,223,191,127, 63, 32, 33, 33, 33, 15, 64, 52,107,171, 94,155,154, 82,189, 8,128,180, 2,163,163, 43,246,153, + 86,206, 60,115,215, 45,241,187, 25,203,149, 31,193, 42, 13, 61, 48,107,251,254,109, 26,161, 71,117, 88,251,213,129, 84, 44,134, + 68, 40,132,196,214, 30, 90,134,193,230,168,100,149,146,210,153, 21, 56,144,175,139, 7,197, 98, 49,242,243,243, 49,118,236, 88, + 77,223,190,125,179,163,162,162, 70,231,230,230,214,161,148, 62, 50,199, 12, 40,149, 74,204,153, 51, 71, 61,117,234,212,151,121, +121,121,245, 4, 2,129, 65,175,215,227,251,239,191,215,140, 25, 51, 38, 58, 59, 59,187,161, 64, 32,208, 91,250,178,229,243,249, +224,241,120,134,156,156,156,122, 83,166, 76,137, 88,176, 96,129, 90, 32, 16, 64, 32, 16, 24,114,115,115,107, 77,155, 54, 45,124, +218,180,105,106, 62,159,111, 81,100,172, 48, 34, 84,188,136,176,104,164,200, 92, 12, 6,195,133,212,212,212, 58,223,124,243,205, +131, 85,171, 86,169,228,114, 57, 68, 34,145, 46, 53, 53,181,246,151, 95,126,249,112,217,178,101, 42,185, 92,110, 81, 4, 75,175, +215,131, 97, 24,172, 89,179, 70,245,205, 55,223, 60, 76, 75, 75,171, 93,112, 65, 98,213,170, 85,170, 47,191,252,242, 65, 74, 74, + 74, 29,131,193,112,193,140,104,157, 41, 55, 55, 23, 60, 30, 15, 79,158, 60,209, 10, 4, 2,112, 56, 28,188,120,241,226,181,193, +178,179,179, 11,168, 83,171,166,255,111,187,247, 95,150, 8, 68,162,166,141, 26,212,120, 25, 29, 19, 79, 41,137, 46,231, 26,122, +164, 84, 42,235,196,197,197,141, 30, 62,124,120,246,119,223,125,167,201,207,207,127,227,133,195,231,243, 63,188,167, 16, 7, 82, + 16, 72,158,167,106, 21, 98,142,145,224,217,161, 87,230, 74,108, 3,136,109, 1,177, 45, 42, 85,114,199,157, 40,149, 2, 28, 8, + 97, 50, 56,153,113, 67,202, 64, 32,125,146, 2, 5, 95, 40, 33,201,201,201,175,141, 80,225,228, 85,189, 6,238,199,228,203, 65, +168, 8, 92, 88,210,149, 72, 87,123,123,123, 94, 82, 82,210,159, 52, 3, 2, 2,184, 6,131,161,163,217, 74,137, 38, 87,128,249, +250, 89,170,198,237,143,135, 42,223,241,139,126,149, 72, 76,217,192,189,213, 8,172,230,134,241,189,235, 10,103, 28, 78, 11,188, + 27,173,170, 6, 30, 29, 13, 38,223,209, 2, 99,208, 66,161, 80,156,188,123,247,174, 84,161, 80,224,229,203,151,104,212,168, 17, +126,249,229, 23,169, 84, 42, 61, 65, 8,105, 99,201,105,186,149, 76, 99,242,243, 76, 77, 39,239,143, 77,126,148,100,124,195, 92, +165, 41, 41,190,248,241, 72,118, 86,174,230,211,155,177,229,223, 71, 69,174,249, 7,217,217,217, 29,102,206,156,153,145,150,150, +246,198,181, 30, 19, 19, 83,104, 4,218, 80, 74, 67,254,169,203,211,218,218,122,208,162, 69,139,112,247,238, 93,116,233,210, 5, + 87,174, 92, 65,102,102, 38,246,156, 60,249,124,215,243,231,211, 11,235,100,149,212,133, 67,105, 88, 89, 89,125,183,104,209, 34, +220,187,119,239,181,102, 70, 70, 6, 22, 45, 90, 20, 15, 96,140,165,230,170,144,148,148,148, 59,225,225,225, 29,107,215,174,253, +116,205,154, 53,241,174,174,174,204,200,145, 35,241,197, 23, 95,192,209,209,209,180,114,229,202,216,150, 45, 91, 62,137,136,136, + 8, 82, 42,149,143,205, 56, 63, 52, 61, 61,253,250,166, 77,155,110,182,107,215, 78, 54,120,240, 96,167,195,135, 15,219,171, 84, + 42, 55,129, 64,224,172,211,233,132,161,161,161,188, 3, 7, 14,184, 62,125,250, 52, 74,173, 86,223,169,104,222,255,131,220, 45, +136, 70,157, 43,246,121,183,156,121,230,174, 91,218,247,242,150, 43,219,232,148, 55, 13,170,134, 57,163,107, 42, 84, 55, 6, 55, +161,201, 35, 91,208,148,126, 53,232,181,214,118,116,184, 55, 81, 14,173, 96, 55, 13, 38,147,137,166,164,164,208,148,148, 20, 58, +127,254,124,163, 68, 34, 81, 75,165,210,149,176,176,155, 6,185, 92,158,239,227,227,147,103,109,109,253,186,155, 6,133, 66,145, +239,231,231,151,103, 99, 99,243,186,155, 6,153, 76,150, 79, 41,165,114,185,220,172, 86,132, 86, 86, 86, 57,249,249,249, 84, 42, +149, 22,118,211, 32,176,182,182,222,228,227,227,147, 39,151,203, 11,187,105,224,219,218,218,110,240,245,245,205, 83, 40, 20,249, +102,182,208,139,139,143,143,167,241,241,241,180,114,229,202,137, 69,211, 99, 98, 98,104, 76, 76, 12,117,119,119,175, 80, 55, 13, +142,142,142, 75, 27, 54,108,152,233,232,232,152, 81, 36,109, 89,195,134, 13,179, 10,211,204,108,249,151,209,160, 65,131, 44, 71, + 71,199,215,221, 52, 56, 58, 58,102, 20,104, 91,212, 77,131, 68, 34, 25, 37, 22,139, 19,197, 98,113,162, 72, 36, 90, 80,165, 74, +149,212,125,251,246,209,149, 43, 87, 82,133, 66,241,170,155,134,128,238, 77,171, 55, 27, 54,221, 49,160,199,119,111,211, 77,131, + 84, 42, 93, 41,145, 72,212, 11, 23, 46, 52, 42,149, 74,106, 48, 24,104,193,195,235,195,106, 69,248,139,111,117,250,179,255,145, +136,121, 94,161,223,180,146,106, 30,207,175, 67,233,239,159, 80,122,226, 11, 74, 47, 76,166,119, 54,142,164,205,188, 68,166,235, + 19, 43, 63,163, 27,252,254, 48,171,107,133, 95,106, 85,167, 63,251,159,120, 62,215, 43,116,104, 75, 55,205,230,245, 43,233,237, +219,183,233,147, 39, 79,232,203,151, 47,233,137, 67,251,104,179,106,210, 87,154, 63,251, 31,177,164,187, 6, 0,205, 69, 34, 81, +254,138, 21, 43,232,173, 91,183, 94,107, 30, 57,114,132, 74,165, 82, 21, 96,102, 43,100,128,208,117, 1,159, 24,215,251, 93,155, +217, 94,158,159,113,108, 50,165,143,183, 81,250, 75, 32,165, 91, 27, 83,186,239, 99, 74,143, 14,163,183, 86,246,166,205,189, 4, + 6,186,193,239, 42,221, 18,208,222,220,124,242,249,252,220,131, 7, 15,210,196,196, 68,122,229,202, 21,122,239,222, 61, 26, 22, + 22, 70, 99, 99, 99,233,241,227,199, 41,159,207,215, 0,176,184,149, 98, 99,103,120, 6,249, 8,146, 30, 46,110, 78,233,225, 1, + 52,109,215, 32,218,181,166, 34,179, 73,101, 94,187,183,104,109, 85,215,222,222, 62,253,248,241,227, 52, 42, 42,138, 94,190,124, +153, 58, 57, 57,165, 3, 8,252,167,175,207,160,160,160,219,148,210,224, 46, 93,186, 4, 3, 56, 21, 20, 20, 20, 28, 25, 25, 25, +220,168, 81,163, 91, 40,163, 11,135,178, 52, 63,250,232, 35, 61,165,148,118,233,210,133, 2, 72, 12, 10, 10,162,145,145,145,180, + 81,163, 70,186,119,212,122,141, 11, 96, 24,159,207,223,108,103,103,119,209,214,214,246, 2,151,203,253, 5,192, 96, 75,158,119, + 37,104, 86, 2, 16,128, 87,253, 37, 53, 40,248,238, 6,182, 5,225,127,163, 85,164,185, 11,246,246, 66,243,207,170,145,203, 3, +171, 34,111, 64, 85,228,127,238, 77,174,125,234,133,118, 21, 25,109,187,208, 96, 29, 61,122,148, 86,174, 92, 89,169, 80, 40,174, + 1,240,169,200, 8,222,182,182,182,167,184, 92,110,159, 18,210,250, 21, 77,179,182,182, 14,177,177,177,201,177,178,178,122,105, + 78, 62,173,172,172,194,164, 82,169,210,202,202, 42,172, 88,151, 0, 61,236,237,237,143, 23, 75,235, 94, 60,173,180,125,119,113, +113,137, 75, 76, 76,164,105,105,105,212,195,195, 35,177,184,241, 74, 78, 78,126,195,120, 89, 58,122, 57,143,199,107,231,232,232, +120,160,188,180,178, 52,157,157,157,127,231,241,222,124,248,151,148, 86,145, 81,214, 1,248, 86,170, 84, 41,117,249,242,229, 84, + 46,151,167, 22,157,231,215,234,243,239,111, 63,207,207,253, 98,202,207,251, 28,107,244,172, 85,145,145,219, 1,248, 40, 20,138, +107,158,158,158,202,243,231,207,151,105,176,240,111, 29,181,126,127, 13, 1,221, 88,163, 57,221, 80,227,120,216,108,207,167,195, + 26,203,180,193,203,187, 80,122, 97, 50,189,245,243, 23,180,169,151,240,149, 17,218,232,127,146,254,234,219,138,174,174, 38, 52, + 75,115,179,119, 75,186,209,255,100,232, 44,207,167,159,212,119,212,237,222,182,145,190,120,241,130, 30, 57,176,139, 54,169, 90, + 96,174, 54,212, 56, 67,127,174,209,214, 44,205, 18, 76,214,150, 45, 91,232,139, 23, 47,232, 31,127,252, 97,150,185,122, 67, 19, + 32,244,231,128,158,198,245,126,215,166, 5,201,179,191,104, 44,214, 14,168, 43,212,245, 8, 20,232, 59, 84, 23, 24,155,121,242, + 76,117, 92, 57, 76, 13, 71,208, 14,126, 18, 45,221,224,119,149,110,168,209,209,220,124, 10,133,194, 88, 20,233, 19,167,248, 36, + 18,137,210, 74, 51, 88,229,157,247,198,206,240, 12,242, 21, 37,157,159,215,142,118,171,173,200, 48,199, 92,149,167, 9,160,174, +131,131, 67,250,214,173, 91,169,179,179,115,154, 57,230,234,239,184, 62,173,173,173,119,228,231,231, 7,159, 62,125, 58, 56, 40, + 40, 40,120,199,142, 29,193,215,174, 93, 11,150, 74,165, 59, 74,235,194,161, 6,208,177, 44, 77, 43, 43,171,224,188,188, 60,122, +250,244,105, 26, 20, 20, 68,119,236,216, 65,175, 93,187, 70,165, 82,105,240,123,117,111,178,154,236, 84, 17,131,245, 46, 79, 0, + 0, 58,120,240, 96,149, 84, 42, 77, 1,208,253,191,116,241, 57, 56, 56,220,112,118,118, 78,113,118,118, 78,113,116,116,188, 95, + 82,186,131,131,195,253, 15,249,198, 3,224, 43, 16, 8, 98,248,124,254,179,162,233,142, 1,221,155,122, 55, 31, 58,211, 57,176, +123,231,183,205, 39,128,238, 82,169, 52,165, 87,175, 94,202, 15,206, 96, 81, 10,186,186,154,176,208,100, 61,158,233, 25,214,173, +166, 84,255,203,132, 14,180,105,149, 98,230,106,171,167,200, 34,205, 2,147,245, 96,134, 71, 88, 91, 95,185,113,209,204,241,180, + 73, 85,201,155,230,202, 18,205, 98, 38, 75, 42,149,230,205,158, 61,219,236,200,213,159, 52, 55,251,121,208,159,253,119,190, 50, + 79,229, 77, 53, 54,211,181,126, 30,239,203,121,111,236, 12,207,143,124, 69, 33,230, 70,174,204,209, 4, 80,215,214,214,246,169, +185,145,171,191, 99,223, 1,116, 24, 61,122,116,112,100,100,100,240,203,151, 47,131,175, 93,187, 22,220,179,103,207, 96, 0, 29, + 74,234, 39, 75,223,171,151,182, 46,135, 51,190, 28,205,254,163, 71,143,166,145,145,145,244,229,203,151,244,218,181,107,180,103, +207,158, 20, 64,127,214,184,176, 6,235,125,157,254,145, 26,192, 10,133,226,254,193,131, 7, 79,169,213,234, 5,148, 82,237,127, +169, 16, 57, 45, 45,173,153, 37,233, 31,104, 69,198,103, 0, 60,255, 84,105, 63,228,240, 77, 0, 55,223,209, 54,142, 16, 66,206, +156, 58,117,106,134, 66,161,232,244,193, 29,196,177, 17, 58,172,241,190, 7,161,112,113,205, 74,210,169,223,119,161,100,209,233, + 27,158, 75,122, 57,197, 54,243,150, 69,129,207,252, 8,162,189,131, 97,209, 90, 11, 53,239, 64, 98, 88, 92,167,178,116,234,194, + 30, 32, 63,158,220,230,185,180,167,125,108,179,106,242, 88, 80,252, 8,145,234,166, 69,154,111,158,147,235,132,144,206,203,151, + 47,223,174, 82,169, 70, 80, 74, 47, 90,254,240,224, 36, 67,105,152, 5, 3,183, 38, 40,132,101,108, 76, 5, 14,158, 32,131,147, +242,190,156,178, 91,201, 52, 6, 64,224, 59,190,151, 30, 0,168,241,158,221,223,103, 8, 33,216,181,107,215, 32,127,127,255,106, +161,161,161, 47, 85, 42,213, 78, 74,233,153,162,117,149, 8, 33, 71,127,124,244, 72,185, 54, 52,244,186,142, 97,174,151,163,185, +167, 64,243, 59,127,127,255,192,208,208,208, 16,149, 74,181,156, 82,186,135,173,154,196,242,190,242,143, 24,172,220,220,220,250, +236,161,103,249, 27, 30,244, 90, 0,223, 23, 76, 31, 30, 69, 76, 86,125, 15,201,216,131,163, 37, 42, 80, 18, 15, 62,179,210, 98, +115, 85,130,201,106,228, 41,249,246,143, 81, 18, 21, 40,146, 65,241,211,219,152,171,162, 38, 11, 64,213, 10, 11,244, 14,213, 3, +136, 2, 33,209,152,131,210, 43, 71,207,193,235,191,217, 44,255,140,201, 2,112,166,156,101, 40,128, 11, 5,147, 57,154,123, 0, +176,134,138,133, 53, 88, 44, 44, 44,127,147,201, 58, 16,112, 23,233,220,137,224,160, 42, 96,140,129,210,152,140,177,209,186,183, +212,188,141,116,242, 13,184,240,133,208, 24,129,124, 93, 50, 70,191,133,230, 95,240, 6,199,171,186, 81, 37, 51,155,189, 52, 88, + 88, 88, 88,131,197,194,194,242, 54,188,138,234,196, 23, 76,239,175, 38, 11, 11, 11,203,127, 8, 2, 32,168,148, 63,136,231,204, + 22, 33, 36,168, 2,127, 64,207,177,154,172, 38,171,201,106,178,154,172, 38,171,249,223,210, 44, 79,219, 18,255,241, 94,243, 79, +180, 34,100, 53, 89, 77, 86,147,213,100, 53, 89, 77, 86,147,213,252,144, 39, 14, 88, 88, 88, 88, 88, 88, 88, 88, 88,222, 41,255, +104, 29, 44,169,131,175, 43,120,156,218,132,161,254, 0, 64, 57, 36, 12, 70,230,145, 42,253, 89,210,219,106, 43, 42,249,217, 81, + 8,247, 19,232,250,228, 37,132,103,190,173, 94, 45, 63,235, 94,206, 14,138, 65,201, 25, 57,219,159,132,229, 29,182,100, 93, 27, +155, 42,214, 98, 59,219,222, 90,189,161,166, 80, 32,136,213,103,231,254,146,153, 25,145,199, 94,126, 44, 44, 44, 44, 44, 44,255, + 49,131, 85, 37,176,229, 93,177, 88,226, 5, 0, 12,165, 96, 40,160,204,205, 14, 78,138,184,219, 17, 0, 28,189,234,159,230,139, +173,234, 51,244,213,124, 19, 3, 24,245,154,168,156,232, 91, 13,205,217,176,220,201,239,147,160, 14, 65,189,186,118,253,216,175, + 86,205, 90,222, 0,240,248,201,227,136, 99,199,142,135,203,157,252, 14,230,167,134,255,241, 54, 59, 70, 33,254,161, 65,131,186, + 45,238,221,187, 63, 15,192, 87,111,123,160,236,237,229, 99,207,252, 62,177,213, 71,189,150,201, 0, 88,100,176,196,118,182,189, +123,116,235, 84,119,210,184,209,156, 47, 38, 46,244,186,123,253,210, 18,133, 91,205,108,202, 24,206, 40, 83,250, 93, 45,109, 64, + 99, 22, 22, 22, 22, 22, 22,150, 15,204, 96,137,197, 18,175, 91,151,142,217,253,113, 45, 14, 0, 16, 84,207, 5,211,231,175,233, + 64, 8, 9, 7,128,238, 95,204,241,157, 55,109, 28,110,132,164,130, 82,138,186,213,237,209,185, 71, 31,179, 54, 42,113, 9,104, +216,175,111,223,129, 19, 39,126,215,253,197,139, 23,209,187,119,239,190, 10, 0, 45, 91,181,170,190,112,225,194,190,203,108,237, + 68, 18,151,128, 4,117,114,232,221,138,236,148,164,146,119,165, 0,159,218,131,246,254,186,134,211,166,227,167, 3, 36,149,188, + 23,169, 19, 34, 18,204, 89,215,209,209,241, 27, 62,159,111, 13, 0, 12,243,127,223, 83,173, 50,215, 5, 0,140, 38, 70, 97, 87, +201, 63,143, 43, 16,155, 68, 34, 65,104, 94,126,254,246,156,248,208,205,101,105,106, 13,134,192,111,199,124,198,121,240, 50, 3, + 94,129, 45,185, 43, 23,205, 0, 99, 50,216,142,159, 54,191,247,189,219,123, 1,204,190,204, 94,138, 44, 44, 44, 44, 44, 44,255, + 1,131, 5, 0,114, 9, 15,225,145,201, 0, 0, 27, 9, 48,118,212, 80,100,164,167,249,234,140, 12, 62, 31, 58, 24,247,195,146, + 16, 30,149, 6, 74, 41,124,221,165,102,111,148, 11,166,193,231,195, 63,111,125,250,204,153, 59,223,207,252,254, 55, 66, 94,245, +222,189,241,151, 77, 77,103,205,158, 53, 98,240,208,193,237, 15, 28, 56, 16,130,242, 70,170, 46,109,167,136, 98,205,210,197, 11, +132,241,233, 26,205, 55, 19,167, 50,223, 77,248,102, 37,128, 79,205, 89,151,207,231, 91,199,199,199,203, 57,156, 55,171,167,253, +184, 96,234,149,246,189,150, 61,143,142,205,126,112,250,200,145,134, 1, 1, 1,136, 79, 72,110,190,100,213,134, 58,174,222, 13, + 63,203,203, 85,247, 82,166,133,150,216,107,180,136,207, 15,153,187,228,231,186,140, 77,117,206,244, 17, 93, 16,232,237,134,132, +212,108,180,234,216,157, 23,124,247,110, 7, 0,172,193, 98, 97, 97, 97, 97, 97,249,128,224, 0, 0, 33,164,196, 14,251, 76, 38, +138,240,168, 36,132, 71, 37,225, 78, 88, 26,244,148,143,149, 75,230, 98,249,162,217,200, 84,115,240,199,141, 56, 60,139, 74,198, +179,168,100,164,103,229,255,105,253,226, 77, 45,151, 47,150,214, 91,185,210,122,105,135, 86,178, 54,118,182,182,182,207, 67,126, + 83,206,154,144, 82, 99,238,183,113, 2,190, 78, 20, 47,147,203,154,237,223,191, 47,192,217,209, 73, 38,151, 43, 38,203,220,235, +110,177,177,169, 99, 93,150,102,113,164,206, 53,186,119,255,184, 83, 59, 23, 23,103,102,244,202,224,176,154, 53,252, 13, 62,213, +125,154, 75,157,125,187,151,182, 78, 81, 77,134, 97,192,225,112,144,146,146,130,196,196, 68, 68, 70, 70,226,217,179,103,136,139, +139, 78, 97, 40,229,155,192,112, 92, 93,221,193,227, 9,225, 85,197, 19, 63,175, 92, 36,157, 63,103,122, 35,177, 76,120,152, 16, + 66, 74,210,212,100,102, 29, 56,113,234, 76,194,201,221, 63,155, 0, 32, 53, 43, 31, 23,238,190,192,253,208, 56,139, 78,214, 95, +209,116,149,213,100, 53, 89, 77, 86,147,213,100, 53,223, 7,205,210,188,200,191,218, 96,149, 70, 68, 92, 38,194, 35,147, 81,223, +191, 18,188,171,184,226,206,179, 44,236,188, 16,135, 45,167, 99,112,225, 97, 26, 24,158, 2,201,185,192,243,232, 20, 60,143, 73, + 47,171, 95,101, 0, 0, 87,196,239,247,237,183, 57, 19,107, 5,228, 54,185,116,114, 44, 42, 57, 62, 15,152, 50, 37,123, 44, 87, +196,239,103, 91, 89,177,123,234,196,241,131, 20, 82,169, 80,167,213,161, 90, 85, 79,241,184,175,199,126, 70,108, 69,187,205,221, + 25, 43,247, 0, 91,145, 68,178,121,254,156,201,162,159,254,120, 30,171,212, 65,121,240,102,202,203,239,166,206,202,228,241,197, + 63, 91,185, 7,216,154,171,101, 48, 24,160,213,106,161,211,233,160,215,235,145, 16,247,180,251,249, 63, 38,117,172, 90,217,174, +163, 72, 44, 6, 5,144,171, 54, 34, 50, 73,133,182, 31,181,231,214,175, 87, 47, 80,238, 90, 99,120, 73, 90,217,217,209, 57, 12, +229, 42,142, 29,218,197,221,119,246, 1,126, 59,118, 23,135, 47, 62,192,157,203, 39,141,148, 49,188, 30, 78, 66,225,230,227,171, +112,171, 29,163,168, 84, 39,229,245,228, 94,235, 30,251, 63,128,133,133,133,133,133,229,223, 69,169, 69,132, 26,141, 58,234,211, +126,131,225,234,228, 34,239,209,102,152, 32, 56, 34, 27,105, 73, 49,120,241,236, 9, 84, 26, 3, 4,182, 85, 1,177, 11,170,120, +121,226, 81,248, 97,253,234,165,199,243, 25,163, 54,170, 52,189, 30, 61,220,220, 93, 29,101,156,165, 75, 60,110, 61, 11,207,170, +191,107,230, 86, 12, 28, 40,119, 88,186,196,227, 86,244, 75, 25, 71, 42,166,205, 62, 27, 58,128,112, 8,197,148, 41, 19,209,163, +107, 39,124,254,217, 16,178,125,251,182, 38,230,238, 12, 3,254,218,105, 51,230, 10, 83,178,141,186, 59,207,242,181, 82,153, 68, +114,253,121,190, 50,208,203, 67,210,165,215,176,196,227,251, 55,255, 4, 96,168, 57, 90,133,198,202, 96, 48, 64,175,215, 3,128, + 9, 0, 56,156, 87,159, 25,121, 58,164,102,107,145,146,173,133,209,196,160, 87,191,161,146,187,247, 30, 14, 5, 80, 74,125, 44, +134, 49, 24, 13, 56,120,246, 62, 18,238, 30, 96, 8,135,155, 83, 88,201,189,208, 92,185,184,120, 92,233,218,107,136,163, 80,252, +170,184, 53, 79,169,197,246, 13, 75,216,171,148,133,133,133,133,133,229, 67, 49, 88,209, 33, 87, 27, 2,128, 95,195,142, 25,114, + 49,207,142,199, 33, 72,137,143,192,246,101,223,128, 97, 40,186,140, 88, 10,133,151, 11, 36, 2, 46,180,249, 25,249, 25, 47, 46, +217,151,181, 33, 66, 12,237,215,109, 76,240,250,114, 76, 53,171, 93,187,242,249, 0,176,107, 87, 62,127,204,232,202, 86,235, 55, + 70,121, 53,110, 81, 31,212,100, 66,215, 30,159,162, 95,255,126,136, 78, 86,225,247, 43,177, 80,170,117,102,141,127, 38,117,172, + 81,199,201,173, 82,167,111,135,117,146,241,184,132,248,120, 90,115,227,210, 12, 70, 46,151,111, 58,122, 55, 39,177, 87,175,254, + 14, 23, 78,236,107, 39,117,172, 81, 71,149,246,244, 97,121,122, 90,173, 22, 38,147, 9, 90,173, 22, 6,131, 1,118, 14, 85, 79, +180,255,116, 89,124, 82,114,222,241,228, 44, 77, 99,165,193,136,148,108, 45, 82,179,181,200, 86,234,225,162,176,133,209,160,171, + 85,154, 30,165,244,183,158,159, 14, 30, 2,128, 67, 56,198,173,121,137, 79,159, 21,206, 43, 52, 87,157,122, 12,116,188, 18, 28, +129, 23,247, 78,102, 81,198,104,120,117,224, 24,118,168, 18, 22, 22, 22, 22, 22,150,127, 25,156,255, 27, 32, 66, 75, 43,255, 76, + 72,201,132,189,156, 7, 71, 55, 47, 12,250,102, 57, 0,192,100, 50,128, 82,192,104, 50,175,135, 1, 74,249,103,191, 26,227, 21, + 85,197,139,228, 12, 26, 40, 85, 3,192,160,129, 82,117, 21, 47,146,243,213, 24,175,168, 60,141, 92,111, 52,153,112, 61, 36, 21, + 75,247, 62,197,172,109,143,113,234,158,249,221, 97,113,133,130, 49, 75, 22, 47, 18,240,184,132,132,196,228,231,199,103, 24,243, +185,124,190, 94, 42, 21, 82, 29,229,105,163,211,105,198, 71, 61, 63,123,193,225,146,225,101,233, 20,182, 28, 44, 44, 34, 44,140, + 96, 81, 74, 41, 1, 24,134,152, 76,241,233, 26,196,165,169, 17,151,250,255, 41, 37, 75, 91,106, 9,169,194,205,199,215,218, 74, +126,202,214,198,234, 51, 27,107,171,161, 50,137,237,105,133,155,143,111,113,115,117, 43, 36, 17, 17, 15,206,165,152,244,170,190, +121, 9, 15,157,243, 18, 30, 58,231,197, 63,110,192, 94,166, 44, 44, 44, 44, 44,255, 5,202,242, 34,255, 74,131, 69, 41, 37,133, +211,159,141, 17,240, 60, 38, 29, 66, 30, 3,247, 42,222,160, 69,108, 4, 5, 96, 52,153,119, 28, 14, 31, 78,140,175, 86, 93,201, + 76,158, 28,219,180,102, 45,251, 71, 99, 70, 87, 14,171, 89,203,254,209,228,201,177, 77,171, 85, 87, 50, 6, 35,223, 68, 11,250, +219, 42,236, 91,171,160, 59,126,115,119,165, 81,157,128,170,220,185,187,158,199,126,185,254, 89,184, 64, 32, 48,184, 59, 72,137, +167,179,148,235,225, 40, 17,106, 13, 28,173,111, 96, 61, 29, 56,164,158, 57, 6, 75,167,211,189, 49,101,164, 69,116, 63,243,251, +196, 30,149,156,109,135, 37,164,169, 17,155,170, 66, 92,154, 10,177,105, 42,168,180, 70, 60,126,250, 18,224, 10,158,148,164,105, +165,176, 59,189,123,231,111, 30,117,106, 84,115, 10,240,173,226,180,121,219,111, 30, 98,177,205,105,133,155,143,175,135,151, 95, +240,237,115,251, 28,111,133, 36, 34, 38,252, 94,178, 81,155,187, 91,153, 18,118,158,189,205, 88, 88, 88, 88, 88,254, 75,148,229, + 69,254,141,152,213,147,187,167,187, 51,110, 63,137, 66, 45,255,170,176,182, 82, 32, 44, 34, 30, 92, 14, 31, 28, 2, 24,140,230, +155, 32,170, 55,236, 93,177,194, 26, 49, 81, 50,206,250,159,163,188,190, 26,227, 21,181, 98,133,245, 77,170, 55,236, 5, 48,152, +210, 87, 99, 35, 22,118,108,106,178,160,251, 77,202, 24, 42, 59,219, 73,185,247, 94, 42, 51, 56, 28,174,214,222, 90,204,216, 91, +139, 56,246, 10, 33, 95,192,231, 50, 70,202,209,187, 59,121,105, 40,195,212, 49, 71,175,104, 17,161,201,100, 2, 33, 28, 83,129, + 1,147,197,101,168,145,163,225, 34, 37, 91,139,172, 60, 61,124, 42,201,112,238,194, 1,149,201,160,222, 85,146, 22,151, 47,176, +246,246,114,199,244, 31, 86, 64,173, 53,225,121, 66, 62, 4, 34,145,139,179, 75,224,195,193, 95, 78, 21,141,251, 37, 2,195,219, +217, 99,194,213,136, 4, 85,138,120, 42,123,155,177,176,176,176,176,176,252, 7, 12,150, 92, 42, 6,229,138,113, 53, 56, 2,126, + 1,181,177,237,200, 29, 84,175,213, 4, 73,121, 70, 80,112,202,109, 61, 88,200,119, 83, 85,247, 1,220,239,209,195,205,253,147, + 79, 42,181,167,148,127,118,253,134,156,120, 0,248,121, 79,107, 80, 0, 12, 67, 65, 41, 64,153, 87, 70,203,108, 8, 47, 38, 42, + 41,183,138,151,139, 12,161,241,122,173, 76, 36,224,216,202,132, 92, 71,107,161, 64,192,227,193, 68,137, 54, 41, 41, 66, 75,128, +104,115,228, 10,139, 6, 11, 63,165,114,215, 19, 31,245, 92,154, 22, 29,155,115,207, 39, 83, 85, 39, 71, 47, 4,165,128, 79, 37, + 25,158,220, 58,110, 74, 73,120,241, 92,157, 18,190,161, 36, 45,134, 1, 87,111,100,240,240,101, 14,178,149, 6,100,231,235,209, +188,109, 55, 65,243,160,238,184,250, 36, 29,140,209,128, 37,155,142,231,153,168,161, 31,165,161, 6,246,178,100, 97, 97, 97, 97, + 97,249,119, 99,214, 96,207, 38,134,194,193,222, 14, 98,153, 21,162, 82,244,200, 35, 78,200, 82, 81,152, 76,175, 34, 88,165, 5, +154, 8, 33, 65, 37,165, 31, 62,156, 24,127,232, 80,218,150,195,135, 19,139, 84,224,254,127,228,234,245, 39, 67,205,214, 36,212, +116,238,200,201, 75, 57,221, 27, 59,218,114,184, 92,181,128,207,209,242, 4, 92,189,128,199, 49, 8,120, 28,157,179, 21,159,123, +233,232, 30, 33, 37,184, 84,158,166, 70,163, 65, 80, 80, 16,186,116,233,130, 30, 61,122,160, 79,159, 62,240,245,173,225,196,225, + 18, 29, 37, 12,227, 40,204,131,183, 35, 1, 79, 19,135,243,123,126, 84, 61,185,126,232,161, 73,171,233, 70,139,148,105,190,161, + 73, 41,147,153,163,133, 70,111, 66, 86,190, 30, 89, 74, 61,140,142, 77,113,232, 70, 34,212, 58, 19, 98,130, 15,168,211,146,227, +191,209,164, 60,143, 42,211, 67,150,178,239,111, 3,171,201,106,178,154,172, 38,171,201,106,190, 15,154, 31, 26,102, 68,176, 40, +170,185,202, 80,189,146, 12, 26,189, 19, 52, 58, 19,148, 26, 19,114, 85,122,228,170, 12,136, 74, 86,225,201,145,183,207,200,171, +168, 21, 64, 10,190,131,188, 50,118,230,198,176,132,122,221, 15,203,151, 44,236,187,167, 94, 93,221,184,143, 93, 43, 63,138,210, + 37, 18,194, 81,115,184, 60,131,157,130,199, 15, 11,123,148,118,243,202,137, 86, 98,163,105, 72, 89, 58, 70,163, 49,167, 82,165, + 74, 0,222, 28, 42,167,134,183,164,199,245,227, 83,170,182,238,190,196,241,167, 5, 19, 85, 28,174,128, 33, 60,193, 19,147, 65, +189, 91,157, 18,254, 51, 45,163,194, 24, 71, 32,126,122,251, 65,104, 19, 27,187,202,120,145,160,132, 82, 99,132,222,200,192, 86, + 46, 64,252,227,211,250,168,176,123,251,242, 18, 30,110, 99, 47, 71, 22, 22, 22, 22, 22,150,255,136,193,210,104, 52, 81, 45,130, +186,129, 97, 40, 76, 20, 96, 76, 5,145, 38,230,255,209, 38,147, 65, 19,245,182, 25, 97, 24,211,157,181,191,108,233, 82,175, 81, +107,110,128,135, 28,185, 25,201,184,117,253,162, 17, 12,189,105,206,250,233,233,207,242,165, 46, 62,159,246,237,253,201,254,161, +159,143,206,110,213,182,173,204,201,201, 69, 27,159, 16,175,250,117,199, 78,195,233, 19,135, 91, 49, 48,246, 79, 79,127,158, 95, +150, 78,118,118,246,170,146,210, 63,106, 81,185, 57,128,170, 92, 30,209,169, 82,159,201, 44,217,183,244,132,184, 94, 11,127,152, + 19, 61,112,196,120, 97,181, 74,222, 72,205,225, 34, 42, 62, 25, 97, 87, 14,107, 19,158,221,253, 35, 55,254,254,112,246, 82,100, + 97, 97, 97, 97, 97,249, 15, 25,172,216,208, 87,253, 97,253,213,228, 37,167, 14,222,182,237,183,249,191,237,216,211, 92,163,211, + 85,162, 16,196,153,140,186,203,249, 38,204, 50, 87, 67,149,252,252,158,131,131,111,205, 95, 55,173,157,241,235,150,245,173,193, +152,252, 9, 16, 77, 9, 46,137, 13,166,161,229,153,171,178, 13, 92,222,198,246,159, 46, 83,103,100,228,255,102,233,186,170,244, +176,100,185,115,181,202, 27, 87,254,176,148,195,225,118, 48,153, 24, 62, 99, 50,188, 48,233, 53, 63,170,211,194,143, 80,203,154, + 75,178,176,176,176,176,176,176,252,219, 13,214,223, 69,102,102, 68, 30,128,113,111,171,147,158,254, 44, 31,192, 59,111,137,247, +248, 89,206,239, 0,126,175,232,250,249, 41, 47,211, 96,102, 47,242, 44, 44, 44, 44, 44, 44, 44,255,110, 56,236, 33, 96, 97, 97, + 97, 97, 97, 97, 97,121,183, 16, 0, 37,182, 4,176,100,164,236,138,180, 38, 40, 79,159,213,100, 53, 89, 77, 86,147,213,100, 53, + 89,205, 15, 79,179, 60,109, 75,252,199,123, 13, 45,232, 49,253,175,152, 0, 4,177,154,172, 38,171,201,106,178,154,172, 38,171, +201,106,254,215, 38,182,136,144,133,133,133,133,229, 63,135,131,131,175,220,193,193, 87,110,238,242, 50,199, 0,103,153, 99,128, + 51,123,228, 88,204,133, 53, 88,111, 9, 33,132,248,121,201,199,118,104, 93,245,144,127, 53,105,143,127, 74, 83,238, 92,205, 81, +225,209,240,186,149,123,205,206,127,193, 62,138, 2, 3, 3,155, 6, 6, 6, 54, 37,132,136,222,133,166,204,217,111, 64,101,159, +166, 87,156,189,235, 93,148,187,248,246,126,215,121, 86,184,249,216, 43, 60, 26,252,174,168, 84, 39, 75,225, 86, 39, 87, 81,185, +193,101, 43,199,128,106,229,173,231,209, 99,145,255,188, 61, 33,187, 61,122, 44,242, 47,105,190, 93,231, 53,138, 57,123, 95, 44, +112,232,190, 68,206, 94,253, 21,195,163,197, 64, 27,183, 54, 19,237, 45, 93,207,221,175,105,136, 87,205, 86,169,149,124,155, 60, + 49,119,157,202,254,205,238, 87, 9,108,145, 82,217,175,217, 61,246,200,155,135,196,169, 90, 83,137,157,231,113,177,157,231, 9, +177,125,181,182,111,171,231,230,230, 38,169, 81,163, 70,167,166, 77,155,142, 10, 10, 10,250,182, 94,189,122, 35,171, 84,169,210, +129, 16,242,143, 53,178,146, 57,251, 77,211,242, 73,186,150, 79,210,101,206,126,211,202,127,190,250,207, 39, 28, 83, 34,225,152, + 18,229,206,254,243,223,151,115, 37,118,241,243,148, 57,251,173,176,114, 13,188, 35,117,246,237,102,233,250,118,118,118, 29,156, +156,156,122, 22, 78,118,118,118, 29,216, 59,224,221, 97,241, 5, 78, 72,125,190,220,213,240,173, 80, 44, 25,198,225,192, 42,245, +197,173, 74,239,243, 14, 58, 86,107,124,143,203,225,186, 23, 77, 51, 49,166,248,180,151,183, 27,188, 11,125,191, 42,146,225, 51, + 38, 15,158, 48,160,111,144,103, 80,215,111, 8,128,195, 37,190,240, 61, 26,222, 32,132, 83,149, 67, 0, 14,135,128, 67, 0,128, + 38,166,191,188, 93,175,162,154,133, 88, 59,121, 87, 21,202, 29,175,180,232,241,149, 75,240,185,157,219,100,142, 1,237,149,105, +161,143,222,129,177,114,244,246,246,110,232,235,235,107, 63,118,236, 88, 1, 0,252,244,211, 79,213,171, 87,175,158, 17, 17, 17, +113,151, 82,154, 86,161,135,155,147,255,224, 85,203,230,253,214,185,115, 23, 36,166, 43,177,100,197,186, 54,114, 23,223, 62,249, +201,207, 14,188,139,115, 98,107, 91,213,138,103,101,251,248,155,201,243,156, 58,181,105,200,205,215, 24,113,234,202,131,150, 59, +215,205,187, 99,229, 24,208, 40, 55, 45,244,101,105,235, 50,170,156,153,206,114,218,137, 81,229, 0,192,128,226,243, 43,201, 13, + 65,142, 18, 83, 39, 87, 17,239, 1,128,131,229,230,197,171,197,105,190, 72,228,201,225,112, 80,120,238,185,228,213,249, 55,232, +213, 49,241, 79,175,116,124, 31,238, 19, 43,207,198,201,224,242,236, 57,228,255,249, 35, 5,215, 41,161, 52, 55,233,217, 85,251, +119,112, 61, 89,215,172,110, 19,248,113,243, 22,191, 94,142,204,148,121,180, 30,127,156, 80,206,250,152, 43,203, 31,154,245, 50, + 17,139,109,143, 30, 61,234,216,169, 83, 39,107,231,154, 61, 47,155,245,199, 67, 40, 14, 56,118,236,136,160, 83,167,142, 22, 92, +159,126,237,193,225,236, 32, 0,159, 97,232, 79, 92,134,238,203,207,120, 22, 97,105,119, 42, 82,103,255,225, 28, 80,179,159, 51, + 12,200, 61, 85, 74,216,150, 10, 30, 91,174,196,201,111,152, 68, 44,158,232,227, 87,195, 55, 42, 50,226, 89,110,110,206, 10,117, +234,179, 45,148, 82,198, 34, 49,131,113,210,185,171,193,157,121,124, 62,233,244, 81, 99, 46,128,139,111,115,222,157,157,157,123, +174, 89,179,166, 90,211,166, 77, 1, 0, 70,163,209,106,255,254,253, 46, 63,252,240,131,204,156,123,168,148,253,173,228,232,232, +232, 33, 20, 10, 43, 1,128, 78,167, 75, 72, 75, 75,139,165,148, 38,148,123, 77,184,120, 59, 16,240,230, 93,189,114,133, 7, 0, + 45, 91,182,154,239,217,114,172, 45, 87, 32, 87,151,120, 56,116,121, 50, 0,227,111,221,190, 73, 0,160, 73,227,166, 83,101,142, + 1,107,149,105,161, 41,255,152, 9,118,246,111,204, 1, 38, 52,111,213,190, 87,191,254,131, 57,129, 62, 30,232,208,190,221, 20, + 0, 71, 45, 50, 0, 60,158,228,206,157, 59,222, 28, 14,135,107, 52, 26, 53, 77,154, 52,137,125,155,124, 85,242,107,118,131,128, + 83, 89,111,212,109, 74,123,121,111,126,241,107,143, 16,194,181,174, 92,111, 6,184,188, 17, 12,195,196,229,198,220,109,198, 26, +172, 34, 7,199,202,189,238,181,190,253, 6,213,252, 97,242, 72,241,234, 29,103, 97, 87,181, 81,104,102,228,157,128,247,117, 7, +185, 28,174,251,153, 51,167,157, 36, 34, 46, 0, 32, 95,109, 66,103, 51, 30,182, 54, 94,141, 47,113, 8,241, 43, 28,210,219,100, +212,139,121,124,161,134, 0, 0,121,213, 58,192,193,173,202, 5, 87, 87, 59,233,128,190, 65,158, 59,246,156,141,143,141,207, 40, +245,161,207,225,112,221, 15, 31, 57,234, 84,201, 94, 12, 30,151, 32, 95,109, 68,167, 46,221, 76, 37, 45,235,234,106,247,241,128, +190, 65,158,187,246,158,139, 77, 74,202, 60, 94,230, 67,220,213,183,190,204,218,249, 84,175, 81, 63,216,107, 56,118,152,181, 96, +149,195,149,147,187, 46,183,254,120, 48, 19, 19, 19,167,161,132,132,102,101, 38,125,155,159,244, 34,220,220,115, 44,151,203,171, +201,229,242, 58,157, 59,119, 22, 79,156, 56,145,223,166, 77,155,215,243, 71,142, 28, 41,184,116,233,146,235,178,101,203,186,184, +185,185,105,242,243,243, 31,230,231,231,191,164,148,154,204, 61, 39, 46, 46,142, 95,127,250, 73, 55,180,235,245, 21, 76, 12,193, +200, 47,199,227,244,201,131,163, 1,188, 19,131,101,144, 90,253, 48, 98,212, 68,199, 38, 13,235,114,231,237, 10,135, 68,200, 67, +199, 6,126,228,179,177, 51,109,182,172,158,183, 25, 64,235,146, 34, 87,140, 42,103,102, 77, 7, 93,255,238, 77,171,226,200,110, + 93,127,247,160, 41,224, 72,173,231,199, 30,158, 22, 6, 0,222,157,199, 41,108, 37,146, 53,110, 54, 92, 39,145, 41,109,141,119, +231,113,231, 34, 78,174,206, 43, 43, 47,124,145,200,115,207,238, 93, 62,182,114, 1,184, 92, 2, 30,135, 3, 46,151, 64,171, 55, +161,119,159,254,239, 42,194,200,149, 56,249,116,225, 0,159,189,122, 81, 99,171, 58,245,249, 9, 75,206, 9,225, 10,236,143, 29, +249,131,231,100, 45, 2,151, 75,192,229, 0, 92, 14, 65,116,138, 26,195,135,127,102,253,182, 70,189,115,115,167,134,151,214,182, +238,216,164,166, 93,237,189, 55,137,117,147,206,253,236,211, 53,210, 97,123, 14, 95,236,239,209,106,194,109, 74,153,165,113, 87, + 87,158, 41, 75, 71,171,213,166,116,236,212,217,138,240,100,210,115,135,182,181,226,113, 8, 12, 38, 10,163,137,194, 84, 48,118, +233,171,251,149,128,195, 33,160, 12,197,136, 17,195,209,177, 83,103, 21, 99,100,226,205,206, 48,135,179,227,212,185,235,142, 90, + 3,131,101,107,182,204, 83,230,164,205,139, 12,179,143,150, 58,251,142, 87,165, 60, 51,123,220, 10, 14,104,131,184,151, 79, 70, +237, 58,118, 11, 53, 3,106,192,196,188,202,167,159,187, 12,187,142,223,130,191,159,255,171,124, 51, 20,190,149,229,104,216,160, + 33, 0,108,177,252,248,182,225,201,156,253,119,119,239, 61,180,119,175,222, 3, 96,103,107, 5,157, 94,235,123,254,244,137, 95, +126, 94,179,164, 57, 33,100,152, 69,230,144,154, 94,191, 23, 40,195,188,117,148,201,205,205,205,177, 97,195,255,119,167,104, 52, + 26,225,229,229,133,132,132, 4,191, 10, 92, 75, 82, 87, 87,215,143, 55,110,220,232,212,165, 75, 23,190,139,139, 11, 0, 32, 57, + 57,185,210,169, 83,167,234,185,185,185,165, 38, 37, 37, 29,167,148,170, 74,211, 48, 25, 56, 2, 14, 15, 92,177, 88,250,106, 31, + 65, 56, 19,191, 30, 82,219,217,213, 77, 91,210,242,105,105,201,194,201, 95, 93, 36, 60,158,160, 96,121,112, 40,101, 72, 25, 81, +161, 32, 62,159, 47, 41,105,158,158,107,213,132,242,173,191,224,112, 57,175, 46, 86,163, 33, 45, 51, 38,184,134, 5,145,183, 64, +190, 80,240,243,192,161,163,154,245,238,213, 3,174,142,214, 56,119,237, 17, 70,127, 61,193, 96,212, 27, 86, 84,232, 29,201,229, +242, 82, 83, 83,163,109,109,109, 93,222,254,125, 75,170,158, 61,125,210,233,220,249, 11, 83,151,175, 92, 61,198,205,183,165,129, +161,244,245, 56,195, 30, 53,219,241,219,119,237,107,229,228,221, 68,188,122,246, 23,124, 54,130, 85,212,249,187, 5,124,219,167, +111,223,154, 95,141, 30, 41,254,118,205, 53,156,223,253, 83,250,187, 50, 87, 10, 39,191,166,132,203, 27, 69,184, 92, 25,225, 16, + 33, 99, 98,226,140, 58,221,124, 85,250,179,164,183,213, 54, 49,192,239,215, 83, 45,187,145, 41,170,239,216,119,200,201,217, 70, + 4,141,206,136,126, 3, 6, 99,199,142,223, 20, 14, 86, 66,104,116, 70, 44, 93,190, 60, 47, 63,250,184, 83,116, 92, 86, 66, 80, +183, 9,103, 94, 70,165, 62,137, 77,210,236, 43,253,193,192,129,147,181, 8, 11,246, 60,131,149,132, 15, 91,133, 0, 28, 14, 41, +250,224, 32,190, 85,100, 95, 87,174,236,216, 54, 49, 41, 43,167,136,230,206, 82,111, 54,215, 90, 29,173,109,221,118,127, 50,106, +129,205,243, 84, 30, 40,244,136,176, 18,163,239,176,113, 86,213, 92, 36,144,137,185, 54,145, 49, 9,174, 19, 39, 77,186,102,237, +228,221, 40, 39, 53, 34,178,188,253,174, 82,165, 74,175,174, 93,187, 74,191,251,238, 59,126,229,202,149,177,117,215,126,207,150, + 29,251,116, 75, 76, 74,169, 76, 41,133,179,147, 83,220,136,207,250, 28, 61,113,226, 68, 76, 92, 92, 28,127,201,146, 37,141,255, +248,227,143, 0, 75,254,137,154, 40,133, 70,107,130,169,224,197,152,150,163,181,244, 33, 75, 42, 85,170, 36, 74, 72, 72,208, 22, +190, 56, 8, 33,175, 15,166,188, 82,221,142, 31,181,110,204,219,120, 50, 10,249, 26, 19,100, 98, 62,162, 82, 84,104, 80,183, 22, +217,100, 50,214, 41, 73,115,120,223,143,103, 58,203,105,167,238, 77,171,194,201, 86,138, 95,215, 46,192,145,155,145,157, 82,242, + 9, 28,186, 47, 25,229, 42,226,181,119,148, 10,214,180,105,224,237,210,174,190, 39,238, 54,240,118,185, 18, 28,254,172, 86,223, + 21, 99, 19,242,249,231, 50, 79,142,205, 43,249,129,195,129,157, 66,136,205,167,162, 33, 21,243, 32, 19,243, 32, 19,189,250, 44, +122,254, 43,244, 47,214, 45,160, 50,151, 49, 13,183,114, 11, 24,222,191,111, 31,183,129,253,251, 80,112, 57,216,255,251,209, 30, + 59,119,238, 72,146,187,248,109, 54,113,184, 91,212,137,161,113,229, 30, 83, 14,224,100, 45,196,164,205, 79, 96, 37,225, 67, 33, +229,195, 74,202, 71,187,218,142,224, 86,176, 34, 1, 33,196,118,116,143,106, 93, 30,253, 22,212,214,207, 67,238,243, 48, 34, 39, +116,248,252,123, 43, 47,101,183,253,118,237, 79, 1,246,249,217, 58,222,172,137, 35,120,241,137,137,109,247, 31,189,220,206,173, +209,240,112,163, 94, 57, 61,245,225,190, 18, 35,182,113, 97, 55,234,185, 55,237, 35,214,231, 27, 30, 63, 12,143,247,206,210,138, + 16, 18,157, 11,153,152, 7,121,225,177, 21,243, 32, 19,243, 33, 23,243,144, 24, 31,133, 76, 37,247, 90,130, 61,167, 45,189,116, +195,104, 73,222, 53,122, 19, 30, 68,230,163,138, 95, 93,184,186,186, 65,215,101, 80,149,219, 23,126, 63, 44,115,173,177, 72,153, +244,116,186,185, 58,187,142,221,194,212,241,163,130, 9,112,191,224,229, 92,111,214,226,117,245,231, 77,253,234,141,180,137,115, + 87,215,175,168,185,150, 58,251,237,108,253,241,224,222,181,154,116,192,203,168, 40,156, 60,122, 15, 31,181,239,140, 46,221,122, + 65,167,211, 14,217,178,113,245, 93, 0,235,254,244,204,117,173,209,162, 86,205, 26, 59, 43,185,185, 85,102,152, 87,163,114, 80, + 10,180,104,221, 14,147,191, 29, 1,134, 82,212,169,215,168, 93,151,254, 99, 41, 45, 24,189, 35, 61, 35, 93, 25, 30, 22, 26,164, + 78, 9,187,109,246,177,212,104, 12,105,105,105,120,240,224, 1,158, 61,123,134,144,144, 16,100,100,100,192,218,218, 58,223,194, +125,181,170, 93,187,246,192, 11, 23, 46,136,109,109,109, 95,167,235,116, 58, 40, 20, 10, 12, 28, 56,144,223,161, 67,135, 74, 31, +127,252,241, 80, 66,200, 46, 74,105,110, 73, 58,234,140,231,137, 86, 46,254, 27, 90,183,105, 61, 6, 0, 36, 86,174,145,107,182, + 30, 13, 41,243, 94,179,118,243,108,214,172,185, 55, 40, 5, 1, 93,165, 76, 15, 79, 46, 35, 42, 36,187,117,235, 86, 53, 46,151, +251,250,253,202, 48, 12,214,255,186,215,255,236,213,199,189, 22, 47, 93, 38,182,146,137,144,150,163,195, 23,131, 62, 49,251, 29, + 44,117,241,239,210,188,121,235,195,243,230,126,207,147,203,100, 56,115,251, 37,198,126, 59, 73,147, 20,253,100, 25,101,248,235, +148,169,225,169,111,249,170,124, 39, 29, 94,251,184,203,161,232,222, 81, 60,122, 72,119,177,206, 96, 66,182,210, 0,173,222, 4, + 19, 67,145,163, 52, 32, 52, 54, 15, 14, 86,194,138, 72, 55, 4,224, 8, 32, 13,192,221, 98,191, 81,240, 29, 37,252, 78,127, 21, + 22,129, 61, 0, 29,128,162, 27, 47,252, 93, 90,122,225,250,161, 0,106, 20,104,154, 0,220, 1,144, 85,174,193, 34,132, 80, 74, + 41, 41,114, 17,191,241,187, 40, 2,161,188,239,212,177,131,197, 63,236, 10,198,249,221, 11,211,211, 34,110, 22,238, 0,156,188, + 27,223, 79,141,120,179,184,203,156,166,150, 18,183,128,202, 60,194, 93,209,186, 77,171, 14, 99,190,252, 18,126,213,220, 5, 38, +147,137, 62,121, 22,105,216,182,229,215, 97,214,149,107,173,204,141,127, 50,179, 48,212,104,105,243, 77, 19, 99,138, 47, 30,177, + 50, 49,166,248,242,242, 73, 8, 96, 35, 19, 96,195,137, 72, 80, 10, 16, 80, 88, 73,249,216,115, 41, 30,145,193, 7,115,187,214, +201, 85, 14, 92, 60,167, 93,219, 46,227, 46,132, 70,104,246,165,166,106, 78, 83, 74,147, 75,211,228, 16,128,199, 37,176,146,242, + 97, 45, 21,192, 70, 38, 0, 41,242,226, 42, 90, 44,216,166,203,184,179, 23,174,199, 76, 7,144, 70, 41,213,150,164, 41,113,241, +105,104,101,227,190,175,215,152, 37,138,199,241, 70,240,184, 64, 85, 23, 9,236, 20, 2,232,140, 4,209,105,250,130, 59,198, 6, + 99, 39,206,181,155, 58, 97,204, 9, 66, 2,106, 82, 26,170, 47,107,223, 85, 42,149,112,240,224,193,124,131,193,160, 31,248,197, + 55, 29,146,147,211,122,172, 95,245,163,200,201,201, 25, 42,141, 17,193, 33, 47,106,204,155, 55,183,234,209, 83,151, 14,205,153, + 52,250,112,167, 78,157,172,247,238,221,203, 88,114,222,211, 82,210,215,254,186,243,192,111, 63, 45, 91,136,240,152, 44,108,217, +184, 14,212,100,220, 80,230,157, 95, 68,147, 82, 74,167, 79,159, 46, 57,116,232,144,187, 76, 38,203, 85,169, 84,105,111,196, 31, + 56,132,151,146,169,130,131, 66, 8, 1,143, 3,103, 91, 49,156,172, 69,224,115, 1, 14, 33,166,146, 52,183,236, 59, 62,159, 81, +229,224,200,110, 93,255, 95,215, 46,192,231, 95,207,192,147,116,225, 41,142,212,122,254, 87,253,123, 77,117,148,152, 58,185,217, +112,156,218,213,175, 2,153, 88,128,105,227, 6,163, 81,112,180, 83, 66, 54, 51, 35, 77,205,173, 11, 96, 70,137,231,157, 67,192, +227, 18, 40,164,124,156,218,185, 52, 85,153,147,150, 83, 88,244,166,211,106, 98,204,122,234,149,112, 60,101,206,126, 83,235,215, +173,189, 96,204,200,225,156,230, 77, 27, 81, 14,135,143,244, 60, 29,161, 20,248,118,236,104,124, 53,122,132, 75, 92, 98,234,172, +117,235, 54,204,148, 59,213,248, 33, 63,245,233,156,178, 52, 57,228, 85,212, 71, 46,230, 65, 46,121,101, 88,228, 98, 30, 52, 58, + 19, 8, 1,215,214,179,126, 14,121, 21,185, 77,204,136, 46,249, 31,119,113, 77, 59,143,192,243,103, 35, 21,254, 89,251,178,110, + 70, 37,134,204, 15,126,148,114,135, 82,154,233,209,122,194, 80,189,145, 34, 95, 99, 68, 84,138, 10, 70, 61, 37,159,119,246,132, + 87,111,226,183,240,215,251,191, 17, 66,172, 10,141,115,113,205,248,155,251, 53, 14,181,122,245,251,105,245,198,187,203, 22,204, +224,166,231,232,192, 80, 10,177,144, 11,137,144, 87, 48,113,161, 86,230, 96,221,207,155,146,141, 32,189,232,165, 75, 70,139,158, + 75, 12, 29,244, 73,151, 86,123, 8, 32, 36, 28, 65,188,155,103, 21,207,143,186, 13, 19,127,212,125, 48, 76, 70,221, 84,153,179, +255, 69,101, 74,216,121,115, 52,107, 6,212, 0, 1,238,231,167,132,143, 6, 0,185,179,223, 6,127, 63,255,250,197,211,170, 87, +247,171,111,206,121, 47,120, 70,115, 36,142, 62, 35,171,251,215,154, 60,230,251,141, 85,162,146, 84,176,171,236,131,144,199, 15, +112,114,239,218,251,234,188,172,101, 39,143, 28,156,252,195,143,171,234,116,235,217, 23,135,255,216,251, 29, 33,100, 61,125,197, +185, 34,209,169, 65,219, 54,255, 82,153, 47, 20,193, 96,100, 96, 48,209, 87,159, 70, 19, 50, 51,179, 96, 48, 50, 16, 75, 21, 48, + 50, 4, 6, 19, 3,131,145,129, 86,103,148,141, 30,252,241,151, 0,110,151,148, 79,247, 26,109, 78, 11, 68, 34, 79,138, 87, 99, +203, 82, 74,193, 53,234, 56,174,174,174,187, 0, 64, 36, 18, 65, 36, 18,129, 97, 24, 4,135,167,125,237,232, 31, 52, 6, 5,198, +206,164,215,197,100, 69, 93,235, 88,218,190,187,184,184,116, 43,110,174, 52, 26, 13,242,243,243,113,245,230, 93,235,205,191, 29, +232, 20, 21, 19, 95,141,161,214, 90,133, 83,181,142, 0,186,149,118, 60,115,147,195,190,172,220,116, 36,231,187,175,134, 86, 95, +189,237,216,157,231,167,126, 40,179, 30, 86,213,160,169,186,239, 70,125,218, 96,241,170, 45,207, 51,175,253, 60,190,188,115,196, +227,241,248,105,105,105,175,239,239, 53,155,118, 55,184, 31,158,208,115,229, 79, 43,197,193, 47,243,240, 56, 42, 17, 67,131, 60, +240,198, 75,160, 12, 77,185,139,183,131,183,183,255,174,117,171, 22,243,158, 39,106,176,246,224, 29, 92, 56,188,225,106,114,234, +237, 78, 52, 57, 81, 93,145,103,200,219, 26,172,178, 52, 47, 62, 74, 71,190,198, 8,173,206, 8, 3, 67,145,171, 50, 32, 53, 91, +135, 92,149, 30,249,106, 35,134,182,247, 40,205, 68,151,229, 71, 28, 9, 33,199, 40,165, 93,241,170,123, 41, 97,145,223, 32,132, + 28, 43,200,215, 27,191,167, 78,157, 58,125,209,162, 69, 33,133,203, 22,166, 23, 46, 91, 86,122,145,245,237,167, 77,155, 86,115, +241,226,197, 11,155, 54,109,186,231,198,141, 27,145,102, 25,172,162, 59, 65, 8, 41,243, 0,139, 4, 60, 55,169,194,246,149,225, +248,127,192, 0, 85,106,182,201, 88,185,100,158,157,171, 79,147,152,164,231,183, 60,205,143, 90,249, 54,147, 72,164,199,151, 47, + 95,142,254,221, 90, 74, 98,211, 13,249,143, 98,213, 41, 74, 29,140, 78,142,190,194,249, 11, 23,203, 23, 47, 89,250,213,177, 35, + 76, 54,128,165, 37, 23,229, 53,188,199, 37, 69,234, 88, 17, 2,202,152,226, 51,163,238, 52, 0,128,183,169,107,165,212, 24,193, + 45,168, 59, 67, 8,160,210,154,192,229,146,212,236,240,125,161, 3,127,152,223,110,199,158,179,137,148, 99,147,167, 84, 70, 73, + 41,165,241,101, 71, 8, 8,114, 85, 6, 88, 75,249,176,145,243, 97, 45, 19,128, 91,228,230, 42, 44, 22,220,177,251, 76, 66, 76, + 76,198,221, 2,115, 85,170, 38,143,203,137,164, 38,131,134, 82,147,162,107, 67, 71, 56,217, 8,225,106, 43,130, 72,200,131,193, + 8,168,117, 12, 52, 58, 19,162, 83,213,200, 83, 75, 80,171,117,159,170,246,174,247,180,246,158, 13, 15,101,196,220,237, 85,166, + 41, 53,153,176,109,215,129,234,137,137, 41, 61, 78, 28,218, 41, 74,203, 53,224, 81,180, 18,169,217, 90,128,235,136,217, 11,215, +138,166,140, 31,217,115,219,238,223, 99, 62,106,217, 56,198,226,227,154, 26,182,163, 86,179,143, 55,116,237,218, 83, 18,114,251, + 4,158, 63, 56,191, 32, 63,197,252,250, 87,132, 16,206,254,253,251,141, 35, 71,142,204, 91,184,112, 97,229, 35, 71,142,120,165, +165,165, 61, 0, 96,176,177,177,241,247,173,238,249,240,204,169,147,149, 62,238,217,135, 31,159,174,134,181, 84, 0, 79, 39, 41, +110, 94, 61,109, 16, 10,249, 37,214, 39, 41, 40, 6, 28,224, 30, 52, 5, 71,110, 70,118, 10,201, 16, 95, 26, 49,124,104,204,153, + 43,225, 25,107,126, 59,243, 99, 37,185,225,129,152, 73, 91,115,175,129,183,203,212,177,131,177,104,245, 14, 92, 14, 14, 79, 85, +114, 92, 23, 36,105,141,103,231,244,155, 92, 74,200,252,149,177, 86, 72,248, 80,230,166,229,188, 8, 62,233,251,142,162,207, 67, +207, 28,218,193,201,204, 51, 32, 46, 93, 67, 18, 51,243, 96, 98, 40,108,164, 2, 24, 25,138,236,204,116,178,115,199,111,184,123, +247, 38, 7, 92,206, 23, 0,230,148, 89,156, 69, 94, 21, 9,202,197,252, 87, 17, 32,201,171, 79,131,137,129, 95,117,111,252,178, +102,133,149,131,147, 51, 90,180, 50,191,206,179,194,222,179,206,158,173,107,112,233,198,253, 54,151, 87,174,109, 40,119,115, 92, +109,229, 30,176,204,218,171,189, 70,171, 55, 33, 39, 59, 11, 66, 93, 28, 26, 85, 74,131,157,212,132,232, 92, 87, 60, 73,126, 46, + 47,175, 56, 43,253,241,193, 7,142, 53, 63,153,121,224,232,133, 69, 29,219,183,193,147,232, 92, 72,132, 60,136,133, 92,136,133, + 92,240,137, 9, 43,126,222, 96,200,202,201,235,154,254,228, 80,122, 5,174,207,115, 5,255,118, 95,189,220,156,171, 57,238, 88, + 61,115,251,136,201, 75, 58,118,250,100, 24,121,114,247,226,116, 0,231,205,251,131, 71,205, 74, 99, 24,106,246,181,239,228,221, + 96,215,214,109,187,251, 5,248, 84, 70, 74,182, 1,137, 89,122, 92,189, 31,129,237,155,103,102,103,165,188, 28, 4,125,126, 62, + 67,140, 57,167, 79, 29, 61,245,245, 55,147, 17, 88,179, 78,149,220,248, 92, 43, 0, 57,111,108,147, 75, 54, 14, 25, 62,170,159, +179,179,179,226,255, 17, 44, 10, 95,191, 0,116,233,254, 41, 78, 31,254, 3,161, 33,143,192,208, 87, 70,137, 97, 40,178,179, 50, +146,141, 6,221,182,210,242, 39, 20,139, 61,127,221,250,155, 15,135, 67,160, 55, 48,208, 25, 25,140,255,242, 51,221,232,111,167, +183,232,210,161,117,136,144,139,220,232,216, 36,155,155,247,159,214, 98,248,242,202,195, 39,174, 16,104,180, 38,228,168, 12, 56, +177,165,116,143, 35,177,243,108, 90,167, 89,207,225,163,191,255, 69, 36,226,114,244,129,190,149, 35, 91, 55, 9,140,243,112,115, +200,155,183,120,109,163,107,183,239,119,233, 59,112,184,120,168,127,125,226,102, 47, 81,124, 54,240,147,218, 50,123,143, 33,202, +140,216, 82,135, 54,227, 75,109,179, 61,188,170,171,254, 31, 33,242, 59, 72, 40,170,190, 97, 34, 8, 34, 85,201,225,189, 0,192, +213,205, 67,195, 23, 89,229, 89, 96, 64, 40, 0,172,222,180,187,193,195,103,137, 35,126,250,105,165, 52,248,101, 30, 30,188,204, +129, 72,192,129,222,192,128,152, 25,196,102, 40,119,212,140,105, 83,173,178,148, 38, 92,122,148,134,144,123, 23,169, 46, 95, 51, + 80,106,180,234, 37,115,246, 27, 2,192, 27, 64, 4, 33,116,163, 50,197,229, 48,165,151,140,150, 94,247, 12,243,234,127,178,181, +147,119, 85, 19, 79,212,133, 47,148, 53, 37,132, 6, 18, 10, 91,128, 38,100, 20,188, 83,205,117,104,202,148,103, 88,178,112, 22, + 86,109,254, 3,137, 25, 26, 88,155,226,112,120,203,124,124,183,104, 23,212, 90, 83, 89,215,120,153,126,164, 36, 67, 84,220,104, + 21,126, 47, 92,110,209,162, 69, 93,139,157,155,174,165,156,179, 63, 45, 87,184,254,226,197,139, 23, 22,153,175, 50,187,136,176, +112,103,202,218, 41, 43,199,128,106, 2, 43,185,200, 74,194,135,151,135, 43,250,143,153,227,224,226,211, 60, 85, 36,228,113, 15, +237,254,197, 46, 93, 45, 2,225,112,148,102, 23,111, 56,251, 55, 86, 40, 20, 39, 14,254,254, 7,170,121, 56, 9,118, 94,205,140, +186, 31,169,126, 29,210,205, 77,139, 17,122, 89,169,120,189, 62,249, 68,122,254,194,197,111, 75, 51, 88, 92,194,117,223,244,219, +239, 78, 10, 9, 31,132, 0,121,106, 35, 70, 12,249,244,237, 95, 95,148,225,126, 62,108, 8, 72,129,185,202,205, 72,198,244,201, + 99, 52, 50,195,243,208,216,232,216,132,160,110,223,157,207,205, 39,154,126,131,191,188, 27,250,108, 81, 86,249, 87,175, 33,190, +203,199, 93, 4,175, 34, 5, 0,151, 16, 48,148, 73,241,243,146,143,253, 83,177, 96,178,118, 83,121,134, 45, 47, 33, 60, 83,225, + 90,171,247,142,229, 95,111,114,115,118,178,151,203, 36, 84, 46, 21,145, 64,127, 31, 65,147, 38,205,132, 94,126,181, 5, 87,159, +170, 17,155,166, 70,100, 98, 14, 68,206,117,121,253,219,117,198,142,149, 19,219, 16, 66, 56,229, 85,124, 61,123,233, 86,183,205, + 63,255, 36, 74,201,214, 35, 44, 54, 31,201, 89, 26, 36,101,105,145,156,169,129, 92,194, 71,171,238, 35, 69,199, 15,111,236,246, + 81,203,198,171, 43,114,120, 35, 35,163,142, 71, 39, 36,245,169, 93,175, 17,118,108,223,218,210,214,182,170, 85, 86, 86,100,174, +185,103,103,254,252,249,194,197,139, 23,243,214,172, 89,147,219,164, 73, 19,151,105,211,166,117, 76, 77, 77,189, 83,165, 74, 21, +191,211, 7,183, 93,168,219,170, 71, 67, 48,122,199,150,173,219, 10, 68, 12, 15,103,142, 29,211,239,219,187, 51, 67,173,206, 27, + 93,166,209,144, 90,207, 79,201, 39,112,172, 84, 41, 68, 46, 52,181,231,113,178,159,101,158, 28,251, 27,128,131,222,157,199,157, +187,120, 47,252,217,255,216, 59,235,240,168,142,182,141,223,179,158,149,184, 59, 16, 8, 9, 33,193,221,221,181,104,161,148,182, + 72,169, 80,164, 45,148, 22,107,145, 82, 90,164,165,197,138,211,226, 90,220, 93,131, 67, 18, 8, 81,226,178,146,117, 57,243,253, + 17,121, 3,111,100, 67,233,215,183,116,126,215,181, 87, 54,187,231,220, 59,115,206,156, 57,247,121,198, 26,223, 76,244, 58,117, +243,113, 86,158,206, 92,251,201,225,201, 21, 86,184,124, 66, 32,224,243,224, 40, 21,128, 87, 84,155, 58,250,215,127, 12, 66, 60, +139, 35,165, 4,164,232, 47, 64, 8,210,242,146,162,237,232,147, 65, 40, 71,129,152, 84, 45, 10, 12,133, 33,248, 0, 15, 25,178, + 51, 83,241,243,242, 13,136,190,113, 29, 93,123,244,197,138, 53, 91, 48,230,173,193,134,202,212,120,188,162, 8, 86,169,232,149, + 66, 42, 0, 64,160,212, 90,176,235, 66, 10,106,214,224,217,125, 67, 0, 0, 71,133, 12, 42,141, 30, 60,145, 35,158,220, 60, 36, + 59,124,250,234,244, 47,191, 94,242,105,126,250,157,228,199,119,207, 35,204, 67,133, 26,254,102,220,207,112,194,141,220,234, 8, +171, 21, 2,158,232,186, 93,218, 57,247,163, 22,237,227,237,234,221,184, 65, 68,139, 96, 47, 23,232, 77,182,162, 40, 22, 31,235, +215,109, 66, 98, 66,234,187, 57,247,247, 70,191, 10, 39, 91,144, 25,159,237,224, 29,250,193,221,171, 39,159, 14,120,243, 3,248, +250, 7,213,183,255,166,101,159,153,178,217, 97,176, 8, 33, 60,183,106, 13, 54,110,220,188, 99,104,141, 32, 31, 28,191,154,128, +107,177,185,240,240,112, 7, 95,230,131,208,118,163, 93,238, 30, 89,246,134, 62,167, 96,163, 80, 36,123,175, 89,243, 86,160,148, + 34,230,225,253, 60,149,202,249,191,234,102, 93,218,163, 91, 0,156,158,107,134,242,172, 83, 95,225,236,118,203,104,182,225,217, +179, 84, 92,188,116,166, 97,209,118,118, 35, 17,241,113, 44, 58, 11,102, 11, 7,179,149, 67,219,118, 93, 76, 34,158,177,205,188, + 37,235,154,167,167,165,243,228, 78, 30,156,155,127, 29,145,175,196,108,188, 29,175, 18,153, 45, 28, 66,252,228, 21,106,122,250, +213,154, 63,117,234,164, 58,124,145, 20, 26,173,209,148,158,246,204,103,245,111,167, 11, 30, 62,186,235, 31,224,229,236,244,237, +210, 85, 34,181,129, 32, 75,101, 68,158, 70, 77,222, 28,247,153,223,218,159, 22,140, 0, 96,247,218,177,132,162,198, 31,199,206, +135,187, 58,138, 72,129,193,202,229,170,205,182, 55,251,255,185, 65,148, 69,230,106,236,146, 31,150,202,162,227, 53,184, 29,175, +130,131,136, 15,177,136, 7,147,133,131, 61,151, 19, 33,132, 87, 35,178,221,248,150,141,163,112,244, 86, 14,248,124, 30,244,154, +124,157, 0,185,177,141,219,119,149, 53,106,218, 28, 29,218,183,195,227,216,152,160,131,251,119,117,186,124,241,108,134,194, 43, +236,195,130,172,152, 61, 85, 42,231, 58, 29,223, 34,246, 25,237,235, 95,173,213,192, 97,163,157,131,131,252,137,151,135, 59,172, + 84,128,177,111,189, 97,247,149, 95,104,200,129,133, 95, 79,135,209,104,130,167,139, 24,148, 2,235,150,207,134,201,100,130,159, +187, 4, 42,173,165, 34, 99, 90,161, 31, 41, 47,234, 84,197,230,230,131,101,153,172, 23, 63, 39,132, 28,156, 54,109,218, 23, 0, +232,180,105,211,190, 40,254,127,193,130, 5,122, 0,105,118, 25,172,226, 76,149, 91, 81,250,133,214,118,245,242,187,176,125,227, + 79,174,249, 5,102, 56,136,248, 8, 8, 12,198,231,115,151,121,246,104,236,129,108,131, 12, 59,118,174,207, 51, 25,116,219,236, +107, 75, 14,109,236, 40,119, 58,186,113,243, 54,206,195,221,157,247,243,177,236,248, 92,141,181,164,233, 42,246,234,126,238,198, +209,213,190, 20,228,136,131,131, 67, 45,147,201,228, 90,217, 9, 93,119, 44,169,168,115, 46,121, 21,117, 42, 8,159,111,219,178, +101, 51,220,157,196, 48, 90, 56, 76,251,116,162,126, 84, 87,133,242,205, 33,195, 58,118,232,249,241, 41,161, 60,244,100,203,134, +161,180, 65,131, 6, 74, 62,159, 95,169, 94,238,211,107,255, 53, 90, 34,188,186,236,189, 25,159,141,154, 81, 70,179,160, 93, 29, +114, 53,233,119, 47, 0,120, 46, 34, 66,106,214, 20,111,221,177,111,226,160, 33, 67,191,244,175,223, 95,145,144,174,130,136,152, +209,164,142, 47, 78, 31,217, 67, 83, 19, 99, 39,217, 51,170, 40, 43, 59, 47,208,211,211, 27,209, 79, 11,240, 44, 87,143,140, 34, +115,149,158,111,132, 70,175, 65,189, 96, 63, 40, 85,170,192,151, 62,190,192,158,163, 71,143, 14,238,217,111, 40, 62,254,116, 78, +235, 95,127, 89,124, 71,225, 83,251,157,130,140,216, 51,246, 60, 25, 18, 66,242, 62,255,252,243,154,107,214,172,225,141, 24, 49, + 66, 31, 21, 21,229, 48,114,228,200,214,155, 54,109,114,144,201, 28,244,183,207,239,255,242,189,143,166,245, 91,189,236,155,250, +249,249,249,196,106,177, 28, 54,231,231, 79,211, 84, 98,226,146,247, 77,127, 68, 34,230,188,221,165,141,231,126, 55, 25,175,174, +132,154,134,145,136, 57,219,232,131, 89,230, 39,135,151,107,162,134,252,240, 81,154,146,155, 97,224,121,205,171,204, 92, 1, 0, +143, 79, 96,178,112,112,148, 10,193,227,241,138,205,187,239,250,109,135,101,158,206, 98, 8,249, 60, 8,248,133,209,205, 28,181, + 25, 31,140,238,103,247, 19,128,213, 70,161, 55, 89,161, 43,122, 26,212,168,115, 48,253,211,201,232,209,103, 0,222, 27, 63, 25, +249,122,224,198, 83, 13,204, 22, 75,165, 23, 5,143,240,160, 51, 90,241, 78,215, 96,228, 21,152,161,213, 91, 97,178,114,144,137, + 5, 16, 10,120,144, 59, 8,224, 36, 19, 2,148,138, 8, 33, 99, 1, 64, 40, 20, 26,204,102,243,230, 10,206, 19,170, 7,122, 67, +111,225,161,233,208,197,232,220,162, 54,238, 95,216, 37, 56,123,229,110,141, 79, 62,157,129,137, 99,250, 96,231,163,154,112,243, + 10,134, 66, 46,133,133,242, 0, 80,187, 58,228, 81, 58,139,243, 13, 31, 56,124,229,154,117, 49,115,103, 78,115, 80,106, 9, 36, + 34, 62, 78,157, 60,129,203, 87,111, 44,203,190,191,119, 51, 94, 33, 66,202,243,118,114,114,130,131,152, 15,147,217,104,178,191, +139, 2, 5, 5, 26, 42,188,195, 86, 22, 61,225, 55,180,113, 40,227, 51, 90,217, 13,129, 56,251, 69,174, 95,185,118,203, 8, 63, + 31, 47,236, 57,121, 7,235,215,252,136, 26, 13,122,227,194, 31,235,225, 92,189, 57,228, 65,173, 33,118,220, 49,150,199, 23, 68, +125,248,201, 23, 3, 27, 53,105,129,139,231, 79, 33, 43, 35,125, 37,165,143,236,138,104,240,133,228,227,142, 93,250,192, 96,178, +161, 77,167,222, 56,114, 96,207, 71, 40, 26, 60, 97,255,205,235,133,250, 25, 60,235,228, 73, 31, 11,179, 84, 38, 97,142,202,132, +148, 28, 61, 18, 51,180,216,251,251,175,212,254,250,194,212,164,109,189, 0,225,216, 69,167, 82, 2, 3,124,141, 66,163, 94, 26, +251, 36, 62,252,189,209,163,132, 53,106,133,243,178, 84, 70,100,171,140,200, 81, 25, 81, 96,176,162, 86, 64, 40,207, 98, 37, 45, +170,122,158, 61,156,197,194, 21, 7,158,194, 73, 46, 68,203,240,151, 31, 56,203,113,220,127,204,213,146, 66,115,117,231,169, 10, + 18, 17, 31, 18, 17, 15, 18, 17, 31, 86, 27,181,235,129, 69,234, 85,187,231, 7, 31, 78,240, 51, 89,129, 92,149, 9, 2, 62,129, +151,135,171,188, 73,253,225, 88,183,248, 35, 0,192,152,207,127,198,123,239,140, 68,157,186, 81, 80,230,231,251, 12, 31,212,115, + 9,128, 61,246,166,245,208,177, 51, 65,199,206, 69,127,254,193,212, 89,138, 33,125, 58,240,111,197,171,144,158,103,196,147, 88, + 77,149, 34,109, 0, 96,181,113,160,160,216,176,237, 32,164, 98, 1,178, 85,102, 80, 74,241,205,143,219,225, 40, 21, 34, 61,191, +176, 89,191,146, 58,158, 84,242,125,239, 63, 21, 63, 41,220, 63, 27,255,233,167, 85,105, 4,107,193,130, 5,247, 23, 44, 88, 80, +102, 68,172, 82,131, 85,145,185,114,113,245,189,184,127,219, 26,183, 61,209, 38, 92,217,113, 3,189,154,249, 66, 36,224, 65,230, +236,137,219, 79,181, 56,122,228, 55,229,161,253, 59,159,229, 9,117,223, 85,106,174,124,195, 26,202,165, 78, 39, 86,172,222,104, +245,240,242,194,230,243,121,169,249, 90,171,229, 63,205, 83, 22,114,227,232,234, 26, 86,206,210, 93,159, 17, 87,233,227, 44, 71, + 33, 90,240,203, 62, 0, 20, 28,199,129,114, 28,132, 14, 10,185,103,205, 22,153, 69, 21,156,131,128, 71, 12,165,175,124,202, 89, + 83,179,227, 43, 14,119, 18, 0, 78, 50, 33,182,157,125, 6, 0,153,124,205,205,135,111, 14, 41,108, 22, 52,152, 28,212,117,107, +214,164, 77,154, 52, 81, 74,165,210,151, 62,201, 85,109, 22,180,171,224, 60,121, 98, 2,176,200, 47,172,205,128,110,138,122, 77, +197, 60, 17, 26,133,249,226,244,209,189,244,202,145,117, 99,116,153, 49, 27,237, 44,128, 40, 48, 88,144,150,107,192,179, 92, 3, + 50,242, 13,200,200, 51, 34, 35,223, 0, 66, 8, 12, 38,235,159,186, 97,105,179, 98,118,108,222,184,182,175,209,140, 97,109,187, + 14,192,228, 89, 43,130, 55,175, 92,120, 66,234, 29,222,202,158, 14,180,148, 82, 27, 33, 36,113,244,232,209,245,127,251,237, 55, +126,100,100,164,254,225,195,135, 50, 0, 28, 0,179, 66, 33,147,254,250,211,130,163, 77,155, 54,253,253, 89,236,163, 83, 0,242, +237, 25, 73, 85,173,253,104, 73,184, 83,222,216, 32,121,203,110, 33, 62, 50, 4,201, 53,221,194, 21,183,191,243,234,244,201,252, +172,147, 75,179,210,141,214,227,217,122,126,131,103, 5, 66,187,250, 2, 90,140,134,164,129,131,134,130, 79,120, 48, 27,116, 73, +197,133,203,203, 89,140,217, 91, 30, 65,225, 32,132,163, 84, 0,133, 84,136,214, 17,110,168, 66, 61, 70, 45, 54, 14, 58,163, 13, +122,163, 21, 6,147, 21, 30,129,174, 88,179,121, 7,146,179,244,216,119, 61, 7, 49, 73, 26,132, 6,200, 65,105,229,213, 35,103, +179,104,251,188, 49,194,145,207, 35,224,243, 8, 47, 34,188, 54,242, 10,204, 16, 9,120, 16, 57, 72, 33,151, 8,224, 36, 21, 66, + 36, 18, 34, 43, 43, 11, 70,163, 17, 65, 65, 65, 14, 21, 91, 64, 10, 71,133, 20,161, 53,252, 96,182, 88,113,232,220, 3,204,155, + 52, 16, 93,218, 54, 6, 17, 42,240,200,216, 16,142,110,142,224,120, 60,152,173, 28, 76,102, 27, 0, 94,185,209,182,160,160,160, +142,114,185, 92,174,211,233, 52, 73, 73, 73,103,210, 31,237, 78,246,170,219,127,236,145, 99,167, 54,247,238,209, 5,209,119,238, + 99,231,158,253,231,115,220, 85, 83,139,247,137,140,140,108,238,225,225,161,200,205,205, 85,223,189,123,247,218, 75, 62,237, 18, +185,119,248, 39, 45, 90,183, 71,129, 50, 11,153, 41, 9,118, 63, 53,215, 9,118,196, 87, 11, 86, 52, 10,171, 29,214,200, 70, 11, + 13, 87, 68,144, 35,166,204, 90,222,168,102,104,237, 70,197, 3, 61,234, 4, 85, 60,173,154,220, 59,108,194,188, 31,126,121, 43, + 40, 48, 16,135, 47, 62,194,130, 25,227,163,229, 50,199,234, 1,222,174, 46,162,186,141,113,235,214, 37,120, 65, 12, 39,239,208, +128, 97,125,199, 5,116,235,209, 23,119,111,223,192,210, 69, 95, 95,214,242,165,243,237, 73,171,194, 59,196,179, 65,147,182,111, + 58,186,121, 67,169,210,192,209,213, 11,117,234, 53,121, 83,225, 29,242,121,209, 98,245, 47,103, 54, 40,133,209, 76,145,175, 49, + 35, 57,187,208, 92, 37,100,234,192,113, 85,232,243, 99,227,136,194, 65, 32,112,179, 60, 14,186,123,226, 20, 13, 14,244, 38,139, +190,254,148,111,134, 3,178,149,133,230, 42, 91,109, 66,182,202,132, 2,131, 5,110,114, 1, 56, 27, 87,229,167,237,252, 2, 51, + 28,139,250,201,218,184,151,239,243,253,203,250,109, 97,183, 99,211,250,255,240,195, 82,217,173,167,165,204,149,176, 48,122, 37, + 17,241, 97,227,184,162, 59, 77, 37,230, 94, 32,252,184, 95,207,206, 72,201,209, 23,141, 68, 38, 8,141,106, 10, 15, 41,135, 78, + 67,167, 1, 0,250,244, 44,236,103,252, 52, 93,139, 3, 87,178,129,231, 59,108, 87, 92, 23,235,245,252,213, 91,254,248,100,199, +246,223,157, 13, 54, 1, 86, 29, 78,132,206,104,133,131,136, 15,137,136, 15,169,136,255, 92,151,160,202, 13, 86, 97,159,186,228, + 28, 11,116, 6, 3,212,122, 11, 40,128,107,143, 11,160, 55, 89,161,210, 90,208, 60,220,245,207, 62,243,252, 1,160,215,139, 70, +232, 69,147, 84, 42, 2, 85, 22,215, 75,107, 20,111, 95,158,129, 43,221, 39, 11,128, 93, 15,130,130, 23,157, 98,233,255, 29,253, + 66,107,187,184,248, 94,220,255,251, 26,183,221,209, 70,156,190,157,139, 65,109, 2,160, 83,101, 96,225,130,207,242, 8,168,137, +199,231, 41,141, 6,253,238, 92,153,121, 30,125,240,196, 92, 97, 37,225, 25, 81, 79, 42,147,157,250,118,233, 42,179,151,183, 63, +183,251,138, 50, 75,165,179, 61, 23, 43,180, 25,141, 60,202, 81,145, 61,230,170,168,105,195, 60,235,163, 1,224, 40,197,236,165, + 59, 48,127,234, 80, 40,164, 35,100,132, 16,153,214, 96,197,164, 57,107,241,253, 87,239, 58,202, 36, 2, 16, 2, 24, 76, 54,188, + 53,108,128,125, 5,207, 96,197,147,171,191, 21,104,158, 30,124, 88,186, 89,176, 89,235, 30, 55,154, 53,107,166,116,117,117,133, + 84, 42,253, 79,100,194,206,202,186,172,209,130, 89, 74,164, 58, 58, 58,182,115,114,114, 42,173,167, 85, 42,149,123, 95,166,244, +105,148, 57,167, 50, 18,239, 54,109,213,161, 15,206, 28,221, 75,175, 28,254,117, 76, 85,230,216,113,117,115, 77,185,121,247, 73, + 29, 66,220, 10, 35, 88, 69,230,202,100,225, 16,236, 45, 67, 74,226, 19,184, 56, 59,167,216,171, 39,243, 10,239, 71,120,116, 60, + 1, 93, 87,144, 17,187,163,200,236, 12,151,251,132,223,185,127,239,214,188,222,111,126, 44,232, 58,104, 2,127,229,130, 15,191, +192, 11,157, 83, 43,192, 28, 19, 19,243,224,221,119,223,109,121,249,242,101, 27, 0, 29, 33,196,194,231,243,101, 38,147, 73,212, +161, 67, 7,213,163, 71,143,206,194,142,206,136,109,222,217,233, 65, 36,154, 30, 53, 67,155, 12, 15,118,212,116,233,208,166, 5, + 90,212, 13, 68, 74,155, 22, 0,240,113, 82,129, 34,172,245,251,191,110,171,225, 25,112,104,229,250, 3,243,199, 12,237, 60,201, +175,207,156, 31,210, 14,204,170,176,131,105,242,131, 51,221,202,178,239,133,205,134, 66, 40,164, 2, 56, 74,133,112,116, 16,194, + 98,165, 85,121, 82,164, 22, 43, 87, 24,193, 50, 89, 81,160,183,226,212,173, 76,100,168, 76, 80,106,204,208,155,109,160,160,133, + 79,159,118,212,226, 89,113, 23, 92, 74,206,125,112, 35,213,234, 31, 23, 59,237,186,144, 90, 50, 66,207, 89, 38,134,163,172,112, + 84,245,185,115,231,224,238, 94,249,211, 61,199,113,216,121,228, 26,126,216,112, 10, 71,214,125, 6, 7, 17, 31,245,250,205,193, +219,253,155,129,163, 28,158,196,220,207, 12,141,168,239,205,227, 73,193, 35, 4, 70, 11, 7,128,150,123, 60, 77, 38,147,123,114, +114,178,186, 86,173, 90, 62,254,254,254,131,248,124, 62,149, 0,198,189,191,231,233, 78, 30,220, 42,211,234,141, 54,153, 85,181, +174, 86,186,190, 87,104,104, 40, 8, 33,212,195,195, 67,116,234,212,169,130,168,168, 40,207,151, 52, 87, 60,169, 87,237,101,239, +189,255,201,160,154, 33, 33,216,177,117, 29, 40, 37,187,236,221,127,203,129,203,248,122,250,243, 35, 6,167,204, 90,222,232,251, + 57, 31, 63,247,217,251,211,127,104, 84, 81,157, 17, 16,217,241,179,240,240, 8, 92,190,159,138, 69, 95,190, 31,109,200,122, 58, +220,164,112, 31,103, 46, 72,159,220,160, 97, 99,248,184, 59, 33, 45,207,136,190, 35,250,163, 85,235, 54,184,123,251, 6,190,254, +234,211,203,208,153,186,210,236, 7,122,123,210,202, 81,225,248, 14,221,250, 11,245, 70, 51,150, 47,154,137,113, 83,231,161,121, +199, 62,194,123,183,174,140, 7, 48,215,222, 60, 27,205, 54,116,136,242, 40, 52,205, 22, 14,251,159,242, 5,101,149, 64, 1,159, +240, 26,132,184, 64,111,178, 66,173,179, 84,124,163, 18, 9, 51,148, 42,117,181,159,230,127,194,215, 26,172,200, 86,153,144,165, + 50, 34, 71,249, 31, 99,149,163, 50, 34, 91,101,130, 80, 64, 16, 27,159, 4,158, 80, 80,229,254,119,249, 5, 22, 52,173,237, 90, +120,141,190,100,107,136, 69,224,212,236,200,217,219, 3,127,248, 97,137,195,237, 4, 13,238, 60, 85, 23, 69,174,248,144, 8,121, + 16, 23,189,183,113, 64,101, 63,225,236, 85,179,198,168,119,199,116,114, 82, 72,145, 22,151, 5, 1,159,128,207, 39,112,246, 10, +132,179,196,128, 15,223, 31, 11, 15,119, 23, 36,231, 24,177,108, 79, 44,238, 60,120, 12, 78, 95,181,108, 47, 95,245,123,247,247, + 62,152,226,194, 19,138,177,233,104, 66, 97, 58,249, 54, 60,186,114,192,144,246,228,174,182, 64,157, 75, 65,109,118, 62,248, 19, +106,181, 21, 26,211,249,179,167,225,247, 13, 63,227,232,205,172,146,206, 89, 23,118,125,143, 79,166,127,131, 28,181,169,168,232, + 87, 28,185,122,225,255,236, 82,145,167,255,250,191,148, 41, 42,235,127, 82,244,191,169, 28, 13,211, 11,166,202,244,194,231,166, + 23,244,236,154,187, 79, 80, 81,228,202,217,213,231,226,190,109,171,221,118,223, 52,225,204,157, 66,115,101, 53, 42,241,203,162, +233,233, 58,165,186,109, 69, 19, 54,254,151,185,242,170, 29, 41,145,203,207,126,249,205, 50,163,183,127, 53,235,161, 91,234, 92, +141,193,246, 95, 97, 16,145, 76,110,147, 59,123, 26, 92,130, 27,254, 32,212,155,102,102,103, 63,208, 86, 22,105,226, 40,197,193, +171, 25,160,180,240,145,104,251,185,103, 40,122, 18,135,141, 43,108, 62, 57,126, 43, 11,130,162,126, 38,246,134,185,127, 89,245, +179,186, 87,148, 74,251,230,252,217, 37,205,130,205,235, 23, 70,174,156,156,156,224,226,226, 2,133, 66, 1,123,154, 8,139, 41, +111,180,160,163,163, 99,187, 91,183,110, 57, 56, 57, 57,129,207,231,195,104, 52,162,110,221,186, 47,117,129, 43,124,194, 63,104, +218,113,192, 23,173, 59,246,193,169, 35,187,233,149, 35,235,199, 86,117, 2,195, 94,157, 91, 30,248,250,235,217, 53,190,156,247, +147,196,209, 65,128,135, 5, 38,240, 8, 65,176,183, 12,238,114, 30,206,236,221,100, 24,218,167,165,221,147,218, 5, 6,250,111, +254,254,199,213,242,239, 23,206,233,224,232, 31,118, 74,243, 44, 38, 15, 0,180, 25,143, 22,201,124,194, 31, 4, 92, 58,118,168, +126,187, 1,240,246, 11,233, 82,133, 48, 47, 37,132,232,226,227,227,159,126,249,229,151, 97, 11, 23, 46,164,124, 62,159, 3, 32, + 89,186,116,169, 46, 46, 46,238, 22, 10,135,216,162,178,232, 85,167, 46,117, 39, 41,196,182,230,110, 50, 94,221, 16, 31, 25, 90, +212, 45,108,253, 28,218,171, 53, 2,131,130, 16,159,161,107,144,167,227,132, 5, 38,126,200,138, 85,119,174, 87,247,224,143,177, +234, 77, 15, 80,201, 36,176,229,149,217,226,142,239,197,209, 43, 71,169, 16, 28, 80,149, 39, 69,106,177,114, 48,154,109,208, 27, +109,208,155,172,208,154,108,208,153,108,224,104,225, 53, 65, 8,129,217,202,193,174,199,228, 23,202,190,147,155, 7, 66,170, 23, +142,122,117,148, 22, 78,217,224, 36, 19, 22,142,117,118,119,135,151,151,151, 93, 81, 80,147,185,240, 18, 55, 89,184,146,230,123, +147,217, 10, 74, 41, 98, 99, 99, 62, 75,124,250,180, 95,173,208, 90,109, 35,234,213,119,147, 73,120, 0, 80,174, 25,208,233,116, + 54, 71, 71, 71, 47, 55, 55, 55,222,179,103,207, 74, 76,115,173, 6, 29,172,123,118,239,194,192,129, 3, 10, 30, 94,187, 93, 50, + 84, 93,175,215,147, 86,173, 90, 57, 5, 6, 6,242,140, 70,163,186,106,199,128, 16,185,103,237,254,129,225, 45,231,189, 53,122, + 92,237, 14,157,187,227,244,201, 99,216,183,251,183,141,218,172,152, 99,118, 95,239, 97,225,255, 53,138,176,102,104,237,255, 26, + 69, 88,173, 70,104,185, 6,203,217,185,158, 83,189, 38,237, 3, 19,115,204, 56,124,248, 16,180,170,140,175, 76,166, 2, 29,132, +116,237,193,223, 86,188,251,222, 39,115,156,218,183,107, 3, 87, 39, 25, 4, 2, 62,110, 94,191,140,133,115,191,184, 12,157,169, +107,101,245,103, 73,126, 35, 34, 68,181,130,170, 77, 12,170, 25,137,155, 87,206,227, 73,236,189,251,183,175, 95,174, 91, 43,170, + 57, 60,253,130, 39,146,136,136,133,244,193, 3,115,101, 58, 38,131, 33,233,237, 81, 35, 81,122, 20, 97,139,134, 97,238,228,197, + 11, 0,128, 78,147,101,254,117,241,164,184,226, 81,132,156,217,148, 84,158,174, 42, 63,123,231,153,139, 87,167,246,235,213,157, +151,163, 54, 21, 70,172, 84,166,162,151, 17, 57,197,239,213, 70,132,250, 41, 16,115,255, 38,103, 80,229,236,170,226,117,105,120, +123,112,183, 7,197,101,151,227, 40, 8, 96,168,234,245, 77,133, 78, 99, 23,125,247,131,195,237,167, 5,184,147,160, 46,108, 18, + 20,242, 11,141,149,144, 87, 98,182, 10, 71,167, 87, 18, 13, 34,252,249,239,140, 26,134, 28,181, 25, 28, 7, 8,248,188,162,151, + 8,201, 26,130, 20,141, 14, 57,249,217,120,154,152, 4,101,198, 19,240,120, 60,120,248,213,134,189,225, 70, 27, 21,251,234, 76, + 52,106, 80,175,182,130,221,151,210, 33,147, 8, 96,212,100,226,240,182,197,217,198, 2,245, 60,189,174, 96,183, 62, 55, 46,205, +222,188,243, 8,201, 86, 23, 24,188, 37, 66, 62,118,108,248, 9,131,223,126,191,232,160, 20,254,249,108,198,215, 0,143, 32, 47, + 95, 3, 66, 72, 85,163,162,215, 43,249,255,101,120, 21, 26, 85, 55, 88, 50,153,251,137,125,191,175,118,187,244,148,135,107, 49, +249, 24,212, 38, 0, 22, 67, 62,150,125, 51, 57, 67,173,206,234,168,201,142,139,175,210, 47,241,120,221,134,190, 51,245,126, 72, +237, 8,227,233,123, 5, 9, 74,173,165,220,126, 12, 45, 6,125,121,255,198, 31, 63,246, 84, 89,226, 39, 40,252,234,218, 56,171, +117,145, 46, 43,102, 78, 57, 77,132,226, 57,203,118,148, 52, 15,126,190,112, 83,225,123,155, 13, 54,202,129,114,192,135, 95,253, + 2, 43,103, 3,103,179,129,179, 81, 88,108, 84, 86, 89,114,189,252,170,237,206,127,180, 61,252,205,185,255,221, 44,232,226,226, + 2,119,119,119,184,187,187,163,216, 16,253,217,102, 65, 39, 39, 39, 40, 20, 10,156, 63,127, 30, 82,169, 20,114,185,188, 74,186, +165,204,213,132, 38,237,251,253,212,177,239,187, 56,190,123, 21,189,126,238,192, 56, 93,102,204, 90,187, 35,241, 54, 27,177, 88, + 44,232,213,181,125, 82,244,253,199, 71,102, 76, 29,223,189,101,239,113,146, 22, 97,254, 48,152,108, 72, 77,124,130, 51,123,215, + 27,106,215,240, 61,218,169, 77,179, 36,139,197, 2,155,205, 86,233, 13,220, 96, 50,231,240,133, 82,249,176, 97,111, 10,175, 95, +187,182, 75,225, 85,123,135,141,240,110, 19,202,213, 35,132, 12,172, 87,175, 14,204, 22, 14, 58,157, 58,191,170,121,214,104, 52, + 79,215,173, 91, 87, 99,212,168, 81,178,136,136, 8,225,147, 39, 79,240,253,247,223,231,106, 52,154,167,246,106, 28, 59, 23,179, + 84, 64,242,227,196,156,121,120,176,163,166, 75,114,235, 22, 24,214,187, 53,126,255,227, 2,206,156,191,140,164, 2,197,173, 2, +171, 96,111, 74, 82,154,177,174,155,122, 87,223, 22,213,248, 59, 54,228,239,242,234, 48,125, 8,165,146, 99,217,103,102,105,237, +191,121, 3, 26,189, 5, 78,178,194,249,154,138, 35, 89,124, 66,236,118, 66, 4,120,122,254,242,205,200,198,161, 17,136,126,170, + 66,150,210, 8,189,209, 10,142,163,224, 64,225,238, 40,134,131,136,135,228,196,167,224,168, 57,161,138,183,136,236,118,109,219, + 9, 0, 2, 66,168, 64, 40, 16,128,162,112, 94, 68,169, 84, 90,224,229,229,101, 87, 4,203,108,181, 98, 96,247,102,104,222,164, + 30,250,141, 91, 12, 0, 56,185,113, 26, 92, 21, 66,252,190,121, 45,146,207, 46,217, 28,210,242,253, 99,247,238,222,127,227,126, +244,165, 55,123, 52,146, 54,240, 17,164,137,202,211, 43, 40, 40,216, 69, 8, 17,139, 68,162,238,109,219,182,117,219,181,107,151, +210,195,195,131, 19,139, 68,217,125,251,244,230,132, 34, 81, 94,241,182, 23, 47, 94, 20,142, 27, 55,206, 49, 63, 63, 63, 57, 51, + 51,243, 50,165,212, 82,241, 3, 96,120,103,240,240, 27, 8,113, 80, 72,101, 73, 45, 58, 15,243,107,210,188,153,115,255,129,131, + 33, 17, 75,112,252,216, 17, 44, 95,178,112,123, 65,250,195,119,170,114, 36, 95,197, 40, 66,149,202, 89, 27,247,224,118,126, 66, +150,201, 85,232, 18, 10,161,196,113, 28,113,246, 91,198,151, 40,102,121,214,239,239,180,115,255, 33,220,189,119, 15,110, 82, 11, +226,159,196,233,238,221,138,254, 89, 71,132,115,104,246, 3,157,189,233,148,229,218,222,104, 49,178,187,171,209,108,195,185, 83, +127, 24, 56, 43,215,253,242,217, 67, 79, 2,106, 55,113,136,108,210,201, 53,103,223,218,129, 0,126,175, 76, 39,245,225,127, 71, +108,131,194,154, 38,156, 60,117,194,217, 59,184, 46,159,128,192,108, 52, 32, 59,254,186, 85,151,249, 72,173, 74,189,107,215,168, +218,220, 20,124, 53,125,214,183, 19,154, 52,110, 44,167,112,120, 46, 98, 85,108,172,114,212, 38,120, 56,138,161, 87,103, 35,238, +250, 17,131, 46,155, 95,225,124,101, 86,147, 86,150,147,149, 89,210,148, 86,144, 25,211,188,162,237,115,178, 50,197, 86,147, 86, + 86,249,173,142, 15, 39,185, 24,119, 19,158,149,116,104,151, 8, 11,251, 94,137,133,252,146,126, 88,197,117, 65, 37,180, 23, 57, +184,224, 89,174, 1, 4, 20,156,205, 10,171,197, 4,141, 90,141,103,105, 25,200,204,200,132, 70,163,132, 76,225,138,200, 6, 77, +225, 40,119,192,237, 51,219, 65, 41,181,107, 94, 66, 11, 17,134, 53,105,222, 70,114, 47,177,176,175,149,131,144,226,192,111, 11, +115, 11,212, 89,109, 52,105,177,113, 85,173,139,173, 54,219,137, 59, 15,226,234, 6,248, 86, 39,183,158,168,176,121,205,143, 48, + 21, 69, 50, 45, 22, 27,238, 37,107,145,158,167, 67,114,252, 67,202,217,108, 39,240,154, 83,174,193, 18,137,133, 82, 39, 55, 63, +124, 61,124, 4,126,254,249, 23, 36,164, 60,195,242,175, 39,101,168, 53,217, 29, 52,105,113,177,118, 62, 5,118, 46,158, 43, 67, +155,241,104,209, 59, 63, 39,164,238,143,206,227,233, 77,180,194, 14, 60, 14,158,193,104,243,206,247, 71,245,154, 60,177,205,168, + 19, 28,216,252,206,111,101,105, 22, 58,102,152,230, 77, 25, 10,133, 84, 0, 66, 8,138,155, 5, 87,124, 61, 22, 50, 73, 97,219, +177,222,104,197,136, 73, 63, 96,243, 15,147, 65, 1, 12, 31,124, 65, 87, 94, 58, 75, 53,225, 5, 36, 37,102, 61,235,220,103,202, + 73,131, 89, 98,236, 61, 96,212,141,198,141, 27, 43,165, 82, 41,164, 82, 41,156,156,156,224,234,234, 10, 23, 23,151, 74,243, 94, +238, 36,162,165, 70, 11,242,120, 60,240,120, 60,200,229,114, 40, 20, 10,200,229,242, 10, 53,203, 53, 87,237,250,174,232,212,239, + 61, 28,223,189,154, 94, 63,119, 96,188, 46, 51,102,141,189,231,168,168, 89,231,246,192,129, 3,163,198,141, 27, 39,154, 53,117, +220,209, 63,142,157,137,221,113,112,117,159,252,124,101, 32,165, 20, 46,206,206, 41, 67,251,180, 60,208,161, 85,147,164,147, 39, + 79,114,191,253,246,155,145, 16,114,183,178,116,230,100,101,109, 60,121,226,212,236, 54,237,218, 99,237,134,223,218,221,127,240, +176,221,147, 39,113, 8, 12, 14, 65,245, 26,161,208, 17, 87,156, 58,123, 30, 5,202,172,141,246,164,243,133, 40, 22,201,207,207, +191, 52,116,232,208,174, 23, 46, 92,224, 13, 29, 58, 84,151,147,147,115,177,248,185,169,188,232, 85,105,205, 75,191,244,207, 6, +176,177, 90,251,209,219,159,153,149, 19, 1, 44, 12, 10, 14,194,153,243,151,113,249,194,213, 95,114,100, 65,115,222, 25, 49,122, +108,181,190,252,247,250,182,168,198,247,114,149, 97,235,234,239,249,251, 47, 39,254,144,152,107, 91, 11,224,107,123,206, 81,201, + 13, 67, 99, 70,171, 58,110,176,216, 40, 56, 90, 88,209, 58, 58, 8,203,172,112,203,210, 20,152, 36,239,140, 31, 55,238, 73,100, +189, 6,159,140, 24, 61, 94,212, 32, 36, 16,215, 30, 43, 1, 66,224,230, 35, 71,122,122, 58,206,237, 92,109,205,127,246,232, 23, + 62,159,155, 91,149,178,148,151, 24, 93,171,212,118, 99,115,114,114,112,230,204, 25, 20, 27, 43, 79, 79,207, 50, 13,214,139,154, +185,153,105, 23,191,254,110, 85,171, 49,111, 13, 64,239,246,117,113,246,250, 19,152,138,230, 91, 42, 30, 18,254,244,242, 74,241, +196,161, 33,166, 9, 3,107,171,245, 22,113,226, 87, 9,170,115,165, 71,185,190,168, 73, 41, 53, 17, 66,246,199,196,196,180,174, + 95,191,126,181, 67,135, 14,229,221,191,122,244,227,210,233,152, 50,101,138,226,231,159,127,150, 81, 74, 47, 26,141,198,120,187, +242,206,195,214,155, 55,110,184,155, 45, 28,206, 95,189, 93,167, 83,171, 6,224, 40,112,253,250,117,172,253,117,173,225,238,157, + 91,139,181,153, 62,115,203, 27, 32, 82,222,241,180,253,137, 81,132,197,154,148,158,177, 42,188,195,127,185,120,254,236, 12,137, + 95, 99,132,247,252,162,239,179,219,251,251,250, 68,116,131, 71, 72, 75,164,221,217,143,139, 71,183, 28,226,172,214,105, 14, 28, + 47, 73,155,253, 72,107,239,245, 94,140, 68, 42,251, 40,162, 81, 59, 36, 39, 37, 34, 33,238,222, 70,125,110, 92,154,194, 39,124, + 99, 90,106,210,248, 26,117, 91,225,194,209,223, 63, 46,207, 96, 85, 86,230, 3, 61,165,171, 15, 29,220, 63, 44, 53,117,165,143, + 86,111,144, 80, 74, 13, 18,177, 32, 67,193,211,108,179, 55,157,148, 62, 48,203,221,170, 15, 28, 60, 98,252, 31,203,151, 47, 17, +122,187,200,144,145,111,128, 90,111,134, 70,103, 6,143, 16,212,242,147, 67,167,201,195,217,157,223, 89, 76, 5,249, 67, 41,125, +108, 46, 79,179,112, 61, 65,250,225,148,247, 79, 67,236, 28,232, 87,163,211, 23, 21, 70,231, 52,105,119,250, 76,121,255, 64, 24, +165,180,147,194, 59, 92, 83,144,249,232,203,242,242, 78, 72,225,245,253,102,135, 64,152,173,133,243,135, 89, 57,192,198,113, 69, + 81, 61,128,150,180,219,147, 74,242, 78,184,109,127, 92, 68, 90,166, 18,122,147, 5, 70,147, 21,102,139, 13, 60, 62, 31, 46,174, + 46, 8,173,222, 16,206, 46, 78,200,204, 72,195,229,147,251, 17,123,231,236, 69, 66, 49, 71,151, 21,123,210,158,115, 36,146,186, +132,249,250,249,240,210,213, 38, 72,197,124,220, 58,123,200,108, 49, 25, 23,219, 99,174,202,210, 84,230,230,253,240,201,212, 79, +135,175, 95,183,193, 39,170,134, 19, 82,115,244, 72,205, 54, 64, 99,176, 20, 25, 48, 14,198,130, 28,220, 57,181, 33,195,102,208, +252,240,175, 53, 88,156,213,102,138,121, 28,143,105,115,190, 67,124, 98, 18,150, 47,248, 52,179,160, 10,230,170, 44,214, 77,168, +254,123,213,246, 40,154,146,100,110, 98,197,207,219, 47, 54, 11, 82, 14, 28,165, 56,112, 53,163,164, 89,144, 43,234, 81, 25,253, + 68, 89,165, 38,188, 59, 49,154, 45,122,125,166,243,163,199,139,243, 1,128,207,231,151,188,138,251, 74, 25, 12, 6,211,203, 52, + 11,190,216,161,157,227, 56, 56, 57, 57, 65, 42,149, 86,185,233, 81,238, 29, 54,172, 73,251,126, 63,117,234, 63, 6, 39,246,172, +161,215,207,238,127, 95,151, 21,179,186,202,125, 16,242,243,239, 19, 66,226, 22, 47, 94,220, 96,237,218,181, 53,166, 78,157, 26, +191,233,167,217,203, 1, 32, 55, 55, 23, 0, 16, 29, 29, 77,223,127,255,125,163,193, 96,120,154,159,159,127,147, 82, 90,105,211, +129, 62, 91, 54,127,237,138,133,145, 41,207,210, 7,132, 68, 54,133,103,141,166,240,169,213, 12,249, 26, 51,174, 61, 78, 67,252, +195,147,120,120,126,231, 33,157,194, 58,187,170,105,174, 95,191,126, 32,143,199,171, 94, 80, 80,224, 19, 17, 17, 81, 95, 46,151, + 71,215,175, 95,191,161, 64, 32, 72,189,113,227, 70, 98, 85,180, 18,207,172, 55, 86,107, 63,122, 89,146,198,177, 67,124,134,174, + 97,146,198, 49, 90, 39,113,158,156,117,114,169,209,187,235,226, 31,168, 57,231,254,142, 13,234, 93, 91, 87,127,207, 31, 49,118, +138,237,158,202,117,162, 64, 42, 62,190,224,237,168, 42, 52, 63,241,210, 39,140,234,247,159,105, 26,138, 34, 87, 69,239,237, 10, +199, 43,149,183, 85, 0, 62,151,250,213,253,233,222,196,113, 95,215,107,210,106,100,219, 30, 67,121, 86,145, 2, 71,247,172,164, + 79,239,156,218, 33,160,182, 25, 58, 59,102,239,175,180,217,199,100,170,212, 92,149, 25,121, 73,145,183,223,241,219,175,111,239, +218,179,123, 65,255,190,253,220, 87,124, 53, 4,223,173,218, 11,185, 84, 2,202,113, 24,218, 49,104,208,195,223,186,245, 9,244, +118,240,223,117, 58,245,220,135, 75,238,125,174,211,153, 99, 43, 27,229, 90,100,152,207, 59, 58, 58,102,183,110,221,186,185, 68, + 34, 33, 57, 57, 57, 2, 47, 47, 47,171,179,179,179, 41, 53, 53, 85,103, 52, 26,119, 81, 74,181, 85,201,167,217,194, 33, 33,211, +128,125,187,119,225,246,213,147,120,248, 48, 70,243,240,193,195, 31,137,128, 46, 41,200,136,205,123,153, 99,199,149, 57,138,144, + 86,121, 20,161,150, 47,157, 31,125,240,187,246,161, 29, 63,110,225, 94,179, 21, 92,131, 11,199,232,168, 82,239, 33,229,250,142, +125,154, 52,209, 96, 74,239, 89, 94,246, 28,251, 5,212, 8,165,124, 49, 46,157,249, 3,148,227,126, 1, 0,202,113,191, 68, 95, + 56, 52,190, 89,207,247,224,230, 85,173,126,241,216,249,170,106,139, 4, 60,237,225, 93,235,247, 36, 36, 36,224,209,163, 71,120, +252,248, 49,242,242,242,176,117,107, 66,149,206,143, 54, 47,225,184,194, 61,164,219, 27, 67,222, 60, 48,104,216, 91, 14, 53, 66, +163,120, 97, 1,174,112, 87, 8, 16,243, 56, 17,177, 55,238,112, 49,215, 14, 25,204,234,172,254,186,188,132,114, 13,159,220, 51, +194,155,240,232,180,226,181, 5, 91,180,104, 21,246,233,188, 5,205,221, 61,189,202,172,199,115,179,179,196,159,125,184, 63,236, +242,149, 75,118,173, 69,200,217,108,185, 99,223, 30,202,241, 11, 23,242, 68, 73, 92,154, 20,158,236,194,135,168,194,207, 41,103, +173, 52, 98, 63,122, 64, 27, 88, 57, 14, 90,189, 25,106,173, 17, 42,141, 1,233, 89,185,184,125,231, 14,206, 30,216,143, 39, 49, +183,159, 90, 76,166, 99, 60, 30,217,169,203,136, 57, 91,181,150, 37, 65, 13,119, 55, 55, 60,205, 43,128,131, 88,128,196,216, 27, + 70,173, 90,181,229,101,203,145, 46, 39, 54, 93,238, 29,214,117,232,208, 97, 71, 58,118,235,235,220,164,101,103,153,135,147, 11, + 68, 2,138,184,132, 52,220,188,120, 68, 27,127,251,156,218, 98, 42,232,254, 42, 86,105,249,199, 26, 44,181, 38,187,195,187,239, +140, 59,202, 19,240, 37,160,156, 65,167,203,239,254,103,204,213, 95, 5,165,182,212,183,135, 15,120,238, 89,192,202, 81,233,240, +193, 71,245,165,159, 13, 44, 54, 42, 27, 62,248,162,174,176,226, 40,191,195, 94, 73, 19,222,239,199, 83,147,146,114,175,231,229, + 25, 79,255,217,145,125,165,215, 22,172, 96,180,160, 54, 60, 60,188,196, 84,241,249,124,216,108, 54,187, 43, 32,145, 68, 58,166, + 99,223,119,201,137,189,107,232,181, 51,123, 39,232,178, 98, 87,189,252, 49,165,102, 0, 87, 9, 33,247,102,204,152,209,196,219, +219,219,123,230,204,153, 14,106,181, 90,184, 98,197, 10, 67, 78, 78, 78,134, 90,173,190, 76, 41,213,219,175,121,211, 2, 96,160, +194,187,118, 7,186,107, 77, 23, 23, 15,255,174,206,158, 1, 53,149,217,207,158,170,178,211,142, 1, 56, 81, 52,193, 99,149,104, +216,176, 97, 8,143,199, 27, 10, 32, 82, 46,151,215, 82, 40, 20, 18, 74,105, 56, 33,228, 62,199,113,119, 34, 34, 34, 14, 2,168, +210,249, 75, 60,179,222,216,118,194,175,191,229,233, 56,145,137, 39,250, 45,241,204,122, 35, 0,100, 30,155,170, 3,176,207,187, +195,180,129,251, 47, 39, 46,191,159,239,252,113,214,233,249,251,171,154,102,101,202,173, 90,175,170,252,235,211,238,167, 2,120, + 91,238, 29,246,253,221,232,203,179, 8,133,208, 6,235, 55,186,204,184, 27,175, 66, 95, 40, 20, 26,252,253,253,203, 28, 45, 40, +145, 72, 12, 21,159,243, 51, 86, 0,107, 9,105,191, 97,247,246, 13,111,239,221,191,111, 65,219, 78,253,221, 29, 2, 2, 80,221, +139, 96,195,180, 70, 31,159,140,206,190,214,247,211,115, 63,199,167, 25,238, 80, 74,171,212,223, 69,163,209,196, 18, 66,242, 11, + 10, 10,250, 81, 74, 83, 8, 33,129,249,249,249,183, 44, 22,203,221, 42, 27, 1, 14,111,182,104,209,116, 43, 33, 68, 64,173,220, +162,203, 66,254,111,134,244,135,169, 47, 99, 40, 74, 19, 85,221, 9,147,102, 46,107, 84,179, 86,237, 70,197,107, 17,214,173,230, +136,113,159,127,223,168, 90,141,208, 70,255, 89,159,176,226, 81,132, 52,237,166,158,120, 71,117,137, 57,182,248, 43,247, 39, 23, + 39, 72,221, 2, 20,218,156,196,188,252,196, 27,139,117, 89,222,139, 95,102, 98,201,210, 36, 60,190,191,100,237,226,207,167,166, + 63,123,186, 86,155, 21,123, 15, 0,180, 89,177,247,100,222,181,191,202,201, 72,157,154,155, 21,191,248,101,143,133, 86,171, 77, +219,178,101,139, 75,171, 86,173,120,222,222,222,200,206,206,198,233,211,167, 57,142,227,158, 85, 85,171, 32, 55,254, 52, 33, 53, +221, 54,174,250,105,145, 72,238,216,211,106,181,250, 81, 10, 8, 4,130,116,147, 78,125, 68,195,147,127, 74,243, 18, 42, 41,151, + 28, 1,192, 43, 94, 91,144,227, 56,178,104,249,134, 68,161,131, 99,153, 77,170, 22,131, 70,198,113,156,221,107, 17,230, 39,221, +168,249,170,174,111, 66,233,156,250,141,155,127, 97,177,152, 13, 40,236, 15,102, 0, 96,160, 20,185, 60, 30, 57,203,231, 44, 71, + 85,127,226, 33,138, 16, 56, 81, 34,128,163, 84, 0, 2,130, 2, 85, 30,173, 74,159,171, 50,207,119,102,204,125, 66,218, 7, 31, + 54,109, 31,117,234,248,161,193, 54,155,173,122, 81,201, 73, 48,234,181, 59, 10,210, 93, 55, 82,122,221,138,127, 1,228, 79,214, + 31, 85, 14, 33,254,175,107,134,135,200,250, 5,248,123,143, 74, 72,204,186, 22,159,162,219, 88,122,249,155, 63,171,153,146,146, +125, 58, 54, 81,187,166,244,242, 55,175, 42,239,114,175,176,174, 14,114,249,231, 6,189,118,147, 54, 35,102,195,171, 60,158,132, + 16,103,137, 68,210, 80,161, 80, 8,115,114,114,174, 82, 74, 85,255, 75,231,189, 65,131, 6, 65, 60, 30,175, 58,199,113,222, 0, +156, 81, 56,202, 35, 71, 32, 16, 60,187,113,227, 70,162, 61, 77,132, 47,210,230,157,157, 30,157,186,212,157,116,236, 92,204,210, +162,230,195, 18, 2, 6, 47,113, 24,217,179,195,148,141,187,247,253,215, 40,194,127, 98,153,255,255,210, 36,164,189, 64,225,155, +243, 54, 79,236,252, 77,167, 48,131, 46, 39,237,217,251,231,239,102, 95,165,148,106,254, 76, 58,197, 98,241, 8,179,217, 44, 21, +137, 68,122,147,201,180,229,127, 37,239, 50,239,240,119,121,160,118,175, 36,193,129,220, 40, 61, 24,165,188,116,146,136, 8,145, + 44, 27,174,186, 28,143,220,170, 26,171,191,231,188, 19,126, 84, 84, 84, 27,145, 72, 20,100,179,217,100, 38,147, 73,167,215,235, + 19, 18, 19, 19, 47,149,183, 32,249, 95,157, 78,133,119,237, 37, 34,145,100, 34, 0,152,205,198,101, 5,153,177,147, 42,218,183, +188,237,255,233,215,166,103,141, 38,113, 2,190,208, 19, 69, 19,106,115, 86,107,118, 70,252,181,208,191, 43,157,175, 29,180,104, +121,132,191,226, 5,160, 51,211,100,154, 76,147,105,150,177, 45,143, 29, 79,166,249,119,106, 58,248,214, 9,116,240,173, 19,104, +239,254,101,109,207,142, 39, 5,123,149,255, 18, 48,139,201, 96, 48,254,134, 7, 59,142, 29, 5,198,223,137, 62,237, 65,202, 95, +185, 61,131, 65, 80,184, 42,117, 89, 21,160,221,161, 63, 66, 72,231,151,168, 96, 79, 48, 77,166,201, 52,153, 38,211,100,154, 76, +243,223,165, 89,153,246,107,211,244,200,154, 8,153, 38,211,100,154, 76,147,105, 50, 77,166,201,154, 8, 95,237,139, 7, 6,131, +193, 96, 48, 24, 12,198, 43,133, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, + 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,131,241,242, 16, 74, 41,138,150,152, 34, 0,158,123,207, 96, 48, 24, 12, 6,131, +241,255, 98, 72, 94, 51, 47, 82, 98,176, 0,128, 82, 74,152,193, 98, 48, 24, 12, 6,131,241,119, 24,172,215,201,139, 60, 23,193, + 42,157, 57,118,170, 25, 12, 6,131,193, 96,252,127, 26,172,215,201,139,176, 38, 66, 6,131,193, 96, 48, 24,255, 51, 6,235,117, +241, 34,204, 96, 49, 24, 12, 6,131,193, 96, 6,235,175, 48, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, + 48,152,193, 98, 48, 24, 12, 6,131,193,248,183,240,151, 78, 52, 74, 8,233,204, 52,153, 38,211,100,154, 76,147,105, 50, 77,166, +201, 12, 22,131,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, + 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,241, 55, 65, 0,148, 57, 18,128, 82,122,194,110,145,151, 24, 77, + 80,153, 62,211,100,154, 76,147,105, 50, 77,166,201, 52, 95, 63,205,202,180,171,226, 63,254,167,161,148,254,101, 47, 0,157,153, + 38,211,100,154, 76,147,105, 50, 77,166,201, 52,255,109, 47,214, 68,200, 96, 48, 24, 12, 6,131,241,138, 97, 6,139,193, 96, 48, + 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, +188, 60,164,104, 52, 0, 8, 33,148, 82, 74,216, 33, 97, 48, 24, 12, 6,131,241,183,152,146,215,200,139, 16, 74,105, 73,134,152, +201, 98, 48, 24, 12, 6,131,241,119,154,171,215,197,139, 48,131,197, 96, 48, 24, 12, 6,131, 25, 44,102,176, 24, 12, 6,131,193, + 96, 48,131,245, 15, 48, 88,165, 51,198, 78, 49,131,193, 96, 48, 24,140,191,211,100,189, 22,121, 41, 54, 88, 12, 6,131,193, 96, + 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193,248, 55,240,151, 78, 52, 74, 8,233,204, 52, +153, 38,211,100,154, 76,147,105, 50, 77,166,201, 12, 22,131,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102, +176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,241, 55, 65, 0,148, + 57, 18,128, 82,122,194,110,145,151, 24, 77, 80,153, 62,211,100,154, 76,147,105, 50, 77,166,201, 52, 95, 63,205,202,180,171,226, + 63,254,167,161,148,254,101, 47, 0,157,153, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,255,109, 47,214, 68,200, 96, 48, 24, + 12, 6,131,241,138, 97, 6,139,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, + 48,152,193, 98, 48, 24, 12, 6,131,193, 96,188, 60,132, 82, 10, 66, 8, 45,250,191, 61,165,244, 44, 59, 44, 12, 6,131,193, 96, + 48,254, 95, 13,201,107,230, 69, 74, 12, 22,165,148, 20,255,101,167,153,193, 96, 48, 24, 12,198,255,183,193,122,157,188, 8,239, + 5,231,216,158,157, 98, 6,131,193, 96, 48, 24,127,151,201,122, 93,188,200,115, 17, 44,118,106, 25, 12, 6,131,193, 96,252, 93, +230,234,117,242, 34,204, 96, 49, 24, 12, 6,131,193, 96, 6,235,175, 48, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6, +131,193, 96, 48,152,193, 98, 48, 24, 12, 6,131,193,248,183,240,151, 78, 52, 74, 8,233,204, 52,153, 38,211,100,154, 76,147,105, + 50, 77,166,201, 12, 22,131,193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48, +152,193, 98, 48, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,241, 55, 65, 0,148, 57, 18,128, 82,122,194,110,145, +151, 24, 77, 80,153, 62,211,100,154, 76,147,105, 50, 77,166,201, 52, 95, 63,205,202,180,171,226, 63,254,167,161,148,254,101, 47, + 0,157,153, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,255,109, 47,214, 68,200, 96, 48, 24, 12, 6,131,241,138, 97, 6,139, +193, 96, 48, 24, 12, 6,131, 25, 44, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, 6, +131,193, 96,188, 60,164,104, 52, 0, 8, 33,148, 82, 74,216, 33, 97, 48, 24, 12, 6,131,241,183,152,146,215,200,139, 16, 74,105, + 73,134,152,201, 98, 48, 24, 12, 6,131,241,119,154,171,215,197,139, 48,131,197, 96, 48, 24, 12, 6,131, 25, 44,102,176, 24, 12, + 6,131,193, 96, 48,131,245, 15, 48, 88,165, 51,198, 78, 49,131,193, 96, 48, 24,140,191,211,100,189, 22,121, 41, 54, 88,204,100, + 49, 24, 12, 6,131,193, 96, 38,235, 47, 48, 88, 12, 6,131,193, 96, 48, 24, 12,102,176, 24, 12, 6,131,193, 96, 48,254,231,248, + 75, 39, 26, 37,132,116,102,154, 76,147,105, 50, 77,166,201, 52,153, 38,211,100, 6,139,193, 96, 48, 24, 12, 6,131,193, 12, 22, +131,193, 96, 48, 24, 12, 6, 51, 88, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96, 48,152,193, 98, 48, 24, 12, + 6,131,193,248,155, 32, 0,202, 28, 9, 64, 41, 61, 97,183,200, 75,140, 38,168, 76,159,105, 50, 77,166,201, 52,153, 38,211,100, +154,175,159,102,101,218, 85,241, 31,255,211, 80, 74,255,178, 23,128,206, 76,147,105, 50, 77,166,201, 52,153, 38,211,100,154,255, +182, 23,107, 34,100, 48, 24, 12, 6,131,193,120,197, 8,202,250, 80,216,108, 94,166,213,106,245, 2, 0,129, 64,144,101,185,246, +165,111, 69, 34, 66,160,147, 21, 88, 83, 36, 56,198, 66,233,241, 50, 52,143, 91,173, 86,215, 34,205,124,203,181, 47,187, 85,168, +217,244,155,163,207,109,127,117, 70,151, 50,226,139,124, 97,211,111,210, 94, 72,171, 95, 21,194,119,182,255,143,116,254, 83, 52, +255,205,136,154,207,203,180, 88, 10,203,145, 80, 40,200, 50, 95,173,184, 28,137,154,125,147,246,220,246, 87,102,120, 87,164, 41, +147, 74,114,107,250,123,254, 80,145,102,124, 90,206,100,173,206,224, 94,145,102, 85,175,205, 64, 95,223, 78,182,162,107,147, 15, +140, 73, 73, 75, 59,254,191, 84,150, 8, 33,141, 1,124, 9,192,169,212,199,119, 40,165,159,176, 82,201, 96, 48, 94, 59,131,101, +181, 90,189,110,238,153, 5,173, 17,232,244,214, 55, 94, 33,253, 87,109,253,175,109, 12,249, 98,229,253,109, 81,124,139,218,213, + 83, 96,118, 74, 75, 75, 35, 69, 21,230, 26, 0, 65,101,104,186,222,220, 51, 11, 58, 19,208,118,216, 28,215, 32,192, 41, 91, 36, +154, 34,149,203, 59,232,245,250,186, 0, 32,149, 74,239,235,181,218,211,158,102,243,247, 47,110, 95, 94, 6, 74,167,181,227,200, +111,188,194,251,175,250,216,198,113,226,103,215, 87,182, 53,228,196, 9,132, 86,227,138, 47,128,195,179, 0,155, 61, 7,228,185, +223, 29, 60,221, 93, 8,116, 20, 59, 56,212,119,113,117,109,195, 81, 90,135,227, 56, 98,179, 90, 31,168, 85,170,243,156,213,122, +219,106,210,186,223,220,191,128,171, 40,157, 47,230,101, 48, 32,216, 3, 12,146, 43, 20, 29,248, 66, 97, 75, 0,176, 89, 44,151, +180, 5, 5,167, 7, 0, 59,237,201,187,189,199,231,101,183,255,183, 97,177, 88,189,158, 30,157, 5,163, 5,104,248,198, 2,175, +122,111,110,220, 10, 0,166,172,219,222, 5,113,251,155, 1,128,188,102,239,171, 18,159,134,153, 0, 32, 72, 74,247,138, 61, 56, + 3, 70, 11, 80,167,247, 28,175,202, 52, 71,207,220,238,254,217,216,129, 18, 0, 56,182,235,167,218,167,118,255,210, 3, 0, 58, + 14,124,255,112,215, 55, 62,140, 5,128, 69,171,119,187,255,190, 96, 72,133,154,246, 93,155, 42,145, 42,238, 96, 45,147, 58,221, + 37, 80, 46,240,137,139,139,227, 1,128,159,159,159, 93,215,102, 0,224,156, 14,124,192,227,243,219,212,172, 85,171, 33, 0, 26, +255,228, 73,180,205,106,189,224, 11,172,120,197,101,233, 99, 74,105,159, 23, 76, 23, 43,144, 12, 6,227,245, 52, 88, 0,160, 53, + 2,103, 31, 3,237,154,215,195,216, 55,123, 42, 74,127,183,115,213,156,160,184,235,251,194,127,221,248, 61,175, 94,189,122,120, +250,244,169, 93, 63,166, 51, 1,103,226, 0, 40, 31, 58,230,203,229, 79,150,124,247,157, 83,151, 46, 93, 4,126,126,126, 32,132, + 32, 35, 35,163,249,137, 19, 39, 26, 79,154, 52,105, 60,148, 15,243,117, 38,104,206,196, 85,174, 91,156,214,186,181,171,225,203, + 15,135, 56, 3,192, 23,111,173,104,124, 61, 38,211,237,201,147, 39,157, 62,255,252,243, 92,254,233,211,191,120, 0,235, 51,129, + 20,123,210,185,233,192, 85, 7,231,244,223, 66, 70,124,248,225,174, 90,181,106, 41,130,131,131,137,163,163, 35,248,124, 62,242, +243,243,131,238,221,187,215,227,218,181,107,218, 19,103,215,136,111, 92,235, 27,159,229,208,204, 96, 87,222,245,105, 14,199, 28, + 29,239,143, 28, 48, 32, 96,200,144, 33, 14, 53,107,214, 4, 0, 60,121,242, 36,116,231,206,157,195,118,237,218, 53, 19,250, 52, +171,206, 4, 67,101,121, 47,209, 4,224, 0,180,116,241,242, 26,193, 23, 10,235, 90,173, 86,255,162,232,194, 51,155,197,114, 95, +153,149,181,229,197,237, 25,255,141,209, 2, 60, 76, 7, 58,183,105,136,145, 3, 59,203, 1,224,243,161,243,154, 39, 37, 60, 22, +153, 76, 38,212, 14,171,211,234,235, 5, 63, 28, 5,143,135,205,187, 79,148,108,111,143,230,157,135, 79, 49,235,235, 37, 72,187, +187,179,185, 77,245,184,131, 70,173,226, 3,128,147,179,243,192,157,219,126, 59,237, 23, 53,232,202,227, 28,179, 93,154, 21, 93, +155, 71,182,253,232,155,122,239,116,196,207,199,214, 9,131,130,130,112,247,238,221,170, 93,155,170, 24, 71,206,215,247,193,247, +159,126,234,211,182,109, 91, 40, 20, 10, 8, 4, 2, 88,173,214,206, 23, 46, 92,232, 60,107,214,172,247,161,138,209,218,123,109, +218,193,247,132,144, 14,163,199,126,236,219,179,223, 32, 12,236,222,138, 21, 68, 6,131,241,250, 26, 44,129, 64,144,213,101,212, +124,175, 54,205, 34,113,253,118,172, 42, 49, 57,189,160,248,187,188,251, 59,107,247,107,229, 31,113,238,220, 89, 24,141, 70, 92, +186,116, 9,183,111,223, 70, 66, 66, 2,198,141, 27,103, 20, 0, 99,202,209,204,111, 59,108,142, 43, 84,113,138, 80,113, 76,245, + 19,143, 30,241, 13, 6, 3,206,157, 59,135,252,252,124,136,197, 98, 4, 4, 4,160,107,215,174,130, 71,143, 30,185,117,234,210, +221,185,109,247,225, 79,225, 28, 90, 32, 16, 8,242,203,205,128, 64,144,213,233,173,111,188, 34, 66,171,225, 73, 98,154,234,203, + 5,191, 22,112, 28, 21,196, 39, 36,153,207,158, 61,139,134, 13, 27,226,248,241,227,238,121,121,121, 95,173, 88,177,226, 75,225, +183, 63, 47,179,152,114,167, 86,160,151,223,118,216, 28, 87,247,172, 29,193,167,142,236, 21,221,191,127, 95,180,114,229, 74,228, +230,230, 66, 44, 22,195,197,197, 5, 62, 62, 62,168, 93,187, 54,249,226,139, 47, 20,189,123,223,199, 71, 99, 6, 5,155, 67,222, +139, 41, 47,157, 37,121, 47, 72,146,121,168,143,213,220,253,199, 31,188,214,173, 91, 63,247,152, 94,163, 70, 13,116,235,214,205, + 97,196,136, 17, 53,135, 12,123,147,107,219,107,244, 19, 40,130,117,149,106,106, 83,164,238,186,203,126,157,135, 13,219, 63,103, +206, 28, 23, 31, 31, 31,200,229,114, 0,128, 74,165, 10, 72, 76, 76,108, 62,115,230,204, 55,174,222,217, 38,104,219, 59, 37, 13, +242, 64,125, 69,199,243,223,138, 80, 40,200, 42,142, 26, 57,202,165,249, 41,169,153, 90, 0, 48,153, 76, 48,153, 76, 48, 26,141, +152,240,254, 56,254,152, 55,154,214, 10,110,243,241,173,132,103,153,121,117, 78, 92,113, 43,222,183, 50, 77,129, 46, 65,169, 76, + 62, 57,102,214,167,159,250,120,123,255,167,229,111,243,166, 77,252,188,188,188,206,179,102,205,138,160,178,246,202, 58,189,231, +184, 84,164, 89,209,181,169,140,253,163,250,215, 31,118,171,191,106,193, 65,216,108, 54, 92,190,124, 25,231,206,157,195, 15, 63, +252, 64, 15, 31, 62,172,114,146,203, 43,185, 54, 99, 28, 91,251,102,132,124,251,237, 46, 34,145, 72,176,111,223, 62, 60,122,244, + 8, 60, 30, 15,245,234,213,195,200,145, 35,209,185,115,103,159,177, 99,199,209,182,221,135,198,195, 57, 76,243,103,202, 18, 33, +132, 7,224,227,233,179,190,245,125,235,189, 15,176,232,235, 47,152,193, 98, 48, 24,175, 15, 69,163, 1,104,209,171, 29,165, 20, + 20,224,213,232,191,234,247, 29, 55,184, 63,106,244, 95,245, 59, 5,120, 20,224, 57, 1,213, 26, 52,104, 96, 81, 42,149,244,218, +181,107,116,194,132, 9,218,101,203,150,157,254,227,143, 63,118, 90,205,230,181,126,190,190,139, 41,192, 43,179, 71, 61,192, 11, + 6,156,101, 50, 89,118,114,114, 50, 61,116,232, 16,157, 61,123, 54,221,178,101, 11, 61,124,248, 48, 61,113,226, 4, 61,124,248, + 48,253,253,247,223,233,157, 59,119,104,108,108, 44,149,203,229,217,193,128,115, 5,154,124, 10,240,107,247, 95, 57,117,215,117, +203,156,176,254,171, 38, 81,128,239, 10,132, 55,104,208,192,182,115,231, 78,186,121,243,102,186,113,227, 70,122,231,206, 29,154, +147,147, 67, 5, 18,121,118,241,126,229,165,147, 2, 60,127,127,255,108,165, 82, 73, 3, 3, 3,169, 88, 44,166,222,222,222,180, +118,237,218,180,121,243,230,180, 71,143, 30,244,205, 55,223,164, 95,125,245, 21, 85, 42,149,212,193,193, 33,179,120,191,242, 52, + 27, 2, 82,185, 92,158,124,243,230, 77, 90, 30,122,189,158,230,228,228,208,163, 71,143, 82,185, 92,158,220, 16,144, 86,164, 41, + 5, 26, 69, 69, 69,101,231,228,228, 80,179,217, 76,147,147,147,233,189,123,247,232,163, 71,143,104,114,114, 50,213,235,245, 37, +218,177,177,177, 52, 36, 36, 36, 91, 10, 52, 42, 87,243,223,252, 42, 46, 19, 47,188,130,188,189,123,248,248,248,232,119,237,218, + 69,159, 61,123, 70, 55,108,216, 64,121,192,188,255,218,182, 2, 77, 49,208,181,117,235,214,182,203,151, 47,211, 91,183,110,209, +105,211,166,209,110,221,186,209,238,221,187,211, 89,179,102,209,212,212, 84,154,154,154, 74,123,244,232, 97, 19, 3, 93, 43, 43, +159,101, 93,155,206, 64, 80,239,222,189,245,102,179,153,198,199,199,211,186,117,235,166,242,129, 17,114, 32,162, 29, 32,169,172, +124,250, 3,174,190,190,190,233,151, 47, 95,166,187,119,239,166,193,193,193,217,124, 96,180, 19, 80,195, 9,168,193, 7, 70,215, +168, 81, 35,251,242,229,203, 52, 55, 55,151, 6, 5, 5,165,251, 3,174, 47, 91,150, 80, 56, 7,223,186,233,179,190,165, 49,169, + 90, 58,125,214,183, 20, 64, 50, 45,252,242, 56, 43,147,236,197, 94,255,190,215,127,121,145,127,248, 75, 80,202,104, 17, 66, 8, + 69,225,220, 88,101,162,231,243,231, 47, 90,180, 72, 96, 48, 24,240,235,175,191,106,134, 15, 29,186,219,197,197,197, 42, 20, 10, + 65,120,149, 15, 72,204,150, 72, 38,126,183,104,145,139,201,100,194,141, 27, 55,208,184,113, 99, 72, 36, 18,136, 68, 34, 8,133, + 66, 8,133, 66,248,250,250, 34, 43, 43, 11,117,235,214,197,103,159,125,230,188,112,254,252,137, 48, 26,191,174, 72,151,227,168, + 0, 0,108, 28, 39, 22, 1, 99,235, 55,105,178,248,139, 47,190,224, 57, 57, 57,193, 96, 48,192,104, 52,226,209,163, 71,112,119, +119,135, 76, 42, 19,192,168,173, 52,173, 60, 30,143,167, 80, 40,112,234,212, 41,172, 94,189, 26, 9, 9, 9, 72, 79, 79,135,163, +163, 35,234,214,173,139, 58,117,234,160, 93,187,118,136,143,143, 7,177,163,211,200, 3,129,224,131, 9, 99,198,120, 53,108,216, +176,204,239, 13, 6, 3,148, 74, 37, 84, 42, 21, 2, 2, 2, 48,104,208, 32,175,223, 54,111,254, 0, 86,235,247,101,109,239, 14, +248, 4,132,134,238,191,118,237,154, 7,165, 20,155, 55,111, 70, 65, 65, 1, 76, 38, 19,120, 60, 30, 28, 28, 28,224,234,234,138, +142, 29, 59,194,211,211, 19,161,161,161,216,190,125,187, 71,143, 30, 61, 14,186,103,101, 53,202, 5,210,216,227, 69,229, 36,101, +102, 30,235, 10,120,140,120,243,205,195,183,239,220,105, 51, 98,196, 8,100,102,102,126, 33,156, 54, 77,105, 1,150, 84,182,127, + 24,224,236,230,235,187,254,219,111,191,229,101,100,100, 96,202,148, 41, 57,105, 73, 73,211,156,129,243, 0,112,242,200,145, 54, + 91,182,108, 89,184,121,243,102,143, 77,155, 54,241, 26, 54,108,184, 62, 44, 57,185,110, 12,160,170, 74, 58, 53,192,199, 75,151, + 46,117, 48, 24, 12,232,210,165, 75,188, 67, 66, 66,125, 43,160,183,119,255,116,224,131, 31, 62,251,204, 71, 34,145, 96,202,148, + 41, 57,186,164,164, 72, 43,144, 93,106,147, 68,207,167, 79,143,188,245,214, 91,247,238,220,185,227,177,100,201, 18,159, 55, 6, + 12,248, 0,192,188, 42, 68,172, 74,119,104, 15, 29, 61,246, 99,239,134, 77, 91, 96,211,218, 21, 88, 48,231,243,245, 0, 86, 17, + 66, 62, 4,240, 29, 43,121, 12,198,191, 54,232, 83,169, 23,249,199, 53, 17, 22,101,168,125, 69, 27,187,186,187, 55,142,140,140, +196,185,115,231, 16, 21, 21,117,205,197,197,197, 42,146, 72, 32, 20, 10, 65, 57,174,210, 31,147,202,229,157, 58,119,238, 44,184, +114,229, 10, 66, 66, 66, 32,149, 74, 75,140, 85,241, 75, 36, 18,193,215,215, 23,106,181, 26,157, 58,117, 18, 46, 95,190,188, 83, +101, 6, 11, 0,146,226,238, 41,178,175,124,251,230,154, 13,235,107,180,109,219, 22, 42,149, 26, 28,199, 65, 38,147,193,100, 50, + 65, 32, 16, 20, 54,245, 88,168,218,158, 3, 99,179,217,108,124, 62, 31, 33, 33, 33,152, 63,127, 62, 12, 6, 3, 68, 34, 17, 0, + 64,173, 86, 67,169, 84,226,222,189,123, 72, 76, 76, 68,209, 83,119,133, 56, 58, 59,247, 28, 50,100,136,184,172,239,140, 70, 35, + 84, 42, 21, 84, 42, 21,148, 74, 37, 12, 6, 3, 90,180,104, 33,254,227,224,193,158,200,205, 45,211, 96, 25, 29, 28,222,216,180, +105,147,151, 88, 44,134, 94,175,135, 70,163, 65, 74, 74, 10,146,146,146, 12, 89, 89, 89, 86, 71, 71, 71, 94,112,112, 48, 79, 34, +145, 72,250,247,239, 79,212,106, 53, 8, 33,232,221,187,183,251,214,205,155,135, 0,248,129, 93,202,246,113, 12, 48, 54, 50,153, +250, 52,107,218,244,212,181,235,215, 27, 78,156, 56, 17,119,238,220,249, 86,182,109,219, 89, 29,112,187,162,125,227,129, 15, 22, +151, 50, 46, 52, 41, 41,202,252,130,113, 9, 46, 52, 46,119,139,141,203,224, 42, 26,151,162,242,213,196,215,215, 23,135, 15, 31, + 70,114, 66,194,231, 85, 49, 87, 0,192,227,243, 91,183,109,219, 22,251,246,237, 67,106, 82,210,231, 47,152,171,194, 7, 36, 32, + 91, 16, 31,255,249,250,245,235,215,189,243,206, 59,224, 11, 4,173, 97,181, 86,229,103,254,171, 67,251, 59,227, 38, 98,253,234, +229,235, 1,188, 71, 41,229, 0, 92, 99, 37,142,193,248,247, 98,143, 23,249,167,192, 43,237, 26, 1,156,169,104, 99, 47, 47, 47, +127,133, 66,129,180,180, 52,212, 9, 15,207,146, 72, 36, 16, 11,133,112, 16,139,237,250, 49,157, 78, 23,229,231,231, 7,149, 74, + 5, 15, 15, 15,136, 68,162,146,151, 88, 44, 46,121,239,232,232, 8, 30,143,135,160,160, 32,232,116,186,168, 74,117, 51,239,121, +109, 91,254,254,132,203,103, 15,215, 24, 48, 96, 32, 92, 93,221, 16, 24, 24, 0, 47, 47, 47, 72,165, 82, 4, 6, 6,162,102,205, +154,244,251,239,191,135,204,171,158, 93, 21,120,105,211, 36, 16, 8, 96,179,217,144,153,153,137,152,152, 24,220,185,115, 7,151, + 47, 95,198,173, 91,183,160,209,104, 96,135,191,130, 78,175,175, 47, 16, 8,202, 52, 87, 74,165,178, 36,122,165, 84, 42,145,157, +157,141,196,196, 68, 20,104,181, 13, 42, 48,187, 3, 35, 35, 35,249, 0, 32,149, 74,209,160, 65, 3,172, 90,181,202,122, 96,239, +222,161, 17,151, 47,187, 5, 30, 61,234,178,102,229,202,161,131, 6, 13,178, 93,185,114, 5,106,181, 26, 15, 31, 62,132,167,167, +167, 64,236,224, 48,132, 93,198, 85,227, 38,160,245,208,104,186,183,108,217,242,169, 74,165,194,119,223,125,199, 19, 58, 58,174, +158, 3,240, 43,220,145,207,111,213,182,109, 91,236,223,191, 31,105, 73, 73,211,146,202, 48, 46, 73, 64,118,114,124,252,180,245, +235,215,163,107,215,174, 32, 2, 65,149, 59, 34, 53,111,222, 60,146,227, 56,220,189,123, 23, 46,192,213,170,238, 95,179, 86,173, +134, 10,133, 2,143, 30, 61,130,188, 40,186, 86, 22,114,224,124,116,116, 52,164, 82, 41,234, 68, 68, 52,170,226,207,124, 79, 8, + 73,127,103,220, 68,236, 62,114, 17, 0,176,126,245,242,204, 82,230,138,193, 96,176, 8, 86,165, 94,228, 31,103,176,236,204, 56, + 0, 64, 40, 20, 66, 44,145, 64, 44, 22, 23, 26, 35,137,164, 42,238, 20, 14, 14, 14, 37,134,170,180,177, 42,253, 94, 38,147,217, +101, 92, 0, 32,255,241,145, 54,239,189,251,142, 88, 34,145,192,100, 50,130, 82, 10,137,196, 1, 46, 46, 46, 8, 9, 9,129, 90, +173, 70,203, 86,237,140, 41, 74,209, 65,247, 58,253,239,188,204,129,178, 90,173,208,106,181,200,207,207, 71, 94, 94, 30,212,106, + 53,244,122,189,221, 67,202, 57,142,227,167,164,164,224,183,223,126, 67,110,110, 46,128,194, 14,212,197,166,170,248,239,211,167, + 79,177,121,243,102, 36, 36, 36, 84,233,252,180,105,211, 6, 7, 15, 30,228,183,239,212,105,237,241,224,224,180,227,193,193,105, +237, 59,117, 90,187,127,255,126,190,191,191, 63, 18, 19, 19,113,227,198, 13,228,231,231, 23, 23, 96, 70, 21,121, 2,228,235,242, +242,222,249,226,139, 47,168, 66,161,192,119,139, 23,215,159, 7, 12,183,215,184, 56, 87, 96, 92,156,255,156,113, 1,165, 20, 28, +199,193,102,179,189, 84,222, 8, 33, 68, 40, 20, 86,117,138, 4, 82, 5,253,146, 14,237,159,125, 53, 31,135,246,237, 44,254, 42, +142,153, 43, 6,131,241, 58, 34, 40,229, 24, 43,189,241,102,102,102, 62,211,106,181, 53,130,131,131,145,154,154,234, 21, 20, 20, +148, 36, 22, 10, 33, 18,139,237,234,131, 37,147,201,238,166,165,165,181,242,247,247,135,213,106, 45, 49, 83, 47, 54, 17, 22, 71, +101,110,221,186, 5,153, 76,118, 23,134, 10,103, 64,128,205,148, 95,173, 81,163, 70, 37,145, 32, 23, 23, 23,184,184, 56, 67, 34, +113,192,140, 25, 51,184, 37,223,127,191, 34,168,227, 28,213,219,147,190,160, 95,204, 91,251, 74, 15,160,189, 55, 36,153, 76,118, + 55, 48, 48,176,133,179,179, 51,118,239,222,141,196,196, 68,228,231,231, 67,167,211,193,104, 52, 66,167,211,193,100, 50,193,193, +193, 1, 17, 17, 17,112,114,114,194,137, 19, 39,238,194,104, 44,219, 84,230,230,238,190,123,247,110,139,166, 77,155,150, 68, 80, + 58,116,232, 64, 58,116,232,224, 81, 18, 53,211,233,144,147,147,131,107,215,174,225,196,137, 19, 32,132, 32, 46, 46,206,102,212, +235,127,103, 69,255,229, 48, 0,151,248,235,215,175, 27, 63,126,252,187,173, 90,181,130, 13,232, 1, 96,243,223,101, 92,138,185, +124,249,242, 61,155,205,214,170,118,237,218, 80, 2,205, 0,236,171,146,121,124,252, 56,218,106,181,118,170, 95,191, 62,118,239, +216,209, 6, 64, 98, 89,219,105,129, 54, 13, 27, 54,132, 94,175,199,195, 7, 15,110, 86,193, 92,173,157, 62,235,219,209,111,189, +247, 1, 54,173, 93,129,245,171,151,167,172, 91,181, 44, 16,128,153,149, 42, 6,131, 81, 21, 47,242, 90, 70,176, 84,249,249, 55, +163,163,163,209,168, 81, 35, 60,121,242,164, 41,229, 56,129, 72, 44,134, 88, 36, 2,207,142, 27,136, 94,171, 61,121,242,228, 73, +107,131, 6, 13, 80, 80, 80, 0,129, 64,240, 92,244, 74, 44, 22, 67, 40, 20, 66, 32, 16, 64, 38,147, 97,207,158, 61,102,189, 86, +123,178,210,232,144,141,179,241,120,188,146,155,152, 82,169,132, 78,167,199,252,249,243,241,227,247,223,191,105, 3, 38, 9,229, +158,250,191,243, 64, 27,116,186, 83,135, 14, 29,178,212,168, 81, 3,163, 71,143,198,164, 73,147, 48,105,210, 36,140, 31, 63, 30, +163, 71,143,198,200,145, 35, 49, 96,192, 0, 52,107,214, 12,158,158,158,136,137,137,177, 24,116,186, 83,229,233, 73, 12,134, 93, +163, 70,141,202, 42, 54,102, 90,173, 22, 26,141, 6, 42,149, 10,217,217,217,184,120,241, 34, 54,109,218,132,239,191,255, 30,123, +246,236,129,209,104,132,217,108,198,173, 91,183,242,229, 22,203, 14,118, 41,191, 60, 66, 96,247,133, 11, 23,224,230,230, 6,191, +128,128,118,118, 24, 23,212,175, 95, 31, 42,160, 77,185,215,214, 75, 24,151,231,140,143, 70,115,253,233,211,167,104,223,190, 61, +124, 3, 2,190,141, 0,164, 85,217,223,102,181,158,191,112,225, 2,222,122,235, 45, 4,215,168,241,173, 39,224,249,226, 54,158, +128,103,245,154, 53,191, 29, 61,122, 52,142, 29, 59, 6,155,213,122,190, 2, 83,213,152, 16,178,159, 16,114, 22, 64,226,232,177, + 31,143,126,161, 67,251, 96, 66,200, 22, 0, 83, 89,137, 98, 48, 24,175, 35, 85, 50, 88, 82,155,109,250,212,169, 83, 45, 60, 30, + 15, 3, 7, 14,116,220,183,127,255,160, 91,183,111,135,100,101,101,185,216,108,182, 74,181, 60,141,198,101, 83,167, 78, 85,154, + 76, 38,132,133,133, 33, 47, 47, 15, 54,155, 13, 2,129, 0, 2,129, 0,132, 16,240,120, 60, 40, 20, 10, 68, 71, 71, 99,221,186, +117,106, 79,163,113, 89,165, 55, 7,155,237,238,230,205,155,193,231,243,169,131,131, 3, 8, 33, 16, 8, 4, 88,178,100, 73,214, +143,192,110, 0,224,243,120, 38, 0,224,241,136,189,189,114, 43,109,159, 20,139,197,224, 10, 59,247, 87,186,173,171,209,184,116, +209,162, 69,154,135, 15, 31, 66,171,213,150, 68,219, 10, 10, 10, 74, 58,205, 43,149, 74, 16, 66,160,213,106,177,127,255,126,141, +171,209,184,180, 60,189, 92, 32, 35, 53, 46,174,111,211,166, 77,115,159, 62,125, 10,149, 74,133,187,119,239,226,196,137, 19,216, +190,125, 59,142, 29, 59,134,199,143, 31,195,106,181,194,223,223, 31,148, 82,236,221,187, 87,101,213,104,122,228, 2, 25,172,232, +151, 79, 53, 31,159, 78,222, 94, 94,201,158, 30, 30,169,213,124,124, 58,189,248,189, 51, 16, 27, 27, 27, 11,171,213,138,144,144, + 16,183,138,250, 97, 81,171,245, 66,177,113, 9,172, 81, 99, 97,112, 25,198, 37, 24,240, 12,174, 89,115, 97,177,113,161, 86,235, +133,170,166,217, 17, 88,254,233,167,159,234, 69, 34, 17,182,109,219, 22, 98,169, 85,235,145, 0, 24,174, 0,194,219, 3,162,202, +246,247, 5, 86,124,245,213, 87, 25,132, 16,108,217,178,197,195,185,102,205,123, 2, 96,148, 51, 80,205, 25,168, 38, 0, 70, 57, +215,172,121,111,219,182,109, 30, 86,171, 21,147, 38, 77,202,240, 5, 86, 84, 32,249, 49,165,180, 15,165,180, 45,165, 52,112,221, +170,101, 56,180,111,103,177,185,122,143, 82,122,141, 82, 58,146, 82,122,143,149, 56, 6,131,241, 58, 66,202,234,231, 36,108, 54, + 47, 19,160, 94,237,154,215,195,245,219, 49, 42, 15, 87,167,163,197,223,229,221,223, 89,187, 99,148, 83,189,159,127,254, 25, 66, +161, 16, 41, 41, 41,120,240,224, 1,156,156,156,240,230,155,111, 26,245, 26, 77,223,226,181, 8, 9, 33,157, 41,165, 39,138, 52, + 11,215, 59, 83,197, 41,106, 10,238,212, 56,114,232, 32,223,217,217, 25, 5, 5, 5, 37,211, 10,200,100, 50, 72,165, 82,220,184, +113, 3,189,250,244,179,101,203,218,150, 76, 52, 90,188,222, 89,105, 77, 16,194, 7,128,102,128, 44, 26,152,226,229,231, 55,245, +203, 47,191,148,118,235,214, 13, 34,145, 8, 1,213, 66, 51, 66,186,127,183,156,199, 35,214,212, 92,245,140,154,213,252,156, 31, +196, 37, 2, 32,133,107, 22, 22,173, 69, 88, 86, 58,131, 76,103, 67,246,108,252,222,169, 65,131, 6, 37, 81,177,204,204, 76,100, +101,101, 65,169, 84, 66,171, 45,156,234,225,224,193,131, 56,116,238,145, 90, 31, 48, 40,190,188,116,254, 39,239, 49,142,126,230, +171,213,183,110,222,200,247,244,244, 68,102,102, 38,178,179,179,161, 84, 42,161,215,235, 97,179,217,144,151,151,135, 95,215,111, +180,229, 42,218, 38, 20, 79,228, 88,161,166, 54, 69,234, 86,112,209,191, 97, 68, 48,125,247,221,119, 29,157,156,156,192,113, 28, +242,243,243,145,156,156,140,167, 79,159,226,220,185,115,218, 44,165, 9, 90,143, 46,169,197, 19,141,150,121, 60, 95, 85,161,250, + 39,106, 22,149, 37, 0,240,243,245, 77, 75, 74, 74,242,178,217,108,240,247,247,183, 42,243,242, 22,138,129, 99,142, 64, 58, 0, +154, 3,124,185,116,249,242,119,250,245,235,135, 38, 77,154,164,100,100,102, 86, 47,171, 44,129, 16,126, 24,224,172, 11, 8,184, +127,237,218, 53,159,228,228,100,188,245,214, 91, 57, 73, 79,158,148, 76,211,160, 2,218, 4,215,172,185,112,219,182,109, 30, 53, +106,212, 64, 84, 84, 84,134, 67,241, 52, 13,101,151,207,114,175, 77,101,236, 31,213,223, 31, 16,217,100,194,132, 9,176, 90,173, + 56,119,238, 28,174, 94,189,138,164,164, 36, 92,188,120, 81,233, 36,151, 15, 45, 94,139,176,188,242,217, 35, 84, 27,178,101,203, +102, 34, 18,137,176,126,253,122, 68, 71, 71, 3, 0, 26, 54,108,136,209,163, 71,195,106,181, 98,196,136,145,244,143, 24,105,124, + 69,229,147, 16, 18, 9, 96, 49, 10,205, 93, 19, 74,169, 3, 33, 36, 13, 64, 96, 85,250, 92,177,242,201, 52,153,230,191, 71,243, +117,163,210,181, 8,191,249, 5,206,207, 47,199, 49, 38,109,231,170, 57,130,214,109,218,134,207,153, 61,139,215,180,105, 83, 4, + 6, 6,162, 97,195,134, 72, 78, 78,150,184,184,184, 84,182,222, 89, 65,219,238,195,159,214,171, 87,207,101,218,180,105,206, 93, +187,118, 21, 6, 6, 6,130, 82,138,232,232,104,236,222,189,219,188,118,237, 90,181,206,187,143,242,230,233,223, 10,236, 89,239, +236, 42,160, 3, 48, 55, 32, 45,109,245, 7,239,191, 63,171, 65,163, 70,239,206,158, 61,155,167,144, 73,133,243,103,188,231, 0, + 0,223,252,180,221,185,223,160, 55,177,180, 22,208,110,120,217,235,188,149, 78,103,114,234,152,164,158, 3, 58,213,154,242,225, + 59,182, 33, 67,134,200,157,156,156, 16, 24, 24, 8, 87, 87, 87,196,199,199, 35, 53, 53,149, 30, 56,112,160,224,242,173, 88,225, +222, 99,215,147, 28,156,125,237, 89, 55, 80,211,182,219,224,132,158, 61,123,186,142, 26, 53,202,177,113,227,198, 66,137, 68, 2, +137, 68,130,204,204, 76, 60,126,252,216,124,224,192,129, 2,157, 87,143,252,155,167,183,105,236, 92,139, 80,223,118,216,156,199, +231,143,207,158,116,255,238,221,145, 28, 80,223,108, 54,251,219,108, 54,194,227,241,210, 57,142,187,107,214,104,214, 25, 27,206, + 94,194,214, 34,180, 15,155,205, 38,178,217,108, 80, 42,149, 56,126,252,184,224,201,147, 39, 95,222,190,125,251,203,180,180, 52, + 88, 44, 22,188,241,198, 27,104,216,176, 33, 78,159, 62,141,236,204,204, 3, 21,105,197, 0, 42, 73,106,234,232, 49, 99,198, 28, +222,188,121, 51,239,246,237,219, 30,235,215,175,255,181, 44,227, 50,114,228, 72, 46, 51, 57,121,180,177,130, 57,176, 42,185, 54, +115,142,108,251,241,118,255,129,131, 34,102,207,252, 82,216,178,101, 75,120,120,120,160, 77,155, 54, 48,155,205, 46,117,234,212, +169,236,218,212,180,237, 62, 52,190,126,253,250,242, 37, 75,150,248,188,243,206, 59,248,240,195, 15, 1, 0,122,189, 30,199,142, + 29,195,164, 73,147, 50,146, 5,205,180,149,149,207,162,200, 84,177,241, 58, 11,160, 45,128,120,214,161,157,193, 96,252,171, 13, + 22,240,159,245,206,206, 95,189,135,210,203,113, 20,226,251,192, 26, 52,234,201,184,169, 11,163,248, 22,181,171,144, 24,156,226, + 98, 99, 73,101,107, 18,150,172,119,230, 28, 90,224,254,244,247,166,243,191,249,102,226,210,165, 75, 59, 21, 79,197, 32,147,201, +238,234,181,218,147,158, 70,227, 50,157,115,232,201,170,174,157,151, 10,100, 2,120,223,245,230,205,229,189,251,189,177,200,193, + 45, 68,248,197,188,181, 6, 62,143,103,122,156,150,141,165,181, 0,185, 29, 3, 30,117, 38,224,190,210,215,154,233, 62, 40,230, +171, 79, 63,157,242,205,220,185, 77, 21, 10, 69, 59,179,213, 26,202,113, 28,192,113,113, 58,173,246, 44, 53,155,175, 25, 27,206, +252,222,193,217,151,218,189,110,160, 75, 29,141, 91,194,206,166, 27,214,173,251,120,199,142, 29,255,149,119,119,163,113,185,206, +165,206, 9,123,242, 94,122, 27, 3,112, 9, 89, 89,151,202,125,218, 0, 91,139,208,238,139,130,227,198,186,186,186,110,234,212, +169,147, 67,231,206,157,209,171, 87, 47,180,108,217, 18, 28,199,129, 82, 10,141, 70,131,237,219,183, 99,209,162, 69,113,213,129, +185,149,233, 25,129,147,146, 67,135,122,212,175, 95,127,125, 69,198,165,200, 92, 85,218,231,176,226,107, 83, 18,103,117,238,155, + 56,236,131,249,181, 76,234,116, 23,119,153,213,231,254,189,187, 60,251,175,205, 48,141, 45,122,123,179, 55, 6, 12,248,128, 47, + 16,180, 41, 26,209, 72, 31, 62,120,112,179,120,177,103, 52, 28,125,188,138,101,169,120,238, 57,214,161,157,193, 96,252,187, 13, +150, 64, 32,200, 42,142,242, 8, 4,130,172,248,189,227,222,172, 72, 68, 8,116, 42,138, 92,161,210,181, 8,139,222, 39, 2, 26, + 24,141, 95, 63, 55,137,104,169,209,130,194, 23,182,175, 74,166,242,129, 24, 88,141,189,145,245, 0,216,255,126,161, 94,211,111, + 62, 47,157,167,114, 15,200,115,191, 43,202, 51, 0,231, 81, 80,112, 30, 5, 5,101,206, 46, 45, 20,136,242, 42, 75,231,139,121, + 79, 6,212,127, 54,239,130, 42, 30, 31,193,159, 56,158,255, 54,158,229,228,236, 5,160, 8, 56,120,208,251,200,193,131, 67,166, + 76,158,252,134,175,159, 95, 77, 15, 15, 15, 87, 71, 71, 71,222,149, 43, 87,158, 90, 13,134,229, 13,128, 13, 69,209,211, 74, 49, + 2, 39,195,146,147,235, 14, 30, 48,224, 3, 34, 16,180, 46,109, 92,168,213,122, 49, 4, 88, 97,180, 99,246,246,170, 94,155,129, + 18,223, 78, 69,145, 43,240,237,188, 54, 83, 11,211, 49, 15, 86,235, 60,220,185, 83, 70,153,175,114, 89,250,134, 16,162, 1,155, +161,157,193, 96,252,155,248,139,215, 21,234,204, 52,153,230,235,162, 89,232, 81,224,196,142, 39,211,100,154, 76,147,105,190,122, +205,215,237, 37, 96, 22,147,193,176,251, 97,196,134,255, 52,119, 49, 24, 12, 6,131, 81, 46, 4, 64,231,114,110, 38,118,143, 14, + 32,132,116,126,137,155,213, 9,166,201, 52,153, 38,211,100,154, 76,147,105,254,187, 52, 43,211,126,109, 70, 39,178, 38, 66,166, +201, 52,153, 38,211,100,154, 76,147,105,178, 38,194, 87,251,226,129,193, 96, 48, 24,152, 51,135,240, 0, 66,128, 57, 60, 96, 39, + 31, 24,204, 47,252,255,229, 25, 60,152,148, 57, 9,237,199, 31, 19, 71,118,196, 25,140,215, 27,214, 7,235,111,132, 16, 18,228, +227,227,179, 10, 0,201,200,200, 24, 75, 41, 77,102, 71,229,127, 15,119,119,247, 78, 86,171, 21, 42,149,234,228,235,152,191,186, +181,200, 0,202, 67,157,255,132,181,145,252, 32,142,110, 42,107,219,136, 80,242, 22,200,127,230,210, 34, 28, 30,222,127, 76,247, + 84,161,204,243,250,247,240, 92, 12, 0,123, 15,103, 79,253, 43,230,197, 34,132,212,246,244,244, 60, 42, 16, 8, 4, 54,155,237, +253,204,204,204,131,229, 27,160,193,124, 0,240,148,238,158,238,226,230, 49,237,171, 41, 68,104, 50,126,167, 52, 26, 12, 42,158, + 64,144, 32, 22,201, 46, 88,121,242,195,169,153, 61, 30,148,181,255,142, 29, 59,202, 93, 93, 59, 50,148,244, 8,143,136,232,211, + 40, 74, 26,191,120, 89,211,165,237, 66, 60,132, 79, 83,110, 41,126,217,148,188,202,211,213,191,207,196,247, 4, 7, 37,212, 54, +242,219, 95,105, 1,187,202,236,103, 1, 33,110,102, 32, 74, 40,145, 4,218,172, 86,111, 2, 80,190, 64,144,105, 49, 26, 83, 68, +192,157,105,148, 42, 95,119, 77,145, 68, 18, 96,179, 90,189, 1,224,127, 49,157,140, 74, 12,150,163,163,227, 13, 30,143, 23, 80, +122,145, 90, 94,209,130,206,197,159,149,254,142, 16, 2,155,205,150,154,151,151,215,184, 10, 21,161, 19,128, 33, 0,138,135,154, +111, 5,176,157, 82,170,126,201,138,213, 73, 36, 18, 77,149,203,229, 29,245,122,125, 93, 0,144, 74,165,247,181, 90,237, 41,179, +217,188,248,101,116, 9, 33, 2, 0,131, 21, 10, 69, 7, 30,143,215,129, 82, 74, 40,165,167, 11, 10, 10, 78, 1,216, 65, 41,181, +190,132,166,212,203,203,107, 94,120,120,248,240,233,211,167,231,186,187,187,135, 77,154, 52,233,186,167,167,231,111, 57, 57, 57, + 51, 40,165,250,255,133,194, 65, 8,169,233,227,227,179, 85, 40, 20,242, 83, 82, 82, 58, 0, 64, 96, 96,224,105,147,201,100,203, +202,202,122,147, 82,250,164,138,122,114, 0,205, 21, 10, 69, 99,133, 66,209,214,102,179,213,225, 56, 14, 28,199, 61, 44, 40, 40, + 56,103, 54,155,111, 0,184, 66, 41,213,254, 15,153, 96, 71, 47, 47,175,205,132, 16, 16, 66, 66, 41,165,154,215,173, 18,160, 60, +212,121,112,255, 81, 88,137,137,170, 27, 94,193, 1, 65, 80, 25,219,218,109,176,122,118,114,233,222,167, 79,125, 30, 0,152,205, +215,187, 3, 56,244,170,205,213,192,129, 3, 47,109,222,188,217,213,104, 52, 98,236,216,177, 91,157,157,157, 87,168, 84,170,233, + 21,237,231,232,232, 56,105,238,215, 63,201,138,234, 52, 47,142,227,188,210,211, 83, 66, 99, 30,221,237, 30, 19,115,111,190, 89, +187,231,138,153,242,199, 41,117,125, 31,217,147,142,136,154,164,119,191,193, 3,122,205,157, 59, 27,195,135, 14,175,118,255,190, + 65,234,239, 20, 47, 86,155,229,181, 60, 60, 2,250,126,254,197,183,228,202,229, 51,125,119,108, 95,123,234,243,119, 73, 71,102, +178,236, 58,183,228, 27,129,160,185,107,120,120,219,161,123,247, 66, 17, 24, 40, 16, 72, 36, 60, 0,176, 26,141,129, 5, 41, 41, +190,219,250,246,109, 54,135,144, 51,179, 40,189,202, 52,255,255, 53, 25,118, 26, 44, 30,143, 23,240,236,217, 51, 47,185, 92, 94, + 88, 9, 83, 10,155,205, 6,155,205,134,162,155, 34, 40,165, 37,127,173, 86, 43,194,195,195,237,122,130, 5,208, 17,192,219,237, +219,183, 31,180,120,241, 98, 97, 84, 84, 84,241,210, 30,109,190,248,226,139,159, 8, 33,187, 0,108, 0,112,210,222, 39, 92, 66, + 72, 55,185, 92,190,229,187,239,190,115,234,210,165,139,192,207,207, 15,132, 16,100,100,100, 52, 63,113,226, 68,227, 73,147, 38, +189, 79, 8, 25, 65, 41, 61, 90,133, 11, 58,210,209,209,113,231,128, 1, 3, 2,218,181,107,231, 16, 17, 17, 1,155,205,134, 91, +183,110,189,115,227,198,141, 97,187,118,237,154, 69, 8, 25,100,239,122,106,132, 16,162, 80, 40, 70,249,251,251,207,155, 57,115, +166,219,136, 17, 35,196,247,238,221,203, 15, 9, 9, 33, 23, 46, 92,240,220,190,125,251,251, 11, 23, 46, 28,236,232,232, 56,163, +160,160, 96, 35, 45,107, 29,163, 23,112,114,114,186,193,227,241, 2,236, 49,192, 0,236, 54,193,132,144, 6,213,171, 87,223,126, +254,252,249,234,137,137,137,182,254,253,251,111, 2,128, 83,167, 78, 69, 89, 44, 22,210,181,107,215,195,132,144, 33,148,210, 91, +118,230,189,158,155,155,219,190,225,195,135,187,213,172, 89, 83, 86,189,122,117, 34,151,203,193,231,243,161, 82,169,252,238,221, +187,215,249,234,213,171,250, 19, 39, 78,228, 17, 66,250, 82, 74,239, 84,225, 60,181,244,242,242, 26, 41, 20, 10, 35,173, 86,171, + 63, 0, 8, 4,130,103, 22,139,229, 94, 86, 86,214,102, 74,233,165,151,189, 64,188,189,189,127,156, 55,111,158, 71, 86, 86, 22, + 93,184,112,225,143, 0, 70,189,174,149,193,214,223,118,224,198,245,171, 0, 32, 34,132,144, 23,203, 31, 33,132,212, 9,133,232, +147, 79, 38,163,113,147,102,120,115,248,224, 74, 53,251,247,242,152, 43,230, 11,220,117, 38,227,213, 28, 21,111, 95,144,151,120, +192,136,193,141,227, 1,224,200,225,187, 3,154, 53,115,187,224,225,204,245,147,137, 37,205, 76, 54,107,238,222, 63,114,102, 86, +197, 76,249,251,251, 31,117,117,117,149,229,229,229,101,100,103,103,255, 50,112,224,192,111, 54,108,216,224,250,244,233, 83,164, +164,164, 96,226,196,137,138,212,212,212, 15, 36, 18,201,101,163,209, 88,110, 36, 75,163,209, 44,155,247,245,228,153,142, 78,174, +124,153, 84, 14,133,163, 19,170, 87, 15, 69,147,166,109,208,185, 75, 95,196,199,199, 52,223,254,251,218,104,126,250,206, 5, 54, +113,195,111,148,202,234,229,214, 75,117,195, 72,187, 98,115, 53,115,230,108,196, 62,122,164, 73, 76,224,125,244,199, 94,129,172, + 71,167,112,137,201, 92,144,120,229,242,153,234,205, 91,180, 7,128,198, 59,182,175, 61, 53,103, 4,233, 52,107,203,235,103,222, + 95,165,185,154, 43, 20,142,234,182,100,137, 87,195,247,223, 23, 21, 36, 36,152,227, 87,174,212,101,158, 59,103, 19, 72, 36, 52, +176,123,119,226,217,161,131,195,251, 15, 31,138, 46, 46, 92,216,118,190, 88, 28,242,133,201,180,133,105,254,255,105, 50,170, 96, +176, 8, 33,144,203,229,216,182,109, 27,132, 66, 33, 4, 2, 1,132, 66, 97,185,239,131,130,130,236,185, 72, 6,250,248,248,252, +180, 98,197, 10,239,110,221,186,193,193,193,161,228, 59, 62,159,143, 46, 93,186,160,115,231,206,194,180,180,180, 97,219,182,109, + 27, 54,127,254,252, 76, 66,200,135,148,210,221,149,232,118, 8, 11, 11,219,125,236,216, 49,169,193, 96,192,185,115,231,144,159, +159, 15,177, 88,140,128,128, 0,116,237,218, 85,240,232,209, 35,183, 46, 93,186,236, 38,132,244,166,148,158,182, 35,173,141,189, +188,188,206,238,216,177,195,161,126,253,250,228,241,227,199,104,216,176, 33, 0, 64,165, 82,161,127,255,254, 14, 35, 70,140,168, + 57,108,216,176, 43,132,144,118,148,210, 27,149,232, 53,242,241,241,217, 56, 96,192, 0,191,249,243,231, 59, 57, 58, 58, 34, 49, + 49, 49,221,199,199, 39,180,248,120, 15, 27, 54, 76,220,167, 79, 31,223, 69,139, 22, 45,219,185,115,231,167,132,144, 81,148,210, +155, 21,233, 22, 27, 97,153, 76,134,204,204, 76,108,221,186, 21, 31,124,240, 1,248,124, 62,178,178,178,176,125,251,118,124,244, +209, 71,197, 70,198, 46, 19, 44,151,203, 59,215,175, 95,255,215, 83,167, 78, 5,184,184,184,192,207,207,143,247,213, 87, 95, 69, +134,132,132, 72,171, 85,171,198, 79, 79, 79,199,238,221,187, 67, 70,142, 28,185,207,193,193,225, 29,131,193, 80,105,211,153,183, +183,247,186, 63,254,248, 35,232,254,253,251, 88,185,114, 37,242,242,242, 32, 22,139,225,226,226, 2, 31, 31, 31,132,134,134,146, +105,211,166,201,250,244,233, 35,251,240,195, 15,215, 1,104, 96,199, 57,170,239,229,229,181,106,216,176, 97, 33,115,230,204,113, +241,241,241, 65,241, 3,129, 74,165, 10, 72, 76, 76,108, 62,115,230,204, 65,222,222,222, 79,179,178,178,198, 81, 74,111, 87,177, + 82,111,208,169, 83,167,222,253,251,247,231,167,167,167, 99,243,230,205,189, 9, 33, 13,236, 53,149,255, 52,110, 92,191,138,177, + 19, 38, 22,248, 5, 6,138, 14,236,255,189, 95, 65,193,234, 11, 10,158,139, 0, 0, 10, 56,165,181, 85,115, 69,235, 62,125,135, +137,122,246,234, 95,176,250,231,101, 10,123, 12,150,152, 47,112,223,182,101,124,202,185,139,113,117,142,158, 72,236,220,191,111, +103,158, 64, 20, 86, 19, 0,166, 76, 30, 35,222,187,255,196,138,110,157,171,165,183,109, 21,154, 50,116,196,202,192,170,152,171, +218,181,107,159,137,142,142,246,150, 72, 36,200,203,203,115, 95,189,122,245, 15,173, 91,183,230,197,199,199,227,209,163, 71, 72, + 72, 72,128, 74,165, 66,151, 46, 93, 20, 55,111,222,252, 5, 64,185, 6, 43, 91, 63,112, 94,136, 87,206,114,127,119,215,234, 6, +179,202,203,102,205,141, 56,117,226,118,189, 93, 59,116, 13,189,124, 2, 66,135, 13, 27,139,207,167,127, 43,220,179,107,227,204, +179,231,142, 1,168, 94,254, 12,254, 20, 45,191,152, 49, 29,106,141, 17, 35,134,143,193,200,225, 99,220, 41, 76,190,212,102,144, +155,244,249, 46,206,162,251, 7, 55,254,190, 99, 0,128,128, 82, 38,235, 36, 51, 89,229, 51, 87, 32,104,214,251,167,159, 60, 35, +223,123, 79,114,123,206, 28,109,206,185,115,250, 90, 61,123,230, 55, 28, 63,222, 8, 0,154,132, 4, 81,236,172, 89, 50,207,182, +109,165, 45,166, 78,117,181,153, 76, 62, 95, 19,210,244, 43, 74,175, 85, 85, 51,104,200, 16,219,204,245,235,155,156,155, 60,185, + 61,177, 88,248,221, 91,180,184,181,112,243,230,103,127, 70,243, 85,166, 51,237,236, 89, 99, 94, 72, 8, 26,246,239,159, 27,228, +229,101,124,149,121,255, 51,233,100,148, 81, 79, 81, 74, 65, 8,105, 7,224, 12,128, 57,148,210,217, 0,224,226,226,146,169, 84, + 42,189,118,239,222, 93,169,185, 18, 10,133,240,245,245, 69,104,104,104, 86,102,102,166,119, 5,149, 98, 10,199,113, 1,148,210, +146,104, 75,121, 24,141, 70,196,197,197,161, 94,189,122,169,148,210,192,138,154,112,100, 50, 89,252,163, 71,143, 60, 30, 60,120, +128, 27, 55,110, 32, 36, 36, 4,174,174,174, 16, 10,133,176, 88, 44, 80,171,213, 8, 11, 11,131, 68, 34, 65,163, 70,141,114,180, + 90,109, 72, 69, 77, 61,132, 16,137, 92, 46,143, 59,123,246,108, 96,195,134, 13,113,237,218, 53, 4, 6, 6,194,199,199, 7, 0, +144,144,144,128, 11, 23, 46,160,103,207,158,136,142,142,198, 27,111,188,145,162,213,106, 67, 41,165,198,242, 52,221,221,221,211, + 79,157, 58,149, 26, 21, 21,101,208,106,181,188,204,204, 76,225,185,115,231,172, 26,141, 70,161, 82,169,132, 74,165, 82,168, 86, +171, 5, 90,173, 86,200,227,241, 68,122,189, 94,120,242,228, 73,190,201,100,114,170,232, 56, 21,159,167,253,251,247, 35, 42, 42, + 10,187,119,239,198,148, 41, 83,112,241,226, 69, 4, 6, 6, 98,199,142, 29,152, 58,117, 42, 98, 98, 98,224,225,225,129,136,136, +136, 10,207, 17, 0,212,170, 85,235,241,221,187,119,107,138, 68,162,226,117, 23,139,215,179, 67,118,118, 54,158, 60,121,130,103, +207,158,161, 86,173, 90, 24, 62,124,248,147,212,212,212, 90,149, 21,180,128,128,128,236,251,247,239,123,212,171, 87, 15,153,153, +153,112,113,113,129,179,179, 51, 92, 92, 92, 74,222,135,132,132, 96,242,228,201,240,241,241,201,210,235,245,222,149,153,159,168, +168,168,163, 39, 79,158,244,112,114,114, 66, 70, 70, 6,212,106, 53, 4, 2, 1,100, 50, 25, 60, 60, 60, 74, 12,124, 92, 92, 28, +122,245,234,149, 19, 31, 31,223,173, 10, 17, 55,158,183,183,247,163, 59,119,238,132, 82, 74,145,156,156,140,152,152, 24, 76,152, + 48, 33,206, 96, 48,132,191, 78,107,234,149,234, 87, 37, 26, 53,122,172,168,127,223,126,186, 91, 55,142,112, 82,156, 69,211, 6, + 82, 37, 0, 92,187,165,119,209,163, 29, 26, 52,238,206,219,187,127,159,108,227,134,213, 66,112,240, 6, 65,204,131, 88,250,117, +121,218,189,187,185,188, 53,117, 98,247, 58,109, 91,181, 21,168,213,212,231,215, 77,107,154, 38, 61,141,247, 6,128,224, 26, 33, +153,239,190, 53,230,154,147, 19,201, 56,119,241,156,117,241,178, 35, 15, 15, 30, 85,110,178,227,220,132,132,134,134, 94,222,191, +127,191,135,151,151, 23,156,157,157,161,213,106, 97, 54,155,241,224,193, 3,195,182,109,219, 44, 78, 78, 78,142, 25, 25, 25, 80, + 42,149, 32,132, 96,255,254,253,201,148,210,224, 23,181,138,251, 96, 1,192,132, 30,117,132, 17, 29, 67, 93, 69, 18,171, 84, 42, +140,245, 5,177, 73, 8, 85,120,159, 58,117,185,222,233,179,231,223,236,217,123,168,103,139, 22, 29,240,237,252,207, 45,201, 25, +153, 13,149,186,190,143,202,234,131, 85, 39,148,116,236,255,198,128,193,115,231,206,198,236,153,115,112,112,255, 94,149, 66,206, + 51, 58,185, 8,157,219, 54,111,101,152,252, 65,191, 20, 93, 65,106,224, 15, 43,214, 12,239,210,109,112, 64,243, 22,237,113,229, +242, 25,236,216,190,246,134,200,102, 97,205,133, 47, 48,135, 16, 87,151,144,144,113, 31,199,197,137,110,207,158, 93, 96, 77, 75, +203,111, 60,105, 82, 78, 89,219,166, 30, 63, 46, 23,251,249, 57,185,246,237,235,182, 44, 56,152, 90,178,178, 86,149,213,135,168, + 44,205, 19, 10,133,203,239,135, 15,119,162, 66, 97,187,207, 62,255, 92,218,187,119,111,168,213,106,236,218,181, 11,171, 86,174, + 52,250,250,250,222,245,187,119, 47, 58, 82,173,254,210, 94,205,198,147, 38,229,216,108, 54, 50,120,234,212, 46,247, 19, 18, 58, +102,100,101, 85, 3, 0, 95, 55,183,148,198, 33, 33, 55,214, 29, 60, 24,243, 99,245,234,156,189,233, 92,115,228,136,247,206,196, +196,247,220,220,220,164,153, 89, 89, 2,137, 88,156,219, 60, 34, 98,199,207, 51,102,156,177,222,185, 35,114, 8, 8,112,114,238, +221,187,202,121,111, 60,105, 82, 78,158, 70, 35,248,248,155,111, 90, 37,101,102, 86, 43, 48, 26,107, 41, 53, 26, 31,155,197,194, +115,146,201,114,107,132,133,101,233,207,157, 75,175,161,211, 77, 92, 67,105,214, 95, 24,169,252, 47, 47,242, 58, 68,176,206, 80, + 74,255,107,180, 12,165,212,174,232,149, 80, 40,124,174, 57,170, 2, 68,132, 16,220,188,121, 19,238,238,238,240,241,241,129, 68, +242,252,226,128,217,217,217,184,120,241, 34, 30, 62,124,136,250,245,235, 3,128,168, 34, 65,137, 68,242,201,162, 69,139, 92, 76, + 38, 19,110,220,184,129,198,141, 27, 67, 34,145, 64, 36, 18, 61,103,254,178,178,178, 80,183,110, 93,124,246,217,103,206,243,231, +207,255, 4, 21,172, 33, 39, 16, 8, 62, 28, 51,102,140, 87,113,196, 42, 37, 37, 5,141, 26, 53, 42,249,222,211,211, 19,183,110, +221, 66,227,198,141, 17, 16, 16,128, 65,131, 6,121,109,222,188,249, 67, 0,139,203,125,146, 23,139,121, 81, 81, 81, 77,138, 34, + 68,224,241,120,177, 78, 78, 78,158,222,222,222,114, 39, 39,167,255,202,227,250,245,235,149, 60, 30,207, 82,217, 1,229,241,120, +200,200,200, 64,100,100, 36, 84, 42, 21, 0, 64,171,213,162, 86,173, 90, 80,171,213, 37,102,213,207,207, 15,122,125,197, 93,187, +234,215,175, 63, 59, 60, 60,188,107,251,246,237, 37, 66,161, 16,183,111,223, 70,195,134, 13,177,109,219, 54, 4, 5, 5, 65, 38, +147, 33, 46, 46, 14, 81, 81, 81, 56,123,246, 44, 60, 61, 61, 81,183,110, 93, 73,163, 70,141,206,231,229,229,157, 78, 76, 76,156, + 93, 65, 58,121, 10,133, 2,103,207,158,197,186,117,235,144,144,144,128,180,180, 52, 56, 58, 58,162, 65,131, 6,136,136,136, 64, +203,150, 45, 17, 23, 23, 7, 82, 73, 97, 34,132,248,132,134,134, 30,188,118,237,154, 7,165, 20,155, 55,111, 70, 65, 65, 1, 76, + 38, 19,120, 60, 30, 28, 28, 28,224,234,234,138,142, 29, 59,194,211,211, 19,161,161,161,216,190,125,187, 71,143, 30, 61, 14, 21, + 69,160, 50, 42, 59,174,174,174,174, 19,103,205,154, 21,232,229,229,133,196,196, 68,168, 84, 42,120,123,123,163,125,251,246,254, + 39, 78,156,152, 8, 96,201,235,114, 3, 43,238,208, 78, 8, 33, 7,246,255,222, 47,200, 87, 92,167,105, 67, 77,240,221,155,130, +154,135, 78, 60,174, 87,120, 60,130,239, 52,109,164,121,114,237,198,145,164, 3,251,127,191,250, 48, 22,251,236,105,194,206, 81, +241,246, 29, 61,145,216,185, 94,221, 54,252,229, 43,102,245, 27,251,110, 55,137,155,107, 27,162,206,218,142,139, 87,239, 6,127, + 53,123,154,215,215,179, 23, 30, 56,122, 34,209,150,163,226,205,179, 39,189,117,235,248,254,120,102,175,151, 71,129,249,103,220, +186,234, 12, 8, 91,160, 70, 72,109,168,213,106, 56, 56, 56, 56, 12, 31, 62,220, 54,125,250,116,157,147,147,147,140, 16,130,211, +167, 79,103, 1,232, 86,153,174,193,203,149,218,204, 22, 43, 21,243, 57, 74, 28,245,196,150, 39,190,247,224, 41,218,181,235,145, +217,164,113,195,249, 11,191, 91,242, 69, 72, 72,152,231,240, 17,227,132,139, 23,127,185, 18, 64,155,178,116, 30,198,209, 83, 17, + 53,137, 20, 64,175,185, 95,207, 70,124,124,156,235,216,183,149,115, 4, 18,169, 95,120,112, 43,199,149,235, 78,119,175, 85,171, +122,181,177,163,223,249, 99,245,250,117,189, 74, 71,178,126,255,109,245, 62, 66, 72, 39,123,142,237,191,136,122, 35, 15, 30, 68, + 65,114,178, 37,239,252,121, 67,167,159,126,202, 9,236,214,109,137,201,108,246, 40,174, 42,120,132,128, 20,119,145,224, 56, 34, +248,236, 51, 30, 21, 8, 96,113,117,125,123, 26, 80,187, 50,205, 41,233,233, 3,223,124,239,189, 94,251,142, 28, 65,245,234,213, + 75,238,103, 46, 46, 46,152, 58,117, 42, 38, 77,154, 36,185,117,235, 86,211,157, 59,119, 54, 93,252,221,119,222,211,128,129,246, +164,243,216,149, 43,174,227,231,206,157, 81,191,113,227,160, 77, 91,183, 74,106,214,172, 9, 0,120,242,228, 73,232,183, 11, 23, + 6, 71, 70, 69,101,206,255,228,147, 13,247,167, 79,175, 11,224,124, 69,154, 25,231,206,153,118, 38, 38,190,119,234,244,105,151, +200,200, 72, 0, 64, 76, 76,140,215,178,101,203,198,212, 29, 52,104,196,220,247,223,255,178,183,193,160,116,202,206,150,244,254, +241, 71,193,239,131, 7, 87,170, 89,156, 78, 0,104,255,206, 59,159,180,233,208, 33, 98,224,123,239,185, 5, 5, 5, 17,133, 66, + 1,179,217,140,180,180, 52,215,251,247,239,215, 60,168,209,168,247, 92,185,178,121, 77,209, 34,238,127, 17,101,122,145,127,186, +193,106, 79, 8,161, 0,218, 83, 74,207, 22,223,184,109, 54,155, 93,230, 74, 32, 16,160,168, 19,176, 93, 63, 74, 41, 69, 78, 78, + 14,114,114,114, 74,154,136,178,178,178,112,234,212, 41,196,197,197, 65, 40, 20, 66, 36, 18,193,108,174,124,109, 88,185, 92,222, +185,115,231,206,130, 43, 87,174, 32, 36, 36, 4, 82,169,180, 36, 93,197, 47,145, 72, 4, 95, 95, 95,168,213,106,116,234,212, 73, +184,124,249,242,206, 21, 25, 44,103,103,231,158, 67,134, 12, 17, 23,255, 95, 80, 80, 0, 62,159, 95, 98, 86, 10, 10, 10,144,151, +151, 7,165, 82, 9,131,193,128, 22, 45, 90,136, 15, 30, 60,216,179, 34,131, 85, 26,157, 78, 87,144,149,149,229,210,166, 77, 27, +215, 13, 27, 54,196,180,104,209, 34,236,185, 18,118,230,140,193, 96, 48, 8,121, 60,158, 93,235,220,109,217,178,165,228,216, 63, +123,246, 12, 43, 87,174, 44,249, 46, 46, 46, 14,203,151, 47, 47,153,151,163,162,115, 20, 30, 30,222, 99,243,230,205,141, 55,109, +218,148,207,231,243, 17, 19, 19,131,173, 91,183,130, 82, 10, 79, 79, 79,232,116, 58,100,102,102,226,244,233,211,176, 90,173, 80, + 40, 20,240,247,247,119,248,240,195, 15, 91,207,153, 51, 71, 8,160, 92,131,101,179,217,108,124, 62, 31,193,193,193,152, 57,115, + 38, 12, 6, 3, 68,162, 66, 95,169, 86,171,161, 84, 42, 17, 29, 29,141,196,196, 68, 84,118,115,113,112,112, 24,180,105,211, 38, + 47,177, 88, 12,189, 94, 15,141, 70,131,148,148, 20, 36, 37, 37, 25,178,178,178,172,142,142,142,188,224,224, 96,158, 68, 34,145, +244,239,223,159, 20, 27,205,222,189,123,187,111,222,188,121,104,101,230,136, 16,226, 89,167, 78,157, 47,198,140, 25,227, 80,186, +204,102,100,100, 96,224,192,129,178, 75,151, 46, 77, 39,132,108,165,148,102,191, 78,119, 49, 74, 41, 45, 40, 88,125,225,220,190, +159,234,220,189, 41,168,105, 50,229,183,232,210,115,162, 0, 0, 46,157, 93,223,226,238,205,123,144, 18,107,210,225, 99,139, 47, + 40, 20, 99,105,101, 17,192,158,157, 92,186, 7,121,137, 7,244,239,219,153,247,235,166, 53, 77,199,190,219, 77,226, 85, 99, 13, + 1, 0, 87, 81, 0, 90,218,166,240, 12, 70,173,195,175,155,214, 52,237,223,183,231,213,132,167, 73, 75,122,117,118,221,115,232, +164,242, 72, 69, 17, 66, 95, 31,161,191,155, 83, 46,220, 28, 27, 34, 56,196, 17,209,183,238, 96,223,238,243, 8, 13,111, 13,163, +209, 8,171,213, 42,239,211,167,143,110,219,182,109,134,216,216, 88,141, 94,175,111, 71, 41,141,173, 44,255,169,169, 15,184, 48, +159,230,102,145, 84, 98,213,168, 68,186,105, 95,238, 28,220,168, 89,215,198,174,190,254, 66, 79, 57,119,160, 67,187, 54, 91,127, +219,178,106,210,148, 79,191, 70,131, 6, 45, 90, 60,124,124, 56, 2,192,221, 50, 77,235, 19,122, 48, 50,148, 88,227, 31, 63,238, +149,148,152,152, 90,219,219,199,244, 68, 73, 45, 19,167,173,233,210,166,221,160,122, 53,235,180, 21,223,127,112,150, 76,254, 96, +204,111, 63,172, 88, 51,188,216,100,157, 59,119,180,221,236,217,137, 98, 0, 70,230,171,138,158,202, 37,146, 0, 69,112,176, 32, + 97,195, 6,125, 72,159, 62,249, 0, 96, 50,155, 61, 18, 18, 19,157,101, 50, 25, 40,165,176, 88, 44,207,245, 17, 46,238, 23, 28, + 25, 22,230,109,143,102,194, 87, 95,213,251,236,179,207,144,145,145, 1,171,213, 10,161, 80,248, 98,157, 13,173, 86,139,183,223, +126, 27, 63,126,247, 93,115,123, 52,109, 54, 27, 25, 63,119,238,140,207,103,204,168, 57,110,220, 56, 94,233,186,215,205,205, 13, + 59,119,237, 18,175, 88,177, 34,224,139, 31,127,124,251, 77,137, 36,190, 50,205,156, 90,181,224,150,153, 41, 45, 54, 87, 0, 16, + 22, 22,134,149, 43, 87, 74,222,125,247, 93,113,159, 62,125,190,191, 85,191,254,178, 37,173, 91, 63,118,175, 93,219, 73, 44,145, + 4,216,123, 60, 1, 64, 99, 48, 68, 46, 89,182,204,245,234,213,171,200,204,204, 68, 70, 70, 70,241,181,140, 38, 77,154,144,145, + 35, 71, 58,215, 8, 12,108,250, 23,159,238,255,242, 34,255,120,131, 85,148, 17, 82,148, 49, 82,234,166,248,156, 81,169,204, 96, +189, 12, 74,165, 18, 74,165, 18,107,215,174,133, 72, 36, 42,185,233, 2,128,201,100,178,199,172, 68,249,249,249, 65,165, 82,161, +118,237,218,207, 69,174, 68, 34, 17, 4, 2, 1, 68, 34, 17, 36, 18, 9,140, 70, 35,130,130,130,160,211,233,162, 42,210,212,235, +245, 13,220,220,220, 74,110,172, 70,163,177,196, 92, 21,167,215,100, 50, 33, 63, 63, 31, 5, 5, 5,208,104, 52,208,106,181, 13, +237,201, 47,199,113,184,119,239,222,147,176,176,176, 6,124, 62, 31, 10,133, 66,174,213,106, 75,250, 14,229,229,229, 97,227,198, +141,218,183,222,122,203, 99,255,254,253,149, 26, 44, 66, 8, 62,250,232, 35, 72, 36, 18,232,116, 58,252,242,203, 47,248,248,227, +143, 33, 18,137,160,209,104,176,114,229, 74, 76,158, 60, 25, 2,129, 0, 38,147, 9,203,150, 45, 43, 63,146,241,224, 65,194,149, + 43, 87, 26, 54,106,212,200,117,207,158, 61,217, 93,186,116,241,236,214,173, 27,164, 82, 41,244,122, 61, 44, 22, 11,154, 55,111, +142,240,240,112,100,101,101,225,240,225,195, 57,161,161,161, 30, 87,175, 94,229, 50, 50, 50,146, 42,187,121,151,138, 16,194,102, +179, 33, 51, 51, 19, 74,165, 18,217,217,217, 72, 75, 75, 67,106,106, 42, 4, 2, 1, 42,123,120,119,119,119,127, 35, 50, 50,146, + 15, 0, 82,169, 20, 13, 26, 52,192,140, 25, 51,172,122,189,126, 8,128,195, 69,155,245, 88,179,102,205,158, 11, 23, 46, 8,252, +252,252,240,232,209, 35,120,122,122, 10, 28, 28, 28, 42, 53, 88, 62, 62, 62,235, 15, 28, 56,224, 86,108,170,139,143,179, 78, 87, +120, 58, 6, 14, 28,232,182,105,211,166,245, 0,122,190,110, 55, 51, 5,207, 69,208,180,129, 84,121,232,196,227,122, 93,122, 78, + 20,248,214,156, 5, 0,104, 9, 8,142, 31, 90, 86,175,103,231, 90, 59,138,251,101, 85, 68,255, 30,158,139,251,244,169,207, 27, + 49,184,113,188, 64, 20, 86,115,203,166,101,222,110,174,109,254, 83, 73,240,221, 32,151, 2,225, 53,109,188,203,191,199,123, 79, +158, 24,102,218,186,225,189,248, 45, 59,110,116, 22,137,110,119, 4, 48,185, 60,237, 59,247,141,251,243, 53,254,117, 92, 69,103, + 8, 28,250,162, 97,131, 80,120,122, 42,241,203,234, 77,240, 15,106, 5,163,209, 8, 39, 39, 39,153,205,102, 51,243,249,252, 45, +246,152, 43, 0, 56,121, 82,201,213,173,171, 52,241, 53,156,245,131,143, 23, 15,232,210,163,111, 68,199,142,157,185, 99,199,143, +153, 91, 53, 52,167,119,236,216, 34,243,244,153,115,113, 25, 25,207, 66,195,195,235, 33, 54,230, 86,119,128,220, 3,202, 46,176, +247,226,232,145,154, 53,201,233,109,219,198,114,122, 46, 90,250,205,188,187, 61,122,245, 26, 21,217,182, 77, 91,238,248,137, 83, + 38, 49,114, 30, 42, 90,183,124, 54,106,216,144, 61,219,118,239,233,122,250,212,193, 90, 42,117,230,193,239, 86, 80,102,174, 74, + 63,156, 89,173,222, 2,137,132,151,125,250,180, 53,234,221,119,141,197,215,163, 76, 38,195,190,125,251, 32, 22,139, 75, 94, 34, +145,168,228,189,183,183,119,241,160, 42,187, 52, 1, 32, 61, 61, 29, 25, 25, 25,112,118,118,134,167,167, 39, 50, 50, 50,112,233, +210, 37,196,198,198, 66, 40, 20,162,123,247,238,224,149,211,119,249, 69,205,193, 83,167,118,169, 19, 21, 21,244,162,185, 2, 0, +179,217,140,188,188, 60,244,235,215,143,119,248,240, 97,159, 35,201,201,125,191, 2,182, 84,164,217,176, 87,175,220,204,157, 59, +203,252,237, 70,141, 26,145,139, 23, 47, 74,186,119,235, 54,105,202,188,121, 43,126,220,180, 41,197,102,181,250, 84, 37,239, 60, + 30,143, 71, 8, 65, 96, 96, 32,242,242,242, 80, 80, 80,216, 82,173, 80, 40,224,234,234, 10,139,197, 2,142, 82,225, 95,252,144, + 87,166, 23,249, 71, 27,172,162,204, 0, 64,251,210, 55, 20,142,227,236, 50, 87, 66,161,176,210, 62, 85,246, 68,181, 94,196, 30, +131, 85,156, 86, 7, 7,135,146, 11,172,180,177, 42, 78, 39,143,199, 3,159,207,135, 61,145,119,142,227,248, 26,141, 6,187,118, +237, 66,187,118,237, 74,154,159, 84, 42, 21,148, 74, 37, 84, 42, 21, 12, 6, 3, 18, 18, 18,112,242,228, 73,212,170, 85, 11,128, +125,147,182,198,199,199,223,168, 94,189,122,227,226,155,119,135, 14, 29, 2, 54,108,216,144,214,179,103, 79, 63, 74, 41,190,252, +242,203,156,230,205,155,123,148,190,185, 87, 6,159,207,199,165, 75,151, 80,171, 86, 45, 80, 74, 33, 18,137, 16, 19, 19, 3, 47, + 47, 47,112, 28, 7,129, 64,128,236,236,108, 56, 58, 86, 60,183,225,189,123,247, 70,191,243,206, 59,105,206,206,206,245,114,115, +115,211, 37, 18, 73,155,115,231,206, 5,154,205,102, 56, 57, 57,193,201,201, 9,135, 14, 29,130,139,139, 11, 62,249,228,147,100, +189, 94,127, 73, 46,151,123,235,245,250, 59, 25, 25, 25, 95, 86,229,124, 91,173, 86,104,181, 90,228,231,231, 35, 47, 47, 15,106, +181, 26, 6,131,161,210, 52,150, 69,155, 54,109,112,240,224, 65,254,130, 5, 11,126,141,143, 47,124, 16, 12, 9, 9,193, 39,159, +124,194,247,247,247, 71, 66, 66, 2,110,220,184, 1,179,217,140,202,194,207, 66,161,176,195,148, 41, 83, 90, 7, 5, 5, 17,179, +217, 12,142,227, 96, 52, 26, 81,252, 62, 57, 57, 25,117,234,212,225, 5, 7, 7,183, 32,132,116,176,103,192, 4,163, 16,117,214, +118,184,138, 2, 0,190, 27, 56,245, 10,104, 95,114, 50,146,172,172,172,121,195,199,241,223, 61,180,181,192, 59,230,177, 35, 2, + 67, 70, 34,160, 70, 63,140,121,199,134,217,223, 28,132,127, 96, 4,146,146,146,208,161, 67, 7, 81, 90, 90,218, 59, 0,166,218, +171,125,252,248, 21,219,177, 67,135, 7, 13, 30, 58,170,113,231,206, 61,173, 71,143, 30,194,189, 59, 71,239,191, 51,244,141, 44, +202, 21, 16, 23, 23, 89,244,227,199, 15, 67, 35, 35, 27,193,108,177,180, 1,102, 47, 2, 80,110,165,242,228, 9, 53,205,153, 51, +135,247,199,222,245, 35,135,143,120,187,126,167, 78, 93, 45, 71,143, 31,192,141,203,199,111,127,191,104,204,217, 5,203,182,119, +232,210,253,141,186, 14, 78, 87, 14, 69,214,213,191, 23,232, 20,244,132,149,148,114,110, 86, 14, 14, 28,138,234, 69, 30, 33,160, +148, 62,103,174, 94, 52, 88, 60, 30,175,210, 7,255,210,154,165,239, 69,197, 15,210,171, 86,173,130, 68, 34,129, 88, 44,134, 80, + 40,172,180,155, 69,105,205,251, 9, 9, 29, 55,110,217, 34, 41,203, 92,229,230,230, 34, 55, 55, 23, 5, 5, 5, 24, 54,108,152, +104,206,245,235,141, 42,211, 12,242,245, 53,202,165,210,204, 7, 15, 30,248, 69, 68, 68, 60,151, 94,181, 90, 13,169, 84,138, 45, + 91,183,138,122,247,234, 53,161,211,161, 67,223, 3, 80, 86, 53,239,132, 16,120,121,121,193,213,213, 21,132, 16, 88,173, 86,100, +100,100,224,254,253,251,184,126,253, 58,248,132, 88,255,202,115, 92,150, 23,121, 29, 34, 88,164,188,104,139,189, 6,139,207,231, +191,116, 20,171, 60,236,105, 34,148,201,100,119,211,210,210, 90,249,251,251,195,106,181,150, 24,172, 23,155, 8,139,163, 29,183, +110,221,130, 76, 38,187, 91,153, 38,165,180, 69,211,166, 77,177,123,247,110,156, 62,125, 26, 79,159, 62,133, 78,167,131,209,104, +132, 94,175,199,253,251,247,193,113, 28, 34, 35, 35, 33,151,203, 43,213, 4, 0,173, 86,155, 46, 20, 10,195,164, 82,233,127,154, + 59,124,125,145,155,155,203, 89, 44, 22,108,220,184, 81,237,227,227, 35,151, 74,165,118, 27, 86, 66, 8,178,178,178, 16, 16, 16, + 80,210, 7, 75,163,209,192,203,203,171,216, 80,192,104, 52,194,209,209,177,210, 38, 66, 74,169, 1,192,148, 82,218, 77, 6, 15, + 30,252,219,182,109,219,106,156, 56,113, 2, 87,175, 94,133,167,167, 39,230,207,159,255, 52, 49, 49,113, 56,165,244,250, 95,112, +129, 85,186, 77,110,110,238,174,187,119,239,182,104,218,180,105, 73,237,208,161, 67, 7,210,161, 67, 7,143,210, 33,253,236,236, +108, 92,187,118, 13, 39, 78,156, 0, 33, 4,113,113,113, 54,189, 94,255, 91, 5,191, 45, 10, 14, 14,222, 48, 99,198, 12,133,213, +106, 45, 41,219, 82,169, 20, 14, 14, 14, 16,137, 68,224,243,249, 72, 76, 76, 68,191,126,253,156,127,250,233,167,245,132,144,154, +148, 82, 51, 94, 19, 10, 56,165,245,218, 45,189,139,171,107,240,157, 75,103,215,183,104, 89, 84, 71, 92, 58,187,222,234,234, 26, +124,231,218, 45,189, 75,219, 64,165, 85, 81,137,206,222,195,217, 83,205,230,235,221,143, 28,190, 59, 96,202,228, 49,226,224, 26, + 33,153, 23,175,222, 13,110,105,155,194,147, 75, 1,173, 30,200, 83, 2,143,158,240,185,224, 26, 33,153,215,111,198,136,191,255, + 97,109,136, 78,111,218,115,232,164,242, 72, 37, 15, 99, 6, 66, 72,255,143,190, 16,158, 29, 53,218, 75, 44,118, 8,132, 38,255, + 38,170, 5,187, 99,200, 27, 97, 88,177,250, 38,156,156,220,224,237,237, 13, 30,143, 39,183, 55,239, 57, 57, 57,100,215,239,231, +223,125,235,237, 49,205,187,117,237,101, 61,114,244, 15,193,233, 99,251, 47,173, 95,253,197, 30,202,215,202, 8,213, 72, 3,131, + 2,238, 36, 60,141, 29,222,182,109, 87, 72,197,178, 90, 64,120,153, 5,182,100,224, 0, 69, 50,143, 7,135,183,222, 30,219,178, + 91,183,190,214,163, 71,247,226,232,161, 77, 87,102,205,170,118,232,233,179,173,162,203,215, 83, 29,250, 15,122, 63,255,224,225, +135,166, 55,250, 84,143,245,147, 55,208,131,241,252, 3,164, 64,144,105, 53, 26, 3, 3,186,117,227,235,146,146,132, 10,111,111, + 43, 0, 88, 44,150, 74, 13, 22, 0,206, 30, 77,123,211,162,211,233,192, 1, 86,123, 52, 51,178,178,170, 21, 61,124,151, 96,177, + 88, 74,204, 85,110,110, 46,148, 74, 37,228,114, 57,178,141, 70,111,123, 52,187, 54,107,182,113,206,236,217, 83,119,238,218, 37, + 42,109,174,138, 95, 66,161, 16,223, 46, 90, 36,250,248,211, 79,223,159, 32, 16, 76,172,202,241, 44,126, 88,231,243,249, 16, 8, + 4, 72, 74, 74, 66,114,114, 50,146,146,146,144,148,148, 4,169, 84, 10, 90,206,241,124,133, 17, 44,242, 58,149,221, 10,167,105, +168, 74, 39,119,123, 13,129,205,102,123,165, 6, 75,171,213,158, 56,121,242,100,179,254,253,251, 11,174, 92,185, 2, 31, 31,159, + 18,131, 85,252,183,184,217, 73, 38,147, 97,207,158, 61,102,173, 86,123,162,146,139,232,228,161, 67,135, 26,207,156, 57, 83, 56, +122,244,104, 60,120,240, 0,227,198,141,131, 82,169,132, 90,173, 70,110,110, 46,116, 58, 29,154, 53,107, 6, 7, 7, 7,220,185, +115,199,162,211,233, 78, 86, 82,112,104, 86, 86, 86,129,167,167,167,239,139,223, 13, 26, 52,200,251,231,159,127,214, 61,122,244, +200,210,170, 85, 43, 39,123,141, 70, 49,191,255,254,123, 73,100, 46, 54, 54, 22, 63,255,252,115, 73,159,171,155, 55,111, 98,241, +226,197, 37,115,151, 85,177,176, 95,175, 91,183,174,213, 98,177,160, 86,173, 90,240,247,247,135,193, 96,192,210,165, 75,173,127, +133,185,178, 23,131,193,176,115,212,168, 81,159, 71, 71, 71,251, 10, 4,130,194,208,117, 81,254,204,102, 51, 30, 63,126,140,251, +247,239,227,209,163, 71,200,203,203, 43,121, 0,184,117,235, 86,190,197, 98,217, 94,158,174,167,167,231,151,235,214,173,243,145, +201,100,207,149,231,226,232,103,113, 84, 52, 59, 59, 27, 46, 46, 46,232,212,169,147,215,201,147, 39,191, 4, 48,243,117,168, 12, + 8, 33,164, 85,115, 69,235,143,222,127, 27, 77, 27,105,158,220,189,121, 15,199, 15, 45,171, 7, 20,118,114,143,106, 20,249,228, + 90,180, 35,122,116,157,218,250,226,149,113, 21,118,114, 47,234, 67,117,168, 89, 51,183, 11,123,247,159, 88, 49,109,242,152,107, + 95,205,158,230,101, 48,106, 29,194,107,218,120, 64,161,185,186, 28, 45, 55,124, 61,123,204,181,133, 63,108,228,146,179,204,147, +174, 94,205, 47,119,116,111,105,211, 82,183, 54, 28,124,130,123,165, 5,215,232, 80,253,206,205,181,240,112,206,135, 99,173, 86, +232,209,173, 25, 78,156,188,139,164,103, 6,164,167,167,195,104, 52, 86, 56,237,193,163, 59,123, 70, 82, 66,131, 8, 37,201,132, + 71, 29, 70,142,122,175, 77,175, 94,125,233,193,131,251,173,123,247,108,185,176,125,243,242,157, 60,145, 80,160, 55, 57,155, 8, + 49,168, 56,158,227, 3,173, 54,183,176,242, 20,137,202, 15,183, 22, 77,200, 26, 81, 55,220,103,228,168,113,206, 61,123,244,163, +135, 14,237,229,182,111,219,120,122,251,218,168, 45, 28, 79, 45, 74, 79,209, 73, 84,106,139,138, 18,177, 75,129,154,211,101,198, +215, 52,248,245, 26,100, 6,227,249,251,128,209,152, 90,144,146,226,235,214,174,157,228,241,236,217, 50,239,102,205, 12,164,168, +143,112, 69, 6,139,207,231, 3, 60, 30,103,143,166,189,105,209,235,245,224, 0,203,203,104, 90,173,214,231,204, 85,177,193, 42, +142,103,216,163,185,122,214,172, 43, 65,221,186,229,157, 57,115,198,187,125,251,246, 68,163,209, 64,163,209, 60,103,178,252,252, +252, 72, 68,100,164,236,247,211,167, 67,102,218,121, 60,237,201, 59,143,199,251,203, 13,214,107, 23,117,173,232,203,226, 8,150, + 61, 6,203,206, 8,150,197, 98,177,192,203,203, 11, 57, 57, 57,229,222,240,121, 60, 30,164, 82,105,113, 27,112,133, 35,233,140, + 70,227,210,169, 83,167,126,216,163, 71, 15,143,176,176, 48,100,103,103,195,219,219, 27, 14, 14, 14, 37,125,195,138,245,110,222, +188,137,117,235,214,169,141, 70,227,210, 74, 52,151, 44, 90,180,232,131,129, 3, 7,186,249,248,248,192,213,213, 21,119,238,220, +129,171,171, 43,212,106, 53, 98, 98, 98,224,232,232, 88,210, 47,103,255,254,253, 26,163,209,184,164, 18,211, 70,207,157, 59,103, +118,116,116,188,147,157,157,205,207,203,203, 19,228,231,231, 11,212,106,181, 80,165, 82, 9,143, 28, 57,226,225,236,236,172, 59, +117,234, 84,118, 80, 80, 16,255,233,211,167,124,139,197,194,179,227,166,136,137, 19, 39, 66, 36, 18,193,104, 52, 98,233,210,165, +152, 58,117,106, 73,159,171, 69,139, 22, 97,198,140, 25, 37,134,121,205,154, 53, 85, 53, 89, 48,155,205,176, 88, 44,176, 88, 44, +118,153,222, 63,131, 61, 70,157, 82,154, 65, 8,233,221,180,105,211, 99, 59,118,236,112, 47,154, 83, 12,153,153,153,200,204,204, + 68,118,118, 54, 10, 10, 10, 96,181, 90,225,239,239,143,204,204, 76,236,221,187, 87,165,209,104,186, 85, 52,130,144,207,231,143, +106,211,166,141,224,197, 52, 20, 63,213, 21,155,118,137, 68,130,180,180, 52,116,232,208, 65,124,230,204,153, 81,255,116,131, 85, +108, 92,234,132, 66,212,167,239, 48, 81,131,198,221,117,215,110, 28, 73,146, 18,107, 82,207,206,181,118, 0,133,211, 52, 92,139, +118, 68,131,198,221,121,125,210, 77,205,148,249,171, 27, 68,212, 38,230,138,150,213, 1, 0, 15,103,174, 95,183,206,213,210,157, +156,136,224,235,217, 11, 15,252,186,105, 77,211,203,191,255,103,154,134,175,103, 23, 78,211,208,173,115, 53,235,131, 71,177,253, + 0,108,178,215,180,244,238,221, 39,122,245,218,205, 72,141,223,239,183, 98,161,139, 24,134,124, 64, 24,134, 54,205,157,112,245, +199,100,220,190,125, 59,195,100, 50,117,168,176, 44, 17, 26,116,255,193,189,218, 81,117, 35,124, 70,142, 26,235,212,187,119, 63, + 28, 60,184, 15,155, 55,174, 61,247,198,176,129,191, 62,203, 87,243,189,132, 50,145,140,114, 98,190,200, 89,224, 32,147,101,153, +211,210, 10, 43, 79,129,208, 9, 24,204, 85,208, 66,136,241, 99, 71, 56,119,236,220, 15,127, 28,218,135,205, 27, 87,159,253,170, +238,160,181,213, 27,214, 33,205, 26,125,247,126,245, 26,213,131,181, 5,153,106, 30, 17,155, 13, 6,206,241,187,141,137, 63,196, +207, 24, 21, 31,125,111,240,247,108, 20,225,115,220,217,220,179,103,211,143,159, 60, 17,121,182,110, 45, 77, 59,125, 90, 86,180, +114, 72,133, 6, 75, 32, 16,128,150,223,164,245,156, 38,217,180,137, 7,160,194,193, 85, 34,145, 8, 58,157, 14, 22,192,108,143, +166,239,209,163, 41, 79,158, 60, 9,117,115,115,123,206, 92,229,229,229,149,188, 55, 24, 12,208,233,116,144, 74,165,247,237,209, +204, 60,119,206,176,112,226,196,153,195,135, 13, 91,126,226,228, 73, 7,119,119,119,168, 84,170,231, 12,150,201,100, 66,199, 78, +157, 68,139,162,163, 71, 2,152,101,207,241,244,238,208,161,210,254,190,124, 62, 31,220, 95,220, 68,248,186,193,171,172,169,198, +222, 81,132,101,221, 24, 9, 33,157, 95,248,104, 70,227,198,141, 13,177,177,177, 8, 10, 10, 42, 49, 41,165,127,211,201,201, 9, + 46, 46, 46,184,121,243, 38,230,205,155,167, 7, 48,163, 34, 77, 74,169, 70,167,211, 13,237,210,165,139, 94, 32, 16, 32, 60, 60, +188,100,254, 43,142,227, 32, 22,139, 33,151,203, 17, 29, 29,141, 62,125,250,232,116, 58,221,208, 23,231,192, 42, 67, 83,165,211, +233,222,236,218,181,171,238,193,131, 7,104,211,166, 13,110,223,190,141,130,130, 2, 20, 20, 20, 32, 33, 33, 1, 17, 17, 17,208, +233,116,248,249,231,159,245, 58,157,238, 77, 74,169,170, 34, 77,141, 70,211,103,234,212,169,252,223,126,251,173,186,191,191,127, +221, 38, 77,154,132,117,234,212,169,230,128, 1, 3,130,123,246,236,233, 27, 26, 26,106,232,214,173,155,103,143, 30, 61, 60,117, + 58,157,240,226,197,139,233, 22,139,165, 71, 37,199,179,196,148,196,198,198,150, 52, 9, 10, 4, 2,228,228,228,148,204,180, 95, + 92, 25,149,101,128,203,211, 44,109,178,139,141, 85,177,209,170,172,238, 47, 71,179,210, 27,134, 88, 44, 46,142,112,210,202, 52, + 41,165,183, 30, 62,124,216,165, 93,187,118,183,222,125,247, 93, 77, 70, 70, 6, 28, 29, 29, 17, 18, 18,130,218,181,107,195,195, +195, 3,102,179, 25,123,246,236,209,238,221,187,247,174, 74,165,234,240,226, 28, 88, 47,106,242,120,188,132,178, 42,215,226,232, + 85,177,193,114,112,112,128,191,191,127,241,177, 77,168,202,241,124,201,200,210, 95,171, 89,100, 92, 58,117,236, 86,163,103,175, +254,206,123,247,239,147,253,248,203,134,135,109,251,125,184,210, 35,120,202,110,143,224, 41,187,219,246,251,112,229,143,191,108, +120,184,119,255, 62, 89,207, 94,253,157, 59,117,236, 86,227,193,253, 71, 97,207,173, 75, 88, 70, 58,101, 98, 73,179,182,173, 66, +149,231, 46,158,179, 46,252, 97,163,173, 85,203,158, 87,151, 47, 95,185,125,249,242,149,219, 91,181,236,121,117,225, 15, 27,109, +231, 46,158,179,182,109, 21,170,148,137, 37,205,236,201,251,248,177, 35,156,123,245,236,135,131, 7,247, 88,119,254,254,243,162, + 53,155,211,218,117, 24,144,154,153, 16,127,157, 66,183, 1, 30,142,119,240,240,225, 67,149,201,100,234, 80, 86, 7,247,178, 52, +199,141, 25, 81,218, 92,157,119,247,105,179,230,225, 67,216,142, 31, 63, 96, 57,121, 50, 90,127,254, 86,150,234,198,131,156,188, + 92,181,225,169, 86,163, 54,113, 28, 7,202,217,248,115,230, 20,118,196, 45,239, 28,181,106,213, 30,167, 78,108,197,198, 13,171, + 84, 28, 7,195,160, 29, 59,108,131, 7,207,166,193,213,170, 5,111,249,125, 43,233,221,183,191, 51, 5,184, 62, 3,251,185,252, +182,237, 55, 82,163, 86,141,106, 33, 33,133, 83,211,252, 35,203,210, 95,160, 57,139,210,124,117, 82,210,217,155, 63,253,100,244, + 30, 58,212, 77,236,237,237, 4,155,141, 20,215,239,229,189, 4, 2,193,115, 17,151,138, 52,253, 61, 60,158,237,223,191, 31,181, +107,215,134,191,191, 63, 74,247,129, 45,158, 72,219,221,221, 29,187,118,237, 2, 5,110,216,163,217,176,122,245,155,223, 46, 92, +104,226, 56, 14,249,249,249,255, 21,189,202,207,207, 7,199,113, 56,244,199, 31, 38,117, 65,193, 70,123,243,222,129,207, 47, 24, +222,182,237,130, 94,189,122,153,159, 60,121, 2,142,227, 80, 58,146,149,149,149, 5,133, 66, 1,131,209, 24, 72, 8,145,217,163, +153,117,228,136, 28,149,212,235, 47, 70,176,254,138,243,254,175,138, 96, 89,173, 86, 4, 6, 6, 62,183,244, 10,143,199,123,238, + 85,149, 17,132,148,210, 77,132,144,163,221,186,117,155,217,188,121,243,241, 51,103,206,228,135,133,133, 65,165, 82,193,213,213, + 21, 94, 94, 94,136,137,137,193,254,253,251,109, 57, 57, 57, 43, 1,204,181,103, 40, 60,165,244, 52, 33,164,119,189,122,245,182, + 77,155, 54,205,185,107,215,174,194,192,192, 64, 80, 74, 17, 29, 29,141,221,187,119,155,215,174, 93,171, 46, 50, 87,167,237, 76, +235, 49, 66,200, 27, 61,122,244,216, 50,106,212, 40, 71,155,205, 38, 76, 72, 72,128,209,104,132,197, 98, 65,114,114,178,249,224, +193,131, 5, 58,157,110, 4,165,244,152, 29,122, 55, 9, 33, 17,199,143, 31, 31,117,241,226,197,121,239,190,251,174,123,167, 78, +157, 68, 86,171, 21, 23, 46, 92,200,110,216,176,161, 87, 86, 86,150,121,215,174, 93,185, 6,131, 97,134,205,102,179,107,169, 28, + 66, 8,212,106, 53, 60, 60, 60, 96, 52, 26,193,113, 28, 76, 38, 19, 20, 10, 69,201,242, 70,148, 82, 84,165,211,252, 11,101,128, +111, 54,155, 49,108,216, 48,112, 28,135,165, 75,151,194,106,181, 86, 89,204,217,217,249,198,173, 91,183,122, 55,104,208,160,196, +180, 20,151, 33,137, 68, 2, 15, 15, 15,184,187,187,227,224,193,131, 16, 10,133, 55,236, 60, 71,183, 1, 52, 36,132,180,188,123, +247,238, 91, 0, 26,152,205,102,127,155,205, 70,120, 60, 94, 58,165,244,142, 90,173,254,213,222,165,114,178,178,178,230,189,253, +246,219, 13,183,110,221,170, 16, 8,254,115,105, 8, 4, 2, 72, 36, 18, 20, 79,106, 73, 41,133,201,100,194,151, 95,126,169,214, +106,181,243, 94,151,202,160,113,147,102, 88,253,243, 50,197,201, 83, 71,179, 31,198, 97, 95,233,169, 24, 20, 0, 46, 94, 25,183, + 79,153,191,186, 65, 90, 74,138,162,113,147,102,118,105,154,108,214,220,161, 35, 86, 6, 22, 45,149, 51, 47,225,105,210,146,173, + 27,222,139, 7,128,239,127, 88, 27,146,156,101,158,244,224, 81,108,191, 95, 86,158,105,102,178, 89,115,237,209,252,143,105,217, +162, 2,133,129, 82,122,149, 16, 82, 61,172,165, 97, 70,100,184,168,111, 90,166,229, 89, 65,129,233, 35, 74,105,188,189,121,111, +221,170, 29, 78, 29,251, 13,155, 55,110, 81, 83,142,111,240,240,240,160, 0,240,240,161, 7,125,248, 80, 73,255,211, 95,216, 69, +235, 41,203,158, 59, 99,250,248,201, 26,141,102,201,138,239, 42,158,112,182, 94,253,230,168, 87,191, 57, 62,252,232, 11,231,136, +186,225, 65, 0,176, 99, 7,181, 69,134,146, 3, 51,191,154,221,119,238,220,217, 80,107,140,152, 59,183,112, 89,157,152,123, 15, +254,120,242,132,154,216,173,233,121,102, 90,173, 87, 49,121,114,168, 46, 47,207,179,245,231,159,123, 8, 62,253,148, 87, 81, 39, +247,210,215,175, 61,154,215,239,220,249, 99,220,123,239, 61,155, 53,115,102,183,149,171, 86, 73,163,162,162,144,145,145,129,240, +240,112,248,251,251,227,248,241,227,216,181,125,187, 86,169,209,204, 0,240,139, 61,154,155, 14, 29,138, 9,171, 91, 55,103,213, +170, 85,126,189,122,245, 34, 90,173, 22, 42,149, 10, 42,149, 10, 70,163, 17, 69, 19, 57,211,216,184,184,135, 22,139,101,165,189, +121,183,101,103, 59,204,109,214, 44, 85,196,113,223,190, 49,112,224,212,185, 95,127, 45,169, 81,163, 6, 49, 26,141, 37, 81, 44, +179,217, 12,133, 66, 97, 54,153, 76,238, 0,116,246,104, 74,214,174,181,102,103,103,195,211,211,179,100,218,165,210,243, 10,106, + 52, 26, 80,202, 38,193,173,210,131, 66,121,247,112, 55, 55,183, 27, 2,129, 32,160,116, 52,171,172,181,237, 74,127,102,177, 88, + 82,179,179,179, 27,151,118,184,148,210, 19,229, 24,131, 16, 0,243, 59,118,236,248,198,148, 41, 83,200,153, 51,103,176,119,239, + 94, 26, 31, 31,191, 19,192,140,242, 42,199, 74, 52, 29, 37, 18,201, 39,114,185,188,115,241, 84, 12, 50,153,236,174, 86,171, 61, + 97, 52, 26,151,150, 55,123,123, 37,154, 78, 18,137,100,162, 92, 46,239,162,209,104, 26, 0,128,163,163,227, 45,173, 86,123,220, +104, 52, 46, 43,111, 1,233, 74, 52,165,206,206,206,243, 60, 60, 60,222,252,244,211, 79,221,207,157, 59,151,126,234,212, 41,145, + 82,169,220,106, 50,153,202, 93,236,185, 44, 77,119,119,247, 27,124, 62, 63,224,175, 56, 71, 0, 80,191,126,253,131,125,250,244, +233, 53, 98,196, 8, 88, 44, 22,252,242,203, 47, 56,126,252,248, 31,113,113,113,189, 43,122,250,124, 81,147, 16,226, 17, 16, 16, +112,102,252,248,241,193,195,134, 13,147,185,186,186, 66, 32, 16, 64,171,213,226,241,227,199,136,142,142,166,251,246,237, 43,184, +121,243,102,170, 78,167,107, 79, 41,205,177,247,120,254,153,167,228, 23, 53,133, 66, 97,187,192,192,192,223,103,205,154,229,216, +165, 75, 23,169,187,187, 59,248,124, 62, 44, 22, 11,210,211,211,113,239,222, 61, 28, 61,122, 84,187,115,231, 78,109,110,110,238, +176, 23,231,106,249,255, 74,231,171,212,140,168, 77,190,122, 97, 1,231,114,103,103,175,104, 91,123,210,217,171,179,107,207, 55, +222,104,210, 25, 0,118,237,186,126,226,143, 19,249,135, 94, 54,157,149,165,213, 30,205, 58,161,252, 89,247, 31,220,123,110, 34, +202,186, 17,145,177,117,162, 6,126, 99,143, 86,241, 76,238, 47,230,189,212,236,248,165, 99,184,207, 53,167, 22, 47, 8,253,197, +140,233,152, 63,111, 1,246,237,216,243,199,131, 39,244,224, 63,185, 44,253,149,154,197,139, 19,203,124,125,219, 46,229,184,233, +183,239,221, 83,148,126, 80, 43,142, 52,151,126,152,244,243,243,203, 74, 75, 75,243,182, 71,179,247,143, 63,154,117,114,185,100, +250,183,223,182, 43, 48, 24,218,205,157, 59, 87,112,253,250,117,252,252,211, 79, 86, 67,106,234,150,108, 96, 98, 89,173, 31, 21, +105, 6, 79,156,232,240,217,207, 63,143, 14,169, 85,203,235,173,183,222, 18, 10,133, 66,104,181, 90,164,164,164,224,216,209,163, +166, 7, 15, 31, 62, 80,171,213,125, 41,165,105,246,106,246,254,241, 71,179, 75, 72, 8,100,158,158,244,228,233,211,206,227, 62, +249,100,124,181,234,213,157,187,117,239, 46,116,114,114, 66,126,126, 62, 18, 18, 18,176,103,207,158,172,130,130, 2, 63, 74,169, +205, 30,205, 45, 23, 47,214, 59,116,246,236,160,111,190,249, 70, 28, 25, 25, 9,103,103,103,104, 52, 26,220,187,119, 15,103,207, +158, 53,174, 92,185, 82,165, 82,169,198, 91,173,214,253,127,213,121,255,215, 24,172,255,175, 11,143, 16,210, 24,192, 87, 69,255, +126,109,199,154,126,175, 77,165, 67, 8, 9,114,115,115, 91,109, 48, 24,168, 94,175, 31, 71, 41, 77,254, 95, 75, 39, 33, 68,208, +184,113,227,159,179,178,178, 90, 82, 74,225,236,236,124,233,254,253,251, 19, 40,165,214,170,106, 18, 66,248, 0, 90, 42, 20,138, +102,142,142,142,237,140, 70, 99,157,162,102,182,135, 90,173,246,172,217,108,190, 10,224, 18,165,212,246,119,230,189, 40,157, 93, +252,252,252,222,227, 56,174, 22, 33,196,197,102,179,193, 98,177, 40, 57,142,123,172, 82,169,214, 2, 56,254,119,167,243, 85,105, +214,173, 69, 6, 80, 30,234,148,103, 4,158, 51, 52, 47, 24, 7,194,225,225,253,199,116, 79, 21,202, 60,175,127, 15,207,197, 64, +225, 72,195,202,150, 28,122,206, 96,217, 97, 90,170,108, 46,107, 9,222,166,132, 6, 61, 95, 41,146,228,240,122, 3, 54,255, 25, +131,101, 47,117,195, 72, 59, 80,180,228, 40,174, 62,140,163,167, 94,215,186,238, 85,106, 46, 32,196,237, 39, 87,215, 75, 60,129, +192, 7, 0,175, 40,218,194,113,132,216, 40, 33,214,210,205, 88,165, 31, 40, 43,211, 52, 3, 81, 66,137, 36,208,102,181,122,103, + 0,138, 67, 54, 91, 35, 3,165, 5, 1,192, 87,209,148,198,188, 76, 58,205, 64, 20, 95, 34, 9, 58, 68,105,191,108,185,188, 94, +150, 94,239, 9,128, 42,228,242,135,106,173,118,163,193, 96, 88, 81,198,162,234,149,106,138, 36,146, 0,155,213,234, 13, 0, 60, +129, 32,107,155,209, 24,152,234,228,244,150,193,104, 12, 86, 40, 20, 22,147,201,164, 54, 24, 12, 35, 44, 22,203,201,170,228,253, +177,213, 26,113,145,199,107, 99,150,203,221,205,132,200, 77, 86,171,217,100, 54,167, 24, 12,134,187, 0,126,160,148, 62,249, 43, +207,251,107, 71,241,104,179,191,226, 5,160, 51,211,100,154, 76,147,105, 50, 77,166,201, 52,255,122, 77, 0, 50, 0, 65, 0,248, +255,196,188,191,110, 47, 1,179,152, 12, 6,131,193, 96,188, 22, 1, 19, 29,202,232,115,197,248,155,154, 8, 1,116, 46,231, 68, +217, 29,250,123,153,209, 4,118, 52, 37, 48, 77,166,201, 52,153, 38,211,100,154, 76,243, 53,211,172, 76,251,181,105,122,100, 77, +132, 76,147,105, 50, 77,166,201, 52,153, 38,211,100, 77,132,175,246,197, 3,163, 60,103,237, 77, 8,241,126,213,219, 50, 94,239, +178, 80,198,190,254,132, 16,255, 42,110,239,203,142, 58,131,193, 96,252,179,249,127, 55, 88,246,222,172,254,228, 77,237, 79, 25, + 30, 66,200, 2, 66,144, 86,248, 34, 11, 94,213,182,118,252,174,159,167,167,231,199,117,235,214,221,226,227,227,243, 33, 33,196, +171,138,251,135,202,229,242,101, 10,133,226,140, 66,161, 56, 35,151,203,151, 17, 66, 66, 95,209,121, 35,132,144,113, 14, 14, 14, +167,253,252,252,158, 73, 36,146,211,132,144,241,228, 37, 23,160, 36,132,212, 36,132, 76, 38,132, 76, 33,132,132, 85,101, 95,239, +200,254,219,189, 34,251,223,241,138,236,127,207, 35,170,111,168, 87,100,255,123, 94,145,253,239,120, 71,246,223,254, 23,148,215, +151, 62,191, 69,251, 38, 23,190, 42,223,151, 16,242, 3, 1, 82, 8, 65,234,159, 45, 75, 12, 6,131,193,248,123,169, 82, 39,247, +128,128,128, 30, 28,199, 13, 7, 0, 30,143,247, 91,106,106,234,225,151,184,225,124, 86,244,126, 17,165,116,250,159,217,206,142, +125,151, 80, 74,167, 86,221,156,225, 51,142,163,188,194,124,146,207,189,189,189,101,124, 62,255,191, 58, 14,218,108, 54, 25, 33, +248,144,227, 10, 23,168,228,241,200,103,132,144,101,148,210,204,151, 49,133, 35, 71,142, 92,178,108,217, 50, 7,153, 76,134,164, +164,164,174,227,199,143,111, 69, 8,153, 76, 41, 77,175,108,127,169, 84, 58,188,105,179,150,147,191,253,238,123,133,183,151,151, +220,106,227,204, 9,137,137,242, 47,167, 79,109, 38,149, 74,151, 85,180,200,241,139, 70, 10,192, 88,129, 64, 48,196,193,193,161, +166,193, 96,120, 98,181, 90,119,242,249,252,110,243,230,205,139,236,217,179,167,131, 90,173, 22, 91,173,214, 90,155, 55,111,158, +188,110,221,186, 30,132,144,126, 21, 13,183, 47,142,224, 80, 74,159,149,250,184, 71,114,114,114,148, 80, 40, 68,205,154, 53, 9, +128,152, 74,182, 47,129, 2,161,247, 47,236,136, 2,128,186,173, 7,199,222,191,176, 3, 69,239,255,130,135,129,231,203,130, 84, + 42,253, 69,175,215,167, 20,127, 95,148,206, 76,123,246, 37,132, 44, 47, 90,230, 39, 18,192,192,162, 77,119, 83, 74,239, 17, 66, +124, 28, 36,146, 79,244, 6, 3, 1, 64,254, 76, 89, 98, 48, 24, 12,198, 63,204, 96, 81, 74,223,122,252,248,177,140,227, 56,132, +133,133,141, 4, 96,183,193, 42,235,134,211,169, 83,167,134, 82,169,244,185, 89,139,245,122,189,152, 16,116,122, 25,211, 82,252, + 27, 38,147,145, 39, 20,138,193,227,145,201,245,234,213,171,150,147,147,115,142,199,227,109, 73, 77, 77,205,127,137,155, 44,214, +172, 89, 83,219,215,215,247,191,102, 87, 78, 79, 79, 23,247,235,215,183, 74,122,163, 9,145, 24, 37,146,102, 34, 66,124,109, 86, +171, 11, 0, 8, 4,130,252, 48,103,231,198,243,191,249, 70, 70, 8,225,114,115,115,161,215,235, 49,105,210, 36,233,131, 7, 15, +250, 3, 88, 81, 73, 26,107, 55,111,209,106,210,209,163, 71,234,168,243,242, 13,107,150,172,142,214, 11,132,218, 26, 17,117,196, + 63,175,222,232, 50,118,244,136,143, 8, 33,183,202, 90, 54,228, 5, 29, 30,128, 61,159,124,242, 73,221,222,189,123,139, 53, 26, +141,131, 94,175,175,182,101,203,150, 47, 27, 55,110,172,104,208,160,129,248,247,223,127, 39, 42,149, 10,148, 82, 89,120,120, 56, + 29, 50,100,136, 97,219,182,109, 31, 2, 88,110,143,225,245,245,245,157, 89,100,208, 75,151, 61,161,159,159,159,180,232,152,206, + 37, 4,147, 42, 50,215, 4,136,171,219,122, 48, 64, 80,235,254,133, 29, 14,117,219, 12, 54,128,226, 49, 1,226, 0,192,223,223, +127, 46, 80,106, 94,167,231,121,248,236,217,179,151, 90, 59,176,119,239, 62,160,148,254,226,239,239,127, 48, 51, 51, 51,146, 16, +140,179,247, 33,128, 16, 2,119,119,247, 55, 0,252, 8, 96,232,163, 71,143,234, 2, 64,120,120,184, 16,192, 61, 23, 23,151, 70, +198, 66,115,197, 96, 48, 24,140,127,161,193, 18, 1,192,185,115,231, 64, 41, 21,191, 76, 80,160,244, 13,103,226,196,137,240,245, +245,125,209,180,224,204,153,211,127, 38, 79,207,253,198,215, 95,127,173, 80, 42,149,157,127,253,245,215,182,254,254,254,139,159, + 61,123,118,165,146, 60,102, 18, 66, 22, 21, 69, 28, 32,145, 56,196,142, 31, 63, 62,186,232,235,106, 7, 14, 28,144,245,233,211, + 71, 7, 32, 17, 0, 36, 18, 7,127, 62,159, 87,187,176, 83, 27, 22, 85,100, 4, 7, 19, 18, 34, 22,139, 59,142,251,241, 71,107, +163, 62,125, 4,114, 79, 79, 2, 0,137,143, 30,185, 47,250,238,187, 86,249,241,241, 98,189,187,123,110,174, 86,171,143,141,141, +133, 68, 34, 33,124, 62,191, 81,101, 25,150,203,229, 31,127, 51,127,145, 92,157,167,212, 27,213, 5, 38,190,205, 98,116,148, 74, +109, 25, 25,153, 57, 10,153, 76, 55,253,171, 57,162,247,199,188,245, 49,128, 9,149, 72,125, 56,121,242,228, 58, 77,155, 54,245, +223,190,125, 59, 81,169, 84, 16, 8, 4,138, 6, 13, 26,160,113,227,198,182, 83,167, 78,145,234,213,171, 35, 50, 50, 18, 23, 46, + 92,192,165, 75,151, 72,195,134, 13,101,187,119,239, 30, 89,150,193, 42,195, 84, 79,110,209,162, 69,160, 66,161, 48,168,213,106, +188,251,238,187, 0,128, 46, 93,186,212,150,203,229,191, 20, 20, 20, 56,236,223,191,239,141,202,204,117,230,189,189, 67, 0,192, + 43,178,255, 29, 0, 81,160,120,156,117,111,111,189, 82,155,212,137,137,137,105,158,159,159, 95,210,217,176,120, 97,241,182,109, +219, 86,165,188,103, 18, 66, 22,245,237,219,231,115,128,160,125,251,246,153, 19, 39, 78,164,247,238,221, 27, 48,120,240,160, 78, +113,113,143,203, 77,231,139,229,104,248,240, 55,159,186,185,185,117,241,243,243,139, 3, 32, 16, 10,133,197,155,242,253,253,253, +221, 34, 35, 35,135, 41, 20,138, 4, 62,143, 87,157,130,210,202,202, 18,131,193, 96, 48,254, 1, 6,139, 16, 66, 75,221, 24, 72, + 5, 79,225, 57,183,110,221,242, 53, 24, 12, 32,132,228,216,113,131, 58, 81,250,134,195,231,243,127,230,241,200, 4, 66, 8, 34, + 35,163,158, 46, 93,186,180,172, 53,183, 76,145,145, 81, 79,249,124, 94, 13, 74, 41, 8,225,253,194,113,182,204,178, 52,203,187, + 33,138,197,146,207, 0,192,199,199, 55,254,240,225,195,166, 65,131, 6,225,187,239,190, 19, 77,155, 54,109,106,112,112,240,135, + 73, 73, 73, 25,229,165,179,232,255,233,222,222,222,178, 53,107,214,212, 30, 63,126,124,116, 90, 90,218,116, 0,240,243,243, 91, + 0, 32, 2, 64, 98,169,207,176,114,229,182,103, 99,198,140,137,205,204,204,156, 94,158,230, 27,132,212, 12, 14, 15,239, 56,247, +220, 57,202, 51, 26, 73,206,249,243,234,236,204, 76,203,147,236,108,217,134, 27, 55,122,127,185, 96,129, 48, 48, 40, 8,103,246, +239,247,200,209,233,178, 85, 70,163, 33, 51, 51,147, 90,173,214, 75,118,228,189,174,151,167,167,108,213, 15,191, 92,119, 20,242, + 57,111,127,127, 34,112,115, 17,242,100,206, 98,158, 64, 96,168, 17, 92, 75, 4,160,110,101,231, 72, 36, 18,141,236,218,181,171, +108,219,182,109, 36, 50, 50, 18, 46, 46, 46, 56,127,254, 60,110,221,186, 5,139,197,194,203,207,207, 71,147, 38, 77,240,237,183, +223, 34, 40, 40, 8, 74,165, 18,201,201,201, 30, 98,177,216,179,130,227,249,156,225,157, 58,117, 42, 2, 3, 3, 97,181, 90,145, +151,151, 7,171,213, 10,185, 92, 14, 0, 72, 76, 76,196,129, 3,251, 43, 45, 75,118,154, 35,180,104,209, 66, 67, 8,121,248, 98, + 4,171, 42,154,190,190,190, 27,179,178,178, 27,118,232,208, 1, 42,149,202, 52,107,214, 44,212,171, 87, 15,181,107,135,217, 83, +230,167, 75, 36,146,181, 65, 65, 65, 95,125,250,233,167,110,110,110,110, 48, 26,141, 31,165,167,167, 99,252,248,241, 0,128, 94, +189,122,133, 11, 4,130, 13,239,190,251, 46,170, 85,171,246, 72,163,209,196,220,186,117,107, 90, 65, 65,193,131,151,205,187,157, +199,135,105, 50, 77,166,201, 52,255,167, 52,237,245, 34,255, 40,131, 69, 41, 37,132, 16, 90, 89,134, 40,165,249,254,254,254,190, + 82,169, 20,148,210, 42, 55,183,217,108,182, 15, 61, 60, 60,178,166, 79,159,222,186,118,237,218,166, 15, 63,252,240, 94, 66, 66, +194,140,210,219, 84,175, 94,125,222, 79, 63,253,132,216,216,216,196, 5, 11, 22, 92,200,201,201,249,186,138, 39,125, 26, 33,100, +105, 81, 52, 44,103,255,254,253,245,206,157, 59, 55, 97,201,146, 37,158, 31,124,240,129,232,227,143, 63, 30, 1,224,187,202,116, +248,124,190,174,172,102,193,114,110,194,166,178,250,104, 21,211,135, 16,169,147, 88,220, 97,238,185,115,212,148,152,168, 91,247, +253,247,142,171,174, 93,155,101,161,212,219,203,203, 11,109, 90,181, 42,112,224,243,115,178, 50, 50, 56,175,154, 53,249, 9,135, + 15,123,232,197,226,180,109,219,182,169,114,115,115,247,218, 81, 40,213, 54,142, 51, 59,250, 7, 90, 7, 13,232, 90,247,250,213, + 91,143, 28, 61, 61,120,141, 27, 70, 70, 61,136, 77,188, 73,109, 54, 11, 33, 68, 93,153,142,179,179,115,237,220,220, 92,168,213, +106,120,122,122, 98,233,210,165,240,241,241,129, 78,167,195,229,203,151,105, 64, 64, 0, 57,119,238, 28, 2, 2, 2,144,157,157, + 13,147,201, 4,141, 70,147,101, 52, 26,245,229, 25, 94,129, 64,176,150,199, 35,239, 1, 64,181,106,213, 31,254,242,203, 47, 6, + 0,168, 83,167, 14, 6, 12, 24,128, 93,187,118,225,193,131, 7,224, 56, 14,148, 82, 67, 64, 64,224, 67, 30,143,212, 41,242, 72, + 47, 29,197, 41, 94,130,231,217,179,103, 3, 95,242, 66, 39, 62, 62, 62, 3,194,195,195, 71, 12, 31, 62,220, 36, 20, 10,161,211, +233,160,211,233,240,240,225, 67, 83,215,174, 93, 51,251,246,237,227,125,240,224,193, 10,211,105, 52, 26,159,250,249,249, 77,157, + 60,121,242,210,149, 43, 87, 58,125,249,229,151,176,217,108,224, 56,174,228,111,241,251,189,123,247, 34, 62, 62,126, 89,105,115, +197, 96, 48, 24,255, 22,236,245, 34,255, 40,131,245,255, 9,159,207, 95,117,236,216,177, 6,109,219,182, 21,116,234,212, 41, 50, + 32, 32, 32, 50, 53, 53,245, 30, 0, 4, 4, 4, 68,118,239,222, 61,210,203,203, 11,203,150, 45,211,241,249,252, 85, 47,121,146, + 74,223,236,162,125,125,125, 23,239,222,189,123,209,184,113,227,224,227,227, 19,241,255,157,103, 39,137,164,225,187, 75,151, 90, +133, 22, 11,239,199,197,139,157,190, 63,125,122,209,246, 29, 59, 4, 45, 90,180, 32,148, 82,220,189,115, 71,250,237,242,229,178, + 97,253,251, 39,198,196,199, 91,247, 29, 61,106,201,124,246, 44,239, 89,118,246, 76, 74,105, 94,101,250, 22,139,229,114,220,227, + 56,255,214, 29, 90,250,157,191,118,255,214,192,254, 61, 59, 10, 5, 60,242, 56,241,217, 13, 95, 31, 15,231, 51,167,143, 27, 44, + 22,203,229,202,116,180, 90,109,130,213,106,117,163,148,122,158, 57,115, 6,158,158,158,200,207,207,135,197, 98,129,201,100, 50, +233,116, 58,135,220,220, 92, 24, 12, 6, 24,141, 70, 56, 57, 57,225,238,221,187,153, 86,171,245, 84,121,154, 86,171,117,172,131, +131,195,124, 74,169,208,104, 52,166,157, 56,113, 2, 34,145, 40,208,217,217,121,186,197, 98, 65, 90, 90, 26, 46, 94,188,184,192, +108, 54,167, 20,239, 35, 22, 75, 60,141, 70,163,181,188, 78,238,246, 70,176, 94,150,128,128, 0,191,234,213,171, 79,158, 54,237, +179, 90,245,234, 53, 64, 78, 78, 14, 56,142,131, 66,161,128, 78,167,131,147,147, 19, 90,182,108, 25, 61,111,222,188, 60, 74, 49, +173, 50, 19,152,150,150,150, 27, 20, 20, 52,115,252,248,241,147,107,213,170, 21, 4, 0,161,161,161,232,218,181, 43, 14, 31, 62, +140,216,216, 88, 20, 20, 20,216,174, 95,191,126, 32, 45, 45,141,173,237,197, 96, 48, 24,204, 96, 85,157,204,204,204,236,128,128, +128, 35, 55,111,222,236, 61,100,200, 16,156, 57,115,230,109, 0,147, 1, 64, 34,145,188, 61,100,200, 16,220,188,121, 19,143, 30, + 61, 58,146,153,153,153,253, 42,126, 83, 44, 22, 27, 76,166,194, 96,148,131,131,131, 67, 21,119,175, 86,212, 52, 8, 0,213, 42, +248,172, 92,120, 2,129,111, 84,247,238,130,252, 91,183,212,107,174, 94,253,122,203,150, 45,130,214,173, 91, 19,139,217, 12, 27, +199, 33, 36, 36,132,116,234,220, 89,190,126,203, 22, 55,155, 86,123,238,155,207, 63, 63,191,250,221,119, 11, 98, 41, 77,180, 39, +129, 70,163,113,249, 71, 19,198,118, 57,121,250,156, 95,120,120,136,251,145,227,167,163,221,221,156,101,181, 67, 67,229,121,249, +249,182, 25,211, 62, 19, 24,141,198, 31, 43,211,209,235,245,123, 78,156, 56,209, 63, 48, 48,208,243,222,189,123, 48,153, 76,176, +217,108,232,212,169, 19, 40,165, 18, 0,156, 64, 32,192,163, 71,143, 96, 54,155,179,226,226,226,210, 30, 63,126, 44, 1,176,176, + 34, 93,131,193,144, 84,250,255,160,160,160,214,189,122,245,130,213,106, 69,247,238,221,177,127,255,254,214,105,105,105,107, 74, +109,146,244, 10,158,132, 64, 41,173,227,239,239,191,187,232, 35,187, 58,183,251,250,250,134,133,134,134,206, 91,176, 96,129, 48, + 48, 48, 16, 28,199,193,205,205, 5, 90,173, 30,185,185,185,136,136,136, 64, 96, 96, 32,190,253,246, 91,160,112, 4,160, 93, 17, +182,228,228,228, 4, 0, 31, 70, 68, 68,136, 52, 26, 77,164, 94,175,159,213,169, 83, 39, 68, 71, 71,227,242,229,203, 31,105,181, +218, 60,185, 92,110,241,243,243, 27,206,227,241,228,102,179,121,127, 86, 86, 86, 22,171,162, 24, 12, 6,227, 53, 55, 88,222,222, +222, 50, 7, 7,135, 55,223,123,239, 61, 23,142,227, 32, 18,137,162, 60, 60, 60,230,231,228,228, 20, 84,245, 71,117, 58,221,246, + 45, 91,182,116,253,225,135, 31, 68, 61,123,246,172, 25, 16, 16,208, 20, 0, 6, 14, 28, 88,211,209,209, 17, 91,182,108, 49,235, +116,186, 87, 54,167,145,197, 98,105,219,164, 73, 19,228,229,229, 33, 49, 49,241, 94, 85,246, 61,112,224,128, 12,133,253,174, 42, +252,172, 34,172, 38,147,171,139,191, 63,239,217,233,211,230, 60,181,218,183,109,187,118,196, 98, 54,131,199,227, 33, 55, 55, 23, +201,201,201,112,118,113, 33,143,226,226, 20,107, 63,251,236, 64,181,250,245,197, 54,147,201,189, 10,102, 66, 75, 8,121,251,163, + 15, 63,216,179,117,235,111, 30, 74,165, 58,222, 65, 42, 53, 73,196, 66,239,143, 63,252,192,150,151,151, 55,138, 82,106,207,121, + 90,184,117,235,214,238,221,187,119,191, 19, 20, 20,228,149,157,157,237,163, 84, 42,109,121,121,121,124, 20,246,165, 34, 0,112, +250,244,105,168,213,106,171,205,102, 59, 7, 96, 46,165,212,100,111, 90,221,220,220, 28, 59,116,232,208,220,219,219, 27,106,181, + 26, 30, 30, 30,104,216,176, 97,115, 55, 55,183,237,121,121,121,154, 87, 89,184,143, 31, 63,238, 72, 41,109, 78, 41, 69,247,238, +221,237,218,135, 16, 50,168, 87,175, 94, 66, 30,143, 7,189, 94, 7,137,196, 1, 10,133, 19, 28, 29,157, 81,187,118,109,164,165, +165,161, 91,183,110,230,184,184,184,205,233,233,233,127, 84, 53, 77, 42,149,170, 75,139, 22, 45,222,155, 48, 97, 2,108, 54, 27, +250,245,235,135,148,148,148,175, 18, 18, 18, 14,120,120,120,244,127,231,157,119,220,220,221,221, 49,101,202, 20, 41,128,165,172, +138, 98, 48, 24,140,127,184,193,170,168,205, 51, 32, 32,160,137,135,135,199, 71,142,142,142, 46,167, 78,157,146, 3, 64,235,214, +173,193,113,220, 42, 63, 63,191,159,211,210,210, 46, 86,229, 71,243,243,243,213,190,190,190,251, 46, 95,190, 60,120,224,192,129, + 56,126,252,248,168, 34,131,133,203,151, 47,227,233,211,167,251,242,243,243,213,175, 34,131, 1, 1, 1, 61,218,183,111, 63,176, + 73,147, 38, 56,120,240, 32,108, 54,219,165,170,236, 95,122,196, 32,202, 24, 69, 88,252,153, 93, 98,124, 62, 8, 33,176, 90,173, + 0,128,156,236,108,196,198,196, 32, 47, 63, 31, 70,131, 1, 90,157,206, 86,187,122,117,189,202,100, 18, 18,160, 74,109, 92,148, +210, 36,133, 66,145,172,211,105,189,220, 60, 92,245,114, 7, 7, 40,213, 42,209,141,235, 87, 52,148,210, 39,118,106,152, 8, 33, +237, 14, 31, 62, 60,147,207,231, 15, 81, 40, 20,152, 48, 97, 2,191,125,251,246, 16,137, 68, 48, 26,141, 80, 42,149,216,178,101, + 75,182,213,106,173, 81,100, 72, 20,114,185,124, 35,159,207, 79, 85,171,213, 95, 86,246, 27, 18,137,164,125,223,190,125,249, 70, +163, 17,115,231,206,197,204,153, 51,209,189,123,119,254,181,107,215,218, 3,216,255,170, 10, 54,199,113,232,210,165, 75,233, 78, +238, 15,237,217, 79, 40, 20,214,174, 85,171, 22,178,179,179,145,157,157, 13, 79, 79, 79,248,249,249,193,219,219, 27, 75,150, 44, +161, 75,151, 46, 61,107,179,217, 54,103,100,100,228,188, 68, 89, 28,254,246,219,111, 15, 27, 60,120, 48,180, 90, 45, 78,157, 58, +133, 86,173, 90,225,219,111,191,245, 60,127,254,252,123, 77,154, 52,129, 80, 40,196,217,179,103, 97, 54,155,211, 88,245,196, 96, + 48,254,109,188, 46,253,175, 42,141, 96,185,186,186, 58, 57, 56, 56,140,235,221,187,119,235,254,253,251, 99,254,252,121, 37,223, +241,120, 60,108,218,180, 73,177,103,207,158,207, 3, 3, 3,219,113, 28,247,203,179,103,207,242,236,253, 97,142,227,246,108,221, +186,181,103,139, 22, 45,100, 29, 58,116, 8, 41,186,249,154,182,110,221,170,227, 56,110, 79, 85, 51,242,226,164,143,254,254,254, +245, 4, 2,193,192,222,189,123,215, 27, 61,122, 52,238,223,191,143, 45, 91,182, 60,174, 93,187,246,133, 42, 74, 39, 86, 50,138, +112, 65,101,209, 44,190, 88,156,171,204,200,112, 81, 4, 5, 9, 93, 29, 29,211, 15, 30, 60, 24,216,185,115,103,146,146,146,130, +252,252,124, 24, 12, 6, 92,191,126,157, 19, 0, 73, 2, 87, 87,146,116,249, 50,225,139,197,185, 85, 61, 6,129,190,174,161, 95, + 77, 27, 95,205, 96, 48,212, 85,169, 84, 86,161, 80, 40, 12,240,113, 73,169, 98,225, 54,202,229,242,198, 0, 4, 28,199,233,220, +220,220,100,199,142, 29,131, 88, 44, 6, 33, 4, 81, 81, 81,112,112,112, 16,201,229,242,100, 0,240,241,241, 17,175, 90,181,202, +121,196,136, 17,231, 43,211,110,223,190,189, 32, 56, 56,184,107,237,218,181,113,233,210, 37, 60,124,248,240,217,149, 43, 87,252, + 27, 55,110, 12,127,127,255,174,237,219,183, 63,116,230,204, 25,235, 43,186, 72, 95,170,147,187,205,102,163,132, 16,240,120, 60, +112, 28,135,236,236,108,212,168, 81, 3, 43, 86,172,192,146, 37, 75,126,124,217, 62, 82, 17, 17, 17,162, 6, 13, 26, 12, 28, 60, +120, 48,158, 60,121,130, 5, 11, 22,228,103,101,101, 93, 58,118,236, 88,143, 9, 19, 38,240, 91,181,106,133,220,220, 92,172, 91, +183,206, 26, 29, 29,189, 51, 51, 51,115, 15,171,106, 25, 12, 6,227, 53, 52, 88,254,254,254,189,220,220,220,222, 27, 58,116, 40, + 63, 44, 44, 12,153,153,153,208,104, 10, 12,245,234, 69,114, 0,143,138,197, 34,179, 92, 46,199,216,177, 99, 17, 21, 21,213,244, +243,207, 63,111,226,227,227,179, 41, 35, 35, 99,151, 61, 63,156,153,153,169,243,245,245,221, 57, 97,194,132,133,183,110, 69,215, + 0,128,107,215,174, 61, 77, 75, 75,155,150,153,153,169,171,162,185, 42,158,204,146, 72,165,210,171,161,161,161, 9, 61,122,244, +112,234,223,191, 63, 60, 61, 61,113,243,230, 77,124,251,237,183,113, 38,147,105,230,171,186,129, 87, 5,171,209,152,113, 99,239, + 94,199,246,111,190,233, 52,177, 87,175,197, 31, 76,152,240,195, 87, 95,125, 37, 8, 11, 11, 35, 58,157, 14, 87,175, 94,165,187, +118,237,178,172,255,250,235,165,144,203,133,151,119,237, 18,155, 76,166,164, 42, 70, 71,218,245,236,222, 46,108,241, 15,203, 97, +208, 23,224,234,165, 63,144,159,159,141, 85,171,119,135, 5, 4, 4,180, 75, 77, 77, 61, 91,133,227, 89,251,248,241,227, 94,148, + 82,136,197, 98,204,157, 59, 23,126,126,126,112,114,114,130, 70,163,193,228,201,147,157, 63,249,228, 19,103, 0,184,127,255, 62, + 20, 10,133, 93,186, 49, 49, 49,141,198,143, 31, 47,179,217,108, 56,114,228,136,153,207,231, 47, 62,126,252,248,162,250,245,235, +139,218,183,111, 47, 91,191,126,125, 99, 0, 87, 94,149,193,122, 25,108, 54, 91,226,177, 99,199,162,134, 12, 25, 66, 5, 2, 1, + 81, 42,149,112,118,118,198,138, 21, 43,116,233,233,233, 47, 61, 65, 91,110,110,174,176,110,221,186, 34,142,227,176,115,231, 78, + 60,123,246,236,211,204,204,204,108, 63, 63,191, 35, 83,167, 78, 29, 23, 22, 22, 22,240,232,209,163,103,122,189,126,101, 90, 90, + 90, 42,171,154, 24, 12, 6,227,245,141, 96,189,121,228,200, 17, 62,199,113, 88,189,122, 53,110,222,188, 73,115,114,114,102, 18, + 66, 54, 58, 57, 57,217,114,114,114,222, 28, 51,102, 76,255,153, 51,103,146, 54,109,218,224,242,229,203,164, 70,141, 26, 3, 1, +236, 42,117,163,238, 92,209, 92, 25, 42,149,234,122,102,102, 70,141, 82, 19, 75,214,144, 72, 28,174, 87,114,243,127, 78,243,197, +201, 44,249,124, 94,179,185,115,231,106,125,125,125, 77,247,238,221,195,202,149, 43,185, 27, 55,110,156, 22,139,197,171,210,210, +210,140,246,104,190, 10, 74,107,138,173,214,155,155,167, 78,173,211,168, 95, 63,238,189, 41, 83, 10, 68, 82,233,199,139,151, 47, +255, 76,169,209,248,129, 16,234,238,236,156,180,122,238,220, 5,221,251,246, 45,184,127,246,172,195,173,227,199,133,158, 22,203, +237,170,164, 51, 53, 53,245,108,104,205, 32,108, 88,243, 3,204,102, 35,210,159, 21,250,179,156, 92, 21, 42, 50, 87,101,105, 90, +173, 86,213, 27,111,188, 33, 2, 32, 29, 57,114,164, 56, 43, 43, 11, 53,107,214, 4, 0,168,213,106,252,241,199, 31, 8, 15, 15, + 7, 0,220,189,123,183,228,125,101,233,116,116,116,236,220,182,109, 91, 36, 37, 37,225,193,131, 7,151,158, 61,123,166,244,247, +247,191,148,156,156,220,190, 73,147, 38,216,181,107, 87,167,242, 12, 86, 85,207,145, 61, 6,171,156,188, 47,220,179,103,207,224, +203,151, 47,247,158, 50,101,138,160, 99,199,142, 0, 0,173, 86,107,160,148,218, 94, 70,179, 52, 22,139,165,120,210, 83, 29, 0, + 20,153,169, 47,255,140,230,159, 45,159, 76,147,105, 50, 77,166,249,191,160,249,111, 50, 88, 86,142,227,112,230,204, 25,236,222, +189,219,102, 50,153,166,167,167,167,199,148,250,126,125, 96, 96,224,249,129, 3, 7,126, 31, 27, 27,203,127,240,224, 1,236,185, + 1,149,198, 96, 48, 88, 94, 92, 42,216, 96, 48, 88,254,108,166, 54,108,216,128,140,140, 12,115, 74, 74,202, 9,171,213,186,231, + 79,142, 70,252,211,163, 8,215, 83,106,124,147,144, 19,179, 90,183,238, 50,243,248,113,201,123, 95,124, 97,124,123,244,232, 79, +109, 38,147,133, 47, 18,113, 98,185,156,103,147, 72,132,247,207,158,117, 88,246,254,251,110,122,163,241,200,230, 42,116, 28, 47, + 21,193,194,219,239, 77,130,190, 84, 4,235,242,245, 88, 84, 53,130,101, 48, 24,234, 2,128, 84, 42, 77, 6,224,243,214, 91,111, +129,227, 56,232,245,122,104, 52, 26,164,165,165,169, 70,143, 30,109, 3, 0,185, 92, 46, 24, 56,112,160,147, 93, 7,178, 90, 53, + 31, 62,159,143, 67,135, 14, 65, 34,145,156, 2, 0,137, 68,114,234,248,241,227,237,135, 15, 31,142,192,192,192,160,226, 73, 80, + 42,210,241,142,236,191,157, 2,161, 32,168, 85,120,165,163,150, 87,100,255, 59, 4,136, 43,154,229,253, 97,195,134, 13, 1, 59, +251, 93,149, 38, 59, 59, 91, 11, 96,157,183,183,247, 31,159,126,250,233, 91,205,155, 55,111, 51,115,230, 76, 66, 41,253,211, 11, +163, 83, 74, 97,179,217, 88,173,195, 96, 48, 24,255,102,131, 69, 8,249,189, 67,135, 14,195, 40,165,124, 30,143,183,229, 5,115, + 5, 0, 72, 73, 73,121, 26, 16, 16,176,186,122,245,234, 37, 11, 64, 87,241,134,147, 73, 8,249,150,199, 35,159, 21,254, 95,245, +137, 37, 75, 45, 73,242, 25, 0,194,227,241, 55, 70, 71, 71,127,145,156,156,156, 93, 85,195, 87, 22,175, 98, 20, 33, 0,108,165, + 52, 97, 24, 33, 71,167, 68, 70,118,238,254,254,251,168,215,189,187,147, 95,112,176, 77,111, 54,115,119, 47, 92, 32,151,118,238, + 20,221, 58,126, 92,168, 55, 26,143,236,166, 52,185,170,233, 76, 77, 77, 61, 91, 51, 36,224,216,160,129, 61,187,134, 84,247, 3, + 0,196, 39,164, 33, 39, 79,117,172, 42,230,234, 5,163,213,111,197,138, 21,251, 69, 34,145,160,244,146, 51,102,179, 57,175,216, +132, 17, 66,252, 86,175, 94,253, 59,143,199, 75,170, 76, 47, 38, 38,230,216,172, 89,179,186, 63,125,250,244, 92, 74, 74, 74, 42, + 0,196,199,199,167,250,249,249,237, 78, 75, 75,235,145,156,156,124,152,218, 17,122,122, 97,177,103,220,191,176,195, 1, 64, 84, +241, 98,207, 47,187,214, 96,105,138, 76,249,226,128,128,128,125, 61,122,244, 24, 70, 8,201,248, 51,122, 10,133,194,170,215,235, +173, 28,199, 9,204,102, 51, 85, 40, 20, 86, 86,253, 48, 24, 12, 70,149,104, 2,160,120,229,144,226,192,137,231, 11,239, 77, 0, + 74, 47,229, 87,252,127, 54,128,235,165, 52, 74,127, 94,217,190, 0,144, 3,224, 78,209,103,127,206, 96,165,166,166, 30,134, 29, +139, 57,219,187, 93, 5, 6,105, 58, 33,100, 89,177, 89,250,179, 26, 86,171,245,149,172,223,198,227,241, 18,250,244,233, 83,165, +237, 43,219,230,119, 74,147, 62, 38,100,211,193, 31,127,108,112,100,229, 74,127,155,213,234, 78, 0,202, 23,139,115, 77, 38, 83, +162,167,197,114,187,170,145,171,210, 60,137, 79,237, 6, 0,181,107,215,166,113,113,113,127,122, 52, 6,165,244, 54,128,192, 74, +182, 73, 3,208,198, 30,189,148,148,148,253, 40, 99,164, 96, 90, 90,218, 1, 0, 7,236, 77, 87,201, 98,207, 0,143, 35,220,160, +186,173, 7,239, 4,192, 21, 47,246,252, 42, 73, 77, 77,141, 7,240,245,159,213,121,242,228,137,169,122,245,234,123, 23, 46, 92, +216,255,206,157, 59, 7, 83, 82, 82, 76, 96, 48, 24, 12, 70,149,204, 21, 33,228, 96,209,189,167,119,209, 67,254,193, 23,223, 23, +111, 83,188, 93,233,109,138, 53, 94,252,188,162,125, 1, 96,218,180,105, 95, 44, 88,176, 64, 6,192,238,190,184,130,255,133,163, +246, 42, 22,181,125,213, 11,227,166,166,166,174,249, 43,242,186,188,208, 64, 93,249, 43,143,103,108,108, 44,121,157,175,178,226, +197,158, 75, 17,249, 79, 72,119, 66, 66,194,166,246,237,219,255,150,146,146,194,162, 87, 12, 6,131, 81, 53, 60,203, 50, 68,229, +248,129,222, 21,125,255,220, 3,123, 25,219,149,245, 63, 33,228,224,130, 5, 11,122, 87, 37,193, 60,118,206, 24,140,255, 63,254, +142, 81,172, 12, 6,131,193, 40,155, 23,163, 86,197,166,235,197,255,167, 77,155,246, 5,170,208, 60, 8, 20,206,204,221,185,156, + 31,181,123,116, 0, 33,164,243, 75,100,234, 4,211,100,154, 76,147,105, 50, 77,166,201, 52,255, 93,154,149,105,151,179,127,175, +242,154,244, 42,106, 46,124,241,125,101,251,218,177,237, 31, 85, 57, 16,127,217, 11, 64,103,166,201, 52,153, 38,211,100,154, 76, +147,105, 50,205, 63,249,106, 66, 41,237,133,194, 85, 78, 40,165,180, 23,165,180,251,180,105,211,166, 23,127, 54,109,218,180,233, +148,210, 78,197,219, 21,109, 83,178, 79,241,103, 47,254,125,241,179, 74,182,181, 59,205,255, 19,125,176, 24, 12, 6,131,193, 96, + 48, 42,224, 58,128, 38,165,162, 75,217, 0,238, 46, 88,176, 32,191, 84,223,168,108, 0,183, 1,212, 47,218, 46,187, 40,144, 84, +186,239,148,169,232,127, 83, 25,219,152,236,217,214, 94,152,193, 42,135, 6,190,252,175,131, 2,188, 26,151, 68,249, 10, 39,135, + 4, 87, 52,139, 64,201,116, 2, 28, 7, 74, 41,210,178,148, 55,239,100,210,175, 94,246,247,194,252,137,155,151,131,195, 82,142, +210,214, 69, 31,157, 85,229, 26, 39,221, 83, 81,165,189, 26,117,124, 72, 29, 7, 30, 62,229, 40,234, 1, 0,143,224,142,129,195, +119, 15, 51,232,195, 63,123, 60, 8, 33,164,174, 39,198,138,165,178,161,206, 46,174,181,242,243,115,226,204, 6,227,142, 7,217, + 88, 69, 95, 98,218,244,154,110,164, 57, 71,241, 5, 0,158,144,135,239, 99,115,233,105, 86,234, 24, 12,198,255, 19,252, 63,185, +127, 89, 83, 0,253,217,193, 69,148,157, 22,187, 76,214,139, 92,179,115,187,255,119,170,100,176,234,122,145,247, 65, 48, 27, 0, + 5,197,156,251, 89,244,151, 42,237,239, 71, 58, 59,240,249,107, 1,240, 13,102,219, 20,202,225, 92,153, 55,115, 30,218, 58,136, +248,223, 3,224, 12, 54,219,187,247,211,236,239, 15, 22, 25, 64,186, 11, 56,222,102,142, 82,161,141,163, 27, 65,113, 80, 33,194, +197,203,169,212, 80,149,180, 6, 5,120, 53,222,123, 45,189,235,233, 95, 38,162, 89,189,154,160, 54, 43,192, 89, 32,107,243, 41, + 78, 46,121, 11,205,234, 4,129,114, 22,128,179, 66,209, 99, 49,122, 68, 58,191,244,197, 17,230, 79,220,130, 61,188,238,173, 89, +179,214,199, 47, 36,130,112, 86, 51, 98,174, 29, 27,241,201,103, 51, 59, 70, 58,147, 72,123, 76, 86,125, 63,242, 94,205, 26, 97, +159, 78,154,253, 3,223,239,255,216,187,202,240, 42,142, 54,122,230,238,213,220,184,123, 66,144, 36, 36, 4,119, 2, 4,247, 2, +193,165,133,210, 22, 74, 41, 90,188, 64, 75,177, 22,167, 72,145,175, 5,138, 83,164, 80, 36,184,107,128, 16,146, 16, 8, 18,119, +151,171,187, 59,223,143, 72, 3, 68,110, 2,245, 61,207,179,207,189,107,103,103,103,102,103,206,188, 51,243,142,147,171, 49,199, +106,216,164,231,225,141,215,125, 55,255,151,134, 78,100,229,131, 4,186,205, 80, 33,229,107,139,177, 98,185,108,144,145,194,184, + 78, 65, 65,238, 83, 78,167, 63,224,231, 36,238,190,124,197,154, 70, 1, 93,122,154,112,185, 73, 34, 61, 15,223,253,251,246,186, +127,191, 97, 99, 79, 66,200,123,148, 82,190, 42,239,204, 83,204,136,220,249, 73, 79,137,152, 33, 62, 31,110,101, 80,133,169,175, +165,225,107, 79,134, 17, 90,185,155, 8, 74,112, 37, 44,153,238,169,206, 51,124,236,201,255, 8,133, 23, 8, 14, 18,138,189,143, + 82,104,138, 80,206, 9, 16,240,239,130, 72, 36,186,192,243,124,135,119,201, 73, 8,105, 73, 41,189, 41,196,238,127, 19, 85,179, + 96, 17, 44,122, 20, 21,107, 9, 78,135,122, 94,181,190, 1, 80, 37,129,165, 96,152, 29,119,158, 36, 59,128,213, 97,235,226,241, +251,180,122,128,213,235,192,177,122,112,172, 30, 44,171, 3,167,215,131,234, 53,152,255,227, 5, 64,155,139,166,126,158, 59, 0, + 56, 26,250, 12, 9, 21,253, 28,124, 53,200,138,104,179,177,103,211,210,207, 99, 83,243, 62, 63, 27,146,144, 86,207,158,204, 14, + 75,193, 79, 85, 17, 2, 23,126,152,132, 93,135,127,139, 91,251,191,252, 8,158, 82, 88,153, 25,121,143,232,253,200,117,231,209, + 11,177,107,118,168, 35, 0,192,220, 88,230,253, 65,200, 19,183,183, 73, 4, 59,133, 98,205,230,141,223, 59, 56, 90, 27, 17,246, +250, 50,176, 28, 7, 87,247, 94,204,236, 9, 35, 28, 23,173,222,182, 26,192,168,138,238,175,107, 79,124,189,106,251, 76,219,241, +219,117,183,130,220, 20,109,208,174, 57, 81, 84, 3,189,131,179,143,228,155,165,171,152,185, 51, 39, 77,173,107, 79,110, 69, 36, +211,176, 74, 10, 3,145,143, 29,142, 46, 93,182,162, 65,199, 30,189, 77,248,188, 84, 70,157,159,231,181,245,199,109, 95,213,109, +208, 92,217,214,207, 69,154,114, 96, 28, 81,229,102, 64, 39, 82,200, 59,214,235,108,166, 26, 57, 84,191,117,251,174, 9, 0,214, + 85,169,249, 87,170,123,154,231,171,223,154, 36, 20,109,239,223,188, 48,150, 75,184, 3,202,233, 1, 78, 87,242, 11, 78, 15,202, + 23,254,182, 24,247, 35, 0, 84, 75, 96,137, 40,186,158,189,122,199, 49, 57, 41,177,217,234, 21, 75,102,251,218,145,147,224,240, +115,120, 6, 46, 85, 85, 88, 10, 16, 32,224,239, 11, 66, 8, 75, 41, 21,191, 99,206,158,148,210, 19,111,201, 49, 29,192, 71, 69, +187,219, 40,165,203,223, 65,184, 92, 0, 56, 20,237, 38, 81, 74,133, 53, 80,255, 82,129, 5, 40, 64,121,224, 96, 63, 0, 48,170, +234,195, 40,160, 0, 97, 0,125, 62,250,246,232, 2, 27, 59, 7, 64, 95, 0,232, 10, 0,189, 10,208,231, 3,122, 21,210, 18,163, + 1, 93, 62,240,236, 36, 88, 74,229, 85,126, 43, 77, 54, 16,121, 0,157, 26,187,193,214, 92,129, 73,125,125,109,182,156,138,220, +182, 45,232,113,103, 0, 67, 12, 10, 43,165,104, 81,191, 14,214,110,203,143,248, 53, 56,165, 27, 0,244,106,100,115,170,133,175, +187,235,154, 29,234,136,223, 66, 50,186, 3, 64, 15, 63,243,147,205,189, 29,221,248,183,176,238,242,148,182,117,170, 81,135,112, +247, 55,131,207,137, 67, 78,142, 10,113, 47,118,194,210,185,137,136,227,209,190,178,251,141, 24,204,154,248,229,183,146,130,156, +100, 45,167, 75,229,108, 68,153, 98,177,156, 39, 72,184,164,201,231,179,184,201, 31,143,228,190,152,191,100, 22,128, 17, 21, 90, +131,236, 48, 97,229,202, 53,245,219, 52,173,107,151,244,203, 36,146,151,153, 12,150, 81,202,251,182,106, 3, 11, 79, 95, 62,249, +226, 74, 34,171,213, 25, 22,214,181, 16,127,125, 55, 94,222, 60, 68,252, 27, 7,202,127,218, 35, 29, 89,158,192,242,180, 37,254, +221,218, 53,223, 87,203,205,201,145, 82, 30, 60, 79, 65,121, 14, 31, 14,236,138,217,251,159,129,227, 56, 12,232,230,223,233,219, +177, 29, 41,207,243,160,148, 71,108, 82,122,193,249, 91, 17,157,162, 50,232, 45, 67, 44, 83, 13, 91,118,240, 15, 9,190, 89, 87, + 31,121, 12, 77, 71, 44,141, 32,192,213, 82,121,206,255,222,233,159,234, 2, 63, 86,183, 16, 34, 62,118,224, 94,158, 90, 6,183, +118,159, 48,155,247,156,178,205, 78,141,255,224,151,157, 27, 7,110,218,188,121, 23,128,113, 66, 49, 34, 64,192,191, 3,148,210, +119, 46,178,162,162,162, 18,223, 70,100,185,184,184,180, 3,240, 93,241, 72, 12, 66,200,119, 30, 30, 30,243,127,111,160,190,210, +198,203,230, 56,110, 68, 92, 92,220,229,138, 56,123,247,238,237, 4,192,163, 20,167, 7, 33,196,163,172,107, 45, 44, 44,184,214, +173, 91,191, 60,126,252,120,130,144, 67,254, 88,129, 21, 17,115, 96, 82, 99, 77, 98, 30, 0, 68, 24,144, 89, 95,233,218, 83,235, +185,101,219,191,122,127, 89,189, 26, 86,200,205,215, 34,232,238, 75,112,156, 30, 28,203, 22, 89,178, 88,112,172, 30,221, 26,218, +160,181,122, 28,214, 29,127, 12,150,227,151, 86,196,249, 58,116,148, 31,214,168,243,224,253, 60, 79,101,114,137, 40,219,203,213, +218,110,218,128,134,162, 73,125,235, 65,165, 99, 7,251,218,147,243, 97,201,116,171, 65,156,252,155, 46,139,104, 89,199, 56,182, +210,119,175,192,250,212, 98,104,239, 46,102, 84,147, 13,125,218, 51,228, 22,232,241, 44, 93,143, 36,117, 22,228, 36,209, 32, 78, +158,162,129,179,163,163,241,181,125, 51, 95, 88,139,115,196,118, 98, 86, 34,163,172,132,227, 41,131,172, 48,141,117,221, 46,226, +226,113, 89, 21,133,211, 72,105,250,126,187,174,189,204, 99,118,127, 66,140,188,186,193,174,177, 43, 94, 92,222,142,148,187,199, +145,151,151, 67,228,217, 89,176,183,174,141, 30, 35,134, 96,249,144,102,200,205,201, 5,147, 24,101, 46,147,200, 45,202,227,164, + 28, 70,172,252,118,177,163,152, 17, 21,198,103,241,198,233,161,210,104, 0,142,133, 66,204,131,208,226,115,122,112,122,157,178, + 65,224,204,241, 0,110, 85,246,238, 97,201,116, 79, 61, 59,210, 22,188,190, 46,213,171, 64,128,171,143, 82,104,137,232,241,181, + 39,195,154,116, 27,221,150, 18, 92,169, 78, 26,249, 89,163,119, 83, 15, 19, 99,227,156, 8,196, 29,252, 28, 81, 80, 80,251, 54, + 31, 97,216,135, 19,148, 91,182,108,233, 67, 8,249,180,244, 24,180, 63, 98,241, 83,129, 83,224,252,167,114,154,155,155,215,172, + 81,163,198,124,189, 94,223, 78, 42,149,218,235,116, 58,240, 60,159, 36,147,201,174,188,124,249,114, 97,118,118,246,243,191,219, +187,135,132,132, 24, 44,178, 12,225,148, 72, 36,120,252,248,241, 83, 67, 69,214,235,156, 18,137,228,231,171, 87,175, 98,255,254, +253, 0,128,200,200, 72,120,122,122, 26,151,117,239,139, 23, 47,140, 3, 2, 2,126,198,107, 43,112,188,206,249,240,225,195,154, +199,142, 29,195,193,131, 7, 1, 0,143, 31, 63,134,151,151, 87,153,225,185,122,245, 42, 51,124,248,240,154, 0, 18,254,232, 52, +250, 87, 10,172,162,245,117,201,235,255,203,192, 51, 55, 75, 89, 99,168, 57, 0,120, 86,213,135,133, 37,209,111, 27, 58, 74,186, +159, 59,184,161,157, 66, 42,194,130,173,211, 98, 83, 51,114, 91,138, 9,120, 0, 96, 41, 68,150, 38,178, 27, 75, 63,104,232,150, +153,167,198,175,183,227, 47, 63, 74,174,154, 41,244, 81, 2, 61, 3,192,226,247, 10,146,120,125,176,252,204,222,189,179,186, 55, +152,210,183, 1,142, 94,127, 57, 5, 64,165, 94,218, 41,207,131,242,108,201,160,246,162,166, 2,192,179, 40, 61,166,155, 7, 45, + 60,198, 87,205,130, 21, 64,136, 56,211, 14, 61,172,148,178,245, 99,199,126,108,166, 79,125,130, 12,173, 20,177,153,106, 36,169, + 36,200, 19,219, 33, 62,226, 33, 39, 34, 56, 83,185,149, 5, 57,224,212, 22, 86, 50, 19,145, 95,151,241,206, 57,167,231,100,202, + 40,203,152,245, 91,100,145,118,110,213, 75, 86,149,154, 79, 8, 42, 93, 68,219,220,220,194, 83,157,254,146,201,206, 76,131,133, + 67, 61,116, 31,220, 27, 95,247,242, 69,110, 78, 62, 82,175,255, 70,235, 56,154,145,232, 43,187, 48,183,135, 15,210,147, 19,161, +209, 3, 36, 95,147,161,214,170,243,202,141, 71, 17, 54, 79,254, 98,198, 48,119, 71, 91,227,226,201, 2,148,231,208,208,167, 22, +186,180,107,129, 51, 87,175,225,206,195, 72,240, 69,147, 5, 40,207, 35, 46, 37, 51, 89,173,227,182, 87, 41, 66, 57, 22, 84,175, + 46, 83,128,161, 26, 93,131,245,237,137,146, 3,230,181,172, 99, 58,102, 86,111,119, 83, 99, 57,129, 90,207, 65,173,213, 35,247, +218,122, 88,215,168, 15,165, 66, 65, 26, 67, 37, 6,160, 23,138, 18, 1, 2,126,199,160, 65,131, 20,201,201,201, 23,123,245,234, +229,219,165, 75, 23,101,219,182,109,145,159,159,143,160,160, 32,228,231,231,187,187,186,186,186, 7, 5, 5, 5,182,108,217, 50, +204,197,197, 37,224,192,129, 3, 85, 25, 35, 43,198,239,131,212,121, 0, 44, 33, 4, 69,199, 8, 0,254,109,214,161,149,201,100, +136,142,142,126,103,150, 44,169, 84, 10,181, 90,141,248,248,248,167,213,177,100,229,229,229, 73,157,157,157, 97,107,107, 11,142, +227,144,159,159,143, 35, 71,142, 32, 59, 59, 27, 60,207,195,200,200, 8,139, 86,110, 69,196,189,139,184,117,235, 22,178,179,179, +165,149,113,198,197,197,145,134, 13, 27, 66,163,209,128,101, 89,168,213,106,156, 61,123,182,100, 95, 44, 22, 99,198, 55,171, 17, +121,247, 34,238,223,191,143,184,184,184, 63,101,117,144, 42,104,145,127,165, 5,235,173,193,113,236,236, 45, 59,246,222,152, 61, +110, 8, 38, 12,237,236,186,112,195,161,206, 97,169,116, 7, 0,248,218,146, 15, 70,118,168,227,102,161,148,224,235,221,119, 1, + 74,103,191,237,243, 66,211,105,100, 61, 7, 50,229,240,173,232,139,115,134, 52, 70, 45, 71, 51,207,218,181,137, 44, 42,202,128, + 53,255,120, 22,150, 38,114,239, 94,141,108, 78,129,231, 97, 97, 42,175, 11,142,133,133,137,220,187,135,159,249, 73, 0,176, 80, + 74,235,150,101,233, 42, 15,205,220,164,159, 40,229,226, 79,140,155, 56,186,141,234,211,197,168,103,159, 64, 35, 19, 9,139,244, + 91, 65,200,145,184, 64,111,229, 14,141, 62, 3,113,207,163,184,115, 55,195,227,211,114, 53,211, 42, 13, 38,197,229,248,231,143, +109,107, 54,232, 98,153,118,124,110, 74,205,209,187, 61, 68,224, 69,185,187,250, 39, 27,219, 53, 55,186,253,244,121, 30, 79,223, +180,224,188,142,156,236,236,151,122, 14,142, 42, 78,108, 26,117,225, 39,204,234, 81, 31,153, 25, 41, 80,235, 88,100,171, 88,157, +131,133, 66,174,121, 30, 10,141,142,133, 86,207, 67, 98,225,140,160, 27, 15,211,120,189,190,220,181, 40,163,210,232,125, 0, 38, +165,143,213,182, 37, 13,103,154, 25,221,135, 94,133,232,184, 4,236,248,237, 70,227,162,235,170,223, 58,229,217,194,110,230, 82, +150, 43, 66,209,182, 58,131,219,125,236, 73,115, 35,133,244,251,239,166, 12,247,109,229,101, 37,231,227,110,128,240, 58, 24,115, + 98,168,100, 28,204, 93,107,129,215,230,210, 2,181, 58,235, 17, 32,120,102, 23, 32,160, 20,234,214,173,235, 96,110,110,254,232, +139, 47,190,176,234,223,191, 63, 14, 31, 62,140,156,156, 28,108,223,190, 29,107,214,172,193, 87, 95,125, 5,189, 94,143, 45, 91, +182, 40,127,249,229,151,230, 27, 55,110,140,115,119,119,175, 23, 29, 29, 93,217,130,234, 4,128, 28,128,164,168,238, 34, 0,248, + 19, 39, 78,160,103,207,158, 56,113,226, 4, 95,116,140, 35,132,232, 41,165,154,234, 10, 44,153, 76,134,236,236,236,119, 38,178, + 76, 76, 76, 32,147,201,144,155,155, 91,101,145,197,178, 44, 19, 23, 23,135,236,236,108,116,233,211, 7,171,151, 46, 69,135, 14, + 29,208,165, 75, 23, 80, 74,113,246,236, 89,116,110,227,135, 33,239, 5, 32, 60, 60, 28, 44,203, 26, 20,222,164,164, 36, 36, 39, + 39,163,123,159, 62,216,186,113, 35, 90,180,104, 1,111,111,111,176, 44,139,139, 23, 47, 98, 96,183, 54, 80,244,235,140,200,200, + 72, 33, 83,255, 83, 4, 86,104, 10,189,233,107, 75,142, 15,237,214,188,119, 31,127, 95,108,221,119,110,177,175, 47,217, 11, 0, +214,166,242, 69,239,119,168,133,176,152, 76,156,187,159,112, 60, 44,245,221,204,190,224, 57,216, 88,155, 41, 1, 70, 6,149,142, +103,205,158,161,210,129,201, 60,165, 80,182,155,137,145,125,194, 92, 91,248,186,186, 22,207, 34, 52,233,185, 10, 31, 60,124,234, +214,204,219,193, 13,156, 30,224,244, 48, 27,178, 27,248,198,184,210,112,248,215,148,159,153, 57,109, 74,235, 30,253, 6, 27,201, +148,230,224,114, 98,161, 79,122,136,244, 39,151,145,175,244, 68, 82,244, 51,236, 63,125, 43,251, 73, 92,122,142, 72,132,160,228, +108,205,244,168, 12,154, 87, 25,175, 90,143,165,243,231, 78,235,181,127,239, 62, 83,121, 45,127, 18,181,190,103,182, 76,204,202, +109,107, 54, 17, 21, 40,108,232,146,237,251,204,242,181, 88, 86, 25, 79, 65,126,206,161,179, 65,167,134,212,169,233,111,250,226, +206,111, 80,169, 53,208,232,129,122,205, 3,192,113, 84, 70, 68,132, 55, 99, 24,146,146,158, 9,162,231,146,175, 60,120,145,120, +245,193, 51, 70, 99, 90, 57,247, 43,153,142, 48, 19,251, 4, 52, 2,244, 42,188,215,174, 62, 86,239, 58,247, 57,128,209,111,151, +200,133, 22, 44, 10,248,215,179, 35, 63, 0,240,191,123,100, 77,221,166,253, 38,163, 42, 22, 44, 63, 91,210,195,175,182,211, 79, +171, 23,205,180,178,118,241,100, 8,175, 7,117,104, 0,228,196, 81, 18,119, 3,230,206, 45,192, 57,181,193,150,117, 43,242,120, +158,238,173,142,139, 10, 1, 2,254,205, 80,171,213,135,190,253,246, 91,171,222,189,123, 23, 91, 96,112,227,198, 13,108,219,182, + 13,198,198,175,150,147, 61,123,246, 4,165,212,106,193,130, 5,135, 0,180, 42,143,179,101,203,150,125, 54,108,216,144,208,168, + 81,163,103, 69, 34, 75, 10, 64, 20, 26, 26, 42,138,141,141, 37,150,150,150,212,201,201, 73,159,144,144,192, 3,224, 62,252,240, + 67,198,196,196,164, 78, 94, 94,222,165,234, 10, 44,153, 76,246, 78,198,100, 73, 36,146, 18, 94,169, 84, 10, 74,105,149, 68, 22, +199,113,226, 19, 39, 78,224,238,221,187,248,170, 81, 35, 76,113,118,134,149,149, 21, 46, 94,188, 8, 74, 41,140,141,141,145,145, +145,129,189,123,247,162, 99,199,142, 96, 89, 86,106, 8,239,193,131, 7, 17, 28, 28,140,111,154, 54,197, 20,115,115,152,152,152, +224,236,217,194, 94, 63,185, 92,142,232,232,104,156, 61,123, 22, 1, 1, 1, 66,166,254,163, 5, 86, 0, 33, 98, 98, 15, 7,157, + 86, 5,202, 82,128,192,201,215,151, 72,195,194,168,174,170, 15, 21,137, 48,119,221,142,227,189, 86, 77,238, 67, 62,233,219,216, +105,225, 79, 23, 62, 5,128, 49, 3,188,156,149,114, 49,214, 30, 13,163, 34, 17,230,190,139, 23,244,245, 37, 82,145, 8,159,118, +105,225,141,132, 44, 45,162, 18,178,206,135, 81,106, 80,151,206,185, 85, 35,177,243,215,139,177,107,118,170, 35, 40,165,176, 48, +145,123,127, 16, 18,229,246,211,137,224,152,149,251,213, 17,148,167,176, 80, 74,234,142, 14,111, 83,233, 44,194,102,110,210, 79, +102,207,156,222,166,239,232, 47, 20,108,196, 1,104,163, 78,131,215,169,144,163,147, 34,139,113, 64, 92, 76, 12,150,108, 57, 30, +155,147,175, 29, 18,154, 82, 53, 97, 25,153, 70,243,124,109, 73,255, 37, 95,207, 57,179,116,209, 2,147,130,103, 23,243, 24,194, +170, 24,247,246,226, 69, 95,173, 34,185, 26,237,224,168, 12,154, 91, 25,143,198, 20,203,190, 93,185,174,215,199, 35, 2, 35,188, + 60,219, 91,115, 9,207,173,213, 57, 57, 41,187, 79, 5, 59, 20,181, 12, 9, 0, 68,197,165, 35, 53, 59,159,229, 88,253, 37, 83, + 9, 22, 62, 50,196, 26, 88,132, 90,246,196,182,127,219, 6,195,109, 77,165, 80,229,101,193,206, 84,130,110, 45,106, 15,175,101, + 79,102, 62, 75,166,169,213, 78,104, 94, 15,170, 87,225,230,178,142,117, 41,167,175, 11, 78, 15, 93,200,207, 85,183,132, 17, 76, +153,208,206,196,204, 82,251, 66,132,124, 99,192,200, 6,196,204, 29, 48,247, 32, 18,159,193, 72,120,246,136,253,124,248,136,244, +231, 47,227,254,103, 99,132,229, 66, 17, 34, 64,192,171,136,142,142,126,127,246,236,217, 87, 91,180,104, 97,111, 99, 99,131,250, +245,235,227,215, 95,127,197, 23, 95,124, 81,114, 77,163, 70,141, 64, 41, 69, 70, 70, 6,190,253,246,219,164,132,132,132,247, 43, +226,140,136,136,120,188,115,231,206,182,190,190,190, 58,169, 84,154, 5, 64,158,149,149,165,200,200,200, 32,106,181, 26, 60,207, +243,230,230,230, 92, 66, 66,130,126,200,144, 33,154,235,215,175,215,206,207,207,143,121, 27, 11,150,171,171,107,104,122,122,122, + 54, 33,228,173, 92, 56, 72, 36, 18,136, 68, 34, 72,165, 82,216,216,216,216,230,229,229,241, 0, 50,171,227,194,129,101, 89, 52, +109,218, 20,167, 47,223,195,137,115,215,145,147,240, 24,159,126,252, 62,234,215,175,143,211,167, 79, 87, 59,205, 26, 54,108,136, + 83,103,175,226,234,221, 7,136,142, 12,193,231,159,126,140,122,245,234,225,212,169, 83, 66,134,126, 7, 2, 43,128, 16, 82,220, + 18,127, 67,174,250,216,146,134, 78,117,100, 63, 47,232, 81,219, 71,210,101, 1,136,196, 8, 7, 60, 79,181,153,187,100,125, 68, +125,123, 50,226, 97,114,229,179,189, 94,177, 98, 37,211, 71,245,236,200,158, 7,225,117,135,191,215,194, 21, 91,127, 85,206, 3, +128,193,109,107,226,246,147, 84,220,138, 76,217,243, 40,133, 62,122,219,151,171,111, 79,148,160,216,243,237,196,190, 1,238, 46, + 14,216,118,248, 42, 8,193, 33,131, 42, 90, 74,105, 11, 95,119,172,217,249,250,140, 65, 7,183,149,251,213, 17,167, 67,115,122, + 0, 64, 87, 31,227,147,205,106, 91,186, 85,102,201, 48,146,137,199,246, 8, 28,169, 96, 35,127, 5, 94,158, 5, 97, 53, 80,233, +120, 36,166,229,162,192,220, 21, 23,111, 60, 80,101,171,181,147, 31,165, 84,207,106, 23,150, 74,159, 53,114, 36, 49,249,249, 42, + 71,165,109,109,181,152,240, 52, 79,205,227,118,216,203,236, 71,137,244,177, 33, 28, 81, 81, 84,219,202,133,180,253, 97,199,254, +249, 18,169,108, 48, 67, 64,236, 44,140,109,127, 88,245, 13, 76, 77, 77,192,107,243,128,252, 84,244,255,108, 73,234,195,120, 93, + 77, 0,240,178, 33, 38,237,106, 73,119,136, 69, 36,238,252, 83,237,151,149, 61,131,232, 49,110, 68,183, 70, 18, 94,155,143,137, +223,238,195,230,153,125, 49,178,147,143,228,183,107,145,227, 0, 44,172,110, 90, 83,142, 5,213,171,208,106,206,229, 8, 2, 92, +165,128,255,221,253,139,234, 2,247, 12,230,104, 66,136, 68,236, 72,124, 26,184, 25, 75,249,184,107,224,227,174, 81,198,181, 13, +136, 91, 59, 66, 28,154,210,239,191,251, 42,127,235,214,109, 65,188, 8, 95, 87,230,242, 66,128,128,255, 42, 40,165,207, 44, 44, + 44,186,247,236,217,243,220,233,211,167,173,252,252,252, 0, 0,119,239,222, 5, 0, 52,109,218, 20, 94, 94, 94, 72, 78, 78,198, +208,161, 67,211, 18, 19, 19,187, 83, 74, 43, 28,211,155,155,155,251,236,224,193,131,118,121,121,121,141,231,205,155,151,236,238, +238,158,163, 86,171, 73, 86, 86, 22,207,178, 44, 44, 45, 45,101,141, 26, 53, 66,235,214,173,243,174, 95,191,238, 17, 27, 27,155, + 3,224, 69,117,194,223,183,111, 95, 92,190, 92, 56, 9,239, 93,248,197,146, 72, 36,240,243,243,115,126,246,236, 89,124, 81,252, +220,172, 70,156,150,252,127,240,224, 1, 46,221,139,131, 88,171,130, 44, 53, 1, 55, 15, 31, 68,159,177,227,193,178,213, 31,173, +240,224,193, 3, 28, 57,123, 19,198,114, 49, 30, 63,126,132,131, 7, 15,226,211, 79, 63,125, 43,206,106,162, 66, 45,242,143, 20, + 88,148,210, 75, 40,195, 11,109,237,218, 68, 38,207,195,130,110, 77,157,103, 12,246,175,205,232,115, 18,192,115, 60, 24, 9, 96, +103, 99,134,159,127,222, 83,115,207,190,125, 55, 26, 58, 75,214,241, 44, 59,247, 97, 50, 45,168,194,179, 23,172,218,119,117,240, +207,211, 2,196,159,246,168,107, 5, 0, 82,177, 8,107,127,125,196, 2, 88,240, 54, 47,213,202,133, 40,242,244,248,196,193,218, +124,222,236,143,122, 89, 5, 52,245,194,165, 91,161, 88,119,240,198,101, 89, 10,118, 26,156,169,121, 61, 94,215, 77,101,205, 34, + 4, 95,249,120, 74,142,163, 14, 82, 99, 75,232, 94, 94, 0,116,106,168, 53, 58,196,166,115,136,205, 80, 67,172,148,226,110,100, +156,202, 58, 9,199,171,251,206,132, 16,226, 95, 75,225, 52,111,241, 74, 23,181, 42,143,205,201, 76, 99,165,178,155, 18,165,145, + 60,177, 42, 60, 55,226,168,186,125, 77,105, 19,128,103,100, 10, 90, 48,103,234, 40,227,248,176,211,168, 35, 74, 0,161, 20, 70, + 62,189, 96,106,196, 72,219,122, 72, 99, 0,192,195,193, 92,246,237,215, 95,152, 79,158,249,117,165, 99,188,124, 9,145,214,111, +230, 48,217,207,221, 18,151,131, 35,112,249, 97,244,163,203,119, 31,215,235, 80,223, 9, 94, 46, 22,147,124, 9, 89, 22, 70,171, +110, 17, 45, 76, 24, 22,208,171, 75,102, 17,250,218,147, 97,205, 6,127, 89,230,236,193,242,224, 1,240,145, 28, 5, 97, 24,128, +136, 10,103, 52,198, 94,131,216,162, 22,221,179,255, 72,193,182,109, 59,191, 9, 75,165,130,213, 74,128,128, 74,144,149,149, 21, +162, 84, 42,187, 53,104,208, 96,251,196,137, 19, 77, 71,140, 24,225,244,241,199, 31,139, 0, 32, 57, 57,153, 95,179,102, 77,194, +247,223,127,159,157,150,150, 54, 90,167,211, 61, 52,164,193, 75, 8,185,254,227,143, 63,166, 94,186,116,169, 94,203,150, 45, 21, + 77,155, 54,229, 44, 45, 45,197,114,185,156,211,106,181,234,200,200, 72,254,217,179,103, 78, 89, 89, 89, 79, 0, 68, 85,167,251, +190,200, 90,181,144, 97,152,249,148, 82,191,119, 49, 6, 75,169, 84, 58, 2,120, 74, 8,169, 83,213,238,193, 55, 42,108,177, 24, +153,153,153, 40, 72,122, 4, 69,220, 19, 52, 48, 22,193,215,210, 4,102,102,102,111, 37,134,178,179,179,129,252,120, 92,189,250, + 0, 96, 89,152,155,155,195,220,220,252, 79, 23, 88,229,105,145,127,186, 5,235, 13,212,179, 35,159, 90,202,176,102,108,175,218, + 82, 15, 55, 23,104,226,238,226, 65,108, 30,230,182,108, 30,198,200, 77,213, 99,223,239,219, 52,112, 96, 13, 4,180,110, 70, 60, + 28,205, 39, 45, 91,181,233,179,122,246,228,139, 71,201,116,173, 33, 15,126,148, 66,159,251,216,145,109, 23, 66,226,198,185, 40, + 85,224,121,138, 11, 15, 19,241,240,101,230,182,240, 20,250,188, 42, 47, 81,207,137,116, 22, 67,180,143, 82,170, 48, 55, 54,206, +109,212,176,174, 77,231, 86, 13, 69,221,219, 55,133,148, 1,174,222,126,128, 41,171, 14,221,228,121,218, 43,216,192,238,193,194, + 25,131,175, 10,167,194, 25,131,250, 87,102, 12, 82, 74,105,225, 44,194,138,135,117, 49, 12, 73, 42,136,190,227, 32,177,246,132, + 42,234, 2, 94,102,242,136, 78,201, 69,142,216, 1,154,248,120,128,242, 49, 23, 41,173,118,110,182,177,177,177,171,233,235, 85, +123,253,142,131,208, 21,100,227,249,197,237,200,203, 76,196,162, 31,126,173,237,226,226,210, 62, 46, 46,238, 82, 21, 10, 25,175, +115,199,247,216,129, 2,140, 68,142,223, 54,238, 71,154,181, 17,108,148, 82,240,170, 84,140,157, 60,194,188, 71,151, 17,230, 0, + 16,253,248, 62,220,149, 42,131,120,117,214, 8, 28,220,193,219, 2,122, 21,118,156,186,175, 22, 1,221,119, 6, 61,138,234, 80, +215, 66, 49,216,223,221,114, 97, 66,214, 0, 84,211, 25,104,177, 5,171,196,162, 87,141,217,131, 7, 40,229,124,108, 73,212,190, +235, 41,198, 3,187, 52, 81, 74,197,132,208,188,120, 80, 35, 27,108,218,113, 32, 79,166,199, 22,161,234, 20, 32,192, 48, 20, 20, + 20, 4, 19, 66,234, 79,159, 62,125,216,156, 57,115,218, 25, 27, 27,215, 4,128,252,252,252,231,122,189,254, 50,128, 61, 85,153, +237, 87, 36,152,158, 18, 66,158,191,120,241,194, 97,247,238,221,230,248,221, 31,163, 10, 64, 54, 10, 29,102, 86,123, 6, 97,177, +152, 34,132,204,127,135,162,225, 68, 17,103,157,234,220, 47, 18,137, 56, 66, 8, 8, 33,144,203,229,184,114,229, 10, 6,245,234, +130,240,223,178,224,103, 97,130,230,163,199, 98,223,153, 51, 96, 24, 6,132, 16, 48, 12, 83,165,122, 68, 44, 22,227,234,213,171, + 24, 57,116, 32,228, 98,192,220,220, 28,211,167, 79,199,209,163, 71, 33, 22, 11,171,233,253, 33, 2, 11, 4, 11,207,108, 95, 34, + 5,167,199,177,237, 43,112, 60, 52, 79,251, 56, 21,115,189, 83,177,230, 32,114,249,212, 85, 59,199,157,185, 26,186,252,195, 33, +189,149, 29, 59,116, 65,199,128, 14,226,122,205,218,207, 3,176,182, 84, 69,221,185, 34, 95, 25, 28,143,111,182,156,138, 24,187, +239, 98, 36,129, 46, 23, 67,186, 54,163, 28,143,111, 42,169,252,223,224, 52, 55, 50,217,119,245,198, 13, 75,232,242,240,242,254, +121, 69,141,154,181, 1, 78,135,167, 79,159,224,251, 29,135,249,139,183, 31,255,172,101, 49, 49, 42,131,230, 27,202, 89,168,168, + 88,152, 27,203,188,123,248,153,159,228, 65, 97,161,148,214,165, 60, 7, 11,165,164,110, 87, 31,227,147,148, 82,106,106, 36,169, + 75, 57,125,165,156, 42, 45,187,121,199,143,219, 86,142, 25, 51,198, 56, 45, 46, 9, 9, 57,161,200,147, 57, 67,175,116, 69,212, +253,203,170, 2, 13, 91,105,229, 93, 81,124,166,165,165,165, 4,223,202,192,190, 31,150, 66,175,213, 32, 37,174, 80,163, 38,164, +229,192,204,198,249, 70, 85, 56,117, 44,159, 29, 56,226, 19,169,145, 41,140, 70, 6,246,150, 69,165,107,208,216,201,180,176,176, +200, 75, 69,248,217,171, 8,200, 47,212,107,207, 98, 69,112,111,232,100, 80, 56, 77, 21,210,137, 61,154, 56,227,121, 76, 34,174, + 60,138,223,241, 44,157, 38,212,178, 38, 59,162, 18,178,198,245,109,233,134,213, 71,195, 62, 47, 79, 20,149,199,233,107, 79,134, + 1,240, 47, 28,228,174, 2, 5,252,125,237,201, 48, 67,102, 14,150,197, 41,150, 98,248,202,147,209, 95, 30,184,147,214,119,198, +240,182,102,173, 91,247,148,129,213, 34, 87,165,209,135,101,210,156,183, 73,163,183,176, 78, 10,156, 2,231, 63,146,179, 72,236, +252, 92,180,189, 75,206,248,162,237,157,189,123,233,238, 64, 74,169,184,200,122, 85,225, 32,247,202, 56, 75,119, 7, 82, 74, 79, + 20, 89,175, 42,180, 98,189,206,201,243,124, 66,211,166, 77,173,250,244,233, 3,142,227,240,228,201, 19, 68,199,198,162,243,184, +207, 97, 97, 97,129,203, 33, 33,120,252,248, 49,230,207,159, 15,189, 94,143, 35, 71,142,196, 85,198, 41, 22,139,117,181,107,215, +150,246,235,215, 15, 44,203,226,217,179,103,136,143,143,199,148, 41, 83, 96,110,110,142,224,224,224, 18,206,180,180, 52,136,197, + 98,221,159,145,151,254, 59, 2, 11,224,192,233,145,125,102, 1,214, 94,129, 78,167, 71,221, 71, 41,180,116,159,246,166, 6,214, +228, 88, 72,104,196,243,224,107, 29,101, 72,121, 88,120, 79, 21, 16,153, 70, 19,155,185,138,115,161,203, 53,195,179,147,120,145, +156,155, 23,153, 70, 19,171,250, 18,148,231, 8,116, 5, 64,226, 93, 92,191,124, 9, 23,111, 62,192,157,135, 17,220,245,224,200, +125, 34, 30,223,132,165,209, 39,213,104,117,192,164,215,106,140,122,248,212,173,153,151,189, 27, 56, 22,148,215,195,124,200, 30, +140, 14,107,237,214,172,150,133, 91,161,229, 74, 15,203,143,206, 3, 43, 21, 21,242,221,137,209,109,241,175, 41, 31,144,155,149, +222,178, 83,251, 86,198,230, 62, 61,144,246, 52, 18, 79, 30, 92, 85, 5,135, 70, 93,191, 19,163,123, 43,235,136,179,179,115,187, + 78,237,189, 49,100,236,108,232, 10,178,241,236,226,143,200,203, 72,194,149, 27, 38,136,200,201,105, 5,192, 96, 11,214,245,104, +125, 61, 0,240,247,144,198,152, 66,227,240,126,239, 62,144, 19, 53,120, 77, 14, 72, 65, 26,162,226,181,217, 3,126,136,229, 0, + 64, 41, 39, 98, 99,154,109,102, 8,175,175,187,181,167,146,209, 99,231,153, 71,224,249,194,101,150,120, 30,155,118,158,143, 26, +247,205,200,198,240,117,179,108, 72,138,156,159, 24, 92,104, 82,180,189,179,239,235,186,234,115,243, 0, 94,135,171,147,172,234, +182, 93,155,209,182,186,150,176,135,241, 52, 30,192, 56, 31, 39,178,121,210,218, 83,243,154,158, 9,243,159,246, 81, 95, 51, 80, + 97, 97,116, 1, 2, 4,252,249,200,203,203, 27, 59,122,244,232,205, 18,137,196, 22, 0,225,121, 30, 60,207,139,151, 47, 95, 46, +225, 56, 78, 36, 18,137, 56,134, 97,216, 19, 39, 78,232, 57,142, 75, 85,171,213, 99, 43,227,100, 89, 54,106,252,248,241,181, 43, +155,113,184,119,239, 94,136,197, 98, 29,203,178, 81, 66, 74,188, 75,129, 69,241,117,155,145, 11, 22, 0, 32,160,248,234, 53,113, + 5, 0, 8, 73,167, 9,245,236,200,148,122,205,218, 47, 40,190,167,170, 1, 80,115,220,192,102,245,189,246, 2,128,134,114, 35, +171,243, 18, 57, 26,213,224, 70,205, 90,237,227, 41, 21,179,148,110, 19,241,248, 69,205, 34,220,144,153,115,229, 33, 33, 37, 43, +184,120, 1,103, 30,244,247,110,193, 34,119, 12,148, 82, 90,210, 45,184, 66,129,180,108, 77,165,126,156,174, 62,215,116,105,230, + 38,253, 36,232,218,253,177, 28, 71, 29, 24,134, 36,169,180,236,230,183, 21, 87, 0, 16, 23, 23,119,201,215,142, 4,133, 52,180, +239,106,163, 44,178,106, 21, 0,105, 5, 8,138, 75,201,189, 84, 29,206,204,124,125,223, 57,107,142,254, 42,147, 48, 98, 80, 90, +232, 8,148, 82,168,117, 92, 70,177, 8,107, 96, 77,156,166, 31, 97,247, 50, 12,137,174,140,239,214,227,196,213, 67,150,157,253, +226,209,203,204,109, 47, 50,105, 40, 0,188,200,164,161,117,172,201,188,168,164,220, 47, 66,163, 51, 87, 84,117,220, 4, 37,184, +210,108,200,130, 55,142,189,109,124,134, 39,208, 7, 0,250,215,179, 35, 93,134, 76,251,126, 26, 33, 16,150,137, 16, 32,224, 63, +132, 98, 43,150, 72, 36, 90,248, 14, 57, 79, 16, 66,122, 2,120, 90,133,123,110, 1,168,255,142,223, 45, 29, 64,186,144,202,127, +145,192,122,148, 66, 55,193,128,197,156, 13,189,174,220,251, 19,232, 89, 0,214,111,243, 18, 69, 28, 86,239, 50, 98, 66,146,233, +188, 63, 34,194,139,196,212, 31, 50,150, 39, 44,133,118, 3, 0, 47, 47, 47,250,228,201, 19,188,173, 23,220,240, 84,250, 0,175, + 45,185, 80,150,200, 6,208,214, 16,190,200, 52,250, 13,240,102, 23,240,211,116,186, 8,192,162,106,189,115, 53, 61,181, 27,156, +183, 82,232, 25,160,114,111,250, 2, 4, 8,248,119,138,172, 63,128,243,132, 16,179,255,113,129, 37,224,159,139,200,200, 72, 34, +196,130, 0, 1, 2, 4,148, 11,238, 15,224, 20,156, 14, 11,120, 5, 34, 33, 10, 4, 8, 16, 32, 64,128, 0, 1, 2,222, 45, 8, +128,206,101, 74,241, 42,204, 14, 32,132,116,174,178,212,175,132, 95,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5,206,127, 31,103, +101,220,255,154,217,137,180,212,224,229,119,189, 1,232, 44,112, 10,156, 2,167,192, 41,112, 10,156, 2,167,192,249, 95,219,132, + 46, 66, 1, 2, 4, 8, 16, 32, 64,128,128,119, 12, 65, 96, 9, 16, 32, 64,128, 0, 1, 2, 4, 8, 2, 75,128, 0, 1, 2, 4, + 8, 16, 32, 64, 16, 88, 2, 4, 8, 16, 32, 64,128, 0, 1,130,192, 18, 32, 64,128, 0, 1, 2, 4, 8, 16, 80,125,144, 42,174, + 76, 34, 64,128, 0, 1, 2, 4, 8, 16, 32,192, 16,129, 85,180,190,110,241, 58,187,130, 23,112, 1, 2, 4, 8, 16, 32, 64,192, +159, 43, 72,254,101, 90, 68, 16, 88, 2, 4, 8, 16, 32, 64,128, 0, 65, 96, 9, 2, 75,128, 0, 1, 2, 4, 8, 16, 32, 8,172, +191, 55,138, 7,185, 7, 16, 66, 40,128, 0, 33,137, 5, 8, 16, 32, 64,128, 0, 1,127, 1,254, 85, 90,164,100,144,187, 96,189, + 18, 32, 64,128, 0, 1, 2, 4,252,165,162,228, 95,164, 69,132, 89,132, 2, 4, 8, 16, 32, 64,128, 0, 1,130,192, 18, 32, 64, +128, 0, 1, 2, 4, 8,248,123,227, 15,117, 52, 74, 8,233, 44,112, 10,156, 2,167,192, 41,112, 10,156, 2,167,192, 41, 8, 44, + 1, 2, 4, 8, 16, 32, 64,128, 0, 1,130,192, 18, 32, 64,128, 0, 1, 2, 4, 8, 16, 4,150, 0, 1, 2, 4, 8, 16, 32, 64, +128, 32,176, 4, 8, 16, 32, 64,128, 0, 1, 2, 4, 8, 2, 75,128, 0, 1, 2, 4, 8, 16, 32,224, 47, 2, 1, 80,230, 76, 0, + 74,233, 89,131, 73,170, 49,155,160, 50,126,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255,125,156,149,113, 87, 69,127,252, +173, 65, 41,253,195, 54, 0,157, 5, 78,129, 83,224, 20, 56, 5, 78,129, 83,224, 20, 56,255,107,155,208, 69, 40,192, 80, 43,165, + 61, 33,196, 94,136, 9, 1, 2, 4, 8, 16, 32,160,114,136,223, 37,153, 15, 33, 29,199, 55,176, 63,240,217,131, 36,171,202,174, +181,179,179,219,172, 84, 42, 71, 20, 20, 20,228, 19, 66,248,210, 22, 53, 0,165,221,203, 63, 75, 73, 73,105, 91, 25,159, 92, 46, + 95, 99,111,111,255, 81, 94, 94, 94, 1, 33,132, 18, 66, 64, 8, 41, 22, 7,175,252,114, 28, 23,151,150,150,214,244, 31, 45,120, + 0,198,198,222,254,182,132, 97,156,171,122, 47,199,243, 47,146,147,146, 90, 85, 65, 92, 45, 37, 4, 51,138,254,127, 71, 41,157, +253, 47, 84,144,140, 33,151,249, 1,166,145,192, 16, 78, 36,250, 92, 2,108,208,240,252, 15, 69, 25,151,171,238,163,181,183, 73, +109, 66,209,144, 16,152, 83,138,108, 74,240, 64,214,156, 70,253, 69, 66,186,165, 68, 34, 25,108,105,105,105,154,146,146,114, 14, +192,175, 0,222,179,179,179,235,148,153,153,153,171,215,235,247, 83, 74,111, 86,135,187, 93, 35, 50, 83, 38,149,124,168,214,233, +191,189,122,159,254, 24,208,132, 88,179, 60,150, 41,164,226,182, 26, 45,251,221,149, 7,116, 91, 21,195, 74, 94,179,198, 87,121, + 89,138,131, 6,166, 59, 0, 28,177,180,244,146,219,154,157,147,200,152, 23, 89,201,121, 35, 6,166,164,196, 14,124,139,116,255, + 59,194,214,214,118,148, 72, 36, 90, 76, 41, 5,199,113,115,211,211,211,183,191,163,124, 53, 12,128,113,209,110, 62,165,116, 79, + 21,238,141, 6,224, 86,180, 27, 67, 41,117,175,232,184,128, 42,167,205,166,195,135, 15,143,235,208,161, 3, 86,175, 94,141, 77, +155, 54,189, 76, 77, 77, 93, 6, 96, 7,165, 84,251,103,243, 8, 2,171, 12,248, 18, 82,127, 76,247, 86,191,141, 29,212, 93,102, +192, 71,252,191,238,221,187,143,220,177, 99,135, 36, 50, 50,210,200,195,195, 3, 34,145,168, 68, 0,149, 46, 39,107,212,168,193, + 87,198,199, 48,204,218,254,253,251,143, 62,120,240,160, 50, 56, 56, 88,233,227,227, 83,194,199,243, 60, 94, 47,119, 61, 60, 60, + 42,228, 51, 55, 55,191,203, 48,140, 75, 89,226,172,188,255, 28,199,197,165,167,167, 55, 53, 32, 19,118, 3, 48,203,128, 40, 93, + 70, 41, 61, 93,209, 5, 18,134,113, 78, 72, 72,176,171,106, 90,185,186,186,234,170,240,209,216, 19,130, 25, 60, 79, 69, 0, 32, + 18,145,153, 70, 70, 70,155, 84, 42, 85,108,241,249,162, 52, 75,174, 74, 24, 92, 92, 92,122,240, 60, 63,172,144, 83,180, 39, 46, + 46,238,100, 85,238, 55, 51, 51,187, 43,147,201, 92,196, 98, 49, 41, 43, 93, 94,223,231, 56,142,234,116,186,184,140,140,140, 42, + 11,235, 75, 0,233, 14,180, 99, 25,102,178,181,141, 77,219,224,160, 32, 99, 63, 63, 63, 17,195, 48,179, 1,252,240, 54,223,141, +246, 54,169,205,233, 49, 72,165,151,247,150,187,127,229,165,137,254, 42,210, 72,162, 57,174,189, 77, 14,252,217, 34,139, 16,210, +253,131, 15, 62, 88,242,237,183,223,218,200,100, 50,209,254,253,251, 91, 77,153, 50,229,195,213,171, 87, 59, 15, 30, 60,216, 84, +171,213,242, 51,103,206,108, 71, 8,249,154, 82,122,180, 42,220,173, 27,145,150,222, 30,142,243, 39,140,232,136, 47,150,238,157, +224, 95,159,164, 25, 25, 75, 55, 13,104, 91,219,162, 94, 77, 75,124,189,249,250, 68, 0,219,170, 16, 86, 34,145, 72, 26, 57, 56, + 56,120,104, 52, 26,174,168,209, 70, 75,149, 9, 0, 0,141, 70,163,203,204,204, 60,241,182,113,243,133, 66,209,162,133,133,201, +153, 5,195, 62, 48,202,201,204,176, 95,251,219,175, 33, 7, 97,215, 96, 32,240,242,223, 84, 33,136, 68,162,197,241,241,241,142, +148, 82, 56, 58, 58, 46, 6,176,253, 29, 81, 27, 23,151,195,132, 16,227, 42,222,235, 86,234, 94, 55, 3,142, 87, 39,239, 43,196, + 34,209,120,153, 68,210,149,227,184,250, 69,121,232,161, 86,175, 63,195,242,252, 6, 74,169,250, 95,172, 3,102,140, 27, 55,174, +203,156, 57,115, 60,102,204,152,129, 25, 51,102,212,216,186,117,235,230, 37, 75,150,204, 36,132, 52,160,148,230,253,201, 60,130, +192,122, 77, 92,185,118,107,228,117,241,243, 15, 6, 73,249,131,107, 8, 70,125, 89,161,184,106,213,180,233,135, 59,118,236, 0, + 0,140,232,219, 23, 93,155, 55,135,169,137, 49,100,178,194,224, 16, 74, 32,149, 72,209,111,202, 84, 67, 62,140,239, 2, 3, 3, +135, 31, 60,120,208, 4, 0, 54,109,218,132,192,192, 64, 88, 89, 89, 65,169, 84, 66, 42,149, 66, 34,145,188,242,107,128, 96,115, +137,143,143,183, 83, 40, 20, 37,130,143,231,249, 87,182, 82,253,208, 96, 89, 22,158,158,158,134, 70,215,172,236,236,236,118,249, +249,249, 21,246,221,214,172, 89, 19, 0, 78, 27, 66,184,120,209, 55,224,217,124,136,197, 0,203, 2, 26,157, 8,124, 25,109,121, + 39, 39, 39,140, 31, 63, 30,111,179,254,100,239,222,125, 64, 41,221,228,236,236,124, 60, 57, 57,217,143, 16,140,173,142,101,139, + 82,250,254,211,167, 79,149, 60,207,195,219,219,123, 36,128, 42, 9, 44,177, 88,236, 18, 18, 18, 98, 39,151,203,203,181, 84,150, + 18,191,208,233,116,104,220,184, 49, 91,149,103,216, 3,110, 25, 34,209,199,141,154, 52,249,100,126,223,190, 70,119,239,222,149, +139, 68, 34,176, 44,139,229,203,151,179,148, 82, 11, 95,192, 44, 12,200,169, 32,127,206, 1, 48,170,200, 42,187,141, 82,186,252, +149,243, 20, 13, 85,122,121,239,103,121,253,154,183,168, 49, 19, 97,143, 30, 54,175,101,114, 4,166, 98, 77, 20,128, 63, 85, 96, +153,155,155, 15, 92,189,122,181,237,182,109,219,114, 30, 63,126,172,251,225,135, 31,108,199,142, 29, 91, 87,167,211, 97,220,184, +113,169,222,222,222,210,213,171, 87,219, 30, 62,124,184, 27,128, 42, 9, 44, 49,193, 55, 67,251,118,133, 90, 47,130, 94,207,218, + 58,218,154,254, 60,233,131, 0, 9,165, 90,236, 60, 26, 12, 61,203,255, 88, 69,203, 85,163, 1, 3, 6,184,239,217,179, 71, 28, + 30, 30, 46,246,241,241, 1,199,113, 37, 27,207,243,224, 56, 14, 94, 94, 94,111, 29, 47, 31, 2, 94, 54,246, 86,103, 90,245,236, + 97,228,168,144,195, 42, 51, 21, 99,164, 98,211,237, 74,205, 46, 0,173,255, 77, 21, 2,165, 20, 98,177, 24,177,177,177,176,179, +179, 51,178,178,178, 74, 4,240, 85, 70, 70,198,150, 63, 72,212, 87,219,178,245, 14,195,208, 92, 38, 22,255,178,243,199,181, 14, + 45, 90,183,102,236, 29,237, 16,249, 36, 6, 98,194,117, 14,185, 19, 28,240,225,167,211, 38, 17, 66, 6, 80, 74,111,255,219, 4, +128, 99,155,207,250, 59,250,127,190,137, 80, 30, 95,175,255, 53,119,233,119,107,148,227, 62,254,128,153, 50,101, 10, 92, 93, 93, + 61,250,247,239,255, 29,128, 79, 43,229,105,249, 89,127,135,214, 19, 54,129, 82, 44,248,254,215,220, 37,223,173, 81,126, 90, 13, + 30, 65, 96,189, 6, 63, 66, 44, 26,184,219, 95, 90, 52, 99,172, 9, 61,249,147,168, 32, 61, 5,229, 73, 24, 59, 59,187,205, 61, +122,244, 24,177,125,251,239,141,162, 86,126,126,232,223,209, 31,118,214,230, 80, 26,203, 10,171, 33,158,224,193,227, 23, 6, 9, + 1, 87, 87,215,113,191,252,242,139, 73,105, 17, 33,149, 74, 75,182,210,226,170,120,123,221,210, 81, 22, 20, 10, 5,206,158, 61, + 11,177, 88, 12,134, 97, 32, 22,139, 75,182,210,251, 12,195,192,222,190, 74, 67,147,150,153,155,155, 55,200,205,205, 53,203,202, +202,130,155,155, 91, 14,128,144, 82,231, 27,164,166,166,154, 85,133,144,103,243, 49,101,140, 15, 36,218,155,208, 74,154, 67, 37, +110,131,235,119,194,113,252,244, 37,196, 39, 36,193,191,101, 35,188, 63,108, 32,206,156, 57, 3,142,227,170, 90,224, 38, 19, 66, +190,123,239,189, 62, 51, 1,130,128,128,128,228, 73,147, 38,209,208,208,208,254,131, 6, 13,236,244,228,201, 83, 82,100,217,154, + 65, 8, 89,107,168, 37,139, 82, 42, 5,128,203,151, 47,131, 82, 42,171, 78,222,147,203,229,184,113,227, 6,138,187,131, 69, 34, + 17, 68, 34, 17, 24,134,193,177,167, 54,200,215,138, 80,144, 28,138,207,123,187,161,102,205,154, 16,137, 42, 31,114, 24, 0, 40, +174, 3,253,137, 68, 50,197,209,201,201,163,125,173, 90,202,179,103,207, 50, 0,224,238,238, 78, 19, 19, 19,179,142, 28, 57,146, + 43, 6, 54,185, 83,186,163, 34,113,229,230,230,214, 70, 36, 18, 45, 46,142,115, 66,200,119, 30, 30, 30,243, 75,210,141,231, 49, +172,139,149,100,210,164,201,210, 22, 1,133,141,146, 22,125,246, 32,231,217, 82, 31,146, 49,199,252,207, 46, 12,178,179,179,127, +246,242,242, 98, 82, 83, 83,207, 3,120,174,215,235,215,255,252,243,207,118, 99,198,140, 73,217,181,107,215, 4, 0,174,203,151, + 47,239,150,151,151,183,175, 42,188,109, 27,146,158, 77, 27,249,181,116,115,117,197,165,235,183, 33,149, 73, 44,198,143,234, 13, + 19, 19, 49, 86,108,251,141,143,142,203,152,112,229, 1,221, 81, 5,113,213, 96,224,192,129,174,123,246,236,145, 2, 64,104,104, + 40, 82, 82, 82, 96,109,109, 13,133, 66, 81,242,205, 23, 91,177,222, 86, 92,153,187, 90,223, 58,114,228,168,145,149,149, 5,214, + 79,157,132,247, 19,226, 96,198,136,160,215,195,227,223, 84, 25, 16, 66,188, 6, 12, 24,160,224, 56, 14,249,249,249,184,120,241, +162,185,145,145,145,185,139,139,203, 2, 0, 6, 11, 44, 35, 35,163,100,181, 90,109, 87, 84,142,166,168, 84, 42,123, 0, 5, 10, +133,194,168,232, 18, 85, 21, 45, 91, 49,165, 44, 84, 49, 6, 28,175,202, 59, 55,107,222,172,193,217, 67, 7,119,155,100,231, 38, +193,194, 50, 5, 34,100, 99,203,150, 13, 48, 50, 50,195,130, 5,115,196, 47, 58,119,116,238,214,115,192, 89, 66, 72,231,127,157, +200,162,100, 75,231, 62, 35,172,140,148,166, 69,117,137, 30,219,183, 78,130, 72, 36,194,252,249,243, 81,175, 94,189, 79, 8, 33, + 95, 82, 74, 51, 42,166,193,150,250,237, 6, 91,201, 20,133, 85, 49,207,233,241,195,222, 47, 10,121,102,143,197,208, 62, 53, 63, +121,176,139,156,170, 87, 11,185,133,229, 63, 84, 18, 17, 98,208,156,166,148, 74,139,246,148,210, 75,229,237,255, 35, 5, 22, 33, +132, 82, 74, 75,119,179,188,178, 95, 17,106, 16, 34,247,180, 52, 57,189,241,171, 73, 78,204,141,223,196,170,152,167, 72, 80,115, +176,248,189, 18,125,101,170,165, 82,169, 28,177,125,251,246, 87,244,151,155,189, 29,164, 82, 9, 36, 82, 2,139,182,189, 1, 0, + 89, 87,142,131, 16, 90, 94,197,252, 10,103,126,126,190,250,254,253,251, 38,219,182,109,131,157,157, 29, 60, 60, 60,160, 84, 42, + 75, 10,218,210, 91,177,208,122, 93, 96,189,206, 89,124, 94, 44, 22, 67, 36, 18,225,204,153, 51, 96, 89, 22, 3, 7, 14,124, 67, + 92,137,197,226, 50, 5, 91,121,211, 76, 41,165,167, 9, 33, 33,148,210,118, 69, 21,111, 8,165,180,125,169,103,119,179,181,181, +157, 5, 96,153,161,156, 12, 67,193,168,175,131,119, 89, 3,113,236, 36,104, 37, 13,113,225,106, 48,182,111, 94, 13, 0,240,168, +219, 12,131,250,247, 46,177,190, 25,194,249, 74,235,196,209,113, 71, 74, 74,106,227, 14, 29, 58, 32, 59, 59, 91,187, 96,193, 2, + 52,104,208, 0, 94, 94,222, 6,165, 81, 57, 5, 91,218,131, 7, 15, 28,213,106, 53, 8, 33,105, 6, 8,178,179,101,112,224,231, +159,127,134, 90,253,166,245,222,178,253, 18,124, 17,232,142,209,159,239,192,119,143,247, 99,227,198,141, 21,190,187, 18,104,160, + 54,175,179, 86,198,176, 13,190,157, 59, 65, 62,114,228, 72,102,244,232,209,136,137,137,193,152, 49, 99,212,103,206,156,209, 38, + 37, 38, 30,149,241,252,122,221,171,130,184, 92, 78,185, 92,190,243,244,233,211,216,191,127, 63, 0, 32, 50, 50, 18,158,158,158, +175, 84, 34,124,198, 1,228, 70,175,199,173, 99, 17,104,209,103, 15,110, 29, 27, 6, 46,235, 55, 73, 83, 79,100, 87, 37, 62,171, + 97,169, 56, 91,198,177,139, 0, 46,150,138,223, 47,119,237,218, 53, 8,192, 33, 74,233,117, 0,215, 1,236,173, 10,103, 33, 17, + 70, 15, 14,236, 7,177,212, 20, 17, 79,227,208,190, 85, 99,216,219,217, 33, 36, 60, 10,209,241, 25,201,132, 96, 84,247, 54,242, +101, 42,149,246,203,203,247,233,255, 42,227,116,117,117,173,121,224,192, 1, 73, 41,139, 51, 24,134,121,165, 65, 85,124,172,186, +249,179, 88, 92,153,186,152,220,250,102, 67, 27,227, 91, 15,119,193,211,189, 39,204,186,245,196,170,189,123, 16,151,150,173,102, + 11,216, 78,127,118, 26,253, 81,156,132, 16,175,192,192,192,235,187,119,239,182,136,141,141,197,229,203,151,225,225,225,129,130, +130,130, 74, 27,186,175,115,170,213,106,187, 82,162,169,120, 8,195, 94,141, 70, 83, 92, 80,210,170,132,179,188,177, 85, 85, 29, +115, 85, 70, 57, 47, 83, 72,165, 7,142, 28,218,107, 18, 22,113, 25,141, 26,182,132,137,185, 47,120, 46, 9,233, 25,121,200,124, +154,128, 69,139,190,195,130,175,230,226,215,195, 7, 77,188,125, 26,254, 66, 8,169, 83,186,187,240,159,158,238, 32,244,147,179, +199,118,109, 34,148,135, 42, 57, 66, 46,201,127,174, 28, 49,108, 0, 51,100,200, 16,252,250,235,175,120,244,232,209,166,242,196, + 85,105, 78, 66,241, 73,232,229,253,155, 64, 41, 84, 41, 17,114,169,234,185,242,131,225,131,152,247,135,118,197,205,243,107,209, +181,209,243, 80, 39, 59,244,207, 44,234, 36, 20, 51, 72,151, 43,112,205,232, 54,185, 89, 74,100, 93, 44,106, 67, 21, 11,171,139, + 40,116, 37,245,207,183, 96, 85, 69, 88, 21, 93,207, 52,145,137, 15,253,184,224, 51, 63,197,203, 80,169, 38,244, 6, 18, 52, 60, +221, 22,195,102,174, 41,231,158,130,130,130,252,168,168, 40,163, 81,253,251,163,181,159, 31, 28,173,173, 81,199,197, 5, 70,114, + 25,100, 82, 73,169,242,184, 74, 45, 16,234,237,237,141, 62,125,250, 64, 34,145, 64,169, 84,194,196,196, 4, 50,153,172, 76,235, +149, 68, 34, 49,216, 84,206, 48, 12, 66, 67, 67, 17, 29, 29, 13, 11, 11, 11, 92,187,118, 13,157, 58,117,122,195,138, 85, 90,148, + 85,197, 20,255,122,133, 95, 44,192, 96, 96,215, 96, 49, 56,142, 32,143, 54,132,226,229, 4, 20,144,198,208,104, 88,104, 52, 26, +252,239,170, 14,183,163,242,161,211,105,161,209,104,202,125,102, 69,214, 2, 7, 7,135,254,117,235,214, 29, 49,108,216, 48,173, + 68, 34, 65, 65, 65, 1, 10, 10, 10, 16, 30, 30,174,237,218,181,107,242,123,239,245,177, 63,126,252, 56,165, 20,223, 85,101, 28, + 22,165, 52,211,201,201,201, 81,161, 80,128, 82,154, 89,205,214,103,137,120,121, 29,163, 86,133, 65,204, 20,166,201,166, 77,155, +192,113, 28, 42,202,223,106, 66,206,125,181,100,165,249,183,107,126,132,185,149, 61, 46, 93,186,196,157, 58,117, 42,151, 0,145, + 79, 30, 61, 90,245, 30,112,226, 0,160,171, 74,248, 50, 51, 51,141, 60, 60, 60,224,226,226, 2,158,231,161,215,235, 17, 18, 18, +130,164,164, 36,164,167,167, 67,165, 82,193,202, 56, 11,181,173, 93,192,230, 94, 68, 98,232,215,112, 52,137,192,142,211, 90,125, + 19, 47, 60,248,203, 27,183,148,158, 0,112,226,237,137,224,108,231,224, 10, 17,213, 35, 33, 37, 29,253,122,117, 5, 35, 53,193, +139,216, 52, 52,244,173,229, 56,252,189, 54,142, 12, 97, 49, 99,217,158,241, 0,254, 87, 25, 93, 65, 65, 1, 23, 30, 30, 46,121, +240,224, 1, 24,134,129,153,153, 89,201,112,128,210,226,202,144,225, 0,149,137,171, 37,155, 58, 25,139, 36,249,200,225,206,226, +135,159,110,194,211,173, 19,182, 71, 60, 81,139,179,242, 58,175, 80,171, 35,255,209,221, 67,142,142, 99,121,158, 95, 64, 41,205, + 10, 12, 12,180,223,179,103,143,101,124,124, 60,130,131,131, 49,127,254,252, 84,142,227, 88, 74, 41,161,148,126,253, 14,242, 18, + 95,218,178,101,100,100, 84,108,217,202, 47,101,185,202,175, 70, 25, 32, 81, 42,240,185,141, 25,233, 43, 22,153,121,176, 57,121, + 47,210,180,244,104, 1,203,127, 79, 41,213, 87,116,175, 72, 36,250,232,224,190, 77, 78, 54,182, 60, 2,108, 59, 34, 49, 89,135, + 37, 83, 63, 64,122,122, 46,254,183,117, 41, 0, 25,116, 44,131,118, 1, 3, 96,103,231,140, 79, 62,254,196, 97,211,230, 31, 62, + 3,176,226,223, 98,192, 74,188,182,225, 48, 33,228,172,173,173,237,163,207, 62,249,196,214,195, 99, 36, 20, 10, 5,246,238,221, +139, 61,235,215,115,107,128, 65,155, 9,185, 48,150,210,195, 21,242,220,252,157,103,210,184,113,182, 62, 62,227, 32,151,203,113, +254,212, 79, 80, 39,253,156,219,171, 53,116, 5,106,244,170,209,135, 90,189, 60, 70, 50, 36, 18, 60, 5, 0,137, 2,137, 18, 32, +229, 53,186,127,188,176,122, 67, 96, 85, 21,181,164,202,235, 91,167, 14,110,108,203,171,196,218,171,199, 16,175,225,217,229, 79, +117,186,187, 89,116, 68, 5, 25,154,119,115,115, 67,199,166, 77,209,191,109, 91,136,197, 98, 40,100, 82,152, 42,140, 64,185, 66, +203, 85,113, 23,161,161, 90,175, 88,216, 88, 91, 91, 67, 42,149,150, 8, 43, 67,173, 87,229,113,242, 60, 15,177, 88,140,144,144, + 16,248,251,251,195,213,213, 21,251,247,239, 71,183,110,221,222,232, 50,172,170,184, 42, 22, 88,165,187,235, 74, 13,126,175,116, +112,251, 27,226, 64, 75,144,166,109, 8, 66,252,192,178, 0, 71, 1,141, 90, 13, 74, 1, 74, 1,189, 78, 11,181, 90, 93,242, 76, + 67,186, 94, 93, 92, 92,156, 60, 60, 60,166,206,154, 53,163, 78,131, 6,141,144,150,150, 6,158,231, 97, 98, 98,130,130,130, 2, +152,153,153,161,117,235,214,247, 22, 47, 94,156, 65, 41,102, 85,117,144,251, 59,232,206, 0, 0, 4, 5, 5,189,210, 61, 88,188, +229, 39,198, 97,244,196, 93,144,137,129,144,144, 16,212,173, 91,183, 50,113, 41,234,208,174, 13,174,223,139,100,199, 76, 95,163, +145,164, 7, 47,115,224,249,237,113, 64,242, 91, 84, 42, 72, 75, 75, 67,114,114, 50,250,246,235,135, 61,187,119,227,229,203,151, +240,245,245, 69,135, 14, 29, 96,103,103,135,151, 47, 95,226,246, 21, 13, 52,153, 25,200,208, 6, 67,105,218, 2, 71, 46, 69,105, +230,109,212, 70,253, 85,133, 2, 33,164, 25,128, 49,230,230,230, 53, 10, 10, 10,146,244,122,253,254, 34,209,223, 77, 34,145, 12, + 86, 42,149, 14,217,217,217, 47, 1,252,143, 82,122,167,210, 46, 35,133,194, 90,174, 48, 3,207,106, 32, 22,139,225,234,234, 1, +202,105,145,153,163,194,168, 33,125,112, 47, 36, 28,167, 46,220,100,245,122,126,157,161, 97,244,242,242, 66,122,122, 58, 24,134, +129, 82,169,132,177,177, 49,188,189,189, 17, 27, 27, 91, 34,174,170,219, 69,248, 33,224,101,230,102,114,115,241,134, 66,113,149, +148,144,136,248,151, 20,114,153, 12,155,183,108,202, 47, 72,202,108,241, 35, 16,249, 79, 47,252,121,158,255, 58, 62, 62,222, 78, + 44, 22, 59,176, 44,139,216,216, 88,220,189,123, 23, 19, 38, 76, 72, 78, 79, 79, 15,160,148, 86,235, 29, 21, 10, 69, 74,177,229, + 74,161, 80,164, 84,100,217,122,155, 49, 87,132,144, 90, 30, 46,166,103,182,174,158,226,214,172, 69,107,145, 82,108,150,153,247, + 52,201,255,234,229, 75,173, 39,172,254,223,103,132,144,174,148,210,103,229,221, 47,151, 72,122,180,108,211, 70, 12,154, 12,177, +204, 31,223,125, 59, 4,169,105, 57,200,204,200,133, 84,106, 12,173,158, 1,199, 19,180,246,111,139,159,118,236, 67,189,143,199, + 48, 50,137,164,203,191, 73, 96, 21, 97,233,247,223,127,239,230,237,237,141,237,219,183,227,194,206,157,120, 63, 59, 27,151, 68, + 34, 70, 47,145,216,156,208,235,183, 0, 56,108, 40, 79,189,122,245,240,227,143, 63,226,231,159,127,142, 25,209, 41,229,151, 41, + 35, 96,167,211,161,123,240, 99, 88,213,232, 3, 4, 63,134, 85, 19,111,212, 97,197,120, 74, 8,140, 94, 75,211,246,165,127,255, + 13, 2, 43,128, 20,246,199,149,252, 86,118,147,177,189,247,176,221, 35,187, 52,245,173,233, 34,210,239, 95,139,248, 2, 86, 61, +255,177,142,127,156, 75, 7,132, 85, 32, 14, 68, 34, 17,101, 24, 6,166, 70, 70,176,181,176, 40,108,105,138, 68, 0, 15,240,122, +128,112,133, 31, 31,229, 9,170, 50,249,153,231,121,200,100,178, 50, 7,180, 87,117,236, 85,105,206,220,220, 92,188,120,241, 2, +159,124,242, 9,148, 74, 37, 0, 32, 41, 41, 9,238,238,238, 16,139,197,136,143,143,199,249,243,231, 81,179,102, 77,200,229,242, + 42,169,172, 82,214,164, 6,132,144, 75, 0, 26, 36, 38, 38,154, 57, 58, 58,162,202, 22, 44,158,162, 64, 67,160,213,114,120,242, +228, 9, 18, 18, 18,240,226,249, 83, 52,203,207, 1, 5, 3, 74,105,149, 44, 88,142,142,142,222,158,158,158,139,151, 46, 93, 42, +113,117,117, 5,207,243,176,178,178, 64,126,190, 10,233,233,233,240,245,245,133,171,171, 43,190,251,238, 59,160,176,251, 40,249, +175,202,192,197,179, 69, 75,255,138, 68, 34, 76,124,207, 13, 25, 25, 38, 96,152,223,103,147, 86, 50, 6, 75, 10, 0, 1, 93, 3, +197,103, 78,157, 48,102,129,133, 73, 12,179, 80, 92,121, 58,234, 57,158, 87,150,119, 62, 54, 54, 22, 18,137, 4, 7, 15, 28, 64, + 70,114, 50, 26, 54,108,136,230,205,155,227,233,211,167,184,119,239, 30,172,173,173, 97,235,210, 10,151,158,235, 16,150,160,130, +185,185, 57,162,226, 68,127,217,212,127, 66, 72,239,206,157, 59,175, 95,181,106,149,131,131,131,131, 36, 53, 53,149,221,176, 97, + 67,183, 13, 27, 54,132,125,246,217,103,190,159,125,246,153,165,173,173,173, 56, 41, 41, 73, 63,117,234,212,110,132,144, 89,148, +210,189, 21,150, 23,198,166, 86,140,212, 24,132,136, 97, 97,110, 9,177,204, 24, 60, 43, 6,199, 3,102,230,182,184,126,239, 32, +174, 61,204, 29,155,146,142, 3, 6,124, 55,212,218,218,154, 50, 12, 3,107,107,235, 87,186, 6, 1,192,222,222, 30, 57, 57, 57, + 96, 24, 6, 18,137,164,202, 34,171, 88, 92, 45,217,208,201,132,148, 18, 87,121,105,214,184,112, 58, 60,171, 32, 41,211,255,223, + 32,174,138,203, 56, 74, 41,158, 63,127,142,130,130, 2, 92,185,114, 5, 95,127,253,117,234,235,226,202,222,222,254, 99, 51, 51, +179,175,242,242,242,190, 75, 76, 76, 92, 91, 25,111,145,101,234, 93,230,201,104,188,230,142,129, 16, 34,113,117, 84,156,190,119, +101,151,187, 57,125, 64, 16,253, 9,240, 36,231,145,233, 45,187,118, 61,155,245, 18, 53,222,248, 77,141,230, 99,103,159, 38,132, +120,151,103,201,226, 57,174,177,177,137, 41,128, 20, 4,223,189, 88, 34,174,210, 51,178,161,209, 49,208,104, 9,212, 58, 17, 58, +118,238,142,245, 63,252,140,248,148, 12, 20,207, 48,252,183,128, 16, 98,229,231,231, 55,110,208,160, 65, 88,184,112, 33,206,174, + 90,165,253,148,144, 28, 49, 64,127,227, 56,240,148, 18,145, 1,131,211, 95,231, 89,177, 98,197, 97, 0, 67,151, 77, 64,171,204, + 60,140,114,234, 67,173,106,244, 41,188,118,224, 76, 10, 0, 86,169,103,223, 24,170, 67,138,123,210,170,218,163,246,183, 21, 88, +148,210, 75,132, 16,148,254,173,232, 6, 11, 7,239,246, 95,206,156,180,166, 77,223,206,162,164, 79,253,145,149,163,209,206, 12, +215,139,226, 10,104,255, 48, 3, 45, 47,211, 55,108,192,189,200,194,239,215,197,206, 14, 51,134, 15, 7,101,129,107,143,194,176, +239,236, 89, 12,233,220, 25,198, 69, 51,248, 12,181, 54,149,101,181, 42,109,189,170,170,149, 41, 43, 43, 11, 7, 14, 28, 64,243, +230,205,161, 84, 42, 33, 22,139,209,160, 65, 3,132,135,135,163, 86,173, 90, 32,132,224,200,145, 35,232,223,191, 63,158, 61,123, +134, 86,173, 90,153, 84, 71, 96,133,133,133,153, 81, 74,219, 21, 91, 59,170, 11,141, 70,131,136,136, 8,244,233,211, 7,150,150, +150,112,118,222,131,179,167,119, 65,233,247, 62, 8, 65,149, 4, 22, 33,100, 96,175, 94,189, 36, 34,145, 8, 42, 85, 1,228,114, + 5, 76, 76,204, 96,106,106, 14, 47, 47, 47, 36, 36, 36,160, 91,183,110,186, 39, 79,158,252,156,152,152,248, 91, 85,195,106,111, +111,175,204,205,205,157,228,225,225,161, 40,106,229,118,180,177,177, 89,146,150,150,150, 87,197,194,161, 68, 88, 17, 66,192, 48, + 76,137,192, 18,139, 68,112,116,176, 43,217, 47, 26,127, 70, 42,224,202,137, 79,215,200, 1,192,205,205, 13,235, 55,255, 42,234, +213,171, 23, 38, 77,154, 4,189, 94,143,141, 27, 55, 2, 0,134, 13, 27, 6,157, 78,135, 95,126,249,165,240, 3, 18,139, 43,236, +115,190,123,247, 46,130,131,131,161,215,235,145,157,157,141,147, 39, 79,226,210,229,203,216,123,228, 28, 94, 62,127,138, 6,222, +238, 24, 51,230, 67, 72, 36, 18,236,216,177, 3,254,254,254,127,105,129, 32,149, 74, 63,216,186,117,171,243,246,237,219,179,142, + 30, 61,154,221,162, 69, 11,227, 53,107,214,216,173, 95,191,190,131, 86,171,197,228,201,147, 83,110,221,186,149,223,183,111, 95, +243, 45, 91,182, 56,215,169, 83,231, 61,148, 49, 46,171,168,219,103, 8,128,145, 1,205,205,197, 89,185, 42,240,172, 22,207, 95, +190, 64,118,158, 22, 60,167, 67, 76, 92, 2,242,212, 28,210, 51,114,209,160,113,215,239, 47, 94,188, 56,151, 16, 50,135, 82,122, +188,210, 70, 5,199,225,230,205,155,184,118,237, 26, 46, 95,190,140,232,232,232,146,115,102,102,102, 56,115,230, 12, 58,116,232, +240, 78,196, 85,110,106,161,184,202,138,201,248,215,136,171,162, 50,104,129,163,163,227, 2, 71, 71, 71, 69, 80, 80,144,121,141, + 26, 53,192,178,172,246,117,203, 85, 64, 64,192,151, 91,183,110,117,172, 85,171,214, 4, 0,107,171,251,188,242, 44, 91, 6,224, + 13,119, 12, 34, 17, 62,254,110,211, 56, 27, 83, 89, 76, 2,158,172, 44,242, 5,200, 0, 5, 57,192,197,221, 16,183,153,247, 98, + 66,191,153,150,179,182, 47,252, 24,192,198,242,136,163,158,197, 98,211,166,245,152, 50,121, 20,126,250,223,119,224,121, 49, 52, +122, 6,110, 30, 45,161,209,241, 32, 34, 49, 26, 54,110,138, 11, 23,175, 64, 34, 2, 14,108,223,244,175, 50, 93, 81, 74, 51, 8, + 33, 27,143, 28, 57,242,249,164, 73,147,192,243,188,236,171, 77,155, 84,169,169,169, 75, 81, 5,255, 85,101,240,244,223,180,105, + 83,228,172,245,169,135,167,140, 0,243,242, 24,201, 8,126, 12,171,129, 51, 41, 14,126, 75,208,196, 27, 25,202,178,171,248,203, +175,253,254,227, 45, 88, 37, 99, 83, 42, 82,140, 77,188,106,125, 99,110,101,249, 97,235,102, 62,214, 83, 39,124, 44,121,150,164, +198,233,166, 83,179,127, 93, 61,207, 36,134, 55,158, 28, 77,115,170,100,117,217,119,254,124,201,255,229,123,246,148,121, 46,113, +224, 64,131, 91, 98,229, 89,173,170,106,185, 2, 0,165, 82,105,209,165, 75, 23,116,234,212, 9, 3, 6, 12, 40, 25,115,213,168, + 81, 35,236,221,187, 23,129,129,129,184,127,255, 62, 28, 29, 29, 81,183,110, 93,212,173, 91, 23, 39, 78,156,168,106,198, 6,199, +113,240,243,243, 43,158, 69,216, 32, 46, 46,206,172,186, 9,169,209,104,144,158,158, 14, 43, 43, 43,200,100, 50,180,104,209, 28, +159, 79,108, 1, 27,199, 31,225,231,227,141,252,252,252,146,169,235,149, 65, 34,145,120,213,169, 83, 7,169,169,169, 72, 77, 77, +133,173,173, 45,156,156,156, 96,111,111,143,213,171, 87,211, 53,107,214, 92,226, 56,238,231,164,164,164, 42, 43, 66, 23, 23,151, +102, 54, 54, 54,159,167,164,164, 40, 74, 21,154,138,134, 13, 27,110,118,114,114,218,152,144,144,112,173, 42, 2, 75,167,211,129, + 16,130,223,158, 59, 33, 95, 75,144, 19, 23,140, 73,239,185,191, 34,184, 36, 18,137, 33, 3,117,243,135, 14, 29,106,231,234,234, +130,216,168, 71, 56,120,144, 98,213,170, 85,184,124,185,240, 59,143, 44,106, 16, 20,239,119,232,208, 1, 30, 30, 30, 85,114,110, +201,243, 60, 66, 66, 66,176,231,232, 37, 56,186,251, 32,230, 73, 4,238,157, 56,134, 26,182, 86,168,215,184, 41,244,122,253, 91, +185,208,120, 23,208,233,116, 91, 60, 61, 61,161,213,106,207, 1,216, 26, 18, 18,210, 63, 49, 49,113,245,175,191,254,234, 52,104, +208,160,132, 99,199,142, 77, 1,112, 56, 36, 36,100,244,226,197,139, 59,233, 11,187, 15,222, 0,195, 48, 63, 77,157, 58, 53, 96, +208,160, 65, 68, 42,210,107,131, 78,239, 16,179,172,158, 76,159,179,141,187,120,245,146,136,101,245,100,192,208,169,252,137,243, + 15, 69, 99, 39, 46,231, 26,181,236,133,208,208, 80,135,222,189,123, 47, 2, 80,161,192, 98, 24, 6, 28,199, 65, 34,145,148, 8, +232,178,174,169,138,245,106, 12, 80,203,204,221,228,230,146, 13,157, 77,136, 56,239, 95, 47,174, 0, 32, 45, 45,109, 51,128,205, + 86, 86, 86,201,198,198,198,200,205,205,125, 35,255, 17, 66, 20,222,222,222, 10,153, 76,134,174, 93,187, 90, 57, 58, 58, 70,138, + 68,162,181,241,241,241, 85, 86, 26,101, 89,182,170,235,166,193,210, 22,189, 91,180,109,108,250,216,124,161,169, 66,172,190, 95, + 35, 82, 97, 70, 0,100,107,236,159, 95,143, 30,146, 67, 82,228,141,154,118,104, 2, 51,177,113,239,242, 4,150,136, 97,238,101, +103,102,245,200,201,213,226,234,181, 80, 12, 29, 82, 7, 26, 29, 1,207,139,144,151,175, 1, 24, 9, 68, 0,134, 13,255, 0,148, +136,145,145,156, 0,134, 97, 30,226,223,135,217,227,198,141,235, 49,103,206,156,154, 69,254,171,220,139,252, 87,205, 32,132,212, +167,148, 22, 84,147,167,198,177,189,243,166, 29,189,242, 67,118,175,214,170, 39, 77, 10,231, 68, 89, 53,241, 70,134, 68,130,167, + 98, 6,233,148,190, 50,163, 20,197, 19,190, 74, 79,252,250,199, 11,172,202,224, 89,203,165,123,251,102, 77, 39,206,157, 51,215, +244,201,237,203,152,187,232,123,190, 78,211,110,217, 43, 15,159,202,205, 54,171,209,177, 32, 33,226,190,161,186, 2, 0,186,117, + 8, 68, 3,223,230,111,156,244,239, 80,232, 3,242,234,133,187, 72, 78,141, 55,184,146, 45, 18, 5,101,142,185, 50,100,106,126, + 25, 5, 65, 86,104,104,168, 93, 92, 92,220, 43, 3,218, 61, 60, 60, 64, 8,193,173, 91,183,112,243,230, 77, 12, 29, 58, 20, 98, +177, 24, 18,137, 4,151, 46, 93,202,173,142, 5, 11, 69,179, 8, 9, 33,221, 92, 92, 92,202,156, 61,104, 8,151, 74,165, 66,118, +118, 54, 78,159, 62,141, 58,117,234, 96,201,146, 37,112,114,180,199,220,185,211,192,243, 60,114,114,114, 74,252, 3, 25, 96, 29, +160,197,214, 33,158,231,145,154,154,138,154, 53,107, 98,195,134, 13, 88,189,122,245,247, 9, 9, 9, 85,158,229, 98,105,105,105, +166, 80, 40,198,246,238,221,219,191, 95,191,126,232,214,173,219, 43,231,119,237,218,101,114,248,240,225,153,174,174,174,237,121, +158,223, 20, 31, 31,159, 97, 8,239,143, 63, 22,186, 79, 82,182, 92,128, 89,131,106, 96,228,248, 29, 88,185,242, 16,228,114,249, + 43,149,237,194,133, 11, 43, 20, 47, 60,165,158,210,180,235, 9,211,102,174,176, 91,186,244, 44,206,158, 77,129, 72, 36,130,163, +163, 35, 68, 34, 17, 94,188,120, 1,145, 72, 4,119,119,119,136, 68, 34,196,199,199, 23,143,249,203,132,218, 48, 31,132, 34,145, + 8,106,181, 26,177, 49, 47, 17, 23, 21, 9,147,156, 36,216,154, 41,145,249, 40, 4, 13,198,124, 12,189, 94,255,119,104,209,158, + 1,112,166,212,161,131,132, 16, 61, 33,100, 56,128,125,148,210, 67, 69,199,183,161, 2,199,160, 45, 91,182,108, 52,103,206, 28, + 73,177,219, 12, 39,183,197,172, 78,167,227, 1,192,187, 65,187, 87, 84,254,211,167, 79,177,114,229, 74,228,231,231, 67, 90,133, +145,233,157, 59,119, 46, 25, 19, 41,149, 74, 97, 99, 99, 3,157, 78, 7,150,101,171,220, 53,104,237,238,242,253,173,224, 75,220, +131,168, 31, 84, 15, 31,159, 52,138,123,193, 35, 47,205,230, 95, 43,174, 94,183,100,185,184,184, 44,224,121,158, 82, 74,231,149, + 42, 91,229,110,110,110, 87,130,130,130,172, 89,150,197,186,117,235, 44,146,146,146, 44,218,181,107, 55, 11, 64,185, 2,171, 28, + 55, 13,229,161, 90,110, 26, 56, 14, 94,102,166, 22,200, 68, 28, 52, 54,250, 70, 89,214,108,198,153,196,143,239, 59, 69, 55,246, + 53,230,244, 53, 69, 57, 90, 56, 43, 45,192, 83, 90,174, 35, 52,141, 94,127,242,126,240,189,174,110,174,117,152, 95,143, 95, 70, +223,254,131,160,209,136,160,214, 19, 16, 70, 2,194, 72, 81,191, 65, 99,212,173,215, 0, 20,192,221,219,215, 89,173, 94,127,230, +223,148,246, 78,254, 19,135, 58,249,127,190, 22,148,167,101,248,193,170,217,191,127,255,165, 0, 38, 86,218, 43,209,106,226, 80, +135,214,133, 60,165,253, 96, 77,253,124, 28, 30,221,150,152, 95, 14,254, 86,218,173, 37,126, 75, 61, 75,160, 84,252, 62,139, 80, + 34,170,158,123,141,127,141,192,114,115,115,179,176, 51, 81,254,248,217,152, 15, 77,163, 31,220, 64, 92,200, 13, 92,187, 26,153, +185,251,151,163,241, 57,217,169, 99,170, 32,174, 74,186,243,108, 28,107,160,102, 25, 2,203,200,212, 22, 0, 80,211,183, 57,196, + 49,230, 85,122,145,178,172, 87,213, 17, 87,165, 43,229,178,124, 96,141, 29, 59, 22, 91,183,110, 69,155, 54,109,224,233,233, 89, +210, 82,174,170,149,236,117,107, 82,117,102, 15,150, 70,110,110, 46,220,221,221,177,101,203, 22, 60,124,248, 16,166,166,166, 24, + 58,116, 40,114,115,115, 75,132,149,161,131,220, 57,142,123, 25, 20, 20, 84,127,240,224,193, 84, 44, 22,147,172,172, 44,152,155, +155, 99,195,134, 13, 5,137,137,137, 23,170, 26, 54,103,103,231, 94, 86, 86, 86, 31, 13, 25, 50,132,241,246,246, 70,114,114, 50, +204,204, 76,181,132, 16, 25, 0,152,155,155,107,141,141,141,241,201, 39,159,160,126,253,250,205,103,206,156,217,204,193,193, 97, +103, 82, 82,210, 47, 21,229, 37, 66, 8,246,238, 45,236,157, 26,179, 54, 2, 90,109,161, 64,217,184,113, 35,138,198,178,253,222, + 21, 16, 21, 5, 24, 48, 51,197,196,196, 4,158,158,158,101,166,125,219,182,109,113,247,238,221,194, 46, 72,177, 24,118,118,118, +184,118,237,154, 65,211, 50,139, 29, 56,134,134,134,194,199,195, 6, 15,207, 6,193, 70, 41, 65, 67, 39, 7,184,180,109,143,200, +200,200,191,212,122, 69, 8,233, 11,160, 55,128, 19,148,210,195,132,144,129, 0,186, 21,239,163,138,142, 69, 89,150,165, 34,145, +136,196,198,198,234,148, 74, 37,177,178,178, 18,203,229,114,104, 52,154, 18,161,245,244,233, 83, 28, 63,126, 28,113,113,113,176, +178,178, 18,153,155,155, 67,167,211, 25, 52,163,148,227,184, 55,220, 51, 20, 61,183,202,226,106, 20,224,183,117,241,178, 26,114, + 17, 99,238, 99,211, 29,207, 30, 61, 85,229,165,101, 25,253, 23,196, 21, 0,100,102,102,110, 6,176,185,120,223,214,214,118, 52, +195, 48,115,205,205,205,205, 47, 93,186,100, 97,107,107, 75,118,236,216,161,159, 55,111, 94, 22,195, 48,153,132,144,213, 21,241, +149,227,166,225,109, 4,160,251,155,199, 16,150,150, 29,229, 46,177,116,226, 31,168,233,245,201,177,179,234,102, 74,234,216,146, +122,126,232,159, 18,126,117, 52, 27,213, 58, 57, 49, 73, 68,193,135, 85, 80, 6,111,155, 53,103,225,244,200,136,123,110, 10, 51, + 5,198,142,155,131,223, 78, 93, 0, 17, 73,112,229,250, 45,104,117, 28,210, 50,178, 49,100,216, 8,184, 56,218, 32,236,230,233, + 84,150,231, 55,252,187,196, 53,191,190,107,223,209,150,114, 35,101, 81,156,112,248,249,127,211, 32, 18,173,197,252,249,243,225, +231,231, 55,190,104,229,134,140,138,203, 15,126,125,253,246,195, 44,165,242, 66, 30,202,115,216,114, 96, 86,145, 31,172, 41,216, +176,249,151,250,245, 60,158,127, 85,145, 31,172,255,148,192,170, 81,163,134,220, 88,130, 79,172,140,164, 51, 62, 27,222,207, 54, + 37,234, 17,226,194,239, 21, 42,127,141, 74,159, 24,121,169,161, 1,133,118,231,215,252,111,208,138,186,168,212,234,202, 91,240, +175,115, 22, 87,180,175, 91,175,170, 34,174,202,226, 44, 45,178, 74,251,189,114,117,117,197,210,165, 75, 43,245,131, 85,198,187, + 23, 31,239, 6,160, 65,177,200, 66,225, 32,247,110,134,204, 28, 44,143,211,214,214, 22,233,233,233, 0,128,128,128, 0, 4, 4, +252, 62, 79, 65,167,211,149, 88,173, 76, 77, 77,223,176, 96,149,197,201,178,236,178,195,135, 15, 15,186,113,227, 70,239,105,211, +166,137, 59,118,236, 88,104,191,207,207, 87, 83, 3,214, 94, 43,131,115,248,169, 83,167, 24,158,231,177,101,203, 22, 4, 7, 7, + 83, 99, 99,147,201, 38, 38,166, 59,204,204,204,184,172,172,172,225, 31,127,252,113,191,175,190,250,138,180,109,219, 22, 55,110, +220, 32, 53,107,214, 12, 4,240, 75,101,239,126,235,214, 45,136, 68, 34,176, 25, 49, 24, 63,107, 31,140,141,196,136,136,136, 64, + 70, 70,198, 27,206, 71, 13,137, 79,158,231, 75, 42,238,226,173,109,219,182, 37,221,141, 45, 90,180, 0,195, 48,184,127,255,126, +153,221,173,175,113, 82,107,107,235,146,252, 33,149, 74,113,225,194, 5,124,243,205, 55,112,179,178, 64,102,248, 67, 56, 4,116, + 68,151, 15, 63,198,208,161, 67,193, 48, 12,172,172,172, 74, 44,189,149,189,251, 91, 10,170, 18, 78, 66, 72, 31, 31, 31,159,217, + 97, 97, 97, 46,245,235,215,247, 37,132, 4,248,249,249, 53,123,248,240, 97,241,190,132, 82,186,191, 42,156,119,238,220, 57,184, +126,253,250,113,163, 70,141,146,242, 60,207, 69, 71, 71,235, 1, 16, 7, 7, 7,230,206,157, 59,252,175,191,254, 10,149, 74, 5, + 23, 23, 23,145,179,179, 51, 57,115,230, 12, 31, 30, 30,126,139, 82, 58,199,208,119, 47,158, 41, 88, 60,152, 93,165, 82, 25, 36, +174, 94,231,172, 81,215,107, 73,167,118,222,174,105, 9,247,145, 24, 31, 5,117,134,165,254,194,233,107, 85, 18, 87,127,116, 26, +253,201,156, 11,159, 60,121,226,172,209,104, 32,147,201,176,113,227, 70,221,210,165, 75,195,210,210,210,252, 41,165,170,234,134, +179, 42, 14, 72, 43,227,204, 78,199,111, 71,142,222,105,102,210,127, 27,198, 39,164,150, 12, 92,164,132, 88, 29,178,247,245, 87, + 54,175, 31, 47, 58,177, 64,148,203, 21,252, 86, 30, 39,165, 84, 75, 8, 25,212, 63,112,216,185,189,123,247,152,204, 91,176, 0, +215,110, 61, 68,122, 86, 30,120,202,128, 39, 4,115,231,206,131,131,141, 21,114, 18,158, 20,104,116,186,254,175, 47,153,243, 79, + 79,119, 66, 68, 19,206,252,186, 99,173,136,128,207, 79,126, 44,103,114,163,148, 35,135,246, 23, 15, 26, 52, 8,135, 14, 29, 66, +104,104,232, 15,229,137,171,210,156,148,138, 38, 60,188,180,111, 45, 1,120, 85,234, 99,185, 56,239,185,242,131,225,253,197, 67, +135, 14,197,225,227,215,177,247,216,243, 77,123,126,165,199,240, 31, 67,185, 2,203, 84,140, 80,127,223, 90,206,109, 27,215, 83, +136, 57, 21,226,194,163,144,145,175,198,153, 71,209, 89, 34, 42,250,169,186, 15, 44, 28, 59, 33, 69, 76,204,147, 55,206,101,101, + 41,138,172, 49, 85, 91,246, 73, 36, 18,189, 98,189,122, 27,203, 85,233,112,218,219,219,191,178,236, 74,233, 10,187,120,140, 79, + 53, 92, 52,204,138,137,137, 49,139,137,137, 1,165, 20,183,110,221, 50,107,209,162,197,172,183,177, 94, 77,155, 54,237,149,229, + 65, 74,255,150,117,172, 50,164,166,166,230, 3,248,209,222,222,254,183,233,211,167,191,223,178,101,203,182,243,231,207, 39,148, +210,234, 70, 44,203,243, 60, 46, 94,188,136, 67,135, 14,113, 90,173,118,118, 98, 98,226,227, 82,231,127,114,117,117,189,210,175, + 95,191,149,145,145,145, 76, 88, 88, 24, 12, 17,114, 42,149, 10,158,158,158, 96, 89, 22,223,142,119, 69,110,110,125,176, 44, 11, +142,227, 96,108,108,252,202, 58,148,134,164,147, 72, 36,122,197, 50, 82,188,221,186,117, 11, 12,195,192,223,223, 31,247,238,221, + 43,177, 96, 85,102,113,210,233,116, 49,246,246,246,246, 11, 23, 46, 44, 9, 87,106,106, 42,130,130,130,208,178, 85,107,248,126, + 50, 22, 9, 9, 9, 88,189,122, 53,156,156,156,176,100,201, 18,100,100,100,128,101,217, 63,219,108,222, 61, 44, 44,204,101,248, +240,225, 41, 15, 31, 62,116, 57,126,252,184, 69,239,222,189,141,135, 13, 27,150,242,240,225, 67, 23, 66, 72, 59, 0,251,171,248, +253,204, 38,132,156, 90,178,100,201,172,137, 19, 39,182, 24, 53,106,148, 68, 34,145,240,241,241,241,236,158, 61,123,136,167,167, +167, 72, 42,149,146,211,167, 79,243,183,111,223,190,201,178,236,183,148,210, 43, 85,181, 50, 23,139,171,170,142,185, 42,198,100, + 59,249, 7,166,162, 84,255,245, 27,151,138,188, 61, 92,116, 59,247, 4,197, 94,185,241,228, 25,163, 97, 39,255, 8, 60,195,127, + 16, 12,195,236,247,241,241, 25, 61, 97,194, 4,163,110,221,186,201,191,250,234,171,236,220,220,220, 50,197, 85, 89,168,138,155, + 6, 84,209, 1,105, 41,252,111,246, 23,199, 39, 79,173, 63,186,214, 71, 14, 53,112, 54, 63, 5,153, 98, 70,100,102, 33, 66, 99, +119, 6,185,105, 79,109,143,157,219,254, 2,149,248, 85,163,148,222, 33,132,116,174, 87,191,209, 47,223, 46,249,214,238,203,153, + 51, 36,191, 28, 63, 9,202,234,112,235,210, 37,152, 72, 57, 26, 30,124, 54, 89,163,211,246,251, 55, 46,149,147,112,117,221, 94, + 66,200, 81, 43, 43,171, 7, 31,142, 26,229,233,227, 51, 12, 74,165, 18, 7, 15, 30,196,207,235,214,113,107,128,193,155, 9,185, + 55,150,210, 10,235,252,228, 27, 37, 60,247, 63,254,240, 67,175,198,141, 63,130, 82,169,196,129, 3, 7,176, 99,205, 26,131,121, +254, 51, 2, 11, 34,146,123,243, 73,116,222,173, 39,209,121,224, 41,229, 41,213,136, 68,136,205,215,233,150, 68, 62,139,171,150, + 24, 40,238, 34, 92,180,120,194,187, 84,230, 37,162,167, 58,211,178,203,169, 28,226,234,212,169,131,215, 45, 90, 21,253,215,235, +245,113, 6,210, 47,115,115,123, 99, 93,210,101,213, 13,107,113,183,159,161,226,202, 80, 63, 88, 0,144,156,156,156, 10, 96,133, +139,139,203,209, 30, 61,122, 12, 37,132, 36, 85, 51,141,246,118,232,208, 97, 40,165,148, 17,137, 68,187, 94, 19, 87, 0,128,216, +216,216,231, 46, 46, 46, 91, 60, 60, 60, 74, 22,128,174,136,147,231,249,231,245,235,215,215,149,149, 22,229,237,243, 60, 95,105, + 26,101,101,101,161,121,243,230,111,172, 57, 73, 41, 69,116,116,116,177,133,169, 36,238, 43, 18,110,121,121,121, 99, 63,255,252, +243,205, 18,137,196, 13, 0, 41, 22,183, 28,199, 49,223,127,255,189,130,227, 56, 6, 0, 17,137, 68,172, 68, 34, 81, 31, 58,116, +136,101, 89, 54, 70,163,209,140,253,147,203,129,125,132, 16, 9,128,204,176,176,176,118, 69,150,171,184,208,208,208,179,123,247, +238,181, 7, 42,119,159, 80, 78,222,188, 2,224, 10, 33,164,237,198,141, 27,103,143, 29, 59,182,249,208,161, 67,197, 1, 1, 1, +248,237,183,223,184,139, 23, 47,222, 82,169, 84,203,170, 42,172, 8, 33,121,238,238,238,133, 5,152,184,226, 81, 14, 44,203, 86, +216, 90,179,118,151,175, 31,241,169,147, 98,203,178,160,188,180, 4,237,117,125,158,118,206,118, 32, 20,255, 97, 36, 37, 37,125, + 65, 8,153,183,122,245,234,132,134, 13, 27,202,165, 82,169,214, 80,113, 85,212,240,177,175, 66, 30,225,171,153,183, 88, 66, 72, +207, 85, 93, 6, 30,109, 63,247,115,143, 46, 29,252,149,174, 53,236,156,195,163,146,241,244,198,111,249, 15,142, 45,126, 73, 53, +153,125, 41,165,172, 1, 92,183, 9, 33,117,166,205,152, 86,188,216,115,131, 78,103,142,208,255,208, 98,207,139,150, 47, 95,238, +233,227,227,131,131, 7, 15,226,204,174, 93, 24,146,150,134, 11, 12,195,136,164, 82,235, 99, 58,221, 10, 0,134, 8,163, 69, 43, + 87,174,244,242,243,243,195,254,253,251,113,122,199, 14, 12,174, 30, 79,121,104, 6,192,182,232,127, 26,128,199, 0,154, 0, 48, + 2,160, 1,144, 7,192,166,212,245,233, 69,231,138,207, 95, 6,240,167, 14,116, 45,183,116,122,248,228, 69,147,119,253, 48,149, + 74,149,225,233,233, 41,169,202, 61,122,189, 62,165,146, 2, 52,174, 86,173, 90, 6, 91, 41, 12, 17, 67,233,233,233, 77,255,168, + 8,127,219,177, 86,175, 8, 65,158,127,233,232,232,200, 23, 87,246,101,137,175,178,142, 81,224, 69, 85,158, 19, 23, 23,247, 12, +192, 55,213, 13,103, 92, 92,220, 73, 24,176,152,179,161,215, 1, 64, 70, 70,198, 59, 95,100,151, 80, 26,255,213, 87, 95, 85, 73, + 88,131,210,248, 10,210,250, 33,128, 22,127,247,210,149, 82,122,185,168,240, 1, 33,164, 63, 33,164, 39,128,211,148,210,131,239, +136,191, 68,104,109,217,178,101, 50,165, 20, 57, 57, 57,107,170, 42,172, 74, 9,255,243,239,234,221, 51,146,181,231,247,252, 16, +215, 81,149,165,155,188, 53, 79,187, 3, 2,138,211, 76,109,103,103,247,211,200,145, 35, 91, 2,216,254, 46, 56,223,194, 77, 67, +121, 97,124, 65, 8,105,120, 97,218, 55, 31, 94,176, 48,237, 5, 78,236, 13,173,232, 24,180,233,191, 1,248,209, 16, 43,120,233, +247, 5,176,178,104,251,207,160,200,127,213,228,209,163, 71, 99,222,188,121, 56,189, 98,133,238, 83, 66,178, 37, 0, 61, 85,216, +192, 20, 17, 96,166,161, 60, 31,124,240, 1,230,205,155,135, 19,223,126, 91, 45,158, 74, 96, 75, 8, 57, 14, 0,179,102,205,154, +179,116,233, 82,203,217,179,103, 55, 88,182,108,217,146,162,253, 71,197,231,139,210,180,247,236,217,179,235,149, 58,159, 11,224, +206,159,253, 33,253, 97, 27,128,206, 2,167,192, 41,112, 10,156, 2,167,192, 41,112, 10,156,111,185,245, 42,148, 44,229,255,150, +247,191,212,177, 63, 51,188, 16, 9,109, 53, 1, 2, 4, 8, 16, 32, 64,192, 63,212, 10,119,252,109,206,255,161, 97, 3,208,185, + 28,203,214,217, 42,188, 96,231,106, 88,206,206, 10,156, 2,167,192, 41,112, 10,156, 2,167,192,249,223,226,172,140,187,156,251, +123, 17, 66,142, 83, 74,123,151,247, 91, 44,168, 94,255, 95,234, 88,149, 87, 30,121, 43, 8, 93,132, 2,167,192, 41,112, 10,156, + 2,167,192, 41,112,254, 19,186, 8, 1,208, 89,179,102,205,254, 39,116, 17, 86, 48, 5,231, 32, 19, 31, 15, 51,153, 76, 41, 5, + 0,173,182, 64,231,236,140, 28, 96,224, 95,182, 16,173,128,127,172, 9,215,190, 72,204, 39,191,203,107, 5, 8, 16, 32, 64,192, +127, 6,169,197,150, 41, 0,169, 0, 72,209,190,182,232, 55,181,168,238,120,253,255, 43,231,255, 76,136,203, 19, 87,105,105, 74, + 27,177, 56,211,139,227,212,117, 1, 64, 44, 22, 69,164,165, 89, 70,218,216, 28, 76,171,142,200,178,181,183, 15,150, 48,140,179, + 33,215,234, 57, 46, 62, 45, 57,249, 21, 87,239, 20,248,199, 11, 59, 67,197,195,219,136,140, 63, 67,160,216,218,218,218,219,219, +219,191,103,102,102,214, 42, 43, 43,235,118,106,106,234,225,212,212,212,228,114,194,179,148, 16,204, 40,250,255, 29,165,116,118, + 5, 97, 55,248,218, 50,238,245, 84, 42,149,227, 9, 33,126, 69,239, 31, 90, 80, 80,176,145, 82,250,228, 63, 40,104,141, 0,244, + 19,139,197, 31,216,216,216, 52, 79, 74, 74,250,138, 82,186,186,154, 92, 98, 0,211, 44, 44, 44,134, 90, 88, 88,212,204,200,200, +120,150,147,147,179, 31,192, 74, 74,105,165, 83,158,191,158,228,212, 42,160, 91,192,151, 23, 79, 95, 92,180, 96,109,194,141, 55, +206,127,225,100,221,181, 75,155,121, 23,143, 93, 95, 56,123,189, 97,203, 35,149, 10,155, 8, 40, 25, 71,202, 23,181, 82,233,223, + 56, 93, 90, 2,152, 83, 20,230,149,148,210, 11,127,243,124,100,108,111,111,255, 45,128, 62, 98,177, 56, 44, 62, 62,254, 19, 74, +105,220, 59,226,150, 0,176, 2,144, 97, 72, 62,122, 45, 63, 54, 3,224,135, 66,119, 26,119, 12,113,197, 96, 96,185, 54, 74, 36, + 18, 45, 46,114,125, 51, 55, 61, 61,125,251,223, 53,109,228,114,249, 26, 7, 7,135,143, 84, 42, 85, 1, 33,132,150,246,215,200, +178,108, 92,106,106,106,211,127, 97,209,118,231,159, 22,224, 50, 5, 86,124, 60,204,196,226, 76,175,148,164,135, 67, 18, 18, 67, + 6, 3,128,147, 99,131,253,118, 14,245,247,197,199,203,116,205,186, 4,154, 72,148,226,141, 12, 35,105,164,214,106,108, 36, 98, + 73,154,142,213,223, 23,105,233,248,196,136, 67,101, 58, 73,148, 48,140,243,203,200, 11,118,172, 46, 3, 18,133, 19, 36, 70,110, +229, 6,202,201,201,169, 90, 47, 99,101, 85,219, 84, 39, 87, 76,150, 72,152, 46, 60,101,253, 40, 15,136,136, 36,148,229,244,231, +164, 26,205,170,140,140,168,220,234, 70, 84, 93, 27,226, 64,129,161, 32,232, 2,138, 51, 4,216, 27,145, 70,147,170, 80, 48, 24, + 36, 30,222, 82,100,148,190,119, 53,165,244,139,119,157, 97, 92, 92, 92, 44, 7, 12, 24,176,230,155,111,190, 49, 50, 49, 49, 33, + 49, 49, 49,221,102,206,156,217,206,197,197,101,106, 92, 92, 92,194,235, 98,143, 16,204,224,249, 66, 7,165, 34, 17,153,105,111, +111,175,100, 24,230,141,197, 67, 57,142, 83, 18,130, 9, 60, 95,184,224,184, 72, 68,102, 16, 66,214, 26, 34, 20,141,140,140,134, + 53,111,209,122,234,183,203, 87,154,216,219,217, 25,179, 28,175,123,241,242,165,241,151,179,191,104, 97,100,100,180, 86,165, 82, +237,169,234,123, 18, 66, 8,195, 48, 67,228,114,121,111, 0, 62, 69,135,195, 53, 26,205,113,142,227,246, 25, 90,145, 59, 56, 56, + 92,102, 24,166, 70, 85,158,205,113, 92, 76, 82, 82,146,127, 53, 43,174, 65,110,110,110, 63,182,111,223, 94,217,188,121,115,200, +100, 50,204,155, 55,111, 26,128,213,134, 8, 41,165, 82, 57,196,216,216,184, 86, 94, 94, 94,148, 74,165,250, 69, 38,147,117, 94, +187,118,173,107,155, 54,109, 76,147,147,147, 9,195, 48,246,199,143, 31,127,127,221,186,117,221, 8, 33,157, 42,171,220,178,163, +232,151,242, 62, 62,109,179,163, 46,124, 9,160,199,235,231, 89,181,226, 3,202,184,246, 86,209,123,177,168,194, 20,121, 66,136, + 72, 34,145,172,117,112,112, 24,173, 86,171,213, 0, 40, 33,132,218,219,219,151, 84, 52, 0,160,213,106, 51, 51, 51, 51,189, 43, +252,182,235,214,189,203, 48,140, 75, 5,233, 17, 23, 17, 17,241, 46, 42,172, 25, 73, 73, 73, 61, 37, 18, 9,113,117,117,101, 0, + 92,168,194,251,122, 1,152, 91, 84,201,108,164,148,114,132,144, 14, 64,225,247, 14,224,187, 98,193,198, 48,204, 70,111,111,239, +247,194,195,195, 55, 81, 74, 23, 85, 55,176, 14, 14, 14,155, 55,108,216, 48,184,111,223,190, 76,106,106,170,115,195,134, 13,119, + 3,104,251,150,194, 74, 6, 96,182,131,131,195,103,254,254,254,214,247,238,221,203, 32,132,108, 0,176,172, 34, 95, 83,132, 16, + 23, 0,157, 45, 44, 44, 58,205,157, 59,215,164,119,239,222,216,178,101, 75,207,173, 91,183,230, 17, 66,206, 1, 56,251,182,226, + 79, 36, 18, 45,142,143,143,119,164,148,194,209,209,113, 49,222,145,123,138,119, 13,134, 97,214, 14, 25, 50,100,244,238,221,187, +149, 47, 95,190, 84, 58, 59, 59,151, 56,189, 38,132, 84,187,254, 20,240, 39, 9, 44,153, 76, 41,229, 56,117,221,132,196,144,193, +237,218,127,111, 14, 0,151, 47,125, 62,216,206,161, 94,168, 76,166,140,148,155, 41, 14, 5,246,233,220,104, 96,239,246,196,197, +209, 14,113,137, 41,246,255,219,123,186,251,241,211, 23, 14,161,208,241, 87,153, 96,117, 25, 48,210,157,197,227,171,235, 96, 19, +144,128,245, 39,226,112,227,193, 11, 20,100,167,161,134,131, 17,150, 79,238, 10, 7, 75,101,181, 94,196,196,222,171,131, 72,161, +220, 55,124,216, 72,243,247,250,249, 72,220, 29, 28, 64,169, 28,145, 81,121,173, 79, 6, 93,104,246,203,129, 61,227, 77,236,189, +134,228, 37, 71, 26, 92,168, 53,113, 34, 70,249, 58,244, 19, 51,228,253,182, 45,234,117, 26,214,179,173,200,215,167, 14,194, 30, +133,119, 61,122,254,214,114, 95,123,209, 57,150,163, 59,141,165, 56, 18,156, 80,190, 35,190,178,132, 70,167, 78,157, 26, 27, 25, + 25,105, 75, 95,167, 82,169,100,132,160, 83,117, 68, 70,241, 51,180, 90,141, 72, 34,145, 65, 36, 34, 83, 27, 52,104, 80, 35, 45, + 45,237,178, 72, 36,218, 21, 23, 23,151, 89,149,248,156, 72,136, 44, 83, 44,110, 34,146,203, 29, 57,173,214, 26, 0,136, 76,150, +233, 98,105, 89,127,238,156, 57, 38, 12,195,240,233,233,233, 40, 40, 40, 32, 31,127,252,177, 34, 42, 42, 42, 16,192,186, 74,194, +136,173, 91,183,122, 57, 58, 58,106, 95, 63,151,152,152, 40,235,219,247,189,234, 20,216, 94, 45, 91,181,153,114,250,244, 41,159, +156,140, 76,245,214,213, 91,238,233, 21, 70,106,143,186, 94,210,141, 91,118,152,125, 50,122,196,231,132,144,251,148,210,200, 42, +112,186, 25, 25, 25, 29, 90,177, 98,133, 95,135, 14, 29, 36,118,118,118, 72, 78, 78, 70,120,120,184,223,249,243,231,251,237,216, +177, 99, 26, 33, 36,144, 82,106,136,199,117,207,115, 59,127,180, 51,182,178, 6,167,215,195,169, 65,227, 18,255,100, 79,207, 7, +129,213,233,192,235,245,240,233,221,175,208, 12,195,243,240,245,245,173,150,183, 92, 66,136, 83,189,122,245,126, 94,178,100,137, + 84,163,209,224,214,173, 91,184,112,225, 2,159,152,152,184,172, 50,113, 69, 8, 9, 90,176, 96,129,139,191,191,191,105, 90, 90, + 26, 56,142,179, 57,114,228,200,248,198,141, 27,155,185,186,186,202,118,238,220,137,188,188, 60,176, 44,107, 85,171, 86, 45,171, + 97,195,134,105,119,238,220, 57, 13,192,183,229, 89,174,114,162,232,151, 73,164, 86,119,239, 38, 31, 32,137,156,234, 62,181,135, +227, 73,179,218,164,196,146,213,163,118,109,211, 90,117,141,103,154,152,213,183,202,137, 63, 59,179, 71,237,218, 91, 79, 70, 85, +222, 8, 34,132,136, 68, 34,209,218,192,192,192,225,123,247,238, 85,134,135,135, 43,125,124,124,192,243,124,137,199,252, 98, 71, +177,158,158,158,134, 84, 88, 46,231,206,157,179, 51, 50, 50,122,195, 41,111,126,126, 62,250,246,237,251, 71,148,183, 85, 77,227, +175,159, 63,127, 62,232,208,161, 67, 35,102,204,152,225, 9, 96, 2,128,121,233,233,233,237, 1,192,218,218, 90, 6,224, 2, 33, +228,195,233,211,167,127, 58,107,214, 44,244,236,217,115, 30, 33,100,113,117,172,122,132, 16,198,198,198,166,103,223,190,125, 25, +189, 94, 15, 99, 99, 99,232,245,250,218,111, 41,174,228, 82,169,244,215, 21, 43, 86,116, 25, 54,108, 24,196, 98, 49,120,158,183, + 10, 10, 10,154, 63,122,244,232,182,132,144, 30,101,137, 44, 66,200, 7,159,126,250,233,128,145, 35, 71,162,105,211,166, 37,206, +101, 87,172, 88,129,133, 11, 23,154, 4, 5, 5,245,219,185,115,103, 63, 66,200, 47,148,210,106,251, 50, 43, 94, 47, 52, 54, 54, + 22,118,118,118, 70, 86, 86, 86,137, 0,190,202,200,200,216,242, 55,178, 42,126, 55,100,200,144,225,187,119,239, 54, 1,128,229, +203,151, 99,202,148, 41,176,183,183,135,137,137,137,160,104,254, 9, 2,171, 50, 20, 20, 20, 52,158, 61,241,125,136, 68,133,173, +196, 58, 53,221,176,116,206, 39,228,232,241,211,141, 43,186, 79,162,112,194,227,171,235, 32,119,157, 12,141,158,197,205, 7,207, +113,102,121, 55, 0,128, 87,143,185,208,232, 58, 21,103,116, 43,153,145,209,119, 90,142,187, 6, 7,135, 91,136,142, 78,173, 76, + 92,217, 58,216, 31,255,225,135,111,141,252,106,123, 67,199,234, 17,159, 18, 15, 66,228,112,113, 54,197,135, 31,244,144,180,111, +239,100,243,245,215,155,127, 51,182,245,234,159,159, 26, 89,169,163, 79,111, 91,178,189,109, 99,207,193,195,122,249,203,235,251, +213,131, 84,110,244,187,240,106,218, 20, 77,154, 54, 21,205,202,203,237,114,251, 78,112,151,131, 65, 55, 53,222,182,100,255,227, + 84, 58,170,162,111,163,180,208,152, 52,105,210, 27, 11, 18, 39, 38, 38,226,226,197,183,234, 53,120,229, 25,223,124,243,141, 73, + 86, 86, 86,231,255,253,239,127,237,156,157,157, 87,196,199,199,223, 52,132,228,125, 66,106, 64, 46,239, 52,122,229, 74,190,209, +123,239, 49, 22, 14, 14, 34,158,227, 72,194,179,103,214,171,215,173, 11,200,120,250,212, 40,223,202, 42, 35, 83,165, 42,136,140, +140,132, 66,161, 32, 98,177,184, 89, 25, 5, 86, 50, 33,228, 59,145,136,204, 36,132, 64, 46, 87, 68,142, 27, 55,238, 94,209,233, + 26,199,142, 29, 83,246,233,211,167, 0,192,203, 66,179,183,194,153, 97, 68, 94,133, 3, 4,241,157, 33,194,210,216,216,120,226, +162, 37,223, 25,231,100,100,169,116,249,249,122, 59, 51, 19, 2, 19, 19, 38, 55, 39, 47, 39, 33, 41, 85, 61,247,171,133,226,177, + 31,142,156, 8, 96,188,161,226,170, 97,195,134,183, 15, 29, 58,100,103,109,109,141,172,172, 44,164,167,167,227,246,237,219,224, +121, 30,129,129,129,242,214, 45,154, 55,158, 51,247,203, 27,132,144, 86,134,136, 44, 99, 43, 27, 44,247,111, 4, 0,152,255, 50, +189, 36,125,182, 12,234, 93,114,205,194,184,108, 0,128, 66,161,120,155,165,158, 90,117,234,212, 73, 10, 0, 99,198,140,201,201, +205,205, 93, 10, 96, 55,173,192, 25,106, 17,166,125,249,229,151,206, 53,107,214,116,223,189,123, 55,242,242,242, 0,192,174,102, +205,154,240,246,246,230, 46, 94,188, 8, 47, 47, 47,152,154,154,226,242,229,203,184,121,243, 38,154, 52,105, 98, 42,149, 74, 7, +151, 39,176, 2,186, 5,124, 41,239,227,211,214,187,201, 7, 48, 49,115,196,214, 61,251,240, 56,120, 71, 91,141, 46,252,203,165, + 19,156, 71,170,168,124,148,139,167,233,172, 26, 77,219, 91,215,169,247, 30,220,155,220,179, 81,115, 87,158,207,251,172,214, 50, +177, 66,189, 99,193,138,132,244,242,196, 21,128,229,129,129,129,131,246,238,221,107, 1, 0, 15, 31, 62, 68,114,114, 50,108,109, +109,161, 80, 40, 32,145, 72, 74,214, 15, 53, 20, 70, 70, 70, 72, 76, 76,132, 78,167, 43,182, 90, 33, 55, 55, 23, 14, 14, 14,133, +234,230,107, 34, 90,176,192, 48,175,227,132, 16,255, 22, 45, 90,236,114,119,119,119, 45,125,188, 87,175, 94, 24, 58,116, 40, 0, +160,125,251,246,157, 6, 14, 28, 72,139,133, 96, 98, 98, 98,222,157, 59,119,186, 80, 74,111,149, 99, 93, 81,197,199,199, 99,250, +244,233,120,241,226,197,103,132,144,104, 0, 10,153, 76, 86,210, 46, 38,132,120,213,171, 87,111,237,148, 41, 83, 16, 21, 21,133, +176,176,176,219,213,237, 50,165,148,114, 30, 30, 30, 79,245,122,125, 83,150,101,161, 82,169,208,191,127,127,133,149,149, 85, 50, +195, 48, 17,105,105,105, 35, 40,165,137, 85,176, 90,185,139,197,226,245,211,167, 79,239,212,185,115,103,132,132,132,224,208,161, + 67, 24, 54,108, 24,186,119,239,142, 21, 43, 86,180,159, 48, 97,194, 44, 0, 11,202,160,232,180,113,227, 70,112, 28,247,198,183, +161, 80, 40,224,239,239, 15, 95, 95, 95, 28, 61,122,180, 19,128,106, 9, 44, 66,136,215,128, 1, 3, 20,197,162,250,226,197,139, +230, 70, 70, 70,230, 46, 46, 46, 11, 0,252,109, 4,150,187,187,251,184,189,123,247,154,148,238,237,145,203,229, 40,149, 15, 4, +252,221, 5,150, 86, 91,160, 19,139, 69, 17, 78,142, 13,246, 95,190,244,121, 73, 23, 33, 32,138,208,106, 11,116, 0,192,241, 20, + 57, 5, 44,140,228, 34,188, 76,202,197,163,103,105,101,125,164,175, 76,181,148, 24,185, 65,222,252, 37, 40,165,208,234, 56,104, +178,147,176,244,183, 2,132,199,169,161,205,207,132, 86, 87, 56,204,202,198,198, 70,124,250,244,201, 41,103,207,158,255,244,167, +159,126, 98,226,204,205,195,144,157,221,184, 44, 78, 43,171,218,166, 98, 99,163,253,155,126,152,103, 68,153,103,136,140,201, 71, + 29,151,230,176,177,112, 69, 82, 90, 62,174,133,157, 64,196,147,227,168,233,232,142,201, 19,187, 43, 22, 45,217,189,207,210,178, +166, 91,102,230,243,156,242,194, 89,132, 15, 54,159,138, 4,155,241, 12, 92,122, 20,184,220,132, 55,133,157,173, 27,154,116,112, +134,173,107,109,249,168,201, 11, 63, 0, 48,170, 44, 78, 74,105, 50,195, 48, 27, 69, 34, 50,158, 16, 2, 63,191,250,207,215,172, + 89,163, 45, 43,234,253,252,234, 63,103, 24, 81,205,194,101, 88, 68,155,120,158, 75,174, 36,156,175,136, 25,153, 76, 62,163,208, +188,239,248,236,228,201,147,218,129, 3, 7, 98,249,242,229,210, 89,179,102,125,225,238,238, 62, 33, 58, 58, 58,169,162, 52, 10, + 36,196,205,185,118,237,174,139,175, 93,163, 18,189,158,100,220,190,157,147,149,152,200, 38,229,230,202, 14, 68, 68,244,252,232, +139, 47,100,174,174,174,184,122,252,184,117,106,126, 62,205,210,104, 84, 89, 89, 89,148,101,217,219,229,188,251,108,123,123,123, +229,214,173, 91,189,198,141, 27,119, 47, 33, 33, 97,118, 81,193,176, 20,128, 47,128,151,165,142,225,135, 31,246,197,127,252,241, +199,145,201,201,201,179, 43, 10,103, 41,212,179,179,181, 85,238,217,188, 51,196,202,212, 72,100,227,226, 40,146,152,155, 75, 88, +185, 82, 74, 41,212, 53,107,214, 86, 2,168, 87, 78,156,157,125,173,144, 37, 70, 70, 70,135,126,253,245, 87, 59,137, 68, 2,142, +227, 96,107,107,139, 23, 47, 94, 32, 43, 43, 11,185,185,185,120, 30, 17, 14, 15, 87, 87,124, 61,107,166,227,132,153,179, 14, 17, + 66,154,150,174,196,202, 10, 39,167,215,189, 97,201, 43,103,129,240, 87,126, 13, 73,247,215,240, 34, 38, 38, 6, 38, 38, 38,240, +243,243, 51,185,118,237,218,149,242,196, 85,105, 78,133, 66, 49,184, 77,155, 54,166,123,246,236, 65,147, 38, 77, 96,110,110,142, +139, 23, 47,226,225,195,135,208,233,116,162,188,188, 60,152,154,154, 98,217,178,101,112,119,119, 71, 78, 78, 14, 98, 98, 98,172, + 37, 18,137, 77,121,156, 23, 79, 95, 92,148, 29,117,225,203, 36,114,170,251,214, 61,251,240,241,176, 33,112,160,207,174,152,215, + 38,139,186,246,105, 51,159, 50,174,189,141, 77, 27, 88,122,250,245,129, 84,102,130, 9, 51, 22, 34, 50,244,152,101, 65,110,200, +103,132,139,117, 5, 48,233,117, 78, 82, 24, 49, 34, 87, 87,215,143, 14, 28, 56, 96, 90,202, 2, 85,178, 14,105,233,197,217,203, + 91,136,189,204, 52,226, 56,232,116, 58,232,116, 58,112, 28,135,180,180, 52,228,230,230,194,194,194,162,240,130, 5, 0, 1, 33, + 20,101, 11,150,215, 56, 71,156, 61,123,214,213,216,216,248, 13, 11, 73, 90, 90, 26, 88,150,133, 82,169, 44,121,166, 94,175,135, + 90,173, 54,241,245,245, 29, 15,224, 86, 89,156, 60,207, 79, 29, 60,120,112,155, 91,183,110,213, 90,183,110, 29,180, 90,237,242, +164,164, 36, 12, 24, 48, 0, 60,207,163, 83,167, 78, 45, 41,165,143,231,206,157, 11, 0,152, 50,101,138, 62, 63, 63,127,156, 33, +239, 94,142,224,240, 29, 56,112, 96,173,115,231,206,161,109,219,182,208,104, 52, 88,177, 98,133,217, 15, 63,252, 96,182,115,231, + 78,219, 25, 51,102,252, 8,160, 91, 69,156, 69,194,106, 78,247,238,221,167,246,237,219,215, 56, 62, 62, 30, 22, 22, 22,216,183, +111, 31,150, 45, 91,118, 89,171,213,206,217,185,115,231,210, 67,135, 14,181, 29, 54,108, 24, 86,172, 88,241, 25, 33,100, 17,165, + 84, 95, 22,231,243,231,207, 97,107,107, 11, 51, 51, 51, 0,133, 11,217,223,191,127, 31,103,206,156, 65,221,186,117, 13, 17,141, +229,133,211, 43, 48, 48,240,250,238,221,187, 45, 98, 99, 99,113,249,242,101,120,120,120,160,160,160,160,210,101,197,222,245,162, +204,149,113,170, 84, 42,117, 76, 76,140,201,183,223,126, 11, 71, 71, 71,184,187,187, 67,161, 80,128, 16, 2,189, 94, 95,110,120, + 13, 9,103, 64, 0, 17,167,197, 91,246, 53,183,176,252,140, 82, 42,206,206,206,220,172, 67,214,193,168, 40,170,253,179,222,253, + 95, 41,176, 8, 33,148, 82, 74,138,127,157,157,145,147,150,102, 25,105,231, 80,127,159,157, 67,189,162,117,185, 68, 17, 12, 99, + 25,105,111, 95,144, 3, 0, 58,150,226,122, 68, 22, 66,158, 38,225,225,211, 36, 24,203, 13, 91,166, 70,163, 99, 11,231, 89, 82, + 10,117,222,239,141, 84, 93, 65, 38, 52,186,194,225, 28, 90, 77, 1,178, 83,195,200,160,254, 93, 20,159,126, 58, 22,142,142,206, +182,229,241,233,228,138,201, 19,166,244,180,176,178,144,224,248,181, 83,104, 89,183, 63, 20,114, 9,210,179,213, 0, 1,158, 60, + 59, 3,240,166, 8,141,140, 65,139,122, 74,116,235,234, 99,114,248,224,227, 47, 0,204, 51, 36,188,108,220,109, 72, 61,123, 64, +194,233,161, 79,123, 12, 62, 43, 26, 48,118,128,138,152, 32, 61, 49, 26, 17, 87,126, 49,104,137, 82,142,227, 38,216,216,216,164, +204,158, 61,219,223,203,203, 75, 59, 97,194,132,208, 23, 47, 94,204, 45,125,141,135,135,199,226,245,235,215, 35, 50, 50,242,229, +210,165, 75,175,166,165,165,125, 83,197, 15,115, 22, 33,100, 77,145, 53, 44,237,215, 95,127,109,112,249,242,229,241,171, 87,175, +182,253,236,179,207,164, 19, 39, 78, 28, 1, 96,121, 69,221,130,198,114,121,231,197,151, 47, 83, 54, 46, 78,243,243,247,223,203, + 54, 92,191, 62, 87,199,243, 78, 54,118,118,164,117,139, 22,249, 74,145, 40, 45, 61, 57,153,181,173, 85,139,121,113,230,140, 53, + 53, 50, 74, 56,121,242,100, 78, 94, 94,222, 47, 21,116,193, 20,148,213, 45, 88, 22, 28, 29, 29,181,101,141,209,170,160, 34,200, +225, 41,213, 89,214,244, 64,215, 78,173,235, 60,125,252,236,153,220,220,130,241,244,172,225, 29, 22,241,242, 22,207,178, 26, 66, + 72,142, 33, 92, 12,195, 12, 89,179,102, 77,125, 51, 51, 51,240, 60, 15,115,115,115,164,166,166, 66,171,213, 34, 39, 39, 7,218, +220,108,104,179,179,241, 48,250, 5,218, 4, 4, 96, 80,247,174, 62, 59,143,252, 58, 4,192,222,138,120,157, 26, 52, 46,177, 92, + 45,172, 97,253,123,159, 79,108, 86,137,216,250,182,177, 39,164, 38, 38,232, 50,117,214,219, 20,204,247,100, 50,217,137,192,192, +192,158, 95,124,241,133, 40, 49, 49,241, 20, 33,164, 13,165, 52,172, 66, 11,176,137, 73,237, 98, 65, 97,110,110,142, 53,107,214, +192,222,222, 30, 5, 5, 5,184,115,231, 14,117,113,113, 33, 23, 46, 92,128,139,139, 11,210,210,210,160,211,233,144,159,159,159, +164,213,106,203,237, 22, 47,234, 6,236, 49,181,135,227,201,199,193, 59,218, 58,147,231,119, 6, 79,107,255,244,241,195,136,152, +160, 51,215,190, 97,213,138,216,172,184,179, 51,107, 54,187,103,243,217,244,175,177,126,249, 2, 60,190,117, 57,195,222, 45,103, +131, 17,209,108,111,209,165,252,240,230,231,231,171,195,195,195, 77, 67, 66, 66, 64, 8,129,185,185, 57,148, 74,101,153, 34,203, + 80,112, 28, 87,242,155,150,150,134,212,212, 84, 68, 70, 70, 98,199,142, 29, 72, 72, 72,176, 89,109,110,150,100, 35,147,134, 72, +179,200, 28,157,142,222,171,132,110,115,151, 46, 93,134,184,185,185,153,150, 62,216,172, 89, 51,140, 29, 59, 22,155, 54,109,194, +245,235,215, 95, 89,239, 50, 41, 41, 41, 81,175,215,111,175, 32,109,179, 8, 33,221,251,247,239, 31,124,229,202, 21,179,109,219, +182,129,101,217, 50,183,173, 91,183,226,230,205,155,243, 40,165, 17,213,180,230,212, 29, 48, 96,192,229, 93,187,118, 89,164,166, +166, 34, 45, 45, 13,121,121,121,200,207,207, 7,199,113,240,246,246, 38, 44,203,122, 87,214, 29,104,107,107,123,226,210,165, 75, + 29,188,189, 11, 47,213,235,245,184,118,237, 26,222,123,239,189, 28,173, 86, 59,128, 82,154, 78, 8,153,125,240,224,193,235, 45, + 90,180, 64,179,102,205,172,162,163,163,173, 0,148,105,185,206,203,203, 67, 94, 94, 30, 36, 18, 9, 28, 28, 28,176,104,209, 34, +104,181,133,197,138,151,151, 87,105, 11,231,234,186,117,235,246,143,136,136, 88, 70, 41,221, 80, 78, 57, 51,150,231,249, 5,148, +210,172,192,192, 64,251, 61,123,246, 88,198,199,199, 35, 56, 56, 24,243,231,207, 79,229, 56,142,165,148, 18,157, 78, 23, 36, 22, +139,163,125,125,125,157,194,194,194, 18, 56,142,155, 71, 41,253,249, 47,236, 34, 36, 18,137, 4, 99,198,140,129, 88, 44,134,145, +145, 17,212,106, 53,244,122,125,137,136, 71, 21,187,159, 61, 61, 77,173,197,144,126,236,229,213,110,242,160, 73,189,109, 29,157, +156, 97, 97, 38, 71,120,120, 88,155,243,231,206,124,239,235,109,251, 3,175,213,255, 16,241, 34, 43,230, 79,120,191, 87,180,200, +191,180,139,112, 32,103, 99,115, 48, 45, 62, 94,166,147,201,148,145,197, 86,173, 66,113, 53,144, 3,246,128,213,233,139, 10, 8, + 90,180, 25, 40,176,244, 28,158, 62, 14,197,149,160, 95, 97, 83, 16,143,180,231,141, 0,105,125,104, 85,217, 80,107,117, 69,173, + 53, 14, 15,130,207, 33, 39, 59, 3,126, 77,123, 3, 34, 81,185, 93, 91,230,214,164,119,235, 38, 13,152,167, 49,161,104,230, 53, + 16,181, 92,218, 34, 58, 49, 7, 89,121, 26,100,230,168,209,200,111, 22, 82, 51, 85,200, 41, 80, 35,236,233, 78, 56, 59,213, 18, + 17,241,179, 78,134, 10, 44, 77,216, 33,104, 34,142, 66,234,222, 6, 50,239,247,192,184,251, 35, 38,228, 2, 30,156, 92,141,184, + 71, 87, 65,121, 14,142, 94,205, 97, 96, 5,190, 57, 40, 40,168, 81,187,118,237,196,157, 58,117,242,115,113,113,241,139,139,139, + 11, 5, 0, 23, 23, 23,191,238,221,187,251,217,217,217, 97,237,218,181, 5, 12,195,108,174,102, 37, 91,186,112,186,231,232,232, +184,226,208,161, 67,223,141, 29, 59, 22, 14, 14, 14,190, 21,221,155, 42,145, 52, 28,181,100, 9,149, 48, 12,221,187,126,189,244, +235, 83,167, 86,254,180,125,187,180, 99,135, 14,132, 82,138,251,247,239, 43,191, 93,191, 94, 57,188,111,223,151,209, 41, 41,236, +165,235,215,117,137,113,113,185, 41,249,249, 95, 39, 36, 36, 36,253, 21, 25, 88,175,215,223,120,241,252,153, 75,227,230,141,108, +239,133, 61, 15,235,214,169,117, 43,145, 72, 36,138,120, 22,125,195,214,214, 76,121, 46,232,172, 78,175,215,223, 48,132, 75, 46, +151,247,238,216,177,163, 56, 51, 51, 19, 78, 78, 78, 72, 77, 77, 69,124,124,124,161,133, 33, 59, 19,186,236,108,232,115,178,192, +229,231,225,249,157,219,104, 84,171,166,252, 64,225, 32,248,189,149,164, 73,153,150,169,210,150, 44,153,169, 41,100, 38, 38, 32, + 85,236, 30, 36,132,244,181,176,176,152,153,149,149,117,130, 82,186, 72,167,211, 77,152, 57,115,102,179,117,235,214,217, 44, 94, +188,216,236,147, 79, 62, 57, 64, 8,105, 68, 41,213,148,199,145,151,151, 23,197,178,172, 13, 0,187,115,231,206,193,206,206, 14, +217,217,217,197,150, 21,109, 65, 65,129, 34, 61, 61, 29, 26,141, 6, 90,173, 22,102,102,102,184,123,247,110, 38,203,178,191, 86, + 22, 62,179,218,100,145, 70, 23,254,165,181,143,113,130,142,181,108,159,146,193,103, 46, 88,145,176, 16,192,202, 30,181,107,111, +213,241,151,159, 63, 9, 61,102,249,226,206,197,140,132, 39,249,181,182,254,246, 44,183,130,120,164,132, 16,158, 16, 66,189,189, +189,145,150,150, 6,134, 97,160, 84, 42, 97, 98, 98,130,186,117,235, 34, 54, 54,182,218, 2,139,101,217, 18,113,117,252,248,113, + 36, 38, 38, 98,207,158, 61,112,117,117, 21, 1,176,141,141,141,237, 50,104,208,160, 22,214,214,150, 75,211,211, 51,151, 85, 16, +206,251, 0,204, 94, 75,167, 14, 54, 54, 54,231, 53, 26, 13,158, 61,123,134, 35, 71,142, 4, 80, 74, 47, 85,241,219,126, 70, 8, +233,238,239,239,191,163, 73,147, 38,181, 41,165,168, 95,191, 62,134, 14, 29,138,157, 59,119,226,193,131, 7,200,206,206,230,207, +156, 57,243, 19,128, 21, 85,173,184,139,226,215,123,192,128, 1, 87,119,239,222,109,153,158,158, 14,149, 74,133,252,252,124, 28, + 56,112, 0,109,218,180,129,141,141, 13,118,237,218,197, 82, 74,143, 85,192,165,176,176,176, 56,113,245,234,213,128, 58,117,234, + 32, 44, 44, 12,231,206,157, 67,141, 26, 53, 32,147,201, 48, 98,196, 8,179, 77,155, 54,125, 78, 8, 89, 38,145, 72, 22, 13, 24, + 48, 0, 28,199,225,218,181,107,233, 0, 50, 12,248,230,145,149,149,133,172,172, 44, 24, 25, 25,149,254,198, 8,128,109,171, 87, +175, 30, 61,121,242,100,212,174, 93,123, 17, 33,100, 83, 89, 11, 74,243, 60,255,117,124,124,188,157, 88, 44,118, 96, 89, 22,177, +177,177,184,123,247, 46, 38, 76,152,144,156,158,158, 30, 64, 41,141, 36,132,108, 12, 12, 12,252,116,213,170, 85,112,117,117, 69, +108,108,172,219,212,169, 83,119, 18, 66,240,103,139, 44,111,111,203,122, 50, 70, 62, 73, 42,149, 88,103,102,102,150,148, 29, 90, +173, 22, 26,141,230, 21,203,149, 84, 42,177,110,222,216,253, 55, 85, 65,238,156, 71,145,153,229, 46, 92,238, 91,199,162,129,210, +216,124,114,175,238,131, 70,116,237,222,143, 97,245,122,156, 62,125, 12,255,251,223, 70,116,240,247, 66,173, 58,245,241,249,196, + 73,230, 26, 45, 59,235,204,153, 83, 51, 91, 55,175,121, 42, 55, 39,107,118, 69,156, 2,202, 16, 88,101, 43,198,129,156,179, 51, + 50,139, 62, 24, 27, 75, 75,203,245, 28,199,117, 0, 62,134,196,196, 1, 97,119,111, 33, 35, 83, 2,141,138, 3, 79, 11, 69,150, + 65,130, 69,163,197,229,211, 71,177,102,245, 74,164,167,167,195,191, 93, 0,242,196,174,112,115,117,131, 90, 85, 80,244,177, 0, + 58,173, 30,182,246,238,184,119,239,129, 62, 39, 63,191,220,130, 72,170,208,249,184,217,123, 65,163,107, 5,133, 76,134,236, 92, + 45, 50,139,196,213,174,131,131,161, 41, 80,129,213,234,192,106,245,176,117, 27,128,186,246, 29,193,115,199,234, 85, 41,150,120, + 14,186, 23,151,161,123,113, 25, 70,173, 38,226,215,165,195, 94, 43,248, 12, 91, 16, 62, 57, 57, 57,213,197,197,229, 84,112,112, +112,239,193,131, 7,227,226,197,139,163, 0, 76, 45,170,220, 71, 13, 30, 60, 24,193,193,193,136,136,136, 56,149,156,156,252, 78, +124,118,200,100, 50,117,113, 43, 79,161, 80, 40, 42,185,214,185, 89, 96,160, 40,251,222,189,156,213,215,174, 45,216,186,109,155, +180,115,167, 78, 68,207,178,224, 57, 14,117, 60, 61, 73,215,174, 93,141,119,238,223,111,205,232,245, 55,167, 79,152,112,110,211, +200,145,185,183,242,242, 12, 29, 64, 94,163,168,107, 16, 0,106, 84,112,204, 96,104, 52,154,117,227,198,126,212,229,194,197, 75, +174, 53,220,157, 77,131,206, 93,126, 32,147, 75, 69,181, 60,106, 49, 89, 89, 89,226,175, 22,204, 54,210,104, 52,223, 27, 72,231, + 99, 99, 99,131,164,164, 36, 60,125,250, 20, 26,141, 6,122,189, 30,124, 65, 62,180,153, 89,208,102,103,128,168, 85,144,115, 28, +212,105,201,168, 81,171, 38,240,251, 12,195,202, 42,176, 50, 5, 86,241,175,194,204, 12, 82, 99, 19,136, 36, 18,131, 23, 45, 39, +132, 52,105,222,188,249,254, 95,126,249, 69,250,225,135, 31,182, 32,132,172,167,148, 70, 19, 66, 58,205,155, 55,239,246,250,245, +235,229, 99,199,142,245, 94,177, 98,197, 7, 0,202, 21,236,106,181,122,255,111,191,253, 54,220,221,221,221,238,225,195,135, 80, +171,213,224,121, 30, 61,122,244, 0,128,146, 60,243,248,241, 99,149, 90,173, 78, 9, 13, 13,205,137,142,142,214,194,128, 89,127, + 11,214, 38,220,152, 58,200, 37,208,222,193,249,166,194,168,134, 7,205,187,215,127,234, 32,151,229,171, 14,196,169, 79, 70, 69, +229,206,251,172,214,178,252,220,144,207, 44, 92,242, 54,156, 60,246,204,144, 89,190,180,120, 90,186,181,181, 53,196, 98, 49, 36, + 18, 9,164, 82, 41, 0,192,222,222, 30,217,217,217, 21,118, 17,150, 39,176,114,114,114,144,157,157,141,136,136, 8, 36, 38, 38, +226,198,141, 27,224, 56, 14,133,147, 20, 1, 23, 23, 23,220,190,125,219,180, 89,179,102,115,136,148, 92,160, 58,106,240,180,113, +134, 97, 38,143, 28, 57, 18, 90,173, 22, 67,135, 14,197,214,173, 91, 39, 3,184, 84,213,252, 78, 41,189, 73, 8,241,124,240,224, +129, 25,128,247,134, 12, 25,178,125,192,128, 1,184,116,233, 18,142, 29, 59, 22, 0, 32, 18,128, 10,192,210,162,133,149,151, 86, + 52,193,163,200, 21,195, 70, 91, 91,219,247,234,213,171,247, 96,192,128, 1,126,187,119,239,182, 72, 73, 73, 41,158,212,128, 23, + 47, 94,224,199, 31,127, 76,220,182,109, 91, 14,199,113,214, 34,145,232,183,172,172,172,242,102, 65, 43,140,141,141, 79, 94,189, +122,181,125,157, 58,117,112,246,236, 89,204,153, 51, 7,237,219,183,199,158, 61,123, 80,183,110, 93,212,175, 95, 31,118,118,118, +159,101,100,100,180,222,178,101, 75, 64,203,150, 45,177,107,215, 46, 36, 38, 38,110, 44,207,101, 67,101, 93,117,122,189,158, 0, +104,177,122,245,234,154,147, 39, 79,198, 47,191,252,130,198,141, 27,155, 63,123,246,108, 69,113, 25,251,154,192, 2,165, 20,207, +159, 63, 71, 65, 65, 1,174, 92,185,130,175,191,254, 58,181, 88, 92, 1, 64,239,222,189, 63, 93,181,106, 21, 6, 13, 26, 4,157, + 78,135,169, 83,167, 98,213,170, 85, 56,122,244,232, 55, 0,254, 52,129, 85,215,211,122, 89,243,102,237,103, 58, 58,215,193,174, +221,123,144,145,145, 81, 18, 39,197,241, 66, 41, 69,110,110, 46,146,146,146, 96,110,102,138,229, 43, 22,245, 28,255,201,104, 87, + 20,186,179,120,179,160,171,109,181, 98,224,208,143,166, 13, 29, 62, 26, 15, 31, 4, 99,231,246,205, 8,125,120,191,132,143,213, +235, 16, 25,126, 23,145,225,119, 97,239,224,142,174,157, 3,200,176, 97,195,122,140, 28, 62,196, 22,192, 31,230, 2,226,223,100, +189, 42,183,139,240,181, 15,198,198,210,210,242,209,190,125,251,172,253,253,253, 25,150,101,113,234,244,105,124,246,233,251,248, + 96,228, 44,232, 96, 9, 86, 43, 5, 47, 85, 24,244, 64,149,170, 0, 20, 20,249,249,249,184,126,253, 58, 40,207, 98,231,150,149, +160,148, 47, 17, 88, 0,133, 86,167,131,179,155, 55, 54,110, 93,204, 66, 34, 41,183, 32,203, 73,103, 56, 61, 75, 17,159, 18,131, +152,196, 80,152,155,186, 65, 44,113, 67,122, 86, 1,196, 34, 7,232,213,143,193, 21,153, 79, 11,242,227,160,210,189, 93,186,113, +217,111, 90, 73, 41,207, 27,124,127, 65, 65,193,254, 93,187,118,117, 93,181,106,149,180,103,207,158,181, 93, 92, 92,154, 3, 64, + 96, 96, 96,109, 83, 83, 83,236,218,181, 75, 87, 80, 80,176,255, 29, 90,120,218, 53,107,214, 12, 25, 25, 25,120,249,242,101,133, + 45, 15, 78,171,181, 54,177,179, 99, 82, 46, 92,208,167,102,102,186,118,236,216,145,232, 89, 22, 34, 66,144,145,157,141,232,151, + 47, 97, 97, 97, 65, 30, 61,126,108,242,253,231,159, 31,246,242,243, 19, 23,207, 48, 52, 4,199,142, 29, 83,162,112,220, 85,133, +199,170,248, 65,230, 19, 66, 70,125,254,249,231,135,127,254,121,151,121, 82,114,242, 19,185, 76,206,154,152, 24, 57,142, 28, 49, + 68,156,149,149, 53,156, 82,154,103, 40, 95,102,102, 38,158, 63,127, 14, 35, 35, 35, 72, 37, 18,240,170, 2,112,249,121, 80,103, +164,130,209,105, 33,227, 56, 88, 41,229,112,181,183,135,155,173,141, 65,156, 79,207, 7,149, 12,104, 47,221, 45,184,188,185, 15, +100,198, 38,144,153,154, 96,252,241,139, 69,173, 79, 41, 48,175,242,158, 97, 66,136,141,179,179,243,175,187,119,239,150,166,166, +166,226,254,253,251, 15, 40,165,217,132, 16, 83, 0,124,120,120,248,217,208,208,208,222, 69,179,232, 42,155,253,181,242,208,161, + 67, 93,252,253,253, 89, 15, 15, 15,227,228,228,100,183,244,244,116,146,152,248,234, 24,230, 19, 39, 78, 40, 84, 42, 85, 62,207, +243,135, 81,232,199,169, 82,255, 67, 83, 7,185, 40,174,223,195,196,246,221,106,212, 55,179,105,128, 12,246, 94,253,155, 15, 18, + 39, 78, 29,228,178,110,213,129, 56,181, 17,209,108, 39, 92,172,171, 88,161,222, 97, 96,122, 83, 27, 27, 27, 80, 74,113,251,246, +109, 92,189,122, 21,151, 47, 95, 70,116,116,244,239, 86,109,115,115,156, 57,115, 6, 29, 58,116,168,202,119, 9, 71, 71, 71, 88, + 90, 90, 98,231,206,157,216,179,103, 79,201, 64,247, 98,164,165,165, 65,169, 84, 98,213,170, 85, 38, 3, 7, 14,252, 6, 64, 87, + 3,133,112,205, 46, 93,186,244,114,116,116, 68,122,122, 58, 28, 28, 28,224,239,239,223,135, 16,226, 65, 41,125, 81,205,172, 63, +190, 91,183,110,139,190,254,250,107,232,245,122,140, 25, 51, 6, 79,158, 60,217,255,228,201,147, 53,110,110,110, 19,103,204,152, + 97,111,111,111,143,193,131, 7, 27, 3, 8, 44,143,196,202,202,106,233,230,205,155,135,247,234,213, 75,164,211,233,218,157, 63, +127, 30, 47, 95,190,132, 86,171, 5,203,178,136,138,138,194,132, 9, 19, 18,211,211,211,219, 83, 74,163, 12, 8,215,172,160,160, +160,246, 62, 62, 62, 56,126,252, 56, 2, 3, 3, 47, 88, 88, 88,120, 53,104,208,192,209,201,201, 9, 7, 14, 28,128,153,153, 25, +220,220,220,172, 22, 47, 94,220,177, 95,191,126, 56,126,252, 56,166, 76,153,114, 17,192,178,234, 68, 4,207,243,100,245,234,213, +126,171, 87,175,118, 41, 22, 87, 34,145, 8,251,246,237,195,131, 7, 15,250,150, 37,176, 40,165, 11, 28, 29, 29, 23, 56, 58, 58, + 42,130,130,130,204,107,212,168, 1,150,101,181,148,210, 72, 23, 23,151,120, 39, 39, 39, 11,185, 92,142, 57,115,230, 32, 39, 39, +231,131,199,143, 31,239,108,216,176, 33, 29, 49, 98, 4,124,124,124,156,255,204, 74,154, 17,145, 81, 75, 22, 78,199,157,123,143, +113,232,144, 20,119,238,220,129,189,189, 61,228,114, 57, 40,165,208,104, 52, 72, 77, 77,133, 94,167, 65,253,122, 53,177, 99,219, + 50,164,164,164, 2, 34, 82,238,208, 26, 34, 34, 35, 70,191,223, 31, 87,174,158,198,166, 77,155,145,151,151, 95, 78,163, 91,129, + 58, 94, 62,112,118,178, 67,108, 92, 44,136, 8, 54,127,228,187,254, 71,186, 8,127,135,133,133,197,154,189,123,247, 90,119,232, +208,129,201,207,207, 7,207,243,104,235,239,143,137,147, 39,227,216,238,221,240,108, 49, 20, 68,107, 2, 86,105,216, 44, 6,181, +170, 0,190,141, 91, 99,208,224, 33,136,137,142, 70,183,222, 3,160, 86, 23,148,180, 40,138, 45, 88, 90,173, 14, 54,118,174, 8, + 10, 10, 98, 48,102,204,163,114, 69,129, 78, 22, 18, 25,165,110,147,165,186,135,235,119,118, 66,167,209,161,126,253,121,208,241, +214,176,115,249, 4,122,253, 17,228,164,158, 47,236,174,176,238,128,184,152, 24,136, 24,233,163,234, 70, 24,159,159, 90,229,214, +213,107, 21,120,142,163,163,227,209, 27, 55,110, 12, 10, 12, 12,196,153, 51,103, 62, 40, 18, 88,184,113,227, 6,158, 63,127,126, + 52, 51, 51, 51,231, 93, 36,174,139,139, 75,143,128,128,128,192,102,205,154,225,248,241,227,224, 56,238,186, 65, 31,180, 68, 66, + 69, 34, 17,120,158, 7, 1,144,158,149,133, 39, 79,158, 32, 61, 45, 13,122,189, 30,249,121,121,188,143,151, 87, 30,229,121,211, +170,132,167,244,140, 65,148, 49,139,176,248, 88, 53, 68, 86,180,137,137, 73, 76,110, 94,158,173,153,165, 85,174, 66, 38,227,178, +179,178,179,195, 30, 61,212, 26, 88, 41, 20, 35, 60, 52, 52,212, 47, 33, 33, 1, 49, 49, 49, 96,243,115,193,104,180, 16,105, 10, +208,169,117, 43, 24,129, 66, 1, 30, 18, 94, 15, 9, 35, 65,110,225,108,187,240, 74, 69,185, 94,255,134, 37,139, 16, 82,216, 45, +104,108, 12,153,137,233, 43, 22, 45, 67,242,147, 92, 46,223,125,224,192, 1, 71,103,103,103, 44, 92,184, 16, 46, 46, 46,117,235, +215,175, 95,208,182,109, 91, 35,123,123,123,248,250,250,162,117,235,214, 56,121,242, 36, 0, 68, 85, 18,127, 44, 33,164,235,149, + 43, 87,166, 93,187,118,109, 16, 33,132,204,154, 53, 11,221,187,119,135, 66,161, 64, 65, 65, 1, 50, 51, 51,177,101,203, 22, 66, + 41,109, 92, 20, 86,119,133, 66,177,135, 16, 18,167, 82,169, 6,191,206,185,115,117, 3,167,148, 12,126,140,189,131,115,255,246, +221,106,212,239,216,173, 51,106,122,118, 68,199,110, 49, 0,176,204, 74,252,114,232,242, 47,253, 14,219,184, 90,253, 24,116,234, +204, 2,255,246, 29,231,206, 26,107,185,104,217,230,202,243, 62, 33, 4, 28,199, 65, 44, 22, 67, 36, 18,149,105,165, 18,139,197, + 96, 24,195,134,162,112, 28, 23,215,175, 95,191,146,253,132,132, 4, 27, 87, 87, 87, 81,177,229, 10, 0,178,179,179, 17, 27, 27, + 11,189, 94, 15,107,107,107,232,116,186, 6, 85,200, 87, 19, 63,252,240, 67,162, 82,169,240,209, 71, 31, 97,235,214,173, 24, 58, +116, 40,185,116,233,210, 68, 0,147,171,154,223, 69, 34,209,242, 25, 51,102, 76,155, 48, 97, 2, 50, 50, 50,112,226,196, 9,244, +232,209, 3,251,246,237,179, 61,113,226,196,146, 14, 29, 58,128, 97, 24, 28, 63,126, 28, 44,203, 62,174,136, 75, 42,149,190,215, +171, 87, 47, 81,108,108, 44,164, 82, 41,154, 54,109,138,184,184, 56, 20, 20, 20, 32, 62, 62, 30,147, 38, 77, 74, 42,178,234, 68, + 25,144, 46,146, 58,117,234, 76,168, 91,183, 46,206,156, 57,131,129, 3, 7, 94,210,235,245,189, 82, 83, 83, 39,100,102,102,126, + 55, 98,196, 8,248,249,249, 33, 50, 50, 18, 93,186,116, 65,155, 54,109,112,226,196, 9,124,244,209, 71, 23,245,122,125,175, 10, +252, 96,229,166,164,164,152,215,174, 93, 27,201,201,201,200,203,203,195,141, 27, 55,204, 46, 94,188,232,225,228,228,100,241,236, +217, 51,250,229,151, 95, 42, 39, 79,158,140, 53,107,214,224,254,253,251,216,185,115, 39, 58,118,236,168,127,250,244,105,153, 86, +214,180,180,180,205, 0, 54, 91, 89, 89, 37, 27, 27, 27, 35, 55, 55, 23, 38, 38, 38,159,184,184,184,196, 95,191,126,221,201,213, +213, 21,233,233,233,248,244,211, 79,161, 82,169,224,230,230, 86,103,241,226,197,136,141,141, 69,102,102,230,159, 90, 73,243, 28, + 15,128,135,135,171, 9, 78, 31,219,134,224, 7,207, 16,252, 32, 20, 50,121,225,224,118,149,170, 0,141,235,215, 65,139,166,205, +145,144, 24,143,159,119,110,131,149,141,115,133,229, 8,165, 20, 82, 49, 7, 31, 47, 7,236,222,185, 25,199, 79,156,195,206,159, +247,148,140,105, 19,139, 37,104,212,184, 5,154, 54,245,199,179,231, 81,216,182,109, 19,108,237, 92,133, 62,191,234,118, 17,150, +254,125,173,117,208,209,223,223,159,201,203,203,131, 90,173, 70, 82, 82, 18, 94,190,124, 9, 11, 75, 11, 60, 75,120,129, 0,165, + 14, 73,124, 14,194, 31, 60,226, 8, 35,185, 95,217, 3,123,181,111, 4,180,111,132,207, 62, 28, 90,126,226,131,194,216,204, 6, + 26,141, 6, 58,189,254, 41,214,173, 43,183,165,204,114,250,179,167,207,156,111,254,225, 7,239, 73,130,206,111,133, 94,203, 67, +165, 55, 71,190, 90,139,124,157, 4, 34,243, 30, 64,218, 37, 48, 98, 57, 90, 54,172,131,195,135, 78,234, 40,171, 63,103,112, 4, +217,251,129, 77, 14, 45, 37,176, 82, 94, 57,175, 48,181, 50,184,139,176, 84,156, 30,222,189,123,119,207, 86,173, 90, 41, 59,116, +232, 80,171,168,194,212,238,222,189,187,160,200, 58, 80, 85,213,255,138,247,118,103,103,231, 6, 98,177, 56,176,119,239,222, 13, + 70,143, 30,141, 71,143, 30, 97,215,174, 93, 79,189,188,188,174, 86, 40,172,100,178,244,188,148, 20, 11, 19, 15, 15,177,165,169, +105,194,201, 19, 39,220, 59,119,233, 66, 98, 98, 98,144,158,158, 14,181, 90,141,251, 15, 30, 80, 9,195,196, 17, 51, 51,209,227, +123,247, 68,140, 76,150, 94,133,160,190,172,100, 22,225,210,234, 90,179, 92, 29, 45,107, 47,152, 61,174,166, 90,173,246,203,201, +201, 97,197, 18,137,196,197,193, 34,186,138,221,141,199,207,158, 61,219,175,115,231,206,242,200,144,251, 96,179,179,161,205,206, +132,148,231, 96,213,184, 33, 24,157, 6,208,234,225,236, 67,161,206, 82,226,210,173,199,122,141, 70, 83,233, 74,237,197, 2, 75, + 84,202, 25, 32, 0,200, 76, 76, 32, 55, 53,131,220,196,228,245, 46, 68, 82, 73,122, 43,223,123,239,189, 78, 45, 91,182, 4,165, + 20, 91,182,108,129, 78,167,147,233,116, 58,104,181, 90,232,116, 58,228,228,228, 96,231,206,157,216,184,113,227, 53, 0, 63, 25, + 32, 82, 89,137, 68, 50,129,101, 89, 59,185, 92,174,179,181,181,149,238,223,191,191,196,109, 68,163, 70,141, 96,108,108,172, 33, +132,232, 0,192,193,193, 65,191,125,251,118,113,223,190,125,165,101,241,121,215,175, 59,189, 38,107,217, 94, 97, 84,195,195,204, +166, 1,106,122,118, 4, 0,116,233,253, 33,106,214,113, 67, 78, 90,136,135, 90,245,178,191, 84,156,105,249,104, 93,124,152, 81, + 47,191,209,249, 41, 23,159, 0,216,102,224, 55,132,206,157, 59,163, 91,183,110, 37,221,129,118,118,118,208,106,181,101, 78,231, +175, 8,197, 78, 68,191,254,154,136,176, 0, 88,109,110,150, 4,192,182,180,184,138,137,137, 65, 76, 76, 76,177, 85,184,210, 52, + 42,149, 86, 70,158,158,158,163, 26, 55,110,140, 19, 39, 78,224,206,157, 59,241,167, 79,159,118,246,247,247,135,135,135,199,104, + 66,200, 28, 74,203,247,161, 87, 86,151, 94,187,118,237, 62,159, 48, 97, 2, 66, 67, 67, 49,110,220,184,244,216,216,216,195,251, +247,239,255,104,193,130, 5,162,110,221,186, 33, 49, 49, 17,203,151, 47,231,174, 94,189,186, 2,192,194, 74,210, 61, 34, 54, 54, +214, 69,173, 86, 35, 35, 35, 3, 44,203,162,160,160, 0, 39, 79,158,196,206,157, 59,139,199, 35, 61, 53, 48,120, 86,254,254,254, +150, 79,158, 60,193,182,109,219,160,213,106,231, 82, 74,213,132,144,159,102,206,156, 57,199,222,222,222,188, 75,151, 46,104,220, +184,208, 23,220,190,125,251, 48,105,210,164,139, 90,173,182, 87, 37,113,176,202,193,193,225,147,113,227,198,213,157, 58,117, 42, +162,163,163,205, 78,156, 56,209,230,250,245,235,164, 88, 8, 89, 91, 91, 99,205,154, 53,152, 50,101,202, 79, 0,146,111,221,186, + 53, 42, 42, 42,234, 27, 74,233,166, 74,222,127,129,139,139,203, 2,158,231,149, 93,186,116, 57,185,114,229, 74, 50,104,208, 32, +104,181,218, 18,215, 7,150,150,150, 59,100, 50, 25,218,182,109,139,105,211,166,129, 97,152, 17,127,118, 69, 77, 41,135,130,204, + 80,112, 26, 75, 52,170,239,141, 70,126, 53,112,250,124, 48, 0,160,211, 0,127, 20,228,231, 98,251,246, 45,120,250,244, 9,196, + 18, 9, 44,172, 28, 12,250,134,180, 57, 17,200,210, 37,162,115,135,166,232,209, 45, 0, 63,237,216, 7, 86,175,195, 71, 31, 14, + 71,102, 86, 22,118,236,216,134,103,207,163, 32,150, 72, 96,109,227,244, 39,188,103,249, 90,228, 95,105,193, 42, 46, 80,120,158, + 71,124,124, 60,238,222,189,139, 23, 47, 94, 64,169, 84, 66,197,114,252,166,179, 87,121, 66,164,113, 60,165,215, 40, 91,226, 85, +248, 77, 14,142,139, 47,229, 97,214,220,210,210, 82,166,209,168,192,178,250, 82, 37, 21, 1, 8, 32, 21, 3,142, 78, 53, 17, 27, + 19, 75, 85,106,245,197, 10, 91, 96, 26,245,154,163,135, 15, 76,104,221,198,223,166, 71,167,175,113,248,200, 60,100,230,228, 64, +173,147, 32, 95,173, 67,129, 26,176,176,242, 66,179,250, 13,144,144,144,142,144, 59,151,242,196,154, 2, 67, 6,128, 62,249,126, +238,135,158, 31,126, 54, 29, 70,238,109,160, 9, 63, 12, 62, 47,185,196,130,165, 48,177,132,149,155, 15,178,242, 53, 56,112, 46, + 24, 0, 12, 94,146, 37, 57, 57,185,192,209,209,241,224,248,241,227,151,221,191,127,175, 38, 0,220,190,125,251,121, 66, 66,194, +172,228,228,228,130,170, 36, 96, 41,239,237,196,200,200,232,150,167,167,231,139, 30, 61,122,152,245,235,215, 15,182,182,182, 8, + 14, 14,198,183,223,126,251, 68,171,213,206,191,120,241, 98,133, 93, 58, 90,173, 54, 62,248,200, 17,179,128,247,223,183,152,222, +167,207,242, 9, 19, 38,172, 89,184,112,161,196,211,211,147,232,117, 58, 60,124,248,144,238,222,181, 75,191,113,246,236,213, 50, + 99, 99,241,237,163, 71, 37,172, 70, 19,255, 87,103, 98, 23, 23,151,246, 61,187,183,247, 89,177,106, 29,212,170, 60,220,186,254, + 27, 50, 51, 83,177,121,203, 33, 31, 23, 23,151,246,113,113,113,151, 12,180,100,236,251,241,199, 31,167,181,104,220,184,113, 45, + 87, 87, 60,140,126, 1, 25,207, 65,202,178, 96,116, 26,136, 88, 53, 92,253, 40,136,200, 20,137, 73, 57, 88,188,247, 96, 40,199, +113,251, 42,227,173,219,243, 61, 44,140,203, 6, 33, 4, 43, 91,249, 65,102,106, 2,169,177, 9,198,255,122,190, 68, 84, 29, 95, + 56, 27, 50, 19, 19,212,110,225,111, 72, 33, 84, 96,106,106,122,247,225,195,135,205,252,252,252, 48,109,218, 52,188,124,249, 18, + 60,207, 35, 57, 57, 89,157,152,152, 24,159,154,154,250, 18,192, 97, 0, 91,169,129, 45, 0,150,101,237,130,131,131, 1, 64, 10, + 0,231,206,157,131,147,147, 19,204,205,205,145,147,147,131,233,211,167,203,231,207,159, 15, 0,184,123,247,174,164,120,128,113, + 89,120, 24, 28,190, 34, 43,151,102,210,188,123,253, 51,216,123,245, 59,118,139, 69,151,222,163,113,230,248, 79, 56,127,250, 44, +172,196, 47, 95,192, 56,247,100,218,139,180,156,184,124,207, 31,124,154,124,196, 36,230,159,254, 97, 98, 95, 75,198,209,145, 63, + 48,107, 99,118, 86, 37,113, 0,134, 97, 74,198, 96, 21, 15,104,175,170,184, 42,141, 5, 11, 40, 79, 64,136,141, 76, 26, 18, 27, + 27,219,197,197,197, 5,201,201,201,136,141,141, 69, 76, 76, 12, 98, 99, 99, 81,167, 78, 29, 60,123,246, 12, 82,169,244,190,129, +180,195, 7, 15, 30,108,170,213,106,177,103,207, 30, 22, 64,239, 3, 7, 14,220,109,214,172,153,184,123,247,238,166, 27, 54,108, + 24, 14, 96,107, 21,130,105,108,102,102, 38,213,233,116,216,176, 97, 3, 98, 99, 99,219, 83, 74,195, 9, 33, 63, 12, 30, 60,120, +163,159,159, 95,157,208,208,208, 39,121,121,121,227, 41,165, 33, 6,148, 69, 31, 54,109,218,244, 0,207,243,238,157, 59,119, 54, + 94,181,106,149,217,227,199,143,225,226,226, 2,158,231, 31, 86,113,169,169,140,179,103,207,102,182,110,221,218,178,104, 64,251, + 98, 66,200, 55, 12,195, 44, 11, 12, 12, 52,223,189,123, 55, 78,156, 56, 1,173, 86,139,136,136,136,212,208,208,208,239, 1,172, +168,104, 2, 70, 81, 90, 63, 7, 48,147, 16,210,224,135, 31,126, 24,234,236,236, 60,252,250,245,235,228,202,149, 43, 88,185,114, + 37, 59,111,222, 60,113,145,248,121, 14,224,163,162,252, 62,199,192, 30,133,205, 0, 54,187,184,184,196,175, 92,185,210,244,202, +149, 43, 72, 74, 74,242, 4,208,162, 89,179,102, 59, 54,109,218, 4,107,107,107,196,198,198,162,117,235,214, 28, 33,100,132,165, +165,229,190, 6, 13, 26, 32, 36, 36,228,207, 42,226,244, 58,157, 22,102, 86, 53,145,151, 21,131,212,216,235, 80,154, 58,160, 91, +199,134, 40, 80,105,113,236,232, 47, 8,121,248, 0, 34,145, 8,246, 14,174,176,176,180, 65,100,228, 19, 0, 8,171,152, 83, 7, + 83,203, 26,200,203,142,133, 54, 37, 24, 70, 38,118, 24,253,126,127, 20,168,116, 56,116,248, 23,132,134,134,128, 97, 24, 56, 56, +186,194,220,162,144,147,208, 10, 57, 5, 84, 85, 96, 49, 12,115,225,212,169, 83, 3, 91,180,104, 33,126,250,244, 41,158, 62,125, + 90,156, 49, 89, 2,238, 96,114,200,145, 97, 21, 84,254,157,139,125,101,148, 94, 91,208,196,212, 52,254,113, 68,184,125,102, 70, + 50, 30,220,187,138,167,145, 15,241,226, 89, 56,116, 58, 53, 24,145, 8, 34, 70,132, 26, 53,235,225,234,181,235, 90, 45,199,221, + 40,143, 19, 0, 50, 50,162,114, 77,236,189,134, 44, 90, 56,231,248,148,233, 95, 25, 13, 26,184, 9, 33,143,195,144,199, 58,128, + 82,192,193,218, 24,141,106,205, 64,124, 66, 42,246,254,180,161,128,215,233, 70,148,246,129, 85, 22, 39, 0,216,167,193,119,227, +150,159,198,108,221,185,251,171,233,159,143,181,239, 27, 56, 2,178,140, 48,232, 19,130, 81,179, 89, 15, 16,185, 5, 78, 4,157, +199,165,187, 97,201, 60, 71,191,178, 79,199,255, 42,227, 44,141,236,236,236, 59,201,201, 73, 53, 75,121,109,175, 41,151, 43,238, + 84, 34,166, 58,191,230, 23,232, 21, 15,241, 12, 35,106,177,112,225,194,124, 71, 71, 71,109,104,104, 40,126,248,225, 7,254,238, +221,187, 23,100, 50,217,230,132,132, 4, 77,101,156,182,122,253,131,221,179,102,249, 54, 15, 12,164,195, 62,255,188, 0,114,249, +196,229, 43, 87,206, 74,205,204,116,162, 60, 15, 91, 43,171,184,229,179,103, 47, 29, 56,120,112,230,163,171, 87,141,174, 31, 57, + 98, 36, 99,217,224,202,194,249, 46, 80, 17,103, 92, 92,220, 37,207,218,110,216,190,117, 21,116, 58, 13, 18,227, 11, 13, 87,105, +233,217,168, 72, 92,189,206, 89,212,249, 31,248,229,252,249, 55,191,156, 50,217,161, 93,167,206,136,121,112, 31,186,140, 84, 16, + 61, 11, 9, 17, 35, 63, 69,137,148,228, 60,204,252,121,127, 74, 94, 65, 65,224,235,142, 28,203, 11,103,177,133, 74,110,102, 10, +169,177, 9,100, 38,166,175, 88,173, 20,102,102,144, 25,155, 64, 44,147,149, 53, 24,254, 13,206,188,188,188, 1, 3, 7, 14, 12, +185,125,251,182,229, 71, 31,125,132,214,173, 91,223, 83,169, 84, 29, 40,165,185,213,141, 79,177, 88,156,210,164, 73, 19, 59,137, + 68,194,142, 25, 51, 70,156,150,150, 86,226, 9, 61, 47, 47, 15, 39, 79,158, 68,241,148,251, 71,143, 30,161, 94,189,122,229,114, +126, 52,227, 97, 60,128,133, 83, 7,185, 44,191,249, 32,113, 34,128,101, 53,235,184,226,252,233,179,184,114,254,250,172,150,126, +252,186,158, 35,154,125,163,236, 48,120,186, 79,147,143, 24, 19, 51, 71,236, 56,244, 11, 19, 30,188,109,113, 65,193,195,218, 0, +190, 40, 47,156, 69,179,184,222,112,201,160, 82,169, 12, 18, 87, 21,229, 37, 10, 74,165, 89,100,206,160, 65,131, 90,220,186,117, +203,212,196,196, 4, 58,157, 14,148, 82,212,174, 93, 27, 98,177, 24,223,127,255,125,126, 90, 90,218, 60, 67, 56,141,141,141, 39, +116,235,214, 13, 17, 17, 17,184,115,231,206, 47,148,210, 16, 66,200, 47, 79,159, 62, 29,210,182,109, 91,252,244,211, 79, 19,202, + 19, 88,229,113,242, 60, 95,218,231, 81, 70, 81,222,125, 0,160,101, 85,223,189,200, 89,104, 27, 0,176,182,182,142,181,183,183, + 55,123,240,224, 1,220,220,220,160,211,233, 90, 84, 37, 47, 81, 74,245,132,144,245, 23, 47, 94,156,223,166, 77, 27, 76,152, 48, +161,253,197,139, 23,219,183,105,211, 6, 62, 62, 62, 56,127,254, 60,118,237,218,117,144,227,184,241, 0,178, 40,165, 92, 85,210, +168, 72, 48,134,212,175, 95,127,184,171,171, 43, 86,174, 92,169, 11, 9, 9,153,180,104,209,162,213,247,239,223,151,215,171, 87, + 79, 20, 18, 18,194, 87, 39,221, 45, 45, 45, 81,204,105, 97, 97,241, 84,171,213,182,144,201,100, 24, 48, 96, 0, 52, 26, 13, 18, + 18, 18, 56, 43, 43, 43,241, 95, 81,214, 81, 66,230,126,244,241,196, 31, 62,254,104,184,162,105,147, 70, 40,200,137,131, 42, 47, + 25, 5,185, 73,248,126,107, 16, 8, 17,193,214,214, 17,118, 14, 46,136,142,142,193,181,223, 78,104,243, 11, 84,107,100,122,126, + 89,197,156,159, 23,114, 54, 46,228, 44,200, 79,129, 42, 47,165,132,211,206,206,169,136, 51, 26, 87,175,159, 80,171,242,243, 87, +105, 41,249,238,143,124,247,255,156,192,202,204,204,156, 52,118,236,216, 14, 51,103,206,180,102, 89,150,177,178,178, 66,116,116, + 52,123,240,224,193,140,188,188,188, 73,213,122,168, 68, 18,226,233,229,221,161,111,223,190,236,123,239,245,145,142,252,176,187, +216,214,206, 14,217, 89,233,136,140,184,143,199, 97,193,240,244,110,136, 5, 11, 87, 3, 22, 22,149,206,212,201, 75,142,188, 96, + 98,239,213,251,235, 47,191,216,215,166,125, 87, 51,239,122, 13,165,141,106,155, 67,167,103, 17, 23, 23,135,163, 71, 30,232, 66, +239, 94,201,225, 89,237,144,252, 84,195,150,202,185, 88, 56,128,119,115,125,123,178,107,201,242,239,167,109,216,188,125,250,204, +137, 31, 25,183,245,239,130,135,103,127,194, 47,199,247,229,171, 53,218,229, 82, 6, 43, 31,166,209,130,170,198,129, 90,173,214, +191, 62,116, 68,173, 86,235,223, 54, 65,183,111,223,142,164,164, 36, 93,108,108,236, 89,150,101, 15, 87,101, 54,226, 58, 74,181, +129,132,156,253,210,223,191,251,151,167, 79, 43, 70,205,152,161, 29, 49,114,228, 23,208,104,116,144,201,168,216,216, 88, 4,185, + 92,242,232,234, 85,163,181,159,126,106, 69,180,218, 51, 63, 85,210,250,124, 13,239,124, 22, 97, 41, 11, 22, 70,125, 52, 5,170, + 82, 22,172, 27,119, 34, 81, 21, 11, 86, 81, 33, 30, 67, 8,105, 57,113,238,151,135,134,116,235,228,227,231, 94, 67,110,235, 81, + 3, 38, 14, 14, 72, 79, 77,197,213, 59,143,245, 11,247, 29, 10, 45, 18, 87, 6,249,133,225,121,190,100,150, 91,167, 73, 51, 65, + 24, 6, 40, 18, 2,197, 51,129, 60,154,181, 6, 17,139,193, 81, 30, 26,141,134, 26, 16,206, 56, 66,200,128, 17, 35, 70,156, 59, +126,252,184,168, 91,183,110,141, 14, 31, 62,204,191, 77,222,209,235,245, 46, 69, 66, 43, 71,169, 84,138, 71,143, 30, 13,189, 94, +143,130,130, 2,100,103,103, 35, 60, 60, 92, 51,104,208, 32,121,145,112,208, 15, 25, 50,164,210,242, 99,213,129, 56,245,212, 65, + 46,235,172,196, 47,135,230,164,133,120, 88,137, 95,190,104,233,199,175, 91,117, 32, 78,253,245, 20,139, 69,105, 47, 47, 69, 38, +230,159,254, 97,199,161, 95,152, 15,250, 15,224, 92, 76,158,204, 82,216,209,131, 29,251, 84, 90, 9,189,225, 84,244, 45, 60,224, +191, 2,157,142,222,179,182,182, 92,218,188,121,243, 57,171, 86,173, 50,177,181,181, 5,203,178,120,254,252, 57,214,175, 95,159, +159,153,153,185,152, 82,122,215, 16, 46, 47, 47, 47, 15,177, 88,140,189,123,247, 2,192,250,162,195,235, 15, 31, 62, 60,228,163, +143, 62, 66,141, 26, 53,124, 9, 33,114, 90,133,239,136, 82, 90,210,171,240,142, 43,246,103,107,215,174,117,118,112,112, 32, 39, + 79,158,100, 25,134, 57, 86, 13,154,165,187,118,237,106,197,243,124,167,182,109,219,162, 78,157, 58,197, 22, 79, 28, 57,114,100, + 31,199,113, 35, 42, 18, 86,134, 32, 60, 60,252, 74,108,108,236,208,105,211,166, 73, 87,173, 90,181,122,234,212,169,242,216,216, + 88,132,133,133,221,122, 11,206,107,177,177,177,131,139, 56,213,102,102,102,242, 37, 75,150, 96,202,148, 41, 52, 34, 34, 98,148, +149,149,213,206,191,170,146,142,120,146,190,179,126, 45,251,211, 11, 23,173,154, 95,187,150,199,184, 49,163, 7, 51, 94,158,245, +144,159, 29, 7,107, 27,123,184,184,214, 68,106, 74, 26, 78,157, 58,201,165,165,101,253,200,137,200,215, 79,158,164, 39,188, 13, +167,179, 75, 77,164,164,164,224,196,137, 19, 92, 86,102,206, 22,232, 69, 11,195, 94,102, 38, 67, 64,149,251, 60, 43,221, 0,216, + 88, 90, 90,238, 49, 51, 51, 75, 54, 51, 51, 75,182,180,180,220, 3,192,198,128,251, 58,151,252,167,148,121,101, 27, 56, 80, 1, +133,162, 37,196,226,169, 22,150,150, 39,205,205,205,211, 3, 2, 2,180, 63,252,240,131, 58, 60,252, 17, 31, 31, 31, 75,205,205, +205,115,138,175, 47,139,243,245,205,210,178,150,169,177, 99,189,249,230, 46,141,174,154, 56,250,230,154, 56,250,230,154,187, 52, +188,102,236,232,251,149,165,101, 45, 83, 67,194, 89,222, 86,211, 14,182,158, 54,216,224,109, 75, 84,158, 54,216, 80,211, 14,182, +134,190,123, 5,215, 44, 37, 4, 28, 33,224, 80, 56,157, 26, 85,229, 44,197,193, 51, 12,243,147,155,155,155, 3, 0,198,144,116, + 45,143,115, 36, 80, 99,164, 92,254,241,129, 89,179, 70,189,184,120,113, 68,206,243,231,195,178,159, 61, 27,124,127,223,190, 33, +235,135, 12, 25, 57, 76, 46,255,100, 32, 80,203, 80, 78, 71, 71,199,165,193,193,193,199, 13,221, 28, 29, 29,151, 86, 53, 62,107, +213,116, 62,221,173,115, 11, 58, 97,108, 32,157, 48, 54,144,118,235,220,130,214,170,233,124,186,186,105, 4,128, 48, 12, 51, 84, +169, 84,238, 49, 86, 42, 31, 26, 43,149, 15,149, 74,229, 30,134, 97,134, 2, 32,134,114, 90, 91, 91,223,181,183,183, 79,174,202, +102, 99, 99,115,175, 10,225, 28,230,225,225, 17, 43, 18,137, 86, 27,154,230, 6,112,182,102, 24, 38, 27,128,174,244, 38, 22,139, +227, 74, 93,227, 46,151,203,111, 40, 20,138,253,134,112,126, 55,183,222,252,107, 65,159,133,124, 55,183,222,252,215,207,125,222, +207,242,195,155,231,190, 78,255,188,159,229,135,134,132,211,206,206,238,162,157,157, 93,162,157,157, 93,162,189,189,125,133,155, +141,141,205,221,234,124,155,148, 82, 64,130,102, 54, 54, 54, 65,102,102,102,169,102,102,102, 41, 54, 54, 54,167, 1, 52,173, 74, +124,138, 68,162,101,190,190,190,106,134, 97,254,247,218,245, 43,106,215,174,173, 22,139,197,203,171,248,189,155,181,109,219,150, +123,240,224, 1,109,223,190, 61, 5, 96,249, 14,211,221,193,210,210,242,164,153,153, 89,140,169,169,233,247, 0,140,171,195, 89, +212,197, 60,171, 86,173, 90, 73, 1, 1, 1,180, 86,173, 90, 49, 0, 62, 3, 32,122, 71,225,108, 18, 24, 24,168,139,137,137,161, +148, 82, 26, 19, 19, 67, 3, 3, 3,117, 0,154,188, 5,103,179,114, 56, 71,190,109, 57, 95,213,173, 34, 78,159,154, 54,181,234, +214,177,220, 63,124,128, 63, 31,116,116, 53, 93, 48,103, 28,237,210,190, 30,245,174,109,121,200,211,211,218,243, 93,112,206,159, + 51,150,118,110,231,203,251,212,178,220,231, 83,211,166,214,159,249,238,255,182,141, 84,115,169,170, 42,155, 58,137, 33,222,101, +157,156,156,144,158,222, 66, 33, 22,251,203,229,242, 14, 34,145,232,114, 70, 90,218,231,133,166,123,112,127, 69,247,211,235,168, + 93,155,200,202, 91, 58,160, 58,156,175, 15, 80,175, 14,103, 85, 56, 12,229, 44,111,177,103, 94,163, 73,176,102,217,187,235,104, +249,113,240, 58,167,139,139,203,199, 60,207,123, 24, 26, 38,145, 72,244, 34, 46, 46,110,107,117,226,211,203,203,139, 62,121,242, +196,160, 65,146,127,117, 94,250, 47,113,238, 92,221,192,201,187,126,221,233, 15,131,195, 87, 20,117, 31,150,224,235,137, 86,166, +254, 29, 3,230, 93, 61,127,241,155, 5,235, 50,114,255,109,239, 78, 8, 17,149, 53, 14,174,120, 46,122, 85, 57,165, 82,233, 15, +205,155, 55,255,248,230,205,155,255, 99, 89,246,147,191,235,187, 23, 45,109, 36,163, 85,179,114, 27, 20, 78, 66, 72, 19,134, 97, +166,250,250,250,182, 8, 11, 11,187,197,113,220, 42, 74,105,240,223,141,243,143,202,159,190,158,214, 77, 41, 45,113,150,189, 56, +252,105,250,237,119,198, 73,121,142,167,204,162,199,207,210,238,253,217,239,254,159,235, 34,124,103,150,178, 34,129, 84, 33, 18, + 18, 98, 1,196, 2, 56,240,119,141, 48, 67,196, 85, 21, 45,136,201,127, 7,142,178,186, 11, 1, 92,127, 23, 92,175,139,165, 63, + 18,145,145,145, 68,248,172,255,126,120,127, 74, 72, 2,128,201, 77,203,112, 77, 85, 36,170,166,119,120,239, 95,219, 75,192,151, +115,188, 90,173, 91,157, 78, 55,142, 16, 50,181, 42,179, 15,255,162,247,166, 0, 52,127, 16,119, 48,128, 97,127,119,206, 63, 10, + 97, 79,210,239, 2,232,243,119,231,252,175, 67, 36, 68,129, 0, 1, 2, 4,252,227, 68,155, 74,136, 5, 1, 2,254,222, 32, 0, + 58,151,243, 1, 27,108,250, 35,132,116,174, 70, 1,113, 86,224, 20, 56, 5, 78,129, 83,224, 20, 56, 5,206,255, 22,231,127,169, + 37,244,135,109,248,147, 7, 0, 10,156, 2,167,192, 41,112, 10,156, 2,167,192,249,207,228,252,183,109, 66, 23,161,128, 63, 28, +223, 7, 18,231,239, 3,137,243, 31,117,189, 0, 1, 2, 4, 8, 16,240,119,131,248,175, 14, 0, 33,196, 9,133, 14,242,106, 3, +120, 12,224, 10,165, 52,243, 45,248,108, 0, 12, 38,132, 12, 42,178,208, 29, 0,176,159, 82,154,102,200,253, 70, 70, 70,201,106, +181,218, 14, 0, 20, 10, 69,138, 90,173, 46,189,230, 0, 41,181, 1, 0, 45,222, 42, 26,176, 90,179,102,205,100,141, 70, 99,103, +192,227,179, 41,165, 33, 34,145,232,161,137,137,201,249,199,143, 31, 31,175,202,187,119,236,216,113, 20,195, 48,139, 1,128,227, +184,185,231,207,159,223,254, 7,166, 91, 11, 87, 39,135,159,116,122, 29,155,156,154, 49,143, 82,122,180,172,235, 54,246, 33, 75, +197, 4,211,139,254, 47, 31,127,140,206,174,136,183,170,215, 87, 16,190,166, 18,137,100,130,189,189,125,143,184,184,184,187, 0, +102, 80, 74, 43,245, 66,236,230,230,246,190, 88, 44, 30,193,113, 92, 45,134, 97,158,177, 44,187, 43, 38, 38,102,167, 80, 84, 8, + 16, 32, 64,128,128, 63, 76, 96,213,181, 33, 14, 20, 24, 10,130, 46,160, 56, 67,128,189, 17,105, 52,201,208,251,123,213, 37,122, + 61, 91,248, 76,169, 8,220,201, 40,209,150, 94,189,122,185,124,254,249,231,104,221,186, 53,110,222,188,217,234,199, 31,127,252, +144, 97,152, 16,158,231, 47, 0,184, 73,169, 65, 46, 17,140, 1,244, 5, 48,188, 71,143, 30,157, 23, 47, 94,204,212,171, 87, 15, + 42,149, 10, 23, 47, 94,244, 95,190,124,249, 26, 66,200, 89, 0,187, 1, 28,165,148,230,151,199,165, 86,171,237,138,181, 18, 33, +196,110,192,128, 1,119, 74,175, 17, 71, 8,129, 72, 36, 2,165,244, 6,128, 27, 60,207,223, 56,112,224, 64,108, 93, 66, 90,140, +245,144, 30,156,244, 92,235,242, 58,167, 70,163,177, 59,242,221, 18,136,229,114,104,114,115,208,106,244,239, 51,171,207,204,159, + 14,194,179, 96, 64, 51, 59, 44, 90, 19, 2,224, 97, 66, 66, 66, 72,251,246,237, 95, 84, 53, 49, 25,134, 89,124,234,212, 41, 71, + 74, 41,186,117,235,182, 24,192, 31, 34,176, 8, 33,242,150, 77, 27, 94, 56,246,203, 30, 69, 94, 70, 50,186,247, 29,178,139, 16, + 50,138, 82,250,203, 43, 98,169, 39,177, 39, 98, 76,255,116,201,110, 6, 0, 54,206, 25, 62, 99, 77, 55,178,110,242,105,154, 68, + 8,233, 0,148, 44,173,244, 29,165,244,194,198,158,196, 30, 12,102,126,186,100, 55, 1,128, 77,115,134, 79,223,216,147,172, 29, +127,162,106,179, 36, 9, 33,227, 71,141, 26,181,110,241,226,197,140,163,163, 35,226,227,227,187,251,250,250,122, 17, 66,124, 43, + 26, 28,236,225,225,177,175, 67,215,126,181, 2, 7, 13, 53,178,177,182, 68,124, 98,170,249,254, 61, 63,142,245,240,240,232,241, +226,197,139, 33, 66,113, 33, 64,128, 0, 1, 2,222,153,192,106,226, 68,140,242,117,232, 39,102,200,251,109, 91,212,235, 52,172, +103, 91,145,175, 79, 29,132, 61, 10,239,122,244,252,173,229,190,246,162,115, 44, 71,119, 26, 75,113, 36, 56,161,226,153, 45,122, + 22,226,160, 35,187, 1, 0,227, 63, 28,206,220,190,125,187, 78,147, 38, 77, 74, 86, 80,239,212,169, 19, 58,117,234, 68, 54,110, +220,216, 48, 40, 40,168,225,182,109,219,116,132,144,159, 40,165,191, 85, 80,153, 78,168, 93,187,246,242,117,235,214,201,219,183, +111, 15,185, 92, 94,114,206,196,196, 4,125,250,244, 65,159, 62,125,152,132,132,132,110,199,142, 29,235,246,221,119,223,105, 9, + 33, 95, 80, 74,215, 27, 18, 65,243,231,207,111, 82,198,225, 83,132,144, 40,150,101,239, 53,104,208, 32,214,155,144, 58,227,122, +182, 62, 51,190,141,167,113,185, 17, 45,147, 97,199,168,194, 58,186,180,192,122,113,254, 36, 76,204, 76,211,149,166,166, 33, 0, + 30, 2, 8,161,148, 62,140,138,138, 10,247, 33,164, 97, 75, 75,209, 79,219, 50,184, 6, 85, 16, 89,136,141,141,133,185,185,185, + 81, 64, 64, 64, 34, 33,228,171, 11, 23, 46,108,121,199,249,166,197, 87,211,199, 75, 51, 95,134, 32, 41,226, 6,166, 14,242, 87, + 78,254,254,215,111, 0,252, 82,177,240, 17,137,190,187,206,207,154, 12, 76, 2, 48, 47, 61, 61,189, 61, 0, 88, 91, 91,203, 0, + 92, 88,125, 11, 61,167,180, 33,213,118,179, 64, 8,145, 50, 12,179, 97,199,142, 29, 31,189,255,254,251,133, 75, 60, 92,189, 10, + 19, 19, 19, 44, 92,184,176,198,180,105,211,150,162,240,217,101, 90,174, 2,186,244,171,185,102,249, 55, 62,185, 25,217,154,205, + 27,246,223,113,246,243,102,198, 77,152,102,186, 94,175,117,112,115,115,123, 95,176,100, 9, 16, 32, 64,128,128,119, 34,176,188, +109,201,246,182,141, 61, 7, 15,235,229, 47,175,239, 87, 15, 82,249,239,139,187, 54,105,218, 20, 77,154, 54, 21,205,202,203,237, +114,251, 78,112,151,131, 65, 55, 53,222,182,100,255,227, 84, 58,202,208,135, 23, 47, 22,187,184,175,125,199,252,172, 20, 5, 0, + 24, 91,216,169,231, 28, 73, 58,223,166, 77, 27,184,184,184, 72,207,157, 59, 55, 6,192,111, 21,208,204,121,252,248,177,156, 97, + 42,246, 99,234,228,228,132,129, 3, 7,194,219,219, 91, 22, 16, 16, 48, 7,191, 47, 91,241, 10, 20, 10, 69, 10, 33,196, 14, 0, +172,172,172,184,175,190,250,234, 1, 45, 2, 0,240, 60,127,131, 97,152, 27, 60,207,223, 58,122,244,104, 92, 61, 66,236,122, 55, +241,190, 50,126,228, 64, 37, 61,184,166, 92,113,160,206,201, 41,243,184,210,196, 56,213,200,216, 56, 68,174, 84, 60, 4, 16, 2, +224,161,179,179,115,120, 61, 66, 92, 90,122,123, 4,109,156, 50,220,212,144,184,108,210,164,137, 87,135, 14, 29, 20, 28,199, 33, + 63, 63, 31,155, 54,109, 50, 55, 50, 50, 50,239,209,163,199, 2, 0, 37, 2,203,151,144,250, 3,156,152, 79,190,138,103, 63,171, +134,128,177,104,219,170,233,203,239,151, 45, 48,107,218,178, 45,158, 92,248, 25, 25, 25,185,200,206,202, 3,207,243,111,172,252, + 59,254, 4, 77,222,216,135, 44,223, 56,123,248, 76, 34, 18,145,134,253,103,224, 61,135,236,137,132,144, 71, 0, 36,197,171,213, + 3, 16, 19, 66,156,252,252,252,150,215,233,218, 22,155,230,142, 4,229,121, 10, 96,185,161,214, 43, 66,136,157,169,169,233,209, +160,160,160, 22,205,154, 53,195,205,155, 55,241,252,249,115,140, 31, 63, 94,251,217,103,159, 73, 63,248,224, 3, 50,117,234,212, +207, 9, 33, 7, 41,165,215,222,248, 16,196,226, 17,125, 3,135,200,242,178,114,212, 58,173, 78,107,109,109, 78,213,249,234,220, +244,204, 28,213,224,161, 31,233, 30, 6,223, 28, 1,224, 13,129,245, 54,241, 41, 64,128, 0, 1, 2, 12, 70, 51, 0,182, 0, 82, + 1,220,121,109, 31, 69,255, 81,198,126, 26, 10,135,245, 88,151,226, 74, 67,225,240, 30, 91, 20,250,232,188, 13, 32,243, 93, 7, +152, 80, 74, 81,228, 80,184,216,177, 48, 41, 37,176,232,227, 84, 10, 54,227, 25,184,244, 40,112,185,111, 46,111, 68, 20, 22,200, + 86,113,136,125, 22,142, 81,147, 23,226,113,106,249, 30,180,123,213, 37,122,115, 25,196,166, 82, 64,170,180,208, 12, 91,118,250, +122,211,166, 77,213,115,218,139,122, 45,221, 88,104,217,154,250,201,112,180,154,114,240,244,179,103,207, 88, 39, 39, 39,188,255, +254,251,160,148,246,174,160, 98, 77,206,189,115,221, 46,162,119,107, 52, 79, 46,123, 24, 84,100,100, 36, 46, 95,190,140,152,152, + 24,212,170, 85, 11, 99,198,140, 73,161,148,218,151,199,217,189,123,247, 75,223,125,247, 93,187,149, 43, 87,134,236,216,177,163, + 13,165,101,175, 53,232, 75,136,113,195, 26, 14,119,182, 45,157, 89,139,156,252, 73, 82, 16,243, 20, 22,151, 84,164, 12,113, 71, + 19, 18,126,143,187,111,189, 28, 97,108,110, 10, 99, 51,147,228, 15,130,238,150, 88,174,138,126, 31, 55, 33,196,204,197,209,250, +238,222,213,243,156, 69,231,247, 41,164,155,111,144,202,196, 85, 64, 64,192,245,197,139, 23, 91, 38, 36, 36,224,236,217,179,168, + 81,163, 6, 10, 10, 10,176,106,213,170,196, 43, 87,174, 56, 21,133,215,190,185,183,123,200,166,105,163,205,165, 99,230,203,171, +154, 89,164, 98,241,250,235,167,246,125,102, 46,167,200, 74,120,142,168,240, 71,184, 29,246, 66,191,243, 76, 8,151,163,210,244, +162,148,158, 47,235,190, 9,254,164,206,133, 4,219, 99,167, 46,222,241,116,116,116,196,216,177, 99,145,148,148, 4, 74, 41,120, +158, 47,153,113, 49,103,206, 28,120,121,121, 97,212,208,247, 10,228, 25,193, 1,199,194, 12, 91,239,141, 16,226,231,238,238, 30, +116,225,194, 5,123,103,103,103, 92,185,114, 5, 73, 73, 73,112,112,112,192,185,115,231,176,108,217,178, 29,159,126,250,233,160, +197,139, 23, 43,134, 13, 27, 22,127,250,244,105,215,215,199,204,213,168, 81, 35,252,216,233, 43, 38,231, 14,159,126,102,105,106, + 12, 19,123, 43, 48,166,150, 42, 80,168,236,109,205,165, 67,250,117,174,253,242,229, 75,159,215,210,255,173,226, 83,128, 0, 1, + 2, 4,188, 82,150,151,169, 69,138, 37, 4, 33,228,120,145, 30,208, 2,144,149,218, 7, 33,228, 56, 0,188,190, 63,107,214,172, + 57, 75,151, 46,125, 84,188, 95,124,205,236,217,179,235, 45, 91,182,108, 73,171, 86,173,246, 94,191,126,253, 43, 0, 79,255, 84, + 11, 86, 49,216,184,219,144,122,246,128,132,211, 67,159,246, 24,124, 86, 52, 96,236, 0, 21, 49, 65,122, 98, 52, 34,174,252, 82, +168, 5, 43,193,111, 17, 84, 66, 8, 57, 23, 30, 30,142,136,136, 8,196,198,198, 66,169, 84,190,113,221,213,171, 87, 97,100,100, + 4, 71, 71, 71,131, 94,130,106, 95,117, 22, 28,210,196, 29, 38,173,218, 35,109,216, 56,156, 59,119, 14, 41, 41, 41,144, 74,165, +144,201,100, 96, 89,182, 82, 62,145, 72, 68,138, 18,129, 2, 40,211, 11,115, 0, 33, 98, 23, 43,147, 99, 27, 23, 76,242, 16,221, + 56, 46, 81,197, 60, 69,130,154,131,133, 33,150, 59, 19, 99, 40,141,149,137, 70, 70,202,215,197,213,147, 38,132, 72,140, 77, 20, +199,126, 90, 52,213,129,185,119, 78,161,122, 26, 2,105, 25, 28, 93,186,116, 25, 11, 96, 1,165, 52, 43, 32, 32,192,126,241,226, +197,150,241,241,241, 8, 11, 11,195,254,253,251, 83,217,194, 23, 37,148,210,175, 1,160, 21, 33, 10, 55, 91,139,211,235,231, 79, + 50,197,133,125, 50,140,153, 95,229,204, 98,238,211,231,183, 1, 31,124,250,217,186, 73,125,144,159,171,194,238, 51,247,112, 42, + 56,234, 61, 0, 87, 43, 26,215,182,254, 42,125, 74, 8,233, 20, 24, 24,120,255,242,229,203, 54,219,182,109, 3,203,178,101,110, +219,182,109,195,217, 43,193, 19, 13, 93, 76,151, 16,226,228,225,225,113,246,214,173, 91,182, 74,165, 18,103,206,156, 65, 86, 86, + 86,137,229,106,212,168, 81, 36, 43, 43,107,232,166, 77,155, 6,188,124,249,114,197,149, 43, 87,210, 81,184,108,211, 43, 25,129, + 97,152, 40,150,213,213,117,242,241,100, 6,245,105,219, 54, 47, 61, 4, 38,214, 13,112,243,126,212,241,236,172, 12, 21,195, 48, + 81,165,175,127, 23,241, 41, 64,128, 0, 1, 2,170, 44,194,142, 83, 74,123,151, 22, 76,175, 11,173,226,255,197,215, 45, 93,186, +180,119,105,241, 5, 0,203,150, 45, 91, 82,106,191,224,143, 8,171,248,119,189, 64, 40,128,128,178, 46,210,132, 29,130, 38,226, + 40,164,238,109, 32,243,126, 15,140,187, 63, 98, 66, 46,224,193,201,213,136,123,116, 21,148,231,224,232,213,220,208,103,170,235, +214,173, 11,181,186,112,232,149, 70,163,129,212,216, 82, 61,245,147,225, 10, 0,224,197, 10, 77, 41,149,105, 16,161,105,155, 14, +104,158, 76,113,219,190, 80,240, 22, 91,178, 22,141, 30, 13,169, 84, 10,169, 84,138,226,129,234,134, 8,172,162, 53,180,138, 87, +171,167,101,157,111, 42,151,236,222,187, 96, 66,115,249,203,135, 50, 77,232, 13, 36,104,120,122, 44,153,251,205,215,128,240, 42, +141,149,241, 70, 74,229, 67, 35, 19,227,210, 2, 43, 10, 0,168, 68,178,243,231,175, 39, 52, 48, 78,126,102,172,190,115, 14,137, +106, 94,103, 86, 54,205,215, 39, 79,158,180, 19,139,197, 14, 28,199, 33, 38, 38, 6,143, 30, 61,194,218,181,107,147,115,115,115, + 3,130,131,131, 35, 75,133, 87,212,204, 72,182,127,231,194, 73, 53,197, 33,151, 20,154,168,208, 50, 69, 91, 69,176,173,223,191, +219,123, 1, 13,127, 27, 59,114, 46,250,245,236,138, 15, 2,124,233,139,132, 12, 53,128, 51,148,210, 74,151, 65,162,148,198, 19, + 66,186,180,107,215,110, 87,163, 70,141,124, 40,165,168, 95,191, 62,134, 14, 29,138,157, 59,119,226,193,131, 7,200,201,201,209, + 5, 5, 5,173,161,148,254,104,224,135,166,180,180,180, 60,117,254,252,121, 91,165, 82,137,160,160, 32,168, 84, 42, 56, 58, 58, +226,179,207, 62,147, 45, 91,182,108, 71, 78, 78,206,160,165, 75,151, 42, 94,188,248, 63,123, 95, 29, 94,197,241,127,125,102,247, +122,238,141,187,160, 9, 9, 49, 8, 78,112,135,226, 46,197,161, 72,177, 34, 45,238, 69, 10, 20, 43,180,184, 22,119,119,119,135, + 16, 2,129,144, 16,119, 79,174,239,206,251, 71,164, 33, 68,110,128,190,191,126,219,123,158,103,159,123,215,206,206,206,204,206, +156,249,204,204,103, 66,215,157, 63,127,190, 34,114, 22,156,253, 36, 19,104, 52,154, 77,123,118,237, 88, 59,102,236, 56,231, 43, +247, 2, 47,171,179, 50,204,203,149,143,200,176,177, 82, 40, 86, 45,155, 95, 78,163,209,140, 44, 58, 62,175,125, 86,124, 26, 97, +132, 17, 70, 24, 81,148,237,162,120, 45, 82, 80, 52, 21, 22, 89,101, 17,103, 0,148,211,166, 77,155, 65, 8, 57,149,107,225, 82, + 2,136,254, 91, 4, 22,165,244, 58, 33, 4,148,210,235,197, 94,201,115,208,134,222,128, 54,244, 6,100,254,227,113, 98, 73,191, + 66, 47,205,127,118, 32, 58, 45,184,120, 69,173, 86, 11,118,236,216,145, 63, 46, 11, 0, 56,142,251,234,169,103,136,192, 66,238, + 18, 66,185, 2,235,147, 64, 84,146, 40,174,111,154,216,171,190, 53,151, 45,212,220, 58,137, 40, 53,175, 95,241, 86,155,253, 48, +149, 46,155, 81, 12,225,177, 31, 70, 34,226,230, 37,152, 40, 20, 17,195,111,188, 40,104,181,122, 14,224, 61, 0, 84,146,154, 93, + 62, 48,169, 95, 35, 7, 17, 68,154,211, 7, 17,173,230,213, 27,194,116,219,214, 20,157,201, 64, 41,197,251,247,239,145,157,157, +141, 59,119,238,224,240,225,195, 9,133,197, 85,110,120,175,109,253,169,127, 61,179,140, 88,145,230,225, 37, 68,171,121,181,135, + 33,162,170,122,183,134, 34,134, 92, 32, 12, 43,107,223,216, 27, 63,124,215, 13,171,182,158,208,107,236, 26,119, 92,123,252, 76, +239, 76,181,118,134, 33,226,170, 64,152,159, 3,240, 38,132, 72, 0, 52,239,219,183,239,153, 30, 61,122,224,250,245,235, 56,121, +242,164, 59,128,152,220,143, 96, 1, 0,123,228,204, 46, 12, 41,230, 67, 97, 68, 34,209,190, 75,151, 46,249, 56, 57, 57,225,210, +165, 75, 80, 42,149, 24, 61,122,180,102,236,216,177,162,193,131, 7,147,180,180,180,124,203,213,157, 59,119,146,138, 19, 87, 0, + 16, 25, 25,121,182, 98,197,138, 13,155, 52,105,210,181,178,123, 85,179,144,140,244,120,133,137, 84,118,243,250, 85,209,227,135, +119,215, 69, 70, 70, 62, 40, 58, 62, 47, 27, 28,159, 70, 24, 97,132, 17, 70,148, 88, 71,148,174, 69, 10, 89,162,202,200,159,119, +159,112,201,146, 37, 47,151, 44, 89,242,145,133,235,239,178, 96,149, 9, 92, 90,248,167, 1,231,249,178,188,228, 39,199, 44, 45, + 45,245, 50,153,236, 35,129,197, 27,200,153,124,116, 47, 66,190,255, 54,223,114,149,103,201, 66,187,193,159, 37,176,242, 44, 88, +185,131,161, 63, 10,132,220,190,106,191,125, 3, 90, 55,244,174,236,204,232, 14,172, 65,100,182, 94, 53,247,181, 86, 21,148, 65, + 59, 7, 22, 49,120, 58,159, 83,175,131, 84, 46,251, 32, 83,200, 11,139,171, 48, 0, 80, 56,120,244,216,217,175,121, 51,191,170, +110,140,126,255, 74, 68,101,235, 50,167,189,210,106, 67,178,232,145, 98,226,112,110,155, 54,109,230, 90, 91, 91, 75,215,174, 93, +107, 94,161, 66, 5,232,245,122, 77, 97,113, 37,183,175,218,111,255,224,118, 13, 61, 28, 44, 25,221,161,223, 16,161,228,178,215, +132,232,118,110, 48, 64, 92,217,152, 43,206,111, 88,252,189,204, 68, 34,132, 74,165,194,210,223, 15,225,194,237,128,142, 9, 47, +142,158, 7,112,254, 11,242,221,240,142, 29, 59,174, 90,176, 96, 1,116, 58, 29,134, 13, 27,134,119,239,222, 93,120,253,250,245, +154,242,229,203, 79,249,233,167,159,156, 28, 28, 28,208,187,119,111, 17,128,193,197,112,252,178,103,207,158,142,126,126,126,184, +126,253, 58, 82, 83, 83,225,232,232,136,177, 99,199,138,151, 44, 89,178, 51, 61, 61,189,215,226,197,139,165,239,223,191, 47,209, +114, 85, 40,111, 44,220,184,234,251,201,117,234, 55, 98,222,190,125,163, 15,175,219,148,185,122,233,228, 13, 75, 75,203,157, 31, +197,231,144,111,202, 28,159, 70, 24, 97,132, 17, 70,124, 53,156, 6,208,161,176, 85,171,176,248,202,179, 80, 21,220, 47,124,125, +238,249,191,101, 81,114, 65,129, 0, 26, 60, 61,158,207, 74, 48, 72, 52, 21, 70, 7, 79,162, 27, 89, 7,130, 25, 77, 25,136,228, +150,170, 78, 11, 46, 94, 41,238, 90,185, 92,110,176, 5,139, 87,171, 74, 19, 76,101, 18, 88, 44,203, 18, 0,231,120,158,191, 91, + 80, 96, 89, 56, 84,109, 58,107,234,132,213,141,122,180, 99,226,190,243, 71,106,166, 90,253, 83,160,158,143,204, 46, 89, 92,229, +168, 82, 93,168,137, 92,241, 66, 42,255,104,220, 85, 56, 0,200,236,171,212,157, 54,113,220,239, 45,250,117, 34, 9,163, 27, 33, + 37, 85,169,158,242, 82, 79,162,148,180, 87, 32,165, 87,139,162,187,124,249,242, 70, 0, 27,155, 53,107, 22, 39,151,203,145,153, +153,249, 73, 26,228,133,183, 97,143,118, 76,220,240,122, 72,206,210,170,127,122,169, 71,180,146,223, 87,154,184,178,181, 48, 61, +191, 97,209,247, 38,209,145, 97, 16,137, 68, 80, 40, 20,184,120,235, 5, 18, 2,142,125,137,176, 2,203,178,243,102,204,152, 49, +119,204,152, 49, 72, 74, 74,194,201,147, 39,209,190,125,123,236,221,187,183,194,153, 51,103, 86, 53,111,222, 28, 44,203,226,212, +169, 83,208,233,116,193,197,164,103,183, 17, 35, 70, 76,233,209,163, 7, 30, 60,120,128,152,152,152,143, 44, 87,169,169,169,125, +127,255,253,247, 30,161,161,161,165, 90,174, 10,161,110, 37,183,154,162,233,179,127,133, 58, 59, 94,144, 16,117,239,250,229,139, +204,221,228,228,100, 19, 0,105,159, 27,159, 70, 24, 97,132, 17, 70, 24,108,128, 41, 78,139, 36,228,138,167,132,162,246, 11, 8, +171,162,246, 73, 33,171,151,166,208,249,103,255,103, 22, 44,129,189, 47,244,113, 1, 5, 4, 86,252, 71,231,165,166, 86, 6,117, + 17,234,244, 16,108,216,150,239, 7, 75,154,148,148, 36,181,177,177, 81, 21, 20, 6, 38, 38, 38,112,114,114, 66, 74, 74, 10, 54, +109,218, 4, 0,165, 13,118,214,155,245, 24,128,186,253,134,225,161,139, 24, 84,167,205,183,100,109, 24, 50,228, 35,145, 37, 18, +137,242,198,126,149, 86,217,222, 39,132,132,241, 60,127,151, 82, 74,107,121,184, 46,148,202,229, 67,106, 87,119,179,249,225,251, +225,194,208,120, 53,174, 52,154,158,122,232,151,169,138, 8,170, 24,243,129,166,222, 46,133, 47,164,203, 31,187, 11, 91,174, 34, +107,122,184,206,148,154, 72,191,171,239,235,225, 48,109,210,247,194,208, 56, 53,185, 82,247,167,244,195,203,126, 50,121, 15,211, + 41, 17, 52,229,170, 1,201, 51,183,125,251,246,115, 41,165,148,231,249,217, 0, 80, 48,188,147,198,126, 39, 12,137, 85,225,114, +163,153, 41,135,127,153,106, 26,129,146,195,107, 91,189, 91, 67,123, 75,179,243, 27, 22,143, 49,137,137,250, 0,137, 68, 2, 83, + 83, 83, 68,196,165, 65, 40, 96,149, 95,146,217, 8, 33,146,166, 77,155, 78,253,254,251,239,241,226,197, 11,140, 30, 61, 58, 38, + 60, 60,252,200,254,253,251, 71,207,153, 51, 71,208,182,109, 91,196,196,196, 96,249,242,229,186, 91,183,110, 45, 6,176,188,200, +252, 40, 16, 12, 95,184,112, 33,141,142,142, 38,239,223,191,135,163,163, 35,198,141, 27, 39, 94,188,120,113,254,152,171,178, 88, +174,242, 16, 25, 25,121,221,221,173, 60, 58,159, 93, 13,189, 78,125, 61, 53, 41,252, 70, 80, 72,202,117, 43,177,120,114,163, 90, +213, 63, 43, 62,141, 48,194, 8, 35,140,248, 42,120, 88,202,254, 63, 14,165, 9,172,224,223,102, 14,117, 31, 58,230, 71,200, 42, + 52,132,250,213, 81,240,153,113,249, 22, 44,169,194, 18, 86,229,189,144,154,165,198,193,203,143, 1, 32,184, 44, 15,207,200,200, + 64,173, 90,181,176,126,176, 71, 11, 85, 70,146, 84, 6, 64, 45, 49, 83, 29, 19, 55,190,114,230,204,153,108,158,231,247, 1, 56, + 83, 10,205, 60, 31, 31,159,117,191,254,250,171,216,171,223, 80,100,222,187,249,209, 73,134, 97, 32,147,201, 32,145, 72,240,252, +249,115, 92,185,114, 69, 3, 96, 94, 41, 66,224,190, 94,175,127,118,240,224,193, 8,119, 87,151,118,205,234,212, 29, 63, 99,250, + 52,211,192,155, 23, 48,123,241, 58,190, 74,237,182,105, 75,247, 30,203, 72, 83,148,111,153, 29, 29,244,212,128, 87,125, 86, 72, + 92, 69,123, 85, 46,223,194,191,102,141, 31,103,207,158,105,246,242,230, 69,204, 89,182,129,186,251,181, 74, 91,118,248,120,122, +162, 73,197, 54,202,184, 87, 15, 12,137,195,107,215,174,109, 4,176, 49,111,191,112,120,167, 45, 88,195,123,212,105,151,178,116, +239,225,172,116,211,242,173, 74, 10,175,157,119,247, 6,229, 28,173,206,255,246,243, 40,147,216,168,112, 72, 36, 18, 40, 20, 10, +132,199,164, 98,238,234, 3, 89, 90,158,111,247,133,249, 77, 98,106,106, 42,209,106,181, 88,191,126, 61,194,195,195,253, 41,165, +225,132,144, 13,125,250,244, 89, 91,173, 90, 53,207,151, 47, 95, 6,103,102,102,142,161,148, 6, 21, 71, 98, 97, 97,225,111,107, +107, 75,238,222,189,139, 81,163, 70,105,198,141, 27, 39, 26, 52,104, 16, 73, 73, 73,249, 92,203, 21, 0,192,197,197,165,105,151, + 14, 13,208,176,245,232,235, 26, 85,234,141,208,160,157,215, 25,122, 91, 90,171, 70,245,207,138, 79, 35,140, 48,194, 8, 35,254, +219,230,184, 98,183,166,128,192,195, 26, 35,125,156, 69,177,187,126, 25, 71, 51, 66,238, 80,229,131,141, 52,253,232,119,244,244, +242, 65,244,204,111, 63,208,209, 29,124,168,167, 29,137,245,176,198,200,166,128,160,164,213,182,219, 87,133,174,181, 27,104,107, + 55,208, 14, 30,208, 1,152, 81,179,102,205, 99, 99,235,130,210,192, 61,148, 6,238,161, 99,235,130, 2, 24, 5, 64, 97,232, 10, +222, 0, 28, 1,108,170, 85,171,150,254,234,213,171,244,117,175, 86,244,137,167, 13, 29, 51,102, 12,157, 51,103, 14,253,246,219, +111,169,173,173,173, 30, 57, 14, 55, 29, 75,227,236,220,185,179, 11,165, 20,229,202,149,179,168,237, 85, 37,246,249,229,147,244, +198,174,181,116,235,216,238,180, 94, 53,175, 68, 7,207, 38,207,100,142, 85,107, 24,186,210,184,131,131,195,116, 74,105, 59, 74, +169, 35,165, 20,238,238,214,138,154,158, 85,162,159, 93, 58, 73,111,238, 94, 71,183,142,237, 78,235, 87,247, 78,114,241,106, 30, + 36,181,243,172,251,185,171,151, 23, 25, 94, 95,207, 68,251, 42, 13,158, 22, 23,222,130,156,149,235,246, 62, 30, 25, 29, 71,239, +223,191, 79,207,156, 57, 67,111,222,188, 73,119,237, 63, 78,203,215,233,149,105, 83,173,107,195, 47, 93,101, 29,128,121,135, 14, + 29,104,112,112, 48,253,230,155,111, 40, 0,243,207,225, 4,112, 44, 52, 52,148, 6, 4, 4,208, 25, 51,102, 80, 0, 59,190,255, +254,123,101, 90, 90, 26,109,213,170, 85, 56,114, 38, 41, 8, 62, 39,156,174,149,156,151,118,235,212,120,222,216, 81, 61,154,126, +105,124,254,147, 87,173, 55,114, 26, 57,141,156, 70,206,127, 26,231,191,109, 43,209,130,117, 45,167,245,191,177,154, 61,249,115, +241,242,223, 38,175,223,184,227,199,169,227,135,203, 27, 55,106,141, 23,151,182,227,240,169,253, 89, 42,181,102,185,136,197,175, + 47, 18,105,169,126, 36, 78, 7, 81, 97, 17,214, 34, 19, 43, 55,228,251, 80,122,155, 2, 80, 74, 55,148, 81, 36,198, 0, 24, 65, + 8,249,181,121,243,230,139,190,107, 88,183,251,216, 6, 45,160,211,233,176,107,215, 46,124,248,240,225, 8,128,153,148, 82,131, + 44,108, 47, 94,188, 72,244,169, 82,113,130,149, 76,244,227,152,111,187,217, 38,188, 11, 68,228,171, 39, 0, 0,181, 90,169,139, +121,115,221,175, 44,225,147,201,100,247,109,109,109, 95,219,218,218,166,112,234,204, 17, 82,129,217,236,209,125,187,216, 37,133, + 6, 33,226,101, 78, 15,168, 90,149,173,141,120,115,197,243,115, 68,114,197,138, 21, 37,114, 33, 70, 22, 25, 94,141, 74, 23, 27, +252,170,134, 33, 60,217,106,205,226,249,171,118,181,249,249,199, 33, 18, 51, 51, 51, 60, 14,120,139,217, 43,247,102, 41, 53,186, +118, 9,207,143,222,254, 90,130, 94,167,211, 25, 60,129,161, 24, 76,245,243,243,171,186,104,209, 34,247,193,131, 7,227, 75, 45, + 87, 5,241,238,125,228,180,102,205,154,121,191,125,253,184,185,149, 76,244,231,151,196,167, 17, 70, 24, 97,132, 17,255, 93, 24, + 52, 6,235, 69, 28,205, 6,176,192,213,158,108,152,190,104,213, 92,134,172, 30,194, 83,186, 93,207, 96,126, 72, 34, 77,248,194, + 10, 55,187,131, 39,209,183,233,250,173, 0, 0,132, 2,232,191,128, 43, 24, 64, 15, 66, 72,157,205,183, 31,204,202, 61,252, 51, +165,180, 76,125,181,166, 2, 4, 52,242,118,117,110, 92,211, 71,202,114, 74, 68,190,122,135,228, 44, 21, 46,190,252,144,202, 80, +102,123, 89,195, 21, 18, 18,114, 13, 0,124,171, 84,124,213,216,219,173,124,147, 90, 62, 38, 66,162, 65,100,224, 99,164, 41, 53, +184,240,242, 67, 26, 8,249,236,129,210, 95, 43,188,177,207,143, 61,180,173,222,173, 21, 33,228,210,140,177,253, 36,115, 87,238, +251,170,226, 10, 64,118, 84, 84, 84, 82,118,118,182,117,116,116,180, 6,159,233,220,141, 82,250,150, 16, 82,237,135, 31,126, 88, + 48,101,202,148, 31,127,249,229, 23,209,231,140,185, 42, 14, 41, 81, 31,142, 54,241,249,122,233,111,132, 17, 70, 24, 97,132, 81, + 96,149, 44, 20,226,104, 2,128, 49,110,110,100,210,187,119, 84,243,181, 2, 81,148,101,235, 11, 69,219, 67, 0,157, 62,155,128, + 33, 25,247,130, 63,100,222, 15,254,144, 9,158, 82,158, 82, 53,195, 32, 34, 75,171, 93,252, 38, 36,242,243,103,209, 17,194, 61, +124, 27,174,124,244, 46, 66, 69,121,158,242,148,106, 8, 65,172, 78,199, 47, 14, 8, 9, 59,254, 79, 8,111,194,243,163,183, 29, +188,187, 55,190,125, 63, 96, 82, 86,150,118, 93, 66,224,209, 59, 95, 49, 93,116,132,144,254,254,254,254, 67, 57,142,219, 64, 41, +213,125, 1,151, 6,192, 84, 66,200,145, 23, 47, 94, 28,184,115,231, 78,204,215, 16, 87,127,107,250, 27, 97,132, 17, 70, 24, 97, + 20, 88, 37,225,107,138,171,127, 34, 94, 4,135,214,250, 59,120, 3,130, 67,125,255, 23,194, 27, 27,120,228, 17,128,190,127, 71, + 88, 41,165, 23, 0, 92,248,154, 98,154, 16, 82, 9, 0,251, 85,196,213,223,152,254, 70, 24, 97,132, 17, 70, 24, 5,150, 17, 70, +252,207, 32,119,205, 72,189, 49, 38,140, 48,194, 8, 35,140,248,167,128, 0,104, 85, 76,165,117,201, 96, 18, 66, 90,125, 70,165, +120,201,200,105,228, 52,114, 26, 57,141,156, 70, 78, 35,231,127,139,243,191,212,250,255,219, 54, 24,167,176, 26, 57,141,156, 70, + 78, 35,167,145,211,200,105,228,252, 15,110,140, 81, 98, 26, 97,132, 17, 70, 24,241,183,117,147, 16, 34,201, 93,224,253,179,206, + 27, 97,196,255, 42, 4,159,241,177, 84,201,181,124,189,253, 27, 63,200,177,142,142,142, 35,170, 87,175,238, 37, 18,137,152,140, +140,140,249, 87,174, 92,153, 87,248,186, 38, 62,194, 71, 44, 3,151, 2,119, 2,132, 5, 24, 6, 28, 69,228,141,103,217,181,141, + 73,252,143, 46,120, 43,200,204,108, 79, 16,134, 21,115,122, 45, 56,157, 22,192, 95,203, 38,241,188,254,131, 94,163,106, 91,220, +253,142, 53,186,151,215,115,116, 41,192,255, 78,192,140,166,224,255, 32,148, 25, 77, 25,252, 78,120,140,130, 64,183, 28,122,225, + 20,129, 72, 48, 51,250,241,193,136,127, 67,156, 29, 58,116,136,253,146,251,123,246,236, 89,228, 2,159,206,206,206,167, 76, 76, + 76,220,138,187, 47, 43, 43, 43, 38, 58, 58,186,249,191, 60, 63, 54, 1,240, 27, 0,159, 66,167,130, 0, 76,160,148, 94,254,210, +103, 52, 35, 68, 96, 15,140, 20, 1, 63, 1,128, 22, 88, 22, 7,108,188,246,149, 38,104,124, 13,216,217,217,221, 16, 8, 4,238, + 89, 89, 89, 89,233,233,233,174,102,102,102, 33,114,185, 92,174,215,235,131,227,227,227,155,148, 49, 78,191, 71,238,146, 87,132, +144, 31, 41,165,191,151,229,188, 17, 70,252,171, 5, 22, 33,196, 3, 64,211,220,173, 73,157, 58,117,236,179,178,178, 64, 8,137, + 3,112, 3,192,117, 0,215, 41,165,111,190, 70,128, 88,150, 93,177,102,205,154,201,227,198,141,203, 95,164,249,249,243,231, 69, + 95,203,192,229,234,169,203,118, 15,159,191, 70,157, 86, 61,115, 5, 22, 3,100,199,162,121,171, 58,159, 91,200,154, 90, 90, 90, +206, 39,132,244, 98, 24,166,212,202,140,231,121,142, 82,122, 48, 37, 37,101, 46,165, 52,163, 44,207, 82,200,165, 58, 61,199, 21, +249, 12, 1,203,114,153, 89,170, 98,221, 87, 88, 91, 91,223, 97, 24,166,114,193,133,172,115,195, 95,228,255,130,251,122,189, 62, + 50, 33, 33,161,182, 1,113, 33,101, 4,162, 9,132,136, 90,131,225, 61, 0, 2, 2,230, 13,207,105, 46,242,122,237, 26, 74,169, +234, 75,196,149, 99, 57,215,155, 19,103, 46,117, 9,120, 21,132, 25, 99,191,197, 47,191,237,192,244, 9, 67,177,102,211, 94, 76, + 24,209, 15,222,222, 62, 37,114,112,148,204,159, 61,161,127,243, 69,107,246,212,153, 57,225, 91,249,162, 53,123,234,204,252,225, + 91,197,162,181,123,106,207,252,161,191,226,231,181,127,214,158,245, 67,127,179, 69,107,247,104, 1, 12,251,156,112,246,247,112, +206,130, 94, 95,116,235, 90, 32, 80,255,249, 38, 74,254,127,241,225, 14, 30, 60,184,186, 82,169,124,252,109,235,154, 75,107,120, + 56, 71, 21,117, 77, 82,108,148,115,200,235, 39,211,132, 34, 89,173, 46,211,118, 60, 47,137, 79, 34,145, 84, 14, 10, 10,114,231, +121, 30, 28,199, 65,175,215,231,255,106, 52, 26, 52,105,210,228,171, 76,136, 33,132,116, 2, 48, 63,231, 99,197, 18, 74,233,129, + 47,224, 82, 8, 4,130,137, 98,177,184,169, 94,175,247, 2, 0,161, 80,248, 74,173, 86, 95,215,235,245,171, 40,165,153,101,164, + 92, 29, 21, 21,229,173, 80, 40,160,213,106,243, 23,134,103, 89,214,179,124,249,242,235, 1,184,127,233,251,219, 3, 35, 27, 52, +106,180,102,208,228,201,172,242,198, 13,172,217,182,109, 53,210,211, 1, 96,125,105,247, 74, 36,146,243, 12,195, 84, 40,203,243, +120,158,255,160, 86,171,219,150,169, 82, 16, 8,220,163,163,163,237,156,156,156, 0, 0,114,185, 92, 94,112,191, 44,150, 43, 0, +203, 41,165, 50, 0, 96, 24,102, 77,131, 6, 13,252, 9, 33,122, 0,148,231,121,134, 16,210,143,231,121, 65,238,245,203, 9, 33, +219, 40,165,106, 99,213,108,196,191, 90, 96, 17, 66,206, 0,104, 90,167, 78, 29, 89,223,190,125,209,180,105, 83,184,187,187, 67, + 42,149,230, 20,222, 73, 73,246, 79,159, 62,237,125,227,198,141,222, 39, 79,158, 4, 33, 68, 9,224, 22,165,180,200,143,185, 85, +167,198,227,164, 10,201, 90, 0, 72,136, 76,138,137,124, 31,191, 54, 38, 38,102, 57, 45,176, 74, 52, 33,196,117,208,160, 65,147, +198,143, 31,143, 83,167, 78, 97,239,222,189, 80,171,213,200,200,200,192,149, 43, 87,138,105, 90,199, 35,229,202, 82, 64, 30, 6, +132, 95, 3, 76,236, 0,185,253,103, 71,136,165,165,229,252, 9, 19, 38,252,224,237,237,157,239,117, 92,167,211, 65,175,215, 67, +167,211, 33, 37, 37, 5,147, 38, 77, 66,174, 21, 15, 60,207,227,236,217,179,227, 70,140, 24, 1, 0, 19,139,226,244,175, 93,254, + 17, 67, 24,151, 60,219, 12,229,184,200,187, 79, 34,106,235, 57,142, 85,169,180, 69,174, 28, 46,149,138, 74, 20,119, 66,161,208, + 37,240,196, 9, 59, 70, 44, 6,229, 56,128,231, 65,121, 30, 64,129,141,230, 28,163, 28, 15,170,227,192,235,121,232,149,106,212, +253,254,123, 67, 10,199, 6, 66,177,108,111,255,239, 38, 59,212,171, 95, 95, 88,177,156, 19,244, 28,143,119,161,145, 14,143, 31, +221,107,120,112,231,250,209,132,144,126,148,210,207,242,147, 37, 54, 49,187,176,238,143,205, 46, 15,159, 6,224,242,213, 27,184, +116,229, 58, 0,224,252,213, 28, 58,134, 97, 74, 11,159,165,181,123,243,234,227,134,118,149,255,252,235, 22,201,184,161, 93, 5, +127,253,110,150,140, 27,218, 69,176,104,213,102,201,184,161, 93,132, 11,151,173,171, 65, 8,177,164,148,166, 20,199, 87, 92, 26, + 65,175,151,252, 25, 18,199, 2, 64,194,134, 13,208,197,199,195,105,238,220, 28,241,229,106,111,112,183,134,173,173,237, 35,161, + 80,232, 82,218,117, 58,157,174, 84,241, 59,120,240, 96, 63,165, 82,249, 72,175,215, 83,129, 64, 48,237,219,110,109,142,181,107, +236,151, 84,240,154,231,207,159, 89, 47, 94,124,162,235,129,199, 25,180,119, 45,211,199,167, 86, 12,174,221,113,202,142,103, 37, + 84,196,140, 90,173, 70,112,112, 48, 10, 46,190, 94, 80,207,126,166, 8, 98, 0,172,177,182,182,174,151,148,148,212, 31,192,140, +244,244,244,234, 44,203,194,202,202,106, 6, 33,228,157,185,185,249,150,180,180,180, 59,185, 86, 34,222, 64,222, 38,102,102,102, +187,142, 30, 61,106, 89,179,102, 77, 38, 33, 33, 1,149, 43, 87, 70,114,114,114,221, 27, 55,110,212, 26, 54,108,216, 48, 66,200, + 64, 74,233,141, 50, 4,183,170,137,137, 9, 29, 52,104, 16,225,184,191, 94,119,235,214,173,104,235,171,119, 27,213, 78,158,173, +210,208,180,203,193,230,163, 68, 34,209,173,176,176,176,180,178,198,135, 8,248,105,208,228,201,172, 34, 44, 12,138,103,207,208, + 63, 61, 93,240, 75,142, 53,171, 84,129,197, 48, 76,133, 93,251,182,187,139,197,226,252,114,169,184,141,227, 56,104, 53, 90, 44, +253,121,249,103,151,133, 38, 38, 38, 38, 78, 78, 78,113, 38, 38, 38, 38, 95,163,178,145, 72, 36,130,157, 59,119,246, 19,139,197, + 0, 0,141, 70, 3, 95, 95, 95, 98,172,134,141,248, 47, 90,176,190, 73, 79, 79, 7,199,113, 48, 53, 53, 5,203,178,133, 45, 40, +104,221,186, 53,154, 52,105,130,190,125,251, 34, 48, 48, 80,214,183,111,223,214,197,145,125, 59,185, 35,202,185,219,231, 86, 34, +188,227,237,211, 79,151,110, 93,120,200, 22,192,228, 2,151, 13, 27, 57,114, 36, 73, 74, 74, 66,175, 94,189,110,168,213,234,206, +148,210,244, 98, 45, 24, 60, 34,155,247,253, 22, 60, 37,178, 85,247, 55, 17,141, 74, 73, 25,134, 81,230,117, 17,126,102,133,208, +203,201,201, 9,251,246,237,131, 70,243,169,187, 47, 51, 51, 51,188,124,249,178,160,197, 13,245,235,215,103, 9, 33,189,138, 19, + 88,132, 48, 46,183, 31,134,217,229,237,119,108,237, 35,242,175, 93, 33,206,214,218,148, 2, 32, 51,103,206,204, 23,108, 0, 48, +127,254,124, 67,194, 9, 70, 40, 68,194,245,235,127, 21,192, 2, 6,140,136,128, 8, 1, 70,144,211, 91, 10, 10, 80, 14,224,245, + 0,175, 3,164,142,229, 12,225,174,235, 92,222,253,212,226,149,191, 91,168,117, 20,251,142, 95, 70,104,232,123,176, 12, 3, 87, + 55,119,180,105,214, 88, 88,171,142,127,185,101,243, 38,159, 36,132,124, 67, 41,125, 80,230,136,230,169,212,173,188, 13,182,108, +125, 12, 91, 75, 5,122,117,109, 15,153, 84,130, 95,126,219,142,159,167,143,133,187,107, 5,108, 92,189,168,216,219,205,205,205, + 23,212,172,230,233,186,253,192, 57, 52,109,210, 64,176,227,192,121, 52,107,210, 80,176,253,192, 57, 52,107,218, 88,176,227,192, + 57, 52,107,210, 72,184,227,192, 57,212,175, 93,205,237, 78,210,243, 5, 0,198, 22,255,206,133,210,168, 77, 78, 26,185, 11, 68, +249, 21, 64,216,232,209, 0,144, 47,176,202, 2,161, 80,232, 18, 29, 29,109, 87,218,117,165, 89, 9,114, 45, 87,143,244,122, 61, +226,227,227, 73,106,106, 42,181,176,176,232,122,110,227,140,163,109, 27,249, 37, 3,192,179,103,207,172,150, 44, 89,220,117,255, +163,116, 40,239,173, 35,127,158,184,206,247,239,220,244,209,241,165,131,107,245,236,217,243, 73, 81,188,106,181, 58,180, 70,141, + 26, 52,247,191,179, 68, 34, 17, 21,202, 19, 78,238,238,238,159, 88,169, 13,232, 58, 92,115,247,238,221,177,222,222,222,240,244, +244,188, 83,175, 94, 61, 51,185, 92,142,115,231,206,193,203,203,203,199,204,204,236,254,193,131, 7,133, 83,167, 78,245,219,182, +109, 27, 0,140, 51, 32,127,182,106,222,188,249,190, 83,167, 78, 73, 69, 34, 17,148, 74, 37, 94,190,124, 9, 11, 11, 11,136,197, + 98,116,233,210,133,109,216,176,161,117,179,102,205, 14,231, 54, 2, 12,158,209,164, 82,169,232,140, 25, 51, 96, 98, 98, 2, 19, + 19, 19,200,229,114,200,229,114, 40,164, 32, 27, 38,148,151,141,223,148, 42,155, 56,119,195,210, 93,191,207,187, 90,190,124,249, + 57,225,225,225,169,101,205, 11,202, 27, 55,160,120,246, 12, 40,240,237, 26, 10,115, 19, 43, 76,155, 54,173, 52, 11, 20, 68, 34, + 17, 26, 52,104, 80, 42,159,181,181,245, 17,129, 64,240, 81,139,148, 82, 42,157, 54,109, 26,247,230,205, 27, 57,195, 48,114,158, +231, 49,109,218, 52, 78,175,215, 75,237,237,237,239,240, 60, 31,151,144,144,208,189, 52,110, 74,169,154, 16,242, 35,195, 48,107, + 36, 18,137,160, 98,197,138, 31,102,207,158,125, 55,215,122, 9, 74, 41, 83,177, 98,197,186, 50,153,172,130, 90,173,214, 3,248, +209,104,189, 50,162, 4,212,202, 49, 2,231, 67, 3, 64,156,103,176,207,169,237, 96, 83,232, 56, 0, 36,230, 54, 16,237,139,217, + 79, 2, 16, 8,160, 42, 0,187,220,115, 15, 1, 36,127, 21,129, 69, 8,161, 5, 62,138,252, 10,197,212,212, 20, 15, 31, 62, 4, + 33, 4,166,166,166, 48, 51, 51,131,185,185, 57,210,211,211, 17, 24, 24,136,160,160, 32,132,133,133,129, 16, 2, 87, 87, 87,228, +125, 56, 5,184,242, 11,182, 61,191,158,130, 84, 33, 1, 33, 64,205, 22,213, 81,189,137, 47,234, 60, 8,153,224,228,228,180, 41, + 58, 58, 58,152, 16, 34,240,245,245, 29, 86,191,126,125,172, 92,185, 18,106,181,122,101, 81,226,170, 32,231,141,151,186,218,185, +149,210,148,221,231,222,153, 12,104,231,150, 29, 29, 29,189,162,172,145, 80,184, 0, 78, 76, 76, 52,120,173, 60,158,231,145,146, +146, 82, 34,103, 97,139,192,170, 53,235, 44, 50,210,226,176,240,151,221,208,233,116,152, 60,121, 50,120,158,207,223, 82, 83, 83, + 13, 10, 39,229, 10, 25, 21,152,156,141, 48, 0, 17, 0,229,251,228,232,137,240,125,235, 64, 40, 64, 56, 0,133,222,171, 48, 39, + 33, 68,202,138,100,251,231,253,178,214,226, 73, 80, 36,142, 95,126, 2,109,122, 20, 98,158, 29, 5, 0,184, 54,232,135, 3,106, + 22,245,170,187,225,135,153,203, 44,103,253, 48,112, 63, 33,196,179, 96,119,161, 33, 21, 26,165, 28, 22, 46, 88,128, 77,107, 87, + 98,217,202,181, 72, 79, 75,133, 80,104, 3, 0,208,235, 57,112,133,222,237,147,119,167,180,221,172, 41, 35,201,154,205,135,225, + 91,197, 1, 39, 47,222, 65,109,159, 10, 56,123,229, 1,234, 87,171,132,243,215, 31,163,126,245,202,184,126,239, 37, 38,143, 25, + 68,110,159,221,209,174, 44,105,180,122,245, 58,139,140,244, 56,156, 90,180, 19,241,235,215,227,195,216,177,168,155,123,205, 3, + 66, 32,114,113, 1, 68,165,167, 81, 97,188,122,245, 10,106,181,186,168,214, 61,188,188,188, 74, 77,119,165, 82,249, 88,175,215, +211,184,184, 56, 18, 23, 23, 7,185, 92, 78, 94,190, 12,224,124,124,124,187,209,160, 67,155, 1, 96,201,146,197,221, 14, 60, 78, + 71,246,157,181, 80,222,253, 13,162, 74,207,153, 77,243, 71,106, 71,204,221,248,184, 64,229,246, 81, 56, 99, 98, 98,190,201,251, +239,234,234, 26,244,230,205,155,170,121, 93,202,185, 93,133, 34,189, 94,239,158,215,109,168,215,235,161, 86,171,209,170, 85, 43, +182,164,119,183,180,180,172,239,229,229,133, 39, 79,158, 96,237,218,181, 86,205,155, 55,199,219,183,111, 65, 8,193,226,197,139, +137,183,183,183, 48, 49, 49, 17,109,219,182,197,145, 35, 71, 26,148, 22,159,132, 16, 83,185, 92,190,237,228,201,147, 82,134, 97, +144,145,145, 1,158,231,209,168, 81, 35, 48, 12,131,128,128, 0,204,156, 57, 19, 71,142, 28,193,177, 99,199,100,181,106,213,218, + 70, 8,241, 42,216,125, 95, 66, 26, 81,149, 74, 69, 37, 18, 9, 36, 18, 9,164, 82, 41,164, 82, 41,196, 98, 49, 50, 85,192,136, + 85, 31,212,172,212,134,247,169,209,200,109,200,248,197,204,138,217, 67,175, 0, 56,110,104,158, 7,114,198, 92,173,217,190,125, +109,255,180, 52, 6, 0,182, 16,194,107, 41, 93,102,200,247, 14, 0, 25,170, 84, 84,112,115,193,225,125,199,208,163,111,215, 34, +197,149, 80, 40,130, 72, 40,132,169,149, 73,169,156, 34,145,200, 62, 40, 40,200, 90, 40, 20,230, 91,228,117, 58, 93,220,236,217, +179,109, 59,116,232, 96,122,246,236, 89,166, 67,135, 14,188,141,141, 77,214,147, 39, 79,226,181, 90,173,117,195,134, 13, 13,206, +243,148,210,223,107,212,168, 81,243,232,209,163, 67,167, 77,155,246,104,202,148, 41, 11, 11,158, 95,190,124,249,130, 51,103,206, + 84,232,214,173,219,174,167, 79,159,254, 94,150, 50,228, 75,203,121, 35,231, 63,143,179, 56, 45,146, 11,123, 66,200,169, 2,231, + 59,230,237, 79,155, 54,109,198,146, 37, 75, 94, 18, 66, 78, 21, 60,158,119, 93, 46,247,169,162,246,115,239,181,154, 62,125,186, +239,210,165, 75, 23,251,251,251,239,187,115,231,206,251,175, 38,176,242, 94,164,224,203, 21,138, 72,164,167,167, 35, 61, 61, 29, + 17, 17, 17,216,176, 97, 67,238,135, 44,132, 64, 32,128, 64, 32,200, 31,175, 80, 28, 46,157,188,249, 27,128,223,106,213,170, 37, +124,113,247,224,217,159, 54,141,111, 89,187, 85, 77,246,241,229, 23, 61, 1,252, 12,224,155, 65,131, 6,217, 0,192,206,157, 59, + 19, 1,156,253,191,144,200,148,210,131,193,193,193, 63, 56, 58, 58,230,143, 65, 41,216, 77,168,215,235, 33,149, 74,145, 55, 86, + 69,165, 82, 97,195,134, 13,122, 74,233,193, 18, 56,241,230,229, 21, 4,191,188,154,115, 31,207,131,231,254,186,127,222,188,121, + 5,167,190, 98,116,174,165,164, 84,113, 87, 84,156,211, 66,191,133,142,127, 34,202, 62,233,134, 16,141,239, 57,112,172, 35, 79, + 4, 56,113,229, 41,132, 66, 33,248, 2,214, 75, 33,155,211, 58,126,249, 54, 26, 78,246, 62,232,220,111,164,195,209, 93,235,198, + 3,248,165,172,113,237,233,231,143, 9, 63,252,128,205,155, 54, 97,230,220, 5,249,234, 92,207,113,208,151, 26, 78,134,105, 88, +219, 27,153, 73,145, 96, 89, 22, 13,106,184,129,101, 89, 52,174,237, 1,150,101,209,168, 78, 85, 8, 4, 2, 52,171,239,141, 42, + 85,170, 64, 32, 16, 48,165,164, 59,222,188,188,140,224,151,215, 10,136,221,156, 52,209,198,196,124,114,189, 46, 38, 6,180,188, +117, 89,243, 22,134, 13, 27,150, 26, 17, 17,161, 45,124,174, 92,185,114,162, 27, 55,110, 88, 20,211, 61,151, 15,153, 76, 86, 75, + 32, 16, 60, 78, 78, 78,230, 77, 76, 76, 24,158,231,120, 31, 31, 95,246,220,198, 25, 71,243,174,153, 62,125,198,209,222,181,204, +186,237, 62,120,138,138, 42, 54, 34, 68, 40,209,127, 55,119,163, 72, 40,146, 25,228,161, 62,175,187,240,245,235,215, 40, 45, 60, + 69, 20,130, 31, 33, 37, 37,101,144,151,151,215,141,223,126,251,205,138, 16,130,155, 55,111,130,101,217,252, 45, 36, 36, 4, 12, +195,224,167,159,126,210,166,167,167, 15, 47,181,192, 18, 8,126, 56,124,248,176,185, 88, 44, 70, 70, 70, 70,254,119,195,178, 44, +130,130,130,176, 98,197, 10, 12, 26, 52, 8,225,225,225,112,114,114,194,228,201,147, 21, 75,151, 46,253, 1,192, 2, 3, 94,253, +185, 70,163,169,109, 98, 98, 2,169, 84,138, 60,161, 5, 0, 23, 94, 10, 3,178,179,179,171,217,216,216, 56,216, 94, 63,117,162, + 65,243,206,126,214,182,142,254,121, 2,203, 80,188, 3, 54,189,215,235,103,125,115,244,168,221,237,163, 71,249,187, 39, 78, 68, + 74, 51, 51, 55, 26, 76,160, 99,241,225, 93, 36,106,213,170,133,199,143, 31,163, 86,173, 90, 5,197, 18,196, 98, 49, 68, 34, 17, + 68, 34, 17,108, 44, 12, 26, 42, 65, 25,134,193,237,219, 31, 47, 55,218,184,113,227,228,171, 87,175, 42, 0,224,195,135, 15,180, + 99,199,142,169,129,129,129,112,119, 47,121, 24,154,131,131,195, 13,150,101, 43, 22,250, 86, 45,187,119,239,142,148,148,148,246, +221,187,119,111,148,123, 44,234,208,161, 67, 3, 0, 64, 44, 22,131, 97, 24, 14, 70,252,231, 81,154, 22, 41, 40,144, 10, 11,173, + 37, 75,150,116, 44,124,172,160,152, 42,234,127,193,123,151, 46, 93,186,184, 0,183,242,107,188,143,160,160,114, 44,173,176, 44, + 9,165, 9,172, 60, 60,126,252, 88,231,236,236,188, 57,248,105, 88, 75,183,234,174,144,201, 37,109, 8, 33,191, 73, 36,146, 73, + 3, 7, 14,196,189,123,247, 16, 16, 16,176,245, 75,151, 61,169, 86,173,218,121,137, 68, 82,161,152,238,144, 15, 47, 94,188,104, + 91, 76,133, 48, 55,119, 76, 89,177,131,220, 11,142, 7, 43, 56,200,189,216, 12,193, 83,232,180, 58,100,101, 43,255,170,188,115, + 5, 86, 86, 86, 22,250,244,233,243,145, 5, 43, 62, 62,222, 16,165,143, 21,199,143,227,226,193,131,104,239,231,135, 35, 15, 30, + 96,233,192,111,225, 89,193, 25,148, 35,160, 4, 8,223,187, 14, 73,233,153,216,115,249, 54,146, 51,178,209,191,113, 99,184,155, +217,148,204, 43, 20,181,174, 91,223, 95,116,233, 78, 32,132, 66, 1, 24,240,160,186,108, 56,121, 53, 3,203, 48, 48,183,175, 4, +145, 80, 8,161, 80,128,144,136, 68,120,249,214, 17,159, 18, 75, 91,127,142,192, 42, 95,161, 50,120,142,195,160, 65,131,176,111, +223, 62, 88, 59, 84,128,121, 57, 95,252,188,114, 19,218,183,106, 92,234,251,231,181,216, 5, 2, 1, 88,150,253,228, 55,239,191, + 33,214, 72,202, 83,104, 11,167, 17, 79, 65, 1,184, 44, 90, 4,151, 69,139,240, 32,247,153,222, 89, 89, 80, 42,149, 64, 61,159, + 50,137, 43,141, 70,131,136,136, 8,109, 76, 76,140,125, 17, 21, 83,156, 70,163, 41, 85,208,236,216,177,227,249,224,193,131,107, + 91, 89, 89, 61,122,254,236,153,174,186,159,159,240,236,134, 25,199,242,186, 7, 1,192,207,207, 47,121,198,140, 25,199, 6,244, +234,216,245,247,105,125,185,239, 23,236, 18, 72,100,178,218, 29,167,148, 60,208,189,192,247, 17, 90,189,122,117,106,200,181,217, +217,217,177, 37,164, 81, 39, 0,243,107,214,172,105,214,188,121,115,220,184,113, 3, 61,122,244, 80,107,181,218, 96, 0,232,208, +161,131,199,158, 61,123,196,129,129,129,176,181,181, 21,126,248,240, 97, 27, 33,164,196,129,239, 98,177,184, 89,157, 58,117, 24, +181, 90,253,137,184, 90,186,116, 41,250,245,235, 7, 15, 15, 15,240, 60,143,204,204, 76, 52,111,222, 92,184,118,237,218,102, 6, + 10,172, 9,158,158,158, 43,144, 51,139,176, 96, 89,248, 10,192,143,185,214,237,216,142, 61, 6,189,108,220,170,123,237,138, 85, +124, 29, 75, 35,180,183,183,159,206, 48, 76,111,158,231,217,244,244,244, 8, 13, 33, 85,188, 43, 86,180,111,216,181, 43,210,132, + 66,118,205,229,203, 76, 92,102,166, 2,128, 65, 93,141, 74, 93, 38, 42,184,229, 12,229,235,209,183, 43, 30, 63,126,140,158,253, +186, 65, 36, 18, 65, 32, 16,230,124,155,162, 28, 11,150,133,141,169, 97,154, 77,167,251, 36,175, 82, 74, 97,102,102,150,223,147, +145,119, 76,167,211,149, 88,249, 1,112, 63,176, 96,182,157,204,204, 28,156, 78, 7,159,174, 61,243,243,244,253, 45,191,203,192, +243,178,212, 15,161, 24,119,240,164, 16, 70, 24, 81,140, 21,171, 36, 45, 82, 80, 32,125,133,103,157,154, 54,109,218, 12, 0,116, +218,180,105, 51,242,246,151, 44, 89,162, 4, 16,245, 85, 4,214,151,138,171,188,110,132,146,208,162, 69,139,113,166,166,166,107, + 1,160,118,237,218,136,184, 23,133,136,123, 81,240,170,234,211,176,166, 95,237,180,126,253,250,193,218,218, 26, 83,166, 76,161, + 0,182,150,245,249, 33,111, 94, 42, 0, 80, 39, 39,167, 41, 0,224,228,228,228,247,224,193, 3,219,135, 15, 31,162, 78,157,191, +102, 20,106,181, 90, 52,106,212,168,164,138, 48, 3, 57, 99,169, 38,126, 61, 85,206, 67,171,213, 34, 59, 91, 9,141, 70, 11,189, +142,135, 94,175, 71, 45, 31, 83,236,218, 52, 45,231,152, 62,207, 90,150, 99, 37,115,113, 48, 69,173,106, 14, 58,134, 33,202,135, +207, 98,204,138,226,213,104, 52,120,254,225, 3,158,133,133, 1, 0, 58, 47, 89, 86, 98, 56,118, 93,190, 1,111,111,239,210, 66, +235,230,226,228,128,232,139,207,115, 10,109,101, 4, 30,222, 58, 0, 83, 83, 5, 0,192,167,105,127,136, 68, 57, 2, 43, 75,169, +133, 77,213,114, 32,148, 22, 59,189, 95,110,229,120, 94, 32,146, 86,160, 28, 15, 74,121, 80,158, 3,165, 60, 36,166,214, 38, 99, + 71, 13, 1,207,115,168, 91,183, 46, 8,203,130,211,169,209,171, 83,107,164,164,101,192,218,194,204,160,184, 21,137, 68,104,218, +180,169,172,184,243,111,223,190, 85, 22, 20,100, 37,167,145, 14, 89, 89, 74,168,213,106,104, 53,122,104,117,122,240,149, 69, 88, + 56,235, 91,232,181,122,100,247,245,207, 57,246, 67, 55,104, 53, 58,132,155, 48,140,159,183,173,142, 1, 81, 62, 9,140, 55, 43, + 77, 96,229,137,130,226, 80,212,152,191, 98, 68,214,179,193,131, 7,215,170,238,231,247,184,119, 43,191, 95, 95, 4,188,140,126, + 17,240,242,147,235, 42,120,248,133,126,191,116,223,100,161, 72, 86,203, 80,113, 5,124,220, 93,248,133,152,145,145,145, 81, 93, +161, 80,224,205,155, 55, 96, 89, 22,132,144,183,148,210,234, 0, 48,114,228,200,119, 2,129,192,149,101, 89,172, 95,191,158, 8, + 4,130,106,254,254,254, 51, 0, 28, 40,161, 33,231,101,106,106,250,145,245, 74, 36, 18, 97,218,180,105, 24, 48, 96, 64,190,184, + 18,137, 68,216,177, 99, 7,106,215,174, 13,141, 70,227,101,160, 8,126, 8,160,177, 1, 22, 62,146, 43,202, 75, 21,161,122,189, +126,112, 82,239,222, 85,112,253, 58, 26,186,186,122,215,170, 85, 11, 90,237, 95, 6,204,202,149, 43,151,203,200,200,136, 37,132, +252, 9,224,119, 74,233,211, 18,249, 84, 20, 31,222, 69,230, 53, 86, 81,183,110,221,124,139, 85, 65,235,149, 72, 36,130, 76,164, + 40,179,192,162,148, 34, 43, 43,139, 57,119,238,156,141,151,151, 23, 1, 0,111,111,111,114,239,222, 61, 43,153, 76,150,232,228, +228, 84,106,195, 87,102,102,142, 29,131,251, 0, 0,230,180,106,151,223, 32, 58, 55,127, 6,132, 66, 33, 90, 78,153,241, 73,190, +231,121,158,133, 17, 70,113,101,128, 22,249, 90,226,170,176, 5,107,201,146, 37, 47,151, 44, 89,242,137, 53,236,171, 89,176, 12, + 49,249, 27,218, 10, 42,140,149, 43, 87,162, 90,181,106, 37, 86, 64,107,215,174,197,238,221,187, 87, 82, 74, 67,202,250,252,142, + 45,107,250, 96,213,209,151,174, 30, 62, 4, 0, 22,252,208,137,201,202,202,194,237,219,183, 97,110,110,142,183,111,223, 26,154, +192,166,230,230,230,243, 25,134,233,197, 22, 30,217, 95,180,176,228,120,158, 63,152,150,150, 86,172,155, 6, 74, 1,173, 78,143, +172,108, 21, 52, 26, 13,126,248,105, 93,169,225, 88, 2, 16,173, 38, 67,208,180,137,191,172, 56, 11, 78, 93,223,166, 24, 51, 64, +254, 73,165,205,230,184, 2, 67,141,186, 57,107, 75, 63,185, 31, 0, 74, 1,142, 3,108,236,172,176,117,223,175, 37, 70,129,158, +227,115, 91,195, 28, 50,213, 28,188,234,119, 68,228,171,235,249, 22, 35,177, 40,167,107, 88, 36, 20,130,167, 36,199,123, 67,113, + 2, 72, 44,171,144, 18, 19,226,190,233,212, 11,140,232, 88, 13,135, 46, 61, 71,207, 86,213,113,245,126, 32,154,215,243,198,203, +224, 48,248,184, 87,196,250,109, 7, 65, 41, 50,254, 88,245,115,236, 95, 21,153,254,131, 33, 22,172,123,247,238, 41, 11, 91,173, + 10,254,210,210,235,193,156,174,192, 92, 11,150, 82,165,198,148,233, 6,185,227,201, 73,163,198,245,101,134, 92, 92,146,133,202, + 16, 1, 86,216,146,133, 82,220,172, 84, 6, 80, 27,152,250,127, 89, 96,114, 28,135,211,167, 79,231,167, 71, 81,233, 88, 48,237, + 12, 16, 55,248,240,225, 3, 2, 2, 2,224,239,239,143,180,180, 52, 8, 25, 6,147, 95,188,128,247,192,129,208,136, 68,224,121, + 30, 98,177, 24, 35, 71,142, 52, 56, 62,203, 88, 42,231,142, 99,227,104, 41,101,201,175, 29, 59,118,172,242, 38, 43, 11, 47,131, +130,208,106,222, 60, 0,192,233,211,167, 63,202, 19,147, 38, 77, 18, 7, 6, 6, 14,123,244,232,209, 48, 66,200, 74, 74,233,228, +226, 56,181, 84,149, 63, 6,171,119,255, 30,168,226, 85, 25,187,183,237,205, 63, 63,233,167, 9, 16, 10, 69, 16, 10,133,176,176, +176, 48,232,109, 10,150,221,217,217,217,204,161, 67,135, 92,154, 53,107, 38, 26, 49, 98, 4, 1,128, 77,155, 54, 49, 91,182,108, +145, 95,184,112, 65,100,110,110, 30, 83,170,168,212,106, 63, 73, 99, 66, 8,132, 66, 33, 68, 98, 17,192,243, 32,132,200,151, 47, + 95,190,224,229,203,151,117, 60, 61, 61,161, 86,171, 7, 18, 66,158, 24,253, 96, 25, 81,154, 22, 41,106, 44, 85,174, 21,170, 56, + 36, 20, 28,151, 85,156, 64, 43, 56, 38, 11,192, 87,153,108, 33, 40, 77, 84,177, 44, 91,170,117,138, 97,152, 82,187, 8, 39, 77, +154, 4, 83, 83,211,226, 42, 30,250,226,197,139,192,152,152,152, 77,148,210,117,159,243, 34,167, 46, 63,121, 57,127, 98,183, 12, +228,246,157, 90, 88, 88, 36,182,104,209, 34, 19,128,246,192,129,143, 27,196,106,181,186,216,138,219,220,220,124,254,150, 45, 91, +198,119,237,218,149, 41,236, 42,160, 96, 55, 94,222,166,211,233,112,224,192,129,241, 83,167, 78, 69,113, 86,175,188,202, 59, 59, + 75, 9,101,238, 0,231,119, 1,135, 12, 45,204,139, 61,165,176,116,130,139, 43, 87,108, 37,194,136,114,198, 8, 57, 84,240,203, + 63,102,106, 42, 5, 87, 2, 39, 33, 76, 72, 88,120,180,115, 57, 7, 43,188,139, 72,128,125,197,106, 72,137,250, 43, 30, 4, 2, + 22,194,220, 46, 66, 11, 51, 57, 18,226,227,193, 48,108,137,130,248,231, 61, 79,112, 63, 32, 12,135, 47, 61,133, 86,149,133, 85, + 59,207, 65,171,206,132, 86,149, 5,173, 42,231,119,241,212,239, 64, 8, 98,181,170, 76,143, 50,101, 96,129, 0,245,234,213, 43, + 86,224, 68, 69, 69, 25,104,193,162,249, 22, 44,165,170,140,105,100, 88, 75,169, 68, 11, 85,222,249,207, 21, 4,121,174, 27,100, + 50, 89,237, 29, 59,138,119,199, 80, 20, 28, 29, 29,207, 42, 20,138, 74,134, 94, 95, 6,167,163,139, 45, 44, 44,230,123,122,122, +122,173, 90,181, 74,200,178, 44, 90,182,108,233,241,221,119,223,125, 0,128,106,213,170, 57,229,149, 49,223,127,255, 61,189,119, +239, 94, 64, 78,219,162,120,136,197,226, 32,115,115,243,218, 45, 90,180, 64, 90, 90, 26, 34, 34, 34, 32,151,203,225,253,235,175, +120,241,253,247,240,219,176, 1, 76,139, 22, 32,132, 64, 44, 22,227,197,139, 23,144,201,100, 65, 37, 20,230,245, 0, 44, 3,208, + 16,127,117, 11, 82, 0,183, 1,252, 68, 41,189, 95, 68,121,199, 0, 0,199,243,165, 37,214,183, 83,166, 76, 65,170, 80, 8,116, +232, 0, 81, 72, 8,180, 90, 45,252,253,253, 81,187,118,142, 39, 14,127,127,127, 8, 4, 2, 84,175, 94, 29, 78, 78, 78, 88,191, +126,253,183,248,120,102,245,199,101, 87,166, 14, 31,222, 69,194,223,223, 63,223, 82,213,161, 67,135,124, 11,150, 80, 40,204,183, +100, 17,142, 53,168, 50, 43, 40,176,116, 58, 29, 17,137, 68,130, 81,163, 70,145,225,195,135, 83,157, 78,199,139, 68, 34,102,243, +230,205,228,222,189,123, 2,165, 82, 89,106, 3,220,183, 91, 47,204,105,157, 99, 4,253,185,146, 45,132, 34, 33,196, 34, 17,166, + 4, 69,230,167,139,217,142,125,226,165, 75,151,246,244,244,244,204,233,110, 7, 4, 70, 63, 88, 70,148, 98,224, 73, 40, 36,142, + 52, 5,246, 19, 0,144,220,253,132, 2, 66, 42, 1, 57, 51, 2,235, 20,186, 54,239,188,166,208,111,222,249,103, 95,227,125, 74, +106, 1, 7,223,189,123,215,189, 86,173, 90, 8, 15, 15,255,100,102, 91, 94,133, 37,151,203, 33,147,201,112,231,206, 29, 0, 8, + 46,142,236,202,149, 43,191, 33,199, 75, 50, 0,192,201,201,201,191,121,239,102,119,234,182,171,131, 61, 75,246,166,197,196,196, + 84,207,243,129, 67, 8, 33, 78, 78, 78, 3,132, 98, 65, 31, 87,223,242, 77,193,243,203, 46,157,184, 53,175,164, 23,113,245,240, +201, 4,160, 44, 48,139,112,197,231, 68, 8,195, 48,189,186,118,237,202, 4, 6, 6,162, 79,159, 62,216,189,123,119,177,215, 14, + 24, 48, 0,251,246,237, 67,215,174, 93,153,233,211,167,247, 42, 77, 96,229, 88, 71, 52, 95, 45, 51,190, 9,126,134, 93,123, 55, + 23, 59,198,200,206,206, 22, 0, 16, 31,159,144,127,172,118,237,146, 29, 49,243,122,205,197, 39,143, 30,248, 55,104,210, 82, 20, + 17,151, 10, 94,175,134, 42, 35,241,175, 22,110,106, 28,168, 94, 5,145,137, 21, 28,108,204,241,248,238, 5,141, 86,163,186, 88, + 18,231,248,174, 62,248,190,147, 23, 64,121,116,155,188, 21,167,214,141,203,239,222,105,212, 99, 2, 46, 31, 88, 99,240, 24,190, +194, 16, 10,133,120,241,226,133,178, 56,235, 21,203,178,165,250,212,250,203,202,168, 67,118,182, 18,217, 74,213, 87, 75, 35, 66, +136,173,189,189,253, 31, 86, 86, 86,210,162, 4, 20, 33,196,214,214,214,246, 15,107,107,107,169,161, 93,132,197,137,171, 92,191, + 88,143, 6, 15, 30, 92, 38,145, 37,145, 72, 42, 5, 7, 7,231, 59, 25, 45,233, 87,163,209,160,121,243,230, 2, 3, 11,203,147, +132,144,247,142,142,142,183,189,189,189,205,223,189,123,135,189,123,247,138,132, 66, 97,249,188,242, 35, 35, 35, 3, 44,203, 34, + 62, 62, 94, 7, 96,104,105, 93,100,106,181,250,250,245,235,215,107,116,234,212,137, 13, 10, 10, 2,203,178, 57,225,242,247,135, +223,134, 13, 8,152, 56, 17, 77,195,194,160,210,106, 33,149, 74,113,254,252,121,109,118,118,246,245,226,248,100, 50,217,166,208, +208, 80, 31,169, 84, 10,173, 86, 11,158,231,193, 48, 12, 17, 8, 4,141, 44, 44, 44,214, 2,168,243,241, 55,101,103, 55,114,210, + 47, 85, 57,189,158,139, 9,127,151, 80, 90, 28, 36, 37, 37,225,228,201,147,168, 95,191, 62,154, 54,109,138,168,168, 40,132,132, +132,160, 67,135, 14,249,215, 60,123,246, 12, 79,158, 60,129,155,155, 91,233, 22, 60, 86, 7, 55,207, 74, 16, 9, 69, 16,138,132, + 57,191, 66, 97,238,150,243, 63,239, 88,158,207,194,178, 88,176, 0, 64,161, 80,228,229, 11,190, 82,165, 74, 49, 49, 49, 49,142, + 0,216, 60, 7,172,134, 52, 86,242,234,136, 60,113, 37, 18,139,242, 45, 89, 0,144,154,154,170,234,218,181,235,159,106,181,122, + 8, 62, 99, 69, 17, 35,254,147,120,248,127,116,239,223, 34,176,218, 55,104,208, 96, 67,191,126,253, 90,174, 94,189, 26, 10,133, + 2, 49, 49, 49,249, 21,161, 88, 44, 70,185,114,229,144,156,156,140,141, 27, 55, 34, 50, 50,242, 10,128,145,134, 62, 56, 38, 38, +230,222,219,167,193, 73,205,123, 54,176,246,105, 80,213, 34, 34, 56,178, 62,128, 59,185,226,106,107,191, 73,237,135, 52,239, 94, + 23, 34,177, 16, 17,111, 99,255,191, 69, 8,203,178, 44, 33, 4,125,250,244, 49,232,250,190,125,251,226,250,245,235, 40,169, 59, +145,207,179, 96,101,171,144,165,252,122,141,179, 49,227, 7, 96,204,248, 1,249, 34,194,144, 46,150, 28,113,187,191, 4,129,165, + 93,125,106,255,198, 17, 53,235,250, 87,168,237, 83, 9,247, 31, 61,197,158, 13,127, 25, 21,182,253,182, 0,191,108,187,130,114, +246,150,208,170,179,112,246,208,230, 88,173, 58,123,245,103, 26,225,114, 68, 45, 33, 48,208,191,228, 71, 86,211, 60,129,229,235, +235, 91,172, 5, 43, 57, 57, 89, 89, 90,133,144,159, 70, 26, 29, 50,179,148, 80,102,127, 29,129, 69, 8,241,107,212,168,209,197, +131, 7, 15, 90,219,217,217, 33, 58, 58,250, 35,129, 69, 8,241,107,216,176,225,197,131, 7, 15, 90,219,219,219, 35, 34, 34,194, + 96,247, 32, 69,136, 43, 36, 36, 36,144,148,148, 20,222,210,210,178, 76, 34,139, 97, 24,168,213,106,188,122,245,202,208,199, 26, + 60,227,203,220,220,124,199,190,125,251,204, 19, 19, 19,193,178, 44, 94,189,122,245,209, 44,194,188,109,235,214,173,162,110,221, +186,109, 1, 80,163, 36, 62,189, 94,191,114,192,128, 1,195,162,162,162, 44,237,236,236, 16, 19, 19, 3,177, 88, 12, 74, 41, 72, +243,230,104,252,254, 61,180, 28, 7,153, 76,134, 55,111,222, 96,211,166, 77, 89,106,181,122,101, 49,233, 35, 54, 49, 49,113, 23, +137, 68,232,223,191,255, 71,231,118,238,220,137,206,181,217,218, 35, 90, 75, 50,245,144,170,227,100,223,156,101, 89,150,140,156, +178,204,163, 94,147, 14,190,175, 3,238,191, 75,136,139,188, 93,202,235,235, 52, 26, 13, 60, 61, 61,241,240,225, 67, 92,186,116, + 9, 45, 90,180, 64,211,166, 77,241,252,249,115, 92,184,112, 1, 79,158, 60, 1, 33, 4,214,214,214,121,195, 44, 74, 28,107,161, +201,210, 35, 62, 42,233, 19,107, 85,225,125,145, 72, 4,181, 88,107, 80, 26, 5, 5, 5,225,225,195,156,250, 39, 59, 59, 27, 2, +129, 64, 63,101,202, 20, 48, 12, 67, 3, 2, 2, 96,103,103, 71,127,250,233, 39, 78, 32, 16,232,195,195,195, 13,205,251, 57,214, +170, 92,113, 37, 16, 9, 63, 18,102, 60,207,103, 60,123,246,108, 4, 33,228, 57, 33, 36,207, 27,170,209, 15,150, 17,255, 42, 8, + 74,104,133,188, 7,208,138, 16,242,237,177, 99,199, 86,174, 93,187,214,182, 99,199,142, 72, 73, 73, 65,133, 10, 21,224,232,232, +136, 83,167, 78,225,204,153, 51,137, 28,199, 77,166,148,238, 46,226, 35,107, 85,156,175, 12, 74, 41,117,114,114, 58,168,206,204, +252,190, 86, 83, 47, 92, 57,112,115,137,163,163,227, 72,103,103,231, 31, 6,207,232, 50,164, 89,215, 58,120,243, 36, 20,247, 46, +188, 64, 92,120, 34, 6, 55,254,169, 68,206,194,131,220, 45, 44, 44,134,153,152,152,136, 1,104,139,104, 5,127, 52,139,176, 32, + 39,199,113,156, 70,163,193,254,253,251, 13, 18, 89,123,247,238,133, 74,165, 2, 87,168, 31,181, 32, 39,229, 41, 17, 8, 37,112, + 42,231, 9,173, 54, 11, 60,255,121,214,154,130,156,132, 16, 48, 12,131,119, 98, 49,236, 18, 19,113,255,254,125,131, 56, 10,182, +156,139,138, 79, 74,169,138, 16,210,127,205,162, 41,167,198, 78, 91,102,209,162, 65, 13,204,249,117, 39,180,218,109, 96, 88, 6, + 50,137, 8,181,234, 54, 4, 11, 53,254, 88,250, 99,106,118,122, 74,255,194, 75,230,124,194, 89, 82, 79, 10, 5, 56,158,199,165, + 27, 15, 12,126,247,252, 90,158,227, 32, 16, 8,240,246,237, 91,101, 81,179, 7, 89, 54,167, 59,147, 97,152, 34, 91,221, 31,167, + 17, 79,132, 34, 41,202, 85,240,134, 70,157,249, 85,210,200,206,206,238,199,163, 71,143, 90,231,185, 60,120,254,252, 57, 8, 33, +175, 10, 88, 67,126, 60,122,244,168,181, 82,169, 68, 64, 64, 64,222,146, 80,175,202,242, 29,229, 89,174, 18, 18, 18, 72, 76, 76, + 12, 76, 76, 76,152,231,207,159,171,171, 87,175,254, 8, 37,175,212,144,207,169, 82,169,194,138, 27, 31,169, 82,169,156,165, 82, +169,176,208,189, 78,238,238,238,111, 10,119, 21, 22, 21,206,180,180,180,251, 83,167, 78,173,213,174, 93, 59,252,248,227,143,201, +150,150,150,166,127,252,241,135,128,101, 89, 50,118,236, 88, 46, 62, 62, 62,115,243,230,205,230,199,142, 29, 67,106,106,234,157, +210,222,157, 82,154, 65, 8, 25,209,160, 65,131,157,231,206,157, 51,113,119,119, 71,122,122, 58, 40,165,216,177, 99, 7,198,142, + 29, 11,169, 84,138, 55,111,222,160,115,231,206,217,217,217,217, 35, 10,143,141, 44,192, 73, 8, 33,148,231,121,204,158, 61, 59, +223,169,104,158,147, 81, 83, 25,193,166, 73,149,229, 19, 54,167,201,191,157,179,121, 32, 0,112,122, 61,247, 58,224,254,187, 29, +235,230, 92, 21,137, 68, 55, 74, 73,163,153, 19, 38, 76,248,163, 67,135, 14, 50,133, 66,129,228,228,100,220,190,125, 27,119,239, +222,197,189,123,247,160,209,104, 96,109,109, 13, 75, 75, 75,196,196,196, 32, 40, 40, 72, 9, 96,102, 73,156, 98,185, 16,174, 85, +243,102,242,254,101,189,202,223, 23, 9, 33, 20,252, 53,147,208,144,188,212,164, 73, 19,212,171, 87, 47, 79,248,112, 31, 62,124, +136, 81,171,213,164,128,216,143,202, 19,226,229,203,151,215,111,221,186,149,150,196,121,111,211,122,156, 91, 56, 19, 98,145, 8, +147, 95, 69,228,139,173,157, 45,106, 66, 40, 22,193,171, 83,143,130,245,192,239,132,144,109,185,255,213,134,228,249, 47,104,240, + 24, 57,255,225,156,255, 25,129, 85,224, 3,216, 67, 8, 57,251,221,119,223, 45,245,243,243,251,110,213,170, 85, 68, 36, 18, 97, +222,188,121, 52, 58, 58,122,123,110,171, 35,229,115, 30, 78, 41,221,126,237,200,157,209,131,166,117, 37,147, 86, 15,110,244,232, +114, 64, 80,181, 6,238,168,214,192, 29,143,174, 4, 98,221,140,189,187, 57, 29, 55, 59, 38, 38,166,180,102,147,186, 85,195,170, +133, 7,185, 91, 95,191,122,217,186,172,179, 8,121,158, 63,184,119,239,222,241,221,187,119,103, 30, 60,120,240,201,152,171, 60, +103,124, 60,207,227,226,197,139,208,106,181,216,190,125, 59,207,243,124,241,126,176, 64,143,175, 89,189,116,208,246, 93,199,197, + 98, 17,193,221, 27,135,145,150, 82,178, 85, 78, 36, 18, 98,235,142, 35, 90,145, 72,248,186,168,243, 90,173, 54,226,242,229,203, +246,109, 57, 78,200, 48,204, 39,194,169, 56, 28, 60,120, 80,199,243,252,135, 82,210,229, 14, 33,194, 78, 63,255, 56,116,111,135, +222,223,217, 55,104,208, 72,104, 99,103, 15, 66, 8,226,227,226,241, 38,224,129,238,236,225, 45,113, 89,217, 25, 6, 45,149, 51, +116,197,181,252, 49, 87, 0,208,113,236,218,252,241, 87, 0,208,105,240, 84, 52,175,239, 3, 98,136,169,233, 47,113,197,235,245, +122,200,229,114,232,245,250, 34, 93, 53,152,155,155,203, 84, 42,149,146, 82, 10,142,227, 74, 52, 13, 81,224,171,167, 17,199,113, + 94, 41, 41, 41,200,202,202,194,221,187,119,233,162, 69,139, 18, 18, 18, 18,242, 7, 99,234,116, 58,175,228,228,100,100,102,102, +226,206,157, 59,116,233,210,165, 9, 73, 73, 73, 51,202,242, 13,201,100,178,218, 2,129,224, 81, 74, 74, 10,111, 98, 98,194,232, +116, 58, 93,245,234,213, 37, 50,153,204,224,133,206,163,163,163,219, 21,119,206,205,205, 45, 56, 56, 56,184, 10,199,113, 5,215, + 40, 20,169, 84, 42,247, 6, 13, 26, 24,210,181, 51, 97,219,182,109, 56,114,228, 72,221,244,244,244, 1, 31, 62,124,216, 9,160, +174, 64, 32,192,211,167, 79, 95,169, 84,170,126,221,187,119,223,145,146,146,114, 31,192, 4, 3,203,141,115,132,144,254, 94, 94, + 94,219,230,207,159,175,104,218,180,169,192,201,201, 9,117,234,212,193,155, 55,111,112,250,244,105,221,239,191,255,158,149,157, +157, 61,148, 82,122,177,228,100, 7,209,235,245, 16,139,197,249,155, 68, 34,129, 72, 36, 66,134,146, 98,248,175, 33, 74, 61,100, +202,149,243, 70,156,166, 0,137,141, 8, 73,140,143,141,184, 79, 8,185, 17, 29, 29,157, 86, 76,156,137, 85, 42, 85, 13, 71, 71, + 71, 1, 33,100,181, 86,171, 29, 50,110,220, 56,135,197,139, 23,163,106,213,170, 72, 76, 76,132, 92, 46,135,187,187, 59, 18, 18, + 18,240,224,193, 3, 46, 59, 59,123, 3,128, 5,148,210, 18,187, 29, 83, 19,210,225, 98, 95,254, 35, 75, 39,165, 20, 84, 15,232, + 56, 14,156,150, 66, 67,116, 16, 10,117, 16,137, 68,134, 84,146,148,231,121,164, 56, 58, 34,234,252,121,228,174, 42, 81,172, 21, +237,212,169, 83, 6, 36, 16, 15,177, 68,252, 81,183, 32, 33, 4, 34,177, 24, 66,177,232,147, 25, 49, 70,171,149, 17,255, 89,129, +149,251, 1,164, 2, 24, 73, 8,217,217,172, 89,179, 83,148, 82, 33,128, 14,148,210,155, 95,242,240,152,152,152,199, 78, 78, 78, +211,237, 93, 44,151,126, 51,160, 17,170,214,168, 0, 78,207,225,246,153,167,216,190,248,216,190,168,136,168,193,134,172, 77,198, +243,252,213,134,181,171, 50, 40,224, 91,219,201,201,137,255,156, 89,132,105,105,105,115, 39, 79,158,140, 31,127,252,177,204,179, + 8,139,187,230,249,171,248,145,126, 94,182, 46,157,190,105,220, 22,132,161, 26,141,186,132, 2, 15,249, 30, 71, 69, 34,225,235, + 7,207,162,171, 23,117, 93, 66, 66, 66,219, 33, 67,134, 92, 20, 8, 4,149,202, 18,231, 60,207,127,136,139,139,107, 89,122,154, +235,110, 19, 66,220, 79,238,219, 56,241,220,145,109,109,121,158,115, 35, 0, 88,129,232,157, 78,171, 61,175, 86,166,175, 50,116, +177,231,229, 35,253, 49, 97,205, 5,172,255,177, 19,198, 45, 61,128, 45,179,135, 99,250,175,123,177,236,199, 9, 88,180,246, 79, +204,153,208, 31, 61,191, 29,194, 83,194,220, 50,244, 61, 88,150, 61,183,113,227,198, 65,195,135, 15,207,159,140, 64, 41,253,168, + 64,215,233,116, 74,158,231,177, 97,195, 6, 30,192,185,146,248, 62, 78, 35, 66, 75, 26, 15,101,104, 26,165,167,167, 15,245,247, +247,223, 1, 64, 66, 41,125,155,146,146, 50,138, 82,154,191,132, 83,102,102,230,208, 6, 13, 26,236,160,148, 74, 8, 33,159,156, + 55, 4,185, 46, 27,106, 91, 90, 90, 62,202,181, 92, 73, 62,103,160,123, 73, 81, 93, 66,247, 33,103, 64,217,193,163,192,242, 55, +132,144,197,117,235,214, 45,184,216,243, 43, 0,181,203, 26, 40, 74,233, 69, 66,136,207,236,217,179, 39, 74,165,210,230,217,217, +217, 30, 0, 32,151,203,223,168,213,234,171, 74,165,114, 85,110,185, 85, 18,135,198,196,196,228,141, 94,175,247,181,181,181,205, +153, 33,155, 43,178, 0,224,196, 35,238, 17,165,250, 50,175, 26,127,230,204,153,138,150,150,150,109, 8, 33, 61, 41,165,158, 25, + 25, 25,234, 89,179,102,221, 61,114,228, 72,106,133, 10, 21,190,233,208,161, 3,177,178,178,194,195,135, 15,105, 82, 82,210, 97, + 0, 51, 12,153, 57,205,243,252,135,229,203,203,182,182, 96,105,141, 41,173, 86, 27,123,230,204, 25,155,118,241,241, 2, 43,158, +255,104,134, 99, 81, 19, 46, 94,191,126, 13,181, 90, 93,162, 19, 70,117, 90, 10, 90, 76,156, 10,228,206,230,204, 67,142,229,138, +130,106,140,122,202,136,255, 6,200,223, 50,141,185,140, 38, 68, 39, 39,167, 62, 82,185,100, 76, 5, 15,199,234,209, 33,241,129, + 25,105,217,187, 99, 98, 98, 54, 82, 74,185,207,229, 44,139,163, 81,163,153,247,239,227,252,203, 15, 22, 7, 74, 57, 80,158,130, + 82, 30, 60,207,229, 44, 68, 77,121, 80,142, 35,132,224,150, 58, 59,109,184,161,225, 36,132, 88,218,216,216, 44,160,148,182, 99, + 89,150, 41,104,252, 42,248, 63,215,114,117, 46, 33, 33, 97, 78, 97, 75,235,255, 98,124, 30, 58,116,168, 72,209,111,232, 44,194, +158, 61,123,114,101,252, 54,175,202,229,242, 34, 29,106,102,101,101,133, 71, 71, 71,183,249, 39,196,103,158,245,147, 26, 80,160, + 21,234,106, 47,243, 44,194,210, 56, 43, 86,172, 40,209,106,181, 53, 1,120, 0,176, 0,144,172,211,233,206, 37, 36, 36,196, 17, + 66,106, 3,152,157,123,219, 66, 74,233,163,255,203,239,157, 16, 34,179,177,177,217,198, 48,140,139, 33,247,235,245,122, 77,114, +114,242,160,130, 13,129,130,156, 54, 54, 54,143, 4, 2,129,139, 1, 60,145,137,137,137,181,141,229,167,145,243, 63,111,193,250, +187, 17, 29, 29,189, 31,192,254,175,201, 89,156,167,118, 35,254,255, 34, 43, 57,230,111, 73,135, 92,177, 52,246,191, 22,159,121, + 2,169,136,227,143, 1,144,191,225,219,108,254,191, 16, 47,244, 51, 91,138,185, 2,170,241,215, 12, 75, 88, 88,152, 26,192,157, +220,173,240,243, 30, 1,232,244, 15,138, 55, 37,128, 62, 95,139,175, 36,209,100,132, 17,255, 53, 48,198, 40, 48,194, 8, 35,140, + 48,194, 8, 35,140,248,186, 32, 0, 90, 21,211,178, 49,216,244, 71, 8,105,245, 25, 45,167, 75, 70, 78, 35,167,145,211,200,105, +228, 52,114, 26, 57,255, 91,156,255, 25,228, 57,124,252, 59, 54, 0,173,140,156, 70, 78, 35,167,145,211,200,105,228, 52,114, 26, + 57,255,107,155,177,139,208, 8, 35,140, 48,194, 8, 35,140, 48,226, 43,195, 96,129,165,112,240,242,178,173,232,183,195,170, 92, +245,231, 86,229,170, 63,183,173,232,183, 67,225,224,229,245, 95,140, 52, 66,136,140, 16,242,173, 80, 40,188,232,232,232,152, 78, + 8,153,248, 47,125, 79, 51, 66, 72, 79, 66,200, 2, 66, 72, 55, 66,136,201,215,228,111, 70,136,160, 47, 33, 99, 6, 17, 18, 62, +136,144,240,190,132,140,105, 70,200,191,110,217,140,249, 19,156,252,111,158,235,127,118,254, 4, 39,255, 34,207, 79,113,178,190, +127,177,247,154, 37, 99,157,173,190, 82,186,153,218,219,219,111,114,112,112, 8,179,183,183,255, 96,111,111,191,141, 16, 98,110, + 44,238,140, 48,194, 8, 35,254,255, 65,144, 91, 32, 55, 5,112, 13, 64, 51, 74,233,245,194, 23, 89, 85,168, 54,220,203,179,234, +143, 63,207,155, 73,108,109, 44,101, 58, 29,167,141,136,140,241,158,251,243,146, 67, 86, 21,170,173, 76,254,240, 98,203,103, 84, + 2,132,101,217, 62, 18,137,164, 35,128, 60,161,246, 74,173, 86,159,226, 56,110,191,161,179,130, 28, 28, 28,110,176, 44, 91,177, + 44,207,230, 56, 46, 60, 54, 54,182,209,103, 86, 94,189,202,151, 47,191,173,105,211,166, 38,117,235,214,133, 88, 44,198,236,217, +179, 39, 3, 88,101, 40,135,149,149,155,169, 86, 34,253, 65, 32, 22,183,166, 58,141, 47, 5, 5, 24, 73, 0,175, 87, 95, 22,169, +213, 43,147,147,223,101, 24, 24,150, 25, 0, 6, 35,103, 90,249, 22, 74,233,242, 47,201, 12,131,107, 18,157,142,203,201, 19, 34, + 1, 56,115,115,243,107, 51,103,206, 20,116,236,216, 17, 91,182,108,105,180,105,211,166, 17,132,144,203, 0, 78, 80, 74,223,125, +105,230,179, 7, 70, 54,104,212,104,205,160,201,147, 89,229,141, 27, 88,179,109,219,106,164,167, 3,192,250,178,230, 37,145, 8, + 61,109,108,132, 29, 41, 69, 77, 2, 16, 2, 60, 77, 72,226,207,104,181,220,126, 90,214,117,120, 62,230,254, 22, 31, 79,171,223, + 83, 86,142,180,119,116,150,164,147, 87,227,180,119, 87,103, 1,248,166,240,121,189, 74, 58,136,178,229, 58, 42,233,147, 8, 0, +191,126,161,184, 50,177,181,181,125,126,252,248,113,151,186,117,235, 10, 0,224,209,163, 71, 3, 59,118,236,216,130, 16,226, 75, + 41, 77,255, 63, 18,235, 82, 1,195,140, 17, 11,133,173, 57,142,171, 6, 0, 44,203,190,208,232,116, 23,245, 60,191,222, 80,159, +106, 70, 24, 97,196,191,218,120, 81,162, 22,249,159, 20, 88, 0,174, 81, 74, 9, 33,132,162,208, 84,111,133,189,167,183,143,143, +215,228,115, 71,119,150, 75, 75, 78, 85,253,246,235,174, 39,153,172, 40,203,195,203, 93,252,219,170,229, 22, 99, 38, 76,250, 65, + 97,239,121, 63, 51, 46, 40,176, 12,145, 88, 94, 38,147, 29, 89,177, 98,133,111,243,230,205,133,118,118,118,136,139,139,195,171, + 87,175,124,175, 92,185,210,117,231,206,157,147, 9, 33,221, 41,165,134, 44,124,229,126,121,215, 54, 59,185,149, 53, 56,157, 14, + 78,213,107,230, 59,200,123,123,229, 2,244, 90, 45,120,157, 14, 94, 29,187, 2, 0,120,158,135,183,183, 55,251,153,137,239,228, +227,227,179,123,241,226,197, 34,181, 90,141,251,247,239,227,234,213,171,124, 76, 76,204, 82, 67, 57, 20,246, 30,205, 25,153,124, +127,159,254,223,153,119,233, 88, 89, 88,222,222, 22,128, 9, 94,135,234, 27,156,189,112,165,206,209,253,219,191, 87,216,123,244, +201,140,123,115,181,100,145,102, 85,159, 16,178, 40,207,163, 51, 33,100, 89,165, 74,149,230, 20,188,166,240,186,118,148, 82, 8, + 4,130,184,140,140,140, 62,137,137,137, 79, 10,115,234, 56, 8,246,236,201,209, 15,179,198,124,203,222,186,117, 75,238,237,237, +173, 6,128,229,203,151, 99,193,130, 5,226,243,231,207,183,223,181,107, 87,123, 66,200,106, 74,233,137, 47,201,124, 34,224,167, + 65,147, 39,179,138,176, 48, 40,158, 61, 67,255,244,116,193, 47,192, 79,101, 17, 88,132,144,202, 14, 14,194, 67,147, 39, 13,241, +114,117,171, 47, 18,137,108,114, 22,215,214, 36,122,132,135, 63,233,185,244,151, 77,211, 8, 33, 61, 40,165,111, 13,228, 19, 0, +152, 15, 64, 10, 96, 22,128,217, 9, 9, 9,238, 28,199,193,193,193, 97, 54, 33,228, 24,128,159,109,109,109,105, 66, 66,194, 84, + 74,169,190, 36,203, 85,250, 59, 58, 43,150,184,182,171, 90,107, 16, 98,201,185,118,147,190,113, 60,107,230, 70,126,158,187, 38, +250, 46, 0,124,227,230,102,234,234, 41,159,170, 48,171,102,149, 30,117,105,234, 55,110,110,155,207,190, 51, 76, 96, 23, 22,153, + 0,224,228,228,180,124,215,174, 93,229,234,213,171,151,159,199,107,212,168,193, 46, 95,190,220,121,226,196,137,171, 1, 12, 49, +144,207,195,214,214,246, 60,199,113,234,164,164, 36,143,188,227,118,126,221, 27, 88,155,202, 91, 38,164,100,220, 72,124,121,236, +186,129, 92,117,165, 34,209,225, 19,187,215, 56,214,168,231,207, 40,108,236,160,138,138, 70,166, 78,219,234,234,237,123,205, 70, +140,249,105, 66,110, 26, 61, 48, 86, 49, 70, 24,241,159, 70,177, 90,228,127, 89, 96, 33,247,133, 62,129, 68, 34,158, 54,119,230, + 84,146,154,148,170, 84,103,100,106,244, 42,149,146, 17,242,170,231,175,222,199, 51, 2, 54,117,210,248,241,166, 83,103,204,156, + 6,160,191,161,226,202,207,207,239,193,145, 35, 71,236,172,172,172,144,150,150,134,164,164, 36, 60,120,240, 0,148, 82,116,239, +222, 93, 82,175, 78,157,154,179,102,207,190, 75, 8,241, 55, 68,100,201,173,108,176,188, 81,206, 26,177,115,194,146,242,158,131, + 77,189, 58,230, 95,179, 32, 50, 13, 0, 32,149, 74,243, 23, 10,254, 12,248,183,108,217, 82, 4, 0,195,134, 13, 75,207,200,200, + 88, 2, 96, 15,165, 52,202, 80,113,101,227,232,116,234,143, 13,203,101,213,220,220,161,213,233,241, 33, 54, 26, 2,161, 5, 92, + 92, 68, 24,210,191,181,176, 73, 3, 43,155, 69, 11, 55,157,150,219,122,116,203, 74,120,115,190, 56, 46, 11, 11,139,157,251,247, +239,199,129, 3, 7, 0, 0,111,222,188,129,187,187,187,188,180, 48, 4, 4, 4,184,118,238,220,121, 31,128, 42,165, 93, 91,216, +145,189, 68, 34, 65,163, 70,141,224,237,237,141,227,199,143, 55, 3,112,226, 75, 51,160,242,198, 13, 40,158, 61, 3,174,151,189, +177, 66, 8,169, 92,171, 86,133,123,103, 78,239,182, 57,125,230, 21,126,253,117, 27,222,189,203, 49,172,185,186,186,226,219,126, +189,132, 47, 94,220,241,233,217,243,219, 59,132,144, 70,148,210, 55, 6,208,206,223,188,121,243,140, 74,149, 42,161,103,207,158, +189,124,124,124, 28,204,204,204,176,113,227, 70, 56, 58, 58,186,106, 52,154,183,199,143, 31,119,138,141,141,197,248,241,227, 1, + 96,114,113, 68,205,218, 54,155, 37,233,228,213,184,106,173, 65, 80,152, 57, 98,243,222,253,120,253,120,103, 99,181,246,213,172, + 37, 99,157, 7, 40,169,100,176,139,187,233,180,138,181,155, 90, 87,241,233,140, 10,181,158,216,168,184,155,239,103,143,113, 93, + 42,144,170,118,206, 93, 17,157,244,201, 59,247, 58,196,250,166, 7, 89, 5, 92, 68, 18,165,115,249, 92, 97,149, 95, 16,113, 20, +157,155, 52,105,146,159,112, 97, 97, 97, 80,171,213,240,242,242, 98, 52, 26, 77,115, 3,227,213,163, 77,155, 54,183,206,156, 57, + 99,237,225,225,241,209,210, 45, 14,214, 22,109,175, 31, 89, 61,126,209,154, 63, 61,237,188,187,165,198, 7, 30,125, 81,154,184, +106, 88,191,214,165,179, 71,118, 43, 72,102, 4,196, 22,137, 0,159,132,144,125, 91, 65, 76,172,208,103,244, 36, 65,243,150, 45, +156, 91,127,211,227, 18, 33,164, 37,165,244,161,177,142, 49,194,136,255,180, 21,139,254, 91,222, 69, 80,192,186, 65,138,122, 49, +158,242,213, 29,236,172,101,171, 87,236,120,200,106, 53, 26, 19, 11, 51,173,185,153, 57,133,169, 25,171,213,105, 51,203,187, 87, + 18,241,148,175, 94, 20,121,225,169,154,132, 16, 34,147,201,142,156, 56,113,194, 78, 40, 20,130,231,121,216,218,218, 34, 52, 52, + 20,169,169,169,200,200,200,192,187, 87,175, 80,169,124, 57,204,155, 54,213,113,252,212,105, 71, 8, 33,181, 11,118, 23, 22, 53, +253,147,211,105, 11, 39, 80,113,139,251,126,244, 91, 18,103, 49, 8, 13, 15, 15,135, 66,161,128,175,175,175,226,246,237,219, 55, +139, 19, 87,133, 57,173,172,220, 76, 5, 10,217,129,223,255,152, 45,211,234, 2, 16, 24,146,140,170,149, 26,195,222,186, 60,162, +147, 53,184,247,224, 4, 2,158,239,129,155,115,121,140, 29,221, 66,186,116,249,161,253,150,150,149,203,167,164,188, 79, 47,138, + 51, 61, 61, 93, 81,185,114,101,148, 47,159,179, 46, 25,199,113, 8, 12, 12, 4,199,113,249,251, 5,127,119, 28,190, 2,125,250, + 7, 12, 26, 56, 16, 73, 73, 73,138,162, 56,133, 44,244,147, 70,124, 43,144, 9, 1,177,220, 74,147,153,153,153,111, 13,212,106, +181,120,250,244, 41,252,253,253,155, 30, 60,120,176, 68, 53,100,104,124,106,129,101,107,182,111, 95,219, 63, 45,141, 1,128, 45, +132,240, 90, 74,151, 25,154,151,236,236,132,135,207,157,221,101,195, 50, 65,176, 50,255, 5, 15, 30,124,128, 86,155, 19,222,164, +164,120,140, 27,147, 14,145,208, 20,199,143,255,105,237,229,213,232,112,110, 23, 25, 95, 74, 56,165,103,207,158,197,184,113,227, + 16, 24, 24,232,196,178, 44,238,223,191, 15,153, 76,134, 21, 43, 86,176, 94, 94, 94, 78,114,185, 28,231,206,157, 67, 92, 92, 28, + 41, 41,156,215,206, 95,251, 57,237,221,213, 89,177,228, 92,187,205,123,247,227,187,126,125,224, 64, 67,110,154,187,145,159,219, +116,106, 56,135,178,229, 58,202, 77,171, 91,186,251,118,130, 72,172,192,216,159, 22,224, 77,192, 73,203,236,140,231, 99, 8, 23, + 81, 14,185,107,243,125,180,216,241,193,158,220,218,189,119,106, 93, 44,255,176,130, 83,173,145,247, 1, 60,255, 75, 96,185, 10, + 8,195,153,231, 89, 43,223,190,125,139,119,239,222, 65, 32, 16, 64,169, 84, 66,175,215, 23, 25, 78,103,103,231,145,122,189,126, + 78,110, 58,239,112,116,116, 28,186,123,247,110,235,130, 2, 59,207,114,149,156,154,158,114,231,225,203,215,147, 70,246,108,118, +227, 94, 64,132,133, 95,215,240,212,103,199,210,138, 73, 35,169, 76, 44, 62,124,238,232,159, 10,221,251, 43,144,123, 53,131, 80, +225, 14, 78, 23,133,236,148, 44,100,188,139,129,250,143,117,168, 49,102, 34, 78, 30, 59,164,240,169, 86,251, 32, 33,196,157, 82, +170,249,140,111,211, 96, 24, 57,141,156, 70,206,127, 38,103, 73, 90, 4, 64, 45, 0,246,185,255,147,144, 51, 52,198, 6, 64, 34, +114,150,237,178, 7,160, 1, 32, 46,112, 79,225,253,130,215, 22,222, 47,248, 63, 41,247,191, 93,238,239, 67, 0,201,159, 45,176, +138, 87,147, 76,186,158,231, 37, 98, 91, 91,245,208,222,173,124, 47, 92,122,244, 84,110,109, 46,104,211,188, 86,211, 7, 47,222, +221,101,192,232, 8, 97, 12, 26,215,193,178,108,159,213,171, 87, 87, 51, 51, 51, 3,207,243, 48, 55, 55, 71, 66, 66, 2, 52, 26, + 13,210,210,210,160,206, 72,135, 54, 35, 29,207, 34,194,208,176,105, 51,244,104,215,198,235,207, 99, 39,250, 0,216, 87, 18,175, + 83,245,154,249,150,171, 5, 21,173,255, 50, 69, 68,164,230,139,173, 95,106,186, 67,164, 80,160,245,164,105, 95,146,240, 79,196, + 98,241,217,238,221,187,127, 51,101,202, 20, 38, 38, 38,230, 28, 33,164, 33,165,180,212,238, 81,173, 68,250,195,247, 63,116,180, +180, 84, 80, 28,188,120, 2, 77,106,246,131,137,152, 69, 82,186, 22,132, 0,175, 94, 30, 1, 33, 86,120,254, 38, 6,141,107,152, +161, 77, 91, 47,197,177, 67,175,166,224,175,241, 63,159, 36, 77, 74, 74, 10,226,227,227,161,211,233,160,211,233,208,179, 87, 47, +236,218,185, 19, 89, 89, 89, 80, 42,149,208,104, 52,224, 56, 14, 12,195,224,226,169,131,136,120,255, 10, 13,252,253, 81,156,233, +117,199, 19, 42, 36,132,220,123,253,250, 53, 94,189,122,133,200,200, 72, 72,165, 82, 56, 56, 56, 96,193,130, 5, 80,171,115,214, + 16,235,213,171, 87, 83, 0, 47,190,244, 67,122, 7,108,122,175,215,207,250,230,232, 81,187,219, 71,143,242,119, 79,156,136,148, +102,102,110, 52,228, 94,145, 8, 61,151, 47, 27, 93, 85, 46,151, 35, 50,124, 53, 60, 61, 69,152, 60,209, 26, 75,126, 73, 4, 0, +140, 31,231,130, 58,181,109,144,158,122, 8, 54,118, 51,176,118,237, 4,183,193,131, 87, 14, 4,176,163, 20,234, 89, 39, 78,156, +232,225,238,238,238,252,228,201, 19, 34, 22,139, 33,147,201, 32,147,201, 32,149, 74, 17, 31, 31,143,208,208, 80,186,124,249,242, + 40,228,116, 33, 22,139,220,110,192,111, 38,125,227,120,246,245,227,157,141,157,217,247,207,122,140,109, 20,246,252,222,147,140, + 11, 23,111, 47,212,171,164, 17,169,145,151,166, 86,174,243,196,102,204,143,243,177,110,249, 92,188,190,127, 35,217,190,124,250, +122, 25, 81,239,168,215,186, 8,171, 88,179,249,130, 49,179,123,235, 71, 14,238, 97,113,210,254,206,200, 51, 2,146, 16,155,248, +120, 5, 66,159, 40, 37, 85,106, 14,240,112,101, 52, 87,174, 92,145, 53,105,210, 4, 42,149, 42,223, 18,185,123,247,110, 94,175, +215, 23,217,237,172,213,106,231, 68, 69, 69, 57, 42,149, 74,180,107,215,110,252,138, 21, 43,228,121,107,200,113, 28,247,145,229, +234,231, 85,187,206,255, 48,103,253,213,243,251,126,113,250,121,218,208,102,253,199, 46,186,138, 98,214,121, 20, 48,204,152,147, + 71,183, 57, 72, 45,117,144, 89,181,129, 42, 78,137,215,155,190, 67,118,186, 10,117,126,158, 15, 64, 12,141,142,193,198, 78, 61, + 33,180,118,194,220,225, 67,157,102,110,220, 60, 26,192,106, 99, 59,222, 8, 35,140, 40, 4,123, 66,200, 41, 0,152, 54,109,218, +140, 37, 75,150,188, 36,132,156,162,148,118,204,109,208,157,162,148,118,204,187, 38,183,206,254,100, 63,239,218,194,251,133,255, + 79,159, 62,221,103,233,210,165,139,253,253,253,247,221,185,115,231,253,231, 8, 44, 38, 79, 49, 22,252,253,200,130,197,243, 55, +222,134,132,101,183,109, 93,223,249,228,181, 23,143,134, 12,233,208,178,119,231,198,109,222, 71,196, 7,185, 85,112,176, 9,120, +249,204,140,231,249, 27,134, 60, 76, 34,145,116,108,209,162,133, 32, 37, 37, 5, 38, 38, 38, 72, 72, 72, 64, 84, 84, 20,180, 90, + 45, 84,105,169, 80,167,165, 66,149,154, 2,109, 90, 10,222, 61,122,128,234,110,174,146,220, 65,240,165, 9,159, 34, 45, 83, 5, + 45, 89, 98, 83, 83, 72, 76, 77, 65,202,216, 61, 72, 8,233, 98,105,105,121,143, 16, 50, 43,183, 50, 26, 51,117,234,212, 68,158, +231,177,104,209, 34, 51,133, 66,113,144, 16, 34, 41,141,199,212,150,237,232, 95,195,151, 9, 10,125,142, 70,126,131,224, 81,185, + 61, 66,227,148, 72,204,208, 34, 62, 85,139, 58, 77,126, 67, 69,191,249, 40, 87, 99, 9, 94,125, 72,134,147,179, 59, 3,129,164, +196, 69,153,227,226,226, 62,218,223,183,119, 47,178,179,179,225,230,230,134,126,253,250, 97,234,212,169,232,215,175, 31,156,156, +156,208,191,119,103,204,157, 59, 23,241,241,241,165, 5, 85,237,225,225,161,174, 80,161,130,186, 66,133, 10,106,173, 86,139,204, +204, 76,164,166,166, 22,142,239, 9,101,254, 58,236,237,167, 59, 58, 58, 62,183,183,183,127, 41,149, 74,207, 60, 37, 36, 72, 93, +177,162,125,195,174, 93,137,119,239,222,108,184,137, 9,185, 14, 40, 12,225,178,177, 18,118,104,222,226, 27,113,106,202, 54, 0, + 57, 70,169,161, 67,108,113,235,186, 15,110,223,172,141,113, 99,220, 64, 24, 41, 8, 35, 70,118,214, 21,212,171,235, 47,178,176, + 32, 29, 75, 73,235,111, 1, 60,109,216,176,161,211,216,177, 99,137, 68, 34,193,248,241,227,181,195,135, 15, 15,238,215,175, 95, +240,229,203,151,185, 10, 21, 42,160, 92,185,114,164, 92,185,114,142, 0,158,230,222, 83, 34,204,220,200,207,106,237,171,155, 22, +238,242,247, 28,108, 26,100,234, 36, 61,231,174,136, 78, 90,184, 62,228,215,208,215,217,174,175,239,223, 72, 10, 14, 56,201,135, + 62,188,150, 24, 29,156,225,186,112,125,200,175,211,215, 69, 21,249, 49, 95,191, 14,254,200,169,235,218,236,172,108, 65,215, 78, +205,179, 71, 14,235,227, 97,165,240,217, 13,231, 54,126, 21,203,187,244,159,187,120,173,118,248,232, 31,180, 91,182,110,163, 25, + 25, 25, 72, 79, 79,199,218,181,107,245, 39, 79,158,140,226, 56,238,135,226,218, 62, 0,160,211,233, 48,114,228, 72,185,153,153, + 25, 34, 34, 34,242, 45,160, 0, 16,147,144,244,226,246,195,128,160, 73,163,122, 53,205, 82,171,213,231,175, 61,122,229,237, 94, +193,133, 16, 90,236, 4, 19,177, 80,216,186,118,189,122, 44,165,169, 32,130,242,120,183,115, 57,210, 99,147,145, 30,159, 12, 86, + 40,135, 30, 18,232,120, 49, 44,170,215,197,155,135, 79,224,108,107, 47,144, 8,133,198, 37,174,140, 48,226, 63,138,146,180, 72, + 65,145,180,116,233,210,197, 37,157, 47,240,171, 41,180,159, 47,160, 10,139,175,130,255, 1, 96,233,210,165,139, 41,165, 29,239, +220,185,179, 23,128,242,115,222,167, 84,181,193,170, 52, 75,166, 76,157, 5,115, 51,153,121,189,154,238, 14,199,206, 93,123,124, +227,206,163, 87, 21, 93,108,108,169, 78, 99,185,108,229, 58, 23,146,173, 52,116,144,183,151,141,141, 13,180, 90, 45,222,190,125, +139,200,200, 72,104,181, 90,232,179,178,160, 78, 77,133, 42, 37, 5, 92, 86, 6, 68, 28, 7,101, 66, 60,172, 77,164,192, 95, 51, + 12, 75, 19, 66, 69, 10,172,188, 95,169,153, 25, 36,166,102, 96,132,194, 34,187, 15,139,225,172, 85,183,110,221, 3, 1, 1, 1, +245, 90,181,106,181,144, 16, 98, 78, 41,253, 16, 21, 21,213,114,246,236,217,106,123,123,123,140, 28, 57,178, 42,128, 65,165,138, + 75,177,198,171,130, 67, 85,120,184, 14, 66,197,114, 45,144,154,165, 67, 66,186, 14,241,169, 90,108,252,205, 31,135,183,212,197, +173,195,141, 17,112,190, 53, 82,117, 14, 80, 56,117, 1,229, 52, 62, 37,113,222,185,115, 7, 27, 54,108,192,134, 13, 27,240,199, + 31,127, 96,221,186,117, 72, 73, 73,129,175,175, 47,194,195,195,113,246,236, 89,196,196,196,192,198,198, 6, 79,159, 62,197,198, +141, 27,241,224,193, 3, 67, 50,185, 65,215,148,181,175, 92,175,215, 15,142,233,218,181, 90,156,149,149,119,205,154, 53,191, 25, + 63,126,188,107,195,134, 13,243,207, 87,174, 92,185,188, 76, 38,139, 37,132,108, 33,132,212, 40,137,139, 7,106,218,218,250, 66, +163, 14,202, 77, 43, 33, 8,145,162, 69,235, 87,104,216,248, 17,180, 58, 17, 24, 34, 1,195, 72,161,215, 39,193,210,210, 9,148, + 18,223, 82,130, 56, 59, 33, 33,193,253,210,165, 75, 76,104,104, 40,164, 82, 41, 0,132,205,155, 55,111,221,175,191,254, 26,104, +109,109,205,157, 58,117, 10,199,142, 29, 67,199,142, 29,217,225,195,135,187,151, 43, 87,110, 67,105,239, 61,119, 77,244,221, 61, + 43,207,246, 21,234, 44,107, 72,101, 21, 43, 33, 75,209,101, 76, 51, 91, 57, 0,156,125,247, 46,195,174,124,250,210,172,140,231, +225, 22, 46,153,191,148, 54,192,157,210,185,252,227,224,160,123,123,142,158, 75,139,143, 75, 17,214,172,230,163, 92,178,224, 71, + 81,197, 74, 85,150,205,157, 58,202, 33, 42, 93,154,218,122,252,217,160, 35,231, 30,100, 14, 24,242,157,126,216,136,177,170,179, +231, 46, 30,229,121,190, 90,113, 51, 8,121,158, 71, 76, 76, 12, 94,190,124,137,144,144, 16, 36, 36, 36, 32, 49, 49, 17, 25, 25, + 25,249,221,138, 38, 25,233,167,215,109, 63,249, 76, 46,147,153,212,171,230, 94,254,254,147,192,120,185, 76,102,226, 94,169,188, + 7, 33,243,139, 44, 71, 56,142,171, 38, 53,145, 1, 32, 72, 13,184,129,204,148, 76,100,166,102, 34, 35, 57, 19,106, 45, 11,149, +154,129, 82,195,160, 66,211, 54,200,204, 82, 33, 51, 41, 13, 60,199,249, 25,171, 25, 35,140, 48,162,132,122,249,212,180,105,211, +102, 24,120,185,193,221,152,133, 5,215,180,105,211,102, 16, 66, 78, 77,159, 62,221, 7, 6,140, 89, 46, 10,165,186,105, 72, 76, +124,147,105,102,235,221,125,226, 79,115,206,238,221,186,222, 86,163, 81,134,219, 88, 42, 56, 83, 19,137,229,240,145,139,144,145, +153,210, 45, 51,217,240, 89, 79, 41, 41, 41,120,255,254, 61,100, 50, 25, 68, 66, 33, 56,165, 18,156, 50, 11,202,148, 36, 48, 90, + 53, 68, 28, 7, 43, 19, 25, 42, 56, 57,160,162,189,131, 65,156,111,175, 92,200, 31,208, 94,176, 91,112,121, 93, 47,136,229, 10, +136, 77, 21,248,254,212, 53, 0,128, 72, 36, 2,102, 47, 52, 36, 17,109,156,157,157, 79,236,217,179, 71,148,144,144,128,167, 79, +159, 62,163,148,166, 17, 66, 76, 1,240,175, 94,189,186, 20, 16, 16,208,209,221,221, 29, 0,220, 74,227, 75, 79,100, 56,157,158, + 34, 34, 54, 12,161,145, 79, 96,101, 94, 25, 66, 19, 15,196,167,106, 33,145, 85,134, 78,253, 87, 47,163, 42,253, 3,148, 90,195, + 38, 58,106,181, 90,104,181, 90,232,116, 58,168,213,106, 12, 24, 48, 0,183,239,220,193,190, 99,151,241,254,221, 27, 84,173,228, +128,129, 3, 7,160, 70,141, 26,120,248,176,228,241,195,131,107, 18,221,204, 38, 16,172,252,134,129, 88, 97,173,174, 63,245,252, +125, 67, 68, 86, 73,173,141, 2,241,249,107,199,142, 29,171,188,201,202,194,203,160, 32,180,154, 55, 15, 0,112,250,244,233,252, +107, 52, 26, 13, 38, 77,154, 36, 14, 12, 12, 28,246,232,209,163, 97,132,144,149,148,210,162, 7,145, 83,224,244,233,187, 24, 53, + 42, 16, 9, 9, 57,227,176,247,239,253, 75,143,134,190,215,162, 93,135,156,158, 43, 11, 11, 11,172, 92,233,107, 80,124,114, 28, +135, 77,155, 54,229,119, 11, 2,128, 64, 32,104, 56,105,210,164,238, 69, 93, 95,165, 74, 21, 81,105,156,147,122,185, 72,159,126, +144,141, 49,175, 82,209,199,204,166, 58,146,116, 79,124,159, 68,197,140,155,212,203,101,245,202,131,145, 42, 25, 81,239, 32, 92, + 68, 57,129, 84,181,211,144, 48,190, 59,187, 86, 99, 81,113,200,206,216,132,244,153, 99,191,251,214,218,204,194, 46,107,203,186, + 37,150, 12,203,208, 19,143,180,169, 62,174,214, 22, 93,234,175,201, 28, 53,113,246, 19,141, 62, 98, 44, 34, 78,188, 41,201, 85, + 5,199,113,136,142,142, 70, 66, 66, 2,194,195,195,145,152,152,152,251,237, 39,126, 50, 19,181,140, 5, 33,148,225,225,248,112, +116, 11, 42, 14, 24,128, 58, 11, 23,128,227, 5, 80,102,115, 88,217,160, 37, 82,210,148, 80,243, 4, 78,181, 26,224,187, 51, 55, +193, 80, 14,216,184,222, 88,131, 24, 97,196,127, 87, 60, 21,171, 69, 10, 11,161, 37, 75,150,116,252,218,207, 47, 40,178,150, 44, + 89,242,114,201,146, 37, 95,244,172, 82,221, 52, 0, 64,122, 66, 96,136,117,133,234,209, 89,202, 76, 19, 59,123, 27,141, 66, 42, +225,211,210,179,216, 39, 47,158,105, 51, 99,222,190, 46,195,243, 94, 5, 4, 4,248, 70, 71, 71, 35,252,195, 7,232,149, 89, 96, +212, 26, 80, 85, 54, 90, 53,106, 0, 41, 0, 41, 67, 32,226,181, 16,176, 98,100,100,166, 3,192,171, 82, 43, 69,157,238, 19, 75, + 22, 33, 4, 98, 83, 83,136,229,114,136, 21,166, 31, 89,180, 12,177,208, 72, 36,146, 61, 7, 15, 30,116,116,118,118,198,130, 5, + 11,224,226,226,226, 89,173, 90,181,236,198,141, 27,203,236,237,237,225,237,237,141, 6, 13, 26,224,236,217,179, 0, 80,170, 79, + 40,157, 94,250,252,117, 24, 26, 38, 38,223,193,205,107,127, 64,163, 84,163,102,211, 63,160, 21, 84,132,173,207,124,240,111,119, + 35, 59,246,120,142,181,192,161, 19, 34,195,195, 64, 88,241,203, 50,102, 14, 60,127,254, 28,123,143, 95,135, 99, 5, 47,132, 7, + 7, 33,232,234, 37,220,182,181, 70, 69,111, 31,232,116,186, 18,223, 93,199, 65,240,243,250,124, 55, 13,146,228,228,100,137,149, +149,149, 58, 47,238, 28, 29, 29,191, 68,100,125, 59,101,202, 20,164, 10,133, 64,135, 14, 16,133,132, 64,171,213,194,223,223, 31, +181,107,215, 6, 0,248,251,251, 67, 32, 16,160,122,245,234,112,114,114,194,250,245,235,191, 69, 49,179,244, 24,130,167,122,125, +146,167,171,171,107,190,192,218,185, 43, 1, 79, 30,181, 6,129, 24,107,215,253,229,149,161,124,249,242,136,141, 9, 1, 33, 52, +160,148, 48, 46,116,112,112,152,237,232,232,232,250,235,175,191,178, 82,169, 20,163, 71,143,174,156,153,153, 89, 49,215,100,140, +233,211,167,231, 88,165,230,206,197,188,121,243,160, 86,171,179,139, 35,219,181,170,186, 83,124, 50, 63,204,222,193,185, 91,115, +155,138,213, 90,180,109,133,202,238, 45,208,162,109, 56, 0, 44,182, 18,132,245, 94, 62,203,247,168, 77, 57,171,109, 23,206, 93, +156,219,168,105,139,153,211, 70, 90,254,188,116, 99, 74,169, 99, 26,211, 62,236,200,120, 45,238,179,234,183, 13,187, 86,205,153, + 62, 65, 26,158,160, 73,137, 74,161,153, 10,137, 64,225,102, 79, 20,227,126, 90,248, 62, 58, 58,100, 50, 34,206,149, 58,115,146, +231,121,132,132,132,228,143,217, 83,169, 84,200,202,202, 66, 68, 68, 68,126, 23,161, 82,110,214,110,236,144, 78,126, 89, 74,101, +246,253, 23,193,225,179,198,247,247,207, 82, 42,179,131, 67,195,223, 80,186,166, 72, 21,198, 48,204,139,236,140,236, 86,217,169, + 42, 36, 60,125, 13,151,150, 21,160,211, 19,104,244, 28, 18,146, 50,160,214, 3, 28, 35,132, 79,239,129,224,136, 0,137,209, 81, + 96, 88,246,153,177,154, 49,194,136,255, 44, 74,117,211, 64, 8, 57,229,239,239,191,175,160,149, 41,239, 63, 0, 53,128,146,134, +236, 36, 20, 20, 81,121,221,134,197, 61,167, 16,239,103, 11,172, 18,187,123, 8, 33,196,175, 90, 5,167,229,115,191,117,225,245, +250,170,241,137,113,122,129, 64, 34, 44,103,174,140, 41,203,195,212,106,245,169, 75,151, 46,117,109,221,186,181, 36,248,197, 51, +104,210,210,160, 73, 75,133,144,215,195, 74, 86, 27,140, 86, 13,162,209,192,217,147,135, 42, 67,134,235,183, 3,116,106,181,250, +148,161, 2,139, 97,217,143,199, 93, 41, 20,144,152,154, 65,162, 80, 20,238, 66, 36,165,168,104,147,206,157, 59,183,172, 95,191, + 62, 40,165,216,180,105, 19,180, 90,173, 88,171,213, 66,163,209, 64,171,213, 34, 61, 61, 29,187,118,237,194,239,191,255,126, 27, +192,246, 82, 43, 49,189,230,210,249,139, 87,234, 14,237,223, 81,120,230,212, 74,232, 53, 28,148,196, 5, 89, 89, 58,100,106, 76, +192, 89, 15, 0,226, 78,131, 21, 72,225, 95,189, 50,142, 31, 58,162,133, 94,125,217, 16, 81, 85, 16, 42,149, 10, 17,225, 97,136, +124,247, 6,138,244, 88,216,154,153, 32, 59,228, 13,106, 12, 28, 4,141, 70, 83,230, 12, 82,174, 92, 57,240, 60,143,230,205,155, +231, 15,154,254, 92,145,149,148,148,132,147, 39, 79,162,126,253,250,104,218,180, 41,162,162,162, 16, 18, 18,130, 14, 29, 58,228, + 95,243,236,217, 51, 60,121,242, 4,110,110, 37, 27, 5, 19,147,117,103, 34, 35,158,246,234,210,165,139,232,222,189,123,160,148, +194,221,221, 12,102,166,114, 16, 70, 2, 47, 47, 59, 0, 57,218,191, 89,179,102, 72, 79, 15,209,167,164,208, 51,165,196,229, 30, + 66,200, 49,141, 70,243,182, 73,147, 38, 78,239,222,189,195,196,137, 19, 5,251,247,239,207, 51, 25, 99,218,180,143, 39, 73, 40, +149,197,119,205, 87,173,230,249, 99,101,189,101, 83,169,172, 98, 37, 51,155,234,168,236,222, 2, 0,208,186,227, 80, 84,174, 82, + 30,233,137,207, 43,169,148, 97,221, 68,130, 20,203,231,107,163, 2,101, 29,124,135,168,226,175, 5, 3, 48,196,113, 47, 85, 6, +239,143, 11, 23, 14, 56,112,236,196,217,145,237, 59,118, 22,234, 56,189,222,183,130,208,226,224,209,211,241, 81, 31,194,215, 32, +252, 92,192, 95,246,190, 18,173,118, 92,122,122, 58,228,114, 57, 2, 2, 2,212, 29, 58,116,144, 48, 12,131,183,111,223,230, 11, + 44, 59, 27, 43,239,134,117,124, 61,127, 94,181,235,188, 92, 34,145,180,109, 86,219, 43, 48,248, 67, 36,165, 36,172, 56, 94,141, + 78,119,241,197,211,103,205,109,157,170,176, 33,215,238,193,186,113,123,168,213, 12,148, 26, 30,106, 61,160,103, 69,112,172, 81, + 15, 22,110, 94,160, 0, 30,222,187,173, 83,235,116,231,141,117,140, 17, 70,252,167,173, 88,180, 36,113,148,251, 63, 25, 64,216, +146, 37, 75, 18, 11, 88,151, 18, 0, 60, 3,224,151,123, 93, 66,161,251, 18,144, 51, 27,176, 78, 1,158,132, 2, 66,171,224,127, + 77,161,107, 62,171,225, 87,170,155, 6, 0,176,177,177,177,171, 89,179,182,219,230,173, 7, 64, 41,197,235, 39, 43,144, 18, 31, +132,217,139,239,186,185,184,184, 52,141,140,140,188,110,200,195, 56,142,219,191,109,219,182,201,245,106,213,172, 89,201,197, 5, +207,194, 66, 33,162, 28, 68, 28, 7, 70,171,134,128,211,192,197,151, 3, 67, 20,136,142, 78,195,210, 61, 7, 2, 56,142,219, 95, + 26,175,103,251,206, 88, 16,153, 6, 66, 8,126,245,247,133,216, 84, 1,145, 92,129,239, 79, 92,201, 23, 85,167, 22, 76,135, 88, +161,128, 91,189,210, 29,184, 83, 74,179, 77, 77, 77, 31,189,120,241,162,142,175,175, 47, 38, 79,158,140,176,176, 48,240, 60,143, +184,184, 56, 85, 76, 76, 76, 84, 66, 66, 66, 24,128,163, 0, 54, 27,226, 41, 92,164, 86,173, 62,117,120,231, 88,255, 70, 77,109, +186,116,251, 29,199, 14, 77, 66,106, 90, 58,178,245, 50,100,169,244,200, 82,179,176,178,174,134,122,213,171, 35, 58, 42, 30, 47, +239,157,207, 20,168,179, 87,148,197,122,197, 48, 12,158, 61,123, 6, 87, 39, 83,188,185,121, 29, 54, 38, 66,248, 57, 57,192,169, + 97, 35,132,132,132,148,202, 33,100,161,255,246,219,111,243, 61,185,183,105,211, 38,116,192,128, 1,142,147, 38, 77,194,214,173, + 91,113,251,246,237, 79, 6, 94, 55,109,218, 20, 55,110,220,152, 15, 96,110,105, 70, 60,141, 70, 3, 79, 79, 79, 60,124,248, 16, +151, 46, 93, 66,139, 22, 45,208,180,105, 83, 60,127,254, 28, 23, 46, 92,192,147, 39, 79, 64, 8,129,181,181, 53,116, 57,162, 89, + 87, 28,153, 86,139,131,191, 44,219, 54, 99,213,170,223,125,250,247,239,143,195,135,247, 97,232,144,170, 32,140, 4,132, 72,208, +185, 83, 85, 44, 88,248, 16,245,234, 53,131,141,141, 16,171, 86, 30,127,175, 84,114,187, 12,136,202,159, 47, 92,184,224,164, 82, +169,144,154,154, 74, 21, 10, 5, 73, 74,202,153,161, 90,148, 5, 43, 59, 59, 91, 90, 28,209,139,199,175, 86,164,102,208, 20,154, +249,164, 91,178,254, 73,181, 22,109, 35,208,186,227, 16, 92, 60,181, 29, 87,206, 95,130,149, 32, 44, 20,242,140,179,137,161,137, +233, 49, 89,238, 27,188,106, 13,103, 35,179,206,111, 24,223,197,146,117,116,228, 15, 78,251, 61, 45,181,132,244,166,132, 16,146, + 28,184,251,196, 81,138,206, 13,252,235, 85,241, 45,239, 40, 78, 73,140,167,135,142,159, 13,208,134, 30, 62,153, 39,172, 74, 91, + 21,129, 82,186, 96,218,180,105,115,114,255,239,152, 53,107,214,240,165, 75,151,218,198,198,198,230,143,193,138, 79, 76,190,210, +160,195, 56, 46, 41, 53, 77,179,109,213, 79, 61,101, 82,137,120,214,210,109,215,116, 44,238, 21,199,171,231,249,245,189, 39,206, +158, 16,252,250,137,115, 69,153, 24,199,127,154,139,103, 23,174, 66,199,136, 48,234,210,125,168,181, 28, 82, 19,147,112,121,216, + 24, 40,236, 45,241,251,181,195,113, 60,207,255, 97,172, 98,140, 48,226,191,139, 18,180, 72, 81, 99, 92,226, 12,184,238,161, 1, + 60,127, 11, 12,154, 82,151,152,152, 24,127,227,198,125, 92, 59,245, 51,174,159,250, 25, 47,159, 60, 67,116,148, 6, 81,113, 42, +152,153,153,221, 45, 65,137,182, 42, 92, 41,100,103,103,119,159, 53,123, 78,172, 84,102,130, 38, 45, 91,194,193,214, 14, 38, 34, + 33, 88, 61, 15,150, 8,145,153, 96,129, 55,207,179, 49,117,219,238,248,204,236,236,238,133, 43,135,194,156, 5,142,131, 16, 2, +137,153, 41,196, 10, 83, 72, 76,205, 62,234, 46,148,154,153, 65,106,106, 6,129, 88, 92,212, 96,248, 79, 56, 51, 51, 51,123,244, +236,217, 51, 37, 45, 45, 13,195,135, 15,199,245,235,215,159,156, 63,127,222,236,217,179,103,178,248,248,248, 42,148,210, 54,148, +210,141,197,137,171,194,156,201,201,239, 50,168, 94,221,103,201,156, 31,148, 42,189, 53,122, 13,218, 15, 57, 19, 1, 61,199,131, + 2,112,178, 18,163, 97,171,133,136,215, 52,192,254, 13,139,178,121,173,170,127, 65, 31, 88,133, 57, 41,165,212,218,218,250,163, +119, 97, 24, 6,215,174, 93, 67,175,158, 61,208,182, 91, 87,216, 86,114,133, 93,171,246,104, 59,124, 20, 54,110,220, 8,134, 97, + 96,101,101,245,145, 69,163, 32,231,142, 39, 84,184,231, 57, 37,123,158, 83,178,253, 49, 21, 0, 24,184,123,247,238, 95,252,252, +252,174,222,190,125,123, 5,128, 62, 5,227,187, 64, 88,230, 21,180, 94, 21,147, 70, 51, 39, 76,152,160, 12, 14, 14,134, 92, 46, +135, 94,175,199,237,219,183,241,251,239,191,227,215, 95,127,197,147, 39, 79, 96,109,109, 13, 55, 55, 55,168,213,106, 60,124,248, + 80, 9, 96,102, 9,121,137, 79, 72,208,247, 88,187,118,105, 82,199,142,141,177,109,219, 58, 56, 56, 52,128, 80,224, 0,129,208, + 22,114,133, 39,182,108,254, 5,223,124, 83, 19, 39,142, 31, 72, 78, 76,210,247, 40,236,117,189,152,112,170,238,223,191,143, 13, + 27, 54,160,103,207,158, 81,189,122,245,226,210,210,210,242, 45, 88,121,171,164,207,203, 29, 67,166, 86,171, 37,197,113, 14,255, +233, 69,212,143, 63, 7, 44,136,139,141,170,127,253,234,221,111,175,156,191,132,247,193, 87,112,229,252, 37,220,188,114,103, 90, + 92,108, 84,253,154,117, 61, 68,221,135,143,253,113,231,145,195,172,194,204, 17, 59,143, 28,102,251,141,251, 97, 81,237,182, 45, +102,150,150,231,115,211,145,102,198,199, 77, 95,188,226,183, 76,189, 86,197, 44, 95,179, 62, 90,153, 16, 51, 19,121, 83, 43,139, +177, 94, 21,228,204,206,206,222,168, 84, 42,157,148, 74,165,147, 74,165,154, 25, 22, 22,214,100,242,228,201, 9, 28,199,229, 91, + 72,227, 95, 30,191,251,234,230,246,197,118, 54,150,178, 6,117,124,170,174,220,120,232, 90,120, 68,220,159,121, 62,176,138, 73, + 35, 85,166, 82,213,163,107,247, 1, 89,169, 41,106,248,255, 48, 13,188, 84, 1, 53, 7,232, 40, 11, 61, 17,224,197,207, 43, 33, +179, 50,197,158,208,199,217,105, 58,109,143,130, 62,176, 74,121,247, 47,105, 33, 27, 57,141,156, 70,206,127, 32,231,191, 13,130, + 60,197, 88,240,183, 48,156,157,157,155,116,233,220, 10,205, 58,206, 2,165, 20, 65,143,151, 33, 37,225, 53,156, 29, 36, 8, 9, + 79,247, 7,112,221,208, 7, 82, 74,195, 9, 33,245, 39,204,156,117,164, 87,155,150, 94,190,149, 42, 73, 42, 86,172, 0,185,157, + 29, 18, 19, 19,112,235, 94,160,110,209,222,131, 1,185,226,202,144,165,114,192,243,124,206,224,117, 0, 45, 39, 76, 5, 97, 89, + 32,215, 29, 67, 94,133, 88,169, 78, 3, 16,129, 0, 28,229,161, 86,171,169, 1,225,140, 36,132,244,232,223,191,255,229, 83,167, + 78, 49,109,219,182,173,113,244,232, 81,254, 75, 34, 59, 51,238,205, 85,133,189, 71,199, 69,211, 71,238,175,223,162,171,153,187, + 79,109, 81,237,138, 44,180, 58,130,232,168, 15, 56,117,228,129, 54,240,254,249,116,170, 87,245,201, 74, 40,121,169, 28,173, 86, + 27,110,111,111,111, 63,127,254,124,232,245,122,232,245,122,112, 28,135,196,196, 68,220,189,123, 23,213,234,212,131,215,144, 97, + 72, 72, 72,192,218,181,107,225,226,226,130,197,139, 23, 35, 57, 57, 25,122,189, 62,220,192,180,226, 0,156,207,221, 62, 18,178, +121,173,140,210,186, 7,221,220,220,196, 42,149,170,134,163,163,163,128, 16,178, 90,163,209, 12,153, 62,125,186,195,226,197,139, + 81,181,106, 85, 36, 38, 38, 66, 46,151,195,221,221, 29, 9, 9, 9,120,240,224, 1,151,157,157,189, 1,192, 2, 74,105, 66, 41, +225,123, 75, 8,169, 63,126,252,247, 71,126, 89, 58,210, 93,165,110, 38,182,178,106, 4, 74,245, 72, 72, 8, 67, 70,250,109,237, +194, 5,219,223,197,197,235,186, 83, 74,131, 13, 76,166,185, 99,199,142, 5,114,151,202, 9, 9, 9,121,234,229,229,229, 94,156, + 5,203, 16,172, 60, 24,169, 2,176,119,249,196, 6, 19,211, 19,159,187, 91, 9,194, 66,235,251,242,107, 87, 30,140, 84,205,159, +104,241,115, 98,216,245, 55, 49, 89,231, 55,236, 60,114,152, 29,212,173, 7,231,162, 8,158, 38,181,163,135, 90,116, 42, 53,125, +104,141, 26, 53,202, 17,146, 92, 57, 62,233,245,163,161,195, 71,246, 54, 23, 41,207,248,185, 36,185, 49,229,107, 74,159, 60,121, + 18,106,232,154,158,133,120,223, 16, 66,154, 76,159, 62,253, 60,165,244,163,177, 7,241,137,201, 87,252, 59,142,165,169,169,105, + 79,227, 3,143,191, 48,128,235, 1, 33,164,165,111,181,154,135,127, 89,188,212,190,217,132,201,130, 55, 87,175, 1,156, 14, 31, +174, 95, 3, 39,209,240, 43,239, 92,140, 75,211,106,187, 25,189,184, 27, 97,132,209,122, 85,146, 22,249,159, 20, 88,165, 33, 50, + 50,242,186,155,171,203,133, 55,111,154,180, 41,239, 98, 11, 0, 8, 9,141, 70, 84,156,250,130,161,221,131, 69,136,172,218,187, + 79,158,233, 35,145, 72, 58,146, 92, 87, 12,244, 51, 22,123,214,235,245,145,149, 42, 85, 42,230,108,209,174,154, 56,142,139, 51, + 48,156,215, 8, 33, 3,220,220,220,150,126,248,240,225, 8,165, 52,235, 75, 35, 60, 51,238,205, 85, 43, 43, 55,215, 59,151, 14, +255,112,239,218,169, 86, 84,175,169, 6, 0, 68, 32, 46,211, 98,207,153,153,153, 35, 71,143, 30,189, 81, 40, 20,150, 71,238,152, +178,188, 25, 95, 28,199,177, 90,173, 86,202,113, 28, 11,128, 48, 12,163, 23, 10,133,170, 35, 71,142,232,245,122,125,184, 90,173, + 30,249,165, 31,128,161, 56,115,230, 76, 69, 75, 75,203, 54,132,144,158,148, 82,207,140,140, 12,245,172, 89,179,238, 30, 57,114, + 36,173, 66,133, 10,237, 58,116,232, 64,172,172,172,240,240,225, 67,154,148,148,116, 8,192, 76, 74,105, 72, 25,194, 19, 66, 8, +241, 27, 57,234,143,190, 86, 86, 27, 59, 80, 10, 63, 80, 16,194,224, 69, 90, 26,127, 38, 59,155,251, 51, 87, 40, 26,202,167, 47, +100, 57, 91, 24, 16, 16,176, 29,128,176,168, 49, 88,101,130, 73,230, 9,149, 50,172, 7, 81,100, 31, 93,185, 38, 82, 5, 0,115, + 87,165,166, 1,216, 50,190,155, 21,255,234,241,150,101,206,102,193, 63,173, 57,154,188,205, 16,186,154, 53,107,186, 50, 12,211, + 7,128,175,157, 36,181,138,173, 56,141, 35,132, 54, 39,132,177, 1,240,220,219,219,251, 20,128,200,207, 76,231, 55, 0, 42, 20, + 62, 30,255,242,248, 93, 0,119,203,200,245,128, 16, 82,101,226,148, 73, 99,196, 66, 97,107,112, 92,245,133,199, 14, 82,227, 98, +207, 70, 24, 97,196,191,222,130,101, 8,222,133, 68,182, 5, 0, 15, 15, 15, 26, 28, 28,252,197, 10, 51, 87, 64,237, 67, 41, 94, +218, 75, 67, 98, 98, 98,237,191, 89, 81,239, 5,176,247,107,114,230, 10,168, 5,185,219,231,134,235, 5,128,122,255,215,173,141, +220,190,242,249,197, 93,211,166, 77,155, 15, 90,173,246, 82,110, 69,111, 1, 32, 89,167,211,157,211,104, 52,113,132,144,218, 43, + 87,174,204,243, 84,191,144, 82,250,232, 51,195,193, 3,216,147,187,125,237,119,220,227,228,228, 52,201,218,218,218, 77,165, 82, +137, 85, 42,149,168,160,246,151,201,100, 9,134,114, 89,152,146, 29, 34, 65,138,181,133, 41,249, 68, 64, 89, 57,227,176, 50, 43, +160,170,149, 51, 14, 27,202,247,228,201,147,144, 26, 53,106,236,102, 24,166, 18,165,212, 30,160,230,148, 34,129, 82,154, 40, 16, + 8,162, 2, 3, 3,163,254, 41, 5, 77,174,128, 90,145,187, 25, 97,132, 17, 70, 24, 5, 86, 97,188,121,243,134, 24,163,205,136, +130, 34,171,164,243, 97, 97, 97,106, 0,119,114,183,194,247, 62, 2,208,233,159,254,142,209,209,209, 53,191, 6,207,240,159, 94, + 68, 1,248,161,118, 17, 75, 46,207, 93,155,156, 1,224,199,230,157,203,198,249,244,233,211,112, 0,225,198,156,104,132, 17, 70, + 24,241,207, 2, 99,140, 2, 35,140, 48,194, 8, 35,140, 48,194,136,175, 11, 2,160,200,153, 0,101, 89, 41,251,115,102, 19,148, +198,111,228, 52,114, 26, 57,141,156, 70, 78, 35,167,145,243,223,199,249,159, 65,222, 44,187,191, 99, 3,208,202,200,105,228, 52, +114, 26, 57,141,156, 70, 78, 35,167,145,243,191,182, 9,140, 18,211, 8, 35,140,248,175,226,208,161, 67, 6, 45,250,217,247,167, + 45, 29, 21, 10,203,217,153,233,105, 75,247,173, 24,122, 52,239,120,207,158, 61, 57, 99, 44, 26, 97,132, 17, 69,161, 88,129,229, +234, 90,206,155,225,248,134,148, 50, 44,101,168,142,164, 43,247,191, 75, 78,254,200,125, 64,249,242,229, 45,132, 12, 58, 17, 74, +229,132,240, 28,207, 50,183, 67, 66, 34, 2, 13,125, 56, 33, 68,108,105,105, 57, 86, 36, 18,181,210,104, 52, 46, 12,195, 68,170, +213,234, 75,217,217,217,235, 10, 59, 28,252,191, 68,213,170, 85,251, 93,187,118,205,162, 81,163, 70,106,153, 76,166, 87, 42,149, +130,115,231,206, 73,190,249,230,155,212,183,111,223,126,214, 12, 67,103,103,231, 22, 91,182,108,169,220,182,109, 91, 84,169, 82, + 37,171, 79,159, 62, 34,127,127,127,209,240,225,195,223, 71, 69, 69, 93, 41, 11, 23, 33,196,155, 16,178,139, 16,194,242, 60, 63, + 48,119,134,225, 87, 7, 33,132, 1, 48, 2, 64, 87, 0,174, 0, 66, 0, 28, 3,176,201, 16,111,246, 69,240,245, 0,208, 30,128, + 95,238,161,103, 0,206, 80, 74, 15,127, 65, 24,123, 0,104, 79, 8,169,145,107,161,125,250,181, 56,133, 66, 97, 13, 0,208,233, +116, 79,255, 41,225, 36,132, 12,145,201,100,223, 1,128, 82,169,220, 76, 41,221, 94,230,192,108,244,162, 0,224,189, 44, 8, 0, + 16,248,147, 39, 12,221, 15,124, 95,198,217,196,197, 60, 11, 35, 95,145, 47,136,203,246,253,251,247, 95,252,231,159,127,206,165, +148, 30,255, 59,242,190,131, 67,185,117,191,174,217,228,244,195,216, 97, 75,145,179,130, 67,137,240, 33,164,181,152,101, 59,107, + 56,238,102, 32,112, 16,128,192,202,202,170,159, 88, 44,110,162,209,104, 28, 5, 2, 65,140, 70,163,185,145,150,150,182,151, 82, +170,251,226, 0, 6, 17, 75,109, 54, 28, 8,255,215, 58,108,148,129, 90,100,130, 88,120,210,148,146,110,101, 89,118,133,179,179, +243,136,212,212,212, 76,134, 97, 40,201, 65,110,212,230, 59,107, 38, 60,207, 71, 37, 39, 39,215,254,204, 52,146, 2,152,135,156, + 53,221,214, 80, 90,114,152,138, 9,231, 15, 78, 78, 78,221,210,211,211,179, 89,150,165, 5,194, 71, 0,128, 97, 24,194,243,124, +124, 82, 82,210, 64, 99,213, 94, 60,156,156,156, 24,145, 72, 52,136, 97,152,149,122,189,190,114,120,120,120, 10, 0,216,217,217, +249,197,199,199, 27,215, 2,253,218, 2,171,128, 91,250,102,148,210,235,174,174,229,188,123,118,237,190,120,212,200,209,132,101, + 25, 4,188,124, 41,248,118,224,144, 54, 86, 86, 86,206, 10,181,218, 11,132,240,217, 82,105,128, 78,167,141, 58,184,247, 79, 83, +207,170, 85, 57,142,227,177, 97,227, 31,223,184,186,150,155, 97,136,200, 34,132,120, 56, 56, 56,236,154, 54,109,154, 67,231,206, +157, 89, 7, 7, 7,132,133,133, 89,236,219,183,175,234,111,191,253,214,155, 16, 50, 48,215, 23, 79, 89, 63,228,198, 14, 86, 76, + 27, 83, 25,105,137, 12, 14, 25, 58, 92,142, 85,226, 2,165,244,230,231, 70, 82,118,118,246,184,236,236,236,122,117,234,212,161, + 91,183,110, 37,131, 7, 15,166,132, 16,162, 84, 42,119,224, 51, 93, 56,200,229,242,245,109,219,182,117,119,119,119, 15,121,247, +238, 93,251, 3, 7, 14,156, 25, 52,104,144,171, 92, 46, 15, 6,224, 81, 70,186,237, 73, 73, 73,126, 74,165, 18, 46, 46, 46, 91, + 1,212,250, 27,196, 21, 1,112,216,202,202, 74,181, 96,193,130,205,205,154, 53,115,142,142,142,230,166, 78,157,218,240,233,211, +167,237, 8, 33, 93, 13, 21, 89,132, 16, 75, 0, 27, 20, 10,133,201,212,169, 83,111,180,110,221, 58, 84,161, 80, 72,159, 63,127, + 46,156, 58,117,234, 8, 66, 72, 47, 0,163,202, 82, 8,231,113,218,218,218, 90,204,157, 59,247, 69,131, 6, 13,174,139, 68, 34, +209,235,215,175,133,211,166, 77, 27,243, 37,156,238,238,238,166,115,230,204,121, 88,163, 70,141, 56,169, 84, 42,122,247,238,157, +112,198,140, 25,163, 88,150,237,197,243,252,103,113, 90, 89, 89,153,205,152, 49,227, 81,211,166, 77, 19, 36, 18,137, 56, 48, 48, + 80, 48,125,250,244, 81,101, 9,167,181,181,117,115,107,107,235, 77,177,177,177, 2, 0,112,116,116,172,235,230,230,246, 91,158, + 63,180, 92,225,134, 92, 81,152,161, 82,169,250, 39, 37, 37,125,226,192,214,123, 89, 16,126,156,179,163,223,143,115,114,246,119, +230, 30, 47,109, 31, 24,108,112,222,247,174,156, 83,198,140,153,242,251,128,156,223,156,227,127,228, 6,117,125,101, 66,203, 34, +214, 8, 33, 93, 90,180,104, 49,239,202,149, 43,127, 52,107,214,108,234,238,221,187,237, 34, 34, 34,126, 33,132,148,235,219,183, +239,224,203,151, 47, 47, 73, 72, 72, 56,244,181,242,191, 88, 36,145, 16,134, 64, 38, 53, 49, 51,228,122, 33,195,116,188,211,165, +203,119,155, 95,191,174,249, 91, 80, 80,229, 44, 71,199,122,227,199,143,183,239,222,189, 59, 83,174, 92, 57,188,125,251,214,122, +247,238,221, 94,155, 55,111,238, 70, 8,153, 64, 41,253,240, 37,226, 42, 43, 21,213,212, 26,212,164, 20, 22,127,197, 17, 82, 37, + 90, 60,145, 7,145, 23,197,137, 44, 66,200,170, 46, 93,186, 12, 60,118,236,152, 98,247,238,221,138, 6, 13, 26,192,222,222, 30, +132, 16,112, 28, 7,158,231,193,243,124,238, 90,159,238, 95, 50,131,124,245,205,155, 55, 71,188,125,251, 22,195,135, 15,103, 1, +204, 42, 99,249, 51,169, 91,183,110, 29,142, 28, 57, 34, 59,120,240,160,172, 78,157, 58,112,112,112, 0,128,252,240, 81, 74, 81, +185,114,229,127, 93, 37,237,234,234, 74,197, 98, 49, 88,150, 5,165, 20, 60,207, 67,167,211, 65,163,209, 68,168,213,234,110,241, +241,241, 79, 12,229,178,183,183,103,164, 82,233, 96,153, 76,182,149,101, 89,232,245,250,171,110,110,110, 45, 56,142,131, 68, 34, +185, 10,252,149,127,254, 47, 80, 88,139,252,107, 44, 88, 5, 87,176,102, 56,190,225,168,145,163, 73,159,126,125, 99,223,134,188, +231, 5, 66,113,191,115,231,207,155,120,123,123, 51,234,117,235,160, 79, 72,128,110,226,196, 6,151, 46, 93,210,245,234, 55, 64, + 41,100,201,118,215,202,149, 76,246,239,221,231,112,228,240,161,134, 0, 2, 75,179, 92, 57, 56, 56,236,186,118,237,154,115,229, +202,149,145,154,154,138,176,176, 48,100,101,101,161,119,239,222,194,134, 13, 27, 58,247,236,217,115, 23, 33,164,145,161,150, 44, + 66,136,125, 21, 23,193,169, 95,231,244,246,248,166, 77, 67,185,115, 57, 55,208, 88, 21, 34,222, 5,213, 57,117,237,222,120,119, + 11,230,205,219, 52,218,145, 82, 26, 87,214, 72, 74, 76, 76,252,169, 91,183,110,135,155, 55,111,110, 43,145, 72,224,228,228, 68, + 58,119,238, 28, 31, 29, 29, 61,255, 11, 50, 18,114, 91, 93, 92,193,223,194,203,248, 24, 8, 23, 75, 75, 75, 88, 90, 90, 2,128, +243,151,100,136, 94,189,122,177,225,225,225,223,241, 60,239, 85,240,184,157,157, 93, 85,142,227, 82, 62,124, 8,175,170,212,104, +189, 70,143,157, 49,175, 79,207, 86, 22,119,238,220,225,219,182,109,171,190,113,227,198, 8, 0, 27, 12,124,204,134,234,213,171, +191, 91,189,122,181, 58, 56, 36,180, 82,192,171, 96,200,165, 34,174, 92,185,114,146,192,192, 64,245,236,217,179,179,214,172, 89, +179, 1, 64,175, 50, 4,125,195, 55,223,124,147, 50,107,214,172,248, 55,239, 66, 29,159, 5,190,161, 10,137, 72,103,111,111,199, + 62,122,244, 72,245,203, 47,191,240, 75,150, 44, 41, 51,231,128, 1, 3,162,167, 78,157, 26,154,144,148,234,156,146,154, 65,197, +217,217, 90, 23, 23, 23,193,213,171, 87, 51,127,255,253,119,245,212,169, 83,203,204,217,172, 89,179,216,133, 11, 23,134, 7, 5, +135, 56, 61, 9,120, 13,133, 68,168,115,112,176, 99,159, 60,121,146,189,100,201, 18,237,178,101,203, 12,226,148,203,229, 59, 15, + 28, 56, 32, 56,126, 60,199,104,115,247,238, 93,198,213,213,213,164,224, 53, 74,149, 26, 12, 1, 18, 19, 19, 77,252,253,253,119, + 2,112, 41,142,111,208,160, 65,177,101,201, 43,131,212,203, 12,182, 90,229, 9,171,209,163, 71, 23,231,155,107,128,119, 25, 68, + 86,251,246,237,103,158, 62,125,218,109,247,238,221, 43,247,236,217,163, 1, 0,169, 84,106,179,111,223,190, 37,189,123,247, 70, +239,222,189,103, 3,248,106, 2,139,163,156, 22, 0, 36, 82,137, 36, 40, 40,136,120,122,122,150,232, 8, 89,203,243,143, 54,191, +126, 93,251,123, 79,207, 58,201, 60, 95, 69,244,205, 55,153,147, 38, 77, 74, 76, 79, 79, 71, 88, 88, 24,180, 90, 45, 6, 15, 30, +204, 54,107,214,204,169,119,239,222,107, 9, 33, 61, 40,165, 90, 3,172, 56, 43,156,157,157, 71,164,165,165,101,230, 89,113,188, + 42,153, 10,154,212,208, 75,170, 87,209,137, 69,172, 94,212,105, 34, 79, 46,172, 35, 89,158,149,113, 11, 0, 68,217, 72, 16, 1, + 41, 69,148, 65,203,186,116,233,210,251,216,177, 99,150, 0,112,232,208, 33,100,103,103,163, 66,133, 10, 16,137, 68, 16, 10,133, + 16, 10,133,249,255,203, 82, 54, 17, 66,166, 40, 20,138,246,153,153,153,199, 40,165,107, 1,184, 55,106,212, 8,174,174,174, 0, +208, 48,247,154,129, 44,203,246,229, 56,110, 19,165,244, 88, 9, 92,227,187,116,233,210,250,200,145, 35,166,121,225,212,233,116, +112,117,117,133, 72, 36,130, 88, 44,206, 15,231,191, 17, 98,177, 24, 82,169, 20, 2,129, 0,148,210,188,245, 65,175,233,116,186, +241, 0,222, 91, 90, 90, 50, 41, 41, 41,134, 54,110, 89,129, 64,176,178, 64,218, 86,227, 56,110,187, 94,175, 47,175,213,106,205, +255, 9,239, 91, 80,139,252,175,167, 29, 83, 72, 57, 54,203,121, 65,134,101, 89, 6,239, 67,194,116,205,155,183, 28, 20, 30, 30, +174,168, 87,175, 30, 35, 20, 10,145,117,229, 10, 84, 15, 31, 66,161, 80,160, 91,183,110,194, 27, 55,110,152,153, 41,204,134,135, +190, 15,205, 96, 89, 6,148, 50,165,142,105,176,180,180, 28, 59, 99,198, 12, 7,119,119,119,232,245,250,124, 15,228,122,189, 30, + 17, 17, 17, 80, 40, 20, 24, 56,112,160,157,137,137,201, 88, 3, 51, 77, 69, 15, 87,187, 39,215,206,108,172, 53,105, 84,123,185, +135,201, 69,200, 35, 38, 64,113,232,123,120, 69,159,195,180,174,245,228, 23,214,207,174,233,230,100,245,132, 16, 82,177,172,145, +164, 82,169,110, 5, 4, 4, 12,191,126,253, 58, 15, 0, 87,175, 94,165,175, 94,189, 26,249, 37,173, 78,158,231,145,154,154, 10, +158,231,217,220,253,188,223,255,179,204,208,171, 87, 47, 54, 34, 34, 98,164,151,151,151,199,253,251,247,113,226,196, 9, 92,186, +116, 9,231,207,159,135, 88, 44, 46,223,179,103,207,132,132,164, 84,203,212,212, 52,105, 76,228,187,186,251, 54,109,114,138, 14, + 13,189,243,231,159,127,102, 34,167,219,208,144,180,234,161, 80, 40,100, 43, 87,174,204, 50,181,112,232, 80,175,126,227, 58, 66, +169,153,141, 72,162,176, 77, 75, 75,215, 62,123,246, 44,104,249,242,229, 30, 85,171, 86,181,204,237, 70, 51,136,211,198,198,198, +124,230,204,153, 90, 19, 83,219,198,117,234,213,247, 21, 75,205,172,132, 98, 19,171,134, 13, 27,118, 11, 10, 10, 10,157, 59,119, +174,115,141, 26, 53,236,202,194, 89,185,114,101,211,169, 83,167,170,205,204,173, 90,123,123,121,215,108,224, 95,183, 79,173, 90, +181, 6, 10, 4, 2, 46, 46, 46, 46,120,210,164, 73,206, 77,155, 54,181, 46, 11,167,165,165,165,233,194,133, 11, 53,149, 92,171, +246,232,212,169, 99,115,169,137,133,149, 88,102,106,165, 84, 42,185, 87,175, 94,189, 93,176, 96,129,179,159,159,159,141, 33,156, +217,217,217, 66, 27, 27, 27,248,250,250,194,219,213, 21,105,105,105, 56,114,228, 8,182,111,223,142, 45, 91,182, 96,239,222,189, +168,221,168, 13, 76, 77, 77, 17, 29, 29,141,244,244,116, 97, 81, 60,249,221,116,127, 7, 54,122,209, 63,248,177, 3, 70,143, 30, + 29, 85,130,184,194,232,209,163,163,198, 76,249,125, 64, 94, 23, 98, 73,150,171,150, 45, 91, 62, 63,115,230,204,187,221,187,119, +195,219,219, 27,109,219,182, 21, 3,192,216,177, 99,197,189,123,247,198,129, 3, 7,112,232,208,161, 64, 15, 15,143,219,132,144, + 46,134, 4,115,224,192,129,141,122,245,234,117,179, 87,175, 94, 79,251,244,233,179,105,228,200,145, 78, 5,207,199, 68, 71, 62, +210,104, 52,240,171, 89,199,100,225,214,251,253, 75,227,123, 5,236,222, 20, 20,180,125,233,203,151, 31,102,123,123, 91, 84, 8, + 13,181,218,177, 98,133, 77,222,226,217, 58,157, 14, 17, 17, 17,176,180,180, 68,255,254,253,109, 36, 18,201, 64, 3,242,207,170, + 46, 93,186, 12, 9, 15, 15, 87,108,222,188,217,241,233,211,167, 78, 49, 49, 49,142,151, 47,157,183,253,113,242, 88, 83,115,133, + 88, 28,157,144, 35, 80, 67,163, 33, 15,122,143, 70,148,194,162, 96,183,225, 71,173, 50, 23,151, 17,199,142, 29,115, 40, 80, 46, +127, 36,168, 10,255, 7, 67, 25, 43, 31,178,173, 98, 23, 18,111,225, 77,126, 40, 33,156, 29, 14, 30, 60,184, 60, 52, 52,180,105, +199,142, 29,215, 16, 66, 42, 20,113,141,109,243,230,205, 55,191,126,253,186,109,151, 46, 93,142, 18, 66,218, 20,219,122,116,113, +233,118,236,216, 49,235,188,125, 27, 27, 27, 72,165,210, 79,196,149, 72, 36, 2,195,252,251, 60, 15,177, 44, 11,129, 64,144,159, + 14, 2,129, 0, 44,203, 94, 96, 24, 38,130, 97, 24,173,161,226, 42, 87,188,176, 28,199,245,227,121, 62,147, 16, 2,161, 80, 8, +137, 68,210, 81, 44, 22,251, 10,133,194,127,196,251, 22,212, 34,255, 26,129,149,235, 48,242, 26, 0, 80, 66,178,158, 7, 4, 8, + 89,177,120,192,159,123,246, 72, 68, 34, 17, 62,124,248,128,192,192, 64,100, 95,190, 12,229,157, 59,136,139,139, 67,102,102, 38, +236,237,237,177,113,235, 86,185,134,163, 67, 95,191,121,195, 82,230,175,241, 4,197, 77,213,148, 72, 36,173,186,119,239, 94,172, + 16,139,142,142, 70,251,246,237,133, 44,203,182, 42, 34,131, 92, 42,148, 24,196,201,150,156,188,124,120,161,163,163, 56, 16,120, + 59, 9,200,120, 2, 80, 53,160,215, 0, 81, 47,128,211,243, 81, 33, 51,136,156, 95, 56,200,193,217, 68,112,146, 20,106,138, 25, + 48, 77,213,213,211,211,115,203,128, 1, 3, 24, 0,104,209,162, 5,241,244,244,220, 68, 8,113, 45, 33, 35, 95, 42,165,114,188, +151,146,146,130,222,189,123, 91,187,185,185, 93,234,221,187,183,117,222,241,207,229,204,235, 57,242,241,241, 73,146,201,100,123, + 9, 33, 18, 3, 62,184,124,206,240,240,240,239, 60, 61, 61,171,108,222,188,153,101, 89, 22,155, 55,111,198,254,253,251,113,235, +214, 45, 36, 37, 37, 41, 38, 77,154,100,126,234,210,189,115,183,111, 61, 56,177, 98,214, 20,235,110, 45,155,185, 90,166, 37,164, + 59, 59, 59,183, 66,206,152, 44, 67,194,217,126,220,184,113, 23,158,190, 10,177, 99,133, 34,145, 88, 40,144,217,218, 88, 84,112, +176,181,172,226,108,109, 89,197, 84, 44,180, 72, 79, 79,127,127,224,192,129, 76,228,140,207, 50,136,115,206,156, 57,207,130, 66, + 34,172, 25,161, 64, 32, 18,136,196, 22,230, 10,235,206, 29,219, 52, 7, 0, 25, 75, 36,233,233,233, 17, 59,119,238,204, 42, 11, +231,236,217,179,239,198, 36,164,216,137,164, 82, 86, 34, 17,230,199,165,165,153,194, 94, 46,145,200,178,179,179, 63,108,217,178, + 37,173, 44,156,211,167, 79,127,248, 50,248,131, 13, 97,192, 50, 32, 66, 75, 75, 83, 59, 91, 11, 83, 7, 59, 51,133,131,148,129, + 52, 61, 61, 61,108,231,206,157,233,134,112,106,181, 90, 97,124,124, 60,130,130,130, 80,174, 78, 29, 92,186,116, 9,229,203,151, + 71,239,222,189,209,183,111, 95,200,100, 50,180,240,175,134, 25, 51,102,224,221,187,119,208,235,245,226, 50,230, 37, 56, 57, 57, + 93, 43,238, 92,222, 56,170,226, 56,189, 43,147,124,113,101, 8,119, 81,215, 21,230,108,223,190,253,204,203,151, 47,187,237,218, +181,171,243,192,129, 3,111,237,218,181, 11,245,235,215,199,171, 87,175, 80,169, 82, 37,236,216,177, 3,125,251,246,189,181,118, +237,218,206,143, 31, 63,246,171, 92,185,242,140,210, 56,251,244,233, 51,166, 70,141, 26, 87, 98, 99, 99,253,147,147,147,125,143, + 28, 57, 50,180, 91,183,110,239,251,245,235,215, 50,223,130,165,211,237, 57,125,226, 48, 58,116,238,142,170, 62,190, 27, 6,207, +216, 93,173, 36, 78, 74, 41,125, 9,108,218, 30, 19,147,176, 71,165,202,238, 45, 20,154,152,220,191,111,117,232,143, 63,108, 10, +174, 4, 16, 21, 21,133, 78,157, 58, 9, 69, 34, 81,227,146,194, 73, 8, 89,214,181,107,215,222, 71,142, 28,201,183, 54,221,185, +115, 7, 47, 94,188, 64, 88, 88, 24, 82, 83, 83,209,114,100, 38, 70, 47,201,225, 30,189,132,162,205, 88, 42, 47,137, 51, 51, 51, + 83,121,244,232, 81,244,234,213, 11, 35, 70,140, 64,229,202,149,243, 69, 86, 97,113,117,253,193, 69,136,125,147,173, 26,109,194, +144,214,199, 97, 43,119,193,244, 98,194, 41,106,213,170,213,198,206,157, 59,131,227, 56,168, 84, 42, 30, 64,114, 81,186,161, 82, +165, 74,194,114,229,202,225,231,159,127,134,133,133,197,106, 66, 8, 91, 20,103, 86, 86,150,250,204,153, 51, 24, 56,112, 32, 38, + 76,152,128, 42, 85,170,228,135,115,231,238,253, 54,125,135,142,242,168,213,168,137,159,119,173,250,213, 51,212,108, 29,145,137, +213,119,164, 8,115,219,223,225, 58,224,255, 7,103, 94,183, 96,222, 70, 8, 1,203,178, 75, 89,150,237,201, 48, 12, 45, 11, 39, +207,243,122,189, 94,127, 95,175,215, 15,206, 19, 89, 44,203,130,101,217, 50,139,211,191,203, 21, 67, 65, 45,242,175,233, 34, 44, +184,228,137,142,199,201, 1,131,134,118,186,116,249,178,137, 88, 44, 70,104,104, 40,226,226,226,176,127,239, 94,238,160,157, 93, +182, 80, 40,164,253,183,111, 55, 29,246,221,119, 68, 40, 20,194,211,211, 19, 61,123,246,148,245,232,221, 47,222, 86, 40,220,111, +128, 66,117,204,235, 63, 31, 58,116, 40, 86,173, 90,245,209,249, 31,127,252, 17,123,247,238, 5, 33,196,193, 16,195,203,248,249, + 93, 93, 44, 43, 91,196,209, 39, 59,133,132, 53,177, 2,107, 2, 48, 34, 64,202,230,136, 44,134,133,250,241,149,100,166,254,129, +244,238,141,179,157,215,156,219,216, 11,192, 1, 67, 35,201,201,201,105,246,149, 43, 87,108, 39, 77,154, 68,211,211,211, 73, 76, + 76, 12, 93,188,120,177,237,152, 49, 99,102, 3, 24,244, 57, 17, 31, 29, 29,189,176, 67,135, 14,109, 79,159, 62,109, 63,104,208, + 32,115, 0,232,208,161, 67, 92,116,116,244,194, 47, 73, 80,145, 72,196,190,124,249,210,106,229,202,149,125, 39, 79,158,236,227, +235,235,235,144,154,154, 26, 22, 21, 21,213,179, 52,139, 27,207,243, 94,155, 55,111, 6,203,230,148,115, 12,195, 64, 44, 22, 67, + 44, 22,195,204,204, 44, 37, 36, 36,132,175,104, 47, 19,103,197,197,164, 89, 10, 44,133,196,209,193,218,194,193,177, 89, 82, 82, +210,125, 0,134,154,151,253,218,181,107,247,252,206,211,183,220,168, 65,205,171,152,136, 24,161,169, 76,202,202,196, 66, 66, 40, +229,180, 58,141,255,250,157, 87,183,121,120,120,120, 27,106, 34, 38,132,212,168, 95,191,254,229,167,175, 62,224,233,139,119,145, +182, 86, 38,214,237, 90, 52,172,154,119,190,122,221,250,125, 11, 92,158,106,208,135, 33, 16,248,213,169, 83, 39, 50, 46, 57, 11, +118, 86,230, 31, 9,105, 75, 27,187, 86, 0,144,149,150,182,190, 92,185,114,158, 2,129,160,146,161,225,108,220,184,113,204,227, +192,112, 56,216, 90, 89,229, 30,254,104, 76, 79, 98, 76,204, 6,119,119,119, 79, 67, 44,173, 26,141, 70,114,236,216, 49, 60,126, +252, 24, 11,125,124,240, 99,197,138,176,181,181,197,229,203,151, 65, 41,133, 66,161, 64,106,106, 42, 14, 28, 56,128,150, 45, 91, + 66,163,209,200,139, 19, 74,121,227,171,138, 19, 66,209,209,209,127, 75,139,178, 48,183,247,178, 32, 4,150,176, 82,230,153, 51, +103,118,239,222,189,123,137,183,183, 55,126,248,225,135, 70,171, 87,175,190,229,235,235,219,168, 69,139, 22,184,114,229, 10,134, + 14, 29,122,107,237,218,181,141, 70,141, 26,133, 13, 27, 54,224,253,251,247, 91, 75,122,126,159, 62,125,230, 13, 31, 62,124,214, +186,117,235,144,215,130,239,218,181,107, 94,217,184,173, 87,175, 94, 73,121,215, 30,220, 18,121,167,178,171,123,131, 49,227,167, +136,199,142, 26, 56, 13, 64,223, 82, 42, 10,234,228,228,148,161,111,210, 36,249,192,221,187,232, 35, 18,153,236,121,250, 20, 39, + 85, 42, 52,238,214, 45, 17, 0,166, 79,159,142, 93,187,118, 1,128,125, 73, 92, 46, 46, 46, 35,142, 30, 61,154,159, 87,172,173, +173, 33, 22,139,115, 68,144, 64, 8,150, 99,113,105,131, 28, 33,225,217, 24,189,132,226,143,233, 4,149,156,144, 85,163,106,137, +249, 17, 13, 27, 54, 68,122,122, 58, 88,150,133,169,169, 41,172,172,172, 62, 18, 87,233,153,169, 88,190,117, 30,226,171, 94, 67, +235, 19, 96, 8, 11, 60, 91, 4,100,188, 45,118, 73,167, 78, 43, 87,174,116, 84,169, 84,184,122,245, 42, 46, 95,190,252, 27,165, + 52,179,176,222,161,148,198,178, 44,187,125,217,178,101, 67,157,156,156, 48,122,244,104,143,197,139, 23,119, 5, 62,229, 37,132, +160,118,237,218, 80,169, 84, 16, 10,133, 48, 51, 51,131, 70,171, 23,246, 26, 48,194,181,130,155,175,100,241,138,197,140,189,149, + 0, 2,198, 10,193, 31,148,230,107, 86,253,188,230,222,205, 27,195,136,137, 77, 55,154,157, 24,243,191, 94, 73,115, 28, 7,157, + 78,151,183,238,170,107,158, 40, 18, 8, 4, 91, 88,150, 77,181,177,177, 57,150,152,152,104,144,208,226,121,158,227, 56, 46, 83, +167,211,165,232,116,186, 44, 66,136,130,101, 89,112, 28, 7,142,251,103, 76,136, 45,109,249,181,255, 57,129, 85,120,185,147,240, +240,240, 84, 43, 43, 43,231,170, 85,171, 50, 26,141, 38,167,235,225,208, 33,110,203,182,109,167, 85, 42,213,120, 0,162,117,191, +255,190,193,217,197,165,249,128,129, 3,137, 78,167, 67,135, 14, 29,196,167, 78,157,178,126, 23, 23,151, 97, 64, 4,126,244,188, +193,131, 7, 99,245,234,213, 0,128,113,227,198,229,155,208,137, 1,157,254, 10,115,180,111,219,177,182, 89,132,252, 55, 51,109, + 3, 93,102,197,119,166,247,228,153,178,218, 96,196, 2, 72, 89,240, 90,157, 62, 56,190,219,163,119,193, 94,222,178,228,164, 74, +173,124,154, 98,203,197, 93,237,203, 34,176, 76, 76, 76,234,154,154,154,226,209,163, 71,201,181,107,215, 78,165,148,154, 47, 92, +184,208,198,196,196,164,238, 23,168,244, 80, 66, 72,147,134, 13, 27,142,101, 24,166, 21,207,243,151,226,226,226,214, 81, 74, 67, + 13,204,132,163, 1,204, 69,129,113, 38, 26,141, 6, 12,195,128, 82,138, 62,125,250, 96,250,244,233,222, 47, 94,188,192,149, 43, + 87,172, 90,181,106,117,143, 16,146, 10, 96, 24,165,180, 88, 43, 89, 82, 82, 18,254,248,227, 15,176, 44, 11, 11, 11, 11,152,154, +154, 66, 42,149,162, 81,163, 70,177, 75,151, 46,245, 58,124,248,112,118,106,124, 60,145,101,164,169,137,181,181, 20, 78,229,219, + 13,238,214, 61, 0, 57,179, 9, 13,130, 92, 46, 55, 17, 67,157,193,112, 42,102,249,188,245, 2, 19,145,136, 72, 69, 2, 72,248, +108,118,198,210,159,169,148, 80, 97,174,117,149, 26,202, 41,149, 74, 69,114, 49, 85, 11, 37,140,206,132,161, 95,165,159, 85, 44, + 22,139, 36,194, 44,101,177, 98,150, 33, 44,203,178,146,178,112,202,100, 50,145, 66,204,169,139,125, 15, 6, 44,195, 48,197,114, +246,242, 33,244,224,216,252, 46,189,252,176,233,245,122,212,173, 91, 23,251,142, 95,197,153,203,119,144,248,225, 57,198,143, 30, + 10,119,119,119,156, 63,127,254,139,226, 33, 58, 58,186, 72,145, 85, 98,215, 98,238,184,171,146,186, 5, 63,226,158, 99, 94,234, +172, 68, 66, 72,151,198,141, 27,143,217,179,103,143,166, 93,187,118,226, 62,125,250,192,215,215,183,209,144, 33, 67, 0, 0,173, + 90,181,194,234,213,171, 27, 13, 25, 50, 4,251,247,239,199,145, 35, 71,212,205,154, 53,155, 74, 8,137,162,148,158, 41,166,194, +233,180,113,227,198,194,150, 65,232,245,122,232,116, 58, 71,189, 94,239,152, 91, 22, 97,205,154,181,137, 23,206,159,194,212, 25, +243, 97,103,235, 80,195,192,238, 29, 50,120,202,148,196, 29, 43, 86, 96,197,254,253,152, 82,169,146,201,174,192, 64, 92, 80,169, +112,224,202,149,196,220,231,148, 58,190, 41, 43, 43, 75,121,230,204, 25,179, 3, 7, 14,192,194,194, 2, 85,170, 84,201, 23, 67, + 12, 43, 3, 43,178, 68, 85,159,186, 0, 30, 0, 0, 42, 57, 33,203,179, 50,110, 17,130, 84,202, 64, 93, 66,126,132,131,131, 3, + 4, 2, 1,158,190,126, 0,211, 84, 51,212,242,169, 7,161, 80,136,140,172, 52,140, 89,209, 19,238, 63, 39,160,154, 39,160,140, + 3,238, 79,130, 46,246, 14, 86,102, 71, 96,125, 49,148, 53,203,151, 47, 15,181, 90,141,205,155, 55,211,220, 50,170,184,202,126, +230,175,191,254, 58,104,206,156, 57,108,157, 58,117, 0,160, 70, 81, 2, 43,183,204,128,179,179,115,190,240,235, 51,104,148,235, +200, 73,163,100,221,218, 52,135, 64, 96,131,212, 44, 29,146, 50,116,176,180, 81, 96,234,164, 94,210, 75,181,157,235,108, 92,251, +231, 9, 66, 72, 29, 90,208,100,248, 63, 8,173, 86, 11,158,231, 79, 51, 12, 51,139,101,217,159, 5, 2, 65,135,220, 83, 25, 12, +195,196,179, 44, 75,202, 82, 86,242, 60, 63, 64,175,215,175,212,104, 52,102,121, 22, 49,142,227,160,209,252,223, 79,220,255,210, + 53,142,255,177, 22,172, 79,186,241,116,186,170,234, 13, 27,144,117,233, 18,196, 23, 46,224,128,147, 83,166, 74,165,154, 76, 41, +141,200, 45,236,126,216,190, 99,199,237,206,119,239,154,105,130,130,224,250,226, 5,132, 22, 22, 53,202, 26,128,109,219,182, 33, + 61, 61, 29,105,105,105, 0,128,223,126,251, 13,233,233,233,121, 3,249, 74,127, 1, 17, 26, 57,216, 85, 66, 44,130,193, 11, 24, + 69, 88,213,236,250, 10,149,105,180,115,184,125, 86, 26,227,140,160, 15,245,228,202, 36, 77,125,194,106,160, 74,204,134,115,195, + 42, 16, 64,208,168, 44, 97,204, 51,157, 10, 4,130,228, 55,111,222,116,242,240,240, 56, 9,192,230, 75,251,251, 41,165,111, 1, +140,255,156,123, 89,150,157,251,254,253,123,187,173, 91,183,142, 93,184,112, 33, 45, 40,176,242,254,231, 13,138, 52, 55, 55,135, + 80, 40,180,191,115,231,142,125,189,122,245,214,231, 22,100,197,137, 73,216,219,219, 67, 40, 20,194,220,220, 28, 89,233, 41,242, + 63, 22,207,106,102, 98,105,111, 53,101,202, 20,102,240,224,193,239,214,175, 95, 95,222,161,106, 85,207,231,207,159,127,232,220, +179,215,227, 51,103,206, 0,192, 38, 3,131,254,236,197,139, 23, 98,119,183,138, 2, 94,167,228,229, 34, 64,250,108, 13, 47, 54, +117,128,148,101, 33, 32,160, 50, 19,185,221,219,176,176,104, 0,241, 6,198,227,211,224,224, 96,161,139,147,189, 32, 35, 75,149, + 42, 23,240,226,247, 15, 31,188,170, 92,167,174, 23, 0,168, 30,222, 57, 42,169,234, 99,250, 62, 62,193,204,213,213, 53,204, 16, + 78,189, 94,255, 44, 52, 52, 84,228,236,236, 44, 12, 14,126,251,167,181,153,169,147,149,189,125, 51, 0,208, 36, 39,220, 32, 74, + 85,180, 80, 40,116,142,142,141, 77,208,235,245,209,134,134,243,205,155, 55, 34, 23, 39,123,193,201,211,103,246, 57,200, 77, 28, + 45,100, 18,115, 41, 3, 34,165,124,154, 88,175,143,149,153,200,157,222,135,135, 39, 82, 74, 35,139,227,249,131, 31, 59, 32, 39, + 15, 76,217, 82,240,248,173, 91,183,112,245,209,123,152,179, 28,132,186, 44,220, 59,114, 0,221,199, 77, 44,245, 91, 10,252,201, + 19, 80, 47,219,235, 93,121,240, 71,194, 41,167, 11,208,177, 72, 33, 84,170,192, 42, 13, 27,189,174, 21, 18, 89,136,142, 46,185, +112,237,223,191,255,252,221,187,119,231, 79,226,120,245,234, 21, 90,180,104, 1, 0,152, 63,127, 62,218,182,109,139,122,245,234, +225,213,171, 87,112,119,119,199,149, 43, 87, 36, 44,203, 74, 6, 12, 24,176, 24,192,153,210,130,180,105,211, 38, 12, 29, 58,180, +168, 1,211,239, 0,168,136,165,103,230,244,165, 59,109,146,147, 18, 17,159, 16,251,180, 12, 45,114, 12,158, 50, 37,113,163, 70, +131, 61,247,239, 99,160, 92,110,178,227,237, 91,116,168, 87, 15,213, 90,180, 72, 52,164,172, 43,202,138, 99,109,109, 13,145, 72, + 4, 86,232, 4,129,216, 15,140, 72,132,154,141,253,176, 98,178, 60,123,208, 55, 88, 75, 8, 82, 37, 98, 60, 17,153, 32,182, 56, + 78,189, 94, 15,161, 80,136, 3,231,118,224,185,197,159, 64, 6,112,251, 73, 23, 76, 28, 58, 19, 63,173, 30, 1,143,197, 9, 48, +247, 0,226,239, 1, 15, 38, 49,124, 90, 40, 63, 92,157,128,179,148,210,164, 98, 4,155,151, 76, 38, 67, 86, 86, 22,130,131,131, + 63, 80, 74,211, 75,248, 30,226, 90,181,106, 21,207,178,172,163,179,179, 51, 0,148, 47,174, 65,206,243,124,254, 56,171, 93,123, + 14,218,212,104,226, 42,109,221,200, 27, 59, 79, 46,194,247,189,214, 66,200, 18,112,156, 22, 43, 87,119, 4,167,206, 68,175,206, + 35, 72,211, 86,238,126,151, 78,106,134, 3,216,252,191, 92, 73,107, 52,154,227, 90,173,118, 34, 33, 36,131,101,217,241, 66,161, +208,158, 97, 24,119,142,227, 6, 18, 66, 94,136, 68,162,138,142,142,142,201, 49, 49, 49,105,165,113, 37, 37, 37, 81, 0,219,114, + 55, 35,254,102, 48,185, 25,184, 41, 33,132, 18, 66,154,230,171, 92, 74,121,125,114, 50,168, 58,167,241, 35, 20, 10, 41,128,130, + 51,148, 76, 44, 44, 44,136,208,197, 5, 68,146,211,224,166,192, 87,179, 49,234,116,134,185,134,225, 57,176, 32, 90,208, 2, 2, + 62, 75, 74,176,200,166, 37,198,139,103, 35, 86,108, 81,240,139, 6,244, 20, 28,120,182,140,193,161,153,153,153,208,235,245,150, +110,110,110,167,245,122,189,101, 94, 23,192,255,161,217, 56,132,101, 89,140, 29, 59, 22,200,237, 74,211,104, 52,136,141,141,133, + 90,173,134, 70,163,193,251,247,239,145,150,150, 6,141, 70,131,151, 47, 95,162,114,229,202, 96, 89,214,177,148,214, 13,108,109, +109,225,232,232, 8,117, 86,186,252,240,166,213, 29,150,205,159,110,211,207,141, 50, 91,215,254,202,187,184,184, 36,249,248,248, + 56, 72, 36, 18,109,173, 90,181,212, 39, 79,158,188, 0,160,123, 25,252, 96,157, 89,176, 96, 65,189,122,245,234, 85,180, 80,200, +181, 18, 49, 11,137, 62,139, 74,212, 73, 84,160, 76,164, 21, 92, 42,106, 33, 87,212,237,211,167,143,216,144, 74, 49,143,243,167, +159,126,170,226,229,229,101, 99, 97, 38, 79, 23, 48,136, 18,113, 92, 84,202,163, 59, 23, 1, 64,100, 99,167,132, 92, 81, 55,119, + 12,157,193,156, 83,167, 78,245,113,118,118,182,102, 24,146,170,215,106, 63,228, 23,248, 42,101, 28, 43,145,102, 65, 34,109, 60, +108,216, 48, 97, 25, 57,189,170, 87,175,110,109,105,110,150, 42,100, 72,184,136,211, 71,200, 40, 23, 41,214,105, 19, 36,118,246, +153,144, 43, 26,246,235,215, 79, 80, 28,103,158,245,170,176,101, 72, 32, 16, 32, 42, 42, 10,217,209,207, 33,138, 10,130,159, 66, +136,250, 14, 54,144,203,229,165, 55, 86, 70,190, 34, 24,249,138, 4,190,167, 36,240, 61, 37, 5,247, 63,177, 54, 45, 72,195, 71, +215, 21,131,194,227,179, 62, 17, 87,133,238,205, 21, 89, 37,126, 79,127,254,249,231,140,230,205,155,199,183,109,219, 86,115,250, +244,105, 16, 66,112,229,202, 21, 68, 69, 69,161,109,219,182,160,148,226,222,189, 28,227,236,211,167, 79,209,170, 85, 43, 77,147, + 38, 77,162,254,252,243,207,185,134, 36,206,208,161, 67,161,211,233,144,153,153,137,228,228,100,156, 58,117, 10,126,126,126,212, +196,196,164, 59, 91,174,205,162, 94,195,103, 52,240,173, 94, 3,235,215,174,208,136, 5,194,165,101,236,246,192,160,201,147, 19, +211,106,214, 76,222,149,149,149, 61,216,204,204,196, 45, 34,194,234,209,249,243, 54, 90,173,214, 32,142, 60, 43,142,139,139, 75, +190,184, 18,137, 68, 16,136,109,193,202,171, 65,108,221, 22, 38, 14,221,113,245,137, 68,109, 46,199, 81, 83, 5,206,201, 45,240, +162, 4, 63, 88, 68,175,215, 67, 36, 18,225,218,227,179,240,155, 9,248,205, 4,162,235, 30, 71,223,137,237, 96, 51,254, 13,204, + 61,128,216,155, 64,234, 10, 63,232,222,155,167,171, 19,112,160, 56,113, 5, 0,106,181, 90,197,113, 28, 8, 33, 16,137, 68,226, + 2,167,110, 95,187,118, 13,151, 47, 95, 6,128,224,188,131, 41, 41, 41,148, 97, 24,200,229,114, 0,144,151,212, 77,150, 55, 30, +236,218,189, 27,214,125,123,116, 36,119,158, 93, 68, 67,191,126, 72,202,212, 34, 46, 77,139,212,108,192,167,206, 44,248,182, 58, +138,231,239, 51, 80,163,186, 47,203,138,229,131,240, 63, 14,141, 70, 51, 82,173, 86, 39,168, 84,170, 12,149, 74,149,152,157,157, + 61, 76,169, 84,118,210,235,245,183, 4, 2,129,167, 84, 42,125,108, 98, 98,114,188,124,249,242, 12, 0, 56, 59, 59, 51, 78, 78, + 78, 59,254, 23,223,181, 40, 45,242, 63, 47,176, 0, 92, 43, 60,176, 76, 47,145,188,212,143, 25, 3,139, 19, 39, 32, 12, 14,198, +144, 65,131,204, 76, 76, 76,214, 18, 66,106, 17, 66, 26, 42, 20,138,245,243,230,205, 51,181, 89,178, 4, 78, 55,110, 32,236,212, + 41,232,132,194,135,159, 19, 8,165, 82, 9,129, 64,144,111,121,145,203,229,121,253,193,165, 10, 24, 78,143,187, 81,113, 65, 16, +163, 34,120,208,204,115,233, 77,238,247, 11,153,101,119, 42,189,178,251,219, 44,145,251, 2,219,250,118,107, 43, 52,186,159, 69, + 4,153, 98, 11, 41,194,195, 35,192,129,191, 91,150,240,169, 84,170,180,172,172, 44,212,168, 81,195,250,209,163, 71,110,126,126, +126, 86,185,199, 31,124, 97,102,242,119,118,118, 62,232,226,226, 18,234,236,236,124,144, 16,226, 95,134,219,183,222,188,121, 19, + 44,203, 98,222,188,121,200,200,200,128, 86,171, 69, 82, 82, 18,194,195,195,161,209,104, 16, 25, 25,137,215,175, 95, 67,163,209, + 32, 44, 44, 12,106,181,218, 32, 97,107,106,106,138,212,164,120,249,254, 63,126,237,176,104,254,108, 89,218,219,199,136,140,142, + 3,207, 41,163,151, 47, 95,254,218,221,221,253,178, 86,171, 45,199,243,124, 83, 74,233, 70, 67,133,102,174,163,210, 91,158,158, +158,245,150, 47, 95,222,116,246,210, 45, 18, 83, 54,131,138, 77, 37,188,216, 84, 76,197,158,245, 49,124,238, 58,233,210,197, 11, +159, 62,123,246, 44,217, 16,167,155,121,156,245,235,215,247,137,141,141,109,228,231,231, 87,195,161,138,135, 84,226,236,148, 40, +118,170,144, 68,149,217,151,152,242,149, 58,173, 93,187,246,209,189,123,247,226,202,194,233,236,236, 92,237,247,223,127,175, 83, +190,124,249, 58, 82,115,115, 89,102,106,234, 38,117,106,242, 22,161,141,131,140,177,182,233,181,107,215,174,187, 23, 46, 92, 72, + 44, 11,167,183,183,183,239,226,197,139,107,213,172, 89,179,150,163, 71, 85,169,204,217, 37, 65,228, 92, 33, 94, 86,189,182,148, +169,224,218,115,245,234,213,247, 31, 62,124,152, 96, 8,167, 64, 32,224, 24,134,129, 80, 40,132, 92, 46,199,245,235,215,209,175, +123, 59, 56,216,153,193,163,106, 85, 52, 27, 57, 14,167, 79,159,134, 88, 44, 6,195, 48, 96, 24,230,139, 29, 90, 26, 34,132, 74, + 67,113,226,171, 52,110, 74,233,153,107,215,174,253, 50,120,240, 96,113,251,246,237,113,255,254,125, 12, 29, 58,244,214,145, 35, + 71, 0, 0,247,239,223,199,196,137, 19,111, 93,190,124, 25,163, 70,141, 66,139, 22, 45,196, 55,111,222, 92,111,136,243, 81,189, + 94,143,109,219,182, 65,175,215, 67,161, 80,192,202,202, 10, 29, 59,118, 68, 64, 64,192,168,237,219,183, 7,177, 66,225,183, 29, + 58,247,192,233, 19, 71,240,250,101,192,168, 29,139, 7,148,217,153, 47,195, 48,104, 63,104, 80, 98,162,143, 79,242,142,244,244, +236, 97,150,150, 38,158,177,177, 86, 87, 15, 30,180, 49, 32,255, 16,142,227,242, 69, 85,158,216,200,159, 89, 38,182,133, 64,238, + 11,129,105, 29, 60,127, 43,210, 9,235,210, 39,162,218,244, 85, 73, 78, 70, 9, 33,224,121, 30, 66,161, 16, 53,171, 52,196,219, +221, 57,199,171, 12, 0,106,237, 76,130, 93,131,156,110,193, 15,203,237,240,227,176,249, 16,178, 34, 93,105,110,115,120,158,127, +153,148,148, 4,129, 64, 0, 15, 15, 15, 7, 66, 72,158, 85,106,101,243,230,205, 23, 12, 28, 56,112, 25,128, 31,114,159, 95,161, + 87,175, 94, 78, 90,173, 22, 79,159, 62, 5,128,199, 37,164,125,254,172,193,228,244, 48, 73, 37,167,106,240,243, 26, 9, 75,203, +234,136, 74,214, 32, 58, 89,131, 45,127,116,197,227,155, 63,227,209,133,129,248, 16, 27, 11,153, 67, 55,112,122,181,239,255,122, + 37,157,144, 3,101, 66, 66,130, 94,171,213, 42, 53, 26,205, 91,173, 86,251,144, 82,234, 42, 20, 10, 47, 74,165, 82,115, 19, 19, +147, 38,114,185,124,187,135,135,135, 64, 38,147,109,151, 72, 36, 69, 10, 75,115,115,115, 98,110,110,206,154,155,155, 11,138,218, +242,174,115,117,117,165, 94, 94, 94,212,215,215,151,250,248,248,208,170, 85,171,210,138, 21, 43,166, 59, 58, 58,142,180,182,182, +102,255,198,215,189,246,111, 26,228, 94,216, 77, 3, 0,192,205,202,202, 84,167,211, 70, 94,188,120, 81,203, 48, 12, 76, 76, 76, + 48,120,232, 80,230,143,223,127,111,220,207,223,255,202,136,214,173,207, 94,185,124,185,102,189,122,245, 64, 41, 5,195, 48,216, +191,127,191, 82,165, 82, 38,149, 47, 95,222,194,144,194,162,224,135,147,158,158,158, 47,176,210,210,210, 96,111,111,111,112, 23, + 97, 86, 58, 46, 93, 62,247, 56,133,114,223,135,183,127,187, 74,187, 52,182,107,189, 84,158, 19,164,113, 58,164, 41, 41, 50, 84, + 16,220,103,172,234, 13,118,239,166,125,223,170,222,235,235, 65,119,146, 84,156,170, 76,179, 31,226,227,227,103,246,234,213, 43, +201,209,209,145,152,153,153,193,217,217,153,233,210,165, 75, 98, 68, 68,196,130,207,141,120, 27, 27,155,190,205,155, 55, 63, 25, + 21, 21,213,243,250,245,235, 21,111,220,184,209,179,121,243,230, 39,109,108,108,250, 26, 72,113, 96,198,140, 25, 89, 98,177, 24, +245,235,215, 71, 70, 70, 6, 52, 26, 77,169, 91,169, 22, 65,158,135, 84, 42,197,193, 45,171,219, 44,154, 63, 91,150,244,234, 46, +158,223,186,136,115,161,234,236,185, 75,215,220,147, 74,165,159,245,190,238,118,242,106,213,156, 76, 95, 77, 28,218, 39,122,250, +180,105,166, 47, 94,188,144,141,159,240, 3,194,226, 82,169,184,253, 74, 22, 77,103, 51,207,178,108, 72,135,111, 90,224,151,197, +115,154, 2, 24, 85,106, 69,109, 39,175,230,235,100, 26, 56,101, 68,191,144, 9, 19, 38,200,150, 46, 93,170,170, 91,183,174, 46, + 38, 38,198, 92, 97, 99, 87, 91,104,109,227, 31, 26, 27,103, 81,187, 78,157,183, 19, 38, 76, 80,149,149,115,206,156, 57, 38,183, +111,223, 22,181,108,217,146,198,199,199, 91,138,100,178, 6, 66, 83,243,166,209,137,137, 86,173, 90,181,122, 59,100,200, 16,238, +115, 56,223,188,121, 35,170, 93,187, 54,141,137,137,177, 52,177,182,173, 47,178,182,109,242, 62, 38,214,178, 70,205,154,193, 19, + 39, 78,212,149,196,217,107,221, 95,226, 68,161, 80,196,248,249,249, 97,238,220,185, 88,184,112, 33,122,247,238,141,208,176, 80, + 52, 29, 50, 2,149, 7,143,194,169,123, 15, 16, 29, 29,141,153, 51,103,194,221,221, 29, 66,161, 48,248,107, 20, 26,134,136,172, +226,186, 15,189, 43,147,107, 37,141,179, 42,141,187,103,207,158, 99,242, 92, 49, 12, 27, 54,236,214,218,181,107, 27, 13, 27, 54, + 12, 0, 80,191,126,125,252,252,243,207,141,102,205,154,117,107,209,162, 69,104,217,178, 37, 92, 93, 93, 75,245, 39,198,113, 28, +244,122, 61,250,245,235, 7,189, 94,143,132,132, 4,188,121,243, 6,155, 54,109, 2,165, 84, 10, 0,142, 78, 46,181,197, 98, 49, +158, 61,121,152, 61,123, 88,189, 63,203,208,136, 34, 5,191,173,204,204, 76,244, 28, 61, 58, 49,178, 74,149,228, 13,137,137,217, +195, 45, 45, 77, 42,125,248, 96,101,170,209, 56,151, 52,230,180,160, 24, 42,232,150,160,240,150, 55, 65,197, 80,228,113,142,234, + 55, 17,210,115,141,243, 69,150,162, 2,192,235,129,199,211,132, 24,219,109, 46,252,170,213,128,129, 51,214,238,221,191,127, 31, + 98,177, 24, 19, 39, 78, 36, 44,203,174, 38,132, 16, 74,105, 10,165,116, 46,165,116, 42,165, 84, 69, 8, 33, 18,137,100,227,208, +161, 67,161, 86,171,113,235,214, 45, 0,184, 92,156, 48,165,148,230,191,123,102, 50, 1,199,139,113,251,201, 57, 92,184,113, 8, +161, 81, 9,248, 16,175, 2, 4,230, 80,101, 69, 66,171,140,130, 38,245, 9,210,213, 38,255,186, 46,167,228,228,100,158,227, 56, + 13,199,113, 90,158,231, 43, 2, 48, 19, 8, 4, 16,137, 68,144,201,100, 3, 77, 76, 76,158,200,100,178,129, 98,177,184,200,251, +211,210,210,104, 90, 90, 26,151,150,150,166, 47,106,203,187, 46,207,247,150, 76, 38,131, 68, 34,129, 72, 36,138, 21, 8, 4, 3, + 9, 33, 7,240, 55,251,167, 42,168, 69,254,215, 81,148,163, 81, 80, 51, 89,159, 67,235,255, 48,239,213,111, 64,150,159,159,159, +165,179,179, 51, 8, 33,232,218,173, 27,105,126,253,186,169,208,201, 9,214,181,106,229,123,207,189,116,241, 34,206,157, 59,151, +117,250,216, 81,231,161,195,135,119, 66, 65,103,207,159, 70,158,192,205,205, 45,255,185, 49, 49, 49,121, 9, 8, 0, 72, 79, 79, +135,173,173, 45, 98, 98, 98, 96,160, 97,100,215,244,105,247,166,197,215,155, 89,185,158,169,144,156,205,138, 5, 71, 41,132,132, + 3,148, 20, 58, 14, 80,235, 40,106, 87, 98,173, 46, 40,245,150,167,238, 31,121, 15, 96, 87, 25, 45, 88, 87, 9, 33, 35,121,158, + 63, 4,128,185,126,253, 58, 31, 24, 24, 56,198,208, 1,233, 69,193,196,196,228,167, 43, 87,174, 88,253,244,211, 79, 41,167, 78, +157, 74,235,216,177,163,249,166, 77,155,172, 90,180,104,241, 19,128,125,165,246, 89, 82,170, 36,132,236,140,136,136, 24, 83,167, + 78, 29, 36, 39, 39, 67,171,213,226,241,227,199,112,119,119,199,163, 71,143,224,225,225,129,135, 15, 31,162,106,213,170,121, 83, +166,193,243,124,169,221,184,209, 17, 31, 20, 38,234, 20,179,232,251,103,240,250,249, 35,156, 9, 81,103, 47,223,182,255, 76,181, + 26,181,179,202, 90,128, 3, 64, 85,123,185,143,179,157,245,133,165,243,231,216,133, 93,221,143, 35,219,214,241,215,206,158,245, + 22,155, 98,100,179,190, 19,122,104,116, 40, 15, 64,210,160, 94, 29,250,141,197, 27, 94, 86, 17,177,151, 95,150,236,201,188,170, +189,220,199,201,214,250,252,242,165, 11, 77,223,157,221,142, 3, 27, 87,210,195,187,247,250,169,128,122,213,170, 85,107, 79, 8, +113, 4,160,207, 77, 35,131,150,160, 41,138,243,242,169, 83, 53, 85, 64, 61, 55, 55,183,246, 66,161,176, 98,174,149, 47,234,107, +112, 86,175, 94,189,125,110, 11,159,230,142,185, 42,211, 82, 57,195,134, 13, 91, 49,101,202,148,137, 58,157,206,186,128, 5,146, +221,180,105,147,128,227, 56,134, 82,170,101, 24, 70,123,254,252,121, 78,175,215, 71,171, 84,170,209, 95, 90, 96,244,232,209, 3, +247,238,221,155,143, 18, 6, 47, 23,170, 16, 4, 86, 86, 86,250,210,132,151,161,220,215,175, 95, 95,248,237,183,223, 78,223,183, +111,223,155,181,107,215,118, 30, 53,106, 20,246,239,223,143, 42, 85,170,224,217,179,103,152, 57,115, 38, 0, 52,154, 53,107,214, +137,173, 91,183,186,134,133,133,173, 48,196,106,171,215,235,177,119,239, 94,116,237,218, 21,182,182,182,112,114,114, 2, 33,228, +234,240,225,195,127, 7, 0,150,176, 34, 0, 80,171,212,106, 79,207, 58, 6, 91,108, 93, 93, 93,243,203,186,216,216,216,252,153, +127,109,190,253, 54,113,203,210,165,248, 83,169,196,112, 75, 75,147, 72, 23, 23,199, 19,239,222,141, 32,132,108, 42,206, 34,156, +103,197, 41, 77, 92,149,193,162,140,188,177, 77,246,246,246,152, 53,118, 9,150,252, 49, 11,111,113, 13, 85,250, 3, 47, 87, 1, + 93, 93,199,161,142, 95,125, 56, 57, 57, 25,154, 69,174,126,255,253,247, 15, 3, 3, 3,235, 84,175, 94, 29, 11, 22, 44,232, 50, +111,222,188, 11,132,144, 17,121,179,152, 9, 33,149, 88,150, 93,125,241,226,197,214,102,102,102,120,245,234, 21, 14, 30, 60,248, + 22,121, 35,244,139, 8,103, 94,165, 47, 20, 10, 81,190,156,135,234,117, 88,166, 73,124,212,109,220,186,121, 12, 85,252,126,128, +204,161, 19,172, 60, 23, 65, 27,180, 6,154,164, 11,176, 42,215, 17,145, 97,239,192, 10, 36, 1,255, 54,145,149,146,146, 66,173, +173,173,121,142,227,206,115, 28, 55,147,227,184, 69, 2,129, 32,111,252,173,175, 94,175,255,226, 25,129,121,190,183,242,120, 41, +165,114,129, 64,144,206,178,172,146, 16,242,183, 78, 55, 44,168, 69,254, 53, 22,172,143, 50, 52, 79,132, 85, 61, 60, 56, 17,131, +237, 93, 59,117,202,126,250,244,105,126, 43, 79,245,224, 1,178,206,157, 3,199,113,160,148,226,198,245,235, 24, 56, 96, 64,166, +144, 37, 91, 42, 85,170, 72, 9,253,203,247, 10, 33,228, 19, 63, 86, 34,145,168, 87,175, 94,189,242, 11,157,136,136, 8,200,229, +114,136,197, 98,240, 60, 15,189, 94, 15,150,101, 97,110,110, 14,189, 94,175, 41,226, 99,107, 85, 40, 49,116, 92,114, 86,207,173, + 29,250,199, 56,101,106,233, 72,139, 74,168, 32,146,229,127,148, 14,102, 4,157,253,132,176, 17,196,211,203, 43, 90, 71,243,234, +164,158,133,215,254, 42, 42,156,133,206,123, 84,175, 94,253,247,129, 3, 7, 50, 0,208,170, 85, 43,166,122,245,234,191, 17, 66, + 60, 74,184,167, 68, 78,169, 84, 42, 1,128,147, 39, 79, 38,191,121,243,166,221,201,147, 39,147, 11, 30, 55,144,115,211,178,101, +203, 96, 98, 98, 2,189, 94, 15,141, 70,147, 63,254,170,224,175, 86,171,133,141,141, 13, 78,159, 62, 13,142,227, 78,151, 22, 78, + 47,223,234,153,105, 2,139,184, 29, 39, 46,227,108,152, 54,179,172,226,170, 32,103, 21, 71, 69, 85, 7, 27,235,139,203, 23, 47, +180, 77,121,251, 24,145,145,145,244,252,185,211,119,149,148, 70,165,166,211,217, 41,153,180,106,182,154,202,234,186, 34,252,226, +198,169,116, 86, 19,232, 64, 62,237, 26, 46,200,233,227,168,168,234,108,107,125,126,229,138,165,166,169,193,143, 16, 19, 27,139, + 51,167, 79, 62, 85, 82, 26, 69, 41, 61, 76, 41, 29,194,243,124, 53,158,231,171, 81, 74,135, 20, 39, 90,202,202,169,213,106,171, +105,181,218,175,202, 89,214,112, 22,152, 65,136,249,243,231, 7, 71, 70, 70,142,138,139,139,235,145,183, 37, 39, 39,119,205,200, +200,232,152,157,157,221, 94,185,170,162,121, 86, 86,150, 93, 70, 70,134,163, 82,169,172, 77, 41,125,108,104,254, 44,140,130, 21, +108,116,116,244,188,232,232,104, 82, 98,254, 28,249,138,172, 95,241,253,238,131, 7, 15,218,127, 9,119,225,112, 38, 36, 36, 28, +218,187,119,111,141,202,149, 43,187, 14, 25, 50, 4, 27, 54,108,192,218,181,107,213, 0,176,117,235, 86,117, 1,203, 85,185,208, +208,208, 58, 69,117, 15, 22,228,100, 24,102, 87,155, 54,109,232,141, 27, 55,208,181,107,215,124, 7,160,155, 55,111,134, 94,175, + 79,111,217,178, 37, 15, 0, 74, 85,118, 58,229, 41, 52,218,162,251,217,139,138, 79,177, 88,252, 77, 65,127,127,121, 78,148,197, + 98, 49, 40,165,168,218,168, 81, 98,170,159, 95,242,182,180,180,236,121,213,170,153,141,240,244, 28,226, 5, 12, 40,138,147, 16, +242,145, 21,167,240,246, 57,223,102, 30,242, 56, 92, 92, 92,176,112,242, 74,184, 60,232,129,171,141,173, 81, 35,105, 8,218, 54, +238,140,170, 85,171, 26,204, 73, 41,165,241,241,241,163,230,204,153,195,139,197, 98,124,247,221,119, 56,114,228, 72,171,142, 29, + 59,134, 57, 59, 59,135,249,248,248,196,142, 25, 51, 38, 36, 49, 49,177, 99,253,250,245,145,156,156,140,209,163, 71,107,147,147, +147,123, 21, 28,199, 89, 56,156,121, 78, 49, 69, 34, 17,186,116,104,149,252,199,111, 43,249,150, 77,199,192, 68,102, 6,157,176, + 28,146, 51,117, 72,201,162,208, 72,234, 65, 44,146,160,173,191, 15,238,157,223,145,205,105,178,118,126,110,158,255,220,248,252, +255,193, 73, 41,165, 28,199,169,244,122,253, 86,158,231,103,231,245, 36,229,249,179, 42,108, 12, 45,107, 56,121,158,207,119,221, +144,203,173, 16, 8, 4,199, 89,150,245,201,155, 72,245,119,188,251,191, 13, 31,185,105,200,251, 37,132,231, 56,142, 71,165,202, +149, 76,195, 66,195,215,245,238,221,107, 88,251,246, 29, 76, 58,116,232, 32,245, 9,202,233,162, 56,121,242, 36,142, 28, 57,146, +125,225,194,133,116,137,144,221, 90,174,124, 57,123,142,227, 65, 72,201, 22, 18, 83, 83,211, 9, 51,102,204,144,165,165,165, 97, +237,218,181,124,141, 26, 53, 24,185, 92, 14,173, 86,139,173, 91,183,234,124,124,124,132, 12,195, 32, 45, 45, 13, 12,195,188, 54, + 80,241, 62, 39,132,180,253,189,121,247, 35,117,198, 14,181,246,110,222,192,178, 89, 57,103,232,106, 81, 68, 71,132,226,205,229, + 11, 41, 47,207,175, 78,130, 42,174, 59,165, 52,176,172,145,228,228,228, 52,247,194,133, 11,118,227,198,141,163, 42,149,138,132, +135,135,211,197,139, 23,219,125,247,221,119,115, 81,138, 47,156,146,190,163,212,212, 84, 16, 66,248,220,204,154, 87,184, 24,108, +126,165,148, 6, 16, 66,142,119,235,214,173, 75,203,150, 45, 17, 20, 20,148,223, 21, 88, 80, 96,229,205, 38, 92,178,100, 73, 42, +240,151,131,192,226, 32,145, 72,176,249,208,185,179,209,145, 31, 76, 42, 85,114, 83,153, 91, 90,242,159, 99,185, 2, 0, 49,195, +204,251,101,225, 28,187,196, 87,247, 72,192,221, 43,252,193,231,113,241,122,142, 22,237,161, 63, 35,154,230,170,254,146, 91, 47, + 12, 59,111,217,146,133,230,121,221,151,251,158,196,164, 19,142,142,251,178,166,198,255, 8,231,255, 1,114,102,248, 69, 19, 39, + 39, 39,154,215,133, 87,148,192, 42, 13, 69,117, 15,126, 46,247,251,247,239, 23,215,170, 85,107, 74,112,112,240, 65,111,111,239, + 81, 0,202,171,213,234,212, 89,179,102, 45,223,186,117,235, 48, 67, 44, 87, 0,176,127,255,254,213, 67,135, 14, 61,215,169, 83, +167,169, 60,207, 87, 47, 80, 33,189,183,179,179,203,247,200,149, 16, 23, 59,109,228,176,126,211, 50, 51, 83, 12,246, 83,167, 80, + 40, 70,204,154, 53, 75,154,149,149,133,245,235,215,243, 62, 62, 62, 76, 94, 99,104,247,238,221,122, 15, 15, 15, 65,175, 49, 99, + 18, 87,197,198,226,231,155, 55,179,166,249,250,214,216,246,230, 77,237,162, 44,236,121, 21,102, 81,150,171,188,225, 21,159, 81, +145,127, 36,176,242, 68,214,220,137, 75, 17, 21, 21, 5,145, 72, 4,119,119,119, 20,215,221, 84, 66,185,244,140, 16,210, 47, 60, + 60,124,231,250,245,235,197,245,235,215, 71,221,186,117, 33, 20, 10, 43,228,133, 87,163,209,224,249,243,231,152, 49, 99, 6,125, +240,224,193,119, 37, 45, 80,207,113, 92,188,135,135, 71,126,247, 17, 33, 36, 41, 93, 77,204, 15,120,213, 83, 12, 25,121,144,220, +122,120, 7,209, 90, 30,106, 29,143, 74,149,107,162, 89,187, 85, 56,113,246, 5, 23, 29, 22, 24,168, 83,166,108,249, 55, 86,220, +201,201,201,212,206,206, 78,159,107,148,104,152, 55,164, 38,111,102,232,151, 90,176,114, 27,236, 33, 60,207,199, 49, 12,211, 48, +215,247,150,153, 64, 32,184,204, 48,140, 13, 0,253,223,241, 94,133,181,200,191,166,139,240, 35,245,202, 50,183, 55,108,252,227, +155,253,123,247, 57,176, 44,227,240, 46, 36,228, 97,231,238, 61,163, 46, 94,188,104, 37, 50, 55,175, 11,128,215,140, 26,117, 87, +171, 86, 38,159, 58,126,188, 66,165, 74, 21,253,114, 23,123,166, 60,203,220, 46,233,129,153,153,153, 89, 55,111,222,204,158, 62, +125, 58,137,136,136,216, 99,111,111,223,231,236,217,179,138,238,221,187, 43,131,130,130, 14, 59, 56, 56,116,105,222,188,185,233, +148, 41, 83,212,153,153,153,235,202,144, 48,129,132, 16,175, 7,115, 86,124,251, 96,217, 31,173, 33, 96, 27, 66, 45, 4,120,221, +109,104, 51, 46, 2,216, 67, 41,253,172, 76, 33,151,203,253,228,114, 57,158, 62,125,154, 82,175, 94, 61,141, 74,165, 18, 45, 90, +180,200, 90, 46,151,251,125, 65, 70,162, 41, 41, 41,224,121, 94, 0,128,228,254,130, 47,251, 90, 57,125, 59,119,238,124,252,192, +129, 3,109, 58,116,232, 0, 87, 87, 87,232,116, 58,120,120,120, 64,163,209,192,221,221, 29,106,181, 26,243,231,207, 71, 90, 90, +218, 36, 67, 22, 17,150, 74,165, 16,139,197,168,234,229,155, 45,149, 74,241,185,226, 10, 0,228, 66,198,245,245,169,109,136, 79, + 74,228, 15, 60,139,139,203,214,114,109,131,227,179, 94, 22,190, 46,155, 67, 86,243, 33,227,163, 0, 64,205, 35,179, 68, 78, 49, + 92, 95,159,218,132,184,248, 68,236,127, 18,147,154,165,229,219,189, 46,130,179, 76,225,252, 31,225,236,181, 46, 8,205,190, 55, +252,218,131, 35,191,172,128,248, 28, 33,149,135,192,247,148, 96,163, 23,197,198,117, 69,250,184,250, 18,238, 92,203,212,241,220, + 74, 37,162, 95,191,126,211, 66, 67, 67, 23,230,250,187,218, 88, 22,174,109,219,182, 5, 3, 24, 90,210, 53,251, 86, 12, 61, 10, +224,104, 89,120, 51, 50, 50, 84,143, 31, 63, 86, 77,153, 50,133, 68, 68, 68,156,117,112,112,104,115,238,220, 57,147,238,221,187, +171, 3, 2, 2, 46, 59, 57, 57, 53,105,213,170,149,226,204,253,251, 81,217,239,222,157, 58, 21, 26,234,162,227,249, 83, 37, 9, +162,175, 37,174,242,248, 10, 90,134,242, 68,150,147,147, 19, 42, 84,168,240, 69,223, 61,165,244, 0, 33,228, 85,163, 70,141,142, + 12, 25, 50,164, 74,189,122,245,224,225,225,129,228,228,100, 68, 70, 70,226,214,173, 91,216,180,105,211,125,165, 82, 57,174,160, +101,181, 40, 36, 37, 37,125,178,140, 16,145, 89, 59,237, 88, 63,239,228,195, 91,117, 61, 26,119, 24, 44,243,117,226,241,255,216, +187,238,248,166,170,247,253,156,123,111,246,106,186, 7, 45, 45,171, 20, 1,129,150,189, 17, 20, 4,148, 33,227,167, 40, 75, 11, +136, 95, 69,144,161,236, 45, 8,130,202, 16, 4, 4, 68, 16,112, 34,160, 50, 4, 89, 2,130, 34,101, 83, 40,208, 61,210,149, 54, +205,186,247,252,254,104, 18, 67,233, 72, 74,193,130,121, 63,159,243,105,146,155, 62, 57,251, 60,231, 61,239,121, 95,147,153,226, +206,173,235,152, 61,125, 93, 97,202,173,171, 23,204, 86,115,191, 71,221, 7, 86, 5,210,132,231,249,111, 45, 22, 75, 77,155, 54, +182,202,124, 90,153, 76, 38,189,213,106, 29,198,113, 28, 47, 18,137, 54,177, 44, 91,207, 22,214,110, 30,165,148,123, 80, 4,235, +177,212, 96,149,148,248,248, 59, 23,234,212, 9,123,239,155,175,119,182,163,148, 97, 41, 33, 5, 90,173,247,174,219,183,111,223, +229, 5,187,174,143,143,122,196,107, 35, 6, 19,129,136, 8, 17,120,129,101,142,197,199,223,185, 80, 65,195,141, 26, 60,120,240, +199, 10,133, 98,154, 78,167,251, 83,171,213,254,213,180,105,211,185,148,210,233, 6,131,225,123,181, 90,125,178,109,219,182,243, +195,195,195,151, 83, 74,255,112,115, 80, 91, 81,108,255,181,169,138, 85,182,115, 0,120,113, 28,151,251,247,223,127,111,141,138, +138,122,145, 82,234, 69, 8,201,173, 44,102, 81, 81,209,255,114,114,114,252, 98, 99, 99, 45,107,215,174,141, 26, 54,108,216,148, +184,184, 56, 81, 81, 81, 81,188,155,101, 54, 18, 66,250, 12, 26, 52,104,157, 72, 36,234,202, 48, 12, 17, 4,129, 58, 61, 7,165, + 20, 60,207,255, 80, 81,189,136, 68, 34,253,179,207, 62,171,170, 80, 43, 37,145,232, 93, 94,100, 76,252,184,213, 7,227, 22, 22, + 89, 40,181, 10,116,212,229,180,130, 82,175,144,157,186, 76, 27,185,140, 89, 36,140,251,248,231, 11, 11,141, 22, 65,176, 10,116, +116, 89,152,110, 45,134,143, 8, 38, 0,140, 97, 86,124,129, 53, 43, 28, 6,239,246, 99,195,146,239,171, 90,236,154, 38,184,227, +101,217,230,142,225,194,168, 7,128, 93, 10,217,114, 87, 6, 12, 24,240,192,236, 73,204,102,243,212,231,159,127,126,174, 86,171, +253, 32, 35, 35,227, 79,173, 86,123,161, 65,131, 6,227, 4, 65, 88, 94, 88, 88,184, 75,173, 86, 63,215,162, 69,139,241, 17, 17, + 17, 27, 19, 40,221, 88, 30, 22,207,243, 73,118, 45, 14, 0,106,215, 62,217, 9,132, 51,145,176, 88, 44,137,174,228,143,231,249, +164,166, 77,155, 18,103,109, 86,201,191,206,226, 42,110,137, 77,111,131,185,115,231,182, 5,240, 20,128,166, 0,242, 0,220, 2, +112,130, 82,250, 83,165, 9,156, 33, 43,153, 16, 18,115,241,236,145,209, 87, 46,156,125,201,126, 91,144,101, 37,231,121,115,225, + 38,139, 33,123,221, 99, 78,174,144,158,158,254, 39,128,240, 7,129,109, 52, 26, 95, 36,132, 92, 98, 89,150,138, 68,162,151, 88, +150,253, 85, 16,132, 15, 76, 38,211, 22,190,186,184,124,127, 4,132, 60,200, 62, 72, 8,233, 86,213,241,138, 60,152, 30, 76, 15, +166, 7,211,131,233,193,244, 96, 62, 56, 76, 95, 95, 95, 5, 0, 19, 33,132,178, 44,171,100, 24,198,155, 82,106,224,121, 62,215, +106,181, 90,178,179,179,133, 7,145,207,255,132, 6,203, 35, 30,241,136, 71, 60,226, 17,143,252, 55,133,231,249,162,156,156, 28, + 1, 0,124,124,124, 10, 8, 33, 38, 74, 41, 79, 41,229,179,179,179, 5, 79, 13,185, 72,108, 1,148,122, 19,192, 29,102, 90,153, +219, 4, 21,225,123, 48, 61,152, 30, 76, 15,166, 7,211,131,233,193,124,252, 48,255, 51, 98,183,209,121, 16, 9, 64, 55, 15,166, + 7,211,131,233,193,244, 96,122, 48, 61,152, 30,204,255, 90, 98, 60, 20,211, 35, 30,241,136, 71, 60,226, 17,143,120,164,106,197, + 99,131,229,166,216, 98,202,189, 14, 96, 0,128,186, 0,174, 3,216, 9, 96,149, 27, 1,143,157,241, 52, 0,166, 0,104, 7,160, + 54,128, 27, 0,142, 0,120,159, 82,170,247,212,120,233,226,239,239,255,158, 72, 36,210, 2,197, 78,241,236,127,157, 95,243, 60, +159,147,155,155,187,224, 1,245, 3,150, 82,202,187,147, 87,231,188, 57,255,181, 88, 44, 15, 44,159, 30,169,182,243, 72,125, 31, + 31,159, 45, 58,157,110, 8,165,244,138,167, 70, 60,242, 56, 73, 64, 64,192,104,179,217, 60, 77, 44, 22,207, 79, 79, 79, 95,253, +159, 39, 88,132,144,195, 0, 64, 41,237, 4, 0,106,181,250, 56,195, 48,181,109,207, 0, 0, 78, 30, 92, 75,253, 43, 8,194,141, +172,172,172,182,101,253,152, 66,161, 56,206,178,108,109, 66,136, 61,248, 44, 24,134,129,197, 98, 81,179, 44,155, 95, 6,102,162, + 78,167,107, 94, 77, 38, 69, 2,224, 71,111,111,239,162,185,115,231,174,234,220,185,115, 88,114,114,178,117,210,164, 73, 29,255, +250,235,175, 94,132,144,103,221, 33, 89,132,144, 54,132,144,141,205,154, 53,251,118,232,208,161,219, 91,181,106, 37,201,202,202, + 82,239,220,185,179,198,166, 77,155,206, 16, 66,134,184,235,170,226, 17, 88, 88,184,178,252,145,149,247,172,164,136, 68, 34,109, + 98, 98,162,218,214,103, 29,158,135, 45, 22, 11, 44, 22, 11, 10, 10, 10,208,180,105,211, 42,207,127,112,112,112, 52, 33,100, 69, +100,100,100,243,144,144,144,211, 0,198, 38, 39, 39,255,229, 78, 94,173, 86, 43, 40,165,142,124, 54,108,216,208, 51, 35,187,215, +135, 94,149, 72, 36, 61, 34, 35, 35, 91, 26,141,198,236, 27, 55,110,156,226,121,126, 6,165, 52,181,138,240,189, 0,204,144, 74, +165,173,234,214,173, 27,118,245,234,213, 59,102,179,249, 36,128, 57,148,210,220,170, 32, 87,157, 58,117, 58,186,114,229, 74,223, + 49, 99,198, 28, 37,132,180,247,144, 44,143,252, 91, 82,179,102, 77,109, 65, 65,193, 58, 0,209, 34,145, 40,200, 22,131, 48, 85, + 42,149,254, 41,151,203, 71, 30, 61,122, 52,199, 93, 76,158,231,103, 36, 36, 36, 4,181,110,221,122,113,227,198,141,103,103,102, +102, 22,153,205,230, 3,217,217,217,227, 41,165,121, 21,140,143,187,184,200, 35, 79,176,108,113,127, 58,223,245,128,227, 66, 19, + 18, 18, 2,212,106, 53,120,158,119,104, 7,236,139,153,179,123, 7,155,159, 37, 52,104,208,192, 92,193, 66, 19,150,152,152, 24, +160, 82,253,227,106,201,108, 54, 35, 40, 40, 72, 72, 74, 74, 10, 40, 25, 72,216,100, 50, 33, 52, 52,180, 58,249, 50,121,221,199, +199, 39,247,246,237, 59, 77,139,140,230, 57,175,253,239,221,247,134, 12,120,218,251,248,241,227,194,179,207, 62,107, 60,124,248, +240,235, 0, 92,114,142, 74, 8,241, 34,132,108,154, 52,105,210,108,153, 66,227,123,240,248, 5,227,166,157,187,147,154,213,175, + 69,198,143, 31,207,190,249,230,155,191, 69, 71, 71,111, 33,132,196,184,163,201, 82,171,213, 63, 73,165,210, 8,150,101, 97, 54, +155,111,235,116,186,103,170,209,194,216, 12,192, 89, 66, 72, 52,165,244, 79, 87,159,149, 39, 89, 89, 89, 48, 24, 12,247,164,134, + 13, 27,162,170, 93,144, 16, 66,184,176,176,176,239, 23, 46, 92, 88, 35, 53, 37, 5, 31, 46, 91,214, 26,192, 42, 0,173, 93,249, +255,244,244,244,123,242,217,160, 65, 3,120,196,173, 54,152, 50,123,246,236,133, 47,189,244, 18,120,158,135,193, 96, 8,185,118, +237, 90,163,105,211,166,245, 35,132,180,164,148,198,223, 39,190,127,100,100,228,165,113,227,198,249,180,108,217, 18,182,168, 18, + 33, 71,142, 28,105,189,126,253,250, 87, 8, 33, 13, 40,165, 25,247,243, 27, 62, 62, 62, 91, 62,251,236, 51, 95,133, 66,129, 31, +126,248,193,183,107,215,174, 71, 8, 33, 29, 42, 75,178, 8, 33,140,175,175,239,155, 0,158, 18, 4, 65, 2,224,100,118,118,246, + 60, 74,169,217,211, 99, 60, 82,158,248,249,249,189,154,159,159,191, 82, 42,149,138,189,189,189,161, 80, 40,236, 49, 8,107, 74, +165,210,154, 82,169,180,231, 83, 79, 61, 53,246,224,193,131,229,122,196,111, 27, 29, 52, 28, 12,153,195, 18,134, 5,128,134,145, +190, 26, 47, 47, 47,204,153, 51, 71,217,167, 79, 31, 37, 0, 28, 61,122,116,232,176, 97,195,186, 18, 66, 26,151, 69,178, 74,227, + 34,143,133, 6,139, 82,122,184, 68, 65, 33,151,203,177,125,251,118,176, 44,123, 87, 20,247,210, 94,215,172, 89,179,194, 31,179, +107,192,118,237,218, 5,141, 70, 3, 47, 47, 47,199, 2, 35,149, 74,113,224,192, 1,136, 68, 34,112, 28, 7,145, 72,132,230,205, +155,163,156, 0,243, 15, 68, 6, 54, 42, 14, 50, 89,154,243,198, 14,117,229, 24,240,230,172,193,133, 69,230, 22, 0, 10,114,178, +179,179, 79,127,243, 77,114,179,250,245,197, 91,182,108,105, 89,163, 70,141, 1,174, 18, 44, 0, 83, 98, 98, 98,190,102,229, 94, +126, 67,135, 13, 31, 58,146, 99,204,175,140,122,103,254,157,148,204,130,216,216,216,111,126,248,225,135,161,139, 22, 45,186, 56, +113,226,196, 41, 0,166,186,154,127,137, 68, 18,113,237,218,181, 72, 65, 16,240,228,147, 79, 86,155,112, 3,118, 2, 69, 41, 5, + 33,228, 46, 34, 85,222,179,138,196,174,177, 42, 45, 85,181,212,168, 81,163,193,203, 47,191,236,167,203,204,196,135,203,150,217, + 63,110, 94,209,113,161,253, 40,208,100, 50,225,133, 23, 94,120,153,231,121,206, 78,254,140, 70,163, 41, 55, 55,183,200,233,166, + 78, 6,165,244,105, 23,234,179,182, 82,169,252, 0, 64,180,193, 96,168, 1, 0, 74,165, 50, 73, 16,132,111, 11, 10, 10,166, 82, + 74, 13,149,108,167, 48, 0,141, 80,118,200, 38,186,112,225,194,171, 83,166, 76,137,127,216,152,132,144,136,192,192,192, 5, 3, + 7, 14,196,238,221,187,177,103,207, 30,139, 92, 46,231,134, 13, 27, 70,198,142, 29,235, 61,110,220,184,158, 0, 62,186,207,102, +238, 57,123,246,108,159, 39,158,120, 2, 59,119,238,196,185,115,231, 12,145,145,145,242,206,157, 59,131,227, 56,159,247,222,123, +239, 89, 0, 27,239,231, 7,116, 58,221,188,119,222,121,103,211,214,173, 91,213, 55,110,220,192,138, 21, 43,252, 6, 15, 30,124, +152, 16,210,201, 85,146, 69, 8,145, 2,120, 19, 64, 23,150,101, 59, 12, 27, 54,204,250,191,255,253, 79,196, 48,140,101,217,178, +101,254,235,215,175, 31,236,231,231, 23,157,153,153,233, 49, 51, 40, 71, 88,150, 53, 11,130, 32, 2, 32,163,148, 26, 43,122,255, + 56,149,221,215,215,119, 76,118,118,246,170,160,160, 32, 4, 6, 6,222,179,214, 26,141, 70,200,100, 50,113, 80, 80,208,103,125, +251,246, 21,125,247,221,119,101, 30,245, 17,150,204,248, 97,219,220, 26, 62,222,106, 0,192,242, 79,127, 46, 4,128,239,190,251, + 14,201,201,201,240,246,246, 70,227,198,141,217,185,115,231, 6,143, 31, 63,254, 67, 0, 35,203,194, 42,201, 69, 30, 11,130, 85, +214,194, 96, 15, 36,106, 39, 82,118,242, 83,242,181,157,148,149,168,168,253, 37, 38, 5,162,215,235, 29,228, 74,163,209,192,182, +168,194, 98,177,220,131,203,243, 60, 74, 70,213,118,229,250, 39, 33,100, 12,128, 3,148,210,235,174, 84,130, 51,230,142, 55, 26, + 96,147,116,210,139,118,151,231, 61,223, 41,254,187, 9,192,241,155, 35, 87,172,236,212,169,198,155,211, 63,158,101,200, 74,206, +124,239,229,231, 34, 34,131,124,229,202,156,244, 92,159,168,168,238,112, 10, 31,224, 66, 62, 59, 14, 29, 58,116,243, 47,191, 39, + 16,153, 76, 44,230, 88, 86,212,254,201,250,190, 97, 94,172,151, 26,240,186, 19,127,245,248,240,225,195,159,156, 56,113, 98, 7, +119,202,206, 48, 12, 52, 26, 13, 54,111,222, 12,198,206,104, 93, 44,123, 85, 73, 41,237,206,217, 9,148, 78,167,195,238,221,187, +209,171, 87,175,179,132,144,104,219, 87,206, 82, 74,145,151,151,135,148,148, 20, 4, 7, 7,159, 37,132,136,156,143, 11, 75, 98, +218,181,168,118, 50, 53,108,216,176,151,173, 86, 43,231, 52, 57,148, 36, 46,247,144, 23, 87,203, 30, 18, 18,242, 11,128,167, 89, +150,133,169,168,200,244,193,210,165,206,143,255,112, 38, 87,101, 97,218,243,202,243, 60,119,246,236, 89,145,125,204, 0, 16, 1, + 80, 2,240,179, 5, 85,253,219,133,250,108,160, 80, 40,142,239,218,181, 75,211,188,121,115, 34,145, 72, 96,181, 90,113,254,252, +249,176, 69,139, 22,141,218,191,127,255,179,132,144,134, 37,131,154,187,216,238,141,142, 28, 57, 82, 80,167, 78,157, 82, 9, 99, + 94, 94, 30, 87,191,126,253, 78, 0,226,255, 5,204,196,180,180,180,190, 79, 63,253,244,232,212,212,212, 75, 86,171,117, 50,128, +198,126,126,126,103,251,247,239, 15,185, 92,222,197, 21,130, 85, 94,187, 7, 4, 4,244,105,219,182, 45, 86,172, 88,129, 69,139, + 22,117,163,148, 30, 32,132,116,205,203,203,219,255,252,243,207, 67,171,213,246, 45,141, 96,185,218,151, 8, 33,245, 59,118,236, +248,217,156, 57,115,212,187,119,239, 70,100,100, 36,242,243,243, 49, 97,194,132,128,153, 51,103, 30, 34,132,116,182,147,172,178, + 48, 9, 33, 13,165, 82,233,198,173, 91,183,170,234,212,169, 83, 71, 44, 22, 51,117,234,212,129, 78,167, 67, 81, 81,145,116,254, +252,249, 79,202,229,242,191, 62,250,232,163,141, 0,250, 63,236,241, 94, 34,175,185, 0, 52, 0,180,238, 28,175,150, 83,246, 92, + 0, 82,199,224, 17,137, 32,147,201, 32,147,201, 32,149, 74,113,245,234,213,233, 18,137,100, 25, 74, 9,229, 82, 26, 38,249,103, +209,106, 74, 8, 57,197,178,108,185,239, 75,154,128, 60,236,250,180,229, 57,148, 16,178, 28, 64,151,226, 41,159, 57,236,231,231, +247, 86,106,106,234, 45, 87, 49, 67, 66, 66,124,245,122,253, 71,193,193,193, 8, 12, 12,116,172, 29, 53,106,212,128,197, 98, 65, + 90, 90, 26, 40,165,200,201,201,129, 66,161, 64, 72, 72,200, 71,163, 70,141,218,185,102,205,154,172, 82, 49, 5, 44,122,126,240, +180, 25, 44,203, 50, 0,192,114, 42,213,184,119,129,136,136, 8,180,111,223, 30, 69, 69, 69,200,205,205, 69,163, 70,141, 56, 66, +200, 80,134, 97, 52,148,210,213,148,210,131,143, 51,129,183, 47, 72,179, 75,158,123, 18, 66, 32, 8, 2, 56,142,187,139, 96,149, + 76,118, 50,100,235,167,164, 34, 85,182,201,100,114,144, 43, 47, 47, 47, 7, 57,179, 90,173,101, 17,172,202, 48,243, 38,130, 32, +212, 38,132,172,113,149,100,149,148,161, 67,135,222, 99,207, 49,126,252,248,196,244,244,116,250, 66,247,166,202, 75,123,147, 83, +234,122,171,228,254,106,117, 45,153,183,143, 54, 43, 43,235, 4, 0,173, 27, 63, 81, 47, 38, 38, 70,190,233,155, 35,137,175,189, +189,112,110,243, 58,190,154, 38,161,126,222, 65, 94,114,137,138, 33, 5, 50,171, 37,209,199,199, 39,178, 18, 59, 50, 0,128, 86, +171, 5,199,113,213, 66,131, 69, 41,181, 18, 66,162, 9, 33,103,119,239,222,141, 86,173, 90, 57, 72,150,157,124,228,230,230,226, +252,249,243,232,216,177, 35, 0, 68,187, 98,139, 37, 8, 2,204,102, 51,204,102,179,131,184,136,197,226,123,136,139,253,187, 44, +203,254, 93,201, 34,204,245,246,246,238,216,165, 75, 23,201,182,237,219, 37,148,210, 2, 20, 7,164,214, 83, 90, 70,224,234, 18, + 98,181, 90, 29, 90, 53,145, 72,132,219,183,111, 59,180,192,118, 77,112,201, 35,242,178, 68, 42,149,190,243,213, 87, 95,105, 90, +182,108, 73,178,178,178, 32, 8,130, 99,114, 92,181,106,149,108,192,128, 1, 53,206,156, 57,243, 30, 42, 17,118, 6, 0, 41,139, + 8, 1,128, 70,163,177, 2,110,223, 62, 46, 21,211,106,181,146,118,237,218, 77,204,204,204,124,210, 96, 48,204,119,165, 31, 1, +248,193,150,236,115,202, 95,151, 46, 93, 50, 12, 26, 52, 72, 94,171, 86,173, 86,247,219, 87,235,215,175,223, 70, 36, 18,225,228, +201,147, 70, 0,246,157,244,225,115,231,206, 25,251,247,239, 47, 13, 11, 11,107,227,134,230,174,126,131, 6, 13,246, 5, 4, 4, +200,237, 26,203,129, 3, 7,138,214,174, 93,171, 78, 74, 74,130,217,108,198,148, 41, 83,208,187,119,111,248,249,249, 97,252,248, +241,129,139, 23, 47,222, 2, 32,166, 28, 76,153, 68, 34,217,124,237,218,181,200,224,224, 96,249,239,191,255,142, 38, 77,154, 32, + 51, 51, 19,169,169,169,208,235,245, 72, 77, 77,197,200,145, 35, 3, 62,252,240,195,144,106,180,214,228,136,197, 98, 40, 20, 10, +109, 78, 78, 78,238,125,224, 72, 1, 72,156,201,149, 84, 42,133, 84, 42,133, 76, 38,131, 32, 8,143, 69,144,224,114,218,191, 6, + 33,228,130, 88, 44,150, 42, 20, 10, 49,195, 48,144, 74,165,221,125,124,124,226,158,121,230,153,198,191,252,242, 75,130, 43, 56, + 69, 69, 69,155,165, 82,169, 40, 32, 32, 0, 0, 16, 25, 25,137, 38, 77,154,160,160,160, 64,200,205,205,133, 86,171,101,110,221, +186, 5,131,193,128,148,148, 20,132,135,135,139, 24,134,217, 12,224,217,210,240,142,157, 73,249, 20,192,167,246,247,254,254,254, +105, 0,228,246,247, 50,153, 12, 53,106,212, 64, 82, 82, 18,212,106, 53, 59,115,230,204,254,219,183,111,239, 71, 8, 25, 74, 41, +253,194, 9,106,246, 99,103,131, 69, 41,157, 69, 8,233, 84,218, 2,102, 59,143, 45, 83,115,101, 79,174, 16, 33,123, 32,202,192, +192, 64, 40, 20, 10, 40, 20, 10, 71,192, 81,158,231,239,193,183,237,232,221, 46,148, 82,169,196, 75, 47,189, 68, 87,175, 94, 61, +218, 70,178,174,185,250,191, 3, 87, 92,114,104,173, 74, 74,195,134, 13,143,191,247,222,123,125,126,253,245,215,164,230,117,106, +113,202,228, 91,122,153, 70,171, 69,104,205, 94,195,250,246, 63,135,226,219,132,174,202,181,252,252,124,121,221, 80,133,137, 97, +138, 72, 77, 41,167, 14, 86,138,165, 65,222,222, 53,196, 38, 99,186,198,219, 91, 98, 52, 26,115, 0,148, 27,156, 89,163,209,252, + 44,149, 74,195, 89,150, 5,203,178,240,243,243,243,162,148, 66,171,213, 34, 52, 52, 84, 21, 21, 21,117,133,227, 56, 48, 12, 3, +189, 94,127,235,230,205,155,221, 43,202,152,183,183,247,207, 82,169, 52,220, 30, 60,148,101, 89,199,133, 4,251,107,150,101, 65, + 8, 65, 97, 97,161, 75,152,148,210, 63, 9, 33,209,189,122,245,114,144,172,189,123,247,162, 71,143, 30,200,201,201, 65, 92, 92, +156, 51,185,114,233,120,208,217,168,157, 82, 10,177, 88,140,203,151, 47,223,117,116,109, 79,106,181,186,210,131,196,199,199,231, +232,192,129, 3,241,217,103,159, 81, 91,148,119, 37, 33,164,137,151,151,215,229, 11, 23, 46,184,100,231, 66, 41,133,217,252,207, + 87,237,125,220,121,124,185, 65,162,187,199,196,196,144,220,220, 92, 59,113,116,108,132, 88,150,197,202,149, 43,229, 45, 91,182, +156, 38,147,201, 38,138,197,226, 60,139,197,178,173,168,168,104, 62,165, 52,167, 58, 77, 62, 29, 58,116,120,251,206,157, 59,189, +195,195,195,119,221, 7,121,167, 45, 90,180, 48, 1,144,179, 44, 43,170,130, 5,140,181,245,173, 34, 59,201,167,148, 90, 99, 98, + 98,138,108,139,187,203, 17,144,253,252,252,182,236,217,179, 39, 52, 60, 60, 28, 22,139, 5, 86,171, 21,122,189, 30,135, 15, 31, +134,209,104,132,213,106, 69,100,100, 36,102,204,152, 81,244,214, 91,111,201,214,172, 89,147,174,215,235,135, 84, 0,251,214,206, +157, 59,149,193,193,193,114,131,193,128,248,248,120,196,196,196, 32, 63, 63, 31, 5, 5, 5, 40, 44, 44,132,217,108, 70, 94, 94, +158,150,231,121, 83,181, 89,104, 56, 14, 82,169, 20, 98,177, 56, 39, 60, 60, 28,132, 16, 89, 66, 66, 66,101,142,220, 52, 0,242, + 68, 34,145,196,153, 88, 73,165, 82,156, 60,121,114,170, 76, 38,251, 16,110, 4, 34, 46, 25,175,176,162,247,213,128, 96, 45, 23, +139,197, 82, 31, 31, 31,177,211, 58, 45, 86,169, 84, 8, 8, 8, 88, 1,160,167,139,229,110,230,227,227,227,152,223,155, 54,109, +138, 59,119,238,124,155,155,155,251, 74,122,122, 58, 24,134,217,204, 48, 76, 63, 59, 15,200,206,206, 70, 88, 88, 88,179,178,240, +218,197, 4,143, 6,161, 14, 13, 86,195,122, 62,170, 18,235, 20, 52, 26, 13,110,222,188,137,130,130, 2,122,245,234, 85, 50,102, +204, 24, 98, 50,153, 62, 39,132,156,160,148,222, 40,143,139, 60,234, 26,172, 82,207, 61,237, 71,132,165, 17,170,146,132,203, 21, + 34,100, 50,153, 84, 49, 49, 49,130,125,225,182, 39, 0,164, 44,130,101,211, 20,184, 45, 34,145, 72, 61,102,204,152,252,213,171, + 87,143, 34,132,172,165,148, 94,173,108, 37,237,250,122,107,224,162, 25, 83,102,248,132,212,170, 59,113,226,116,238,185,231,158, +251,125,211,166, 77,188,207, 19, 61,187, 30,252,249,139,192,143, 38, 76,218,187,103,207, 30,160,216,224,217, 85, 57,250,227,143, + 63, 6,141,127,115, 44,102,188,243,214, 79,154, 72, 63,137,138,248, 40,101,198,130, 12, 21,168, 65, 90,175, 65,239,111,118,237, + 74, 1, 80,110,164,121,185, 92, 30,126,245,234,213, 72,103, 2, 97, 54,155,161,213,106,177,105,211, 38,127,181, 90,237,175, 82, +169,192,113, 28,154, 52,105,226,170,134, 36,252,202,149, 43,145,106,181, 26,133,133,133, 48, 26,141,176, 88, 44, 16, 4, 1,132, + 16,136, 68, 34, 72, 36, 18, 40,149, 74,183,110,234, 57,147,172,189,123,247,162, 81,163, 70,200,206,206,198,165, 75,151,220, 38, + 87,206, 90, 33,103,123, 43,142,227,176,165, 78, 29,188,150,156,236, 32, 46,203,189,188, 48, 67,168, 92,116,135, 39,159,124,146, + 30, 59,118, 12, 63,253,244, 19,158,127,254,121,242,253,247,223,155,121,158, 23, 39, 37, 37,185,172, 13, 19, 4,193,145, 87,251, +124,237, 76,172,220, 37, 88, 86,171, 85, 45,145, 72, 80, 84, 84,228, 56,194,119, 78,181,107,215,134, 78,167,227,242,242,242,184, +228,228,100,197,188,121,243,254,119,232,208,161, 96, 0, 47,254,155,147,205,234,213,171,195, 95,123,237,181,219, 28,199,209, 30, + 61,122,188,124,235,214,173,190,193,193,193, 7,126,253,245,215,165, 0,234,187,139,231,239,239,255, 7,199,113,161, 42,149, 74, +188, 99,199, 14, 75,126,126,190, 56, 32, 32, 32,205, 78,104,237,117,109,177, 88, 18,115,115,115,155,187,130,231,239,239, 47,254, +228,147, 79, 44, 89, 89, 89,226,160,160,160, 52, 59,142, 82,169, 20,239,216,177,195,146,151,151, 39,214,106,181,127,228,228,228, + 84,136,151,153,153, 57,100,232,208,161, 71, 14, 28, 56,224,199,178, 44,110,221,186,133,172,172, 44,104,181, 90,108,222,188, 25, +225,225,225,216,185,115,167, 78,167,211,189,250,193, 7, 31, 76,211,235,245,174,184,108,232,216,170, 85,171,240,156,156, 28,104, +181, 90, 20, 20, 20,224,143, 63,254, 64,195,134, 13,145,156,156, 12,134, 97,160,213,106,177,106,213,170, 66, 66,136,174, 58, 44, + 50, 44,203, 58,180, 76, 78,164,168,168, 77,155, 54, 56,120,240,224,100,119, 72, 17,165,212, 36, 18,137,238, 34, 86,246,215, 98, +177,216,234,110,222,120,158, 23,219,108, 64,137, 43,239,171,129,116,146,203,229,226,146, 31, 22, 22, 22,138,131,131,131, 59,184, + 65,120,125,229,242, 98, 5, 83,120,120, 56,114,115,115,121,147,201, 52,120,243,230,205, 22, 0,136,137,137, 25,204,243,124,145, +213,106,101, 37, 18, 9, 10, 10, 10, 16, 16, 16,224, 91, 38, 32,131,201, 63,108,155, 23, 84,210, 6, 43, 56, 56, 24,209,209,209, + 48, 26,141, 72, 73, 73,193,225,195,135, 45, 60,207,127,185,122,245,106,193,223,223,127,196, 11, 47,188,192,158, 57,115,230, 13, + 0,111,151,199, 69, 30,105,130,101, 99,140,135, 0,116,182, 23,206,249,136,176, 60,205, 85, 9, 13, 22,169, 96,160,229, 36, 38, + 38, 42,149, 74,165,227, 51,139,197,130,144,144, 16, 65, 16, 4, 82,242,119,236,249,168,172,136, 68, 34,245,187,239,190,155,179, +106,213,170, 87,224,162,161,248,142, 55, 26, 96, 83, 9,114,245,233,162, 57, 43, 62, 89, 60,207,231,250,222,207,177,238,227, 37, + 60,207,227,204,147, 79, 62,217, 65,175,215,115, 94, 74, 11, 50,115,176, 23,197,126,176, 92, 34,131, 54, 95, 90, 27, 78,157, 58, +117,166,103,207,158,199, 54,124,245,141, 79,114,124,252, 9,105, 94,102,138,166, 94, 36, 39,174, 17,222, 47,191,168, 72, 60,120, +240, 96,127, 0, 47,148,135,197, 48, 12,226,227,227,145,144,144, 0,149, 74, 5,181, 90, 13,149, 74, 5,141, 70, 3,181, 90, 13, +181, 90,237,118, 29, 50, 12, 3,158,231,241,245,215, 95, 67,161, 80, 64,169, 84,222,149,236,228,234,126,218,166, 71,143, 30,208, +233,116, 80,169, 84,142, 99, 77,119,196,110,131,101, 50,153, 96, 50,153, 96, 54,155,121, 0, 34,142,227, 48, 50, 49,209,161,213, +113,135,184,148,148, 38, 77,154,208, 19, 39, 78,224,216,177, 99, 40, 40, 40,192, 39,159,124,130,224,224,224,167, 0, 76,119, 99, +199, 89, 39, 40, 40,168,199, 51,207, 60, 19, 98,177, 88,160,215,235,153,191,255,254, 27, 50,153, 12, 44,203, 34, 49, 49, 17, 91, +183,110,197,205,155, 55,237,218,195, 80, 66, 72, 45, 74,233,205,242, 22, 5,142,227, 28,187, 79,123,114,214, 98,177, 44,139,192, +192, 64, 4, 5, 5,225,211, 79, 63, 21,215,170, 85,171,247,191, 57,209, 44, 94,188,184,222,242,229,203,215,111,218,180,105,239, +144, 33, 67,182,159, 63,127,126,184,151,151,215,223, 7, 15, 30,156, 39,149, 74,133, 74,142,239,208,228,228,228, 0,231,143, 4, + 65, 80, 88,173, 86, 7,161, 45, 44, 44, 68,227,198,141, 93,198,187,112,225,130, 2, 0,230,205,155, 39, 2,160,176,187,255,176, + 99, 22, 22, 22,138, 26, 54,108, 24,234, 34, 25,184, 66, 8,233,208,173, 91,183,227,251,246,237,243, 14, 15, 15, 71, 82, 82, 18, +146,146,146, 80,175, 94, 61, 44, 88,176,160, 32, 47, 47,175,157,141, 84,125,239, 98,177, 67,188,189,189, 69,183,111,223,134,213, +106, 69,179,102,205,176,106,213, 42, 12, 30, 60, 24,141, 27, 55, 70, 94, 94, 30, 46, 92,184,128,141, 27, 55,122,139,197,226, 23, +254,237, 5,198,118,132, 85,102,170,140, 88,173, 86,141, 76, 38,203,147, 74,165, 18,187,253,213,225,195,135,221,214, 94, 57,111, +252,220,121, 95, 29,200,106, 73,145, 72, 36, 8, 10, 10,114, 25, 71, 42,149, 18,251,220,104,181, 90,145,155,155,203, 7, 7, 7, + 59,142,241,207,158, 61,203, 71, 68, 68,240, 44,203,178, 18,137, 4,132, 16, 40, 20,138, 50, 39,124,202,211, 57,207, 13,158,238, +184, 69,200,136,148,154,113,239, 22,111,246,207,158, 61, 11,179,217,140,195,135, 15, 91, 62,248,224,131,228,156,156,156,113, 0, +184,159,127,254,121,232,164, 73,147,216,128,128,128,110, 78,243,229, 61, 92,228,113,208, 96, 29,162,148, 18,155, 65, 57,177, 19, + 27, 74,233, 61,164,170, 44,194,101,211, 96,145,138, 6, 27,203,178,248,233,167,159, 28, 68,192,126,139,144, 82,138,170, 38, 88, +190,190,190, 5,173, 90,181,210,220,185,115,103,107,101, 53, 87,159, 46,154,179,226,253,121,179,124,178, 46,158, 64, 98,114, 10, +116,233,150, 51, 71,255,190,249, 45,128,111, 1, 0,107,158, 56,132, 81, 23, 87,186,138,249,132,191,162,233,147, 33,234,111,159, +238,217, 59,108, 80,236,219,204,235,175,191,222,126,232,208,161,185, 67,134, 12,121, 83,165, 82,213, 55,155,205,217,223,236,222, +157, 48,104,208,160, 90, 60,207, 15,173,200,103,136,197, 98,185,213,191,127,127, 71,221, 6, 5, 5,105,182,109,219, 22,168, 86, +171,241,242,203, 47,103, 36, 36, 36, 56,142,133,242,243,243,111,185,146, 71,179,217,124,171,105,211,166,101, 30, 11,218, 53,144, +238, 96,218,218,210,113, 91, 48, 43, 43, 11,151, 47, 95, 6,199,113,104,221,186, 53,142, 30, 61,138,246,237,219,187,117,131,176, +168,168, 8,225,225,225, 40, 42, 42, 66, 65, 65, 65, 33, 0,233,230, 90,181, 0, 0,111,100,101,225,143, 15, 62,192,239, 11, 23, + 86,170, 31, 53,109,218,148,158, 60,121, 18,127,255,253, 55,140, 70, 35, 94,125,245, 85,216,142, 7, 1,224, 25, 23,203,219,184, + 65,131, 6,251, 15, 30, 60,232,175, 86,171,161,215,235,161,215,235, 49, 98,196, 8,140, 30, 61, 26, 22,139, 5,171, 87,175,198, +119,223,125, 7,141, 70, 3,189, 94,143,130,130, 2,239, 94,189,122, 29, 39,132,116, 44,235,104,155, 82, 74,110,222,188,137,247, +223,127, 31,130, 32, 96,210,164, 73,136,140,140,116, 16,171, 91,183,110, 97,222,188,121,224,121, 30, 51,103,206, 68,189,122,245, + 96,177, 88,100,238,248, 25,171,106, 25, 63,126,252,245,111,191,253,118,239,157, 59,119,158, 93,180,104, 81, 39, 66,136, 48,113, +226,196,247, 53, 26, 13,127, 63,184,217,185,249,184,124,237,150,131, 0,149, 76,254,126, 62,110,227, 93,141,191,227,248,127,158, +119,198,227,225,235,227,237,110, 22, 11, 45, 22, 75, 65,191,126,253,180, 95,127,253, 53,169, 87,175, 30,110,220,184, 97,223,148, + 22, 86,194, 53, 67,146, 78,167,139,100, 89, 86,124,237,218, 53, 68, 68, 68,160, 85,171, 86,152, 63,127, 62, 50, 51, 51, 97,181, + 90, 17, 16, 16, 32, 88, 44,150,179, 38,147,233,183,127,123,129,113,214, 50, 57,167, 95,127,253,117,178, 76, 38,163, 0, 78, 2, +112,139, 96, 83, 74, 77, 53,107,214,188, 11,187, 50,218,171, 7, 72,130, 30,216,205,196,224,224,224,195,106,181,186,119,118,118, +246, 93, 90,172,118,237,218,153, 3, 3, 3,143,184,138,163, 82,169,178, 89,150,245, 5,128,164,164, 36, 40,149, 74,113,124,124, +252, 66, 66,200, 20, 0,168, 85,171,214, 66,157, 78, 39,174,101,155, 79,131,130,130, 96, 50,153,202, 52, 87, 57,126, 54,245,115, + 0,159, 59,173,189, 41,185,185,185,242, 37, 75,150,232, 23, 46, 92,104,224,121,222, 8,224, 96, 78, 78,142,195, 15, 86, 68, 68, + 68,174, 72, 36,242,209,106,181, 53,156,160,238,225, 34,143, 3,193,186,231,182,158, 51,233,113,133,100,185,162,133, 32,132,192, + 96, 48,220,165, 13,177,223, 34, 44,141, 96,217, 22,242, 74, 29, 17,218,200,149,124,219,182,109, 95,126,252,241,199,199, 92,253, + 63,103, 27,172, 53, 75,231, 46,178,147,171,115, 71,247,225,251, 75,185,153,147, 22, 46, 91, 94,217,202,110,232,175,108, 18, 20, +232,119,232,131,133,115, 53,215,247,126,142,237,107, 62,164,231, 78,159,110,121,250,244,233, 87,198,142, 29, 91,211,214,161,116, + 0,254, 2, 48,200,149, 91, 55, 25, 25, 25,119,217, 63, 69, 70, 70, 94,209,106,181,129, 50,153, 12,241,241,241,250,184,184, 56, +183,143, 94, 74, 98, 86,133,148, 36, 87,113,113,113,232,210,165, 11, 0,224,232,209,163,104,215,174,157, 91, 36,203, 98,177,228, + 60,241,196, 19, 14,109, 86,110,110,174, 0, 0,177, 41, 41, 88, 27, 28, 12,142,227,240,251,194,133,152,106,177, 96,190,200, 61, +211,156,102,205,154,209,211,167, 79, 35, 33, 33, 1, 86,171, 21,125,250,244,113, 38, 87, 46, 75, 80, 80,208, 59, 7, 15, 30,244, + 95,187,118,173,113,203,150, 45, 70, 65, 16,152,102,205,154,169,163,163,163,177,124,121,113, 55, 26, 52,104, 16, 38, 77,154,132, +184,184, 56, 40, 20, 10,116,232,208,129,159, 53,107, 86,192,184,113,227,222, 64,241, 53,252,210, 22, 24,218,189,123,119, 28, 57, +114, 4, 44,203,162,101,203,150,200,202,114, 92,238, 65, 96, 96, 96,105,207, 88,219,120,255, 87, 22, 34,142,227,232,225,195,135, + 23,117,234,212, 9,119,238,220,121, 54, 38, 38,230,147,225,195,135, 39,221, 47,174,183,151, 26, 77, 27,214,129,209,104,132,209, +104, 68, 72, 72, 8,242,243,243,113,253,250,117, 24,141, 70, 4, 6,104,221,198,139,110, 92,207,129, 23, 16, 16,128,130,130, 2, +220,188,121, 19, 38,147, 9,126,126,222,238,244,249,176,238,221,187,255,250,229,151, 95,250,110,220,184,209,212,185,115,103,201, + 39,159,124, 66, 52, 26, 13,210,211,211, 43, 91,228,195, 71,143, 30, 13,239,214,173, 91,212,197,139, 23,113,248,240, 97,152, 76, + 38, 68, 71, 71,227,234,213,171,104,211,166, 13,244,122,253,201,211,167, 79,255, 80, 29, 22, 24,251,241,157, 61, 29, 57,114,100, +170, 70,163,177, 0, 88,118, 63,125,241,246,237,219,210, 38, 77,154, 24,101, 50,153,196, 70,214, 62,252,183,250,118, 41,237,126, + 95, 55, 19, 43,152, 83,198,249,249,249,117,171, 93,187, 54,210,210,210,196, 18,137, 4,237,218,181, 51,183,104,209,194, 28, 20, + 20,244,134, 27,237,114, 81, 44, 22,119, 44,222, 68,240,184,125,251, 54, 40,165,147, 26, 55,110,252, 86,126,126, 62,178,178,178, + 36, 26,141,198,177,153,142,138,138,130,209,104,188,232, 6,201,156, 19, 17, 17, 49, 77, 44, 22,207,207,200,200, 88, 93, 74, 29, + 73,154, 54,109,170, 17,139,197, 48,155,205,198, 18,207,170,149,221, 91,149, 16, 44, 39,214, 88, 82,109, 94,225,241,160,171, 54, + 88,132, 16,152, 76, 38, 40,149, 74,199,209,147,179,231,246,210, 8, 86,101, 36, 44, 44, 12,173, 90,181,146,111,223,190,125,203, +146, 37, 75,142, 87, 6, 99,231,151, 95, 4,123, 9,133, 97,201, 39,247,224,242,185, 63,240,237,133,156,204, 73, 11,151,189,249, +220, 11, 47,166,149, 36,100, 59, 70, 85,140, 87, 63, 64,217,184, 70,160,239,161, 15, 63,120, 95,147,117,241, 4, 82, 82, 83,177, +231,228,233, 51, 38, 74, 47, 0,152, 84, 85, 13,234,124, 27,173,186,116, 84,103, 55, 13,153,153,153,184,112,225,130,157, 92, 69, + 3, 64,251,246,237,207,218, 73,214,153, 51,103, 16, 19, 19,115,143,155,134,123, 52, 13,217,217, 11, 74,252, 70, 55, 0,126,118, +162,207,113, 28,218, 77,155,230, 54,185, 34,132, 80,158,231,161,211,233,236, 59,195, 74,145, 43, 27, 86,187,194,194, 66,108,217, +178, 37,243,218,181,107, 97,181,107,215, 30,247,249,231,159, 47, 83, 40, 20,119,171, 56, 10, 11,209,173, 91, 55,140, 25, 51, 6, + 51,102,204, 16,134, 15, 31,206, 50, 12, 83,102, 4,123,158,231,197,181,106,213, 58, 0,224,169,139, 23, 47, 2,192,113, 74,105, + 59,251,243,242,158,185, 32, 66,126,126,190, 72,173, 86,151,234,226, 65, 92,124, 77,211,221, 35, 61, 7,230,177, 99,199,222, 95, +186,116,233,183, 19, 38, 76,184,118,159,152,165,106,176,122,247,238,141, 34,163, 5,137,105,185,224,121, 43, 12,230,116,183,241, +156, 53, 88,189,123,247,134,161,200,132,219, 41, 58, 88,173, 60,242, 13, 86, 87,219, 94,241,244,211, 79,255,188,109,219,182,160, + 19, 39, 78,128,231,121,225,234,213,171, 55,251,245,235,167,153, 56,113,162,175,147,141,169,187,242,241,139, 47,190, 56,224,216, +177, 99,186,168,168, 40,159,147, 39, 79, 34, 61, 61, 29, 86,171, 21, 79, 61,245, 20, 36, 18,201,237,133, 11, 23,138, 1,124, 92, + 93, 8,150, 84, 42,197, 31,127,252, 81, 37,196,202, 89, 36, 18, 73,165,143, 25, 31, 85, 57,121,242,100,210,216,177, 99, 27,106, + 52,154,229, 29, 58,116,232,226,235,235,203,120,123,123, 31,174, 81,163,198, 91, 77,154, 52,113,249, 52, 65, 36, 18, 13, 87, 42, +149,215,173, 86, 43,107,211,156, 3, 0,172, 86,171,132, 97, 24,212,170, 85,203,161, 52,105,217,178, 37,130,130,130,248, 75,151, + 46, 13,119, 21, 63, 61, 61,253,174, 91,133,165,200,168,118,237,218,113, 70,163, 17, 9, 9, 9, 71, 75,106,232, 31, 23,146, 85, +166,129, 10,195, 48,160,148, 66,214,188, 57, 82,246,237,195,215, 95,127, 93, 46,208,154, 53,107, 80, 82,165, 71, 8,233,230,236, + 43,195,126, 91,240,181,215, 94,115,124,231,204,153, 51, 14, 99,247, 62,125,250,220,133,121,234,212,169,123, 72, 86, 73,204, 50, + 26,247,226,142, 29, 59, 78, 47, 94,188,248,164,139,147,161, 3,211,110,131, 53,224,165,151, 83, 86,188, 63,227,252,198, 31, 14, + 52, 78, 49,208,148, 73, 11,151, 77, 40, 73,174, 92,197,124, 34, 72,245, 68,104,128,239,225,165, 31,188,239,101,215,134,109, 59, +155,154, 11, 43, 29,229, 78, 99,185, 82,118,103, 77, 34, 33, 68,168, 10,204, 74, 16,139,187, 48,157,221, 52,164,164,164, 56,200, +149,147,163,209,232,246,237,219,159,181,145, 43,251, 51,107,101,242,201,113, 28, 38,232,245,224, 56, 14,157,103,207,198, 83,115, +231,186, 93,118,158,231,193,113, 28, 34, 35, 35,221, 38, 87,206,152,148,210, 99,231,207,159,143, 24, 54,108,152, 58, 50, 50, 50, +158, 16, 34, 26, 49, 98,132, 16, 28, 28,204,252,254,251,239,160,148,162,125,251,246, 72, 75, 75,131, 32, 8,216,188,121, 51,134, + 13, 27, 70,254,250,235, 47, 42, 8,194,254,242,242,153,144,144, 48,170,107,215,174,107,138,138,138,184,172,172,172, 81,174, 62, +171,168,236, 59,118,236,184, 22, 25, 25,217, 9,101,187, 98, 16, 0,156,184, 31, 76,155,246, 46,234,126, 48,203,210, 96,125,245, +213, 87, 16, 4, 1, 97, 65, 90, 24,141, 70,148, 36,179, 21, 97,150,212, 96,109,223,190, 29,130, 32,160,102,176, 15, 76, 38, 19, +236,134,193, 21, 97,250,250,250,126,184,105,211,166,208, 75,151, 46, 33, 49, 49, 17,203,150, 45,187,149,147,147,211, 51, 39, 39, + 71, 58,107,214,172, 67, 47,189,244, 82,160, 32, 8, 70,119,199, 38,165,212, 72, 8, 25,222,182,109,219,205,243,230,205,187,209, +160, 65,131,154,237,218,181,211,102,101,101,101,252,249,231,159, 55,215,172, 89,163,178, 90,173,195,203, 58,122,122, 24,227,221, + 89,146,146,146,102,219,214, 25,183,136,149, 43,249, 60,117,234,212,187, 54,236, 83,174, 96, 63,172,178,223,239,205,196,138,242, +185,114,229,202, 68,148,240,111,230,110, 62, 79,157, 58,149,208,173, 91,183,185,129,129,129,179,100, 50, 25, 50, 50,138,131, 19, +216, 53,141,246,245,186,121,243,230,232,222,189, 59,174, 92,185, 50,119,218,180,105, 9,247, 83,159,182,141,118, 29, 0,175,116, +237,218,117,226,128, 1, 3,176,114,229, 74, 80, 74,215, 63,174,132,216,238,166,129, 56,255, 5, 0,139,197,114,231,250,245,235, +193,245,178,179,217, 16, 66,208,178,101, 75, 56,199, 16,180,219,229,216, 13,229,126,251,237, 55,171, 32, 8,229,250,156,226,121, +254,206,177, 99,199, 2,247,237,219, 39,178, 55,164,205, 88, 83, 72, 78, 78,102, 14, 29, 58,228,208,134,113, 28,135,195,135, 15, + 91,205,102,243,109,119, 11,117,229,202,149, 42,217,189,253, 22,151,240,214,207,123,190,243,107,221,170, 67,142,198,199,167,212, + 1,108,247,248, 94,110,199,226,152,249,139, 23,206,213,218,201,213, 87,103, 83,115,138,140,124,151,139, 25,133,231,170,186, 65, +243,243,243, 19,236,183, 5,245,122,253,237,234,210,209,236, 55, 8,131,131,131,207,162,196,109, 65,251,179,152,152,152,123,158, +185,165, 38, 17, 4,120,121,121, 57, 38, 7,119,237,174, 8, 33,212,126,100, 93,114, 60, 84, 70, 82, 83, 83,151, 76,155, 54,237, +153, 5, 11, 22,248,239,221,187, 87, 99,195, 68,255,254,253,211,207,159, 63,223, 1,128,180,160,160, 96,255,130, 5, 11,252,157, +226, 17,114,189,122,245, 74, 75, 75, 75, 91, 81, 65,125,222, 0,208,213,221,103, 21,201,128, 1, 3,226, 81,138,195,207,251,145, + 7,129,105, 23, 93, 78, 30,226, 19,146,108,177, 40, 5,240,183,210, 28,118, 83, 22,139, 21,186,188, 44,183, 53, 88,215,111, 38, +217, 66,131,241,224,249,100, 27, 94,177,161, 59,205, 46,116, 69, 59,208,126,249,242,229, 61, 25,134, 97,126,255,253,119,227,226, +197,139,239,100,100,100,244,161,148,222,182,245,179,206, 27, 55,110,220,226,130, 75,134,178,218,254, 2, 33,164,205,228,201,147, +223, 4,208, 30, 64, 77, 0,183, 1, 28, 5,240,113, 53,243, 56,190,236, 17,197,174,180, 60, 42, 55, 19,247,239,223, 63,187,111, +223,190, 92,120,120,248,123,225,225,225, 76,118,118, 54,244,122, 61, 24,134, 65, 80, 80, 16, 26, 53,106,132,160,160, 32,225,226, +197,139, 11, 38, 79,158, 92,161, 79,189,134, 13, 27,214,177, 88, 44,117, 25,134,169, 3,160, 14,165,180, 14, 33,164, 14, 0, 31, +155, 38, 76, 19, 17, 17,193,181,110,221, 26,173, 90,181,194,161, 67,135,176,115,231,206,207, 41,165, 63, 59,107,175,170, 98,238, +173,246, 26,172,236,236,236,238, 61,123,246,220,199,178,108,173,210, 22,172, 82,130, 50, 39,164,165,165, 61, 91,238,228,149,157, +221,253,173,183,222,218,199,178,108, 45,187,102,202,106,181, 26,117, 58,221,235,157, 59,119, 94, 37, 18,137,164,206,184,130, 32, +220, 74, 75, 75,123,168,177,244, 74,250,193,234,222,179,111,230,253, 98,170,196, 76,221,203, 63,174, 69, 90,122, 38,190, 58,155, +154,157,111,226, 59, 95,201, 40, 56,255, 32,242,159,144,144,208,163,186,118, 54, 27,145, 42,245,232,175,188,103, 46, 74,134, 11, +142, 68, 51, 42,200, 31,177,145, 44, 82, 69,229, 61, 79, 8,105, 59,118,236,216,233, 10,133,162, 37, 0, 20, 22, 22,254,158,156, +156, 60,215,126, 75,176,162,231, 30, 41, 91, 44, 22, 75, 98,163, 39,162,236,117,125,151,107, 6,231,215, 86,171, 53,209, 29,188, +210,112,156,223,243, 60,159, 88,129, 22,121, 66,171, 86,173,216, 9, 19, 38,164,237,221,187,215, 30,224,182,208,169, 95, 92, 65, + 57,206, 68, 93,236, 91, 70, 0,139,109,201, 35,213,112,174,115,231,253,191, 37,223,125,247,221,244,193,131, 7,111,244,241,241, +249,162, 78,157, 58, 81,129,129,129, 26,185, 92, 14,163,209,152,111, 50,153, 46, 95,185,114,101,200,180,105,211,110,184,130,181, +113,227, 70, 22,128, 88, 16, 4, 25,195, 48, 74, 0, 26, 66,136,183,157, 96, 17, 66, 96, 54,155,145,144,144,128,169, 83,167,242, + 7, 14, 28,248, 0,192, 76, 55,178,219, 2,128,191,211, 60,238, 15,192,132, 98,199,179, 25, 0, 78, 63, 50, 4,203,230,173,186, + 77, 21,119,186,242, 48,195,171, 75,165, 12, 53, 46,222,138, 53,139,239,138, 67,104, 39, 95,165,190,175,224,160, 47,215, 96, 29, +251,241,207,113, 75,140, 86, 42,152,173,194,136, 43,233, 5, 23,254,195, 19,143,181, 50,207, 92,192,125,186,138,242, 71,170,184, +188,241, 0,134, 86,246,185, 71,202, 97,203, 25, 25,205,171, 35,158,201,100,122,171,109,219,182, 31,241, 60,191,212, 98,177, 28, +245,180,148, 71,170,179,124,245,213, 87, 55,236,235,242,192,129, 3, 89, 0,216,177, 99,135,219,183,123,135, 13, 27,198,219, 2, +140, 23, 1, 40, 0,144,135, 98, 71,217, 4, 0, 10, 10, 10,178,147,147,147, 47,242, 60,127, 17,192,150, 74,220,160,245, 39,132, +252, 72, 41,237,109, 35,108, 63, 82, 74,123, 59,127,246,200, 16,172,255,170,236,136,251,103,129, 45, 73,156, 42,122, 95,150, 92, + 78,213, 31,190,223, 29,171, 71, 60,226,145, 71,102, 19,113, 27, 64, 31, 79, 77,120,228,145, 91,255, 42, 65,172,236,114,225,194, +133, 7,102, 10,240,168, 10,227,169, 2,143,120,196, 35, 30,241,136, 71, 60,226,145,170, 21, 2,160, 91, 25,187, 48,119,110, 7, +116,171,196, 46,111,191, 7,211,131,233,193,244, 96,122, 48, 61,152, 30,204,255, 22,102, 37,165, 87, 5, 71,132,187,171, 29,195, +114, 54,226,172,234, 4,160,155, 7,211,131,233,193,244, 96,122, 48, 61,152, 30, 76, 15,230,125,166, 46, 83,166, 76,121, 23,197, +241,137,233,148, 41, 83,222,165,148,246, 42,166, 49,180,215, 67,206,139, 75,201, 99,131,229, 17,143,120,196, 35, 30,241,136, 71, +170,187, 28, 95,184,112, 97,225,194,133, 11,237, 6,237, 25, 0,136, 77,123,149, 81, 29, 51,252,175, 17, 44, 66, 72, 8,195,137, + 95, 22,137,165, 93, 64,133, 70, 0, 0,134,141,227, 77, 69,191, 90,173,230, 47, 40,165,201, 46, 96,148,122,227, 43, 10,120, 34, + 82, 43,255,222,200,243,226,219,249,166,129,151,139, 29,209,149,166,189, 43,215,225,219, 64, 66,218,201, 36,146, 95, 36, 90,109, +169,222, 5, 77, 57, 57,134, 34,147,233,153, 29,148, 30,243,244,125,143,120,196, 35, 30,241,200,163, 32,132, 16,165,183,183,247, + 1,134, 97,194,157, 62, 67,105,175, 1,128,231,249, 20,157, 78,247, 12,165, 52,243, 97, 98,150, 92,114, 81,198, 90, 94, 93,133, +179, 21,220, 78, 52, 42,140, 96,221, 32, 88,213, 33,170, 78,248,151,201,169,105,103,243,138, 76, 35, 47, 39,229,235,220,254, 81, +177,236, 53,173, 95,208,252,255, 27,254,150,111,100,253, 40, 18, 22, 86, 3,160,192,237, 59,137,129,215,175, 93,237,186,125,211, +199,227,197, 50,217, 84,115, 81,209,103,238, 98, 71, 2,202, 8,149,244,200,103, 83, 94,210,114,176,226,197,121, 95,238, 21,244, +230,154, 87,139,175,141,186, 44, 3, 9,105,231,237,227,243,243,226,125,251,228,234,102,205, 74, 18, 51, 8,130, 0,253,217,179, +242, 41, 61,122,252, 60,144,144,238, 30,146,245, 88, 78, 66, 65, 26,141,102,156, 72, 36,234,108, 54,155,195, 37, 18,201, 29,158, +231, 15,103,103,103, 47,167,148, 38,121,106,200, 35, 30,169,112, 12,149, 25, 96,252,223, 12, 62, 14, 0,106,181,250, 15,134, 97, + 66,157, 23,127,187,127,198,146,126, 30,157,252, 61,222,200,202,202,106, 91, 78,121,235,248,248,248,172, 2,208,162, 34, 71,199, +182,253,253,105,157, 78,247,186,205, 93, 75,105,120,106,111,111,239,217,132,144,129, 12,195, 84, 24,240, 87, 16, 4,158, 82,186, + 35, 59, 59,123, 38,165, 52,191,172,239,121,123,123,239,191,116,233, 82,139,128,128,128, 10,221,210, 88,173, 86,220,190,125,219, +191,101,203,150,191, 1,104,240, 32, 49,221,225, 34,143, 12,193,178, 53,182, 75, 17,172, 5, 1, 47,111,152,255,122,141,148, 91, +215,106,140, 90,176,181,126, 3, 63, 69,231, 75,153,133,169,174,254,160, 68,174,254,161,253, 83,189,187,140,121,115,130,242,207, +243,151,241,203,161, 19,200, 43, 48,130,101, 24,104,213, 10,212,175, 95,151, 44, 91,251,181,223,231,159, 46, 91, 42, 87,105,123, + 25,244, 57,207,187, 83, 32, 47, 5,247,222,164,126, 45,149,190, 62, 60, 32,240,120,167,103, 83,229,123, 63,158,125, 15,133,214, +247,220, 38, 87,251,247, 43,210,211,210,240,129,175, 47, 56,139, 5, 50, 66, 32, 39, 4, 50, 0, 42,169, 20, 29,190,252, 18,243, +119,239, 86, 76,237,213,203, 67,178, 30, 51, 81,171,213,195,235,215,175,191,120,221,186,117,190,181,107,215,134, 82,169,132, 78, +167,243,187,114,229, 74,179,183,223,126,123,168,151,151,215,180,220,220,220, 53,158,154,242,136, 71,202, 36, 27,205, 0,148, 26, +188,189,188,103, 15, 75, 24,134, 9, 77, 74, 74, 10, 80, 40, 20,224,121,222,230,189, 95,112,108,160,157, 15, 56,108, 14,102,209, +160, 65, 3,115, 5,243,198,202,244,244,244,110,206, 33,203,202, 59, 40, 73, 74, 74,234,214,176, 97,195,149, 0,158, 41,131,180, +204,126,243,205, 55,199, 53,110,220,216,174,245,177, 69, 45, 40,254,155,153,153,137,177, 99,199, 58,126, 67, 16, 4,236,219,183, +239,205,225,195,135, 3,192,219,229,148, 61, 60, 32, 32,128,140, 26, 85,190,175,161, 89,179,102, 97,214,172, 89,248,248,227,143, +137, 72, 36,210, 86, 80,159, 85,130,233, 42, 23,121,164, 8,150,203,157,146, 10,123,230, 45, 95, 55,114,206,176,246,100,195,219, +221, 34, 71,127,188,255, 68,195, 16,121,199, 11,201,134, 59, 46,104,174, 70,180,238,248,108,231,177,227, 38, 41,183,126,119, 16, + 87, 46,158,195,165,163,219,238,250, 78,243,103,134, 35, 53, 51, 31,195,199,188,163, 34, 44,215, 89, 44, 83,140, 48, 23, 21,110, +112, 37,111, 81, 64, 96,184, 84,242,191, 54,173, 26,137, 80, 51, 17,160, 64,251,152,122,162,176,159,255,254, 95, 62,172, 31, 95, + 6, 42,140, 37, 88,146, 92,109,125,225, 5,244, 48, 24, 16,136, 98,159, 22,246, 84, 8,224,114,223,190,104,240,237,183,152,253, +253,247,138,153,125,250,184, 77,178, 20, 10,197,231, 6,131, 97, 81, 37, 28,174,253,155,147,102,125,181, 90, 61, 53, 47, 47,239, +229,106,148,167, 96, 0, 25,165,196, 47, 20, 3,208, 82, 74,221,138,248, 43,147,201, 94,123,241,197, 23,151,173, 88,177, 66,145, +150,150,134,228,228,100,240, 60, 15,153, 76,134,200,200, 72,178,127,255,126,223, 73,147, 38, 45,209,104, 52,210,188,188,188,143, +220,200, 39, 35, 18,137,134,249,248,248,244, 13, 12, 12, 12,200,200,200,200,200,206,206,222,101, 52, 26, 55, 84,118, 39,111,195, + 28, 18, 17, 17,209, 55, 36, 36, 36, 48, 41, 41, 41, 51, 49, 49,241, 7,163,209,248, 57,165, 84,184,207, 58,109, 2,192,215,246, + 81, 74, 68, 68, 68,220,205,155, 55,211,171, 16, 51, 57, 34, 34,226,130,187,152,132, 16, 37,128,237, 0, 66, 42,248,106, 50,128, + 65, 54, 7,199, 30,249, 23,200,149, 45,244,212, 93, 68,170,188,103, 15, 91,228,114, 57,182,109,219, 6,145, 72, 4,145, 72,132, +236,236,108,132,134,134, 58,222,139,197, 98,199,235,154, 53,107, 86,136,199,243,124, 75,150,101,161,215,235,193,243,188, 35,229, +228,228,128, 82, 10,169, 84, 10,158, 47, 14,187,228,244,188,101, 57,245, 56, 48, 36, 36, 4, 91,183,110,133,201,100,186,231,185, + 70,163,193,249,243,255, 4, 5, 97, 89, 22,173, 90,181, 98, 8, 33, 3,203, 35, 88,118, 77, 81,108,108, 44, 88,150,117,132,190, +179,191,182, 39,158,231, 49,107,214, 44, 56,135, 16,123,152,152,143,252, 56,176, 21,146,150, 22, 38,164, 65,144,234,245,238, 93, + 90,127, 32,151,138,229,130,213, 2,222,106, 6,111, 49,129, 35, 60,158,105, 18,140, 54,181, 21,200,208,229, 97,212,154, 83,121, + 73, 73,198, 86,231,179,242,175,148, 83,249, 33,106,109,192, 95,159,110,254,206,239,151, 19,151, 16,119,238, 44,206,238, 93, 85, +234,119,187,189, 56, 5, 13,155,180,192,147,245,130, 48,113,244,128,204,172,244,228,166,165,217,100,149,180,193,106,171, 22,111, + 94, 49,164,203,139, 77,154,105, 25,116,178,173, 87,251,173, 56,115, 34,149,127,235,135, 63,183,158,200, 55, 15, 45,193,148,239, +217, 90, 12,149, 74, 11, 63, 57,113, 66,158,158,158,142,173, 47,188,128, 24,131, 1,153, 34, 17,158,176, 88, 28, 36, 43, 7, 64, + 22,199, 33,200,106, 69,145, 70,131,160,175,191, 6,207, 48,152,210,163,135, 97,179,201,164,112,181,242, 85, 42, 85, 6,203,178, +124, 94, 94, 94,231, 71,129,100,217,200,213, 33, 66,136, 56, 55, 55,215,167, 26,228,135, 1, 48,103,228,200,145, 35,142, 28, 57, +114,253,250,245,235,221,108,158,132, 65, 8,225,234,214,173,123,176, 67,135, 14,117,214,175, 95,255, 25,128, 57,174, 16, 14, 66, + 72,141,218,181,107,255, 25, 23, 23,231,119,245,234, 85,232,245,122,136, 68, 34, 12, 25, 50, 4, 95,127,253, 53,196, 98, 49,164, + 82, 41,196, 98, 49, 58,118,236,152,121,243,230,205, 22,148,210, 91, 46,224,178, 94, 94, 94,159,175, 90,181,170, 94,159, 62,125, + 56,163,209, 8,158,231,177, 99,199, 14,203,204,153, 51, 19,178,178,178, 94,113,151,100, 17, 66,152,224,224,224, 13,159,125,246, + 89,253,167,158,122,138, 51, 24, 12, 16, 4, 1,187,119,239,182,188,247,222,123, 55, 82, 82, 82,134, 82, 74,249, 74,212,107, 51, +133, 66,209,240,245,215, 95,207,232,211,167,143, 25, 0, 78,159, 62,205,156, 59,119, 78, 83,187,118,237, 91,211,167, 79, 63, 91, + 9,204, 24,181, 90, 29, 53,106,212,168,204,222,189,123, 91,196, 98,177,112,236,216, 49,238,202,149, 43,154,136,136,136,248,247, +222,123,239,156, 27, 88,123,142, 31, 63,222, 41, 52, 52, 84,176, 77,234,212, 62,193, 51, 12, 67,109,127,113,249,242,101,174, 83, +167, 78,135, 40,165,207,195, 35, 15,115, 92,114, 0, 44,148, 82,232,116, 58,156, 60,121, 18,189,122,245, 2,128,104,219, 87,206, + 82, 74,145,151,151, 7,131,193,128,224,224, 96, 0, 16, 61,236,227, 66,173, 86,155,150,145,145, 17,240,253,247,223, 67, 36, 18, + 97,223,190,125, 88,189,122, 53,182,109,219, 86, 42,201, 10, 14, 14, 70,100,100,100, 98,114,114,114, 88, 57,115,122,174, 94,175, +215,228,230,230,130,231,121,156, 60,121, 18,235,214,173, 67, 64, 64, 0,252,252,252,224,239,239,143,150, 45, 91, 66,169, 84, 58, + 72, 86,135, 14, 29,242,244,122,189, 87,105,120,190,190,190,201, 19, 38, 76, 8, 62,115,230, 12, 44, 22, 75,169, 4,107,220,184, +113,206, 90, 36, 40, 20, 10,180,105,211, 38, 37, 43, 43,171,204, 13,136,191,191,127, 74, 70, 70, 70,208,185,115,231,238, 34, 63, +165, 17, 34,150,101,161, 86,171, 81,171, 86,173,180,148,148,148,160, 7,137, 89, 22, 23,121,228, 53, 88,182,137,170,243, 93, 26, +161,136,160,169,139,199, 13,148,131, 55,131, 90, 12,128,185, 16, 48,235, 33,152, 10, 65,196,114,192, 98,128,191, 84,135,237, 99, +162, 52,147,183,198, 95,124,194, 95,211,235, 98, 70,222, 79,165,106,190, 56,241,144,129,195,222,244, 77, 76,207, 67, 82, 90, 46, + 88,230, 31, 31,167,209,221,134,129, 99, 25,156,250,185, 88, 81,197,176, 44,114, 11,140,200,209,155, 49, 96,216, 56,159,207,150, +205, 24, 2, 96, 81,121, 5,105, 4, 68, 54, 82,169,250, 53,110, 20,206,160, 94, 10, 72,157, 93,197, 36,234,200,115,104,150, 29, +192, 54,248, 69,210, 79,159,111, 94, 16, 7, 92, 45, 15, 71,162,213,202,213,205,154, 97,177,175, 47,122, 26, 12,184,206,113,120, + 81,167,195,111,227,198,129,219,176, 1, 28, 0,227,136, 17,104,183,124, 57,206,251,248, 32, 36, 47, 15,230, 17, 35, 32, 57,115, + 6, 98, 47, 47,185, 59,149, 47, 22,139,205,235,214,173, 11,121,245,213, 87, 15, 17, 66,170, 53,201, 34,132,212,247,241,241, 57, +244,254,251,239, 7, 78,159, 62, 61,165,138, 48, 3,149, 74,229,142,130,130,130,113,238,238, 96,109,228,106,222,154, 53,107, 70, +199,198,198,106, 95,125,245, 85,122,253,250,117, 45, 0,187, 54,196,191, 67,135, 14,117,215,173, 91, 23,212,162, 69,139, 55, 71, +141, 26, 37, 38,132, 76,171,136,100,169, 84,170, 49,235,214,173,243,203,204,204,116,144, 43,145, 72,132,196,196, 68,200,229,114, + 71,176,115,145, 72,132,247,223,127,223,119,204,152, 49,227, 0,140,171, 40,191, 82,169,116,216,170, 85,171,234,117,239,222,157, + 75, 72, 72, 0,195, 48,144, 74,165,120,233,165,151, 68,133,133,133,225,115,230,204,137, 5,176,202,157, 58, 16,137, 68, 67,214, +174, 93, 91,191, 93,187,118,220,165, 75,151,208,166, 77, 27,156, 58,117, 10, 47,188,240,130, 40, 63, 63,191,214,164, 73,147, 70, + 2, 88,235,174,150, 73,161, 80, 52,254,245,215, 95,239,132,133,133, 57, 54, 32,181,106,213,226,123,245,234,165,187,116,233, 82, +212,137, 19, 39,178,218,180,105,115,219, 13,204, 26, 10,133,162,193,158, 61,123, 82,230,204,153,211,117,205,154, 53,125, 0,160, +101,203,150, 63,204,157, 59,247,160, 78,167,107,116,228,200, 17, 93,135, 14, 29, 18, 93,132, 12, 9, 14, 14,230,199,142, 29,171, + 42,239, 75,235,215,175,207, 1, 80,147, 16, 82,219, 22, 0,219, 35, 15, 65, 40,165, 86, 66, 72, 52, 33,228,236,238,221,187,209, +170, 85, 43,236,222,189, 27,189,122,245, 58,107,123,142,220,220, 92,156, 63,127, 30, 29, 59,118, 4,138, 3,188,255, 43,182, 88, + 60,207,131,227, 56, 36, 38, 38, 98,253,250,245, 88,176, 96, 1, 34, 35, 35, 97,177, 88, 28, 99,159,227, 56,136, 68, 34,187,182, +197,165, 69,223,106,181,226,244,233,211,248, 98,243,102, 76,155, 58, 21,106,181, 26, 0, 96, 54,155,161,203,206,134, 76, 38,115, +104,176, 42,168,203, 29,215,174, 93, 27, 23, 26, 26,122,215,209,160,253,175,109,206,130, 32, 8,176, 90,173, 40, 42, 42,194,178, +101,203,172,148,210, 29, 21,140, 73,135,198,107,220,184,113, 48, 26,255,137, 15,222,164, 73, 19, 0, 64, 68, 68, 4,154, 54,109, +234,120,207, 48, 12,117, 21,243,179,182,141, 97,112,250,118,212,172, 37, 0,128,208,208, 80, 68, 69, 69,217, 73,117,169,152,165, +113,145, 71,154, 96,149,197, 20, 47,222, 76, 93,244,234,164, 37, 75,148, 50, 86,244, 86,223, 39, 81, 83, 43, 6,228, 62, 16,119, +156, 12,162, 13, 47,238, 0,186, 27,192, 47,147,177,180,159,142,137,221, 82,244, 93, 93, 31, 31,255,235, 58,221, 61,198,117, 34, +177,172, 75,157,122,245,201,237, 20, 29, 56,142,131,210,203, 15,109,251,190, 13,150,101,160,210,250,129,240,134,127,212,156, 12, + 11,142,229,160,203, 55, 32,162,118, 61, 70, 42,147,119,169,136, 96,121,121,137, 86, 78, 28,220, 86,198,200, 50,129, 16,137,211, + 84, 44, 1,227,155,143, 9, 61, 34,229,177, 63,252,189, 18,185,150,174, 46, 85,140, 93, 99,101,181,226,183,113,227,208,117,237, + 90,252, 14, 64, 4, 32,102,237, 90, 92,142,141, 69,128,197, 2, 41, 0,214,104,132,181,196,153,189,139, 11, 15,250,246,237,139, +204,204,204,192,169, 83,167, 86,154,100,201,229,242, 47, 8, 33, 61, 69, 34,145,153, 16, 2,134, 97, 28,193,185,237,175,205,102, +179,152,101,217, 61,153,153,153,110, 31,237, 17, 66,234,123,123,123, 31, 58,126,252,120,160, 82,169,196,172, 89,179,170,132, 92, +169,213,234,223, 71,142, 28, 89,243,139, 47,190,248,137, 16,210,195, 85,146, 85,146, 92,173, 93,187, 54,103,253,250,245,159, 57, + 31, 5, 82, 74, 83, 8, 33, 27, 90,180,104,241,122,108,108,172, 22,192,232, 81,163, 70,161, 34,146, 37,149, 74, 59,215,169, 83, + 7, 58,157,206, 49,193, 74,165, 82, 0,128, 82,169,132,151,151, 23,196, 98, 49,140, 70, 35,162,163,163,137, 68, 34,105,239, 74, +158,213,106,117,207,126,253,250,113,199,142, 29, 67,106,106, 42,188,188,188,160, 84, 42,193,243, 60, 94,123,237, 53,241,242,229, +203,159,117,151, 96,133,133,133,245,233,218,181, 43, 23, 23, 23,135,155, 55,111,194,104, 52,226,202,149, 43,208,104, 52,120,229, +149, 87,196,139, 23, 47,126,206, 93,130, 5,160,113,108,108,108,154, 51,185,178,139, 82,169, 36,245,235,215,215,249,250,250,198, + 0,184,237, 14,230, 27,111,188,145,190,112,225,194,142,251,247,239,159,108,255,112,255,254,253,147, 0,224,163,143, 62, 58,226, +239,239, 31, 3,192, 85,130, 5, 74,169,240,127,255,247,127,183, 36, 18, 9, 68, 34, 17, 36, 18,201, 93, 73, 44, 22,131, 97, 24, +181,125, 74,121,140,181, 69, 45, 0,124,136,226, 27, 86, 83, 41,165, 39,171, 9,201,250,147, 16, 18,221,171, 87, 47, 7,201,218, +187,119, 47,122,244,232,129,156,156, 28,196,197,197, 57,147,171,127,203, 6, 11,130, 32, 64, 36, 18, 97,201,146, 37, 48,155,205, +216,178,101, 11,118,238,220,121,215, 28,170,209,104,240,241,199, 31,187,117,156,197,243, 60, 54,110,220,136,201,147, 38, 57,200, +149,109, 83,141,160,192, 64,248,250,249, 33, 62, 62,190, 66,130,149,157,157, 61,115,215,174, 93, 40,207,200,125,215,174, 93,142, +215,206, 70,238,174,228,147,101, 89, 24,141, 70, 60,253,244, 63,161, 92,223,120,227, 13,199,107,157, 78, 7,150,101,237,117, 65, + 92,197, 52, 80,160,175,236,159,207,122, 78,152,224,120,157,153,153, 89, 38,230,227,160,181, 42, 85,131, 85,154, 92, 77, 47, 88, +193,145,148,166, 11,199, 62, 51,172,102,128, 23,168, 62, 13,226,167,102,226,175, 12, 57,150, 44,219, 3, 0,120,231,165,230,104, +210,109, 30, 76,159, 63,131,113,109, 88,201,203,137,198,137, 0,166,223, 59,224,132, 6,161, 53, 66,240,215,245,243,224, 88, 22, + 18, 47, 63,120,249, 4, 66,176,154,144,155,126, 19,135,190, 89, 9, 0, 88,179,113, 7, 24,134, 1,199,177, 48,154,120, 68,214, + 12,129, 32, 8, 13,202,203,231, 19, 64,219,206,129,126,173, 34, 34,124, 8, 26,230,224,158, 8, 64,205,164,136, 76, 86,145, 54, + 42,121,203,236,220,188,182, 23,129,227, 21, 85,140,204,134, 18, 12, 64,188, 97, 3,126, 7,208,122,109,241, 90,117, 37, 54, 22, +170, 13, 27,160,180,125, 71, 74, 8,242,120,190, 82, 3, 28, 0,162,162,162,176,102,205,154,192, 49, 99,198, 84,138,100, 21, 21, + 21,205,215,104, 52, 93, 55,108,216, 16,216,175, 95,191,123,158, 95,191,126, 29, 29, 59,118, 76, 75, 77, 77,157,127, 63,228, 74, +171,213,226,206,157, 59,247,125,110,110, 39, 87,251,246,237, 11, 15, 13, 13, 69,116,116,180,255, 59,239,188,227, 14,201,154,238, + 76,174, 70,141, 26,245, 55,128, 0, 66, 72, 73,130, 66,108,207,158,116, 34, 89,185, 0, 22,151,179,243, 12, 87, 42,149, 72, 79, + 79,199,176, 97,195,112,245,234, 63, 10,207,144,144, 16,199,206, 46, 62, 62, 30,254,254,254, 32,132, 4,184, 82,102,127,127,255, + 64,147,201,132, 17, 35, 70,224,206,157,127,204, 21,107,212,168, 97,175, 83, 63,119,235, 49, 48, 48, 48,208, 96, 48,160, 67,135, + 14, 40, 42, 42, 2, 0, 12, 26, 52, 8, 34,145, 8,233,233,233, 16,137, 68,126,149,104, 30,191, 94,189,122,149,233, 34, 69,163, +209,152,189,189,189,159,112, 19,211,247,185,231,158, 75, 90,187,118,237, 61, 71,117,167, 78,157,122,222,199,199,103,191,143,143, + 79,125, 55, 49, 5,103, 50, 37, 22,139,239, 34, 88, 34,145, 8, 12,195, 8,120,252,229, 3, 0,246, 91,109,171, 1, 52,173, 70, +154, 44, 7,201,218,187,119, 47, 26, 53,106,132,236,236,108, 92,186,116,233, 95, 39, 87, 78,132, 4, 28,199, 57, 54,199, 50,153, + 12,209,209,209, 14,114, 69, 8, 65, 97, 97, 33, 56,142,179,207,215, 46, 77,126, 57, 57, 57, 8, 14, 10,130, 90,173, 70,189,200, + 72, 92,179,205, 35,246,215, 82,169, 20,132, 16, 88,173,214,138,234, 48, 31,197,182, 84,111, 87,117,243,216,201, 80,185,170,226, +144, 16, 8,130, 96,159,243,105, 85, 96,250,249,249, 65,175,215,187,138,249,232, 19, 44, 66, 72, 39, 0,135,224,116, 53,146, 16, +194, 60, 17,168, 90,191,112, 76,215, 97,207, 52,242,131, 33,227, 38,100,106, 63, 16,109, 4,150, 44,219,131,184, 27, 89, 0,128, + 37, 95,254,129,173,115,122, 2,114, 31, 68,121,101, 34, 72,205,245, 43,141, 96, 17, 80, 34, 80, 10,142, 45, 62,143,229, 56, 22, + 44,203, 64,151,145,130,229, 51, 71,219,200,213, 78,236, 62,114, 9,161,117, 26, 57,206,105, 65, 8, 64,203,239,212,254, 94,226, + 53, 99,250,183,150, 19,109, 14,160, 21,221,251, 5,111, 49, 72, 4,131,177,157, 67, 21,167,119, 21,173,185,152,107,110, 88,161, + 86,136, 16,135, 65, 59, 7, 64,236,244, 76,108,211,100, 49,246,173,177,237,214, 73, 37,136,134, 67,197, 27, 24, 24,136, 5, 11, + 22, 4, 78,153, 50,101, 11,220, 12, 12, 77, 41,189, 66, 8,233,252,218,107,175, 29,202,202,202, 10,140,138,138,130, 74,165,130, + 74,165, 66, 90, 90, 26, 6, 12, 24,144,150,154,154, 90, 89,237,216,230,145, 35, 71, 6,138,197, 98, 92,191,126, 29, 62, 62, 62, + 14, 98, 88, 89,114,165,209,104,126,223,191,127,127,120,221,186,117,113,249,242,101, 60,241,196, 19,216,190,125,187,255,139, 47, +190,232, 18,201,146,203,229,125,109,132, 9,177,177,177,218,216,216,216, 78, 0, 58, 85,244,219,177,177,177,218,183,223,126,251, +185,242, 8,150, 72, 36,186,163,211,233,130,228,114, 57,190,249,230, 27,168, 84, 42, 40, 20, 10,132,132,132, 64,167,211, 65,161, + 80,128, 82, 10,139,197, 98,159, 36,178, 92, 41,119, 70, 70, 70, 26,207,243, 97, 63,253,244, 19, 50, 50,254,241,137, 23, 30, 30, + 14,155,189, 70,166,187,117,153,156,156,156, 70, 8, 9,251,235,175,191,144,144,144,128, 30, 61,122,224,187,239,190, 67,243,230, +205, 1, 0, 38,147,169, 50,206,247,120,150,101,105, 57,237, 71, 0,120, 87, 37,166,109,209,114, 11, 83, 16, 4,193, 78,174,156, +255, 58,147,174, 10,126,243,113, 17, 47,231,253, 65,117,205,100,143, 30, 61,160,211,233,160, 82,169, 42, 92,128, 31, 54,193, 18, +137, 68,152, 61,123, 54, 70,143, 30,141,192,192, 64, 76,158, 60, 25, 28,199, 57,146,243, 73,128, 59, 18, 16, 24, 88,238,115,187, + 13, 86, 5,243,165,218,203,203,107, 54,195, 48, 3, 89, 23, 42,142,231,121, 94, 16,132, 29,185,185,185,229,186,105,176, 27,164, +187,210, 22,206,117, 80, 65, 94,239, 27,179, 52, 46,242, 40,139,189,116,135,108,170,185, 67,206,228,234,253,209, 93,134, 61,211, +200, 27, 63, 28, 56, 9,177, 57, 7, 48,229,151,211,178, 22, 16,177, 18,129, 94,162,208, 82, 43,159, 97, 47, 39, 38, 37,195,215, + 91,101, 35, 87,182,196, 48,104,210,168,120,243,186,251,200, 37,132,214,110, 4,142,101,193,177, 44, 84,114, 41,210, 82, 83,192, +113,204,229,178,126,182, 49,139,254,253,235,135, 69, 4, 6, 72,128,198,229, 12,128, 24, 53, 66,131, 37,232,238, 43, 11,111,204, +162,127, 5,132, 5, 82, 27,193,202, 7, 96, 26, 49, 2,209,107,215,226, 74,108, 44,110,198,198,162,214,218,181,192,136, 17, 16, +240,207,173, 66,190, 18, 26, 44,123, 71,180, 19,161,233,211,167,167,101,101,101, 13,169,228,110,241, 74,118,118,118,231,169, 83, +167,166,101,102,102, 66,161, 80, 32, 37, 37,229,190,200, 21, 0, 24, 12,134, 87,214,174, 93,155,118,232,208, 33,168, 84, 42,168, +213,234, 74, 19, 44,187,230,106,230,204,153, 53,195,194,194, 16, 31, 31, 15, 47, 47, 47,248,250,250,162, 73,147, 38, 56,118,236, +152,127, 88, 88,216, 79,182, 91, 70,229,229,233,251,181,107,215,230, 0,192,218,181,107,115, 8, 33,135, 9, 33,159, 18, 66, 86, +151, 72,159, 18, 66, 14, 59,127,215, 96, 48,124, 91, 30,182,201,100, 58,124,233,210, 37,170, 80, 40,192,178, 44,204,102, 51,100, + 50,153,163,189,236,134,185, 0, 96, 51, 60, 61,234, 74,217,243,243,243,247,126,254,249,231,150,176,176, 48, 60,249,228,147,136, +137,137, 65,155, 54,109, 16, 30, 30,142,217,179,103,155, 10, 10, 10,246, 86,130, 96,237,222,190,125,187, 37, 44, 44, 12, 49, 49, + 49,144, 74,165,104,210,164, 9, 66, 66, 66,176, 96,193, 2, 83,110,110,238,222, 74, 52,211,237,243,231,207,179,229,144, 91, 13, + 92,184,141, 91, 66,238,156, 62,125,154,109,221,186,245, 15, 37, 31,180,108,217,242, 7,149, 74,229, 5,192, 93,187, 62,234, 76, +170,164, 82,169, 35,217, 63,231, 56,238,191,160,193, 26, 7,224,111, 0,241, 0, 38, 87,167,140, 57,223, 22,204,202,202,194,165, + 75,151,112,230,204, 25,180,110,221, 26, 71,143, 30, 5,138,221, 52, 52,251, 23,243, 7, 74, 41, 68, 34, 17,162,162,162,240,246, +219,111, 99,207,158, 61,184,114,229, 10, 44, 22,139,131, 0,217,109, 46,221,209, 96,137,197, 98, 4, 6, 6,194, 98,177, 56,180, + 87, 0,112,237,234, 85,112, 28, 7, 65, 16, 96, 50,153, 42,212, 96,121,121,121,205, 94,183,110,221,155,153,153,153,193, 25, 25, + 25, 1,206, 41, 45, 45, 45, 32, 37, 37, 37, 32, 41, 41, 41,224,206,157, 59, 1,183,110,221, 10,184,121,243,102,240,162, 69,139, +222,244,242,242,154,237,234, 26,212,164, 73, 19,188,241,198, 27,142,180, 98,197, 10, 71, 58,116,232,208, 63,202, 14, 55,214,181, +168, 89, 75,208, 51,131, 58,210, 30,127,226, 72,113,239,140, 42, 15,243, 46, 46,242, 88,104,176,156,217, 39, 0, 52, 8, 82,204, +123,255,181,142,195,158,126,194, 11,223, 31,248, 3,115,190,189,113, 57,114,152,127, 84, 93,239, 12, 8, 25,151,240,206, 75,205, +177,228,203, 63, 0, 20, 31, 17, 10,233,113,160,217,241,160,234, 48,220,212,101,150,122,188, 96, 53, 21, 29,188,113,253,106,151, +168,198, 45,152,212, 76,253, 93, 55, 12,162, 59, 15, 0, 33, 4, 53,106, 55, 2,203,113, 96, 89, 6, 28,203, 66,171,145,225,210, + 95,127, 9, 70,131,225, 96,105,152,209, 0,231, 43,151,124,242, 82,247, 38, 50, 4,235, 1,185,244,159,217,247,198,128, 18, 43, + 3, 7, 52, 86, 99,120,146,175,252, 96, 90,209, 39,162, 2,243, 15, 0, 44,101,237,106,212, 82, 41, 10, 1,100,138, 68,104,179, +124, 57,174,198,198, 66,189, 97, 3, 88, 20, 91, 81,251, 47, 95,142,252,205,155,193, 88,173,160, 50,217,125,105,176,210,210,210, + 48,104,208,160,251, 34, 66,206,154,172, 49, 99,198, 28, 90,176, 96, 65,224,244,233,211,171, 12,115,242,228,201,135,190,252,242, +203,192, 90,181,106, 85,186,179,169, 84,170, 73,130, 32,104, 23, 47, 94,156,186,116,233, 82,148,180, 23,179, 17, 28,169, 86,171, + 93, 2,160, 75, 57, 80,115, 70,141, 26, 37, 6, 48,218,166,201,122,114,212,168, 81,199, 41,165,211, 74,212,239,172, 53,107,214, + 12,114, 58, 74,252, 20,192,242,242,242,152,151,151,183,250,237,183,223, 30,241,219,111,191,249,201,100, 50, 16, 66, 32, 22,139, + 81,175, 94, 61,155,230,181,216,224,149, 82,138, 9, 19, 38,100,166,167,167,187,228,166,193,104, 52,110,156, 51,103, 78, 23,131, +193, 16, 62,124,248,112,177,183,183, 55,210,210,210,240,225,135, 31,154, 54,110,220,120,167,160,160,192, 93, 91, 41, 88, 44,150, +141, 51,102,204,232,172,215,235,107,191,250,234,171,226,220,220, 92, 24, 12, 6, 76,156, 56,209,180, 97,195,134, 68,131,193,224, +182,163,222, 54,109,218, 92,191,117,235, 86,251,194,194,194,108,133, 66, 81, 82,187, 71,148, 74,101, 11, 0,155,221,193,140,142, +142,142,191,125,251,118,235,121,243,230, 29,182, 88, 44,162, 83,167, 78,245,177,147,171, 79, 62,249,228,144, 76, 38,235, 10,247, +141,241, 5,169, 84,122,151,198,170,228,107,142,227, 30,123, 13, 22,165,244, 16,138, 93, 95, 84, 43, 41, 73,174,226,226,226,208, +165, 75,241,144, 62,122,244, 40,218,181,107,135,163, 71,143,162,125,251,246,255,170,155, 6, 59,193,226, 56, 14, 47,190,248, 34, +186,117,235,134,154, 53,107, 58,198,185,179,145,187, 59, 36,195,106,181,162,113,227,198, 48,154, 76, 16,139,197,142, 35, 72,142, +227,224, 31, 16,128,235,215,175,187,164,193, 98, 24,102, 96,223,190,125,153, 11, 23, 46, 96,240,224,193,248,226,139, 47,202,252, +238,203, 47,191,140,109,219,182,161,111,223,190,204,187,239,190, 91,174,155, 6,187,113,185, 43,101,178,175,211, 21,105,240,170, + 10,211,153,139, 60, 54, 4,203,201,185, 23,106,251, 43,134,119,171,199,225,251,131,127, 96,206,247,183, 55,242,148,126,243,205, +217,236, 31, 39,183, 3,204, 59, 94, 66,147, 1,155,139,143, 5, 1, 8,233,113, 48,239,120, 25, 68,225,135, 35, 73, 34,228, 26, +204,187, 75,239,112,230, 47,190,219,178,242,237,214,171,218,251, 7, 7,120, 65,151,107,112,144,172,179,135,118, 2, 0,250,143, +154, 15,142, 45, 62, 58,212,168,100,144,139, 89,124,189,233,163, 76,179,185,168,212, 94, 37,136,152,209,175,182,173,231,229,229, + 69,129,134,226,187, 27,169,246,206,123,137, 86, 51,111,248,197,101,227,165,186, 42,205,242, 11, 57,163, 1,124,114,143, 6, 35, + 39,199,144,127,230,140,188,195,150, 45,184,212,175, 31,106,228,231, 35,206,219, 27,254, 86, 43, 84,118,109,213,134, 13,200,255, +226, 11,200,172, 86,192,203, 11, 89, 43, 87,194,122,254, 60,172,121,121, 6,119, 9,214,181,107,215,238, 91,203, 84, 26, 33,154, + 50,101,202,150,172,172,172, 33, 85,137,249,202, 43,175, 28, 58,112,224, 64, 96,101,113,242,243,243,199, 3, 24, 95, 5,249, 17, + 8, 33,211,108, 14,237, 70,199,198,198,106, 79,159, 62, 61,130, 16,178,138, 82,154, 98,171,219,128,145, 35, 71,190, 86,130, 92, + 85,120,139,144, 82,122, 91,165, 82,205, 29, 63,126,252,252,165, 75,151,170,236, 6,237,231,206,157,131,213,106,133, 72, 36, 2, +207,243, 24, 57,114,164, 62, 43, 43,107, 73, 89, 30,152, 75,193,181, 18, 66, 94,158, 63,127,254,200,143, 62,250,168, 55,203,178, +254, 60,207,103, 24, 12,134,159, 12, 6,195,218,202,220,162,178,213,195,208,233,211,167, 15, 93,182,108, 89, 95,134, 97, 2,172, + 86,107,102,126,126,254, 46,131,193, 80, 41,223, 90,199,143, 31,207, 88,181,106,213,141,140,140,140, 6,161,161,161,185, 42,149, +202,100, 50,153, 88,185, 92,174, 81, 42,149,209, 0, 78, 0,184,232, 14,230,153, 51,103, 82, 63,253,244,211, 4,163,209, 24,245, +233,167,159, 30,209,104, 52, 7, 8, 33, 68, 44, 22,123,203,229,242, 46, 0, 14, 3,184,230,150,234,157, 97, 4,103,109, 85, 73, +251, 43,137, 68,242, 95,177,193,170,118, 98,115,211,112,150, 82,138,204,204, 76, 92,184,112,193, 78,174,162, 1,160,125,251,246, +103,237, 36,235,204,153, 51,136,137,137, 57, 75, 8,121,232,110, 26,156, 53, 88,118, 34, 85,179,102, 77,199,123,231,228,100,131, +229,146,240, 60, 15,177, 88, 12,142,227, 16, 28, 18,226,248, 45, 74, 41,174, 95,191, 14,157, 78,231, 18,193, 98, 89,150, 37,132, + 96,240,224,193, 46,253,238,255,253,223,255,225,240,225,195, 96, 93,100,131, 44,203, 34, 34, 34,194,165,147, 22,184,104, 47,197, +178, 44, 66, 67, 67, 43,141,233,204, 69, 30, 27,130,229, 44,241,233,134,121, 47,127,120,236,221,139,169, 69,223, 92, 74, 43,124, + 27, 0,221, 17,167,248,165,137, 63,251,204, 51,245, 19, 97, 92,219, 30, 68, 83,236,116,141,234, 83, 64,148,129, 72, 20,106, 96, +214, 15,151, 83,173, 32,139,203, 88, 12,146,197, 50,197,180, 77,235, 62, 89, 58,114,204, 4, 85, 92,124, 26,114,245, 70,176, 44, +227, 60,105,130,227, 88,104,148, 50,132, 5,121,225,203,207, 62,204,207,207,203,153, 94, 86, 92,194,112,181, 56,182,107,139,186, + 82, 4, 21, 0, 69, 50,160,232,159,206, 74,255,234, 99, 91,213, 75, 40,169, 26,105,241,236,237, 2,217,119,183, 11, 98, 75, 35, + 88, 69, 38,211, 51,239, 62,251,236,207,243,126,252, 81,209,224,155,111,144,246,194, 11, 8,201,203,131, 20,184,203, 38,139,177, + 88, 0, 47, 47,100,126,241, 5, 10,121, 30, 75,135, 15, 47, 44, 50,155,187,187,169,129, 16,119,234,212,169,202,200,149, 51, 33, +130,155,118, 92,174,146,172,110,221,186, 29,162,148, 74,171,193,206,221, 78,178,204,167, 79,159,126,237,200,145, 35,241,184, 59, +224,103,206,145, 35, 71,226, 95,125,245, 85,178,126,253,250, 13, 0,102,184,234,120, 83,175,215,127,162,213,106,209,177, 99,199, + 25, 11, 23, 46,244,109,222,188, 57, 2, 2, 2,144,159,159,143, 51,103,206, 96,220,184,113,186,188,188,188,133,217,217,217, 75, +221,204, 51,111,211,212,172,173,202,122, 0,240,185, 45, 85,137,188,254,250,235,231,226,227,227,179,252,253,253, 91,137,197,226, + 39, 81,108,231,147, 10, 96,131,187, 68,200, 46,163, 71,143,254, 43, 62, 62, 62,179, 70,141, 26,173,109,152, 90, 0, 73, 0,214, + 85, 2, 51,249,143, 63,254, 8,109,209,162, 5, 35, 18,137, 40,203,178, 16,137, 68,148,227, 56,106,179,155,161, 0,176,107,215, + 46, 41, 0, 29, 60,242,176,199,166,195, 77, 67, 74, 74,138,131, 92, 57, 57, 26,141,110,223,190,253, 89, 27,185,178, 63,179,254, + 75,121,197,156, 57,115,176,102,205, 26, 84,228,129,220,118, 91,143, 84,132,103,215, 96,241, 60, 15,179,217,140,184,184, 56, 16, + 66,192,243,188,227, 88,208,238,162,193,106,181,150,123,251,156,231,121,222,100, 50,225,171,175,190,114,137,100,109,221,186, 21, + 69, 69, 69,224, 43, 96,110,206, 46, 21,154, 54,109, 10,157, 78,231,184,196, 19, 29, 29,237,248,158,217,108,118,139,176,218, 49, +163,162,162,144,153,153, 9, 63,191,226,123, 54, 97,175,196,254,163,108, 41,248,239,248,253, 37,174,186, 22,104,170,213,122, 25, + 37,150,111,159,111, 36,237, 60, 48,218, 11,181,131,212, 16,137,101, 72,206,179, 98,255,197, 60,172, 59,148,122,199, 96,225,123, + 95, 73, 47, 56, 95, 30,142, 76,233,245, 83,243,182,221,218,189,242,218, 56,165,222,200, 35, 33,225, 22, 50,210, 83,192, 16, 6, +193, 53, 66, 17, 30, 30, 1,185,132,193, 23,107,151, 22,156, 61,126,224, 88,126,158,174, 71, 89, 88,189,181,146,227,203, 94,104, +215,186, 78, 29, 53,129,213, 2,240, 22,192,106, 1, 4,219, 95,251,103,194,221,125,237,194,133, 28,250,238,159,186,223,127,204, + 49,149, 26, 83,106, 32, 33,237,188,189,189,127,158,243,253,247, 10,193,100,130,105,196, 8,200,141, 70,200, 9, 1,161, 20, 12, + 0, 34,147, 33,107,229,202, 98,114, 53,108, 88, 97, 78,110,174,219,161,114,252,253,253, 63,207,204,204,124,228, 60,185,251,250, +250, 78,173,140,187,135, 7,152,167, 0, 0, 57,118, 39,163, 37,118,210,254,118,173, 86, 37,112, 35,252,253,253,223,101, 24,166, + 13,165,212,151, 97,152,108, 65, 16, 78,164,167,167, 47,162,148, 94,247, 44,165,255, 90,123,219, 61,185, 87,116, 94,157, 14,224, + 45, 0,249,148,210, 4, 79,205, 61,244,118,106, 6,224, 44, 74,185, 45, 88,222,179,135, 37,190,190,190, 39,127,254,249,231,230, +181,107,215,102,156,205, 21,236,190,238,236,199, 88, 28, 87,172,135,248,237,183,223,172,131, 7, 15, 62,145,154,154,218,177, 44, + 76,141, 70,243,203,223,127,255,253,116,110,110,238, 61, 68,202,217,179,187,253,125, 65, 65, 1,198,140, 25,179, 47, 47, 47,175, +212, 80, 57, 90,173,118,217,210,165, 75,223,236,223,191, 63, 99,119, 43,225,156,236, 97,125,236,201,108, 54, 99,243,230,205,194, + 71, 31,125,244,113, 78, 78, 78,153, 71,132, 33, 33, 33,119,146,147,147, 67,237, 46, 19,202, 74,206, 18, 17, 17,145,146,144,144, + 16,242, 48, 49,255, 51, 4,203, 54, 40, 72, 84,128,114, 16, 5, 6, 50, 16, 26, 51,132, 72,172, 20, 87, 64,241,139,130, 43, 92, +117, 38,153,186,116, 68, 38, 86, 40,198,170, 85,222, 51,251, 15,121,195, 55,162, 78, 36, 9, 12,174, 1, 2, 6,105,169, 73,184, +117,227, 42,253,118,203,202,172,130, 60,221,236,194, 66,253,202,242,112, 26, 16, 82,183,142, 70,188, 93,194,163, 62,236,229, 40, + 17, 63,234,158, 29, 6, 0,179,136,185,124, 35,223, 50,248, 82, 57,139,164,157,100,205,216,185, 83,193, 53,108,120,143,131, 55, + 65, 16, 96, 61,127, 30, 75,135, 15,175, 20,185,242,136, 71, 60,114,223, 11,120,109, 84,236,227,202, 2, 32,241,223, 12, 42,252, + 31,111,163,106, 27,236,153, 16,162,244,241,241, 57,192,178,108,184, 93, 3,227,108, 19, 84, 74,160,231,132,180,180,180,174,148, +210,194,114, 48,235,168,213,234,149, 60,207,183,116, 37,216, 51,203,178,167,242,243,243,199,150, 23,236,249, 65,220, 34,244,243, +243,187,126,235,214,173, 58,246, 91,209,206,107,101,201,122, 0,128,107,215,174,161, 83,167, 78,183, 82, 82, 82, 34, 30, 38,230, +127,138, 96, 85,113,231, 14, 17, 75, 85, 67, 37,114,217, 83,130,197, 26, 5, 2,112, 34,209,101, 83,145,225,160,209,160,223, 84, +214,177, 96, 73,194,119, 63,121,160, 21, 20,126, 32, 33,237,164, 98,241, 47, 98, 47, 47,121,105, 95,181,230,229, 25,138,204,230, +103, 60,228,202, 35, 30,241,136, 71, 60,242, 8, 17,223,250, 62, 62, 62, 63,139, 68, 34,169, 51,137, 44,249,218,177,214, 89,173, + 69, 25, 25, 25, 61,202, 59,109,121, 16,152,143,188,216,153,166,171,201,206, 75, 92,252,110, 55, 87, 49,109,169, 83,117,199,124, +128,101,167, 85,136,217,201,134, 57,235, 17,201,103,167,234,138,233,196,195, 93,194,117, 7,211,213, 62,229,102, 62,105, 85,231, +243, 65, 97, 86,213, 56, 42, 37,159,244, 1,180,251,172, 71, 36,159,157,170, 27,102,201,254,227, 10,174,187,152,174,244,169, 74, +228,147, 86,117, 62, 31, 20,230,253,142,163,114,242, 73,239,183, 47,149,209,246,179,220,229, 30,143, 98,226,220,100,189,244, 1, +145, 60,226,132, 79,170, 43,166,115, 61, 84,165, 75,255, 7, 16, 30,224, 80, 85, 99,150,168,207,170,146, 89,182, 27, 35,135,225, +130,163, 80,119,202, 94, 21,237, 94,162,172, 85,130,235,140, 89, 85,117,233,140, 83, 85,253,254, 65, 99, 86,213, 88, 42,137, 89, + 21,253,190,180,118,127,128,109, 84, 85,249,172,146,177,244, 32,250,124, 41,253,231,190,113, 75, 98, 86,197, 88, 42,137, 89, 21, +253,254, 97, 96, 86,197, 88, 42, 13,179, 42,250,125, 89,109,255, 95,209, 20, 50,149,169,172, 7,164,178,172,242, 0,143, 15, 34, + 34,247,131, 32,153,132, 16,106,243, 96, 91,237, 49,171,184,141,102,217, 48,103, 85, 33,102,231,170,106,163, 7,209,223,157, 49, +171, 10,191, 36, 78, 85,180, 83,105,152,247,155,223, 50,242, 89,229,101,191,223,126,255,176, 48,171,184,141,170,100, 44,149,192, +236, 92,197,155,128,206, 78,239,103, 85, 37,102, 85,141,165, 82,242,121,223,237, 84, 26,230,253,230,183,140,124, 86,121,217,171, + 98, 13,121, 80,184,143,130,112,213, 33, 19, 15,130, 8,217, 7, 93, 85, 98, 63, 8, 45,206,131,210,180, 85,149, 22,167, 20,220, +195, 85, 8,119,168,170,243,105,203, 31,121,156,156,213,121,198,146,103, 44, 61,202, 99,169,180,126, 67, 41,157, 69, 8,153, 89, +157,250,121, 73,204,170, 34, 66,165,148,253,190,198, 82,201,255,173,138,177, 84, 1, 38,121, 16,229,175,234,241, 84, 29,133,169, + 46, 25,177,177, 90,250, 0,240, 58, 87,231, 6,120, 64,249,236,252, 40,148,253, 65,228,147, 16, 50,235, 1,149,253, 81,169, 83, +207, 88,242,140,165,106, 55,150, 74,244,201,206, 85,165, 25,170,234,141, 84, 73,204,170,248, 13,103,140,170,234,163, 15,186,236, + 85, 57,150, 30, 68,219, 63, 42,242,255, 3, 0, 76, 61, 50,167, 83, 88, 95, 69, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index 765343ae4da..9d38161c753 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -219,7 +219,7 @@ DEF_ICON(ICON_POSE_DATA) DEF_ICON(ICON_BONE_DATA) DEF_ICON(ICON_CONSTRAINT) DEF_ICON(ICON_SHAPEKEY_DATA) -DEF_ICON(ICON_BLANK079a) +DEF_ICON(ICON_CONSTRAINT_BONE) DEF_ICON(ICON_BLANK079) DEF_ICON(ICON_PACKAGE) DEF_ICON(ICON_UGLYPACKAGE) diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index 37a08bcf2ed..0fb7ea9283c 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -124,7 +124,7 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_BONE, 0, 0, "Bone"); if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_BONE_CONSTRAINT, 0, 0, "Bone Constraints"); + uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_CONSTRAINT_BONE, xco+=BUTS_UI_UNIT, yco, BUTS_UI_UNIT, BUTS_UI_UNIT, &(sbuts->mainb), 0.0, (float)BCONTEXT_BONE_CONSTRAINT, 0, 0, "Bone Constraints"); if(sbuts->pathflag & (1<mainb), 0.0, (float)BCONTEXT_MATERIAL, 0, 0, "Material"); if(sbuts->pathflag & (1< Date: Mon, 2 Nov 2009 11:37:35 +0000 Subject: [PATCH 311/412] * Set some custom empty draw types on adding force fields, where relevant --- source/blender/editors/object/object_add.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index cbf08fbe705..f61cf9b9b0c 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -232,9 +232,19 @@ static Object *effector_add_type(bContext *C, int type) BLI_addtail(curve_get_editcurve(ob), add_nurbs_primitive(C, CU_NURBS|CU_PRIM_PATH, 1)); ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } - else + else { ob= add_object(scene, OB_EMPTY); - + + switch(type) { + case PFIELD_WIND: + case PFIELD_VORTEX: + ob->empty_drawtype = OB_SINGLE_ARROW; + break; + } + } + + + ob->pd= object_add_collision_fields(type); /* editor level activate, notifiers */ From 9e9ab1a22732487778aa7515bd3d08fbcdec3d79 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 2 Nov 2009 13:20:14 +0000 Subject: [PATCH 312/412] *Added subdivide to armature toolbar, and gave it a hotkey (W) *Fixed some remaining icon issue in the shape key properties --- release/scripts/ui/properties_data_mesh.py | 10 ++++++++-- release/scripts/ui/space_view3d_toolbar.py | 1 + source/blender/editors/armature/armature_ops.c | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index 48f0c39a4f3..788345340d6 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -180,8 +180,14 @@ class DATA_PT_shape_keys(DataButtonsPanel): subrow = sub.row(align=True) subrow.active = enable_edit_value - subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") - subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + if ob.shape_key_lock: + subrow.itemR(ob, "shape_key_lock", icon='ICON_PINNED', text="") + else: + subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") + if kb.mute: + subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_ON', text="") + else: + subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") sub.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 3c99a656524..73f613177b8 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -278,6 +278,7 @@ class VIEW3D_PT_tools_armatureedit(View3DPanel): col = layout.column(align=True) col.itemL(text="Modeling:") col.itemO("armature.extrude_move") + col.itemO("armature.subdivide_multi", text="Subdivide") col = layout.column(align=True) col.itemL(text="Grease Pencil:") diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 790b0a39d41..cc359deca07 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -209,7 +209,7 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "ARMATURE_OT_bone_primitive_add", AKEY, KM_PRESS, KM_SHIFT, 0); /* only the menu-version of subdivide is registered in keymaps for now */ - WM_keymap_add_item(keymap, "ARMATURE_OT_subdivs", SKEY, KM_PRESS, KM_ALT, 0); + WM_keymap_add_item(keymap, "ARMATURE_OT_subdivide_multi", WKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_parent_set", PKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_parent_clear", PKEY, KM_PRESS, KM_ALT, 0); From 9ea97203ae2049ea50e7bfbe3e30815eebb5990c Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 2 Nov 2009 14:03:13 +0000 Subject: [PATCH 313/412] Mac : - Updated CMake files for building with openCollada Update of the 10.5 libs including openCollada is coming in next commit --- CMakeLists.txt | 21 ++++++++++++++++++--- source/blender/collada/CMakeLists.txt | 20 ++++++++++++++++++++ 2 files changed, 38 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4126bc860da..74c527841f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,7 +91,7 @@ IF(NOT WITH_GAMEENGINE AND WITH_PLAYER) MESSAGE("WARNING: WITH_PLAYER needs WITH_GAMEENGINE") ENDIF(NOT WITH_GAMEENGINE AND WITH_PLAYER) -IF (WITH_OPENCOLLADA) +IF (WITH_OPENCOLLADA AND NOT APPLE) SET(OPENCOLLADA /usr/local/opencollada CACHE FILEPATH "OpenCollada Directory") SET(OPENCOLLADA_LIBPATH ${OPENCOLLADA}) SET(OPENCOLLADA_LIB OpenCollada) @@ -101,8 +101,7 @@ SET(PCRE_LIB pcre) SET(EXPAT /usr CACHE FILEPATH "Expat Directory") SET(EXPAT_LIBPATH ${EXPAT}/lib) SET(EXPAT_LIB expat) - -ENDIF (WITH_OPENCOLLADA) +ENDIF (WITH_OPENCOLLADA AND NOT APPLE) # For alternate Python locations the commandline can be used to override detected/default cache settings, e.g: # On Unix: @@ -517,12 +516,28 @@ IF(APPLE) SET(PLATFORM_CFLAGS "-pipe -fPIC -funsigned-char -fno-strict-aliasing") SET(PLATFORM_LINKFLAGS "-fexceptions -framework CoreServices -framework Foundation -framework IOKit -framework AppKit -framework Carbon -framework AGL -framework AudioUnit -framework AudioToolbox -framework CoreAudio -framework QuickTime") ENDIF (WITH_COCOA) + IF(WITH_OPENMP) SET(LLIBS "${LLIBS} -lgomp ") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp ") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp ") ENDIF(WITH_OPENMP) + IF (WITH_OPENCOLLADA) + SET(OPENCOLLADA ${LIBDIR}/opencollada) + SET(OPENCOLLADA_INC ${OPENCOLLADA}/include) + SET(OPENCOLLADA_LIBPATH ${OPENCOLLADA}/lib) + SET(OPENCOLLADA_LIB "OpenCOLLADASaxFrameworkLoader -lOpenCOLLADAFramework -lOpenCOLLADABaseUtils -lOpenCOLLADAStreamWriter -lMathMLSolver -lGeneratedSaxParser -lUTF -lxml2" ) + #pcre is bundled with openCollada + #SET(PCRE ${LIBDIR}/pcre) + #SET(PCRE_LIBPATH ${PCRE}/lib) + SET(PCRE_LIB pcre) + #native OSX libxml2 is used + #SET(EXPAT ${LIBDIR}/expat) + #SET(EXPAT_LIBPATH ${EXPAT}/lib) + #SET(EXPAT_LIB expat) + ENDIF (WITH_OPENCOLLADA) + SET(SDL ${LIBDIR}/sdl) SET(SDL_INCLUDE_DIR ${SDL}/include) SET(SDL_LIBRARY SDL) diff --git a/source/blender/collada/CMakeLists.txt b/source/blender/collada/CMakeLists.txt index 5a8c08a254d..f510e7ee9ad 100644 --- a/source/blender/collada/CMakeLists.txt +++ b/source/blender/collada/CMakeLists.txt @@ -26,6 +26,24 @@ FILE(GLOB SRC *.cpp) +IF(APPLE) +SET(INC + . + ../blenlib + ../blenkernel + ../windowmanager + ../makesdna + ../makesrna + ../editors/include + ../../../intern/guardedalloc + ${OPENCOLLADA_INC}/COLLADAStreamWriter + ${OPENCOLLADA_INC}/COLLADABaseUtils + ${OPENCOLLADA_INC}/COLLADAFramework + ${OPENCOLLADA_INC}/COLLADASaxFrameworkLoader +) + +ELSE(APPLE) + SET(INC . ../blenlib @@ -41,4 +59,6 @@ SET(INC ${OPENCOLLADA}/COLLADASaxFrameworkLoader/include ) +ENDIF(APPLE) + BLENDERLIB(bf_collada "${SRC}" "${INC}") From 1d9f90ed42ba61d615dd0188e39cc12f0b71493f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 16:07:49 +0000 Subject: [PATCH 314/412] - all add object operators now take view_align as an argument, and enter_editmode where its used. Makes running the operator from python pradictable without having to know the user prefs. - missing return in function - python error in view3d (assumed active object exists) --- release/scripts/ui/space_view3d.py | 2 +- source/blender/editors/curve/editfont.c | 2 +- source/blender/editors/include/ED_object.h | 10 +- source/blender/editors/mesh/editmesh_add.c | 92 +++++++++-- source/blender/editors/object/object_add.c | 151 ++++++++++++------ .../editors/sculpt_paint/paint_vertex.c | 2 +- .../editors/space_view3d/view3d_edit.c | 5 +- source/blender/makesrna/intern/rna_access.c | 3 + 8 files changed, 197 insertions(+), 70 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 24484f84e44..ac65a3dae45 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1334,7 +1334,7 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel): col.itemR(view, "all_object_centers") col.itemR(view, "relationship_lines") if ob and ob.type == 'MESH': - mesh = context.active_object.data + mesh = ob.data col.itemR(mesh, "all_edges") col = layout.column() diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c index 2be567e1921..6ebc9c8a1c9 100644 --- a/source/blender/editors/curve/editfont.c +++ b/source/blender/editors/curve/editfont.c @@ -479,7 +479,7 @@ static void txt_add_object(bContext *C, TextLine *firstline, int totline, float obedit= add_object(scene, OB_FONT); base= scene->basact; - ED_object_base_init_from_view(C, base); + ED_object_base_init_from_view(C, base, 1); /* seems to assume view align ? TODO - look into this, could be an operator option */ where_is_object(scene, obedit); obedit->loc[0] += offset[0]; diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index b136baa6bdb..3d445016d98 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -42,6 +42,9 @@ struct Mesh; struct Curve; struct ReportList; struct ModifierData; +struct wmOperatorType; +struct wmOperator; +struct wmEvent; /* object_edit.c */ void ED_operatortypes_object(void); @@ -74,8 +77,11 @@ void ED_object_toggle_modes(struct bContext *C, int mode); void ED_object_exit_editmode(struct bContext *C, int flag); void ED_object_enter_editmode(struct bContext *C, int flag); -void ED_object_base_init_from_view(struct bContext *C, struct Base *base); -struct Object *ED_object_add_type(struct bContext *C, int type); +void ED_object_base_init_from_view(struct bContext *C, struct Base *base, int view_align); +void ED_object_add_generic_props(struct wmOperatorType *ot, int do_editmode); +int ED_object_add_generic_invoke(struct bContext *C, struct wmOperator *op, struct wmEvent *event); +void ED_object_add_generic_get_opts(struct wmOperator *op, int *view_align, int *enter_editmode); +struct Object *ED_object_add_type(struct bContext *C, int type, int view_align, int enter_editmode); void ED_object_single_users(struct Scene *scene, int full); diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index e7cf03cd230..85c3558c2ef 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -1273,7 +1273,7 @@ static void make_prim(Object *obedit, int type, float mat[4][4], int tot, int se /* uses context to figure out transform for primitive */ /* returns standard diameter */ -static float new_primitive_matrix(bContext *C, float primmat[][4]) +static float new_primitive_matrix(bContext *C, int view_align, float primmat[][4]) { Object *obedit= CTX_data_edit_object(C); Scene *scene = CTX_data_scene(C); @@ -1283,7 +1283,7 @@ static float new_primitive_matrix(bContext *C, float primmat[][4]) Mat4One(primmat); - if(rv3d && (U.flag & USER_ADD_VIEWALIGNED)) { + if(rv3d && view_align) { Mat3CpyMat4(vmat, rv3d->viewmat); } else Mat3One(vmat); @@ -1307,7 +1307,8 @@ static float new_primitive_matrix(bContext *C, float primmat[][4]) /* ********* add primitive operators ************* */ -static void make_prim_ext(bContext *C, int type, int tot, int seg, +static void make_prim_ext(bContext *C, int view_align, int enter_editmode, + int type, int tot, int seg, int subdiv, float dia, float depth, int ext, int fill) { Object *obedit= CTX_data_edit_object(C); @@ -1316,14 +1317,14 @@ static void make_prim_ext(bContext *C, int type, int tot, int seg, if(obedit==NULL || obedit->type!=OB_MESH) { /* create editmode */ - ED_object_add_type(C, OB_MESH); + ED_object_add_type(C, OB_MESH, view_align, FALSE); ED_object_enter_editmode(C, EM_DO_UNDO); obedit= CTX_data_edit_object(C); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); - dia *= new_primitive_matrix(C, mat); + dia *= new_primitive_matrix(C, view_align, mat); make_prim(obedit, type, mat, tot, seg, subdiv, dia, depth, ext, fill); @@ -1332,7 +1333,7 @@ static void make_prim_ext(bContext *C, int type, int tot, int seg, /* userdef */ - if (newob && (U.flag & USER_ADD_EDITMODE)==0) { + if (newob && !enter_editmode) { ED_object_exit_editmode(C, EM_FREEDATA); /* adding EM_DO_UNDO messes up operator redo */ } WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, obedit); @@ -1340,8 +1341,11 @@ static void make_prim_ext(bContext *C, int type, int tot, int seg, static int add_primitive_plane_exec(bContext *C, wmOperator *op) { + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + /* sqrt(2.0f) - plane (diameter of 1.41 makes it unit size) */ - make_prim_ext(C, PRIM_PLANE, 4, 0, 0, sqrt(2.0f), 0.0f, 0, 1); + make_prim_ext(C, view_align, enter_editmode, PRIM_PLANE, 4, 0, 0, sqrt(2.0f), 0.0f, 0, 1); return OPERATOR_FINISHED; } @@ -1353,17 +1357,23 @@ void MESH_OT_primitive_plane_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_plane_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_plane_exec; ot->poll= ED_operator_scene_editable; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_cube_exec(bContext *C, wmOperator *op) { + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + /* sqrt(2.0f) - plane (diameter of 1.41 makes it unit size) */ - make_prim_ext(C, PRIM_CUBE, 4, 0, 0, sqrt(2.0f), 1.0f, 1, 1); + make_prim_ext(C, view_align, enter_editmode, PRIM_CUBE, 4, 0, 0, sqrt(2.0f), 1.0f, 1, 1); return OPERATOR_FINISHED; } @@ -1375,16 +1385,23 @@ void MESH_OT_primitive_cube_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_cube_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_cube_exec; ot->poll= ED_operator_scene_editable; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_circle_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_CIRCLE, RNA_int_get(op->ptr, "vertices"), 0, 0, + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_CIRCLE, RNA_int_get(op->ptr, "vertices"), 0, 0, RNA_float_get(op->ptr,"radius"), 0.0f, 0, RNA_boolean_get(op->ptr, "fill")); @@ -1399,6 +1416,7 @@ void MESH_OT_primitive_circle_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_circle_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_circle_exec; ot->poll= ED_operator_scene_editable; @@ -1409,11 +1427,17 @@ void MESH_OT_primitive_circle_add(wmOperatorType *ot) RNA_def_int(ot->srna, "vertices", 32, INT_MIN, INT_MAX, "Vertices", "", 3, 500); RNA_def_float(ot->srna, "radius", 1.0f, 0.0, FLT_MAX, "Radius", "", 0.001, 100.00); RNA_def_boolean(ot->srna, "fill", 0, "Fill", ""); + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_tube_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_CYLINDER, RNA_int_get(op->ptr, "vertices"), 0, 0, + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_CYLINDER, RNA_int_get(op->ptr, "vertices"), 0, 0, RNA_float_get(op->ptr,"radius"), RNA_float_get(op->ptr, "depth"), 1, RNA_boolean_get(op->ptr, "cap_ends")); @@ -1429,6 +1453,7 @@ void MESH_OT_primitive_tube_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_tube_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_tube_exec; ot->poll= ED_operator_scene_editable; @@ -1440,11 +1465,17 @@ void MESH_OT_primitive_tube_add(wmOperatorType *ot) RNA_def_float(ot->srna, "radius", 1.0f, 0.0, FLT_MAX, "Radius", "", 0.001, 100.00); RNA_def_float(ot->srna, "depth", 1.0f, 0.0, FLT_MAX, "Depth", "", 0.001, 100.00); RNA_def_boolean(ot->srna, "cap_ends", 1, "Cap Ends", ""); + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_cone_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_CONE, RNA_int_get(op->ptr, "vertices"), 0, 0, + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_CONE, RNA_int_get(op->ptr, "vertices"), 0, 0, RNA_float_get(op->ptr,"radius"), RNA_float_get(op->ptr, "depth"), 0, RNA_boolean_get(op->ptr, "cap_end")); @@ -1459,6 +1490,7 @@ void MESH_OT_primitive_cone_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_cone_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_cone_exec; ot->poll= ED_operator_scene_editable; @@ -1471,11 +1503,16 @@ void MESH_OT_primitive_cone_add(wmOperatorType *ot) RNA_def_float(ot->srna, "depth", 1.0f, 0.0, FLT_MAX, "Depth", "", 0.001, 100.00); RNA_def_boolean(ot->srna, "cap_end", 0, "Cap End", ""); + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_grid_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_GRID, RNA_int_get(op->ptr, "x_subdivisions"), + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_GRID, RNA_int_get(op->ptr, "x_subdivisions"), RNA_int_get(op->ptr, "y_subdivisions"), 0, RNA_float_get(op->ptr,"size"), 0.0f, 0, 1); @@ -1490,6 +1527,7 @@ void MESH_OT_primitive_grid_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_grid_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_grid_exec; ot->poll= ED_operator_scene_editable; @@ -1500,11 +1538,18 @@ void MESH_OT_primitive_grid_add(wmOperatorType *ot) RNA_def_int(ot->srna, "x_subdivisions", 10, INT_MIN, INT_MAX, "X Subdivisions", "", 3, 1000); RNA_def_int(ot->srna, "y_subdivisions", 10, INT_MIN, INT_MAX, "Y Subdivisions", "", 3, 1000); RNA_def_float(ot->srna, "size", 1.0f, 0.0, FLT_MAX, "Size", "", 0.001, FLT_MAX); + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_monkey_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_MONKEY, 0, 0, 2, 0.0f, 0.0f, 0, 0); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_MONKEY, 0, 0, 2, 0.0f, 0.0f, 0, 0); + return OPERATOR_FINISHED; } @@ -1516,16 +1561,23 @@ void MESH_OT_primitive_monkey_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_monkey_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_monkey_exec; ot->poll= ED_operator_scene_editable; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_uvsphere_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_UVSPHERE, RNA_int_get(op->ptr, "rings"), + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_UVSPHERE, RNA_int_get(op->ptr, "rings"), RNA_int_get(op->ptr, "segments"), 0, RNA_float_get(op->ptr,"size"), 0.0f, 0, 0); @@ -1540,6 +1592,7 @@ void MESH_OT_primitive_uv_sphere_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_uv_sphere_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_uvsphere_exec; ot->poll= ED_operator_scene_editable; @@ -1550,11 +1603,17 @@ void MESH_OT_primitive_uv_sphere_add(wmOperatorType *ot) RNA_def_int(ot->srna, "segments", 32, INT_MIN, INT_MAX, "Segments", "", 3, 500); RNA_def_int(ot->srna, "rings", 24, INT_MIN, INT_MAX, "Rings", "", 3, 500); RNA_def_float(ot->srna, "size", 1.0f, 0.0, FLT_MAX, "Size", "", 0.001, 100.00); + + ED_object_add_generic_props(ot, TRUE); } static int add_primitive_icosphere_exec(bContext *C, wmOperator *op) { - make_prim_ext(C, PRIM_ICOSPHERE, 0, 0, RNA_int_get(op->ptr, "subdivisions"), + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + + make_prim_ext(C, view_align, enter_editmode, + PRIM_ICOSPHERE, 0, 0, RNA_int_get(op->ptr, "subdivisions"), RNA_float_get(op->ptr,"size"), 0.0f, 0, 0); return OPERATOR_FINISHED; @@ -1568,6 +1627,7 @@ void MESH_OT_primitive_ico_sphere_add(wmOperatorType *ot) ot->idname= "MESH_OT_primitive_ico_sphere_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= add_primitive_icosphere_exec; ot->poll= ED_operator_scene_editable; @@ -1577,6 +1637,8 @@ void MESH_OT_primitive_ico_sphere_add(wmOperatorType *ot) /* props */ RNA_def_int(ot->srna, "subdivisions", 2, 0, 6, "Subdivisions", "", 0, 8); RNA_def_float(ot->srna, "size", 1.0f, 0.0f, FLT_MAX, "Size", "", 0.001f, 100.00); + + ED_object_add_generic_props(ot, TRUE); } /****************** add duplicate operator ***************/ diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index f61cf9b9b0c..0a7b6daa854 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -99,7 +99,7 @@ /************************** Exported *****************************/ -void ED_object_base_init_from_view(bContext *C, Base *base) +void ED_object_base_init_from_view(bContext *C, Base *base, int view_align) { View3D *v3d= CTX_wm_view3d(C); Scene *scene= CTX_data_scene(C); @@ -122,7 +122,7 @@ void ED_object_base_init_from_view(bContext *C, Base *base) VECCOPY(ob->loc, scene->cursor); } - if (U.flag & USER_ADD_VIEWALIGNED) { + if (view_align) { RegionView3D *rv3d = CTX_wm_region_view3d(C); if(rv3d) { rv3d->viewquat[0]= -rv3d->viewquat[0]; @@ -141,8 +141,42 @@ void add_object_draw(Scene *scene, View3D *v3d, int type) /* for toolbox or menu /* keep here to get things compile, remove later */ } +void ED_object_add_generic_props(wmOperatorType *ot, int do_editmode) +{ + RNA_def_boolean(ot->srna, "view_align", 0, "View Align", "Align the new object to the view."); + + if(do_editmode) + RNA_def_boolean(ot->srna, "enter_editmode", 0, "Enter Editmode", "Enter editmode when adding this object."); +} + +static void object_add_generic_invoke_options(bContext *C, wmOperator *op) +{ + if (!RNA_property_is_set(op->ptr, "view_align")) + RNA_boolean_set(op->ptr, "view_align", U.flag & USER_ADD_VIEWALIGNED); + + if(RNA_struct_find_property(op->ptr, "enter_editmode")) /* optional */ + if (!RNA_property_is_set(op->ptr, "enter_editmode")) + RNA_boolean_set(op->ptr, "enter_editmode", U.flag & USER_ADD_EDITMODE); +} + +int ED_object_add_generic_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + object_add_generic_invoke_options(C, op); + return op->type->exec(C, op); +} + +void ED_object_add_generic_get_opts(wmOperator *op, int *view_align, int *enter_editmode) +{ + *view_align= RNA_boolean_get(op->ptr, "view_align"); + *enter_editmode = FALSE; + + if(RNA_struct_find_property(op->ptr, "enter_editmode") && RNA_boolean_get(op->ptr, "enter_editmode")) { + *enter_editmode = TRUE; + } +} + /* for object add primitive operators */ -Object *ED_object_add_type(bContext *C, int type) +Object *ED_object_add_type(bContext *C, int type, int view_align, int enter_editmode) { Scene *scene= CTX_data_scene(C); Object *ob; @@ -157,17 +191,22 @@ Object *ED_object_add_type(bContext *C, int type) ED_base_object_activate(C, BASACT); /* more editor stuff */ - ED_object_base_init_from_view(C, BASACT); + ED_object_base_init_from_view(C, BASACT, view_align); DAG_scene_sort(scene); + if(enter_editmode) + ED_object_enter_editmode(C, 0); + return ob; } /* for object add operator */ static int object_add_exec(bContext *C, wmOperator *op) { - ED_object_add_type(C, RNA_enum_get(op->ptr, "type")); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + ED_object_add_type(C, RNA_enum_get(op->ptr, "type"), view_align, enter_editmode); return OPERATOR_FINISHED; } @@ -180,7 +219,7 @@ void OBJECT_OT_add(wmOperatorType *ot) ot->idname= "OBJECT_OT_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; + ot->invoke= ED_object_add_generic_invoke; ot->exec= object_add_exec; ot->poll= ED_operator_scene_editable; @@ -189,6 +228,8 @@ void OBJECT_OT_add(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", object_type_items, 0, "Type", ""); + + ED_object_add_generic_props(ot, TRUE); } /********************* Add Effector Operator ********************/ @@ -215,53 +256,41 @@ void add_effector_draw(Scene *scene, View3D *v3d, int type) /* for toolbox or me } /* for effector add primitive operators */ -static Object *effector_add_type(bContext *C, int type) +static Object *effector_add_type(bContext *C, wmOperator *op, int type) { - Scene *scene= CTX_data_scene(C); Object *ob; - - /* for as long scene has editmode... */ - if (CTX_data_edit_object(C)) - ED_object_exit_editmode(C, EM_FREEDATA|EM_FREEUNDO|EM_WAITCURSOR|EM_DO_UNDO); /* freedata, and undo */ - - /* deselects all, sets scene->basact */ + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + if(type==PFIELD_GUIDE) { - ob = add_object(scene, OB_CURVE); + ob= ED_object_add_type(C, OB_CURVE, view_align, FALSE); + ((Curve*)ob->data)->flag |= CU_PATH|CU_3D; ED_object_enter_editmode(C, 0); BLI_addtail(curve_get_editcurve(ob), add_nurbs_primitive(C, CU_NURBS|CU_PRIM_PATH, 1)); - ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); + + if(!enter_editmode) + ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } else { - ob= add_object(scene, OB_EMPTY); - + ob= ED_object_add_type(C, OB_EMPTY, view_align, FALSE); switch(type) { case PFIELD_WIND: case PFIELD_VORTEX: ob->empty_drawtype = OB_SINGLE_ARROW; - break; + break; } } - - - + ob->pd= object_add_collision_fields(type); - /* editor level activate, notifiers */ - ED_base_object_activate(C, BASACT); - - /* more editor stuff */ - ED_object_base_init_from_view(C, BASACT); - - DAG_scene_sort(scene); - return ob; } /* for object add operator */ static int effector_add_exec(bContext *C, wmOperator *op) { - effector_add_type(C, RNA_int_get(op->ptr, "type")); + effector_add_type(C, op, RNA_int_get(op->ptr, "type")); return OPERATOR_FINISHED; } @@ -283,6 +312,8 @@ void OBJECT_OT_effector_add(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", field_type_items, 0, "Type", ""); + + ED_object_add_generic_props(ot, TRUE); } /* ***************** add primitives *************** */ @@ -302,10 +333,11 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) ListBase *editnurb; Nurb *nu; int newob= 0, type= RNA_enum_get(op->ptr, "type"); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_CURVE) { - ED_object_add_type(C, OB_CURVE); - ED_object_enter_editmode(C, 0); + ED_object_add_type(C, OB_CURVE, view_align, TRUE); newob = 1; obedit= CTX_data_edit_object(C); @@ -319,7 +351,7 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) BLI_addtail(editnurb, nu); /* userdef */ - if (newob && (U.flag & USER_ADD_EDITMODE)==0) { + if (newob && !enter_editmode) { ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } @@ -334,6 +366,8 @@ static int object_add_curve_invoke(bContext *C, wmOperator *op, wmEvent *event) uiPopupMenu *pup; uiLayout *layout; + object_add_generic_invoke_options(C, op); + pup= uiPupMenuBegin(C, op->type->name, 0); layout= uiPupMenuLayout(pup); if(!obedit || obedit->type == OB_CURVE) @@ -362,6 +396,8 @@ void OBJECT_OT_curve_add(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", prop_curve_types, 0, "Primitive", ""); + + ED_object_add_generic_props(ot, TRUE); } static EnumPropertyItem prop_surface_types[]= { @@ -380,10 +416,11 @@ static int object_add_surface_exec(bContext *C, wmOperator *op) ListBase *editnurb; Nurb *nu; int newob= 0; + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_SURF) { - ED_object_add_type(C, OB_SURF); - ED_object_enter_editmode(C, 0); + ED_object_add_type(C, OB_SURF, view_align, TRUE); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); @@ -394,7 +431,7 @@ static int object_add_surface_exec(bContext *C, wmOperator *op) BLI_addtail(editnurb, nu); /* userdef */ - if (newob && (U.flag & USER_ADD_EDITMODE)==0) { + if (newob && !enter_editmode) { ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } @@ -411,7 +448,7 @@ void OBJECT_OT_surface_add(wmOperatorType *ot) ot->idname= "OBJECT_OT_surface_add"; /* api callbacks */ - ot->invoke= WM_menu_invoke; + ot->invoke= ED_object_add_generic_invoke; // WM_menu_invoke ot->exec= object_add_surface_exec; ot->poll= ED_operator_scene_editable; @@ -420,6 +457,7 @@ void OBJECT_OT_surface_add(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", prop_surface_types, 0, "Primitive", ""); + ED_object_add_generic_props(ot, TRUE); } static EnumPropertyItem prop_metaball_types[]= { @@ -437,10 +475,11 @@ static int object_metaball_add_exec(bContext *C, wmOperator *op) MetaBall *mball; MetaElem *elem; int newob= 0; + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_MBALL) { - ED_object_add_type(C, OB_MBALL); - ED_object_enter_editmode(C, 0); + ED_object_add_type(C, OB_MBALL, view_align, TRUE); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); @@ -451,7 +490,7 @@ static int object_metaball_add_exec(bContext *C, wmOperator *op) BLI_addtail(mball->editelems, elem); /* userdef */ - if (newob && (U.flag & USER_ADD_EDITMODE)==0) { + if (newob && !enter_editmode) { ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } @@ -466,6 +505,8 @@ static int object_metaball_add_invoke(bContext *C, wmOperator *op, wmEvent *even uiPopupMenu *pup; uiLayout *layout; + object_add_generic_invoke_options(C, op); + pup= uiPupMenuBegin(C, op->type->name, 0); layout= uiPupMenuLayout(pup); if(!obedit || obedit->type == OB_MBALL) @@ -493,19 +534,19 @@ void OBJECT_OT_metaball_add(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; RNA_def_enum(ot->srna, "type", prop_metaball_types, 0, "Primitive", ""); + ED_object_add_generic_props(ot, TRUE); } static int object_add_text_exec(bContext *C, wmOperator *op) { Object *obedit= CTX_data_edit_object(C); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit && obedit->type==OB_FONT) return OPERATOR_CANCELLED; - ED_object_add_type(C, OB_FONT); + ED_object_add_type(C, OB_FONT, view_align, enter_editmode); obedit= CTX_data_active_object(C); - - if(U.flag & USER_ADD_EDITMODE) - ED_object_enter_editmode(C, 0); WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, obedit); @@ -525,6 +566,7 @@ void OBJECT_OT_text_add(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ED_object_add_generic_props(ot, TRUE); } static int object_armature_add_exec(bContext *C, wmOperator *op) @@ -533,9 +575,11 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) View3D *v3d= CTX_wm_view3d(C); RegionView3D *rv3d= NULL; int newob= 0; + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if ((obedit==NULL) || (obedit->type != OB_ARMATURE)) { - obedit= ED_object_add_type(C, OB_ARMATURE); + obedit= ED_object_add_type(C, OB_ARMATURE, view_align, TRUE); ED_object_enter_editmode(C, 0); obedit= CTX_data_edit_object(C); newob = 1; @@ -554,7 +598,7 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) add_primitive_bone(CTX_data_scene(C), v3d, rv3d); /* userdef */ - if (newob && (U.flag & USER_ADD_EDITMODE)==0) { + if (newob && !enter_editmode) { ED_object_exit_editmode(C, EM_FREEDATA|EM_DO_UNDO); } @@ -576,14 +620,17 @@ void OBJECT_OT_armature_add(wmOperatorType *ot) /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ED_object_add_generic_props(ot, TRUE); } static int object_lamp_add_exec(bContext *C, wmOperator *op) { Object *ob; int type= RNA_enum_get(op->ptr, "type"); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); - ob= ED_object_add_type(C, OB_LAMP); + ob= ED_object_add_type(C, OB_LAMP, view_align, FALSE); if(ob && ob->data) ((Lamp*)ob->data)->type= type; @@ -615,6 +662,8 @@ void OBJECT_OT_lamp_add(wmOperatorType *ot) /* properties */ RNA_def_enum(ot->srna, "type", lamp_type_items, 0, "Type", ""); + + ED_object_add_generic_props(ot, FALSE); } /* add dupligroup */ @@ -644,8 +693,11 @@ static int group_instance_add_exec(bContext *C, wmOperator *op) /* XXX, using an enum for library lookups is a bit dodgy */ Group *group= BLI_findlink(&CTX_data_main(C)->group, RNA_enum_get(op->ptr, "type")); + int view_align, enter_editmode; + ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); + if(group) { - Object *ob= ED_object_add_type(C, OB_EMPTY); + Object *ob= ED_object_add_type(C, OB_EMPTY, view_align, FALSE); rename_id(&ob->id, group->id.name+2); ob->dup_group= group; ob->transflag |= OB_DUPLIGROUP; @@ -684,6 +736,7 @@ void OBJECT_OT_group_instance_add(wmOperatorType *ot) /* properties */ prop= RNA_def_enum(ot->srna, "type", prop_group_dummy_types, 0, "Type", ""); RNA_def_enum_funcs(prop, add_dupligroup_itemf); + ED_object_add_generic_props(ot, FALSE); } /**************************** Delete Object *************************/ diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index 9d673581368..f425fa01ebe 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -1272,7 +1272,7 @@ static char *wpaint_make_validmap(Mesh *me, Object *ob) } if (!i) - return; + return NULL; validmap = MEM_callocN(i, "wpaint valid map"); diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index 46e188bfa12..e76dc1aaa00 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -1970,7 +1970,10 @@ void VIEW3D_OT_cursor3d(wmOperatorType *ot) ot->invoke= set_3dcursor_invoke; ot->poll= ED_operator_view3d_active; - + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + /* rna later */ } diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index b7120c58fef..fac18ba7942 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -903,6 +903,9 @@ void RNA_property_boolean_set(PointerRNA *ptr, PropertyRNA *prop, int value) BooleanPropertyRNA *bprop= (BooleanPropertyRNA*)prop; IDProperty *idprop; + /* just incase other values are passed */ + if(value) value= 1; + if((idprop=rna_idproperty_check(&prop, ptr))) IDP_Int(idprop)= value; else if(bprop->set) From 8557f617f0ce5a299b75998ef8b3f9d76e493329 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 16:39:45 +0000 Subject: [PATCH 315/412] Pose bone menu (Ctrl+G) wasnt working, replace with a reference to python menu. --- .../editors/armature/armature_intern.h | 1 - .../blender/editors/armature/armature_ops.c | 4 +- source/blender/editors/armature/poseobject.c | 48 ------------------- 3 files changed, 2 insertions(+), 51 deletions(-) diff --git a/source/blender/editors/armature/armature_intern.h b/source/blender/editors/armature/armature_intern.h index 6f5a5f44d87..d31a3bda332 100644 --- a/source/blender/editors/armature/armature_intern.h +++ b/source/blender/editors/armature/armature_intern.h @@ -87,7 +87,6 @@ void POSE_OT_select_hierarchy(struct wmOperatorType *ot); void POSE_OT_select_linked(struct wmOperatorType *ot); void POSE_OT_select_constraint_target(struct wmOperatorType *ot); -void POSE_OT_groups_menu(struct wmOperatorType *ot); void POSE_OT_group_add(struct wmOperatorType *ot); void POSE_OT_group_remove(struct wmOperatorType *ot); void POSE_OT_group_remove(struct wmOperatorType *ot); diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index cc359deca07..159effe0960 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -128,7 +128,6 @@ void ED_operatortypes_armature(void) WM_operatortype_append(POSE_OT_select_linked); WM_operatortype_append(POSE_OT_select_constraint_target); - WM_operatortype_append(POSE_OT_groups_menu); WM_operatortype_append(POSE_OT_group_add); WM_operatortype_append(POSE_OT_group_remove); WM_operatortype_append(POSE_OT_group_assign); @@ -312,7 +311,8 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "POSE_OT_ik_add", IKEY, KM_PRESS, /*KM_CTRL|*/KM_SHIFT, 0); WM_keymap_add_item(keymap, "POSE_OT_ik_clear", IKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); - WM_keymap_add_item(keymap, "POSE_OT_groups_menu", GKEY, KM_PRESS, KM_CTRL, 0); + kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", GKEY, KM_PRESS, KM_CTRL, 0); + RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_pose_group"); /* set flags */ kmi= WM_keymap_add_item(keymap, "POSE_OT_flags_set", WKEY, KM_PRESS, KM_SHIFT, 0); diff --git a/source/blender/editors/armature/poseobject.c b/source/blender/editors/armature/poseobject.c index 331bd6fa28f..f04aaafb97f 100644 --- a/source/blender/editors/armature/poseobject.c +++ b/source/blender/editors/armature/poseobject.c @@ -1438,54 +1438,6 @@ void POSE_OT_group_unassign (wmOperatorType *ot) ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; } -/* ----------------- */ - -static int pose_groupOps_menu_invoke (bContext *C, wmOperator *op, wmEvent *evt) -{ - Object *ob= CTX_data_active_object(C); - uiPopupMenu *pup= uiPupMenuBegin(C, op->type->name, 0); - uiLayout *layout= uiPupMenuLayout(pup); - - /* sanity check - must have object with pose */ - if ELEM(NULL, ob, ob->pose) - return OPERATOR_CANCELLED; - - /* get mode of action */ - if (CTX_DATA_COUNT(C, selected_pchans)) { - /* if selected bone(s), include options to add/remove to active group */ - uiItemO(layout, "Add Selected to Active Group", 0, "POSE_OT_group_assign"); - - uiItemS(layout); - - uiItemO(layout, "Remove Selected from All Groups", 0, "POSE_OT_group_unassign"); - uiItemO(layout, "Remove Active Group", 0, "POSE_OT_group_remove"); - } - else { - /* no selected bones - so just options for groups management */ - uiItemO(layout, "Add New Group", 0, "POSE_OT_group_add"); - uiItemO(layout, "Remove Active Group", 0, "POSE_OT_group_remove"); - } - - return OPERATOR_CANCELLED; -} - -void POSE_OT_groups_menu (wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "Bone Group Tools"; - ot->idname= "POSE_OT_groups_menu"; - ot->description= "Menu displaying available tools for Bone Groups."; - - /* api callbacks (only invoke needed) */ - ot->invoke= pose_groupOps_menu_invoke; - ot->poll= ED_operator_posemode; - - /* flags */ - ot->flag= OPTYPE_REGISTER; -} - -/* ********************************************** */ - static short pose_select_same_group (Object *ob) { bPose *pose= (ob)? ob->pose : NULL; From bd88c3e944fd7ee1f91279570817b2b8f3e9d43f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 16:55:06 +0000 Subject: [PATCH 316/412] moving nodes would crash because it ran object update functions --- source/blender/editors/transform/transform_conversions.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c index c85eeb88f9f..85ebf725467 100644 --- a/source/blender/editors/transform/transform_conversions.c +++ b/source/blender/editors/transform/transform_conversions.c @@ -4731,6 +4731,9 @@ void special_aftertrans_update(TransInfo *t) /* freeSeqData in transform_conversions.c does this * keep here so the else at the end wont run... */ } + else if (t->spacetype == SPACE_NODE) { + /* pass */ + } else if (t->spacetype == SPACE_ACTION) { SpaceAction *saction= (SpaceAction *)t->sa->spacedata.first; Scene *scene; From 54d7ca9e3b6f1af774194944232136a16be9c0ca Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 17:15:14 +0000 Subject: [PATCH 317/412] armatures didnt allocate enough memort for make_trans_verts result in blender crash when pressing numpad del. --- source/blender/editors/space_view3d/view3d_snap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_snap.c b/source/blender/editors/space_view3d/view3d_snap.c index 79fd6380bb9..205d3e6df8c 100644 --- a/source/blender/editors/space_view3d/view3d_snap.c +++ b/source/blender/editors/space_view3d/view3d_snap.c @@ -254,7 +254,9 @@ static void make_trans_verts(Object *obedit, float *min, float *max, int mode) else if (obedit->type==OB_ARMATURE){ bArmature *arm= obedit->data; int totmalloc= BLI_countlist(arm->edbo); - + + totmalloc *= 2; /* probably overkill but bones can have 2 trans verts each */ + tv=transvmain= MEM_callocN(totmalloc*sizeof(TransVert), "maketransverts armature"); for (ebo= arm->edbo->first; ebo; ebo=ebo->next){ From 67fd40f54c9f36f47974e8f7785aee8f415f2a69 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Mon, 2 Nov 2009 17:18:17 +0000 Subject: [PATCH 318/412] Enabled theme editing in user preferences. There's still no way to Load/Save/Add/Delete though. Code could be optimized greatly, but found it hard to get it to work nicely with auto-generated code. --- release/scripts/ui/space_userpref.py | 717 +++++++++++++++++++ source/blender/editors/include/UI_icons.h | 8 +- source/blender/makesrna/intern/rna_userdef.c | 29 +- 3 files changed, 742 insertions(+), 12 deletions(-) diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 9fd35e9588e..0235876a064 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -342,6 +342,722 @@ class USERPREF_PT_system(bpy.types.Panel): sub1.itemR(system, "memory_cache_limit") +class USERPREF_PT_theme(bpy.types.Panel): + bl_space_type = 'USER_PREFERENCES' + bl_label = "Themes" + bl_region_type = 'WINDOW' + bl_show_header = False + + def poll(self, context): + userpref = context.user_preferences + + return (userpref.active_section == 'THEMES') + + def draw(self, context): + layout = self.layout + + theme = context.user_preferences.themes[0] + + + split = layout.split(percentage=0.33) + split.itemR(theme, "active_theme", text="") + + layout.itemS() + + split = layout.split() + + if theme.active_theme == 'VIEW_3D': + v3d = theme.view_3d + + col = split.column() + col.itemR(v3d, "back") + col.itemR(v3d, "title") + col.itemR(v3d, "text") + col.itemR(v3d, "text_hi") + col.itemR(v3d, "header") + col.itemR(v3d, "header_text") + + col = split.column() + col.itemR(v3d, "header_text_hi") + col.itemR(v3d, "grid") + col.itemR(v3d, "panel", slider=True) + col.itemR(v3d, "wire") + col.itemR(v3d, "lamp", slider=True) + + col = split.column() + col.itemR(v3d, "current_frame") + col.itemR(v3d, "editmesh_active", slider=True) + col.itemR(v3d, "object_selected") + col.itemR(v3d, "object_active") + col.itemR(v3d, "object_grouped") + col.itemR(v3d, "object_grouped_active") + + col = split.column() + col.itemR(v3d, "transform") + col.itemR(v3d, "vertex") + col.itemR(v3d, "face", slider=True) + col.itemR(v3d, "normal") + col.itemR(v3d, "bone_solid") + col.itemR(v3d, "bone_pose") + +# col.itemR(v3d, "edge") Doesn't seem to work + elif theme.active_theme == 'USER_INTERFACE': + + ui = theme.user_interface.wcol_regular + + layout.itemL(text="Regular:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + layout.itemS() + + ui = theme.user_interface.wcol_tool + layout.itemL(text="Tool:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_radio + layout.itemL(text="Radio Buttons:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_text + layout.itemL(text="Text:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_option + layout.itemL(text="Option:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_toggle + layout.itemL(text="Toggle:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_num + layout.itemL(text="Number Field:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_numslider + layout.itemL(text="Value Slider:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_box + layout.itemL(text="Box:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_menu + layout.itemL(text="Menu:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_pulldown + layout.itemL(text="Pulldown:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_menu_back + layout.itemL(text="Menu Back:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_menu_item + layout.itemL(text="Menu Item:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_scroll + layout.itemL(text="Scroll Bar:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_list_item + layout.itemL(text="List Item:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "outline") + sub1.itemR(ui, "item", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "inner", slider=True) + sub1.itemR(ui, "inner_sel", slider=True) + sub1 = sub.column() + sub1.itemR(ui, "text") + sub1.itemR(ui, "text_sel") + sub1 = sub.column() + sub1.itemR(ui, "shaded") + sub2 = sub1.column(align=True) + sub2.active = ui.shaded + sub2.itemR(ui, "shadetop") + sub2.itemR(ui, "shadedown") + + ui = theme.user_interface.wcol_state + layout.itemL(text="State:") + + sub = layout.row() + sub1 = sub.column() + sub1.itemR(ui, "inner_anim") + sub1.itemR(ui, "inner_anim_sel") + sub1 = sub.column() + sub1.itemR(ui, "inner_driven") + sub1.itemR(ui, "inner_driven_sel") + sub1 = sub.column() + sub1.itemR(ui, "inner_key") + sub1.itemR(ui, "inner_key_sel") + sub1 = sub.column() + sub1.itemR(ui, "blend") + + ui = theme.user_interface + layout.itemS() + + sub = layout.row() + sub.itemR(ui, "icon_file") + + layout.itemS() + layout.itemS() + + + elif theme.active_theme == 'GRAPH_EDITOR': + graph = theme.graph_editor + + col = split.column() + col.itemR(graph, "back") + col.itemR(graph, "title") + col.itemR(graph, "text") + col.itemR(graph, "text_hi") + col.itemR(graph, "header") + + col = split.column() + col.itemR(graph, "header_text") + col.itemR(graph, "header_text_hi") + col.itemR(graph, "grid") + col.itemR(graph, "panel") + col.itemR(graph, "window_sliders") + + col = split.column() + col.itemR(graph, "channels_region") + col.itemR(graph, "vertex") + col.itemR(graph, "current_frame") + col.itemR(graph, "handle_vertex") + col.itemR(graph, "handle_vertex_select") + + col = split.column() + col.itemR(graph, "handle_vertex_size") + col.itemR(graph, "channel_group") + col.itemR(graph, "active_channels_group") + col.itemR(graph, "dopesheet_channel") + col.itemR(graph, "dopesheet_subchannel") + + + elif theme.active_theme == 'FILE_BROWSER': + file = theme.file_browser + + col = split.column() + col.itemR(file, "back") + col.itemR(file, "title") + col.itemR(file, "text") + col.itemR(file, "text_hi") + + col = split.column() + col.itemR(file, "header") + col.itemR(file, "header_text") + col.itemR(file, "header_text_hi") + + col = split.column() + col.itemR(file, "selected_file") + col.itemR(file, "tiles") + col.itemR(file, "scrollbar") + + col = split.column() + col.itemR(file, "scroll_handle") + col.itemR(file, "active_file") + col.itemR(file, "active_file_text") + + elif theme.active_theme == 'NLA_EDITOR': + nla = theme.nla_editor + + col = split.column() + col.itemR(nla, "back") + col.itemR(nla, "title") + col.itemR(nla, "text") + col.itemR(nla, "text_hi") + + col = split.column() + col.itemR(nla, "header") + col.itemR(nla, "header_text") + col.itemR(nla, "header_text_hi") + col.itemR(nla, "grid") + + col = split.column() + col.itemR(nla, "view_sliders") + col.itemR(nla, "bars") + col.itemR(nla, "bars_selected") + + col = split.column() + col.itemR(nla, "strips") + col.itemR(nla, "strips_selected") + col.itemR(nla, "current_frame") + + elif theme.active_theme == 'DOPESHEET_EDITOR': + dope = theme.dopesheet_editor + + col = split.column() + col.itemR(dope, "back") + col.itemR(dope, "title") + col.itemR(dope, "text") + col.itemR(dope, "text_hi") + col.itemR(dope, "header") + + col = split.column() + col.itemR(dope, "header_text") + col.itemR(dope, "header_text_hi") + col.itemR(dope, "grid") + col.itemR(dope, "value_sliders") + col.itemR(dope, "view_sliders") + + col = split.column() + col.itemR(dope, "channels") + col.itemR(dope, "channels_selected") + col.itemR(dope, "channel_group") + col.itemR(dope, "active_channels_group") + col.itemR(dope, "long_key") + + col = split.column() + col.itemR(dope, "long_key_selected") + col.itemR(dope, "current_frame") + col.itemR(dope, "dopesheet_channel") + col.itemR(dope, "dopesheet_subchannel") + + elif theme.active_theme == 'IMAGE_EDITOR': + image = theme.image_editor + + col = split.column() + col.itemR(image, "back") + col.itemR(image, "title") + + col = split.column() + col.itemR(image, "text") + col.itemR(image, "text_hi") + + col = split.column() + col.itemR(image, "header") + col.itemR(image, "header_text") + + col = split.column() + col.itemR(image, "header_text_hi") + col.itemR(image, "editmesh_active", slider=True) + + elif theme.active_theme == 'SEQUENCE_EDITOR': + seq = theme.sequence_editor + + col = split.column() + col.itemR(seq, "back") + col.itemR(seq, "title") + col.itemR(seq, "text") + col.itemR(seq, "text_hi") + col.itemR(seq, "header") + + col = split.column() + col.itemR(seq, "header_text") + col.itemR(seq, "header_text_hi") + col.itemR(seq, "grid") + col.itemR(seq, "window_sliders") + col.itemR(seq, "movie_strip") + + col = split.column() + col.itemR(seq, "image_strip") + col.itemR(seq, "scene_strip") + col.itemR(seq, "audio_strip") + col.itemR(seq, "effect_strip") + col.itemR(seq, "plugin_strip") + + col = split.column() + col.itemR(seq, "transition_strip") + col.itemR(seq, "meta_strip") + col.itemR(seq, "current_frame") + col.itemR(seq, "keyframe") + col.itemR(seq, "draw_action") + + elif theme.active_theme == 'PROPERTIES': + prop = theme.properties + + col = split.column() + col.itemR(prop, "back") + col.itemR(prop, "title") + + col = split.column() + col.itemR(prop, "text") + col.itemR(prop, "text_hi") + + col = split.column() + col.itemR(prop, "header") + col.itemR(prop, "header_text") + + col = split.column() + col.itemR(prop, "header_text_hi") + col.itemR(prop, "panel") + + elif theme.active_theme == 'TEXT_EDITOR': + text = theme.text_editor + + col = split.column() + col.itemR(text, "back") + col.itemR(text, "title") + col.itemR(text, "text") + col.itemR(text, "text_hi") + + col = split.column() + col.itemR(text, "header") + col.itemR(text, "header_text") + col.itemR(text, "header_text_hi") + col.itemR(text, "line_numbers_background") + + col = split.column() + col.itemR(text, "scroll_bar") + col.itemR(text, "selected_text") + col.itemR(text, "cursor") + col.itemR(text, "syntax_builtin") + + col = split.column() + col.itemR(text, "syntax_special") + col.itemR(text, "syntax_comment") + col.itemR(text, "syntax_string") + col.itemR(text, "syntax_numbers") + + elif theme.active_theme == 'TIMELINE': + time = theme.timeline + + col = split.column() + col.itemR(time, "back") + col.itemR(time, "title") + col.itemR(time, "text") + + col = split.column() + col.itemR(time, "text_hi") + col.itemR(time, "header") + + col = split.column() + col.itemR(time, "header_text") + col.itemR(time, "header_text_hi") + + col = split.column() + col.itemR(time, "grid") + col.itemR(time, "current_frame") + + elif theme.active_theme == 'NODE_EDITOR': + node = theme.node_editor + + col = split.column() + col.itemR(node, "back") + col.itemR(node, "title") + col.itemR(node, "text") + col.itemR(node, "text_hi") + + col = split.column() + col.itemR(node, "header") + col.itemR(node, "header_text") + col.itemR(node, "header_text_hi") + col.itemR(node, "wires") + + col = split.column() + col.itemR(node, "wire_select") + col.itemR(node, "selected_text") + col.itemR(node, "node_backdrop") + col.itemR(node, "in_out_node") + + col = split.column() + col.itemR(node, "converter_node") + col.itemR(node, "operator_node") + col.itemR(node, "group_node") + + elif theme.active_theme == 'LOGIC_EDITOR': + logic = theme.logic_editor + + col = split.column() + col.itemR(logic, "back") + col.itemR(logic, "title") + + col = split.column() + col.itemR(logic, "text") + col.itemR(logic, "text_hi") + + col = split.column() + col.itemR(logic, "header") + col.itemR(logic, "header_text") + + col = split.column() + col.itemR(logic, "header_text_hi") + col.itemR(logic, "panel") + + elif theme.active_theme == 'OUTLINER': + out = theme.outliner + + col = split.column() + col.itemR(out, "back") + col.itemR(out, "title") + + col = split.column() + col.itemR(out, "text") + col.itemR(out, "text_hi") + + col = split.column() + col.itemR(out, "header") + col.itemR(out, "header_text") + + col = split.column() + col.itemR(out, "header_text_hi") + + elif theme.active_theme == 'INFO': + info = theme.info + + col = split.column() + col.itemR(info, "back") + col.itemR(info, "title") + + col = split.column() + col.itemR(info, "text") + col.itemR(info, "text_hi") + + col = split.column() + col.itemR(info, "header") + col.itemR(info, "header_text") + + col = split.column() + col.itemR(info, "header_text_hi") + + elif theme.active_theme == 'USER_PREFERENCES': + prefs = theme.user_preferences + + col = split.column() + col.itemR(prefs, "back") + col.itemR(prefs, "title") + + col = split.column() + col.itemR(prefs, "text") + col.itemR(prefs, "text_hi") + + col = split.column() + col.itemR(prefs, "header") + col.itemR(prefs, "header_text") + + col = split.column() + col.itemR(prefs, "header_text_hi") + + class USERPREF_PT_file(bpy.types.Panel): bl_space_type = 'USER_PREFERENCES' bl_label = "Files" @@ -585,6 +1301,7 @@ bpy.types.register(USERPREF_HT_header) bpy.types.register(USERPREF_MT_view) bpy.types.register(USERPREF_PT_tabs) bpy.types.register(USERPREF_PT_interface) +bpy.types.register(USERPREF_PT_theme) bpy.types.register(USERPREF_PT_edit) bpy.types.register(USERPREF_PT_system) bpy.types.register(USERPREF_PT_file) diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index 9d38161c753..ee1a23f242b 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -52,10 +52,10 @@ DEF_ICON(ICON_BLANK004) DEF_ICON(ICON_X) DEF_ICON(ICON_BLANK005) DEF_ICON(ICON_GO_LEFT) -DEF_ICON(ICON_BLANK006) -DEF_ICON(ICON_BLANK007) -DEF_ICON(ICON_BLANK008) -DEF_ICON(ICON_BLANK008b) +DEF_ICON(ICON_PLUG) +DEF_ICON(ICON_UI) +DEF_ICON(ICON_TEXNODE) +DEF_ICON(ICON_TEXNODE_SEL) /* ui */ DEF_ICON(ICON_FULLSCREEN) diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index d28cb2d267a..a54e1b84709 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -1165,6 +1165,8 @@ static void rna_def_userdef_theme_space_seq(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Sequence Editor", "Theme settings for the Sequence Editor."); + rna_def_userdef_theme_spaces_main(srna, SPACE_IMAGE); + prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); @@ -1421,11 +1423,22 @@ static void rna_def_userdef_themes(BlenderRNA *brna) PropertyRNA *prop; static EnumPropertyItem active_theme_group[] = { - {0, "USER_INTERFACE", 0, "User Interface", ""}, - {1, "VIEW_3D", 0, "View 3D", ""}, - {2, "GRAPH_EDITOR", 0, "Graph Editor", ""}, - {3, "FILE_BROWSER", 0, "File Browser", ""}, - + {0, "USER_INTERFACE", ICON_UI, "User Interface", ""}, + {1, "VIEW_3D", ICON_VIEW3D, "View 3D", ""}, + {2, "GRAPH_EDITOR", ICON_IPO, "Graph Editor", ""}, + {3, "FILE_BROWSER", ICON_FILESEL, "File Browser", ""}, + {4, "NLA_EDITOR", ICON_NLA, "NLA Editor", ""}, + {5, "DOPESHEET_EDITOR", ICON_ACTION, "Dopesheet Editor", ""}, + {6, "IMAGE_EDITOR", ICON_IMAGE_COL, "Image Editor", ""}, + {7, "SEQUENCE_EDITOR", ICON_SEQUENCE, "Sequence Editor", ""}, + {8, "PROPERTIES", ICON_BUTS, "Properties", ""}, + {9, "TEXT_EDITOR", ICON_TEXT, "Text Editor", ""}, + {10, "TIMELINE", ICON_TIME, "Timeline", ""}, + {11, "NODE_EDITOR", ICON_NODE, "Node Editor", ""}, + {12, "LOGIC_EDITOR", ICON_LOGIC, "Logic Editor", ""}, + {13, "OUTLINER", ICON_OOPS, "Outliner", ""}, + {14, "INFO", ICON_INFO, "Info", ""}, + {15, "USER_PREFERENCES", ICON_PREFERENCES, "User Preferences", ""}, {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "Theme", NULL); @@ -1436,10 +1449,10 @@ static void rna_def_userdef_themes(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Name", "Name of the theme."); RNA_def_struct_name_property(srna, prop); - prop= RNA_def_property(srna, "active_theme_group", PROP_ENUM, PROP_NONE); + prop= RNA_def_property(srna, "active_theme", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "active_theme_group"); RNA_def_property_enum_items(prop, active_theme_group); - RNA_def_property_ui_text(prop, "Theme Group", ""); + RNA_def_property_ui_text(prop, "Active Theme", ""); prop= RNA_def_property(srna, "user_interface", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_NEVER_NULL); @@ -2413,7 +2426,7 @@ void RNA_def_userdef(BlenderRNA *brna) {USER_SECTION_INTERFACE, "INTERFACE", 0, "Interface", ""}, {USER_SECTION_EDIT, "EDITING", 0, "Editing", ""}, {USER_SECTION_INPUT, "INPUT", 0, "Input", ""}, -// {USER_SECTION_THEME, "THEMES", 0, "Themes", ""}, Doesn't work yet + {USER_SECTION_THEME, "THEMES", 0, "Themes", ""}, {USER_SECTION_FILE, "FILES", 0, "File", ""}, {USER_SECTION_SYSTEM, "SYSTEM", 0, "System", ""}, {0, NULL, 0, NULL, NULL}}; From 072a39004eef9f1eb479153888f0bf67b05aa125 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 17:24:06 +0000 Subject: [PATCH 319/412] - "selected_pchans" is now at screen level context (not just view3d) so can use for adding bones to a group. - separate assign to Y key rather then Ctrl+4 --- source/blender/editors/armature/poseobject.c | 17 +++++------------ source/blender/editors/mesh/mesh_ops.c | 4 ++-- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/source/blender/editors/armature/poseobject.c b/source/blender/editors/armature/poseobject.c index f04aaafb97f..696fa65b33a 100644 --- a/source/blender/editors/armature/poseobject.c +++ b/source/blender/editors/armature/poseobject.c @@ -1310,7 +1310,6 @@ static int pose_group_assign_exec (bContext *C, wmOperator *op) Object *ob; bArmature *arm; bPose *pose; - bPoseChannel *pchan; short done= 0; /* since this call may also be used from the buttons window, we need to check for where to get the object */ @@ -1334,18 +1333,12 @@ static int pose_group_assign_exec (bContext *C, wmOperator *op) /* add selected bones to group then */ // NOTE: unfortunately, we cannot use the context-iterators here, since they might not be defined... - // CTX_DATA_BEGIN(C, bPoseChannel*, pchan, selected_pchans) - for (pchan= pose->chanbase.first; pchan; pchan= pchan->next) { - /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ - // NOTE: sync this view3d_context() in space_view3d.c - if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { - if (pchan->bone->flag & (BONE_SELECTED|BONE_ACTIVE)) { - pchan->agrp_index= pose->active_group; - done= 1; - } - } + CTX_DATA_BEGIN(C, bPoseChannel*, pchan, selected_pchans) { + pchan->agrp_index= pose->active_group; + done= 1; } - + CTX_DATA_END; + /* notifiers for updates */ WM_event_add_notifier(C, NC_OBJECT|ND_POSE, ob); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index 457e3823ab3..d2535bb5be2 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -240,8 +240,7 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "MESH_OT_quads_convert_to_tris", TKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "MESH_OT_tris_convert_to_quads", JKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "MESH_OT_edge_flip", FKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); - - WM_keymap_add_item(keymap, "MESH_OT_split", FOURKEY, KM_PRESS, KM_CTRL, 0); + WM_keymap_add_item(keymap, "MESH_OT_extrude_repeat", FOURKEY, KM_PRESS, KM_ALT, 0); WM_keymap_add_item(keymap, "MESH_OT_edge_rotate", FIVEKEY, KM_PRESS, KM_CTRL, 0); @@ -265,6 +264,7 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) RNA_string_set(kmi->ptr, "name", "INFO_MT_mesh_add"); WM_keymap_add_item(keymap, "MESH_OT_separate", PKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "MESH_OT_split", YKEY, KM_PRESS, 0, 0); /* use KM_RELEASE because same key is used for tweaks * TEMPORARY REMAP TO ALT+CTRL TO AVOID CONFLICT * */ From 6bfcd5a811e08929505568eb1c9195459149b6fc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 17:25:15 +0000 Subject: [PATCH 320/412] how embarrassing! --- intern/ghost/intern/GHOST_SystemWin32.cpp | 16 ++++++++-------- intern/ghost/intern/GHOST_SystemWin32.h | 4 ++-- release/scripts/ui/space_sequencer.py | 2 +- source/blender/blenkernel/intern/sequence.c | 4 ++-- .../editors/interface/interface_widgets.c | 2 +- .../editors/sculpt_paint/paint_vertex.c | 4 ++-- .../blender/editors/space_view3d/view3d_view.c | 2 +- source/blender/editors/uvedit/uvedit_ops.c | 2 +- source/blender/makesrna/intern/rna_space.c | 2 +- .../common/windows/GPW_KeyboardDevice.cpp | 18 +++++++++--------- .../common/windows/GPW_KeyboardDevice.h | 4 ++-- 11 files changed, 30 insertions(+), 30 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index 2e89be40bcb..8a17d455695 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -132,8 +132,8 @@ GHOST_SystemWin32::GHOST_SystemWin32() : m_hasPerformanceCounter(false), m_freq(0), m_start(0), - m_seperateLeftRight(false), - m_seperateLeftRightInitialized(false) + m_separateLeftRight(false), + m_separateLeftRightInitialized(false) { m_displayManager = new GHOST_DisplayManagerWin32 (); GHOST_ASSERT(m_displayManager, "GHOST_SystemWin32::GHOST_SystemWin32(): m_displayManager==0\n"); @@ -274,7 +274,7 @@ GHOST_TSuccess GHOST_SystemWin32::getModifierKeys(GHOST_ModifierKeys& keys) cons It didn't work all that well on some newer hardware, and worked less well with the passage of time, so it was fully disabled in ME. */ - if (m_seperateLeftRight && m_seperateLeftRightInitialized) { + if (m_separateLeftRight && m_separateLeftRightInitialized) { bool down = HIBYTE(::GetKeyState(VK_LSHIFT)) != 0; keys.set(GHOST_kModifierKeyLeftShift, down); down = HIBYTE(::GetKeyState(VK_RSHIFT)) != 0; @@ -581,29 +581,29 @@ LRESULT WINAPI GHOST_SystemWin32::s_wndProc(HWND hwnd, UINT msg, WPARAM wParam, case VK_SHIFT: case VK_CONTROL: case VK_MENU: - if (!system->m_seperateLeftRightInitialized) { + if (!system->m_separateLeftRightInitialized) { // Check whether this system supports seperate left and right keys switch (wParam) { case VK_SHIFT: - system->m_seperateLeftRight = + system->m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LSHIFT)) != 0) || (HIBYTE(::GetKeyState(VK_RSHIFT)) != 0) ? true : false; break; case VK_CONTROL: - system->m_seperateLeftRight = + system->m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LCONTROL)) != 0) || (HIBYTE(::GetKeyState(VK_RCONTROL)) != 0) ? true : false; break; case VK_MENU: - system->m_seperateLeftRight = + system->m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LMENU)) != 0) || (HIBYTE(::GetKeyState(VK_RMENU)) != 0) ? true : false; break; } - system->m_seperateLeftRightInitialized = true; + system->m_separateLeftRightInitialized = true; } system->processModifierKeys(window); // Bypass call to DefWindowProc diff --git a/intern/ghost/intern/GHOST_SystemWin32.h b/intern/ghost/intern/GHOST_SystemWin32.h index 9387b6cad50..6a12975a3dd 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.h +++ b/intern/ghost/intern/GHOST_SystemWin32.h @@ -283,9 +283,9 @@ protected: /** High frequency timer variable. */ __int64 m_start; /** Stores the capability of this system to distinguish left and right modifier keys. */ - bool m_seperateLeftRight; + bool m_separateLeftRight; /** Stores the initialization state of the member m_leftRightDistinguishable. */ - bool m_seperateLeftRightInitialized; + bool m_separateLeftRightInitialized; }; diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index fa91320202d..ff24bef9ee7 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -118,7 +118,7 @@ class SEQUENCER_MT_view(bpy.types.Menu): if st.display_mode == 'IMAGE': layout.itemR(st, "draw_safe_margin") if st.display_mode == 'WAVEFORM': - layout.itemR(st, "seperate_color_preview") + layout.itemR(st, "separate_color_preview") """ if(!sa->full) uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Maximize Window|Ctrl UpArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0,0, ""); diff --git a/source/blender/blenkernel/intern/sequence.c b/source/blender/blenkernel/intern/sequence.c index 42251cc54df..1ab085f5fa8 100644 --- a/source/blender/blenkernel/intern/sequence.c +++ b/source/blender/blenkernel/intern/sequence.c @@ -1156,7 +1156,7 @@ static int seq_proxy_get_fname(Scene *scene, Sequence * seq, int cfra, char * na return TRUE; } - /* generate a seperate proxy directory for each preview size */ + /* generate a separate proxy directory for each preview size */ if (seq->type == SEQ_IMAGE) { StripElem * se = give_stripelem(seq, cfra); @@ -1285,7 +1285,7 @@ static void seq_proxy_build_frame(Scene *scene, Sequence * seq, int cfra, int re IMB_scalefastImBuf(ibuf, (short)rectx, (short)recty); } - /* quality is fixed, otherwise one has to generate seperate + /* quality is fixed, otherwise one has to generate separate directories for every quality... depth = 32 is intentionally left in, otherwise ALPHA channels diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 246da9ddf4c..65f1f9a2f70 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -2368,7 +2368,7 @@ void ui_draw_but(const bContext *C, ARegion *ar, uiStyle *style, uiBut *but, rct uiFontStyle *fstyle= &style->widget; uiWidgetType *wt= NULL; - /* handle menus seperately */ + /* handle menus separately */ if(but->dt==UI_EMBOSSP) { switch (but->type) { case LABEL: diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c index f425fa01ebe..408f4862b6f 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex.c +++ b/source/blender/editors/sculpt_paint/paint_vertex.c @@ -389,7 +389,7 @@ void wpaint_fill(VPaint *wp, Object *ob, float paintweight) vgroup= ob->actdef-1; - /* directly copied from weight_paint, should probaby split into a seperate function */ + /* directly copied from weight_paint, should probaby split into a separate function */ /* if mirror painting, find the other group */ if(me->editflag & ME_EDIT_MIRROR_X) { bDeformGroup *defgroup= BLI_findlink(&ob->defbase, ob->actdef-1); @@ -990,7 +990,7 @@ void sample_wpaint(Scene *scene, ARegion *ar, View3D *v3d, int mode) static void do_weight_paint_auto_normalize(MDeformVert *dvert, int paint_nr, char *map) { - MDeformWeight *dw = dvert->dw; +// MDeformWeight *dw = dvert->dw; float sum=0.0f, fac=0.0f, paintw=0.0f; int i, tot=0; diff --git a/source/blender/editors/space_view3d/view3d_view.c b/source/blender/editors/space_view3d/view3d_view.c index e2b22afae62..9fbc916c02d 100644 --- a/source/blender/editors/space_view3d/view3d_view.c +++ b/source/blender/editors/space_view3d/view3d_view.c @@ -1447,7 +1447,7 @@ void VIEW3D_OT_localview(wmOperatorType *ot) /* identifiers */ ot->name= "Local View"; - ot->description= "Toggle display of selected object(s) seperately and centered in view."; + ot->description= "Toggle display of selected object(s) separately and centered in view."; ot->idname= "VIEW3D_OT_localview"; /* api callbacks */ diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 8eef80d2912..2ad2f003d6c 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -1886,7 +1886,7 @@ void UV_OT_unlink_selection(wmOperatorType *ot) /* This function sets the selection on tagged faces, need because settings the * selection a face is done in a number of places but it also needs to respect * the sticky modes for the UV verts, so dealing with the sticky modes is best - * done in a seperate function. + * done in a separate function. * * De-selects faces that have been tagged on efa->tmp.l. */ diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index a12e26a7d7b..40b918b1ea2 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1001,7 +1001,7 @@ static void rna_def_space_sequencer(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Transform Markers", "Transform markers as well as strips."); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_SEQUENCER, NULL); - prop= RNA_def_property(srna, "seperate_color_preview", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "separate_color_preview", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_DRAW_COLOR_SEPERATED); RNA_def_property_ui_text(prop, "Seperate Colors", "Seperate color channels in preview."); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_SEQUENCER, NULL); diff --git a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.cpp b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.cpp index 18724783307..0eb418ddfaf 100644 --- a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.cpp +++ b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.cpp @@ -72,8 +72,8 @@ GPW_KeyboardDevice::GPW_KeyboardDevice(void) { - m_seperateLeftRight = false; - m_seperateLeftRightInitialized = false; + m_separateLeftRight = false; + m_separateLeftRightInitialized = false; m_reverseKeyTranslateTable['A' ] = KX_AKEY ; m_reverseKeyTranslateTable['B' ] = KX_BKEY ; @@ -222,10 +222,10 @@ void GPW_KeyboardDevice::ConvertModifierKey(WPARAM wParam, bool isDown) It didn't work all that well on some newer hardware, and worked less well with the passage of time, so it was fully disabled in ME. */ - if (!m_seperateLeftRightInitialized && isDown) { + if (!m_separateLeftRightInitialized && isDown) { CheckForSeperateLeftRight(wParam); } - if (m_seperateLeftRight) { + if (m_separateLeftRight) { bool down = HIBYTE(::GetKeyState(VK_LSHIFT)) != 0; ConvertEvent(VK_LSHIFT, down); down = HIBYTE(::GetKeyState(VK_RSHIFT)) != 0; @@ -255,26 +255,26 @@ void GPW_KeyboardDevice::ConvertModifierKey(WPARAM wParam, bool isDown) void GPW_KeyboardDevice::CheckForSeperateLeftRight(WPARAM wParam) { - // Check whether this system supports seperate left and right keys + // Check whether this system supports separate left and right keys switch (wParam) { case VK_SHIFT: - m_seperateLeftRight = + m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LSHIFT)) != 0) || (HIBYTE(::GetKeyState(VK_RSHIFT)) != 0) ? true : false; break; case VK_CONTROL: - m_seperateLeftRight = + m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LCONTROL)) != 0) || (HIBYTE(::GetKeyState(VK_RCONTROL)) != 0) ? true : false; break; case VK_MENU: - m_seperateLeftRight = + m_separateLeftRight = (HIBYTE(::GetKeyState(VK_LMENU)) != 0) || (HIBYTE(::GetKeyState(VK_RMENU)) != 0) ? true : false; break; } - m_seperateLeftRightInitialized = true; + m_separateLeftRightInitialized = true; } diff --git a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h index cae7488c70d..d8185f01ce9 100644 --- a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h +++ b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h @@ -57,9 +57,9 @@ protected: void CheckForSeperateLeftRight(WPARAM wParam); /** Stores the capability of this system to distinguish left and right modifier keys. */ - bool m_seperateLeftRight; + bool m_separateLeftRight; /** Stores the initialization state of the member m_leftRightDistinguishable. */ - bool m_seperateLeftRightInitialized; + bool m_separateLeftRightInitialized; }; #endif //_GPW_KEYBOARDDEVICE_H_ From eafd94e1bd562cd11e8d6c24d3892e35359579be Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 2 Nov 2009 19:37:18 +0000 Subject: [PATCH 321/412] Make transform axis constraint projection more robust (less flip). It will still flip, but it now has a small buffer region before it does that which returns a really large positive or negative value. This still only happens in perspective cases, when moving along an axis that is nearly aligned with the view. --- .../editors/transform/transform_constraints.c | 44 ++++++++++++------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c index f80084f7820..7a6244b72b8 100644 --- a/source/blender/editors/transform/transform_constraints.c +++ b/source/blender/editors/transform/transform_constraints.c @@ -218,25 +218,39 @@ static void axisProjection(TransInfo *t, float axis[3], float in[3], float out[3 VecMulf(out, -factor); /* -factor makes move down going backwards */ } else { - float cb[3], ab[3]; + float v[3], i1[3], i2[3]; + float v2[3], v4[3]; + float norm_center[3]; + float plane[3]; - VECCOPY(out, axis); + getViewVector(t, t->con.center, norm_center); + Crossf(plane, norm_center, axis); - /* Get view vector on axis to define a plane */ - VecAddf(vec, t->con.center, in); - getViewVector(t, vec, norm); - - Crossf(vec, norm, axis); - - /* Project input vector on the plane passing on axis */ - Projf(vec, in, vec); + Projf(vec, in, plane); VecSubf(vec, in, vec); + + VecAddf(v, vec, t->con.center); + getViewVector(t, v, norm); - /* intersect the two lines: axis and norm */ - Crossf(cb, vec, norm); - Crossf(ab, axis, norm); - - VecMulf(out, Inpf(cb, ab) / Inpf(ab, ab)); + /* give arbitrary large value if projection is impossible */ + factor = Inpf(axis, norm); + if (1 - fabs(factor) < 0.0002f) { + VECCOPY(out, axis); + if (factor > 0) { + VecMulf(out, 1000000000); + } else { + VecMulf(out, -1000000000); + } + } else { + VecAddf(v2, t->con.center, axis); + VecAddf(v4, v, norm); + + LineIntersectLine(t->con.center, v2, v, v4, i1, i2); + + VecSubf(v, i2, v); + + VecSubf(out, i1, t->con.center); + } } } From acc09693c451986d5057827ed9b2f5ba4c316bdd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Nov 2009 20:18:05 +0000 Subject: [PATCH 322/412] update from Keith Boshoff, use selected faces while in face-mask mode as well as some other cleanup --- release/scripts/io/vertexpaint_dirt.py | 121 +++++++++++-------------- 1 file changed, 55 insertions(+), 66 deletions(-) diff --git a/release/scripts/io/vertexpaint_dirt.py b/release/scripts/io/vertexpaint_dirt.py index 9f55d3bb042..7d32c153d04 100644 --- a/release/scripts/io/vertexpaint_dirt.py +++ b/release/scripts/io/vertexpaint_dirt.py @@ -1,7 +1,3 @@ -# bl_author = ["Campbell Barton aka ideasman42", "Keith Boshoff aka Wahooney"] -# bl_url = ["www.blender.org", "blenderartists.org", "www.python.org"] -# bl_version = "0.2" - # ***** BEGIN GPL LICENSE BLOCK ***** # # Script copyright (C) Campbell J Barton @@ -25,6 +21,8 @@ # History # +# Originally written by Campbell Barton aka ideasman42 +# # 2009-11-01: * 2.5 port by Keith "Wahooney" Boshoff # * Replaced old method with my own, speed is similar (about 0.001 sec on Suzanne) # but results are far more accurate @@ -38,19 +36,20 @@ import time from Mathutils import Vector from bpy.props import * -def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, dirt_only, sel_only): +def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, dirt_only): ## Window.WaitCursor(1) #BPyMesh.meshCalcNormals(me) - vert_tone= [0.0] * len(me.verts) - vert_tone_count= [0] * len(me.verts) + vert_tone = [0.0] * len(me.verts) + + min_tone =180.0 + max_tone =0.0 # create lookup table for each vertex's connected vertices (via edges) - con = [[] for i in range(len(me.verts))] + con = [] - min_tone=180.0 - max_tone=0.0 + con = [[] for i in range(len(me.verts))] # add connected verts for e in me.edges: @@ -73,64 +72,56 @@ def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, ang = math.acos(no.dot(vec)) # enforce min/max + ang = max(clamp_dirt, ang) - vert_tone[v.index] = max(clamp_clean, min(clamp_dirt, ang)) + if not dirt_only: + ang = min(clamp_clean, ang) - # average vert_tone_list into vert_tonef -# for i, tones in enumerate(vert_tone): -# if vert_tone_count[i]: -# vert_tone[i] = vert_tone[i] / vert_tone_count[i] - - # Below we use edges to blur along so the edges need counting, not the faces - vert_tone_count= [0] * len(me.verts) - for ed in me.edges: - vert_tone_count[ed.verts[0]] += 1 - vert_tone_count[ed.verts[1]] += 1 - - - # Blur tone - blur = blur_strength - blur_inv = 1.0 - blur_strength + vert_tone[v.index] = ang + # blur tones for i in range(blur_iterations): - # backup the original tones - orig_vert_tone= list(vert_tone) + orig_vert_tone = list(vert_tone) - for ed in me.edges: + # use connected verts look up for blurring + for j, c in enumerate(con): + for v in c: + vert_tone[j] += blur_strength * orig_vert_tone[v] - i1 = ed.verts[0] - i2 = ed.verts[1] + vert_tone[j] /= len(c) * blur_strength + 1 - val1 = (orig_vert_tone[i2]*blur) + (orig_vert_tone[i1]*blur_inv) - val2 = (orig_vert_tone[i1]*blur) + (orig_vert_tone[i2]*blur_inv) + min_tone = min(vert_tone) + max_tone = max(vert_tone) - # Apply the ton divided by the number of faces connected - vert_tone[i1] += val1 / max(vert_tone_count[i1], 1) - vert_tone[i2] += val2 / max(vert_tone_count[i2], 1) + # debug information + # print(min_tone * 2 * math.pi) + # print(max_tone * 2 * math.pi) + # print(clamp_clean) + # print(clamp_dirt) + tone_range = max_tone-min_tone - min_tone= min(vert_tone) - max_tone= max(vert_tone) - - print(min_tone) - print(max_tone) - print(clamp_clean) - print(clamp_dirt) - - tone_range= max_tone-min_tone - if max_tone==min_tone: + if not tone_range: return - for lay in me.vertex_colors: - if lay.active: - active_col_layer = lay.data + active_col_layer = None + + if len(me.vertex_colors): + for lay in me.vertex_colors: + if lay.active: + active_col_layer = lay.data + else: + bpy.ops.mesh.vertex_color_add() + me.vertex_colors[0].active = True + active_col_layer = me.vertex_colors[0].data if not active_col_layer: - return('CANCELLED', ) + return("CANCELLED", ) for i, f in enumerate(me.faces): - if not sel_only or f.sel: + if not me.use_paint_mask or f.selected: + f_col = active_col_layer[i] f_col = [f_col.color1, f_col.color2, f_col.color3, f_col.color4] @@ -140,49 +131,47 @@ def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean, tone = vert_tone[me.verts[v].index] tone = (tone-min_tone)/tone_range + if dirt_only: + tone = min(tone, 0.5) + tone *= 2 + col[0] = tone*col[0] col[1] = tone*col[1] col[2] = tone*col[2] ## Window.WaitCursor(0) - class VertexPaintDirt(bpy.types.Operator): - '''This script uses the concavity of vertices to shade the mesh, and optionaly blur the shading to remove artifacts from spesific edges.''' bl_idname = "mesh.vertex_paint_dirt" bl_label = "Dirty Vertex Colors" bl_register = True bl_undo = True - blur_strength = FloatProperty(name="Blur Strength", description="Blur strength per iteration", default=1.0, min=0.01, max=1.0) - blur_iterations = IntProperty(name="Blur Iterations", description="Number times to blur the colors. (higher blurs more)", default=1, min=0, max=40) - clean_angle = FloatProperty(name="Highlight Angle", description="Less then 90 limits the angle used in the tonal range", default=0.0, min=0.0, max=180.0) - dirt_angle = FloatProperty(name="Dirt Angle", description="Less then 90 limits the angle used in the tonal range", default=180.0, min=0.0, max=180.0) - dirt_only = BoolProperty(name="Dirt Only", description="Dont calculate cleans for convex areas", default=False) - sel_faces_only = BoolProperty(name="Selected Faces Only", description="Only apply to UV/Face selected faces (mix vpain/uvface select)", default=False) + blur_strength = FloatProperty(name = "Blur Strength", description = "Blur strength per iteration", default = 1.0, min = 0.01, max = 1.0) + blur_iterations = IntProperty(name = "Blur Iterations", description = "Number times to blur the colors. (higher blurs more)", default = 1, min = 0, max = 40) + clean_angle = FloatProperty(name = "Highlight Angle", description = "Less then 90 limits the angle used in the tonal range", default = 180.0, min = 0.0, max = 180.0) + dirt_angle = FloatProperty(name = "Dirt Angle", description = "Less then 90 limits the angle used in the tonal range", default = 0.0, min = 0.0, max = 180.0) + dirt_only = BoolProperty(name= "Dirt Only", description = "Dont calculate cleans for convex areas", default = False) def execute(self, context): - sce= context.scene - ob= context.object + sce = context.scene + ob = context.object if not ob or ob.type != 'MESH': print('Error, no active mesh object, aborting.') - print(ob) - print(ob.type) return('CANCELLED',) me = ob.data t = time.time() - applyVertexDirt(me, self.blur_iterations, self.blur_strength, math.radians(self.dirt_angle), math.radians(self.clean_angle), self.dirt_only, self.sel_faces_only) + applyVertexDirt(me, self.blur_iterations, self.blur_strength, math.radians(self.dirt_angle), math.radians(self.clean_angle), self.dirt_only) - print('done in %.6f' % (time.time()-t)) + print('Dirt calculated in %.6f' % (time.time()-t)) return('FINISHED',) - bpy.ops.add(VertexPaintDirt) if __name__ == "__main__": From 5c538fc832495e0927dfc60ec8094f76c1f6db7b Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Mon, 2 Nov 2009 20:40:47 +0000 Subject: [PATCH 323/412] Mac : - remove CMake warnings when building with openMP --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 74c527841f5..7c5ba143b52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -518,9 +518,9 @@ IF(APPLE) ENDIF (WITH_COCOA) IF(WITH_OPENMP) - SET(LLIBS "${LLIBS} -lgomp ") - SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp ") - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp ") + SET(LLIBS "${LLIBS} -lgomp") + SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp") ENDIF(WITH_OPENMP) IF (WITH_OPENCOLLADA) From 5ff7cbd2f9426476dcedd25404804c60eae1f02b Mon Sep 17 00:00:00 2001 From: Jens Ole Wund Date: Mon, 2 Nov 2009 23:42:08 +0000 Subject: [PATCH 324/412] fixing minor issues such as ignoring forward timing rule --- source/blender/blenkernel/intern/softbody.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/softbody.c b/source/blender/blenkernel/intern/softbody.c index a17b4b0be68..599630fe0a0 100644 --- a/source/blender/blenkernel/intern/softbody.c +++ b/source/blender/blenkernel/intern/softbody.c @@ -3769,7 +3769,13 @@ static void softbody_step(Scene *scene, Object *ob, SoftBody *sb, float dtime) { /* the simulator */ float forcetime; - double sct,sst=PIL_check_seconds_timer(); + double sct,sst; + + + sst=PIL_check_seconds_timer(); + /* integration back in time is possible in theory, but pretty useless here + so refuse to do so */ + if(dtime < 0) return; ccd_update_deflector_hash(scene, ob, sb->scratch->colliderhash); @@ -3784,8 +3790,8 @@ static void softbody_step(Scene *scene, Object *ob, SoftBody *sb, float dtime) /* special case of 2nd order Runge-Kutta type AKA Heun */ int mid_flags=0; float err = 0; - float forcetimemax = 1.0f; - float forcetimemin = 0.001f; + float forcetimemax = 1.0f; /* set defaults guess we shall do one frame */ + float forcetimemin = 0.01f; /* set defaults guess 1/100 is tight enough */ float timedone =0.0; /* how far did we get without violating error condition */ /* loops = counter for emergency brake * we don't want to lock up the system if physics fail @@ -3793,13 +3799,12 @@ static void softbody_step(Scene *scene, Object *ob, SoftBody *sb, float dtime) int loops =0 ; SoftHeunTol = sb->rklimit; /* humm .. this should be calculated from sb parameters and sizes */ - if (sb->minloops > 0) forcetimemax = 1.0f / sb->minloops; - - if (sb->maxloops > 0) forcetimemin = 1.0f / sb->maxloops; + /* adjust loop limits */ + if (sb->minloops > 0) forcetimemax = dtime / sb->minloops; + if (sb->maxloops > 0) forcetimemin = dtime / sb->maxloops; if(sb->solver_ID>0) mid_flags |= MID_PRESERVE; - //forcetime = dtime; /* hope for integrating in one step */ forcetime =forcetimemax; /* hope for integrating in one step */ while ( (ABS(timedone) < ABS(dtime)) && (loops < 2000) ) { From 46487ad59eb9811c863c080e78b265900ed3e4ec Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Mon, 2 Nov 2009 23:55:04 +0000 Subject: [PATCH 325/412] == COLLADA == * fix win64 build and add proper library usage for COLLADA 64bit. Update also lib/win64 (r24263). --- SConstruct | 5 ++++- config/win64-vc-config.py | 2 +- intern/moto/include/MT_assert.h | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index cb90c2eaf66..e6dd85e8cff 100644 --- a/SConstruct +++ b/SConstruct @@ -124,7 +124,10 @@ if toolset: #if env: # btools.SetupSpawn(env) else: - env = BlenderEnvironment(ENV = os.environ) + if bitness==64 and platform=='win32': + env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64') + else: + env = BlenderEnvironment(ENV = os.environ) if not env: print "Could not create a build environment" diff --git a/config/win64-vc-config.py b/config/win64-vc-config.py index 429f8b0b6d6..53df6d96bf8 100644 --- a/config/win64-vc-config.py +++ b/config/win64-vc-config.py @@ -158,7 +158,7 @@ BF_COLLADA_LIB = 'bf_collada' BF_OPENCOLLADA = LIBDIR + '/opencollada' BF_OPENCOLLADA_INC = '${BF_OPENCOLLADA}/include' -BF_OPENCOLLADA_LIB = 'opencollada' +BF_OPENCOLLADA_LIB = 'OpenCOLLADAStreamWriter OpenCOLLADASaxFrameworkLoader OpenCOLLADAFramework OpenCOLLADABaseUtils GeneratedSaxParser UTF MathMLSolver xml2 pcre' BF_OPENCOLLADA_LIBPATH = '${BF_OPENCOLLADA}/lib' WITH_BF_STATICOPENGL = False diff --git a/intern/moto/include/MT_assert.h b/intern/moto/include/MT_assert.h index 22f6b6a555c..b8f18fc52ff 100644 --- a/intern/moto/include/MT_assert.h +++ b/intern/moto/include/MT_assert.h @@ -76,7 +76,7 @@ abort(); #endif /* breakpoint */ -#if defined(WIN32) && !defined(__GNUC__) +#if defined(_WIN32) && !defined(__GNUC__) #define MT_assert(predicate) assert(predicate) #else From 918d07dd5dd90a646d0648191cac09bacd4a5435 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 3 Nov 2009 02:49:36 +0000 Subject: [PATCH 326/412] * Fix for bug [#19726] Cannot add FCurve to any option under the physics panel except cloth I had to add some ugly RNA path finding code here, checking for all places these structs can possibly be reused. Can't think of a better way to go about this though with the path stored in the RNA type...? --- source/blender/makesrna/intern/rna_object.c | 1 + .../makesrna/intern/rna_object_force.c | 105 +++++++++++++++++- 2 files changed, 101 insertions(+), 5 deletions(-) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 1e884bb6950..5b6cb16a462 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -1493,6 +1493,7 @@ static void rna_def_object(BlenderRNA *brna) prop= RNA_def_property(srna, "soft_body", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "soft"); + RNA_def_property_struct_type(prop, "SoftBodySettings"); RNA_def_property_ui_text(prop, "Soft Body Settings", "Settings for soft body simulation."); prop= RNA_def_property(srna, "particle_systems", PROP_COLLECTION, PROP_NONE); diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c index e15d4917554..36a370e8561 100644 --- a/source/blender/makesrna/intern/rna_object_force.c +++ b/source/blender/makesrna/intern/rna_object_force.c @@ -29,10 +29,12 @@ #include "rna_internal.h" +#include "DNA_cloth_types.h" #include "DNA_object_types.h" #include "DNA_object_force.h" #include "DNA_particle_types.h" #include "DNA_scene_types.h" +#include "DNA_smoke_types.h" #include "WM_api.h" #include "WM_types.h" @@ -292,6 +294,15 @@ static void rna_Cache_active_point_cache_index_set(struct PointerRNA *ptr, int v BLI_freelistN(&pidlist); } + +static char *rna_CollisionSettings_path(PointerRNA *ptr) +{ + Object *ob= (Object*)ptr->id.data; + ModifierData *md = (ModifierData *)modifiers_findByType(ob, eModifierType_Collision); + + return BLI_sprintfN("modifiers[%s].settings", md->name); +} + static int rna_SoftBodySettings_use_edges_get(PointerRNA *ptr) { Object *data= (Object*)(ptr->id.data); @@ -401,15 +412,24 @@ static void rna_SoftBodySettings_goal_vgroup_set(PointerRNA *ptr, const char *va rna_object_vgroup_name_index_set(ptr, value, &sb->vertgroup); } -static int particle_field_check(PointerRNA *ptr) +static char *rna_SoftBodySettings_path(PointerRNA *ptr) +{ + Object *ob= (Object*)ptr->id.data; + ModifierData *md = (ModifierData *)modifiers_findByType(ob, eModifierType_Softbody); + + return BLI_sprintfN("modifiers[%s].settings", md->name); +} + +static int particle_id_check(PointerRNA *ptr) { ID *id= ptr->id.data; return (GS(id->name) == ID_PA); } + static void rna_FieldSettings_update(bContext *C, PointerRNA *ptr) { - if(particle_field_check(ptr)) { + if(particle_id_check(ptr)) { ParticleSettings *part = (ParticleSettings*)ptr->id.data; if(part->pd->forcefield != PFIELD_TEXTURE && part->pd->tex) { @@ -443,7 +463,7 @@ static void rna_FieldSettings_shape_update(bContext *C, PointerRNA *ptr) { Scene *scene= CTX_data_scene(C); - if(!particle_field_check(ptr)) { + if(!particle_id_check(ptr)) { Object *ob= (Object*)ptr->id.data; PartDeflect *pd= ob->pd; ModifierData *md= modifiers_findByType(ob, eModifierType_Surface); @@ -467,7 +487,7 @@ static void rna_FieldSettings_dependency_update(bContext *C, PointerRNA *ptr) { Scene *scene= CTX_data_scene(C); - if(particle_field_check(ptr)) { + if(particle_id_check(ptr)) { DAG_id_flush_update((ID*)ptr->id.data, OB_RECALC|PSYS_RECALC_RESET); } else { @@ -493,6 +513,30 @@ static void rna_FieldSettings_dependency_update(bContext *C, PointerRNA *ptr) } } +static char *rna_FieldSettings_path(PointerRNA *ptr) +{ + PartDeflect *pd = (PartDeflect *)ptr->data; + + /* Check through all possible places the settings can be to find the right one */ + + if(particle_id_check(ptr)) { + /* particle system force field */ + ParticleSettings *part = (ParticleSettings*)ptr->id.data; + + if (part->pd == pd) + return BLI_sprintfN("force_field_1"); + else if (part->pd2 == pd) + return BLI_sprintfN("force_field_2"); + } else { + /* object force field */ + Object *ob= (Object*)ptr->id.data; + + if (ob->pd == pd) + return BLI_sprintfN("field"); + } + return NULL; +} + static void rna_EffectorWeight_update(bContext *C, PointerRNA *ptr) { DAG_id_flush_update((ID*)ptr->id.data, OB_RECALC_DATA|PSYS_RECALC_RESET); @@ -510,6 +554,51 @@ static void rna_EffectorWeight_dependency_update(bContext *C, PointerRNA *ptr) WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, NULL); } + +static char *rna_EffectorWeight_path(PointerRNA *ptr) +{ + EffectorWeights *ew = (EffectorWeights *)ptr->data; + /* Check through all possible places the settings can be to find the right one */ + + if(particle_id_check(ptr)) { + /* particle effector weights */ + ParticleSettings *part = (ParticleSettings*)ptr->id.data; + + if (part->effector_weights == ew) + return BLI_sprintfN("effector_weights"); + } else { + Object *ob= (Object*)ptr->id.data; + ModifierData *md; + + /* check softbody modifier */ + md = (ModifierData *)modifiers_findByType(ob, eModifierType_Softbody); + if (md) { + /* no pointer from modifier data to actual softbody storage, would be good to add */ + if (ob->soft->effector_weights == ew) + return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + } + + /* check cloth modifier */ + md = (ModifierData *)modifiers_findByType(ob, eModifierType_Cloth); + if (md) { + ClothModifierData *cmd = (ClothModifierData *)md; + + if (cmd->sim_parms->effector_weights == ew) + return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + } + + /* check smoke modifier */ + md = (ModifierData *)modifiers_findByType(ob, eModifierType_Smoke); + if (md) { + SmokeModifierData *smd = (SmokeModifierData *)md; + + if (smd->domain->effector_weights == ew) + return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + } + } + return NULL; +} + static void rna_CollisionSettings_dependency_update(bContext *C, PointerRNA *ptr) { Scene *scene= CTX_data_scene(C); @@ -546,7 +635,7 @@ static EnumPropertyItem *rna_Effector_shape_itemf(bContext *C, PointerRNA *ptr, { Object *ob= NULL; - if(particle_field_check(ptr)) + if(particle_id_check(ptr)) return empty_shape_items; ob= (Object*)ptr->id.data; @@ -671,6 +760,7 @@ static void rna_def_collision(BlenderRNA *brna) srna= RNA_def_struct(brna, "CollisionSettings", NULL); RNA_def_struct_sdna(srna, "PartDeflect"); + RNA_def_struct_path_func(srna, "rna_CollisionSettings_path"); RNA_def_struct_ui_text(srna, "Collision Settings", "Collision settings for object in physics simulation."); prop= RNA_def_property(srna, "enabled", PROP_BOOLEAN, PROP_NONE); @@ -755,6 +845,8 @@ static void rna_def_effector_weight(BlenderRNA *brna) PropertyRNA *prop; srna= RNA_def_struct(brna, "EffectorWeights", NULL); + RNA_def_struct_sdna(srna, "EffectorWeights"); + RNA_def_struct_path_func(srna, "rna_EffectorWeight_path"); RNA_def_struct_ui_text(srna, "Effector Weights", "Effector weights for physics simulation."); RNA_def_struct_ui_icon(srna, ICON_PHYSICS); @@ -929,6 +1021,7 @@ static void rna_def_field(BlenderRNA *brna) srna= RNA_def_struct(brna, "FieldSettings", NULL); RNA_def_struct_sdna(srna, "PartDeflect"); + RNA_def_struct_path_func(srna, "rna_FieldSettings_path"); RNA_def_struct_ui_text(srna, "Field Settings", "Field settings for an object in physics simulation."); RNA_def_struct_ui_icon(srna, ICON_PHYSICS); @@ -1282,6 +1375,7 @@ static void rna_def_softbody(BlenderRNA *brna) srna= RNA_def_struct(brna, "SoftBodySettings", NULL); RNA_def_struct_sdna(srna, "SoftBody"); + RNA_def_struct_path_func(srna, "rna_SoftBodySettings_path"); RNA_def_struct_ui_text(srna, "Soft Body Settings", "Soft body simulation settings for an object."); /* General Settings */ @@ -1501,6 +1595,7 @@ static void rna_def_softbody(BlenderRNA *brna) RNA_def_property_update(prop, 0, "rna_softbody_update"); prop= RNA_def_property(srna, "effector_weights", PROP_POINTER, PROP_NONE); + RNA_def_property_pointer_sdna(prop, NULL, "effector_weights"); RNA_def_property_struct_type(prop, "EffectorWeights"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Effector Weights", ""); From 8cbad63c227de2c091f010c8ed1d0240e64d6753 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 3 Nov 2009 06:04:42 +0000 Subject: [PATCH 327/412] Fix [#19759] Point Density Texture Use derivedmesh functions to get object vertices, rather than objectren verts (which can not exist if object is non-renderable) --- .../render/intern/source/pointdensity.c | 65 +++++++++---------- 1 file changed, 30 insertions(+), 35 deletions(-) diff --git a/source/blender/render/intern/source/pointdensity.c b/source/blender/render/intern/source/pointdensity.c index b7832e74cd1..c1cca4e217a 100644 --- a/source/blender/render/intern/source/pointdensity.c +++ b/source/blender/render/intern/source/pointdensity.c @@ -41,6 +41,7 @@ #include "BKE_particle.h" #include "BKE_texture.h" +#include "DNA_meshdata_types.h" #include "DNA_texture_types.h" #include "DNA_particle_types.h" @@ -184,38 +185,44 @@ static void pointdensity_cache_psys(Render *re, PointDensity *pd, Object *ob, Pa } -static void pointdensity_cache_object(Render *re, PointDensity *pd, ObjectRen *obr) +static void pointdensity_cache_object(Render *re, PointDensity *pd, Object *ob) { int i; + DerivedMesh *dm; + MVert *mvert = NULL; + float cam_mat[4][4]; - if (!obr || !pd) return; - if(!obr->vertnodes) return; + dm = mesh_create_derived_render(re->scene, ob, CD_MASK_BAREMESH|CD_MASK_MTFACE|CD_MASK_MCOL); + mvert= dm->getVertArray(dm); /* local object space */ - /* in case ob->imat isn't up-to-date */ - Mat4Invert(obr->ob->imat, obr->ob->obmat); + pd->totpoints= dm->getNumVerts(dm); + if (pd->totpoints == 0) return; + + pd->point_tree = BLI_bvhtree_new(pd->totpoints, 0.0, 4, 6); - pd->point_tree = BLI_bvhtree_new(obr->totvert, 0.0, 4, 6); - pd->totpoints = obr->totvert; - - for(i=0; itotvert; i++) { - float ver_co[3]; - VertRen *ver= RE_findOrAddVert(obr, i); + for(i=0; i < pd->totpoints; i++, mvert++) { + float co[3]; - VECCOPY(ver_co, ver->co); - Mat4MulVecfl(re->viewinv, ver_co); - - if (pd->ob_cache_space == TEX_PD_OBJECTSPACE) { - Mat4MulVecfl(obr->ob->imat, ver_co); - } else if (pd->psys_cache_space == TEX_PD_OBJECTLOC) { - VecSubf(ver_co, ver_co, obr->ob->loc); - } else { - /* TEX_PD_WORLDSPACE */ + VECCOPY(co, mvert->co); + + switch(pd->ob_cache_space) { + case TEX_PD_OBJECTSPACE: + break; + case TEX_PD_OBJECTLOC: + Mat4MulVecfl(ob->obmat, co); + VecSubf(co, co, ob->loc); + break; + case TEX_PD_WORLDSPACE: + default: + Mat4MulVecfl(ob->obmat, co); + break; } - - BLI_bvhtree_insert(pd->point_tree, i, ver_co, 1); + + BLI_bvhtree_insert(pd->point_tree, i, co, 1); } BLI_bvhtree_balance(pd->point_tree); + dm->release(dm); } static void cache_pointdensity(Render *re, Tex *tex) @@ -237,19 +244,7 @@ static void cache_pointdensity(Render *re, Tex *tex) } else if (pd->source == TEX_PD_OBJECT) { Object *ob = pd->object; - ObjectRen *obr; - int found=0; - - /* find the obren that corresponds to the object */ - for (obr=re->objecttable.first; obr; obr=obr->next) { - if (obr->ob == ob) { - found=1; - break; - } - } - if (!found) return; - - pointdensity_cache_object(re, pd, obr); + if (ob) pointdensity_cache_object(re, pd, ob); } } From cbc5a78576990f07581bc6019444ad43c7fa64f0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 07:23:02 +0000 Subject: [PATCH 328/412] whitespace commit, (was some tabs mixed with spaces too) --- .../scripts/ui/properties_data_armature.py | 4 +- release/scripts/ui/properties_data_bone.py | 4 +- release/scripts/ui/properties_data_camera.py | 4 +- release/scripts/ui/properties_data_curve.py | 4 +- release/scripts/ui/properties_data_empty.py | 4 +- release/scripts/ui/properties_data_lamp.py | 4 +- release/scripts/ui/properties_data_lattice.py | 4 +- release/scripts/ui/properties_data_mesh.py | 4 +- .../scripts/ui/properties_data_metaball.py | 4 +- .../scripts/ui/properties_data_modifier.py | 4 +- release/scripts/ui/properties_data_text.py | 4 +- release/scripts/ui/properties_game.py | 4 +- release/scripts/ui/properties_material.py | 4 +- release/scripts/ui/properties_object.py | 4 +- .../ui/properties_object_constraint.py | 8 +- release/scripts/ui/properties_particle.py | 4 +- .../scripts/ui/properties_physics_cloth.py | 4 +- .../scripts/ui/properties_physics_common.py | 4 +- .../scripts/ui/properties_physics_field.py | 4 +- .../scripts/ui/properties_physics_fluid.py | 4 +- .../scripts/ui/properties_physics_smoke.py | 4 +- .../scripts/ui/properties_physics_softbody.py | 4 +- release/scripts/ui/properties_render.py | 4 +- release/scripts/ui/properties_scene.py | 4 +- release/scripts/ui/properties_texture.py | 4 +- release/scripts/ui/properties_world.py | 4 +- release/scripts/ui/space_buttons.py | 4 +- release/scripts/ui/space_console.py | 4 +- release/scripts/ui/space_filebrowser.py | 4 +- release/scripts/ui/space_image.py | 4 +- release/scripts/ui/space_info.py | 4 +- release/scripts/ui/space_logic.py | 4 +- release/scripts/ui/space_node.py | 4 +- release/scripts/ui/space_outliner.py | 4 +- release/scripts/ui/space_sequencer.py | 4 +- release/scripts/ui/space_text.py | 4 +- release/scripts/ui/space_time.py | 4 +- release/scripts/ui/space_userpref.py | 288 +++++++++--------- release/scripts/ui/space_view3d.py | 10 +- release/scripts/ui/space_view3d_toolbar.py | 4 +- 40 files changed, 227 insertions(+), 227 deletions(-) diff --git a/release/scripts/ui/properties_data_armature.py b/release/scripts/ui/properties_data_armature.py index 0f597c5891a..f45f7ab6f60 100644 --- a/release/scripts/ui/properties_data_armature.py +++ b/release/scripts/ui/properties_data_armature.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_bone.py b/release/scripts/ui/properties_data_bone.py index b45ad1f8317..d1dd1163899 100644 --- a/release/scripts/ui/properties_data_bone.py +++ b/release/scripts/ui/properties_data_bone.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_camera.py b/release/scripts/ui/properties_data_camera.py index c860998d779..eefd2432186 100644 --- a/release/scripts/ui/properties_data_camera.py +++ b/release/scripts/ui/properties_data_camera.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py index 5fa2f05839a..e2987e0a05c 100644 --- a/release/scripts/ui/properties_data_curve.py +++ b/release/scripts/ui/properties_data_curve.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_empty.py b/release/scripts/ui/properties_data_empty.py index aa90c1e7068..3f6c7523b3e 100644 --- a/release/scripts/ui/properties_data_empty.py +++ b/release/scripts/ui/properties_data_empty.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_lamp.py b/release/scripts/ui/properties_data_lamp.py index 12c4c8e6fb4..c7ad5b1c895 100644 --- a/release/scripts/ui/properties_data_lamp.py +++ b/release/scripts/ui/properties_data_lamp.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_lattice.py b/release/scripts/ui/properties_data_lattice.py index b9fba1f6808..3a18a09670a 100644 --- a/release/scripts/ui/properties_data_lattice.py +++ b/release/scripts/ui/properties_data_lattice.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index 788345340d6..20360fa5ee3 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_metaball.py b/release/scripts/ui/properties_data_metaball.py index 39bcc7bc8e3..45330acd8e4 100644 --- a/release/scripts/ui/properties_data_metaball.py +++ b/release/scripts/ui/properties_data_metaball.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py index 23ab422b7b0..410fbadec09 100644 --- a/release/scripts/ui/properties_data_modifier.py +++ b/release/scripts/ui/properties_data_modifier.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_data_text.py b/release/scripts/ui/properties_data_text.py index d48f4046ba3..b622264569f 100644 --- a/release/scripts/ui/properties_data_text.py +++ b/release/scripts/ui/properties_data_text.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_game.py b/release/scripts/ui/properties_game.py index a348c6f2f52..b445585507d 100644 --- a/release/scripts/ui/properties_game.py +++ b/release/scripts/ui/properties_game.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py index 8c62f75eed2..67d9cea0934 100644 --- a/release/scripts/ui/properties_material.py +++ b/release/scripts/ui/properties_material.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py index aaf8fa9614c..fe1458a080a 100644 --- a/release/scripts/ui/properties_object.py +++ b/release/scripts/ui/properties_object.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 36e6e20aaf0..3857a59edaf 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -597,13 +597,13 @@ class ConstraintButtonsPanel(bpy.types.Panel): def SPLINE_IK(self, context, layout, con): self.target_template(layout, con) - + col = layout.column() col.itemL(text="Spline Fitting:") col.itemR(con, "chain_length") col.itemR(con, "even_divisions") #col.itemR(con, "affect_root") # XXX: this is not that useful yet - + col = layout.column() col.itemL(text="Chain Scaling:") col.itemR(con, "keep_max_length") diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index 8a1f0cc2b5f..eddf8158c23 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py index 19b1c7a3c61..255b7038b99 100644 --- a/release/scripts/ui/properties_physics_cloth.py +++ b/release/scripts/ui/properties_physics_cloth.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_common.py b/release/scripts/ui/properties_physics_common.py index 73531f4cd28..187db9940f9 100644 --- a/release/scripts/ui/properties_physics_common.py +++ b/release/scripts/ui/properties_physics_common.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_field.py b/release/scripts/ui/properties_physics_field.py index 7499b03e731..b61f2172d94 100644 --- a/release/scripts/ui/properties_physics_field.py +++ b/release/scripts/ui/properties_physics_field.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py index 46b1a5364d0..47a5546c205 100644 --- a/release/scripts/ui/properties_physics_fluid.py +++ b/release/scripts/ui/properties_physics_fluid.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py index c5d0409af6e..3b9b6fdf2b1 100644 --- a/release/scripts/ui/properties_physics_smoke.py +++ b/release/scripts/ui/properties_physics_smoke.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py index ec290b38e4a..27c8e357608 100644 --- a/release/scripts/ui/properties_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_render.py b/release/scripts/ui/properties_render.py index 0524b00f011..6aafc808502 100644 --- a/release/scripts/ui/properties_render.py +++ b/release/scripts/ui/properties_render.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_scene.py b/release/scripts/ui/properties_scene.py index 2061b6580f3..9ab431a2d6d 100644 --- a/release/scripts/ui/properties_scene.py +++ b/release/scripts/ui/properties_scene.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index 6490c03986d..69540f7dea7 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/properties_world.py b/release/scripts/ui/properties_world.py index 39ca477b2d8..d00592470f0 100644 --- a/release/scripts/ui/properties_world.py +++ b/release/scripts/ui/properties_world.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_buttons.py b/release/scripts/ui/space_buttons.py index adb127d5ff6..d1b7f99cf5d 100644 --- a/release/scripts/ui/space_buttons.py +++ b/release/scripts/ui/space_buttons.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 88b806ecf23..7cd5a0a903b 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index 1a89639c4c2..2269cdd9a97 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index c56bfb00af6..f6b5b75da73 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 9328aad964c..51580fbc6ae 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_logic.py b/release/scripts/ui/space_logic.py index cec739773b3..42daa4ace07 100644 --- a/release/scripts/ui/space_logic.py +++ b/release/scripts/ui/space_logic.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py index daf2d32a0bb..9880a320e25 100644 --- a/release/scripts/ui/space_node.py +++ b/release/scripts/ui/space_node.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_outliner.py b/release/scripts/ui/space_outliner.py index 89c38b16965..4d517cd9046 100644 --- a/release/scripts/ui/space_outliner.py +++ b/release/scripts/ui/space_outliner.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py index ff24bef9ee7..ec90d15968d 100644 --- a/release/scripts/ui/space_sequencer.py +++ b/release/scripts/ui/space_sequencer.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_text.py b/release/scripts/ui/space_text.py index bd1514dbf77..0d33f181a06 100644 --- a/release/scripts/ui/space_text.py +++ b/release/scripts/ui/space_text.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py index 164a69f2826..42734589d48 100644 --- a/release/scripts/ui/space_time.py +++ b/release/scripts/ui/space_time.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 0235876a064..935e3b40874 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -355,60 +355,60 @@ class USERPREF_PT_theme(bpy.types.Panel): def draw(self, context): layout = self.layout - + theme = context.user_preferences.themes[0] - - + + split = layout.split(percentage=0.33) split.itemR(theme, "active_theme", text="") - + layout.itemS() - + split = layout.split() - + if theme.active_theme == 'VIEW_3D': v3d = theme.view_3d - - col = split.column() + + col = split.column() col.itemR(v3d, "back") col.itemR(v3d, "title") col.itemR(v3d, "text") col.itemR(v3d, "text_hi") col.itemR(v3d, "header") col.itemR(v3d, "header_text") - - col = split.column() - col.itemR(v3d, "header_text_hi") + + col = split.column() + col.itemR(v3d, "header_text_hi") col.itemR(v3d, "grid") col.itemR(v3d, "panel", slider=True) col.itemR(v3d, "wire") col.itemR(v3d, "lamp", slider=True) - - col = split.column() + + col = split.column() col.itemR(v3d, "current_frame") - col.itemR(v3d, "editmesh_active", slider=True) + col.itemR(v3d, "editmesh_active", slider=True) col.itemR(v3d, "object_selected") col.itemR(v3d, "object_active") col.itemR(v3d, "object_grouped") col.itemR(v3d, "object_grouped_active") - - col = split.column() + + col = split.column() col.itemR(v3d, "transform") col.itemR(v3d, "vertex") col.itemR(v3d, "face", slider=True) col.itemR(v3d, "normal") col.itemR(v3d, "bone_solid") - col.itemR(v3d, "bone_pose") + col.itemR(v3d, "bone_pose") # col.itemR(v3d, "edge") Doesn't seem to work elif theme.active_theme == 'USER_INTERFACE': - + ui = theme.user_interface.wcol_regular - + layout.itemL(text="Regular:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -424,12 +424,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") layout.itemS() - + ui = theme.user_interface.wcol_tool layout.itemL(text="Tool:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -444,12 +444,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_radio layout.itemL(text="Radio Buttons:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -464,12 +464,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_text layout.itemL(text="Text:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -484,12 +484,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_option layout.itemL(text="Option:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -504,12 +504,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_toggle layout.itemL(text="Toggle:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -524,12 +524,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_num layout.itemL(text="Number Field:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -544,12 +544,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_numslider layout.itemL(text="Value Slider:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -564,12 +564,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_box layout.itemL(text="Box:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -584,12 +584,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_menu layout.itemL(text="Menu:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -604,12 +604,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_pulldown layout.itemL(text="Pulldown:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -624,12 +624,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_menu_back layout.itemL(text="Menu Back:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -644,12 +644,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_menu_item layout.itemL(text="Menu Item:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -664,12 +664,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_scroll layout.itemL(text="Scroll Bar:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -684,12 +684,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_list_item layout.itemL(text="List Item:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "outline") sub1.itemR(ui, "item", slider=True) sub1 = sub.column() @@ -704,12 +704,12 @@ class USERPREF_PT_theme(bpy.types.Panel): sub2.active = ui.shaded sub2.itemR(ui, "shadetop") sub2.itemR(ui, "shadedown") - + ui = theme.user_interface.wcol_state layout.itemL(text="State:") - + sub = layout.row() - sub1 = sub.column() + sub1 = sub.column() sub1.itemR(ui, "inner_anim") sub1.itemR(ui, "inner_anim_sel") sub1 = sub.column() @@ -720,340 +720,340 @@ class USERPREF_PT_theme(bpy.types.Panel): sub1.itemR(ui, "inner_key_sel") sub1 = sub.column() sub1.itemR(ui, "blend") - + ui = theme.user_interface layout.itemS() - - sub = layout.row() + + sub = layout.row() sub.itemR(ui, "icon_file") - + layout.itemS() layout.itemS() - + elif theme.active_theme == 'GRAPH_EDITOR': graph = theme.graph_editor - + col = split.column() col.itemR(graph, "back") col.itemR(graph, "title") col.itemR(graph, "text") col.itemR(graph, "text_hi") col.itemR(graph, "header") - + col = split.column() col.itemR(graph, "header_text") - col.itemR(graph, "header_text_hi") + col.itemR(graph, "header_text_hi") col.itemR(graph, "grid") col.itemR(graph, "panel") col.itemR(graph, "window_sliders") - + col = split.column() col.itemR(graph, "channels_region") col.itemR(graph, "vertex") col.itemR(graph, "current_frame") col.itemR(graph, "handle_vertex") col.itemR(graph, "handle_vertex_select") - + col = split.column() col.itemR(graph, "handle_vertex_size") col.itemR(graph, "channel_group") col.itemR(graph, "active_channels_group") col.itemR(graph, "dopesheet_channel") col.itemR(graph, "dopesheet_subchannel") - - + + elif theme.active_theme == 'FILE_BROWSER': file = theme.file_browser - + col = split.column() col.itemR(file, "back") col.itemR(file, "title") col.itemR(file, "text") col.itemR(file, "text_hi") - + col = split.column() col.itemR(file, "header") col.itemR(file, "header_text") col.itemR(file, "header_text_hi") - + col = split.column() col.itemR(file, "selected_file") col.itemR(file, "tiles") col.itemR(file, "scrollbar") - + col = split.column() col.itemR(file, "scroll_handle") col.itemR(file, "active_file") col.itemR(file, "active_file_text") - + elif theme.active_theme == 'NLA_EDITOR': nla = theme.nla_editor - + col = split.column() col.itemR(nla, "back") col.itemR(nla, "title") col.itemR(nla, "text") col.itemR(nla, "text_hi") - + col = split.column() col.itemR(nla, "header") col.itemR(nla, "header_text") col.itemR(nla, "header_text_hi") col.itemR(nla, "grid") - + col = split.column() col.itemR(nla, "view_sliders") col.itemR(nla, "bars") col.itemR(nla, "bars_selected") - + col = split.column() col.itemR(nla, "strips") col.itemR(nla, "strips_selected") col.itemR(nla, "current_frame") - + elif theme.active_theme == 'DOPESHEET_EDITOR': dope = theme.dopesheet_editor - + col = split.column() col.itemR(dope, "back") col.itemR(dope, "title") col.itemR(dope, "text") col.itemR(dope, "text_hi") col.itemR(dope, "header") - + col = split.column() col.itemR(dope, "header_text") col.itemR(dope, "header_text_hi") col.itemR(dope, "grid") col.itemR(dope, "value_sliders") col.itemR(dope, "view_sliders") - + col = split.column() col.itemR(dope, "channels") col.itemR(dope, "channels_selected") col.itemR(dope, "channel_group") col.itemR(dope, "active_channels_group") col.itemR(dope, "long_key") - + col = split.column() col.itemR(dope, "long_key_selected") col.itemR(dope, "current_frame") col.itemR(dope, "dopesheet_channel") col.itemR(dope, "dopesheet_subchannel") - + elif theme.active_theme == 'IMAGE_EDITOR': image = theme.image_editor col = split.column() col.itemR(image, "back") col.itemR(image, "title") - + col = split.column() col.itemR(image, "text") col.itemR(image, "text_hi") - + col = split.column() col.itemR(image, "header") col.itemR(image, "header_text") - + col = split.column() col.itemR(image, "header_text_hi") col.itemR(image, "editmesh_active", slider=True) - + elif theme.active_theme == 'SEQUENCE_EDITOR': seq = theme.sequence_editor - + col = split.column() col.itemR(seq, "back") col.itemR(seq, "title") col.itemR(seq, "text") col.itemR(seq, "text_hi") col.itemR(seq, "header") - + col = split.column() col.itemR(seq, "header_text") col.itemR(seq, "header_text_hi") col.itemR(seq, "grid") col.itemR(seq, "window_sliders") col.itemR(seq, "movie_strip") - + col = split.column() col.itemR(seq, "image_strip") col.itemR(seq, "scene_strip") col.itemR(seq, "audio_strip") col.itemR(seq, "effect_strip") col.itemR(seq, "plugin_strip") - + col = split.column() col.itemR(seq, "transition_strip") col.itemR(seq, "meta_strip") col.itemR(seq, "current_frame") col.itemR(seq, "keyframe") col.itemR(seq, "draw_action") - + elif theme.active_theme == 'PROPERTIES': prop = theme.properties - + col = split.column() col.itemR(prop, "back") col.itemR(prop, "title") - + col = split.column() col.itemR(prop, "text") col.itemR(prop, "text_hi") - + col = split.column() col.itemR(prop, "header") col.itemR(prop, "header_text") - + col = split.column() col.itemR(prop, "header_text_hi") col.itemR(prop, "panel") - + elif theme.active_theme == 'TEXT_EDITOR': text = theme.text_editor - + col = split.column() col.itemR(text, "back") col.itemR(text, "title") col.itemR(text, "text") col.itemR(text, "text_hi") - + col = split.column() col.itemR(text, "header") col.itemR(text, "header_text") col.itemR(text, "header_text_hi") col.itemR(text, "line_numbers_background") - + col = split.column() col.itemR(text, "scroll_bar") col.itemR(text, "selected_text") col.itemR(text, "cursor") col.itemR(text, "syntax_builtin") - + col = split.column() col.itemR(text, "syntax_special") col.itemR(text, "syntax_comment") col.itemR(text, "syntax_string") col.itemR(text, "syntax_numbers") - + elif theme.active_theme == 'TIMELINE': time = theme.timeline - + col = split.column() col.itemR(time, "back") col.itemR(time, "title") col.itemR(time, "text") - + col = split.column() col.itemR(time, "text_hi") col.itemR(time, "header") - + col = split.column() col.itemR(time, "header_text") col.itemR(time, "header_text_hi") - + col = split.column() col.itemR(time, "grid") col.itemR(time, "current_frame") - + elif theme.active_theme == 'NODE_EDITOR': node = theme.node_editor - + col = split.column() col.itemR(node, "back") col.itemR(node, "title") col.itemR(node, "text") col.itemR(node, "text_hi") - + col = split.column() col.itemR(node, "header") col.itemR(node, "header_text") col.itemR(node, "header_text_hi") col.itemR(node, "wires") - + col = split.column() col.itemR(node, "wire_select") col.itemR(node, "selected_text") col.itemR(node, "node_backdrop") col.itemR(node, "in_out_node") - + col = split.column() col.itemR(node, "converter_node") col.itemR(node, "operator_node") col.itemR(node, "group_node") - + elif theme.active_theme == 'LOGIC_EDITOR': logic = theme.logic_editor - + col = split.column() col.itemR(logic, "back") col.itemR(logic, "title") - + col = split.column() col.itemR(logic, "text") col.itemR(logic, "text_hi") - + col = split.column() col.itemR(logic, "header") col.itemR(logic, "header_text") - + col = split.column() col.itemR(logic, "header_text_hi") col.itemR(logic, "panel") elif theme.active_theme == 'OUTLINER': out = theme.outliner - + col = split.column() col.itemR(out, "back") col.itemR(out, "title") - + col = split.column() col.itemR(out, "text") col.itemR(out, "text_hi") - + col = split.column() col.itemR(out, "header") col.itemR(out, "header_text") - + col = split.column() col.itemR(out, "header_text_hi") - + elif theme.active_theme == 'INFO': info = theme.info - + col = split.column() col.itemR(info, "back") col.itemR(info, "title") - + col = split.column() col.itemR(info, "text") col.itemR(info, "text_hi") - + col = split.column() col.itemR(info, "header") col.itemR(info, "header_text") - + col = split.column() col.itemR(info, "header_text_hi") - + elif theme.active_theme == 'USER_PREFERENCES': prefs = theme.user_preferences - + col = split.column() col.itemR(prefs, "back") col.itemR(prefs, "title") - + col = split.column() col.itemR(prefs, "text") col.itemR(prefs, "text_hi") - + col = split.column() col.itemR(prefs, "header") col.itemR(prefs, "header_text") - + col = split.column() col.itemR(prefs, "header_text_hi") @@ -1231,9 +1231,9 @@ class USERPREF_PT_input(bpy.types.Panel): itemrow = row.row() itemrow.enabled = km.user_defined if kmi.active: - itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_HLT") + itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_HLT") else: - itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") + itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT") itemcol = itemrow.column() itemcol.active = kmi.active diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index ac65a3dae45..30bfdb8e918 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -209,9 +209,9 @@ class VIEW3D_MT_select_object(bpy.types.Menu): layout.itemO("object.select_mirror", text="Mirror") layout.itemO("object.select_by_layer", text="Select All by Layer") layout.item_menu_enumO("object.select_by_type", "type", "", text="Select All by Type...") - + layout.itemS() - + layout.item_menu_enumO("object.select_grouped", "type", text="Grouped") layout.item_menu_enumO("object.select_linked", "type", text="Linked") layout.itemO("object.select_pattern", text="Select Pattern...") @@ -407,7 +407,7 @@ class VIEW3D_MT_select_edit_armature(bpy.types.Menu): layout = self.layout layout.itemO("view3d.select_border") - + layout.itemS() diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 73f613177b8..2311482ac22 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -4,12 +4,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. From 8a57ff7afaa281c92d1042ee9bc34d734dd3762b Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 3 Nov 2009 07:24:22 +0000 Subject: [PATCH 329/412] Slightly nicer OS X quit message --- intern/ghost/intern/GHOST_SystemCocoa.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm index 5dbf79a0293..73be363dff1 100644 --- a/intern/ghost/intern/GHOST_SystemCocoa.mm +++ b/intern/ghost/intern/GHOST_SystemCocoa.mm @@ -786,7 +786,7 @@ bool GHOST_SystemCocoa::processEvents(bool waitForEvent) case NSFlagsChanged: handleKeyEvent(event); - /* Support system-wide keyboard shortcuts, like Exposé, ...) =>included in always NSApp sendEvent */ + /* Support system-wide keyboard shortcuts, like Expos√©, ...) =>included in always NSApp sendEvent */ /* if (([event modifierFlags] & NSCommandKeyMask) || [event type] == NSFlagsChanged) { [NSApp sendEvent:event]; }*/ @@ -891,8 +891,8 @@ GHOST_TUns8 GHOST_SystemCocoa::handleQuitRequest() //Check open windows if some changes are not saved if (m_windowManager->getAnyModifiedState()) { - int shouldQuit = NSRunAlertPanel(@"Exit Blender", @"Some changes have not been saved. Do you really want to quit ?", - @"Cancel", @"Quit anyway", nil); + int shouldQuit = NSRunAlertPanel(@"Exit Blender", @"Some changes have not been saved.\nDo you really want to quit ?", + @"Cancel", @"Quit Anyway", nil); if (shouldQuit == NSAlertAlternateReturn) { pushEvent( new GHOST_Event(getMilliSeconds(), GHOST_kEventQuit, NULL) ); From f18c7161c4b71b429e0fd5124a3df1e532d1f03e Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Tue, 3 Nov 2009 09:56:18 +0000 Subject: [PATCH 330/412] Mac : - add optimize flags setting in CMake for release builds --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c5ba143b52..4e02ea20fb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -555,6 +555,16 @@ IF(APPLE) SET(TIFF_INC ${TIFF}/include) SET(EXETYPE MACOSX_BUNDLE) + + + IF(CMAKE_OSX_ARCHITECTURES MATCHES "i386") + SET(CMAKE_CXX_FLAGS_RELEASE "-O3 -ftree-vectorize -msse -msse2 -fvariable-expansion-in-unroller") + SET(CMAKE_C_FLAGS_RELEASE "-O3 -ftree-vectorize -msse -msse2 -fvariable-expansion-in-unroller") + ELSEIF(CMAKE_OSX_ARCHITECTURES MATCHES "x86_64") + SET(CMAKE_CXX_FLAGS_RELEASE "-O3 -ftree-vectorize -msse -msse2 -msse3 -mssse3 -fvariable-expansion-in-unroller") + SET(CMAKE_C_FLAGS_RELEASE "-O3 -ftree-vectorize -msse -msse2 -msse3 -mssse3 -fvariable-expansion-in-unroller") + ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES "i386") + ENDIF(APPLE) IF(CMAKE_SYSTEM_NAME MATCHES "Linux") From b3c8935b066cd1a9f17cb7199d87ede3f644a35c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 11:00:10 +0000 Subject: [PATCH 331/412] - Shift+F1 is append in 2.4x (not link). Lee asked it to be made the same. - use OBJECT_OT_mode_set rather then OBJECT_OT_*_toggle, better for using report output for script input. OBJECT_OT_posemode_toggle and OBJECT_OT_editmode_toggle are called by OBJECT_OT_mode_set. --- source/blender/editors/include/ED_mesh.h | 2 +- source/blender/editors/object/object_ops.c | 13 +++++++++++-- source/blender/windowmanager/intern/wm_operators.c | 4 +++- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h index 8c7e0bf607a..fa47426c70a 100644 --- a/source/blender/editors/include/ED_mesh.h +++ b/source/blender/editors/include/ED_mesh.h @@ -53,7 +53,7 @@ struct UvMapVert; struct CustomData; struct Material; struct Object; -struct recti; +struct rcti; #define EM_FGON_DRAW 1 // face flag #define EM_FGON 2 // edge and face flag both diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index fc06a94ecfa..ab35320cc74 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -224,8 +224,17 @@ void ED_keymap_object(wmKeyConfig *keyconf) keymap= WM_keymap_find(keyconf, "Object Non-modal", 0, 0); /* Note: this keymap works disregarding mode */ - WM_keymap_add_item(keymap, "OBJECT_OT_editmode_toggle", TABKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "OBJECT_OT_posemode_toggle", TABKEY, KM_PRESS, KM_CTRL, 0); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_mode_set", TABKEY, KM_PRESS, 0, 0); + RNA_enum_set(kmi->ptr, "mode", OB_MODE_EDIT); + RNA_boolean_set(kmi->ptr, "toggle", 1); + + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_mode_set", TABKEY, KM_PRESS, KM_CTRL, 0); + RNA_enum_set(kmi->ptr, "mode", OB_MODE_POSE); + RNA_boolean_set(kmi->ptr, "toggle", 1); + + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_mode_set", VKEY, KM_PRESS, 0, 0); + RNA_enum_set(kmi->ptr, "mode", OB_MODE_VERTEX_PAINT); + RNA_boolean_set(kmi->ptr, "toggle", 1); kmi = WM_keymap_add_item(keymap, "OBJECT_OT_mode_set", VKEY, KM_PRESS, 0, 0); RNA_enum_set(kmi->ptr, "mode", OB_MODE_VERTEX_PAINT); diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 1ab6d0b352e..743a4ceebe8 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2378,7 +2378,9 @@ void wm_window_keymap(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "WM_OT_open_mainfile", OKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_open_mainfile", F1KEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "WM_OT_link_append", OKEY, KM_PRESS, KM_CTRL|KM_ALT, 0); - WM_keymap_add_item(keymap, "WM_OT_link_append", F1KEY, KM_PRESS, KM_SHIFT, 0); + km= WM_keymap_add_item(keymap, "WM_OT_link_append", F1KEY, KM_PRESS, KM_SHIFT, 0); + RNA_boolean_set(km->ptr, "link", FALSE); + WM_keymap_add_item(keymap, "WM_OT_save_mainfile", SKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_save_mainfile", WKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "WM_OT_save_as_mainfile", SKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); From b8b89d5ae4a1c94630847d12112597f4b8256986 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 16:07:29 +0000 Subject: [PATCH 332/412] active property for collections for things like scene.objects.active will add more properties later --- release/scripts/io/add_mesh_torus.py | 2 +- source/blender/makesrna/RNA_access.h | 1 + source/blender/makesrna/RNA_define.h | 1 + source/blender/makesrna/intern/makesrna.c | 3 + source/blender/makesrna/intern/rna_access.c | 6 ++ source/blender/makesrna/intern/rna_define.c | 20 +++++++ .../makesrna/intern/rna_internal_types.h | 2 + source/blender/makesrna/intern/rna_scene.c | 33 ++++++++--- source/blender/python/intern/bpy_rna.c | 59 ++++++++++++++++--- 9 files changed, 110 insertions(+), 17 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index 8a6a3a58ed6..27ef587ce5a 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -117,7 +117,7 @@ class AddTorusPrimitive(bpy.types.Operator): ob_new = bpy.data.add_object('MESH', "Torus") ob_new.data = mesh scene.add_object(ob_new) - scene.active_object = ob_new + scene.objects.active = ob_new ob_new.selected = True ob_new.location = tuple(context.scene.cursor_location) diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index 44b36e65aa3..dc730ee46f9 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -678,6 +678,7 @@ int RNA_property_collection_length(PointerRNA *ptr, PropertyRNA *prop); int RNA_property_collection_lookup_index(PointerRNA *ptr, PropertyRNA *prop, PointerRNA *t_ptr); int RNA_property_collection_lookup_int(PointerRNA *ptr, PropertyRNA *prop, int key, PointerRNA *r_ptr); int RNA_property_collection_lookup_string(PointerRNA *ptr, PropertyRNA *prop, const char *key, PointerRNA *r_ptr); +PropertyRNA *RNA_property_collection_active(PropertyRNA *prop); /* efficient functions to set properties for arrays */ int RNA_property_collection_raw_array(PointerRNA *ptr, PropertyRNA *prop, PropertyRNA *itemprop, RawArray *array); diff --git a/source/blender/makesrna/RNA_define.h b/source/blender/makesrna/RNA_define.h index 37b175fbf12..ed4a371b9c3 100644 --- a/source/blender/makesrna/RNA_define.h +++ b/source/blender/makesrna/RNA_define.h @@ -164,6 +164,7 @@ void RNA_def_property_enum_funcs(PropertyRNA *prop, const char *get, const char void RNA_def_property_string_funcs(PropertyRNA *prop, const char *get, const char *length, const char *set); void RNA_def_property_pointer_funcs(PropertyRNA *prop, const char *get, const char *set, const char *typef); void RNA_def_property_collection_funcs(PropertyRNA *prop, const char *begin, const char *next, const char *end, const char *get, const char *length, const char *lookupint, const char *lookupstring, const char *add, const char *remove); +void RNA_def_property_collection_active(PropertyRNA *prop, PropertyRNA *prop_act); /* Function */ diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c index b16a0f00fd2..6689cda3f2b 100644 --- a/source/blender/makesrna/intern/makesrna.c +++ b/source/blender/makesrna/intern/makesrna.c @@ -1834,6 +1834,9 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr else fprintf(f, "NULL, "); if(cprop->remove) fprintf(f, "&rna_%s_%s_func, ", srna->identifier, (char*)cprop->remove); else fprintf(f, "NULL, "); + + if(cprop->active) fprintf(f, "(PropertyRNA*)&rna_%s%s_%s, ", srna->identifier, strnest, cprop->active->identifier); + if(cprop->type) fprintf(f, "&RNA_%s\n", (char*)cprop->type); else fprintf(f, "NULL\n"); break; diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index fac18ba7942..f0aaceec4aa 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -1756,6 +1756,12 @@ int RNA_property_collection_lookup_string(PointerRNA *ptr, PropertyRNA *prop, co } } +PropertyRNA *RNA_property_collection_active(PropertyRNA *prop) +{ + CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop; + return cprop->active; +} + int RNA_property_collection_raw_array(PointerRNA *ptr, PropertyRNA *prop, PropertyRNA *itemprop, RawArray *array) { CollectionPropertyIterator iter; diff --git a/source/blender/makesrna/intern/rna_define.c b/source/blender/makesrna/intern/rna_define.c index 48de7ace222..46c4a8af73a 100644 --- a/source/blender/makesrna/intern/rna_define.c +++ b/source/blender/makesrna/intern/rna_define.c @@ -1957,6 +1957,26 @@ void RNA_def_property_collection_funcs(PropertyRNA *prop, const char *begin, con } } +void RNA_def_property_collection_active(PropertyRNA *prop, PropertyRNA *prop_act) +{ + if(!DefRNA.preprocess) { + fprintf(stderr, "RNA_def_property_collection_active: only during preprocessing.\n"); + return; + } + + switch(prop->type) { + case PROP_COLLECTION: { + CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop; + cprop->active= prop_act; + break; + } + default: + fprintf(stderr, "RNA_def_property_collection_active: %s.%s, type is not collection.\n", prop->identifier, prop_act->identifier); + DefRNA.error= 1; + break; + } +} + /* Compact definitions */ PropertyRNA *RNA_def_boolean(StructOrFunctionRNA *cont_, const char *identifier, int default_value, const char *ui_name, const char *ui_description) diff --git a/source/blender/makesrna/intern/rna_internal_types.h b/source/blender/makesrna/intern/rna_internal_types.h index 645bc50ed89..434e4ee6fe9 100644 --- a/source/blender/makesrna/intern/rna_internal_types.h +++ b/source/blender/makesrna/intern/rna_internal_types.h @@ -257,6 +257,8 @@ typedef struct CollectionPropertyRNA { PropCollectionLookupStringFunc lookupstring; /* optional */ FunctionRNA *add, *remove; + PropertyRNA *active; + struct StructRNA *type; } CollectionPropertyRNA; diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index e7aeac96aef..667f88a3a33 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2175,6 +2175,7 @@ void RNA_def_scene(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; + PropertyRNA *prop_act; FunctionRNA *func; static EnumPropertyItem audio_distance_model_items[] = { @@ -2206,15 +2207,6 @@ void RNA_def_scene(BlenderRNA *brna) RNA_def_property_pointer_funcs(prop, NULL, "rna_Scene_set_set", NULL); RNA_def_property_ui_text(prop, "Set Scene", "Background set scene."); - prop= RNA_def_property(srna, "active_object", PROP_POINTER, PROP_NONE); - RNA_def_property_struct_type(prop, "Object"); - RNA_def_property_pointer_funcs(prop, "rna_Scene_active_object_get", "rna_Scene_active_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); - RNA_def_property_ui_text(prop, "Object", "Object to use as projector transform."); - /* Could call: ED_base_object_activate(C, scene->basact); - * but would be a bad level call and it seems the notifier is enough */ - RNA_def_property_update(prop, NC_SCENE|ND_OB_ACTIVE, NULL); - prop= RNA_def_property(srna, "world", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "World", "World used for rendering the scene."); @@ -2232,12 +2224,35 @@ void RNA_def_scene(BlenderRNA *brna) RNA_def_property_struct_type(prop, "Base"); RNA_def_property_ui_text(prop, "Bases", ""); + { /* Collection active property */ + prop_act= RNA_def_property(srna, "base_active", PROP_POINTER, PROP_NONE); + RNA_def_property_struct_type(prop_act, "Base"); + RNA_def_property_pointer_sdna(prop_act, NULL, "basact"); + RNA_def_property_flag(prop_act, PROP_EDITABLE); + RNA_def_property_ui_text(prop_act, "Active Base", "Active object in the scene."); + RNA_def_property_update(prop_act, NC_SCENE|ND_OB_ACTIVE, NULL); + RNA_def_property_collection_active(prop, prop_act); + } + prop= RNA_def_property(srna, "objects", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_sdna(prop, NULL, "base", NULL); RNA_def_property_struct_type(prop, "Object"); RNA_def_property_ui_text(prop, "Objects", ""); RNA_def_property_collection_funcs(prop, 0, 0, 0, "rna_Scene_objects_get", 0, 0, 0, 0, 0); + { /* Collection active property */ + prop_act= RNA_def_property(srna, "objects_active", PROP_POINTER, PROP_NONE); + RNA_def_property_struct_type(prop_act, "Object"); + RNA_def_property_pointer_funcs(prop_act, "rna_Scene_active_object_get", "rna_Scene_active_object_set", NULL); + RNA_def_property_flag(prop_act, PROP_EDITABLE); + RNA_def_property_ui_text(prop_act, "Object", "Object to use as projector transform."); + /* Could call: ED_base_object_activate(C, scene->basact); + * but would be a bad level call and it seems the notifier is enough */ + RNA_def_property_update(prop_act, NC_SCENE|ND_OB_ACTIVE, NULL); + + RNA_def_property_collection_active(prop, prop_act); + } + /* Layers */ prop= RNA_def_property(srna, "visible_layers", PROP_BOOLEAN, PROP_LAYER_MEMBER); RNA_def_property_boolean_sdna(prop, NULL, "lay", 1); diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index cd1f7dbc102..eee863e5d1b 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1412,6 +1412,54 @@ static int pyrna_struct_setattro( BPy_StructRNA * self, PyObject *pyname, PyObje return pyrna_py_to_prop(&self->ptr, prop, NULL, value, "StructRNA - Attribute (setattr):"); } +static PyObject *pyrna_prop_getattro( BPy_PropertyRNA * self, PyObject *pyname ) +{ + char *name = _PyUnicode_AsString(pyname); + + if(strcmp(name, "active")==0) { + PropertyRNA *prop_act; + + if (RNA_property_type(self->prop) != PROP_COLLECTION) { + PyErr_SetString( PyExc_TypeError, "this BPy_PropertyRNA object is not a collection"); + return NULL; + } + + prop_act= RNA_property_collection_active(self->prop); + if (prop_act==NULL) { + PyErr_SetString( PyExc_TypeError, "collection has no active"); + return NULL; + } + + return pyrna_prop_to_py(&self->ptr, prop_act); + } + + return PyObject_GenericGetAttr((PyObject *)self, pyname); +} + +//--------------- setattr------------------------------------------- +static int pyrna_prop_setattro( BPy_PropertyRNA * self, PyObject *pyname, PyObject * value ) +{ + char *name = _PyUnicode_AsString(pyname); + if(strcmp(name, "active")==0) { + PropertyRNA *prop_act; + + if (RNA_property_type(self->prop) != PROP_COLLECTION) { + PyErr_SetString( PyExc_TypeError, "this BPy_PropertyRNA object is not a collection"); + return -1; + } + + prop_act= RNA_property_collection_active(self->prop); + if (prop_act==NULL) { + PyErr_SetString( PyExc_TypeError, "collection has no active"); + return -1; + } + + return pyrna_py_to_prop(&self->ptr, prop_act, NULL, value, "StructRNA - Attribute (setattr):"); + } + + return PyObject_GenericSetAttr((PyObject *)self, pyname, value); +} + static PyObject *pyrna_prop_keys(BPy_PropertyRNA *self) { PyObject *ret; @@ -1850,7 +1898,6 @@ static struct PyMethodDef pyrna_prop_methods[] = { /* array accessor function */ {"foreach_get", (PyCFunction)pyrna_prop_foreach_get, METH_VARARGS, NULL}, {"foreach_set", (PyCFunction)pyrna_prop_foreach_set, METH_VARARGS, NULL}, - {NULL, NULL, 0, NULL} }; @@ -2321,8 +2368,10 @@ PyTypeObject pyrna_prop_Type = { NULL, /* hashfunc tp_hash; */ NULL, /* ternaryfunc tp_call; */ NULL, /* reprfunc tp_str; */ - NULL, /*PyObject_GenericGetAttr - MINGW Complains, assign later */ /* getattrofunc tp_getattro; */ /* will only use these if this is a subtype of a py class */ - NULL, /*PyObject_GenericSetAttr - MINGW Complains, assign later */ /* setattrofunc tp_setattro; */ + + /* will only use these if this is a subtype of a py class */ + ( getattrofunc ) pyrna_prop_getattro, /* getattrofunc tp_getattro; */ + ( setattrofunc ) pyrna_prop_setattro, /* setattrofunc tp_setattro; */ /* Functions to access object as input/output buffer */ NULL, /* PyBufferProcs *tp_as_buffer; */ @@ -2589,10 +2638,6 @@ PyObject *BPY_rna_module( void ) mathutils_rna_matrix_cb_index= Mathutils_RegisterCallback(&mathutils_rna_matrix_cb); #endif - /* This can't be set in the pytype struct because some compilers complain */ - pyrna_prop_Type.tp_getattro = PyObject_GenericGetAttr; - pyrna_prop_Type.tp_setattro = PyObject_GenericSetAttr; - if( PyType_Ready( &pyrna_struct_Type ) < 0 ) return NULL; From 2a61c7fd892f19b423f0f5f1fb12748c4297bfb5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 17:00:38 +0000 Subject: [PATCH 333/412] error in last commit (wasnt writing NULL when no active property exists) added id.tag so you can tag any library data - materials, meshes etc --- source/blender/makesrna/intern/makesrna.c | 3 +-- source/blender/makesrna/intern/rna_ID.c | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c index 6689cda3f2b..3bad6e13453 100644 --- a/source/blender/makesrna/intern/makesrna.c +++ b/source/blender/makesrna/intern/makesrna.c @@ -1834,9 +1834,8 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr else fprintf(f, "NULL, "); if(cprop->remove) fprintf(f, "&rna_%s_%s_func, ", srna->identifier, (char*)cprop->remove); else fprintf(f, "NULL, "); - if(cprop->active) fprintf(f, "(PropertyRNA*)&rna_%s%s_%s, ", srna->identifier, strnest, cprop->active->identifier); - + else fprintf(f, "NULL, "); if(cprop->type) fprintf(f, "&RNA_%s\n", (char*)cprop->type); else fprintf(f, "NULL\n"); break; diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index 2fc1fcfc681..bc5c99f0a1e 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -312,6 +312,10 @@ static void rna_def_ID(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Fake User", "Saves this datablock even if it has no users"); RNA_def_property_boolean_funcs(prop, NULL, "rna_ID_fake_user_set"); + prop= RNA_def_property(srna, "tag", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", LIB_DOIT); + RNA_def_property_ui_text(prop, "Tag", "Tools can use this to tag data, (initial state is undefined)."); + prop= RNA_def_property(srna, "library", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "lib"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); From 11c36d0ea5a3facd736fd652b6c6f3eca51fa57e Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Tue, 3 Nov 2009 17:44:12 +0000 Subject: [PATCH 334/412] Patch [#19799] Add trackball loop to rotate manipulator by Adrian Winchell (slightly modified) This adds a center circle (like translation and resize) to the rotation manipulator that triggers trackball rotation. --- source/blender/editors/transform/transform_manipulator.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index 357e164961d..a1d62f93568 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -986,6 +986,15 @@ static void draw_manipulator_rotate(View3D *v3d, RegionView3D *rv3d, int moving, drawcircball(GL_LINE_LOOP, unitmat[3], size, unitmat); } } + + /* Screen aligned trackball rot circle */ + if(drawflags & MAN_ROT_T) { + if(G.f & G_PICKSEL) glLoadName(MAN_ROT_T); + + UI_ThemeColor(TH_TRANSFORM); + drawcircball(GL_LINE_LOOP, unitmat[3], 0.2f*size, unitmat); + } + /* Screen aligned view rot circle */ if(drawflags & MAN_ROT_V) { if(G.f & G_PICKSEL) glLoadName(MAN_ROT_V); From 89c2b9a77e81dfb19dc5d4f12fda71ca74eebc42 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 17:47:44 +0000 Subject: [PATCH 335/412] script copied from 2.4x with no changes --- release/scripts/io/uvcalc_smart_project.py | 1132 ++++++++++++++++++++ 1 file changed, 1132 insertions(+) create mode 100644 release/scripts/io/uvcalc_smart_project.py diff --git a/release/scripts/io/uvcalc_smart_project.py b/release/scripts/io/uvcalc_smart_project.py new file mode 100644 index 00000000000..9d9bd2aaefd --- /dev/null +++ b/release/scripts/io/uvcalc_smart_project.py @@ -0,0 +1,1132 @@ +#!BPY + +""" Registration info for Blender menus: <- these words are ignored +Name: 'Unwrap (smart projections)' +Blender: 240 +Group: 'UVCalculation' +Tooltip: 'UV Unwrap mesh faces for all select mesh objects' +""" + + +__author__ = "Campbell Barton" +__url__ = ("blender", "blenderartists.org") +__version__ = "1.1 12/18/05" + +__bpydoc__ = """\ +This script projection unwraps the selected faces of a mesh. + +it operates on all selected mesh objects, and can be used unwrap +selected faces, or all faces. +""" + +# -------------------------------------------------------------------------- +# Smart Projection UV Projection Unwrapper v1.1 by Campbell Barton (AKA Ideasman) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- + + +from Blender import Object, Draw, Window, sys, Mesh, Geometry +from Blender.Mathutils import Matrix, Vector, RotationMatrix +import bpy +from math import cos + +DEG_TO_RAD = 0.017453292519943295 # pi/180.0 +SMALL_NUM = 0.000000001 +BIG_NUM = 1e15 + +global USER_FILL_HOLES +global USER_FILL_HOLES_QUALITY +USER_FILL_HOLES = None +USER_FILL_HOLES_QUALITY = None + +dict_matrix = {} + +def pointInTri2D(v, v1, v2, v3): + global dict_matrix + + key = v1.x, v1.y, v2.x, v2.y, v3.x, v3.y + + # Commented because its slower to do teh bounds check, we should realy cache the bounds info for each face. + ''' + # BOUNDS CHECK + xmin= 1000000 + ymin= 1000000 + + xmax= -1000000 + ymax= -1000000 + + for i in (0,2,4): + x= key[i] + y= key[i+1] + + if xmaxx: xmin= x + if ymin>y: ymin= y + + x= v.x + y= v.y + + if xxmax or y < ymin or y > ymax: + return False + # Done with bounds check + ''' + try: + mtx = dict_matrix[key] + if not mtx: + return False + except: + side1 = v2 - v1 + side2 = v3 - v1 + + nor = side1.cross(side2) + + l1 = [side1[0], side1[1], side1[2]] + l2 = [side2[0], side2[1], side2[2]] + l3 = [nor[0], nor[1], nor[2]] + + mtx = Matrix(l1, l2, l3) + + # Zero area 2d tri, even tho we throw away zerop area faces + # the projection UV can result in a zero area UV. + if not mtx.determinant(): + dict_matrix[key] = None + return False + + mtx.invert() + + dict_matrix[key] = mtx + + uvw = (v - v1) * mtx + return 0 <= uvw[0] and 0 <= uvw[1] and uvw[0] + uvw[1] <= 1 + + +def boundsIsland(faces): + minx = maxx = faces[0].uv[0][0] # Set initial bounds. + miny = maxy = faces[0].uv[0][1] + # print len(faces), minx, maxx, miny , maxy + for f in faces: + for uv in f.uv: + x= uv.x + y= uv.y + if xmaxx: maxx= x + if y>maxy: maxy= y + + return minx, miny, maxx, maxy + +""" +def boundsEdgeLoop(edges): + minx = maxx = edges[0][0] # Set initial bounds. + miny = maxy = edges[0][1] + # print len(faces), minx, maxx, miny , maxy + for ed in edges: + for pt in ed: + print 'ass' + x= pt[0] + y= pt[1] + if xmaxx: x= maxx + if y>maxy: y= maxy + + return minx, miny, maxx, maxy +""" + +# Turns the islands into a list of unpordered edges (Non internal) +# Onlt for UV's +# only returns outline edges for intersection tests. and unique points. + +def island2Edge(island): + + # Vert index edges + edges = {} + + unique_points= {} + + for f in island: + f_uvkey= map(tuple, f.uv) + + + for vIdx, edkey in enumerate(f.edge_keys): + unique_points[f_uvkey[vIdx]] = f.uv[vIdx] + + if f.v[vIdx].index > f.v[vIdx-1].index: + i1= vIdx-1; i2= vIdx + else: + i1= vIdx; i2= vIdx-1 + + try: edges[ f_uvkey[i1], f_uvkey[i2] ] *= 0 # sets eny edge with more then 1 user to 0 are not returned. + except: edges[ f_uvkey[i1], f_uvkey[i2] ] = (f.uv[i1] - f.uv[i2]).length, + + # If 2 are the same then they will be together, but full [a,b] order is not correct. + + # Sort by length + + + length_sorted_edges = [(Vector(key[0]), Vector(key[1]), value) for key, value in edges.iteritems() if value != 0] + + try: length_sorted_edges.sort(key = lambda A: -A[2]) # largest first + except: length_sorted_edges.sort(lambda A, B: cmp(B[2], A[2])) + + # Its okay to leave the length in there. + #for e in length_sorted_edges: + # e.pop(2) + + # return edges and unique points + return length_sorted_edges, [v.__copy__().resize3D() for v in unique_points.itervalues()] + +# ========================= NOT WORKING???? +# Find if a points inside an edge loop, un-orderd. +# pt is and x/y +# edges are a non ordered loop of edges. +# #offsets are the edge x and y offset. +""" +def pointInEdges(pt, edges): + # + x1 = pt[0] + y1 = pt[1] + + # Point to the left of this line. + x2 = -100000 + y2 = -10000 + intersectCount = 0 + for ed in edges: + xi, yi = lineIntersection2D(x1,y1, x2,y2, ed[0][0], ed[0][1], ed[1][0], ed[1][1]) + if xi != None: # Is there an intersection. + intersectCount+=1 + + return intersectCount % 2 +""" + +def pointInIsland(pt, island): + vec1 = Vector(); vec2 = Vector(); vec3 = Vector() + for f in island: + vec1.x, vec1.y = f.uv[0] + vec2.x, vec2.y = f.uv[1] + vec3.x, vec3.y = f.uv[2] + + if pointInTri2D(pt, vec1, vec2, vec3): + return True + + if len(f.v) == 4: + vec1.x, vec1.y = f.uv[0] + vec2.x, vec2.y = f.uv[2] + vec3.x, vec3.y = f.uv[3] + if pointInTri2D(pt, vec1, vec2, vec3): + return True + return False + + +# box is (left,bottom, right, top) +def islandIntersectUvIsland(source, target, SourceOffset): + # Is 1 point in the box, inside the vertLoops + edgeLoopsSource = source[6] # Pretend this is offset + edgeLoopsTarget = target[6] + + # Edge intersect test + for ed in edgeLoopsSource: + for seg in edgeLoopsTarget: + i = Geometry.LineIntersect2D(\ + seg[0], seg[1], SourceOffset+ed[0], SourceOffset+ed[1]) + if i: + return 1 # LINE INTERSECTION + + # 1 test for source being totally inside target + SourceOffset.resize3D() + for pv in source[7]: + if pointInIsland(pv+SourceOffset, target[0]): + return 2 # SOURCE INSIDE TARGET + + # 2 test for a part of the target being totaly inside the source. + for pv in target[7]: + if pointInIsland(pv-SourceOffset, source[0]): + return 3 # PART OF TARGET INSIDE SOURCE. + + return 0 # NO INTERSECTION + + + + +# Returns the X/y Bounds of a list of vectors. +def testNewVecLs2DRotIsBetter(vecs, mat=-1, bestAreaSoFar = -1): + + # UV's will never extend this far. + minx = miny = BIG_NUM + maxx = maxy = -BIG_NUM + + for i, v in enumerate(vecs): + + # Do this allong the way + if mat != -1: + v = vecs[i] = v*mat + x= v.x + y= v.y + if xmaxx: maxx= x + if y>maxy: maxy= y + + # Spesific to this algo, bail out if we get bigger then the current area + if bestAreaSoFar != -1 and (maxx-minx) * (maxy-miny) > bestAreaSoFar: + return (BIG_NUM, None), None + w = maxx-minx + h = maxy-miny + return (w*h, w,h), vecs # Area, vecs + +# Takes a list of faces that make up a UV island and rotate +# until they optimally fit inside a square. +ROTMAT_2D_POS_90D = RotationMatrix( 90, 2) +ROTMAT_2D_POS_45D = RotationMatrix( 45, 2) + +RotMatStepRotation = [] +rot_angle = 22.5 #45.0/2 +while rot_angle > 0.1: + RotMatStepRotation.append([\ + RotationMatrix( rot_angle, 2),\ + RotationMatrix( -rot_angle, 2)]) + + rot_angle = rot_angle/2.0 + + +def optiRotateUvIsland(faces): + global currentArea + + # Bestfit Rotation + def best2dRotation(uvVecs, MAT1, MAT2): + global currentArea + + newAreaPos, newfaceProjectionGroupListPos =\ + testNewVecLs2DRotIsBetter(uvVecs[:], MAT1, currentArea[0]) + + + # Why do I use newpos here? May as well give the best area to date for an early bailout + # some slight speed increase in this. + # If the new rotation is smaller then the existing, we can + # avoid copying a list and overwrite the old, crappy one. + + if newAreaPos[0] < currentArea[0]: + newAreaNeg, newfaceProjectionGroupListNeg =\ + testNewVecLs2DRotIsBetter(uvVecs, MAT2, newAreaPos[0]) # Reuse the old bigger list. + else: + newAreaNeg, newfaceProjectionGroupListNeg =\ + testNewVecLs2DRotIsBetter(uvVecs[:], MAT2, currentArea[0]) # Cant reuse, make a copy. + + + # Now from the 3 options we need to discover which to use + # we have cerrentArea/newAreaPos/newAreaNeg + bestArea = min(currentArea[0], newAreaPos[0], newAreaNeg[0]) + + if currentArea[0] == bestArea: + return uvVecs + elif newAreaPos[0] == bestArea: + uvVecs = newfaceProjectionGroupListPos + currentArea = newAreaPos + elif newAreaNeg[0] == bestArea: + uvVecs = newfaceProjectionGroupListNeg + currentArea = newAreaNeg + + return uvVecs + + + # Serialized UV coords to Vectors + uvVecs = [uv for f in faces for uv in f.uv] + + # Theres a small enough number of these to hard code it + # rather then a loop. + + # Will not modify anything + currentArea, dummy =\ + testNewVecLs2DRotIsBetter(uvVecs) + + + # Try a 45d rotation + newAreaPos, newfaceProjectionGroupListPos = testNewVecLs2DRotIsBetter(uvVecs[:], ROTMAT_2D_POS_45D, currentArea[0]) + + if newAreaPos[0] < currentArea[0]: + uvVecs = newfaceProjectionGroupListPos + currentArea = newAreaPos + # 45d done + + # Testcase different rotations and find the onfe that best fits in a square + for ROTMAT in RotMatStepRotation: + uvVecs = best2dRotation(uvVecs, ROTMAT[0], ROTMAT[1]) + + # Only if you want it, make faces verticle! + if currentArea[1] > currentArea[2]: + # Rotate 90d + # Work directly on the list, no need to return a value. + testNewVecLs2DRotIsBetter(uvVecs, ROTMAT_2D_POS_90D) + + + # Now write the vectors back to the face UV's + i = 0 # count the serialized uv/vectors + for f in faces: + #f.uv = [uv for uv in uvVecs[i:len(f)+i] ] + for j, k in enumerate(xrange(i, len(f.v)+i)): + f.uv[j][:] = uvVecs[k] + i += len(f.v) + + +# Takes an island list and tries to find concave, hollow areas to pack smaller islands into. +def mergeUvIslands(islandList): + global USER_FILL_HOLES + global USER_FILL_HOLES_QUALITY + + + # Pack islands to bottom LHS + # Sync with island + + #islandTotFaceArea = [] # A list of floats, each island area + #islandArea = [] # a list of tuples ( area, w,h) + + + decoratedIslandList = [] + + islandIdx = len(islandList) + while islandIdx: + islandIdx-=1 + minx, miny, maxx, maxy = boundsIsland(islandList[islandIdx]) + w, h = maxx-minx, maxy-miny + + totFaceArea = 0 + offset= Vector(minx, miny) + for f in islandList[islandIdx]: + for uv in f.uv: + uv -= offset + + totFaceArea += f.area + + islandBoundsArea = w*h + efficiency = abs(islandBoundsArea - totFaceArea) + + # UV Edge list used for intersections as well as unique points. + edges, uniqueEdgePoints = island2Edge(islandList[islandIdx]) + + decoratedIslandList.append([islandList[islandIdx], totFaceArea, efficiency, islandBoundsArea, w,h, edges, uniqueEdgePoints]) + + + # Sort by island bounding box area, smallest face area first. + # no.. chance that to most simple edge loop first. + decoratedIslandListAreaSort =decoratedIslandList[:] + + try: decoratedIslandListAreaSort.sort(key = lambda A: A[3]) + except: decoratedIslandListAreaSort.sort(lambda A, B: cmp(A[3], B[3])) + + + # sort by efficiency, Least Efficient first. + decoratedIslandListEfficSort = decoratedIslandList[:] + # decoratedIslandListEfficSort.sort(lambda A, B: cmp(B[2], A[2])) + + try: decoratedIslandListEfficSort.sort(key = lambda A: -A[2]) + except: decoratedIslandListEfficSort.sort(lambda A, B: cmp(B[2], A[2])) + + # ================================================== THESE CAN BE TWEAKED. + # This is a quality value for the number of tests. + # from 1 to 4, generic quality value is from 1 to 100 + USER_STEP_QUALITY = ((USER_FILL_HOLES_QUALITY - 1) / 25.0) + 1 + + # If 100 will test as long as there is enough free space. + # this is rarely enough, and testing takes a while, so lower quality speeds this up. + + # 1 means they have the same quality + USER_FREE_SPACE_TO_TEST_QUALITY = 1 + (((100 - USER_FILL_HOLES_QUALITY)/100.0) *5) + + #print 'USER_STEP_QUALITY', USER_STEP_QUALITY + #print 'USER_FREE_SPACE_TO_TEST_QUALITY', USER_FREE_SPACE_TO_TEST_QUALITY + + removedCount = 0 + + areaIslandIdx = 0 + ctrl = Window.Qual.CTRL + BREAK= False + while areaIslandIdx < len(decoratedIslandListAreaSort) and not BREAK: + sourceIsland = decoratedIslandListAreaSort[areaIslandIdx] + # Alredy packed? + if not sourceIsland[0]: + areaIslandIdx+=1 + else: + efficIslandIdx = 0 + while efficIslandIdx < len(decoratedIslandListEfficSort) and not BREAK: + + if Window.GetKeyQualifiers() & ctrl: + BREAK= True + break + + # Now we have 2 islands, is the efficience of the islands lowers theres an + # increasing likely hood that we can fit merge into the bigger UV island. + # this ensures a tight fit. + + # Just use figures we have about user/unused area to see if they might fit. + + targetIsland = decoratedIslandListEfficSort[efficIslandIdx] + + + if sourceIsland[0] == targetIsland[0] or\ + not targetIsland[0] or\ + not sourceIsland[0]: + pass + else: + + # ([island, totFaceArea, efficiency, islandArea, w,h]) + # Waisted space on target is greater then UV bounding island area. + + + # if targetIsland[3] > (sourceIsland[2]) and\ # + # print USER_FREE_SPACE_TO_TEST_QUALITY, 'ass' + if targetIsland[2] > (sourceIsland[1] * USER_FREE_SPACE_TO_TEST_QUALITY) and\ + targetIsland[4] > sourceIsland[4] and\ + targetIsland[5] > sourceIsland[5]: + + # DEBUG # print '%.10f %.10f' % (targetIsland[3], sourceIsland[1]) + + # These enough spare space lets move the box until it fits + + # How many times does the source fit into the target x/y + blockTestXUnit = targetIsland[4]/sourceIsland[4] + blockTestYUnit = targetIsland[5]/sourceIsland[5] + + boxLeft = 0 + + + # Distllllance we can move between whilst staying inside the targets bounds. + testWidth = targetIsland[4] - sourceIsland[4] + testHeight = targetIsland[5] - sourceIsland[5] + + # Increment we move each test. x/y + xIncrement = (testWidth / (blockTestXUnit * ((USER_STEP_QUALITY/50)+0.1))) + yIncrement = (testHeight / (blockTestYUnit * ((USER_STEP_QUALITY/50)+0.1))) + + # Make sure were not moving less then a 3rg of our width/height + if xIncrement testWidth: + boxBottom += yIncrement + boxLeft = 0.0 + else: + boxLeft += xIncrement + ##print testcount + + efficIslandIdx+=1 + areaIslandIdx+=1 + + # Remove empty islands + i = len(islandList) + while i: + i-=1 + if not islandList[i]: + del islandList[i] # Can increment islands removed here. + +# Takes groups of faces. assumes face groups are UV groups. +def getUvIslands(faceGroups, me): + + # Get seams so we dont cross over seams + edge_seams = {} # shoudl be a set + SEAM = Mesh.EdgeFlags.SEAM + for ed in me.edges: + if ed.flag & SEAM: + edge_seams[ed.key] = None # dummy var- use sets! + # Done finding seams + + + islandList = [] + + Window.DrawProgressBar(0.0, 'Splitting %d projection groups into UV islands:' % len(faceGroups)) + #print '\tSplitting %d projection groups into UV islands:' % len(faceGroups), + # Find grouped faces + + faceGroupIdx = len(faceGroups) + + while faceGroupIdx: + faceGroupIdx-=1 + faces = faceGroups[faceGroupIdx] + + if not faces: + continue + + # Build edge dict + edge_users = {} + + for i, f in enumerate(faces): + for ed_key in f.edge_keys: + if edge_seams.has_key(ed_key): # DELIMIT SEAMS! ;) + edge_users[ed_key] = [] # so as not to raise an error + else: + try: edge_users[ed_key].append(i) + except: edge_users[ed_key] = [i] + + # Modes + # 0 - face not yet touched. + # 1 - added to island list, and need to search + # 2 - touched and searched - dont touch again. + face_modes = [0] * len(faces) # initialize zero - untested. + + face_modes[0] = 1 # start the search with face 1 + + newIsland = [] + + newIsland.append(faces[0]) + + + ok = True + while ok: + + ok = True + while ok: + ok= False + for i in xrange(len(faces)): + if face_modes[i] == 1: # search + for ed_key in faces[i].edge_keys: + for ii in edge_users[ed_key]: + if i != ii and face_modes[ii] == 0: + face_modes[ii] = ok = 1 # mark as searched + newIsland.append(faces[ii]) + + # mark as searched, dont look again. + face_modes[i] = 2 + + islandList.append(newIsland) + + ok = False + for i in xrange(len(faces)): + if face_modes[i] == 0: + newIsland = [] + newIsland.append(faces[i]) + + face_modes[i] = ok = 1 + break + # if not ok will stop looping + + Window.DrawProgressBar(0.1, 'Optimizing Rotation for %i UV Islands' % len(islandList)) + + for island in islandList: + optiRotateUvIsland(island) + + return islandList + + +def packIslands(islandList): + if USER_FILL_HOLES: + Window.DrawProgressBar(0.1, 'Merging Islands (Ctrl: skip merge)...') + mergeUvIslands(islandList) # Modify in place + + + # Now we have UV islands, we need to pack them. + + # Make a synchronised list with the islands + # so we can box pak the islands. + packBoxes = [] + + # Keep a list of X/Y offset so we can save time by writing the + # uv's and packed data in one pass. + islandOffsetList = [] + + islandIdx = 0 + + while islandIdx < len(islandList): + minx, miny, maxx, maxy = boundsIsland(islandList[islandIdx]) + + w, h = maxx-minx, maxy-miny + + if USER_ISLAND_MARGIN: + minx -= USER_ISLAND_MARGIN# *w + miny -= USER_ISLAND_MARGIN# *h + maxx += USER_ISLAND_MARGIN# *w + maxy += USER_ISLAND_MARGIN# *h + + # recalc width and height + w, h = maxx-minx, maxy-miny + + if w < 0.00001 or h < 0.00001: + del islandList[islandIdx] + islandIdx -=1 + continue + + '''Save the offset to be applied later, + we could apply to the UVs now and allign them to the bottom left hand area + of the UV coords like the box packer imagines they are + but, its quicker just to remember their offset and + apply the packing and offset in 1 pass ''' + islandOffsetList.append((minx, miny)) + + # Add to boxList. use the island idx for the BOX id. + packBoxes.append([0, 0, w, h]) + islandIdx+=1 + + # Now we have a list of boxes to pack that syncs + # with the islands. + + #print '\tPacking UV Islands...' + Window.DrawProgressBar(0.7, 'Packing %i UV Islands...' % len(packBoxes) ) + + time1 = sys.time() + packWidth, packHeight = Geometry.BoxPack2D(packBoxes) + + # print 'Box Packing Time:', sys.time() - time1 + + #if len(pa ckedLs) != len(islandList): + # raise "Error packed boxes differes from original length" + + #print '\tWriting Packed Data to faces' + Window.DrawProgressBar(0.8, 'Writing Packed Data to faces') + + # Sort by ID, so there in sync again + islandIdx = len(islandList) + # Having these here avoids devide by 0 + if islandIdx: + + if USER_STRETCH_ASPECT: + # Maximize to uv area?? Will write a normalize function. + xfactor = 1.0 / packWidth + yfactor = 1.0 / packHeight + else: + # Keep proportions. + xfactor = yfactor = 1.0 / max(packWidth, packHeight) + + while islandIdx: + islandIdx -=1 + # Write the packed values to the UV's + + xoffset = packBoxes[islandIdx][0] - islandOffsetList[islandIdx][0] + yoffset = packBoxes[islandIdx][1] - islandOffsetList[islandIdx][1] + + for f in islandList[islandIdx]: # Offsetting the UV's so they fit in there packed box + for uv in f.uv: + uv.x= (uv.x+xoffset) * xfactor + uv.y= (uv.y+yoffset) * yfactor + + + +def VectoMat(vec): + a3 = vec.__copy__().normalize() + + up = Vector(0,0,1) + if abs(a3.dot(up)) == 1.0: + up = Vector(0,1,0) + + a1 = a3.cross(up).normalize() + a2 = a3.cross(a1) + return Matrix([a1[0], a1[1], a1[2]], [a2[0], a2[1], a2[2]], [a3[0], a3[1], a3[2]]) + + + +class thickface(object): + __slost__= 'v', 'uv', 'no', 'area', 'edge_keys' + def __init__(self, face): + self.v = face.v + self.uv = face.uv + self.no = face.no + self.area = face.area + self.edge_keys = face.edge_keys + +global ob +ob = None +def main(): + global USER_FILL_HOLES + global USER_FILL_HOLES_QUALITY + global USER_STRETCH_ASPECT + global USER_ISLAND_MARGIN + + objects= bpy.data.scenes.active.objects + + # we can will tag them later. + obList = [ob for ob in objects.context if ob.type == 'Mesh'] + + # Face select object may not be selected. + ob = objects.active + if ob and ob.sel == 0 and ob.type == 'Mesh': + # Add to the list + obList =[ob] + del objects + + if not obList: + Draw.PupMenu('error, no selected mesh objects') + return + + # Create the variables. + USER_PROJECTION_LIMIT = Draw.Create(66) + USER_ONLY_SELECTED_FACES = Draw.Create(1) + USER_SHARE_SPACE = Draw.Create(1) # Only for hole filling. + USER_STRETCH_ASPECT = Draw.Create(1) # Only for hole filling. + USER_ISLAND_MARGIN = Draw.Create(0.0) # Only for hole filling. + USER_FILL_HOLES = Draw.Create(0) + USER_FILL_HOLES_QUALITY = Draw.Create(50) # Only for hole filling. + USER_VIEW_INIT = Draw.Create(0) # Only for hole filling. + USER_AREA_WEIGHT = Draw.Create(1) # Only for hole filling. + + + pup_block = [\ + 'Projection',\ + ('Angle Limit:', USER_PROJECTION_LIMIT, 1, 89, 'lower for more projection groups, higher for less distortion.'),\ + ('Selected Faces Only', USER_ONLY_SELECTED_FACES, 'Use only selected faces from all selected meshes.'),\ + ('Init from view', USER_VIEW_INIT, 'The first projection will be from the view vector.'),\ + ('Area Weight', USER_AREA_WEIGHT, 'Weight projections vector by face area.'),\ + '',\ + '',\ + '',\ + 'UV Layout',\ + ('Share Tex Space', USER_SHARE_SPACE, 'Objects Share texture space, map all objects into 1 uvmap.'),\ + ('Stretch to bounds', USER_STRETCH_ASPECT, 'Stretch the final output to texture bounds.'),\ + ('Island Margin:', USER_ISLAND_MARGIN, 0.0, 0.5, 'Margin to reduce bleed from adjacent islands.'),\ + 'Fill in empty areas',\ + ('Fill Holes', USER_FILL_HOLES, 'Fill in empty areas reduced texture waistage (slow).'),\ + ('Fill Quality:', USER_FILL_HOLES_QUALITY, 1, 100, 'Depends on fill holes, how tightly to fill UV holes, (higher is slower)'),\ + ] + + # Reuse variable + if len(obList) == 1: + ob = "Unwrap %i Selected Mesh" + else: + ob = "Unwrap %i Selected Meshes" + + # HACK, loop until mouse is lifted. + ''' + while Window.GetMouseButtons() != 0: + sys.sleep(10) + ''' + + if not Draw.PupBlock(ob % len(obList), pup_block): + return + del ob + + # Convert from being button types + USER_PROJECTION_LIMIT = USER_PROJECTION_LIMIT.val + USER_ONLY_SELECTED_FACES = USER_ONLY_SELECTED_FACES.val + USER_SHARE_SPACE = USER_SHARE_SPACE.val + USER_STRETCH_ASPECT = USER_STRETCH_ASPECT.val + USER_ISLAND_MARGIN = USER_ISLAND_MARGIN.val + USER_FILL_HOLES = USER_FILL_HOLES.val + USER_FILL_HOLES_QUALITY = USER_FILL_HOLES_QUALITY.val + USER_VIEW_INIT = USER_VIEW_INIT.val + USER_AREA_WEIGHT = USER_AREA_WEIGHT.val + + USER_PROJECTION_LIMIT_CONVERTED = cos(USER_PROJECTION_LIMIT * DEG_TO_RAD) + USER_PROJECTION_LIMIT_HALF_CONVERTED = cos((USER_PROJECTION_LIMIT/2) * DEG_TO_RAD) + + + # Toggle Edit mode + is_editmode = Window.EditMode() + if is_editmode: + Window.EditMode(0) + # Assume face select mode! an annoying hack to toggle face select mode because Mesh dosent like faceSelectMode. + + if USER_SHARE_SPACE: + # Sort by data name so we get consistant results + try: obList.sort(key = lambda ob: ob.getData(name_only=1)) + except: obList.sort(lambda ob1, ob2: cmp( ob1.getData(name_only=1), ob2.getData(name_only=1) )) + + collected_islandList= [] + + Window.WaitCursor(1) + + time1 = sys.time() + + # Tag as False se we dont operate on teh same mesh twice. + bpy.data.meshes.tag = False + + for ob in obList: + me = ob.getData(mesh=1) + + if me.tag or me.lib: + continue + + # Tag as used + me.tag = True + + if not me.faceUV: # Mesh has no UV Coords, dont bother. + me.faceUV= True + + if USER_ONLY_SELECTED_FACES: + meshFaces = [thickface(f) for f in me.faces if f.sel] + else: + meshFaces = map(thickface, me.faces) + + if not meshFaces: + continue + + Window.DrawProgressBar(0.1, 'SmartProj UV Unwrapper, mapping "%s", %i faces.' % (me.name, len(meshFaces))) + + # ======= + # Generate a projection list from face normals, this is ment to be smart :) + + # make a list of face props that are in sync with meshFaces + # Make a Face List that is sorted by area. + # meshFaces = [] + + # meshFaces.sort( lambda a, b: cmp(b.area , a.area) ) # Biggest first. + try: meshFaces.sort( key = lambda a: -a.area ) + except: meshFaces.sort( lambda a, b: cmp(b.area , a.area) ) + + # remove all zero area faces + while meshFaces and meshFaces[-1].area <= SMALL_NUM: + # Set their UV's to 0,0 + for uv in meshFaces[-1].uv: + uv.zero() + meshFaces.pop() + + # Smallest first is slightly more efficient, but if the user cancels early then its better we work on the larger data. + + # Generate Projection Vecs + # 0d is 1.0 + # 180 IS -0.59846 + + + # Initialize projectVecs + if USER_VIEW_INIT: + # Generate Projection + projectVecs = [Vector(Window.GetViewVector()) * ob.matrixWorld.copy().invert().rotationPart()] # We add to this allong the way + else: + projectVecs = [] + + newProjectVec = meshFaces[0].no + newProjectMeshFaces = [] # Popping stuffs it up. + + + # Predent that the most unique angke is ages away to start the loop off + mostUniqueAngle = -1.0 + + # This is popped + tempMeshFaces = meshFaces[:] + + + + # This while only gathers projection vecs, faces are assigned later on. + while 1: + # If theres none there then start with the largest face + + # add all the faces that are close. + for fIdx in xrange(len(tempMeshFaces)-1, -1, -1): + # Use half the angle limit so we dont overweight faces towards this + # normal and hog all the faces. + if newProjectVec.dot(tempMeshFaces[fIdx].no) > USER_PROJECTION_LIMIT_HALF_CONVERTED: + newProjectMeshFaces.append(tempMeshFaces.pop(fIdx)) + + # Add the average of all these faces normals as a projectionVec + averageVec = Vector(0,0,0) + if USER_AREA_WEIGHT: + for fprop in newProjectMeshFaces: + averageVec += (fprop.no * fprop.area) + else: + for fprop in newProjectMeshFaces: + averageVec += fprop.no + + if averageVec.x != 0 or averageVec.y != 0 or averageVec.z != 0: # Avoid NAN + projectVecs.append(averageVec.normalize()) + + + # Get the next vec! + # Pick the face thats most different to all existing angles :) + mostUniqueAngle = 1.0 # 1.0 is 0d. no difference. + mostUniqueIndex = 0 # dummy + + for fIdx in xrange(len(tempMeshFaces)-1, -1, -1): + angleDifference = -1.0 # 180d difference. + + # Get the closest vec angle we are to. + for p in projectVecs: + temp_angle_diff= p.dot(tempMeshFaces[fIdx].no) + + if angleDifference < temp_angle_diff: + angleDifference= temp_angle_diff + + if angleDifference < mostUniqueAngle: + # We have a new most different angle + mostUniqueIndex = fIdx + mostUniqueAngle = angleDifference + + if mostUniqueAngle < USER_PROJECTION_LIMIT_CONVERTED: + #print 'adding', mostUniqueAngle, USER_PROJECTION_LIMIT, len(newProjectMeshFaces) + # Now weight the vector to all its faces, will give a more direct projection + # if the face its self was not representive of the normal from surrounding faces. + + newProjectVec = tempMeshFaces[mostUniqueIndex].no + newProjectMeshFaces = [tempMeshFaces.pop(mostUniqueIndex)] + + + else: + if len(projectVecs) >= 1: # Must have at least 2 projections + break + + + # If there are only zero area faces then its possible + # there are no projectionVecs + if not len(projectVecs): + Draw.PupMenu('error, no projection vecs where generated, 0 area faces can cause this.') + return + + faceProjectionGroupList =[[] for i in xrange(len(projectVecs)) ] + + # MAP and Arrange # We know there are 3 or 4 faces here + + for fIdx in xrange(len(meshFaces)-1, -1, -1): + fvec = meshFaces[fIdx].no + i = len(projectVecs) + + # Initialize first + bestAng = fvec.dot(projectVecs[0]) + bestAngIdx = 0 + + # Cycle through the remaining, first alredy done + while i-1: + i-=1 + + newAng = fvec.dot(projectVecs[i]) + if newAng > bestAng: # Reverse logic for dotvecs + bestAng = newAng + bestAngIdx = i + + # Store the area for later use. + faceProjectionGroupList[bestAngIdx].append(meshFaces[fIdx]) + + # Cull faceProjectionGroupList, + + + # Now faceProjectionGroupList is full of faces that face match the project Vecs list + for i in xrange(len(projectVecs)): + # Account for projectVecs having no faces. + if not faceProjectionGroupList[i]: + continue + + # Make a projection matrix from a unit length vector. + MatProj = VectoMat(projectVecs[i]) + + # Get the faces UV's from the projected vertex. + for f in faceProjectionGroupList[i]: + f_uv = f.uv + for j, v in enumerate(f.v): + f_uv[j][:] = (MatProj * v.co)[:2] + + + if USER_SHARE_SPACE: + # Should we collect and pack later? + islandList = getUvIslands(faceProjectionGroupList, me) + collected_islandList.extend(islandList) + + else: + # Should we pack the islands for this 1 object? + islandList = getUvIslands(faceProjectionGroupList, me) + packIslands(islandList) + + + # update the mesh here if we need to. + + # We want to pack all in 1 go, so pack now + if USER_SHARE_SPACE: + Window.DrawProgressBar(0.9, "Box Packing for all objects...") + packIslands(collected_islandList) + + print "Smart Projection time: %.2f" % (sys.time() - time1) + # Window.DrawProgressBar(0.9, "Smart Projections done, time: %.2f sec." % (sys.time() - time1)) + + if is_editmode: + Window.EditMode(1) + + Window.DrawProgressBar(1.0, "") + Window.WaitCursor(0) + Window.RedrawAll() + +if __name__ == '__main__': + main() From e4f90d93799fc77c5d2c16aeb9fdbfea2d4f5148 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 17:51:22 +0000 Subject: [PATCH 336/412] quick port of smart project to 2.5x, no operator options yet --- release/scripts/io/uvcalc_smart_project.py | 244 +++++++++++---------- source/blender/makesrna/intern/rna_mesh.c | 16 ++ 2 files changed, 143 insertions(+), 117 deletions(-) diff --git a/release/scripts/io/uvcalc_smart_project.py b/release/scripts/io/uvcalc_smart_project.py index 9d9bd2aaefd..1aeaab44d73 100644 --- a/release/scripts/io/uvcalc_smart_project.py +++ b/release/scripts/io/uvcalc_smart_project.py @@ -1,26 +1,5 @@ -#!BPY - -""" Registration info for Blender menus: <- these words are ignored -Name: 'Unwrap (smart projections)' -Blender: 240 -Group: 'UVCalculation' -Tooltip: 'UV Unwrap mesh faces for all select mesh objects' -""" - - -__author__ = "Campbell Barton" -__url__ = ("blender", "blenderartists.org") -__version__ = "1.1 12/18/05" - -__bpydoc__ = """\ -This script projection unwraps the selected faces of a mesh. - -it operates on all selected mesh objects, and can be used unwrap -selected faces, or all faces. -""" - # -------------------------------------------------------------------------- -# Smart Projection UV Projection Unwrapper v1.1 by Campbell Barton (AKA Ideasman) +# Smart Projection UV Projection Unwrapper v1.2 by Campbell Barton (AKA Ideasman) # -------------------------------------------------------------------------- # ***** BEGIN GPL LICENSE BLOCK ***** # @@ -42,10 +21,12 @@ selected faces, or all faces. # -------------------------------------------------------------------------- -from Blender import Object, Draw, Window, sys, Mesh, Geometry -from Blender.Mathutils import Matrix, Vector, RotationMatrix +#from Blender import Object, Draw, Window, sys, Mesh, Geometry +from Mathutils import Matrix, Vector, RotationMatrix +import time +import Geometry import bpy -from math import cos +from math import cos, degrees, radians DEG_TO_RAD = 0.017453292519943295 # pi/180.0 SMALL_NUM = 0.000000001 @@ -182,7 +163,7 @@ def island2Edge(island): # Sort by length - length_sorted_edges = [(Vector(key[0]), Vector(key[1]), value) for key, value in edges.iteritems() if value != 0] + length_sorted_edges = [(Vector(key[0]), Vector(key[1]), value) for key, value in edges.items() if value != 0] try: length_sorted_edges.sort(key = lambda A: -A[2]) # largest first except: length_sorted_edges.sort(lambda A, B: cmp(B[2], A[2])) @@ -192,7 +173,7 @@ def island2Edge(island): # e.pop(2) # return edges and unique points - return length_sorted_edges, [v.__copy__().resize3D() for v in unique_points.itervalues()] + return length_sorted_edges, [v.__copy__().resize3D() for v in unique_points.values()] # ========================= NOT WORKING???? # Find if a points inside an edge loop, un-orderd. @@ -294,15 +275,15 @@ def testNewVecLs2DRotIsBetter(vecs, mat=-1, bestAreaSoFar = -1): # Takes a list of faces that make up a UV island and rotate # until they optimally fit inside a square. -ROTMAT_2D_POS_90D = RotationMatrix( 90, 2) -ROTMAT_2D_POS_45D = RotationMatrix( 45, 2) +ROTMAT_2D_POS_90D = RotationMatrix( radians(90.0), 2) +ROTMAT_2D_POS_45D = RotationMatrix( radians(45.0), 2) RotMatStepRotation = [] rot_angle = 22.5 #45.0/2 while rot_angle > 0.1: RotMatStepRotation.append([\ - RotationMatrix( rot_angle, 2),\ - RotationMatrix( -rot_angle, 2)]) + RotationMatrix( radians(rot_angle), 2),\ + RotationMatrix( radians(-rot_angle), 2)]) rot_angle = rot_angle/2.0 @@ -381,7 +362,7 @@ def optiRotateUvIsland(faces): i = 0 # count the serialized uv/vectors for f in faces: #f.uv = [uv for uv in uvVecs[i:len(f)+i] ] - for j, k in enumerate(xrange(i, len(f.v)+i)): + for j, k in enumerate(range(i, len(f.v)+i)): f.uv[j][:] = uvVecs[k] i += len(f.v) @@ -428,16 +409,13 @@ def mergeUvIslands(islandList): # no.. chance that to most simple edge loop first. decoratedIslandListAreaSort =decoratedIslandList[:] - try: decoratedIslandListAreaSort.sort(key = lambda A: A[3]) - except: decoratedIslandListAreaSort.sort(lambda A, B: cmp(A[3], B[3])) - + decoratedIslandListAreaSort.sort(key = lambda A: A[3]) # sort by efficiency, Least Efficient first. decoratedIslandListEfficSort = decoratedIslandList[:] # decoratedIslandListEfficSort.sort(lambda A, B: cmp(B[2], A[2])) - try: decoratedIslandListEfficSort.sort(key = lambda A: -A[2]) - except: decoratedIslandListEfficSort.sort(lambda A, B: cmp(B[2], A[2])) + decoratedIslandListEfficSort.sort(key = lambda A: -A[2]) # ================================================== THESE CAN BE TWEAKED. # This is a quality value for the number of tests. @@ -557,7 +535,7 @@ def mergeUvIslands(islandList): elif Intersect == 0: # No intersection?? Place it. # Progress removedCount +=1 - Window.DrawProgressBar(0.0, 'Merged: %i islands, Ctrl to finish early.' % removedCount) +#XXX Window.DrawProgressBar(0.0, 'Merged: %i islands, Ctrl to finish early.' % removedCount) # Move faces into new island and offset targetIsland[0].extend(sourceIsland[0]) @@ -581,7 +559,7 @@ def mergeUvIslands(islandList): # Sort by edge length, reverse so biggest are first. - try: targetIsland[6].sort(key = lambda A: A[2]) + try: targetIsland[6].sort(key = lambda A: A[2]) except: targetIsland[6].sort(lambda B,A: cmp(A[2], B[2] )) @@ -625,16 +603,15 @@ def getUvIslands(faceGroups, me): # Get seams so we dont cross over seams edge_seams = {} # shoudl be a set - SEAM = Mesh.EdgeFlags.SEAM for ed in me.edges: - if ed.flag & SEAM: + if ed.seam: edge_seams[ed.key] = None # dummy var- use sets! # Done finding seams islandList = [] - Window.DrawProgressBar(0.0, 'Splitting %d projection groups into UV islands:' % len(faceGroups)) +#XXX Window.DrawProgressBar(0.0, 'Splitting %d projection groups into UV islands:' % len(faceGroups)) #print '\tSplitting %d projection groups into UV islands:' % len(faceGroups), # Find grouped faces @@ -652,7 +629,7 @@ def getUvIslands(faceGroups, me): for i, f in enumerate(faces): for ed_key in f.edge_keys: - if edge_seams.has_key(ed_key): # DELIMIT SEAMS! ;) + if ed_key in edge_seams: # DELIMIT SEAMS! ;) edge_users[ed_key] = [] # so as not to raise an error else: try: edge_users[ed_key].append(i) @@ -677,7 +654,7 @@ def getUvIslands(faceGroups, me): ok = True while ok: ok= False - for i in xrange(len(faces)): + for i in range(len(faces)): if face_modes[i] == 1: # search for ed_key in faces[i].edge_keys: for ii in edge_users[ed_key]: @@ -691,7 +668,7 @@ def getUvIslands(faceGroups, me): islandList.append(newIsland) ok = False - for i in xrange(len(faces)): + for i in range(len(faces)): if face_modes[i] == 0: newIsland = [] newIsland.append(faces[i]) @@ -700,7 +677,7 @@ def getUvIslands(faceGroups, me): break # if not ok will stop looping - Window.DrawProgressBar(0.1, 'Optimizing Rotation for %i UV Islands' % len(islandList)) +#XXX Window.DrawProgressBar(0.1, 'Optimizing Rotation for %i UV Islands' % len(islandList)) for island in islandList: optiRotateUvIsland(island) @@ -710,7 +687,7 @@ def getUvIslands(faceGroups, me): def packIslands(islandList): if USER_FILL_HOLES: - Window.DrawProgressBar(0.1, 'Merging Islands (Ctrl: skip merge)...') +#XXX Window.DrawProgressBar(0.1, 'Merging Islands (Ctrl: skip merge)...') mergeUvIslands(islandList) # Modify in place @@ -760,18 +737,18 @@ def packIslands(islandList): # with the islands. #print '\tPacking UV Islands...' - Window.DrawProgressBar(0.7, 'Packing %i UV Islands...' % len(packBoxes) ) +#XXX Window.DrawProgressBar(0.7, 'Packing %i UV Islands...' % len(packBoxes) ) - time1 = sys.time() + time1 = time.time() packWidth, packHeight = Geometry.BoxPack2D(packBoxes) - # print 'Box Packing Time:', sys.time() - time1 + # print 'Box Packing Time:', time.time() - time1 #if len(pa ckedLs) != len(islandList): # raise "Error packed boxes differes from original length" #print '\tWriting Packed Data to faces' - Window.DrawProgressBar(0.8, 'Writing Packed Data to faces') +#XXX Window.DrawProgressBar(0.8, 'Writing Packed Data to faces') # Sort by ID, so there in sync again islandIdx = len(islandList) @@ -812,50 +789,73 @@ def VectoMat(vec): return Matrix([a1[0], a1[1], a1[2]], [a2[0], a2[1], a2[2]], [a3[0], a3[1], a3[2]]) +# Utility funcs for 2.5, make into a module?? +def ord_ind(i1,i2): + if i1 USER_PROJECTION_LIMIT_HALF_CONVERTED: @@ -1022,7 +1016,7 @@ def main(): mostUniqueAngle = 1.0 # 1.0 is 0d. no difference. mostUniqueIndex = 0 # dummy - for fIdx in xrange(len(tempMeshFaces)-1, -1, -1): + for fIdx in range(len(tempMeshFaces)-1, -1, -1): angleDifference = -1.0 # 180d difference. # Get the closest vec angle we are to. @@ -1057,11 +1051,11 @@ def main(): Draw.PupMenu('error, no projection vecs where generated, 0 area faces can cause this.') return - faceProjectionGroupList =[[] for i in xrange(len(projectVecs)) ] + faceProjectionGroupList =[[] for i in range(len(projectVecs)) ] # MAP and Arrange # We know there are 3 or 4 faces here - for fIdx in xrange(len(meshFaces)-1, -1, -1): + for fIdx in range(len(meshFaces)-1, -1, -1): fvec = meshFaces[fIdx].no i = len(projectVecs) @@ -1085,7 +1079,7 @@ def main(): # Now faceProjectionGroupList is full of faces that face match the project Vecs list - for i in xrange(len(projectVecs)): + for i in range(len(projectVecs)): # Account for projectVecs having no faces. if not faceProjectionGroupList[i]: continue @@ -1097,7 +1091,8 @@ def main(): for f in faceProjectionGroupList[i]: f_uv = f.uv for j, v in enumerate(f.v): - f_uv[j][:] = (MatProj * v.co)[:2] + # XXX - note, between Mathutils in 2.4 and 2.5 the order changed. + f_uv[j][:] = (v.co * MatProj)[:2] if USER_SHARE_SPACE: @@ -1115,18 +1110,33 @@ def main(): # We want to pack all in 1 go, so pack now if USER_SHARE_SPACE: - Window.DrawProgressBar(0.9, "Box Packing for all objects...") +#XXX Window.DrawProgressBar(0.9, "Box Packing for all objects...") packIslands(collected_islandList) - print "Smart Projection time: %.2f" % (sys.time() - time1) - # Window.DrawProgressBar(0.9, "Smart Projections done, time: %.2f sec." % (sys.time() - time1)) + print("Smart Projection time: %.2f" % (time.time() - time1)) + # Window.DrawProgressBar(0.9, "Smart Projections done, time: %.2f sec." % (time.time() - time1)) if is_editmode: - Window.EditMode(1) + bpy.ops.object.mode_set(mode='EDIT') - Window.DrawProgressBar(1.0, "") - Window.WaitCursor(0) - Window.RedrawAll() +#XXX Window.DrawProgressBar(1.0, "") +#XXX Window.WaitCursor(0) +#XXX Window.RedrawAll() + +class SmartProject(bpy.types.Operator): + '''This script projection unwraps the selected faces of a mesh. it operates on all selected mesh objects, and can be used unwrap selected faces, or all faces.''' + bl_idname = "uv.smart_project" + bl_label = "Smart UV Project" + + def poll(self, context): + return context.active_object != None + + def execute(self, context): + main(context) + return ('FINISHED',) + +bpy.ops.add(SmartProject) if __name__ == '__main__': - main() + bpy.ops.uv.smart_project() + diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c index bdf60849a84..2f14ab0c98c 100644 --- a/source/blender/makesrna/intern/rna_mesh.c +++ b/source/blender/makesrna/intern/rna_mesh.c @@ -128,6 +128,17 @@ static void rna_MeshFace_normal_get(PointerRNA *ptr, float *values) CalcNormFloat(me->mvert[mface->v1].co, me->mvert[mface->v2].co, me->mvert[mface->v3].co, values); } +static float rna_MeshFace_area_get(PointerRNA *ptr) +{ + Mesh *me= (Mesh*)ptr->id.data; + MFace *mface= (MFace*)ptr->data; + + if(mface->v4) + return AreaQ3Dfl(me->mvert[mface->v1].co, me->mvert[mface->v2].co, me->mvert[mface->v3].co, me->mvert[mface->v4].co); + else + return AreaT3Dfl(me->mvert[mface->v1].co, me->mvert[mface->v2].co, me->mvert[mface->v3].co); +} + /* notice red and blue are swapped */ static void rna_MeshColor_color1_get(PointerRNA *ptr, float *values) { @@ -1049,6 +1060,11 @@ static void rna_def_mface(BlenderRNA *brna) RNA_def_property_float_funcs(prop, "rna_MeshFace_normal_get", NULL, NULL); RNA_def_property_ui_text(prop, "face normal", "local space unit length normal vector for this face"); + prop= RNA_def_property(srna, "area", PROP_FLOAT, PROP_UNSIGNED); + RNA_def_property_clear_flag(prop, PROP_EDITABLE); + RNA_def_property_float_funcs(prop, "rna_MeshFace_area_get", NULL, NULL); + RNA_def_property_ui_text(prop, "face area", "read only area of the face"); + prop= RNA_def_property(srna, "index", PROP_INT, PROP_UNSIGNED); RNA_def_property_clear_flag(prop, PROP_EDITABLE); RNA_def_property_int_funcs(prop, "rna_MeshFace_index_get", NULL, NULL); From 6680dcd24a10a12925c3a5d5fd4932b1714afdc7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 18:08:25 +0000 Subject: [PATCH 337/412] renamed bpy.sys to bpy.utils, since it used to be a attempt to replace pythons sys which is bundled now --- release/scripts/io/export_fbx.py | 12 ++++++------ release/scripts/io/export_obj.py | 4 ++-- release/scripts/io/netrender/client.py | 8 ++++---- release/scripts/modules/bpy_sys.py | 4 ++-- source/blender/python/intern/bpy_interface.c | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index b303e536b99..8f4b0ce0e98 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -237,14 +237,14 @@ def sane_groupname(data): return sane_name(data, sane_name_mapping_group) # FORCE_CWD - dont use the basepath, just add a ./ to the filename. # use when we know the file will be in the basepath. # ''' -# fname = bpy.sys.expandpath(fname_orig) +# fname = bpy.utils.expandpath(fname_orig) # # fname = Blender.sys.expandpath(fname_orig) # fname_strip = os.path.basename(fname) # # fname_strip = strip_path(fname) # if FORCE_CWD: # fname_rel = '.' + os.sep + fname_strip # else: -# fname_rel = bpy.sys.relpath(fname, basepath) +# fname_rel = bpy.utils.relpath(fname, basepath) # # fname_rel = Blender.sys.relpath(fname, basepath) # if fname_rel.startswith('//'): fname_rel = '.' + os.sep + fname_rel[2:] # return fname, fname_strip, fname_rel @@ -349,7 +349,7 @@ def write(filename, batch_objects = None, \ fbxpath = filename # get the path component of filename - tmp_exists = bpy.sys.exists(fbxpath) + tmp_exists = bpy.utils.exists(fbxpath) # tmp_exists = Blender.sys.exists(fbxpath) if tmp_exists != 2: # a file, we want a path @@ -363,7 +363,7 @@ def write(filename, batch_objects = None, \ # Draw.PupMenu('Error%t|Directory does not exist!') return - tmp_exists = bpy.sys.exists(fbxpath) + tmp_exists = bpy.utils.exists(fbxpath) # tmp_exists = Blender.sys.exists(fbxpath) if tmp_exists != 2: @@ -398,7 +398,7 @@ def write(filename, batch_objects = None, \ # path may alredy exist # TODO - might exist but be a file. unlikely but should probably account for it. - if bpy.sys.exists(new_fbxpath) == 0: + if bpy.utils.exists(new_fbxpath) == 0: # if Blender.sys.exists(new_fbxpath) == 0: os.mkdir(new_fbxpath) @@ -3456,7 +3456,7 @@ bpy.ops.add(EXPORT_OT_fbx) # - bpy.data.remove_scene: line 366 # - bpy.sys.time move to bpy.sys.util? # - new scene creation, activation: lines 327-342, 368 -# - uses bpy.sys.expandpath, *.relpath - replace at least relpath +# - uses bpy.utils.expandpath, *.relpath - replace at least relpath # SMALL or COSMETICAL # - find a way to get blender version, and put it in bpy.util?, old was Blender.Get('version') diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 72f1835fea8..5d0ab5bb391 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -223,11 +223,11 @@ def copy_images(dest_dir): copyCount = 0 # for bImage in uniqueImages.values(): -# image_path = bpy.sys.expandpath(bImage.filename) +# image_path = bpy.utils.expandpath(bImage.filename) # if bpy.sys.exists(image_path): # # Make a name for the target path. # dest_image_path = dest_dir + image_path.split('\\')[-1].split('/')[-1] -# if not bpy.sys.exists(dest_image_path): # Image isnt alredy there +# if not bpy.utils.exists(dest_image_path): # Image isnt alredy there # print('\tCopying "%s" > "%s"' % (image_path, dest_image_path)) # copy_file(image_path, dest_image_path) # copyCount+=1 diff --git a/release/scripts/io/netrender/client.py b/release/scripts/io/netrender/client.py index 8694d7782ae..e1dc3f1b7b1 100644 --- a/release/scripts/io/netrender/client.py +++ b/release/scripts/io/netrender/client.py @@ -46,7 +46,7 @@ def addPointCache(job, ob, point_cache, default_path): if name == "": name = "".join(["%02X" % ord(c) for c in ob.name]) - cache_path = bpy.sys.expandpath(point_cache.filepath) if point_cache.external else default_path + cache_path = bpy.utils.expandpath(point_cache.filepath) if point_cache.external else default_path index = "%02i" % point_cache.index @@ -111,14 +111,14 @@ def clientSendJob(conn, scene, anim = False): # LIBRARIES ########################### for lib in bpy.data.libraries: - job.addFile(bpy.sys.expandpath(lib_path)) + job.addFile(bpy.utils.expandpath(lib_path)) ########################### # IMAGES ########################### for image in bpy.data.images: if image.source == "FILE" and not image.packed_file: - job.addFile(bpy.sys.expandpath(image.filename)) + job.addFile(bpy.utils.expandpath(image.filename)) ########################### # FLUID + POINT CACHE @@ -129,7 +129,7 @@ def clientSendJob(conn, scene, anim = False): for object in bpy.data.objects: for modifier in object.modifiers: if modifier.type == 'FLUID_SIMULATION' and modifier.settings.type == "DOMAIN": - addFluidFiles(job, bpy.sys.expandpath(modifier.settings.path)) + addFluidFiles(job, bpy.utils.expandpath(modifier.settings.path)) elif modifier.type == "CLOTH": addPointCache(job, object, modifier.point_cache, default_path) elif modifier.type == "SOFT_BODY": diff --git a/release/scripts/modules/bpy_sys.py b/release/scripts/modules/bpy_sys.py index 86f9c9d63a2..dde01152dae 100644 --- a/release/scripts/modules/bpy_sys.py +++ b/release/scripts/modules/bpy_sys.py @@ -26,5 +26,5 @@ def expandpath(path): return path import types -bpy.sys = types.ModuleType("bpy.sys") -bpy.sys.expandpath = expandpath +bpy.utils = types.ModuleType("bpy.utils") +bpy.utils.expandpath = expandpath diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index d0c70a9ee96..b465a494a4d 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -200,7 +200,7 @@ static void bpy_init_modules( void ) } bpy_import_test("bpy_ops"); /* adds its self to bpy.ops */ - bpy_import_test("bpy_sys"); /* adds its self to bpy.sys */ + bpy_import_test("bpy_utils"); /* adds its self to bpy.sys */ bpy_import_test("bpy_ext"); /* extensions to our existing types */ } From 65f92c893ed2929660e6cff611bdda3141a76318 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 18:20:03 +0000 Subject: [PATCH 338/412] - remove UV mapping operator, call a header menu directly (so python can add items there) - forgot to move bpy_sys.py last commit --- .../modules/{bpy_sys.py => bpy_utils.py} | 0 release/scripts/ui/space_view3d.py | 19 +++++- source/blender/editors/mesh/mesh_ops.c | 4 +- source/blender/editors/uvedit/uvedit_intern.h | 1 - source/blender/editors/uvedit/uvedit_ops.c | 1 - .../editors/uvedit/uvedit_unwrap_ops.c | 66 ------------------- 6 files changed, 20 insertions(+), 71 deletions(-) rename release/scripts/modules/{bpy_sys.py => bpy_utils.py} (100%) diff --git a/release/scripts/modules/bpy_sys.py b/release/scripts/modules/bpy_utils.py similarity index 100% rename from release/scripts/modules/bpy_sys.py rename to release/scripts/modules/bpy_utils.py diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 30bfdb8e918..e4de79942f2 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -90,6 +90,22 @@ class VIEW3D_MT_snap(bpy.types.Menu): layout.itemO("view3d.snap_cursor_to_grid", text="Cursor to Grid") layout.itemO("view3d.snap_cursor_to_active", text="Cursor to Active") +class VIEW3D_MT_uv_map(bpy.types.Menu): + bl_label = "UV Mapping" + + def draw(self, context): + layout = self.layout + + layout.itemO("uv.unwrap") + layout.itemO("uv.cube_project") + layout.itemO("uv.cylinder_project") + layout.itemO("uv.sphere_project") + layout.itemO("uv.project_from_view") + + layout.itemS() + + layout.itemO("uv.reset") + # ********** View menus ********** @@ -831,7 +847,7 @@ class VIEW3D_MT_edit_mesh(bpy.types.Menu): layout.itemS() - layout.itemO("uv.mapping_menu", text="UV Unwrap...") + layout.itemM("VIEW3D_MT_uv_map", text="UV Unwrap...") layout.itemS() @@ -1603,6 +1619,7 @@ bpy.types.register(VIEW3D_MT_pose_constraints) bpy.types.register(VIEW3D_MT_pose_showhide) bpy.types.register(VIEW3D_MT_snap) # Edit Menus +bpy.types.register(VIEW3D_MT_uv_map) # Edit Menus bpy.types.register(VIEW3D_MT_edit_mesh) bpy.types.register(VIEW3D_MT_edit_mesh_specials) # Only as a menu for keybindings diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index d2535bb5be2..1e1234d040a 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -291,8 +291,8 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", VKEY, KM_PRESS, KM_CTRL, 0); RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_edit_mesh_vertices"); - /* UV's */ - WM_keymap_add_item(keymap, "UV_OT_mapping_menu", UKEY, KM_PRESS, 0, 0); + kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", UKEY, KM_PRESS, 0, 0); + RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_uv_map"); ED_object_generic_keymap(keyconf, keymap, TRUE); } diff --git a/source/blender/editors/uvedit/uvedit_intern.h b/source/blender/editors/uvedit/uvedit_intern.h index cca357c8685..e9d128adc3a 100644 --- a/source/blender/editors/uvedit/uvedit_intern.h +++ b/source/blender/editors/uvedit/uvedit_intern.h @@ -70,7 +70,6 @@ void UV_OT_average_islands_scale(struct wmOperatorType *ot); void UV_OT_cube_project(struct wmOperatorType *ot); void UV_OT_cylinder_project(struct wmOperatorType *ot); void UV_OT_from_view(struct wmOperatorType *ot); -void UV_OT_mapping_menu(struct wmOperatorType *ot); void UV_OT_minimize_stretch(struct wmOperatorType *ot); void UV_OT_pack_islands(struct wmOperatorType *ot); void UV_OT_reset(struct wmOperatorType *ot); diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 2ad2f003d6c..460f9970861 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -3090,7 +3090,6 @@ void ED_operatortypes_uvedit(void) WM_operatortype_append(UV_OT_cube_project); WM_operatortype_append(UV_OT_cylinder_project); WM_operatortype_append(UV_OT_from_view); - WM_operatortype_append(UV_OT_mapping_menu); WM_operatortype_append(UV_OT_minimize_stretch); WM_operatortype_append(UV_OT_pack_islands); WM_operatortype_append(UV_OT_reset); diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c index 019ac33dfd0..29d9bb4864e 100644 --- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c +++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c @@ -1307,69 +1307,3 @@ void UV_OT_cube_project(wmOperatorType *ot) RNA_def_float(ot->srna, "cube_size", 1.0f, 0.0f, FLT_MAX, "Cube Size", "Size of the cube to project on.", 0.001f, 100.0f); uv_map_clip_correct_properties(ot); } - -/******************* Mapping Menu operator ****************/ - -static int mapping_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) -{ - uiPopupMenu *pup; - uiLayout *layout; - - pup= uiPupMenuBegin(C, "UV Mapping", 0); - layout= uiPupMenuLayout(pup); - - uiItemO(layout, NULL, 0, "UV_OT_unwrap"); - uiItemS(layout); - uiItemO(layout, NULL, 0, "UV_OT_cube_project"); - uiItemO(layout, NULL, 0, "UV_OT_cylinder_project"); - uiItemO(layout, NULL, 0, "UV_OT_sphere_project"); - uiItemO(layout, NULL, 0, "UV_OT_project_from_view"); - uiItemS(layout); - uiItemO(layout, NULL, 0, "UV_OT_reset"); - - uiPupMenuEnd(C, pup); - - /* XXX python */ -#ifndef DISABLE_PYTHON -#if 0 - /* note that we account for the 10 previous entries with i+10: */ - for(pym = BPyMenuTable[PYMENU_UVCALCULATION]; pym; pym = pym->next, i++) { - - if(!has_pymenu) { - strcat(uvmenu, "|%l"); - has_pymenu = 1; - } - - strcat(uvmenu, "|"); - strcat(uvmenu, pym->name); - strcat(uvmenu, " %x"); - sprintf(menu_number, "%d", i+10); - strcat(uvmenu, menu_number); - } -#endif -#endif - -#ifndef DISABLE_PYTHON -#if 0 - mode= pupmenu(uvmenu); - if(mode >= 10) { - BPY_menu_do_python(PYMENU_UVCALCULATION, mode - 10); - return; - } -#endif -#endif - - return OPERATOR_CANCELLED; -} - -void UV_OT_mapping_menu(wmOperatorType *ot) -{ - /* identifiers */ - ot->name= "UV Mapping"; - ot->idname= "UV_OT_mapping_menu"; - - /* api callbacks */ - ot->invoke= mapping_menu_invoke; - ot->poll= ED_operator_uvmap; -} - From 2db1851c261eae4b368f476b372aa25ded2951a6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Nov 2009 18:56:42 +0000 Subject: [PATCH 339/412] uv smart project now in unwrap menu with 2 most important options --- release/scripts/io/add_mesh_torus.py | 6 +- release/scripts/io/uvcalc_smart_project.py | 67 ++++++++++++++-------- release/scripts/ui/space_view3d.py | 2 +- release/scripts/ui/space_view3d_toolbar.py | 3 +- 4 files changed, 50 insertions(+), 28 deletions(-) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/io/add_mesh_torus.py index 27ef587ce5a..ddc4f0b9770 100644 --- a/release/scripts/io/add_mesh_torus.py +++ b/release/scripts/io/add_mesh_torus.py @@ -74,7 +74,7 @@ def add_torus(major_rad, minor_rad, major_seg, minor_seg): from bpy.props import * -class AddTorusPrimitive(bpy.types.Operator): +class AddTorus(bpy.types.Operator): '''Add a torus mesh.''' bl_idname = "mesh.primitive_torus_add" bl_label = "Add Torus" @@ -125,12 +125,12 @@ class AddTorusPrimitive(bpy.types.Operator): return ('FINISHED',) # Register the operator -bpy.ops.add(AddTorusPrimitive) +bpy.ops.add(AddTorus) # Add to a menu import dynamic_menu -menu_func = (lambda self, context: self.layout.itemO("mesh.primitive_torus_add", +menu_func = (lambda self, context: self.layout.itemO(AddTorus.bl_idname, text="Torus", icon='ICON_MESH_DONUT')) menu_item = dynamic_menu.add(bpy.types.INFO_MT_mesh_add, menu_func) diff --git a/release/scripts/io/uvcalc_smart_project.py b/release/scripts/io/uvcalc_smart_project.py index 1aeaab44d73..328470a5ec5 100644 --- a/release/scripts/io/uvcalc_smart_project.py +++ b/release/scripts/io/uvcalc_smart_project.py @@ -821,7 +821,7 @@ class thickface(object): global ob ob = None -def main(context): +def main(context, island_margin, projection_limit): global USER_FILL_HOLES global USER_FILL_HOLES_QUALITY global USER_STRETCH_ASPECT @@ -847,35 +847,16 @@ def main(context): raise('error, no selected mesh objects') # Create the variables. - USER_PROJECTION_LIMIT = (66) + USER_PROJECTION_LIMIT = projection_limit USER_ONLY_SELECTED_FACES = (1) USER_SHARE_SPACE = (1) # Only for hole filling. USER_STRETCH_ASPECT = (1) # Only for hole filling. - USER_ISLAND_MARGIN = (0.0) # Only for hole filling. + USER_ISLAND_MARGIN = island_margin # Only for hole filling. USER_FILL_HOLES = (0) USER_FILL_HOLES_QUALITY = (50) # Only for hole filling. USER_VIEW_INIT = (0) # Only for hole filling. USER_AREA_WEIGHT = (1) # Only for hole filling. - - pup_block = [\ - 'Projection',\ - ('Angle Limit:', USER_PROJECTION_LIMIT, 1, 89, 'lower for more projection groups, higher for less distortion.'),\ - ('Selected Faces Only', USER_ONLY_SELECTED_FACES, 'Use only selected faces from all selected meshes.'),\ - ('Init from view', USER_VIEW_INIT, 'The first projection will be from the view vector.'),\ - ('Area Weight', USER_AREA_WEIGHT, 'Weight projections vector by face area.'),\ - '',\ - '',\ - '',\ - 'UV Layout',\ - ('Share Tex Space', USER_SHARE_SPACE, 'Objects Share texture space, map all objects into 1 uvmap.'),\ - ('Stretch to bounds', USER_STRETCH_ASPECT, 'Stretch the final output to texture bounds.'),\ - ('Island Margin:', USER_ISLAND_MARGIN, 0.0, 0.5, 'Margin to reduce bleed from adjacent islands.'),\ - 'Fill in empty areas',\ - ('Fill Holes', USER_FILL_HOLES, 'Fill in empty areas reduced texture waistage (slow).'),\ - ('Fill Quality:', USER_FILL_HOLES_QUALITY, 1, 100, 'Depends on fill holes, how tightly to fill UV holes, (higher is slower)'),\ - ] - # Reuse variable if len(obList) == 1: ob = "Unwrap %i Selected Mesh" @@ -1123,20 +1104,60 @@ def main(context): #XXX Window.WaitCursor(0) #XXX Window.RedrawAll() +""" + pup_block = [\ + 'Projection',\ +* ('Angle Limit:', USER_PROJECTION_LIMIT, 1, 89, ''),\ + ('Selected Faces Only', USER_ONLY_SELECTED_FACES, 'Use only selected faces from all selected meshes.'),\ + ('Init from view', USER_VIEW_INIT, 'The first projection will be from the view vector.'),\ + ('Area Weight', USER_AREA_WEIGHT, 'Weight projections vector by face area.'),\ + '',\ + '',\ + '',\ + 'UV Layout',\ + ('Share Tex Space', USER_SHARE_SPACE, 'Objects Share texture space, map all objects into 1 uvmap.'),\ + ('Stretch to bounds', USER_STRETCH_ASPECT, 'Stretch the final output to texture bounds.'),\ +* ('Island Margin:', USER_ISLAND_MARGIN, 0.0, 0.5, ''),\ + 'Fill in empty areas',\ + ('Fill Holes', USER_FILL_HOLES, 'Fill in empty areas reduced texture waistage (slow).'),\ + ('Fill Quality:', USER_FILL_HOLES_QUALITY, 1, 100, 'Depends on fill holes, how tightly to fill UV holes, (higher is slower)'),\ + ] +""" + +from bpy.props import * class SmartProject(bpy.types.Operator): '''This script projection unwraps the selected faces of a mesh. it operates on all selected mesh objects, and can be used unwrap selected faces, or all faces.''' bl_idname = "uv.smart_project" bl_label = "Smart UV Project" + bl_register = True + bl_undo = True + + angle_limit = FloatProperty(name="Angle Limit", + description="lower for more projection groups, higher for less distortion.", + default=66.0, min=1.0, max=89.0) + + island_margin = FloatProperty(name="Island Margin", + description="Margin to reduce bleed from adjacent islands.", + default=0.0, min=0.0, max=1.0) + def poll(self, context): return context.active_object != None def execute(self, context): - main(context) + main(context, self.island_margin, self.angle_limit) return ('FINISHED',) bpy.ops.add(SmartProject) +# Add to a menu +import dynamic_menu + +menu_func = (lambda self, context: self.layout.itemO(SmartProject.bl_idname, + text="Smart Project")) + +menu_item = dynamic_menu.add(bpy.types.VIEW3D_MT_uv_map, menu_func) + if __name__ == '__main__': bpy.ops.uv.smart_project() diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index e4de79942f2..33e2df11f8e 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -90,7 +90,7 @@ class VIEW3D_MT_snap(bpy.types.Menu): layout.itemO("view3d.snap_cursor_to_grid", text="Cursor to Grid") layout.itemO("view3d.snap_cursor_to_active", text="Cursor to Active") -class VIEW3D_MT_uv_map(bpy.types.Menu): +class VIEW3D_MT_uv_map(dynamic_menu.DynMenu): bl_label = "UV Mapping" def draw(self, context): diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 2311482ac22..809201b55b4 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -109,7 +109,8 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col = layout.column(align=True) col.itemL(text="UV Mapping:") - col.itemO("uv.mapping_menu", text="Unwrap") + col.item_stringO("wm.call_menu", "name", "VIEW3D_MT_uv_map", text="Unwrap") + col.itemO("mesh.uvs_rotate") col.itemO("mesh.uvs_mirror") From c8ee492e7afe877c6ba85cd9b814cce8419b62cd Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 3 Nov 2009 22:07:15 +0000 Subject: [PATCH 340/412] Changed hand-generated RNA paths to quote strings used as collection indexes. Previous method worked fine for Blender animation system, but this is more convenient for Python. --- source/blender/makesrna/intern/rna_boid.c | 2 +- source/blender/makesrna/intern/rna_cloth.c | 4 ++-- source/blender/makesrna/intern/rna_fluidsim.c | 2 +- source/blender/makesrna/intern/rna_mesh.c | 12 ++++++------ source/blender/makesrna/intern/rna_object_force.c | 10 +++++----- source/blender/makesrna/intern/rna_smoke.c | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/source/blender/makesrna/intern/rna_boid.c b/source/blender/makesrna/intern/rna_boid.c index 36a648c8a82..37b957a16ca 100644 --- a/source/blender/makesrna/intern/rna_boid.c +++ b/source/blender/makesrna/intern/rna_boid.c @@ -129,7 +129,7 @@ static StructRNA* rna_BoidRule_refine(struct PointerRNA *ptr) static char *rna_BoidRule_path(PointerRNA *ptr) { - return BLI_sprintfN("rules[%s]", ((BoidRule*)ptr->data)->name); // XXX not unique + return BLI_sprintfN("rules[\"%s\"]", ((BoidRule*)ptr->data)->name); // XXX not unique } static PointerRNA rna_BoidState_active_boid_rule_get(PointerRNA *ptr) diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c index d64e2c7119b..d78544634bc 100644 --- a/source/blender/makesrna/intern/rna_cloth.c +++ b/source/blender/makesrna/intern/rna_cloth.c @@ -152,7 +152,7 @@ static char *rna_ClothSettings_path(PointerRNA *ptr) Object *ob= (Object*)ptr->id.data; ModifierData *md= modifiers_findByType(ob, eModifierType_Cloth); - return md ? BLI_sprintfN("modifiers[%s].settings", md->name) : NULL; + return md ? BLI_sprintfN("modifiers[\"%s\"].settings", md->name) : NULL; } static char *rna_ClothCollisionSettings_path(PointerRNA *ptr) @@ -160,7 +160,7 @@ static char *rna_ClothCollisionSettings_path(PointerRNA *ptr) Object *ob= (Object*)ptr->id.data; ModifierData *md= modifiers_findByType(ob, eModifierType_Cloth); - return md ? BLI_sprintfN("modifiers[%s].collision_settings", md->name) : NULL; + return md ? BLI_sprintfN("modifiers[\"%s\"].collision_settings", md->name) : NULL; } #else diff --git a/source/blender/makesrna/intern/rna_fluidsim.c b/source/blender/makesrna/intern/rna_fluidsim.c index ae52c811c92..2517ee5c8ef 100644 --- a/source/blender/makesrna/intern/rna_fluidsim.c +++ b/source/blender/makesrna/intern/rna_fluidsim.c @@ -157,7 +157,7 @@ static char *rna_FluidSettings_path(PointerRNA *ptr) FluidsimSettings *fss = (FluidsimSettings*)ptr->data; ModifierData *md= (ModifierData *)fss->fmd; - return BLI_sprintfN("modifiers[%s].settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings", md->name); } #else diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c index 2f14ab0c98c..ab745394ce5 100644 --- a/source/blender/makesrna/intern/rna_mesh.c +++ b/source/blender/makesrna/intern/rna_mesh.c @@ -798,7 +798,7 @@ static char *rna_MeshVertex_path(PointerRNA *ptr) static char *rna_MeshTextureFaceLayer_path(PointerRNA *ptr) { - return BLI_sprintfN("uv_textures[%s]", ((CustomDataLayer*)ptr->data)->name); + return BLI_sprintfN("uv_textures[\"%s\"]", ((CustomDataLayer*)ptr->data)->name); } static char *rna_CustomDataData_path(PointerRNA *ptr, char *collection, int type) @@ -813,7 +813,7 @@ static char *rna_CustomDataData_path(PointerRNA *ptr, char *collection, int type if(cdl->type == type) { b= ((char*)ptr->data - ((char*)cdl->data))/CustomData_sizeof(type); if(b >= 0 && b < me->totface) - return BLI_sprintfN("%s[%s].data[%d]", collection, cdl->name, b); + return BLI_sprintfN("%s[\"%s\"].data[%d]", collection, cdl->name, b); } } @@ -827,7 +827,7 @@ static char *rna_MeshTextureFace_path(PointerRNA *ptr) static char *rna_MeshColorLayer_path(PointerRNA *ptr) { - return BLI_sprintfN("vertex_colors[%s]", ((CustomDataLayer*)ptr->data)->name); + return BLI_sprintfN("vertex_colors[\"%s\"]", ((CustomDataLayer*)ptr->data)->name); } static char *rna_MeshColor_path(PointerRNA *ptr) @@ -842,7 +842,7 @@ static char *rna_MeshSticky_path(PointerRNA *ptr) static char *rna_MeshIntPropertyLayer_path(PointerRNA *ptr) { - return BLI_sprintfN("int_layers[%s]", ((CustomDataLayer*)ptr->data)->name); + return BLI_sprintfN("int_layers[\"%s\"]", ((CustomDataLayer*)ptr->data)->name); } static char *rna_MeshIntProperty_path(PointerRNA *ptr) @@ -852,7 +852,7 @@ static char *rna_MeshIntProperty_path(PointerRNA *ptr) static char *rna_MeshFloatPropertyLayer_path(PointerRNA *ptr) { - return BLI_sprintfN("float_layers[%s]", ((CustomDataLayer*)ptr->data)->name); + return BLI_sprintfN("float_layers[\"%s\"]", ((CustomDataLayer*)ptr->data)->name); } static char *rna_MeshFloatProperty_path(PointerRNA *ptr) @@ -862,7 +862,7 @@ static char *rna_MeshFloatProperty_path(PointerRNA *ptr) static char *rna_MeshStringPropertyLayer_path(PointerRNA *ptr) { - return BLI_sprintfN("string_layers[%s]", ((CustomDataLayer*)ptr->data)->name); + return BLI_sprintfN("string_layers[\"%s\"]", ((CustomDataLayer*)ptr->data)->name); } static char *rna_MeshStringProperty_path(PointerRNA *ptr) diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c index 36a370e8561..9ecea76ab0d 100644 --- a/source/blender/makesrna/intern/rna_object_force.c +++ b/source/blender/makesrna/intern/rna_object_force.c @@ -300,7 +300,7 @@ static char *rna_CollisionSettings_path(PointerRNA *ptr) Object *ob= (Object*)ptr->id.data; ModifierData *md = (ModifierData *)modifiers_findByType(ob, eModifierType_Collision); - return BLI_sprintfN("modifiers[%s].settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings", md->name); } static int rna_SoftBodySettings_use_edges_get(PointerRNA *ptr) @@ -417,7 +417,7 @@ static char *rna_SoftBodySettings_path(PointerRNA *ptr) Object *ob= (Object*)ptr->id.data; ModifierData *md = (ModifierData *)modifiers_findByType(ob, eModifierType_Softbody); - return BLI_sprintfN("modifiers[%s].settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings", md->name); } static int particle_id_check(PointerRNA *ptr) @@ -575,7 +575,7 @@ static char *rna_EffectorWeight_path(PointerRNA *ptr) if (md) { /* no pointer from modifier data to actual softbody storage, would be good to add */ if (ob->soft->effector_weights == ew) - return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings.effector_weights", md->name); } /* check cloth modifier */ @@ -584,7 +584,7 @@ static char *rna_EffectorWeight_path(PointerRNA *ptr) ClothModifierData *cmd = (ClothModifierData *)md; if (cmd->sim_parms->effector_weights == ew) - return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings.effector_weights", md->name); } /* check smoke modifier */ @@ -593,7 +593,7 @@ static char *rna_EffectorWeight_path(PointerRNA *ptr) SmokeModifierData *smd = (SmokeModifierData *)md; if (smd->domain->effector_weights == ew) - return BLI_sprintfN("modifiers[%s].settings.effector_weights", md->name); + return BLI_sprintfN("modifiers[\"%s\"].settings.effector_weights", md->name); } } return NULL; diff --git a/source/blender/makesrna/intern/rna_smoke.c b/source/blender/makesrna/intern/rna_smoke.c index c8193bb4005..e302ea90a8a 100644 --- a/source/blender/makesrna/intern/rna_smoke.c +++ b/source/blender/makesrna/intern/rna_smoke.c @@ -83,7 +83,7 @@ static char *rna_SmokeDomainSettings_path(PointerRNA *ptr) SmokeDomainSettings *settings = (SmokeDomainSettings*)ptr->data; ModifierData *md= (ModifierData *)settings->smd; - return BLI_sprintfN("modifiers[%s].domain_settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].domain_settings", md->name); } static char *rna_SmokeFlowSettings_path(PointerRNA *ptr) @@ -91,7 +91,7 @@ static char *rna_SmokeFlowSettings_path(PointerRNA *ptr) SmokeFlowSettings *settings = (SmokeFlowSettings*)ptr->data; ModifierData *md= (ModifierData *)settings->smd; - return BLI_sprintfN("modifiers[%s].flow_settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].flow_settings", md->name); } static char *rna_SmokeCollSettings_path(PointerRNA *ptr) @@ -99,7 +99,7 @@ static char *rna_SmokeCollSettings_path(PointerRNA *ptr) SmokeCollSettings *settings = (SmokeCollSettings*)ptr->data; ModifierData *md= (ModifierData *)settings->smd; - return BLI_sprintfN("modifiers[%s].coll_settings", md->name); + return BLI_sprintfN("modifiers[\"%s\"].coll_settings", md->name); } #else From 2a8ef208b2ca6d7d69f317847d1ce06a2a740c9a Mon Sep 17 00:00:00 2001 From: Jens Ole Wund Date: Wed, 4 Nov 2009 00:21:25 +0000 Subject: [PATCH 341/412] Soft bodies care for real time --- source/blender/blenkernel/intern/softbody.c | 95 +++++++++++---------- 1 file changed, 48 insertions(+), 47 deletions(-) diff --git a/source/blender/blenkernel/intern/softbody.c b/source/blender/blenkernel/intern/softbody.c index 599630fe0a0..6e986325f55 100644 --- a/source/blender/blenkernel/intern/softbody.c +++ b/source/blender/blenkernel/intern/softbody.c @@ -92,12 +92,13 @@ static int (*SB_localInterruptCallBack)(void) = NULL; /* ********** soft body engine ******* */ +typedef enum {SB_EDGE=1,SB_BEND=2,SB_STIFFQUAD=3} type_spring; typedef struct BodySpring { int v1, v2; - float len, strength, cf,load; + float len,cf,load; float ext_force[3]; /* edges colliding and sailing */ - short order; + type_spring springtype; short flag; } BodySpring; @@ -613,13 +614,11 @@ static void add_mesh_quad_diag_springs(Object *ob) if(mface->v4) { bs->v1= mface->v1; bs->v2= mface->v3; - bs->strength= s_shear; - bs->order =2; + bs->springtype =SB_STIFFQUAD; bs++; bs->v1= mface->v2; bs->v2= mface->v4; - bs->strength= s_shear; - bs->order =2; + bs->springtype =SB_STIFFQUAD; bs++; } @@ -670,8 +669,7 @@ static void add_2nd_order_roller(Object *ob,float stiffness,int *counter, int ad if (addsprings){ bs3->v1= v0; bs3->v2= bs2->v1; - bs3->strength= stiffness; - bs3->order=2; + bs3->springtype =SB_BEND; bs3++; } } @@ -680,8 +678,7 @@ static void add_2nd_order_roller(Object *ob,float stiffness,int *counter, int ad if (addsprings){ bs3->v1= v0; bs3->v2= bs2->v2; - bs3->strength= stiffness; - bs3->order=2; + bs3->springtype =SB_BEND; bs3++; } @@ -785,7 +782,7 @@ static void calculate_collision_balls(Object *ob) /* first estimation based on attached */ for(b=bp->nofsprings;b>0;b--){ bs = sb->bspring + bp->springs[b-1]; - if (bs->order == 1){ + if (bs->springtype == SB_EDGE){ akku += bs->len; akku_count++, min = MIN2(bs->len,min); @@ -1529,7 +1526,7 @@ static void _scan_for_ext_spring_forces(Scene *scene, Object *ob, float timenow, feedback[0]=feedback[1]=feedback[2]=0.0f; bs->flag &= ~BSF_INTERSECT; - if (bs->order ==1){ + if (bs->springtype == SB_EDGE){ /* +++ springs colliding */ if (ob->softflag & OB_SB_EDGECOLL){ if ( sb_detect_edge_collisionCached (sb->bpoint[bs->v1].pos , sb->bpoint[bs->v2].pos, @@ -2074,10 +2071,24 @@ static void sb_spring_force(Object *ob,int bpi,BodySpring *bs,float iks,float fo forcefactor = iks/bs->len; else forcefactor = iks; - kw = (bp1->springweight+bp2->springweight)/2.0f; - kw = kw * kw; - kw = kw * kw; - forcefactor *= bs->strength * kw; + kw = (bp1->springweight+bp2->springweight)/2.0f; + kw = kw * kw; + kw = kw * kw; + switch (bs->springtype){ + case SB_EDGE: + forcefactor *= kw; + break; + case SB_BEND: + forcefactor *=sb->secondspring*kw; + break; + case SB_STIFFQUAD: + forcefactor *=sb->shearstiff*sb->shearstiff* kw; + break; + default: + break; + } + + Vec3PlusStVec(bp1->force,(bs->len - distance)*forcefactor,dir); /* do bp1 <--> bp2 viscous */ @@ -3275,8 +3286,7 @@ static void mesh_to_softbody(Scene *scene, Object *ob) for(a=me->totedge; a>0; a--, medge++, bs++) { bs->v1= medge->v1; bs->v2= medge->v2; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; } @@ -3354,44 +3364,39 @@ static void makelatticesprings(Lattice *lt, BodySpring *bs, int dostiff,Object * if(w) { bs->v1 = bpc; bs->v2 = bpc-dw; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen((bp-dw)->vec, bp->vec,ob); bs++; } if(v) { bs->v1 = bpc; bs->v2 = bpc-dv; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen((bp-dv)->vec, bp->vec,ob); bs++; } if(u) { bs->v1 = bpuc; bs->v2 = bpc; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen((bpu)->vec, bp->vec,ob); bs++; } if (dostiff) { - if(w){ + if(w){ if( v && u ) { bs->v1 = bpc; bs->v2 = bpc-dw-dv-1; - bs->strength= 1.0; - bs->order=2; + bs->springtype=SB_BEND; bs->len= globallen((bp-dw-dv-1)->vec, bp->vec,ob); bs++; } if( (v < lt->pntsv-1) && (u) ) { bs->v1 = bpc; bs->v2 = bpc-dw+dv-1; - bs->strength= 1.0; - bs->order=2; + bs->springtype=SB_BEND; bs->len= globallen((bp-dw+dv-1)->vec, bp->vec,ob); bs++; } @@ -3401,16 +3406,14 @@ static void makelatticesprings(Lattice *lt, BodySpring *bs, int dostiff,Object * if( v && u ) { bs->v1 = bpc; bs->v2 = bpc+dw-dv-1; - bs->strength= 1.0; - bs->order=2; + bs->springtype=SB_BEND; bs->len= globallen((bp+dw-dv-1)->vec, bp->vec,ob); bs++; } if( (v < lt->pntsv-1) && (u) ) { bs->v1 = bpc; bs->v2 = bpc+dw+dv-1; - bs->strength= 1.0; - bs->order=2; + bs->springtype=SB_BEND; bs->len= globallen((bp+dw+dv-1)->vec, bp->vec,ob); bs++; } @@ -3520,22 +3523,19 @@ static void curve_surf_to_softbody(Scene *scene, Object *ob) if(a>0) { bs->v1= curindex-1; bs->v2= curindex; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen( (bezt-1)->vec[2], bezt->vec[0], ob ); bs++; } bs->v1= curindex; bs->v2= curindex+1; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen( bezt->vec[0], bezt->vec[1], ob ); bs++; - + bs->v1= curindex+1; bs->v2= curindex+2; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen( bezt->vec[1], bezt->vec[2], ob ); bs++; } @@ -3551,8 +3551,7 @@ static void curve_surf_to_softbody(Scene *scene, Object *ob) if(totspring && a>0) { bs->v1= curindex-1; bs->v2= curindex; - bs->strength= 1.0; - bs->order=1; + bs->springtype=SB_EDGE; bs->len= globallen( (bpnt-1)->vec, bpnt->vec , ob ); bs++; } @@ -3773,9 +3772,11 @@ static void softbody_step(Scene *scene, Object *ob, SoftBody *sb, float dtime) sst=PIL_check_seconds_timer(); - /* integration back in time is possible in theory, but pretty useless here - so refuse to do so */ - if(dtime < 0) return; + /* Integration back in time is possible in theory, but pretty useless here. + So we refuse to do so. Since we do not know anything about 'outside' canges + especially colliders we refuse to go more than 10 frames. + */ + if(dtime < 0 || dtime > 10.5f) return; ccd_update_deflector_hash(scene, ob, sb->scratch->colliderhash); @@ -3858,7 +3859,7 @@ static void softbody_step(Scene *scene, Object *ob, SoftBody *sb, float dtime) loops++; if(sb->solverflags & SBSO_MONITOR ){ sct=PIL_check_seconds_timer(); - if (sct-sst > 0.5f) printf("%3.0f%% \r",100.0f*timedone); + if (sct-sst > 0.5f) printf("%3.0f%% \r",100.0f*timedone/dtime); } /* ask for user break */ if (SB_localInterruptCallBack && SB_localInterruptCallBack()) break; @@ -4027,11 +4028,11 @@ void sbObjectStep(Scene *scene, Object *ob, float cfra, float (*vertexCos)[3], i /* checking time: */ dtime = framedelta*timescale; + /* do simulation */ softbody_step(scene, ob, sb, dtime); softbody_to_object(ob, vertexCos, numVerts, 0); - /* do simulation */ cache->simframe= framenr; cache->flag |= PTCACHE_SIMULATION_VALID; From 183e698af8f8e7a04eab1e5f2023aa9363543e3a Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 4 Nov 2009 03:01:39 +0000 Subject: [PATCH 342/412] Fix for [#19752] I cant get the particles to render as an object --- source/blender/makesrna/intern/rna_particle.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c index d261bda739e..6b0c8bee8ee 100644 --- a/source/blender/makesrna/intern/rna_particle.c +++ b/source/blender/makesrna/intern/rna_particle.c @@ -127,6 +127,12 @@ static void rna_Particle_redo(bContext *C, PointerRNA *ptr) particle_recalc(C, ptr, PSYS_RECALC_REDO); } +static void rna_Particle_redo_dependency(bContext *C, PointerRNA *ptr) +{ + DAG_scene_sort(CTX_data_scene(C)); + rna_Particle_redo(C, ptr); +} + static void rna_Particle_reset(bContext *C, PointerRNA *ptr) { particle_recalc(C, ptr, PSYS_RECALC_RESET); @@ -1713,7 +1719,7 @@ static void rna_def_particle_settings(BlenderRNA *brna) RNA_def_property_struct_type(prop, "Object"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Dupli Object", "Show this Object in place of particles."); - RNA_def_property_update(prop, 0, "rna_Particle_redo"); + RNA_def_property_update(prop, 0, "rna_Particle_redo_dependency"); prop= RNA_def_property(srna, "billboard_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "bb_ob"); From 7699dcaab887f2950e558ea51081948244e16560 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 4 Nov 2009 04:13:30 +0000 Subject: [PATCH 343/412] Fix for [#19460] (+) widgets to expand UI elements overlap other windows --- source/blender/editors/screen/area.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index 428f17886ec..be76e153fae 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -498,11 +498,16 @@ static void region_azone_edge(AZone *az, ARegion *ar) static void region_azone_icon(ScrArea *sa, AZone *az, ARegion *ar) { AZone *azt; + int tot=0; + + for(azt= sa->actionzones.first; azt; azt= azt->next) { + if(azt->edge == az->edge) tot++; + } if(az->edge=='t') { - az->x1= ar->winrct.xmax - AZONEPAD_ICON; + az->x1= ar->winrct.xmax - tot*2*AZONEPAD_ICON; az->y1= ar->winrct.ymax + AZONEPAD_ICON; - az->x2= ar->winrct.xmax - 2*AZONEPAD_ICON; + az->x2= ar->winrct.xmax - tot*AZONEPAD_ICON; az->y2= ar->winrct.ymax + 2*AZONEPAD_ICON; } else if(az->edge=='b') { @@ -513,15 +518,15 @@ static void region_azone_icon(ScrArea *sa, AZone *az, ARegion *ar) } else if(az->edge=='l') { az->x1= ar->winrct.xmin - 2*AZONEPAD_ICON; - az->y1= ar->winrct.ymax - 2*AZONEPAD_ICON; + az->y1= ar->winrct.ymax - tot*2*AZONEPAD_ICON; az->x2= ar->winrct.xmin - AZONEPAD_ICON; - az->y2= ar->winrct.ymax - AZONEPAD_ICON; + az->y2= ar->winrct.ymax - tot*AZONEPAD_ICON; } else { // if(az->edge=='r') { az->x1= ar->winrct.xmax + AZONEPAD_ICON; - az->y1= ar->winrct.ymax - 2*AZONEPAD_ICON; + az->y1= ar->winrct.ymax - tot*2*AZONEPAD_ICON; az->x2= ar->winrct.xmax + 2*AZONEPAD_ICON; - az->y2= ar->winrct.ymax - AZONEPAD_ICON; + az->y2= ar->winrct.ymax - tot*AZONEPAD_ICON; } BLI_init_rcti(&az->rect, az->x1, az->x2, az->y1, az->y2); From a799b6ee06d23ab5dfcaed4cc5ccae1f93557ac5 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 4 Nov 2009 05:31:42 +0000 Subject: [PATCH 344/412] Fix for [#19745] displacement modifier is messing up texture coordinates when using an object for texture coordinates Modifier was resetting object's imat to worldspace during render process, where it is assumed to be in camera space. --- source/blender/blenkernel/intern/modifier.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c index a445b6986f6..3c52dc0af84 100644 --- a/source/blender/blenkernel/intern/modifier.c +++ b/source/blender/blenkernel/intern/modifier.c @@ -3577,10 +3577,11 @@ static void get_texture_coords(DisplaceModifierData *dmd, Object *ob, { int i; int texmapping = dmd->texmapping; + float mapob_imat[4][4]; if(texmapping == MOD_DISP_MAP_OBJECT) { if(dmd->map_object) - Mat4Invert(dmd->map_object->imat, dmd->map_object->obmat); + Mat4Invert(mapob_imat, dmd->map_object->obmat); else /* if there is no map object, default to local */ texmapping = MOD_DISP_MAP_LOCAL; } @@ -3651,7 +3652,7 @@ static void get_texture_coords(DisplaceModifierData *dmd, Object *ob, case MOD_DISP_MAP_OBJECT: VECCOPY(*texco, *co); Mat4MulVecfl(ob->obmat, *texco); - Mat4MulVecfl(dmd->map_object->imat, *texco); + Mat4MulVecfl(mapob_imat, *texco); break; } } From 3c6b721fc90f5dc387c4493e0d78e77b728079b7 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 4 Nov 2009 05:45:57 +0000 Subject: [PATCH 345/412] Bugfix #19777: Owner Space not Target Space for Action Constraint was getting exposed via the UI. The former is useless and probably dangerous to enable here, while only the latter is useful for anything. --- .../scripts/ui/properties_object_constraint.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 3857a59edaf..3dd7a931316 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -88,7 +88,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): col = split.column() col.itemR(con, "chain_length") col.itemR(con, "targetless") - + def CHILD_OF(self, context, layout, con): self.target_template(layout, con) @@ -129,7 +129,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row.itemR(con, "target_z") self.space_template(layout, con) - + def IK(self, context, layout, con): if context.object.pose.ik_solver == "ITASC": layout.itemR(con, "ik_type") @@ -168,7 +168,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): sub = col.column() sub.active = con.rotation sub.itemR(con, "orient_weight", text="Rotation", slider=True) - + def IK_COPY_POSE(self, context, layout, con): self.target_template(layout, con) self.ik_template(layout, con) @@ -212,7 +212,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemR(con, "weight", text="Weight", slider=True) row.itemR(con, "distance", text="Distance", slider=True) - + def FOLLOW_PATH(self, context, layout, con): self.target_template(layout, con) @@ -310,7 +310,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemL(text="Convert:") row.itemR(con, "owner_space", text="") - + def LIMIT_SCALE(self, context, layout, con): split = layout.split() @@ -351,7 +351,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemL(text="Convert:") row.itemR(con, "owner_space", text="") - + def COPY_ROTATION(self, context, layout, con): self.target_template(layout, con) @@ -378,7 +378,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): layout.itemR(con, "offset") self.space_template(layout, con) - + def COPY_LOCATION(self, context, layout, con): self.target_template(layout, con) @@ -438,7 +438,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): row = layout.row() row.itemL(text="Convert:") - row.itemR(con, "owner_space", text="") + row.itemR(con, "target_space", text="") def LOCKED_TRACK(self, context, layout, con): self.target_template(layout, con) From e9ce90c23834e0f9154ab97326a55db62d62b4d7 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 4 Nov 2009 08:44:42 +0000 Subject: [PATCH 346/412] Fix bug #19699: point density texture doesn't save particle system. Non-ID pointers in DNA can only point to data from own ID block, so now instead it uses an index into the particle system list, but still exposed as a pointer through RNA. --- source/blender/blenkernel/intern/texture.c | 2 +- source/blender/blenloader/intern/readfile.c | 4 +-- source/blender/makesdna/DNA_texture_types.h | 4 +-- source/blender/makesrna/intern/rna_texture.c | 27 ++++++++++++++++++- .../render/intern/source/pointdensity.c | 9 ++++--- 5 files changed, 35 insertions(+), 11 deletions(-) diff --git a/source/blender/blenkernel/intern/texture.c b/source/blender/blenkernel/intern/texture.c index 33dfcfca76e..14460423999 100644 --- a/source/blender/blenkernel/intern/texture.c +++ b/source/blender/blenkernel/intern/texture.c @@ -1125,7 +1125,7 @@ PointDensity *BKE_add_pointdensity(void) pd->totpoints = 0; pd->coba = add_colorband(1); pd->object = NULL; - pd->psys = NULL; + pd->psys = 0; return pd; } diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index ebfa701be4e..00f7cbd9eeb 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -2882,10 +2882,8 @@ static void lib_link_texture(FileData *fd, Main *main) tex->ima= newlibadr_us(fd, tex->id.lib, tex->ima); tex->ipo= newlibadr_us(fd, tex->id.lib, tex->ipo); if(tex->env) tex->env->object= newlibadr(fd, tex->id.lib, tex->env->object); - if(tex->pd) { + if(tex->pd) tex->pd->object= newlibadr(fd, tex->id.lib, tex->pd->object); - tex->pd->psys= newlibadr(fd, tex->id.lib, tex->pd->psys); - } if(tex->vd) tex->vd->object= newlibadr(fd, tex->id.lib, tex->vd->object); if(tex->nodetree) diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h index a43e5c7ae13..eac7a97f0c0 100644 --- a/source/blender/makesdna/DNA_texture_types.h +++ b/source/blender/makesdna/DNA_texture_types.h @@ -159,12 +159,10 @@ typedef struct PointDensity { int pdpad; struct Object *object; /* for 'Object' or 'Particle system' type - source object */ - struct ParticleSystem *psys; + int psys; /* index+1 in ob.particlesystem, non-ID pointer not allowed */ short psys_cache_space; /* cache points in worldspace, object space, ... ? */ short ob_cache_space; /* cache points in worldspace, object space, ... ? */ - short pdpad2[2]; - void *point_tree; /* the acceleration tree containing points */ float *point_data; /* dynamically allocated extra for extra information, like particle age */ diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c index 5a18a7a987c..44e7d0f68d0 100644 --- a/source/blender/makesrna/intern/rna_texture.c +++ b/source/blender/makesrna/intern/rna_texture.c @@ -34,9 +34,11 @@ #include "DNA_brush_types.h" #include "DNA_lamp_types.h" #include "DNA_material_types.h" +#include "DNA_object_types.h" #include "DNA_texture_types.h" #include "DNA_world_types.h" #include "DNA_node_types.h" +#include "DNA_particle_types.h" #include "DNA_scene_types.h" /* MAXFRAME only */ #include "BKE_node.h" @@ -321,6 +323,29 @@ static EnumPropertyItem *rna_ImageTexture_filter_itemf(bContext *C, PointerRNA * return item; } +static PointerRNA rna_PointDensity_psys_get(PointerRNA *ptr) +{ + PointDensity *pd= ptr->data; + Object *ob= pd->object; + ParticleSystem *psys= NULL; + PointerRNA value; + + if(ob && pd->psys) + psys= BLI_findlink(&ob->particlesystem, pd->psys-1); + + RNA_pointer_create(&ob->id, &RNA_ParticleSystem, psys, &value); + return value; +} + +static void rna_PointDensity_psys_set(PointerRNA *ptr, PointerRNA value) +{ + PointDensity *pd= ptr->data; + Object *ob= pd->object; + + if(ob && value.id.data == ob) + pd->psys= BLI_findindex(&ob->particlesystem, value.data) + 1; +} + static char *rna_ColorRamp_path(PointerRNA *ptr) { /* handle the cases where a single datablock may have 2 ramp types */ @@ -1552,9 +1577,9 @@ static void rna_def_texture_pointdensity(BlenderRNA *brna) RNA_def_property_update(prop, 0, "rna_Texture_update"); prop= RNA_def_property(srna, "particle_system", PROP_POINTER, PROP_NONE); - RNA_def_property_pointer_sdna(prop, NULL, "psys"); RNA_def_property_ui_text(prop, "Particle System", "Particle System to render as points"); RNA_def_property_struct_type(prop, "ParticleSystem"); + RNA_def_property_pointer_funcs(prop, "rna_PointDensity_psys_get", "rna_PointDensity_psys_set", NULL); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_update(prop, 0, "rna_Texture_update"); diff --git a/source/blender/render/intern/source/pointdensity.c b/source/blender/render/intern/source/pointdensity.c index c1cca4e217a..2b3e6047af4 100644 --- a/source/blender/render/intern/source/pointdensity.c +++ b/source/blender/render/intern/source/pointdensity.c @@ -236,11 +236,14 @@ static void cache_pointdensity(Render *re, Tex *tex) if (pd->source == TEX_PD_PSYS) { Object *ob = pd->object; + ParticleSystem *psys; - if (!ob) return; - if (!pd->psys) return; + if (!ob || !pd->psys) return; + + psys= BLI_findlink(&ob->particlesystem, pd->psys-1); + if (!psys) return; - pointdensity_cache_psys(re, pd, ob, pd->psys); + pointdensity_cache_psys(re, pd, ob, psys); } else if (pd->source == TEX_PD_OBJECT) { Object *ob = pd->object; From 834e8aa868291bf29d8f63c7df8f88c92faf230f Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 4 Nov 2009 08:59:01 +0000 Subject: [PATCH 347/412] Fix bug #19749: browsing path in user preferences would crash. --- source/blender/editors/screen/screen_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c index 57319df23e1..eb8fa66670c 100644 --- a/source/blender/editors/screen/screen_edit.c +++ b/source/blender/editors/screen/screen_edit.c @@ -1511,7 +1511,7 @@ int ED_screen_full_newspace(bContext *C, ScrArea *sa, int type) if(!sa || sa->full==0) newsa= ed_screen_fullarea(C, win, sa); - else + if(!newsa) newsa= sa; ED_area_newspace(C, newsa, type); From ae37d92dbf8c79249b3fcf4f663e8254e55ac782 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 4 Nov 2009 09:20:31 +0000 Subject: [PATCH 348/412] Fix #19742: shape key crashes for curve & lattice. --- source/blender/blenkernel/intern/curve.c | 2 +- source/blender/editors/object/object_shapekey.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c index f31f4cd9753..5580070b922 100644 --- a/source/blender/blenkernel/intern/curve.c +++ b/source/blender/blenkernel/intern/curve.c @@ -2906,7 +2906,7 @@ void curve_applyVertexCos(Curve *cu, ListBase *lb, float (*vertexCos)[3]) float (*curve_getKeyVertexCos(Curve *cu, ListBase *lb, float *key))[3] { - int i, numVerts; + int i, numVerts = count_curveverts(lb); float *co, (*cos)[3] = MEM_mallocN(sizeof(*cos)*numVerts, "cu_vcos"); Nurb *nu; diff --git a/source/blender/editors/object/object_shapekey.c b/source/blender/editors/object/object_shapekey.c index c9fb3351af9..f52927a1a00 100644 --- a/source/blender/editors/object/object_shapekey.c +++ b/source/blender/editors/object/object_shapekey.c @@ -238,6 +238,7 @@ static void insert_lattkey(Scene *scene, Object *ob) if(key==NULL) { key= lt->key= add_key( (ID *)lt); key->type= KEY_RELATIVE; + newkey= 1; } kb= add_keyblock(scene, key); From 7fad20eff8f999e9a21557ebbac6def94b546010 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 4 Nov 2009 09:22:16 +0000 Subject: [PATCH 349/412] Fix #19533: Autoupdate check box not working for UV/Image Editor. --- source/blender/editors/transform/transform.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 2a2753436c2..7467f7880af 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -330,13 +330,9 @@ static void viewRedrawForce(bContext *C, TransInfo *t) } else if (t->spacetype==SPACE_IMAGE) { // XXX how to deal with lock? -#if 0 SpaceImage *sima= (SpaceImage*)t->sa->spacedata.first; - if(sima->lock) force_draw_plus(SPACE_VIEW3D, 0); - else force_draw(0); -#endif - - WM_event_add_notifier(C, NC_GEOM|ND_DATA, t->obedit->data); + if(sima->lock) WM_event_add_notifier(C, NC_GEOM|ND_DATA, t->obedit->data); + else ED_area_tag_redraw(t->sa); } } From de7da7c779163573d427eabc5a2925c71da646df Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 4 Nov 2009 09:45:37 +0000 Subject: [PATCH 350/412] Bugfixes for Adding Objects: * Auto enter EditMode for adding Armatures was broken * Adding a camera no longer tries to enter editmode, even though that's invalid... --- release/scripts/ui/space_info.py | 7 ++++++- source/blender/editors/object/object_add.c | 4 +++- source/blender/editors/object/object_edit.c | 1 + 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py index 51580fbc6ae..cb1112c9dac 100644 --- a/release/scripts/ui/space_info.py +++ b/release/scripts/ui/space_info.py @@ -187,7 +187,9 @@ class INFO_MT_add(bpy.types.Menu): layout.itemO("object.text_add", text="Text", icon='ICON_OUTLINER_OB_FONT') layout.itemS() - + + layout.operator_context = "INVOKE_SCREEN" + layout.itemO("object.armature_add", text="Armature", icon='ICON_OUTLINER_OB_ARMATURE') layout.item_enumO("object.add", "type", 'LATTICE', icon='ICON_OUTLINER_OB_LATTICE') layout.item_enumO("object.add", "type", 'EMPTY', icon='ICON_OUTLINER_OB_EMPTY') @@ -195,6 +197,9 @@ class INFO_MT_add(bpy.types.Menu): layout.itemS() layout.item_enumO("object.add", "type", 'CAMERA', icon='ICON_OUTLINER_OB_CAMERA') + + layout.operator_context = "EXEC_SCREEN" + layout.item_menu_enumO("object.lamp_add", "type", 'LAMP', text="Lamp", icon='ICON_OUTLINER_OB_LAMP') layout.itemS() diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 0a7b6daa854..4b0bfe10254 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -561,6 +561,7 @@ void OBJECT_OT_text_add(wmOperatorType *ot) ot->idname= "OBJECT_OT_text_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= object_add_text_exec; ot->poll= ED_operator_scene_editable; @@ -579,7 +580,7 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if ((obedit==NULL) || (obedit->type != OB_ARMATURE)) { - obedit= ED_object_add_type(C, OB_ARMATURE, view_align, TRUE); + ED_object_add_type(C, OB_ARMATURE, view_align, TRUE); ED_object_enter_editmode(C, 0); obedit= CTX_data_edit_object(C); newob = 1; @@ -615,6 +616,7 @@ void OBJECT_OT_armature_add(wmOperatorType *ot) ot->idname= "OBJECT_OT_armature_add"; /* api callbacks */ + ot->invoke= ED_object_add_generic_invoke; ot->exec= object_armature_add_exec; ot->poll= ED_operator_scene_editable; diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 470c59c77d9..e659cd70672 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -471,6 +471,7 @@ void ED_object_enter_editmode(bContext *C, int flag) } else { scene->obedit= NULL; // XXX for context + ob->mode &= ~OB_MODE_EDIT; WM_event_add_notifier(C, NC_SCENE|ND_MODE|NS_MODE_OBJECT, scene); } From b221e57fd2722eda1e1f3738106709d4574c4d00 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 4 Nov 2009 09:55:24 +0000 Subject: [PATCH 351/412] Second try at fixing this... the props were still not getting initialised in many cases, but this time because those were using the exec() callbacks which didn't set this. This fix ain't that nice, but at least the old functionality works again like 2.4x. --- source/blender/editors/object/object_add.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 4b0bfe10254..e1c23123b84 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -334,6 +334,8 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) Nurb *nu; int newob= 0, type= RNA_enum_get(op->ptr, "type"); int view_align, enter_editmode; + + object_add_generic_invoke_options(C, op); // XXX these props don't get set right when only exec() is called ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_CURVE) { @@ -417,6 +419,8 @@ static int object_add_surface_exec(bContext *C, wmOperator *op) Nurb *nu; int newob= 0; int view_align, enter_editmode; + + object_add_generic_invoke_options(C, op); // XXX these props don't get set right when only exec() is called ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_SURF) { @@ -476,6 +480,8 @@ static int object_metaball_add_exec(bContext *C, wmOperator *op) MetaElem *elem; int newob= 0; int view_align, enter_editmode; + + object_add_generic_invoke_options(C, op); // XXX these props don't get set right when only exec() is called ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_MBALL) { @@ -540,6 +546,8 @@ static int object_add_text_exec(bContext *C, wmOperator *op) { Object *obedit= CTX_data_edit_object(C); int view_align, enter_editmode; + + object_add_generic_invoke_options(C, op); // XXX these props don't get set right when only exec() is called ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit && obedit->type==OB_FONT) @@ -577,6 +585,8 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) RegionView3D *rv3d= NULL; int newob= 0; int view_align, enter_editmode; + + object_add_generic_invoke_options(C, op); // XXX these props don't get set right when only exec() is called ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if ((obedit==NULL) || (obedit->type != OB_ARMATURE)) { From 46c8bfe15182371b0f1a161726f27d5010ef3bbb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 10:25:57 +0000 Subject: [PATCH 352/412] Make Links (Ctrl+L) back - split into 2 operators: object.make_links_data() & object.make_links_scene since they are quite different. - added reusable functions RNA_group_itemf & RNA_scene_itemf which can be used for any operator that takes ID data (easy to add more types Mesh, Text etc) - DummyRNA_NULL_items for dynamic items so each operator need not define its own empty enum. --- release/scripts/ui/space_view3d.py | 15 + source/blender/editors/object/object_add.c | 30 +- source/blender/editors/object/object_intern.h | 2 + source/blender/editors/object/object_ops.c | 5 + .../blender/editors/object/object_relations.c | 266 +++++++++--------- source/blender/makesrna/RNA_enum_types.h | 7 + source/blender/makesrna/intern/rna_access.c | 5 + .../windowmanager/intern/wm_operators.c | 30 ++ 8 files changed, 192 insertions(+), 168 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index 33e2df11f8e..ba6f1c4740d 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -479,8 +479,10 @@ class VIEW3D_MT_object(bpy.types.Menu): layout.item_booleanO("object.duplicate", "linked", True, text="Duplicate Linked") layout.itemO("object.delete", text="Delete...") layout.itemO("object.proxy_make", text="Make Proxy...") + layout.itemM("VIEW3D_MT_make_links", text="Make Links...") layout.item_menu_enumO("object.make_local", "type", text="Make Local...") layout.itemM("VIEW3D_MT_make_single_user") + layout.itemM("VIEW3D_MT_make_links") layout.itemS() @@ -604,6 +606,18 @@ class VIEW3D_MT_make_single_user(bpy.types.Menu): props = layout.itemO("object.make_single_user", properties=True, text="Animation") props.animation = True + +class VIEW3D_MT_make_links(bpy.types.Menu): + bl_label = "Make Links" + + def draw(self, context): + layout = self.layout + + layout.item_menu_enumO("object.make_links_scene", "type", text="Objects to Scene...") + + layout.items_enumO("object.make_links_data", property="type") # inline + + # ********** Vertex paint menu ********** @@ -1600,6 +1614,7 @@ bpy.types.register(VIEW3D_MT_object_group) bpy.types.register(VIEW3D_MT_object_constraints) bpy.types.register(VIEW3D_MT_object_showhide) bpy.types.register(VIEW3D_MT_make_single_user) +bpy.types.register(VIEW3D_MT_make_links) bpy.types.register(VIEW3D_MT_sculpt) # Sculpt Menu diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index e1c23123b84..63bb3f87480 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -678,31 +678,8 @@ void OBJECT_OT_lamp_add(wmOperatorType *ot) ED_object_add_generic_props(ot, FALSE); } -/* add dupligroup */ -static EnumPropertyItem *add_dupligroup_itemf(bContext *C, PointerRNA *ptr, int *free) -{ - EnumPropertyItem *item= NULL, item_tmp; - int totitem= 0; - int i= 0; - Group *group; - - memset(&item_tmp, 0, sizeof(item_tmp)); - - for(group= CTX_data_main(C)->group.first; group; group= group->id.next) { - item_tmp.identifier= item_tmp.name= group->id.name+2; - item_tmp.value= i++; - RNA_enum_item_add(&item, &totitem, &item_tmp); - } - - RNA_enum_item_end(&item, &totitem); - *free= 1; - - return item; -} - static int group_instance_add_exec(bContext *C, wmOperator *op) { - /* XXX, using an enum for library lookups is a bit dodgy */ Group *group= BLI_findlink(&CTX_data_main(C)->group, RNA_enum_get(op->ptr, "type")); int view_align, enter_editmode; @@ -728,9 +705,6 @@ static int group_instance_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_group_instance_add(wmOperatorType *ot) { PropertyRNA *prop; - static EnumPropertyItem prop_group_dummy_types[] = { - {0, NULL, 0, NULL, NULL} - }; /* identifiers */ ot->name= "Add Group Instance"; @@ -746,8 +720,8 @@ void OBJECT_OT_group_instance_add(wmOperatorType *ot) ot->flag= 0; /* properties */ - prop= RNA_def_enum(ot->srna, "type", prop_group_dummy_types, 0, "Type", ""); - RNA_def_enum_funcs(prop, add_dupligroup_itemf); + prop= RNA_def_enum(ot->srna, "type", DummyRNA_NULL_items, 0, "Type", ""); + RNA_def_enum_funcs(prop, RNA_group_itemf); ED_object_add_generic_props(ot, FALSE); } diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index ebc36dddb33..8f27f0fbae4 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -60,6 +60,8 @@ void OBJECT_OT_slow_parent_set(struct wmOperatorType *ot); void OBJECT_OT_slow_parent_clear(struct wmOperatorType *ot); void OBJECT_OT_make_local(struct wmOperatorType *ot); void OBJECT_OT_make_single_user(struct wmOperatorType *ot); +void OBJECT_OT_make_links_scene(struct wmOperatorType *ot); +void OBJECT_OT_make_links_data(struct wmOperatorType *ot); void OBJECT_OT_move_to_layer(struct wmOperatorType *ot); /* object_edit.c */ diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index ab35320cc74..ccb6e8cdea3 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -92,6 +92,8 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_slow_parent_clear); WM_operatortype_append(OBJECT_OT_make_local); WM_operatortype_append(OBJECT_OT_make_single_user); + WM_operatortype_append(OBJECT_OT_make_links_scene); + WM_operatortype_append(OBJECT_OT_make_links_data); WM_operatortype_append(OBJECT_OT_move_to_layer); WM_operatortype_append(OBJECT_OT_select_inverse); @@ -290,6 +292,9 @@ void ED_keymap_object(wmKeyConfig *keyconf) kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", UKEY, KM_PRESS, 0, 0); RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_make_single_user"); + + kmi= WM_keymap_add_item(keymap, "WM_OT_call_menu", LKEY, KM_PRESS, KM_CTRL, 0); + RNA_string_set(kmi->ptr, "name", "VIEW3D_MT_make_links"); WM_keymap_add_item(keymap, "OBJECT_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0); WM_keymap_add_item(keymap, "OBJECT_OT_duplicate_move_linked", DKEY, KM_PRESS, KM_ALT, 0); diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 6849cefbbd9..cbd1e1be8d5 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -72,6 +72,7 @@ #include "BKE_object.h" #include "BKE_report.h" #include "BKE_sca.h" +#include "BKE_scene.h" #include "BKE_texture.h" #include "BKE_utildefines.h" @@ -83,6 +84,7 @@ #include "RNA_access.h" #include "RNA_define.h" +#include "RNA_enum_types.h" #include "ED_anim_api.h" #include "ED_armature.h" @@ -92,10 +94,6 @@ #include "object_intern.h" -/* ************* XXX **************** */ -static int pupmenu(const char *msg) {return 0;} -static int pupmenu_col(const char *msg, int val) {return 0;} - /*********************** Make Vertex Parent Operator ************************/ static int vertex_parent_set_poll(bContext *C) @@ -1132,97 +1130,77 @@ void link_to_scene(unsigned short nr) #endif } - -void make_links(bContext *C, wmOperator *op, Scene *scene, View3D *v3d, short event) +static int make_links_scene_exec(bContext *C, wmOperator *op) { - Object *ob, *obt; - Base *base, *nbase, *sbase; - Scene *sce = NULL; - ID *id; - int a; - short nr=0; - char *strp; + Scene *scene_to= BLI_findlink(&CTX_data_main(C)->scene, RNA_enum_get(op->ptr, "type")); - if(!(ob=OBACT)) return; - - if(event==1) { - IDnames_to_pupstring(&strp, NULL, NULL, &(G.main->scene), 0, &nr); - - if(nr == -2) { - MEM_freeN(strp); - -// XXX activate_databrowse((ID *)scene, ID_SCE, 0, B_INFOSCE, &(G.curscreen->scenenr), link_to_scene ); - - return; - } - else { - event= pupmenu_col(strp, 20); - MEM_freeN(strp); - - if(event<= 0) return; - - nr= 1; - sce= G.main->scene.first; - while(sce) { - if(nr==event) break; - nr++; - sce= sce->id.next; - } - if(sce==scene) { - BKE_report(op->reports, RPT_ERROR, "This is the current scene"); - return; - } - if(sce==0 || sce->id.lib) return; - - /* remember: is needed below */ - event= 1; - } + if(scene_to==NULL) { + BKE_report(op->reports, RPT_ERROR, "Scene not found"); + return OPERATOR_CANCELLED; } - /* All non group linking */ - for(base= FIRSTBASE; base; base= base->next) { - if(event==1 || base != BASACT) { - - obt= base->object; + if(scene_to == CTX_data_scene(C)) { + BKE_report(op->reports, RPT_ERROR, "Can't link objects into the same scene"); + return OPERATOR_CANCELLED; + } - if(TESTBASE(v3d, base)) { - - if(event==1) { /* to scene */ - - /* test if already linked */ - sbase= sce->base.first; - while(sbase) { - if(sbase->object==base->object) break; - sbase= sbase->next; - } - if(sbase) { /* remove */ - continue; - } - - nbase= MEM_mallocN( sizeof(Base), "newbase"); - *nbase= *base; - BLI_addhead( &(sce->base), nbase); - id_us_plus((ID *)base->object); + CTX_DATA_BEGIN(C, Base*, base, selected_bases) + { + if(!object_in_scene(base->object, scene_to)) { + Base *nbase= MEM_mallocN( sizeof(Base), "newbase"); + *nbase= *base; + BLI_addhead( &(scene_to->base), nbase); + id_us_plus((ID *)base->object); + } + } + CTX_DATA_END; + + ED_anim_dag_flush_update(C); + + /* one day multiple scenes will be visible, then we should have some update function for them */ + return OPERATOR_FINISHED; +} + +enum { + MAKE_LINKS_OBDATA = 1, + MAKE_LINKS_MATERIALS, + MAKE_LINKS_ANIMDATA, + MAKE_LINKS_DUPLIGROUP, +}; + +static int make_links_data_exec(bContext *C, wmOperator *op) +{ + int event = RNA_int_get(op->ptr, "type"); + Object *ob; + ID *id; + int a; + + ob= CTX_data_active_object(C); + + CTX_DATA_BEGIN(C, Object*, obt, selected_editable_objects) { + if(ob != obt) { + switch(event) { + case MAKE_LINKS_OBDATA: /* obdata */ + id= obt->data; + id->us--; + + id= ob->data; + id_us_plus(id); + obt->data= id; + + /* if amount of material indices changed: */ + test_object_materials(obt->data); + + obt->recalc |= OB_RECALC_DATA; + break; + case MAKE_LINKS_MATERIALS: + /* new approach, using functions from kernel */ + for(a=0; atotcol; a++) { + Material *ma= give_current_material(ob, a+1); + assign_material(obt, ma, a+1); /* also works with ma==NULL */ } - } - if(TESTBASELIB(v3d, base)) { - if(event==2 || event==5) { /* obdata */ - if(ob->type==obt->type) { - - id= obt->data; - id->us--; - - id= ob->data; - id_us_plus(id); - obt->data= id; - - /* if amount of material indices changed: */ - test_object_materials(obt->data); - - obt->recalc |= OB_RECALC_DATA; - } - } - else if(event==4) { /* ob ipo */ + break; + case MAKE_LINKS_ANIMDATA: #if 0 // XXX old animation system if(obt->ipo) obt->ipo->id.us--; obt->ipo= ob->ipo; @@ -1231,67 +1209,75 @@ void make_links(bContext *C, wmOperator *op, Scene *scene, View3D *v3d, short ev do_ob_ipo(scene, obt); } #endif // XXX old animation system + break; + case MAKE_LINKS_DUPLIGROUP: + if(ob->dup_group) ob->dup_group->id.us--; + obt->dup_group= ob->dup_group; + if(obt->dup_group) { + id_us_plus((ID *)obt->dup_group); + obt->transflag |= OB_DUPLIGROUP; } - else if(event==6) { - if(ob->dup_group) ob->dup_group->id.us--; - obt->dup_group= ob->dup_group; - if(obt->dup_group) { - id_us_plus((ID *)obt->dup_group); - obt->transflag |= OB_DUPLIGROUP; - } - } - else if(event==3) { /* materials */ - - /* new approach, using functions from kernel */ - for(a=0; atotcol; a++) { - Material *ma= give_current_material(ob, a+1); - assign_material(obt, ma, a+1); /* also works with ma==NULL */ - } - } + break; } } } - - ED_anim_dag_flush_update(C); + CTX_DATA_END; + ED_anim_dag_flush_update(C); + WM_event_add_notifier(C, NC_SPACE|ND_SPACE_VIEW3D, CTX_wm_view3d(C)); + return OPERATOR_FINISHED; } -void make_links_menu(bContext *C, Scene *scene, View3D *v3d) + +void OBJECT_OT_make_links_scene(wmOperatorType *ot) { - Object *ob; - short event=0; - char str[140]; - - if(!(ob=OBACT)) return; - - strcpy(str, "Make Links %t|To Scene...%x1|%l|Object Ipo%x4"); - - if(ob->type==OB_MESH) - strcat(str, "|Mesh Data%x2|Materials%x3"); - else if(ob->type==OB_CURVE) - strcat(str, "|Curve Data%x2|Materials%x3"); - else if(ob->type==OB_FONT) - strcat(str, "|Text Data%x2|Materials%x3"); - else if(ob->type==OB_SURF) - strcat(str, "|Surface Data%x2|Materials%x3"); - else if(ob->type==OB_MBALL) - strcat(str, "|Materials%x3"); - else if(ob->type==OB_CAMERA) - strcat(str, "|Camera Data%x2"); - else if(ob->type==OB_LAMP) - strcat(str, "|Lamp Data%x2"); - else if(ob->type==OB_LATTICE) - strcat(str, "|Lattice Data%x2"); - else if(ob->type==OB_ARMATURE) - strcat(str, "|Armature Data%x2"); - - event= pupmenu(str); - - if(event<= 0) return; - - make_links(C, NULL, scene, v3d, event); + PropertyRNA *prop; + + /* identifiers */ + ot->name= "Link Objects to Scene"; + ot->description = "Make linked data local to each object."; + ot->idname= "OBJECT_OT_make_links_scene"; + + /* api callbacks */ + ot->exec= make_links_scene_exec; + /* better not run the poll check */ + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ + prop= RNA_def_enum(ot->srna, "type", DummyRNA_NULL_items, 0, "Type", ""); + RNA_def_enum_funcs(prop, RNA_scene_itemf); } +void OBJECT_OT_make_links_data(wmOperatorType *ot) +{ + static EnumPropertyItem make_links_items[]= { + {MAKE_LINKS_OBDATA, "OBDATA", 0, "Object Data", ""}, + {MAKE_LINKS_MATERIALS, "MATERIAL", 0, "Materials", ""}, + {MAKE_LINKS_ANIMDATA, "ANIMATION", 0, "Animation Data", ""}, + {MAKE_LINKS_DUPLIGROUP, "DUPLIGROUP", 0, "DupliGroup", ""}, + {0, NULL, 0, NULL, NULL}}; + + PropertyRNA *prop; + + /* identifiers */ + ot->name= "Link Data"; + ot->description = "Make links from the active object to other selected objects."; + ot->idname= "OBJECT_OT_make_links_data"; + + /* api callbacks */ + ot->exec= make_links_data_exec; + ot->poll= ED_operator_scene_editable; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ + prop= RNA_def_enum(ot->srna, "type", make_links_items, 0, "Type", ""); +} + + /**************************** Make Single User ********************************/ static void single_object_users__forwardModifierLinks(void *userData, Object *ob, Object **obpoin) diff --git a/source/blender/makesrna/RNA_enum_types.h b/source/blender/makesrna/RNA_enum_types.h index ca44e3405f6..318178d1522 100644 --- a/source/blender/makesrna/RNA_enum_types.h +++ b/source/blender/makesrna/RNA_enum_types.h @@ -31,6 +31,8 @@ extern EnumPropertyItem id_type_items[]; +/* use in cases where only dynamic types are used */ +extern EnumPropertyItem DummyRNA_NULL_items[]; extern EnumPropertyItem object_mode_items[]; @@ -69,6 +71,11 @@ struct bContext; struct PointerRNA; EnumPropertyItem *rna_TransformOrientation_itemf(struct bContext *C, struct PointerRNA *ptr, int *free); +/* Generic functions, return an enum from library data, index is the position + * in the linked list can add more for different types as needed */ +EnumPropertyItem *RNA_group_itemf(struct bContext *C, struct PointerRNA *ptr, int *free); +EnumPropertyItem *RNA_scene_itemf(struct bContext *C, struct PointerRNA *ptr, int *free); + #endif /* RNA_ENUM_TYPES */ diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index f0aaceec4aa..93e83492efa 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -734,6 +734,11 @@ StructRNA *RNA_property_pointer_type(PointerRNA *ptr, PropertyRNA *prop) return &RNA_UnknownType; } +/* Reuse for dynamic types */ +EnumPropertyItem DummyRNA_NULL_items[] = { + {0, NULL, 0, NULL, NULL} +}; + void RNA_property_enum_items(bContext *C, PointerRNA *ptr, PropertyRNA *prop, EnumPropertyItem **item, int *totitem, int *free) { EnumPropertyRNA *eprop= (EnumPropertyRNA*)rna_ensure_property(prop); diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 743a4ceebe8..db09619046e 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2446,3 +2446,33 @@ void wm_window_keymap(wmKeyConfig *keyconf) RNA_string_set(km->ptr, "value", "DOPESHEET_EDITOR"); } +/* Generic itemf's for operators that take library args */ +static EnumPropertyItem *rna_id_itemf(bContext *C, PointerRNA *ptr, int *free, ID *id) +{ + EnumPropertyItem *item= NULL, item_tmp; + int totitem= 0; + int i= 0; + + memset(&item_tmp, 0, sizeof(item_tmp)); + + for( ; id; id= id->next) { + item_tmp.identifier= item_tmp.name= id->name+2; + item_tmp.value= i++; + RNA_enum_item_add(&item, &totitem, &item_tmp); + } + + RNA_enum_item_end(&item, &totitem); + *free= 1; + + return item; +} + +/* can add more */ +EnumPropertyItem *RNA_group_itemf(bContext *C, PointerRNA *ptr, int *free) +{ + rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->group.first); +} +EnumPropertyItem *RNA_scene_itemf(bContext *C, PointerRNA *ptr, int *free) +{ + rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->scene.first); +} From 20c424730e968d21ab222852441e24eaf9dfd420 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 4 Nov 2009 11:30:48 +0000 Subject: [PATCH 353/412] Spline IK: Rolling Control Recoded the way that Spline-IK computes the x+z axes of the bones so that flipping artifacts are minimised, and the rotation of individual bones can be used to affect the results of the solution, as per requests from Cessen. The bone matrices are now computed normally, and then made to conform to the orientation + scaling imposed by the splines, using the Damped-Track method. Previously, the axes of the bones were calculated without regarding the prior orientation of other bones in the chain, which lead to "z-twists". Notes for further investigation: - There appears to be some shearing that gets introduced now. Unforunately, I can't seem to isolate the cause of this, but I hope it's not going to become too much of a problem in general. - Maybe inverse corrections for rotation will now be necessary when using transform tools? --- source/blender/blenkernel/intern/armature.c | 155 ++++++++++---------- 1 file changed, 80 insertions(+), 75 deletions(-) diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 62c4143632c..3a8a3d4efc9 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -1689,7 +1689,9 @@ static void splineik_init_tree_from_pchan(Object *ob, bPoseChannel *pchan_tip) /* setup new empty array for the points list */ if (ikData->points) MEM_freeN(ikData->points); - ikData->numpoints= (ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT)? ikData->chainlen : ikData->chainlen+1; + // NOTE: just do chainlen+1 always for now, since we may get crashes otherwise + //ikData->numpoints= (ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT)? ikData->chainlen : ikData->chainlen+1; + ikData->numpoints= ikData->chainlen+1; ikData->points= MEM_callocN(sizeof(float)*ikData->numpoints, "Spline IK Binding"); /* perform binding of the joints to parametric positions along the curve based @@ -1804,106 +1806,109 @@ static void splineik_init_tree(Scene *scene, Object *ob, float ctime) static void splineik_evaluate_bone(tSplineIK_Tree *tree, Scene *scene, Object *ob, bPoseChannel *pchan, int index, float ctime) { bSplineIKConstraint *ikData= tree->ikData; - float dirX[3]={1,0,0}, dirZ[3]={0,0,1}; - float axis1[3], axis2[3], tmpVec[3]; + float poseHead[3], poseTail[3], poseMat[4][4]; float splineVec[3], scaleFac; float rad, radius=1.0f; float vec[4], dir[3]; - /* step 1: get xyz positions for the endpoints of the bone - * assume that they can be calculated on the path so that these calls will never fail - */ - /* tail */ + /* firstly, calculate the bone matrix the standard way, since this is needed for roll control */ + where_is_pose_bone(scene, ob, pchan, ctime); + + VECCOPY(poseHead, pchan->pose_head); + VECCOPY(poseTail, pchan->pose_tail); + + /* step 1a: get xyz positions for the tail endpoint of the bone */ if ( where_on_path(ikData->tar, tree->points[index], vec, dir, NULL, &rad) ) { /* convert the position to pose-space, then store it */ Mat4MulVecfl(ob->imat, vec); - VECCOPY(pchan->pose_tail, vec); + VECCOPY(poseTail, vec); /* set the new radius */ radius= rad; } - /* head - * - check that this isn't the last bone that is subject to restrictions - * i.e. if no-root option is enabled, the root should be calculated in the standard way - */ - if ((ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT)==0 || (index+1 < ikData->chainlen)) - { - /* the head location of this bone is driven by the spline */ - if ( where_on_path(ikData->tar, tree->points[index+1], vec, dir, NULL, &rad) ) { - /* store the position, and convert it to pose space */ - Mat4MulVecfl(ob->imat, vec); - VECCOPY(pchan->pose_head, vec); - - /* set the new radius (it should be the average value) */ - radius = (radius+rad) / 2; - } - } - else { - // FIXME: this option isn't really useful yet... - // maybe we are more interested in the head deltas that arise from this instead? - /* use the standard calculations for this */ - where_is_pose_bone(scene, ob, pchan, ctime); + + /* step 1b: get xyz positions for the head endpoint of the bone */ + /* firstly, calculate the position that the path suggests */ + if ( where_on_path(ikData->tar, tree->points[index+1], vec, dir, NULL, &rad) ) { + /* store the position, and convert it to pose space */ + Mat4MulVecfl(ob->imat, vec); + VECCOPY(poseHead, vec); - /* hack: assume for now that the pose_tail vector is still valid from the previous step, - * and set that again now so that the chain doesn't get broken - */ - VECCOPY(pchan->pose_tail, vec); + /* set the new radius (it should be the average value) */ + radius = (radius+rad) / 2; + } + if ((ikData->flag & CONSTRAINT_SPLINEIK_NO_ROOT) && (pchan == tree->root)) + { + // this is the root bone, and it can be controlled however we like... + // TODO: how do we calculate the offset of the root, if we don't even know the binding? + VECCOPY(poseHead, pchan->pose_head); } - - /* step 2a: determine the implied transform from these endpoints + /* step 2: determine the implied transform from these endpoints * - splineVec: the vector direction that the spline applies on the bone * - scaleFac: the factor that the bone length is scaled by to get the desired amount */ - VecSubf(splineVec, pchan->pose_tail, pchan->pose_head); - scaleFac= VecLength(splineVec) / pchan->bone->length; // TODO: this will need to be modified by blending factor + VecSubf(splineVec, poseTail, poseHead); + scaleFac= VecLength(splineVec) / pchan->bone->length; - /* step 2b: the spline vector now becomes the y-axis of the bone - * - we need to normalise the splineVec first, so that it's just a unit direction vector + /* step 3: compute the shortest rotation needed to map from the bone rotation to the current axis + * - this uses the same method as is used for the Damped Track Constraint (see the code there for details) */ - Mat4One(pchan->pose_mat); - - Normalize(splineVec); - VECCOPY(pchan->pose_mat[1], splineVec); - - - /* step 3a: determine two vectors which will both be at right angles to the bone vector - * based on the "Gram Schmidt process" for finding a set of Orthonormal Vectors, described at - * http://ltcconline.net/greenl/courses/203/Vectors/orthonormalBases.htm - * and normalise them to make sure they will behave nicely (as unit vectors) - */ - /* x-axis = dirX - projection(dirX onto splineVec) */ - Projf(axis1, dirX, splineVec); /* project dirX onto splineVec */ - VecSubf(pchan->pose_mat[0], dirX, axis1); - - Normalize(pchan->pose_mat[0]); - - /* z-axis = dirZ - projection(dirZ onto splineVec) - projection(dirZ onto dirX) */ - Projf(axis1, dirZ, splineVec); /* project dirZ onto Y-Axis */ - Projf(axis2, dirZ, pchan->pose_mat[0]); /* project dirZ onto X-Axis */ - - VecSubf(tmpVec, dirZ, axis1); /* dirZ - proj(dirZ->YAxis) */ - VecSubf(pchan->pose_mat[2], tmpVec, axis2); /* (dirZ - proj(dirZ->YAxis)) - proj(dirZ->XAxis) */ - - Normalize(pchan->pose_mat[2]); - - /* step 3b: rotate these axes for roll control and also to minimise flipping rotations */ - // NOTE: for controlling flipping rotations, we could look to the curve for guidance... - // TODO: code me! - + { + float dmat[3][3], rmat[3][3], tmat[3][3]; + float raxis[3], rangle; + + /* compute the raw rotation matrix from the bone's current matrix by extracting only the + * orientation-relevant axes, and normalising them + */ + VECCOPY(rmat[0], pchan->pose_mat[0]); + VECCOPY(rmat[1], pchan->pose_mat[1]); + VECCOPY(rmat[2], pchan->pose_mat[2]); + Mat3Ortho(rmat); + + /* also, normalise the orientation imposed by the bone, now that we've extracted the scale factor */ + Normalize(splineVec); + + /* calculate smallest axis-angle rotation necessary for getting from the + * current orientation of the bone, to the spline-imposed direction + */ + Crossf(raxis, rmat[1], splineVec); + + rangle= Inpf(rmat[1], splineVec); + rangle= acos( MAX2(-1.0f, MIN2(1.0f, rangle)) ); + + /* construct rotation matrix from the axis-angle rotation found above + * - this call takes care to make sure that the axis provided is a unit vector first + */ + AxisAngleToMat3(raxis, rangle, dmat); + + /* combine these rotations so that the y-axis of the bone is now aligned as the spline dictates, + * while still maintaining roll control from the existing bone animation + */ + Mat3MulMat3(tmat, dmat, rmat); // m1, m3, m2 + Mat3Ortho(tmat); /* attempt to reduce shearing, though I doubt this'll really help too much now... */ + Mat4CpyMat3(poseMat, tmat); + } /* step 4: set the scaling factors for the axes */ + { /* only multiply the y-axis by the scaling factor to get nice volume-preservation */ - VecMulf(pchan->pose_mat[1], scaleFac); - + VecMulf(poseMat[1], scaleFac); + /* set the scaling factors of the x and z axes from the average radius of the curve? */ - if (ikData->flag & CONSTRAINT_SPLINEIK_RAD2FAT) { - VecMulf(pchan->pose_mat[0], radius); - VecMulf(pchan->pose_mat[2], radius); + if (ikData->flag & CONSTRAINT_SPLINEIK_RAD2FAT) { + VecMulf(poseMat[0], radius); + VecMulf(poseMat[2], radius); + } } /* step 5: set the location of the bone in the matrix */ - VECCOPY(pchan->pose_mat[3], pchan->pose_head); + VECCOPY(poseMat[3], pchan->pose_head); + + /* finally, store the new transform */ + Mat4CpyMat4(pchan->pose_mat, poseMat); + VECCOPY(pchan->pose_head, poseHead); + VECCOPY(pchan->pose_tail, poseTail); /* done! */ pchan->flag |= POSE_DONE; From 510aa6ba53e2808c02f078a525b91391c2ccce26 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 12:09:02 +0000 Subject: [PATCH 354/412] particle vertex group UI Changed RNA vgroup access to use strings (string functions adjust the ints used internally) --- release/scripts/ui/properties_particle.py | 81 +++++----- source/blender/makesdna/DNA_particle_types.h | 2 +- source/blender/makesrna/intern/rna_particle.c | 141 +++++++++++++++--- 3 files changed, 161 insertions(+), 63 deletions(-) diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py index eddf8158c23..e9cc541c807 100644 --- a/release/scripts/ui/properties_particle.py +++ b/release/scripts/ui/properties_particle.py @@ -930,63 +930,64 @@ class PARTICLE_PT_vertexgroups(ParticleButtonsPanel): def draw(self, context): layout = self.layout + ob = context.object psys = context.particle_system part = psys.settings - layout.itemL(text="Nothing here yet.") + # layout.itemL(text="Nothing here yet.") - #row = layout.row() - #row.itemL(text="Vertex Group") - #row.itemL(text="Negate") + row = layout.row() + row.itemL(text="Vertex Group") + row.itemL(text="Negate") - #row = layout.row() - #row.itemR(psys, "vertex_group_density") - #row.itemR(psys, "vertex_group_density_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_density", ob, "vertex_groups", text="Density") + row.itemR(psys, "vertex_group_density_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_velocity") - #row.itemR(psys, "vertex_group_velocity_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_velocity", ob, "vertex_groups", text="Velocity") + row.itemR(psys, "vertex_group_velocity_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_length") - #row.itemR(psys, "vertex_group_length_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_length", ob, "vertex_groups", text="Length") + row.itemR(psys, "vertex_group_length_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_clump") - #row.itemR(psys, "vertex_group_clump_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_clump", ob, "vertex_groups", text="Clump") + row.itemR(psys, "vertex_group_clump_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_kink") - #row.itemR(psys, "vertex_group_kink_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_kink", ob, "vertex_groups", text="Kink") + row.itemR(psys, "vertex_group_kink_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness1") - #row.itemR(psys, "vertex_group_roughness1_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_roughness1", ob, "vertex_groups", text="Roughness 1") + row.itemR(psys, "vertex_group_roughness1_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness2") - #row.itemR(psys, "vertex_group_roughness2_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_roughness2", ob, "vertex_groups", text="Roughness 2") + row.itemR(psys, "vertex_group_roughness2_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_roughness_end") - #row.itemR(psys, "vertex_group_roughness_end_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_roughness_end", ob, "vertex_groups", text="Roughness End") + row.itemR(psys, "vertex_group_roughness_end_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_size") - #row.itemR(psys, "vertex_group_size_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_size", ob, "vertex_groups", text="Size") + row.itemR(psys, "vertex_group_size_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_tangent") - #row.itemR(psys, "vertex_group_tangent_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_tangent", ob, "vertex_groups", text="Tangent") + row.itemR(psys, "vertex_group_tangent_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_rotation") - #row.itemR(psys, "vertex_group_rotation_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_rotation", ob, "vertex_groups", text="Rotation") + row.itemR(psys, "vertex_group_rotation_negate", text="") - #row = layout.row() - #row.itemR(psys, "vertex_group_field") - #row.itemR(psys, "vertex_group_field_negate", text="") + row = layout.row() + row.item_pointerR(psys, "vertex_group_field", ob, "vertex_groups", text="Field") + row.itemR(psys, "vertex_group_field_negate", text="") bpy.types.register(PARTICLE_PT_particles) bpy.types.register(PARTICLE_PT_hair_dynamics) diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h index 157767e1d13..0de48c54fe2 100644 --- a/source/blender/makesdna/DNA_particle_types.h +++ b/source/blender/makesdna/DNA_particle_types.h @@ -231,7 +231,7 @@ typedef struct ParticleSystem{ /* note, make sure all (runtime) are NULL's in char bb_uvname[3][32]; /* billboard uv name */ /* if you change these remember to update array lengths to PSYS_TOT_VG! */ - short vgroup[12], vg_neg, rt3; /* vertex groups */ + short vgroup[12], vg_neg, rt3; /* vertex groups, 0==disable, 1==starting index */ /* temporary storage during render */ void *renderdata; diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c index 6b0c8bee8ee..a70a5572ef0 100644 --- a/source/blender/makesrna/intern/rna_particle.c +++ b/source/blender/makesrna/intern/rna_particle.c @@ -98,6 +98,7 @@ EnumPropertyItem part_hair_ren_as_items[] = { #include "BKE_context.h" #include "BKE_cloth.h" +#include "BKE_deform.h" #include "BKE_depsgraph.h" #include "BKE_effect.h" #include "BKE_modifier.h" @@ -553,6 +554,93 @@ static PointerRNA rna_Particle_field2_get(PointerRNA *ptr) return rna_pointer_inherit_refine(ptr, &RNA_FieldSettings, part->pd2); } +static void psys_vg_name_get__internal(PointerRNA *ptr, char *value, int index) +{ + Object *ob= ptr->id.data; + ParticleSystem *psys= (ParticleSystem*)ptr->data; + + if(psys->vgroup[index] > 0) { + bDeformGroup *defGroup= BLI_findlink(&ob->defbase, psys->vgroup[index]-1); + + if(defGroup) { + strcpy(value, defGroup->name); + return; + } + } + + value[0]= '\0'; +} +static int psys_vg_name_len__internal(PointerRNA *ptr, int index) +{ + Object *ob= ptr->id.data; + ParticleSystem *psys= (ParticleSystem*)ptr->data; + + if(psys->vgroup[index] > 0) { + bDeformGroup *defGroup= BLI_findlink(&ob->defbase, psys->vgroup[index]-1); + + if(defGroup) { + return strlen(defGroup->name); + } + } + return 0; +} +static void psys_vg_name_set__internal(PointerRNA *ptr, const char *value, int index) +{ + Object *ob= ptr->id.data; + ParticleSystem *psys= (ParticleSystem*)ptr->data; + + if(value[0]=='\0') { + psys->vgroup[index]= 0; + } + else { + int vgroup_num = get_named_vertexgroup_num(ob, value); + + if(vgroup_num == -1) + return; + + psys->vgroup[index]= vgroup_num + 1; + } +} + +/* irritating string functions for each index :/ */ +static void rna_ParticleVGroup_name_get_0(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 0); } +static void rna_ParticleVGroup_name_get_1(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 1); } +static void rna_ParticleVGroup_name_get_2(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 2); } +static void rna_ParticleVGroup_name_get_3(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 3); } +static void rna_ParticleVGroup_name_get_4(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 4); } +static void rna_ParticleVGroup_name_get_5(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 5); } +static void rna_ParticleVGroup_name_get_6(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 6); } +static void rna_ParticleVGroup_name_get_7(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 7); } +static void rna_ParticleVGroup_name_get_8(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 8); } +static void rna_ParticleVGroup_name_get_9(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 9); } +static void rna_ParticleVGroup_name_get_10(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 10); } +static void rna_ParticleVGroup_name_get_11(PointerRNA *ptr, char *value) { psys_vg_name_get__internal(ptr, value, 11); } + +static int rna_ParticleVGroup_name_len_0(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 0); } +static int rna_ParticleVGroup_name_len_1(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 1); } +static int rna_ParticleVGroup_name_len_2(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 2); } +static int rna_ParticleVGroup_name_len_3(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 3); } +static int rna_ParticleVGroup_name_len_4(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 4); } +static int rna_ParticleVGroup_name_len_5(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 5); } +static int rna_ParticleVGroup_name_len_6(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 6); } +static int rna_ParticleVGroup_name_len_7(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 7); } +static int rna_ParticleVGroup_name_len_8(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 8); } +static int rna_ParticleVGroup_name_len_9(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 9); } +static int rna_ParticleVGroup_name_len_10(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 10); } +static int rna_ParticleVGroup_name_len_11(PointerRNA *ptr) { return psys_vg_name_len__internal(ptr, 11); } + +static void rna_ParticleVGroup_name_set_0(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 0); } +static void rna_ParticleVGroup_name_set_1(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 1); } +static void rna_ParticleVGroup_name_set_2(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 2); } +static void rna_ParticleVGroup_name_set_3(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 3); } +static void rna_ParticleVGroup_name_set_4(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 4); } +static void rna_ParticleVGroup_name_set_5(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 5); } +static void rna_ParticleVGroup_name_set_6(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 6); } +static void rna_ParticleVGroup_name_set_7(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 7); } +static void rna_ParticleVGroup_name_set_8(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 8); } +static void rna_ParticleVGroup_name_set_9(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 9); } +static void rna_ParticleVGroup_name_set_10(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 10); } +static void rna_ParticleVGroup_name_set_11(PointerRNA *ptr, const char *value) { psys_vg_name_set__internal(ptr, value, 11); } #else @@ -1913,18 +2001,27 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Billboard Split UV", "UV Layer to control billboard splitting."); /* vertex groups */ + + /* note, internally store as ints, access as strings */ +#if 0 // int access. works ok but isnt useful for the UI prop= RNA_def_property(srna, "vertex_group_density", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "vgroup[0]"); RNA_def_property_ui_text(prop, "Vertex Group Density", "Vertex group to control density."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); +#endif + + prop= RNA_def_property(srna, "vertex_group_density", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_0", "rna_ParticleVGroup_name_len_0", "rna_ParticleVGroup_name_set_0"); + RNA_def_property_ui_text(prop, "Vertex Group Density", "Vertex group to control density."); + RNA_def_property_update(prop, 0, "rna_Particle_reset"); prop= RNA_def_property(srna, "vertex_group_density_negate", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "vg_neg", (1 << PSYS_VG_DENSITY)); RNA_def_property_ui_text(prop, "Vertex Group Density Negate", "Negate the effect of the density vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); - prop= RNA_def_property(srna, "vertex_group_velocity", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[1]"); + prop= RNA_def_property(srna, "vertex_group_velocity", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_1", "rna_ParticleVGroup_name_len_1", "rna_ParticleVGroup_name_set_1"); RNA_def_property_ui_text(prop, "Vertex Group Velocity", "Vertex group to control velocity."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); @@ -1933,8 +2030,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Velocity Negate", "Negate the effect of the velocity vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); - prop= RNA_def_property(srna, "vertex_group_length", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[2]"); + prop= RNA_def_property(srna, "vertex_group_length", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_2", "rna_ParticleVGroup_name_len_2", "rna_ParticleVGroup_name_set_2"); RNA_def_property_ui_text(prop, "Vertex Group Length", "Vertex group to control length."); RNA_def_property_update(prop, 0, "rna_Particle_redo"); @@ -1943,8 +2040,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Length Negate", "Negate the effect of the length vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo"); - prop= RNA_def_property(srna, "vertex_group_clump", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[3]"); + prop= RNA_def_property(srna, "vertex_group_clump", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_3", "rna_ParticleVGroup_name_len_3", "rna_ParticleVGroup_name_set_3"); RNA_def_property_ui_text(prop, "Vertex Group Clump", "Vertex group to control clump."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); @@ -1953,8 +2050,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Clump Negate", "Negate the effect of the clump vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); - prop= RNA_def_property(srna, "vertex_group_kink", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[4]"); + prop= RNA_def_property(srna, "vertex_group_kink", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_4", "rna_ParticleVGroup_name_len_4", "rna_ParticleVGroup_name_set_4"); RNA_def_property_ui_text(prop, "Vertex Group Kink", "Vertex group to control kink."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); @@ -1963,8 +2060,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Kink Negate", "Negate the effect of the kink vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); - prop= RNA_def_property(srna, "vertex_group_roughness1", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[5]"); + prop= RNA_def_property(srna, "vertex_group_roughness1", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_5", "rna_ParticleVGroup_name_len_5", "rna_ParticleVGroup_name_set_5"); RNA_def_property_ui_text(prop, "Vertex Group Roughness 1", "Vertex group to control roughness 1."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); @@ -1973,8 +2070,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Roughness 1 Negate", "Negate the effect of the roughness 1 vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); - prop= RNA_def_property(srna, "vertex_group_roughness2", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[6]"); + prop= RNA_def_property(srna, "vertex_group_roughness2", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_6", "rna_ParticleVGroup_name_len_6", "rna_ParticleVGroup_name_set_6"); RNA_def_property_ui_text(prop, "Vertex Group Roughness 2", "Vertex group to control roughness 2."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); @@ -1983,8 +2080,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Roughness 2 Negate", "Negate the effect of the roughness 2 vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); - prop= RNA_def_property(srna, "vertex_group_roughness_end", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[7]"); + prop= RNA_def_property(srna, "vertex_group_roughness_end", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_7", "rna_ParticleVGroup_name_len_7", "rna_ParticleVGroup_name_set_7"); RNA_def_property_ui_text(prop, "Vertex Group Roughness End", "Vertex group to control roughness end."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); @@ -1993,8 +2090,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Roughness End Negate", "Negate the effect of the roughness end vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_redo_child"); - prop= RNA_def_property(srna, "vertex_group_size", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[8]"); + prop= RNA_def_property(srna, "vertex_group_size", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_8", "rna_ParticleVGroup_name_len_8", "rna_ParticleVGroup_name_set_8"); RNA_def_property_ui_text(prop, "Vertex Group Size", "Vertex group to control size."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); @@ -2003,8 +2100,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Size Negate", "Negate the effect of the size vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); - prop= RNA_def_property(srna, "vertex_group_tangent", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[9]"); + prop= RNA_def_property(srna, "vertex_group_tangent", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_9", "rna_ParticleVGroup_name_len_9", "rna_ParticleVGroup_name_set_9"); RNA_def_property_ui_text(prop, "Vertex Group Tangent", "Vertex group to control tangent."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); @@ -2013,8 +2110,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Tangent Negate", "Negate the effect of the tangent vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); - prop= RNA_def_property(srna, "vertex_group_rotation", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[10]"); + prop= RNA_def_property(srna, "vertex_group_rotation", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_10", "rna_ParticleVGroup_name_len_10", "rna_ParticleVGroup_name_set_10"); RNA_def_property_ui_text(prop, "Vertex Group Rotation", "Vertex group to control rotation."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); @@ -2023,8 +2120,8 @@ static void rna_def_particle_system(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Vertex Group Rotation Negate", "Negate the effect of the rotation vertex group."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); - prop= RNA_def_property(srna, "vertex_group_field", PROP_INT, PROP_NONE); - RNA_def_property_int_sdna(prop, NULL, "vgroup[11]"); + prop= RNA_def_property(srna, "vertex_group_field", PROP_STRING, PROP_NONE); + RNA_def_property_string_funcs(prop, "rna_ParticleVGroup_name_get_11", "rna_ParticleVGroup_name_len_11", "rna_ParticleVGroup_name_set_11"); RNA_def_property_ui_text(prop, "Vertex Group Field", "Vertex group to control field."); RNA_def_property_update(prop, 0, "rna_Particle_reset"); From 42fb30f37aaca5c748654f75fdb70bcc91b240e2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 14:06:10 +0000 Subject: [PATCH 355/412] change to insert_keyframe() so an array index of -1 keys all arrays indices made this default for python so you can do... pose_bone.keyframe_insert("location") rather then pose_bone.keyframe_insert("location", 0) pose_bone.keyframe_insert("location", 1) pose_bone.keyframe_insert("location", 2) --- source/blender/editors/animation/keyframing.c | 27 +++++++++++++++---- source/blender/python/intern/bpy_rna.c | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 6aa9bb24fcd..13ff8c84b7a 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -790,12 +790,16 @@ short insert_keyframe_direct (PointerRNA ptr, PropertyRNA *prop, FCurve *fcu, fl * The flag argument is used for special settings that alter the behaviour of * the keyframe insertion. These include the 'visual' keyframing modes, quick refresh, * and extra keyframe filtering. + * + * index of -1 keys all array indices */ short insert_keyframe (ID *id, bAction *act, const char group[], const char rna_path[], int array_index, float cfra, short flag) { PointerRNA id_ptr, ptr; PropertyRNA *prop; FCurve *fcu; + int array_index_max= array_index+1; + int ret= 0; /* validate pointer first - exit if failure */ RNA_id_pointer_create(id, &id_ptr); @@ -814,8 +818,8 @@ short insert_keyframe (ID *id, bAction *act, const char group[], const char rna_ /* apply NLA-mapping to frame to use (if applicable) */ cfra= BKE_nla_tweakedit_remap(adt, cfra, NLATIME_CONVERT_UNMAP); } - fcu= verify_fcurve(act, group, rna_path, array_index, 1); - + +#if 0 /* apply special time tweaking */ // XXX check on this stuff... if (GS(id->name) == ID_OB) { @@ -827,9 +831,22 @@ short insert_keyframe (ID *id, bAction *act, const char group[], const char rna_ // cfra-= give_timeoffset(ob)*scene->r.framelen; //} } - - /* insert keyframe */ - return insert_keyframe_direct(ptr, prop, fcu, cfra, flag); +#endif + + if(array_index==-1) { /* Key All */ + array_index= 0; + array_index_max= RNA_property_array_length(&ptr, prop) + 1; + } + + /* will only loop once unless the array index was -1 */ + for( ; array_index < array_index_max; array_index++) { + fcu= verify_fcurve(act, group, rna_path, array_index, 1); + + /* insert keyframe */ + ret |= insert_keyframe_direct(ptr, prop, fcu, cfra, flag); + } + + return ret; } /* ************************************************** */ diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index eee863e5d1b..b071d8c2047 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1155,7 +1155,7 @@ static PySequenceMethods pyrna_prop_as_sequence = { static PyObject *pyrna_struct_keyframe_insert(BPy_StructRNA * self, PyObject *args) { char *path, *path_full; - int index= 0; + int index= -1; /* default to all */ float cfra = CTX_data_scene(BPy_GetContext())->r.cfra; PropertyRNA *prop; PyObject *result; From 8436608513ad14607bb523d3d6ed070c7e6bfe7b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 14:28:43 +0000 Subject: [PATCH 356/412] Bridge edge loops would loose all edge flags. Would happen in any case where python added new mesh data into an existing mesh. fix by copying the old edges into the new array --- source/blender/editors/mesh/mesh_data.c | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/source/blender/editors/mesh/mesh_data.c b/source/blender/editors/mesh/mesh_data.c index 6ed2ca08c9c..94a7dbebb9c 100644 --- a/source/blender/editors/mesh/mesh_data.c +++ b/source/blender/editors/mesh/mesh_data.c @@ -452,15 +452,26 @@ void MESH_OT_sticky_remove(wmOperatorType *ot) /************************** Add Geometry Layers *************************/ -static void mesh_calc_edges(Mesh *mesh) +static void mesh_calc_edges(Mesh *mesh, int update) { CustomData edata; EdgeHashIterator *ehi; MFace *mf = mesh->mface; - MEdge *med; + MEdge *med, *med_orig; EdgeHash *eh = BLI_edgehash_new(); int i, *index, totedge, totface = mesh->totface; + if(mesh->totedge==0) + update= 0; + + if(update) { + /* assume existing edges are valid + * useful when adding more faces and generating edges from them */ + med= mesh->medge; + for(i= 0; itotedge; i++, med++) + BLI_edgehash_insert(eh, med->v1, med->v2, med); + } + for (i = 0; i < totface; i++, mf++) { if (!BLI_edgehash_haskey(eh, mf->v1, mf->v2)) BLI_edgehash_insert(eh, mf->v1, mf->v2, NULL); @@ -488,9 +499,13 @@ static void mesh_calc_edges(Mesh *mesh) med = CustomData_get_layer(&edata, CD_MEDGE); for(i = 0; !BLI_edgehashIterator_isDone(ehi); BLI_edgehashIterator_step(ehi), ++i, ++med, ++index) { - BLI_edgehashIterator_getKey(ehi, (int*)&med->v1, (int*)&med->v2); - med->flag = ME_EDGEDRAW|ME_EDGERENDER; + if(update && (med_orig=BLI_edgehashIterator_getValue(ehi))) { + *med= *med_orig; /* copy from the original */ + } else { + BLI_edgehashIterator_getKey(ehi, (int*)&med->v1, (int*)&med->v2); + med->flag = ME_EDGEDRAW|ME_EDGERENDER; + } } BLI_edgehashIterator_free(ehi); @@ -507,7 +522,7 @@ static void mesh_calc_edges(Mesh *mesh) void ED_mesh_update(Mesh *mesh, bContext *C, int calc_edges) { if(calc_edges || (mesh->totface && mesh->totedge == 0)) - mesh_calc_edges(mesh); + mesh_calc_edges(mesh, calc_edges); mesh_calc_normals(mesh->mvert, mesh->totvert, mesh->mface, mesh->totface, NULL); From 37fde5b33520b1a7fd27560785ba196022564d31 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 14:31:14 +0000 Subject: [PATCH 357/412] bvh import from 2.4x (unchanged) --- release/scripts/io/import_bvh.py | 757 +++++++++++++++++++++++++++++++ 1 file changed, 757 insertions(+) create mode 100644 release/scripts/io/import_bvh.py diff --git a/release/scripts/io/import_bvh.py b/release/scripts/io/import_bvh.py new file mode 100644 index 00000000000..4134503c511 --- /dev/null +++ b/release/scripts/io/import_bvh.py @@ -0,0 +1,757 @@ +#!BPY + +""" +Name: 'Motion Capture (.bvh)...' +Blender: 242 +Group: 'Import' +Tip: 'Import a (.bvh) motion capture file' +""" + +__author__ = "Campbell Barton" +__url__ = ("blender.org", "blenderartists.org") +__version__ = "1.90 06/08/01" + +__bpydoc__ = """\ +This script imports BVH motion capture data to Blender. +as empties or armatures. +""" + +# -------------------------------------------------------------------------- +# BVH Import v2.0 by Campbell Barton (AKA Ideasman) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- + +import Blender +import bpy +import BPyMessages +Vector= Blender.Mathutils.Vector +Euler= Blender.Mathutils.Euler +Matrix= Blender.Mathutils.Matrix +RotationMatrix = Blender.Mathutils.RotationMatrix +TranslationMatrix= Blender.Mathutils.TranslationMatrix + +DEG2RAD = 0.017453292519943295 + +class bvh_node_class(object): + __slots__=(\ + 'name',# bvh joint name + 'parent',# bvh_node_class type or None for no parent + 'children',# a list of children of this type. + 'rest_head_world',# worldspace rest location for the head of this node + 'rest_head_local',# localspace rest location for the head of this node + 'rest_tail_world',# # worldspace rest location for the tail of this node + 'rest_tail_local',# # worldspace rest location for the tail of this node + 'channels',# list of 6 ints, -1 for an unused channel, otherwise an index for the BVH motion data lines, lock triple then rot triple + 'rot_order',# a triple of indicies as to the order rotation is applied. [0,1,2] is x/y/z - [None, None, None] if no rotation. + 'anim_data',# a list one tuple's one for each frame. (locx, locy, locz, rotx, roty, rotz) + 'has_loc',# Conveinience function, bool, same as (channels[0]!=-1 or channels[1]!=-1 channels[2]!=-1) + 'has_rot',# Conveinience function, bool, same as (channels[3]!=-1 or channels[4]!=-1 channels[5]!=-1) + 'temp')# use this for whatever you want + + def __init__(self, name, rest_head_world, rest_head_local, parent, channels, rot_order): + self.name= name + self.rest_head_world= rest_head_world + self.rest_head_local= rest_head_local + self.rest_tail_world= None + self.rest_tail_local= None + self.parent= parent + self.channels= channels + self.rot_order= rot_order + + # convenience functions + self.has_loc= channels[0] != -1 or channels[1] != -1 or channels[2] != -1 + self.has_rot= channels[3] != -1 or channels[4] != -1 or channels[5] != -1 + + + self.children= [] + + # list of 6 length tuples: (lx,ly,lz, rx,ry,rz) + # even if the channels arnt used they will just be zero + # + self.anim_data= [(0,0,0,0,0,0)] + + + def __repr__(self): + return 'BVH name:"%s", rest_loc:(%.3f,%.3f,%.3f), rest_tail:(%.3f,%.3f,%.3f)' %\ + (self.name,\ + self.rest_head_world.x, self.rest_head_world.y, self.rest_head_world.z,\ + self.rest_head_world.x, self.rest_head_world.y, self.rest_head_world.z) + + + +# Change the order rotation is applied. +MATRIX_IDENTITY_3x3 = Matrix([1,0,0],[0,1,0],[0,0,1]) +MATRIX_IDENTITY_4x4 = Matrix([1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]) + +def eulerRotate(x,y,z, rot_order): + # Clamp all values between 0 and 360, values outside this raise an error. + mats=[RotationMatrix(x%360,3,'x'), RotationMatrix(y%360,3,'y'), RotationMatrix(z%360,3,'z')] + # print rot_order + # Standard BVH multiplication order, apply the rotation in the order Z,X,Y + return (mats[rot_order[2]]*(mats[rot_order[1]]* (mats[rot_order[0]]* MATRIX_IDENTITY_3x3))).toEuler() + +def read_bvh(file_path, GLOBAL_SCALE=1.0): + # File loading stuff + # Open the file for importing + file = open(file_path, 'rU') + + # Seperate into a list of lists, each line a list of words. + file_lines = file.readlines() + # Non standard carrage returns? + if len(file_lines) == 1: + file_lines = file_lines[0].split('\r') + + # Split by whitespace. + file_lines =[ll for ll in [ l.split() for l in file_lines] if ll] + + + # Create Hirachy as empties + + if file_lines[0][0].lower() == 'hierarchy': + #print 'Importing the BVH Hierarchy for:', file_path + pass + else: + raise 'ERROR: This is not a BVH file' + + bvh_nodes= {None:None} + bvh_nodes_serial = [None] + + channelIndex = -1 + + + lineIdx = 0 # An index for the file. + while lineIdx < len(file_lines) -1: + #... + if file_lines[lineIdx][0].lower() == 'root' or file_lines[lineIdx][0].lower() == 'joint': + + # Join spaces into 1 word with underscores joining it. + if len(file_lines[lineIdx]) > 2: + file_lines[lineIdx][1] = '_'.join(file_lines[lineIdx][1:]) + file_lines[lineIdx] = file_lines[lineIdx][:2] + + # MAY NEED TO SUPPORT MULTIPLE ROOT's HERE!!!, Still unsure weather multiple roots are possible.?? + + # Make sure the names are unique- Object names will match joint names exactly and both will be unique. + name = file_lines[lineIdx][1] + + #print '%snode: %s, parent: %s' % (len(bvh_nodes_serial) * ' ', name, bvh_nodes_serial[-1]) + + lineIdx += 2 # Incriment to the next line (Offset) + rest_head_local = Vector( GLOBAL_SCALE*float(file_lines[lineIdx][1]), GLOBAL_SCALE*float(file_lines[lineIdx][2]), GLOBAL_SCALE*float(file_lines[lineIdx][3]) ) + lineIdx += 1 # Incriment to the next line (Channels) + + # newChannel[Xposition, Yposition, Zposition, Xrotation, Yrotation, Zrotation] + # newChannel references indecies to the motiondata, + # if not assigned then -1 refers to the last value that will be added on loading at a value of zero, this is appended + # We'll add a zero value onto the end of the MotionDATA so this is always refers to a value. + my_channel = [-1, -1, -1, -1, -1, -1] + my_rot_order= [None, None, None] + rot_count= 0 + for channel in file_lines[lineIdx][2:]: + channel= channel.lower() + channelIndex += 1 # So the index points to the right channel + if channel == 'xposition': my_channel[0] = channelIndex + elif channel == 'yposition': my_channel[1] = channelIndex + elif channel == 'zposition': my_channel[2] = channelIndex + + elif channel == 'xrotation': + my_channel[3] = channelIndex + my_rot_order[rot_count]= 0 + rot_count+=1 + elif channel == 'yrotation': + my_channel[4] = channelIndex + my_rot_order[rot_count]= 1 + rot_count+=1 + elif channel == 'zrotation': + my_channel[5] = channelIndex + my_rot_order[rot_count]= 2 + rot_count+=1 + + channels = file_lines[lineIdx][2:] + + my_parent= bvh_nodes_serial[-1] # account for none + + + # Apply the parents offset accumletivly + if my_parent==None: + rest_head_world= Vector(rest_head_local) + else: + rest_head_world= my_parent.rest_head_world + rest_head_local + + bvh_node= bvh_nodes[name]= bvh_node_class(name, rest_head_world, rest_head_local, my_parent, my_channel, my_rot_order) + + # If we have another child then we can call ourselves a parent, else + bvh_nodes_serial.append(bvh_node) + + # Account for an end node + if file_lines[lineIdx][0].lower() == 'end' and file_lines[lineIdx][1].lower() == 'site': # There is somtimes a name after 'End Site' but we will ignore it. + lineIdx += 2 # Incriment to the next line (Offset) + rest_tail = Vector( GLOBAL_SCALE*float(file_lines[lineIdx][1]), GLOBAL_SCALE*float(file_lines[lineIdx][2]), GLOBAL_SCALE*float(file_lines[lineIdx][3]) ) + + bvh_nodes_serial[-1].rest_tail_world= bvh_nodes_serial[-1].rest_head_world + rest_tail + bvh_nodes_serial[-1].rest_tail_local= rest_tail + + + # Just so we can remove the Parents in a uniform way- End end never has kids + # so this is a placeholder + bvh_nodes_serial.append(None) + + if len(file_lines[lineIdx]) == 1 and file_lines[lineIdx][0] == '}': # == ['}'] + bvh_nodes_serial.pop() # Remove the last item + + if len(file_lines[lineIdx]) == 1 and file_lines[lineIdx][0].lower() == 'motion': + #print '\nImporting motion data' + lineIdx += 3 # Set the cursor to the first frame + break + + lineIdx += 1 + + + # Remove the None value used for easy parent reference + del bvh_nodes[None] + # Dont use anymore + del bvh_nodes_serial + + bvh_nodes_list= bvh_nodes.values() + + while lineIdx < len(file_lines): + line= file_lines[lineIdx] + for bvh_node in bvh_nodes_list: + #for bvh_node in bvh_nodes_serial: + lx= ly= lz= rx= ry= rz= 0.0 + channels= bvh_node.channels + anim_data= bvh_node.anim_data + if channels[0] != -1: + lx= GLOBAL_SCALE * float( line[channels[0]] ) + + if channels[1] != -1: + ly= GLOBAL_SCALE * float( line[channels[1]] ) + + if channels[2] != -1: + lz= GLOBAL_SCALE * float( line[channels[2]] ) + + if channels[3] != -1 or channels[4] != -1 or channels[5] != -1: + rx, ry, rz = eulerRotate(float( line[channels[3]] ), float( line[channels[4]] ), float( line[channels[5]] ), bvh_node.rot_order) + #x,y,z = x/10.0, y/10.0, z/10.0 # For IPO's 36 is 360d + + # Make interpolation not cross between 180d, thjis fixes sub frame interpolation and time scaling. + # Will go from (355d to 365d) rather then to (355d to 5d) - inbetween these 2 there will now be a correct interpolation. + + while anim_data[-1][3] - rx > 180: rx+=360 + while anim_data[-1][3] - rx < -180: rx-=360 + + while anim_data[-1][4] - ry > 180: ry+=360 + while anim_data[-1][4] - ry < -180: ry-=360 + + while anim_data[-1][5] - rz > 180: rz+=360 + while anim_data[-1][5] - rz < -180: rz-=360 + + # Done importing motion data # + anim_data.append( (lx, ly, lz, rx, ry, rz) ) + lineIdx += 1 + + # Assign children + for bvh_node in bvh_nodes.itervalues(): + bvh_node_parent= bvh_node.parent + if bvh_node_parent: + bvh_node_parent.children.append(bvh_node) + + # Now set the tip of each bvh_node + for bvh_node in bvh_nodes.itervalues(): + + if not bvh_node.rest_tail_world: + if len(bvh_node.children)==0: + # could just fail here, but rare BVH files have childless nodes + bvh_node.rest_tail_world = Vector(bvh_node.rest_head_world) + bvh_node.rest_tail_local = Vector(bvh_node.rest_head_local) + elif len(bvh_node.children)==1: + bvh_node.rest_tail_world= Vector(bvh_node.children[0].rest_head_world) + bvh_node.rest_tail_local= Vector(bvh_node.children[0].rest_head_local) + else: + # allow this, see above + #if not bvh_node.children: + # raise 'error, bvh node has no end and no children. bad file' + + # Removed temp for now + rest_tail_world= Vector(0,0,0) + rest_tail_local= Vector(0,0,0) + for bvh_node_child in bvh_node.children: + rest_tail_world += bvh_node_child.rest_head_world + rest_tail_local += bvh_node_child.rest_head_local + + bvh_node.rest_tail_world= rest_tail_world * (1.0/len(bvh_node.children)) + bvh_node.rest_tail_local= rest_tail_local * (1.0/len(bvh_node.children)) + + # Make sure tail isnt the same location as the head. + if (bvh_node.rest_tail_local-bvh_node.rest_head_local).length <= 0.001*GLOBAL_SCALE: + + bvh_node.rest_tail_local.y= bvh_node.rest_tail_local.y + GLOBAL_SCALE/10 + bvh_node.rest_tail_world.y= bvh_node.rest_tail_world.y + GLOBAL_SCALE/10 + + + + return bvh_nodes + + + +def bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): + + if IMPORT_START_FRAME<1: + IMPORT_START_FRAME= 1 + + scn= bpy.data.scenes.active + scn.objects.selected = [] + + objects= [] + + def add_ob(name): + ob = scn.objects.new('Empty') + objects.append(ob) + return ob + + # Add objects + for name, bvh_node in bvh_nodes.iteritems(): + bvh_node.temp= add_ob(name) + + # Parent the objects + for bvh_node in bvh_nodes.itervalues(): + bvh_node.temp.makeParent([ bvh_node_child.temp for bvh_node_child in bvh_node.children ], 1, 0) # ojbs, noninverse, 1 = not fast. + + # Offset + for bvh_node in bvh_nodes.itervalues(): + # Make relative to parents offset + bvh_node.temp.loc= bvh_node.rest_head_local + + # Add tail objects + for name, bvh_node in bvh_nodes.iteritems(): + if not bvh_node.children: + ob_end= add_ob(name + '_end') + bvh_node.temp.makeParent([ob_end], 1, 0) # ojbs, noninverse, 1 = not fast. + ob_end.loc= bvh_node.rest_tail_local + + + # Animate the data, the last used bvh_node will do since they all have the same number of frames + for current_frame in xrange(len(bvh_node.anim_data)): + Blender.Set('curframe', current_frame+IMPORT_START_FRAME) + + for bvh_node in bvh_nodes.itervalues(): + lx,ly,lz,rx,ry,rz= bvh_node.anim_data[current_frame] + + rest_head_local= bvh_node.rest_head_local + bvh_node.temp.loc= rest_head_local.x+lx, rest_head_local.y+ly, rest_head_local.z+lz + + bvh_node.temp.rot= rx*DEG2RAD,ry*DEG2RAD,rz*DEG2RAD + + bvh_node.temp.insertIpoKey(Blender.Object.IpoKeyTypes.LOCROT) + + scn.update(1) + return objects + + + +def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): + + if IMPORT_START_FRAME<1: + IMPORT_START_FRAME= 1 + + + # Add the new armature, + scn = bpy.data.scenes.active + scn.objects.selected = [] + + arm_data= bpy.data.armatures.new() + arm_ob = scn.objects.new(arm_data) + scn.objects.context = [arm_ob] + scn.objects.active = arm_ob + + # Put us into editmode + arm_data.makeEditable() + + # Get the average bone length for zero length bones, we may not use this. + average_bone_length= 0.0 + nonzero_count= 0 + for bvh_node in bvh_nodes.itervalues(): + l= (bvh_node.rest_head_local-bvh_node.rest_tail_local).length + if l: + average_bone_length+= l + nonzero_count+=1 + + # Very rare cases all bones couldbe zero length??? + if not average_bone_length: + average_bone_length = 0.1 + else: + # Normal operation + average_bone_length = average_bone_length/nonzero_count + + + + ZERO_AREA_BONES= [] + for name, bvh_node in bvh_nodes.iteritems(): + # New editbone + bone= bvh_node.temp= Blender.Armature.Editbone() + + bone.name= name + arm_data.bones[name]= bone + + bone.head= bvh_node.rest_head_world + bone.tail= bvh_node.rest_tail_world + + # ZERO AREA BONES. + if (bone.head-bone.tail).length < 0.001: + if bvh_node.parent: + ofs= bvh_node.parent.rest_head_local- bvh_node.parent.rest_tail_local + if ofs.length: # is our parent zero length also?? unlikely + bone.tail= bone.tail+ofs + else: + bone.tail.y= bone.tail.y+average_bone_length + else: + bone.tail.y= bone.tail.y+average_bone_length + + ZERO_AREA_BONES.append(bone.name) + + + for bvh_node in bvh_nodes.itervalues(): + if bvh_node.parent: + # bvh_node.temp is the Editbone + + # Set the bone parent + bvh_node.temp.parent= bvh_node.parent.temp + + # Set the connection state + if not bvh_node.has_loc and\ + bvh_node.parent and\ + bvh_node.parent.temp.name not in ZERO_AREA_BONES and\ + bvh_node.parent.rest_tail_local == bvh_node.rest_head_local: + bvh_node.temp.options= [Blender.Armature.CONNECTED] + + # Replace the editbone with the editbone name, + # to avoid memory errors accessing the editbone outside editmode + for bvh_node in bvh_nodes.itervalues(): + bvh_node.temp= bvh_node.temp.name + + arm_data.update() + + # Now Apply the animation to the armature + + # Get armature animation data + pose= arm_ob.getPose() + pose_bones= pose.bones + + action = Blender.Armature.NLA.NewAction("Action") + action.setActive(arm_ob) + #xformConstants= [ Blender.Object.Pose.LOC, Blender.Object.Pose.ROT ] + + # Replace the bvh_node.temp (currently an editbone) + # With a tuple (pose_bone, armature_bone, bone_rest_matrix, bone_rest_matrix_inv) + for bvh_node in bvh_nodes.itervalues(): + bone_name= bvh_node.temp # may not be the same name as the bvh_node, could have been shortened. + pose_bone= pose_bones[bone_name] + rest_bone= arm_data.bones[bone_name] + bone_rest_matrix = rest_bone.matrix['ARMATURESPACE'].rotationPart() + + bone_rest_matrix_inv= Matrix(bone_rest_matrix) + bone_rest_matrix_inv.invert() + + bone_rest_matrix_inv.resize4x4() + bone_rest_matrix.resize4x4() + bvh_node.temp= (pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv) + + + # Make a dict for fast access without rebuilding a list all the time. + xformConstants_dict={ + (True,True): [Blender.Object.Pose.LOC, Blender.Object.Pose.ROT],\ + (False,True): [Blender.Object.Pose.ROT],\ + (True,False): [Blender.Object.Pose.LOC],\ + (False,False): [],\ + } + + + # KEYFRAME METHOD, SLOW, USE IPOS DIRECT + + # Animate the data, the last used bvh_node will do since they all have the same number of frames + for current_frame in xrange(len(bvh_node.anim_data)-1): # skip the first frame (rest frame) + # print current_frame + + #if current_frame==40: # debugging + # break + + # Dont neet to set the current frame + for bvh_node in bvh_nodes.itervalues(): + pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv= bvh_node.temp + lx,ly,lz,rx,ry,rz= bvh_node.anim_data[current_frame+1] + + if bvh_node.has_rot: + # Set the rotation, not so simple + bone_rotation_matrix= Euler(rx,ry,rz).toMatrix() + bone_rotation_matrix.resize4x4() + pose_bone.quat= (bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toQuat() + + if bvh_node.has_loc: + # Set the Location, simple too + pose_bone.loc= (\ + TranslationMatrix(Vector(lx, ly, lz) - bvh_node.rest_head_local ) *\ + bone_rest_matrix_inv).translationPart() # WHY * 10? - just how pose works + + # Get the transform + xformConstants= xformConstants_dict[bvh_node.has_loc, bvh_node.has_rot] + + + if xformConstants: + # Insert the keyframe from the loc/quat + pose_bone.insertKey(arm_ob, current_frame+IMPORT_START_FRAME, xformConstants, True ) + + # First time, set the IPO's to linear + if current_frame==0: + for ipo in action.getAllChannelIpos().itervalues(): + if ipo: + for cur in ipo: + cur.interpolation = Blender.IpoCurve.InterpTypes.LINEAR + if IMPORT_LOOP: + cur.extend = Blender.IpoCurve.ExtendTypes.CYCLIC + + + + + # END KEYFRAME METHOD + + + """ + # IPO KEYFRAME SETTING + # Add in the IPOs by adding keyframes, AFAIK theres no way to add IPOs to an action so I do this :/ + for bvh_node in bvh_nodes.itervalues(): + pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv= bvh_node.temp + + # Get the transform + xformConstants= xformConstants_dict[bvh_node.has_loc, bvh_node.has_rot] + if xformConstants: + pose_bone.loc[:]= 0,0,0 + pose_bone.quat[:]= 0,0,1,0 + # Insert the keyframe from the loc/quat + pose_bone.insertKey(arm_ob, IMPORT_START_FRAME, xformConstants) + + + action_ipos= action.getAllChannelIpos() + + + for bvh_node in bvh_nodes.itervalues(): + has_loc= bvh_node.has_loc + has_rot= bvh_node.has_rot + + if not has_rot and not has_loc: + # No animation data + continue + + ipo= action_ipos[bvh_node.temp[0].name] # posebones name as key + + if has_loc: + curve_xloc= ipo[Blender.Ipo.PO_LOCX] + curve_yloc= ipo[Blender.Ipo.PO_LOCY] + curve_zloc= ipo[Blender.Ipo.PO_LOCZ] + + curve_xloc.interpolation= \ + curve_yloc.interpolation= \ + curve_zloc.interpolation= \ + Blender.IpoCurve.InterpTypes.LINEAR + + + if has_rot: + curve_wquat= ipo[Blender.Ipo.PO_QUATW] + curve_xquat= ipo[Blender.Ipo.PO_QUATX] + curve_yquat= ipo[Blender.Ipo.PO_QUATY] + curve_zquat= ipo[Blender.Ipo.PO_QUATZ] + + curve_wquat.interpolation= \ + curve_xquat.interpolation= \ + curve_yquat.interpolation= \ + curve_zquat.interpolation= \ + Blender.IpoCurve.InterpTypes.LINEAR + + # Get the bone + pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv= bvh_node.temp + + + def pose_rot(anim_data): + bone_rotation_matrix= Euler(anim_data[3], anim_data[4], anim_data[5]).toMatrix() + bone_rotation_matrix.resize4x4() + return tuple((bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toQuat()) # qw,qx,qy,qz + + def pose_loc(anim_data): + return tuple((TranslationMatrix(Vector(anim_data[0], anim_data[1], anim_data[2])) * bone_rest_matrix_inv).translationPart()) + + + last_frame= len(bvh_node.anim_data)+IMPORT_START_FRAME-1 + + if has_loc: + pose_locations= [pose_loc(anim_key) for anim_key in bvh_node.anim_data] + + # Add the start at the end, we know the start is just 0,0,0 anyway + curve_xloc.append((last_frame, pose_locations[-1][0])) + curve_yloc.append((last_frame, pose_locations[-1][1])) + curve_zloc.append((last_frame, pose_locations[-1][2])) + + if len(pose_locations) > 1: + ox,oy,oz= pose_locations[0] + x,y,z= pose_locations[1] + + for i in xrange(1, len(pose_locations)-1): # from second frame to second last frame + + nx,ny,nz= pose_locations[i+1] + xset= yset= zset= True # we set all these by default + if abs((ox+nx)/2 - x) < 0.00001: xset= False + if abs((oy+ny)/2 - y) < 0.00001: yset= False + if abs((oz+nz)/2 - z) < 0.00001: zset= False + + if xset: curve_xloc.append((i+IMPORT_START_FRAME, x)) + if yset: curve_yloc.append((i+IMPORT_START_FRAME, y)) + if zset: curve_zloc.append((i+IMPORT_START_FRAME, z)) + + # Set the old and use the new + ox,oy,oz= x,y,z + x,y,z= nx,ny,nz + + + if has_rot: + pose_rotations= [pose_rot(anim_key) for anim_key in bvh_node.anim_data] + + # Add the start at the end, we know the start is just 0,0,0 anyway + curve_wquat.append((last_frame, pose_rotations[-1][0])) + curve_xquat.append((last_frame, pose_rotations[-1][1])) + curve_yquat.append((last_frame, pose_rotations[-1][2])) + curve_zquat.append((last_frame, pose_rotations[-1][3])) + + + if len(pose_rotations) > 1: + ow,ox,oy,oz= pose_rotations[0] + w,x,y,z= pose_rotations[1] + + for i in xrange(1, len(pose_rotations)-1): # from second frame to second last frame + + nw, nx,ny,nz= pose_rotations[i+1] + wset= xset= yset= zset= True # we set all these by default + if abs((ow+nw)/2 - w) < 0.00001: wset= False + if abs((ox+nx)/2 - x) < 0.00001: xset= False + if abs((oy+ny)/2 - y) < 0.00001: yset= False + if abs((oz+nz)/2 - z) < 0.00001: zset= False + + if wset: curve_wquat.append((i+IMPORT_START_FRAME, w)) + if xset: curve_xquat.append((i+IMPORT_START_FRAME, x)) + if yset: curve_yquat.append((i+IMPORT_START_FRAME, y)) + if zset: curve_zquat.append((i+IMPORT_START_FRAME, z)) + + # Set the old and use the new + ow,ox,oy,oz= w,x,y,z + w,x,y,z= nw,nx,ny,nz + + # IPO KEYFRAME SETTING + """ + pose.update() + return arm_ob + + +#=============# +# TESTING # +#=============# + +#('/metavr/mocap/bvh/boxer.bvh') +#('/d/staggered_walk.bvh') +#('/metavr/mocap/bvh/dg-306-g.bvh') # Incompleate EOF +#('/metavr/mocap/bvh/wa8lk.bvh') # duplicate joint names, \r line endings. +#('/metavr/mocap/bvh/walk4.bvh') # 0 channels + +''' +import os +DIR = '/metavr/mocap/bvh/' +for f in ('/d/staggered_walk.bvh',): + #for f in os.listdir(DIR)[5:6]: + #for f in os.listdir(DIR): + if f.endswith('.bvh'): + s = Blender.Scene.New(f) + s.makeCurrent() + #file= DIR + f + file= f + print f + bvh_nodes= read_bvh(file, 1.0) + bvh_node_dict2armature(bvh_nodes, 1) +''' + +def load_bvh_ui(file, PREF_UI= True): + + if BPyMessages.Error_NoFile(file): + return + + Draw= Blender.Draw + + IMPORT_SCALE = Draw.Create(0.1) + IMPORT_START_FRAME = Draw.Create(1) + IMPORT_AS_ARMATURE = Draw.Create(1) + IMPORT_AS_EMPTIES = Draw.Create(0) + IMPORT_LOOP = Draw.Create(0) + + # Get USER Options + if PREF_UI: + pup_block = [\ + ('As Armature', IMPORT_AS_ARMATURE, 'Imports the BVH as an armature'),\ + ('As Empties', IMPORT_AS_EMPTIES, 'Imports the BVH as empties'),\ + ('Scale: ', IMPORT_SCALE, 0.001, 100.0, 'Scale the BVH, Use 0.01 when 1.0 is 1 metre'),\ + ('Start Frame: ', IMPORT_START_FRAME, 1, 30000, 'Frame to start BVH motion'),\ + ('Loop Animation', IMPORT_LOOP, 'Enable cyclic IPOs'),\ + ] + + if not Draw.PupBlock('BVH Import...', pup_block): + return + + print 'Attempting import BVH', file + + IMPORT_SCALE = IMPORT_SCALE.val + IMPORT_START_FRAME = IMPORT_START_FRAME.val + IMPORT_AS_ARMATURE = IMPORT_AS_ARMATURE.val + IMPORT_AS_EMPTIES = IMPORT_AS_EMPTIES.val + IMPORT_LOOP = IMPORT_LOOP.val + + if not IMPORT_AS_ARMATURE and not IMPORT_AS_EMPTIES: + Blender.Draw.PupMenu('No import option selected') + return + Blender.Window.WaitCursor(1) + # Get the BVH data and act on it. + t1= Blender.sys.time() + print '\tparsing bvh...', + bvh_nodes= read_bvh(file, IMPORT_SCALE) + print '%.4f' % (Blender.sys.time()-t1) + t1= Blender.sys.time() + print '\timporting to blender...', + if IMPORT_AS_ARMATURE: bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) + if IMPORT_AS_EMPTIES: bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) + + print 'Done in %.4f\n' % (Blender.sys.time()-t1) + Blender.Window.WaitCursor(0) + +def main(): + Blender.Window.FileSelector(load_bvh_ui, 'Import BVH', '*.bvh') + +if __name__ == '__main__': + #def foo(): + main() + ''' + scn = bpy.data.scenes.active + for ob in list(scn.objects): + if ob.name!='arm__': + scn.objects.unlink(ob) + load_bvh_ui('/test.bvh', False) + ''' \ No newline at end of file From 69aaa43c2484de5570fa7e50a7764cc1df8589f1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 14:33:37 +0000 Subject: [PATCH 358/412] quick update of bvh importer for blender 2.5, mostly this is to test the python api. - bvh joint rotations are not working quite right yet --- release/scripts/io/import_bvh.py | 436 ++++++++++++++++++++----------- 1 file changed, 280 insertions(+), 156 deletions(-) diff --git a/release/scripts/io/import_bvh.py b/release/scripts/io/import_bvh.py index 4134503c511..52650078e7f 100644 --- a/release/scripts/io/import_bvh.py +++ b/release/scripts/io/import_bvh.py @@ -1,51 +1,17 @@ -#!BPY +import math -""" -Name: 'Motion Capture (.bvh)...' -Blender: 242 -Group: 'Import' -Tip: 'Import a (.bvh) motion capture file' -""" - -__author__ = "Campbell Barton" -__url__ = ("blender.org", "blenderartists.org") -__version__ = "1.90 06/08/01" - -__bpydoc__ = """\ -This script imports BVH motion capture data to Blender. -as empties or armatures. -""" - -# -------------------------------------------------------------------------- -# BVH Import v2.0 by Campbell Barton (AKA Ideasman) -# -------------------------------------------------------------------------- -# ***** BEGIN GPL LICENSE BLOCK ***** -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# ***** END GPL LICENCE BLOCK ***** -# -------------------------------------------------------------------------- - -import Blender +# import Blender import bpy -import BPyMessages -Vector= Blender.Mathutils.Vector -Euler= Blender.Mathutils.Euler -Matrix= Blender.Mathutils.Matrix -RotationMatrix = Blender.Mathutils.RotationMatrix -TranslationMatrix= Blender.Mathutils.TranslationMatrix +# import BPyMessages +import Mathutils +Vector= Mathutils.Vector +Euler= Mathutils.Euler +Matrix= Mathutils.Matrix +RotationMatrix= Mathutils.RotationMatrix +TranslationMatrix= Mathutils.TranslationMatrix + +# NASTY GLOBAL +ROT_STYLE = 'QUAT' DEG2RAD = 0.017453292519943295 @@ -101,13 +67,21 @@ MATRIX_IDENTITY_3x3 = Matrix([1,0,0],[0,1,0],[0,0,1]) MATRIX_IDENTITY_4x4 = Matrix([1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]) def eulerRotate(x,y,z, rot_order): + # Clamp all values between 0 and 360, values outside this raise an error. - mats=[RotationMatrix(x%360,3,'x'), RotationMatrix(y%360,3,'y'), RotationMatrix(z%360,3,'z')] + mats=[RotationMatrix(math.radians(x%360),3,'x'), RotationMatrix(math.radians(y%360),3,'y'), RotationMatrix(math.radians(z%360),3,'z')] # print rot_order # Standard BVH multiplication order, apply the rotation in the order Z,X,Y - return (mats[rot_order[2]]*(mats[rot_order[1]]* (mats[rot_order[0]]* MATRIX_IDENTITY_3x3))).toEuler() + + #XXX, order changes??? + #eul = (mats[rot_order[2]]*(mats[rot_order[1]]* (mats[rot_order[0]]* MATRIX_IDENTITY_3x3))).toEuler() + eul = (MATRIX_IDENTITY_3x3*mats[rot_order[0]]*(mats[rot_order[1]]* (mats[rot_order[2]]))).toEuler() + + eul = math.degrees(eul.x), math.degrees(eul.y), math.degrees(eul.z) + + return eul -def read_bvh(file_path, GLOBAL_SCALE=1.0): +def read_bvh(context, file_path, GLOBAL_SCALE=1.0): # File loading stuff # Open the file for importing file = open(file_path, 'rU') @@ -247,8 +221,12 @@ def read_bvh(file_path, GLOBAL_SCALE=1.0): if channels[2] != -1: lz= GLOBAL_SCALE * float( line[channels[2]] ) - if channels[3] != -1 or channels[4] != -1 or channels[5] != -1: - rx, ry, rz = eulerRotate(float( line[channels[3]] ), float( line[channels[4]] ), float( line[channels[5]] ), bvh_node.rot_order) + if channels[3] != -1 or channels[4] != -1 or channels[5] != -1: + rx, ry, rz = float( line[channels[3]] ), float( line[channels[4]] ), float( line[channels[5]] ) + + if ROT_STYLE != 'NATIVE': + rx, ry, rz = eulerRotate(rx, ry, rz, bvh_node.rot_order) + #x,y,z = x/10.0, y/10.0, z/10.0 # For IPO's 36 is 360d # Make interpolation not cross between 180d, thjis fixes sub frame interpolation and time scaling. @@ -268,13 +246,13 @@ def read_bvh(file_path, GLOBAL_SCALE=1.0): lineIdx += 1 # Assign children - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): bvh_node_parent= bvh_node.parent if bvh_node_parent: bvh_node_parent.children.append(bvh_node) # Now set the tip of each bvh_node - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): if not bvh_node.rest_tail_world: if len(bvh_node.children)==0: @@ -311,12 +289,12 @@ def read_bvh(file_path, GLOBAL_SCALE=1.0): -def bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): +def bvh_node_dict2objects(context, bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): if IMPORT_START_FRAME<1: IMPORT_START_FRAME= 1 - scn= bpy.data.scenes.active + scn= context.scene scn.objects.selected = [] objects= [] @@ -327,20 +305,20 @@ def bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): return ob # Add objects - for name, bvh_node in bvh_nodes.iteritems(): + for name, bvh_node in bvh_nodes.items(): bvh_node.temp= add_ob(name) # Parent the objects - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): bvh_node.temp.makeParent([ bvh_node_child.temp for bvh_node_child in bvh_node.children ], 1, 0) # ojbs, noninverse, 1 = not fast. # Offset - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): # Make relative to parents offset bvh_node.temp.loc= bvh_node.rest_head_local # Add tail objects - for name, bvh_node in bvh_nodes.iteritems(): + for name, bvh_node in bvh_nodes.items(): if not bvh_node.children: ob_end= add_ob(name + '_end') bvh_node.temp.makeParent([ob_end], 1, 0) # ojbs, noninverse, 1 = not fast. @@ -348,10 +326,10 @@ def bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): # Animate the data, the last used bvh_node will do since they all have the same number of frames - for current_frame in xrange(len(bvh_node.anim_data)): + for current_frame in range(len(bvh_node.anim_data)): Blender.Set('curframe', current_frame+IMPORT_START_FRAME) - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): lx,ly,lz,rx,ry,rz= bvh_node.anim_data[current_frame] rest_head_local= bvh_node.rest_head_local @@ -366,28 +344,47 @@ def bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): -def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): +def bvh_node_dict2armature(context, bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False): if IMPORT_START_FRAME<1: IMPORT_START_FRAME= 1 # Add the new armature, - scn = bpy.data.scenes.active - scn.objects.selected = [] + scn = context.scene +#XXX scn.objects.selected = [] + for ob in scn.objects: + ob.selected = False + + +#XXX arm_data= bpy.data.armatures.new() +#XXX arm_ob = scn.objects.new(arm_data) + bpy.ops.object.armature_add() + arm_ob= scn.objects[-1] + arm_data= arm_ob.data + + + + +#XXX scn.objects.context = [arm_ob] +#XXX scn.objects.active = arm_ob + arm_ob.selected= True + scn.objects.active= arm_ob + print(scn.objects.active) - arm_data= bpy.data.armatures.new() - arm_ob = scn.objects.new(arm_data) - scn.objects.context = [arm_ob] - scn.objects.active = arm_ob # Put us into editmode - arm_data.makeEditable() +#XXX arm_data.makeEditable() + + bpy.ops.object.mode_set(mode='OBJECT', toggle=False) + bpy.ops.object.mode_set(mode='EDIT', toggle=False) + + # Get the average bone length for zero length bones, we may not use this. average_bone_length= 0.0 nonzero_count= 0 - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): l= (bvh_node.rest_head_local-bvh_node.rest_tail_local).length if l: average_bone_length+= l @@ -401,14 +398,22 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) average_bone_length = average_bone_length/nonzero_count +#XXX - sloppy operator code + bpy.ops.armature.delete() + bpy.ops.armature.select_all_toggle() + bpy.ops.armature.delete() + ZERO_AREA_BONES= [] - for name, bvh_node in bvh_nodes.iteritems(): + for name, bvh_node in bvh_nodes.items(): # New editbone - bone= bvh_node.temp= Blender.Armature.Editbone() + bpy.ops.armature.bone_primitive_add(name="Bone") +#XXX bone= bvh_node.temp= Blender.Armature.Editbone() + bone= bvh_node.temp= arm_data.edit_bones[-1] + bone.name= name - arm_data.bones[name]= bone +# arm_data.bones[name]= bone bone.head= bvh_node.rest_head_world bone.tail= bvh_node.rest_tail_world @@ -425,9 +430,9 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) bone.tail.y= bone.tail.y+average_bone_length ZERO_AREA_BONES.append(bone.name) - - for bvh_node in bvh_nodes.itervalues(): + + for bvh_node in bvh_nodes.values(): if bvh_node.parent: # bvh_node.temp is the Editbone @@ -439,32 +444,82 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) bvh_node.parent and\ bvh_node.parent.temp.name not in ZERO_AREA_BONES and\ bvh_node.parent.rest_tail_local == bvh_node.rest_head_local: - bvh_node.temp.options= [Blender.Armature.CONNECTED] + bvh_node.temp.connected= True # Replace the editbone with the editbone name, # to avoid memory errors accessing the editbone outside editmode - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): bvh_node.temp= bvh_node.temp.name - arm_data.update() +#XXX arm_data.update() # Now Apply the animation to the armature # Get armature animation data - pose= arm_ob.getPose() - pose_bones= pose.bones + bpy.ops.object.mode_set(mode='OBJECT', toggle=False) + bpy.ops.object.mode_set(mode='POSE', toggle=False) + + pose= arm_ob.pose + pose_bones= pose.pose_channels + + + if ROT_STYLE=='NATIVE': + eul_order_lookup = {\ + (0,1,2):'XYZ', + (0,2,1):'XZY', + (1,0,2):'YXZ', + (1,2,0):'YZX', + (2,0,1):'ZXY', + (2,1,0):'ZYZ' + } + + for bvh_node in bvh_nodes.values(): + bone_name= bvh_node.temp # may not be the same name as the bvh_node, could have been shortened. + pose_bone= pose_bones[bone_name] + pose_bone.rotation_mode = eul_order_lookup[tuple(bvh_node.rot_order)] + + elif ROT_STYLE=='XYZ': + for pose_bone in pose_bones: + pose_bone.rotation_mode = 'XYZ' + else: + # Quats default + pass + + + bpy.ops.pose.select_all_toggle() # set + bpy.ops.anim.insert_keyframe_menu(type=-4) # XXX - -4 ??? + + + + + + #for p in pose_bones: + # print(p) + + +#XXX action = Blender.Armature.NLA.NewAction("Action") +#XXX action.setActive(arm_ob) + + #bpy.ops.act.new() + #action = bpy.data.actions[-1] + + # arm_ob.animation_data.action = action + action = arm_ob.animation_data.action + + + - action = Blender.Armature.NLA.NewAction("Action") - action.setActive(arm_ob) #xformConstants= [ Blender.Object.Pose.LOC, Blender.Object.Pose.ROT ] # Replace the bvh_node.temp (currently an editbone) # With a tuple (pose_bone, armature_bone, bone_rest_matrix, bone_rest_matrix_inv) - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): bone_name= bvh_node.temp # may not be the same name as the bvh_node, could have been shortened. pose_bone= pose_bones[bone_name] rest_bone= arm_data.bones[bone_name] - bone_rest_matrix = rest_bone.matrix['ARMATURESPACE'].rotationPart() +#XXX bone_rest_matrix = rest_bone.matrix['ARMATURESPACE'].rotationPart() + bone_rest_matrix = rest_bone.matrix.rotationPart() + bone_rest_matrix_inv= Matrix(bone_rest_matrix) bone_rest_matrix_inv.invert() @@ -475,59 +530,113 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) # Make a dict for fast access without rebuilding a list all the time. + ''' xformConstants_dict={ (True,True): [Blender.Object.Pose.LOC, Blender.Object.Pose.ROT],\ (False,True): [Blender.Object.Pose.ROT],\ (True,False): [Blender.Object.Pose.LOC],\ (False,False): [],\ } - + ''' # KEYFRAME METHOD, SLOW, USE IPOS DIRECT # Animate the data, the last used bvh_node will do since they all have the same number of frames - for current_frame in xrange(len(bvh_node.anim_data)-1): # skip the first frame (rest frame) + for current_frame in range(len(bvh_node.anim_data)-1): # skip the first frame (rest frame) # print current_frame - #if current_frame==40: # debugging + #if current_frame==150: # debugging # break # Dont neet to set the current frame - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv= bvh_node.temp lx,ly,lz,rx,ry,rz= bvh_node.anim_data[current_frame+1] if bvh_node.has_rot: - # Set the rotation, not so simple - bone_rotation_matrix= Euler(rx,ry,rz).toMatrix() - bone_rotation_matrix.resize4x4() - pose_bone.quat= (bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toQuat() + + if ROT_STYLE=='QUAT': + # Set the rotation, not so simple + bone_rotation_matrix= Euler(math.radians(rx), math.radians(ry), math.radians(rz)).toMatrix() + + bone_rotation_matrix.resize4x4() + #XXX ORDER CHANGE??? + #pose_bone.rotation_quaternion= (bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toQuat() # ORIGINAL + # pose_bone.rotation_quaternion= (bone_rest_matrix_inv * bone_rotation_matrix * bone_rest_matrix).toQuat() + # pose_bone.rotation_quaternion= (bone_rotation_matrix * bone_rest_matrix).toQuat() # BAD + # pose_bone.rotation_quaternion= bone_rotation_matrix.toQuat() # NOT GOOD + # pose_bone.rotation_quaternion= bone_rotation_matrix.toQuat() # NOT GOOD + + #pose_bone.rotation_quaternion= (bone_rotation_matrix * bone_rest_matrix_inv * bone_rest_matrix).toQuat() + #pose_bone.rotation_quaternion= (bone_rest_matrix_inv * bone_rest_matrix * bone_rotation_matrix).toQuat() + #pose_bone.rotation_quaternion= (bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toQuat() + + #pose_bone.rotation_quaternion= ( bone_rest_matrix* bone_rest_matrix_inv * bone_rotation_matrix).toQuat() + #pose_bone.rotation_quaternion= (bone_rotation_matrix * bone_rest_matrix * bone_rest_matrix_inv).toQuat() + #pose_bone.rotation_quaternion= (bone_rest_matrix_inv * bone_rotation_matrix * bone_rest_matrix ).toQuat() + + pose_bone.rotation_quaternion= (bone_rest_matrix_inv * bone_rotation_matrix * bone_rest_matrix).toQuat() + + else: + bone_rotation_matrix= Euler(math.radians(rx), math.radians(ry), math.radians(rz)).toMatrix() + bone_rotation_matrix.resize4x4() + + eul= (bone_rest_matrix * bone_rotation_matrix * bone_rest_matrix_inv).toEuler() + + #pose_bone.rotation_euler = math.radians(rx), math.radians(ry), math.radians(rz) + pose_bone.rotation_euler = eul + + print("ROTATION" + str(Euler(math.radians(rx), math.radians(ry), math.radians(rz)))) if bvh_node.has_loc: # Set the Location, simple too - pose_bone.loc= (\ - TranslationMatrix(Vector(lx, ly, lz) - bvh_node.rest_head_local ) *\ - bone_rest_matrix_inv).translationPart() # WHY * 10? - just how pose works + + #XXX ORDER CHANGE + # pose_bone.location= (TranslationMatrix(Vector(lx, ly, lz) - bvh_node.rest_head_local ) * bone_rest_matrix_inv).translationPart() # WHY * 10? - just how pose works + # pose_bone.location= (bone_rest_matrix_inv * TranslationMatrix(Vector(lx, ly, lz) - bvh_node.rest_head_local )).translationPart() + # pose_bone.location= lx, ly, lz + pose_bone.location= Vector(lx, ly, lz) - bvh_node.rest_head_local + + +#XXX # TODO- add in 2.5 + if 0: + # Get the transform + xformConstants= xformConstants_dict[bvh_node.has_loc, bvh_node.has_rot] + + if xformConstants: + # Insert the keyframe from the loc/quat + pose_bone.insertKey(arm_ob, current_frame+IMPORT_START_FRAME, xformConstants, True ) + else: + + if bvh_node.has_loc: + pose_bone.keyframe_insert("location") + if bvh_node.has_rot: + if ROT_STYLE=='QUAT': + pose_bone.keyframe_insert("rotation_quaternion") + else: + pose_bone.keyframe_insert("rotation_euler") + + - # Get the transform - xformConstants= xformConstants_dict[bvh_node.has_loc, bvh_node.has_rot] - - - if xformConstants: - # Insert the keyframe from the loc/quat - pose_bone.insertKey(arm_ob, current_frame+IMPORT_START_FRAME, xformConstants, True ) + # bpy.ops.anim.insert_keyframe_menu(type=-4) # XXX - -4 ??? + bpy.ops.screen.frame_offset(delta=1) # First time, set the IPO's to linear - if current_frame==0: - for ipo in action.getAllChannelIpos().itervalues(): - if ipo: - for cur in ipo: - cur.interpolation = Blender.IpoCurve.InterpTypes.LINEAR - if IMPORT_LOOP: - cur.extend = Blender.IpoCurve.ExtendTypes.CYCLIC +#XXX #TODO + if 0: + if current_frame==0: + for ipo in action.getAllChannelIpos().values(): + if ipo: + for cur in ipo: + cur.interpolation = Blender.IpoCurve.InterpTypes.LINEAR + if IMPORT_LOOP: + cur.extend = Blender.IpoCurve.ExtendTypes.CYCLIC - + else: + for cu in action.fcurves: + for bez in cu.keyframe_points: + bez.interpolation = 'CONSTANT' # END KEYFRAME METHOD @@ -535,7 +644,7 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) """ # IPO KEYFRAME SETTING # Add in the IPOs by adding keyframes, AFAIK theres no way to add IPOs to an action so I do this :/ - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): pose_bone, bone, bone_rest_matrix, bone_rest_matrix_inv= bvh_node.temp # Get the transform @@ -550,7 +659,7 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) action_ipos= action.getAllChannelIpos() - for bvh_node in bvh_nodes.itervalues(): + for bvh_node in bvh_nodes.values(): has_loc= bvh_node.has_loc has_rot= bvh_node.has_rot @@ -610,7 +719,7 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) ox,oy,oz= pose_locations[0] x,y,z= pose_locations[1] - for i in xrange(1, len(pose_locations)-1): # from second frame to second last frame + for i in range(1, len(pose_locations)-1): # from second frame to second last frame nx,ny,nz= pose_locations[i+1] xset= yset= zset= True # we set all these by default @@ -641,7 +750,7 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) ow,ox,oy,oz= pose_rotations[0] w,x,y,z= pose_rotations[1] - for i in xrange(1, len(pose_rotations)-1): # from second frame to second last frame + for i in range(1, len(pose_rotations)-1): # from second frame to second last frame nw, nx,ny,nz= pose_rotations[i+1] wset= xset= yset= zset= True # we set all these by default @@ -661,7 +770,9 @@ def bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME= 1, IMPORT_LOOP= False) # IPO KEYFRAME SETTING """ - pose.update() + +# XXX NOT NEEDED NOW? + # pose.update() return arm_ob @@ -691,18 +802,18 @@ for f in ('/d/staggered_walk.bvh',): bvh_node_dict2armature(bvh_nodes, 1) ''' -def load_bvh_ui(file, PREF_UI= True): +def load_bvh_ui(context, file, PREF_UI= False): - if BPyMessages.Error_NoFile(file): - return +#XXX if BPyMessages.Error_NoFile(file): +#XXX return - Draw= Blender.Draw +#XXX Draw= Blender.Draw - IMPORT_SCALE = Draw.Create(0.1) - IMPORT_START_FRAME = Draw.Create(1) - IMPORT_AS_ARMATURE = Draw.Create(1) - IMPORT_AS_EMPTIES = Draw.Create(0) - IMPORT_LOOP = Draw.Create(0) + IMPORT_SCALE = 0.1 + IMPORT_START_FRAME = 1 + IMPORT_AS_ARMATURE = 1 + IMPORT_AS_EMPTIES = 0 + IMPORT_LOOP = 0 # Get USER Options if PREF_UI: @@ -714,44 +825,57 @@ def load_bvh_ui(file, PREF_UI= True): ('Loop Animation', IMPORT_LOOP, 'Enable cyclic IPOs'),\ ] - if not Draw.PupBlock('BVH Import...', pup_block): - return +#XXX if not Draw.PupBlock('BVH Import...', pup_block): +#XXX return - print 'Attempting import BVH', file - - IMPORT_SCALE = IMPORT_SCALE.val - IMPORT_START_FRAME = IMPORT_START_FRAME.val - IMPORT_AS_ARMATURE = IMPORT_AS_ARMATURE.val - IMPORT_AS_EMPTIES = IMPORT_AS_EMPTIES.val - IMPORT_LOOP = IMPORT_LOOP.val + # print('Attempting import BVH', file) if not IMPORT_AS_ARMATURE and not IMPORT_AS_EMPTIES: - Blender.Draw.PupMenu('No import option selected') - return - Blender.Window.WaitCursor(1) + raise('No import option selected') + +#XXX Blender.Window.WaitCursor(1) # Get the BVH data and act on it. - t1= Blender.sys.time() - print '\tparsing bvh...', - bvh_nodes= read_bvh(file, IMPORT_SCALE) - print '%.4f' % (Blender.sys.time()-t1) - t1= Blender.sys.time() - print '\timporting to blender...', - if IMPORT_AS_ARMATURE: bvh_node_dict2armature(bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) - if IMPORT_AS_EMPTIES: bvh_node_dict2objects(bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) + import time + t1= time.time() + print('\tparsing bvh...', end= "") + bvh_nodes= read_bvh(context, file, IMPORT_SCALE) + print('%.4f' % (time.time()-t1)) + t1= time.time() + print('\timporting to blender...', end="") + if IMPORT_AS_ARMATURE: bvh_node_dict2armature(context, bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) + if IMPORT_AS_EMPTIES: bvh_node_dict2objects(context, bvh_nodes, IMPORT_START_FRAME, IMPORT_LOOP) - print 'Done in %.4f\n' % (Blender.sys.time()-t1) - Blender.Window.WaitCursor(0) + print('Done in %.4f\n' % (time.time()-t1)) +#XXX Blender.Window.WaitCursor(0) def main(): Blender.Window.FileSelector(load_bvh_ui, 'Import BVH', '*.bvh') -if __name__ == '__main__': - #def foo(): - main() - ''' - scn = bpy.data.scenes.active - for ob in list(scn.objects): - if ob.name!='arm__': - scn.objects.unlink(ob) - load_bvh_ui('/test.bvh', False) - ''' \ No newline at end of file +from bpy.props import * + +class BvhImporter(bpy.types.Operator): + '''Load a Wavefront OBJ File.''' + bl_idname = "import.bvh" + bl_label = "Import BVH" + + path = StringProperty(name="File Path", description="File path used for importing the OBJ file", maxlen= 1024, default= "") + + def execute(self, context): + # print("Selected: " + context.active_object.name) + + read_bvh(context, self.path) + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.add_fileselect(self) + return ('RUNNING_MODAL',) + + +bpy.ops.add(BvhImporter) + + +import dynamic_menu +menu_func = lambda self, context: self.layout.itemO("import.bvh", text="Motion Capture (.bvh)...") +menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_import, menu_func) From 4033aba579e4fc44a89bf04c90cbbf299f3de1f8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 14:40:35 +0000 Subject: [PATCH 359/412] new operator directory, move some scripts from io --- release/scripts/{io => op}/add_mesh_torus.py | 0 release/scripts/{io => op}/mesh_skin.py | 0 release/scripts/{io => op}/uvcalc_smart_project.py | 0 release/scripts/{io => op}/vertexpaint_dirt.py | 0 source/blender/python/intern/bpy_interface.c | 2 +- 5 files changed, 1 insertion(+), 1 deletion(-) rename release/scripts/{io => op}/add_mesh_torus.py (100%) rename release/scripts/{io => op}/mesh_skin.py (100%) rename release/scripts/{io => op}/uvcalc_smart_project.py (100%) rename release/scripts/{io => op}/vertexpaint_dirt.py (100%) diff --git a/release/scripts/io/add_mesh_torus.py b/release/scripts/op/add_mesh_torus.py similarity index 100% rename from release/scripts/io/add_mesh_torus.py rename to release/scripts/op/add_mesh_torus.py diff --git a/release/scripts/io/mesh_skin.py b/release/scripts/op/mesh_skin.py similarity index 100% rename from release/scripts/io/mesh_skin.py rename to release/scripts/op/mesh_skin.py diff --git a/release/scripts/io/uvcalc_smart_project.py b/release/scripts/op/uvcalc_smart_project.py similarity index 100% rename from release/scripts/io/uvcalc_smart_project.py rename to release/scripts/op/uvcalc_smart_project.py diff --git a/release/scripts/io/vertexpaint_dirt.py b/release/scripts/op/vertexpaint_dirt.py similarity index 100% rename from release/scripts/io/vertexpaint_dirt.py rename to release/scripts/op/vertexpaint_dirt.py diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index b465a494a4d..ef3827d970e 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -607,7 +607,7 @@ void BPY_run_ui_scripts(bContext *C, int reload) char *file_extension; char *dirname; char path[FILE_MAX]; - char *dirs[] = {"scripts/ui", "scripts/io", NULL}; + char *dirs[] = {"scripts/ui", "scripts/op", "scripts/io", NULL}; int path_flags[] = {BLI_GETHOME_LOCAL|BLI_GETHOME_SYSTEM, BLI_GETHOME_USER}; /* SYSTEM / NON-SYSTEM */ int a, err, flag_iter; From 3ac98f1abd2f22acf3128b9564c4309b4b129ef9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 15:16:41 +0000 Subject: [PATCH 360/412] python function for adding a driver. eg ob.driver_add("location") ob.driver_add("location", 0) # x location only Also changed ANIM_add_driver so an index of -1 adds drivers to every item in the array --- source/blender/editors/animation/drivers.c | 85 +++++++++++----------- source/blender/python/intern/bpy_rna.c | 44 +++++++++++ 2 files changed, 88 insertions(+), 41 deletions(-) diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c index bf3fd0f4cf1..5442598a261 100644 --- a/source/blender/editors/animation/drivers.c +++ b/source/blender/editors/animation/drivers.c @@ -147,6 +147,7 @@ short ANIM_add_driver (ID *id, const char rna_path[], int array_index, short fla PointerRNA id_ptr, ptr; PropertyRNA *prop; FCurve *fcu; + int array_index_max = array_index+1; /* validate pointer first - exit if failure */ RNA_id_pointer_create(id, &id_ptr); @@ -155,37 +156,46 @@ short ANIM_add_driver (ID *id, const char rna_path[], int array_index, short fla return 0; } - /* create F-Curve with Driver */ - fcu= verify_driver_fcurve(id, rna_path, array_index, 1); + if(array_index==-1) { /* Key All */ + array_index= 0; + array_index_max= RNA_property_array_length(&ptr, prop) + 1; + } - if (fcu && fcu->driver) { - fcu->driver->type= type; + /* will only loop once unless the array index was -1 */ + for( ; array_index < array_index_max; array_index++) { - /* fill in current value for python */ - if (type == DRIVER_TYPE_PYTHON) { - PropertyType proptype= RNA_property_type(prop); - int array= RNA_property_array_length(&ptr, prop); - char *expression= fcu->driver->expression; - int val, maxlen= sizeof(fcu->driver->expression); - float fval; + /* create F-Curve with Driver */ + fcu= verify_driver_fcurve(id, rna_path, array_index, 1); + + if (fcu && fcu->driver) { + fcu->driver->type= type; - if (proptype == PROP_BOOLEAN) { - if (!array) val= RNA_property_boolean_get(&ptr, prop); - else val= RNA_property_boolean_get_index(&ptr, prop, array_index); + /* fill in current value for python */ + if (type == DRIVER_TYPE_PYTHON) { + PropertyType proptype= RNA_property_type(prop); + int array= RNA_property_array_length(&ptr, prop); + char *expression= fcu->driver->expression; + int val, maxlen= sizeof(fcu->driver->expression); + float fval; - BLI_strncpy(expression, (val)? "True": "False", maxlen); - } - else if (proptype == PROP_INT) { - if (!array) val= RNA_property_int_get(&ptr, prop); - else val= RNA_property_int_get_index(&ptr, prop, array_index); - - BLI_snprintf(expression, maxlen, "%d", val); - } - else if (proptype == PROP_FLOAT) { - if (!array) fval= RNA_property_float_get(&ptr, prop); - else fval= RNA_property_float_get_index(&ptr, prop, array_index); - - BLI_snprintf(expression, maxlen, "%.3f", fval); + if (proptype == PROP_BOOLEAN) { + if (!array) val= RNA_property_boolean_get(&ptr, prop); + else val= RNA_property_boolean_get_index(&ptr, prop, array_index); + + BLI_strncpy(expression, (val)? "True": "False", maxlen); + } + else if (proptype == PROP_INT) { + if (!array) val= RNA_property_int_get(&ptr, prop); + else val= RNA_property_int_get_index(&ptr, prop, array_index); + + BLI_snprintf(expression, maxlen, "%d", val); + } + else if (proptype == PROP_FLOAT) { + if (!array) fval= RNA_property_float_get(&ptr, prop); + else fval= RNA_property_float_get_index(&ptr, prop, array_index); + + BLI_snprintf(expression, maxlen, "%.3f", fval); + } } } } @@ -357,27 +367,20 @@ static int add_driver_button_exec (bContext *C, wmOperator *op) PropertyRNA *prop= NULL; char *path; short success= 0; - int a, index, length, all= RNA_boolean_get(op->ptr, "all"); + int index, length, all= RNA_boolean_get(op->ptr, "all"); /* try to create driver using property retrieved from UI */ memset(&ptr, 0, sizeof(PointerRNA)); uiAnimContextProperty(C, &ptr, &prop, &index); - + + if (all) + index= -1; + if (ptr.data && prop && RNA_property_animateable(ptr.data, prop)) { path= RNA_path_from_ID_to_property(&ptr, prop); - if (path) { - if (all) { - length= RNA_property_array_length(&ptr, prop); - - if (length) index= 0; - else length= 1; - } - else - length= 1; - - for (a=0; aptr.data==NULL) { + PyErr_Format( PyExc_TypeError, "driver_add, this struct has no data, cant be animated", path); + return NULL; + } + + prop = RNA_struct_find_property(&self->ptr, path); + + if (prop==NULL) { + PyErr_Format( PyExc_TypeError, "driver_add, property \"%s\" not found", path); + return NULL; + } + + if (!RNA_property_animateable(&self->ptr, prop)) { + PyErr_Format( PyExc_TypeError, "driver_add, property \"%s\" not animatable", path); + return NULL; + } + + path_full= RNA_path_from_ID_to_property(&self->ptr, prop); + + if (path_full==NULL) { + PyErr_Format( PyExc_TypeError, "driver_add, could not make path to \"%s\"", path); + return NULL; + } + + result= PyBool_FromLong( ANIM_add_driver((ID *)self->ptr.id.data, path_full, index, 0, DRIVER_TYPE_PYTHON)); + MEM_freeN(path_full); + + return result; +} + + static PyObject *pyrna_struct_is_property_set(BPy_StructRNA * self, PyObject *args) { char *name; @@ -1878,6 +1921,7 @@ static struct PyMethodDef pyrna_struct_methods[] = { /* maybe this become and ID function */ {"keyframe_insert", (PyCFunction)pyrna_struct_keyframe_insert, METH_VARARGS, NULL}, + {"driver_add", (PyCFunction)pyrna_struct_driver_add, METH_VARARGS, NULL}, {"is_property_set", (PyCFunction)pyrna_struct_is_property_set, METH_VARARGS, NULL}, {"is_property_hidden", (PyCFunction)pyrna_struct_is_property_hidden, METH_VARARGS, NULL}, From b36c4f39878eb90788c8d9bdda74ccd6eebcf41b Mon Sep 17 00:00:00 2001 From: Arystanbek Dyussenov Date: Wed, 4 Nov 2009 15:25:57 +0000 Subject: [PATCH 361/412] Merging change 24311 from COLLADA branch into trunk which should fix object-based rotation import/export. Bone rotation animation not fixed yet. --- source/blender/collada/DocumentExporter.cpp | 4 ++-- source/blender/collada/DocumentImporter.cpp | 21 ++++++++++++--------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp index 09db4ba062f..b10a95e6418 100644 --- a/source/blender/collada/DocumentExporter.cpp +++ b/source/blender/collada/DocumentExporter.cpp @@ -1832,7 +1832,7 @@ public: std::string new_rna_path; if (strstr(rna_path, "rotation")) { - new_rna_path = strstr(rna_path, "rotation"); + new_rna_path = "rotation"; return new_rna_path + axis_name; } else if (strstr(rna_path, "location")) { @@ -2058,7 +2058,7 @@ public: if (!strcmp(fcu->rna_path, "location") || !strcmp(fcu->rna_path, "scale") || - !strcmp(fcu->rna_path, "rotation")) { + !strcmp(fcu->rna_path, "rotation_euler")) { add_animation(fcu, id_name(ob)); } diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp index f31ac7d5b0b..0aa69d11949 100644 --- a/source/blender/collada/DocumentImporter.cpp +++ b/source/blender/collada/DocumentImporter.cpp @@ -1721,6 +1721,8 @@ public: new_tris = count_new_tris(mesh, me, new_tris); read_faces(mesh, me, new_tris); + + // make_edges(me, 0); mesh_calc_normals(me->mvert, me->totvert, me->mface, me->totface, NULL); @@ -1858,6 +1860,9 @@ private: FCurve *fcu; std::vector::iterator it; int i = 0; + + char *p = strstr(rna_path, "rotation_euler"); + bool is_rotation = p && *(p + strlen("rotation_euler")) == '\0'; for (it = curves.begin(); it != curves.end(); it++) { fcu = *it; @@ -1867,8 +1872,7 @@ private: else fcu->array_index = array_index; // convert degrees to radians for rotation - char *p = strstr(rna_path, "rotation"); - if (p && *(p + strlen("rotation")) == '\0') { + if (is_rotation) { for(int j = 0; j < fcu->totvert; j++) { float rot_intan = fcu->bezt[j].vec[0][1]; float rot_output = fcu->bezt[j].vec[1][1]; @@ -1903,7 +1907,7 @@ private: action_groups_add_channel(act, grp, fcu); } - if (p && *(p + strlen("rotation")) == '\0') { + if (is_rotation) { fcurves_actionGroup_map[grp].push_back(fcu); } } @@ -2051,9 +2055,9 @@ public: case COLLADAFW::Transformation::ROTATE: { if (is_joint) - BLI_snprintf(rna_path, sizeof(rna_path), "%s.euler_rotation", joint_path); + BLI_snprintf(rna_path, sizeof(rna_path), "%s.rotation_euler", joint_path); else - BLI_strncpy(rna_path, "rotation", sizeof(rna_path)); + BLI_strncpy(rna_path, "rotation_euler", sizeof(rna_path)); COLLADAFW::Rotate* rot = (COLLADAFW::Rotate*)animated.tm; COLLADABU::Math::Vector3& axis = rot->getRotationAxis(); @@ -2082,8 +2086,7 @@ public: } break; case COLLADAFW::AnimationList::AXISANGLE: - // convert axis-angle to quat? or XYZ? - break; + // TODO convert axis-angle to quat? or XYZ? default: fprintf(stderr, "AnimationClass %d is not supported for ROTATE transformation.\n", binding.animationClass); @@ -2124,7 +2127,7 @@ public: add_fcurves_to_object(ob, fcurves, rna_path, -1, &animated); break; default: - fprintf(stderr, "AnimationClass %d is not supported for TRANSLATE transformation.\n", + fprintf(stderr, "AnimationClass %d is not supported for SCALE transformation.\n", binding.animationClass); } } @@ -2171,7 +2174,7 @@ public: char rna_path[100]; BLI_snprintf(joint_path, sizeof(joint_path), "pose.pose_channels[\"%s\"]", grp->name); - BLI_snprintf(rna_path, sizeof(rna_path), "%s.rotation", joint_path); + BLI_snprintf(rna_path, sizeof(rna_path), "%s.rotation_euler", joint_path); FCurve *quatcu[4] = { create_fcurve(0, rna_path), From edeae7477bda03f9f5fbd57b748fae4f3d7319f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 16:26:08 +0000 Subject: [PATCH 362/412] fix for some python errors --- release/scripts/ui/space_view3d.py | 4 ++-- release/scripts/ui/space_view3d_toolbar.py | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index ba6f1c4740d..1567da12173 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1388,8 +1388,8 @@ class VIEW3D_PT_3dview_meshdisplay(bpy.types.Panel): bl_label = "Mesh Display" def poll(self, context): - editmesh = context.mode == 'EDIT_MESH' - return (editmesh) + # The active object check is needed because of localmode + return (context.active_object and (context.mode == 'EDIT_MESH')) def draw(self, context): layout = self.layout diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 809201b55b4..1d421e1f408 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -134,10 +134,12 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel): def draw(self, context): layout = self.layout - mesh = context.active_object.data + ob = context.active_object - col = layout.column(align=True) - col.itemR(mesh, "use_mirror_x") + if ob: + mesh = context.active_object.data + col = layout.column(align=True) + col.itemR(mesh, "use_mirror_x") # ********** default tools for editmode_curve **************** From 8af525f8604f7f6461af1ee5dffa10d2eea822a9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 17:16:58 +0000 Subject: [PATCH 363/412] bpy.ops.import.obj("somepath") is invalid syntax because import is a keyword. rename import to import_scene, import_anim, future import_sequence_edl, import_model etc.. --- release/scripts/io/{import_bvh.py => import_anim_bvh.py} | 4 ++-- release/scripts/io/{import_3ds.py => import_scene_3ds.py} | 6 +++--- release/scripts/io/{import_obj.py => import_scene_obj.py} | 4 ++-- release/scripts/ui/space_console.py | 6 +++++- source/blender/python/epy_doc_gen.py | 8 ++++---- 5 files changed, 16 insertions(+), 12 deletions(-) rename release/scripts/io/{import_bvh.py => import_anim_bvh.py} (99%) rename release/scripts/io/{import_3ds.py => import_scene_3ds.py} (99%) rename release/scripts/io/{import_obj.py => import_scene_obj.py} (99%) diff --git a/release/scripts/io/import_bvh.py b/release/scripts/io/import_anim_bvh.py similarity index 99% rename from release/scripts/io/import_bvh.py rename to release/scripts/io/import_anim_bvh.py index 52650078e7f..dff9a3ac0c8 100644 --- a/release/scripts/io/import_bvh.py +++ b/release/scripts/io/import_anim_bvh.py @@ -855,7 +855,7 @@ from bpy.props import * class BvhImporter(bpy.types.Operator): '''Load a Wavefront OBJ File.''' - bl_idname = "import.bvh" + bl_idname = "import_anim.bvh" bl_label = "Import BVH" path = StringProperty(name="File Path", description="File path used for importing the OBJ file", maxlen= 1024, default= "") @@ -877,5 +877,5 @@ bpy.ops.add(BvhImporter) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("import.bvh", text="Motion Capture (.bvh)...") +menu_func = lambda self, context: self.layout.itemO(BvhImporter.bl_idname, text="Motion Capture (.bvh)...") menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_import, menu_func) diff --git a/release/scripts/io/import_3ds.py b/release/scripts/io/import_scene_3ds.py similarity index 99% rename from release/scripts/io/import_3ds.py rename to release/scripts/io/import_scene_3ds.py index 62612cc79d4..cd351ccb99e 100644 --- a/release/scripts/io/import_3ds.py +++ b/release/scripts/io/import_scene_3ds.py @@ -139,7 +139,7 @@ import os import time import struct -from import_obj import unpack_face_list, load_image +from import_scene_obj import unpack_face_list, load_image import bpy import Mathutils @@ -1143,7 +1143,7 @@ from bpy.props import * class IMPORT_OT_autodesk_3ds(bpy.types.Operator): '''Import from 3DS file format (.3ds)''' - bl_idname = "import.autodesk_3ds" + bl_idname = "import_scene.autodesk_3ds" bl_label = 'Import 3DS' # List of operator properties, the attributes will be assigned @@ -1167,7 +1167,7 @@ class IMPORT_OT_autodesk_3ds(bpy.types.Operator): bpy.ops.add(IMPORT_OT_autodesk_3ds) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("import.autodesk_3ds", text="3D Studio (.3ds)...") +menu_func = lambda self, context: self.layout.itemO(IMPORT_OT_autodesk_3ds.bl_idname, text="3D Studio (.3ds)...") menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_import, menu_func) # NOTES: diff --git a/release/scripts/io/import_obj.py b/release/scripts/io/import_scene_obj.py similarity index 99% rename from release/scripts/io/import_obj.py rename to release/scripts/io/import_scene_obj.py index e5e0dc35995..d1b29a3024d 100644 --- a/release/scripts/io/import_obj.py +++ b/release/scripts/io/import_scene_obj.py @@ -1574,7 +1574,7 @@ from bpy.props import * class IMPORT_OT_obj(bpy.types.Operator): '''Load a Wavefront OBJ File.''' - bl_idname = "import.obj" + bl_idname = "import_scene.obj" bl_label = "Import OBJ" # List of operator properties, the attributes will be assigned @@ -1626,7 +1626,7 @@ bpy.ops.add(IMPORT_OT_obj) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("import.obj", text="Wavefront (.obj)...") +menu_func = lambda self, context: self.layout.itemO(IMPORT_OT_obj.bl_idname, text="Wavefront (.obj)...") menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_import, menu_func) diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index 7cd5a0a903b..c3b97fbaf0a 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -157,6 +157,10 @@ class CONSOLE_OT_exec(bpy.types.Operator): console, stdout, stderr = get_console(hash(context.region)) + # Hack, useful but must add some other way to access + #if "C" not in console.locals: + console.locals["C"] = context + # redirect output sys.stdout = stdout sys.stderr = stderr @@ -222,7 +226,7 @@ class CONSOLE_OT_autocomplete(bpy.types.Operator): sc = context.space_data console = get_console(hash(context.region))[0] - + current_line = sc.history[-1] line = current_line.line diff --git a/source/blender/python/epy_doc_gen.py b/source/blender/python/epy_doc_gen.py index 202a1df3502..fff9d4f9c20 100644 --- a/source/blender/python/epy_doc_gen.py +++ b/source/blender/python/epy_doc_gen.py @@ -23,10 +23,10 @@ Usage, run this script from blenders root path once you have compiled blender ./blender.bin -P source/blender/python/epy_doc_gen.py -This will generate rna.py and bpyoperator.py in "./source/blender/python/doc/" +This will generate python files in "./source/blender/python/doc/bpy" Generate html docs by running... - epydoc source/blender/python/doc/*.py -v \\ + epydoc source/blender/python/doc/bpy/ -v \\ -o source/blender/python/doc/html \\ --inheritance=included \\ --no-sourcecode \\ @@ -170,11 +170,11 @@ def write_func(rna, ident, out, func_type): # Operators and functions work differently if func_type=='OPERATOR': rna_func_name = rna_struct.identifier.split("_OT_")[-1] - rna_func_desc = rna_struct.description.strip() + rna_func_desc = rna_struct.description.strip().replace('\n', ' ') items = rna_struct.properties.items() else: rna_func_name = rna.identifier - rna_func_desc = rna.description.strip() + rna_func_desc = rna.description.strip().replace('\n', ' ') items = rna.parameters.items() From fe82c2674e5d014b4e4c75f9337627957449dc99 Mon Sep 17 00:00:00 2001 From: Damien Plisson Date: Wed, 4 Nov 2009 17:50:31 +0000 Subject: [PATCH 364/412] Mac / Cocoa: - Fix update event fired at each loop iteration. Thx Brecht for the patch - Fix missing deactivate event when in fullscreen mode --- intern/ghost/intern/GHOST_WindowCocoa.mm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index 7716175b9f6..f0bc8dd4d0f 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -68,7 +68,7 @@ extern "C" { - (void)windowWillClose:(NSNotification *)notification; - (void)windowDidBecomeKey:(NSNotification *)notification; - (void)windowDidResignKey:(NSNotification *)notification; -- (void)windowDidUpdate:(NSNotification *)notification; +- (void)windowDidExpose:(NSNotification *)notification; - (void)windowDidResize:(NSNotification *)notification; @end @@ -91,13 +91,10 @@ extern "C" { - (void)windowDidResignKey:(NSNotification *)notification { - //The window is no more key when its own view becomes fullscreen - //but ghost doesn't know the view/window difference, so hide this fact - if (associatedWindow->getState() != GHOST_kWindowStateFullScreen) - systemCocoa->handleWindowEvent(GHOST_kEventWindowDeactivate, associatedWindow); + systemCocoa->handleWindowEvent(GHOST_kEventWindowDeactivate, associatedWindow); } -- (void)windowDidUpdate:(NSNotification *)notification +- (void)windowDidExpose:(NSNotification *)notification { systemCocoa->handleWindowEvent(GHOST_kEventWindowUpdate, associatedWindow); } @@ -622,6 +619,7 @@ GHOST_TSuccess GHOST_WindowCocoa::setState(GHOST_TWindowState state) //Make window normal and resize it [m_window setStyleMask:(NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask)]; [m_window setFrame:[[m_window screen] visibleFrame] display:YES]; + //TODO for 10.6 only : window title is forgotten after the style change [m_window makeFirstResponder:m_openGLView]; #else //With 10.5, we need to create a new window to change its style to borderless From 51943096a97c7317473de7aba7a4ab4a06697156 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 18:35:32 +0000 Subject: [PATCH 365/412] bugfix [#19804] .MDD is not working?? // Also filetype issue? - made all exporters default to the blend filename with the extension replaced - MDD's poll function now checks for an active mesh - multiline docstrings are written as multiline docs when generating epydocs --- release/scripts/io/export_3ds.py | 10 +- release/scripts/io/export_fbx.py | 10 +- release/scripts/io/export_mdd.py | 236 +++++++++++++-------------- release/scripts/io/export_obj.py | 10 +- release/scripts/io/export_ply.py | 10 +- release/scripts/io/export_x3d.py | 10 +- source/blender/python/epy_doc_gen.py | 10 +- 7 files changed, 160 insertions(+), 136 deletions(-) diff --git a/release/scripts/io/export_3ds.py b/release/scripts/io/export_3ds.py index 3e5d64a3e35..a96abb50215 100644 --- a/release/scripts/io/export_3ds.py +++ b/release/scripts/io/export_3ds.py @@ -1109,7 +1109,7 @@ def save_3ds(filename, context): # Blender.Draw.PupMenu("Error%t|This script requires a full python installation") # # save_3ds('/test_b.3ds') from bpy.props import * -class EXPORT_OT_autodesk_3ds(bpy.types.Operator): +class Export3DS(bpy.types.Operator): '''Export to 3DS file format (.3ds).''' bl_idname = "export.autodesk_3ds" bl_label = 'Export 3DS' @@ -1135,9 +1135,13 @@ class EXPORT_OT_autodesk_3ds(bpy.types.Operator): print("Poll") return context.active_object != None -bpy.ops.add(EXPORT_OT_autodesk_3ds) +bpy.ops.add(Export3DS) # Add to a menu import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.autodesk_3ds", text="Autodesk 3DS...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".3ds") + self.layout.item_stringO(Export3DS.bl_idname, "path", default_path, text="Autodesk 3DS...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) diff --git a/release/scripts/io/export_fbx.py b/release/scripts/io/export_fbx.py index 8f4b0ce0e98..ec2d2791b52 100644 --- a/release/scripts/io/export_fbx.py +++ b/release/scripts/io/export_fbx.py @@ -3351,7 +3351,7 @@ def write_ui(): # GLOBALS.clear() from bpy.props import * -class EXPORT_OT_fbx(bpy.types.Operator): +class ExportFBX(bpy.types.Operator): '''Selection to an ASCII Autodesk FBX''' bl_idname = "export.fbx" bl_label = "Export FBX" @@ -3433,7 +3433,7 @@ class EXPORT_OT_fbx(bpy.types.Operator): return ('RUNNING_MODAL',) -bpy.ops.add(EXPORT_OT_fbx) +bpy.ops.add(ExportFBX) # if __name__ == "__main__": # bpy.ops.EXPORT_OT_ply(filename="/tmp/test.ply") @@ -3464,6 +3464,10 @@ bpy.ops.add(EXPORT_OT_fbx) # Add to a menu import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.fbx", text="Autodesk FBX...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".fbx") + self.layout.item_stringO(ExportFBX.bl_idname, "path", default_path, text="Autodesk FBX...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) diff --git a/release/scripts/io/export_mdd.py b/release/scripts/io/export_mdd.py index 677361f3392..2b3e1681449 100644 --- a/release/scripts/io/export_mdd.py +++ b/release/scripts/io/export_mdd.py @@ -54,148 +54,148 @@ import os #from Blender import * #import BPyMessages try: - from struct import pack + from struct import pack except: - pack = None + pack = None def zero_file(filepath): - ''' - If a file fails, this replaces it with 1 char, better not remove it? - ''' - file = open(filepath, 'w') - file.write('\n') # apparently macosx needs some data in a blank file? - file.close() + ''' + If a file fails, this replaces it with 1 char, better not remove it? + ''' + file = open(filepath, 'w') + file.write('\n') # apparently macosx needs some data in a blank file? + file.close() def check_vertcount(mesh,vertcount): - ''' - check and make sure the vertcount is consistent throughout the frame range - ''' - if len(mesh.verts) != vertcount: - raise Exception('Error, number of verts has changed during animation, cannot export') - f.close() - zero_file(filepath) - return - - + ''' + check and make sure the vertcount is consistent throughout the frame range + ''' + if len(mesh.verts) != vertcount: + raise Exception('Error, number of verts has changed during animation, cannot export') + f.close() + zero_file(filepath) + return + + def write(filename, sce, ob, PREF_STARTFRAME, PREF_ENDFRAME, PREF_FPS): - if not pack: - raise Exception('Error, this script requires the "pack" module') - - if ob.type != 'MESH': - raise Exception('Error, active object is not a mesh') - """ - Window.EditMode(0) - Blender.Window.WaitCursor(1) + """ + Blender.Window.WaitCursor(1) - mesh_orig = Mesh.New() - mesh_orig.getFromObject(ob.name) - """ - orig_frame = sce.current_frame - sce.set_frame(PREF_STARTFRAME) - me = ob.create_mesh(True, 'PREVIEW') + mesh_orig = Mesh.New() + mesh_orig.getFromObject(ob.name) + """ - #Flip y and z - mat_flip= Mathutils.Matrix(\ - [1.0, 0.0, 0.0, 0.0],\ - [0.0, 0.0, 1.0, 0.0],\ - [0.0, 1.0, 0.0, 0.0],\ - [0.0, 0.0, 0.0, 1.0],\ - ) + bpy.ops.object.mode_set(mode='OBJECT') - numverts = len(me.verts) + orig_frame = sce.current_frame + sce.set_frame(PREF_STARTFRAME) + me = ob.create_mesh(True, 'PREVIEW') - numframes = PREF_ENDFRAME-PREF_STARTFRAME+1 - PREF_FPS= float(PREF_FPS) - f = open(filename, 'wb') #no Errors yet:Safe to create file - - # Write the header - f.write(pack(">2i", numframes, numverts)) - - # Write the frame times (should we use the time IPO??) - f.write( pack(">%df" % (numframes), *[frame/PREF_FPS for frame in range(numframes)]) ) # seconds - - #rest frame needed to keep frames in sync - """ - Blender.Set('curframe', PREF_STARTFRAME) - me_tmp.getFromObject(ob.name) - """ + #Flip y and z + mat_flip= Mathutils.Matrix(\ + [1.0, 0.0, 0.0, 0.0],\ + [0.0, 0.0, 1.0, 0.0],\ + [0.0, 1.0, 0.0, 0.0],\ + [0.0, 0.0, 0.0, 1.0],\ + ) - check_vertcount(me,numverts) - me.transform(mat_flip * ob.matrix) - f.write(pack(">%df" % (numverts*3), *[axis for v in me.verts for axis in v.co])) - - for frame in range(PREF_STARTFRAME,PREF_ENDFRAME+1):#in order to start at desired frame - """ - Blender.Set('curframe', frame) - me_tmp.getFromObject(ob.name) - """ + numverts = len(me.verts) - sce.set_frame(frame) - me = ob.create_mesh(True, 'PREVIEW') - check_vertcount(me,numverts) - me.transform(mat_flip * ob.matrix) - - # Write the vertex data - f.write(pack(">%df" % (numverts*3), *[axis for v in me.verts for axis in v.co])) - - """ - me_tmp.verts= None - """ - f.close() - - print ('MDD Exported: %s frames:%d\n'% (filename, numframes-1)) - """ - Blender.Window.WaitCursor(0) - Blender.Set('curframe', orig_frame) - """ - sce.set_frame(orig_frame) + numframes = PREF_ENDFRAME-PREF_STARTFRAME+1 + PREF_FPS= float(PREF_FPS) + f = open(filename, 'wb') #no Errors yet:Safe to create file + + # Write the header + f.write(pack(">2i", numframes, numverts)) + + # Write the frame times (should we use the time IPO??) + f.write( pack(">%df" % (numframes), *[frame/PREF_FPS for frame in range(numframes)]) ) # seconds + + #rest frame needed to keep frames in sync + """ + Blender.Set('curframe', PREF_STARTFRAME) + me_tmp.getFromObject(ob.name) + """ + + check_vertcount(me,numverts) + me.transform(mat_flip * ob.matrix) + f.write(pack(">%df" % (numverts*3), *[axis for v in me.verts for axis in v.co])) + + for frame in range(PREF_STARTFRAME,PREF_ENDFRAME+1):#in order to start at desired frame + """ + Blender.Set('curframe', frame) + me_tmp.getFromObject(ob.name) + """ + + sce.set_frame(frame) + me = ob.create_mesh(True, 'PREVIEW') + check_vertcount(me,numverts) + me.transform(mat_flip * ob.matrix) + + # Write the vertex data + f.write(pack(">%df" % (numverts*3), *[axis for v in me.verts for axis in v.co])) + + """ + me_tmp.verts= None + """ + f.close() + + print ('MDD Exported: %s frames:%d\n'% (filename, numframes-1)) + """ + Blender.Window.WaitCursor(0) + Blender.Set('curframe', orig_frame) + """ + sce.set_frame(orig_frame) from bpy.props import * -class EXPORT_OT_mdd(bpy.types.Operator): - '''Animated mesh to MDD vertex keyframe file.''' - bl_idname = "export.mdd" - bl_label = "Export MDD" +class ExportMDD(bpy.types.Operator): + '''Animated mesh to MDD vertex keyframe file.''' + bl_idname = "export.mdd" + bl_label = "Export MDD" - # get first scene to get min and max properties for frames, fps + # get first scene to get min and max properties for frames, fps - sce = bpy.data.scenes[bpy.data.scenes.keys()[0]] - minframe = sce.rna_type.properties["current_frame"].soft_min - maxframe = sce.rna_type.properties["current_frame"].soft_max - minfps = sce.render_data.rna_type.properties["fps"].soft_min - maxfps = sce.render_data.rna_type.properties["fps"].soft_max + sce = bpy.data.scenes[bpy.data.scenes.keys()[0]] + minframe = sce.rna_type.properties["current_frame"].soft_min + maxframe = sce.rna_type.properties["current_frame"].soft_max + minfps = sce.render_data.rna_type.properties["fps"].soft_min + maxfps = sce.render_data.rna_type.properties["fps"].soft_max - # List of operator properties, the attributes will be assigned - # to the class instance from the operator settings before calling. - path = StringProperty(name="File Path", description="File path used for exporting the MDD file", maxlen= 1024, default= "tmp.mdd") - fps = IntProperty(name="Frames Per Second", description="Number of frames/second", min=minfps, max=maxfps, default= 25) - start_frame = IntProperty(name="Start Frame", description="Start frame for baking", min=minframe,max=maxframe,default=1) - end_frame = IntProperty(name="End Frame", description="End frame for baking", min=minframe, max=maxframe, default= 250) + # List of operator properties, the attributes will be assigned + # to the class instance from the operator settings before calling. + path = StringProperty(name="File Path", description="File path used for exporting the MDD file", maxlen= 1024, default= "tmp.mdd") + fps = IntProperty(name="Frames Per Second", description="Number of frames/second", min=minfps, max=maxfps, default= 25) + start_frame = IntProperty(name="Start Frame", description="Start frame for baking", min=minframe,max=maxframe,default=1) + end_frame = IntProperty(name="End Frame", description="End frame for baking", min=minframe, max=maxframe, default= 250) - def poll(self, context): - return context.active_object != None + def poll(self, context): + ob = context.active_object + return (ob and ob.type=='MESH') - def execute(self, context): - if not self.path: - raise Exception("filename not set") - write(self.path, context.scene, context.active_object, - self.start_frame, self.end_frame, self.fps ) - return ('FINISHED',) - - def invoke(self, context, event): - wm = context.manager - wm.add_fileselect(self) - return ('RUNNING_MODAL',) + def execute(self, context): + if not self.path: + raise Exception("filename not set") + write(self.path, context.scene, context.active_object, + self.start_frame, self.end_frame, self.fps ) + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.add_fileselect(self) + return ('RUNNING_MODAL',) -bpy.ops.add(EXPORT_OT_mdd) +bpy.ops.add(ExportMDD) # Add to a menu import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.mdd", text="Vertex Keyframe Animation (.mdd)...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".mdd") + self.layout.item_stringO(ExportMDD.bl_idname, "path", default_path, text="Vertex Keyframe Animation (.mdd)...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) if __name__=='__main__': - #if not pack: -# Draw.PupMenu('Error%t|This script requires a full python install') - #Blender.Window.FileSelector(mdd_export_ui, 'EXPORT MDD', sys.makename(ext='.mdd')) - bpy.ops.EXPORT_OT_mdd(path="/tmp/test.mdd") + #Blender.Window.FileSelector(mdd_export_ui, 'EXPORT MDD', sys.makename(ext='.mdd')) + bpy.ops.EXPORT_OT_mdd(path="/tmp/test.mdd") diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py index 5d0ab5bb391..2c77cbd702a 100644 --- a/release/scripts/io/export_obj.py +++ b/release/scripts/io/export_obj.py @@ -932,7 +932,7 @@ Currently the exporter lacks these features: from bpy.props import * -class EXPORT_OT_obj(bpy.types.Operator): +class ExportOBJ(bpy.types.Operator): '''Save a Wavefront OBJ File''' bl_idname = "export.obj" @@ -1002,10 +1002,14 @@ class EXPORT_OT_obj(bpy.types.Operator): print("Poll") return context.active_object != None -bpy.ops.add(EXPORT_OT_obj) +bpy.ops.add(ExportOBJ) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.obj", text="Wavefront (.obj)...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".obj") + self.layout.item_stringO(ExportOBJ.bl_idname, "path", default_path, text="Wavefront (.obj)...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) if __name__ == "__main__": diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py index 7235d51450e..99fa3233278 100644 --- a/release/scripts/io/export_ply.py +++ b/release/scripts/io/export_ply.py @@ -252,7 +252,7 @@ def write(filename, scene, ob, \ from bpy.props import * -class EXPORT_OT_ply(bpy.types.Operator): +class ExportPLY(bpy.types.Operator): '''Export a single object as a stanford PLY with normals, colours and texture coordinates.''' bl_idname = "export.ply" bl_label = "Export PLY" @@ -292,10 +292,14 @@ class EXPORT_OT_ply(bpy.types.Operator): return ('RUNNING_MODAL',) -bpy.ops.add(EXPORT_OT_ply) +bpy.ops.add(ExportPLY) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.ply", text="Stanford (.ply)...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".ply") + self.layout.item_stringO(ExportPLY.bl_idname, "path", default_path, text="Stanford (.ply)...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) if __name__ == "__main__": diff --git a/release/scripts/io/export_x3d.py b/release/scripts/io/export_x3d.py index 6de67252676..c8c5f71f6ff 100644 --- a/release/scripts/io/export_x3d.py +++ b/release/scripts/io/export_x3d.py @@ -1215,7 +1215,7 @@ def x3d_export_ui(filename): from bpy.props import * -class EXPORT_OT_x3d(bpy.types.Operator): +class ExportX3D(bpy.types.Operator): '''Export selection to Extensible 3D file (.x3d)''' bl_idname = "export.x3d" bl_label = 'Export X3D' @@ -1238,10 +1238,14 @@ class EXPORT_OT_x3d(bpy.types.Operator): wm.add_fileselect(self) return ('RUNNING_MODAL',) -bpy.ops.add(EXPORT_OT_x3d) +bpy.ops.add(ExportX3D) import dynamic_menu -menu_func = lambda self, context: self.layout.itemO("export.x3d", text="X3D Extensible 3D (.x3d)...") + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".x3d") + self.layout.item_stringO(ExportX3D.bl_idname, "path", default_path, text="X3D Extensible 3D (.x3d)...") + menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) # NOTES diff --git a/source/blender/python/epy_doc_gen.py b/source/blender/python/epy_doc_gen.py index fff9d4f9c20..b0126a0b9a0 100644 --- a/source/blender/python/epy_doc_gen.py +++ b/source/blender/python/epy_doc_gen.py @@ -170,11 +170,11 @@ def write_func(rna, ident, out, func_type): # Operators and functions work differently if func_type=='OPERATOR': rna_func_name = rna_struct.identifier.split("_OT_")[-1] - rna_func_desc = rna_struct.description.strip().replace('\n', ' ') + rna_func_desc = rna_struct.description.strip() items = rna_struct.properties.items() else: rna_func_name = rna.identifier - rna_func_desc = rna.description.strip().replace('\n', ' ') + rna_func_desc = rna.description.strip() items = rna.parameters.items() @@ -288,7 +288,11 @@ def write_func(rna, ident, out, func_type): out.write(ident+'def %s(%s):\n' % (rna_func_name, ', '.join(kw_args))) out.write(ident+'\t"""\n') - out.write(ident+'\t%s\n' % rna_func_desc) + + # Descriptions could be multiline + for rna_func_desc_line in rna_func_desc.split('\n'): + out.write(ident+'\t%s\n' % rna_func_desc_line.strip()) + for desc in kw_arg_attrs: out.write(ident+'\t%s\n' % desc) From 6e1f215c20825eaa3035c028f2177cf5ffd128d3 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 4 Nov 2009 20:12:27 +0000 Subject: [PATCH 366/412] Bugfix: sculpt layer brush "persistent" option was not showing up in UI. --- release/scripts/ui/space_view3d_toolbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 1d421e1f408..12a9417e319 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -524,7 +524,7 @@ class VIEW3D_PT_tools_brush(PaintPanel): col.row().itemR(brush, "direction", expand=True) if brush.sculpt_tool == 'LAYER': - col.itemR(brush, "persistent") + col.itemR(brush, "use_persistent") col.itemO("sculpt.set_persistent_base") # Texture Paint Mode # From 3fa8959bb57dbaf9b5d4f86951d4952e3a89f477 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 20:21:08 +0000 Subject: [PATCH 367/412] - move WM operators out of bpy_ops.py into their own file - fix operator template --- release/scripts/modules/bpy_ops.py | 362 -------------------------- release/scripts/op/wm.py | 359 +++++++++++++++++++++++++ release/scripts/templates/operator.py | 15 +- 3 files changed, 368 insertions(+), 368 deletions(-) create mode 100644 release/scripts/op/wm.py diff --git a/release/scripts/modules/bpy_ops.py b/release/scripts/modules/bpy_ops.py index c30869669cc..55df062ac83 100644 --- a/release/scripts/modules/bpy_ops.py +++ b/release/scripts/modules/bpy_ops.py @@ -186,365 +186,3 @@ class bpy_ops_submodule_op(object): import bpy bpy.ops = bpy_ops() - -# TODO, C macro's cant define settings :| - -from bpy.props import * - - -class MESH_OT_delete_edgeloop(bpy.types.Operator): - '''Export a single object as a stanford PLY with normals, - colours and texture coordinates.''' - bl_idname = "mesh.delete_edgeloop" - bl_label = "Delete Edge Loop" - - def execute(self, context): - bpy.ops.tfm.edge_slide(value=1.0) - bpy.ops.mesh.select_more() - bpy.ops.mesh.remove_doubles() - return ('FINISHED',) - -rna_path_prop = StringProperty(name="Context Attributes", - description="rna context string", maxlen=1024, default="") - -rna_reverse_prop = BoolProperty(name="Reverse", - description="Cycle backwards", default=False) - - -class NullPathMember: - pass - - -def context_path_validate(context, path): - import sys - try: - value = eval("context.%s" % path) - except AttributeError: - if "'NoneType'" in str(sys.exc_info()[1]): - # One of the items in the rna path is None, just ignore this - value = NullPathMember - else: - # We have a real error in the rna path, dont ignore that - raise - - return value - - -def execute_context_assign(self, context): - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s=self.value" % self.path) - return ('FINISHED',) - - -class WM_OT_context_set_boolean(bpy.types.Operator): - '''Set a context value.''' - bl_idname = "wm.context_set_boolean" - bl_label = "Context Set" - - path = rna_path_prop - value = BoolProperty(name="Value", - description="Assignment value", default=True) - - execute = execute_context_assign - - -class WM_OT_context_set_int(bpy.types.Operator): # same as enum - '''Set a context value.''' - bl_idname = "wm.context_set_int" - bl_label = "Context Set" - - path = rna_path_prop - value = IntProperty(name="Value", description="Assign value", default=0) - - execute = execute_context_assign - - -class WM_OT_context_set_float(bpy.types.Operator): # same as enum - '''Set a context value.''' - bl_idname = "wm.context_set_int" - bl_label = "Context Set" - - path = rna_path_prop - value = FloatProperty(name="Value", - description="Assignment value", default=0.0) - - execute = execute_context_assign - - -class WM_OT_context_set_string(bpy.types.Operator): # same as enum - '''Set a context value.''' - bl_idname = "wm.context_set_string" - bl_label = "Context Set" - - path = rna_path_prop - value = StringProperty(name="Value", - description="Assign value", maxlen=1024, default="") - - execute = execute_context_assign - - -class WM_OT_context_set_enum(bpy.types.Operator): - '''Set a context value.''' - bl_idname = "wm.context_set_enum" - bl_label = "Context Set" - - path = rna_path_prop - value = StringProperty(name="Value", - description="Assignment value (as a string)", - maxlen=1024, default="") - - execute = execute_context_assign - - -class WM_OT_context_toggle(bpy.types.Operator): - '''Toggle a context value.''' - bl_idname = "wm.context_toggle" - bl_label = "Context Toggle" - path = rna_path_prop - - def execute(self, context): - - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s=not (context.%s)" % (self.path, self.path)) - return ('FINISHED',) - - -class WM_OT_context_toggle_enum(bpy.types.Operator): - '''Toggle a context value.''' - bl_idname = "wm.context_toggle_enum" - bl_label = "Context Toggle Values" - - path = rna_path_prop - value_1 = StringProperty(name="Value", \ - description="Toggle enum", maxlen=1024, default="") - - value_2 = StringProperty(name="Value", \ - description="Toggle enum", maxlen=1024, default="") - - def execute(self, context): - - if context_path_validate(context, self.path) == NullPathMember: - return ('PASS_THROUGH',) - - exec("context.%s = ['%s', '%s'][context.%s!='%s']" % \ - (self.path, self.value_1, self.value_2, self.path, self.value_2)) - - return ('FINISHED',) - - -class WM_OT_context_cycle_int(bpy.types.Operator): - '''Set a context value. Useful for cycling active material, - vertex keys, groups' etc.''' - bl_idname = "wm.context_cycle_int" - bl_label = "Context Int Cycle" - path = rna_path_prop - reverse = rna_reverse_prop - - def execute(self, context): - - value = context_path_validate(context, self.path) - if value == NullPathMember: - return ('PASS_THROUGH',) - - self.value = value - if self.reverse: - self.value -= 1 - else: - self.value += 1 - execute_context_assign(self, context) - - if self.value != eval("context.%s" % self.path): - # relies on rna clamping int's out of the range - if self.reverse: - self.value = (1 << 32) - else: - self.value = - (1 << 32) - execute_context_assign(self, context) - - return ('FINISHED',) - - -class WM_OT_context_cycle_enum(bpy.types.Operator): - '''Toggle a context value.''' - bl_idname = "wm.context_cycle_enum" - bl_label = "Context Enum Cycle" - - path = rna_path_prop - reverse = rna_reverse_prop - - def execute(self, context): - - value = context_path_validate(context, self.path) - if value == NullPathMember: - return ('PASS_THROUGH',) - - orig_value = value - - # Have to get rna enum values - rna_struct_str, rna_prop_str = self.path.rsplit('.', 1) - i = rna_prop_str.find('[') - - # just incse we get "context.foo.bar[0]" - if i != -1: - rna_prop_str = rna_prop_str[0:i] - - rna_struct = eval("context.%s.rna_type" % rna_struct_str) - - rna_prop = rna_struct.properties[rna_prop_str] - - if type(rna_prop) != bpy.types.EnumProperty: - raise Exception("expected an enum property") - - enums = rna_struct.properties[rna_prop_str].items.keys() - orig_index = enums.index(orig_value) - - # Have the info we need, advance to the next item - if self.reverse: - if orig_index == 0: - advance_enum = enums[-1] - else: - advance_enum = enums[orig_index-1] - else: - if orig_index == len(enums) - 1: - advance_enum = enums[0] - else: - advance_enum = enums[orig_index + 1] - - # set the new value - exec("context.%s=advance_enum" % self.path) - return ('FINISHED',) - -doc_id = StringProperty(name="Doc ID", - description="ID for the documentation", maxlen=1024, default="") - -doc_new = StringProperty(name="Doc New", - description="", maxlen=1024, default="") - - -class WM_OT_doc_view(bpy.types.Operator): - '''Load online reference docs''' - bl_idname = "wm.doc_view" - bl_label = "View Documentation" - - doc_id = doc_id - _prefix = 'http://www.blender.org/documentation/250PythonDoc' - - def _nested_class_string(self, class_string): - ls = [] - class_obj = getattr(bpy.types, class_string, None).bl_rna - while class_obj: - ls.insert(0, class_obj) - class_obj = class_obj.nested - return '.'.join([class_obj.identifier for class_obj in ls]) - - def execute(self, context): - id_split = self.doc_id.split('.') - if len(id_split) == 1: # rna, class - url = '%s/bpy.types.%s-class.html' % (self._prefix, id_split[0]) - elif len(id_split) == 2: # rna, class.prop - class_name, class_prop = id_split - - # It so happens that epydoc nests these - class_name_full = self._nested_class_string(class_name) - - if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): - url = '%s/bpy.ops.%s-module.html#%s' % \ - (self._prefix, class_name_full, class_prop) - else: - url = '%s/bpy.types.%s-class.html#%s' % \ - (self._prefix, class_name_full, class_prop) - - else: - return ('PASS_THROUGH',) - - import webbrowser - webbrowser.open(url) - - return ('FINISHED',) - - -class WM_OT_doc_edit(bpy.types.Operator): - '''Load online reference docs''' - bl_idname = "wm.doc_edit" - bl_label = "Edit Documentation" - - doc_id = doc_id - doc_new = doc_new - - _url = "http://www.mindrones.com/blender/svn/xmlrpc.php" - - def _send_xmlrpc(self, data_dict): - print("sending data:", data_dict) - - import xmlrpc.client - user = 'blenderuser' - pwd = 'blender>user' - - docblog = xmlrpc.client.ServerProxy(self._url) - docblog.metaWeblog.newPost(1, user, pwd, data_dict, 1) - - def execute(self, context): - - class_name, class_prop = self.doc_id.split('.') - - if not self.doc_new: - return 'OPERATOR_CANCELLED' - - # check if this is an operator - op_name = class_name.upper() + '_OT_' + class_prop - op_class = getattr(bpy.types, op_name, None) - - # Upload this to the web server - upload = {} - - if op_class: - rna = op_class.bl_rna - doc_orig = rna.description - if doc_orig == self.doc_new: - return 'OPERATOR_CANCELLED' - - print("op - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - upload["title"] = 'OPERATOR %s:%s' % (self.doc_id, doc_orig) - upload["description"] = self.doc_new - - self._send_xmlrpc(upload) - - else: - rna = getattr(bpy.types, class_name).bl_rna - doc_orig = rna.properties[class_prop].description - if doc_orig == self.doc_new: - return 'OPERATOR_CANCELLED' - - print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) - - upload["description"] = self.doc_new - - self._send_xmlrpc(upload) - - return ('FINISHED',) - - def invoke(self, context, event): - wm = context.manager - wm.invoke_props_popup(self, event) - return ('RUNNING_MODAL',) - - -bpy.ops.add(MESH_OT_delete_edgeloop) - -bpy.ops.add(WM_OT_context_set_boolean) -bpy.ops.add(WM_OT_context_set_int) -bpy.ops.add(WM_OT_context_set_float) -bpy.ops.add(WM_OT_context_set_string) -bpy.ops.add(WM_OT_context_set_enum) -bpy.ops.add(WM_OT_context_toggle) -bpy.ops.add(WM_OT_context_toggle_enum) -bpy.ops.add(WM_OT_context_cycle_enum) -bpy.ops.add(WM_OT_context_cycle_int) - -bpy.ops.add(WM_OT_doc_view) -bpy.ops.add(WM_OT_doc_edit) diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py new file mode 100644 index 00000000000..98f5351b7f4 --- /dev/null +++ b/release/scripts/op/wm.py @@ -0,0 +1,359 @@ +import bpy + +from bpy.props import * + +class MESH_OT_delete_edgeloop(bpy.types.Operator): + '''Export a single object as a stanford PLY with normals, + colours and texture coordinates.''' + bl_idname = "mesh.delete_edgeloop" + bl_label = "Delete Edge Loop" + + def execute(self, context): + bpy.ops.tfm.edge_slide(value=1.0) + bpy.ops.mesh.select_more() + bpy.ops.mesh.remove_doubles() + return ('FINISHED',) + +rna_path_prop = StringProperty(name="Context Attributes", + description="rna context string", maxlen=1024, default="") + +rna_reverse_prop = BoolProperty(name="Reverse", + description="Cycle backwards", default=False) + +class NullPathMember: + pass + + +def context_path_validate(context, path): + import sys + try: + value = eval("context.%s" % path) + except AttributeError: + if "'NoneType'" in str(sys.exc_info()[1]): + # One of the items in the rna path is None, just ignore this + value = NullPathMember + else: + # We have a real error in the rna path, dont ignore that + raise + + return value + + +def execute_context_assign(self, context): + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s=self.value" % self.path) + return ('FINISHED',) + + +class WM_OT_context_set_boolean(bpy.types.Operator): + '''Set a context value.''' + bl_idname = "wm.context_set_boolean" + bl_label = "Context Set" + + path = rna_path_prop + value = BoolProperty(name="Value", + description="Assignment value", default=True) + + execute = execute_context_assign + + +class WM_OT_context_set_int(bpy.types.Operator): # same as enum + '''Set a context value.''' + bl_idname = "wm.context_set_int" + bl_label = "Context Set" + + path = rna_path_prop + value = IntProperty(name="Value", description="Assign value", default=0) + + execute = execute_context_assign + + +class WM_OT_context_set_float(bpy.types.Operator): # same as enum + '''Set a context value.''' + bl_idname = "wm.context_set_int" + bl_label = "Context Set" + + path = rna_path_prop + value = FloatProperty(name="Value", + description="Assignment value", default=0.0) + + execute = execute_context_assign + + +class WM_OT_context_set_string(bpy.types.Operator): # same as enum + '''Set a context value.''' + bl_idname = "wm.context_set_string" + bl_label = "Context Set" + + path = rna_path_prop + value = StringProperty(name="Value", + description="Assign value", maxlen=1024, default="") + + execute = execute_context_assign + + +class WM_OT_context_set_enum(bpy.types.Operator): + '''Set a context value.''' + bl_idname = "wm.context_set_enum" + bl_label = "Context Set" + + path = rna_path_prop + value = StringProperty(name="Value", + description="Assignment value (as a string)", + maxlen=1024, default="") + + execute = execute_context_assign + + +class WM_OT_context_toggle(bpy.types.Operator): + '''Toggle a context value.''' + bl_idname = "wm.context_toggle" + bl_label = "Context Toggle" + path = rna_path_prop + + def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s=not (context.%s)" % (self.path, self.path)) + return ('FINISHED',) + + +class WM_OT_context_toggle_enum(bpy.types.Operator): + '''Toggle a context value.''' + bl_idname = "wm.context_toggle_enum" + bl_label = "Context Toggle Values" + + path = rna_path_prop + value_1 = StringProperty(name="Value", \ + description="Toggle enum", maxlen=1024, default="") + + value_2 = StringProperty(name="Value", \ + description="Toggle enum", maxlen=1024, default="") + + def execute(self, context): + + if context_path_validate(context, self.path) == NullPathMember: + return ('PASS_THROUGH',) + + exec("context.%s = ['%s', '%s'][context.%s!='%s']" % \ + (self.path, self.value_1, self.value_2, self.path, self.value_2)) + + return ('FINISHED',) + + +class WM_OT_context_cycle_int(bpy.types.Operator): + '''Set a context value. Useful for cycling active material, + vertex keys, groups' etc.''' + bl_idname = "wm.context_cycle_int" + bl_label = "Context Int Cycle" + path = rna_path_prop + reverse = rna_reverse_prop + + def execute(self, context): + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + self.value = value + if self.reverse: + self.value -= 1 + else: + self.value += 1 + execute_context_assign(self, context) + + if self.value != eval("context.%s" % self.path): + # relies on rna clamping int's out of the range + if self.reverse: + self.value = (1 << 32) + else: + self.value = - (1 << 32) + execute_context_assign(self, context) + + return ('FINISHED',) + + +class WM_OT_context_cycle_enum(bpy.types.Operator): + '''Toggle a context value.''' + bl_idname = "wm.context_cycle_enum" + bl_label = "Context Enum Cycle" + + path = rna_path_prop + reverse = rna_reverse_prop + + def execute(self, context): + + value = context_path_validate(context, self.path) + if value == NullPathMember: + return ('PASS_THROUGH',) + + orig_value = value + + # Have to get rna enum values + rna_struct_str, rna_prop_str = self.path.rsplit('.', 1) + i = rna_prop_str.find('[') + + # just incse we get "context.foo.bar[0]" + if i != -1: + rna_prop_str = rna_prop_str[0:i] + + rna_struct = eval("context.%s.rna_type" % rna_struct_str) + + rna_prop = rna_struct.properties[rna_prop_str] + + if type(rna_prop) != bpy.types.EnumProperty: + raise Exception("expected an enum property") + + enums = rna_struct.properties[rna_prop_str].items.keys() + orig_index = enums.index(orig_value) + + # Have the info we need, advance to the next item + if self.reverse: + if orig_index == 0: + advance_enum = enums[-1] + else: + advance_enum = enums[orig_index-1] + else: + if orig_index == len(enums) - 1: + advance_enum = enums[0] + else: + advance_enum = enums[orig_index + 1] + + # set the new value + exec("context.%s=advance_enum" % self.path) + return ('FINISHED',) + +doc_id = StringProperty(name="Doc ID", + description="ID for the documentation", maxlen=1024, default="") + +doc_new = StringProperty(name="Doc New", + description="", maxlen=1024, default="") + + +class WM_OT_doc_view(bpy.types.Operator): + '''Load online reference docs''' + bl_idname = "wm.doc_view" + bl_label = "View Documentation" + + doc_id = doc_id + _prefix = 'http://www.blender.org/documentation/250PythonDoc' + + def _nested_class_string(self, class_string): + ls = [] + class_obj = getattr(bpy.types, class_string, None).bl_rna + while class_obj: + ls.insert(0, class_obj) + class_obj = class_obj.nested + return '.'.join([class_obj.identifier for class_obj in ls]) + + def execute(self, context): + id_split = self.doc_id.split('.') + if len(id_split) == 1: # rna, class + url = '%s/bpy.types.%s-class.html' % (self._prefix, id_split[0]) + elif len(id_split) == 2: # rna, class.prop + class_name, class_prop = id_split + + # It so happens that epydoc nests these + class_name_full = self._nested_class_string(class_name) + + if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): + url = '%s/bpy.ops.%s-module.html#%s' % \ + (self._prefix, class_name_full, class_prop) + else: + url = '%s/bpy.types.%s-class.html#%s' % \ + (self._prefix, class_name_full, class_prop) + + else: + return ('PASS_THROUGH',) + + import webbrowser + webbrowser.open(url) + + return ('FINISHED',) + + +class WM_OT_doc_edit(bpy.types.Operator): + '''Load online reference docs''' + bl_idname = "wm.doc_edit" + bl_label = "Edit Documentation" + + doc_id = doc_id + doc_new = doc_new + + _url = "http://www.mindrones.com/blender/svn/xmlrpc.php" + + def _send_xmlrpc(self, data_dict): + print("sending data:", data_dict) + + import xmlrpc.client + user = 'blenderuser' + pwd = 'blender>user' + + docblog = xmlrpc.client.ServerProxy(self._url) + docblog.metaWeblog.newPost(1, user, pwd, data_dict, 1) + + def execute(self, context): + + class_name, class_prop = self.doc_id.split('.') + + if not self.doc_new: + return 'OPERATOR_CANCELLED' + + # check if this is an operator + op_name = class_name.upper() + '_OT_' + class_prop + op_class = getattr(bpy.types, op_name, None) + + # Upload this to the web server + upload = {} + + if op_class: + rna = op_class.bl_rna + doc_orig = rna.description + if doc_orig == self.doc_new: + return 'OPERATOR_CANCELLED' + + print("op - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + upload["title"] = 'OPERATOR %s:%s' % (self.doc_id, doc_orig) + upload["description"] = self.doc_new + + self._send_xmlrpc(upload) + + else: + rna = getattr(bpy.types, class_name).bl_rna + doc_orig = rna.properties[class_prop].description + if doc_orig == self.doc_new: + return 'OPERATOR_CANCELLED' + + print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) + upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) + + upload["description"] = self.doc_new + + self._send_xmlrpc(upload) + + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.invoke_props_popup(self, event) + return ('RUNNING_MODAL',) + + +bpy.ops.add(MESH_OT_delete_edgeloop) + +bpy.ops.add(WM_OT_context_set_boolean) +bpy.ops.add(WM_OT_context_set_int) +bpy.ops.add(WM_OT_context_set_float) +bpy.ops.add(WM_OT_context_set_string) +bpy.ops.add(WM_OT_context_set_enum) +bpy.ops.add(WM_OT_context_toggle) +bpy.ops.add(WM_OT_context_toggle_enum) +bpy.ops.add(WM_OT_context_cycle_enum) +bpy.ops.add(WM_OT_context_cycle_int) + +bpy.ops.add(WM_OT_doc_view) +bpy.ops.add(WM_OT_doc_edit) diff --git a/release/scripts/templates/operator.py b/release/scripts/templates/operator.py index 88e6a327096..7eb21ad4f8b 100644 --- a/release/scripts/templates/operator.py +++ b/release/scripts/templates/operator.py @@ -19,6 +19,7 @@ import bpy def write_some_data(context, path, use_some_setting): + print("running write_some_data...") pass from bpy.props import * @@ -33,16 +34,18 @@ class ExportSomeData(bpy.types.Operator): # TODO, add better example props path = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "") - use_some_setting = BoolProperty(name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True) + use_setting = BoolProperty(name="Example Boolean", description="Example Tooltip", default= True) def poll(self, context): return context.active_object != None def execute(self, context): - if not self.is_property_set("path"): - raise Exception("filename not set") - write(self.path, context, use_setting, SOME_SETTING = self.use_some_setting) + # # Bug, currently isnt working + #if not self.is_property_set("path"): + # raise Exception("filename not set") + + write_some_data(self.path, context, self.use_setting) return ('FINISHED',) @@ -53,11 +56,11 @@ class ExportSomeData(bpy.types.Operator): # File selector wm.add_fileselect(self) # will run self.execute() return ('RUNNING_MODAL',) - else if 0: + elif 0: # Redo popup wm.invoke_props_popup(self, event) # return ('RUNNING_MODAL',) - else if 0: + elif 0: return self.execute(context) From e73a2bd55ab7b07fb3650fa812ff07481d84c785 Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Wed, 4 Nov 2009 20:42:05 +0000 Subject: [PATCH 368/412] make render, world and material buttons show when netrender is selected --- release/scripts/io/netrender/client.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/release/scripts/io/netrender/client.py b/release/scripts/io/netrender/client.py index e1dc3f1b7b1..52643af7d73 100644 --- a/release/scripts/io/netrender/client.py +++ b/release/scripts/io/netrender/client.py @@ -253,3 +253,15 @@ class NetworkRenderEngine(bpy.types.RenderEngine): conn.close() +def compatible(module): + exec("import " + module) + module = eval(module) + for member in dir(module): + subclass = getattr(module, member) + try: subclass.COMPAT_ENGINES.add('NET_RENDER') + except: pass + del module + +compatible("properties_render") +compatible("properties_world") +compatible("properties_material") From 08bbda500530e89b1a0f18006a248529e858511b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 20:50:09 +0000 Subject: [PATCH 369/412] - Stopping jobs on undo wasnt fixing undo/redo while with render previews as it was supposed to: needed WM_jobs_stop_all rather then WM_jobs_stop because it ends the thread rather then just setting 'stop'. - gpl header + warning fix --- release/scripts/op/wm.py | 20 ++++++++++++++++++++ source/blender/blenkernel/BKE_deform.h | 2 +- source/blender/blenkernel/intern/blender.c | 2 +- source/blender/blenkernel/intern/deform.c | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py index 98f5351b7f4..a9d62f9b405 100644 --- a/release/scripts/op/wm.py +++ b/release/scripts/op/wm.py @@ -1,3 +1,23 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + +# + import bpy from bpy.props import * diff --git a/source/blender/blenkernel/BKE_deform.h b/source/blender/blenkernel/BKE_deform.h index e982806a6cc..8a34b286881 100644 --- a/source/blender/blenkernel/BKE_deform.h +++ b/source/blender/blenkernel/BKE_deform.h @@ -44,7 +44,7 @@ void copy_defgroups (struct ListBase *lb1, struct ListBase *lb2); struct bDeformGroup *copy_defgroup (struct bDeformGroup *ingroup); struct bDeformGroup *get_named_vertexgroup (Object *ob, char *name); int get_defgroup_num (struct Object *ob, struct bDeformGroup *dg); -int get_named_vertexgroup_num (Object *ob, char *name); +int get_named_vertexgroup_num (Object *ob, const char *name); void unique_vertexgroup_name (struct bDeformGroup *dg, struct Object *ob); float deformvert_get_weight(const struct MDeformVert *dvert, int group_num); diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c index a387d1bca9d..8391ebdebb7 100644 --- a/source/blender/blenkernel/intern/blender.c +++ b/source/blender/blenkernel/intern/blender.c @@ -537,7 +537,7 @@ static int read_undosave(bContext *C, UndoElem *uel) int success=0, fileflags; /* This is needed so undoing/redoing doesnt crash with threaded previews going */ - WM_jobs_stop(CTX_wm_manager(C), CTX_wm_screen(C)); + WM_jobs_stop_all(CTX_wm_manager(C)); strcpy(scestr, G.sce); /* temporal store */ fileflags= G.fileflags; diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c index 47736865273..b7949a6e06f 100644 --- a/source/blender/blenkernel/intern/deform.c +++ b/source/blender/blenkernel/intern/deform.c @@ -110,7 +110,7 @@ bDeformGroup *get_named_vertexgroup (Object *ob, char *name) return NULL; } -int get_named_vertexgroup_num (Object *ob, char *name) +int get_named_vertexgroup_num (Object *ob, const char *name) { /* Return the location of the named deform group within the list of * deform groups. This function is a combination of get_defgroup_num and From e6ea68a31cf800f903653495fc7cdd09bde965f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2009 22:36:46 +0000 Subject: [PATCH 370/412] - missing return values - more detailed exceptions (always give file:line incase the python exception doesnt) - fix some errors in the edit docs editing docs still fails, need to figure out why. --- release/scripts/op/wm.py | 6 +++--- source/blender/python/intern/bpy_operator_wrap.c | 4 +++- source/blender/python/intern/bpy_util.c | 16 ++++++++++++---- .../blender/windowmanager/intern/wm_operators.c | 4 ++-- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py index a9d62f9b405..1bd5635932f 100644 --- a/release/scripts/op/wm.py +++ b/release/scripts/op/wm.py @@ -321,7 +321,7 @@ class WM_OT_doc_edit(bpy.types.Operator): class_name, class_prop = self.doc_id.split('.') if not self.doc_new: - return 'OPERATOR_CANCELLED' + return ('CANCELLED',) # check if this is an operator op_name = class_name.upper() + '_OT_' + class_prop @@ -334,7 +334,7 @@ class WM_OT_doc_edit(bpy.types.Operator): rna = op_class.bl_rna doc_orig = rna.description if doc_orig == self.doc_new: - return 'OPERATOR_CANCELLED' + return ('CANCELLED',) print("op - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) upload["title"] = 'OPERATOR %s:%s' % (self.doc_id, doc_orig) @@ -346,7 +346,7 @@ class WM_OT_doc_edit(bpy.types.Operator): rna = getattr(bpy.types, class_name).bl_rna doc_orig = rna.properties[class_prop].description if doc_orig == self.doc_new: - return 'OPERATOR_CANCELLED' + return ('CANCELLED',) print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c index b0754ee1cde..95ffd3e1121 100644 --- a/source/blender/python/intern/bpy_operator_wrap.c +++ b/source/blender/python/intern/bpy_operator_wrap.c @@ -178,8 +178,10 @@ static int PYTHON_OT_generic(int mode, bContext *C, wmOperatorType *ot, wmOperat } else if (BPY_flag_from_seq(pyop_ret_flags, ret, &ret_flag) == -1) { /* the returned value could not be converted into a flag */ - if(op) + if(op) { + fprintf(stderr, "error using return value from \"%s\"\n", op->idname); // for some reason the error raised doesnt include file:line... this helps BPy_errors_to_report(op->reports); + } ret_flag = OPERATOR_CANCELLED; } diff --git a/source/blender/python/intern/bpy_util.c b/source/blender/python/intern/bpy_util.c index 1766be62c83..86407e0c818 100644 --- a/source/blender/python/intern/bpy_util.c +++ b/source/blender/python/intern/bpy_util.c @@ -69,7 +69,7 @@ static char *bpy_flag_error_str(BPY_flag_def *flagdef) BLI_dynstr_appendf(dynstr, fd!=flagdef?", '%s'":"'%s'", fd->name); fd++; } - + cstring = BLI_dynstr_get_cstring(dynstr); BLI_dynstr_free(dynstr); return cstring; @@ -414,7 +414,10 @@ int BPy_errors_to_report(ReportList *reports) { PyObject *pystring; char *cstring; - + + char *filename; + int lineno; + if (!PyErr_Occurred()) return 1; @@ -432,10 +435,15 @@ int BPy_errors_to_report(ReportList *reports) return 0; } + BPY_getFileAndNum(&filename, &lineno); + cstring= _PyUnicode_AsString(pystring); - BKE_report(reports, RPT_ERROR, cstring); - fprintf(stderr, "%s\n", cstring); // not exactly needed. just for testing + BKE_reportf(reports, RPT_ERROR, "%s\nlocation:%s:%d\n", cstring, filename, lineno); + + fprintf(stderr, "%s\nlocation:%s:%d\n", cstring, filename, lineno); // not exactly needed. just for testing + Py_DECREF(pystring); return 1; } + diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index db09619046e..35e02d86b08 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2470,9 +2470,9 @@ static EnumPropertyItem *rna_id_itemf(bContext *C, PointerRNA *ptr, int *free, I /* can add more */ EnumPropertyItem *RNA_group_itemf(bContext *C, PointerRNA *ptr, int *free) { - rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->group.first); + return rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->group.first); } EnumPropertyItem *RNA_scene_itemf(bContext *C, PointerRNA *ptr, int *free) { - rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->scene.first); + return rna_id_itemf(C, ptr, free, (ID *)CTX_data_main(C)->scene.first); } From be143c22440463ac5eb75f89c4cf4b681aba40a5 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 4 Nov 2009 23:14:20 +0000 Subject: [PATCH 371/412] * Partial fix for bug [#19734] N panel's transform doesn't display the units Converted the Object transform properties to use rna/rna buttons. This has the advantage of not only displaying/editing units, but also RMB menu, keyframing, drivers, etc too. Part of this was to convert 'Dimensions' to an rna property, converting to and from scale. This also allows you to set the object's dimensions via fcurves or python, but note that it's driving the object scale setting internally so if you animate both dimension and scale at the same time one will override the other (i don't expect many people to attempt this). --- .../editors/interface/interface_layout.c | 13 +- .../editors/space_view3d/view3d_buttons.c | 265 ++++-------------- source/blender/makesrna/intern/rna_object.c | 77 ++--- 3 files changed, 100 insertions(+), 255 deletions(-) diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 5c7c1b130e4..53ccc253b99 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -336,7 +336,7 @@ static void ui_layer_but_cb(bContext *C, void *arg_but, void *arg_index) } /* create buttons for an item with an RNA array */ -static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon, PointerRNA *ptr, PropertyRNA *prop, int len, int x, int y, int w, int h, int expand, int slider) +static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon, PointerRNA *ptr, PropertyRNA *prop, int len, int x, int y, int w, int h, int expand, int slider, int toggle, int icon_only) { uiStyle *style= layout->root->style; uiBut *but; @@ -420,7 +420,10 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon str[0]= RNA_property_array_item_char(prop, a); if(str[0]) { - if(type == PROP_BOOLEAN) { + if (icon_only) { + str[0] = '\0'; + } + else if(type == PROP_BOOLEAN) { str[1]= '\0'; } else { @@ -429,9 +432,11 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, char *name, int icon } } - but= uiDefAutoButR(block, ptr, prop, a, str, 0, 0, 0, w, UI_UNIT_Y); + but= uiDefAutoButR(block, ptr, prop, a, str, icon, 0, 0, w, UI_UNIT_Y); if(slider && but->type==NUM) but->type= NUMSLI; + if(toggle && but->type==OPTION) + but->type= TOG; } } else if(ELEM(subtype, PROP_COLOR, PROP_RGB) && len == 4) { @@ -909,7 +914,7 @@ void uiItemFullR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, Proper /* array property */ if(index == RNA_NO_INDEX && len > 0) - ui_item_array(layout, block, name, icon, ptr, prop, len, 0, 0, w, h, expand, slider); + ui_item_array(layout, block, name, icon, ptr, prop, len, 0, 0, w, h, expand, slider, toggle, icon_only); /* enum item */ else if(type == PROP_ENUM && index == RNA_ENUM_VALUE) { char *identifier= (char*)RNA_property_identifier(prop); diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 276ce52c2a9..60856c77026 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -709,114 +709,7 @@ static void do_view3d_region_buttons(bContext *C, void *arg, int event) case B_OBJECTPANEL: DAG_id_flush_update(&ob->id, OB_RECALC_OB); break; - - case B_OBJECTPANELROT: - if(ob) { - float eul[3]; - - /* make a copy to eul[3], to allow TAB on buttons to work */ - eul[0]= M_PI*tfp->ob_eul[0]/180.0; - eul[1]= M_PI*tfp->ob_eul[1]/180.0; - eul[2]= M_PI*tfp->ob_eul[2]/180.0; - - if (ob->rotmode == ROT_MODE_AXISANGLE) { - float quat[4]; - /* convert to axis-angle, passing through quats */ - EulToQuat(eul, quat); - QuatToAxisAngle(quat, ob->rotAxis, &ob->rotAngle); - } - else if (ob->rotmode == ROT_MODE_QUAT) - EulToQuat(eul, ob->quat); - else - VecCopyf(ob->rot, eul); - - DAG_id_flush_update(&ob->id, OB_RECALC_OB); - } - break; - case B_OBJECTPANELSCALE: - if(ob) { - - /* link scale; figure out which axis changed */ - if (tfp->link_scale) { - float ratio, tmp, max = 0.0; - int axis; - - axis = 0; - max = fabs(tfp->ob_scale[0] - ob->size[0]); - tmp = fabs(tfp->ob_scale[1] - ob->size[1]); - if (tmp > max) { - axis = 1; - max = tmp; - } - tmp = fabs(tfp->ob_scale[2] - ob->size[2]); - if (tmp > max) { - axis = 2; - max = tmp; - } - - if (ob->size[axis] != tfp->ob_scale[axis]) { - if (fabs(ob->size[axis]) > FLT_EPSILON) { - ratio = tfp->ob_scale[axis] / ob->size[axis]; - ob->size[0] *= ratio; - ob->size[1] *= ratio; - ob->size[2] *= ratio; - } - } - } - else { - VECCOPY(ob->size, tfp->ob_scale); - - } - DAG_id_flush_update(&ob->id, OB_RECALC_OB); - } - break; - - case B_OBJECTPANELDIMS: - bb= object_get_boundbox(ob); - if(bb) { - float old_dims[3], scale[3], ratio, len[3]; - int axis; - - Mat4ToSize(ob->obmat, scale); - - len[0] = bb->vec[4][0] - bb->vec[0][0]; - len[1] = bb->vec[2][1] - bb->vec[0][1]; - len[2] = bb->vec[1][2] - bb->vec[0][2]; - - old_dims[0] = fabs(scale[0]) * len[0]; - old_dims[1] = fabs(scale[1]) * len[1]; - old_dims[2] = fabs(scale[2]) * len[2]; - - /* for each axis changed */ - for (axis = 0; axis<3; axis++) { - if (fabs(old_dims[axis] - tfp->ob_dims[axis]) > 0.0001) { - if (old_dims[axis] > 0.0) { - ratio = tfp->ob_dims[axis] / old_dims[axis]; - if (tfp->link_scale) { - ob->size[0] *= ratio; - ob->size[1] *= ratio; - ob->size[2] *= ratio; - break; - } - else { - ob->size[axis] *= ratio; - } - } - else { - if (len[axis] > 0) { - ob->size[axis] = tfp->ob_dims[axis] / len[axis]; - } - } - } - } - - /* prevent multiple B_OBJECTPANELDIMS events to keep scaling, cycling with TAB on buttons can cause that */ - VECCOPY(tfp->ob_dims, old_dims); - - DAG_id_flush_update(&ob->id, OB_RECALC_OB); - } - break; case B_OBJECTPANELMEDIAN: if(ob) { @@ -1119,7 +1012,7 @@ static void view3d_panel_object(const bContext *C, Panel *pa) Object *ob= OBACT; TransformProperties *tfp; PointerRNA obptr; - uiLayout *col, *row; + uiLayout *col, *row, *split, *colsub; float lim; if(ob==NULL) return; @@ -1160,117 +1053,61 @@ static void view3d_panel_object(const bContext *C, Panel *pa) v3d_posearmature_buts(col, v3d, ob, lim); } else { - BoundBox *bb = NULL; - - uiLayoutAbsoluteBlock(col); - - block= uiLayoutAbsoluteBlock(col); - uiDefBut(block, LABEL, 0, "Location:", 0, 300, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANEL, "X:", 0, 280, 120, 19, &(ob->loc[0]), -lim, lim, 100, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANEL, "Y:", 0, 260, 120, 19, &(ob->loc[1]), -lim, lim, 100, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANEL, "Z:", 0, 240, 120, 19, &(ob->loc[2]), -lim, lim, 100, 3, ""); - uiBlockEndAlign(block); + split = uiLayoutSplit(col, 0.8); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Location", 0, &obptr, "location", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_location", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - uiBlockBeginAlign(block); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_LOCX, B_REDR, ICON_UNLOCKED, 125, 280, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects X Location value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_LOCY, B_REDR, ICON_UNLOCKED, 125, 260, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Y Location value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_LOCZ, B_REDR, ICON_UNLOCKED, 125, 240, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Z Location value from being Transformed"); - uiBlockEndAlign(block); + split = uiLayoutSplit(col, 0.8); - if (ob->rotmode == ROT_MODE_AXISANGLE) { - float quat[4]; - /* convert to euler, passing through quats... */ - AxisAngleToQuat(quat, ob->rotAxis, ob->rotAngle); - QuatToEul(quat, tfp->ob_eul); + switch(ob->rotmode) { + case ROT_MODE_XYZ: + case ROT_MODE_XZY: + case ROT_MODE_YXZ: + case ROT_MODE_YZX: + case ROT_MODE_ZXY: + case ROT_MODE_ZYX: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, &obptr, "rotation_euler", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; + case ROT_MODE_QUAT: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, &obptr, "rotation_quaternion", 0); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "W", 0, &obptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); + if (ob->protectflag & OB_LOCK_ROT4D) + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + else + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; + case ROT_MODE_AXISANGLE: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, &obptr, "rotation_axis_angle", 0); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "W", 0, &obptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); + if (ob->protectflag & OB_LOCK_ROT4D) + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + else + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; } - else if (ob->rotmode == ROT_MODE_QUAT) - QuatToEul(ob->quat, tfp->ob_eul); - else - VecCopyf(tfp->ob_eul, ob->rot); - tfp->ob_eul[0]*= 180.0/M_PI; - tfp->ob_eul[1]*= 180.0/M_PI; - tfp->ob_eul[2]*= 180.0/M_PI; + uiItemR(col, "", 0, &obptr, "rotation_mode", 0); - uiBlockBeginAlign(block); - if ((ob->parent) && (ob->partype == PARBONE)) { - uiDefBut(block, LABEL, 0, "Rotation:", 0, 220, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANELROT, "X:", 0, 200, 120, 19, &(tfp->ob_eul[0]), -lim, lim, 1000, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELROT, "Y:", 0, 180, 120, 19, &(tfp->ob_eul[1]), -lim, lim, 1000, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELROT, "Z:", 0, 160, 120, 19, &(tfp->ob_eul[2]), -lim, lim, 1000, 3, ""); - uiBlockEndAlign(block); - - uiBlockBeginAlign(block); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTX, B_REDR, ICON_UNLOCKED, 125, 200, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects X Rotation from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTY, B_REDR, ICON_UNLOCKED, 125, 180, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Y Rotation value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTZ, B_REDR, ICON_UNLOCKED, 125, 160, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Z Rotation value from being Transformed"); - uiBlockEndAlign(block); - - } - else { - uiDefBut(block, LABEL, 0, "Rotation:", 0, 220, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANELROT, "X:", 0, 200, 120, 19, &(tfp->ob_eul[0]), -lim, lim, 1000, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELROT, "Y:", 0, 180, 120, 19, &(tfp->ob_eul[1]), -lim, lim, 1000, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELROT, "Z:", 0, 160, 120, 19, &(tfp->ob_eul[2]), -lim, lim, 1000, 3, ""); - uiBlockEndAlign(block); - - uiBlockBeginAlign(block); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTX, B_REDR, ICON_UNLOCKED, 125, 200, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects X Rotation value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTY, B_REDR, ICON_UNLOCKED, 125, 180, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Y Rotation value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_ROTZ, B_REDR, ICON_UNLOCKED, 125, 160, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Z Rotation value from being Transformed"); - uiBlockEndAlign(block); - } - - tfp->ob_scale[0]= ob->size[0]; - tfp->ob_scale[1]= ob->size[1]; - tfp->ob_scale[2]= ob->size[2]; - - uiDefBut(block, LABEL, 0, "Scale:", 0, 140, 100, 20, 0, 0, 0, 0, 0, ""); - uiDefButS(block, OPTION, B_REDR, "Link", 60, 140, 50, 19, &(tfp->link_scale), 0, 1, 0, 0, "Scale values vary proportionally in all directions"); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANELSCALE, "X:", 0, 120, 120, 19, &(tfp->ob_scale[0]), -lim, lim, 10, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELSCALE, "Y:", 0, 100, 120, 19, &(tfp->ob_scale[1]), -lim, lim, 10, 3, ""); - uiDefButF(block, NUM, B_OBJECTPANELSCALE, "Z:", 0, 80, 120, 19, &(tfp->ob_scale[2]), -lim, lim, 10, 3, ""); - uiBlockEndAlign(block); + split = uiLayoutSplit(col, 0.8); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Scale", 0, &obptr, "scale", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_scale", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - uiBlockBeginAlign(block); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_SCALEX, B_REDR, ICON_UNLOCKED, 125, 120, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects X Scale value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_SCALEY, B_REDR, ICON_UNLOCKED, 125, 100, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Y Scale value from being Transformed"); - uiDefIconButBitS(block, ICONTOG, OB_LOCK_SCALEZ, B_REDR, ICON_UNLOCKED, 125, 80, 25, 19, &(ob->protectflag), 0, 0, 0, 0, "Protects Z Scale value from being Transformed"); - - - - bb= object_get_boundbox(ob); - if (bb) { - float scale[3]; - - Mat4ToSize(ob->obmat, scale); - - tfp->ob_dims[0] = fabs(scale[0]) * (bb->vec[4][0] - bb->vec[0][0]); - tfp->ob_dims[1] = fabs(scale[1]) * (bb->vec[2][1] - bb->vec[0][1]); - tfp->ob_dims[2] = fabs(scale[2]) * (bb->vec[1][2] - bb->vec[0][2]); - - - if ((ob->parent) && (ob->partype == PARBONE)) { - uiDefBut(block, LABEL, 0, "Dimensions:", 0, 60, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "X:", 0, 40, 150, 19, &(tfp->ob_dims[0]), 0.0, lim, 10, 3, "Manipulate X bounding box size"); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "Y:", 0, 20, 150, 19, &(tfp->ob_dims[1]), 0.0, lim, 10, 3, "Manipulate Y bounding box size"); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "Z:", 0, 0, 150, 19, &(tfp->ob_dims[2]), 0.0, lim, 10, 3, "Manipulate Z bounding box size"); - - } - else { - uiDefBut(block, LABEL, 0, "Dimensions:", 0, 60, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "X:", 0, 40, 150, 19, &(tfp->ob_dims[0]), 0.0, lim, 10, 3, "Manipulate X bounding box size"); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "Y:", 0, 20, 150, 19, &(tfp->ob_dims[1]), 0.0, lim, 10, 3, "Manipulate Y bounding box size"); - uiDefButF(block, NUM, B_OBJECTPANELDIMS, "Z:", 0, 0, 150, 19, &(tfp->ob_dims[2]), 0.0, lim, 10, 3, "Manipulate Z bounding box size"); - } - - uiBlockEndAlign(block); - } + uiItemR(col, "Dimensions", 0, &obptr, "dimensions", 0); } } diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 5b6cb16a462..ad1fdcb44f5 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -94,6 +94,7 @@ EnumPropertyItem object_type_items[] = { #include "BKE_depsgraph.h" #include "BKE_effect.h" #include "BKE_key.h" +#include "BKE_object.h" #include "BKE_material.h" #include "BKE_mesh.h" #include "BKE_particle.h" @@ -533,30 +534,45 @@ static void rna_Object_rotation_mode_set(PointerRNA *ptr, int value) ob->rotmode= value; } -/* not called directly */ -static void rna_Object_scale_linked_set(Object *ob, float value, int axis) +static void rna_Object_dimensions_get(PointerRNA *ptr, float *value) { - if(ob->size[axis]==0.0f || value==0.0f) { - ob->size[0]= ob->size[1]= ob->size[2]= value; - } - else { - VecMulf(ob->size, value / ob->size[axis]); + Object *ob= ptr->data; + BoundBox *bb = NULL; + + bb= object_get_boundbox(ob); + if (bb) { + float scale[3]; + + Mat4ToSize(ob->obmat, scale); + + value[0] = fabs(scale[0]) * (bb->vec[4][0] - bb->vec[0][0]); + value[1] = fabs(scale[1]) * (bb->vec[2][1] - bb->vec[0][1]); + value[2] = fabs(scale[2]) * (bb->vec[1][2] - bb->vec[0][2]); + } else { + value[0] = value[1] = value[2] = 0.f; } } -static void rna_Object_scale_x_linked_set(PointerRNA *ptr, float value) +static void rna_Object_dimensions_set(PointerRNA *ptr, const float *value) { - rna_Object_scale_linked_set(ptr->data, value, 0); + Object *ob= ptr->data; + BoundBox *bb = NULL; + + bb= object_get_boundbox(ob); + if (bb) { + float scale[3], len[3]; + + Mat4ToSize(ob->obmat, scale); + + len[0] = bb->vec[4][0] - bb->vec[0][0]; + len[1] = bb->vec[2][1] - bb->vec[0][1]; + len[2] = bb->vec[1][2] - bb->vec[0][2]; + + ob->size[0] = value[0] / len[0]; + ob->size[1] = value[1] / len[1]; + ob->size[2] = value[2] / len[2]; + } } -static void rna_Object_scale_y_linked_set(PointerRNA *ptr, float value) -{ - rna_Object_scale_linked_set(ptr->data, value, 1); -} -static void rna_Object_scale_z_linked_set(PointerRNA *ptr, float value) -{ - rna_Object_scale_linked_set(ptr->data, value, 2); -} - static PointerRNA rna_MaterialSlot_material_get(PointerRNA *ptr) @@ -1337,26 +1353,13 @@ static void rna_def_object(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "size"); RNA_def_property_ui_text(prop, "Scale", "Scaling of the object."); RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_update"); + + prop= RNA_def_property(srna, "dimensions", PROP_FLOAT, PROP_XYZ|PROP_UNIT_LENGTH); + RNA_def_property_array(prop, 3); + RNA_def_property_float_funcs(prop, "rna_Object_dimensions_get", "rna_Object_dimensions_set", NULL); + RNA_def_property_ui_text(prop, "Dimensions", "Absolute bounding box dimensions of the object."); + RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_update"); - /* linked scale for the transform panel */ - prop= RNA_def_property(srna, "scale_linked_x", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "size[0]"); - RNA_def_property_float_funcs(prop, NULL, "rna_Object_scale_x_linked_set", NULL); - RNA_def_property_ui_text(prop, "Scale X", "Scaling of the objects X axis."); - RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_update"); - - prop= RNA_def_property(srna, "scale_linked_y", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "size[1]"); - RNA_def_property_float_funcs(prop, NULL, "rna_Object_scale_y_linked_set", NULL); - RNA_def_property_ui_text(prop, "Scale Y", "Scaling of the objects X axis."); - RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_update"); - - prop= RNA_def_property(srna, "scale_linked_z", PROP_FLOAT, PROP_NONE); - RNA_def_property_float_sdna(prop, NULL, "size[2]"); - RNA_def_property_float_funcs(prop, NULL, "rna_Object_scale_z_linked_set", NULL); - RNA_def_property_ui_text(prop, "Scale Z", "Scaling of the objects Z axis."); - RNA_def_property_update(prop, NC_OBJECT|ND_TRANSFORM, "rna_Object_update"); - /* delta transforms */ prop= RNA_def_property(srna, "delta_location", PROP_FLOAT, PROP_TRANSLATION); From fa5990cb9aed2861020f7493493165842ed9dc4b Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 01:00:17 +0000 Subject: [PATCH 372/412] Added RNA based transform properties for pose bones too. I've left the old code commented out for now hough - do we still want to be able to edit all rotation types as eulers in the transform properties buttons? Seems a bit odd to me, what do animators think? If so, maybe we need some ui-level conversion options in the RNA buttons code... --- .../editors/space_view3d/view3d_buttons.c | 159 +++++++++++------- source/blender/makesrna/intern/rna_object.c | 6 +- 2 files changed, 98 insertions(+), 67 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 60856c77026..d11a65ed73b 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -498,6 +498,80 @@ static void validate_bonebutton_cb(bContext *C, void *bonev, void *namev) } #endif +static void v3d_transform_butsR(uiLayout *layout, PointerRNA *ptr) +{ + uiLayout *split, *colsub; + + split = uiLayoutSplit(layout, 0.8); + + if (ptr->type == &RNA_PoseChannel) { + PointerRNA boneptr; + Bone *bone; + + boneptr = RNA_pointer_get(ptr, "bone"); + bone = boneptr.data; + uiLayoutSetActive(split, !(bone->parent && bone->flag & BONE_CONNECTED)); + } + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Location", 0, ptr, "location", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_location", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + + split = uiLayoutSplit(layout, 0.8); + + switch(RNA_enum_get(ptr, "rotation_mode")) { + case ROT_MODE_XYZ: + case ROT_MODE_XZY: + case ROT_MODE_YXZ: + case ROT_MODE_YZX: + case ROT_MODE_ZXY: + case ROT_MODE_ZYX: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, ptr, "rotation_euler", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; + case ROT_MODE_QUAT: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, ptr, "rotation_quaternion", 0); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "W", 0, ptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); + if (RNA_boolean_get(ptr, "lock_rotations_4d")) + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + else + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; + case ROT_MODE_AXISANGLE: + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Rotation", 0, ptr, "rotation_axis_angle", 0); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "W", 0, ptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); + if (RNA_boolean_get(ptr, "lock_rotations_4d")) + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + else + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + break; + } + uiItemR(layout, "", 0, ptr, "rotation_mode", 0); + + split = uiLayoutSplit(layout, 0.8); + colsub = uiLayoutColumn(split, 1); + uiItemR(colsub, "Scale", 0, ptr, "scale", 0); + colsub = uiLayoutColumn(split, 1); + uiItemL(colsub, "", 0); + uiItemR(colsub, "", ICON_LOCKED, ptr, "lock_scale", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); + + if (ptr->type == &RNA_Object) { + Object *ob = ptr->data; + if (ELEM5(ob->type, OB_MESH, OB_CURVE, OB_SURF, OB_FONT, OB_MBALL)) + uiItemR(layout, "Dimensions", 0, ptr, "dimensions", 0); + } +} + static void v3d_posearmature_buts(uiLayout *layout, View3D *v3d, Object *ob, float lim) { uiBlock *block= uiLayoutGetBlock(layout); @@ -506,7 +580,7 @@ static void v3d_posearmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo Bone *bone= NULL; TransformProperties *tfp= v3d->properties_storage; PointerRNA pchanptr; - uiLayout *row; + uiLayout *row, *col; arm = ob->data; if (!arm || !ob->pose) return; @@ -517,16 +591,25 @@ static void v3d_posearmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo break; } if (!pchan) { - uiDefBut(block, LABEL, 0, "No Bone Active", 0, 240, 100, 20, 0, 0, 0, 0, 0, ""); + row= uiLayoutRow(layout, 0); + uiItemL(row, "No Active Bone", 0); return; } - else { - row= uiLayoutRow(layout, 0); - RNA_pointer_create(&ob->id, &RNA_PoseChannel, pchan, &pchanptr); - uiItemL(row, "", ICON_BONE_DATA); - uiItemR(row, "", 0, &pchanptr, "name", 0); - } + row= uiLayoutRow(layout, 0); + RNA_pointer_create(&ob->id, &RNA_PoseChannel, pchan, &pchanptr); + + uiItemL(row, "", ICON_BONE_DATA); + uiItemR(row, "", 0, &pchanptr, "name", 0); + + col= uiLayoutColumn(layout, 0); + + /* XXX: RNA buts show data in native types (i.e. quats, 4-component axis/angle, etc.) + * but oldskool UI shows in eulers always. Do we want to be able to still display in Eulers? + * Maybe needs RNA/ui options to display rotations as different types... */ + v3d_transform_butsR(col, &pchanptr); + +#if 0 uiLayoutAbsoluteBlock(layout); if (pchan->rotmode == ROT_MODE_AXISANGLE) { @@ -581,6 +664,7 @@ static void v3d_posearmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo uiDefIconButBitS(block, ICONTOG, OB_LOCK_SCALEY, B_REDR, ICON_UNLOCKED, 125, 40, 25, 19, &(pchan->protectflag), 0, 0, 0, 0, "Protects Y Scale value from being Transformed"); uiDefIconButBitS(block, ICONTOG, OB_LOCK_SCALEZ, B_REDR, ICON_UNLOCKED, 125, 20, 25, 19, &(pchan->protectflag), 0, 0, 0, 0, "Protects z Scale value from being Transformed"); uiBlockEndAlign(block); +#endif } /* assumes armature editmode */ @@ -1012,7 +1096,7 @@ static void view3d_panel_object(const bContext *C, Panel *pa) Object *ob= OBACT; TransformProperties *tfp; PointerRNA obptr; - uiLayout *col, *row, *split, *colsub; + uiLayout *col, *row; float lim; if(ob==NULL) return; @@ -1053,61 +1137,8 @@ static void view3d_panel_object(const bContext *C, Panel *pa) v3d_posearmature_buts(col, v3d, ob, lim); } else { - split = uiLayoutSplit(col, 0.8); - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "Location", 0, &obptr, "location", 0); - colsub = uiLayoutColumn(split, 1); - uiItemL(colsub, "", 0); - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_location", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - - split = uiLayoutSplit(col, 0.8); - - switch(ob->rotmode) { - case ROT_MODE_XYZ: - case ROT_MODE_XZY: - case ROT_MODE_YXZ: - case ROT_MODE_YZX: - case ROT_MODE_ZXY: - case ROT_MODE_ZYX: - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "Rotation", 0, &obptr, "rotation_euler", 0); - colsub = uiLayoutColumn(split, 1); - uiItemL(colsub, "", 0); - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - break; - case ROT_MODE_QUAT: - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "Rotation", 0, &obptr, "rotation_quaternion", 0); - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "W", 0, &obptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); - if (ob->protectflag & OB_LOCK_ROT4D) - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - else - uiItemL(colsub, "", 0); - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - break; - case ROT_MODE_AXISANGLE: - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "Rotation", 0, &obptr, "rotation_axis_angle", 0); - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "W", 0, &obptr, "lock_rotations_4d", UI_ITEM_R_TOGGLE); - if (ob->protectflag & OB_LOCK_ROT4D) - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation_w", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - else - uiItemL(colsub, "", 0); - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_rotation", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - break; - } - uiItemR(col, "", 0, &obptr, "rotation_mode", 0); - - split = uiLayoutSplit(col, 0.8); - colsub = uiLayoutColumn(split, 1); - uiItemR(colsub, "Scale", 0, &obptr, "scale", 0); - colsub = uiLayoutColumn(split, 1); - uiItemL(colsub, "", 0); - uiItemR(colsub, "", ICON_LOCKED, &obptr, "lock_scale", UI_ITEM_R_TOGGLE+UI_ITEM_R_ICON_ONLY); - - uiItemR(col, "Dimensions", 0, &obptr, "dimensions", 0); + + v3d_transform_butsR(col, &obptr); } } diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index ad1fdcb44f5..c7a1284e35e 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -568,9 +568,9 @@ static void rna_Object_dimensions_set(PointerRNA *ptr, const float *value) len[1] = bb->vec[2][1] - bb->vec[0][1]; len[2] = bb->vec[1][2] - bb->vec[0][2]; - ob->size[0] = value[0] / len[0]; - ob->size[1] = value[1] / len[1]; - ob->size[2] = value[2] / len[2]; + if (len[0] > 0.f) ob->size[0] = value[0] / len[0]; + if (len[1] > 0.f) ob->size[1] = value[1] / len[1]; + if (len[2] > 0.f) ob->size[2] = value[2] / len[2]; } } From 1be4158f5bf4148e4006959fe42fc71e0bd45add Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 02:21:04 +0000 Subject: [PATCH 373/412] RNA transform properties for edit bones and metaballs --- .../editors/space_view3d/view3d_buttons.c | 158 +++++++----------- source/blender/makesrna/intern/rna_meta.c | 3 + 2 files changed, 64 insertions(+), 97 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index d11a65ed73b..1e4e2424193 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -689,7 +689,7 @@ static void v3d_editarmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo bArmature *arm= ob->data; EditBone *ebone; TransformProperties *tfp= v3d->properties_storage; - uiLayout *row; + uiLayout *row, *col; PointerRNA eboneptr; ebone= arm->edbo->first; @@ -707,64 +707,72 @@ static void v3d_editarmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo uiItemL(row, "", ICON_BONE_DATA); uiItemR(row, "", 0, &eboneptr, "name", 0); - uiLayoutAbsoluteBlock(layout); - - uiDefBut(block, LABEL, 0, "Head:", 0, 210, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "X:", 0, 190, 100, 19, ebone->head, -lim, lim, 10, 3, "X Location of the head end of the bone"); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Y:", 0, 170, 100, 19, ebone->head+1, -lim, lim, 10, 3, "Y Location of the head end of the bone"); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Z:", 0, 150, 100, 19, ebone->head+2, -lim, lim, 10, 3, "Z Location of the head end of the bone"); - if (ebone->parent && ebone->flag & BONE_CONNECTED ) - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Radius:", 0, 130, 100, 19, &ebone->parent->rad_tail, 0, lim, 10, 3, "Head radius. Visualize with the Envelope display option"); - else - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Radius:", 0, 130, 100, 19, &ebone->rad_head, 0, lim, 10, 3, "Head radius. Visualize with the Envelope display option"); - uiBlockEndAlign(block); - - uiBlockEndAlign(block); - uiDefBut(block, LABEL, 0, "Tail:", 0, 110, 100, 20, 0, 0, 0, 0, 0, ""); - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "X:", 0, 90, 100, 19, ebone->tail, -lim, lim, 10, 3, "X Location of the tail end of the bone"); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Y:", 0, 70, 100, 19, ebone->tail+1, -lim, lim, 10, 3, "Y Location of the tail end of the bone"); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Z:", 0, 50, 100, 19, ebone->tail+2, -lim, lim, 10, 3, "Z Location of the tail end of the bone"); - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Radius:", 0, 30, 100, 19, &ebone->rad_tail, 0, lim, 10, 3, "Tail radius. Visualize with the Envelope display option"); - uiBlockEndAlign(block); - - tfp->ob_eul[0]= 180.0*ebone->roll/M_PI; - uiDefButF(block, NUM, B_ARMATUREPANEL1, "Roll:", 0, 0, 100, 19, tfp->ob_eul, -lim, lim, 1000, 3, "Bone rotation around head-tail axis"); - uiBlockBeginAlign(block); + col= uiLayoutColumn(layout, 0); + uiItemR(col, "Head", 0, &eboneptr, "head", 0); + if (ebone->parent && ebone->flag & BONE_CONNECTED ) { + PointerRNA parptr = RNA_pointer_get(&eboneptr, "parent"); + uiItemR(col, "Radius", 0, &parptr, "tail_radius", 0); + } else { + uiItemR(col, "Radius", 0, &eboneptr, "head_radius", 0); + } + uiItemR(col, "Tail", 0, &eboneptr, "tail", 0); + uiItemR(col, "Radius", 0, &eboneptr, "tail_radius", 0); + uiItemR(col, "Roll", 0, &eboneptr, "roll", 0); } static void v3d_editmetaball_buts(uiLayout *layout, Object *ob, float lim) { - uiBlock *block= uiLayoutAbsoluteBlock(layout); - MetaElem *lastelem= NULL; // XXX + PointerRNA mbptr, ptr; + MetaBall *mball= ob->data; + uiLayout *row, *col; + + if (!mball || !(mball->lastelem)) return; + + RNA_pointer_create(&mball->id, &RNA_MetaBall, mball, &mbptr); + + row= uiLayoutRow(layout, 0); + + uiItemL(row, "", ICON_META_DATA); + uiItemR(row, "", 0, &mbptr, "name", 0); - if(lastelem) { - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_RECALCMBALL, "LocX:", 10, 70, 140, 19, &lastelem->x, -lim, lim, 100, 3, ""); - uiDefButF(block, NUM, B_RECALCMBALL, "LocY:", 10, 50, 140, 19, &lastelem->y, -lim, lim, 100, 3, ""); - uiDefButF(block, NUM, B_RECALCMBALL, "LocZ:", 10, 30, 140, 19, &lastelem->z, -lim, lim, 100, 3, ""); - - uiBlockBeginAlign(block); - if(lastelem->type!=MB_BALL) - uiDefButF(block, NUM, B_RECALCMBALL, "dx:", 160, 70, 140, 19, &lastelem->expx, 0, lim, 100, 3, ""); - if((lastelem->type!=MB_BALL) && (lastelem->type!=MB_TUBE)) - uiDefButF(block, NUM, B_RECALCMBALL, "dy:", 160, 50, 140, 19, &lastelem->expy, 0, lim, 100, 3, ""); - if((lastelem->type==MB_ELIPSOID) || (lastelem->type==MB_CUBE)) - uiDefButF(block, NUM, B_RECALCMBALL, "dz:", 160, 30, 140, 19, &lastelem->expz, 0, lim, 100, 3, ""); - - uiBlockEndAlign(block); - - uiBlockBeginAlign(block); - uiDefButF(block, NUM, B_RECALCMBALL, "Radius:", 10, 120, 140, 19, &lastelem->rad, 0, lim, 100, 3, "Size of the active metaball"); - uiDefButF(block, NUM, B_RECALCMBALL, "Stiffness:", 10, 100, 140, 19, &lastelem->s, 0, 10, 100, 3, "Stiffness of the active metaball"); - uiBlockEndAlign(block); - - uiDefButS(block, MENU, B_RECALCMBALL, "Type%t|Ball%x0|Tube%x4|Plane%x5|Elipsoid%x6|Cube%x7", 160, 120, 140, 19, &lastelem->type, 0.0, 0.0, 0, 0, "Set active element type"); - - } + RNA_pointer_create(&mball->id, &RNA_MetaElement, mball->lastelem, &ptr); + + col= uiLayoutColumn(layout, 0); + uiItemR(col, "Location", 0, &ptr, "location", 0); + + uiItemR(col, "Radius", 0, &ptr, "radius", 0); + uiItemR(col, "Stiffness", 0, &ptr, "stiffness", 0); + + uiItemR(col, "Type", 0, &ptr, "type", 0); + + col= uiLayoutColumn(layout, 1); + switch (RNA_enum_get(&ptr, "type")) { + case MB_BALL: + break; + case MB_CUBE: + uiItemL(col, "Size:", 0); + uiItemR(col, "X", 0, &ptr, "size_x", 0); + uiItemR(col, "Y", 0, &ptr, "size_y", 0); + uiItemR(col, "Z", 0, &ptr, "size_z", 0); + break; + case MB_TUBE: + uiItemL(col, "Size:", 0); + uiItemR(col, "X", 0, &ptr, "size_x", 0); + break; + case MB_PLANE: + uiItemL(col, "Size:", 0); + uiItemR(col, "X", 0, &ptr, "size_x", 0); + uiItemR(col, "Y", 0, &ptr, "size_y", 0); + break; + case MB_ELIPSOID: + uiItemL(col, "Size:", 0); + uiItemR(col, "X", 0, &ptr, "size_x", 0); + uiItemR(col, "Y", 0, &ptr, "size_y", 0); + uiItemR(col, "Z", 0, &ptr, "size_z", 0); + break; + } } /* test if 'ob' is a parent somewhere in par's parents */ @@ -814,51 +822,7 @@ static void do_view3d_region_buttons(bContext *C, void *arg, int event) } break; - case B_ARMATUREPANEL1: - { - bArmature *arm= obedit->data; - EditBone *ebone, *child; - - for (ebone = arm->edbo->first; ebone; ebone=ebone->next){ - if ((ebone->flag & BONE_ACTIVE) && (ebone->layer & arm->layer)) - break; - } - if (ebone) { - ebone->roll= M_PI*tfp->ob_eul[0]/180.0; - // Update our parent - if (ebone->parent && ebone->flag & BONE_CONNECTED){ - VECCOPY (ebone->parent->tail, ebone->head); - } - - // Update our children if necessary - for (child = arm->edbo->first; child; child=child->next){ - if (child->parent == ebone && (child->flag & BONE_CONNECTED)){ - VECCOPY (child->head, ebone->tail); - } - } - if(arm->flag & ARM_MIRROR_EDIT) { - EditBone *eboflip= ED_armature_bone_get_mirrored(arm->edbo, ebone); - if(eboflip) { - eboflip->roll= -ebone->roll; - eboflip->head[0]= -ebone->head[0]; - eboflip->tail[0]= -ebone->tail[0]; - - // Update our parent - if (eboflip->parent && eboflip->flag & BONE_CONNECTED){ - VECCOPY (eboflip->parent->tail, eboflip->head); - } - - // Update our children if necessary - for (child = arm->edbo->first; child; child=child->next){ - if (child->parent == eboflip && (child->flag & BONE_CONNECTED)){ - VECCOPY (child->head, eboflip->tail); - } - } - } - } - } - } - break; + case B_ARMATUREPANEL3: // rotate button on channel { bArmature *arm; diff --git a/source/blender/makesrna/intern/rna_meta.c b/source/blender/makesrna/intern/rna_meta.c index 1a4e4da886b..62466047ef4 100644 --- a/source/blender/makesrna/intern/rna_meta.c +++ b/source/blender/makesrna/intern/rna_meta.c @@ -65,6 +65,8 @@ static void rna_MetaBall_update_data(bContext *C, PointerRNA *ptr) WM_event_add_notifier(C, NC_GEOM|ND_DATA, mb); } + + #else static void rna_def_metaelement(BlenderRNA *brna) @@ -105,6 +107,7 @@ static void rna_def_metaelement(BlenderRNA *brna) prop= RNA_def_property(srna, "radius", PROP_FLOAT, PROP_UNSIGNED|PROP_UNIT_LENGTH); RNA_def_property_float_sdna(prop, NULL, "rad"); RNA_def_property_ui_text(prop, "Radius", ""); + RNA_def_property_range(prop, 0.0f, FLT_MAX); RNA_def_property_update(prop, 0, "rna_MetaBall_update_data"); prop= RNA_def_property(srna, "size_x", PROP_FLOAT, PROP_DISTANCE); From 9eb0f20224f57cfbfb426de16de3d1b8a2c5207b Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 02:50:26 +0000 Subject: [PATCH 374/412] Added mass and spring vertex groups to softbody rna/ui --- .../scripts/ui/properties_physics_softbody.py | 4 ++- .../makesrna/intern/rna_object_force.c | 25 +++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/properties_physics_softbody.py b/release/scripts/ui/properties_physics_softbody.py index 27c8e357608..f43d903d0c7 100644 --- a/release/scripts/ui/properties_physics_softbody.py +++ b/release/scripts/ui/properties_physics_softbody.py @@ -73,8 +73,9 @@ class PHYSICS_PT_softbody(PhysicButtonsPanel): col = split.column() col.itemL(text="Object:") - col.itemR(softbody, "mass") col.itemR(softbody, "friction") + col.itemR(softbody, "mass") + col.item_pointerR(softbody, "mass_vertex_group", ob, "vertex_groups", text="Mass:") col = split.column() col.itemL(text="Simulation:") @@ -167,6 +168,7 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel): col.itemR(softbody, "plastic") col.itemR(softbody, "bending") col.itemR(softbody, "spring_length", text="Length") + col.item_pointerR(softbody, "spring_vertex_group", ob, "vertex_groups", text="Springs:") col = split.column() col.itemR(softbody, "stiff_quads") diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c index 9ecea76ab0d..d6239d92911 100644 --- a/source/blender/makesrna/intern/rna_object_force.c +++ b/source/blender/makesrna/intern/rna_object_force.c @@ -412,6 +412,19 @@ static void rna_SoftBodySettings_goal_vgroup_set(PointerRNA *ptr, const char *va rna_object_vgroup_name_index_set(ptr, value, &sb->vertgroup); } +static void rna_SoftBodySettings_mass_vgroup_set(PointerRNA *ptr, const char *value) +{ + SoftBody *sb= (SoftBody*)ptr->data; + rna_object_vgroup_name_set(ptr, value, sb->namedVG_Mass, sizeof(sb->namedVG_Mass)); +} + +static void rna_SoftBodySettings_spring_vgroup_set(PointerRNA *ptr, const char *value) +{ + SoftBody *sb= (SoftBody*)ptr->data; + rna_object_vgroup_name_set(ptr, value, sb->namedVG_Spring_K, sizeof(sb->namedVG_Spring_K)); +} + + static char *rna_SoftBodySettings_path(PointerRNA *ptr) { Object *ob= (Object*)ptr->id.data; @@ -1392,6 +1405,12 @@ static void rna_def_softbody(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Mass", ""); RNA_def_property_update(prop, 0, "rna_softbody_update"); + prop= RNA_def_property(srna, "mass_vertex_group", PROP_STRING, PROP_NONE); + RNA_def_property_string_sdna(prop, NULL, "namedVG_Mass"); + RNA_def_property_ui_text(prop, "Mass Vertex Group", "Control point mass values."); + RNA_def_property_string_funcs(prop, NULL, NULL, "rna_SoftBodySettings_mass_vgroup_set"); + RNA_def_property_update(prop, 0, "rna_softbody_update"); + prop= RNA_def_property(srna, "gravity", PROP_FLOAT, PROP_ACCELERATION); RNA_def_property_float_sdna(prop, NULL, "grav"); RNA_def_property_range(prop, -10.0f, 10.0f); @@ -1490,6 +1509,12 @@ static void rna_def_softbody(BlenderRNA *brna) RNA_def_property_range(prop, 0.0f, 1.0f); RNA_def_property_ui_text(prop, "Shear", "Shear Stiffness"); + prop= RNA_def_property(srna, "spring_vertex_group", PROP_STRING, PROP_NONE); + RNA_def_property_string_sdna(prop, NULL, "namedVG_Spring_K"); + RNA_def_property_ui_text(prop, "Spring Vertex Group", "Control point spring strength values."); + RNA_def_property_string_funcs(prop, NULL, NULL, "rna_SoftBodySettings_spring_vgroup_set"); + RNA_def_property_update(prop, 0, "rna_softbody_update"); + /* Collision */ prop= RNA_def_property(srna, "collision_type", PROP_ENUM, PROP_NONE); From 38f7839218e541b2bf9e106ad5578de63c7db6af Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 03:39:42 +0000 Subject: [PATCH 375/412] Fix for [#19299] Color render bug Caused by very evil AO subtractive mode going negative once again... --- source/blender/render/intern/source/shadeoutput.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/render/intern/source/shadeoutput.c b/source/blender/render/intern/source/shadeoutput.c index 5e523199755..aa0bbd575a7 100644 --- a/source/blender/render/intern/source/shadeoutput.c +++ b/source/blender/render/intern/source/shadeoutput.c @@ -1746,6 +1746,10 @@ void shade_lamp_loop(ShadeInput *shi, ShadeResult *shr) shr->combined[0] += shi->r*aodiff[0]; shr->combined[1] += shi->g*aodiff[1]; shr->combined[2] += shi->b*aodiff[2]; + + if (shr->combined[0] < 0.f) shr->combined[0]= 0.f; + if (shr->combined[1] < 0.f) shr->combined[1]= 0.f; + if (shr->combined[2] < 0.f) shr->combined[2]= 0.f; } } From 539a68f6c035d521b7c8a1eb7a15de664798cf69 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 04:07:58 +0000 Subject: [PATCH 376/412] Fix for [#19793] Resolution Sliding Crashes Blender 2.5 SVN 24256 --- source/blender/render/intern/source/volume_precache.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blender/render/intern/source/volume_precache.c b/source/blender/render/intern/source/volume_precache.c index 25645d9cce2..cfaf333d656 100644 --- a/source/blender/render/intern/source/volume_precache.c +++ b/source/blender/render/intern/source/volume_precache.c @@ -622,6 +622,11 @@ void vol_precache_objectinstance_threads(Render *re, ObjectInstanceRen *obi, Mat vp->data_r = MEM_callocN(sizeof(float)*vp->res[0]*vp->res[1]*vp->res[2], "volume light cache data red channel"); vp->data_g = MEM_callocN(sizeof(float)*vp->res[0]*vp->res[1]*vp->res[2], "volume light cache data green channel"); vp->data_b = MEM_callocN(sizeof(float)*vp->res[0]*vp->res[1]*vp->res[2], "volume light cache data blue channel"); + if (vp->data_r==0 || vp->data_g==0 || vp->data_b==0) { + MEM_freeN(vp); + vp = NULL; + return; + } obi->volume_precache = vp; /* Need a shadeinput to calculate scattering */ From ce973efd4f7c4ff85b1ff434154fde8ddf89530c Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 04:37:42 +0000 Subject: [PATCH 377/412] Fix for [#19780] pivot for rotation/scaling doesn't use "active vert/edge/face" Martin please doublecheck, but it should be all good. --- .../editors/space_view3d/view3d_header.c | 1 + .../editors/transform/transform_generics.c | 17 ++++++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 9b1b239be70..82ea2442845 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -1778,6 +1778,7 @@ static void do_view3d_header_buttons(bContext *C, void *arg, int event) WM_operator_properties_free(&props_ptr); break; case B_AROUND: + WM_event_add_notifier(C, NC_SPACE|ND_SPACE_VIEW3D, obedit->data); // XXX handle_view3d_around(); /* copies to other 3d windows */ break; diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 17818713b1e..2e7cfd63836 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -1307,16 +1307,19 @@ void calculateCenter(TransInfo *t) case V3D_ACTIVE: { /* set median, and if if if... do object center */ -#if 0 // TRANSFORM_FIX_ME - EditSelection ese; + /* EDIT MODE ACTIVE EDITMODE ELEMENT */ - if (t->obedit && t->obedit->type == OB_MESH && EM_get_actSelection(&ese)) { - EM_editselection_center(t->center, &ese); - calculateCenter2D(t); - break; + if (t->obedit && t->obedit->type == OB_MESH) { + EditSelection ese; + EditMesh *em = BKE_mesh_get_editmesh(t->obedit->data); + + if (EM_get_actSelection(em, &ese)) { + EM_editselection_center(t->center, &ese); + calculateCenter2D(t); + break; + } } /* END EDIT MODE ACTIVE ELEMENT */ -#endif calculateCenterMedian(t); if((t->flag & (T_EDIT|T_POSE))==0) From 63d6d6cb742ab741e91126e5055f3172f6dacad1 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 5 Nov 2009 08:54:33 +0000 Subject: [PATCH 378/412] Armature Editing Bugfixes: * #19790: Circle Select doesn't work for Armature edit mode or pose mode * Duplicate bones (Shift-D) was calling the wrong operator. This now uses the macro version, instead of the copy only. --- source/blender/editors/animation/drivers.c | 16 ++-- source/blender/editors/animation/keyframing.c | 15 ++-- .../blender/editors/armature/armature_ops.c | 2 +- .../editors/space_view3d/view3d_select.c | 76 +++++++++++++++++++ 4 files changed, 93 insertions(+), 16 deletions(-) diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c index 5442598a261..5c2cbce4c5d 100644 --- a/source/blender/editors/animation/drivers.c +++ b/source/blender/editors/animation/drivers.c @@ -156,17 +156,17 @@ short ANIM_add_driver (ID *id, const char rna_path[], int array_index, short fla return 0; } - if(array_index==-1) { /* Key All */ + /* key entire array convenience method */ + if (array_index == -1) { array_index= 0; array_index_max= RNA_property_array_length(&ptr, prop) + 1; } - + /* will only loop once unless the array index was -1 */ - for( ; array_index < array_index_max; array_index++) { - + for (; array_index < array_index_max; array_index++) { /* create F-Curve with Driver */ fcu= verify_driver_fcurve(id, rna_path, array_index, 1); - + if (fcu && fcu->driver) { fcu->driver->type= type; @@ -181,19 +181,19 @@ short ANIM_add_driver (ID *id, const char rna_path[], int array_index, short fla if (proptype == PROP_BOOLEAN) { if (!array) val= RNA_property_boolean_get(&ptr, prop); else val= RNA_property_boolean_get_index(&ptr, prop, array_index); - + BLI_strncpy(expression, (val)? "True": "False", maxlen); } else if (proptype == PROP_INT) { if (!array) val= RNA_property_int_get(&ptr, prop); else val= RNA_property_int_get_index(&ptr, prop, array_index); - + BLI_snprintf(expression, maxlen, "%d", val); } else if (proptype == PROP_FLOAT) { if (!array) fval= RNA_property_float_get(&ptr, prop); else fval= RNA_property_float_get_index(&ptr, prop, array_index); - + BLI_snprintf(expression, maxlen, "%.3f", fval); } } diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 13ff8c84b7a..0412ee89e51 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -832,20 +832,21 @@ short insert_keyframe (ID *id, bAction *act, const char group[], const char rna_ //} } #endif - - if(array_index==-1) { /* Key All */ + + /* key entire array convenience method */ + if (array_index == -1) { array_index= 0; array_index_max= RNA_property_array_length(&ptr, prop) + 1; } - + /* will only loop once unless the array index was -1 */ - for( ; array_index < array_index_max; array_index++) { + for (; array_index < array_index_max; array_index++) { fcu= verify_fcurve(act, group, rna_path, array_index, 1); - + /* insert keyframe */ - ret |= insert_keyframe_direct(ptr, prop, fcu, cfra, flag); + ret += insert_keyframe_direct(ptr, prop, fcu, cfra, flag); } - + return ret; } diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index 159effe0960..e49e3d99c49 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -232,7 +232,7 @@ void ED_keymap_armature(wmKeyConfig *keyconf) WM_keymap_add_item(keymap, "ARMATURE_OT_delete", XKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_delete", DELKEY, KM_PRESS, 0, 0); - WM_keymap_add_item(keymap, "ARMATURE_OT_duplicate", DKEY, KM_PRESS, KM_SHIFT, 0); + WM_keymap_add_item(keymap, "ARMATURE_OT_duplicate_move", DKEY, KM_PRESS, KM_SHIFT, 0); WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, 0, 0); kmi= WM_keymap_add_item(keymap, "ARMATURE_OT_extrude_move", EKEY, KM_PRESS, KM_SHIFT, 0); // RNA_boolean_set(kmi->ptr, "forked", 1); // XXX this doesn't work ok for macros it seems... diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index b13d83c0157..0c90347063f 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -1810,6 +1810,79 @@ static void lattice_circle_select(ViewContext *vc, int selecting, short *mval, f lattice_foreachScreenVert(vc, latticecurve_circle_doSelect, &data); } + +static short armature_circle_doSelectJoint(void *userData, EditBone *ebone, int x, int y, short head) +{ + struct {ViewContext *vc; short select, mval[2]; float radius; } *data = userData; + int mx = x - data->mval[0], my = y - data->mval[1]; + float r = sqrt(mx*mx + my*my); + + if (r <= data->radius) { + if (head) { + if (data->select) + ebone->flag |= BONE_ROOTSEL; + else + ebone->flag &= ~BONE_ROOTSEL; + } + else { + if (data->select) + ebone->flag |= BONE_TIPSEL; + else + ebone->flag &= ~BONE_TIPSEL; + } + return 1; + } + return 0; +} +static void armature_circle_select(ViewContext *vc, int selecting, short *mval, float rad) +{ + struct {ViewContext *vc; short select, mval[2]; float radius; } data; + bArmature *arm= vc->obedit->data; + EditBone *ebone; + + /* set vc->edit data */ + data.select = selecting; + data.mval[0] = mval[0]; + data.mval[1] = mval[1]; + data.radius = rad; + + ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); /* for foreach's screen/vert projection */ + + /* check each EditBone... */ + // TODO: could be optimised at some point + for (ebone= arm->edbo->first; ebone; ebone=ebone->next) { + short sco1[2], sco2[2], didpoint=0; + float vec[3]; + + /* project head location to screenspace */ + VECCOPY(vec, ebone->head); + Mat4MulVecfl(vc->obedit->obmat, vec); + project_short(vc->ar, vec, sco1); + + /* project tail location to screenspace */ + VECCOPY(vec, ebone->tail); + Mat4MulVecfl(vc->obedit->obmat, vec); + project_short(vc->ar, vec, sco2); + + /* check if the head and/or tail is in the circle + * - the call to check also does the selection already + */ + if (armature_circle_doSelectJoint(&data, ebone, sco1[0], sco1[1], 1)) + didpoint= 1; + if (armature_circle_doSelectJoint(&data, ebone, sco2[0], sco2[1], 0)) + didpoint= 1; + + /* only if the endpoints didn't get selected, deal with the middle of the bone too */ + // XXX should we just do this always? + if ( (didpoint==0) && edge_inside_circle(mval[0], mval[1], rad, sco1[0], sco1[1], sco2[0], sco2[1]) ) { + if (selecting) + ebone->flag |= BONE_TIPSEL|BONE_ROOTSEL|BONE_SELECTED; + else + ebone->flag &= ~(BONE_ACTIVE|BONE_SELECTED|BONE_TIPSEL|BONE_ROOTSEL); + } + } +} + /** Callbacks for circle selection in Editmode */ static void obedit_circle_select(ViewContext *vc, short selecting, short *mval, float rad) @@ -1825,6 +1898,9 @@ static void obedit_circle_select(ViewContext *vc, short selecting, short *mval, case OB_LATTICE: lattice_circle_select(vc, selecting, mval, rad); break; + case OB_ARMATURE: + armature_circle_select(vc, selecting, mval, rad); + break; default: return; } From 0b2bc7785deda39647c832ba022a14d337155802 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 09:57:43 +0000 Subject: [PATCH 379/412] * Fix for [#19700] undo doesn't display visual feedback on lattices Depgraph update was commented out in undo system because of globals, restored this with new context/id-based depgraph * Fix in UV editor UV menu * Slightly nicer default names for adding forcefields with Add menu --- release/scripts/ui/space_image.py | 2 +- source/blender/editors/object/object_add.c | 3 +++ source/blender/editors/util/editmode_undo.c | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index f6b5b75da73..95425958f3e 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -208,7 +208,7 @@ class IMAGE_MT_uvs(bpy.types.Menu): layout.itemS() - layout.itemR(settings, "proportional_editing") + layout.item_menu_enumR(settings, "proportional_editing") layout.item_menu_enumR(settings, "proportional_editing_falloff") layout.itemS() diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 63bb3f87480..80426fd6a49 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -264,6 +264,7 @@ static Object *effector_add_type(bContext *C, wmOperator *op, int type) if(type==PFIELD_GUIDE) { ob= ED_object_add_type(C, OB_CURVE, view_align, FALSE); + rename_id(&ob->id, "CurveGuide"); ((Curve*)ob->data)->flag |= CU_PATH|CU_3D; ED_object_enter_editmode(C, 0); @@ -274,6 +275,8 @@ static Object *effector_add_type(bContext *C, wmOperator *op, int type) } else { ob= ED_object_add_type(C, OB_EMPTY, view_align, FALSE); + rename_id(&ob->id, "Field"); + switch(type) { case PFIELD_WIND: case PFIELD_VORTEX: diff --git a/source/blender/editors/util/editmode_undo.c b/source/blender/editors/util/editmode_undo.c index 2d73a9f1d25..5fb93b0f8ec 100644 --- a/source/blender/editors/util/editmode_undo.c +++ b/source/blender/editors/util/editmode_undo.c @@ -240,6 +240,7 @@ static void undo_clean_stack(bContext *C) /* 1= an undo, -1 is a redo. we have to make sure 'curundo' remains at current situation */ void undo_editmode_step(bContext *C, int step) { + Object *obedit= CTX_data_edit_object(C); /* prevent undo to happen on wrong object, stack can be a mix */ undo_clean_stack(C); @@ -266,8 +267,9 @@ void undo_editmode_step(bContext *C, int step) if(G.f & G_DEBUG) printf("redo %s\n", curundo->name); } } + + DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); -// DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); /* XXX notifiers */ } From 48bc52ea1b0f3ce021395591dbc89756c7a4e1ed Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 10:02:14 +0000 Subject: [PATCH 380/412] fix for editing docs --- release/scripts/op/wm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py index 1bd5635932f..ebbcc82bb77 100644 --- a/release/scripts/op/wm.py +++ b/release/scripts/op/wm.py @@ -321,7 +321,7 @@ class WM_OT_doc_edit(bpy.types.Operator): class_name, class_prop = self.doc_id.split('.') if not self.doc_new: - return ('CANCELLED',) + return ('RUNNING_MODAL',) # check if this is an operator op_name = class_name.upper() + '_OT_' + class_prop @@ -334,7 +334,7 @@ class WM_OT_doc_edit(bpy.types.Operator): rna = op_class.bl_rna doc_orig = rna.description if doc_orig == self.doc_new: - return ('CANCELLED',) + return ('RUNNING_MODAL',) print("op - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) upload["title"] = 'OPERATOR %s:%s' % (self.doc_id, doc_orig) @@ -346,7 +346,7 @@ class WM_OT_doc_edit(bpy.types.Operator): rna = getattr(bpy.types, class_name).bl_rna doc_orig = rna.properties[class_prop].description if doc_orig == self.doc_new: - return ('CANCELLED',) + return ('RUNNING_MODAL',) print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) From 751f07d6d486b6388d4eeb78ee0fb672c95739ed Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 5 Nov 2009 10:02:29 +0000 Subject: [PATCH 381/412] Fix for error in previous fix - oops ( [#19818] ) --- source/blender/editors/space_view3d/view3d_header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 82ea2442845..d37c81904cf 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -1778,7 +1778,7 @@ static void do_view3d_header_buttons(bContext *C, void *arg, int event) WM_operator_properties_free(&props_ptr); break; case B_AROUND: - WM_event_add_notifier(C, NC_SPACE|ND_SPACE_VIEW3D, obedit->data); + WM_event_add_notifier(C, NC_SPACE|ND_SPACE_VIEW3D, 0); // XXX handle_view3d_around(); /* copies to other 3d windows */ break; From 06d5d53a240cf98aee52a45317ac2f979be7e58a Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 5 Nov 2009 10:09:45 +0000 Subject: [PATCH 382/412] Bugfixes + Spline IK Tweaks: * #19819: 'Select' operator for Hooks was crashing when Hooks didn't have any vertices assigned yet * Default twist resolution mode for curves is now 'Minimise'. This seems to work better for Curve Deforms and other purposes. Can be changed if other ways are better after some more testing. * Spline IK now has more options for controlling how the x and z axis scaling is determined. There is now a choice between using the radius of the curve, the x+z scaling from the bones, or no scaling (default). This does break old files a bit, but this is to have a more stable base for later. --- .../ui/properties_object_constraint.py | 2 +- source/blender/blenkernel/intern/armature.c | 29 +++++++++++++++---- source/blender/blenkernel/intern/curve.c | 1 + source/blender/editors/object/object_hook.c | 3 ++ .../blender/makesdna/DNA_constraint_types.h | 14 ++++++--- .../blender/makesrna/intern/rna_constraint.c | 13 +++++++-- 6 files changed, 49 insertions(+), 13 deletions(-) diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py index 3dd7a931316..e6c68c081f3 100644 --- a/release/scripts/ui/properties_object_constraint.py +++ b/release/scripts/ui/properties_object_constraint.py @@ -607,7 +607,7 @@ class ConstraintButtonsPanel(bpy.types.Panel): col = layout.column() col.itemL(text="Chain Scaling:") col.itemR(con, "keep_max_length") - col.itemR(con, "radius_to_thickness") + col.itemR(con, "xz_scaling_mode") class OBJECT_PT_constraints(ConstraintButtonsPanel): diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c index 3a8a3d4efc9..f178553d796 100644 --- a/source/blender/blenkernel/intern/armature.c +++ b/source/blender/blenkernel/intern/armature.c @@ -1891,14 +1891,33 @@ static void splineik_evaluate_bone(tSplineIK_Tree *tree, Scene *scene, Object *o } /* step 4: set the scaling factors for the axes */ + // TODO: include a no-scale option? { /* only multiply the y-axis by the scaling factor to get nice volume-preservation */ VecMulf(poseMat[1], scaleFac); - - /* set the scaling factors of the x and z axes from the average radius of the curve? */ - if (ikData->flag & CONSTRAINT_SPLINEIK_RAD2FAT) { - VecMulf(poseMat[0], radius); - VecMulf(poseMat[2], radius); + + /* set the scaling factors of the x and z axes from... */ + switch (ikData->xzScaleMode) { + case CONSTRAINT_SPLINEIK_XZS_RADIUS: + { + /* radius of curve */ + VecMulf(poseMat[0], radius); + VecMulf(poseMat[2], radius); + } + break; + case CONSTRAINT_SPLINEIK_XZS_ORIGINAL: + { + /* original scales get used */ + float scale; + + /* x-axis scale */ + scale= VecLength(pchan->pose_mat[0]); + VecMulf(poseMat[0], scale); + /* z-axis scale */ + scale= VecLength(pchan->pose_mat[2]); + VecMulf(poseMat[2], scale); + } + break; } } diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c index 5580070b922..1410e5d29c2 100644 --- a/source/blender/blenkernel/intern/curve.c +++ b/source/blender/blenkernel/intern/curve.c @@ -145,6 +145,7 @@ Curve *add_curve(char *name, int type) cu->fsize= 1.0; cu->ulheight = 0.05; cu->texflag= CU_AUTOSPACE; + cu->twist_mode= CU_TWIST_MINIMUM; // XXX: this one seems to be the best one in most cases, at least for curve deform... cu->bb= unit_boundbox(); diff --git a/source/blender/editors/object/object_hook.c b/source/blender/editors/object/object_hook.c index 4643b875872..22a6329a097 100644 --- a/source/blender/editors/object/object_hook.c +++ b/source/blender/editors/object/object_hook.c @@ -362,6 +362,9 @@ static void select_editcurve_hook(Object *obedit, HookModifierData *hmd) void object_hook_select(Object *ob, HookModifierData *hmd) { + if (hmd->indexar == NULL) + return; + if(ob->type==OB_MESH) select_editmesh_hook(ob, hmd); else if(ob->type==OB_LATTICE) select_editlattice_hook(ob, hmd); else if(ob->type==OB_CURVE) select_editcurve_hook(ob, hmd); diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h index f5a08764c42..2b24b673185 100644 --- a/source/blender/makesdna/DNA_constraint_types.h +++ b/source/blender/makesdna/DNA_constraint_types.h @@ -169,7 +169,7 @@ typedef struct bSplineIKConstraint { /* settings */ short flag; /* general settings for constraint */ - short upflag; /* axis of bone that points up */ + short xzScaleMode; /* method used for determining the x & z scaling of the bones */ } bSplineIKConstraint; @@ -551,10 +551,16 @@ typedef enum B_CONSTRAINTCHANNEL_FLAG { #define CONSTRAINT_SPLINEIK_NO_ROOT (1<<1) /* bones in the chain should not scale to fit the curve */ #define CONSTRAINT_SPLINEIK_SCALE_LIMITED (1<<2) - /* bones in the chain should take their x/z scales from the curve radius */ -#define CONSTRAINT_SPLINEIK_RAD2FAT (1<<3) /* evenly distribute the bones along the path regardless of length */ -#define CONSTRAINT_SPLINEIK_EVENSPLITS (1<<4) +#define CONSTRAINT_SPLINEIK_EVENSPLITS (1<<3) + +/* bSplineIKConstraint->xzScaleMode */ + /* no x/z scaling */ +#define CONSTRAINT_SPLINEIK_XZS_NONE 0 + /* bones in the chain should take their x/z scales from the curve radius */ +#define CONSTRAINT_SPLINEIK_XZS_RADIUS 1 + /* bones in the chain should take their x/z scales from the original scaling */ +#define CONSTRAINT_SPLINEIK_XZS_ORIGINAL 2 /* MinMax (floor) flags */ #define MINMAX_STICKY 0x01 diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 02cf44dcc7a..7f7976c365f 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -1679,6 +1679,12 @@ static void rna_def_constraint_spline_ik(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; + + static EnumPropertyItem splineik_xz_scale_mode[] = { + {CONSTRAINT_SPLINEIK_XZS_NONE, "NONE", 0, "None", "Don't scale the x and z axes, giving a volume preservation effect. (Default)"}, + {CONSTRAINT_SPLINEIK_XZS_RADIUS, "CURVE_RADIUS", 0, "Curve Radius", "Use the radius of the curve."}, + {CONSTRAINT_SPLINEIK_XZS_ORIGINAL, "ORIGINAL", 0, "Original", "Use the original scaling of the bones."}, + {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "SplineIKConstraint", "Constraint"); RNA_def_struct_ui_text(srna, "Spline IK Constraint", "Align 'n' bones along a curve."); @@ -1715,9 +1721,10 @@ static void rna_def_constraint_spline_ik(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Keep Max Length", "Maintain the maximum length of the chain when spline is stretched."); RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); - prop= RNA_def_property(srna, "radius_to_thickness", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "flag", CONSTRAINT_SPLINEIK_RAD2FAT); - RNA_def_property_ui_text(prop, "Radius to Thickness", "Radius of the spline affects the x/z scaling of the bones."); + prop= RNA_def_property(srna, "xz_scaling_mode", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "xzScaleMode"); + RNA_def_property_enum_items(prop, splineik_xz_scale_mode); + RNA_def_property_ui_text(prop, "XZ Scale Mode", "Method used for determining the scaling of the X and Z axes of the bone."); RNA_def_property_update(prop, NC_OBJECT|ND_CONSTRAINT, "rna_Constraint_update"); } From cacd68c3359c74f5f2ab7bae304ffeb59ee6e9da Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 10:50:58 +0000 Subject: [PATCH 383/412] python console autocomplete would crash (missing NULL check for pose channels) add rna functions id.animation_data_create() and id.animation_data_clear() - works for all ID types that support animdata. --- source/blender/editors/screen/screen_context.c | 4 ++-- source/blender/makesrna/intern/rna_ID.c | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c index 130ffeb412a..b0e255d60d4 100644 --- a/source/blender/editors/screen/screen_context.c +++ b/source/blender/editors/screen/screen_context.c @@ -196,7 +196,7 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult bArmature *arm= (obact) ? obact->data : NULL; bPoseChannel *pchan; - if (obact && arm) { + if (obact && obact->pose && arm) { for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { @@ -211,7 +211,7 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult bArmature *arm= (obact) ? obact->data : NULL; bPoseChannel *pchan; - if (obact && arm) { + if (obact && obact->pose && arm) { for (pchan= obact->pose->chanbase.first; pchan; pchan= pchan->next) { /* ensure that PoseChannel is on visible layer and is not hidden in PoseMode */ if ((pchan->bone) && (arm->layer & pchan->bone->layer) && !(pchan->bone->flag & BONE_HIDDEN_P)) { diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index bc5c99f0a1e..3de347cf80e 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -69,6 +69,7 @@ EnumPropertyItem id_type_items[] = { #include "BKE_idprop.h" #include "BKE_library.h" +#include "BKE_animsys.h" /* name functions that ignore the first two ID characters */ void rna_ID_name_get(PointerRNA *ptr, char *value) @@ -326,6 +327,15 @@ static void rna_def_ID(BlenderRNA *brna) RNA_def_function_ui_description(func, "Create a copy of this datablock (not supported for all datablocks)."); parm= RNA_def_pointer(func, "id", "ID", "", "New copy of the ID."); RNA_def_function_return(func, parm); + + func= RNA_def_function(srna, "animation_data_create", "BKE_id_add_animdata"); + RNA_def_function_ui_description(func, "Create animation data to this ID, note that not all ID types support this."); + parm= RNA_def_pointer(func, "anim_data", "AnimData", "", "New animation data or NULL."); + RNA_def_function_return(func, parm); + + func= RNA_def_function(srna, "animation_data_clear", "BKE_free_animdata"); + RNA_def_function_ui_description(func, "Clear animation on this this ID."); + } static void rna_def_library(BlenderRNA *brna) From 247f72fcc00b438d8d76809eee9c00c5c8561e68 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 11:17:09 +0000 Subject: [PATCH 384/412] - added bpy.context to the python module - made the console banner printing function into a python operator (includes sys.version) - added 'C' into the consoles default namespace for convenience --- release/scripts/ui/space_console.py | 35 ++++++++++++++++--- .../editors/space_console/space_console.c | 16 ++------- source/blender/python/intern/bpy_interface.c | 16 +++++++-- 3 files changed, 46 insertions(+), 21 deletions(-) diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py index c3b97fbaf0a..abf7b23e27a 100644 --- a/release/scripts/ui/space_console.py +++ b/release/scripts/ui/space_console.py @@ -127,7 +127,7 @@ def get_console(console_id): return console, stdout, stderr -class CONSOLE_OT_exec(bpy.types.Operator): +class ConsoleExec(bpy.types.Operator): '''Execute the current console line as a python expression.''' bl_idname = "console.execute" bl_label = "Console Execute" @@ -210,7 +210,7 @@ class CONSOLE_OT_exec(bpy.types.Operator): return ('FINISHED',) -class CONSOLE_OT_autocomplete(bpy.types.Operator): +class ConsoleAutocomplete(bpy.types.Operator): '''Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one.''' bl_idname = "console.autocomplete" @@ -256,9 +256,36 @@ class CONSOLE_OT_autocomplete(bpy.types.Operator): return ('FINISHED',) +class ConsoleBanner(bpy.types.Operator): + bl_idname = "console.banner" + + def execute(self, context): + sc = context.space_data + version_string = sys.version.strip().replace('\n', ' ') + + add_scrollback(" * Python Interactive Console %s *" % version_string, 'OUTPUT') + add_scrollback("Command History: Up/Down Arrow", 'OUTPUT') + add_scrollback("Cursor: Left/Right Home/End", 'OUTPUT') + add_scrollback("Remove: Backspace/Delete", 'OUTPUT') + add_scrollback("Execute: Enter", 'OUTPUT') + add_scrollback("Autocomplete: Ctrl+Space", 'OUTPUT') + add_scrollback("Ctrl +/- Wheel: Zoom", 'OUTPUT') + add_scrollback("Builtin Modules: bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.context, Mathutils, Geometry, BGL", 'OUTPUT') + add_scrollback("", 'OUTPUT') + add_scrollback("", 'OUTPUT') + sc.prompt = ConsoleExec.PROMPT + + # Add context into the namespace for quick access + console = get_console(hash(context.region))[0] + console.locals["C"] = bpy.context + + return ('FINISHED',) + + bpy.types.register(CONSOLE_HT_header) bpy.types.register(CONSOLE_MT_console) bpy.types.register(CONSOLE_MT_report) -bpy.ops.add(CONSOLE_OT_exec) -bpy.ops.add(CONSOLE_OT_autocomplete) +bpy.ops.add(ConsoleExec) +bpy.ops.add(ConsoleAutocomplete) +bpy.ops.add(ConsoleBanner) diff --git a/source/blender/editors/space_console/space_console.c b/source/blender/editors/space_console/space_console.c index 49bc3adb5b9..6774481430a 100644 --- a/source/blender/editors/space_console/space_console.c +++ b/source/blender/editors/space_console/space_console.c @@ -164,21 +164,9 @@ static void console_main_area_draw(const bContext *C, ARegion *ar) View2DScrollers *scrollers; //float col[3]; - /* add helper text, why not? */ - if(sc->scrollback.first==NULL) { - console_scrollback_add_str(C, " * Python Interactive Console *", 0); - console_scrollback_add_str(C, "Command History: Up/Down Arrow", 0); - console_scrollback_add_str(C, "Cursor: Left/Right Home/End", 0); - console_scrollback_add_str(C, "Remove: Backspace/Delete", 0); - console_scrollback_add_str(C, "Execute: Enter", 0); - console_scrollback_add_str(C, "Autocomplete: Ctrl+Space", 0); - console_scrollback_add_str(C, "Ctrl +/- Wheel: Zoom", 0); - console_scrollback_add_str(C, "Builtin Modules: bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.ui", 0); + if(sc->scrollback.first==NULL) + WM_operator_name_call((bContext *)C, "CONSOLE_OT_banner", WM_OP_EXEC_DEFAULT, NULL); - /* This is normally set by python but to start with its easier just to set it like this rather then running python with no args */ - strcpy(sc->prompt, ">>> "); - } - /* clear and setup matrix */ //UI_GetThemeColor3fv(TH_BACK, col); //glClearColor(col[0], col[1], col[2], 0.0); diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index ef3827d970e..e67df5db096 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -101,8 +101,6 @@ void bpy_context_set(bContext *C, PyGILState_STATE *gilstate) if(py_call_level==1) { - BPY_update_modules(); /* can give really bad results if this isnt here */ - if(C) { // XXX - should always be true. BPy_SetContext(C); bpy_import_main_set(CTX_data_main(C)); @@ -111,6 +109,8 @@ void bpy_context_set(bContext *C, PyGILState_STATE *gilstate) fprintf(stderr, "ERROR: Python context called with a NULL Context. this should not happen!\n"); } + BPY_update_modules(); /* can give really bad results if this isnt here */ + #ifdef TIME_PY_RUN if(bpy_timer_count==0) { /* record time from the beginning */ @@ -171,6 +171,7 @@ void BPY_free_compiled_text( struct Text *text ) /***************************************************************************** * Description: Creates the bpy module and adds it to sys.modules for importing *****************************************************************************/ +static BPy_StructRNA *bpy_context_module= NULL; /* for fast access */ static void bpy_init_modules( void ) { PyObject *mod; @@ -204,6 +205,15 @@ static void bpy_init_modules( void ) bpy_import_test("bpy_ext"); /* extensions to our existing types */ } + /* bpy context */ + { + bpy_context_module= ( BPy_StructRNA * ) PyObject_NEW( BPy_StructRNA, &pyrna_struct_Type ); + RNA_pointer_create(NULL, &RNA_Context, NULL, &bpy_context_module->ptr); + + PyModule_AddObject(mod, "context", (PyObject *)bpy_context_module); + } + + /* stand alone utility modules not related to blender directly */ Geometry_Init(); Mathutils_Init(); @@ -220,7 +230,7 @@ void BPY_update_modules( void ) /* refreshes the main struct */ BPY_update_rna_module(); - + bpy_context_module->ptr.data= (void *)BPy_GetContext(); } /***************************************************************************** From be4ceb5fdfef870302c7ce2778c0e0fff141bc78 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 12:37:49 +0000 Subject: [PATCH 385/412] Select interior faces, access from the mesh select menu new mesh functions, remove duplicates in uvproject and mesh_skin - face.edge_keys() - edge.key() - mesh.edge_face_count() - mesh.edge_face_count_dict() --- release/scripts/modules/bpy_ext/Mesh.py | 72 +++++++++++++++++++++ release/scripts/modules/bpy_ext/__init__.py | 1 + release/scripts/op/mesh.py | 71 ++++++++++++++++++++ release/scripts/op/mesh_skin.py | 26 ++------ release/scripts/op/uvcalc_smart_project.py | 19 +----- release/scripts/ui/space_view3d.py | 1 + 6 files changed, 151 insertions(+), 39 deletions(-) create mode 100644 release/scripts/modules/bpy_ext/Mesh.py create mode 100644 release/scripts/op/mesh.py diff --git a/release/scripts/modules/bpy_ext/Mesh.py b/release/scripts/modules/bpy_ext/Mesh.py new file mode 100644 index 00000000000..961ff83cc06 --- /dev/null +++ b/release/scripts/modules/bpy_ext/Mesh.py @@ -0,0 +1,72 @@ +# ##### BEGIN GPL LICENSE BLOCK ##### +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + +def ord_ind(i1,i2): + if i1 Date: Thu, 5 Nov 2009 14:25:08 +0000 Subject: [PATCH 386/412] enter editmode when adding objects even if the object is not in an active layer, useful for python but in rare cases this also happens for users. Active layer getting out of sync is an old bug but hard find when it happens. This at least fixes segfaulting on adding objects. --- source/blender/editors/include/ED_object.h | 1 + source/blender/editors/mesh/editmesh_add.c | 5 ++--- source/blender/editors/object/object_add.c | 17 ++++++----------- source/blender/editors/object/object_edit.c | 18 +++++++++++------- 4 files changed, 20 insertions(+), 21 deletions(-) diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index 3d445016d98..b2d92869a2f 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -74,6 +74,7 @@ void ED_object_toggle_modes(struct bContext *C, int mode); #define EM_FREEUNDO 2 #define EM_WAITCURSOR 4 #define EM_DO_UNDO 8 +#define EM_IGNORE_LAYER 16 void ED_object_exit_editmode(struct bContext *C, int flag); void ED_object_enter_editmode(struct bContext *C, int flag); diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index 85c3558c2ef..5905b2021ea 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -1317,9 +1317,8 @@ static void make_prim_ext(bContext *C, int view_align, int enter_editmode, if(obedit==NULL || obedit->type!=OB_MESH) { /* create editmode */ - ED_object_add_type(C, OB_MESH, view_align, FALSE); - ED_object_enter_editmode(C, EM_DO_UNDO); - obedit= CTX_data_edit_object(C); + obedit= ED_object_add_type(C, OB_MESH, view_align, FALSE); + ED_object_enter_editmode(C, EM_DO_UNDO|EM_IGNORE_LAYER); /* rare cases the active layer is messed up */ newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 80426fd6a49..016bc172410 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -196,7 +196,7 @@ Object *ED_object_add_type(bContext *C, int type, int view_align, int enter_edit DAG_scene_sort(scene); if(enter_editmode) - ED_object_enter_editmode(C, 0); + ED_object_enter_editmode(C, EM_IGNORE_LAYER); return ob; } @@ -342,9 +342,8 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_CURVE) { - ED_object_add_type(C, OB_CURVE, view_align, TRUE); + obedit= ED_object_add_type(C, OB_CURVE, view_align, TRUE); newob = 1; - obedit= CTX_data_edit_object(C); if(type & CU_PRIM_PATH) ((Curve*)obedit->data)->flag |= CU_PATH|CU_3D; @@ -427,12 +426,11 @@ static int object_add_surface_exec(bContext *C, wmOperator *op) ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_SURF) { - ED_object_add_type(C, OB_SURF, view_align, TRUE); + obedit= ED_object_add_type(C, OB_SURF, view_align, TRUE); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); - obedit= CTX_data_edit_object(C); nu= add_nurbs_primitive(C, RNA_enum_get(op->ptr, "type"), newob); editnurb= curve_get_editcurve(obedit); BLI_addtail(editnurb, nu); @@ -488,12 +486,11 @@ static int object_metaball_add_exec(bContext *C, wmOperator *op) ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if(obedit==NULL || obedit->type!=OB_MBALL) { - ED_object_add_type(C, OB_MBALL, view_align, TRUE); + obedit= ED_object_add_type(C, OB_MBALL, view_align, TRUE); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); - obedit= CTX_data_edit_object(C); elem= (MetaElem*)add_metaball_primitive(C, RNA_enum_get(op->ptr, "type"), newob); mball= (MetaBall*)obedit->data; BLI_addtail(mball->editelems, elem); @@ -556,8 +553,7 @@ static int object_add_text_exec(bContext *C, wmOperator *op) if(obedit && obedit->type==OB_FONT) return OPERATOR_CANCELLED; - ED_object_add_type(C, OB_FONT, view_align, enter_editmode); - obedit= CTX_data_active_object(C); + obedit= ED_object_add_type(C, OB_FONT, view_align, enter_editmode); WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, obedit); @@ -593,9 +589,8 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) ED_object_add_generic_get_opts(op, &view_align, &enter_editmode); if ((obedit==NULL) || (obedit->type != OB_ARMATURE)) { - ED_object_add_type(C, OB_ARMATURE, view_align, TRUE); + obedit= ED_object_add_type(C, OB_ARMATURE, view_align, TRUE); ED_object_enter_editmode(C, 0); - obedit= CTX_data_edit_object(C); newob = 1; } else DAG_id_flush_update(&obedit->id, OB_RECALC_DATA); diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index e659cd70672..371d87260cd 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -371,25 +371,29 @@ void ED_object_exit_editmode(bContext *C, int flag) void ED_object_enter_editmode(bContext *C, int flag) { Scene *scene= CTX_data_scene(C); - Base *base= CTX_data_active_base(C); + Base *base= NULL; Object *ob; ScrArea *sa= CTX_wm_area(C); View3D *v3d= NULL; int ok= 0; if(scene->id.lib) return; - if(base==NULL) return; if(sa && sa->spacetype==SPACE_VIEW3D) v3d= sa->spacedata.first; - if(v3d && (base->lay & v3d->lay)==0) return; - else if(!v3d && (base->lay & scene->lay)==0) return; + if((flag & EM_IGNORE_LAYER)==0) { + if(v3d && (base->lay & v3d->lay)==0) return; + else if(!v3d && (base->lay & scene->lay)==0) return; + base= CTX_data_active_base(C); /* active layer checked here for view3d */ + } + else { + base= scene->basact; + } + + if (ELEM3(NULL, base, base->object, base->object->data)) return; ob = base->object; - - if(ob==NULL) return; - if(ob->data==NULL) return; if (object_data_is_libdata(ob)) { error_libdata(); From 2907c6fdf09a92dfb6723f075e03aab2f24c289d Mon Sep 17 00:00:00 2001 From: William Reynish Date: Thu, 5 Nov 2009 14:31:17 +0000 Subject: [PATCH 387/412] Moved the buttons around slightly in shape keys, to make it clearer what is action buttons, and what is toggles. --- release/scripts/ui/properties_data_mesh.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index 20360fa5ee3..76d37a5931f 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -179,20 +179,22 @@ class DATA_PT_shape_keys(DataButtonsPanel): sub.alignment = 'RIGHT' subrow = sub.row(align=True) - subrow.active = enable_edit_value + subrow1 = subrow.row(align=True) + subrow1.active = enable_edit_value if ob.shape_key_lock: - subrow.itemR(ob, "shape_key_lock", icon='ICON_PINNED', text="") + subrow1.itemR(ob, "shape_key_lock", icon='ICON_PINNED', text="") else: - subrow.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") + subrow1.itemR(ob, "shape_key_lock", icon='ICON_UNPINNED', text="") if kb.mute: - subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_ON', text="") + subrow1.itemR(kb, "mute", icon='ICON_MUTE_IPO_ON', text="") else: - subrow.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + subrow1.itemR(kb, "mute", icon='ICON_MUTE_IPO_OFF', text="") + subrow.itemR(ob, "shape_key_edit_mode", text="") + + subrow = sub.row(align=True) + subrow.itemO("object.shape_key_mirror", icon='ICON_ARROW_LEFTRIGHT', text="") subrow.itemO("object.shape_key_clear", icon='ICON_X', text="") - - sub.itemO("object.shape_key_mirror", icon='ICON_MOD_MIRROR', text="") - - sub.itemR(ob, "shape_key_edit_mode", text="") + row = layout.row() row.itemR(kb, "name") From 59eaa1ff50e6b6c94a55ccac934cea283eae1659 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 14:42:39 +0000 Subject: [PATCH 388/412] last commit broke entering editmode --- source/blender/editors/object/object_edit.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 371d87260cd..0cfdd914222 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -383,9 +383,11 @@ void ED_object_enter_editmode(bContext *C, int flag) v3d= sa->spacedata.first; if((flag & EM_IGNORE_LAYER)==0) { - if(v3d && (base->lay & v3d->lay)==0) return; - else if(!v3d && (base->lay & scene->lay)==0) return; base= CTX_data_active_base(C); /* active layer checked here for view3d */ + + if(base==NULL) return; + else if(v3d && (base->lay & v3d->lay)==0) return; + else if(!v3d && (base->lay & scene->lay)==0) return; } else { base= scene->basact; From 5481549725fbe50152f6829b50b23d7206d4294b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 14:54:02 +0000 Subject: [PATCH 389/412] was setting the active material on exit editmode rather then enter --- source/blender/editors/mesh/editmesh.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/mesh/editmesh.c b/source/blender/editors/mesh/editmesh.c index 8b9de0f6348..81d565a9ba4 100644 --- a/source/blender/editors/mesh/editmesh.c +++ b/source/blender/editors/mesh/editmesh.c @@ -777,6 +777,9 @@ void make_editMesh(Scene *scene, Object *ob) return; } + if(ob->actcol > 0) + em->mat_nr= ob->actcol-1; + /* initialize fastmalloc for editmesh */ init_editmesh_fastmalloc(em, me->totvert, me->totedge, me->totface); @@ -990,8 +993,6 @@ void load_editMesh(Scene *scene, Object *ob) CustomData_add_layer(&me->fdata, CD_MFACE, CD_ASSIGN, mface, me->totface); mesh_update_customdata_pointers(me); - em->mat_nr= ob->actcol-1; - /* the vertices, use ->tmp.l as counter */ eve= em->verts.first; a= 0; From 0f1e28a13fe28da2eaef47a229f5bd9f192bf2bc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 15:59:14 +0000 Subject: [PATCH 390/412] - circle select mouse wheel resize now works (somehow mouse wheel generates a mouse up event) - context.active_bone wasnt set to an editbone type --- source/blender/editors/screen/screen_context.c | 2 +- .../blender/windowmanager/intern/wm_operators.c | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/source/blender/editors/screen/screen_context.c b/source/blender/editors/screen/screen_context.c index b0e255d60d4..919cc3f0cfd 100644 --- a/source/blender/editors/screen/screen_context.c +++ b/source/blender/editors/screen/screen_context.c @@ -231,7 +231,7 @@ int ed_screen_context(const bContext *C, const char *member, bContextDataResult for (ebone= arm->edbo->first; ebone; ebone= ebone->next) { if (EBONE_VISIBLE(arm, ebone)) { if (ebone->flag & BONE_ACTIVE) { - CTX_data_pointer_set(result, &arm->id, &RNA_UnknownType, ebone); + CTX_data_pointer_set(result, &arm->id, &RNA_EditBone, ebone); return 1; } diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 35e02d86b08..b75292ce974 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1666,7 +1666,7 @@ int WM_gesture_circle_modal(bContext *C, wmOperator *op, wmEvent *event) wmGesture *gesture= op->customdata; rcti *rect= gesture->customdata; int sx, sy; - + switch(event->type) { case MOUSEMOVE: @@ -1681,23 +1681,26 @@ int WM_gesture_circle_modal(bContext *C, wmOperator *op, wmEvent *event) gesture_circle_apply(C, op); break; - case WHEELUPMOUSE: + case WHEELDOWNMOUSE: + case PADMINUS: + case MINUSKEY: rect->xmax += 2 + rect->xmax/10; wm_gesture_tag_redraw(C); break; - case WHEELDOWNMOUSE: + case WHEELUPMOUSE: + case PADPLUSKEY: + case EQUALKEY: rect->xmax -= 2 + rect->xmax/10; if(rect->xmax < 1) rect->xmax= 1; wm_gesture_tag_redraw(C); break; case LEFTMOUSE: - case MIDDLEMOUSE: +// case MIDDLEMOUSE: /* ??? - somehow mouse wheel are interpreted as middle mouse release events - campbell */ case RIGHTMOUSE: if(event->val==KM_RELEASE) { /* key release */ wm_gesture_end(C, op); return OPERATOR_FINISHED; - } - else { + } else { if( RNA_struct_find_property(op->ptr, "event_type") ) RNA_int_set(op->ptr, "event_type", event->type); From 18e069f4867958cbb77478db0fca63fed0466f4b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 16:30:18 +0000 Subject: [PATCH 391/412] only run the banner function for console (not reports) --- source/blender/editors/space_console/space_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_console/space_console.c b/source/blender/editors/space_console/space_console.c index 6774481430a..c6565eb6ecc 100644 --- a/source/blender/editors/space_console/space_console.c +++ b/source/blender/editors/space_console/space_console.c @@ -164,7 +164,7 @@ static void console_main_area_draw(const bContext *C, ARegion *ar) View2DScrollers *scrollers; //float col[3]; - if(sc->scrollback.first==NULL) + if((sc->type==CONSOLE_TYPE_PYTHON) && (sc->scrollback.first==NULL)) WM_operator_name_call((bContext *)C, "CONSOLE_OT_banner", WM_OP_EXEC_DEFAULT, NULL); /* clear and setup matrix */ From 82baca3f365d2d6e67dcb722f17497ee6fa3efc7 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 16:40:12 +0000 Subject: [PATCH 392/412] Fix for bug #19807: renaming texture layers in editmode crashes. --- source/blender/makesrna/intern/rna_mesh.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c index ab745394ce5..b02b6d8bba3 100644 --- a/source/blender/makesrna/intern/rna_mesh.c +++ b/source/blender/makesrna/intern/rna_mesh.c @@ -493,9 +493,10 @@ static void rna_MeshTextureFaceLayer_active_set(PointerRNA *ptr, int value) static void rna_MeshTextureFaceLayer_name_set(PointerRNA *ptr, const char *value) { Mesh *me= (Mesh*)ptr->id.data; + CustomData *fdata= rna_mesh_fdata(me); CustomDataLayer *cdl= (CustomDataLayer*)ptr->data; BLI_strncpy(cdl->name, value, sizeof(cdl->name)); - CustomData_set_layer_unique_name(&me->fdata, cdl - me->fdata.layers); + CustomData_set_layer_unique_name(fdata, cdl - fdata->layers); } static int rna_vertex_color_check(CollectionPropertyIterator *iter, void *data) @@ -604,9 +605,10 @@ static void rna_MeshColorLayer_active_set(PointerRNA *ptr, int value) static void rna_MeshColorLayer_name_set(PointerRNA *ptr, const char *value) { Mesh *me= (Mesh*)ptr->id.data; + CustomData *fdata= rna_mesh_fdata(me); CustomDataLayer *cdl= (CustomDataLayer*)ptr->data; BLI_strncpy(cdl->name, value, sizeof(cdl->name)); - CustomData_set_layer_unique_name(&me->fdata, cdl - me->fdata.layers); + CustomData_set_layer_unique_name(fdata, cdl - fdata->layers); } static void rna_MeshFloatPropertyLayer_data_begin(CollectionPropertyIterator *iter, PointerRNA *ptr) From 93b2ed382259f6dd43839ae9331c2f13191dd81e Mon Sep 17 00:00:00 2001 From: William Reynish Date: Thu, 5 Nov 2009 17:22:11 +0000 Subject: [PATCH 393/412] Moved the object and bone name fields out of the Transform panel in 3Dview properties. They're in a new panel now called 'Item'. Needs an update in the B.blend to put it on the top. --- release/scripts/ui/space_view3d.py | 30 ++++++++++++++++++- .../editors/space_view3d/view3d_buttons.c | 22 +++----------- 2 files changed, 33 insertions(+), 19 deletions(-) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index c19b02ffaf0..a8604832c0e 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -1338,6 +1338,33 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel): layout.column().itemR(scene, "cursor_location", text="3D Cursor:") +class VIEW3D_PT_3dview_item(bpy.types.Panel): + bl_space_type = 'VIEW_3D' + bl_region_type = 'UI' + bl_label = "Item" + + def poll(self, context): + return (context.active_object or context.bone or context.edit_bone) + + def draw(self, context): + layout = self.layout + + ob = context.object + + row = layout.row() + row.itemL(text="", icon='ICON_OBJECT_DATA') + row.itemR(ob, "name", text="") + + if ((context.active_bone or context.active_pchan) and ob.type == 'ARMATURE' and (ob.mode == 'EDIT' or ob.mode == 'POSE')): + bone = context.active_bone + if not bone: + pchan = context.active_pchan + if pchan: + bone = pchan.bone + + row = layout.row() + row.itemL(text="", icon='ICON_BONE_DATA') + row.itemR(bone, "name", text="") class VIEW3D_PT_3dview_display(bpy.types.Panel): bl_space_type = 'VIEW_3D' @@ -1664,7 +1691,8 @@ bpy.types.register(VIEW3D_MT_edit_armature) bpy.types.register(VIEW3D_MT_edit_armature_parent) bpy.types.register(VIEW3D_MT_edit_armature_roll) -bpy.types.register(VIEW3D_PT_3dview_properties) # Panels +bpy.types.register(VIEW3D_PT_3dview_item) # Panels +bpy.types.register(VIEW3D_PT_3dview_properties) bpy.types.register(VIEW3D_PT_3dview_display) bpy.types.register(VIEW3D_PT_3dview_meshdisplay) bpy.types.register(VIEW3D_PT_3dview_curvedisplay) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 1e4e2424193..8c0eff49020 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -590,17 +590,9 @@ static void v3d_posearmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo if(bone && (bone->flag & BONE_ACTIVE) && (bone->layer & arm->layer)) break; } - if (!pchan) { - row= uiLayoutRow(layout, 0); - uiItemL(row, "No Active Bone", 0); - return; - } - row= uiLayoutRow(layout, 0); +// row= uiLayoutRow(layout, 0); RNA_pointer_create(&ob->id, &RNA_PoseChannel, pchan, &pchanptr); - - uiItemL(row, "", ICON_BONE_DATA); - uiItemR(row, "", 0, &pchanptr, "name", 0); col= uiLayoutColumn(layout, 0); @@ -702,10 +694,9 @@ static void v3d_editarmature_buts(uiLayout *layout, View3D *v3d, Object *ob, flo if (!ebone) return; - row= uiLayoutRow(layout, 0); +// row= uiLayoutRow(layout, 0); RNA_pointer_create(&arm->id, &RNA_EditBone, ebone, &eboneptr); - uiItemL(row, "", ICON_BONE_DATA); - uiItemR(row, "", 0, &eboneptr, "name", 0); + col= uiLayoutColumn(layout, 0); uiItemR(col, "Head", 0, &eboneptr, "head", 0); @@ -732,10 +723,7 @@ static void v3d_editmetaball_buts(uiLayout *layout, Object *ob, float lim) RNA_pointer_create(&mball->id, &RNA_MetaBall, mball, &mbptr); - row= uiLayoutRow(layout, 0); - - uiItemL(row, "", ICON_META_DATA); - uiItemR(row, "", 0, &mbptr, "name", 0); +// row= uiLayoutRow(layout, 0); RNA_pointer_create(&mball->id, &RNA_MetaElement, mball->lastelem, &ptr); @@ -1089,8 +1077,6 @@ static void view3d_panel_object(const bContext *C, Panel *pa) col= uiLayoutColumn(pa->layout, 0); row= uiLayoutRow(col, 0); RNA_id_pointer_create(&ob->id, &obptr); - uiItemL(row, "", ICON_OBJECT_DATA); - uiItemR(row, "", 0, &obptr, "name", 0); if(ob==obedit) { if(ob->type==OB_ARMATURE) v3d_editarmature_buts(col, v3d, ob, lim); From aec5fb98041a369d30c4f3c07981169a2e12a5ae Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 17:28:10 +0000 Subject: [PATCH 394/412] Fix warnings in RNA, one being an actual bug in setting an object's layer. --- source/blender/makesrna/intern/rna_object.c | 2 +- source/blender/makesrna/intern/rna_particle.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index c7a1284e35e..a5ec30bd624 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -739,7 +739,7 @@ static PointerRNA rna_Object_game_settings_get(PointerRNA *ptr) static unsigned int rna_Object_layer_validate__internal(const int *values, unsigned int lay) { - int i, tot; + int i, tot= 0; /* ensure we always have some layer selected */ for(i=0; i<20; i++) diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c index a70a5572ef0..ad73f279b45 100644 --- a/source/blender/makesrna/intern/rna_particle.c +++ b/source/blender/makesrna/intern/rna_particle.c @@ -593,7 +593,7 @@ static void psys_vg_name_set__internal(PointerRNA *ptr, const char *value, int i psys->vgroup[index]= 0; } else { - int vgroup_num = get_named_vertexgroup_num(ob, value); + int vgroup_num = get_named_vertexgroup_num(ob, (char*)value); if(vgroup_num == -1) return; From 8109b13e8369418f81ffa4f362f40d4d2f783851 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 17:32:06 +0000 Subject: [PATCH 395/412] - converted circle select use a modal map - now works exactly like 2.4x, except that its accessed from the CKey - hack to remember circle size, need some better way to do this --- .../editors/space_view3d/view3d_select.c | 13 +- source/blender/editors/uvedit/uvedit_ops.c | 7 +- .../blender/windowmanager/intern/wm_gesture.c | 8 +- .../windowmanager/intern/wm_operators.c | 117 +++++++++++++----- source/blender/windowmanager/wm.h | 7 ++ source/blender/windowmanager/wm_event_types.h | 8 ++ 6 files changed, 120 insertions(+), 40 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 0c90347063f..04658df3861 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -1917,17 +1917,20 @@ static int view3d_circle_select_exec(bContext *C, wmOperator *op) int x= RNA_int_get(op->ptr, "x"); int y= RNA_int_get(op->ptr, "y"); int radius= RNA_int_get(op->ptr, "radius"); + int gesture_mode= RNA_int_get(op->ptr, "gesture_mode"); + int selecting; + selecting= (gesture_mode==GESTURE_MODAL_SELECT); + if(CTX_data_edit_object(C) || (obact && obact->mode & OB_MODE_PARTICLE_EDIT)) { ViewContext vc; - short mval[2], selecting; + short mval[2]; view3d_operator_needs_opengl(C); view3d_set_viewcontext(C, &vc); mval[0]= x; mval[1]= y; - selecting= LEFTMOUSE==RNA_int_get(op->ptr, "event_type"); // XXX solve if(CTX_data_edit_object(C)) { obedit_circle_select(&vc, selecting, mval, (float)radius); @@ -1938,7 +1941,7 @@ static int view3d_circle_select_exec(bContext *C, wmOperator *op) } else { Base *base; - + selecting= selecting?BA_SELECT:BA_DESELECT; for(base= FIRSTBASE; base; base= base->next) { if(base->lay & v3d->lay) { project_short(ar, base->object->obmat[3], &base->sx); @@ -1946,7 +1949,7 @@ static int view3d_circle_select_exec(bContext *C, wmOperator *op) int dx= base->sx-x; int dy= base->sy-y; if( dx*dx + dy*dy < radius*radius) - ED_base_object_select(base, BA_SELECT); + ED_base_object_select(base, selecting); } } } @@ -1974,5 +1977,5 @@ void VIEW3D_OT_select_circle(wmOperatorType *ot) RNA_def_int(ot->srna, "x", 0, INT_MIN, INT_MAX, "X", "", INT_MIN, INT_MAX); RNA_def_int(ot->srna, "y", 0, INT_MIN, INT_MAX, "Y", "", INT_MIN, INT_MAX); RNA_def_int(ot->srna, "radius", 0, INT_MIN, INT_MAX, "Radius", "", INT_MIN, INT_MAX); - RNA_def_int(ot->srna, "event_type", 0, INT_MIN, INT_MAX, "Event Type", "", INT_MIN, INT_MAX); + RNA_def_int(ot->srna, "gesture_mode", 0, INT_MIN, INT_MAX, "Event Type", "", INT_MIN, INT_MAX); } diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index 460f9970861..47f10ce7aa8 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -2205,9 +2205,10 @@ int circle_select_exec(bContext *C, wmOperator *op) MTFace *tface; int x, y, radius, width, height, select; float zoomx, zoomy, offset[2], ellipse[2]; - + int gesture_mode= RNA_int_get(op->ptr, "gesture_mode"); + /* get operator properties */ - select= (RNA_int_get(op->ptr, "event_type") == LEFTMOUSE); // XXX hardcoded + select= (gesture_mode == GESTURE_MODAL_SELECT); x= RNA_int_get(op->ptr, "x"); y= RNA_int_get(op->ptr, "y"); radius= RNA_int_get(op->ptr, "radius"); @@ -2261,7 +2262,7 @@ void UV_OT_circle_select(wmOperatorType *ot) RNA_def_int(ot->srna, "x", 0, INT_MIN, INT_MAX, "X", "", INT_MIN, INT_MAX); RNA_def_int(ot->srna, "y", 0, INT_MIN, INT_MAX, "Y", "", INT_MIN, INT_MAX); RNA_def_int(ot->srna, "radius", 0, INT_MIN, INT_MAX, "Radius", "", INT_MIN, INT_MAX); - RNA_def_int(ot->srna, "event_type", 0, INT_MIN, INT_MAX, "Event Type", "", INT_MIN, INT_MAX); + RNA_def_int(ot->srna, "gesture_mode", 0, INT_MIN, INT_MAX, "Gesture Mode", "", INT_MIN, INT_MAX); } /* ******************** snap cursor operator **************** */ diff --git a/source/blender/windowmanager/intern/wm_gesture.c b/source/blender/windowmanager/intern/wm_gesture.c index 05471329f32..882da1794c6 100644 --- a/source/blender/windowmanager/intern/wm_gesture.c +++ b/source/blender/windowmanager/intern/wm_gesture.c @@ -76,9 +76,13 @@ wmGesture *WM_gesture_new(bContext *C, wmEvent *event, int type) gesture->customdata= rect; rect->xmin= event->x - sx; rect->ymin= event->y - sy; - if(type==WM_GESTURE_CIRCLE) + if(type==WM_GESTURE_CIRCLE) { +#ifdef GESTURE_MEMORY + rect->xmax= circle_select_size; +#else rect->xmax= 25; // XXX temp - else { +#endif + } else { rect->xmax= event->x - sx; rect->ymax= event->y - sy; } diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index b75292ce974..0c6897ed8e0 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -81,6 +81,7 @@ #include "wm.h" #include "wm_draw.h" #include "wm_event_system.h" +#include "wm_event_types.h" #include "wm_subwindow.h" #include "wm_window.h" @@ -1635,6 +1636,10 @@ int WM_border_select_modal(bContext *C, wmOperator *op, wmEvent *event) /* **************** circle gesture *************** */ /* works now only for selection or modal paint stuff, calls exec while hold mouse, exit on release */ +#ifdef GESTURE_MEMORY +int circle_select_size= 25; // XXX - need some operator memory thing\! +#endif + int WM_gesture_circle_invoke(bContext *C, wmOperator *op, wmEvent *event) { op->customdata= WM_gesture_new(C, event, WM_GESTURE_CIRCLE); @@ -1652,6 +1657,9 @@ static void gesture_circle_apply(bContext *C, wmOperator *op) wmGesture *gesture= op->customdata; rcti *rect= gesture->customdata; + if(RNA_int_get(op->ptr, "gesture_mode")==GESTURE_MODAL_NOP) + return; + /* operator arguments and storage. */ RNA_int_set(op->ptr, "x", rect->xmin); RNA_int_set(op->ptr, "y", rect->ymin); @@ -1659,6 +1667,10 @@ static void gesture_circle_apply(bContext *C, wmOperator *op) if(op->type->exec) op->type->exec(C, op); + +#ifdef GESTURE_MEMORY + circle_select_size= rect->xmax; +#endif } int WM_gesture_circle_modal(bContext *C, wmOperator *op, wmEvent *event) @@ -1667,52 +1679,48 @@ int WM_gesture_circle_modal(bContext *C, wmOperator *op, wmEvent *event) rcti *rect= gesture->customdata; int sx, sy; - switch(event->type) { - case MOUSEMOVE: - - wm_subwindow_getorigin(CTX_wm_window(C), gesture->swinid, &sx, &sy); - - rect->xmin= event->x - sx; - rect->ymin= event->y - sy; - - wm_gesture_tag_redraw(C); - - if(gesture->mode) - gesture_circle_apply(C, op); + if(event->type== MOUSEMOVE) { + wm_subwindow_getorigin(CTX_wm_window(C), gesture->swinid, &sx, &sy); - break; - case WHEELDOWNMOUSE: - case PADMINUS: - case MINUSKEY: + rect->xmin= event->x - sx; + rect->ymin= event->y - sy; + + wm_gesture_tag_redraw(C); + + if(gesture->mode) + gesture_circle_apply(C, op); + } + else if (event->type==EVT_MODAL_MAP) { + switch (event->val) { + case GESTURE_MODAL_ADD: rect->xmax += 2 + rect->xmax/10; wm_gesture_tag_redraw(C); break; - case WHEELUPMOUSE: - case PADPLUSKEY: - case EQUALKEY: + case GESTURE_MODAL_SUB: rect->xmax -= 2 + rect->xmax/10; if(rect->xmax < 1) rect->xmax= 1; wm_gesture_tag_redraw(C); break; - case LEFTMOUSE: -// case MIDDLEMOUSE: /* ??? - somehow mouse wheel are interpreted as middle mouse release events - campbell */ - case RIGHTMOUSE: - if(event->val==KM_RELEASE) { /* key release */ - wm_gesture_end(C, op); - return OPERATOR_FINISHED; - } else { - if( RNA_struct_find_property(op->ptr, "event_type") ) - RNA_int_set(op->ptr, "event_type", event->type); - + case GESTURE_MODAL_SELECT: + case GESTURE_MODAL_DESELECT: + case GESTURE_MODAL_NOP: + if(RNA_struct_find_property(op->ptr, "gesture_mode")) + RNA_int_set(op->ptr, "gesture_mode", event->val); + + if(event->val != GESTURE_MODAL_NOP) { /* apply first click */ gesture_circle_apply(C, op); gesture->mode= 1; } break; - case ESCKEY: + + case GESTURE_MODAL_CANCEL: + case GESTURE_MODAL_CONFIRM: wm_gesture_end(C, op); return OPERATOR_CANCELLED; + } } + return OPERATOR_RUNNING_MODAL; } @@ -2359,6 +2367,53 @@ void wm_operatortype_init(void) } +/* called in transform_ops.c, on each regeneration of keymaps */ +static void gesture_circle_modal_keymap(wmKeyConfig *keyconf) +{ + static EnumPropertyItem modal_items[] = { + {GESTURE_MODAL_CANCEL, "CANCEL", 0, "Cancel", ""}, + {GESTURE_MODAL_CONFIRM, "CONFIRM", 0, "Confirm", ""}, + {GESTURE_MODAL_ADD, "ADD", 0, "Add", ""}, + {GESTURE_MODAL_SUB, "SUBTRACT", 0, "Subtract", ""}, + + {GESTURE_MODAL_SELECT, "SELECT", 0, "Select", ""}, + {GESTURE_MODAL_DESELECT,"DESELECT", 0, "DeSelect", ""}, + {GESTURE_MODAL_NOP,"NOP", 0, "No Operation", ""}, + + + {0, NULL, 0, NULL, NULL}}; + + wmKeyMap *keymap= WM_modalkeymap_get(keyconf, "View3D Gesture Circle"); + + /* this function is called for each spacetype, only needs to add map once */ + if(keymap) return; + + keymap= WM_modalkeymap_add(keyconf, "View3D Gesture Circle", modal_items); + + /* items for modal map */ + WM_modalkeymap_add_item(keymap, ESCKEY, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_CANCEL); + WM_modalkeymap_add_item(keymap, RIGHTMOUSE, KM_ANY, KM_ANY, 0, GESTURE_MODAL_CANCEL); + + WM_modalkeymap_add_item(keymap, RETKEY, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_CONFIRM); + WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_CONFIRM); + + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_SELECT); + WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_DESELECT); + + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, KM_ANY, 0, GESTURE_MODAL_NOP); + WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_RELEASE, KM_ANY, 0, GESTURE_MODAL_NOP); + + WM_modalkeymap_add_item(keymap, PADPLUSKEY, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); + WM_modalkeymap_add_item(keymap, PADMINUS, KM_PRESS, 0, 0, GESTURE_MODAL_SUB); + WM_modalkeymap_add_item(keymap, WHEELUPMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); + WM_modalkeymap_add_item(keymap, WHEELDOWNMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_SUB); + + /* assign map to operators */ + WM_modalkeymap_assign(keymap, "VIEW3D_OT_select_circle"); + WM_modalkeymap_assign(keymap, "UV_OT_circle_select"); + +} + /* default keymap for windows and screens, only call once per WM */ void wm_window_keymap(wmKeyConfig *keyconf) { @@ -2447,6 +2502,8 @@ void wm_window_keymap(wmKeyConfig *keyconf) km = WM_keymap_add_item(keymap, "WM_OT_context_set_enum", F12KEY, KM_PRESS, KM_SHIFT, 0); RNA_string_set(km->ptr, "path", "area.type"); RNA_string_set(km->ptr, "value", "DOPESHEET_EDITOR"); + + gesture_circle_modal_keymap(keyconf); } /* Generic itemf's for operators that take library args */ diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h index 609b6142640..c476b7efa1e 100644 --- a/source/blender/windowmanager/wm.h +++ b/source/blender/windowmanager/wm.h @@ -76,5 +76,12 @@ void wm_autosave_delete(void); void wm_autosave_read(bContext *C, struct ReportList *reports); void wm_autosave_location(char *filename); +/* hack to store circle select size - campbell, must replace with nice operator memory */ +#define GESTURE_MEMORY + +#ifdef GESTURE_MEMORY +extern int circle_select_size; +#endif + #endif /* WM_H */ diff --git a/source/blender/windowmanager/wm_event_types.h b/source/blender/windowmanager/wm_event_types.h index c7588795a15..a07f9f26725 100644 --- a/source/blender/windowmanager/wm_event_types.h +++ b/source/blender/windowmanager/wm_event_types.h @@ -261,7 +261,15 @@ #define EVT_BUT_OPEN 0x5021 #define EVT_MODAL_MAP 0x5022 +/* NOTE: these defines are saved in keymap files, do not change values but just add new ones */ +#define GESTURE_MODAL_CANCEL 1 +#define GESTURE_MODAL_CONFIRM 2 +#define GESTURE_MODAL_ADD 3 +#define GESTURE_MODAL_SUB 4 +#define GESTURE_MODAL_SELECT 5 +#define GESTURE_MODAL_DESELECT 6 +#define GESTURE_MODAL_NOP 7 #endif /* WM_EVENT_TYPES_H */ From bdfa652605b0932755a35fa8af02ccd049596847 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 17:43:23 +0000 Subject: [PATCH 396/412] adding group instances didnt do an undo push --- source/blender/editors/object/object_add.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index 016bc172410..5378ee47f89 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -715,7 +715,7 @@ void OBJECT_OT_group_instance_add(wmOperatorType *ot) ot->poll= ED_operator_scene_editable; /* flags */ - ot->flag= 0; + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* properties */ prop= RNA_def_enum(ot->srna, "type", DummyRNA_NULL_items, 0, "Type", ""); From 1e40adddc7c15aa008670fcf387cda56fdef8479 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 18:05:55 +0000 Subject: [PATCH 397/412] 2.5 Modifiers: mesh deform, boolean and decimation work again. --- intern/bsp/SConscript | 2 +- intern/decimation/SConscript | 2 +- source/blender/blenkernel/intern/booleanops.c | 4 +-- source/blender/blenkernel/intern/modifier.c | 32 ++++--------------- .../blender/editors/armature/meshlaplacian.c | 6 ++-- .../blender/editors/armature/meshlaplacian.h | 2 +- source/blender/editors/include/ED_armature.h | 5 +++ .../blender/editors/object/object_modifier.c | 5 +-- source/blender/makesdna/DNA_modifier_types.h | 7 ++-- source/blender/makesrna/intern/rna_modifier.c | 22 ++++++------- source/creator/CMakeLists.txt | 1 + 11 files changed, 40 insertions(+), 48 deletions(-) diff --git a/intern/bsp/SConscript b/intern/bsp/SConscript index 2ecc280f135..6ee888efc8d 100644 --- a/intern/bsp/SConscript +++ b/intern/bsp/SConscript @@ -8,5 +8,5 @@ incs = 'intern ../container ../moto/include ../memutil' if (env['OURPLATFORM'] == 'win32-mingw'): env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 ) else: - env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=20 ) + env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 ) diff --git a/intern/decimation/SConscript b/intern/decimation/SConscript index ef95a795928..2dd86c44cf1 100644 --- a/intern/decimation/SConscript +++ b/intern/decimation/SConscript @@ -5,4 +5,4 @@ sources = env.Glob('intern/*.cpp') incs = '. ../moto/include ../container ../memutil' -env.BlenderLib ('bf_decimation', sources, Split(incs) , [], libtype=['core'], priority = [10] ) +env.BlenderLib ('bf_decimation', sources, Split(incs) , [], libtype=['core'], priority = [200] ) diff --git a/source/blender/blenkernel/intern/booleanops.c b/source/blender/blenkernel/intern/booleanops.c index 5f0697f06ce..1f6457199fb 100644 --- a/source/blender/blenkernel/intern/booleanops.c +++ b/source/blender/blenkernel/intern/booleanops.c @@ -526,8 +526,8 @@ DerivedMesh *NewBooleanDerivedMesh_intern( CSG_FreeVertexDescriptor(&vd_o); CSG_FreeFaceDescriptor(&fd_o); } -// else -// XXX error("Unknown internal error in boolean"); + else + printf("Unknown internal error in boolean"); CSG_FreeBooleanOperation(bool_op); diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c index 3c52dc0af84..1f4f69bd376 100644 --- a/source/blender/blenkernel/intern/modifier.c +++ b/source/blender/blenkernel/intern/modifier.c @@ -82,7 +82,7 @@ #include "BKE_anim.h" #include "BKE_action.h" #include "BKE_bmesh.h" -// XXX #include "BKE_booleanops.h" +#include "BKE_booleanops.h" #include "BKE_cloth.h" #include "BKE_collision.h" #include "BKE_cdderivedmesh.h" @@ -113,18 +113,12 @@ #include "BKE_shrinkwrap.h" #include "BKE_simple_deform.h" -//XXX #include "LOD_DependKludge.h" #include "LOD_decimation.h" -// XXX -static struct DerivedMesh *NewBooleanDerivedMesh() {return NULL;} - #include "CCGSubSurf.h" #include "RE_shader_ext.h" -//XXX #include "BIF_meshlaplacian.h" - /* Utility */ static int is_last_displist(Object *ob) @@ -4138,11 +4132,11 @@ static DerivedMesh *decimateModifier_applyModifier( ModifierData *md, Object *ob, DerivedMesh *derivedData, int useRenderParams, int isFinalCalc) { - // DecimateModifierData *dmd = (DecimateModifierData*) md; + DecimateModifierData *dmd = (DecimateModifierData*) md; DerivedMesh *dm = derivedData, *result = NULL; MVert *mvert; MFace *mface; - // LOD_Decimation_Info lod; + LOD_Decimation_Info lod; int totvert, totface; int a, numTris; @@ -4164,8 +4158,6 @@ static DerivedMesh *decimateModifier_applyModifier( goto exit; } - // XXX -#if 0 lod.vertex_buffer= MEM_mallocN(3*sizeof(float)*totvert, "vertices"); lod.vertex_normal_buffer= MEM_mallocN(3*sizeof(float)*totvert, "normals"); lod.triangle_index_buffer= MEM_mallocN(3*sizeof(int)*numTris, "trias"); @@ -4250,10 +4242,6 @@ static DerivedMesh *decimateModifier_applyModifier( MEM_freeN(lod.vertex_buffer); MEM_freeN(lod.vertex_normal_buffer); MEM_freeN(lod.triangle_index_buffer); -#else - modifier_setError(md, "Modifier not working yet in 2.5."); - goto exit; -#endif exit: return result; @@ -6390,12 +6378,6 @@ static CustomDataMask booleanModifier_requiredDataMask(Object *ob, ModifierData dataMask |= (1 << CD_MDEFORMVERT); - /* particles only need this if they are after a non deform modifier, and - * the modifier stack will only create them in that case. */ -// dataMask |= CD_MASK_ORIGSPACE; - -// dataMask |= CD_MASK_ORCO; - return dataMask; } @@ -7866,17 +7848,17 @@ static void meshdeformModifier_do( float (*vertexCos)[3], int numVerts) { MeshDeformModifierData *mmd = (MeshDeformModifierData*) md; - Mesh *me= ob->data; + Mesh *me= (mmd->object)? mmd->object->data: NULL; + EditMesh *em = (me)? BKE_mesh_get_editmesh(me): NULL; DerivedMesh *tmpdm, *cagedm; MDeformVert *dvert = NULL; MDeformWeight *dw; - EditMesh *em = BKE_mesh_get_editmesh(me); MVert *cagemvert; float imat[4][4], cagemat[4][4], iobmat[4][4], icagemat[3][3], cmat[4][4]; float weight, totweight, fac, co[3], *weights, (*dco)[3], (*bindcos)[3]; int a, b, totvert, totcagevert, defgrp_index; - if(!mmd->object || (!mmd->bindcos && !mmd->needbind)) + if(!mmd->object || (!mmd->bindcos && !mmd->bindfunc)) return; /* get cage derivedmesh */ @@ -7914,7 +7896,7 @@ static void meshdeformModifier_do( /* progress bar redraw can make this recursive .. */ if(!recursive) { recursive = 1; - //XXX harmonic_coordinates_bind(mmd, vertexCos, numVerts, cagemat); + mmd->bindfunc(md->scene, mmd, (float*)vertexCos, numVerts, cagemat); recursive = 0; } } diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c index 82843a49851..9847bdc3283 100644 --- a/source/blender/editors/armature/meshlaplacian.c +++ b/source/blender/editors/armature/meshlaplacian.c @@ -69,7 +69,7 @@ static void waitcursor(int val) {} static void progress_bar() {} static void start_progress_bar() {} static void end_progress_bar() {} -static void error() {} +static void error(char *str) { printf("error: %s\n", str); } /* ************* XXX *************** */ @@ -1698,7 +1698,7 @@ static void meshdeform_matrix_solve(MeshDeformBind *mdb) nlDeleteContext(context); } -void harmonic_coordinates_bind(Scene *scene, MeshDeformModifierData *mmd, float (*vertexcos)[3], int totvert, float cagemat[][4]) +void harmonic_coordinates_bind(Scene *scene, MeshDeformModifierData *mmd, float *vertexcos, int totvert, float cagemat[][4]) { MeshDeformBind mdb; MDefBindInfluence *inf; @@ -1714,7 +1714,7 @@ void harmonic_coordinates_bind(Scene *scene, MeshDeformModifierData *mmd, float memset(&mdb, 0, sizeof(MeshDeformBind)); /* get mesh and cage mesh */ - mdb.vertexcos= vertexcos; + mdb.vertexcos= (float(*)[3])vertexcos; mdb.totvert= totvert; mdb.cagedm= mesh_create_derived_no_deform(scene, mmd->object, NULL, CD_MASK_BAREMESH); diff --git a/source/blender/editors/armature/meshlaplacian.h b/source/blender/editors/armature/meshlaplacian.h index 00c0aefaec7..1ee01561cd4 100644 --- a/source/blender/editors/armature/meshlaplacian.h +++ b/source/blender/editors/armature/meshlaplacian.h @@ -79,7 +79,7 @@ void rigid_deform_end(int cancel); /* Harmonic Coordinates */ void harmonic_coordinates_bind(struct Scene *scene, struct MeshDeformModifierData *mmd, - float (*vertexcos)[3], int totvert, float cagemat[][4]); + float *vertexcos, int totvert, float cagemat[][4]); #endif diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h index 4898f70201e..5cc35d4ad77 100644 --- a/source/blender/editors/include/ED_armature.h +++ b/source/blender/editors/include/ED_armature.h @@ -42,6 +42,7 @@ struct ViewContext; struct RegionView3D; struct SK_Sketch; struct IDProperty; +struct MeshDeformModifierData; typedef struct EditBone { @@ -162,6 +163,10 @@ char * BIF_nameBoneTemplate(const struct bContext *C); void BDR_drawSketch(const struct bContext *vc); int BDR_drawSketchNames(struct ViewContext *vc); +/* meshlaplacian.c */ +void harmonic_coordinates_bind(struct Scene *scene, struct MeshDeformModifierData *mmd, + float *vertexcos, int totvert, float cagemat[][4]); + #endif /* ED_ARMATURE_H */ diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c index 1b0dc95480a..0683cb6842f 100644 --- a/source/blender/editors/object/object_modifier.c +++ b/source/blender/editors/object/object_modifier.c @@ -65,6 +65,7 @@ #include "RNA_define.h" #include "RNA_enum_types.h" +#include "ED_armature.h" #include "ED_screen.h" #include "WM_api.h" @@ -779,7 +780,7 @@ static int meshdeform_bind_exec(bContext *C, wmOperator *op) int mode= mmd->modifier.mode; /* force modifier to run, it will call binding routine */ - mmd->needbind= 1; + mmd->bindfunc= harmonic_coordinates_bind; mmd->modifier.mode |= eModifierMode_Realtime; if(ob->type == OB_MESH) { @@ -796,7 +797,7 @@ static int meshdeform_bind_exec(bContext *C, wmOperator *op) makeDispListCurveTypes(scene, ob, 0); } - mmd->needbind= 0; + mmd->bindfunc= NULL; mmd->modifier.mode= mode; } diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index db1c261556b..fe6a5b050e3 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -508,8 +508,7 @@ typedef struct MeshDeformModifierData { struct Object *object; /* mesh object */ char defgrp_name[32]; /* optional vertexgroup name */ - short gridsize, needbind; - short flag, pad; + short gridsize, flag, pad[2]; /* variables filled in when bound */ float *bindweights, *bindcos; /* computed binding weights */ @@ -522,6 +521,10 @@ typedef struct MeshDeformModifierData { float dyncellmin[3]; /* offset of the dynamic bind grid */ float dyncellwidth; /* width of dynamic bind cell */ float bindmat[4][4]; /* matrix of cage at binding time */ + + /* runtime */ + void (*bindfunc)(struct Scene *scene, struct MeshDeformModifierData *mmd, + float *vertexcos, int totvert, float cagemat[][4]); } MeshDeformModifierData; typedef enum { diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index f2648503003..93972894ef1 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -795,7 +795,7 @@ static void rna_def_modifier_wave(BlenderRNA *brna) prop= RNA_def_property(srna, "start_position_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "objectcenter"); RNA_def_property_ui_text(prop, "Start Position Object", ""); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -824,7 +824,7 @@ static void rna_def_modifier_wave(BlenderRNA *brna) prop= RNA_def_property(srna, "texture_coordinates_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "map_object"); RNA_def_property_ui_text(prop, "Texture Coordinates Object", ""); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "speed", PROP_FLOAT, PROP_NONE); @@ -1196,7 +1196,7 @@ static void rna_def_modifier_displace(BlenderRNA *brna) prop= RNA_def_property(srna, "texture_coordinate_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "map_object"); RNA_def_property_ui_text(prop, "Texture Coordinate Object", ""); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); } @@ -1257,7 +1257,7 @@ static void rna_def_modifier_uvproject(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_struct_type(prop, "Object"); RNA_def_property_pointer_funcs(prop, "rna_UVProjector_object_get", "rna_UVProjector_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_ui_text(prop, "Object", "Object to use as projector transform."); } @@ -1330,7 +1330,7 @@ static void rna_def_modifier_cast(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Control object: if available, its location determines the center of the effect"); RNA_def_property_pointer_funcs(prop, NULL, "rna_CastModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "x", PROP_BOOLEAN, PROP_NONE); @@ -1397,7 +1397,7 @@ static void rna_def_modifier_meshdeform(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Object", "Mesh object to deform with."); RNA_def_property_pointer_funcs(prop, NULL, "rna_MeshDeformModifier_object_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "is_bound", PROP_BOOLEAN, PROP_NONE); @@ -1459,7 +1459,7 @@ static void rna_def_modifier_particleinstance(BlenderRNA *brna) prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "ob"); RNA_def_property_ui_text(prop, "Object", "Object that has the particle system."); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "particle_system_number", PROP_INT, PROP_NONE); @@ -1723,14 +1723,14 @@ static void rna_def_modifier_shrinkwrap(BlenderRNA *brna) prop= RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Target", "Mesh target to shrink to."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ShrinkwrapModifier_target_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "auxiliary_target", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "auxTarget"); RNA_def_property_ui_text(prop, "Auxiliary Target", "Additional mesh target to shrink to."); RNA_def_property_pointer_funcs(prop, NULL, "rna_ShrinkwrapModifier_auxiliary_target_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -1834,7 +1834,7 @@ static void rna_def_modifier_mask(BlenderRNA *brna) RNA_def_property_pointer_sdna(prop, NULL, "ob_arm"); RNA_def_property_ui_text(prop, "Armature", "Armature to use as source of bones to mask."); RNA_def_property_pointer_funcs(prop, NULL, "rna_MaskModifier_armature_set", NULL); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -1879,7 +1879,7 @@ static void rna_def_modifier_simpledeform(BlenderRNA *brna) prop= RNA_def_property(srna, "origin", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Origin", "Origin of modifier space coordinates."); - RNA_def_property_flag(prop, PROP_EDITABLE); + RNA_def_property_flag(prop, PROP_EDITABLE|PROP_ID_SELF_CHECK); RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update"); prop= RNA_def_property(srna, "relative", PROP_BOOLEAN, PROP_NONE); diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 61c0fe187fd..a11e83c9312 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -380,6 +380,7 @@ IF(UNIX) bf_dds bf_readblenfile bf_collada + blender_BSP blender_bop bf_kernel bf_decimation From 1196947a987ae67a61aa1cdd7f27b00b4a6e0877 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 18:17:18 +0000 Subject: [PATCH 398/412] Fix makefiles for modifiers commit. --- source/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Makefile b/source/Makefile index 4347c79bc79..783b51b81de 100644 --- a/source/Makefile +++ b/source/Makefile @@ -78,8 +78,6 @@ endif GRPLIB = $(OCGDIR)/creator/$(DEBUG_DIR)libcreator.a GRPLIB += $(OCGDIR)/blender/windowmanager/$(DEBUG_DIR)libwindowmanager.a -GRPLIB += $(NAN_BSP)/lib/$(DEBUG_DIR)libbsp.a -GRPLIB += $(NAN_BOOLOP)/lib/$(DEBUG_DIR)libboolop.a GRPLIB += $(NAN_GHOST)/lib/$(DEBUG_DIR)libghost.a GRPLIB += $(NAN_STRING)/lib/$(DEBUG_DIR)libstring.a GRPLIB += $(OCGDIR)/blender/render/$(DEBUG_DIR)librender.a @@ -118,6 +116,9 @@ COMLIB += $(NAN_AUDASPACE)/lib/$(DEBUG_DIR)libaud_sdl.a COMLIB += $(NAN_SAMPLERATE)/lib/$(DEBUG_DIR)libsamplerate.a COMLIB += $(NAN_LZO)/lib/$(DEBUG_DIR)libminilzo.a COMLIB += $(NAN_LZMA)/lib/$(DEBUG_DIR)liblzma.a +COMLIB += $(NAN_BSP)/lib/$(DEBUG_DIR)libbsp.a +COMLIB += $(NAN_BOOLOP)/lib/$(DEBUG_DIR)libboolop.a +COMLIB += $(NAN_DECIMATION)/lib/$(DEBUG_DIR)libdecimation.a ifeq ($(WITH_FFMPEG),true) COMLIB += $(NAN_AUDASPACE)/lib/$(DEBUG_DIR)libaud_ffmpeg.a @@ -233,7 +234,6 @@ endif # note: space_api.a in begin of editors, screen.a in end PULIB = $(NAN_MOTO)/lib/libmoto.a -PULIB += $(NAN_DECIMATION)/lib/$(DEBUG_DIR)libdecimation.a PULIB += $(OCGDIR)/blender/readblenfile/$(DEBUG_DIR)libreadblenfile.a PULIB += $(OCGDIR)/blender/ed_space/$(DEBUG_DIR)libed_space.a PULIB += $(OCGDIR)/blender/ed_sound/$(DEBUG_DIR)libed_sound.a From aec92ddc51cbcda0b706f9029838b3bb7b211f71 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 18:29:48 +0000 Subject: [PATCH 399/412] operator to select pos/neg verts on any axis relative to the active vertex - useful to select the center verts of a model without having to attempt to border select - useful for selecting one half or a model --- release/scripts/ui/space_view3d.py | 1 + source/blender/editors/mesh/editmesh_tools.c | 75 ++++++++++++++++++++ source/blender/editors/mesh/mesh_intern.h | 1 + source/blender/editors/mesh/mesh_ops.c | 1 + 4 files changed, 78 insertions(+) diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py index a8604832c0e..483031837cf 100644 --- a/release/scripts/ui/space_view3d.py +++ b/release/scripts/ui/space_view3d.py @@ -303,6 +303,7 @@ class VIEW3D_MT_select_edit_mesh(bpy.types.Menu): layout.itemO("mesh.edges_select_sharp", text="Sharp Edges") layout.itemO("mesh.faces_select_linked_flat", text="Linked Flat Faces") layout.itemO("mesh.faces_select_interior", text="Interior Faces") + layout.itemO("mesh.select_axis", text="Side of Active") layout.itemS() diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index eae6f47a122..cea7ec33d3a 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -7197,3 +7197,78 @@ void MESH_OT_faces_shade_flat(wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; } +/* TODO - some way to select on an arbitrary axis */ +static int select_axis_exec(bContext *C, wmOperator *op) +{ + Object *obedit= CTX_data_edit_object(C); + EditMesh *em= BKE_mesh_get_editmesh((Mesh *)obedit->data); + + int axis= RNA_int_get(op->ptr, "axis"); + int mode= RNA_enum_get(op->ptr, "mode"); /* -1==aligned, 0==neg, 1==pos*/ + + EditSelection *ese = em->selected.last; + + + if(ese==NULL) + return OPERATOR_CANCELLED; + + if(ese->type==EDITVERT) { + EditVert *ev; + EditVert *act_vert= (EditVert*)ese->data; + float value= act_vert->co[axis]; + float limit= CTX_data_tool_settings(C)->doublimit; // XXX + + if(mode==0) value -= limit; + else if (mode==1) value += limit; + + for(ev=em->verts.first;ev;ev=ev->next) { + if(!ev->h) { + switch(mode) { + case -1: /* aligned */ + if(fabs(ev->co[axis] - value) < limit) + ev->f |= SELECT; + break; + case 0: /* neg */ + if(ev->co[axis] > value) + ev->f |= SELECT; + break; + case 1: /* pos */ + if(ev->co[axis] < value) + ev->f |= SELECT; + break; + } + } + } + } + + EM_select_flush(em); + WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data); + + return OPERATOR_FINISHED; +} + +void MESH_OT_select_axis(wmOperatorType *ot) +{ + static EnumPropertyItem axis_mode_items[] = { + {0, "POSITIVE", 0, "Positive Axis", ""}, + {1, "NEGATIVE", 0, "Negative Axis", ""}, + {-1, "ALIGNED", 0, "Aligned Axis", ""}, + {0, NULL, 0, NULL, NULL}}; + + /* identifiers */ + ot->name= "Select Axis"; + ot->description= "Select all data in the mesh on a single axis."; + ot->idname= "MESH_OT_select_axis"; + + /* api callbacks */ + ot->exec= select_axis_exec; + ot->poll= ED_operator_editmesh; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* properties */ + RNA_def_enum(ot->srna, "mode", axis_mode_items, 0, "Axis Mode", "Axis side to use when selecting"); + RNA_def_int(ot->srna, "axis", 0, 0, 2, "Axis", "Select the axis to compare each vertex on", 0, 2); +} + diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 9ff3a3b684c..3f79b9b4370 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -217,6 +217,7 @@ void MESH_OT_edge_rotate(struct wmOperatorType *ot); void MESH_OT_select_vertex_path(struct wmOperatorType *ot); void MESH_OT_loop_to_region(struct wmOperatorType *ot); void MESH_OT_region_to_loop(struct wmOperatorType *ot); +void MESH_OT_select_axis(struct wmOperatorType *ot); void MESH_OT_uvs_rotate(struct wmOperatorType *ot); void MESH_OT_uvs_mirror(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index 1e1234d040a..9f16e7adbf8 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -109,6 +109,7 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_select_vertex_path); WM_operatortype_append(MESH_OT_loop_to_region); WM_operatortype_append(MESH_OT_region_to_loop); + WM_operatortype_append(MESH_OT_select_axis); WM_operatortype_append(MESH_OT_uvs_rotate); WM_operatortype_append(MESH_OT_uvs_mirror); From 17c323b5a4cfd4f435f313adf4aacb0963387fad Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 19:06:29 +0000 Subject: [PATCH 400/412] Fix for bug #19817: cloth simulation with collision slow on Mac. The cause of this is in the bullet library, seems like some kind of poor handling of many repeated allocations by Mac OS X, but the allocation is unnecessary, so removed it. Patch submitted to bullet: http://code.google.com/p/bullet/issues/detail?id=303 --- .../CollisionDispatch/btConvexConvexAlgorithm.cpp | 1 - .../NarrowPhaseCollision/btConvexPenetrationDepthSolver.h | 2 +- .../btDiscreteCollisionDetectorInterface.h | 4 +--- .../NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp | 2 +- .../NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h | 2 +- .../NarrowPhaseCollision/btGjkPairDetector.cpp | 2 +- .../btMinkowskiPenetrationDepthSolver.cpp | 3 +-- .../NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h | 2 +- extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp | 4 ---- 9 files changed, 7 insertions(+), 15 deletions(-) diff --git a/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp b/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp index 274c5f5bdc6..496fd996f8c 100644 --- a/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp +++ b/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp @@ -202,7 +202,6 @@ void btConvexConvexAlgorithm ::processCollision (btCollisionObject* body0,btColl input.m_maximumDistanceSquared*= input.m_maximumDistanceSquared; } - input.m_stackAlloc = dispatchInfo.m_stackAllocator; input.m_transformA = body0->getWorldTransform(); input.m_transformB = body1->getWorldTransform(); diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h index 412aace2114..2989daeb44e 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h @@ -33,7 +33,7 @@ public: const btConvexShape* convexA,const btConvexShape* convexB, const btTransform& transA,const btTransform& transB, btVector3& v, btVector3& pa, btVector3& pb, - class btIDebugDraw* debugDraw,btStackAlloc* stackAlloc + class btIDebugDraw* debugDraw ) = 0; diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h index db797d5141f..b011bb9ae58 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h @@ -41,15 +41,13 @@ struct btDiscreteCollisionDetectorInterface struct ClosestPointInput { ClosestPointInput() - :m_maximumDistanceSquared(btScalar(1e30)), - m_stackAlloc(0) + :m_maximumDistanceSquared(btScalar(1e30)) { } btTransform m_transformA; btTransform m_transformB; btScalar m_maximumDistanceSquared; - btStackAlloc* m_stackAlloc; }; virtual ~btDiscreteCollisionDetectorInterface() {}; diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp index 05573c7cfce..55c23ee8549 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp @@ -25,7 +25,7 @@ bool btGjkEpaPenetrationDepthSolver::calcPenDepth( btSimplexSolverInterface& sim const btConvexShape* pConvexA, const btConvexShape* pConvexB, const btTransform& transformA, const btTransform& transformB, btVector3& v, btVector3& wWitnessOnA, btVector3& wWitnessOnB, - class btIDebugDraw* debugDraw, btStackAlloc* stackAlloc ) + class btIDebugDraw* debugDraw ) { (void)debugDraw; diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h index 68dbc566518..4db18628021 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h @@ -29,7 +29,7 @@ class btGjkEpaPenetrationDepthSolver : public btConvexPenetrationDepthSolver const btConvexShape* pConvexA, const btConvexShape* pConvexB, const btTransform& transformA, const btTransform& transformB, btVector3& v, btVector3& wWitnessOnA, btVector3& wWitnessOnB, - class btIDebugDraw* debugDraw,btStackAlloc* stackAlloc ); + class btIDebugDraw* debugDraw ); private : diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp index 0856332d1ca..331d25623df 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp @@ -293,7 +293,7 @@ void btGjkPairDetector::getClosestPoints(const ClosestPointInput& input,Result& m_minkowskiA,m_minkowskiB, localTransA,localTransB, m_cachedSeparatingAxis, tmpPointOnA, tmpPointOnB, - debugDraw,input.m_stackAlloc + debugDraw ); if (isValid2) diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp index 581b4258f03..1fdbb2457d1 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp @@ -71,11 +71,10 @@ bool btMinkowskiPenetrationDepthSolver::calcPenDepth(btSimplexSolverInterface& s const btConvexShape* convexA,const btConvexShape* convexB, const btTransform& transA,const btTransform& transB, btVector3& v, btVector3& pa, btVector3& pb, - class btIDebugDraw* debugDraw,btStackAlloc* stackAlloc + class btIDebugDraw* debugDraw ) { - (void)stackAlloc; (void)v; diff --git a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h index 23cbd57ac7e..e93e4e4bb4e 100644 --- a/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h +++ b/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h @@ -28,7 +28,7 @@ public: const btConvexShape* convexA,const btConvexShape* convexB, const btTransform& transA,const btTransform& transB, btVector3& v, btVector3& pa, btVector3& pb, - class btIDebugDraw* debugDraw,btStackAlloc* stackAlloc + class btIDebugDraw* debugDraw ); }; diff --git a/extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp b/extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp index 47addbac45b..20d6975832b 100644 --- a/extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp +++ b/extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp @@ -365,10 +365,6 @@ double plNearestPoints(float p1[3], float p2[3], float p3[3], float q1[3], float btPointCollector gjkOutput; btGjkPairDetector::ClosestPointInput input; - btStackAlloc gStackAlloc(1024*1024*2); - - input.m_stackAlloc = &gStackAlloc; - btTransform tr; tr.setIdentity(); From 44db0b0e274e141f8083fb9689d7f17a9c975041 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Nov 2009 19:31:38 +0000 Subject: [PATCH 401/412] view docs was broken for operators - was getting the nested class string. --- release/scripts/op/wm.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py index ebbcc82bb77..e65002ee0c0 100644 --- a/release/scripts/op/wm.py +++ b/release/scripts/op/wm.py @@ -277,13 +277,12 @@ class WM_OT_doc_view(bpy.types.Operator): elif len(id_split) == 2: # rna, class.prop class_name, class_prop = id_split - # It so happens that epydoc nests these - class_name_full = self._nested_class_string(class_name) - if hasattr(bpy.types, class_name.upper() + '_OT_' + class_prop): url = '%s/bpy.ops.%s-module.html#%s' % \ - (self._prefix, class_name_full, class_prop) + (self._prefix, class_name, class_prop) else: + # It so happens that epydoc nests these + class_name_full = self._nested_class_string(class_name) url = '%s/bpy.types.%s-class.html#%s' % \ (self._prefix, class_name_full, class_prop) @@ -349,7 +348,7 @@ class WM_OT_doc_edit(bpy.types.Operator): return ('RUNNING_MODAL',) print("rna - old:'%s' -> new:'%s'" % (doc_orig, self.doc_new)) - upload["title"] = 'RNA %s:%s' % s(self.doc_id, doc_orig) + upload["title"] = 'RNA %s:%s' % (self.doc_id, doc_orig) upload["description"] = self.doc_new From c0bfa4e46210520722de42cbc0f9cf6699793819 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 19:32:10 +0000 Subject: [PATCH 402/412] Fix for bug #19692: setting text on curve, bevel or taper object did not update dependency graph causing missing updates. --- source/blender/makesrna/intern/rna_curve.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c index 995be6d5023..2ebf47bac99 100644 --- a/source/blender/makesrna/intern/rna_curve.c +++ b/source/blender/makesrna/intern/rna_curve.c @@ -221,6 +221,12 @@ static void rna_Curve_update_data(bContext *C, PointerRNA *ptr) WM_event_add_notifier(C, NC_GEOM|ND_DATA, id); } +static void rna_Curve_update_deps(bContext *C, PointerRNA *ptr) +{ + DAG_scene_sort(CTX_data_scene(C)); + rna_Curve_update_data(C, ptr); +} + static void rna_Nurb_update_handle_data(bContext *C, PointerRNA *ptr) { Nurb *nu= (Nurb*)ptr->data; @@ -552,7 +558,7 @@ static void rna_def_font(BlenderRNA *brna, StructRNA *srna) RNA_def_property_pointer_sdna(prop, NULL, "textoncurve"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Text on Curve", "Curve deforming text object."); - RNA_def_property_update(prop, 0, "rna_Curve_update_data"); + RNA_def_property_update(prop, 0, "rna_Curve_update_deps"); prop= RNA_def_property(srna, "font", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "vfont"); @@ -776,13 +782,13 @@ static void rna_def_curve(BlenderRNA *brna) RNA_def_property_pointer_sdna(prop, NULL, "bevobj"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Bevel Object", "Curve object name that defines the bevel shape."); - RNA_def_property_update(prop, 0, "rna_Curve_update_data"); + RNA_def_property_update(prop, 0, "rna_Curve_update_deps"); prop= RNA_def_property(srna, "taper_object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "taperobj"); RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Taper Object", "Curve object name that defines the taper (width)."); - RNA_def_property_update(prop, 0, "rna_Curve_update_data"); + RNA_def_property_update(prop, 0, "rna_Curve_update_deps"); /* Flags */ From 43d916c08a92121b70b1d50be2b609cd1be9542b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 20:32:46 +0000 Subject: [PATCH 403/412] Fix bug #19754: alt + scrollwheel to change button values was not working in popup menus, silly workaround now until this uses modal keymaps. --- source/blender/editors/interface/interface_handlers.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 5cdf3b9dcc8..f085e7054a3 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -4578,7 +4578,8 @@ int ui_handle_menu_event(bContext *C, wmEvent *event, uiPopupBlockHandle *menu, case WHEELUPMOUSE: case WHEELDOWNMOUSE: /* arrowkeys: only handle for block_loop blocks */ - if(inside || (block->flag & UI_BLOCK_LOOP)) { + if(event->alt || event->shift || event->ctrl || event->oskey); + else if(inside || (block->flag & UI_BLOCK_LOOP)) { if(event->val==KM_PRESS) { but= ui_but_find_activated(ar); if(but) { @@ -4601,9 +4602,10 @@ int ui_handle_menu_event(bContext *C, wmEvent *event, uiPopupBlockHandle *menu, ui_handle_button_activate(C, ar, bt, BUTTON_ACTIVATE); } } + + retval= WM_UI_HANDLER_BREAK; } - retval= WM_UI_HANDLER_BREAK; break; case ONEKEY: case PAD1: @@ -4650,9 +4652,10 @@ int ui_handle_menu_event(bContext *C, wmEvent *event, uiPopupBlockHandle *menu, break; } } + + retval= WM_UI_HANDLER_BREAK; } - retval= WM_UI_HANDLER_BREAK; break; } } From bb0f4310aa02564e6677fad317c1aba6be17175b Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Thu, 5 Nov 2009 20:35:36 +0000 Subject: [PATCH 404/412] Simple one liner.... Added options to add Flip normals to toolbar. (iCer on irc is responsible) Kent --- release/scripts/ui/space_view3d_toolbar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 12a9417e319..53dbef20020 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -101,6 +101,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.itemO("mesh.screw") col.itemO("mesh.merge") col.itemO("mesh.rip_move") + col.itemO("mesh.flip_normals") col = layout.column(align=True) col.itemL(text="Shading:") From 6771a0cb6d27d25cd7e4791e62e81577bbf35664 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 5 Nov 2009 20:51:36 +0000 Subject: [PATCH 405/412] Fix #19763: crash with tooltip open & maximizing area to fullscreen. --- source/blender/editors/screen/screen_edit.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/blender/editors/screen/screen_edit.c b/source/blender/editors/screen/screen_edit.c index eb8fa66670c..acf5bcd739e 100644 --- a/source/blender/editors/screen/screen_edit.c +++ b/source/blender/editors/screen/screen_edit.c @@ -54,6 +54,8 @@ #include "ED_screen.h" #include "ED_screen_types.h" +#include "UI_interface.h" + /* XXX actually should be not here... solve later */ #include "wm_subwindow.h" @@ -1416,6 +1418,15 @@ void ED_screen_delete_scene(bContext *C, Scene *scene) ScrArea *ed_screen_fullarea(bContext *C, wmWindow *win, ScrArea *sa) { bScreen *sc, *oldscreen; + ARegion *ar; + + if(sa) { + /* ensure we don't have a button active anymore, can crash when + switching screens with tooltip open because region and tooltip + are no longer in the same screen */ + for(ar=sa->regionbase.first; ar; ar=ar->next) + uiFreeBlocks(C, &ar->uiblocks); + } if(sa && sa->full) { short fulltype; From d315af74f0539836d512087bffd57fbc9bcc0c74 Mon Sep 17 00:00:00 2001 From: Benoit Bolsee Date: Thu, 5 Nov 2009 21:34:47 +0000 Subject: [PATCH 406/412] Update MSVC project files for openCollada. --- projectfiles_vc9/blender/blender.vcproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projectfiles_vc9/blender/blender.vcproj b/projectfiles_vc9/blender/blender.vcproj index 538afaf950c..a5203aa8edb 100644 --- a/projectfiles_vc9/blender/blender.vcproj +++ b/projectfiles_vc9/blender/blender.vcproj @@ -74,7 +74,7 @@ Date: Fri, 6 Nov 2009 08:32:50 +0000 Subject: [PATCH 407/412] Fix for scons + mingw compiling Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory. --- intern/bsp/SConscript | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/intern/bsp/SConscript b/intern/bsp/SConscript index 6ee888efc8d..ff5a213d7b8 100644 --- a/intern/bsp/SConscript +++ b/intern/bsp/SConscript @@ -5,8 +5,5 @@ sources = env.Glob('intern/*.cpp') incs = 'intern ../container ../moto/include ../memutil' -if (env['OURPLATFORM'] == 'win32-mingw'): - env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 ) -else: - env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 ) +env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 ) From cc2476fde5f2ae4a3df625780b056580c7836712 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2009 08:53:07 +0000 Subject: [PATCH 408/412] patch from Stani, support for function arguments in autocomplete --- .../scripts/modules/console/intellisense.py | 30 +++++++++++++++---- 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/release/scripts/modules/console/intellisense.py b/release/scripts/modules/console/intellisense.py index eda34c9ff6b..686b3e7294b 100644 --- a/release/scripts/modules/console/intellisense.py +++ b/release/scripts/modules/console/intellisense.py @@ -16,10 +16,11 @@ """This module provides intellisense features such as: * autocompletion -* calltips (not yet implemented) +* calltips It unifies all completion plugins and only loads them on demand. """ + # TODO: file complete if startswith quotes import os import re @@ -63,6 +64,9 @@ def complete(line, cursor, namespace, private=True): :type private: bool :returns: list of completions, word :rtype: list, str + + >>> complete('re.sr', 5, {'re': re}) + (['re.sre_compile', 're.sre_parse'], 're.sr') """ re_unquoted_word = RE_UNQUOTED_WORD.search(line[:cursor]) if re_unquoted_word: @@ -99,14 +103,28 @@ def expand(line, cursor, namespace, private=True): current expanded line, updated cursor position and scrollback :rtype: str, int, str + + >>> expand('os.path.isdir(', 14, {'os': os})[-1] + 'isdir(s)\\nReturn true if the pathname refers to an existing directory.' + >>> expand('abs(', 4, {})[-1] + 'abs(number) -> number\\nReturn the absolute value of the argument.' """ - matches, word = complete(line, cursor, namespace, private) + if line[:cursor].strip().endswith('('): + import complete_calltip + matches, word, scrollback = complete_calltip.complete(line, + cursor, namespace) + no_calltip = False + else: + matches, word = complete(line, cursor, namespace, private) + if len(matches) == 1: + scrollback = '' + else: + scrollback = ' '.join([m.split('.')[-1] for m in matches]) + no_calltip = True prefix = os.path.commonprefix(matches)[len(word):] if prefix: line = line[:cursor] + prefix + line[cursor:] cursor += len(prefix) - if len(matches) == 1: - scrollback = '' - else: - scrollback = ' '.join([m.split('.')[-1] for m in matches]) + if no_calltip and prefix.endswith('('): + return expand(line, cursor, namespace, private) return line, cursor, scrollback From d4fe2595f7c350c90feba61ba8d520850648b06f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2009 10:38:00 +0000 Subject: [PATCH 409/412] bring back align to view to object - In 2.4x this was numpad *, however that would only align on the Z axis. - New behavior for VIEW3D_OT_viewnumpad, holding Shift with Numpad 1/3/7 sets the left/top/front etc on the normal axis. - Uses active bone, face, edge, vert, curve handel & object (just like the view manipulator with 'Normal' selected). --- .../editors/space_view3d/view3d_edit.c | 73 ++++++++++----- .../blender/editors/space_view3d/view3d_ops.c | 33 +++++++ source/blender/editors/transform/transform.h | 3 + .../editors/transform/transform_manipulator.c | 44 +-------- .../transform/transform_orientations.c | 91 ++++++++++--------- 5 files changed, 138 insertions(+), 106 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c index e76dc1aaa00..fa6267c4a5c 100644 --- a/source/blender/editors/space_view3d/view3d_edit.c +++ b/source/blender/editors/space_view3d/view3d_edit.c @@ -1498,27 +1498,56 @@ static EnumPropertyItem prop_view_items[] = { {RV3D_VIEW_CAMERA, "CAMERA", 0, "Camera", "View From the active amera"}, {0, NULL, 0, NULL, NULL}}; -static void axis_set_view(bContext *C, float q1, float q2, float q3, float q4, short view, int perspo) + +/* would like to make this a generic function - outside of transform */ +extern void getTransformOrientationMatrix(const bContext *C, float twmat[][4], int activeOnly); + +static void axis_set_view(bContext *C, float q1, float q2, float q3, float q4, short view, int perspo, int align_active) { View3D *v3d = CTX_wm_view3d(C); RegionView3D *rv3d= CTX_wm_region_view3d(C); float new_quat[4]; - if(rv3d->viewlock) { - /* only pass on if */ - if(rv3d->view==RV3D_VIEW_FRONT && view==RV3D_VIEW_BACK); - else if(rv3d->view==RV3D_VIEW_BACK && view==RV3D_VIEW_FRONT); - else if(rv3d->view==RV3D_VIEW_RIGHT && view==RV3D_VIEW_LEFT); - else if(rv3d->view==RV3D_VIEW_LEFT && view==RV3D_VIEW_RIGHT); - else if(rv3d->view==RV3D_VIEW_BOTTOM && view==RV3D_VIEW_TOP); - else if(rv3d->view==RV3D_VIEW_TOP && view==RV3D_VIEW_BOTTOM); - else return; - } - new_quat[0]= q1; new_quat[1]= q2; new_quat[2]= q3; new_quat[3]= q4; - rv3d->view= view; + if(align_active) { + /* align to active object */ + Object *obact= CTX_data_active_object(C); + if (obact==NULL) { + /* no active object, ignore this option */ + align_active= FALSE; + } + else { + float obact_quat[4]; + float twmat[4][4]; + + /* same as transform manipulator when normal is set */ + getTransformOrientationMatrix(C, twmat, TRUE); + + Mat4ToQuat(twmat, obact_quat); + QuatInv(obact_quat); + QuatMul(new_quat, new_quat, obact_quat); + + rv3d->view= view= 0; + } + } + + if(align_active==FALSE) { + /* normal operation */ + if(rv3d->viewlock) { + /* only pass on if */ + if(rv3d->view==RV3D_VIEW_FRONT && view==RV3D_VIEW_BACK); + else if(rv3d->view==RV3D_VIEW_BACK && view==RV3D_VIEW_FRONT); + else if(rv3d->view==RV3D_VIEW_RIGHT && view==RV3D_VIEW_LEFT); + else if(rv3d->view==RV3D_VIEW_LEFT && view==RV3D_VIEW_RIGHT); + else if(rv3d->view==RV3D_VIEW_BOTTOM && view==RV3D_VIEW_TOP); + else if(rv3d->view==RV3D_VIEW_TOP && view==RV3D_VIEW_BOTTOM); + else return; + } + + rv3d->view= view; + } if(rv3d->viewlock) { ED_region_tag_redraw(CTX_wm_region(C)); @@ -1548,35 +1577,36 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) RegionView3D *rv3d= CTX_wm_region_view3d(C); Scene *scene= CTX_data_scene(C); static int perspo=RV3D_PERSP; - int viewnum; + int viewnum, align_active; viewnum = RNA_enum_get(op->ptr, "type"); + align_active = RNA_boolean_get(op->ptr, "align_active"); /* Use this to test if we started out with a camera */ switch (viewnum) { case RV3D_VIEW_BOTTOM : - axis_set_view(C, 0.0, -1.0, 0.0, 0.0, viewnum, perspo); + axis_set_view(C, 0.0, -1.0, 0.0, 0.0, viewnum, perspo, align_active); break; case RV3D_VIEW_BACK: - axis_set_view(C, 0.0, 0.0, (float)-cos(M_PI/4.0), (float)-cos(M_PI/4.0), viewnum, perspo); + axis_set_view(C, 0.0, 0.0, (float)-cos(M_PI/4.0), (float)-cos(M_PI/4.0), viewnum, perspo, align_active); break; case RV3D_VIEW_LEFT: - axis_set_view(C, 0.5, -0.5, 0.5, 0.5, viewnum, perspo); + axis_set_view(C, 0.5, -0.5, 0.5, 0.5, viewnum, perspo, align_active); break; case RV3D_VIEW_TOP: - axis_set_view(C, 1.0, 0.0, 0.0, 0.0, viewnum, perspo); + axis_set_view(C, 1.0, 0.0, 0.0, 0.0, viewnum, perspo, align_active); break; case RV3D_VIEW_FRONT: - axis_set_view(C, (float)cos(M_PI/4.0), (float)-sin(M_PI/4.0), 0.0, 0.0, viewnum, perspo); + axis_set_view(C, (float)cos(M_PI/4.0), (float)-sin(M_PI/4.0), 0.0, 0.0, viewnum, perspo, align_active); break; case RV3D_VIEW_RIGHT: - axis_set_view(C, 0.5, -0.5, -0.5, -0.5, viewnum, perspo); + axis_set_view(C, 0.5, -0.5, -0.5, -0.5, viewnum, perspo, align_active); break; case RV3D_VIEW_CAMERA: @@ -1617,7 +1647,7 @@ static int viewnumpad_exec(bContext *C, wmOperator *op) else{ /* return to settings of last view */ /* does smooth_view too */ - axis_set_view(C, rv3d->lviewquat[0], rv3d->lviewquat[1], rv3d->lviewquat[2], rv3d->lviewquat[3], rv3d->lview, rv3d->lpersp); + axis_set_view(C, rv3d->lviewquat[0], rv3d->lviewquat[1], rv3d->lviewquat[2], rv3d->lviewquat[3], rv3d->lview, rv3d->lpersp, 0); } } break; @@ -1645,6 +1675,7 @@ void VIEW3D_OT_viewnumpad(wmOperatorType *ot) ot->flag= 0; RNA_def_enum(ot->srna, "type", prop_view_items, 0, "View", "The Type of view"); + RNA_def_boolean(ot->srna, "align_active", 0, "Align Active", "Align to the active objects axis"); } static EnumPropertyItem prop_view_orbit_items[] = { diff --git a/source/blender/editors/space_view3d/view3d_ops.c b/source/blender/editors/space_view3d/view3d_ops.c index 13324e61999..adda08202c0 100644 --- a/source/blender/editors/space_view3d/view3d_ops.c +++ b/source/blender/editors/space_view3d/view3d_ops.c @@ -155,6 +155,39 @@ void view3d_keymap(wmKeyConfig *keyconf) RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_pan", PAD6, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_PANRIGHT); RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_pan", PAD8, KM_PRESS, KM_CTRL, 0)->ptr, "type", V3D_VIEW_PANUP); + /* active aligned, replaces '*' key in 2.4x */ + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, KM_SHIFT, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_FRONT); + RNA_boolean_set(km->ptr, "align_active", TRUE); + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, KM_SHIFT, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_RIGHT); + RNA_boolean_set(km->ptr, "align_active", TRUE); + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, KM_SHIFT, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_TOP); + RNA_boolean_set(km->ptr, "align_active", TRUE); + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, KM_SHIFT|KM_CTRL, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_BACK); + RNA_boolean_set(km->ptr, "align_active", TRUE); + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, KM_SHIFT|KM_CTRL, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_LEFT); + RNA_boolean_set(km->ptr, "align_active", TRUE); + km= WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, KM_SHIFT|KM_CTRL, 0); + RNA_enum_set(km->ptr, "type", RV3D_VIEW_BOTTOM); + RNA_boolean_set(km->ptr, "align_active", TRUE); + + + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD2, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPDOWN); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_RIGHT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD4, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPLEFT); + WM_keymap_add_item(keymap, "VIEW3D_OT_view_persportho", PAD5, KM_PRESS, 0, 0); + + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD6, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPRIGHT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, 0, 0)->ptr, "type", RV3D_VIEW_TOP); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_view_orbit", PAD8, KM_PRESS, 0, 0)->ptr, "type", V3D_VIEW_STEPUP); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD1, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_BACK); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD3, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_LEFT); + RNA_enum_set(WM_keymap_add_item(keymap, "VIEW3D_OT_viewnumpad", PAD7, KM_PRESS, KM_CTRL, 0)->ptr, "type", RV3D_VIEW_BOTTOM); + WM_keymap_add_item(keymap, "VIEW3D_OT_localview", PADSLASHKEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "VIEW3D_OT_game_start", PKEY, KM_PRESS, 0, 0); diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index ae4b1f446da..f6f8d3e4aa2 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -697,6 +697,9 @@ void applyTransformOrientation(const struct bContext *C, float mat[3][3], char * #define ORIENTATION_FACE 4 int getTransformOrientation(const struct bContext *C, float normal[3], float plane[3], int activeOnly); + +/* also used in view3d_edit.c, todo - move outside of transform */ +void getTransformOrientationMatrix(const struct bContext *C, float twmat[][4], int use_active); int createSpaceNormal(float mat[3][3], float normal[3]); int createSpaceNormalTangent(float mat[3][3], float normal[3], float tangent[3]); diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c index a1d62f93568..dd94fef4059 100644 --- a/source/blender/editors/transform/transform_manipulator.c +++ b/source/blender/editors/transform/transform_manipulator.c @@ -259,8 +259,6 @@ int calc_manipulator_stats(const bContext *C) RegionView3D *rv3d= ar->regiondata; Base *base; Object *ob= OBACT; - float normal[3]={0.0, 0.0, 0.0}; - float plane[3]={0.0, 0.0, 0.0}; int a, totsel= 0; /* transform widget matrix */ @@ -498,47 +496,7 @@ int calc_manipulator_stats(const bContext *C) } case V3D_MANIP_NORMAL: if(obedit || ob->mode & OB_MODE_POSE) { - float mat[3][3]; - int type; - - type = getTransformOrientation(C, normal, plane, (v3d->around == V3D_ACTIVE)); - - switch (type) - { - case ORIENTATION_NORMAL: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_VERT: - if (createSpaceNormal(mat, normal) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_EDGE: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_FACE: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - } - - if (type == ORIENTATION_NONE) - { - Mat4One(rv3d->twmat); - } - else - { - Mat4CpyMat3(rv3d->twmat, mat); - } + getTransformOrientationMatrix(C, rv3d->twmat, (v3d->around == V3D_ACTIVE)); break; } /* no break we define 'normal' as 'local' in Object mode */ diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index 56160d66e25..8b4023a3352 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -531,49 +531,8 @@ void initTransformOrientation(bContext *C, TransInfo *t) break; case V3D_MANIP_NORMAL: if(obedit || (ob && ob->mode & OB_MODE_POSE)) { - float mat[3][3]; - int type; - strcpy(t->spacename, "normal"); - - type = getTransformOrientation(C, normal, plane, (v3d->around == V3D_ACTIVE)); - - switch (type) - { - case ORIENTATION_NORMAL: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_VERT: - if (createSpaceNormal(mat, normal) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_EDGE: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - case ORIENTATION_FACE: - if (createSpaceNormalTangent(mat, normal, plane) == 0) - { - type = ORIENTATION_NONE; - } - break; - } - - if (type == ORIENTATION_NONE) - { - Mat3One(t->spacemtx); - } - else - { - Mat3CpyMat3(t->spacemtx, mat); - } + getTransformOrientationMatrix(C, t->spacemtx, (v3d->around == V3D_ACTIVE)); break; } /* no break we define 'normal' as 'local' in Object mode */ @@ -967,3 +926,51 @@ int getTransformOrientation(const bContext *C, float normal[3], float plane[3], return result; } + +void getTransformOrientationMatrix(const bContext *C, float twmat[][4], int activeOnly) +{ + float normal[3]={0.0, 0.0, 0.0}; + float plane[3]={0.0, 0.0, 0.0}; + + float mat[3][3]; + int type; + + type = getTransformOrientation(C, normal, plane, activeOnly); + + switch (type) + { + case ORIENTATION_NORMAL: + if (createSpaceNormalTangent(mat, normal, plane) == 0) + { + type = ORIENTATION_NONE; + } + break; + case ORIENTATION_VERT: + if (createSpaceNormal(mat, normal) == 0) + { + type = ORIENTATION_NONE; + } + break; + case ORIENTATION_EDGE: + if (createSpaceNormalTangent(mat, normal, plane) == 0) + { + type = ORIENTATION_NONE; + } + break; + case ORIENTATION_FACE: + if (createSpaceNormalTangent(mat, normal, plane) == 0) + { + type = ORIENTATION_NONE; + } + break; + } + + if (type == ORIENTATION_NONE) + { + Mat4One(twmat); + } + else + { + Mat4CpyMat3(twmat, mat); + } +} From 5a12b7d159371709580cf8fb07fd10d3c3bfdff3 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 6 Nov 2009 11:09:04 +0000 Subject: [PATCH 410/412] Driver Scripting: Added RNA functions for adding and removing Driver Targets. Unfortunately, I couldn't do this by simply adding callbacks for the add/remove of the collection, as I've had to add to extra RNA functions to do that. Example usage - driving Lamp Distance with Cube LocZ: myOb= bpy.data.objects["Lamp"] myOb.driver_add("data.distance") # drivers is list of F-Curves that have driver data drivers= myOb.animation_data.drivers distDriver= drivers[0].driver dtar= distDriver.add_target("ctrl1") dtar.id_type= 'OBJECT' dtar.id= bpy.data.objects["Cube"] dtar.rna_path= "location" dtar.array_index= 2 --- .../editors/space_graph/graph_buttons.c | 4 +- source/blender/makesrna/intern/makesrna.c | 2 +- source/blender/makesrna/intern/rna_fcurve.c | 5 ++ .../blender/makesrna/intern/rna_fcurve_api.c | 90 +++++++++++++++++++ source/blender/makesrna/intern/rna_internal.h | 1 + 5 files changed, 99 insertions(+), 3 deletions(-) create mode 100644 source/blender/makesrna/intern/rna_fcurve_api.c diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index e2eb40b1137..b5d69934ad5 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -259,7 +259,7 @@ static void driver_delete_var_cb (bContext *C, void *driver_v, void *dtar_v) ChannelDriver *driver= (ChannelDriver *)driver_v; DriverTarget *dtar= (DriverTarget *)dtar_v; - /* add a new var */ + /* remove the active target */ driver_free_target(driver, dtar); } @@ -341,7 +341,7 @@ static void graph_panel_drivers(const bContext *C, Panel *pa) /* add driver target variables */ col= uiLayoutColumn(pa->layout, 0); block= uiLayoutGetBlock(col); - but= uiDefBut(block, BUT, B_IPO_DEPCHANGE, "Add Variable", 0, 0, 10*UI_UNIT_X, UI_UNIT_Y, NULL, 0.0, 0.0, 0, 0, "Add a new target variable for this Driver"); + but= uiDefBut(block, BUT, B_IPO_DEPCHANGE, "Add Target", 0, 0, 10*UI_UNIT_X, UI_UNIT_Y, NULL, 0.0, 0.0, 0, 0, "Add a new target variable for this Driver"); uiButSetFunc(but, driver_add_var_cb, driver, NULL); /* loop over targets, drawing them */ diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c index 3bad6e13453..6f1e61e6869 100644 --- a/source/blender/makesrna/intern/makesrna.c +++ b/source/blender/makesrna/intern/makesrna.c @@ -1995,7 +1995,7 @@ RNAProcessItem PROCESS_ITEMS[]= { {"rna_context.c", NULL, RNA_def_context}, {"rna_controller.c", NULL, RNA_def_controller}, {"rna_curve.c", NULL, RNA_def_curve}, - {"rna_fcurve.c", NULL, RNA_def_fcurve}, + {"rna_fcurve.c", "rna_fcurve_api.c", RNA_def_fcurve}, {"rna_fluidsim.c", NULL, RNA_def_fluidsim}, {"rna_gpencil.c", NULL, RNA_def_gpencil}, {"rna_group.c", NULL, RNA_def_group}, diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index e69e2cd0e2c..a914deb37a6 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -83,6 +83,7 @@ static StructRNA *rna_FModifierType_refine(struct PointerRNA *ptr) /* ****************************** */ +#include "BKE_fcurve.h" #include "BKE_depsgraph.h" static void rna_ChannelDriver_update_data(bContext *C, PointerRNA *ptr) @@ -610,8 +611,12 @@ static void rna_def_channeldriver(BlenderRNA *brna) /* Collections */ prop= RNA_def_property(srna, "targets", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_sdna(prop, NULL, "targets", NULL); + RNA_def_property_collection_funcs(prop, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "add_target", "remove_target"); RNA_def_property_struct_type(prop, "DriverTarget"); RNA_def_property_ui_text(prop, "Target Variables", "Properties acting as targets for this driver."); + + /* Functions */ + RNA_api_drivers(srna); } /* *********************** */ diff --git a/source/blender/makesrna/intern/rna_fcurve_api.c b/source/blender/makesrna/intern/rna_fcurve_api.c new file mode 100644 index 00000000000..12ffb3e26fb --- /dev/null +++ b/source/blender/makesrna/intern/rna_fcurve_api.c @@ -0,0 +1,90 @@ +/** + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * The Original Code is Copyright (C) 2009 Blender Foundation. + * All rights reserved. + * + * + * Contributor(s): Joshua Leung + * + * ***** END GPL LICENSE BLOCK ***** + */ + +#include +#include +#include +#include + +#include "RNA_define.h" +#include "RNA_types.h" + +#include "DNA_anim_types.h" + +#ifdef RNA_RUNTIME + +#include + +#include "BLI_blenlib.h" + +#include "BKE_animsys.h" +#include "BKE_fcurve.h" + +DriverTarget *rna_Driver_add_target(ChannelDriver *driver, char *name) +{ + DriverTarget *dtar= driver_add_new_target(driver); + + /* set the name if given */ + if (name && name[0]) { + BLI_strncpy(dtar->name, name, 64); + BLI_uniquename(&driver->targets, dtar, "var", '_', offsetof(DriverTarget, name), 64); + } + + /* return this target for the users to play with */ + return dtar; +} + +void rna_Driver_remove_target(ChannelDriver *driver, DriverTarget *dtar) +{ + /* call the API function for this */ + driver_free_target(driver, dtar); +} + +#else + +void RNA_api_drivers(StructRNA *srna) +{ + FunctionRNA *func; + PropertyRNA *parm; + + /* add target */ + func= RNA_def_function(srna, "add_target", "rna_Driver_add_target"); + RNA_def_function_ui_description(func, "Add a new target for the driver."); + /* return type */ + parm= RNA_def_pointer(func, "target", "DriverTarget", "", "Newly created Driver Target."); + RNA_def_function_return(func, parm); + /* optional name parameter */ + parm= RNA_def_string(func, "name", "", 64, "Name", "Name to use in scripted expressions/functions. (No spaces or dots are allowed. Also, must not start with a symbol or digit)"); + + /* remove target */ + func= RNA_def_function(srna, "remove_target", "rna_Driver_remove_target"); + RNA_def_function_ui_description(func, "Remove an existing target from the driver."); + /* target to remove*/ + parm= RNA_def_pointer(func, "target", "DriverTarget", "", "Target to remove from the driver."); + RNA_def_property_flag(parm, PROP_REQUIRED); +} + +#endif diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h index 0e557b59b22..d90b4f17c85 100644 --- a/source/blender/makesrna/intern/rna_internal.h +++ b/source/blender/makesrna/intern/rna_internal.h @@ -204,6 +204,7 @@ char *rna_TextureSlot_path(struct PointerRNA *ptr); /* API functions */ void RNA_api_action(StructRNA *srna); +void RNA_api_drivers(StructRNA *srna); void RNA_api_image(struct StructRNA *srna); void RNA_api_keyconfig(struct StructRNA *srna); void RNA_api_keyingset(struct StructRNA *srna); From aa7374e471bfb89242cfac855505269d0e728ea5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2009 12:27:28 +0000 Subject: [PATCH 411/412] - removing the last particle system now exits particle edit mode. - py UI script used an undeclared variable --- release/scripts/ui/space_view3d_toolbar.py | 2 ++ source/blender/blenkernel/intern/particle.c | 4 +++- source/blender/editors/physics/particle_object.c | 11 ++++++++++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 53dbef20020..49c28427724 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -830,6 +830,8 @@ class VIEW3D_PT_tools_particlemode(View3DPanel): layout.itemR(pe, "type", text="") + ptcache = None + if pe.type == 'PARTICLES': if ob.particle_systems: if len(ob.particle_systems) > 1: diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c index 43a624b3013..24d6b229297 100644 --- a/source/blender/blenkernel/intern/particle.c +++ b/source/blender/blenkernel/intern/particle.c @@ -2276,7 +2276,7 @@ static int psys_threads_init_path(ParticleThread *threads, Scene *scene, float c /* Object *ob= ctx->sim.ob; */ ParticleSystem *psys= ctx->sim.psys; ParticleSettings *part = psys->part; - ParticleEditSettings *pset = &scene->toolsettings->particle; +/* ParticleEditSettings *pset = &scene->toolsettings->particle; */ int totparent=0, between=0; int steps = (int)pow(2.0, (double)part->draw_step); int totchild = psys->totchild; @@ -3334,6 +3334,8 @@ void object_remove_particle_system(Scene *scene, Object *ob) if(ob->particlesystem.first) ((ParticleSystem *) ob->particlesystem.first)->flag |= PSYS_CURRENT; + else + ob->mode &= ~OB_MODE_PARTICLE_EDIT; DAG_scene_sort(scene); DAG_id_flush_update(&ob->id, OB_RECALC_DATA); diff --git a/source/blender/editors/physics/particle_object.c b/source/blender/editors/physics/particle_object.c index d227591739b..d763c0500d2 100644 --- a/source/blender/editors/physics/particle_object.c +++ b/source/blender/editors/physics/particle_object.c @@ -93,11 +93,20 @@ static int particle_system_remove_exec(bContext *C, wmOperator *op) { Object *ob= CTX_data_pointer_get_type(C, "object", &RNA_Object).data; Scene *scene = CTX_data_scene(C); - + int mode_orig = ob->mode; if(!scene || !ob) return OPERATOR_CANCELLED; object_remove_particle_system(scene, ob); + + /* possible this isn't the active object + * object_remove_particle_system() clears the mode on the last psys + * */ + if(mode_orig & OB_MODE_PARTICLE_EDIT) + if((ob->mode & OB_MODE_PARTICLE_EDIT)==0) + if(scene->basact && scene->basact->object==ob) + WM_event_add_notifier(C, NC_SCENE|ND_MODE|NS_MODE_OBJECT, NULL); + WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob); return OPERATOR_FINISHED; From 4e9699debff6b0ac7e3bfc91d615e071218a67db Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2009 12:43:20 +0000 Subject: [PATCH 412/412] experemental durian request, allow view manipulation while using circle select --- .../windowmanager/intern/wm_operators.c | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 0c6897ed8e0..d1af9446654 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1720,6 +1720,9 @@ int WM_gesture_circle_modal(bContext *C, wmOperator *op, wmEvent *event) return OPERATOR_CANCELLED; } } + else { + return OPERATOR_PASS_THROUGH; + } return OPERATOR_RUNNING_MODAL; } @@ -2395,18 +2398,23 @@ static void gesture_circle_modal_keymap(wmKeyConfig *keyconf) WM_modalkeymap_add_item(keymap, RIGHTMOUSE, KM_ANY, KM_ANY, 0, GESTURE_MODAL_CANCEL); WM_modalkeymap_add_item(keymap, RETKEY, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_CONFIRM); - WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_CONFIRM); + WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, 0, 0, GESTURE_MODAL_CONFIRM); - WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_SELECT); - WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_PRESS, KM_ANY, 0, GESTURE_MODAL_DESELECT); + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_SELECT); - WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, KM_ANY, 0, GESTURE_MODAL_NOP); - WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_RELEASE, KM_ANY, 0, GESTURE_MODAL_NOP); +// WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_DESELECT); // defailt 2.4x + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, KM_SHIFT, 0, GESTURE_MODAL_DESELECT); - WM_modalkeymap_add_item(keymap, PADPLUSKEY, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, 0, 0, GESTURE_MODAL_NOP); + +// WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_RELEASE, 0, 0, GESTURE_MODAL_NOP); // defailt 2.4x + WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_RELEASE, KM_SHIFT, 0, GESTURE_MODAL_NOP); + + + WM_modalkeymap_add_item(keymap, WHEELUPMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_SUB); WM_modalkeymap_add_item(keymap, PADMINUS, KM_PRESS, 0, 0, GESTURE_MODAL_SUB); - WM_modalkeymap_add_item(keymap, WHEELUPMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); - WM_modalkeymap_add_item(keymap, WHEELDOWNMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_SUB); + WM_modalkeymap_add_item(keymap, WHEELDOWNMOUSE, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); + WM_modalkeymap_add_item(keymap, PADPLUSKEY, KM_PRESS, 0, 0, GESTURE_MODAL_ADD); /* assign map to operators */ WM_modalkeymap_assign(keymap, "VIEW3D_OT_select_circle");